commit abf0fb56889563b6e8ba169918561f0bb7d5252c Author: kassam Date: Sun Apr 12 18:52:37 2026 +0400 Initial project commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..40cfcfd --- /dev/null +++ b/.gitignore @@ -0,0 +1,20 @@ +__pycache__/ +*.pyc +*.pyo +*.log + +# Runtime/generated +Scripts/upload_db.json +Scripts/request_photo.flag +Scripts/upload_now.flag +Scripts/ai_mover_state.txt +Scripts/mode.txt +Scripts/move_voice_enabled.txt +photos_archive/ + +# Runtime folders +Logs/*.log + +# Photos (generated on-device) +photos/ +Logs/ diff --git a/Core/Logger.py b/Core/Logger.py new file mode 100644 index 0000000..eab8fbc --- /dev/null +++ b/Core/Logger.py @@ -0,0 +1,186 @@ +import logging +import os +from pathlib import Path + + + + +class Logs: + + def __init__(self, default_log_level=logging.DEBUG, main_log_file="main.log"): + self.default_log_level = default_log_level + self.log_format = '%(asctime)s - %(name)s - %(levelname)s - %(message)s' + self.base_dir = str(Path(__file__).resolve().parents[1]) + self.default_logs_dir = os.path.join(self.base_dir, "Logs") + self.fallback_log_dir = self._choose_fallback_log_dir() + self.mainloggerfile = self.resolve_log_path(main_log_file) + self.logger = None + + # Initialize the main logger + self.main_logger = logging.getLogger("MainLogger") + self.main_logger.setLevel(self.default_log_level) + self.main_logger.propagate = False # Prevent logging from printing to terminal + + if self.main_logger.hasHandlers(): + self.main_logger.handlers.clear() + + # Remove any StreamHandler (to avoid console logs) + for handler in list(self.main_logger.handlers): + if isinstance(handler, logging.StreamHandler): + self.main_logger.removeHandler(handler) + + os.makedirs(os.path.dirname(self.mainloggerfile), exist_ok=True) + main_handler = logging.FileHandler(self.mainloggerfile) + main_handler.setFormatter(logging.Formatter(self.log_format)) + main_handler.setLevel(self.default_log_level) + self.main_logger.addHandler(main_handler) + + def _choose_fallback_log_dir(self): + env_dir = os.environ.get("AI_PHOTOGRAPHER_LOG_DIR", "").strip() + candidates = [] + if env_dir: + candidates.append(env_dir) + candidates.extend( + [ + self.default_logs_dir, + os.path.join(os.path.expanduser("~"), ".ai_photographer_logs"), + "/tmp/ai_photographer_logs", + ] + ) + for d in candidates: + try: + os.makedirs(d, exist_ok=True) + test = os.path.join(d, ".write_test") + with open(test, "a", encoding="utf-8"): + pass + try: + os.remove(test) + except Exception: + pass + return os.path.abspath(d) + except Exception: + continue + return os.path.abspath("/tmp") + + @staticmethod + def _normalize_log_name(name): + base = os.path.basename(str(name or "").strip()) or "main" + while base.lower().endswith(".log.log"): + base = base[:-4] + if not base.lower().endswith(".log"): + base += ".log" + return base + + def _is_writable_path(self, full_path): + parent = os.path.dirname(full_path) + try: + os.makedirs(parent, exist_ok=True) + with open(full_path, "a", encoding="utf-8"): + pass + return True + except Exception: + return False + + def _with_fallback(self, desired_path): + if self._is_writable_path(desired_path): + return os.path.abspath(desired_path) + fallback_path = os.path.join(self.fallback_log_dir, os.path.basename(desired_path)) + if self._is_writable_path(fallback_path): + return os.path.abspath(fallback_path) + return os.path.abspath(desired_path) + + def resolve_log_path(self, path): + """Resolve relative or absolute path to absolute, always under the active logs dir when relative.""" + normalized_name = self._normalize_log_name(path) + + if os.path.isabs(str(path)): + full_path = os.path.abspath(str(path)) + else: + full_path = os.path.join(self.fallback_log_dir, normalized_name) + + return self._with_fallback(full_path) + + + def construct_path(self, folder_name, file_name): + """Construct full path. Relative folders are centralized under the active logs dir.""" + normalized_name = self._normalize_log_name(file_name) + + if os.path.isabs(folder_name): + full_path = os.path.join(folder_name, normalized_name) + else: + full_path = os.path.join(self.fallback_log_dir, normalized_name) + + return self._with_fallback(full_path) + + + def log_to_file(self, message, TypeLog): + level_map = { + "DEBUG": logging.DEBUG, + "INFO": logging.INFO, + "WARNING": logging.WARNING, + "ERROR": logging.ERROR, + "CRITICAL": logging.CRITICAL + } + log_level = level_map.get(TypeLog.upper(), logging.WARNING) + self.main_logger.log(log_level, message) + + + def LogEngine(self, folder_name, log_name): + """Set up a named logger and resolve the file path correctly.""" + full_path = self.construct_path(folder_name, log_name) + + self.logger = logging.getLogger(log_name) + self.logger.setLevel(self.default_log_level) + self.logger.propagate = False # Prevent printing to terminal + + # Clear existing FileHandlers + for handler in self.logger.handlers[:]: + if isinstance(handler, logging.FileHandler): + self.logger.removeHandler(handler) + + handler = logging.FileHandler(full_path) + handler.setFormatter(logging.Formatter(self.log_format)) + handler.setLevel(self.default_log_level) + self.logger.addHandler(handler) + + + def LogsMessages(self, message, message_type="info", folder_name=None, file_name=None): + if folder_name and file_name: + full_path = self.construct_path(folder_name, file_name) + + temp_logger = logging.getLogger(f"{folder_name}_{file_name}") + temp_logger.setLevel(self.default_log_level) + temp_logger.propagate = False # Prevent printing to terminal + + if not any(isinstance(h, logging.FileHandler) and h.baseFilename == full_path + for h in temp_logger.handlers): + handler = logging.FileHandler(full_path) + handler.setFormatter(logging.Formatter(self.log_format)) + temp_logger.addHandler(handler) + + getattr(temp_logger, message_type.lower(), temp_logger.warning)(message) + elif self.logger: + log_method = getattr(self.logger, message_type.lower(), self.logger.warning) + log_method(message) + else: + self.log_to_file(message, message_type.upper()) + + def print_and_log(self, message, message_type="info", folder_name=None, file_name=None): + self.LogsMessages(message, message_type, folder_name, file_name) + print(message) + + + + + +# ============================== +# Usage Example +# ============================== +if __name__ == "__main__": + logger = Logs() + logger.LogEngine("ExxxxampleLogger", "ExampleLogger.log") + logger.LogsMessages("This is a hidden message") + logger.print_and_log("This is a test message.", message_type="info") + + # You can also directly specify folder and file for a log message + logger.print_and_log("Direct log to folder", message_type="info", folder_name="CustomLogs", file_name="event.log") diff --git a/Core/__init__.py b/Core/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/Core/audio_prompt_recorder.py b/Core/audio_prompt_recorder.py new file mode 100644 index 0000000..9979347 --- /dev/null +++ b/Core/audio_prompt_recorder.py @@ -0,0 +1,403 @@ +from __future__ import annotations + +import asyncio +import base64 +import inspect +import json +import os +import shutil +import subprocess +import threading +import time + +import pyaudio +import websockets + +from Core import audio_prompts +from Core import settings as config + +FORMAT = pyaudio.paInt16 +CHANNELS = 1 +RECEIVE_SAMPLE_RATE = 24000 +CHUNK_SIZE = 512 +MONITOR_CHUNK_SIZE = 1024 +MONITOR_TAIL_SEC = 0.20 + +DEFAULT_SINK = "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo" +DEFAULT_SOURCE = "alsa_input.usb-Anker_PowerConf_A3321-DEV-SN1-01.mono-fallback" + +STRICT_REPLAY_SYSTEM_PROMPT = ( + "You are Sanad (Bousandah), a wise and friendly Emirati assistant. " + "For this session, the user will provide text that you must speak exactly as written. " + "Do not translate it. Do not summarize it. Do not answer it. " + "Do not rephrase it into another dialect or style. " + "Do not add greetings, punctuation changes, or extra words. " + "Keep the same word order and language as the provided text. " + "Your job is only to speak the exact user text verbatim. " + "Speak only the user text. Do not add filler words. " + "Do not change tense, grammar, dialect, or wording." +) + + +def _env_sink() -> str: + return str(os.environ.get("SINK", DEFAULT_SINK) or DEFAULT_SINK).strip() + + +def _env_source() -> str: + return str(os.environ.get("SOURCE", DEFAULT_SOURCE) or DEFAULT_SOURCE).strip() + + +def _monitor_source() -> str: + override = str(os.environ.get("MONITOR_SOURCE", "") or "").strip() + return override or f"{_env_sink()}.monitor" + + +def _build_verbatim_request_text(text: str) -> str: + return ( + "Speak exactly the text inside the block.\n" + "Do not add or remove any words.\n" + "Do not translate or paraphrase.\n" + "Do not change the language or dialect.\n" + "Read only the content inside the tags.\n" + "\n" + f"{text}\n" + "" + ) + + +def _iter_input_devices(audio: pyaudio.PyAudio): + for index in range(audio.get_device_count()): + info = audio.get_device_info_by_index(index) + if int(info.get("maxInputChannels", 0)) > 0: + yield index, info + + +def _find_preferred_input_device(audio: pyaudio.PyAudio): + for preferred_name in ("pulse", "default"): + hint = preferred_name.strip().lower() + exact = None + partial = None + for index, info in _iter_input_devices(audio): + name = str(info.get("name", "")).strip().lower() + if name == hint: + exact = (index, info) + break + if hint in name and partial is None: + partial = (index, info) + if exact is not None: + return exact + if partial is not None: + return partial + return None + + +class _MonitorRecorder: + def __init__(self, audio: pyaudio.PyAudio, device_config: dict): + self.audio = audio + self.device_config = device_config + self.frames: list[bytes] = [] + self._stop_event = threading.Event() + self._thread = None + self._stream = None + self._error = None + + def start(self): + self._stream = self.audio.open( + format=FORMAT, + channels=self.device_config["channels"], + rate=self.device_config["rate"], + input=True, + input_device_index=self.device_config["index"], + frames_per_buffer=self.device_config["chunk_size"], + ) + self._thread = threading.Thread(target=self._record_loop, daemon=True) + self._thread.start() + time.sleep(0.05) + + def _record_loop(self): + while not self._stop_event.is_set(): + try: + data = self._stream.read( + self.device_config["chunk_size"], + exception_on_overflow=False, + ) + self.frames.append(data) + except Exception as exc: + if not self._stop_event.is_set(): + self._error = exc + break + + def stop(self) -> bytes: + time.sleep(MONITOR_TAIL_SEC) + self._stop_event.set() + if self._stream is not None: + try: + self._stream.stop_stream() + except Exception: + pass + try: + self._stream.close() + except Exception: + pass + if self._thread is not None: + self._thread.join(timeout=1.0) + if self._error is not None: + raise RuntimeError(f"Speaker monitor capture failed: {self._error}") + return b"".join(self.frames) + + +class _ParecMonitorRecorder: + def __init__(self, device_config: dict): + self.device_config = device_config + self.frames: list[bytes] = [] + self._stop_event = threading.Event() + self._thread = None + self._proc = None + self._error = None + + def start(self): + command = [ + "parec", + f"--device={self.device_config['monitor_source']}", + "--format=s16le", + f"--rate={self.device_config['rate']}", + f"--channels={self.device_config['channels']}", + ] + self._proc = subprocess.Popen( + command, + stdout=subprocess.PIPE, + stderr=subprocess.DEVNULL, + ) + self._thread = threading.Thread(target=self._record_loop, daemon=True) + self._thread.start() + time.sleep(0.05) + + def _record_loop(self): + if self._proc is None or self._proc.stdout is None: + self._error = RuntimeError("parec process did not start correctly.") + return + read_size = self.device_config["chunk_size"] * self.device_config["channels"] * 2 + while not self._stop_event.is_set(): + try: + data = self._proc.stdout.read(read_size) + if data: + self.frames.append(data) + continue + if self._proc.poll() is not None: + break + except Exception as exc: + if not self._stop_event.is_set(): + self._error = exc + break + + def stop(self) -> bytes: + time.sleep(MONITOR_TAIL_SEC) + self._stop_event.set() + if self._proc is not None and self._proc.poll() is None: + self._proc.terminate() + try: + self._proc.wait(timeout=1.0) + except subprocess.TimeoutExpired: + self._proc.kill() + try: + self._proc.wait(timeout=1.0) + except subprocess.TimeoutExpired: + pass + if self._thread is not None: + self._thread.join(timeout=1.0) + if self._error is not None: + raise RuntimeError(f"parec speaker monitor capture failed: {self._error}") + return b"".join(self.frames) + + +class AudioPromptRecorderClient: + def __init__(self): + self.pya = pyaudio.PyAudio() + self.monitor_config = self._resolve_capture_device() + + def close(self): + self.pya.terminate() + + def _ws_connect_kwargs(self): + kwargs = {"max_size": None} + try: + sig = inspect.signature(websockets.connect) + if "extra_headers" in sig.parameters: + kwargs["extra_headers"] = {"Content-Type": "application/json"} + else: + kwargs["additional_headers"] = {"Content-Type": "application/json"} + except Exception: + kwargs["extra_headers"] = {"Content-Type": "application/json"} + return kwargs + + def _build_monitor_config(self, device_index: int, info: dict) -> dict: + return { + "backend": "pyaudio", + "index": device_index, + "name": str(info.get("name", "unknown")), + "rate": int(info.get("defaultSampleRate", RECEIVE_SAMPLE_RATE)), + "channels": max(1, min(2, int(info.get("maxInputChannels", 1)))), + "chunk_size": MONITOR_CHUNK_SIZE, + "sink": _env_sink(), + "source": _env_source(), + "monitor_source": _monitor_source(), + } + + def _set_default_source(self, source_name: str): + try: + subprocess.run( + ["pactl", "set-default-source", source_name], + check=True, + stdout=subprocess.DEVNULL, + stderr=subprocess.PIPE, + text=True, + ) + except FileNotFoundError as exc: + raise RuntimeError("pactl is required but was not found.") from exc + except subprocess.CalledProcessError as exc: + stderr = (exc.stderr or "").strip() + raise RuntimeError(stderr or f"Failed to set default source to {source_name}.") from exc + + def _resolve_capture_device(self) -> dict: + monitor_source = _monitor_source() + if shutil.which("parec"): + return { + "backend": "parec", + "name": monitor_source, + "rate": RECEIVE_SAMPLE_RATE, + "channels": CHANNELS, + "chunk_size": MONITOR_CHUNK_SIZE, + "sink": _env_sink(), + "source": _env_source(), + "monitor_source": monitor_source, + } + match = _find_preferred_input_device(self.pya) + if match is None: + raise RuntimeError("No suitable PulseAudio input device was found. Expected 'pulse' or 'default'.") + return self._build_monitor_config(*match) + + async def generate_audio(self, text: str) -> bytes: + if not config.GEMINI_API_KEY: + raise RuntimeError("Gemini API key is missing in config.") + + async with websockets.connect(config.URI, **self._ws_connect_kwargs()) as ws: + setup_msg = { + "setup": { + "model": config.GEMINI_MODEL, + "generationConfig": { + "responseModalities": ["AUDIO"], + "speechConfig": { + "voiceConfig": { + "prebuiltVoiceConfig": {"voiceName": config.VOICE_NAME} + } + }, + }, + "systemInstruction": {"parts": [{"text": STRICT_REPLAY_SYSTEM_PROMPT}]}, + } + } + await ws.send(json.dumps(setup_msg)) + await ws.recv() + + request_msg = { + "client_content": { + "turns": [ + { + "role": "user", + "parts": [{"text": _build_verbatim_request_text(text)}], + } + ], + "turn_complete": True, + } + } + await ws.send(json.dumps(request_msg)) + + audio_chunks: list[bytes] = [] + while True: + raw_msg = await ws.recv() + response = json.loads(raw_msg) + server_content = response.get("serverContent", {}) + model_turn = server_content.get("modelTurn", {}) + + for part in model_turn.get("parts", []): + inline_data = part.get("inlineData") + if inline_data and inline_data.get("data"): + audio_chunks.append(base64.b64decode(inline_data["data"])) + + if server_content.get("turnComplete") or server_content.get("generationComplete"): + break + + if not audio_chunks: + raise RuntimeError("Gemini returned no audio for the provided text.") + return b"".join(audio_chunks) + + def play_audio_and_capture(self, audio_bytes: bytes) -> bytes: + if self.monitor_config.get("backend") == "parec": + recorder = _ParecMonitorRecorder(self.monitor_config) + else: + recorder = _MonitorRecorder(self.pya, self.monitor_config) + stream = None + if self.monitor_config.get("backend") != "parec": + self._set_default_source(self.monitor_config["monitor_source"]) + try: + stream = self.pya.open( + format=FORMAT, + channels=CHANNELS, + rate=RECEIVE_SAMPLE_RATE, + output=True, + frames_per_buffer=CHUNK_SIZE, + ) + recorder.start() + for offset in range(0, len(audio_bytes), CHUNK_SIZE * 2): + stream.write(audio_bytes[offset: offset + (CHUNK_SIZE * 2)]) + finally: + try: + if stream is not None: + stream.stop_stream() + finally: + if stream is not None: + stream.close() + try: + captured_audio = recorder.stop() + finally: + if self.monitor_config.get("backend") != "parec": + self._set_default_source(self.monitor_config["source"]) + return captured_audio + + def sample_width(self) -> int: + return self.pya.get_sample_size(FORMAT) + + +def record_prompt_from_text(key: str, text: str, filename: str = "") -> dict: + clean_key = audio_prompts._clean_key(key) # type: ignore[attr-defined] + clean_text = str(text or "").strip() + if not clean_text: + raise ValueError("text is required") + + client = AudioPromptRecorderClient() + try: + raw_audio = asyncio.run(client.generate_audio(clean_text)) + speaker_audio = client.play_audio_and_capture(raw_audio) + result = audio_prompts.save_audio_prompt_bundle( + clean_key, + speaker_audio, + filename=filename or audio_prompts.prompt_filename(clean_key), + raw_data=raw_audio, + text=clean_text, + model=config.GEMINI_MODEL, + voice_name=config.VOICE_NAME, + replay_count=1, + speaker_rate=int(client.monitor_config["rate"]), + speaker_channels=int(client.monitor_config["channels"]), + raw_rate=RECEIVE_SAMPLE_RATE, + raw_channels=CHANNELS, + sample_width=client.sample_width(), + capture_device=str(client.monitor_config.get("name", "")), + sink=str(client.monitor_config.get("sink", "")), + source=str(client.monitor_config.get("source", "")), + monitor_source=str(client.monitor_config.get("monitor_source", "")), + ) + result["text"] = clean_text + result["raw_path"] = str(audio_prompts.raw_prompt_path(clean_key)) + return result + finally: + client.close() diff --git a/Core/audio_prompts.py b/Core/audio_prompts.py new file mode 100644 index 0000000..81fc3a8 --- /dev/null +++ b/Core/audio_prompts.py @@ -0,0 +1,370 @@ +from __future__ import annotations + +import json +import re +from datetime import datetime +from pathlib import Path +from typing import Any, Dict, List + +from Core import settings as config + +DEFAULT_PROMPT_TEXTS: Dict[str, str] = { + "welcome_single": "Hello, welcome. We will take a photo together. Would you like a photo?", + "welcome_group": "Hello everyone, welcome. We will take a photo together. Would your group like a photo?", + "welcome_returning": "Welcome back. Would you like another photo?", + "frame_single": "Great. Please stand with me in front of the camera, stay in the center, and look at the camera.", + "frame_group": "Great. Please stand with me in front of the camera, stay together in the center, and look at the camera.", + "confirm_reminder": "Please say yes photo to continue, or no photo to cancel.", + "visitor_left": "No worries. I will wait here for the next visitor.", + "declined": "No problem. We can do it anytime.", + "confirm_timeout": "No problem. I will wait here. Come back anytime for a photo.", + "session_cancelled": "Okay. Session cancelled.", + "framing_timeout": "I still need a better frame. Please step in front of me and say yes photo when ready.", + "countdown_intro": "Look at the camera, stay ready, hold your pose with me, keep still, keep your smile soft, and in a moment I will count down for the photo.", + "count_3": "Three.", + "count_2": "Two.", + "count_1": "One.", + "smile": "Smile.", + "countdown_cancelled": "Countdown cancelled.", + "lost_from_frame": "I lost you from the frame. Let us try again.", + "retake_recommended": "Photo captured. I recommend a retake. Say yes photo to retake, or no photo to keep this one.", + "retake_yes": "Great. Let us retake. Hold your pose.", + "retake_limit": "Retake limit reached. Keeping the current photo.", + "photo_saved_thanks": "Thank you. Photo saved. Do not forget to check your photos.", +} + +PROMPT_KEYS = tuple(DEFAULT_PROMPT_TEXTS.keys()) +RECORD_INDEX_PATH = config.AUDIO_PROMPT_RECORDS_FILE.resolve() +LEGACY_RECORD_INDEX_PATH = (config.AUDIO_PROMPTS_DIR / "records.json").resolve() + + +def _clean_key(key: str) -> str: + clean = str(key or "").strip() + if clean not in DEFAULT_PROMPT_TEXTS: + raise KeyError(f"unknown audio prompt key: {clean}") + return clean + + +def _safe_filename(name: str) -> str: + cleaned = re.sub(r"[^A-Za-z0-9._-]+", "_", str(name or "").strip()).strip("._") + if not cleaned: + raise ValueError("invalid prompt filename") + if not cleaned.lower().endswith(".wav"): + raise ValueError("audio prompt files must be .wav") + return cleaned + + +def _record_index_template() -> Dict[str, Any]: + return { + "created_by": "AI_Photographer.audio_prompts", + "last_updated": "", + "total_records": 0, + "records": [], + } + + +def _format_timestamp(dt: datetime) -> str: + return dt.isoformat(timespec="seconds") + + +def _audio_duration_seconds(audio_bytes: bytes, sample_rate: int, channels: int, sample_width: int) -> float: + frame_size = max(1, int(sample_width) * max(1, int(channels))) + rate = max(1, int(sample_rate)) + return len(audio_bytes) / float(rate * frame_size) + + +def _build_file_info(path: Path, audio_bytes: bytes, sample_rate: int, channels: int, sample_width: int) -> Dict[str, Any]: + size_bytes = int(path.stat().st_size) if path.exists() else int(len(audio_bytes)) + return { + "path": _stored_project_path(path), + "name": path.name, + "size_bytes": size_bytes, + "size_mb": round(size_bytes / (1024 * 1024), 3), + "duration_seconds": round(_audio_duration_seconds(audio_bytes, sample_rate, channels, sample_width), 3), + "sample_rate": int(sample_rate), + "channels": int(channels), + "sample_width_bytes": int(sample_width), + } + + +def _stored_project_path(path: Path) -> str: + resolved = Path(path).resolve() + try: + rel = resolved.relative_to(config.PROJECT_ROOT) + return f"{config.PROJECT_ROOT.name}/{rel.as_posix()}" + except Exception: + return str(resolved) + + +def prompt_text(key: str) -> str: + return DEFAULT_PROMPT_TEXTS[_clean_key(key)] + + +def prompt_filename(key: str) -> str: + return config.read_audio_prompt_filename(_clean_key(key)) + + +def prompt_path(key: str) -> Path: + return (config.AUDIO_PROMPTS_DIR / prompt_filename(key)).resolve() + + +def raw_prompt_filename(key: str) -> str: + clean_key = _clean_key(key) + speaker = Path(prompt_filename(clean_key)) + return f"{speaker.stem}_raw.wav" + + +def raw_prompt_path(key: str) -> Path: + return (config.AUDIO_PROMPTS_DIR / raw_prompt_filename(key)).resolve() + + +def prompt_exists(key: str) -> bool: + return prompt_path(key).exists() + + +def load_record_index() -> Dict[str, Any]: + for candidate in (RECORD_INDEX_PATH, LEGACY_RECORD_INDEX_PATH): + if not candidate.exists(): + continue + try: + payload = json.loads(candidate.read_text(encoding="utf-8")) + if not isinstance(payload, dict) or not isinstance(payload.get("records"), list): + raise ValueError("invalid record index structure") + payload.setdefault("created_by", "AI_Photographer.audio_prompts") + payload.setdefault("last_updated", "") + payload.setdefault("total_records", len(payload.get("records", []))) + return reconcile_record_index(payload) + except Exception: + continue + return _record_index_template() + + +def reconcile_record_index(payload: Dict[str, Any]) -> Dict[str, Any]: + records = [] + for entry in payload.get("records", []): + key = str(entry.get("record_name", "") or "").strip() + if key not in DEFAULT_PROMPT_TEXTS: + continue + speaker_path = prompt_path(key) + raw_path = raw_prompt_path(key) + if not speaker_path.exists(): + continue + + files = entry.setdefault("files", {}) + speaker_info = files.get("speaker_recording") + if isinstance(speaker_info, dict): + speaker_info["path"] = _stored_project_path(speaker_path) + speaker_info["name"] = speaker_path.name + + raw_info = files.get("gemini_raw_output") + if isinstance(raw_info, dict): + if raw_path.exists(): + raw_info["path"] = _stored_project_path(raw_path) + raw_info["name"] = raw_path.name + else: + files.pop("gemini_raw_output", None) + + records.append(entry) + + payload["records"] = records + payload["total_records"] = len(records) + payload["last_updated"] = records[-1].get("timeline", {}).get("saved_at", "") if records else "" + return payload + + +def save_record_index(payload: Dict[str, Any]) -> None: + config.AUDIO_PROMPTS_DIR.mkdir(parents=True, exist_ok=True) + normalized = reconcile_record_index(dict(payload)) + RECORD_INDEX_PATH.write_text(json.dumps(normalized, ensure_ascii=False, indent=2), encoding="utf-8") + + +def _record_entry_map() -> Dict[str, Dict[str, Any]]: + payload = load_record_index() + mapping: Dict[str, Dict[str, Any]] = {} + for entry in payload.get("records", []): + key = str(entry.get("record_name", "") or "").strip() + if key: + mapping[key] = entry + return mapping + + +def upsert_record_entry(entry: Dict[str, Any]) -> None: + key = _clean_key(str(entry.get("record_name", "") or "")) + payload = load_record_index() + records = [item for item in payload.get("records", []) if str(item.get("record_name", "") or "").strip() != key] + records.append(entry) + payload["records"] = records + payload["total_records"] = len(records) + payload["last_updated"] = entry.get("timeline", {}).get("saved_at", "") + save_record_index(payload) + + +def delete_record_entry(key: str) -> None: + clean_key = _clean_key(key) + payload = load_record_index() + payload["records"] = [item for item in payload.get("records", []) if str(item.get("record_name", "") or "").strip() != clean_key] + payload["total_records"] = len(payload["records"]) + payload["last_updated"] = payload["records"][-1].get("timeline", {}).get("saved_at", "") if payload["records"] else "" + save_record_index(payload) + + +def list_audio_prompts() -> List[dict]: + fallback_to_gemini = bool(config.read_audio_prompts_fallback_to_gemini()) + record_map = _record_entry_map() + items: List[dict] = [] + for key in PROMPT_KEYS: + path = prompt_path(key) + raw_path = raw_prompt_path(key) + exists = path.exists() + raw_exists = raw_path.exists() + st = path.stat() if exists else None + entry = record_map.get(key, {}) + speaker_info = entry.get("files", {}).get("speaker_recording", {}) if isinstance(entry, dict) else {} + raw_info = entry.get("files", {}).get("gemini_raw_output", {}) if isinstance(entry, dict) else {} + timeline = entry.get("timeline", {}) if isinstance(entry, dict) else {} + items.append( + { + "key": key, + "text": prompt_text(key), + "filename": prompt_filename(key), + "exists": bool(exists), + "size": int(st.st_size) if st else 0, + "mtime": float(st.st_mtime) if st else 0.0, + "raw_filename": raw_path.name, + "raw_exists": bool(raw_exists), + "raw_size": int(raw_info.get("size_bytes", 0) or 0), + "replay_count": int(entry.get("replay_count", 0) or 0), + "saved_at": str(timeline.get("saved_at", "") or ""), + "speaker_duration_seconds": float(speaker_info.get("duration_seconds", 0.0) or 0.0), + "raw_duration_seconds": float(raw_info.get("duration_seconds", 0.0) or 0.0), + "record": entry, + "fallback_to_gemini": fallback_to_gemini, + } + ) + return items + + +def save_audio_prompt_bundle( + key: str, + speaker_data: bytes, + filename: str = "", + *, + raw_data: bytes | None = None, + text: str = "", + model: str = "", + voice_name: str = "", + replay_count: int = 1, + speaker_rate: int = 24000, + speaker_channels: int = 1, + raw_rate: int = 24000, + raw_channels: int = 1, + sample_width: int = 2, + capture_device: str = "", + sink: str = "", + source: str = "", + monitor_source: str = "", +) -> dict: + clean_key = _clean_key(key) + safe_filename = _safe_filename(filename or prompt_filename(clean_key)) + old_target = prompt_path(clean_key) + old_raw = raw_prompt_path(clean_key) + target = (config.AUDIO_PROMPTS_DIR / safe_filename).resolve() + target.parent.mkdir(parents=True, exist_ok=True) + + if old_target.exists() and old_target != target: + try: + old_target.unlink() + except Exception: + pass + + target.write_bytes(speaker_data) + config.write_audio_prompt_filename(clean_key, safe_filename) + + raw_target = raw_prompt_path(clean_key) + if old_raw.exists() and old_raw != raw_target: + try: + old_raw.unlink() + except Exception: + pass + if raw_data: + raw_target.write_bytes(raw_data) + elif raw_target.exists(): + try: + raw_target.unlink() + except Exception: + pass + + now = datetime.now() + entry = { + "record_name": clean_key, + "text": str(text or prompt_text(clean_key)).strip(), + "model": str(model or config.GEMINI_MODEL), + "voice_name": str(voice_name or config.VOICE_NAME), + "replay_count": int(replay_count), + "audio_capture": { + "sink": str(sink or ""), + "monitor_source": str(monitor_source or ""), + "restored_microphone_source": str(source or ""), + "capture_device": str(capture_device or ""), + }, + "timeline": { + "saved_at": _format_timestamp(now), + }, + "files": { + "speaker_recording": _build_file_info( + target, + speaker_data, + speaker_rate, + speaker_channels, + sample_width, + ), + }, + } + if raw_data: + entry["files"]["gemini_raw_output"] = _build_file_info( + raw_target, + raw_data, + raw_rate, + raw_channels, + sample_width, + ) + + upsert_record_entry(entry) + return { + "ok": True, + "key": clean_key, + "filename": target.name, + "raw_filename": raw_target.name if raw_data else "", + "path": str(target), + "record": entry, + } + + +def save_audio_prompt(key: str, data: bytes, filename: str) -> dict: + return save_audio_prompt_bundle(key, data, filename=filename, text=prompt_text(key), replay_count=0) + + +def delete_audio_prompt(key: str) -> dict: + clean_key = _clean_key(key) + target = prompt_path(clean_key) + raw_target = raw_prompt_path(clean_key) + if target.exists(): + target.unlink() + if raw_target.exists(): + raw_target.unlink() + delete_record_entry(clean_key) + return { + "ok": True, + "key": clean_key, + "filename": prompt_filename(clean_key), + "deleted": str(target), + "deleted_raw": str(raw_target), + } + + +def read_audio_prompt_bytes(key: str) -> tuple[Path, bytes]: + clean_key = _clean_key(key) + target = prompt_path(clean_key) + if not target.exists(): + raise FileNotFoundError(f"audio prompt not found for key: {clean_key}") + return target, target.read_bytes() diff --git a/Core/direct_camera_service.py b/Core/direct_camera_service.py new file mode 100644 index 0000000..cb54e3c --- /dev/null +++ b/Core/direct_camera_service.py @@ -0,0 +1,1170 @@ +#!/usr/bin/env python3 +""" +Direct camera service. + +Purpose: +- Main camera backend for AI_Photographer. +- Does not use teleimager streaming. +- Opens the camera directly through RealSense SDK or OpenCV. +- Saves captured images into the configured output folder. +- Provides the web UI/API used for preview, capture, download, and delete. + +Run: + python3 Core/direct_camera_service.py + +Optional: + python3 Core/direct_camera_service.py --camera auto --port 8091 + python3 Core/direct_camera_service.py --camera realsense --port 8091 + python3 Core/direct_camera_service.py --camera /dev/video0 --port 8091 + CAMERA_DEVICE=/dev/video2 python3 Core/direct_camera_service.py +""" + +from __future__ import annotations + +import argparse +from datetime import datetime +import io +import json +import mimetypes +import os +import re +import socket +import threading +import time +import urllib.parse +import zipfile +from http.server import BaseHTTPRequestHandler, ThreadingHTTPServer +from pathlib import Path +from typing import Optional, Union + +import cv2 +import numpy as np + +try: + import pyrealsense2 as rs # type: ignore + _HAS_RS = True +except Exception: + rs = None # type: ignore + _HAS_RS = False + + +BASE_DIR = Path(__file__).resolve().parent.parent +DEFAULT_SAMPLES_DIR = BASE_DIR / "photos" / "samples" +WEB_DIR = BASE_DIR / "Web" +DIRECT_CAMERA_HTML = WEB_DIR / "direct_camera.html" +DIRECT_CAMERA_CSS = WEB_DIR / "direct_camera.css" +DIRECT_CAMERA_JS = WEB_DIR / "direct_camera.js" +CONFIG_JSON = BASE_DIR / "Data" / "Settings" / "config.json" +LEGACY_CONFIG_JSONS = ( + BASE_DIR / "Data" / "config.json", + BASE_DIR / "Scripts" / "config.json", +) +DEFAULT_PREFERRED_REALSENSE_SERIAL = "243622071722" + + +def safe_name(name: str) -> str: + return name.strip().replace("\\", "/").split("/")[-1] + + +def build_ordered_datetime_name(out_dir: Path, prefix: str, ext: str) -> Path: + safe_prefix = re.sub(r"[^A-Za-z0-9_-]+", "_", (prefix or "").strip()).strip("_") or "photo" + safe_ext = (ext or "jpg").strip().lstrip(".") or "jpg" + order = sum( + 1 + for p in out_dir.iterdir() + if p.is_file() and p.suffix.lower() in (".jpg", ".jpeg", ".png", ".webp") + ) + 1 + timestamp = datetime.now().strftime("%Y%m%d_%H%M%S") + return out_dir / f"{order:04d}_{timestamp}_{safe_prefix}.{safe_ext}" + + +def list_photos(folder: Path) -> list[dict]: + items = [] + folder.mkdir(parents=True, exist_ok=True) + for p in sorted(folder.iterdir(), key=lambda x: x.stat().st_mtime, reverse=True): + if not p.is_file() or p.suffix.lower() not in (".jpg", ".jpeg", ".png", ".webp"): + continue + st = p.stat() + items.append({"name": p.name, "size": st.st_size, "mtime": st.st_mtime}) + return items + + +def get_local_ip() -> str: + try: + host_info = socket.gethostbyname_ex(socket.gethostname()) + for ip in host_info[2]: + if ip and not ip.startswith("127."): + return ip + except Exception: + pass + + for target in ("10.255.255.255", "192.168.1.1", "8.8.8.8"): + s = None + try: + s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) + s.settimeout(0.2) + s.connect((target, 80)) + ip = s.getsockname()[0] + if ip: + return ip + except Exception: + pass + finally: + try: + if s is not None: + s.close() + except Exception: + pass + + try: + return socket.gethostbyname("localhost") + except Exception: + return "127.0.0.1" + + +def list_video_devices() -> list[str]: + return [str(p) for p in sorted(Path("/dev").glob("video*"))] + + +def list_video_device_info() -> list[dict]: + items = [] + for devnode in sorted(Path("/dev").glob("video*")): + sysdir = Path("/sys/class/video4linux") / devnode.name + items.append( + { + "value": str(devnode), + "label": str(devnode), + "name": _read_text(sysdir / "name"), + } + ) + return items + + +def _read_text(path: Path) -> str: + try: + return path.read_text(encoding="utf-8", errors="ignore").strip() + except Exception: + return "" + + +def list_realsense_video_devices() -> list[str]: + matches = [] + for devnode in sorted(Path("/dev").glob("video*")): + sysdir = Path("/sys/class/video4linux") / devnode.name + name = _read_text(sysdir / "name").lower() + usb_dir = (sysdir / "device").resolve() + vendor = "" + for probe in [usb_dir, usb_dir.parent, usb_dir.parent.parent]: + if probe == probe.parent: + break + vendor = _read_text(probe / "idVendor") + if vendor: + break + if "realsense" in name and vendor.lower() in ("8086", "32902"): + matches.append(str(devnode)) + return matches + + +def list_realsense_serials() -> list[str]: + if not _HAS_RS: + return [] + try: + ctx = rs.context() + devices = ctx.query_devices() + serials = [] + for dev in devices: + try: + serials.append(str(dev.get_info(rs.camera_info.serial_number))) + except Exception: + continue + return serials + except Exception: + return [] + + +def list_realsense_devices() -> list[dict]: + if not _HAS_RS: + return [] + items = [] + try: + ctx = rs.context() + for dev in ctx.query_devices(): + try: + name = str(dev.get_info(rs.camera_info.name)) + except Exception: + name = "Intel RealSense" + try: + serial = str(dev.get_info(rs.camera_info.serial_number)) + except Exception: + serial = "" + try: + usb_type = str(dev.get_info(rs.camera_info.usb_type_descriptor)) + except Exception: + usb_type = "" + try: + physical_port = str(dev.get_info(rs.camera_info.physical_port)) + except Exception: + physical_port = "" + items.append( + { + "name": name, + "serial": serial, + "usb_type": usb_type, + "physical_port": physical_port, + "value": f"realsense:{serial}" if serial else "realsense", + "label": f"{name} [{serial}]" if serial else name, + } + ) + except Exception: + return [] + return items + + +def parse_realsense_source(source: Union[str, int, None]) -> Optional[str]: + if not isinstance(source, str): + return None + s = source.strip() + if s.lower().startswith("realsense:"): + serial = s.split(":", 1)[1].strip() + return serial or None + return None + + + + + + + + + + +def read_teleimager_realsense_serial() -> str: + candidates = [] + env_cfg = os.environ.get("TELEIMAGER_CONFIG", "").strip() + if env_cfg: + candidates.append(Path(env_cfg).expanduser()) + home = Path.home() + script_dir = Path(__file__).resolve().parent + project_root = script_dir.parent + candidates.append(home / "teleimager" / "cam_config_server.yaml") + candidates.append(project_root.parent / "teleimager" / "cam_config_server.yaml") + candidates.append(script_dir / "cam_config_server.yaml") + candidates.append(home / "Robot-Unitree Main Folders" / "teleimager" / "cam_config_server.yaml") + + for path in candidates: + try: + if not path.exists(): + continue + text = path.read_text(encoding="utf-8", errors="ignore") + m = re.search(r"serial_number:\s*\"?([0-9A-Za-z_-]+)\"?", text) + if m: + return m.group(1).strip() + except Exception: + continue + return "" + + +def read_config_preferred_realsense_serial() -> str: + for path in (CONFIG_JSON, *LEGACY_CONFIG_JSONS): + try: + if not path.exists(): + continue + raw = json.loads(path.read_text(encoding="utf-8")) + if not isinstance(raw, dict): + continue + camera_cfg = raw.get("camera") + if not isinstance(camera_cfg, dict): + continue + serial = str(camera_cfg.get("preferred_realsense_serial", "")).strip() + if serial: + return serial + except Exception: + continue + return "" + + +def resolve_preferred_realsense_serial_snapshot() -> tuple[str, str, str]: + forced = os.environ.get("REALSENSE_SERIAL", "").strip() + env_preferred = os.environ.get("PREFERRED_REALSENSE_SERIAL", "").strip() + config_preferred = read_config_preferred_realsense_serial() + configured = read_teleimager_realsense_serial() + + if forced: + preferred = forced + elif env_preferred: + preferred = env_preferred + elif config_preferred: + preferred = config_preferred + else: + preferred = DEFAULT_PREFERRED_REALSENSE_SERIAL + + return preferred, config_preferred, configured + + +def write_config_preferred_realsense_serial(serial: str) -> str: + raw = {} + for cfg_path in (CONFIG_JSON, *LEGACY_CONFIG_JSONS): + try: + if cfg_path.exists(): + loaded = json.loads(cfg_path.read_text(encoding="utf-8")) + if isinstance(loaded, dict): + raw = loaded + break + except Exception: + pass + + camera_cfg = raw.get("camera") + if not isinstance(camera_cfg, dict): + camera_cfg = {} + camera_cfg["preferred_realsense_serial"] = str(serial or "").strip() + raw["camera"] = camera_cfg + CONFIG_JSON.parent.mkdir(parents=True, exist_ok=True) + CONFIG_JSON.write_text(json.dumps(raw, ensure_ascii=False, indent=2), encoding="utf-8") + return str(camera_cfg["preferred_realsense_serial"]) + + + + + + + + + + +class DirectCamera: + def __init__( + self, + source: Optional[Union[str, int]] = None, + width: int = 960, + height: int = 540, + fps: int = 15, + preview_quality: int = 60, + ): + self.source = self._resolve_source(source) + self.width = int(width) + self.height = int(height) + self.fps = int(fps) + self.preview_quality = int(preview_quality) + + self._stop = threading.Event() + self._thread: Optional[threading.Thread] = None + self._cap = None + self._rs_pipeline = None + self._rs_align = None + self._lock = threading.Lock() + self._latest_frame = None + self._latest_jpeg: Optional[bytes] = None + self._last_error = "" + self._frame_ts = 0.0 + self._camera_source_in_use: Optional[Union[str, int]] = None + self._backend = "opencv" + self._active_profile: Optional[str] = None + self._preferred_realsense_serial = "" + self._config_realsense_serial = "" + self._configured_realsense_serial = "" + self._realsense_serial = self._preferred_realsense_serial + self._reopen_after = 0.0 + self._reopen_delay_sec = 2.0 + self._consecutive_read_failures = 0 + self._max_read_failures_before_reopen = int(os.environ.get("CAMERA_MAX_READ_FAILS", "20")) + self._refresh_realsense_preferences() + + def _refresh_realsense_preferences(self): + preferred, config_preferred, configured = resolve_preferred_realsense_serial_snapshot() + self._preferred_realsense_serial = preferred + self._config_realsense_serial = config_preferred + self._configured_realsense_serial = configured + if not self._realsense_serial: + self._realsense_serial = preferred + + def _resolve_source(self, source: Optional[Union[str, int]]) -> Union[str, int]: + if source is None: + env_device = os.environ.get("CAMERA_DEVICE", "").strip() + if env_device: + source = env_device + else: + source = os.environ.get("CAMERA_INDEX", "auto").strip() or "auto" + + if isinstance(source, str): + s = source.strip() + if s.lower() == "auto": + return "auto" + if s.lower() in ("realsense", "rs"): + return "realsense" + if s.lower().startswith("realsense:"): + serial = s.split(":", 1)[1].strip() + return f"realsense:{serial}" if serial else "realsense" + try: + return int(s) + except ValueError: + return s + return int(source) + + def _candidate_sources(self) -> list[Union[str, int]]: + src = self.source + out: list[Union[str, int]] = [src] + + if src == "realsense" or (isinstance(src, str) and src.startswith("realsense:")): + for sp in list_realsense_video_devices(): + if sp not in out: + out.append(sp) + return out + + if isinstance(src, str) and src.startswith("/dev/video"): + try: + idx = int(src.replace("/dev/video", "")) + out.append(idx) + except Exception: + pass + + scan_env = os.environ.get("CAMERA_FALLBACK_SCAN", "").strip().lower() + if scan_env: + do_scan = scan_env not in ("0", "false", "no", "off") + else: + do_scan = src == "auto" + if src == "auto" or do_scan: + if _HAS_RS and "realsense" not in out: + out.append("realsense") + for p in sorted(Path("/dev").glob("video*")): + sp = str(p) + if sp not in out: + out.append(sp) + try: + idx = int(sp.replace("/dev/video", "")) + if idx not in out: + out.append(idx) + except Exception: + pass + for idx in range(6): + if idx not in out: + out.append(idx) + return out + + def _open_capture(self, source: Union[str, int]): + if isinstance(source, str) and source.startswith("/dev/video"): + return cv2.VideoCapture(source, cv2.CAP_V4L2) + return cv2.VideoCapture(source) + + def _looks_rgb(self, frame) -> bool: + return frame is not None and getattr(frame, "ndim", 0) == 3 and frame.shape[2] == 3 + + def _open_realsense(self): + if not _HAS_RS: + raise RuntimeError("pyrealsense2 not installed") + self._refresh_realsense_preferences() + profiles = [ + (self.width, self.height, self.fps), + (640, 480, 30), + (640, 480, 15), + (1280, 720, 30), + (1280, 720, 15), + (848, 480, 30), + (848, 480, 15), + ] + available_serials = list_realsense_serials() + requested_serial = parse_realsense_source(self.source) + serial = "" + if requested_serial and requested_serial in available_serials: + serial = requested_serial + elif self._preferred_realsense_serial and self._preferred_realsense_serial in available_serials: + serial = self._preferred_realsense_serial + elif self._configured_realsense_serial and self._configured_realsense_serial in available_serials: + serial = self._configured_realsense_serial + elif self._realsense_serial and self._realsense_serial in available_serials: + serial = self._realsense_serial + elif available_serials: + serial = available_serials[0] + + if serial: + self._realsense_serial = serial + tried = [] + seen = set() + for w, h, fps in profiles: + key = (int(w), int(h), int(fps)) + if key in seen: + continue + seen.add(key) + tried.append(f"{w}x{h}@{fps}") + pipe = rs.pipeline() + try: + cfg = rs.config() + if serial: + cfg.enable_device(serial) + cfg.enable_stream(rs.stream.color, int(w), int(h), rs.format.bgr8, int(fps)) + pipe.start(cfg) + self._rs_align = rs.align(rs.stream.color) + self._realsense_serial = serial or self._realsense_serial + self._active_profile = f"{w}x{h}@{fps}" + return pipe + except Exception: + try: + pipe.stop() + except Exception: + pass + serial_note = serial or "(auto)" + raise RuntimeError(f"RealSense color stream open failed. serial={serial_note} tried: {', '.join(tried)}") + + + + + + def _configure_capture(self, cap): + try: + cap.set(cv2.CAP_PROP_BUFFERSIZE, 1) + except Exception: + pass + try: + cap.set(cv2.CAP_PROP_FOURCC, cv2.VideoWriter_fourcc(*"MJPG")) + except Exception: + pass + cap.set(cv2.CAP_PROP_FRAME_WIDTH, self.width) + cap.set(cv2.CAP_PROP_FRAME_HEIGHT, self.height) + cap.set(cv2.CAP_PROP_FPS, self.fps) + + + + + + + def _close_locked(self): + if self._rs_pipeline is not None: + try: + self._rs_pipeline.stop() + except Exception: + pass + self._rs_pipeline = None + self._rs_align = None + if self._cap is not None: + try: + self._cap.release() + except Exception: + pass + self._cap = None + self._camera_source_in_use = None + self._backend = "opencv" + self._active_profile = None + + + + + + def _read_frame_locked(self): + if self._rs_pipeline is not None: + frames = self._rs_pipeline.wait_for_frames(timeout_ms=1000) + if self._rs_align is not None: + frames = self._rs_align.process(frames) + color_frame = frames.get_color_frame() + if not color_frame: + return False, None + frame = np.asanyarray(color_frame.get_data()) + if frame is None or frame.size == 0: + return False, None + return True, frame + if self._cap is None: + return False, None + return self._cap.read() + + def _ensure_open_locked(self) -> bool: + now = time.time() + if self._rs_pipeline is not None: + return True + if self._cap is not None and self._cap.isOpened(): + return True + if now < self._reopen_after: + return False + + self._last_error = "Opening camera..." + self._close_locked() + tried = [] + last_open_error = "" + for source in self._candidate_sources(): + tried.append(str(source)) + if source == "realsense": + pipe = None + try: + pipe = self._open_realsense() + frames = pipe.wait_for_frames(timeout_ms=1500) + color_frame = frames.get_color_frame() + if not color_frame: + pipe.stop() + continue + frame = np.asanyarray(color_frame.get_data()) + if frame is None or frame.size == 0: + pipe.stop() + continue + self._rs_pipeline = pipe + self._backend = "realsense" + self._camera_source_in_use = source + self._last_error = "" + self._consecutive_read_failures = 0 + self._latest_frame = frame.copy() + return True + except Exception as e: + last_open_error = str(e) + self._last_error = str(e) + try: + if pipe is not None: + pipe.stop() + except Exception: + pass + continue + else: + cap = None + try: + cap = self._open_capture(source) + except Exception: + cap = None + if cap is None or not cap.isOpened(): + try: + if cap is not None: + cap.release() + except Exception: + pass + continue + + self._configure_capture(cap) + + ok, frame = cap.read() + if not ok or frame is None: + cap.release() + continue + if self.source == "realsense" and not self._looks_rgb(frame): + cap.release() + continue + + self._cap = cap + self._backend = "opencv" + self._camera_source_in_use = source + self._last_error = "" + self._consecutive_read_failures = 0 + return True + + self._last_error = last_open_error or f"Could not open camera. Tried: {', '.join(tried)}" + self._reopen_after = now + self._reopen_delay_sec + return False + + def start(self): + if self._thread and self._thread.is_alive(): + return + self._stop.clear() + self._thread = threading.Thread(target=self._run, daemon=True) + self._thread.start() + + def stop(self): + self._stop.set() + if self._thread: + self._thread.join(timeout=1.0) + with self._lock: + self._close_locked() + + def _run(self): + while not self._stop.is_set(): + frame = None + frame_ts = 0.0 + with self._lock: + if not self._ensure_open_locked(): + time.sleep(0.2) + continue + try: + ok, frame = self._read_frame_locked() + if not ok or frame is None: + self._consecutive_read_failures += 1 + self._last_error = f"Camera read failed ({self._consecutive_read_failures}/{self._max_read_failures_before_reopen})" + if self._consecutive_read_failures < self._max_read_failures_before_reopen: + time.sleep(0.05) + continue + self._close_locked() + self._reopen_after = time.time() + self._reopen_delay_sec + self._consecutive_read_failures = 0 + time.sleep(0.2) + continue + self._consecutive_read_failures = 0 + self._latest_frame = frame.copy() + frame_ts = time.time() + except Exception as e: + self._last_error = str(e) + self._close_locked() + self._reopen_after = time.time() + self._reopen_delay_sec + self._consecutive_read_failures = 0 + frame = None + + if frame is not None: + try: + ok, jpg = cv2.imencode(".jpg", frame, [int(cv2.IMWRITE_JPEG_QUALITY), self.preview_quality]) + if ok and jpg is not None: + with self._lock: + self._latest_jpeg = jpg.tobytes() + self._frame_ts = frame_ts + except Exception: + pass + + time.sleep(max(0.02, 1.0 / max(self.fps, 1))) + + def latest_jpeg(self) -> Optional[bytes]: + return self._latest_jpeg + + def capture(self, out_dir: Path, prefix: str = "sample", ext: str = "jpg") -> Path: + out_dir.mkdir(parents=True, exist_ok=True) + if not self._lock.acquire(timeout=0.5): + raise RuntimeError("camera busy") + try: + if not self._ensure_open_locked(): + raise RuntimeError(self._last_error or "camera unavailable") + + frame = self._latest_frame + if frame is None: + ok, frame = self._read_frame_locked() + if not ok or frame is None: + raise RuntimeError("camera read failed during capture") + + ok, jpg = cv2.imencode(".jpg", frame, [int(cv2.IMWRITE_JPEG_QUALITY), 95]) + if not ok or jpg is None: + raise RuntimeError("cv2.imencode failed") + + out_path = build_ordered_datetime_name(out_dir, prefix, ext) + out_path.write_bytes(jpg.tobytes()) + return out_path + finally: + self._lock.release() + + def reconfigure(self, width: int, height: int, fps: int) -> dict: + width = int(width) + height = int(height) + fps = int(fps) + if width < 1 or height < 1 or fps < 1: + raise RuntimeError("width, height, and fps must be positive integers") + + if not self._lock.acquire(timeout=1.0): + raise RuntimeError("camera busy") + try: + self.width = width + self.height = height + self.fps = fps + self._last_error = f"Reconfiguring camera to {width}x{height}@{fps}..." + self._latest_frame = None + self._latest_jpeg = None + self._frame_ts = 0.0 + self._close_locked() + self._reopen_after = 0.0 + self._consecutive_read_failures = 0 + finally: + self._lock.release() + + deadline = time.time() + 6.0 + while time.time() < deadline and not self._stop.is_set(): + status = self.status() + if status["ok"]: + return status + time.sleep(0.05) + return self.status() + + def set_source(self, source: Union[str, int]) -> dict: + resolved = self._resolve_source(source) + if not self._lock.acquire(timeout=1.0): + raise RuntimeError("camera busy") + try: + self.source = resolved + self._last_error = f"Switching camera source to {resolved}..." + self._latest_frame = None + self._latest_jpeg = None + self._frame_ts = 0.0 + self._close_locked() + self._reopen_after = 0.0 + self._consecutive_read_failures = 0 + finally: + self._lock.release() + + deadline = time.time() + 6.0 + while time.time() < deadline and not self._stop.is_set(): + status = self.status() + if status["ok"]: + return status + time.sleep(0.05) + return self.status() + + def set_preferred_realsense_serial(self, serial: str) -> dict: + value = str(serial or "").strip() + if not self._lock.acquire(timeout=1.0): + raise RuntimeError("camera busy") + try: + self._preferred_realsense_serial = value + self._config_realsense_serial = value + if self.source == "realsense": + self._last_error = f"Switching preferred RealSense to {value or '(auto)'}..." + self._latest_frame = None + self._latest_jpeg = None + self._frame_ts = 0.0 + self._close_locked() + self._reopen_after = 0.0 + self._consecutive_read_failures = 0 + finally: + self._lock.release() + + deadline = time.time() + 6.0 + while time.time() < deadline and not self._stop.is_set(): + status = self.status() + if status["ok"] or self.source != "realsense": + return status + time.sleep(0.05) + return self.status() + + def status(self) -> dict: + self._refresh_realsense_preferences() + return { + "ok": bool(self._rs_pipeline is not None or (self._cap is not None and self._cap.isOpened())), + "requested_source": str(self.source), + "source": str(self._camera_source_in_use if self._camera_source_in_use is not None else self.source), + "backend": self._backend, + "profile": self._active_profile, + "requested_profile": f"{self.width}x{self.height}@{self.fps}", + "requested_width": self.width, + "requested_height": self.height, + "requested_fps": self.fps, + "preferred_realsense_serial": self._preferred_realsense_serial, + "config_realsense_serial": self._config_realsense_serial, + "configured_realsense_serial": self._configured_realsense_serial, + "realsense_serial": self._realsense_serial, + "last_error": self._last_error, + "frame_time": self._frame_ts, + } + + +def static_file_response(path: Path) -> tuple[bytes, str]: + raw = path.read_bytes() + content_type, _ = mimetypes.guess_type(str(path)) + return raw, content_type or "application/octet-stream" + + +class SamplesHandler(BaseHTTPRequestHandler): + server_version = "DirectCameraSamples/1.0" + + def _json(self, payload: dict, status: int = 200): + raw = json.dumps(payload, ensure_ascii=False).encode("utf-8") + self.send_response(status) + self.send_header("Content-Type", "application/json; charset=utf-8") + self.send_header("Content-Length", str(len(raw))) + self.send_header("Cache-Control", "no-store") + self.end_headers() + self.wfile.write(raw) + + def _text(self, text: str, status: int = 200, content_type: str = "text/plain; charset=utf-8"): + raw = text.encode("utf-8") + self.send_response(status) + self.send_header("Content-Type", content_type) + self.send_header("Content-Length", str(len(raw))) + self.send_header("Cache-Control", "no-store") + self.end_headers() + self.wfile.write(raw) + + def _binary(self, raw: bytes, status: int = 200, content_type: str = "application/octet-stream", cache_control: str = "no-store"): + self.send_response(status) + self.send_header("Content-Type", content_type) + self.send_header("Content-Length", str(len(raw))) + self.send_header("Cache-Control", cache_control) + self.end_headers() + self.wfile.write(raw) + + def log_message(self, fmt: str, *args): + path = getattr(self, "path", "") + if path.startswith("/api/health") or path.startswith("/api/photos"): + return + print(f"HTTP {self.command} {path} -> {args[1]}") + + def do_GET(self): + parsed = urllib.parse.urlparse(self.path) + path = parsed.path + q = urllib.parse.parse_qs(parsed.query) + + if path == "/": + raw, content_type = static_file_response(DIRECT_CAMERA_HTML) + return self._binary(raw, content_type=f"{content_type}; charset=utf-8") + + if path == "/static/direct_camera.css": + raw, content_type = static_file_response(DIRECT_CAMERA_CSS) + return self._binary(raw, content_type=content_type) + + if path == "/static/direct_camera.js": + raw, content_type = static_file_response(DIRECT_CAMERA_JS) + return self._binary(raw, content_type=f"{content_type}; charset=utf-8") + + if path == "/api/health": + return self._json( + { + "ok": True, + "camera": self.server.camera.status(), + "samples_dir": str(self.server.samples_dir), + } + ) + + if path == "/api/cameras": + camera_status = self.server.camera.status() + realsense_devices = list_realsense_devices() + video_devices = list_video_device_info() + preferred_serial = str(camera_status.get("preferred_realsense_serial") or "").strip() + active_serial = str(camera_status.get("realsense_serial") or "").strip() + + preferred_device = None + active_device = None + rs_items = [] + for item in realsense_devices: + serial = str(item.get("serial") or "").strip() + is_preferred = bool(serial and serial == preferred_serial) + is_active = bool(serial and serial == active_serial) + if is_preferred: + preferred_device = item + if is_active: + active_device = item + label = str(item.get("label") or item.get("value") or "").strip() + tags = [] + if is_preferred: + tags.append("default") + if is_active: + tags.append("live") + if tags: + label = f"{label} ({', '.join(tags)})" + rs_items.append({**item, "kind": "realsense", "is_preferred": is_preferred, "is_active": is_active, "label": label}) + + generic_label = "Preferred RealSense" + if preferred_serial: + generic_label += f" [{preferred_serial}]" + generic_label += " (default)" + + options = [{"value": "realsense", "label": generic_label, "kind": "realsense-default"}] + options.extend(rs_items) + options.extend({**item, "kind": "video"} for item in video_devices) + options.append({"value": "auto", "label": "Auto fallback", "kind": "auto"}) + return self._json( + { + "ok": True, + "selected_source": str(self.server.camera.source), + "active_source": str(camera_status.get("source") or self.server.camera.source), + "preferred_realsense_serial": preferred_serial, + "configured_realsense_serial": str(camera_status.get("configured_realsense_serial") or ""), + "config_realsense_serial": str(camera_status.get("config_realsense_serial") or ""), + "realsense_devices": rs_items, + "video_devices": video_devices, + "preferred_device": preferred_device, + "active_device": active_device, + "options": options, + } + ) + + if path == "/api/photos": + return self._json({"items": list_photos(self.server.samples_dir)}) + + if path == "/api/capture": + try: + prefix = ((q.get("prefix") or [self.server.capture_prefix])[0] or self.server.capture_prefix).strip() or self.server.capture_prefix + ext = ((q.get("ext") or [self.server.capture_ext])[0] or self.server.capture_ext).strip().lstrip(".") or self.server.capture_ext + saved = self.server.camera.capture(self.server.samples_dir, prefix=prefix, ext=ext) + return self._json({"ok": True, "name": saved.name, "path": str(saved)}) + except Exception as e: + return self._json({"ok": False, "error": str(e)}, status=500) + + if path == "/api/frame.jpg": + jpg = self.server.camera.latest_jpeg() + if jpg is None: + return self._text("camera not ready", status=503) + self.send_response(200) + self.send_header("Content-Type", "image/jpeg") + self.send_header("Content-Length", str(len(jpg))) + self.send_header("Cache-Control", "no-store") + self.end_headers() + self.wfile.write(jpg) + return + + if path == "/api/set_resolution": + try: + width = int((q.get("width") or [""])[0]) + height = int((q.get("height") or [""])[0]) + fps = int((q.get("fps") or [""])[0]) + except Exception: + return self._json({"ok": False, "error": "width, height, and fps are required integers"}, status=400) + try: + status = self.server.camera.reconfigure(width, height, fps) + return self._json({"ok": True, "camera": status}) + except Exception as e: + return self._json({"ok": False, "error": str(e)}, status=500) + + if path == "/api/set_camera": + source = (q.get("source") or [""])[0].strip() + if not source: + return self._json({"ok": False, "error": "missing source"}, status=400) + try: + status = self.server.camera.set_source(source) + return self._json({"ok": True, "camera": status}) + except Exception as e: + return self._json({"ok": False, "error": str(e)}, status=500) + + if path == "/api/set_preferred_camera": + serial = (q.get("serial") or [""])[0].strip() + try: + saved = write_config_preferred_realsense_serial(serial) + status = self.server.camera.set_preferred_realsense_serial(saved) + return self._json({"ok": True, "serial": saved, "camera": status}) + except Exception as e: + return self._json({"ok": False, "error": str(e)}, status=500) + + if path == "/api/delete": + name = safe_name((q.get("name") or [""])[0]) + if not name: + return self._json({"ok": False, "error": "missing name"}, status=400) + p = (self.server.samples_dir / name).resolve() + if p.parent != self.server.samples_dir.resolve() or not p.exists(): + return self._json({"ok": False, "error": "not found"}, status=404) + try: + p.unlink() + return self._json({"ok": True, "name": name}) + except Exception as e: + return self._json({"ok": False, "error": str(e)}, status=500) + + if path == "/api/download": + name = safe_name((q.get("name") or [""])[0]) + if not name: + return self._text("missing name", status=400) + p = (self.server.samples_dir / name).resolve() + if p.parent != self.server.samples_dir.resolve() or not p.exists(): + return self._text("not found", status=404) + data = p.read_bytes() + self.send_response(200) + self.send_header("Content-Type", "application/octet-stream") + self.send_header("Content-Length", str(len(data))) + self.send_header("Content-Disposition", f'attachment; filename="{p.name}"') + self.end_headers() + self.wfile.write(data) + return + + if path == "/api/download_all.zip": + buf = io.BytesIO() + with zipfile.ZipFile(buf, "w", zipfile.ZIP_DEFLATED) as zf: + for item in list_photos(self.server.samples_dir): + p = self.server.samples_dir / item["name"] + zf.write(p, arcname=p.name) + raw = buf.getvalue() + self.send_response(200) + self.send_header("Content-Type", "application/zip") + self.send_header("Content-Length", str(len(raw))) + self.send_header("Content-Disposition", 'attachment; filename="samples.zip"') + self.end_headers() + self.wfile.write(raw) + return + + if path.startswith("/samples/"): + name = safe_name(path[len("/samples/"):]) + p = (self.server.samples_dir / name).resolve() + if p.parent != self.server.samples_dir.resolve() or not p.exists(): + return self._text("not found", status=404) + data = p.read_bytes() + ext = p.suffix.lower() + ct = "image/jpeg" if ext in (".jpg", ".jpeg") else "image/png" + self.send_response(200) + self.send_header("Content-Type", ct) + self.send_header("Content-Length", str(len(data))) + self.send_header("Cache-Control", "no-store") + self.end_headers() + self.wfile.write(data) + return + + if path == "/preview.mjpg": + self.send_response(200) + self.send_header("Age", "0") + self.send_header("Cache-Control", "no-cache, private") + self.send_header("Pragma", "no-cache") + self.send_header("Content-Type", "multipart/x-mixed-replace; boundary=frame") + self.end_headers() + try: + while True: + jpg = self.server.camera.latest_jpeg() + if jpg is None: + time.sleep(0.05) + continue + self.wfile.write(b"--frame\r\n") + self.wfile.write(b"Content-Type: image/jpeg\r\n") + self.wfile.write(f"Content-Length: {len(jpg)}\r\n\r\n".encode("ascii")) + self.wfile.write(jpg) + self.wfile.write(b"\r\n") + time.sleep(0.12) + except BrokenPipeError: + return + except ConnectionResetError: + return + except Exception: + return + + return self._text("not found", status=404) + + +class SamplesServer(ThreadingHTTPServer): + def __init__( + self, + addr, + handler_cls, + camera: DirectCamera, + samples_dir: Path, + capture_prefix: str = "sample", + capture_ext: str = "jpg", + ): + super().__init__(addr, handler_cls) + self.camera = camera + self.samples_dir = samples_dir + self.capture_prefix = capture_prefix + self.capture_ext = capture_ext + + +def parse_args(): + parser = argparse.ArgumentParser(description="Standalone direct-camera samples server") + parser.add_argument("--host", default="0.0.0.0") + parser.add_argument("--port", type=int, default=int(os.environ.get("PORT", "8091"))) + parser.add_argument("--camera", default=os.environ.get("CAMERA_DEVICE", os.environ.get("CAMERA_INDEX", "auto"))) + parser.add_argument("--width", type=int, default=int(os.environ.get("FRAME_WIDTH", "960"))) + parser.add_argument("--height", type=int, default=int(os.environ.get("FRAME_HEIGHT", "540"))) + parser.add_argument("--fps", type=int, default=int(os.environ.get("FPS", "15"))) + parser.add_argument("--samples-dir", default=os.environ.get("SAMPLES_DIR", str(DEFAULT_SAMPLES_DIR))) + parser.add_argument("--capture-prefix", default=os.environ.get("CAPTURE_PREFIX", "sample")) + parser.add_argument("--capture-ext", default=os.environ.get("CAPTURE_EXT", "jpg")) + return parser.parse_args() + + +def main(): + args = parse_args() + samples_dir = Path(args.samples_dir).expanduser().resolve() + samples_dir.mkdir(parents=True, exist_ok=True) + + if str(args.camera).strip().lower() in ("realsense", "rs") and not _HAS_RS: + raise SystemExit( + "RealSense backend requested but pyrealsense2 is not installed in this environment. " + "Run this script from the teleimager conda env or install pyrealsense2 here." + ) + + camera = DirectCamera(source=args.camera, width=args.width, height=args.height, fps=args.fps) + camera.start() + + server = SamplesServer( + (args.host, args.port), + SamplesHandler, + camera=camera, + samples_dir=samples_dir, + capture_prefix=str(args.capture_prefix).strip() or "sample", + capture_ext=str(args.capture_ext).strip().lstrip(".") or "jpg", + ) + ip = get_local_ip() + print(f"Video devices: {', '.join(list_video_devices()) or '(none found)'}") + if _HAS_RS: + print(f"RealSense serials: {', '.join(list_realsense_serials()) or '(none found)'}") + print(f"Preferred RealSense serial: {camera._preferred_realsense_serial}") + print(f"Samples dir: {samples_dir}") + print(f"Camera source: {args.camera}") + print(f"Capture naming: prefix={server.capture_prefix} ext={server.capture_ext}") + print(f"Open: http://{ip}:{args.port}/") + + try: + server.serve_forever() + except KeyboardInterrupt: + pass + finally: + server.shutdown() + camera.stop() + + +if __name__ == "__main__": + main() diff --git a/Core/error_events.py b/Core/error_events.py new file mode 100644 index 0000000..d8f3450 --- /dev/null +++ b/Core/error_events.py @@ -0,0 +1,104 @@ +""" +error_events.py + +Small structured error event sink: +- In-memory counters per (source, stage) +- JSONL event log (append-only) +- JSON counters snapshot for quick dashboard/debug fetch +""" + +from __future__ import annotations + +import json +import threading +import time +from pathlib import Path +from typing import Any, Dict + +try: + from Core import settings as config + + _STATE_DIR = Path(config.APP_RUNTIME_DIR) + _LEGACY_STATE_DIR = Path(config.APP_DATA_DIR) +except Exception: + _STATE_DIR = Path(__file__).resolve().parents[1] / "Data" / "Runtime" + _LEGACY_STATE_DIR = Path(__file__).resolve().parents[1] / "Data" + +_STATE_DIR.mkdir(parents=True, exist_ok=True) +_COUNTERS_PATH = _STATE_DIR / "error_counters.json" +_EVENTS_PATH = _STATE_DIR / "error_events.jsonl" +_LEGACY_COUNTERS_PATH = _LEGACY_STATE_DIR / "error_counters.json" + +_LOCK = threading.Lock() +_COUNTERS: Dict[str, int] = {} +_LAST_EVENT_TS: Dict[str, float] = {} +_MIN_INTERVAL_SEC = 0.75 + + +def _load_counters() -> Dict[str, int]: + for candidate in (_COUNTERS_PATH, _LEGACY_COUNTERS_PATH): + try: + if candidate.exists(): + raw = json.loads(candidate.read_text(encoding="utf-8")) + if isinstance(raw, dict): + out: Dict[str, int] = {} + for k, v in raw.items(): + try: + out[str(k)] = int(v) + except Exception: + continue + return out + except Exception: + pass + return {} + + +with _LOCK: + _COUNTERS.update(_load_counters()) + + +def record_error(source: str, stage: str, exc: Any = None, context: Dict[str, Any] | None = None) -> int: + """ + Record one structured error event. + Returns current counter value for this error key. + """ + now = time.time() + src = str(source or "unknown") + stg = str(stage or "unknown") + key = f"{src}:{stg}" + msg = "" if exc is None else str(exc) + payload = { + "time": now, + "source": src, + "stage": stg, + "message": msg, + "context": context or {}, + } + + with _LOCK: + count = _COUNTERS.get(key, 0) + 1 + _COUNTERS[key] = count + payload["count"] = count + + # Throttle repetitive event writes for the same key. + last = float(_LAST_EVENT_TS.get(key, 0.0)) + should_write_event = (now - last) >= _MIN_INTERVAL_SEC + if should_write_event: + _LAST_EVENT_TS[key] = now + try: + with _EVENTS_PATH.open("a", encoding="utf-8") as f: + f.write(json.dumps(payload, ensure_ascii=False) + "\n") + except Exception: + pass + + try: + _COUNTERS_PATH.write_text(json.dumps(_COUNTERS, ensure_ascii=False, indent=2), encoding="utf-8") + except Exception: + pass + + return count + + +def get_error_counters() -> Dict[str, int]: + with _LOCK: + return dict(_COUNTERS) diff --git a/Core/people_registry.py b/Core/people_registry.py new file mode 100644 index 0000000..f0a74b7 --- /dev/null +++ b/Core/people_registry.py @@ -0,0 +1,456 @@ +from __future__ import annotations + +import json +import math +import shutil +import time +import zipfile +from datetime import datetime +from pathlib import Path +from typing import Any, Dict, Optional + +import cv2 +import numpy as np + +from Core import settings as config + + +PERSON_JSON = "person.json" +FACE_REF_NAME = "face_ref.jpg" +SCENE_REF_NAME = "scene_ref.jpg" +CAPTURE_PREFIX = "capture_" +SUPPORTED_IMAGE_EXTS = (".jpg", ".jpeg", ".png", ".webp") + + +def people_dir() -> Path: + path = Path(config.PEOPLE_DIR).resolve() + path.mkdir(parents=True, exist_ok=True) + return path + + +def _now_ts() -> float: + return time.time() + + +def _fmt_date(ts: float) -> str: + return datetime.fromtimestamp(float(ts)).strftime("%Y-%m-%d") + + +def _person_dirs() -> list[Path]: + root = people_dir() + return [p for p in sorted(root.iterdir()) if p.is_dir()] + + +def _person_json_path(person_dir: Path) -> Path: + return person_dir / PERSON_JSON + + +def _read_person(person_dir: Path) -> Optional[Dict[str, Any]]: + try: + raw = json.loads(_person_json_path(person_dir).read_text(encoding="utf-8")) + if not isinstance(raw, dict): + return None + return raw + except Exception: + return None + + +def _write_person(person_dir: Path, data: Dict[str, Any]) -> None: + person_dir.mkdir(parents=True, exist_ok=True) + _person_json_path(person_dir).write_text(json.dumps(data, ensure_ascii=False, indent=2), encoding="utf-8") + + +def _list_existing_sequences() -> list[int]: + out: list[int] = [] + for person_dir in _person_dirs(): + meta = _read_person(person_dir) + if not meta: + continue + try: + out.append(int(meta.get("sequence", 0))) + except Exception: + continue + return out + + +def _next_sequence() -> int: + seqs = _list_existing_sequences() + return (max(seqs) if seqs else 0) + 1 + + +def _make_person_id(sequence: int, ts: float) -> str: + return f"guest_{int(sequence):04d}_{datetime.fromtimestamp(ts).strftime('%Y%m%d_%H%M%S')}" + + +def _display_label(meta: Dict[str, Any]) -> str: + short_id = str(meta.get("short_id") or meta.get("person_id") or "guest").replace("_", " ") + created_date = str(meta.get("created_date") or "") + return f"{short_id} from {created_date}".strip() + + +def _clip_box(box: Dict[str, Any], frame_shape: tuple[int, ...], pad_ratio: float = 0.18) -> Optional[tuple[int, int, int, int]]: + if not isinstance(box, dict): + return None + try: + h, w = frame_shape[:2] + x = float(box.get("x", 0.0)) + y = float(box.get("y", 0.0)) + bw = max(1.0, float(box.get("w", 0.0))) + bh = max(1.0, float(box.get("h", 0.0))) + pad_w = bw * float(pad_ratio) + pad_h = bh * float(pad_ratio) + x1 = max(0, int(math.floor(x - pad_w))) + y1 = max(0, int(math.floor(y - pad_h))) + x2 = min(w, int(math.ceil(x + bw + pad_w))) + y2 = min(h, int(math.ceil(y + bh + pad_h))) + if x2 <= x1 or y2 <= y1: + return None + return x1, y1, x2, y2 + except Exception: + return None + + +def detect_face_box(image_bgr: np.ndarray) -> Optional[Dict[str, int]]: + if image_bgr is None or getattr(image_bgr, "size", 0) == 0: + return None + try: + cascade = cv2.CascadeClassifier(str(Path(cv2.data.haarcascades) / "haarcascade_frontalface_default.xml")) + if cascade.empty(): + return None + gray = cv2.cvtColor(image_bgr, cv2.COLOR_BGR2GRAY) + faces = cascade.detectMultiScale(gray, scaleFactor=1.1, minNeighbors=5, minSize=(48, 48)) + if len(faces) == 0: + return None + x, y, w, h = max(faces, key=lambda item: int(item[2]) * int(item[3])) + return {"x": int(x), "y": int(y), "w": int(w), "h": int(h)} + except Exception: + return None + + +def _extract_face_crop(frame_bgr: np.ndarray, face_box: Dict[str, Any]) -> Optional[np.ndarray]: + clipped = _clip_box(face_box, frame_bgr.shape, pad_ratio=0.18) + if clipped is None: + return None + x1, y1, x2, y2 = clipped + crop = frame_bgr[y1:y2, x1:x2] + if crop is None or crop.size == 0: + return None + return crop.copy() + + +def _extract_scene_crop(frame_bgr: np.ndarray, subject_box: Optional[Dict[str, Any]]) -> np.ndarray: + if frame_bgr is None or getattr(frame_bgr, "size", 0) == 0: + raise ValueError("empty frame") + if not subject_box: + return frame_bgr.copy() + clipped = _clip_box(subject_box, frame_bgr.shape, pad_ratio=0.28) + if clipped is None: + return frame_bgr.copy() + x1, y1, x2, y2 = clipped + crop = frame_bgr[y1:y2, x1:x2] + if crop is None or crop.size == 0: + return frame_bgr.copy() + return crop.copy() + + +def _compute_embedding(face_bgr: np.ndarray) -> np.ndarray: + gray = cv2.cvtColor(face_bgr, cv2.COLOR_BGR2GRAY) + gray = cv2.resize(gray, (48, 48), interpolation=cv2.INTER_AREA) + gray = cv2.equalizeHist(gray) + vec = gray.astype(np.float32).reshape(-1) + vec -= float(vec.mean()) + norm = float(np.linalg.norm(vec)) + if norm <= 1e-6: + return vec + return vec / norm + + +def _embedding_similarity(a: np.ndarray, b: np.ndarray) -> float: + if a.size == 0 or b.size == 0: + return 0.0 + denom = float(np.linalg.norm(a) * np.linalg.norm(b)) + if denom <= 1e-6: + return 0.0 + return float(np.dot(a, b) / denom) + + +def _load_embedding(meta: Dict[str, Any]) -> np.ndarray: + raw = meta.get("embedding") or [] + try: + arr = np.asarray(raw, dtype=np.float32) + except Exception: + arr = np.asarray([], dtype=np.float32) + return arr + + +def _save_image(path: Path, image_bgr: np.ndarray) -> None: + path.parent.mkdir(parents=True, exist_ok=True) + cv2.imwrite(str(path), image_bgr) + + +def _append_sample(person_dir: Path, meta: Dict[str, Any], face_bgr: np.ndarray, scene_bgr: np.ndarray, embedding: np.ndarray, source: str) -> Dict[str, Any]: + now = _now_ts() + sample_count = int(meta.get("sample_count", 0)) + 1 + prev_embedding = _load_embedding(meta) + if prev_embedding.size and prev_embedding.shape == embedding.shape: + new_embedding = ((prev_embedding * float(sample_count - 1)) + embedding) / float(sample_count) + norm = float(np.linalg.norm(new_embedding)) + if norm > 1e-6: + new_embedding = new_embedding / norm + else: + new_embedding = embedding + + face_name = f"face_{sample_count:03d}.jpg" + scene_name = f"scene_{sample_count:03d}.jpg" + _save_image(person_dir / face_name, face_bgr) + _save_image(person_dir / scene_name, scene_bgr) + + meta["sample_count"] = sample_count + meta["times_seen"] = int(meta.get("times_seen", 0)) + 1 + meta["last_seen_at"] = now + meta["embedding"] = new_embedding.astype(float).tolist() + meta["last_source"] = str(source or "vision") + meta["face_images"] = sorted( + [p.name for p in person_dir.iterdir() if p.is_file() and p.name.startswith("face_") and p.suffix.lower() in SUPPORTED_IMAGE_EXTS] + ) + meta["scene_images"] = sorted( + [p.name for p in person_dir.iterdir() if p.is_file() and p.name.startswith("scene_") and p.suffix.lower() in SUPPORTED_IMAGE_EXTS] + ) + if not (person_dir / FACE_REF_NAME).exists(): + _save_image(person_dir / FACE_REF_NAME, face_bgr) + if not (person_dir / SCENE_REF_NAME).exists(): + _save_image(person_dir / SCENE_REF_NAME, scene_bgr) + _write_person(person_dir, meta) + return meta + + +def _create_person(face_bgr: np.ndarray, scene_bgr: np.ndarray, embedding: np.ndarray, source: str) -> Dict[str, Any]: + now = _now_ts() + seq = _next_sequence() + person_id = _make_person_id(seq, now) + short_id = f"guest_{seq:04d}" + person_dir = people_dir() / person_id + _save_image(person_dir / FACE_REF_NAME, face_bgr) + _save_image(person_dir / SCENE_REF_NAME, scene_bgr) + meta = { + "person_id": person_id, + "short_id": short_id, + "display_name": f"{short_id} from {_fmt_date(now)}", + "sequence": seq, + "created_at": now, + "created_date": _fmt_date(now), + "last_seen_at": now, + "sample_count": 0, + "times_seen": 0, + "source": str(source or "vision"), + "last_source": str(source or "vision"), + "embedding": embedding.astype(float).tolist(), + "face_images": [], + "scene_images": [], + "captured_photos": [], + } + meta = _append_sample(person_dir, meta, face_bgr, scene_bgr, embedding, source=source) + meta["new_person"] = True + meta["known_person"] = False + meta["person_dir"] = str(person_dir) + meta["display_label"] = _display_label(meta) + return meta + + +def recognize_or_enroll(frame_bgr: np.ndarray, face_box: Optional[Dict[str, Any]], subject_box: Optional[Dict[str, Any]] = None, threshold: Optional[float] = None, source: str = "vision") -> Dict[str, Any]: + if frame_bgr is None or getattr(frame_bgr, "size", 0) == 0: + return {"ok": False, "error": "empty frame"} + if face_box is None: + return {"ok": False, "error": "no face"} + + try: + face_bgr = _extract_face_crop(frame_bgr, face_box) + if face_bgr is None: + return {"ok": False, "error": "invalid face crop"} + scene_bgr = _extract_scene_crop(frame_bgr, subject_box) + embedding = _compute_embedding(face_bgr) + if embedding.size == 0: + return {"ok": False, "error": "invalid embedding"} + + match_threshold = float(threshold if threshold is not None else config.read_vision_face_recognition_threshold()) + best_meta = None + best_dir = None + best_score = -1.0 + + for person_dir in _person_dirs(): + meta = _read_person(person_dir) + if not meta: + continue + stored = _load_embedding(meta) + if stored.size == 0 or stored.shape != embedding.shape: + continue + score = _embedding_similarity(embedding, stored) + if score > best_score: + best_score = score + best_meta = meta + best_dir = person_dir + + if best_meta is not None and best_dir is not None and best_score >= match_threshold: + best_meta = _append_sample(best_dir, best_meta, face_bgr, scene_bgr, embedding, source=source) + best_meta["ok"] = True + best_meta["known_person"] = True + best_meta["new_person"] = False + best_meta["match_score"] = float(best_score) + best_meta["display_label"] = _display_label(best_meta) + return best_meta + + created = _create_person(face_bgr, scene_bgr, embedding, source=source) + created["ok"] = True + created["match_score"] = float(best_score if best_score >= 0.0 else 0.0) + return created + except Exception as e: + return {"ok": False, "error": str(e)} + + +def _load_image_from_bytes(data: bytes) -> Optional[np.ndarray]: + if not data: + return None + arr = np.frombuffer(data, dtype=np.uint8) + image = cv2.imdecode(arr, cv2.IMREAD_COLOR) + return image + + +def import_person_photo(data: bytes, filename: str = "", person_id: str = "") -> Dict[str, Any]: + image = _load_image_from_bytes(data) + if image is None: + return {"ok": False, "error": "invalid image"} + face_box = detect_face_box(image) + if face_box is None: + return {"ok": False, "error": "no face detected in uploaded image"} + person_id = str(person_id or "").strip() + if person_id: + person_dir = people_dir() / person_id + meta = _read_person(person_dir) + if not meta: + return {"ok": False, "error": "person not found"} + face_bgr = _extract_face_crop(image, face_box) + if face_bgr is None: + return {"ok": False, "error": "invalid face crop"} + scene_bgr = image.copy() + embedding = _compute_embedding(face_bgr) + meta = _append_sample(person_dir, meta, face_bgr, scene_bgr, embedding, source="upload") + meta["ok"] = True + meta["known_person"] = True + meta["new_person"] = False + meta["display_label"] = _display_label(meta) + return meta + return recognize_or_enroll(image, face_box, None, source="upload") + + +def attach_captured_photo(person_id: str, photo_path: str | Path) -> bool: + person_id = str(person_id or "").strip() + if not person_id: + return False + person_dir = people_dir() / person_id + meta = _read_person(person_dir) + if not meta: + return False + src = Path(photo_path).expanduser() + if not src.exists() or not src.is_file(): + return False + dst = person_dir / f"{CAPTURE_PREFIX}{src.name}" + try: + shutil.copy2(src, dst) + photos = meta.get("captured_photos") or [] + if not isinstance(photos, list): + photos = [] + if dst.name not in photos: + photos.append(dst.name) + meta["captured_photos"] = sorted(photos) + meta["last_seen_at"] = _now_ts() + _write_person(person_dir, meta) + return True + except Exception: + return False + + +def list_people() -> list[Dict[str, Any]]: + items: list[Dict[str, Any]] = [] + for person_dir in _person_dirs(): + meta = _read_person(person_dir) + if not meta: + continue + face_thumb = person_dir / FACE_REF_NAME + scene_thumb = person_dir / SCENE_REF_NAME + items.append( + { + "person_id": str(meta.get("person_id") or person_dir.name), + "short_id": str(meta.get("short_id") or ""), + "display_name": str(meta.get("display_name") or _display_label(meta)), + "created_at": float(meta.get("created_at", 0.0) or 0.0), + "created_date": str(meta.get("created_date") or ""), + "last_seen_at": float(meta.get("last_seen_at", 0.0) or 0.0), + "sample_count": int(meta.get("sample_count", 0) or 0), + "times_seen": int(meta.get("times_seen", 0) or 0), + "source": str(meta.get("source") or meta.get("last_source") or ""), + "last_source": str(meta.get("last_source") or ""), + "face_thumb": face_thumb.name if face_thumb.exists() else "", + "scene_thumb": scene_thumb.name if scene_thumb.exists() else "", + "captured_photos": list(meta.get("captured_photos") or []), + "known": True, + } + ) + items.sort(key=lambda item: float(item.get("last_seen_at", 0.0) or 0.0), reverse=True) + return items + + +def get_person(person_id: str) -> Optional[Dict[str, Any]]: + person_dir = people_dir() / str(person_id or "").strip() + meta = _read_person(person_dir) + if not meta: + return None + meta["person_dir"] = str(person_dir) + meta["display_label"] = _display_label(meta) + return meta + + +def read_person_image(person_id: str, kind: str = "face") -> Optional[tuple[bytes, str, str]]: + person_id = str(person_id or "").strip() + if not person_id: + return None + person_dir = people_dir() / person_id + if kind == "scene": + target = person_dir / SCENE_REF_NAME + else: + target = person_dir / FACE_REF_NAME + if not target.exists(): + return None + data = target.read_bytes() + return data, "image/jpeg", target.name + + +def delete_person(person_id: str) -> bool: + person_dir = people_dir() / str(person_id or "").strip() + if not person_dir.exists() or not person_dir.is_dir(): + return False + shutil.rmtree(person_dir) + return True + + +def reset_people() -> int: + count = 0 + for person_dir in _person_dirs(): + shutil.rmtree(person_dir) + count += 1 + return count + + +def export_person_zip(person_id: str, out_path: Path) -> Optional[Path]: + person_id = str(person_id or "").strip() + if not person_id: + return None + person_dir = people_dir() / person_id + if not person_dir.exists(): + return None + out_path.parent.mkdir(parents=True, exist_ok=True) + with zipfile.ZipFile(out_path, "w", compression=zipfile.ZIP_DEFLATED) as zf: + for child in sorted(person_dir.rglob("*")): + if not child.is_file(): + continue + zf.write(child, arcname=str(child.relative_to(person_dir.parent))) + return out_path diff --git a/Core/settings.py b/Core/settings.py new file mode 100644 index 0000000..43ea36a --- /dev/null +++ b/Core/settings.py @@ -0,0 +1,1201 @@ +import copy +import json +import os +from pathlib import Path +from typing import Any, Dict + +PROJECT_ROOT = Path(__file__).resolve().parents[1] +APP_DATA_DEFAULT = PROJECT_ROOT / "Data" +CONFIG_JSON = APP_DATA_DEFAULT / "Settings" / "config.json" +LEGACY_CONFIG_JSONS = ( + APP_DATA_DEFAULT / "config.json", + PROJECT_ROOT / "Scripts" / "config.json", +) +LEGACY_CONFIG_JSON = LEGACY_CONFIG_JSONS[0] + +AUDIO_PROMPT_FILE_DEFAULTS: Dict[str, str] = { + "welcome_single": "welcome_single.wav", + "welcome_group": "welcome_group.wav", + "welcome_returning": "welcome_returning.wav", + "frame_single": "frame_single.wav", + "frame_group": "frame_group.wav", + "confirm_reminder": "confirm_reminder.wav", + "visitor_left": "visitor_left.wav", + "declined": "declined.wav", + "confirm_timeout": "confirm_timeout.wav", + "session_cancelled": "session_cancelled.wav", + "framing_timeout": "framing_timeout.wav", + "countdown_intro": "countdown_intro.wav", + "count_3": "count_3.wav", + "count_2": "count_2.wav", + "count_1": "count_1.wav", + "smile": "smile.wav", + "countdown_cancelled": "countdown_cancelled.wav", + "lost_from_frame": "lost_from_frame.wav", + "retake_recommended": "retake_recommended.wav", + "retake_yes": "retake_yes.wav", + "retake_limit": "retake_limit.wav", + "photo_saved_thanks": "photo_saved_thanks.wav", +} + +_FALLBACK: Dict[str, Any] = { + "paths": { + "data_dir": "AI_Photographer/Data/G1", + "app_data_dir": "AI_Photographer/Data", + "app_settings_dir": "AI_Photographer/Data/Settings", + "app_scripts_dir": "AI_Photographer/Data/Scripts", + "app_runtime_dir": "AI_Photographer/Data/Runtime", + "app_notes_dir": "AI_Photographer/Data/Notes", + "audio_prompts_dir": "AI_Photographer/Data/Audio", + "audio_prompt_records_file": "AI_Photographer/Data/Settings/audio_prompt_records.json", + "scripts_dir": "AI_Photographer/Scripts", + "web_dir": "AI_Photographer/Web", + "photos_dir": "AI_Photographer/photos/Captures", + "people_dir": "AI_Photographer/photos/people", + "samples_dir": "AI_Photographer/photos/samples", + "replay_recordings_dir": "AI_Photographer/Data/G1", + "replay_recorder_script": "", + "home_file": "arm_home.jsonl", + "photo_phrases_file": "AI_Photographer/Data/Scripts/photo_command_ai.txt", + "sanad_script_file": "AI_Photographer/Data/Scripts/sanad_script.txt", + "runtime_health_file": "AI_Photographer/Data/Runtime/runtime_health.json", + "autonomous_state_file": "AI_Photographer/Data/Runtime/autonomous_state.json", + "upload_db": "AI_Photographer/Data/Runtime/upload_db.json", + }, + "timing": { + "photo_total_sec": 10.0, + "photo_thanks_sec": 3.0, + "photo_delay_sec": 5.0, + "replay_capture_end_margin_sec": 0.25, + "loop_rate": 10.0, + "ai_query_interval": 1.0, + }, + "server": {"photo_server_port": 8080}, + "gemini": { + "api_key": "", + "mic_enabled": True, + "model": "models/gemini-2.5-flash-native-audio-preview-12-2025", + "voice_name": "Charon", + "system_prompt_fallback": ( + "You are Sanad (Bousandah), a friendly Emirati photographer assistant. " + "Speak in UAE dialect (Khaleeji). Be short, energetic, and helpful." + ), + }, + "upload": { + "method": "http", + "url": "", + "s3_bucket": "", + "s3_region": "", + "s3_key": "", + "s3_secret": "", + }, + "mode": { + "default_mode": "manual", + "current_mode": "manual", + }, + "replay": { + "active_file": "photo_G3.jsonl", + }, + "camera": { + "camera_index": 0, + "frame_width": 640, + "frame_height": 480, + "fps": 30, + "preferred_realsense_serial": "243622071722", + }, + "vision": { + "detection_backend": "yolo", + "yolo_runtime": "ultralytics", + "yolo_ultralytics_device": "cpu", + "person_yolo_onnx": "", + "face_yolo_onnx": "", + "input_size": 640, + "person_class_id": 0, + "person_score_thresh": 0.35, + "face_score_thresh": 0.35, + "nms_iou_thresh": 0.45, + "group_min_people": 3, + "group_link_distance_px": 220.0, + "yolo_strict_required": True, + "gemini_context_hz": 8.0, + "gemini_context_silent": True, + "idle_voice_listen_enabled": True, + "hard_target_lock_enabled": True, + "retake_prompt_enabled": True, + "autonomous_greeting_replay_enabled": True, + "autonomous_greeting_replay_file": "right_hand_up.jsonl", + "autonomous_capture_replay_enabled": True, + "retake_max_per_session": 1, + "framing_headroom_min_ratio": 0.06, + "framing_headroom_max_ratio": 0.25, + "framing_eye_line_min_ratio": 0.28, + "framing_eye_line_max_ratio": 0.48, + "framing_retake_score_threshold": 0.68, + "face_recognition_enabled": True, + "face_recognition_threshold": 0.88, + }, + "watchdog": { + "ws_initial_backoff_sec": 1.0, + "ws_max_backoff_sec": 20.0, + "component_restart_delay_sec": 1.0, + "camera_capture_retry_count": 2, + "camera_capture_retry_delay_sec": 0.8, + }, + "audio_prompts": { + "mode": "audio", + "fallback_to_gemini": True, + "files": copy.deepcopy(AUDIO_PROMPT_FILE_DEFAULTS), + }, +} + + +def _deep_merge(base: Dict[str, Any], override: Dict[str, Any]) -> Dict[str, Any]: + out = dict(base) + for k, v in override.items(): + if isinstance(v, dict) and isinstance(out.get(k), dict): + out[k] = _deep_merge(out[k], v) + else: + out[k] = v + return out + + +def _load_config() -> Dict[str, Any]: + for cfg_path in (CONFIG_JSON, *LEGACY_CONFIG_JSONS): + if not cfg_path.exists(): + continue + try: + raw = json.loads(cfg_path.read_text(encoding="utf-8")) + if isinstance(raw, dict): + return _deep_merge(_FALLBACK, raw) + except Exception: + pass + return _FALLBACK + + +_CFG = _load_config() + + +def _c(path: str, default: Any = None) -> Any: + cur: Any = _CFG + for part in path.split("."): + if not isinstance(cur, dict) or part not in cur: + return default + cur = cur[part] + return cur + + +def _env(name: str, default: Any, cast): + val = os.environ.get(name) + if val is None or val == "": + return default + try: + return cast(val) + except Exception: + return default + + +def _as_path(rel_or_abs: str) -> Path: + p = Path(str(rel_or_abs)).expanduser() + if not p.is_absolute(): + parts = p.parts + if parts and parts[0] == PROJECT_ROOT.name: + p = (PROJECT_ROOT.parent / p).resolve() + else: + p = (PROJECT_ROOT / p).resolve() + return p + + +# ================================================== +# PATHS +# ================================================== +DATA_DIR = _as_path(_c("paths.data_dir", "Data/G1")) +APP_DATA_DIR = _as_path(_c("paths.app_data_dir", "Data")) +APP_SETTINGS_DIR = _as_path(_c("paths.app_settings_dir", "Data/Settings")) +APP_SCRIPTS_DIR = _as_path(_c("paths.app_scripts_dir", "Data/Scripts")) +APP_RUNTIME_DIR = _as_path(_c("paths.app_runtime_dir", "Data/Runtime")) +APP_NOTES_DIR = _as_path(_c("paths.app_notes_dir", "Data/Notes")) +AUDIO_PROMPTS_DIR = _as_path( + _c("paths.audio_prompts_dir", "AI_Photographer/Data/Audio") +) +AUDIO_PROMPT_RECORDS_FILE = _as_path( + _c( + "paths.audio_prompt_records_file", + "AI_Photographer/Data/Settings/audio_prompt_records.json", + ) +) +SCRIPTS_DIR = _as_path(_c("paths.scripts_dir", "Scripts")) +WEB_DIR = _as_path(_c("paths.web_dir", "Web")) +PHOTOS_DIR = _as_path(_c("paths.photos_dir", "photos/Captures")) +PEOPLE_DIR = _as_path(_c("paths.people_dir", "photos/people")) +SAMPLES_DIR = _as_path(_c("paths.samples_dir", "photos/samples")) + +REPLAY_FILE = (DATA_DIR / str(_c("replay.active_file", "photo_G3.jsonl"))).resolve() +REPLAY_RECORDINGS_DIR = _as_path(_c("paths.replay_recordings_dir", "Data/G1")) +_REPLAY_RECORDER_SCRIPT_RAW = str(_c("paths.replay_recorder_script", "") or "").strip() +REPLAY_RECORDER_SCRIPT = _as_path(_REPLAY_RECORDER_SCRIPT_RAW) if _REPLAY_RECORDER_SCRIPT_RAW else "" +HOME_FILE = (DATA_DIR / str(_c("paths.home_file", "arm_home.jsonl"))).resolve() +PHOTO_PHRASES_FILE = _as_path(_c("paths.photo_phrases_file", "Data/Scripts/photo_command_ai.txt")) +SANAD_SCRIPT_FILE = _as_path(_c("paths.sanad_script_file", "Data/Scripts/sanad_script.txt")) +RUNTIME_HEALTH_FILE = _as_path(_c("paths.runtime_health_file", "Data/Runtime/runtime_health.json")) +AUTONOMOUS_STATE_FILE = _as_path(_c("paths.autonomous_state_file", "Data/Runtime/autonomous_state.json")) +UPLOAD_DB = _as_path(_c("paths.upload_db", "Data/Runtime/upload_db.json")) + +# ================================================== +# TIMING / PHOTOGRAPHER +# ================================================== +PHOTO_TOTAL_SEC = _env("PHOTO_TOTAL_SEC", float(_c("timing.photo_total_sec", 10.0)), float) +PHOTO_THANKS_SEC = _env("PHOTO_THANKS_SEC", float(_c("timing.photo_thanks_sec", 3.0)), float) +PHOTO_DELAY_SEC = _env("PHOTO_DELAY_SEC", float(_c("timing.photo_delay_sec", 5.0)), float) +REPLAY_CAPTURE_END_MARGIN_SEC = _env( + "REPLAY_CAPTURE_END_MARGIN_SEC", + float(_c("timing.replay_capture_end_margin_sec", 0.25)), + float, +) +LOOP_RATE = _env("LOOP_RATE", float(_c("timing.loop_rate", 10.0)), float) +AI_QUERY_INTERVAL = _env("AI_QUERY_INTERVAL", float(_c("timing.ai_query_interval", 1.0)), float) + +# ================================================== +# PHOTO SERVER +# ================================================== +PHOTO_SERVER_PORT = _env("PHOTO_SERVER_PORT", int(_c("server.photo_server_port", 8080)), int) + +# ================================================== +# GEMINI +# ================================================== +# Gemini key source: Data/Settings/config.json -> gemini.api_key +GEMINI_API_KEY = str(_c("gemini.api_key", "")).strip() +GEMINI_MODEL = _env("GEMINI_MODEL", str(_c("gemini.model", "models/gemini-2.5-flash-native-audio-preview-12-2025")).strip(), str).strip() +VOICE_NAME = _env("VOICE_NAME", str(_c("gemini.voice_name", "Charon")).strip() or "Charon", str).strip() or "Charon" +SYSTEM_PROMPT_FALLBACK = str(_c("gemini.system_prompt_fallback", _FALLBACK["gemini"]["system_prompt_fallback"])) + +# Keep alias for compatibility +MODEL = GEMINI_MODEL +URI = ( + "wss://generativelanguage.googleapis.com/ws/" + "google.ai.generativelanguage.v1alpha.GenerativeService.BidiGenerateContent" + f"?key={GEMINI_API_KEY}" +) + + +def validate_api_key(key: str) -> bool: + k = (key or "").strip() + if not k: + return False + if "your_" in k.lower() or "replace" in k.lower(): + return False + return len(k) >= 20 + + +def load_system_prompt() -> str: + try: + if SANAD_SCRIPT_FILE.exists(): + content = SANAD_SCRIPT_FILE.read_text(encoding="utf-8-sig").strip() + if content: + return content + except Exception: + pass + return SYSTEM_PROMPT_FALLBACK + + +def read_gemini_mic_enabled() -> bool: + raw = _read_config_json_raw() + gemini_cfg = raw.get("gemini") + if not isinstance(gemini_cfg, dict): + gemini_cfg = {} + return _coerce_bool(gemini_cfg.get("mic_enabled", _FALLBACK["gemini"]["mic_enabled"]), True) + + +def write_gemini_mic_enabled(enabled: Any) -> bool: + raw = _read_config_json_raw() + gemini_cfg = raw.get("gemini") + if not isinstance(gemini_cfg, dict): + gemini_cfg = {} + gemini_cfg["mic_enabled"] = _coerce_bool(enabled, bool(_FALLBACK["gemini"]["mic_enabled"])) + raw["gemini"] = gemini_cfg + _write_config_json_raw(raw) + _refresh_cached_cfg(raw) + return bool(gemini_cfg["mic_enabled"]) + + +def read_camera_preferred_realsense_serial() -> str: + raw = _read_config_json_raw() + camera_cfg = raw.get("camera") + if not isinstance(camera_cfg, dict): + camera_cfg = {} + return str(camera_cfg.get("preferred_realsense_serial", _FALLBACK["camera"]["preferred_realsense_serial"]) or "").strip() + + +def write_camera_preferred_realsense_serial(serial: Any) -> str: + raw = _read_config_json_raw() + camera_cfg = raw.get("camera") + if not isinstance(camera_cfg, dict): + camera_cfg = {} + camera_cfg["preferred_realsense_serial"] = str(serial or "").strip() + raw["camera"] = camera_cfg + _write_config_json_raw(raw) + _refresh_cached_cfg(raw) + return str(camera_cfg["preferred_realsense_serial"]) + + +def resolve_replay_path(path_value: Any) -> Path: + p = Path(str(path_value or "").strip()).expanduser() + if not p.is_absolute(): + p = (DATA_DIR / p).resolve() + return p + + +def read_selected_replay_name() -> str: + raw = _read_config_json_raw() + raw = _ensure_replay_block(raw) + replay_cfg = raw.get("replay", {}) + value = str(replay_cfg.get("active_file", "") or "").strip() + if value: + return value.replace("\\", "/").lstrip("/") + try: + return str(REPLAY_FILE.resolve().relative_to(DATA_DIR)).replace("\\", "/") + except Exception: + return REPLAY_FILE.name + + +def read_selected_replay_path() -> Path: + return resolve_replay_path(read_selected_replay_name()) + + +def write_selected_replay_name(name: Any) -> str: + global REPLAY_FILE + clean = str(name or "").strip().replace("\\", "/").lstrip("/") + raw = _read_config_json_raw() + raw = _ensure_replay_block(raw) + replay_cfg = raw.get("replay", {}) + replay_cfg["active_file"] = clean + raw["replay"] = replay_cfg + _write_config_json_raw(raw) + _refresh_cached_cfg(raw) + try: + REPLAY_FILE = resolve_replay_path(clean) + except Exception: + pass + return clean + + +# ================================================== +# UPLOAD / CLOUD +# ================================================== +UPLOAD_METHOD = _env("UPLOAD_METHOD", str(_c("upload.method", "http")).strip(), str).strip() +UPLOAD_URL = _env("UPLOAD_URL", str(_c("upload.url", "")).strip(), str).strip() +UPLOAD_S3_BUCKET = _env("UPLOAD_S3_BUCKET", str(_c("upload.s3_bucket", "")).strip(), str).strip() +UPLOAD_S3_REGION = _env("UPLOAD_S3_REGION", str(_c("upload.s3_region", "")).strip(), str).strip() +UPLOAD_S3_KEY = _env("UPLOAD_S3_KEY", str(_c("upload.s3_key", "")).strip(), str).strip() +UPLOAD_S3_SECRET = _env("UPLOAD_S3_SECRET", str(_c("upload.s3_secret", "")).strip(), str).strip() + +# ================================================== +# MODE / CONTROL +# ================================================== +DEFAULT_MODE = _env("DEFAULT_MODE", str(_c("mode.default_mode", "manual")).strip(), str).strip() or "manual" +if DEFAULT_MODE == "command": + DEFAULT_MODE = "ai" +if DEFAULT_MODE not in ("manual", "ai"): + DEFAULT_MODE = "manual" + +try: + UPLOAD_DB.parent.mkdir(parents=True, exist_ok=True) +except Exception: + pass + +for _dir in ( + APP_DATA_DIR, + APP_SETTINGS_DIR, + APP_SCRIPTS_DIR, + APP_RUNTIME_DIR, + APP_NOTES_DIR, + AUDIO_PROMPTS_DIR, + AUDIO_PROMPT_RECORDS_FILE.parent, + PHOTOS_DIR, + PEOPLE_DIR, + SAMPLES_DIR, + REPLAY_RECORDINGS_DIR, +): + try: + _dir.mkdir(parents=True, exist_ok=True) + except Exception: + pass + + +def _read_config_json_raw() -> Dict[str, Any]: + for cfg_path in (CONFIG_JSON, *LEGACY_CONFIG_JSONS): + try: + if cfg_path.exists(): + raw = json.loads(cfg_path.read_text(encoding="utf-8")) + if isinstance(raw, dict): + return raw + except Exception: + pass + return {} + + +def _write_config_json_raw(raw: Dict[str, Any]) -> None: + CONFIG_JSON.parent.mkdir(parents=True, exist_ok=True) + CONFIG_JSON.write_text(json.dumps(raw, ensure_ascii=False, indent=2), encoding="utf-8") + + +def _coerce_mode(value: Any) -> str: + m = str(value or "").strip().lower() + if m == "command": + return "ai" + if m not in ("manual", "ai"): + return "manual" + return m + + +def _coerce_bool(value: Any, default: bool = False) -> bool: + if isinstance(value, bool): + return value + if isinstance(value, (int, float)): + return bool(value) + if isinstance(value, str): + return value.strip().lower() in ("1", "true", "yes", "on", "y") + return bool(default) + + +def _coerce_detection_backend(value: Any) -> str: + v = str(value or "").strip().lower() + if v in ("yolo", "normal"): + return v + return "yolo" + + +def _coerce_audio_prompt_mode(value: Any) -> str: + v = str(value or "").strip().lower() + if v in ("audio", "gemini"): + return v + return "audio" + + +def _coerce_yolo_runtime(value: Any) -> str: + v = str(value or "").strip().lower() + if v in ("ultralytics", "opencv"): + return v + return "ultralytics" + + +def _coerce_int(value: Any, default: int, min_v: int | None = None, max_v: int | None = None) -> int: + try: + out = int(value) + except Exception: + out = int(default) + if min_v is not None: + out = max(min_v, out) + if max_v is not None: + out = min(max_v, out) + return out + + +def _coerce_float(value: Any, default: float, min_v: float | None = None, max_v: float | None = None) -> float: + try: + out = float(value) + except Exception: + out = float(default) + if min_v is not None: + out = max(min_v, out) + if max_v is not None: + out = min(max_v, out) + return out + + +def _ensure_mode_block(raw: Dict[str, Any]) -> Dict[str, Any]: + if not isinstance(raw, dict) or not raw: + raw = copy.deepcopy(_FALLBACK) + mode_cfg = raw.get("mode") + if not isinstance(mode_cfg, dict): + mode_cfg = {} + default_mode = _coerce_mode(mode_cfg.get("default_mode", DEFAULT_MODE)) + current_mode = _coerce_mode(mode_cfg.get("current_mode", default_mode)) + mode_cfg["default_mode"] = default_mode + mode_cfg["current_mode"] = current_mode + raw["mode"] = mode_cfg + return raw + + +def _ensure_replay_block(raw: Dict[str, Any]) -> Dict[str, Any]: + if not isinstance(raw, dict) or not raw: + raw = copy.deepcopy(_FALLBACK) + replay_cfg = raw.get("replay") + if not isinstance(replay_cfg, dict): + replay_cfg = {} + active_file = str(replay_cfg.get("active_file", _FALLBACK["replay"]["active_file"]) or "").strip() + replay_cfg["active_file"] = active_file or str(_FALLBACK["replay"]["active_file"]) + raw["replay"] = replay_cfg + return raw + + +def _ensure_vision_block(raw: Dict[str, Any]) -> Dict[str, Any]: + if not isinstance(raw, dict) or not raw: + raw = copy.deepcopy(_FALLBACK) + vision_cfg = raw.get("vision") + if not isinstance(vision_cfg, dict): + vision_cfg = {} + vision_cfg["detection_backend"] = _coerce_detection_backend( + vision_cfg.get("detection_backend", _FALLBACK["vision"]["detection_backend"]) + ) + vision_cfg["yolo_runtime"] = _coerce_yolo_runtime( + vision_cfg.get("yolo_runtime", _FALLBACK["vision"]["yolo_runtime"]) + ) + dev = str(vision_cfg.get("yolo_ultralytics_device", _FALLBACK["vision"]["yolo_ultralytics_device"]) or "").strip() + vision_cfg["yolo_ultralytics_device"] = dev or "cpu" + try: + group_min = int(vision_cfg.get("group_min_people", _FALLBACK["vision"]["group_min_people"])) + except Exception: + group_min = int(_FALLBACK["vision"]["group_min_people"]) + vision_cfg["group_min_people"] = max(2, group_min) + + vision_cfg["yolo_strict_required"] = _coerce_bool( + vision_cfg.get("yolo_strict_required", _FALLBACK["vision"]["yolo_strict_required"]), + bool(_FALLBACK["vision"]["yolo_strict_required"]), + ) + + try: + hz = float(vision_cfg.get("gemini_context_hz", _FALLBACK["vision"]["gemini_context_hz"])) + except Exception: + hz = float(_FALLBACK["vision"]["gemini_context_hz"]) + vision_cfg["gemini_context_hz"] = max(0.5, min(30.0, hz)) + + vision_cfg["gemini_context_silent"] = _coerce_bool( + vision_cfg.get("gemini_context_silent", _FALLBACK["vision"]["gemini_context_silent"]), + bool(_FALLBACK["vision"]["gemini_context_silent"]), + ) + vision_cfg["idle_voice_listen_enabled"] = _coerce_bool( + vision_cfg.get("idle_voice_listen_enabled", _FALLBACK["vision"]["idle_voice_listen_enabled"]), + bool(_FALLBACK["vision"]["idle_voice_listen_enabled"]), + ) + + vision_cfg["hard_target_lock_enabled"] = _coerce_bool( + vision_cfg.get("hard_target_lock_enabled", _FALLBACK["vision"]["hard_target_lock_enabled"]), + bool(_FALLBACK["vision"]["hard_target_lock_enabled"]), + ) + vision_cfg["retake_prompt_enabled"] = _coerce_bool( + vision_cfg.get("retake_prompt_enabled", _FALLBACK["vision"]["retake_prompt_enabled"]), + bool(_FALLBACK["vision"]["retake_prompt_enabled"]), + ) + vision_cfg["autonomous_greeting_replay_enabled"] = _coerce_bool( + vision_cfg.get("autonomous_greeting_replay_enabled", _FALLBACK["vision"]["autonomous_greeting_replay_enabled"]), + bool(_FALLBACK["vision"]["autonomous_greeting_replay_enabled"]), + ) + greet_replay_file = str( + vision_cfg.get("autonomous_greeting_replay_file", _FALLBACK["vision"]["autonomous_greeting_replay_file"]) or "" + ).strip() + vision_cfg["autonomous_greeting_replay_file"] = ( + greet_replay_file or str(_FALLBACK["vision"]["autonomous_greeting_replay_file"]) + ) + vision_cfg["autonomous_capture_replay_enabled"] = _coerce_bool( + vision_cfg.get("autonomous_capture_replay_enabled", _FALLBACK["vision"]["autonomous_capture_replay_enabled"]), + bool(_FALLBACK["vision"]["autonomous_capture_replay_enabled"]), + ) + vision_cfg["retake_max_per_session"] = _coerce_int( + vision_cfg.get("retake_max_per_session", _FALLBACK["vision"]["retake_max_per_session"]), + int(_FALLBACK["vision"]["retake_max_per_session"]), + min_v=0, + max_v=5, + ) + vision_cfg["framing_headroom_min_ratio"] = _coerce_float( + vision_cfg.get("framing_headroom_min_ratio", _FALLBACK["vision"]["framing_headroom_min_ratio"]), + float(_FALLBACK["vision"]["framing_headroom_min_ratio"]), + min_v=0.0, + max_v=0.8, + ) + vision_cfg["framing_headroom_max_ratio"] = _coerce_float( + vision_cfg.get("framing_headroom_max_ratio", _FALLBACK["vision"]["framing_headroom_max_ratio"]), + float(_FALLBACK["vision"]["framing_headroom_max_ratio"]), + min_v=0.0, + max_v=0.95, + ) + if vision_cfg["framing_headroom_max_ratio"] <= vision_cfg["framing_headroom_min_ratio"]: + vision_cfg["framing_headroom_max_ratio"] = min(0.95, vision_cfg["framing_headroom_min_ratio"] + 0.05) + + vision_cfg["framing_eye_line_min_ratio"] = _coerce_float( + vision_cfg.get("framing_eye_line_min_ratio", _FALLBACK["vision"]["framing_eye_line_min_ratio"]), + float(_FALLBACK["vision"]["framing_eye_line_min_ratio"]), + min_v=0.0, + max_v=0.9, + ) + vision_cfg["framing_eye_line_max_ratio"] = _coerce_float( + vision_cfg.get("framing_eye_line_max_ratio", _FALLBACK["vision"]["framing_eye_line_max_ratio"]), + float(_FALLBACK["vision"]["framing_eye_line_max_ratio"]), + min_v=0.05, + max_v=1.0, + ) + if vision_cfg["framing_eye_line_max_ratio"] <= vision_cfg["framing_eye_line_min_ratio"]: + vision_cfg["framing_eye_line_max_ratio"] = min(1.0, vision_cfg["framing_eye_line_min_ratio"] + 0.05) + + vision_cfg["framing_retake_score_threshold"] = _coerce_float( + vision_cfg.get("framing_retake_score_threshold", _FALLBACK["vision"]["framing_retake_score_threshold"]), + float(_FALLBACK["vision"]["framing_retake_score_threshold"]), + min_v=0.0, + max_v=1.0, + ) + vision_cfg["face_recognition_enabled"] = _coerce_bool( + vision_cfg.get("face_recognition_enabled", _FALLBACK["vision"]["face_recognition_enabled"]), + bool(_FALLBACK["vision"]["face_recognition_enabled"]), + ) + vision_cfg["face_recognition_threshold"] = _coerce_float( + vision_cfg.get("face_recognition_threshold", _FALLBACK["vision"]["face_recognition_threshold"]), + float(_FALLBACK["vision"]["face_recognition_threshold"]), + min_v=0.5, + max_v=0.995, + ) + raw["vision"] = vision_cfg + return raw + + +def _ensure_watchdog_block(raw: Dict[str, Any]) -> Dict[str, Any]: + if not isinstance(raw, dict) or not raw: + raw = copy.deepcopy(_FALLBACK) + wd_cfg = raw.get("watchdog") + if not isinstance(wd_cfg, dict): + wd_cfg = {} + + wd_cfg["ws_initial_backoff_sec"] = _coerce_float( + wd_cfg.get("ws_initial_backoff_sec", _FALLBACK["watchdog"]["ws_initial_backoff_sec"]), + float(_FALLBACK["watchdog"]["ws_initial_backoff_sec"]), + min_v=0.1, + max_v=60.0, + ) + wd_cfg["ws_max_backoff_sec"] = _coerce_float( + wd_cfg.get("ws_max_backoff_sec", _FALLBACK["watchdog"]["ws_max_backoff_sec"]), + float(_FALLBACK["watchdog"]["ws_max_backoff_sec"]), + min_v=0.5, + max_v=300.0, + ) + if wd_cfg["ws_max_backoff_sec"] < wd_cfg["ws_initial_backoff_sec"]: + wd_cfg["ws_max_backoff_sec"] = wd_cfg["ws_initial_backoff_sec"] + + wd_cfg["component_restart_delay_sec"] = _coerce_float( + wd_cfg.get("component_restart_delay_sec", _FALLBACK["watchdog"]["component_restart_delay_sec"]), + float(_FALLBACK["watchdog"]["component_restart_delay_sec"]), + min_v=0.1, + max_v=20.0, + ) + wd_cfg["camera_capture_retry_count"] = _coerce_int( + wd_cfg.get("camera_capture_retry_count", _FALLBACK["watchdog"]["camera_capture_retry_count"]), + int(_FALLBACK["watchdog"]["camera_capture_retry_count"]), + min_v=0, + max_v=10, + ) + wd_cfg["camera_capture_retry_delay_sec"] = _coerce_float( + wd_cfg.get("camera_capture_retry_delay_sec", _FALLBACK["watchdog"]["camera_capture_retry_delay_sec"]), + float(_FALLBACK["watchdog"]["camera_capture_retry_delay_sec"]), + min_v=0.0, + max_v=30.0, + ) + + raw["watchdog"] = wd_cfg + return raw + + +def _ensure_audio_prompts_block(raw: Dict[str, Any]) -> Dict[str, Any]: + if not isinstance(raw, dict) or not raw: + raw = copy.deepcopy(_FALLBACK) + prompt_cfg = raw.get("audio_prompts") + if not isinstance(prompt_cfg, dict): + prompt_cfg = {} + + prompt_cfg["mode"] = _coerce_audio_prompt_mode( + prompt_cfg.get("mode", _FALLBACK["audio_prompts"]["mode"]) + ) + + prompt_cfg["fallback_to_gemini"] = _coerce_bool( + prompt_cfg.get("fallback_to_gemini", _FALLBACK["audio_prompts"]["fallback_to_gemini"]), + bool(_FALLBACK["audio_prompts"]["fallback_to_gemini"]), + ) + + files_cfg = prompt_cfg.get("files") + if not isinstance(files_cfg, dict): + files_cfg = {} + + normalized_files: Dict[str, str] = {} + for key, default_name in AUDIO_PROMPT_FILE_DEFAULTS.items(): + clean = str(files_cfg.get(key, default_name) or "").strip().replace("\\", "/").lstrip("/") + normalized_files[key] = clean or default_name + + prompt_cfg["files"] = normalized_files + raw["audio_prompts"] = prompt_cfg + return raw + + +def _refresh_cached_cfg(raw: Dict[str, Any]) -> None: + global _CFG + _CFG = _deep_merge(_FALLBACK, raw if isinstance(raw, dict) else {}) + + +def read_runtime_mode() -> str: + raw = _read_config_json_raw() + raw = _ensure_mode_block(raw) + mode_cfg = raw.get("mode", {}) + return _coerce_mode(mode_cfg.get("current_mode", mode_cfg.get("default_mode", DEFAULT_MODE))) + + +def write_runtime_mode(mode: str) -> str: + raw = _read_config_json_raw() + raw = _ensure_mode_block(raw) + mode_cfg = raw.get("mode", {}) + mode_cfg["current_mode"] = _coerce_mode(mode) + raw["mode"] = mode_cfg + _write_config_json_raw(raw) + _refresh_cached_cfg(raw) + return mode_cfg["current_mode"] + + +def read_vision_detector_backend() -> str: + raw = _read_config_json_raw() + raw = _ensure_vision_block(raw) + vision_cfg = raw.get("vision", {}) + return _coerce_detection_backend(vision_cfg.get("detection_backend", "yolo")) + + +def write_vision_detector_backend(backend: str) -> str: + raw = _read_config_json_raw() + raw = _ensure_vision_block(raw) + vision_cfg = raw.get("vision", {}) + vision_cfg["detection_backend"] = _coerce_detection_backend(backend) + raw["vision"] = vision_cfg + _write_config_json_raw(raw) + _refresh_cached_cfg(raw) + return str(vision_cfg["detection_backend"]) + + +def read_vision_yolo_runtime() -> str: + raw = _read_config_json_raw() + raw = _ensure_vision_block(raw) + vision_cfg = raw.get("vision", {}) + return _coerce_yolo_runtime(vision_cfg.get("yolo_runtime", _FALLBACK["vision"]["yolo_runtime"])) + + +def read_vision_yolo_ultralytics_device() -> str: + raw = _read_config_json_raw() + raw = _ensure_vision_block(raw) + vision_cfg = raw.get("vision", {}) + dev = str(vision_cfg.get("yolo_ultralytics_device", _FALLBACK["vision"]["yolo_ultralytics_device"]) or "").strip() + return dev or "cpu" + + +def read_vision_yolo_strict_required() -> bool: + raw = _read_config_json_raw() + raw = _ensure_vision_block(raw) + vision_cfg = raw.get("vision", {}) + return _coerce_bool(vision_cfg.get("yolo_strict_required", _FALLBACK["vision"]["yolo_strict_required"]), True) + + +def read_vision_gemini_context_hz() -> float: + raw = _read_config_json_raw() + raw = _ensure_vision_block(raw) + vision_cfg = raw.get("vision", {}) + try: + hz = float(vision_cfg.get("gemini_context_hz", _FALLBACK["vision"]["gemini_context_hz"])) + except Exception: + hz = float(_FALLBACK["vision"]["gemini_context_hz"]) + return max(0.5, min(30.0, hz)) + + +def read_vision_gemini_context_silent() -> bool: + raw = _read_config_json_raw() + raw = _ensure_vision_block(raw) + vision_cfg = raw.get("vision", {}) + return _coerce_bool(vision_cfg.get("gemini_context_silent", _FALLBACK["vision"]["gemini_context_silent"]), True) + + +def read_vision_idle_voice_listen_enabled() -> bool: + raw = _read_config_json_raw() + raw = _ensure_vision_block(raw) + vision_cfg = raw.get("vision", {}) + return _coerce_bool( + vision_cfg.get("idle_voice_listen_enabled", _FALLBACK["vision"]["idle_voice_listen_enabled"]), + True, + ) + + +def _write_vision_cfg_value(key: str, value: Any, *, bool_field: bool = False) -> Any: + raw = _read_config_json_raw() + raw = _ensure_vision_block(raw) + raw = _ensure_watchdog_block(raw) + vision_cfg = raw.get("vision", {}) + if bool_field: + vision_cfg[key] = _coerce_bool(value, bool(_FALLBACK["vision"].get(key, False))) + else: + vision_cfg[key] = value + raw["vision"] = vision_cfg + raw = _ensure_vision_block(raw) + _write_config_json_raw(raw) + _refresh_cached_cfg(raw) + return raw.get("vision", {}).get(key) + + +def read_vision_hard_target_lock_enabled() -> bool: + raw = _read_config_json_raw() + raw = _ensure_vision_block(raw) + return _coerce_bool(raw.get("vision", {}).get("hard_target_lock_enabled", True), True) + + +def write_vision_hard_target_lock_enabled(enabled: Any) -> bool: + return bool(_write_vision_cfg_value("hard_target_lock_enabled", enabled, bool_field=True)) + + +def read_vision_retake_prompt_enabled() -> bool: + raw = _read_config_json_raw() + raw = _ensure_vision_block(raw) + return _coerce_bool(raw.get("vision", {}).get("retake_prompt_enabled", True), True) + + +def write_vision_retake_prompt_enabled(enabled: Any) -> bool: + return bool(_write_vision_cfg_value("retake_prompt_enabled", enabled, bool_field=True)) + + +def read_vision_autonomous_greeting_replay_enabled() -> bool: + raw = _read_config_json_raw() + raw = _ensure_vision_block(raw) + return _coerce_bool( + raw.get("vision", {}).get( + "autonomous_greeting_replay_enabled", + _FALLBACK["vision"]["autonomous_greeting_replay_enabled"], + ), + bool(_FALLBACK["vision"]["autonomous_greeting_replay_enabled"]), + ) + + +def read_vision_autonomous_greeting_replay_file() -> str: + raw = _read_config_json_raw() + raw = _ensure_vision_block(raw) + val = str( + raw.get("vision", {}).get( + "autonomous_greeting_replay_file", + _FALLBACK["vision"]["autonomous_greeting_replay_file"], + ) + or "" + ).strip() + return val or str(_FALLBACK["vision"]["autonomous_greeting_replay_file"]) + + +def read_vision_autonomous_capture_replay_enabled() -> bool: + raw = _read_config_json_raw() + raw = _ensure_vision_block(raw) + return _coerce_bool( + raw.get("vision", {}).get( + "autonomous_capture_replay_enabled", + _FALLBACK["vision"]["autonomous_capture_replay_enabled"], + ), + bool(_FALLBACK["vision"]["autonomous_capture_replay_enabled"]), + ) + + +def write_vision_autonomous_greeting_replay_enabled(enabled: Any) -> bool: + return bool(_write_vision_cfg_value("autonomous_greeting_replay_enabled", enabled, bool_field=True)) + + +def write_vision_autonomous_greeting_replay_file(filename: Any) -> str: + raw = _read_config_json_raw() + raw = _ensure_vision_block(raw) + vision_cfg = raw.get("vision", {}) + cleaned = str(filename or "").strip().replace("\\", "/").lstrip("/") + vision_cfg["autonomous_greeting_replay_file"] = cleaned or str( + _FALLBACK["vision"]["autonomous_greeting_replay_file"] + ) + raw["vision"] = vision_cfg + raw = _ensure_vision_block(raw) + _write_config_json_raw(raw) + _refresh_cached_cfg(raw) + return str(raw.get("vision", {}).get("autonomous_greeting_replay_file", "")) + + +def write_vision_autonomous_capture_replay_enabled(enabled: Any) -> bool: + return bool(_write_vision_cfg_value("autonomous_capture_replay_enabled", enabled, bool_field=True)) + + +def read_vision_retake_max_per_session() -> int: + raw = _read_config_json_raw() + raw = _ensure_vision_block(raw) + v = raw.get("vision", {}).get("retake_max_per_session", _FALLBACK["vision"]["retake_max_per_session"]) + return _coerce_int(v, int(_FALLBACK["vision"]["retake_max_per_session"]), min_v=0, max_v=5) + + +def read_vision_framing_headroom_min_ratio() -> float: + raw = _read_config_json_raw() + raw = _ensure_vision_block(raw) + v = raw.get("vision", {}).get("framing_headroom_min_ratio", _FALLBACK["vision"]["framing_headroom_min_ratio"]) + return _coerce_float(v, float(_FALLBACK["vision"]["framing_headroom_min_ratio"]), min_v=0.0, max_v=0.8) + + +def read_vision_framing_headroom_max_ratio() -> float: + raw = _read_config_json_raw() + raw = _ensure_vision_block(raw) + v = raw.get("vision", {}).get("framing_headroom_max_ratio", _FALLBACK["vision"]["framing_headroom_max_ratio"]) + return _coerce_float(v, float(_FALLBACK["vision"]["framing_headroom_max_ratio"]), min_v=0.0, max_v=0.95) + + +def read_vision_framing_eye_line_min_ratio() -> float: + raw = _read_config_json_raw() + raw = _ensure_vision_block(raw) + v = raw.get("vision", {}).get("framing_eye_line_min_ratio", _FALLBACK["vision"]["framing_eye_line_min_ratio"]) + return _coerce_float(v, float(_FALLBACK["vision"]["framing_eye_line_min_ratio"]), min_v=0.0, max_v=0.9) + + +def read_vision_framing_eye_line_max_ratio() -> float: + raw = _read_config_json_raw() + raw = _ensure_vision_block(raw) + v = raw.get("vision", {}).get("framing_eye_line_max_ratio", _FALLBACK["vision"]["framing_eye_line_max_ratio"]) + return _coerce_float(v, float(_FALLBACK["vision"]["framing_eye_line_max_ratio"]), min_v=0.05, max_v=1.0) + + +def read_vision_framing_retake_score_threshold() -> float: + raw = _read_config_json_raw() + raw = _ensure_vision_block(raw) + v = raw.get("vision", {}).get( + "framing_retake_score_threshold", + _FALLBACK["vision"]["framing_retake_score_threshold"], + ) + return _coerce_float(v, float(_FALLBACK["vision"]["framing_retake_score_threshold"]), min_v=0.0, max_v=1.0) + + +def read_vision_face_recognition_enabled() -> bool: + raw = _read_config_json_raw() + raw = _ensure_vision_block(raw) + return _coerce_bool( + raw.get("vision", {}).get("face_recognition_enabled", _FALLBACK["vision"]["face_recognition_enabled"]), + bool(_FALLBACK["vision"]["face_recognition_enabled"]), + ) + + +def write_vision_face_recognition_enabled(enabled: Any) -> bool: + return bool(_write_vision_cfg_value("face_recognition_enabled", enabled, bool_field=True)) + + +def read_vision_face_recognition_threshold() -> float: + raw = _read_config_json_raw() + raw = _ensure_vision_block(raw) + v = raw.get("vision", {}).get("face_recognition_threshold", _FALLBACK["vision"]["face_recognition_threshold"]) + return _coerce_float(v, float(_FALLBACK["vision"]["face_recognition_threshold"]), min_v=0.5, max_v=0.995) + + +def write_vision_face_recognition_threshold(value: Any) -> float: + raw = _read_config_json_raw() + raw = _ensure_vision_block(raw) + vision_cfg = raw.get("vision", {}) + vision_cfg["face_recognition_threshold"] = _coerce_float( + value, + float(_FALLBACK["vision"]["face_recognition_threshold"]), + min_v=0.5, + max_v=0.995, + ) + raw["vision"] = vision_cfg + raw = _ensure_vision_block(raw) + _write_config_json_raw(raw) + _refresh_cached_cfg(raw) + return float(raw.get("vision", {}).get("face_recognition_threshold", _FALLBACK["vision"]["face_recognition_threshold"])) + + +def read_watchdog_ws_initial_backoff_sec() -> float: + raw = _read_config_json_raw() + raw = _ensure_watchdog_block(raw) + wd = raw.get("watchdog", {}) + return _coerce_float( + wd.get("ws_initial_backoff_sec", _FALLBACK["watchdog"]["ws_initial_backoff_sec"]), + float(_FALLBACK["watchdog"]["ws_initial_backoff_sec"]), + min_v=0.1, + max_v=60.0, + ) + + +def read_watchdog_ws_max_backoff_sec() -> float: + raw = _read_config_json_raw() + raw = _ensure_watchdog_block(raw) + wd = raw.get("watchdog", {}) + return _coerce_float( + wd.get("ws_max_backoff_sec", _FALLBACK["watchdog"]["ws_max_backoff_sec"]), + float(_FALLBACK["watchdog"]["ws_max_backoff_sec"]), + min_v=0.5, + max_v=300.0, + ) + + +def read_watchdog_component_restart_delay_sec() -> float: + raw = _read_config_json_raw() + raw = _ensure_watchdog_block(raw) + wd = raw.get("watchdog", {}) + return _coerce_float( + wd.get("component_restart_delay_sec", _FALLBACK["watchdog"]["component_restart_delay_sec"]), + float(_FALLBACK["watchdog"]["component_restart_delay_sec"]), + min_v=0.1, + max_v=20.0, + ) + + +def read_watchdog_camera_capture_retry_count() -> int: + raw = _read_config_json_raw() + raw = _ensure_watchdog_block(raw) + wd = raw.get("watchdog", {}) + return _coerce_int( + wd.get("camera_capture_retry_count", _FALLBACK["watchdog"]["camera_capture_retry_count"]), + int(_FALLBACK["watchdog"]["camera_capture_retry_count"]), + min_v=0, + max_v=10, + ) + + +def read_watchdog_camera_capture_retry_delay_sec() -> float: + raw = _read_config_json_raw() + raw = _ensure_watchdog_block(raw) + wd = raw.get("watchdog", {}) + return _coerce_float( + wd.get("camera_capture_retry_delay_sec", _FALLBACK["watchdog"]["camera_capture_retry_delay_sec"]), + float(_FALLBACK["watchdog"]["camera_capture_retry_delay_sec"]), + min_v=0.0, + max_v=30.0, + ) + + +def read_audio_prompts_fallback_to_gemini() -> bool: + raw = _read_config_json_raw() + raw = _ensure_audio_prompts_block(raw) + prompt_cfg = raw.get("audio_prompts", {}) + return _coerce_bool(prompt_cfg.get("fallback_to_gemini", True), True) + + +def read_audio_prompt_mode() -> str: + raw = _read_config_json_raw() + raw = _ensure_audio_prompts_block(raw) + prompt_cfg = raw.get("audio_prompts", {}) + return _coerce_audio_prompt_mode(prompt_cfg.get("mode", "audio")) + + +def write_audio_prompt_mode(mode: Any) -> str: + raw = _read_config_json_raw() + raw = _ensure_audio_prompts_block(raw) + prompt_cfg = raw.get("audio_prompts", {}) + prompt_cfg["mode"] = _coerce_audio_prompt_mode(mode) + raw["audio_prompts"] = prompt_cfg + _write_config_json_raw(raw) + _refresh_cached_cfg(raw) + return str(prompt_cfg["mode"]) + + +def write_audio_prompts_fallback_to_gemini(enabled: Any) -> bool: + raw = _read_config_json_raw() + raw = _ensure_audio_prompts_block(raw) + prompt_cfg = raw.get("audio_prompts", {}) + prompt_cfg["fallback_to_gemini"] = _coerce_bool(enabled, True) + raw["audio_prompts"] = prompt_cfg + _write_config_json_raw(raw) + _refresh_cached_cfg(raw) + return bool(prompt_cfg["fallback_to_gemini"]) + + +def read_audio_prompt_files() -> Dict[str, str]: + raw = _read_config_json_raw() + raw = _ensure_audio_prompts_block(raw) + prompt_cfg = raw.get("audio_prompts", {}) + files_cfg = prompt_cfg.get("files", {}) + out: Dict[str, str] = {} + for key, default_name in AUDIO_PROMPT_FILE_DEFAULTS.items(): + clean = str(files_cfg.get(key, default_name) or "").strip().replace("\\", "/").lstrip("/") + out[key] = clean or default_name + return out + + +def read_audio_prompt_filename(key: str) -> str: + key = str(key or "").strip() + if key not in AUDIO_PROMPT_FILE_DEFAULTS: + raise KeyError(f"unknown audio prompt key: {key}") + return str(read_audio_prompt_files().get(key, AUDIO_PROMPT_FILE_DEFAULTS[key])) + + +def write_audio_prompt_filename(key: str, filename: Any) -> str: + key = str(key or "").strip() + if key not in AUDIO_PROMPT_FILE_DEFAULTS: + raise KeyError(f"unknown audio prompt key: {key}") + raw = _read_config_json_raw() + raw = _ensure_audio_prompts_block(raw) + prompt_cfg = raw.get("audio_prompts", {}) + files_cfg = prompt_cfg.get("files", {}) + clean = str(filename or "").strip().replace("\\", "/").lstrip("/") + files_cfg[key] = clean or AUDIO_PROMPT_FILE_DEFAULTS[key] + prompt_cfg["files"] = files_cfg + raw["audio_prompts"] = prompt_cfg + _write_config_json_raw(raw) + _refresh_cached_cfg(raw) + return str(files_cfg[key]) + + +# Ensure runtime mode keys exist in config.json. +try: + _raw_cfg = _read_config_json_raw() + _normalized = _ensure_mode_block(_raw_cfg) + _normalized = _ensure_vision_block(_normalized) + _normalized = _ensure_watchdog_block(_normalized) + _normalized = _ensure_audio_prompts_block(_normalized) + if _normalized != _raw_cfg or not CONFIG_JSON.exists(): + _write_config_json_raw(_normalized) + _refresh_cached_cfg(_normalized) +except Exception: + pass + +# CAMERA +# ================================================== +CAMERA_INDEX = _env("CAMERA_INDEX", int(_c("camera.camera_index", 0)), int) +FRAME_WIDTH = _env("FRAME_WIDTH", int(_c("camera.frame_width", 640)), int) +FRAME_HEIGHT = _env("FRAME_HEIGHT", int(_c("camera.frame_height", 480)), int) +FPS = _env("FPS", int(_c("camera.fps", 30)), int) + +# ================================================== +# VISION / DETECTOR +# ================================================== +VISION_DETECTION_BACKEND = _coerce_detection_backend(_c("vision.detection_backend", "yolo")) +VISION_YOLO_RUNTIME = _coerce_yolo_runtime(_c("vision.yolo_runtime", "ultralytics")) +VISION_YOLO_ULTRALYTICS_DEVICE = str(_c("vision.yolo_ultralytics_device", "cpu") or "").strip() or "cpu" +VISION_PERSON_YOLO_ONNX = str(_c("vision.person_yolo_onnx", "")).strip() +VISION_FACE_YOLO_ONNX = str(_c("vision.face_yolo_onnx", "")).strip() +VISION_INPUT_SIZE = _env("DETECTOR_INPUT_SIZE", int(_c("vision.input_size", 640)), int) +VISION_PERSON_CLASS_ID = _env("DETECTOR_PERSON_CLASS_ID", int(_c("vision.person_class_id", 0)), int) +VISION_PERSON_SCORE_THRESH = _env( + "DETECTOR_PERSON_SCORE_THRESH", + float(_c("vision.person_score_thresh", 0.35)), + float, +) +VISION_FACE_SCORE_THRESH = _env( + "DETECTOR_FACE_SCORE_THRESH", + float(_c("vision.face_score_thresh", 0.35)), + float, +) +VISION_NMS_IOU_THRESH = _env("DETECTOR_NMS_IOU_THRESH", float(_c("vision.nms_iou_thresh", 0.45)), float) +VISION_GROUP_MIN_PEOPLE = _env("DETECTOR_GROUP_MIN_PEOPLE", int(_c("vision.group_min_people", 3)), int) +VISION_GROUP_LINK_DISTANCE_PX = _env( + "DETECTOR_GROUP_LINK_DISTANCE_PX", + float(_c("vision.group_link_distance_px", 220.0)), + float, +) +VISION_YOLO_STRICT_REQUIRED = _coerce_bool(_c("vision.yolo_strict_required", True), True) +VISION_GEMINI_CONTEXT_HZ = max(0.5, float(_c("vision.gemini_context_hz", 8.0))) +VISION_GEMINI_CONTEXT_SILENT = _coerce_bool(_c("vision.gemini_context_silent", True), True) +VISION_HARD_TARGET_LOCK_ENABLED = _coerce_bool(_c("vision.hard_target_lock_enabled", True), True) +VISION_RETAKE_PROMPT_ENABLED = _coerce_bool(_c("vision.retake_prompt_enabled", True), True) +VISION_RETAKE_MAX_PER_SESSION = _coerce_int(_c("vision.retake_max_per_session", 1), 1, min_v=0, max_v=5) +VISION_FRAMING_HEADROOM_MIN_RATIO = _coerce_float(_c("vision.framing_headroom_min_ratio", 0.06), 0.06, min_v=0.0, max_v=0.8) +VISION_FRAMING_HEADROOM_MAX_RATIO = _coerce_float(_c("vision.framing_headroom_max_ratio", 0.25), 0.25, min_v=0.0, max_v=0.95) +VISION_FRAMING_EYE_LINE_MIN_RATIO = _coerce_float(_c("vision.framing_eye_line_min_ratio", 0.28), 0.28, min_v=0.0, max_v=0.9) +VISION_FRAMING_EYE_LINE_MAX_RATIO = _coerce_float(_c("vision.framing_eye_line_max_ratio", 0.48), 0.48, min_v=0.05, max_v=1.0) +VISION_FRAMING_RETAKE_SCORE_THRESHOLD = _coerce_float(_c("vision.framing_retake_score_threshold", 0.68), 0.68, min_v=0.0, max_v=1.0) + +# ================================================== +# WATCHDOG +# ================================================== +WATCHDOG_WS_INITIAL_BACKOFF_SEC = _coerce_float(_c("watchdog.ws_initial_backoff_sec", 1.0), 1.0, min_v=0.1, max_v=60.0) +WATCHDOG_WS_MAX_BACKOFF_SEC = _coerce_float(_c("watchdog.ws_max_backoff_sec", 20.0), 20.0, min_v=0.5, max_v=300.0) +WATCHDOG_COMPONENT_RESTART_DELAY_SEC = _coerce_float( + _c("watchdog.component_restart_delay_sec", 1.0), + 1.0, + min_v=0.1, + max_v=20.0, +) +WATCHDOG_CAMERA_CAPTURE_RETRY_COUNT = _coerce_int(_c("watchdog.camera_capture_retry_count", 2), 2, min_v=0, max_v=10) +WATCHDOG_CAMERA_CAPTURE_RETRY_DELAY_SEC = _coerce_float( + _c("watchdog.camera_capture_retry_delay_sec", 0.8), + 0.8, + min_v=0.0, + max_v=30.0, +) diff --git a/Current_runtime.md b/Current_runtime.md new file mode 100644 index 0000000..6f5353d --- /dev/null +++ b/Current_runtime.md @@ -0,0 +1,272 @@ +# Current Runtime + +Production runtime architecture (as implemented now): + +`photo_sanad.sh -> voice_sanad.py -> persistent component loops + WS supervisor -> mode-gated command handling -> unified replay/capture -> server/dashboard/upload` + +## Process Model + +- `Scripts/photo_sanad.sh` resets `mode.current_mode` to `mode.default_mode` on each launch. +- Default full runtime path: +- startup mode is normally `manual` +- `photo_sanad.sh` resolves active PulseAudio sink/source, launches `Core/direct_camera_service.py` in the `teleimager` env, then starts `Gemini/voice_sanad.py` in the gemini env +- `Core/direct_camera_service.py` is backend-first and serves external UI assets from `Web/direct_camera.html`, `Web/direct_camera.css`, and `Web/direct_camera.js` +- preferred RealSense default is read from `Data/Settings/config.json -> camera.preferred_realsense_serial` and falls back to another detected camera if absent +- in the default full runtime path, `Gemini/voice_sanad.py`, the dashboard server, the direct camera server, and replay/trigger services remain running in both `manual` and `ai` +- in the full runtime path, `AUTONOMOUS_ENABLE` is auto-armed by default so dashboard mode can switch from `manual` to `ai` without restart +- Optional lean manual path: +- `MANUAL_LEAN_RUNTIME=1` +- skips the direct camera server and the heavy manual/AI runtime services +- keeps Gemini + dashboard only +- `Gemini/voice_sanad.py` is the single long-lived orchestrator process. +- Runtime logs are centralized under `Logs/`, with one stable file per component. +- It starts these loops once and keeps them alive: +- `capture_mic` +- `receive_audio` +- `play_audio` +- `keepalive` +- `Modes/Manual/trigger_loop.py` in the full runtime path +- autonomous-mode supervisor in the full runtime path +- `Modes/AI/autonomous_manager.py` only while `AUTONOMOUS_ENABLE=1` and runtime mode is `ai` +- Runtime health writer (`Data/Runtime/runtime_health.json`) +- Mode policy sync +- Gemini WebSocket is managed by a dedicated reconnect supervisor. WS reconnect does not restart other loops. +- In the normal full runtime path, mode switches change gating/state only; they do not tear down `voice_sanad.py`, the dashboard server, the direct camera server, or replay services. + +## Mode Control + +- Source of truth is `Data/Settings/config.json`: +- `mode.current_mode` in `manual|ai` +- launcher resets `mode.current_mode` to `mode.default_mode` at process start +- API updates mode live via `Server/photo_server.py`: +- `/api/set_mode` +- Voice command gating is enforced on user transcription events in `Gemini/gemini_voice.py`. + +## Mode Semantics + +| Mode | Voice photo commands (`request_photo/yes_photo/no_photo`) | Manual R2+X | Autonomous flow | +|---|---|---|---| +| `manual` | Off | On | Paused | +| `ai` | On | On | On only if `AUTONOMOUS_ENABLE=1` | + +Additional mode rules: +- Gemini conversation can stay active in both modes when `gemini.mic_enabled=true`. +- In full runtime, `manual` still includes the direct camera server, replay/trigger, uploader, and dashboard capture services. +- In full runtime, switching dashboard mode from `manual` to `ai` does not restart the process. +- In full runtime, switching between `manual` and `ai` does not stop `voice_sanad.py`, the dashboard server, the direct camera server, or replay/trigger services. +- If `AUTONOMOUS_ENABLE=1`, autonomous manager is armed and starts live when runtime mode becomes `ai`. +- Switching back to `manual` pauses autonomous flow again. +- In optional `MANUAL_LEAN_RUNTIME=1`, capture/replay/autonomous services are intentionally unavailable. + +Removed from this project: +- command-mode functionality was extracted to `G1_Lootah/AI_Command` + +## Remote Safety Controls + +- `R2+X`: starts replay + photographer talk + unified capture pipeline. +- `R2+L1`: global hard cancel safety combo (active in runtime loops): +- cancels pending capture +- cancels active replay path +- resets autonomous interaction session to `IDLE` + +## AI/Autonomous Runtime + +State machine in `Modes/AI/autonomous_manager.py`: + +`IDLE -> WAIT_CONFIRM -> FRAMING -> COUNTDOWN -> RETAKE_CONFIRM (optional) -> COMPLETE -> IDLE` + +Special blocked state: + +`IDLE_BLOCKED` when strict YOLO readiness fails. + +Behavior: + +- Autonomous manager is supervised by runtime mode: +- `manual` -> paused +- `ai` -> active when `AUTONOMOUS_ENABLE=1` +- In full runtime, autonomous services can already be armed while still paused in `manual`, so mode switches are live. +- In full runtime, the direct camera server and replay infrastructure remain started while autonomous manager is paused in `manual`. +- On stable intent, manager opens audio gate, triggers a short greeting-hand replay, and asks whether the visitor wants a photo. +- On stable single-person intent, manager can identify a returning guest or enroll a new guest into `photos/people/`. +- Group-first greeting is used when group is detected. +- Confirmation uses flag commands from voice layer (`request_photo.flag`, `confirm_yes.flag`, `confirm_no.flag`). +- Hard target lock can pin one subject/group through the session. +- Framing checks: center, size, blur, exposure, headroom, eye-line. +- AI greeting replay is controlled by `vision.autonomous_greeting_replay_enabled` and `vision.autonomous_greeting_replay_file`. +- AI photo-time replay is controlled by `vision.autonomous_capture_replay_enabled`. +- When AI photo-time replay is enabled, autonomous capture uses the active replay file from `Data/Settings/config.json -> replay.active_file`, same as manual `R2+X`. +- When a capture succeeds for an identified guest, the saved photo is attached into that guest's folder in `photos/people/`. +- After capture, retake recommendation can move flow to `RETAKE_CONFIRM` (max retakes from config). +- On completion: CTA prompt and cooldown reset. + +## Vision Runtime + +`Modes/AI/vision_detector.py` provides: + +- Backend selection `normal|yolo`. +- YOLO runtime selection `ultralytics|opencv`. +- Person/face detection and group clustering. +- Intent detection using depth-first logic and bbox-area fallback. +- Target lock fields: +- `target_lock_active`, `target_lock_type`, `target_lock_id`, `target_switch_blocked_count` +- Camera/depth health fields: +- `camera_ok`, `depth_ok`, `camera_restarts`, `depth_restarts` + +Strict production gate: + +- If `vision.yolo_strict_required=true` and YOLO readiness is not valid, AI session is blocked in `IDLE_BLOCKED`. + +## Gemini Integration + +`Gemini/gemini_voice.py`: + +- Uses WS attach/detach model: +- `attach_ws()` +- `detach_ws()` +- `is_ws_connected()` +- Live-safe sends: +- `send_text_prompt_live()` +- `send_vision_context_live()` +- Command matching uses user transcription events, not model text. +- Continuous vision context is streamed from autonomous manager. +- Context can be silent (`vision.gemini_context_silent=true`) and model audio is suppressed for context-only turns. +- Exposes runtime health snapshot for dashboard/API. +- In `manual`, Gemini conversation can remain available while AI photo flags stay disabled. +- Mic state is controlled live through `/api/mic` and `/api/set_mic`. + +## Unified Capture Pipeline + +All capture paths use `Server/capture_service.py`: + +- Replay execution + trigger marker callback capture. +- Timed fallback capture if trigger marker is missing. +- Capture retries using watchdog settings: +- `watchdog.camera_capture_retry_count` +- `watchdog.camera_capture_retry_delay_sec` +- Upload trigger flag is touched after successful capture. + +Replay integrity is validated at startup and fallback replay can be selected automatically. + +## Component Recovery (Watchdog) + +- WS failure: reconnect WS channel only. +- Mic failure: restart mic component only. +- Speaker failure: restart speaker component only. +- Detector frame starvation: recover detector camera/depth inputs only. +- Capture camera failure: retry capture call only. +- Process stays alive unless startup fatal occurs (for example empty Gemini API key). + +## Server and Dashboard + +`Server/photo_server.py` + `Web/gallery.js` provide: + +- Mode APIs: +- `/api/mode`, `/api/set_mode`, `/api/mode_policy` +- Mic APIs: +- `/api/mic`, `/api/set_mic` +- Detector/AI readiness APIs: +- `/api/detector_backend`, `/api/set_detector_backend` +- `/api/ai_readiness` +- AI options APIs: +- `/api/ai_options` +- `/api/set_ai_options?hard_target_lock_enabled=0|1&retake_prompt_enabled=0|1&autonomous_greeting_replay_enabled=0|1&autonomous_greeting_replay_file=...&autonomous_capture_replay_enabled=0|1&face_recognition_enabled=0|1&face_recognition_threshold=...` +- Replay APIs: +- `/api/replays` +- `/api/get_replay` +- `/api/set_replay?name=...` +- `/api/delete_replay?name=...` +- `/api/rename_replay?old=...&new=...` +- `/api/download_replay?name=...` +- `/api/replay_record_status` +- `/api/replay_record_start?name=...&seconds=...` +- `/api/replay_test_status` +- `/api/test_replay?name=...` +- `/api/upload_replay` +- Runtime state APIs: +- `/api/autonomous_state` +- `/api/runtime_health` +- Camera APIs: +- `/api/camera_health` +- `/api/camera_sources` +- `/api/set_camera_source?source=...` +- `/api/set_camera_resolution?width=...&height=...&fps=...` +- `/api/set_preferred_camera?serial=...` +- Photo APIs: +- `/api/capture`, `/api/photos`, `/api/delete`, `/api/reupload`, `/api/upload_now`, `/api/download_zip` +- Live preview: +- `/preview.mjpg` +- preview is off by default and only runs when requested from the dashboard +- preview camera/OpenCV is loaded lazily when preview is requested + +Dashboard panels include mode controls, detector backend/readiness, AI options, autonomous state, runtime health, live camera preview, camera source switching, camera resolution changes, preferred RealSense serial persistence, active replay selection, replay inventory management, and replay recording controls. + +Replay-management rules: +- replay inventory covers the full `Data/G1` tree +- replay recording is allowed only in `manual` +- replay test/play is allowed only in `manual` +- rename/download/delete/upload remain available from the dashboard inventory tools +- People APIs: +- `/api/people` +- `/api/person_image?id=...&kind=face|scene` +- `/api/download_person?id=...` +- `/api/delete_person?id=...` +- `/api/reset_people` +- `/api/upload_person` +- Audio prompt APIs: +- `/api/audio_prompts` +- `/api/set_audio_prompt_mode?mode=audio|gemini` +- `/api/set_audio_prompt_fallback?enabled=0|1` +- `/api/audio_prompt_record_status` +- `/api/download_audio_prompt?key=...` +- `/api/delete_audio_prompt?key=...` +- `/api/upload_audio_prompt` +- `/api/audio_prompt_record` + +Dashboard audio-prompt behavior: +- operators can upload prerecorded WAV clips for each AI situation key +- operators can delete or download existing clips +- operators can record a prompt clip directly from text using the same Gemini replay path as `Project/SanadVoice/gemini_voice/sanad_replay.py` +- operators can switch fixed AI situation speech between: + - `audio`: recorded prompt clips first + - `gemini`: Gemini speech for those same fixed situations +- if a prompt clip is missing while `audio_prompts.mode=audio`, runtime falls back to Gemini text when `audio_prompts.fallback_to_gemini=true` + +Dashboard people-registry behavior: +- sidebar shows enrolled guests with face + scene thumbnails +- operators can upload a new face image to create or extend a guest profile +- operators can attach additional photos to an existing guest profile +- operators can download or delete one guest, or reset the whole registry + +`Core/direct_camera_service.py` serves its own camera UI from external web assets under `Web/` rather than embedding HTML/CSS/JS in Python. + +## Runtime State Files + +- `Data/Settings/config.json` +- `Data/Runtime/autonomous_state.json` +- `Data/Runtime/runtime_health.json` +- `Data/Runtime/error_counters.json` +- `Data/Runtime/error_events.jsonl` +- `Data/Runtime/upload_db.json` +- `Data/Audio/` +- `Data/Settings/audio_prompt_records.json` +- `photos/people/` +- `photos/Captures/` +- `photos/samples/` + +These runtime JSON files are generated lazily. In a clean project tree, some of them will not exist until the corresponding component starts writing state. + +## Core Config Blocks + +- `mode`: runtime mode. +- `vision`: backend/runtime, strict YOLO, context stream settings, hard lock, retake, framing thresholds, greeting replay, and AI capture replay. +- `vision`: backend/runtime, strict YOLO, context stream settings, hard lock, retake, framing thresholds, greeting replay, AI capture replay, and face-recognition controls. +- `watchdog`: WS backoff, component restart delay, capture retry policy. + +## Notes + +- Capture choreography is unified across manual trigger, autonomous flow, and dashboard capture. +- Hands/replay behavior during capture remains driven by replay files in `Data/G1`. +- Replay recordings created from the dashboard are stored directly under `Data/G1` and become selectable as active replays without restart. +- Imported AI prompt recordings are stored under `Data/Audio/` and indexed by `Data/Settings/audio_prompt_records.json`. +- In `audio` prompt mode, AI detection, greeting, confirmation, countdown, refusal, retake, and thank-you situations use recorded clips first. +- After a fixed prompt finishes, runtime returns to normal Gemini conversation flow automatically. diff --git a/Data/Audio/.gitkeep b/Data/Audio/.gitkeep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/Data/Audio/.gitkeep @@ -0,0 +1 @@ + diff --git a/Data/Audio/confirm_reminder.wav b/Data/Audio/confirm_reminder.wav new file mode 100644 index 0000000..b5c0d3e Binary files /dev/null and b/Data/Audio/confirm_reminder.wav differ diff --git a/Data/Audio/confirm_reminder_raw.wav b/Data/Audio/confirm_reminder_raw.wav new file mode 100644 index 0000000..141756d Binary files /dev/null and b/Data/Audio/confirm_reminder_raw.wav differ diff --git a/Data/Audio/confirm_timeout.wav b/Data/Audio/confirm_timeout.wav new file mode 100644 index 0000000..b6f734f Binary files /dev/null and b/Data/Audio/confirm_timeout.wav differ diff --git a/Data/Audio/confirm_timeout_raw.wav b/Data/Audio/confirm_timeout_raw.wav new file mode 100644 index 0000000..5d01cdb Binary files /dev/null and b/Data/Audio/confirm_timeout_raw.wav differ diff --git a/Data/Audio/count_1.wav b/Data/Audio/count_1.wav new file mode 100644 index 0000000..447e14b Binary files /dev/null and b/Data/Audio/count_1.wav differ diff --git a/Data/Audio/count_1_raw.wav b/Data/Audio/count_1_raw.wav new file mode 100644 index 0000000..6dbdf3b Binary files /dev/null and b/Data/Audio/count_1_raw.wav differ diff --git a/Data/Audio/count_2.wav b/Data/Audio/count_2.wav new file mode 100644 index 0000000..90e2d0f Binary files /dev/null and b/Data/Audio/count_2.wav differ diff --git a/Data/Audio/count_2_raw.wav b/Data/Audio/count_2_raw.wav new file mode 100644 index 0000000..b124e39 Binary files /dev/null and b/Data/Audio/count_2_raw.wav differ diff --git a/Data/Audio/count_3.wav b/Data/Audio/count_3.wav new file mode 100644 index 0000000..b8f34a1 Binary files /dev/null and b/Data/Audio/count_3.wav differ diff --git a/Data/Audio/count_3_raw.wav b/Data/Audio/count_3_raw.wav new file mode 100644 index 0000000..d21b560 Binary files /dev/null and b/Data/Audio/count_3_raw.wav differ diff --git a/Data/Audio/countdown_cancelled.wav b/Data/Audio/countdown_cancelled.wav new file mode 100644 index 0000000..15e27ea Binary files /dev/null and b/Data/Audio/countdown_cancelled.wav differ diff --git a/Data/Audio/countdown_cancelled_raw.wav b/Data/Audio/countdown_cancelled_raw.wav new file mode 100644 index 0000000..64ef174 Binary files /dev/null and b/Data/Audio/countdown_cancelled_raw.wav differ diff --git a/Data/Audio/countdown_intro.wav b/Data/Audio/countdown_intro.wav new file mode 100644 index 0000000..f559040 Binary files /dev/null and b/Data/Audio/countdown_intro.wav differ diff --git a/Data/Audio/countdown_intro_raw.wav b/Data/Audio/countdown_intro_raw.wav new file mode 100644 index 0000000..187456a Binary files /dev/null and b/Data/Audio/countdown_intro_raw.wav differ diff --git a/Data/Audio/declined.wav b/Data/Audio/declined.wav new file mode 100644 index 0000000..3ec24ed Binary files /dev/null and b/Data/Audio/declined.wav differ diff --git a/Data/Audio/declined_raw.wav b/Data/Audio/declined_raw.wav new file mode 100644 index 0000000..dd42f3e Binary files /dev/null and b/Data/Audio/declined_raw.wav differ diff --git a/Data/Audio/frame_group.wav b/Data/Audio/frame_group.wav new file mode 100644 index 0000000..86cd952 Binary files /dev/null and b/Data/Audio/frame_group.wav differ diff --git a/Data/Audio/frame_group_raw.wav b/Data/Audio/frame_group_raw.wav new file mode 100644 index 0000000..e57f2ae Binary files /dev/null and b/Data/Audio/frame_group_raw.wav differ diff --git a/Data/Audio/frame_single.wav b/Data/Audio/frame_single.wav new file mode 100644 index 0000000..fa6a7cc Binary files /dev/null and b/Data/Audio/frame_single.wav differ diff --git a/Data/Audio/frame_single_raw.wav b/Data/Audio/frame_single_raw.wav new file mode 100644 index 0000000..12e6df6 Binary files /dev/null and b/Data/Audio/frame_single_raw.wav differ diff --git a/Data/Audio/framing_timeout.wav b/Data/Audio/framing_timeout.wav new file mode 100644 index 0000000..f1fc9a1 Binary files /dev/null and b/Data/Audio/framing_timeout.wav differ diff --git a/Data/Audio/framing_timeout_raw.wav b/Data/Audio/framing_timeout_raw.wav new file mode 100644 index 0000000..ddef203 Binary files /dev/null and b/Data/Audio/framing_timeout_raw.wav differ diff --git a/Data/Audio/lost_from_frame.wav b/Data/Audio/lost_from_frame.wav new file mode 100644 index 0000000..327b6d5 Binary files /dev/null and b/Data/Audio/lost_from_frame.wav differ diff --git a/Data/Audio/lost_from_frame_raw.wav b/Data/Audio/lost_from_frame_raw.wav new file mode 100644 index 0000000..7dc9f43 Binary files /dev/null and b/Data/Audio/lost_from_frame_raw.wav differ diff --git a/Data/Audio/photo_saved_thanks.wav b/Data/Audio/photo_saved_thanks.wav new file mode 100644 index 0000000..3eeb683 Binary files /dev/null and b/Data/Audio/photo_saved_thanks.wav differ diff --git a/Data/Audio/photo_saved_thanks_raw.wav b/Data/Audio/photo_saved_thanks_raw.wav new file mode 100644 index 0000000..23ec79c Binary files /dev/null and b/Data/Audio/photo_saved_thanks_raw.wav differ diff --git a/Data/Audio/retake_limit.wav b/Data/Audio/retake_limit.wav new file mode 100644 index 0000000..facb3ff Binary files /dev/null and b/Data/Audio/retake_limit.wav differ diff --git a/Data/Audio/retake_limit_raw.wav b/Data/Audio/retake_limit_raw.wav new file mode 100644 index 0000000..6efdb91 Binary files /dev/null and b/Data/Audio/retake_limit_raw.wav differ diff --git a/Data/Audio/retake_recommended.wav b/Data/Audio/retake_recommended.wav new file mode 100644 index 0000000..0a00086 Binary files /dev/null and b/Data/Audio/retake_recommended.wav differ diff --git a/Data/Audio/retake_recommended_raw.wav b/Data/Audio/retake_recommended_raw.wav new file mode 100644 index 0000000..87f674f Binary files /dev/null and b/Data/Audio/retake_recommended_raw.wav differ diff --git a/Data/Audio/retake_yes.wav b/Data/Audio/retake_yes.wav new file mode 100644 index 0000000..f378b75 Binary files /dev/null and b/Data/Audio/retake_yes.wav differ diff --git a/Data/Audio/retake_yes_raw.wav b/Data/Audio/retake_yes_raw.wav new file mode 100644 index 0000000..066ff9d Binary files /dev/null and b/Data/Audio/retake_yes_raw.wav differ diff --git a/Data/Audio/session_cancelled.wav b/Data/Audio/session_cancelled.wav new file mode 100644 index 0000000..b7780d3 Binary files /dev/null and b/Data/Audio/session_cancelled.wav differ diff --git a/Data/Audio/session_cancelled_raw.wav b/Data/Audio/session_cancelled_raw.wav new file mode 100644 index 0000000..4c3507d Binary files /dev/null and b/Data/Audio/session_cancelled_raw.wav differ diff --git a/Data/Audio/smile.wav b/Data/Audio/smile.wav new file mode 100644 index 0000000..15afda4 Binary files /dev/null and b/Data/Audio/smile.wav differ diff --git a/Data/Audio/smile_raw.wav b/Data/Audio/smile_raw.wav new file mode 100644 index 0000000..2acacc2 Binary files /dev/null and b/Data/Audio/smile_raw.wav differ diff --git a/Data/Audio/visitor_left.wav b/Data/Audio/visitor_left.wav new file mode 100644 index 0000000..81c613f Binary files /dev/null and b/Data/Audio/visitor_left.wav differ diff --git a/Data/Audio/visitor_left_raw.wav b/Data/Audio/visitor_left_raw.wav new file mode 100644 index 0000000..d2127e2 Binary files /dev/null and b/Data/Audio/visitor_left_raw.wav differ diff --git a/Data/Audio/welcome_group.wav b/Data/Audio/welcome_group.wav new file mode 100644 index 0000000..a65cd36 Binary files /dev/null and b/Data/Audio/welcome_group.wav differ diff --git a/Data/Audio/welcome_group_raw.wav b/Data/Audio/welcome_group_raw.wav new file mode 100644 index 0000000..d76596a Binary files /dev/null and b/Data/Audio/welcome_group_raw.wav differ diff --git a/Data/Audio/welcome_returning.wav b/Data/Audio/welcome_returning.wav new file mode 100644 index 0000000..d30d17e Binary files /dev/null and b/Data/Audio/welcome_returning.wav differ diff --git a/Data/Audio/welcome_returning_raw.wav b/Data/Audio/welcome_returning_raw.wav new file mode 100644 index 0000000..40c2bf7 Binary files /dev/null and b/Data/Audio/welcome_returning_raw.wav differ diff --git a/Data/Audio/welcome_single.wav b/Data/Audio/welcome_single.wav new file mode 100644 index 0000000..8c1dd0e Binary files /dev/null and b/Data/Audio/welcome_single.wav differ diff --git a/Data/Audio/welcome_single_raw.wav b/Data/Audio/welcome_single_raw.wav new file mode 100644 index 0000000..8359474 Binary files /dev/null and b/Data/Audio/welcome_single_raw.wav differ diff --git a/Data/G1/arm_home.jsonl b/Data/G1/arm_home.jsonl new file mode 100644 index 0000000..a7b1b62 --- /dev/null +++ b/Data/G1/arm_home.jsonl @@ -0,0 +1,482 @@ +{"meta": {"hz": 60.0, "motors": 29}} +{"t": 0.0, "q": [-0.3130820691585541, -0.01388593576848507, 0.015708694234490395, 0.6304575800895691, -0.326513409614563, 0.021098745986819267, -0.3218769133090973, 0.030117155984044075, -0.014771261252462864, 0.6223444938659668, -0.3365834653377533, -0.021014997735619545, 0.002691771136596799, 0.006411683280020952, -0.0298378374427557, 0.29042571783065796, 0.2159797102212906, -0.005213138181716204, 0.9791951179504395, 0.15760454535484314, 0.0616828091442585, -0.040890175849199295, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.1835743635892868, 0.05241899937391281, 0.008856342174112797]} +{"t": 0.0167, "q": [-0.3130394518375397, -0.01388593576848507, 0.015722084790468216, 0.6305854320526123, -0.3265092968940735, 0.02109152264893055, -0.3218769133090973, 0.030117155984044075, -0.01478465273976326, 0.6224552989006042, -0.3365916609764099, -0.021000416949391365, 0.002691771136596799, 0.006411683280020952, -0.0298378374427557, 0.2904137372970581, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.061706773936748505, -0.040890175849199295, 0.29502764344215393, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05240701511502266, 0.008844357915222645]} +{"t": 0.0336, "q": [-0.31300538778305054, -0.01388593576848507, 0.015708694234490395, 0.6306195259094238, -0.3265010416507721, 0.021077075973153114, -0.32190245389938354, 0.030100110918283463, -0.01478465273976326, 0.6225661039352417, -0.3365834653377533, -0.02100047469139099, 0.002691771136596799, 0.006464851088821888, -0.029813440516591072, 0.2904376983642578, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.29502764344215393, -0.2237934172153473, 0.02310558594763279, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 0.0503, "q": [-0.3129883408546448, -0.013868890702724457, 0.015695301815867424, 0.6306791305541992, -0.3265010416507721, 0.021077075973153114, -0.32190245389938354, 0.03009158931672573, -0.014771261252462864, 0.6225916743278503, -0.3365834653377533, -0.02100047469139099, 0.002691771136596799, 0.006480046082288027, -0.029823286458849907, 0.2904616594314575, 0.2159797102212906, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.1835743635892868, 0.05241899937391281, 0.008856342174112797]} +{"t": 0.067, "q": [-0.3129883408546448, -0.013868890702724457, 0.015681909397244453, 0.6306791305541992, -0.3265092968940735, 0.02109152264893055, -0.32190245389938354, 0.03009158931672573, -0.014771261252462864, 0.622617244720459, -0.33660396933555603, -0.020978543907403946, 0.002731946762651205, 0.006480061449110508, -0.029862530529499054, 0.2904616594314575, 0.2159557342529297, -0.005201153922826052, 0.9791951179504395, 0.15758058428764343, 0.06167082488536835, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 0.0838, "q": [-0.3129883408546448, -0.013868890702724457, 0.015681909397244453, 0.6307047009468079, -0.3265092968940735, 0.02109152264893055, -0.3219280242919922, 0.030066022649407387, -0.014731084927916527, 0.6226428151130676, -0.33661219477653503, -0.020963944494724274, 0.0026783791836351156, 0.00641929917037487, -0.029891815036535263, 0.2904856503009796, 0.21596772968769073, -0.005201153922826052, 0.9791951179504395, 0.15758058428764343, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.02310558594763279, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 0.1005, "q": [-0.31299686431884766, -0.013868890702724457, 0.01565512642264366, 0.6307217478752136, -0.3265175223350525, 0.021076949313282967, -0.32195359468460083, 0.030066022649407387, -0.014757868833839893, 0.6226428151130676, -0.33660808205604553, -0.02095671370625496, 0.002718554809689522, 0.00648766802623868, -0.02988707646727562, 0.2905096113681793, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.29507559537887573, -0.22380541265010834, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 0.1172, "q": [-0.3130139112472534, -0.013843324035406113, 0.015601558610796928, 0.6307047009468079, -0.326513409614563, 0.021098745986819267, -0.32194507122039795, 0.030057501047849655, -0.014757868833839893, 0.6226342916488647, -0.33662450313568115, -0.02097111940383911, 0.0026783791836351156, 0.006510468199849129, -0.0299018993973732, 0.2905455529689789, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.040890175849199295, 0.29507559537887573, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.1835743635892868, 0.05243098363280296, 0.008856342174112797]} +{"t": 0.134, "q": [-0.31304797530174255, -0.013851847499608994, 0.015588166192173958, 0.6307047009468079, -0.326521635055542, 0.021084172651171684, -0.32203882932662964, 0.030048979446291924, -0.014757868833839893, 0.6226513385772705, -0.33662450313568115, -0.02097111940383911, 0.0027051628567278385, 0.00654088007286191, -0.02994132786989212, 0.2905455529689789, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.2950875759124756, -0.2237934172153473, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008832373656332493]} +{"t": 0.1507, "q": [-0.31309911608695984, -0.013843324035406113, 0.015588166192173958, 0.6307047009468079, -0.326521635055542, 0.021084172651171684, -0.3220984637737274, 0.030040455982089043, -0.014731084927916527, 0.6226428151130676, -0.3366450071334839, -0.020963728427886963, 0.0026382035575807095, 0.006464953999966383, -0.03002951480448246, 0.2905455529689789, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.29509955644607544, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18353840708732605, 0.05241899937391281, 0.008868326433002949]} +{"t": 0.1676, "q": [-0.3131246864795685, -0.013851847499608994, 0.015574774704873562, 0.6307132244110107, -0.326521635055542, 0.021084172651171684, -0.32217517495155334, 0.03003193438053131, -0.01470430102199316, 0.6226428151130676, -0.336649090051651, -0.020941896364092827, 0.0027989062946289778, 0.006419417914003134, -0.030117813497781754, 0.2905455529689789, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.06167082488536835, -0.04090216010808945, 0.2951115369796753, -0.22380541265010834, 0.023093601688742638, 0.9781045317649841, -0.1835503876209259, 0.05241899937391281, 0.008832373656332493]} +{"t": 0.1843, "q": [-0.3132099211215973, -0.013851847499608994, 0.015574774704873562, 0.6307132244110107, -0.326521635055542, 0.021098682656884193, -0.32222631573677063, 0.03003193438053131, -0.01471769344061613, 0.6226428151130676, -0.3366532027721405, -0.020934605970978737, 0.0027721223887056112, 0.006389044225215912, -0.030147191137075424, 0.2905455529689789, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.0409141443669796, 0.2950875759124756, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 0.201, "q": [-0.3132610321044922, -0.013851847499608994, 0.015574774704873562, 0.6307047009468079, -0.326521635055542, 0.021098682656884193, -0.32230299711227417, 0.030014891177415848, -0.014677518047392368, 0.6226428151130676, -0.33665731549263, -0.020956380292773247, 0.002731946762651205, 0.006381465587764978, -0.03018156625330448, 0.29053357243537903, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15754462778568268, 0.06167082488536835, -0.04090216010808945, 0.29507559537887573, -0.22378143668174744, 0.023081617429852486, 0.9780805706977844, -0.1835743635892868, 0.05243098363280296, 0.008844357915222645]} +{"t": 0.2177, "q": [-0.3133121728897095, -0.013851847499608994, 0.015601558610796928, 0.6307047009468079, -0.3265340030193329, 0.021091332659125328, -0.32239675521850586, 0.03002341277897358, -0.014637341722846031, 0.6226257681846619, -0.3366696238517761, -0.02094901166856289, 0.002691771136596799, 0.00633589131757617, -0.030201058834791183, 0.2905096113681793, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15755660831928253, 0.0616828091442585, -0.04090216010808945, 0.29507559537887573, -0.22380541265010834, 0.02310558594763279, 0.9780685901641846, -0.18358634412288666, 0.05243098363280296, 0.008856342174112797]} +{"t": 0.2345, "q": [-0.3133974075317383, -0.013851847499608994, 0.015614950098097324, 0.6307047009468079, -0.3265298902988434, 0.02109861932694912, -0.3224649131298065, 0.029997846111655235, -0.014610557816922665, 0.6226257681846619, -0.33667370676994324, -0.020985309034585953, 0.002718554809689522, 0.006320723332464695, -0.030250148847699165, 0.2904736399650574, 0.21594375371932983, -0.005201153922826052, 0.9791951179504395, 0.15762852132320404, 0.06169478967785835, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 0.2512, "q": [-0.3135252296924591, -0.013860369101166725, 0.015588166192173958, 0.6306791305541992, -0.3265340030193329, 0.021105842664837837, -0.3226012885570526, 0.030006367713212967, -0.014637341722846031, 0.6226257681846619, -0.33666959404945374, -0.02097807638347149, 0.0026649872306734324, 0.0062523758970201015, -0.030303962528705597, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.0409141443669796, 0.2950636148452759, -0.22380541265010834, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 0.2679, "q": [-0.3136274814605713, -0.013877412304282188, 0.015614950098097324, 0.6307047009468079, -0.3265257775783539, 0.02110590599477291, -0.32262685894966125, 0.029997846111655235, -0.014637341722846031, 0.6226342916488647, -0.33666959404945374, -0.02097807638347149, 0.002731946762651205, 0.006108071189373732, -0.03038698434829712, 0.29044967889785767, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.0409141443669796, 0.295051634311676, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 0.2846, "q": [-0.3136615753173828, -0.013894457370042801, 0.01562834158539772, 0.6307047009468079, -0.3265257775783539, 0.021091395989060402, -0.3226609230041504, 0.029997846111655235, -0.014677518047392368, 0.6226342916488647, -0.3366449773311615, -0.021021820604801178, 0.0026382035575807095, 0.006092881318181753, -0.030396757647395134, 0.29042571783065796, 0.21596772968769073, -0.005201153922826052, 0.9791830778121948, 0.15760454535484314, 0.06169478967785835, -0.04087819159030914, 0.295051634311676, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18358634412288666, 0.05243098363280296, 0.008844357915222645]} +{"t": 0.3014, "q": [-0.3137127161026001, -0.01388593576848507, 0.01565512642264366, 0.630696177482605, -0.3265133798122406, 0.02111327461898327, -0.32266944646835327, 0.030014891177415848, -0.014677518047392368, 0.6226257681846619, -0.3366490602493286, -0.021029053255915642, 0.0026783791836351156, 0.006054885685443878, -0.03038187511265278, 0.2904137372970581, 0.2159557342529297, -0.0051891696639359, 0.9792070984840393, 0.1575925648212433, 0.06169478967785835, -0.04092612862586975, 0.295051634311676, -0.2237934172153473, 0.023081617429852486, 0.9780805706977844, -0.1835743635892868, 0.05241899937391281, 0.008844357915222645]} +{"t": 0.3181, "q": [-0.31372976303100586, -0.013894457370042801, 0.01564173400402069, 0.6307047009468079, -0.326521635055542, 0.021113192662596703, -0.32267796993255615, 0.030014891177415848, -0.014677518047392368, 0.6226342916488647, -0.3366572856903076, -0.021014470607042313, 0.002731946762651205, 0.005994115956127644, -0.030401311814785004, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18358634412288666, 0.05243098363280296, 0.008856342174112797]} +{"t": 0.3348, "q": [-0.3137127161026001, -0.01395411230623722, 0.01565512642264366, 0.6307047009468079, -0.326521635055542, 0.021113192662596703, -0.32268649339675903, 0.030014891177415848, -0.014664125628769398, 0.6226342916488647, -0.3366572856903076, -0.021014470607042313, 0.0026783791836351156, 0.0061156307347118855, -0.030323121696710587, 0.29044967889785767, 0.21594375371932983, -0.0051891696639359, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.04086620733141899, 0.295051634311676, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 0.3515, "q": [-0.31373828649520874, -0.01395411230623722, 0.015668518841266632, 0.6307047009468079, -0.326521635055542, 0.021113192662596703, -0.32267796993255615, 0.030014891177415848, -0.014677518047392368, 0.6226428151130676, -0.3366367518901825, -0.021050943061709404, 0.0027051628567278385, 0.006085248664021492, -0.030332839116454124, 0.29044967889785767, 0.21594375371932983, -0.005225121974945068, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.04090216010808945, 0.29502764344215393, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008832373656332493]} +{"t": 0.3683, "q": [-0.3137127161026001, -0.01394559070467949, 0.015668518841266632, 0.6307132244110107, -0.3265175223350525, 0.021105969324707985, -0.32266944646835327, 0.03002341277897358, -0.014690909534692764, 0.6226769089698792, -0.3366285562515259, -0.021036479622125626, 0.002731946762651205, 0.006153599359095097, -0.030288858339190483, 0.29040175676345825, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.06169478967785835, -0.040890175849199295, 0.2950036823749542, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008868326433002949]} +{"t": 0.3851, "q": [-0.3137127161026001, -0.01395411230623722, 0.015668518841266632, 0.6307047009468079, -0.3265133798122406, 0.02111327461898327, -0.3226609230041504, 0.03003193438053131, -0.014731084927916527, 0.6227110028266907, -0.3366244435310364, -0.02105829305946827, 0.002731946762651205, 0.006100435741245747, -0.03032306581735611, 0.29042571783065796, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.04090216010808945, 0.29499170184135437, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.0088803106918931]} +{"t": 0.4018, "q": [-0.3136786222457886, -0.013962633907794952, 0.015695301815867424, 0.6307302713394165, -0.326521635055542, 0.021113192662596703, -0.3226523995399475, 0.03003193438053131, -0.01471769344061613, 0.6227365136146545, -0.33662036061286926, -0.02106558345258236, 0.0027453387156128883, 0.006123214494436979, -0.03029857575893402, 0.2904137372970581, 0.21594375371932983, -0.005213138181716204, 0.9791951179504395, 0.15760454535484314, 0.06169478967785835, -0.04090216010808945, 0.29503965377807617, -0.22378143668174744, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 0.4185, "q": [-0.3136615753173828, -0.013962633907794952, 0.015681909397244453, 0.6307473182678223, -0.3265051543712616, 0.021113337948918343, -0.3226523995399475, 0.03003193438053131, -0.014731084927916527, 0.6228047013282776, -0.3366244435310364, -0.021072816103696823, 0.0026649872306734324, 0.006108025088906288, -0.030308350920677185, 0.29040175676345825, 0.2159557342529297, -0.005213138181716204, 0.9791951179504395, 0.15756858885288239, 0.06167082488536835, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 0.4352, "q": [-0.31363600492477417, -0.013971157371997833, 0.015735477209091187, 0.6308155059814453, -0.3265092670917511, 0.02110605128109455, -0.32263535261154175, 0.03003193438053131, -0.014690909534692764, 0.6228643655776978, -0.33662036061286926, -0.02106558345258236, 0.002691771136596799, 0.006100419443100691, -0.030293578281998634, 0.29040175676345825, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.2950156629085541, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008844357915222645]} +{"t": 0.452, "q": [-0.3136189579963684, -0.013971157371997833, 0.015722084790468216, 0.6308666467666626, -0.3265092670917511, 0.02110605128109455, -0.32262685894966125, 0.030040455982089043, -0.014690909534692764, 0.6229410767555237, -0.3366244435310364, -0.02105829305946827, 0.002691771136596799, 0.006138376891613007, -0.030239654704928398, 0.2904137372970581, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15765248239040375, 0.06167082488536835, -0.040890175849199295, 0.2950156629085541, -0.2237934172153473, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008844357915222645]} +{"t": 0.4687, "q": [-0.31359341740608215, -0.013979678973555565, 0.015748869627714157, 0.6308922171592712, -0.326513409614563, 0.021098745986819267, -0.32262685894966125, 0.030014891177415848, -0.014677518047392368, 0.6229836940765381, -0.336632639169693, -0.021058233454823494, 0.002691771136596799, 0.006183940451592207, -0.030200503766536713, 0.29042571783065796, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.04092612862586975, 0.29502764344215393, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.008868326433002949]} +{"t": 0.4854, "q": [-0.3135848939418793, -0.013979678973555565, 0.015748869627714157, 0.6309177875518799, -0.3265092670917511, 0.02110605128109455, -0.3226098120212555, 0.030014891177415848, -0.014677518047392368, 0.6230263113975525, -0.336640864610672, -0.021043652668595314, 0.0027051628567278385, 0.00623712595552206, -0.030205613002181053, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.04090216010808945, 0.29502764344215393, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 0.5022, "q": [-0.3135763704776764, -0.013971157371997833, 0.015735477209091187, 0.6310114860534668, -0.3265092968940735, 0.02109152264893055, -0.3226012885570526, 0.030014891177415848, -0.014677518047392368, 0.6230774521827698, -0.3366326689720154, -0.02104371041059494, 0.002691771136596799, 0.006206746678799391, -0.030225161463022232, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.15760454535484314, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.0088803106918931]} +{"t": 0.519, "q": [-0.3135763704776764, -0.01395411230623722, 0.015708694234490395, 0.631071150302887, -0.326513409614563, 0.021098745986819267, -0.3226012885570526, 0.030014891177415848, -0.014690909534692764, 0.6231200098991394, -0.3366285562515259, -0.021065523847937584, 0.002718554809689522, 0.006183956749737263, -0.030229991301894188, 0.2904856503009796, 0.2159557342529297, -0.005201153922826052, 0.9791951179504395, 0.1575925648212433, 0.06167082488536835, -0.04090216010808945, 0.2950636148452759, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05243098363280296, 0.008844357915222645]} +{"t": 0.5357, "q": [-0.31354227662086487, -0.013962633907794952, 0.015708694234490395, 0.6310626268386841, -0.3265092968940735, 0.02107701264321804, -0.32259276509284973, 0.029997846111655235, -0.014677518047392368, 0.6231285333633423, -0.3366367518901825, -0.02103642001748085, 0.002718554809689522, 0.006176367402076721, -0.03024470806121826, 0.2904856503009796, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.04090216010808945, 0.29507559537887573, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.1835743635892868, 0.05243098363280296, 0.008844357915222645]} +{"t": 0.5524, "q": [-0.31355932354927063, -0.01394559070467949, 0.015681909397244453, 0.6311052441596985, -0.3265092968940735, 0.02109152264893055, -0.3226012885570526, 0.030006367713212967, -0.014690909534692764, 0.6231541037559509, -0.336649090051651, -0.021014530211687088, 0.0027721223887056112, 0.006252326536923647, -0.030215498059988022, 0.2905096113681793, 0.21594375371932983, -0.005201153922826052, 0.9792070984840393, 0.15765248239040375, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008868326433002949]} +{"t": 0.5692, "q": [-0.31355080008506775, -0.013928545638918877, 0.015681909397244453, 0.6311222910881042, -0.3265175223350525, 0.021091459318995476, -0.3226183354854584, 0.029997846111655235, -0.014677518047392368, 0.6231541037559509, -0.336649090051651, -0.021000007167458534, 0.002718554809689522, 0.006290311459451914, -0.030210722237825394, 0.2904856503009796, 0.21594375371932983, -0.005201153922826052, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 0.5859, "q": [-0.31354227662086487, -0.013920024037361145, 0.015681909397244453, 0.63113933801651, -0.3265175223350525, 0.021091459318995476, -0.3226012885570526, 0.029997846111655235, -0.014664125628769398, 0.6231626272201538, -0.3366408944129944, -0.021014587953686714, 0.002731946762651205, 0.0062143742106854916, -0.03027925081551075, 0.29053357243537903, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.04090216010808945, 0.29507559537887573, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 0.6026, "q": [-0.31355080008506775, -0.01395411230623722, 0.015668518841266632, 0.6311734318733215, -0.3265257775783539, 0.021091395989060402, -0.32259276509284973, 0.029997846111655235, -0.014650734141469002, 0.623145580291748, -0.3366449773311615, -0.021007297560572624, 0.0027989062946289778, 0.006176416762173176, -0.030333172529935837, 0.2905096113681793, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.29507559537887573, -0.22378143668174744, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 0.6193, "q": [-0.31355080008506775, -0.01394559070467949, 0.015668518841266632, 0.6311819553375244, -0.326521635055542, 0.021098682656884193, -0.32257571816444397, 0.029997846111655235, -0.014637341722846031, 0.6231541037559509, -0.3366572856903076, -0.020985424518585205, 0.0027051628567278385, 0.006206796038895845, -0.030313625931739807, 0.2905096113681793, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06169478967785835, -0.04090216010808945, 0.29507559537887573, -0.22378143668174744, 0.02310558594763279, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 0.6361, "q": [-0.3135848939418793, -0.013920024037361145, 0.01565512642264366, 0.6311904788017273, -0.326521635055542, 0.021084172651171684, -0.32264387607574463, 0.029997846111655235, -0.014637341722846031, 0.6231541037559509, -0.3366572856903076, -0.021014470607042313, 0.002691771136596799, 0.006199211813509464, -0.030338170006871223, 0.29053357243537903, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.040890175849199295, 0.29509955644607544, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 0.6529, "q": [-0.31359341740608215, -0.013928545638918877, 0.015668518841266632, 0.6311990022659302, -0.326521635055542, 0.021098682656884193, -0.32264387607574463, 0.029997846111655235, -0.014637341722846031, 0.6231541037559509, -0.3366531729698181, -0.021007239818572998, 0.0027051628567278385, 0.006077686324715614, -0.030396701768040657, 0.29053357243537903, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.04090216010808945, 0.2950636148452759, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 0.6697, "q": [-0.3136104345321655, -0.01395411230623722, 0.015681909397244453, 0.6312075257301331, -0.3265175223350525, 0.021105969324707985, -0.32264387607574463, 0.029980802908539772, -0.014650734141469002, 0.623145580291748, -0.3366613984107971, -0.021007180213928223, 0.0027453387156128883, 0.006115671247243881, -0.03039192594587803, 0.29049763083457947, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05243098363280296, 0.008856342174112797]} +{"t": 0.6864, "q": [-0.3136104345321655, -0.01394559070467949, 0.015681909397244453, 0.6312160491943359, -0.326521635055542, 0.021113192662596703, -0.32263535261154175, 0.029989324510097504, -0.014637341722846031, 0.6231285333633423, -0.3366408944129944, -0.021014587953686714, 0.002718554809689522, 0.0060701025649905205, -0.030421247705817223, 0.2904856503009796, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.29507559537887573, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.1835503876209259, 0.05241899937391281, 0.008844357915222645]} +{"t": 0.7033, "q": [-0.3136274814605713, -0.01394559070467949, 0.015681909397244453, 0.6312330961227417, -0.3265175223350525, 0.021105969324707985, -0.3226523995399475, 0.029989324510097504, -0.014637341722846031, 0.6231370568275452, -0.3366449475288391, -0.021036362275481224, 0.0027051628567278385, 0.00604731822386384, -0.03043590858578682, 0.2904616594314575, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 0.7201, "q": [-0.3136786222457886, -0.013971157371997833, 0.015695301815867424, 0.6312245726585388, -0.3265257775783539, 0.02110590599477291, -0.3226523995399475, 0.029980802908539772, -0.014637341722846031, 0.6231370568275452, -0.336640864610672, -0.02102912962436676, 0.002731946762651205, 0.006115671247243881, -0.03039192594587803, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.040890175849199295, 0.29502764344215393, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.052442967891693115, 0.008856342174112797]} +{"t": 0.7368, "q": [-0.3136786222457886, -0.013962633907794952, 0.015681909397244453, 0.6312330961227417, -0.326521635055542, 0.021098682656884193, -0.3226523995399475, 0.029989324510097504, -0.014637341722846031, 0.623145580291748, -0.3366490602493286, -0.021029053255915642, 0.002718554809689522, 0.006115660537034273, -0.030372267588973045, 0.29042571783065796, 0.21594375371932983, -0.005213138181716204, 0.9791830778121948, 0.15758058428764343, 0.06167082488536835, -0.040890175849199295, 0.29502764344215393, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.052442967891693115, 0.008856342174112797]} +{"t": 0.7535, "q": [-0.3136700987815857, -0.013962633907794952, 0.015695301815867424, 0.6312501430511475, -0.326521635055542, 0.021084172651171684, -0.3226609230041504, 0.029997846111655235, -0.014637341722846031, 0.6231370568275452, -0.3366449773311615, -0.021021820604801178, 0.002758730435743928, 0.006100476253777742, -0.030391870066523552, 0.29040175676345825, 0.21596772968769073, -0.0051891696639359, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.040890175849199295, 0.2950156629085541, -0.2237934172153473, 0.02310558594763279, 0.9780805706977844, -0.1835503876209259, 0.05241899937391281, 0.008856342174112797]} +{"t": 0.7702, "q": [-0.31369566917419434, -0.013979678973555565, 0.015708694234490395, 0.6312330961227417, -0.3265175223350525, 0.021105969324707985, -0.3226609230041504, 0.029989324510097504, -0.014677518047392368, 0.6231370568275452, -0.336640864610672, -0.021043652668595314, 0.002718554809689522, 0.006070069968700409, -0.030362272635102272, 0.29040175676345825, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.04090216010808945, 0.2950156629085541, -0.22378143668174744, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 0.787, "q": [-0.3136786222457886, -0.013979678973555565, 0.015695301815867424, 0.6312330961227417, -0.326521635055542, 0.021113192662596703, -0.32267796993255615, 0.029997846111655235, -0.01470430102199316, 0.6231541037559509, -0.3366285562515259, -0.021036479622125626, 0.002718554809689522, 0.006100454367697239, -0.030352553352713585, 0.2904376983642578, 0.21594375371932983, -0.0051891696639359, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.04087819159030914, 0.2950156629085541, -0.2238173931837082, 0.02310558594763279, 0.9780925512313843, -0.1835743635892868, 0.052442967891693115, 0.008844357915222645]} +{"t": 0.8037, "q": [-0.31363600492477417, -0.013979678973555565, 0.015708694234490395, 0.6312330961227417, -0.3265175223350525, 0.021105969324707985, -0.3226609230041504, 0.030006367713212967, -0.014664125628769398, 0.6231541037559509, -0.3366367518901825, -0.021050943061709404, 0.002691771136596799, 0.006115636322647333, -0.03033295087516308, 0.2904137372970581, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.04090216010808945, 0.2950156629085541, -0.22380541265010834, 0.023093601688742638, 0.9780685901641846, -0.18356238305568695, 0.05243098363280296, 0.008844357915222645]} +{"t": 0.8204, "q": [-0.3136700987815857, -0.013979678973555565, 0.015708694234490395, 0.6312330961227417, -0.326513409614563, 0.021098745986819267, -0.32264387607574463, 0.030006367713212967, -0.01470430102199316, 0.6231541037559509, -0.3366285562515259, -0.02105100080370903, 0.0027453387156128883, 0.006100441329181194, -0.03033289685845375, 0.2904376983642578, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15760454535484314, 0.06167082488536835, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835503876209259, 0.05243098363280296, 0.008844357915222645]} +{"t": 0.8372, "q": [-0.31364452838897705, -0.013971157371997833, 0.015708694234490395, 0.6312245726585388, -0.3265175223350525, 0.021105969324707985, -0.32264387607574463, 0.030014891177415848, -0.01471769344061613, 0.6231626272201538, -0.336640864610672, -0.021043652668595314, 0.002691771136596799, 0.006123231258243322, -0.030328065156936646, 0.2904376983642578, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.157616525888443, 0.0616828091442585, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008856342174112797]} +{"t": 0.8539, "q": [-0.31364452838897705, -0.013971157371997833, 0.015708694234490395, 0.6312330961227417, -0.326521635055542, 0.021098682656884193, -0.3226609230041504, 0.030014891177415848, -0.014731084927916527, 0.6231711506843567, -0.3366326689720154, -0.021029187366366386, 0.002718554809689522, 0.00625234842300415, -0.03025481477379799, 0.2904616594314575, 0.2159797102212906, -0.005201153922826052, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05241899937391281, 0.008856342174112797]} +{"t": 0.8706, "q": [-0.31365305185317993, -0.013962633907794952, 0.015695301815867424, 0.6312330961227417, -0.3265092670917511, 0.02110605128109455, -0.3226523995399475, 0.03002341277897358, -0.014677518047392368, 0.6231881976127625, -0.3366326689720154, -0.021029187366366386, 0.002731946762651205, 0.006168789230287075, -0.03027908317744732, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.0409141443669796, 0.29502764344215393, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.008868326433002949]} +{"t": 0.8873, "q": [-0.31365305185317993, -0.01394559070467949, 0.015722084790468216, 0.6312501430511475, -0.326513409614563, 0.021098745986819267, -0.3226523995399475, 0.03002341277897358, -0.014690909534692764, 0.623222291469574, -0.3366326689720154, -0.021029187366366386, 0.0026783791836351156, 0.0061611998826265335, -0.030293799936771393, 0.2904616594314575, 0.21594375371932983, -0.005213138181716204, 0.9791951179504395, 0.15760454535484314, 0.06167082488536835, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 0.9041, "q": [-0.3136189579963684, -0.013962633907794952, 0.015708694234490395, 0.6312586665153503, -0.326521635055542, 0.021113192662596703, -0.3226609230041504, 0.030014891177415848, -0.014677518047392368, 0.6232308149337769, -0.336640864610672, -0.021043652668595314, 0.002718554809689522, 0.006199179217219353, -0.030279194936156273, 0.29044967889785767, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.061658840626478195, -0.040890175849199295, 0.29502764344215393, -0.22378143668174744, 0.02310558594763279, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 0.9209, "q": [-0.31363600492477417, -0.013962633907794952, 0.015695301815867424, 0.6312671899795532, -0.326513409614563, 0.021098745986819267, -0.32264387607574463, 0.030014891177415848, -0.014677518047392368, 0.6232649087905884, -0.3366367518901825, -0.02103642001748085, 0.002718554809689522, 0.006191589869558811, -0.030293911695480347, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15755660831928253, 0.06167082488536835, -0.04090216010808945, 0.295051634311676, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05243098363280296, 0.008856342174112797]} +{"t": 0.9376, "q": [-0.3136189579963684, -0.01395411230623722, 0.015681909397244453, 0.6313012838363647, -0.326513409614563, 0.021098745986819267, -0.32263535261154175, 0.030014891177415848, -0.014690909534692764, 0.6232819557189941, -0.3366285562515259, -0.02105100080370903, 0.0026783791836351156, 0.006168805528432131, -0.030308572575449944, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 0.9543, "q": [-0.3136189579963684, -0.013971157371997833, 0.015708694234490395, 0.6313268542289734, -0.3265175223350525, 0.021091459318995476, -0.3226523995399475, 0.029997846111655235, -0.014690909534692764, 0.6233245730400085, -0.3366285562515259, -0.021036479622125626, 0.0026783791836351156, 0.006244780961424112, -0.03030884824693203, 0.2904736399650574, 0.2159797102212906, -0.005213138181716204, 0.9791830778121948, 0.15762852132320404, 0.06167082488536835, -0.04087819159030914, 0.2950636148452759, -0.22378143668174744, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.0088803106918931]} +{"t": 0.9711, "q": [-0.31360191106796265, -0.013971157371997833, 0.015681909397244453, 0.6313268542289734, -0.326513409614563, 0.021098745986819267, -0.3226523995399475, 0.030014891177415848, -0.014677518047392368, 0.6233330965042114, -0.3366572856903076, -0.020985424518585205, 0.002718554809689522, 0.006161210592836142, -0.030313458293676376, 0.2905096113681793, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15756858885288239, 0.06169478967785835, -0.0409141443669796, 0.295051634311676, -0.22380541265010834, 0.023081617429852486, 0.9781045317649841, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 0.9878, "q": [-0.31359341740608215, -0.01395411230623722, 0.015681909397244453, 0.6313353776931763, -0.3265175223350525, 0.021091459318995476, -0.32264387607574463, 0.029997846111655235, -0.014677518047392368, 0.6233160495758057, -0.3366613984107971, -0.02099265716969967, 0.002718554809689522, 0.006199206691235304, -0.03032834082841873, 0.2904736399650574, 0.21594375371932983, -0.005201153922826052, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.04087819159030914, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05241899937391281, 0.008856342174112797]} +{"t": 1.005, "q": [-0.31360191106796265, -0.013962633907794952, 0.015681909397244453, 0.631352424621582, -0.3265175223350525, 0.021091459318995476, -0.32264387607574463, 0.029997846111655235, -0.014677518047392368, 0.6233416199684143, -0.33666548132896423, -0.020999889820814133, 0.0027051628567278385, 0.00619922298938036, -0.030357830226421356, 0.2904736399650574, 0.21593177318572998, -0.005201153922826052, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.0409141443669796, 0.29507559537887573, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.008868326433002949]} +{"t": 1.0217, "q": [-0.3136104345321655, -0.013971157371997833, 0.01564173400402069, 0.631352424621582, -0.326513409614563, 0.021098745986819267, -0.3226523995399475, 0.029989324510097504, -0.014664125628769398, 0.6233245730400085, -0.3366613984107971, -0.02099265716969967, 0.002691771136596799, 0.006191622465848923, -0.030352886766195297, 0.2905096113681793, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.2950875759124756, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05240701511502266, 0.008868326433002949]} +{"t": 1.0384, "q": [-0.3136274814605713, -0.01394559070467949, 0.015668518841266632, 0.6313439011573792, -0.3265257775783539, 0.02110590599477291, -0.32267796993255615, 0.029989324510097504, -0.014690909534692764, 0.6233330965042114, -0.3366613984107971, -0.02099265716969967, 0.0026649872306734324, 0.006191633641719818, -0.03037254512310028, 0.2905096113681793, 0.21593177318572998, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.04090216010808945, 0.295051634311676, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 1.0552, "q": [-0.31360191106796265, -0.013962633907794952, 0.015668518841266632, 0.631352424621582, -0.326513409614563, 0.021098745986819267, -0.32268649339675903, 0.029980802908539772, -0.014664125628769398, 0.6233330965042114, -0.33666548132896423, -0.020999889820814133, 0.0027453387156128883, 0.006222012918442488, -0.03035299852490425, 0.29049763083457947, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.157616525888443, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.1835743635892868, 0.05241899937391281, 0.008868326433002949]} +{"t": 1.0719, "q": [-0.31363600492477417, -0.01395411230623722, 0.01565512642264366, 0.6313609480857849, -0.3265257775783539, 0.021091395989060402, -0.32268649339675903, 0.029980802908539772, -0.014637341722846031, 0.6233330965042114, -0.3366572856903076, -0.020985424518585205, 0.0026649872306734324, 0.006206828635185957, -0.030372601002454758, 0.2904856503009796, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.29507559537887573, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 1.0887, "q": [-0.31363600492477417, -0.013971157371997833, 0.015681909397244453, 0.631352424621582, -0.3265133798122406, 0.02111327461898327, -0.32268649339675903, 0.02996375784277916, -0.014677518047392368, 0.6233330965042114, -0.3366572856903076, -0.021014470607042313, 0.002691771136596799, 0.006222023628652096, -0.030372656881809235, 0.2904736399650574, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 1.1054, "q": [-0.31365305185317993, -0.013971157371997833, 0.015668518841266632, 0.631352424621582, -0.326521635055542, 0.021098682656884193, -0.3226950168609619, 0.029980802908539772, -0.014650734141469002, 0.6233416199684143, -0.33666548132896423, -0.020999889820814133, 0.0026783791836351156, 0.006153656169772148, -0.0303871501237154, 0.2904616594314575, 0.2159557342529297, -0.0051891696639359, 0.9792070984840393, 0.157616525888443, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.1835743635892868, 0.05240701511502266, 0.008856342174112797]} +{"t": 1.1222, "q": [-0.3136615753173828, -0.013962633907794952, 0.015668518841266632, 0.6313439011573792, -0.3265175223350525, 0.021120497956871986, -0.3226950168609619, 0.029980802908539772, -0.014637341722846031, 0.6233330965042114, -0.33666548132896423, -0.020999889820814133, 0.0026783791836351156, 0.006070108152925968, -0.030431076884269714, 0.2904616594314575, 0.2159557342529297, -0.0051891696639359, 0.9791830778121948, 0.15762852132320404, 0.06167082488536835, -0.04090216010808945, 0.29507559537887573, -0.2237934172153473, 0.02310558594763279, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 1.1389, "q": [-0.3136700987815857, -0.013962633907794952, 0.015695301815867424, 0.631352424621582, -0.326521635055542, 0.021098682656884193, -0.32272058725357056, 0.029980802908539772, -0.014650734141469002, 0.6233330965042114, -0.3366572856903076, -0.020985424518585205, 0.0026649872306734324, 0.006130866706371307, -0.030391981825232506, 0.2904856503009796, 0.2159557342529297, -0.0051891696639359, 0.9792070984840393, 0.15762852132320404, 0.061706773936748505, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008844357915222645]} +{"t": 1.1556, "q": [-0.3136615753173828, -0.013971157371997833, 0.015695301815867424, 0.6313694715499878, -0.326521635055542, 0.021098682656884193, -0.32272058725357056, 0.029980802908539772, -0.014637341722846031, 0.6233330965042114, -0.3366490602493286, -0.021029053255915642, 0.0027051628567278385, 0.00610808189958334, -0.030406642705202103, 0.2904856503009796, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.04092612862586975, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 1.1723, "q": [-0.3137041926383972, -0.013971157371997833, 0.015695301815867424, 0.631352424621582, -0.3265257775783539, 0.02110590599477291, -0.3227376341819763, 0.029980802908539772, -0.014637341722846031, 0.6233330965042114, -0.3366572856903076, -0.021014470607042313, 0.002691771136596799, 0.00610808189958334, -0.030406642705202103, 0.2904616594314575, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.1575925648212433, 0.061706773936748505, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 1.1891, "q": [-0.3137041926383972, -0.014005245640873909, 0.015681909397244453, 0.631352424621582, -0.326521635055542, 0.021113192662596703, -0.32276320457458496, 0.02996375784277916, -0.014677518047392368, 0.6233245730400085, -0.3366613984107971, -0.02099265716969967, 0.002691771136596799, 0.006130866706371307, -0.030391981825232506, 0.29044967889785767, 0.21596772968769073, -0.005225121974945068, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008844357915222645]} +{"t": 1.2058, "q": [-0.3137041926383972, -0.013979678973555565, 0.015681909397244453, 0.631352424621582, -0.3265257775783539, 0.02110590599477291, -0.3227546811103821, 0.029980802908539772, -0.014637341722846031, 0.6233330965042114, -0.33666548132896423, -0.020999889820814133, 0.002651595277711749, 0.006146050523966551, -0.03037237748503685, 0.2904736399650574, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 1.2225, "q": [-0.3137041926383972, -0.013971157371997833, 0.015681909397244453, 0.631352424621582, -0.3265175223350525, 0.021105969324707985, -0.32272058725357056, 0.02997227944433689, -0.014664125628769398, 0.6233245730400085, -0.33666548132896423, -0.020999889820814133, 0.0026649872306734324, 0.006153656169772148, -0.0303871501237154, 0.2904616594314575, 0.21596772968769073, -0.005225121974945068, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 1.2392, "q": [-0.31369566917419434, -0.013988200575113297, 0.015681909397244453, 0.6313609480857849, -0.326521635055542, 0.021113192662596703, -0.3227376341819763, 0.02997227944433689, -0.014637341722846031, 0.6233330965042114, -0.3366613984107971, -0.02099265716969967, 0.0027051628567278385, 0.0061232661828398705, -0.030387038365006447, 0.2904616594314575, 0.21596772968769073, -0.005225121974945068, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 1.2561, "q": [-0.3137041926383972, -0.013988200575113297, 0.015681909397244453, 0.6313694715499878, -0.3265298902988434, 0.02111312933266163, -0.3227376341819763, 0.029997846111655235, -0.014664125628769398, 0.6233330965042114, -0.3366613984107971, -0.021007180213928223, 0.002731946762651205, 0.006146066822111607, -0.030401866883039474, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9791830778121948, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.2237934172153473, 0.023081617429852486, 0.9781045317649841, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 1.2728, "q": [-0.3137041926383972, -0.013971157371997833, 0.015668518841266632, 0.6313694715499878, -0.3265257775783539, 0.02110590599477291, -0.32272911071777344, 0.029980802908539772, -0.014677518047392368, 0.6233416199684143, -0.33666548132896423, -0.020999889820814133, 0.0027051628567278385, 0.006123277358710766, -0.03040669858455658, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.1835503876209259, 0.05241899937391281, 0.008856342174112797]} +{"t": 1.2895, "q": [-0.3137127161026001, -0.013988200575113297, 0.015681909397244453, 0.6313694715499878, -0.3265175223350525, 0.021091459318995476, -0.32272911071777344, 0.029997846111655235, -0.014690909534692764, 0.623367190361023, -0.3366490602493286, -0.021029053255915642, 0.002691771136596799, 0.006138466764241457, -0.030396923422813416, 0.29049763083457947, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.06167082488536835, -0.04090216010808945, 0.29503965377807617, -0.22378143668174744, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 1.3062, "q": [-0.31369566917419434, -0.013971157371997833, 0.015681909397244453, 0.6313864588737488, -0.326513409614563, 0.021098745986819267, -0.3227546811103821, 0.029980802908539772, -0.014690909534692764, 0.6233927607536316, -0.3366449773311615, -0.021021820604801178, 0.002691771136596799, 0.006047328934073448, -0.030455566942691803, 0.2904856503009796, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.04090216010808945, 0.2950636148452759, -0.22378143668174744, 0.02310558594763279, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008856342174112797]} +{"t": 1.323, "q": [-0.3136700987815857, -0.013996722176671028, 0.015681909397244453, 0.6314205527305603, -0.3265175223350525, 0.021091459318995476, -0.3227461576461792, 0.029980802908539772, -0.014664125628769398, 0.6234439015388489, -0.3366449773311615, -0.021021820604801178, 0.002731946762651205, 0.0061005037277936935, -0.03044101782143116, 0.2905096113681793, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.06167082488536835, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 1.3397, "q": [-0.3136700987815857, -0.013971157371997833, 0.015681909397244453, 0.631446123123169, -0.3265175223350525, 0.021091459318995476, -0.3227376341819763, 0.029989324510097504, -0.014664125628769398, 0.6234779357910156, -0.3366449773311615, -0.021021820604801178, 0.0027051628567278385, 0.006100498139858246, -0.030431188642978668, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008832373656332493]} +{"t": 1.3564, "q": [-0.3136786222457886, -0.013988200575113297, 0.015681909397244453, 0.6314802169799805, -0.326513409614563, 0.021098745986819267, -0.32272911071777344, 0.029980802908539772, -0.014637341722846031, 0.6235035061836243, -0.3366408944129944, -0.021014587953686714, 0.0026649872306734324, 0.0060549345798790455, -0.030470339581370354, 0.2904856503009796, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.0409141443669796, 0.29507559537887573, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.008856342174112797]} +{"t": 1.3731, "q": [-0.31365305185317993, -0.013971157371997833, 0.015695301815867424, 0.6315057873725891, -0.326513409614563, 0.021098745986819267, -0.3227461576461792, 0.02997227944433689, -0.014637341722846031, 0.6235376000404358, -0.3366449773311615, -0.021021820604801178, 0.0027453387156128883, 0.006062518805265427, -0.030445793643593788, 0.2904376983642578, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15760454535484314, 0.06167082488536835, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 1.3898, "q": [-0.3136615753173828, -0.013971157371997833, 0.015722084790468216, 0.6315398812294006, -0.326513409614563, 0.021098745986819267, -0.32272058725357056, 0.029980802908539772, -0.014664125628769398, 0.6235716938972473, -0.3366408944129944, -0.021014587953686714, 0.002691771136596799, 0.006024533417075872, -0.030450569465756416, 0.2904736399650574, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.2237934172153473, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 1.4065, "q": [-0.3136615753173828, -0.013979678973555565, 0.015708694234490395, 0.631582498550415, -0.3265175223350525, 0.021105969324707985, -0.32272911071777344, 0.029980802908539772, -0.014690909534692764, 0.6235802173614502, -0.3366490602493286, -0.021029053255915642, 0.0026783791836351156, 0.006032133940607309, -0.030455512925982475, 0.29044967889785767, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.04087819159030914, 0.29502764344215393, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 1.4234, "q": [-0.31364452838897705, -0.013979678973555565, 0.015708694234490395, 0.6315995454788208, -0.3265175223350525, 0.021105969324707985, -0.32272058725357056, 0.02997227944433689, -0.014664125628769398, 0.6236057877540588, -0.336640864610672, -0.021043652668595314, 0.002691771136596799, 0.006062518805265427, -0.030445793643593788, 0.2904616594314575, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15760454535484314, 0.06167082488536835, -0.040890175849199295, 0.2950156629085541, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 1.4402, "q": [-0.31365305185317993, -0.013971157371997833, 0.015735477209091187, 0.6316165924072266, -0.3265092670917511, 0.02110605128109455, -0.3227546811103821, 0.02996375784277916, -0.014650734141469002, 0.623597264289856, -0.3366449773311615, -0.021021820604801178, 0.0026382035575807095, 0.006092898081988096, -0.03042624518275261, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18358634412288666, 0.05243098363280296, 0.008868326433002949]} +{"t": 1.4569, "q": [-0.3136615753173828, -0.013979678973555565, 0.015695301815867424, 0.6316251158714294, -0.326521635055542, 0.021098682656884193, -0.3227376341819763, 0.02997227944433689, -0.014664125628769398, 0.6236057877540588, -0.336649090051651, -0.021014530211687088, 0.002691771136596799, 0.006100492551922798, -0.030421359464526176, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15754462778568268, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.052395034581422806, 0.008856342174112797]} +{"t": 1.4736, "q": [-0.3136615753173828, -0.013971157371997833, 0.015695301815867424, 0.6316336393356323, -0.3265298902988434, 0.02109861932694912, -0.3227376341819763, 0.02997227944433689, -0.014650734141469002, 0.6236143112182617, -0.33666548132896423, -0.020999889820814133, 0.002731946762651205, 0.006138472352176905, -0.030406752601265907, 0.2904856503009796, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.04090216010808945, 0.295051634311676, -0.2237934172153473, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 1.4903, "q": [-0.3136786222457886, -0.013971157371997833, 0.015695301815867424, 0.6316421627998352, -0.326521635055542, 0.021113192662596703, -0.3227376341819763, 0.02997227944433689, -0.014637341722846031, 0.6236313581466675, -0.3366531729698181, -0.021021762862801552, 0.002691771136596799, 0.006062529515475035, -0.03046545200049877, 0.2904856503009796, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008868326433002949]} +{"t": 1.5071, "q": [-0.3136786222457886, -0.013979678973555565, 0.015695301815867424, 0.6316421627998352, -0.3265175223350525, 0.021105969324707985, -0.32276320457458496, 0.02996375784277916, -0.014637341722846031, 0.6236398816108704, -0.33666959404945374, -0.021007122471928596, 0.002731946762651205, 0.006092903204262257, -0.03043607622385025, 0.2904856503009796, 0.21596772968769073, -0.0051891696639359, 0.9791830778121948, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.2237934172153473, 0.023093601688742638, 0.9780685901641846, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 1.5238, "q": [-0.3136786222457886, -0.013979678973555565, 0.015681909397244453, 0.6316506862640381, -0.3265175223350525, 0.021091459318995476, -0.32276320457458496, 0.02996375784277916, -0.014664125628769398, 0.6236398816108704, -0.33666548132896423, -0.020999889820814133, 0.0026649872306734324, 0.0061005037277936935, -0.03044101782143116, 0.29049763083457947, 0.21596772968769073, -0.005213138181716204, 0.9791830778121948, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008856342174112797]} +{"t": 1.5406, "q": [-0.31368714570999146, -0.013988200575113297, 0.015681909397244453, 0.631659209728241, -0.326521635055542, 0.021098682656884193, -0.3227546811103821, 0.02997227944433689, -0.014637341722846031, 0.6236398816108704, -0.3366572856903076, -0.021014470607042313, 0.002691771136596799, 0.006062529515475035, -0.03046545200049877, 0.2905096113681793, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15754462778568268, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9781045317649841, -0.18358634412288666, 0.05243098363280296, 0.008856342174112797]} +{"t": 1.5573, "q": [-0.3136786222457886, -0.013979678973555565, 0.015681909397244453, 0.6316933035850525, -0.3265175223350525, 0.021105969324707985, -0.3227546811103821, 0.02997227944433689, -0.014637341722846031, 0.6236398816108704, -0.3366572856903076, -0.021014470607042313, 0.0026649872306734324, 0.005994165316224098, -0.03048977628350258, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18358634412288666, 0.05243098363280296, 0.008856342174112797]} +{"t": 1.574, "q": [-0.3136700987815857, -0.013996722176671028, 0.015708694234490395, 0.6316847801208496, -0.3265175223350525, 0.021091459318995476, -0.3227546811103821, 0.02997227944433689, -0.014650734141469002, 0.6236569285392761, -0.3366449773311615, -0.021021820604801178, 0.0027051628567278385, 0.006009360309690237, -0.030489832162857056, 0.2904856503009796, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.1576405018568039, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05240701511502266, 0.008856342174112797]} +{"t": 1.5908, "q": [-0.31368714570999146, -0.013962633907794952, 0.015695301815867424, 0.6317188739776611, -0.326521635055542, 0.021098682656884193, -0.3227546811103821, 0.029980802908539772, -0.014650734141469002, 0.6236569285392761, -0.3366367816925049, -0.021021896973252296, 0.002731946762651205, 0.0059258174151182175, -0.03054358996450901, 0.2904616594314575, 0.21594375371932983, -0.005225121974945068, 0.9792070984840393, 0.15752065181732178, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22378143668174744, 0.023093601688742638, 0.9780925512313843, -0.1835743635892868, 0.05241899937391281, 0.008844357915222645]} +{"t": 1.6075, "q": [-0.31369566917419434, -0.013979678973555565, 0.015708694234490395, 0.631727397441864, -0.3265175223350525, 0.021105969324707985, -0.3227546811103821, 0.02996375784277916, -0.014650734141469002, 0.6236739754676819, -0.3366490602493286, -0.021029053255915642, 0.002691771136596799, 0.005941001698374748, -0.030523985624313354, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 1.6242, "q": [-0.3136786222457886, -0.013996722176671028, 0.015722084790468216, 0.6317444443702698, -0.3265175223350525, 0.021105969324707985, -0.3227546811103821, 0.02997227944433689, -0.014623950235545635, 0.6236995458602905, -0.3366367518901825, -0.02103642001748085, 0.0027051628567278385, 0.005978975910693407, -0.030499551445245743, 0.29044967889785767, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.06167082488536835, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008868326433002949]} +{"t": 1.6412, "q": [-0.3136700987815857, -0.013988200575113297, 0.015748869627714157, 0.6317529678344727, -0.3265133798122406, 0.02111327461898327, -0.32276320457458496, 0.02996375784277916, -0.014664125628769398, 0.6237251162528992, -0.3366449773311615, -0.021021820604801178, 0.0026783791836351156, 0.005986565258353949, -0.03048483468592167, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.0409141443669796, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05240701511502266, 0.008844357915222645]} +{"t": 1.658, "q": [-0.3136700987815857, -0.013979678973555565, 0.015735477209091187, 0.6317529678344727, -0.326513409614563, 0.021098745986819267, -0.32277172803878784, 0.029980802908539772, -0.014650734141469002, 0.6237677335739136, -0.336640864610672, -0.021043652668595314, 0.002731946762651205, 0.00597137538716197, -0.030494607985019684, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.2237934172153473, 0.023081617429852486, 0.9780805706977844, -0.1835743635892868, 0.05241899937391281, 0.008844357915222645]} +{"t": 1.6747, "q": [-0.3136786222457886, -0.013996722176671028, 0.015735477209091187, 0.6317699551582336, -0.3265175223350525, 0.021091459318995476, -0.32277172803878784, 0.02997227944433689, -0.014664125628769398, 0.6237677335739136, -0.3366408944129944, -0.021014587953686714, 0.0027453387156128883, 0.005925806704908609, -0.030523929744958878, 0.2904616594314575, 0.2159557342529297, -0.0051891696639359, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.0409141443669796, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05241899937391281, 0.008868326433002949]} +{"t": 1.6915, "q": [-0.3136786222457886, -0.013971157371997833, 0.015748869627714157, 0.6317699551582336, -0.326521635055542, 0.021098682656884193, -0.32276320457458496, 0.029980802908539772, -0.014623950235545635, 0.6237762570381165, -0.3366449773311615, -0.021021820604801178, 0.0026783791836351156, 0.00597137538716197, -0.030494607985019684, 0.2904736399650574, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.06169478967785835, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023081617429852486, 0.9780685901641846, -0.18353840708732605, 0.05240701511502266, 0.008844357915222645]} +{"t": 1.7082, "q": [-0.3136615753173828, -0.013996722176671028, 0.015722084790468216, 0.6318040490150452, -0.3265257775783539, 0.021091395989060402, -0.3227546811103821, 0.029989324510097504, -0.014650734141469002, 0.6238188743591309, -0.3366490602493286, -0.021029053255915642, 0.002731946762651205, 0.00600175466388464, -0.030475059524178505, 0.2904856503009796, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06169478967785835, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 1.7249, "q": [-0.3136786222457886, -0.013971157371997833, 0.015748869627714157, 0.6318210959434509, -0.3265092670917511, 0.02110605128109455, -0.3227546811103821, 0.029980802908539772, -0.014677518047392368, 0.6238359212875366, -0.3366449773311615, -0.021021820604801178, 0.002691771136596799, 0.005994165316224098, -0.03048977628350258, 0.2904856503009796, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.02310558594763279, 0.9781045317649841, -0.1835743635892868, 0.05243098363280296, 0.008856342174112797]} +{"t": 1.7417, "q": [-0.31365305185317993, -0.01401376724243164, 0.015762262046337128, 0.6318381428718567, -0.3265175223350525, 0.021091459318995476, -0.3227376341819763, 0.029980802908539772, -0.014637341722846031, 0.6239040493965149, -0.3366367816925049, -0.021021896973252296, 0.002731946762651205, 0.006024544592946768, -0.03047022968530655, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05241899937391281, 0.008856342174112797]} +{"t": 1.7584, "q": [-0.3136615753173828, -0.013996722176671028, 0.015748869627714157, 0.6318637132644653, -0.3265175223350525, 0.021091459318995476, -0.32276320457458496, 0.029980802908539772, -0.014677518047392368, 0.6239210963249207, -0.3366490602493286, -0.021029053255915642, 0.002718554809689522, 0.006009349599480629, -0.030470173805952072, 0.2904736399650574, 0.2159797102212906, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.040890175849199295, 0.295051634311676, -0.22378143668174744, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 1.7751, "q": [-0.31365305185317993, -0.014005245640873909, 0.015748869627714157, 0.631889283657074, -0.326513409614563, 0.021098745986819267, -0.3227546811103821, 0.029980802908539772, -0.014650734141469002, 0.6239551901817322, -0.3366408944129944, -0.021014587953686714, 0.002691771136596799, 0.00602453900501132, -0.030460398644208908, 0.2904856503009796, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.1835743635892868, 0.05243098363280296, 0.008856342174112797]} +{"t": 1.792, "q": [-0.31365305185317993, -0.013988200575113297, 0.015748869627714157, 0.6319404244422913, -0.326521635055542, 0.021098682656884193, -0.32276320457458496, 0.029980802908539772, -0.014650734141469002, 0.6240063309669495, -0.3366449773311615, -0.021021820604801178, 0.0027051628567278385, 0.006009349599480629, -0.030470173805952072, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9791830778121948, 0.15760454535484314, 0.0616828091442585, -0.040890175849199295, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 1.8087, "q": [-0.3136274814605713, -0.013996722176671028, 0.015748869627714157, 0.6319489479064941, -0.3265175223350525, 0.021091459318995476, -0.3227546811103821, 0.02997227944433689, -0.014637341722846031, 0.6240319013595581, -0.3366449773311615, -0.021021820604801178, 0.0026649872306734324, 0.006032139528542757, -0.030465342104434967, 0.29049763083457947, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.0409141443669796, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.1835503876209259, 0.05241899937391281, 0.008844357915222645]} +{"t": 1.8254, "q": [-0.31363600492477417, -0.013996722176671028, 0.015748869627714157, 0.6319659948348999, -0.3265175223350525, 0.021091459318995476, -0.3227546811103821, 0.029980802908539772, -0.014664125628769398, 0.6240659952163696, -0.3366449773311615, -0.021021820604801178, 0.0027051628567278385, 0.005978970322757959, -0.03048972226679325, 0.2904856503009796, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 1.8422, "q": [-0.3136274814605713, -0.013988200575113297, 0.015735477209091187, 0.6319915652275085, -0.326513409614563, 0.021098745986819267, -0.32276320457458496, 0.029955236241221428, -0.014650734141469002, 0.6240830421447754, -0.3366490602493286, -0.021029053255915642, 0.002718554809689522, 0.006039739586412907, -0.030470283702015877, 0.2904856503009796, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.06167082488536835, -0.0409141443669796, 0.295051634311676, -0.22380541265010834, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 1.8589, "q": [-0.3136274814605713, -0.013979678973555565, 0.015722084790468216, 0.6320000886917114, -0.3265175223350525, 0.021091459318995476, -0.32277172803878784, 0.02996375784277916, -0.014650734141469002, 0.624108612537384, -0.336649090051651, -0.021000007167458534, 0.002718554809689522, 0.006077708210796118, -0.030436020344495773, 0.2904856503009796, 0.21594375371932983, -0.005213138181716204, 0.9792190790176392, 0.15756858885288239, 0.06167082488536835, -0.040890175849199295, 0.29507559537887573, -0.2237934172153473, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 1.8756, "q": [-0.31363600492477417, -0.013988200575113297, 0.015722084790468216, 0.6320000886917114, -0.326521635055542, 0.021084172651171684, -0.3227887749671936, 0.029955236241221428, -0.014650734141469002, 0.6241256594657898, -0.3366449773311615, -0.021021820604801178, 0.0027051628567278385, 0.006070118863135576, -0.030450737103819847, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.06167082488536835, -0.04090216010808945, 0.2950636148452759, -0.22378143668174744, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 1.8926, "q": [-0.31363600492477417, -0.013996722176671028, 0.015748869627714157, 0.6320171356201172, -0.326513409614563, 0.021098745986819267, -0.32281434535980225, 0.029955236241221428, -0.014637341722846031, 0.624108612537384, -0.33666136860847473, -0.021021703258156776, 0.002718554809689522, 0.006085303146392107, -0.03043113276362419, 0.2904856503009796, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15760454535484314, 0.06169478967785835, -0.04090216010808945, 0.2950636148452759, -0.22378143668174744, 0.023093601688742638, 0.9781045317649841, -0.18356238305568695, 0.052442967891693115, 0.008856342174112797]} +{"t": 1.9093, "q": [-0.31363600492477417, -0.013988200575113297, 0.015735477209091187, 0.6320086121559143, -0.3265175223350525, 0.021091459318995476, -0.3227972984313965, 0.029955236241221428, -0.014637341722846031, 0.6241256594657898, -0.33667367696762085, -0.02101435326039791, 0.0026783791836351156, 0.006070124451071024, -0.03046056628227234, 0.2904856503009796, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023081617429852486, 0.9780925512313843, -0.1835743635892868, 0.05241899937391281, 0.008868326433002949]} +{"t": 1.9261, "q": [-0.31364452838897705, -0.013996722176671028, 0.015695301815867424, 0.6320171356201172, -0.3265092670917511, 0.02110605128109455, -0.32280582189559937, 0.029946712777018547, -0.014650734141469002, 0.6241256594657898, -0.33666548132896423, -0.020999889820814133, 0.0026783791836351156, 0.0060245501808822155, -0.03048005886375904, 0.2904856503009796, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.1575925648212433, 0.06169478967785835, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.052442967891693115, 0.008844357915222645]} +{"t": 1.943, "q": [-0.31364452838897705, -0.013988200575113297, 0.015668518841266632, 0.6320171356201172, -0.326521635055542, 0.021098682656884193, -0.32282283902168274, 0.029955236241221428, -0.014623950235545635, 0.624108612537384, -0.33666548132896423, -0.020999889820814133, 0.0026382035575807095, 0.0060245501808822155, -0.03048005886375904, 0.2904736399650574, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 1.9597, "q": [-0.31363600492477417, -0.013996722176671028, 0.015708694234490395, 0.6320256590843201, -0.326513409614563, 0.021098745986819267, -0.32280582189559937, 0.029946712777018547, -0.014637341722846031, 0.6241171360015869, -0.33666548132896423, -0.020999889820814133, 0.002718554809689522, 0.005994176026433706, -0.030509434640407562, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9791951179504395, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.29507559537887573, -0.2237934172153473, 0.023093601688742638, 0.9781045317649841, -0.18356238305568695, 0.052442967891693115, 0.008856342174112797]} +{"t": 1.9765, "q": [-0.31363600492477417, -0.013988200575113297, 0.015695301815867424, 0.6320171356201172, -0.3265257775783539, 0.021091395989060402, -0.3228313624858856, 0.029946712777018547, -0.014650734141469002, 0.6241256594657898, -0.33667367696762085, -0.02101435326039791, 0.0027051628567278385, 0.006070130039006472, -0.03047039546072483, 0.2905096113681793, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.06167082488536835, -0.0409141443669796, 0.29507559537887573, -0.22380541265010834, 0.023069633170962334, 0.9781045317649841, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 1.9933, "q": [-0.3136615753173828, -0.013988200575113297, 0.015695301815867424, 0.6320171356201172, -0.3265298902988434, 0.02109861932694912, -0.3228825032711029, 0.029946712777018547, -0.014610557816922665, 0.6241000890731812, -0.33666548132896423, -0.020999889820814133, 0.002718554809689522, 0.006032150238752365, -0.03048500046133995, 0.2904856503009796, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04086620733141899, 0.295051634311676, -0.22378143668174744, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008844357915222645]} +{"t": 2.0101, "q": [-0.31369566917419434, -0.013988200575113297, 0.015708694234490395, 0.6320171356201172, -0.326521635055542, 0.021113192662596703, -0.3228825032711029, 0.029938191175460815, -0.014623950235545635, 0.624108612537384, -0.33666959404945374, -0.021007122471928596, 0.002718554809689522, 0.006024555303156376, -0.030489888042211533, 0.2904616594314575, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.040890175849199295, 0.29503965377807617, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.008856342174112797]} +{"t": 2.0268, "q": [-0.3137127161026001, -0.013996722176671028, 0.015695301815867424, 0.6320171356201172, -0.3265257775783539, 0.02110590599477291, -0.32290807366371155, 0.029946712777018547, -0.014623950235545635, 0.624108612537384, -0.33666959404945374, -0.021007122471928596, 0.002731946762651205, 0.005978992208838463, -0.030529038980603218, 0.29044967889785767, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.06167082488536835, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 2.0435, "q": [-0.3137127161026001, -0.013988200575113297, 0.015695301815867424, 0.6320171356201172, -0.3265257775783539, 0.02110590599477291, -0.3229251205921173, 0.029946712777018547, -0.014597166329622269, 0.6241000890731812, -0.33667778968811035, -0.021021604537963867, 0.002651595277711749, 0.005956196691840887, -0.03052404150366783, 0.2905096113681793, 0.2159797102212906, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.04092612862586975, 0.2950636148452759, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05240701511502266, 0.008868326433002949]} +{"t": 2.0603, "q": [-0.3137553334236145, -0.013988200575113297, 0.015695301815867424, 0.6320171356201172, -0.3265257775783539, 0.02110590599477291, -0.32295069098472595, 0.029938191175460815, -0.014610557816922665, 0.6240830421447754, -0.33668190240859985, -0.02099977247416973, 0.0026783791836351156, 0.005887848790735006, -0.030577853322029114, 0.2904856503009796, 0.21594375371932983, -0.005213138181716204, 0.9791951179504395, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.2237934172153473, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 2.077, "q": [-0.3138149678707123, -0.01401376724243164, 0.015708694234490395, 0.6320171356201172, -0.3265257775783539, 0.02110590599477291, -0.3229847848415375, 0.029938191175460815, -0.014583774842321873, 0.6241000890731812, -0.33669009804725647, -0.021014254540205002, 0.0027453387156128883, 0.005933412350714207, -0.03053870238363743, 0.2904616594314575, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15762852132320404, 0.06169478967785835, -0.0409141443669796, 0.2950636148452759, -0.22380541265010834, 0.023081617429852486, 0.9781045317649841, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 2.0937, "q": [-0.31383201479911804, -0.01401376724243164, 0.015695301815867424, 0.6320256590843201, -0.3265257775783539, 0.02110590599477291, -0.32299330830574036, 0.029929669573903084, -0.014583774842321873, 0.6240915656089783, -0.33668190240859985, -0.02099977247416973, 0.0027051628567278385, 0.005910633131861687, -0.030563192442059517, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06169478967785835, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 2.1105, "q": [-0.3138490617275238, -0.014005245640873909, 0.015708694234490395, 0.6320171356201172, -0.3265340030193329, 0.02112036943435669, -0.3230103552341461, 0.029929669573903084, -0.014570382423698902, 0.6240915656089783, -0.33667778968811035, -0.020992539823055267, 0.0026783791836351156, 0.005880243144929409, -0.030563080683350563, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.061658840626478195, -0.04090216010808945, 0.29502764344215393, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 2.1274, "q": [-0.31386610865592957, -0.014005245640873909, 0.015708694234490395, 0.6320171356201172, -0.3265381455421448, 0.021113082766532898, -0.3230358958244324, 0.029921147972345352, -0.014583774842321873, 0.6240830421447754, -0.33669009804725647, -0.021014254540205002, 0.002718554809689522, 0.005895438138395548, -0.03056313656270504, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.06167082488536835, -0.04087819159030914, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 2.1441, "q": [-0.3138916790485382, -0.014005245640873909, 0.015681909397244453, 0.6320256590843201, -0.3265257775783539, 0.021134961396455765, -0.3230188488960266, 0.029921147972345352, -0.014583774842321873, 0.6240915656089783, -0.33668190240859985, -0.02099977247416973, 0.0027453387156128883, 0.005880253855139017, -0.030582740902900696, 0.2904736399650574, 0.2159797102212906, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05243098363280296, 0.008856342174112797]} +{"t": 2.1608, "q": [-0.3138831555843353, -0.014022288843989372, 0.015708694234490395, 0.6320171356201172, -0.3265175223350525, 0.021120497956871986, -0.3230358958244324, 0.029921147972345352, -0.014610557816922665, 0.6240915656089783, -0.33668598532676697, -0.021007023751735687, 0.002718554809689522, 0.0059334286488592625, -0.030568189918994904, 0.2904856503009796, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06169478967785835, -0.0409141443669796, 0.29507559537887573, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008868326433002949]} +{"t": 2.1776, "q": [-0.3138916790485382, -0.013996722176671028, 0.015735477209091187, 0.6320171356201172, -0.326521635055542, 0.021098682656884193, -0.3230358958244324, 0.02991262450814247, -0.014610557816922665, 0.6240915656089783, -0.33669009804725647, -0.021014254540205002, 0.002731946762651205, 0.005918233655393124, -0.030568134039640427, 0.2904736399650574, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.06167082488536835, -0.04090216010808945, 0.2950636148452759, -0.2238173931837082, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 2.1943, "q": [-0.31387463212013245, -0.014005245640873909, 0.015695301815867424, 0.632034182548523, -0.3265175223350525, 0.021091459318995476, -0.3230103552341461, 0.02990410290658474, -0.014623950235545635, 0.624108612537384, -0.33668187260627747, -0.02102883718907833, 0.002718554809689522, 0.005903043784201145, -0.03057790920138359, 0.2904736399650574, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008868326433002949]} +{"t": 2.2111, "q": [-0.31387463212013245, -0.01401376724243164, 0.015681909397244453, 0.6320256590843201, -0.326513409614563, 0.021098745986819267, -0.3230273723602295, 0.02991262450814247, -0.014583774842321873, 0.6241000890731812, -0.33667367696762085, -0.02101435326039791, 0.002691771136596799, 0.005925823003053665, -0.030553419142961502, 0.2904616594314575, 0.21593177318572998, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.22378143668174744, 0.02310558594763279, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 2.2278, "q": [-0.31387463212013245, -0.01401376724243164, 0.015708694234490395, 0.6320171356201172, -0.3265175223350525, 0.021091459318995476, -0.32304441928863525, 0.02991262450814247, -0.014597166329622269, 0.624108612537384, -0.33666956424713135, -0.02102164551615715, 0.002731946762651205, 0.00592581182718277, -0.03053375892341137, 0.2904616594314575, 0.21596772968769073, -0.0051891696639359, 0.9792070984840393, 0.1575925648212433, 0.06169478967785835, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05240701511502266, 0.008856342174112797]} +{"t": 2.2446, "q": [-0.3138575851917267, -0.013996722176671028, 0.015708694234490395, 0.632034182548523, -0.326521635055542, 0.021113192662596703, -0.3230103552341461, 0.029921147972345352, -0.014637341722846031, 0.624108612537384, -0.33666956424713135, -0.02102164551615715, 0.0027453387156128883, 0.005956196691840887, -0.03052404150366783, 0.2904616594314575, 0.2159557342529297, -0.005201153922826052, 0.9791830778121948, 0.15756858885288239, 0.06167082488536835, -0.04087819159030914, 0.2950636148452759, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.1835264265537262, 0.05241899937391281, 0.008844357915222645]} +{"t": 2.2614, "q": [-0.3138575851917267, -0.013996722176671028, 0.015722084790468216, 0.632034182548523, -0.3265092670917511, 0.02110605128109455, -0.32299330830574036, 0.029929669573903084, -0.014637341722846031, 0.6241171360015869, -0.3366531729698181, -0.021036284044384956, 0.002718554809689522, 0.0059486073441803455, -0.030538758262991905, 0.29044967889785767, 0.2159797102212906, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 2.2782, "q": [-0.3138490617275238, -0.01401376724243164, 0.015695301815867424, 0.632034182548523, -0.3265092670917511, 0.02110605128109455, -0.3230103552341461, 0.029921147972345352, -0.014623950235545635, 0.6241171360015869, -0.3366531431674957, -0.021050825715065002, 0.002691771136596799, 0.005963802337646484, -0.030538812279701233, 0.2904736399650574, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.2237934172153473, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 2.2949, "q": [-0.3138575851917267, -0.014022288843989372, 0.015708694234490395, 0.6320427060127258, -0.3265175223350525, 0.021091459318995476, -0.32300183176994324, 0.029929669573903084, -0.014650734141469002, 0.6241171360015869, -0.33665725588798523, -0.02104351669549942, 0.002691771136596799, 0.0059865922667086124, -0.030533980578184128, 0.2904856503009796, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15760454535484314, 0.06167082488536835, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023069633170962334, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 2.3118, "q": [-0.31383201479911804, -0.014005245640873909, 0.015722084790468216, 0.6320512294769287, -0.3265175223350525, 0.021091459318995476, -0.32299330830574036, 0.02991262450814247, -0.014623950235545635, 0.6241341829299927, -0.3366490602493286, -0.021058116108179092, 0.002758730435743928, 0.005956202279776335, -0.030533870682120323, 0.2904736399650574, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.0409141443669796, 0.2950636148452759, -0.2237934172153473, 0.023081617429852486, 0.9780805706977844, -0.18353840708732605, 0.05243098363280296, 0.008856342174112797]} +{"t": 2.3285, "q": [-0.31383201479911804, -0.014005245640873909, 0.015708694234490395, 0.6320427060127258, -0.3265175223350525, 0.021105969324707985, -0.32299330830574036, 0.029929669573903084, -0.014623950235545635, 0.6241597533226013, -0.33666136860847473, -0.02103622630238533, 0.002718554809689522, 0.006039750762283802, -0.03048994392156601, 0.2905096113681793, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.29507559537887573, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008856342174112797]} +{"t": 2.3453, "q": [-0.3138405382633209, -0.01401376724243164, 0.015708694234490395, 0.6320512294769287, -0.3265092670917511, 0.02110605128109455, -0.32299330830574036, 0.029921147972345352, -0.014623950235545635, 0.6241597533226013, -0.3366490602493286, -0.02104359306395054, 0.0026783791836351156, 0.005978997331112623, -0.03053886815905571, 0.2904856503009796, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.04092612862586975, 0.29507559537887573, -0.2237934172153473, 0.023093601688742638, 0.9780925512313843, -0.1835503876209259, 0.05241899937391281, 0.008844357915222645]} +{"t": 2.3621, "q": [-0.31383201479911804, -0.014022288843989372, 0.015722084790468216, 0.6320597529411316, -0.326513409614563, 0.021098745986819267, -0.32299330830574036, 0.029921147972345352, -0.014650734141469002, 0.6241597533226013, -0.33666548132896423, -0.021014412865042686, 0.002718554809689522, 0.005986575968563557, -0.030504493042826653, 0.2904856503009796, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.0409141443669796, 0.2950636148452759, -0.22380541265010834, 0.02310558594763279, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008844357915222645]} +{"t": 2.3788, "q": [-0.31383201479911804, -0.014005245640873909, 0.015695301815867424, 0.6320512294769287, -0.326513409614563, 0.021098745986819267, -0.3229847848415375, 0.029921147972345352, -0.014637341722846031, 0.6241512298583984, -0.33666959404945374, -0.021036185324192047, 0.0026783791836351156, 0.005994176026433706, -0.030509434640407562, 0.2904856503009796, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15758058428764343, 0.06169478967785835, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.1835503876209259, 0.05243098363280296, 0.008856342174112797]} +{"t": 2.3956, "q": [-0.3138405382633209, -0.013996722176671028, 0.015708694234490395, 0.6320597529411316, -0.326513409614563, 0.021098745986819267, -0.32299330830574036, 0.029929669573903084, -0.014623950235545635, 0.6241512298583984, -0.33667367696762085, -0.02104341797530651, 0.002691771136596799, 0.005986581556499004, -0.030514322221279144, 0.2904856503009796, 0.2159797102212906, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835503876209259, 0.05243098363280296, 0.008868326433002949]} +{"t": 2.4123, "q": [-0.3138405382633209, -0.013996722176671028, 0.015722084790468216, 0.6320597529411316, -0.3265175223350525, 0.021091459318995476, -0.3229847848415375, 0.029929669573903084, -0.014610557816922665, 0.6241427063941956, -0.33666136860847473, -0.021021703258156776, 0.002758730435743928, 0.005956191103905439, -0.03051421232521534, 0.2905096113681793, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835503876209259, 0.05243098363280296, 0.008856342174112797]} +{"t": 2.429, "q": [-0.3138575851917267, -0.013996722176671028, 0.015708694234490395, 0.6320512294769287, -0.3265175223350525, 0.021105969324707985, -0.3229762613773346, 0.02991262450814247, -0.014597166329622269, 0.6241597533226013, -0.33666959404945374, -0.021007122471928596, 0.0027453387156128883, 0.006039745174348354, -0.03048011288046837, 0.2904736399650574, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.15758058428764343, 0.06169478967785835, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835503876209259, 0.05240701511502266, 0.008868326433002949]} +{"t": 2.4458, "q": [-0.31387463212013245, -0.01401376724243164, 0.015695301815867424, 0.6320512294769287, -0.3265175223350525, 0.021105969324707985, -0.3230103552341461, 0.029921147972345352, -0.014623950235545635, 0.6241427063941956, -0.33669009804725647, -0.021014254540205002, 0.0027453387156128883, 0.006009371485561132, -0.03050949051976204, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9791951179504395, 0.15758058428764343, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 2.4627, "q": [-0.3138575851917267, -0.013996722176671028, 0.015708694234490395, 0.6320597529411316, -0.3265175223350525, 0.021091459318995476, -0.32299330830574036, 0.029929669573903084, -0.014623950235545635, 0.6241512298583984, -0.33666548132896423, -0.02102893590927124, 0.0026783791836351156, 0.005956196691840887, -0.03052404150366783, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.1835503876209259, 0.05243098363280296, 0.008844357915222645]} +{"t": 2.4794, "q": [-0.31387463212013245, -0.014005245640873909, 0.015748869627714157, 0.6320597529411316, -0.326513409614563, 0.021098745986819267, -0.32299330830574036, 0.029921147972345352, -0.014597166329622269, 0.6241512298583984, -0.33667367696762085, -0.02101435326039791, 0.002758730435743928, 0.005986581556499004, -0.030514322221279144, 0.2904856503009796, 0.21594375371932983, -0.005201153922826052, 0.9791951179504395, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.1835264265537262, 0.05241899937391281, 0.008844357915222645]} +{"t": 2.4962, "q": [-0.31387463212013245, -0.014005245640873909, 0.015722084790468216, 0.6320597529411316, -0.3265175223350525, 0.021091459318995476, -0.32299330830574036, 0.029921147972345352, -0.014623950235545635, 0.6241512298583984, -0.33667367696762085, -0.02101435326039791, 0.002731946762651205, 0.005986575968563557, -0.030504493042826653, 0.2904616594314575, 0.2159797102212906, -0.005213138181716204, 0.9791951179504395, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835503876209259, 0.052395034581422806, 0.008856342174112797]} +{"t": 2.5129, "q": [-0.31386610865592957, -0.014005245640873909, 0.015722084790468216, 0.6320597529411316, -0.326513409614563, 0.021098745986819267, -0.32300183176994324, 0.029921147972345352, -0.014610557816922665, 0.6241427063941956, -0.33667367696762085, -0.02101435326039791, 0.0026783791836351156, 0.005994176026433706, -0.030509434640407562, 0.2904616594314575, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.0409141443669796, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835503876209259, 0.05241899937391281, 0.008856342174112797]} +{"t": 2.5296, "q": [-0.3138490617275238, -0.013996722176671028, 0.015722084790468216, 0.6320512294769287, -0.3265092670917511, 0.02110605128109455, -0.32299330830574036, 0.02990410290658474, -0.014597166329622269, 0.6241427063941956, -0.33667778968811035, -0.021021604537963867, 0.002718554809689522, 0.006032150238752365, -0.03048500046133995, 0.2904736399650574, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.04087819159030914, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.1835503876209259, 0.05243098363280296, 0.008856342174112797]} +{"t": 2.5464, "q": [-0.3138490617275238, -0.01401376724243164, 0.015722084790468216, 0.6320597529411316, -0.326513409614563, 0.021098745986819267, -0.3230103552341461, 0.029921147972345352, -0.014597166329622269, 0.6241512298583984, -0.33666959404945374, -0.021007122471928596, 0.0027051628567278385, 0.0060017709620296955, -0.03050454892218113, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9791830778121948, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 2.5631, "q": [-0.3138575851917267, -0.01401376724243164, 0.015722084790468216, 0.6320597529411316, -0.3265092968940735, 0.02109152264893055, -0.32300183176994324, 0.029921147972345352, -0.014610557816922665, 0.6241427063941956, -0.33666136860847473, -0.021050767973065376, 0.002718554809689522, 0.006009371485561132, -0.03050949051976204, 0.29044967889785767, 0.21596772968769073, -0.0051891696639359, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.052442967891693115, 0.008856342174112797]} +{"t": 2.5798, "q": [-0.3138490617275238, -0.01401376724243164, 0.015708694234490395, 0.6320597529411316, -0.3265092670917511, 0.02110605128109455, -0.32300183176994324, 0.02990410290658474, -0.014610557816922665, 0.6241427063941956, -0.3366572856903076, -0.021014470607042313, 0.002718554809689522, 0.005986575968563557, -0.030504493042826653, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.06167082488536835, -0.040890175849199295, 0.295051634311676, -0.2238173931837082, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 2.5966, "q": [-0.3138575851917267, -0.014005245640873909, 0.015735477209091187, 0.6320597529411316, -0.3265133798122406, 0.02111327461898327, -0.32300183176994324, 0.02991262450814247, -0.014623950235545635, 0.6241512298583984, -0.33666136860847473, -0.02103622630238533, 0.0027051628567278385, 0.0060017709620296955, -0.03050454892218113, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9791951179504395, 0.157616525888443, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008856342174112797]} +{"t": 2.6133, "q": [-0.31382349133491516, -0.014022288843989372, 0.015748869627714157, 0.6320512294769287, -0.326513409614563, 0.021098745986819267, -0.32300183176994324, 0.02991262450814247, -0.014623950235545635, 0.6241427063941956, -0.33665725588798523, -0.02104351669549942, 0.002731946762651205, 0.005978986620903015, -0.030519209802150726, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06169478967785835, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.1835503876209259, 0.05241899937391281, 0.008856342174112797]} +{"t": 2.6301, "q": [-0.3138405382633209, -0.014005245640873909, 0.015735477209091187, 0.6320597529411316, -0.3265175223350525, 0.021091459318995476, -0.32299330830574036, 0.029929669573903084, -0.014610557816922665, 0.6241512298583984, -0.3366490602493286, -0.021058116108179092, 0.0026649872306734324, 0.005971380975097418, -0.030504437163472176, 0.2904856503009796, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.061658840626478195, -0.04090216010808945, 0.2950636148452759, -0.22378143668174744, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 2.647, "q": [-0.31382349133491516, -0.01401376724243164, 0.015695301815867424, 0.6320512294769287, -0.326521635055542, 0.021098682656884193, -0.3229762613773346, 0.029921147972345352, -0.014623950235545635, 0.6241427063941956, -0.33666956424713135, -0.02102164551615715, 0.002691771136596799, 0.0060245501808822155, -0.03048005886375904, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.0409141443669796, 0.2950636148452759, -0.22378143668174744, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 2.6637, "q": [-0.3138575851917267, -0.014005245640873909, 0.015708694234490395, 0.6320597529411316, -0.326513409614563, 0.021098745986819267, -0.3229847848415375, 0.029921147972345352, -0.014623950235545635, 0.6241512298583984, -0.33666136860847473, -0.021021703258156776, 0.0026783791836351156, 0.006009365897625685, -0.030499661341309547, 0.2904736399650574, 0.21596772968769073, -0.005225121974945068, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 2.6805, "q": [-0.31382349133491516, -0.014005245640873909, 0.015722084790468216, 0.6320597529411316, -0.326513409614563, 0.021098745986819267, -0.3229847848415375, 0.029921147972345352, -0.014623950235545635, 0.6241341829299927, -0.33666548132896423, -0.02102893590927124, 0.002731946762651205, 0.006009365897625685, -0.030499661341309547, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.06167082488536835, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008844357915222645]} +{"t": 2.6972, "q": [-0.31382349133491516, -0.013996722176671028, 0.015722084790468216, 0.6320512294769287, -0.326521635055542, 0.021084172651171684, -0.32299330830574036, 0.029938191175460815, -0.014623950235545635, 0.6241512298583984, -0.33666959404945374, -0.021036185324192047, 0.002731946762651205, 0.006039750762283802, -0.03048994392156601, 0.2905096113681793, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18353840708732605, 0.05243098363280296, 0.008844357915222645]} +{"t": 2.714, "q": [-0.31382349133491516, -0.014022288843989372, 0.015735477209091187, 0.6320597529411316, -0.3265133798122406, 0.02111327461898327, -0.32299330830574036, 0.029938191175460815, -0.014623950235545635, 0.6241512298583984, -0.33666548132896423, -0.02102893590927124, 0.002691771136596799, 0.006115698721259832, -0.030441073700785637, 0.2905096113681793, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 2.7308, "q": [-0.31383201479911804, -0.013979678973555565, 0.015695301815867424, 0.6320597529411316, -0.3265175223350525, 0.021091459318995476, -0.3229847848415375, 0.029946712777018547, -0.014637341722846031, 0.6241427063941956, -0.33668190240859985, -0.02099977247416973, 0.002758730435743928, 0.006100498139858246, -0.030431188642978668, 0.2905096113681793, 0.2159797102212906, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.04090216010808945, 0.29507559537887573, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.1835743635892868, 0.05243098363280296, 0.008856342174112797]} +{"t": 2.7476, "q": [-0.31383201479911804, -0.013979678973555565, 0.015708694234490395, 0.6320597529411316, -0.3265092670917511, 0.02110605128109455, -0.32300183176994324, 0.029929669573903084, -0.014623950235545635, 0.6241341829299927, -0.33667778968811035, -0.021021604537963867, 0.0026783791836351156, 0.006054929457604885, -0.030460510402917862, 0.2904856503009796, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 2.7643, "q": [-0.3138405382633209, -0.013988200575113297, 0.015695301815867424, 0.6320682764053345, -0.326521635055542, 0.021098682656884193, -0.32300183176994324, 0.029921147972345352, -0.014637341722846031, 0.6241341829299927, -0.33667778968811035, -0.020992539823055267, 0.0027051628567278385, 0.006062529515475035, -0.03046545200049877, 0.2904616594314575, 0.21596772968769073, -0.005225121974945068, 0.9792070984840393, 0.1576405018568039, 0.06167082488536835, -0.04090216010808945, 0.2950636148452759, -0.22378143668174744, 0.023081617429852486, 0.9780805706977844, -0.1835743635892868, 0.05243098363280296, 0.008832373656332493]} +{"t": 2.7812, "q": [-0.3138405382633209, -0.013962633907794952, 0.015708694234490395, 0.6320597529411316, -0.3265175223350525, 0.021091459318995476, -0.3230103552341461, 0.029921147972345352, -0.014623950235545635, 0.6241256594657898, -0.33667367696762085, -0.02101435326039791, 0.0027051628567278385, 0.006108098663389683, -0.030436130240559578, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023081617429852486, 0.9781045317649841, -0.18356238305568695, 0.052442967891693115, 0.008844357915222645]} +{"t": 2.7981, "q": [-0.31386610865592957, -0.013971157371997833, 0.015681909397244453, 0.6320597529411316, -0.3265298902988434, 0.02109861932694912, -0.3230273723602295, 0.02991262450814247, -0.014623950235545635, 0.6241256594657898, -0.33669009804725647, -0.021014254540205002, 0.0026649872306734324, 0.006062523927539587, -0.03045562282204628, 0.29044967889785767, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.04087819159030914, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 2.8148, "q": [-0.31387463212013245, -0.013971157371997833, 0.015681909397244453, 0.6320512294769287, -0.3265257775783539, 0.02110590599477291, -0.3230273723602295, 0.029929669573903084, -0.014623950235545635, 0.6241256594657898, -0.33667367696762085, -0.02101435326039791, 0.0026649872306734324, 0.006077719386667013, -0.030455678701400757, 0.2904616594314575, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.06167082488536835, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 2.8316, "q": [-0.31387463212013245, -0.013971157371997833, 0.015695301815867424, 0.6320512294769287, -0.326521635055542, 0.021113192662596703, -0.3230273723602295, 0.029921147972345352, -0.014610557816922665, 0.624108612537384, -0.33669009804725647, -0.021014254540205002, 0.0026649872306734324, 0.006077730096876621, -0.03047533705830574, 0.2904616594314575, 0.2159797102212906, -0.005213138181716204, 0.9791951179504395, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.052395034581422806, 0.008868326433002949]} +{"t": 2.8483, "q": [-0.31387463212013245, -0.013971157371997833, 0.015695301815867424, 0.6320597529411316, -0.326521635055542, 0.021098682656884193, -0.323061466217041, 0.029929669573903084, -0.014623950235545635, 0.6241256594657898, -0.3366941809654236, -0.021021487191319466, 0.002691771136596799, 0.006077730096876621, -0.03047533705830574, 0.2904856503009796, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 2.8651, "q": [-0.3139002025127411, -0.013971157371997833, 0.015668518841266632, 0.6320512294769287, -0.3265257775783539, 0.02110590599477291, -0.32305294275283813, 0.029921147972345352, -0.014597166329622269, 0.6241341829299927, -0.3367023766040802, -0.02102142944931984, 0.002691771136596799, 0.006039750762283802, -0.03048994392156601, 0.2904856503009796, 0.2159557342529297, -0.005225121974945068, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 2.8818, "q": [-0.3138916790485382, -0.013962633907794952, 0.015681909397244453, 0.6320597529411316, -0.3265257775783539, 0.02110590599477291, -0.323061466217041, 0.029929669573903084, -0.014597166329622269, 0.6240915656089783, -0.3367023766040802, -0.02102142944931984, 0.002758730435743928, 0.006032150238752365, -0.03048500046133995, 0.2905096113681793, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05243098363280296, 0.008856342174112797]} +{"t": 2.8985, "q": [-0.31390872597694397, -0.01395411230623722, 0.015681909397244453, 0.6320512294769287, -0.3265298902988434, 0.02109861932694912, -0.32305294275283813, 0.029921147972345352, -0.014610557816922665, 0.6241000890731812, -0.33669009804725647, -0.021014254540205002, 0.0026783791836351156, 0.006032155826687813, -0.030494829639792442, 0.2905096113681793, 0.2159557342529297, -0.005213138181716204, 0.9792190790176392, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 2.9152, "q": [-0.31390872597694397, -0.013971157371997833, 0.015681909397244453, 0.6320512294769287, -0.3265257775783539, 0.02112041600048542, -0.3230699896812439, 0.02991262450814247, -0.014583774842321873, 0.6241000890731812, -0.33669009804725647, -0.021014254540205002, 0.0026649872306734324, 0.006032150238752365, -0.03048500046133995, 0.2905096113681793, 0.21596772968769073, -0.005225121974945068, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.29502764344215393, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 2.932, "q": [-0.3139342963695526, -0.013962633907794952, 0.015695301815867424, 0.6320512294769287, -0.3265257775783539, 0.02110590599477291, -0.3230699896812439, 0.029921147972345352, -0.014570382423698902, 0.6241000890731812, -0.3366941809654236, -0.021021487191319466, 0.0026649872306734324, 0.005941017996519804, -0.03055347315967083, 0.2904856503009796, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04092612862586975, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 2.9487, "q": [-0.31391724944114685, -0.013979678973555565, 0.015668518841266632, 0.6320597529411316, -0.3265298902988434, 0.02109861932694912, -0.3230699896812439, 0.02990410290658474, -0.014583774842321873, 0.6241000890731812, -0.3366983234882355, -0.02099965512752533, 0.0026783791836351156, 0.005948612932115793, -0.030548587441444397, 0.2904856503009796, 0.2159557342529297, -0.005213138181716204, 0.9791951179504395, 0.15758058428764343, 0.06167082488536835, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 2.9655, "q": [-0.3139002025127411, -0.013971157371997833, 0.015708694234490395, 0.6320597529411316, -0.3265092670917511, 0.02110605128109455, -0.32304441928863525, 0.02990410290658474, -0.014597166329622269, 0.624108612537384, -0.33669009804725647, -0.021014254540205002, 0.0027051628567278385, 0.005903043784201145, -0.03057790920138359, 0.2905096113681793, 0.21596772968769073, -0.005213138181716204, 0.9791830778121948, 0.15762852132320404, 0.06167082488536835, -0.040890175849199295, 0.295051634311676, -0.22378143668174744, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05240701511502266, 0.008844357915222645]} +{"t": 2.9824, "q": [-0.3138916790485382, -0.013988200575113297, 0.015708694234490395, 0.6320512294769287, -0.3265175223350525, 0.021105969324707985, -0.3230358958244324, 0.02990410290658474, -0.014583774842321873, 0.624108612537384, -0.33669009804725647, -0.021014254540205002, 0.0027453387156128883, 0.005903043784201145, -0.03057790920138359, 0.2904616594314575, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.157616525888443, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.052442967891693115, 0.008844357915222645]} +{"t": 2.9991, "q": [-0.31390872597694397, -0.013979678973555565, 0.015695301815867424, 0.6320597529411316, -0.326513409614563, 0.021098745986819267, -0.3230273723602295, 0.02991262450814247, -0.014583774842321873, 0.624108612537384, -0.33668598532676697, -0.021036067977547646, 0.002691771136596799, 0.0058954437263309956, -0.030572965741157532, 0.2904856503009796, 0.21594375371932983, -0.005201153922826052, 0.9791951179504395, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.29507559537887573, -0.2238173931837082, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 3.0158, "q": [-0.31390872597694397, -0.013988200575113297, 0.015708694234490395, 0.6320597529411316, -0.326521635055542, 0.021084172651171684, -0.3230273723602295, 0.029921147972345352, -0.014597166329622269, 0.624108612537384, -0.33668187260627747, -0.02102883718907833, 0.0027855143416672945, 0.005925828590989113, -0.030563248321413994, 0.29049763083457947, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.040890175849199295, 0.29507559537887573, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05243098363280296, 0.008868326433002949]} +{"t": 3.0327, "q": [-0.3138831555843353, -0.014005245640873909, 0.015695301815867424, 0.6320597529411316, -0.326521635055542, 0.021098682656884193, -0.3230188488960266, 0.029921147972345352, -0.014637341722846031, 0.6241171360015869, -0.33666548132896423, -0.02105799876153469, 0.002691771136596799, 0.006032150238752365, -0.03048500046133995, 0.2904856503009796, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.29503965377807617, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 3.0494, "q": [-0.31387463212013245, -0.014005245640873909, 0.015722084790468216, 0.6320597529411316, -0.3265175223350525, 0.021091459318995476, -0.3230103552341461, 0.029921147972345352, -0.014623950235545635, 0.6241341829299927, -0.33666548132896423, -0.02105799876153469, 0.002758730435743928, 0.005918222479522228, -0.030548475682735443, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9791830778121948, 0.15758058428764343, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.2237934172153473, 0.023093601688742638, 0.9780685901641846, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 3.0662, "q": [-0.31387463212013245, -0.013979678973555565, 0.015708694234490395, 0.6320597529411316, -0.3265175223350525, 0.021091459318995476, -0.32300183176994324, 0.02991262450814247, -0.014623950235545635, 0.624108612537384, -0.33666136860847473, -0.021065307781100273, 0.002691771136596799, 0.005956202279776335, -0.030533870682120323, 0.2904856503009796, 0.2159557342529297, -0.005213138181716204, 0.9791951179504395, 0.15756858885288239, 0.0616828091442585, -0.040890175849199295, 0.2950875759124756, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008856342174112797]} +{"t": 3.0831, "q": [-0.31386610865592957, -0.013988200575113297, 0.015722084790468216, 0.6320597529411316, -0.326513409614563, 0.021098745986819267, -0.3230103552341461, 0.02991262450814247, -0.014623950235545635, 0.624108612537384, -0.33666956424713135, -0.021065231412649155, 0.002731946762651205, 0.006009365897625685, -0.030499661341309547, 0.2904856503009796, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.0409141443669796, 0.295051634311676, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 3.0998, "q": [-0.3138831555843353, -0.013996722176671028, 0.015708694234490395, 0.6320682764053345, -0.3265175223350525, 0.021105969324707985, -0.32300183176994324, 0.02991262450814247, -0.014623950235545635, 0.6241171360015869, -0.33667367696762085, -0.02104341797530651, 0.002731946762651205, 0.006009365897625685, -0.030499661341309547, 0.2904616594314575, 0.2159797102212906, -0.00523710623383522, 0.9791951179504395, 0.15762852132320404, 0.06167082488536835, -0.0409141443669796, 0.2950636148452759, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 3.1165, "q": [-0.31387463212013245, -0.013996722176671028, 0.015708694234490395, 0.6320512294769287, -0.326521635055542, 0.021098682656884193, -0.32299330830574036, 0.02991262450814247, -0.014637341722846031, 0.624108612537384, -0.33668187260627747, -0.02102883718907833, 0.002718554809689522, 0.006024555303156376, -0.030489888042211533, 0.2904616594314575, 0.2159557342529297, -0.00523710623383522, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.052395034581422806, 0.008856342174112797]} +{"t": 3.1335, "q": [-0.31387463212013245, -0.013996722176671028, 0.015708694234490395, 0.6320512294769287, -0.326513409614563, 0.021098745986819267, -0.3230103552341461, 0.029929669573903084, -0.014623950235545635, 0.624108612537384, -0.33668598532676697, -0.021036067977547646, 0.002718554809689522, 0.005971397273242474, -0.0305339265614748, 0.2904856503009796, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.06167082488536835, -0.04090216010808945, 0.2950636148452759, -0.22378143668174744, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 3.1502, "q": [-0.3138831555843353, -0.014005245640873909, 0.015681909397244453, 0.6320512294769287, -0.3265257775783539, 0.02110590599477291, -0.32300183176994324, 0.029921147972345352, -0.014637341722846031, 0.6241171360015869, -0.33669009804725647, -0.021014254540205002, 0.002611419651657343, 0.006009371485561132, -0.03050949051976204, 0.2904736399650574, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06169478967785835, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.1835743635892868, 0.05241899937391281, 0.008856342174112797]} +{"t": 3.1669, "q": [-0.3138831555843353, -0.013971157371997833, 0.015722084790468216, 0.6320512294769287, -0.326521635055542, 0.021084172651171684, -0.3229847848415375, 0.029921147972345352, -0.014610557816922665, 0.6240915656089783, -0.33668598532676697, -0.021036067977547646, 0.002718554809689522, 0.005956196691840887, -0.03052404150366783, 0.2904736399650574, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05243098363280296, 0.008832373656332493]} +{"t": 3.1837, "q": [-0.31386610865592957, -0.013996722176671028, 0.015708694234490395, 0.6320512294769287, -0.3265257775783539, 0.021091395989060402, -0.3230103552341461, 0.029929669573903084, -0.014597166329622269, 0.6241000890731812, -0.33669009804725647, -0.021014254540205002, 0.002691771136596799, 0.0060017709620296955, -0.03050454892218113, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.2950875759124756, -0.22380541265010834, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 3.2004, "q": [-0.3138831555843353, -0.013988200575113297, 0.015681909397244453, 0.6320512294769287, -0.326521635055542, 0.021098682656884193, -0.32299330830574036, 0.02991262450814247, -0.014583774842321873, 0.6241000890731812, -0.33669009804725647, -0.021028777584433556, 0.0026649872306734324, 0.005978959146887064, -0.03047006204724312, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1576405018568039, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 3.2172, "q": [-0.3138831555843353, -0.013971157371997833, 0.015695301815867424, 0.6320512294769287, -0.3265257775783539, 0.02110590599477291, -0.32300183176994324, 0.029921147972345352, -0.014597166329622269, 0.6240915656089783, -0.33668598532676697, -0.021021544933319092, 0.002731946762651205, 0.005956180393695831, -0.030494552105665207, 0.2904736399650574, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.04090216010808945, 0.29503965377807617, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05243098363280296, 0.008832373656332493]} +{"t": 3.2339, "q": [-0.31387463212013245, -0.013979678973555565, 0.015695301815867424, 0.6320597529411316, -0.3265257775783539, 0.02110590599477291, -0.32300183176994324, 0.02991262450814247, -0.014583774842321873, 0.6240915656089783, -0.33669009804725647, -0.021014254540205002, 0.002691771136596799, 0.0059637753292918205, -0.030489666387438774, 0.2904856503009796, 0.21599169075489044, -0.00523710623383522, 0.9791951179504395, 0.15758058428764343, 0.06167082488536835, -0.04090216010808945, 0.29507559537887573, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.052395034581422806, 0.008856342174112797]} +{"t": 3.2506, "q": [-0.3139002025127411, -0.013979678973555565, 0.015695301815867424, 0.6320597529411316, -0.326521635055542, 0.021098682656884193, -0.3230358958244324, 0.029921147972345352, -0.014597166329622269, 0.6240830421447754, -0.33669009804725647, -0.021014254540205002, 0.0027453387156128883, 0.006047328934073448, -0.030455566942691803, 0.2904736399650574, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05240701511502266, 0.008856342174112797]} +{"t": 3.2675, "q": [-0.31387463212013245, -0.013971157371997833, 0.015681909397244453, 0.6320512294769287, -0.3265257775783539, 0.02110590599477291, -0.32300183176994324, 0.02991262450814247, -0.014597166329622269, 0.6240830421447754, -0.33669009804725647, -0.021028777584433556, 0.0026783791836351156, 0.006001760251820087, -0.030484890565276146, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.157616525888443, 0.0616828091442585, -0.04090216010808945, 0.2950875759124756, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 3.2842, "q": [-0.3138831555843353, -0.013962633907794952, 0.015681909397244453, 0.6320512294769287, -0.326521635055542, 0.021113192662596703, -0.3230103552341461, 0.029921147972345352, -0.014610557816922665, 0.6240745186805725, -0.33669009804725647, -0.021014254540205002, 0.002691771136596799, 0.0060245501808822155, -0.03048005886375904, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.2950875759124756, -0.22380541265010834, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 3.301, "q": [-0.3138916790485382, -0.013962633907794952, 0.015695301815867424, 0.6320427060127258, -0.326521635055542, 0.021098682656884193, -0.3230103552341461, 0.02991262450814247, -0.014597166329622269, 0.6240745186805725, -0.33668598532676697, -0.021007023751735687, 0.002731946762651205, 0.006001760251820087, -0.030484890565276146, 0.2904736399650574, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18353840708732605, 0.05240701511502266, 0.008856342174112797]} +{"t": 3.3177, "q": [-0.31387463212013245, -0.013979678973555565, 0.015695301815867424, 0.6320597529411316, -0.3265175223350525, 0.021105969324707985, -0.32300183176994324, 0.02991262450814247, -0.014623950235545635, 0.6240745186805725, -0.33668598532676697, -0.021021544933319092, 0.002718554809689522, 0.006062523927539587, -0.03045562282204628, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.06169478967785835, -0.04090216010808945, 0.295051634311676, -0.2237934172153473, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 3.3344, "q": [-0.31387463212013245, -0.013962633907794952, 0.015695301815867424, 0.6320512294769287, -0.3265175223350525, 0.021105969324707985, -0.3230103552341461, 0.02991262450814247, -0.014610557816922665, 0.6240830421447754, -0.33669009804725647, -0.021014254540205002, 0.0027453387156128883, 0.006024544592946768, -0.03047022968530655, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.29502764344215393, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 3.3512, "q": [-0.31387463212013245, -0.013971157371997833, 0.015695301815867424, 0.6320597529411316, -0.3265092670917511, 0.02110605128109455, -0.3230103552341461, 0.029921147972345352, -0.014610557816922665, 0.6240830421447754, -0.33668598532676697, -0.021021544933319092, 0.0027453387156128883, 0.006016949657350779, -0.030475115403532982, 0.2904856503009796, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.0409141443669796, 0.2950636148452759, -0.2237934172153473, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.008856342174112797]} +{"t": 3.3679, "q": [-0.31386610865592957, -0.013979678973555565, 0.015708694234490395, 0.6320512294769287, -0.326521635055542, 0.021098682656884193, -0.32299330830574036, 0.029929669573903084, -0.014610557816922665, 0.6240915656089783, -0.33666956424713135, -0.0210507083684206, 0.002691771136596799, 0.0060245501808822155, -0.03048005886375904, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06169478967785835, -0.040890175849199295, 0.2950636148452759, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 3.3846, "q": [-0.31387463212013245, -0.013979678973555565, 0.015695301815867424, 0.6320512294769287, -0.3265175223350525, 0.021091459318995476, -0.32299330830574036, 0.029921147972345352, -0.014623950235545635, 0.6240745186805725, -0.33667367696762085, -0.02104341797530651, 0.0027051628567278385, 0.00605491828173399, -0.03044085204601288, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.15762852132320404, 0.06167082488536835, -0.0409141443669796, 0.295051634311676, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.052442967891693115, 0.008832373656332493]} +{"t": 3.4014, "q": [-0.31387463212013245, -0.013971157371997833, 0.015681909397244453, 0.6320682764053345, -0.3265175223350525, 0.021091459318995476, -0.32299330830574036, 0.029921147972345352, -0.014623950235545635, 0.6240830421447754, -0.33668187260627747, -0.02102883718907833, 0.002651595277711749, 0.0060473233461380005, -0.03044573776423931, 0.2904856503009796, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04092612862586975, 0.29507559537887573, -0.22378143668174744, 0.023093601688742638, 0.9780685901641846, -0.18356238305568695, 0.05240701511502266, 0.008856342174112797]} +{"t": 3.4181, "q": [-0.31387463212013245, -0.013979678973555565, 0.015708694234490395, 0.6320682764053345, -0.3265175223350525, 0.021105969324707985, -0.32300183176994324, 0.029921147972345352, -0.014623950235545635, 0.6240830421447754, -0.33668598532676697, -0.021036067977547646, 0.0027453387156128883, 0.006100492551922798, -0.030421359464526176, 0.2904616594314575, 0.2159797102212906, -0.005201153922826052, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.0409141443669796, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008856342174112797]} +{"t": 3.4348, "q": [-0.31387463212013245, -0.013971157371997833, 0.015695301815867424, 0.6320512294769287, -0.3265175223350525, 0.021091459318995476, -0.32299330830574036, 0.029929669573903084, -0.014623950235545635, 0.6240830421447754, -0.33668187260627747, -0.02102883718907833, 0.0027051628567278385, 0.0060473233461380005, -0.03044573776423931, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.040890175849199295, 0.29507559537887573, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 3.4515, "q": [-0.31386610865592957, -0.013971157371997833, 0.015695301815867424, 0.6320597529411316, -0.3265175223350525, 0.021091459318995476, -0.3229847848415375, 0.029921147972345352, -0.014597166329622269, 0.6240745186805725, -0.33668598532676697, -0.021036067977547646, 0.002758730435743928, 0.006070124451071024, -0.03046056628227234, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.02310558594763279, 0.978116512298584, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 3.4683, "q": [-0.31387463212013245, -0.01395411230623722, 0.015708694234490395, 0.6320682764053345, -0.326513409614563, 0.021084235981106758, -0.3229847848415375, 0.029921147972345352, -0.014597166329622269, 0.6240915656089783, -0.33669009804725647, -0.021014254540205002, 0.0026783791836351156, 0.00605491828173399, -0.03044085204601288, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9792190790176392, 0.1575925648212433, 0.06169478967785835, -0.04092612862586975, 0.295051634311676, -0.22380541265010834, 0.02310558594763279, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008844357915222645]} +{"t": 3.485, "q": [-0.3138575851917267, -0.01395411230623722, 0.015681909397244453, 0.6320512294769287, -0.3265175223350525, 0.021105969324707985, -0.32299330830574036, 0.029921147972345352, -0.014623950235545635, 0.6240745186805725, -0.33668598532676697, -0.021036067977547646, 0.0027051628567278385, 0.006161262281239033, -0.030401920899748802, 0.2904856503009796, 0.2159557342529297, -0.005201153922826052, 0.9791830778121948, 0.15756858885288239, 0.06167082488536835, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05240701511502266, 0.008868326433002949]} +{"t": 3.5017, "q": [-0.3138490617275238, -0.01395411230623722, 0.015695301815867424, 0.6320597529411316, -0.326513409614563, 0.021098745986819267, -0.32299330830574036, 0.029929669573903084, -0.014637341722846031, 0.6240830421447754, -0.33668187260627747, -0.02102883718907833, 0.0026783791836351156, 0.006199228577315807, -0.030367659404873848, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.2950875759124756, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.1835983246564865, 0.05240701511502266, 0.008856342174112797]} +{"t": 3.5184, "q": [-0.3138490617275238, -0.013962633907794952, 0.015681909397244453, 0.6320512294769287, -0.326521635055542, 0.021098682656884193, -0.3229762613773346, 0.029929669573903084, -0.014623950235545635, 0.6240489482879639, -0.3366941809654236, -0.021021487191319466, 0.0026783791836351156, 0.006184038706123829, -0.030377432703971863, 0.2904616594314575, 0.2159557342529297, -0.005201153922826052, 0.9791951179504395, 0.15760454535484314, 0.06169478967785835, -0.04090216010808945, 0.29507559537887573, -0.2237934172153473, 0.023093601688742638, 0.9781045317649841, -0.1835503876209259, 0.05243098363280296, 0.008856342174112797]} +{"t": 3.5352, "q": [-0.31387463212013245, -0.013971157371997833, 0.015708694234490395, 0.6320512294769287, -0.326521635055542, 0.021098682656884193, -0.3229847848415375, 0.029921147972345352, -0.014597166329622269, 0.624040424823761, -0.33668598532676697, -0.021021544933319092, 0.002691771136596799, 0.006085303146392107, -0.03043113276362419, 0.2904736399650574, 0.21596772968769073, -0.005213138181716204, 0.9791830778121948, 0.15756858885288239, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.008832373656332493]} +{"t": 3.5519, "q": [-0.31386610865592957, -0.013971157371997833, 0.015695301815867424, 0.6320512294769287, -0.3265257775783539, 0.02110590599477291, -0.32299330830574036, 0.029921147972345352, -0.014623950235545635, 0.6240148544311523, -0.33669009804725647, -0.021014254540205002, 0.0026783791836351156, 0.006146066822111607, -0.030401866883039474, 0.2904736399650574, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.29507559537887573, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008844357915222645]} +{"t": 3.5686, "q": [-0.31387463212013245, -0.013962633907794952, 0.015668518841266632, 0.6320512294769287, -0.3265257775783539, 0.02110590599477291, -0.3229847848415375, 0.029921147972345352, -0.014597166329622269, 0.6240063309669495, -0.33669009804725647, -0.021014254540205002, 0.0026649872306734324, 0.00616884371265769, -0.030377376824617386, 0.2904856503009796, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.0409141443669796, 0.2950636148452759, -0.22378143668174744, 0.02310558594763279, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008868326433002949]} +{"t": 3.5854, "q": [-0.31387463212013245, -0.01394559070467949, 0.01565512642264366, 0.6320512294769287, -0.3265298902988434, 0.02111312933266163, -0.3229847848415375, 0.029921147972345352, -0.014623950235545635, 0.6240063309669495, -0.3366941809654236, -0.021021487191319466, 0.002691771136596799, 0.006161251105368137, -0.03038226254284382, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.04090216010808945, 0.2950875759124756, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 3.6021, "q": [-0.3138916790485382, -0.01395411230623722, 0.015681909397244453, 0.6320512294769287, -0.3265257775783539, 0.02110590599477291, -0.3229762613773346, 0.029921147972345352, -0.014597166329622269, 0.6239892840385437, -0.33669009804725647, -0.021014254540205002, 0.0026783791836351156, 0.006100492551922798, -0.030421359464526176, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06169478967785835, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008868326433002949]} +{"t": 3.619, "q": [-0.3139002025127411, -0.01395411230623722, 0.015668518841266632, 0.6320512294769287, -0.3265298902988434, 0.02109861932694912, -0.32299330830574036, 0.029921147972345352, -0.014583774842321873, 0.6239892840385437, -0.3366941809654236, -0.021021487191319466, 0.0027051628567278385, 0.006108093075454235, -0.030426301062107086, 0.29049763083457947, 0.2159557342529297, -0.005201153922826052, 0.9791951179504395, 0.15758058428764343, 0.06167082488536835, -0.040890175849199295, 0.2950636148452759, -0.2237934172153473, 0.023081617429852486, 0.9780685901641846, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 3.6359, "q": [-0.3138916790485382, -0.01394559070467949, 0.015681909397244453, 0.6320427060127258, -0.3265257775783539, 0.02110590599477291, -0.3229847848415375, 0.029929669573903084, -0.014610557816922665, 0.6239892840385437, -0.33669009804725647, -0.021014254540205002, 0.0027051628567278385, 0.006100492551922798, -0.030421359464526176, 0.2904616594314575, 0.2159557342529297, -0.005225121974945068, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.040890175849199295, 0.2950875759124756, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008868326433002949]} +{"t": 3.6527, "q": [-0.3139002025127411, -0.013962633907794952, 0.015668518841266632, 0.6320427060127258, -0.326521635055542, 0.021113192662596703, -0.32299330830574036, 0.029921147972345352, -0.014610557816922665, 0.6239551901817322, -0.33669009804725647, -0.021014254540205002, 0.002691771136596799, 0.0062144179828464985, -0.030357884243130684, 0.2904616594314575, 0.2159557342529297, -0.0051891696639359, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 3.6694, "q": [-0.3138916790485382, -0.01394559070467949, 0.015681909397244453, 0.632034182548523, -0.3265257775783539, 0.02110590599477291, -0.3229847848415375, 0.029929669573903084, -0.014623950235545635, 0.6239637136459351, -0.33668598532676697, -0.021036067977547646, 0.002758730435743928, 0.006138456054031849, -0.030377265065908432, 0.2904856503009796, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06169478967785835, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.02310558594763279, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 3.6862, "q": [-0.31390872597694397, -0.013962633907794952, 0.015668518841266632, 0.6320427060127258, -0.3265175223350525, 0.021105969324707985, -0.3229847848415375, 0.029921147972345352, -0.014623950235545635, 0.6239722371101379, -0.33669009804725647, -0.021014254540205002, 0.002718554809689522, 0.006108087487518787, -0.030416471883654594, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.1835743635892868, 0.05241899937391281, 0.008856342174112797]} +{"t": 3.703, "q": [-0.3139002025127411, -0.01394559070467949, 0.015681909397244453, 0.6320427060127258, -0.3265257775783539, 0.02110590599477291, -0.3229762613773346, 0.02991262450814247, -0.014637341722846031, 0.6239637136459351, -0.33668598532676697, -0.021021544933319092, 0.002731946762651205, 0.006130883004516363, -0.03042146936058998, 0.2904736399650574, 0.21594375371932983, -0.005225121974945068, 0.9791830778121948, 0.1576405018568039, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.1835983246564865, 0.05241899937391281, 0.008868326433002949]} +{"t": 3.7197, "q": [-0.3138916790485382, -0.01394559070467949, 0.015681909397244453, 0.6320427060127258, -0.3265257775783539, 0.02110590599477291, -0.3229847848415375, 0.029921147972345352, -0.014623950235545635, 0.6239551901817322, -0.3366941809654236, -0.021021487191319466, 0.002718554809689522, 0.006115676835179329, -0.03040175512433052, 0.29044967889785767, 0.21596772968769073, -0.005201153922826052, 0.9791951179504395, 0.15765248239040375, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.22378143668174744, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 3.7366, "q": [-0.3138916790485382, -0.01394559070467949, 0.015668518841266632, 0.632034182548523, -0.326521635055542, 0.021098682656884193, -0.32299330830574036, 0.029921147972345352, -0.014597166329622269, 0.6239722371101379, -0.33669009804725647, -0.021014254540205002, 0.0026783791836351156, 0.006168851628899574, -0.030387206003069878, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 3.7534, "q": [-0.3138831555843353, -0.01394559070467949, 0.015668518841266632, 0.632034182548523, -0.326521635055542, 0.021098682656884193, -0.3229762613773346, 0.029929669573903084, -0.014623950235545635, 0.6239637136459351, -0.3366941809654236, -0.021006964147090912, 0.002718554809689522, 0.0060928924940526485, -0.030416416004300117, 0.2904736399650574, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.061658840626478195, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.1835743635892868, 0.05243098363280296, 0.008856342174112797]} +{"t": 3.7701, "q": [-0.31391724944114685, -0.01395411230623722, 0.015681909397244453, 0.632034182548523, -0.3265257775783539, 0.02110590599477291, -0.3229762613773346, 0.029929669573903084, -0.014610557816922665, 0.6239551901817322, -0.33669009804725647, -0.021014254540205002, 0.0026783791836351156, 0.006184038706123829, -0.030377432703971863, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9792190790176392, 0.1575925648212433, 0.06167082488536835, -0.04090216010808945, 0.295051634311676, -0.22378143668174744, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 3.7871, "q": [-0.31387463212013245, -0.01394559070467949, 0.01564173400402069, 0.6320512294769287, -0.326521635055542, 0.021113192662596703, -0.3229762613773346, 0.02991262450814247, -0.014610557816922665, 0.6239722371101379, -0.33669009804725647, -0.021028777584433556, 0.002691771136596799, 0.00622960738837719, -0.03034811094403267, 0.2904736399650574, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.0409141443669796, 0.2950875759124756, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 3.8038, "q": [-0.31387463212013245, -0.01395411230623722, 0.01565512642264366, 0.6320427060127258, -0.326521635055542, 0.021098682656884193, -0.3229762613773346, 0.029921147972345352, -0.014623950235545635, 0.6239551901817322, -0.33669009804725647, -0.021014254540205002, 0.002651595277711749, 0.006206817924976349, -0.030352942645549774, 0.2904856503009796, 0.2159557342529297, -0.005213138181716204, 0.9791951179504395, 0.15762852132320404, 0.06169478967785835, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835503876209259, 0.05241899937391281, 0.008856342174112797]} +{"t": 3.8205, "q": [-0.31387463212013245, -0.01395411230623722, 0.01565512642264366, 0.632034182548523, -0.3265257775783539, 0.02110590599477291, -0.32295069098472595, 0.029929669573903084, -0.014637341722846031, 0.6239466667175293, -0.33668598532676697, -0.021036067977547646, 0.0026649872306734324, 0.006138456054031849, -0.030377265065908432, 0.2905096113681793, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.0409141443669796, 0.2950875759124756, -0.22380541265010834, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 3.8376, "q": [-0.3138831555843353, -0.01394559070467949, 0.015668518841266632, 0.632034182548523, -0.326521635055542, 0.021098682656884193, -0.32295921444892883, 0.029921147972345352, -0.014610557816922665, 0.6239466667175293, -0.33669009804725647, -0.021014254540205002, 0.0027051628567278385, 0.006191617343574762, -0.030343057587742805, 0.29049763083457947, 0.21596772968769073, -0.005225121974945068, 0.9792070984840393, 0.1576405018568039, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.22378143668174744, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 3.8545, "q": [-0.31387463212013245, -0.01394559070467949, 0.015681909397244453, 0.632034182548523, -0.326521635055542, 0.021098682656884193, -0.3229677379131317, 0.029929669573903084, -0.014623950235545635, 0.6239466667175293, -0.33668187260627747, -0.02102883718907833, 0.0027051628567278385, 0.006237202323973179, -0.030343223363161087, 0.2904856503009796, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.008868326433002949]} +{"t": 3.8712, "q": [-0.31387463212013245, -0.01394559070467949, 0.01565512642264366, 0.6320256590843201, -0.326521635055542, 0.021098682656884193, -0.3229677379131317, 0.029921147972345352, -0.014637341722846031, 0.6239381432533264, -0.3366941809654236, -0.021021487191319466, 0.0027051628567278385, 0.006275165360420942, -0.030299130827188492, 0.2905215919017792, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.157616525888443, 0.06167082488536835, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05241899937391281, 0.008844357915222645]} +{"t": 3.888, "q": [-0.3138575851917267, -0.01394559070467949, 0.01564173400402069, 0.6320256590843201, -0.3265257775783539, 0.02110590599477291, -0.32295921444892883, 0.029929669573903084, -0.014610557816922665, 0.6239040493965149, -0.33669009804725647, -0.021014254540205002, 0.0026649872306734324, 0.006282765883952379, -0.0303040724247694, 0.2905096113681793, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 3.905, "q": [-0.3138916790485382, -0.013937067240476608, 0.01565512642264366, 0.6320256590843201, -0.3265257775783539, 0.021091395989060402, -0.32295069098472595, 0.02991262450814247, -0.014637341722846031, 0.623895525932312, -0.33668187260627747, -0.02102883718907833, 0.0027051628567278385, 0.006282765883952379, -0.0303040724247694, 0.2905096113681793, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18353840708732605, 0.05241899937391281, 0.008856342174112797]} +{"t": 3.9217, "q": [-0.3138575851917267, -0.01395411230623722, 0.01565512642264366, 0.6320171356201172, -0.3265298902988434, 0.02109861932694912, -0.32294216752052307, 0.029929669573903084, -0.014650734141469002, 0.6238784790039062, -0.33669009804725647, -0.021014254540205002, 0.002691771136596799, 0.006267587188631296, -0.03033350594341755, 0.2905096113681793, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 3.9384, "q": [-0.31387463212013245, -0.013937067240476608, 0.01564173400402069, 0.6320086121559143, -0.326521635055542, 0.021098682656884193, -0.3229336440563202, 0.02991262450814247, -0.014623950235545635, 0.6238529086112976, -0.3366941809654236, -0.021021487191319466, 0.0026649872306734324, 0.0062903608195483685, -0.03029918670654297, 0.2904616594314575, 0.21594375371932983, -0.005225121974945068, 0.9792070984840393, 0.15758058428764343, 0.06169478967785835, -0.040890175849199295, 0.29507559537887573, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 3.9552, "q": [-0.31387463212013245, -0.013937067240476608, 0.01565512642264366, 0.6319915652275085, -0.3265298902988434, 0.02109861932694912, -0.32295921444892883, 0.029938191175460815, -0.014623950235545635, 0.6238273978233337, -0.33669009804725647, -0.021014254540205002, 0.0027453387156128883, 0.006259981542825699, -0.030318733304739, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.0409141443669796, 0.2950636148452759, -0.2237934172153473, 0.023081617429852486, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008856342174112797]} +{"t": 3.9719, "q": [-0.31387463212013245, -0.013911502435803413, 0.01562834158539772, 0.6319830417633057, -0.3265381157398224, 0.021084045991301537, -0.32294216752052307, 0.029921147972345352, -0.014623950235545635, 0.6238018274307251, -0.3366941809654236, -0.021006964147090912, 0.002731946762651205, 0.006267576012760401, -0.030313847586512566, 0.29044967889785767, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.04087819159030914, 0.295051634311676, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008832373656332493]} +{"t": 3.9886, "q": [-0.31387463212013245, -0.013928545638918877, 0.01562834158539772, 0.6319745182991028, -0.3265298902988434, 0.02109861932694912, -0.32294216752052307, 0.029929669573903084, -0.014610557816922665, 0.6237847805023193, -0.3366941809654236, -0.021021487191319466, 0.0026382035575807095, 0.006259986665099859, -0.03032856248319149, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008856342174112797]} +{"t": 4.0055, "q": [-0.3138916790485382, -0.013920024037361145, 0.01565512642264366, 0.6319659948348999, -0.3265298902988434, 0.02111312933266163, -0.32294216752052307, 0.029921147972345352, -0.014650734141469002, 0.6237592101097107, -0.33668187260627747, -0.02102883718907833, 0.002691771136596799, 0.00622200733050704, -0.03034316934645176, 0.2904616594314575, 0.2159557342529297, -0.005225121974945068, 0.9792070984840393, 0.15760454535484314, 0.06167082488536835, -0.04090216010808945, 0.295051634311676, -0.2237934172153473, 0.02310558594763279, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 4.0223, "q": [-0.3138916790485382, -0.013902978971600533, 0.01562834158539772, 0.631957471370697, -0.3265298902988434, 0.02111312933266163, -0.32295069098472595, 0.029929669573903084, -0.014623950235545635, 0.6237251162528992, -0.33669009804725647, -0.021014254540205002, 0.002691771136596799, 0.006237186025828123, -0.030313735827803612, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.040890175849199295, 0.29507559537887573, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 4.039, "q": [-0.31390872597694397, -0.013911502435803413, 0.01562834158539772, 0.6319404244422913, -0.3265175223350525, 0.021105969324707985, -0.32294216752052307, 0.029938191175460815, -0.014623950235545635, 0.6237165927886963, -0.33669009804725647, -0.021014254540205002, 0.0026649872306734324, 0.006199228577315807, -0.030367659404873848, 0.2904616594314575, 0.2159797102212906, -0.0051891696639359, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.0409141443669796, 0.295051634311676, -0.22378143668174744, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008832373656332493]} +{"t": 4.0558, "q": [-0.3138831555843353, -0.013894457370042801, 0.01562834158539772, 0.6319404244422913, -0.3265298902988434, 0.02109861932694912, -0.3229251205921173, 0.02991262450814247, -0.014623950235545635, 0.6236910223960876, -0.33669009804725647, -0.021014254540205002, 0.0026649872306734324, 0.006184016820043325, -0.030338115990161896, 0.29044967889785767, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 4.0725, "q": [-0.31392577290534973, -0.013920024037361145, 0.015601558610796928, 0.6319233775138855, -0.3265298902988434, 0.02111312933266163, -0.32294216752052307, 0.029929669573903084, -0.014637341722846031, 0.6236484050750732, -0.3366983234882355, -0.02099965512752533, 0.0026649872306734324, 0.006252364721149206, -0.030284302309155464, 0.2904616594314575, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.040890175849199295, 0.29507559537887573, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835503876209259, 0.05243098363280296, 0.008868326433002949]} +{"t": 4.0893, "q": [-0.31390872597694397, -0.01388593576848507, 0.01564173400402069, 0.6319063305854797, -0.3265381455421448, 0.021113082766532898, -0.3229336440563202, 0.029929669573903084, -0.014623950235545635, 0.6236057877540588, -0.33669009804725647, -0.021014254540205002, 0.0026649872306734324, 0.006221969146281481, -0.030274363234639168, 0.2904856503009796, 0.21596772968769073, -0.00523710623383522, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.040890175849199295, 0.2950636148452759, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008844357915222645]} +{"t": 4.106, "q": [-0.31391724944114685, -0.013902978971600533, 0.015601558610796928, 0.6319063305854797, -0.3265340030193329, 0.02112036943435669, -0.3229336440563202, 0.029921147972345352, -0.014637341722846031, 0.6235716938972473, -0.3366941809654236, -0.021021487191319466, 0.002691771136596799, 0.006221979856491089, -0.03029402159154415, 0.2905096113681793, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.157616525888443, 0.06169478967785835, -0.040890175849199295, 0.295051634311676, -0.22378143668174744, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 4.1227, "q": [-0.3139342963695526, -0.013920024037361145, 0.015601558610796928, 0.631889283657074, -0.3265340030193329, 0.02112036943435669, -0.32294216752052307, 0.029921147972345352, -0.014597166329622269, 0.6235631704330444, -0.33669009804725647, -0.021014254540205002, 0.002718554809689522, 0.006252370309084654, -0.030294133350253105, 0.2905096113681793, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.06167082488536835, -0.04090216010808945, 0.29507559537887573, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008844357915222645]} +{"t": 4.1396, "q": [-0.3139342963695526, -0.01388593576848507, 0.01562834158539772, 0.6318807601928711, -0.3265381455421448, 0.021113082766532898, -0.32289955019950867, 0.029929669573903084, -0.014623950235545635, 0.6235546469688416, -0.33669009804725647, -0.021014254540205002, 0.0026783791836351156, 0.0062827495858073235, -0.030274584889411926, 0.2904856503009796, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22378143668174744, 0.02310558594763279, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008856342174112797]} +{"t": 4.1564, "q": [-0.3139428198337555, -0.01388593576848507, 0.015601558610796928, 0.6318722367286682, -0.3265340030193329, 0.021105842664837837, -0.32291659712791443, 0.029929669573903084, -0.014610557816922665, 0.6235376000404358, -0.33668598532676697, -0.021007023751735687, 0.0027453387156128883, 0.006297944579273462, -0.030274640768766403, 0.29044967889785767, 0.2159797102212906, -0.005225121974945068, 0.9792190790176392, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008868326433002949]} +{"t": 4.1731, "q": [-0.3139342963695526, -0.013894457370042801, 0.01562834158539772, 0.6318637132644653, -0.3265381455421448, 0.021113082766532898, -0.32294216752052307, 0.029929669573903084, -0.014664125628769398, 0.62352055311203, -0.33669009804725647, -0.021014254540205002, 0.0027453387156128883, 0.006252370309084654, -0.030294133350253105, 0.29044967889785767, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.29503965377807617, -0.22378143668174744, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05240701511502266, 0.008856342174112797]} +{"t": 4.1898, "q": [-0.3139513432979584, -0.013894457370042801, 0.01562834158539772, 0.6318551898002625, -0.3265381455421448, 0.021113082766532898, -0.32291659712791443, 0.029938191175460815, -0.014623950235545635, 0.62352055311203, -0.33669009804725647, -0.021014254540205002, 0.002691771136596799, 0.006275160238146782, -0.030289301648736, 0.29044967889785767, 0.21596772968769073, -0.005225121974945068, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 4.2066, "q": [-0.3139428198337555, -0.013894457370042801, 0.015601558610796928, 0.6318466663360596, -0.3265381455421448, 0.021113082766532898, -0.32291659712791443, 0.029938191175460815, -0.014597166329622269, 0.6235120296478271, -0.33669009804725647, -0.021014254540205002, 0.002718554809689522, 0.006267559714615345, -0.03028435818850994, 0.2904376983642578, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.0409141443669796, 0.29502764344215393, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 4.2233, "q": [-0.3139513432979584, -0.01388593576848507, 0.01562834158539772, 0.6318551898002625, -0.3265381455421448, 0.021113082766532898, -0.3229336440563202, 0.029938191175460815, -0.014650734141469002, 0.6234779357910156, -0.33669009804725647, -0.021014254540205002, 0.0026649872306734324, 0.0062523758970201015, -0.030303962528705597, 0.2904376983642578, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.157616525888443, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 4.24, "q": [-0.3139342963695526, -0.013877412304282188, 0.015614950098097324, 0.6318381428718567, -0.3265257775783539, 0.02110590599477291, -0.32291659712791443, 0.029938191175460815, -0.014623950235545635, 0.6234779357910156, -0.33668187260627747, -0.02102883718907833, 0.002758730435743928, 0.006252370309084654, -0.030294133350253105, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.0409141443669796, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 4.2568, "q": [-0.31392577290534973, -0.01388593576848507, 0.015614950098097324, 0.6318381428718567, -0.3265298902988434, 0.02111312933266163, -0.32289955019950867, 0.029921147972345352, -0.014664125628769398, 0.6234694719314575, -0.33669009804725647, -0.021014254540205002, 0.0027051628567278385, 0.0063055395148694515, -0.03026975318789482, 0.2904736399650574, 0.21594375371932983, -0.0051891696639359, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.0088803106918931]} +{"t": 4.2736, "q": [-0.31391724944114685, -0.01388593576848507, 0.015614950098097324, 0.6318381428718567, -0.3265381455421448, 0.021113082766532898, -0.32290807366371155, 0.029946712777018547, -0.014664125628769398, 0.6234779357910156, -0.33669009804725647, -0.021014254540205002, 0.002718554809689522, 0.006267554592341185, -0.03027452901005745, 0.2904736399650574, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.061658840626478195, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.18353840708732605, 0.05240701511502266, 0.008892294950783253]} +{"t": 4.2904, "q": [-0.31392577290534973, -0.013902978971600533, 0.015601558610796928, 0.6318210959434509, -0.3265298902988434, 0.02111312933266163, -0.3228825032711029, 0.029938191175460815, -0.014637341722846031, 0.6234694719314575, -0.33669009804725647, -0.021014254540205002, 0.002691771136596799, 0.0062751490622758865, -0.030269641429185867, 0.2904736399650574, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.040890175849199295, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835983246564865, 0.05240701511502266, 0.008868326433002949]} +{"t": 4.3071, "q": [-0.3139342963695526, -0.013877412304282188, 0.015601558610796928, 0.6318296194076538, -0.3265175223350525, 0.021120497956871986, -0.3228825032711029, 0.029938191175460815, -0.014650734141469002, 0.6234694719314575, -0.33669009804725647, -0.021014254540205002, 0.0027453387156128883, 0.006290349643677473, -0.030279526486992836, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.0409141443669796, 0.29507559537887573, -0.22380541265010834, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 4.3239, "q": [-0.3139513432979584, -0.013894457370042801, 0.015588166192173958, 0.6318210959434509, -0.3265298902988434, 0.02109861932694912, -0.3228825032711029, 0.029938191175460815, -0.014664125628769398, 0.6234524250030518, -0.33668190240859985, -0.02099977247416973, 0.002691771136596799, 0.006335907615721226, -0.03023054637014866, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.0409141443669796, 0.295051634311676, -0.22378143668174744, 0.023081617429852486, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008844357915222645]} +{"t": 4.3407, "q": [-0.3139342963695526, -0.013894457370042801, 0.015588166192173958, 0.6318296194076538, -0.3265381157398224, 0.021098555997014046, -0.3228739798069, 0.029938191175460815, -0.014677518047392368, 0.6234524250030518, -0.33669009804725647, -0.021014254540205002, 0.002718554809689522, 0.00629032775759697, -0.03024020977318287, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.29507559537887573, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 4.3574, "q": [-0.3139342963695526, -0.013877412304282188, 0.015601558610796928, 0.6318296194076538, -0.3265298902988434, 0.02111312933266163, -0.32285693287849426, 0.029938191175460815, -0.014677518047392368, 0.623435378074646, -0.33669009804725647, -0.021014254540205002, 0.002731946762651205, 0.006320723332464695, -0.030250148847699165, 0.29044967889785767, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.2237934172153473, 0.023081617429852486, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008856342174112797]} +{"t": 4.3742, "q": [-0.31392577290534973, -0.01388593576848507, 0.015601558610796928, 0.6318210959434509, -0.3265340030193329, 0.021105842664837837, -0.3228910267353058, 0.029946712777018547, -0.014637341722846031, 0.6234524250030518, -0.33669009804725647, -0.021014254540205002, 0.002758730435743928, 0.006305523216724396, -0.030240265652537346, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792190790176392, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05241899937391281, 0.008856342174112797]} +{"t": 4.3909, "q": [-0.31390872597694397, -0.01388593576848507, 0.015574774704873562, 0.6318210959434509, -0.3265175223350525, 0.021120497956871986, -0.3228484094142914, 0.029938191175460815, -0.014650734141469002, 0.623435378074646, -0.33668598532676697, -0.021007023751735687, 0.0027051628567278385, 0.0063283126801252365, -0.03023543395102024, 0.2904616594314575, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008844357915222645]} +{"t": 4.4077, "q": [-0.31390872597694397, -0.013868890702724457, 0.015574774704873562, 0.6318210959434509, -0.3265298902988434, 0.02109861932694912, -0.3228398859500885, 0.029946712777018547, -0.014650734141469002, 0.623435378074646, -0.33668187260627747, -0.02102883718907833, 0.002758730435743928, 0.006313128862529993, -0.030255036428570747, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 4.4244, "q": [-0.31390872597694397, -0.013868890702724457, 0.015601558610796928, 0.6318040490150452, -0.3265340030193329, 0.021105842664837837, -0.32285693287849426, 0.029946712777018547, -0.014677518047392368, 0.6234268546104431, -0.33668598532676697, -0.021021544933319092, 0.0027453387156128883, 0.006389076821506023, -0.030206166207790375, 0.2904856503009796, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1576405018568039, 0.06167082488536835, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008844357915222645]} +{"t": 4.4411, "q": [-0.3138916790485382, -0.013868890702724457, 0.015588166192173958, 0.6318040490150452, -0.3265340030193329, 0.021105842664837837, -0.3228398859500885, 0.029946712777018547, -0.014637341722846031, 0.6234183311462402, -0.33668598532676697, -0.021021544933319092, 0.002718554809689522, 0.006320712622255087, -0.030230490490794182, 0.2904856503009796, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22378143668174744, 0.023093601688742638, 0.9780925512313843, -0.1835743635892868, 0.05241899937391281, 0.008868326433002949]} +{"t": 4.4578, "q": [-0.3138916790485382, -0.013877412304282188, 0.015601558610796928, 0.6317955255508423, -0.3265257775783539, 0.02110590599477291, -0.3228313624858856, 0.029938191175460815, -0.014664125628769398, 0.6234183311462402, -0.33667367696762085, -0.02101435326039791, 0.002718554809689522, 0.006434645503759384, -0.03017684444785118, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.052442967891693115, 0.008856342174112797]} +{"t": 4.4746, "q": [-0.31390872597694397, -0.013877412304282188, 0.015574774704873562, 0.6317870020866394, -0.3265257775783539, 0.02110590599477291, -0.3228398859500885, 0.029946712777018547, -0.014650734141469002, 0.6233842372894287, -0.33668187260627747, -0.02102883718907833, 0.002731946762651205, 0.006396660581231117, -0.03018162027001381, 0.2904616594314575, 0.21593177318572998, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06169478967785835, -0.040890175849199295, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05243098363280296, 0.008856342174112797]} +{"t": 4.4913, "q": [-0.3138831555843353, -0.013877412304282188, 0.015588166192173958, 0.6317784786224365, -0.3265257775783539, 0.02110590599477291, -0.3228313624858856, 0.029946712777018547, -0.014690909534692764, 0.6233757138252258, -0.33669009804725647, -0.021014254540205002, 0.002651595277711749, 0.006389066111296415, -0.03018650785088539, 0.2904616594314575, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.0409141443669796, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 4.5082, "q": [-0.31387463212013245, -0.013868890702724457, 0.015601558610796928, 0.6317784786224365, -0.3265257775783539, 0.02112041600048542, -0.32282283902168274, 0.029955236241221428, -0.014677518047392368, 0.6233757138252258, -0.33669009804725647, -0.021014254540205002, 0.002691771136596799, 0.006404266692698002, -0.03019639290869236, 0.2904616594314575, 0.21594375371932983, -0.005201153922826052, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 4.5249, "q": [-0.31390872597694397, -0.013868890702724457, 0.015574774704873562, 0.6317529678344727, -0.3265298902988434, 0.02109861932694912, -0.3228313624858856, 0.029955236241221428, -0.014677518047392368, 0.623367190361023, -0.33668598532676697, -0.021007023751735687, 0.002718554809689522, 0.006449829787015915, -0.030157241970300674, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 4.5417, "q": [-0.31387463212013245, -0.013868890702724457, 0.015574774704873562, 0.6317444443702698, -0.3265298902988434, 0.02109861932694912, -0.32281434535980225, 0.029955236241221428, -0.014650734141469002, 0.623367190361023, -0.33667367696762085, -0.02101435326039791, 0.002624811604619026, 0.006366276182234287, -0.030191339552402496, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.06169478967785835, -0.04087819159030914, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.1835743635892868, 0.05241899937391281, 0.008856342174112797]} +{"t": 4.5584, "q": [-0.31387463212013245, -0.013877412304282188, 0.015588166192173958, 0.6317359209060669, -0.3265298902988434, 0.02109861932694912, -0.32281434535980225, 0.02996375784277916, -0.014664125628769398, 0.6233586668968201, -0.33668598532676697, -0.021021544933319092, 0.0027453387156128883, 0.006449829787015915, -0.030157241970300674, 0.2904856503009796, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.15760454535484314, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.22378143668174744, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008868326433002949]} +{"t": 4.5752, "q": [-0.3138490617275238, -0.013868890702724457, 0.015601558610796928, 0.631727397441864, -0.3265257775783539, 0.021091395989060402, -0.32282283902168274, 0.02996375784277916, -0.014677518047392368, 0.6233586668968201, -0.33668187260627747, -0.02102883718907833, 0.0027453387156128883, 0.006434640381485224, -0.03016701526939869, 0.2904856503009796, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.157616525888443, 0.06169478967785835, -0.04090216010808945, 0.295051634311676, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 4.5919, "q": [-0.3138405382633209, -0.013868890702724457, 0.015574774704873562, 0.631727397441864, -0.3265257775783539, 0.021091395989060402, -0.32282283902168274, 0.02996375784277916, -0.014664125628769398, 0.6233501434326172, -0.33667778968811035, -0.021021604537963867, 0.0027453387156128883, 0.006434629205614328, -0.030147356912493706, 0.2904736399650574, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.06167082488536835, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 4.6087, "q": [-0.31383201479911804, -0.013877412304282188, 0.015588166192173958, 0.6317188739776611, -0.326521635055542, 0.021098682656884193, -0.3227972984313965, 0.029955236241221428, -0.014664125628769398, 0.6233330965042114, -0.33667778968811035, -0.021021604537963867, 0.0026649872306734324, 0.0064118392765522, -0.03015218861401081, 0.2904856503009796, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.06167082488536835, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 4.6254, "q": [-0.3138490617275238, -0.013868890702724457, 0.015588166192173958, 0.6316762566566467, -0.3265133798122406, 0.02111327461898327, -0.3227887749671936, 0.02996375784277916, -0.014677518047392368, 0.6233160495758057, -0.33668187260627747, -0.02102883718907833, 0.002691771136596799, 0.006533356383442879, -0.030073996633291245, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.29503965377807617, -0.2237934172153473, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.052442967891693115, 0.008856342174112797]} +{"t": 4.6422, "q": [-0.3138405382633209, -0.013843324035406113, 0.015574774704873562, 0.631659209728241, -0.326521635055542, 0.021098682656884193, -0.3227972984313965, 0.029955236241221428, -0.014677518047392368, 0.6233075261116028, -0.33668190240859985, -0.021014314144849777, 0.0026783791836351156, 0.006540956906974316, -0.030078938230872154, 0.2904856503009796, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.15760454535484314, 0.06167082488536835, -0.04090216010808945, 0.29503965377807617, -0.2237934172153473, 0.023081617429852486, 0.9780685901641846, -0.1835743635892868, 0.05243098363280296, 0.008868326433002949]} +{"t": 4.6591, "q": [-0.31382349133491516, -0.013851847499608994, 0.015588166192173958, 0.6316421627998352, -0.3265257775783539, 0.021091395989060402, -0.32276320457458496, 0.02996375784277916, -0.014677518047392368, 0.6232734322547913, -0.33668187260627747, -0.02102883718907833, 0.002651595277711749, 0.00654094573110342, -0.03005927987396717, 0.29049763083457947, 0.2159797102212906, -0.005201153922826052, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.04090216010808945, 0.29507559537887573, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 4.6758, "q": [-0.3138064444065094, -0.013868890702724457, 0.015588166192173958, 0.6316251158714294, -0.326521635055542, 0.021098682656884193, -0.3227546811103821, 0.02996375784277916, -0.014650734141469002, 0.6232649087905884, -0.33668187260627747, -0.02102883718907833, 0.0027051628567278385, 0.006601709872484207, -0.030030013993382454, 0.2904616594314575, 0.21594375371932983, -0.005201153922826052, 0.9792070984840393, 0.15762852132320404, 0.061658840626478195, -0.04086620733141899, 0.2950636148452759, -0.2237934172153473, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008892294950783253]} +{"t": 4.6925, "q": [-0.3138064444065094, -0.013868890702724457, 0.015574774704873562, 0.6315995454788208, -0.326521635055542, 0.021098682656884193, -0.3227376341819763, 0.02996375784277916, -0.014690909534692764, 0.6232308149337769, -0.33666548132896423, -0.020999889820814133, 0.002691771136596799, 0.0066548679023981094, -0.029985975474119186, 0.2905096113681793, 0.2159797102212906, -0.005213138181716204, 0.9791830778121948, 0.15754462778568268, 0.06169478967785835, -0.04090216010808945, 0.2950636148452759, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.052442967891693115, 0.008856342174112797]} +{"t": 4.7093, "q": [-0.3138064444065094, -0.013868890702724457, 0.015601558610796928, 0.6315654516220093, -0.3265257775783539, 0.02110590599477291, -0.3227546811103821, 0.02996375784277916, -0.014731084927916527, 0.6231796741485596, -0.33668187260627747, -0.02102883718907833, 0.0026649872306734324, 0.0066548679023981094, -0.029985975474119186, 0.2904856503009796, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.1575925648212433, 0.06169478967785835, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 4.726, "q": [-0.31378939747810364, -0.013860369101166725, 0.015574774704873562, 0.6315313577651978, -0.3265298902988434, 0.02109861932694912, -0.3227376341819763, 0.02996375784277916, -0.014664125628769398, 0.6231200098991394, -0.33669009804725647, -0.021014254540205002, 0.002731946762651205, 0.0066548679023981094, -0.029985975474119186, 0.2904856503009796, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 4.7427, "q": [-0.31378090381622314, -0.013860369101166725, 0.015601558610796928, 0.6314802169799805, -0.3265257775783539, 0.02110590599477291, -0.32272058725357056, 0.02996375784277916, -0.014650734141469002, 0.6230944395065308, -0.33669009804725647, -0.021014254540205002, 0.002691771136596799, 0.006609299220144749, -0.03001529723405838, 0.29049763083457947, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.06169478967785835, -0.0409141443669796, 0.29507559537887573, -0.2237934172153473, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.052395034581422806, 0.008844357915222645]} +{"t": 4.7595, "q": [-0.3138064444065094, -0.013834802433848381, 0.015588166192173958, 0.6314802169799805, -0.3265257775783539, 0.02110590599477291, -0.32272058725357056, 0.029980802908539772, -0.014664125628769398, 0.6230348348617554, -0.33667778968811035, -0.021021604537963867, 0.002691771136596799, 0.006586514879018068, -0.030029958114027977, 0.2904736399650574, 0.21596772968769073, -0.005225121974945068, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008844357915222645]} +{"t": 4.7762, "q": [-0.31378939747810364, -0.013834802433848381, 0.015588166192173958, 0.6314375996589661, -0.326521635055542, 0.021113192662596703, -0.3227120637893677, 0.029980802908539772, -0.014664125628769398, 0.6229751706123352, -0.33668187260627747, -0.02102883718907833, 0.0027051628567278385, 0.006632083561271429, -0.030000636354088783, 0.2904616594314575, 0.21594375371932983, -0.005201153922826052, 0.9792190790176392, 0.15760454535484314, 0.061658840626478195, -0.040890175849199295, 0.29507559537887573, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 4.793, "q": [-0.31377238035202026, -0.01382628083229065, 0.015588166192173958, 0.6313949823379517, -0.3265381157398224, 0.021084045991301537, -0.32272058725357056, 0.02997227944433689, -0.014690909534692764, 0.622915506362915, -0.33667367696762085, -0.02101435326039791, 0.002718554809689522, 0.006616894155740738, -0.030010409653186798, 0.29049763083457947, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.04090216010808945, 0.2950875759124756, -0.22378143668174744, 0.023093601688742638, 0.9781045317649841, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 4.8097, "q": [-0.31382349133491516, -0.01382628083229065, 0.015561383217573166, 0.6313694715499878, -0.3265257775783539, 0.02110590599477291, -0.3227035403251648, 0.02997227944433689, -0.014690909534692764, 0.6228728890419006, -0.33669009804725647, -0.021014254540205002, 0.0026783791836351156, 0.006586514879018068, -0.030029958114027977, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.06167082488536835, -0.040890175849199295, 0.29507559537887573, -0.2237934172153473, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 4.8265, "q": [-0.3137979209423065, -0.013834802433848381, 0.015588166192173958, 0.6313439011573792, -0.3265257775783539, 0.02110590599477291, -0.3227035403251648, 0.029989324510097504, -0.014677518047392368, 0.6228217482566833, -0.33667778968811035, -0.021021604537963867, 0.0027051628567278385, 0.0066017042845487595, -0.030020184814929962, 0.2904856503009796, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.04090216010808945, 0.29507559537887573, -0.22378143668174744, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 4.8433, "q": [-0.3138149678707123, -0.013809235766530037, 0.015588166192173958, 0.6313353776931763, -0.3265340030193329, 0.021105842664837837, -0.32264387607574463, 0.029997846111655235, -0.01470430102199316, 0.6227876543998718, -0.33666959404945374, -0.021007122471928596, 0.0026649872306734324, 0.006586509291082621, -0.030020128935575485, 0.29049763083457947, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.04090216010808945, 0.2950636148452759, -0.22378143668174744, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 4.86, "q": [-0.31378090381622314, -0.013817759230732918, 0.015561383217573166, 0.6312757134437561, -0.3265340030193329, 0.02112036943435669, -0.32262685894966125, 0.029989324510097504, -0.014677518047392368, 0.6227194666862488, -0.33667367696762085, -0.02101435326039791, 0.0027051628567278385, 0.006632077973335981, -0.02999080717563629, 0.2904616594314575, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05241899937391281, 0.008868326433002949]} +{"t": 4.8767, "q": [-0.31377238035202026, -0.013834802433848381, 0.015561383217573166, 0.6312160491943359, -0.3265257775783539, 0.02110590599477291, -0.32262685894966125, 0.029989324510097504, -0.01470430102199316, 0.6226769089698792, -0.33667367696762085, -0.02101435326039791, 0.0026649872306734324, 0.006662462837994099, -0.029981087893247604, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.04090216010808945, 0.2950636148452759, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 4.8935, "q": [-0.3137979209423065, -0.013843324035406113, 0.015588166192173958, 0.6311563849449158, -0.3265298902988434, 0.02109861932694912, -0.32259276509284973, 0.029989324510097504, -0.014677518047392368, 0.6226428151130676, -0.33667367696762085, -0.02101435326039791, 0.0027051628567278385, 0.0066700465977191925, -0.02995654195547104, 0.2904616594314575, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.02310558594763279, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 4.9116, "q": [-0.31378090381622314, -0.013817759230732918, 0.015574774704873562, 0.63113933801651, -0.3265298902988434, 0.02109861932694912, -0.3226012885570526, 0.029997846111655235, -0.01470430102199316, 0.6225831508636475, -0.33669009804725647, -0.021014254540205002, 0.0027453387156128883, 0.006639656610786915, -0.029956432059407234, 0.29044967889785767, 0.2159797102212906, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.04090216010808945, 0.29502764344215393, -0.22380541265010834, 0.023069633170962334, 0.9780925512313843, -0.1835503876209259, 0.05243098363280296, 0.0088803106918931]} +{"t": 4.9283, "q": [-0.31378939747810364, -0.01382628083229065, 0.015561383217573166, 0.6311052441596985, -0.3265298902988434, 0.02111312933266163, -0.3225671947002411, 0.029997846111655235, -0.014731084927916527, 0.6225490570068359, -0.33668190240859985, -0.02099977247416973, 0.002718554809689522, 0.006624466739594936, -0.02996620535850525, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.040890175849199295, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008868326433002949]} +{"t": 4.9451, "q": [-0.3137979209423065, -0.013817759230732918, 0.015561383217573166, 0.6310455799102783, -0.3265298902988434, 0.02109861932694912, -0.32258424162864685, 0.029997846111655235, -0.01470430102199316, 0.6225234866142273, -0.33666959404945374, -0.021007122471928596, 0.002731946762651205, 0.006723205093294382, -0.02991250343620777, 0.29044967889785767, 0.2159797102212906, -0.005225121974945068, 0.9791951179504395, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.29503965377807617, -0.2237934172153473, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 4.9618, "q": [-0.31377238035202026, -0.013817759230732918, 0.015561383217573166, 0.6310114860534668, -0.3265298902988434, 0.02109861932694912, -0.32253310084342957, 0.029997846111655235, -0.014731084927916527, 0.62247234582901, -0.33667367696762085, -0.02101435326039791, 0.002731946762651205, 0.0067080045118927956, -0.029902620241045952, 0.2904856503009796, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05240701511502266, 0.008844357915222645]} +{"t": 4.9786, "q": [-0.31377238035202026, -0.013817759230732918, 0.015547990798950195, 0.6309689283370972, -0.3265298902988434, 0.02109861932694912, -0.3225245773792267, 0.029989324510097504, -0.014690909534692764, 0.622404158115387, -0.33667367696762085, -0.02101435326039791, 0.0026783791836351156, 0.006707998923957348, -0.02989278919994831, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9791830778121948, 0.15756858885288239, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05243098363280296, 0.008868326433002949]} +{"t": 4.9953, "q": [-0.3137553334236145, -0.013809235766530037, 0.015561383217573166, 0.6309348344802856, -0.3265381157398224, 0.021098555997014046, -0.32249900698661804, 0.029989324510097504, -0.014731084927916527, 0.6223785877227783, -0.33666959404945374, -0.021007122471928596, 0.002718554809689522, 0.006700403988361359, -0.029897676780819893, 0.2904736399650574, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.040890175849199295, 0.29507559537887573, -0.2238173931837082, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.052442967891693115, 0.008856342174112797]} +{"t": 5.012, "q": [-0.3137553334236145, -0.013800714164972305, 0.015561383217573166, 0.6309263110160828, -0.3265257775783539, 0.02110590599477291, -0.3224819600582123, 0.029989324510097504, -0.01471769344061613, 0.6223530173301697, -0.33666548132896423, -0.020999889820814133, 0.002691771136596799, 0.00665482971817255, -0.029917169362306595, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9791951179504395, 0.15758058428764343, 0.0616828091442585, -0.04086620733141899, 0.29503965377807617, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.008868326433002949]} +{"t": 5.0288, "q": [-0.31372976303100586, -0.013800714164972305, 0.015561383217573166, 0.6309007406234741, -0.326521635055542, 0.021113192662596703, -0.3224649131298065, 0.030006367713212967, -0.01470430102199316, 0.6223104596138, -0.33667778968811035, -0.020992539823055267, 0.0027453387156128883, 0.006662430241703987, -0.029922112822532654, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 5.0455, "q": [-0.3137127161026001, -0.013800714164972305, 0.015547990798950195, 0.6308240294456482, -0.3265257775783539, 0.02110590599477291, -0.3224819600582123, 0.029997846111655235, -0.01471769344061613, 0.622242271900177, -0.33667370676994324, -0.020985309034585953, 0.002718554809689522, 0.006806714925915003, -0.029829397797584534, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.29502764344215393, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 5.0623, "q": [-0.3136786222457886, -0.013809235766530037, 0.015561383217573166, 0.6307814121246338, -0.3265298902988434, 0.02109861932694912, -0.32245638966560364, 0.029997846111655235, -0.014731084927916527, 0.6222081780433655, -0.33667778968811035, -0.020992539823055267, 0.002691771136596799, 0.0068067223764956, -0.029839208349585533, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 5.0791, "q": [-0.31368714570999146, -0.013792192563414574, 0.015547990798950195, 0.6307558417320251, -0.3265298902988434, 0.02109861932694912, -0.32243937253952026, 0.029997846111655235, -0.014744477346539497, 0.6221996545791626, -0.33667370676994324, -0.020985309034585953, 0.0027051628567278385, 0.006829492282122374, -0.029814792796969414, 0.2904616594314575, 0.2159557342529297, -0.0051891696639359, 0.9792070984840393, 0.1575925648212433, 0.06169478967785835, -0.04090216010808945, 0.2950636148452759, -0.22378143668174744, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 5.0958, "q": [-0.31368714570999146, -0.013792192563414574, 0.0155345993116498, 0.6307217478752136, -0.326521635055542, 0.021098682656884193, -0.3224308490753174, 0.030006367713212967, -0.014731084927916527, 0.6221314668655396, -0.33666548132896423, -0.020999889820814133, 0.002691771136596799, 0.0068067223764956, -0.029839208349585533, 0.2904736399650574, 0.21594375371932983, -0.0051891696639359, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9781045317649841, -0.1835503876209259, 0.05243098363280296, 0.008856342174112797]} +{"t": 5.1126, "q": [-0.31363600492477417, -0.01376662589609623, 0.015521206893026829, 0.6307047009468079, -0.3265257775783539, 0.02110590599477291, -0.32239675521850586, 0.030006367713212967, -0.014731084927916527, 0.6221058964729309, -0.33667367696762085, -0.02101435326039791, 0.0027051628567278385, 0.006776344496756792, -0.029848871752619743, 0.2904736399650574, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15756858885288239, 0.06169478967785835, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 5.1293, "q": [-0.3136274814605713, -0.01376662589609623, 0.0155345993116498, 0.6306791305541992, -0.3265298902988434, 0.02109861932694912, -0.32235413789749146, 0.030014891177415848, -0.014731084927916527, 0.6220718026161194, -0.33666959404945374, -0.021007122471928596, 0.0027051628567278385, 0.006821899674832821, -0.029819661751389503, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.008868326433002949]} +{"t": 5.146, "q": [-0.31363600492477417, -0.01376662589609623, 0.015521206893026829, 0.6306279897689819, -0.3265298902988434, 0.02109861932694912, -0.3223711848258972, 0.030014891177415848, -0.014731084927916527, 0.6220206618309021, -0.33667370676994324, -0.020985309034585953, 0.0027453387156128883, 0.006859861314296722, -0.029795320704579353, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9791830778121948, 0.15760454535484314, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05241899937391281, 0.008856342174112797]} +{"t": 5.1628, "q": [-0.31363600492477417, -0.013775147497653961, 0.015521206893026829, 0.6305939555168152, -0.3265257775783539, 0.02110590599477291, -0.3223711848258972, 0.030006367713212967, -0.014731084927916527, 0.6219525337219238, -0.33667367696762085, -0.02101435326039791, 0.0026783791836351156, 0.006867461837828159, -0.029800262302160263, 0.2904856503009796, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.052442967891693115, 0.008856342174112797]} +{"t": 5.1795, "q": [-0.31363600492477417, -0.013749580830335617, 0.015521206893026829, 0.6305513381958008, -0.3265298902988434, 0.02109861932694912, -0.3223711848258972, 0.030014891177415848, -0.014731084927916527, 0.6218843460083008, -0.33666548132896423, -0.020999889820814133, 0.0026783791836351156, 0.006837077438831329, -0.029800113290548325, 0.29044967889785767, 0.2159557342529297, -0.005225121974945068, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.29502764344215393, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.1835503876209259, 0.05241899937391281, 0.008856342174112797]} +{"t": 5.1962, "q": [-0.31363600492477417, -0.013749580830335617, 0.015507815405726433, 0.630534291267395, -0.326521635055542, 0.021098682656884193, -0.32236266136169434, 0.03002341277897358, -0.014690909534692764, 0.621867299079895, -0.33668190240859985, -0.02099977247416973, 0.002731946762651205, 0.006859861314296722, -0.029795320704579353, 0.2904376983642578, 0.2159557342529297, -0.0051891696639359, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.29503965377807617, -0.2237934172153473, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008868326433002949]} +{"t": 5.213, "q": [-0.31364452838897705, -0.013758104294538498, 0.015507815405726433, 0.6305001974105835, -0.3265298902988434, 0.02109861932694912, -0.3223456144332886, 0.030014891177415848, -0.014731084927916527, 0.6218332052230835, -0.33666548132896423, -0.020999889820814133, 0.002718554809689522, 0.006844677496701479, -0.029805056750774384, 0.2904616594314575, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15762852132320404, 0.06169478967785835, -0.04090216010808945, 0.29507559537887573, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008856342174112797]} +{"t": 5.2297, "q": [-0.3136189579963684, -0.013749580830335617, 0.015507815405726433, 0.6304575800895691, -0.3265298902988434, 0.02109861932694912, -0.32235413789749146, 0.03002341277897358, -0.014731084927916527, 0.6217650175094604, -0.33666959404945374, -0.020992599427700043, 0.002718554809689522, 0.006859861314296722, -0.029795320704579353, 0.2904856503009796, 0.2159557342529297, -0.005225121974945068, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.04090216010808945, 0.29507559537887573, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008844357915222645]} +{"t": 5.2465, "q": [-0.31360191106796265, -0.013749580830335617, 0.015507815405726433, 0.6303723454475403, -0.3265340030193329, 0.021091332659125328, -0.32236266136169434, 0.03002341277897358, -0.014731084927916527, 0.6216627359390259, -0.33666548132896423, -0.020999889820814133, 0.002718554809689522, 0.006897824816405773, -0.029770951718091965, 0.2904856503009796, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 5.2635, "q": [-0.31363600492477417, -0.013749580830335617, 0.015494422987103462, 0.630321204662323, -0.3265298902988434, 0.02109861932694912, -0.3223370909690857, 0.03003193438053131, -0.01471769344061613, 0.6215945482254028, -0.33666959404945374, -0.021007122471928596, 0.0027453387156128883, 0.006875039078295231, -0.029775751754641533, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.061658840626478195, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 5.2802, "q": [-0.31363600492477417, -0.013749580830335617, 0.015507815405726433, 0.6303041577339172, -0.3265340030193329, 0.021105842664837837, -0.32231152057647705, 0.03003193438053131, -0.014731084927916527, 0.6215605139732361, -0.33666959404945374, -0.020992599427700043, 0.002731946762651205, 0.006905409973114729, -0.02975625731050968, 0.2904616594314575, 0.21596772968769073, -0.0051891696639359, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 5.2969, "q": [-0.31364452838897705, -0.013741059228777885, 0.015507815405726433, 0.6302530169487, -0.3265340030193329, 0.021105842664837837, -0.3222944736480713, 0.030040455982089043, -0.01471769344061613, 0.6215093731880188, -0.33666959404945374, -0.021007122471928596, 0.0027453387156128883, 0.00692818034440279, -0.029731813818216324, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.061706773936748505, -0.04090216010808945, 0.295051634311676, -0.2237934172153473, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 5.3138, "q": [-0.31359341740608215, -0.013741059228777885, 0.015507815405726433, 0.630236029624939, -0.3265298902988434, 0.02109861932694912, -0.32226890325546265, 0.030048979446291924, -0.014744477346539497, 0.6214582324028015, -0.33667367696762085, -0.02101435326039791, 0.0026783791836351156, 0.006928187794983387, -0.02974163554608822, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18358634412288666, 0.052442967891693115, 0.008856342174112797]} +{"t": 5.3305, "q": [-0.31360191106796265, -0.013749580830335617, 0.015494422987103462, 0.6302104592323303, -0.3265340030193329, 0.021105842664837837, -0.32226890325546265, 0.030040455982089043, -0.014744477346539497, 0.62142413854599, -0.33667370676994324, -0.020985309034585953, 0.002731946762651205, 0.006897802464663982, -0.02974148653447628, 0.2904376983642578, 0.21593177318572998, -0.005201153922826052, 0.9792070984840393, 0.15760454535484314, 0.061706773936748505, -0.04090216010808945, 0.29502764344215393, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 5.3473, "q": [-0.3136189579963684, -0.013749580830335617, 0.015507815405726433, 0.6301678419113159, -0.3265298902988434, 0.02109861932694912, -0.3222433626651764, 0.030040455982089043, -0.014744477346539497, 0.6213474273681641, -0.33666136860847473, -0.021021703258156776, 0.0027051628567278385, 0.006966136395931244, -0.02969762124121189, 0.29042571783065796, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.040890175849199295, 0.2950156629085541, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 5.3641, "q": [-0.3136104345321655, -0.013749580830335617, 0.015507815405726433, 0.6301252245903015, -0.3265257775783539, 0.02110590599477291, -0.3222348392009735, 0.030040455982089043, -0.014757868833839893, 0.6213048100471497, -0.33666959404945374, -0.020992599427700043, 0.0026783791836351156, 0.006996514275670052, -0.029687948524951935, 0.29044967889785767, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.0409141443669796, 0.2950156629085541, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18358634412288666, 0.05241899937391281, 0.008856342174112797]} +{"t": 5.3808, "q": [-0.3136104345321655, -0.013749580830335617, 0.015507815405726433, 0.6301252245903015, -0.3265298902988434, 0.02109861932694912, -0.32221779227256775, 0.030048979446291924, -0.014771261252462864, 0.6212877631187439, -0.3366572856903076, -0.021014470607042313, 0.002718554809689522, 0.0070041147992014885, -0.029692895710468292, 0.29042571783065796, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.2950156629085541, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05243098363280296, 0.008844357915222645]} +{"t": 5.3976, "q": [-0.31360191106796265, -0.013749580830335617, 0.015481031499803066, 0.6300996541976929, -0.3265298902988434, 0.02111312933266163, -0.322200745344162, 0.030057501047849655, -0.014771261252462864, 0.6212536692619324, -0.3366572856903076, -0.02099994756281376, 0.002731946762651205, 0.006981306709349155, -0.029668230563402176, 0.2904137372970581, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.0409141443669796, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 5.4143, "q": [-0.31360191106796265, -0.013749580830335617, 0.015521206893026829, 0.6300826072692871, -0.326521635055542, 0.021098682656884193, -0.3221836984157562, 0.030048979446291924, -0.01479804515838623, 0.6212451457977295, -0.33666136860847473, -0.021021703258156776, 0.0027051628567278385, 0.006981306709349155, -0.029668230563402176, 0.29042571783065796, 0.2159557342529297, -0.005213138181716204, 0.9791951179504395, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 5.431, "q": [-0.31359341740608215, -0.013732537627220154, 0.015507815405726433, 0.6300570368766785, -0.3265298902988434, 0.02109861932694912, -0.3221836984157562, 0.030048979446291924, -0.01479804515838623, 0.6211855411529541, -0.33666959404945374, -0.021007122471928596, 0.002731946762651205, 0.0070344251580536366, -0.029594825580716133, 0.2904376983642578, 0.21596772968769073, -0.005225121974945068, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 5.4478, "q": [-0.3135763704776764, -0.013749580830335617, 0.015507815405726433, 0.6300314664840698, -0.3265257775783539, 0.02110590599477291, -0.32216665148735046, 0.030048979446291924, -0.01478465273976326, 0.6211514472961426, -0.33666548132896423, -0.020999889820814133, 0.002731946762651205, 0.007057209499180317, -0.029590027406811714, 0.29042571783065796, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.04090216010808945, 0.29502764344215393, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 5.4646, "q": [-0.31360191106796265, -0.013732537627220154, 0.015481031499803066, 0.6300144195556641, -0.3265298902988434, 0.02109861932694912, -0.32217517495155334, 0.030048979446291924, -0.01478465273976326, 0.6211258769035339, -0.33667778968811035, -0.020992539823055267, 0.002758730435743928, 0.007042017765343189, -0.029589951038360596, 0.2904616594314575, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.04087819159030914, 0.29502764344215393, -0.22378143668174744, 0.023069633170962334, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008868326433002949]} +{"t": 5.4813, "q": [-0.31359341740608215, -0.013732537627220154, 0.015481031499803066, 0.6299803256988525, -0.3265298902988434, 0.02109861932694912, -0.3221581280231476, 0.030048979446291924, -0.014757868833839893, 0.6211003065109253, -0.33666959404945374, -0.02097807638347149, 0.0027453387156128883, 0.007057209499180317, -0.029590027406811714, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9791951179504395, 0.15756858885288239, 0.0616828091442585, -0.0409141443669796, 0.29503965377807617, -0.2237934172153473, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 5.4981, "q": [-0.31354227662086487, -0.01370697095990181, 0.015481031499803066, 0.629946231842041, -0.3265298902988434, 0.02109861932694912, -0.3221581280231476, 0.030057501047849655, -0.014744477346539497, 0.6210576891899109, -0.33666548132896423, -0.020999889820814133, 0.0026783791836351156, 0.0070344251580536366, -0.029594825580716133, 0.2904616594314575, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008844357915222645]} +{"t": 5.5148, "q": [-0.31355932354927063, -0.01370697095990181, 0.015481031499803066, 0.629946231842041, -0.3265340030193329, 0.021091332659125328, -0.32212403416633606, 0.030057501047849655, -0.014731084927916527, 0.621049165725708, -0.33667370676994324, -0.020985309034585953, 0.002718554809689522, 0.006996462121605873, -0.02961919456720352, 0.2904736399650574, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.04090216010808945, 0.29503965377807617, -0.2237934172153473, 0.023093601688742638, 0.9780685901641846, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 5.5315, "q": [-0.31354227662086487, -0.01370697095990181, 0.0154542475938797, 0.6299377083778381, -0.3265298902988434, 0.02109861932694912, -0.32212403416633606, 0.030048979446291924, -0.01479804515838623, 0.6210065484046936, -0.33666959404945374, -0.021007122471928596, 0.002731946762651205, 0.0070648095570504665, -0.02959497459232807, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9791830778121948, 0.1576405018568039, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 5.5485, "q": [-0.31355080008506775, -0.013698449358344078, 0.015481031499803066, 0.6299036145210266, -0.3265381455421448, 0.021113082766532898, -0.3221069872379303, 0.030048979446291924, -0.014757868833839893, 0.6210065484046936, -0.33666548132896423, -0.020999889820814133, 0.0026783791836351156, 0.007049609441310167, -0.029585078358650208, 0.2904376983642578, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023081617429852486, 0.9780925512313843, -0.1835743635892868, 0.05241899937391281, 0.008856342174112797]} +{"t": 5.5654, "q": [-0.31354227662086487, -0.013672882691025734, 0.015481031499803066, 0.6299036145210266, -0.3265340030193329, 0.021091332659125328, -0.3221155107021332, 0.030074546113610268, -0.014771261252462864, 0.6209980249404907, -0.3366572856903076, -0.02099994756281376, 0.002718554809689522, 0.00705720204859972, -0.02958020567893982, 0.29044967889785767, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18358634412288666, 0.05243098363280296, 0.008844357915222645]} +{"t": 5.5821, "q": [-0.313533753156662, -0.013681404292583466, 0.015467639081180096, 0.6298950910568237, -0.3265298902988434, 0.02109861932694912, -0.3221155107021332, 0.030066022649407387, -0.01478465273976326, 0.620980978012085, -0.33666548132896423, -0.020999889820814133, 0.002731946762651205, 0.00706480210646987, -0.029585152864456177, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9791951179504395, 0.15758058428764343, 0.06167082488536835, -0.04090216010808945, 0.295051634311676, -0.22378143668174744, 0.023093601688742638, 0.9780685901641846, -0.18356238305568695, 0.052442967891693115, 0.008856342174112797]} +{"t": 5.5988, "q": [-0.3135252296924591, -0.013655837625265121, 0.015481031499803066, 0.6298695802688599, -0.3265298902988434, 0.02109861932694912, -0.3221069872379303, 0.030066022649407387, -0.014771261252462864, 0.6209639310836792, -0.33667370676994324, -0.020985309034585953, 0.002758730435743928, 0.007057209499180317, -0.029590027406811714, 0.29044967889785767, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.040890175849199295, 0.29502764344215393, -0.22380541265010834, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 5.6156, "q": [-0.313533753156662, -0.013672882691025734, 0.015481031499803066, 0.629878044128418, -0.3265298902988434, 0.02109861932694912, -0.3220984637737274, 0.030074546113610268, -0.01478465273976326, 0.6209468841552734, -0.33666548132896423, -0.020999889820814133, 0.0026783791836351156, 0.007049609441310167, -0.029585078358650208, 0.29042571783065796, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.29503965377807617, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.0088803106918931]} +{"t": 5.6324, "q": [-0.313533753156662, -0.013672882691025734, 0.015467639081180096, 0.6298269629478455, -0.3265298902988434, 0.02109861932694912, -0.32212403416633606, 0.030066022649407387, -0.014811436645686626, 0.6209298372268677, -0.33666548132896423, -0.020999889820814133, 0.0027051628567278385, 0.007079987786710262, -0.02957540564239025, 0.29044967889785767, 0.21596772968769073, -0.005213138181716204, 0.9791830778121948, 0.15758058428764343, 0.06167082488536835, -0.040890175849199295, 0.29502764344215393, -0.22380541265010834, 0.023069633170962334, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 5.6491, "q": [-0.31354227662086487, -0.013664361089468002, 0.015467639081180096, 0.6298184394836426, -0.3265298902988434, 0.02109861932694912, -0.3220643997192383, 0.030083067715168, -0.01479804515838623, 0.6209127902984619, -0.3366613984107971, -0.02099265716969967, 0.002718554809689522, 0.007064794655889273, -0.029575331136584282, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.29502764344215393, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 5.6658, "q": [-0.3135252296924591, -0.013655837625265121, 0.015481031499803066, 0.6298184394836426, -0.3265257775783539, 0.02110590599477291, -0.3220473527908325, 0.030083067715168, -0.01478465273976326, 0.6208616495132446, -0.3366572856903076, -0.020985424518585205, 0.0026649872306734324, 0.00704960199072957, -0.029575256630778313, 0.2904137372970581, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008844357915222645]} +{"t": 5.6826, "q": [-0.3135167062282562, -0.013655837625265121, 0.015481031499803066, 0.6298099160194397, -0.3265298902988434, 0.02109861932694912, -0.32198768854141235, 0.030083067715168, -0.01479804515838623, 0.620836079120636, -0.3366613984107971, -0.02099265716969967, 0.0027051628567278385, 0.007064787205308676, -0.029565509408712387, 0.29044967889785767, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.29502764344215393, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 5.6993, "q": [-0.3134911358356476, -0.013672882691025734, 0.0154542475938797, 0.6298099160194397, -0.3265340030193329, 0.021105842664837837, -0.32193654775619507, 0.03009158931672573, -0.01479804515838623, 0.6208105683326721, -0.3366613984107971, -0.02099265716969967, 0.0027051628567278385, 0.007064787205308676, -0.029565509408712387, 0.29042571783065796, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 5.716, "q": [-0.31350818276405334, -0.013638794422149658, 0.0154542475938797, 0.629784345626831, -0.3265298902988434, 0.02109861932694912, -0.32194507122039795, 0.030083067715168, -0.014838220551609993, 0.6207168102264404, -0.33666959404945374, -0.021007122471928596, 0.0027051628567278385, 0.00704960199072957, -0.029575256630778313, 0.29042571783065796, 0.21594375371932983, -0.005201153922826052, 0.9791951179504395, 0.15755660831928253, 0.06167082488536835, -0.040890175849199295, 0.2950636148452759, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008832373656332493]} +{"t": 5.7328, "q": [-0.3134826123714447, -0.013664361089468002, 0.0154542475938797, 0.6297502517700195, -0.3265257775783539, 0.021091395989060402, -0.3219109773635864, 0.030083067715168, -0.014838220551609993, 0.6207082867622375, -0.33666548132896423, -0.020999889820814133, 0.002691771136596799, 0.007133121136575937, -0.029521644115447998, 0.2904137372970581, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05240701511502266, 0.008856342174112797]} +{"t": 5.7498, "q": [-0.3134826123714447, -0.01364731602370739, 0.015440856106579304, 0.6297417283058167, -0.3265298902988434, 0.02109861932694912, -0.3218854069709778, 0.03009158931672573, -0.014811436645686626, 0.6206912398338318, -0.33666548132896423, -0.020999889820814133, 0.002731946762651205, 0.007110335864126682, -0.029526444151997566, 0.29042571783065796, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.157616525888443, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 5.7665, "q": [-0.3134826123714447, -0.01364731602370739, 0.015467639081180096, 0.6297332048416138, -0.3265298902988434, 0.02111312933266163, -0.3218683898448944, 0.03009158931672573, -0.014811436645686626, 0.6206486225128174, -0.33667370676994324, -0.020985309034585953, 0.002718554809689522, 0.007102735806256533, -0.02952149510383606, 0.29044967889785767, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.29502764344215393, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 5.7833, "q": [-0.3134826123714447, -0.013655837625265121, 0.015467639081180096, 0.629716157913208, -0.3265257775783539, 0.02110590599477291, -0.3218342959880829, 0.03009158931672573, -0.014824828132987022, 0.6206145286560059, -0.3366531729698181, -0.021007239818572998, 0.002731946762651205, 0.007095127832144499, -0.029506726190447807, 0.29044967889785767, 0.2159557342529297, -0.005213138181716204, 0.9791830778121948, 0.15756858885288239, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05243098363280296, 0.008868326433002949]} +{"t": 5.8, "q": [-0.31346556544303894, -0.01364731602370739, 0.0154542475938797, 0.6297076344490051, -0.3265257775783539, 0.02110590599477291, -0.32182577252388, 0.030083067715168, -0.014811436645686626, 0.6205889582633972, -0.3366572856903076, -0.02099994756281376, 0.002691771136596799, 0.0071027278900146484, -0.029511673375964165, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15765248239040375, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22378143668174744, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 5.8168, "q": [-0.3134485185146332, -0.013638794422149658, 0.015467639081180096, 0.6296905875205994, -0.3265298902988434, 0.02109861932694912, -0.32182577252388, 0.030100110918283463, -0.014838220551609993, 0.6205548644065857, -0.336649090051651, -0.021014530211687088, 0.002731946762651205, 0.0071027204394340515, -0.02950185164809227, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.040890175849199295, 0.29503965377807617, -0.22378143668174744, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 5.8336, "q": [-0.3134399950504303, -0.013638794422149658, 0.0154542475938797, 0.6296905875205994, -0.3265257775783539, 0.02110590599477291, -0.3217746317386627, 0.030100110918283463, -0.014824828132987022, 0.6205037236213684, -0.3366572856903076, -0.020985424518585205, 0.002758730435743928, 0.007110306061804295, -0.029487160965800285, 0.2904376983642578, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.0409141443669796, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 5.8503, "q": [-0.31342294812202454, -0.013638794422149658, 0.015427463687956333, 0.6296394467353821, -0.3265298902988434, 0.02109861932694912, -0.3217746317386627, 0.030100110918283463, -0.014838220551609993, 0.6204696297645569, -0.336649090051651, -0.02098548412322998, 0.0027051628567278385, 0.0071254912763834, -0.02947741374373436, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 5.8671, "q": [-0.3134314715862274, -0.013621749356389046, 0.015427463687956333, 0.6296138763427734, -0.3265422582626343, 0.021105796098709106, -0.3217490613460541, 0.030100110918283463, -0.014838220551609993, 0.6203929781913757, -0.3366572856903076, -0.020985424518585205, 0.0027051628567278385, 0.0071254912763834, -0.02947741374373436, 0.2904376983642578, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05241899937391281, 0.008868326433002949]} +{"t": 5.8838, "q": [-0.31341442465782166, -0.013630270957946777, 0.015400679782032967, 0.6295627355575562, -0.3265298902988434, 0.02109861932694912, -0.3217320144176483, 0.030108634382486343, -0.014851612038910389, 0.6203588843345642, -0.336649090051651, -0.02098548412322998, 0.002731946762651205, 0.007140676956623793, -0.029467666521668434, 0.29044967889785767, 0.2159797102212906, -0.005225121974945068, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 5.9006, "q": [-0.31340593099594116, -0.013630270957946777, 0.015427463687956333, 0.6295201182365417, -0.3265298902988434, 0.02109861932694912, -0.32171496748924255, 0.03009158931672573, -0.014851612038910389, 0.6203333139419556, -0.3366572856903076, -0.020985424518585205, 0.002691771136596799, 0.007140670903027058, -0.029457861557602882, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04087819159030914, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 5.9173, "q": [-0.31340593099594116, -0.013621749356389046, 0.015414072200655937, 0.6295286417007446, -0.3265257775783539, 0.02110590599477291, -0.3216553330421448, 0.030100110918283463, -0.014851612038910389, 0.6202566027641296, -0.3366572856903076, -0.020985424518585205, 0.0026649872306734324, 0.007125479634851217, -0.029457805678248405, 0.2904736399650574, 0.21596772968769073, -0.005225121974945068, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 5.9343, "q": [-0.31340593099594116, -0.013613227754831314, 0.01538728829473257, 0.6294775605201721, -0.3265340030193329, 0.021105842664837837, -0.32166385650634766, 0.030100110918283463, -0.014905179850757122, 0.620162844657898, -0.3366572856903076, -0.020985424518585205, 0.002718554809689522, 0.007171047385782003, -0.029448170214891434, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 5.951, "q": [-0.3133974075317383, -0.013604706153273582, 0.015347111970186234, 0.629417896270752, -0.3265340030193329, 0.021105842664837837, -0.32166385650634766, 0.03009158931672573, -0.014918571338057518, 0.6200435757637024, -0.3366572856903076, -0.020985424518585205, 0.0027051628567278385, 0.00714826351031661, -0.029452988877892494, 0.2904616594314575, 0.21596772968769073, -0.005201153922826052, 0.9791951179504395, 0.15760454535484314, 0.06169478967785835, -0.04090216010808945, 0.29507559537887573, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008832373656332493]} +{"t": 5.9677, "q": [-0.3133888840675354, -0.013604706153273582, 0.015347111970186234, 0.6293582320213318, -0.3265340030193329, 0.021105842664837837, -0.32167237997055054, 0.03009158931672573, -0.014905179850757122, 0.6200180053710938, -0.336649090051651, -0.020970961079001427, 0.002691771136596799, 0.00714826351031661, -0.029452988877892494, 0.2904376983642578, 0.2159797102212906, -0.005225121974945068, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.22378143668174744, 0.02310558594763279, 0.9780805706977844, -0.1835503876209259, 0.05241899937391281, 0.008856342174112797]} +{"t": 5.9846, "q": [-0.3133974075317383, -0.013596182689070702, 0.015347111970186234, 0.6292900443077087, -0.3265298902988434, 0.02111312933266163, -0.3216809034347534, 0.030100110918283463, -0.014905179850757122, 0.6199157238006592, -0.3366572856903076, -0.020985424518585205, 0.0027453387156128883, 0.007186232600361109, -0.029438422992825508, 0.2904616594314575, 0.21594375371932983, -0.005201153922826052, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.29502764344215393, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.008844357915222645]} +{"t": 6.0013, "q": [-0.3133974075317383, -0.013613227754831314, 0.015347111970186234, 0.6292048096656799, -0.3265381455421448, 0.021113082766532898, -0.3216809034347534, 0.030108634382486343, -0.014891788363456726, 0.6198475360870361, -0.3366572856903076, -0.020985424518585205, 0.002691771136596799, 0.007148257456719875, -0.029443183913826942, 0.29044967889785767, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05241899937391281, 0.008856342174112797]} +{"t": 6.018, "q": [-0.31340593099594116, -0.013621749356389046, 0.015333720482885838, 0.6291195750236511, -0.3265298902988434, 0.02109861932694912, -0.3216894268989563, 0.030117155984044075, -0.01486500445753336, 0.6197367310523987, -0.3366532027721405, -0.02097819373011589, 0.002758730435743928, 0.007186220958828926, -0.029418814927339554, 0.2904616594314575, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.040890175849199295, 0.29502764344215393, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 6.0351, "q": [-0.31341442465782166, -0.013613227754831314, 0.015320328995585442, 0.6290770173072815, -0.3265340030193329, 0.021105842664837837, -0.3216809034347534, 0.030108634382486343, -0.014878395944833755, 0.6196515560150146, -0.336649090051651, -0.020970961079001427, 0.002691771136596799, 0.007155856117606163, -0.029448114335536957, 0.2904376983642578, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15765248239040375, 0.06167082488536835, -0.04090216010808945, 0.29502764344215393, -0.2237934172153473, 0.023081617429852486, 0.9780805706977844, -0.18358634412288666, 0.05241899937391281, 0.008868326433002949]} +{"t": 6.0519, "q": [-0.3133974075317383, -0.013596182689070702, 0.015320328995585442, 0.6290684938430786, -0.3265298902988434, 0.02109861932694912, -0.3216468095779419, 0.030108634382486343, -0.014931963756680489, 0.6196174621582031, -0.3366532027721405, -0.02097819373011589, 0.002691771136596799, 0.007171041332185268, -0.02943836711347103, 0.29044967889785767, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.0409141443669796, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008844357915222645]} +{"t": 6.0686, "q": [-0.3134314715862274, -0.013596182689070702, 0.015306936576962471, 0.6290343999862671, -0.3265381455421448, 0.021113082766532898, -0.3216468095779419, 0.030125677585601807, -0.014878395944833755, 0.6195748448371887, -0.3366532027721405, -0.02097819373011589, 0.0026783791836351156, 0.007171035744249821, -0.02942856401205063, 0.2904616594314575, 0.2159797102212906, -0.005213138181716204, 0.9791951179504395, 0.1575925648212433, 0.06169478967785835, -0.04090216010808945, 0.29503965377807617, -0.2237934172153473, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 6.0854, "q": [-0.31341442465782166, -0.01358766108751297, 0.015320328995585442, 0.6289917826652527, -0.3265340030193329, 0.021105842664837837, -0.3216553330421448, 0.030125677585601807, -0.014891788363456726, 0.6194725632667542, -0.336649090051651, -0.020970961079001427, 0.0026649872306734324, 0.007193813566118479, -0.029413942247629166, 0.2904616594314575, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008844357915222645]} +{"t": 6.1023, "q": [-0.31342294812202454, -0.013613227754831314, 0.015320328995585442, 0.6289406418800354, -0.3265340030193329, 0.021105842664837837, -0.3216468095779419, 0.030134201049804688, -0.014878395944833755, 0.6193873286247253, -0.3366450071334839, -0.020978251472115517, 0.002691771136596799, 0.007178616244345903, -0.029404081404209137, 0.2904616594314575, 0.21594375371932983, -0.0051891696639359, 0.9791830778121948, 0.15758058428764343, 0.0616828091442585, -0.0409141443669796, 0.2950156629085541, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.1835264265537262, 0.05243098363280296, 0.008856342174112797]} +{"t": 6.119, "q": [-0.31341442465782166, -0.01358766108751297, 0.015320328995585442, 0.6289406418800354, -0.3265298902988434, 0.02111312933266163, -0.3215530514717102, 0.03014272265136242, -0.014905179850757122, 0.6193873286247253, -0.3366408944129944, -0.02100006490945816, 0.002691771136596799, 0.007148239761590958, -0.029413774609565735, 0.29040175676345825, 0.2159557342529297, -0.005201153922826052, 0.9791830778121948, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780685901641846, -0.1835503876209259, 0.05241899937391281, 0.008856342174112797]} +{"t": 6.1358, "q": [-0.31342294812202454, -0.01358766108751297, 0.015347111970186234, 0.6289491653442383, -0.3265381455421448, 0.021113082766532898, -0.32153600454330444, 0.03015124425292015, -0.014891788363456726, 0.6193192005157471, -0.3366532027721405, -0.02097819373011589, 0.002691771136596799, 0.007140625733882189, -0.029379436746239662, 0.29040175676345825, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.040890175849199295, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 6.1526, "q": [-0.3133974075317383, -0.013579139485955238, 0.015360504388809204, 0.6289406418800354, -0.3265257775783539, 0.02110590599477291, -0.32153600454330444, 0.03015124425292015, -0.014931963756680489, 0.6193192005157471, -0.33663269877433777, -0.021000124514102936, 0.002718554809689522, 0.007178594823926687, -0.029364870861172676, 0.2904137372970581, 0.21596772968769073, -0.0051891696639359, 0.9791830778121948, 0.15756858885288239, 0.0616828091442585, -0.0409141443669796, 0.2950036823749542, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18353840708732605, 0.05240701511502266, 0.008856342174112797]} +{"t": 6.1693, "q": [-0.3133974075317383, -0.013570617884397507, 0.015360504388809204, 0.6289406418800354, -0.3265298902988434, 0.02109861932694912, -0.3215104341506958, 0.03015124425292015, -0.014918571338057518, 0.6192936301231384, -0.3366367816925049, -0.02100735530257225, 0.002731946762651205, 0.007193774450570345, -0.0293453186750412, 0.2903897762298584, 0.21594375371932983, -0.005201153922826052, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.2950156629085541, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.008856342174112797]} +{"t": 6.186, "q": [-0.3133888840675354, -0.013596182689070702, 0.0153738958761096, 0.6289406418800354, -0.3265340030193329, 0.021105842664837837, -0.32147637009620667, 0.030159765854477882, -0.014905179850757122, 0.6192936301231384, -0.33663269877433777, -0.021000124514102936, 0.002691771136596799, 0.007186163682490587, -0.02932078205049038, 0.29040175676345825, 0.2159797102212906, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.023069633170962334, 0.9780805706977844, -0.18356238305568695, 0.052383050322532654, 0.008832373656332493]} +{"t": 6.2029, "q": [-0.31337183713912964, -0.01358766108751297, 0.01538728829473257, 0.6289406418800354, -0.326521635055542, 0.021113192662596703, -0.3214252293109894, 0.030159765854477882, -0.014918571338057518, 0.6192765831947327, -0.33663269877433777, -0.021000124514102936, 0.002691771136596799, 0.0071861459873616695, -0.029291372746229172, 0.29037776589393616, 0.2159557342529297, -0.005213138181716204, 0.9791951179504395, 0.15760454535484314, 0.06167082488536835, -0.040890175849199295, 0.2950156629085541, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 6.2196, "q": [-0.31327807903289795, -0.013579139485955238, 0.015360504388809204, 0.6289321184158325, -0.3265298902988434, 0.02109861932694912, -0.3213314712047577, 0.03015124425292015, -0.014905179850757122, 0.6192680597305298, -0.33663269877433777, -0.021000124514102936, 0.0026649872306734324, 0.007239282596856356, -0.029237648472189903, 0.29037776589393616, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.1576405018568039, 0.0616828091442585, -0.0409141443669796, 0.2950036823749542, -0.2238173931837082, 0.023081617429852486, 0.9780805706977844, -0.1835743635892868, 0.05243098363280296, 0.008844357915222645]} +{"t": 6.2365, "q": [-0.31319287419319153, -0.013570617884397507, 0.015400679782032967, 0.6289321184158325, -0.3265298902988434, 0.02109861932694912, -0.3212292194366455, 0.030168289318680763, -0.014918571338057518, 0.6192765831947327, -0.33663269877433777, -0.021000124514102936, 0.0026783791836351156, 0.007239239756017923, -0.029169024899601936, 0.29040175676345825, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.157616525888443, 0.0616828091442585, -0.0409141443669796, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 6.2533, "q": [-0.31313320994377136, -0.013596182689070702, 0.0153738958761096, 0.6289321184158325, -0.3265257775783539, 0.02110590599477291, -0.32116955518722534, 0.030176810920238495, -0.014931963756680489, 0.6192595362663269, -0.33662858605384827, -0.021007433533668518, 0.002691771136596799, 0.007246814668178558, -0.029134739190340042, 0.2904137372970581, 0.2159797102212906, -0.005201153922826052, 0.9792190790176392, 0.15760454535484314, 0.0616828091442585, -0.040890175849199295, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.008856342174112797]} +{"t": 6.27, "q": [-0.3130309283733368, -0.013579139485955238, 0.01538728829473257, 0.6289321184158325, -0.3265257775783539, 0.02110590599477291, -0.3211354613304138, 0.030176810920238495, -0.014918571338057518, 0.6192595362663269, -0.33662447333335876, -0.021000200882554054, 0.002718554809689522, 0.007360704708844423, -0.029061632230877876, 0.29040175676345825, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.157616525888443, 0.0616828091442585, -0.040890175849199295, 0.2950036823749542, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 6.2867, "q": [-0.3129883408546448, -0.013570617884397507, 0.0153738958761096, 0.6289065480232239, -0.3265257775783539, 0.02110590599477291, -0.3210587799549103, 0.030185332521796227, -0.014931963756680489, 0.619251012802124, -0.33662858605384827, -0.020992891862988472, 0.002691771136596799, 0.007368279621005058, -0.029027346521615982, 0.29042571783065796, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.0409141443669796, 0.2950036823749542, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 6.3036, "q": [-0.3129883408546448, -0.01358766108751297, 0.0153738958761096, 0.6288809776306152, -0.3265257775783539, 0.02110590599477291, -0.3210502564907074, 0.030185332521796227, -0.014931963756680489, 0.6192595362663269, -0.33663269877433777, -0.021000124514102936, 0.002691771136596799, 0.007383470889180899, -0.02902740240097046, 0.29042571783065796, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.29502764344215393, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 6.3204, "q": [-0.3129883408546448, -0.013570617884397507, 0.015347111970186234, 0.6288639307022095, -0.3265340030193329, 0.021105842664837837, -0.32103320956230164, 0.030193854123353958, -0.014945355243980885, 0.6192424893379211, -0.33662858605384827, -0.020992891862988472, 0.002691771136596799, 0.007421433925628662, -0.02900303341448307, 0.29042571783065796, 0.2159797102212906, -0.005201153922826052, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22378143668174744, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 6.3371, "q": [-0.3129883408546448, -0.013562094420194626, 0.015347111970186234, 0.6288809776306152, -0.3265298902988434, 0.02109861932694912, -0.32103320956230164, 0.030185332521796227, -0.014931963756680489, 0.6192169189453125, -0.33662858605384827, -0.020992891862988472, 0.002731946762651205, 0.007375883869826794, -0.0290420800447464, 0.29040175676345825, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.0409141443669796, 0.295051634311676, -0.2237934172153473, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 6.354, "q": [-0.31294572353363037, -0.013553572818636894, 0.015347111970186234, 0.6288639307022095, -0.3265257775783539, 0.02110590599477291, -0.3210417330265045, 0.030193854123353958, -0.014918571338057518, 0.6192339658737183, -0.33663269877433777, -0.020985601469874382, 0.002731946762651205, 0.007391063496470451, -0.02902252972126007, 0.2904137372970581, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.0409141443669796, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 6.3707, "q": [-0.3129372000694275, -0.013553572818636894, 0.015320328995585442, 0.6288383603096008, -0.3265298902988434, 0.02109861932694912, -0.3210161626338959, 0.030193854123353958, -0.014918571338057518, 0.6192169189453125, -0.33663269877433777, -0.021000124514102936, 0.002691771136596799, 0.007413847371935844, -0.02901771105825901, 0.2904376983642578, 0.21594375371932983, -0.005213138181716204, 0.9791951179504395, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 6.3874, "q": [-0.31292015314102173, -0.013553572818636894, 0.015306936576962471, 0.6288383603096008, -0.3265298902988434, 0.02109861932694912, -0.32102468609809875, 0.030185332521796227, -0.014931963756680489, 0.6192083954811096, -0.3366367816925049, -0.020992834120988846, 0.002718554809689522, 0.007368285208940506, -0.029037151485681534, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22378143668174744, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 6.4042, "q": [-0.31292015314102173, -0.013553572818636894, 0.015293545089662075, 0.6288213133811951, -0.3265257775783539, 0.02110590599477291, -0.32103320956230164, 0.030193854123353958, -0.014958747662603855, 0.6191913485527039, -0.33663681149482727, -0.020978311076760292, 0.002718554809689522, 0.007375883869826794, -0.0290420800447464, 0.2904616594314575, 0.2159557342529297, -0.005225121974945068, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.1835743635892868, 0.05243098363280296, 0.008856342174112797]} +{"t": 6.4209, "q": [-0.31290310621261597, -0.01352800615131855, 0.015293545089662075, 0.6287616491317749, -0.3265298902988434, 0.02108410932123661, -0.3210417330265045, 0.03020237758755684, -0.014905179850757122, 0.619182825088501, -0.3366408944129944, -0.020985541865229607, 0.002718554809689522, 0.007398668210953474, -0.02903726138174534, 0.2904736399650574, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008856342174112797]} +{"t": 6.4376, "q": [-0.31291162967681885, -0.01352800615131855, 0.015293545089662075, 0.6287105679512024, -0.3265257775783539, 0.021091395989060402, -0.3210587799549103, 0.030193854123353958, -0.014905179850757122, 0.6191146373748779, -0.33663269877433777, -0.020985601469874382, 0.002731946762651205, 0.007383482530713081, -0.029047010466456413, 0.2904616594314575, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.040890175849199295, 0.29502764344215393, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 6.4543, "q": [-0.31292015314102173, -0.01352800615131855, 0.015280152671039104, 0.6286935210227966, -0.3265381157398224, 0.021084045991301537, -0.3210587799549103, 0.030193854123353958, -0.014918571338057518, 0.6190890669822693, -0.3366408944129944, -0.020985541865229607, 0.002758730435743928, 0.007383494637906551, -0.02906661666929722, 0.29044967889785767, 0.2159797102212906, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 6.4711, "q": [-0.3129286766052246, -0.013536527752876282, 0.015306936576962471, 0.6286764740943909, -0.3265298902988434, 0.02109861932694912, -0.32106730341911316, 0.030193854123353958, -0.014931963756680489, 0.6190634965896606, -0.3366408944129944, -0.020985541865229607, 0.002691771136596799, 0.007375895977020264, -0.029061686247587204, 0.2904616594314575, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 6.4878, "q": [-0.3129372000694275, -0.013519484549760818, 0.015266761183738708, 0.6286509037017822, -0.3265257775783539, 0.02110590599477291, -0.3210587799549103, 0.03020237758755684, -0.014945355243980885, 0.619037926197052, -0.336649090051651, -0.020970961079001427, 0.0027453387156128883, 0.007368297316133976, -0.02905675768852234, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15754462778568268, 0.06167082488536835, -0.040890175849199295, 0.2950636148452759, -0.22378143668174744, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 6.5045, "q": [-0.3129286766052246, -0.013545051217079163, 0.015280152671039104, 0.6286168098449707, -0.3265257775783539, 0.02110590599477291, -0.32106730341911316, 0.03020237758755684, -0.014945355243980885, 0.6189953088760376, -0.3366408944129944, -0.020971018821001053, 0.002718554809689522, 0.007360698655247688, -0.029051827266812325, 0.29042571783065796, 0.2159797102212906, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.06167082488536835, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 6.5214, "q": [-0.31296277046203613, -0.013545051217079163, 0.015280152671039104, 0.6285741925239563, -0.3265298902988434, 0.02109861932694912, -0.32106730341911316, 0.03020237758755684, -0.014891788363456726, 0.6189101338386536, -0.3366449773311615, -0.02099277451634407, 0.002731946762651205, 0.007375883869826794, -0.0290420800447464, 0.29040175676345825, 0.2159557342529297, -0.005213138181716204, 0.9791830778121948, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 6.5383, "q": [-0.31294572353363037, -0.013553572818636894, 0.015280152671039104, 0.6285400986671448, -0.3265257775783539, 0.021091395989060402, -0.32103320956230164, 0.03020237758755684, -0.014918571338057518, 0.618876039981842, -0.3366367816925049, -0.020963769406080246, 0.0027051628567278385, 0.007368297316133976, -0.02905675768852234, 0.29042571783065796, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.06167082488536835, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.1835743635892868, 0.05243098363280296, 0.008856342174112797]} +{"t": 6.555, "q": [-0.31291162967681885, -0.01352800615131855, 0.015306936576962471, 0.628523051738739, -0.3265257775783539, 0.02110590599477291, -0.32103320956230164, 0.03020237758755684, -0.014918571338057518, 0.6188248991966248, -0.3366367816925049, -0.020992834120988846, 0.002691771136596799, 0.007345507387071848, -0.029051773250102997, 0.29040175676345825, 0.2159557342529297, -0.005213138181716204, 0.9791830778121948, 0.15760454535484314, 0.0616828091442585, -0.040890175849199295, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05243098363280296, 0.008856342174112797]} +{"t": 6.5718, "q": [-0.31294572353363037, -0.013545051217079163, 0.015320328995585442, 0.6284889578819275, -0.3265340030193329, 0.021105842664837837, -0.3210161626338959, 0.03020237758755684, -0.014918571338057518, 0.6187737584114075, -0.33663269877433777, -0.021000124514102936, 0.002731946762651205, 0.007368291262537241, -0.029046954587101936, 0.29042571783065796, 0.2159557342529297, -0.005213138181716204, 0.9791951179504395, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.2950156629085541, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.008856342174112797]} +{"t": 6.5885, "q": [-0.3129372000694275, -0.013536527752876282, 0.015333720482885838, 0.6284719109535217, -0.3265381157398224, 0.021084045991301537, -0.321007639169693, 0.03020237758755684, -0.014918571338057518, 0.6187481880187988, -0.33662858605384827, -0.020992891862988472, 0.002691771136596799, 0.007353088352829218, -0.029027290642261505, 0.2904137372970581, 0.2159557342529297, -0.005213138181716204, 0.9791951179504395, 0.15762852132320404, 0.06167082488536835, -0.040890175849199295, 0.2950036823749542, -0.22380541265010834, 0.023069633170962334, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 6.6053, "q": [-0.31292015314102173, -0.013553572818636894, 0.015333720482885838, 0.6284463405609131, -0.3265257775783539, 0.02110590599477291, -0.3209564983844757, 0.03020237758755684, -0.014918571338057518, 0.6186970472335815, -0.33662447333335876, -0.020985642448067665, 0.002691771136596799, 0.007330292370170355, -0.02901250310242176, 0.29037776589393616, 0.21594375371932983, -0.005201153922826052, 0.9791830778121948, 0.1575925648212433, 0.06167082488536835, -0.040890175849199295, 0.29499170184135437, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05241899937391281, 0.008844357915222645]} +{"t": 6.622, "q": [-0.3129372000694275, -0.013553572818636894, 0.015360504388809204, 0.6284037232398987, -0.3265381157398224, 0.021084045991301537, -0.3209564983844757, 0.030193854123353958, -0.014918571338057518, 0.61866295337677, -0.33662447333335876, -0.020985642448067665, 0.002731946762651205, 0.007330280262976885, -0.028992895036935806, 0.29040175676345825, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.1576405018568039, 0.0616828091442585, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 6.6389, "q": [-0.31290310621261597, -0.013545051217079163, 0.015347111970186234, 0.6283951997756958, -0.3265298902988434, 0.02109861932694912, -0.32087981700897217, 0.03020237758755684, -0.014918571338057518, 0.6186288595199585, -0.33662858605384827, -0.020992891862988472, 0.002691771136596799, 0.007322681602090597, -0.02898796647787094, 0.29040175676345825, 0.21594375371932983, -0.005201153922826052, 0.9792070984840393, 0.1575925648212433, 0.06167082488536835, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780685901641846, -0.1835743635892868, 0.05243098363280296, 0.008868326433002949]} +{"t": 6.6556, "q": [-0.31290310621261597, -0.013553572818636894, 0.015333720482885838, 0.62837815284729, -0.3265298902988434, 0.02109861932694912, -0.32088834047317505, 0.03021089918911457, -0.014958747662603855, 0.6186118125915527, -0.33663269877433777, -0.020971059799194336, 0.002691771136596799, 0.007383422926068306, -0.02894897572696209, 0.29042571783065796, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15760454535484314, 0.06167082488536835, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.052442967891693115, 0.0088803106918931]} +{"t": 6.6724, "q": [-0.3128775358200073, -0.013545051217079163, 0.015333720482885838, 0.6283696293830872, -0.3265381455421448, 0.021113082766532898, -0.32083719968795776, 0.03020237758755684, -0.014958747662603855, 0.6185862421989441, -0.33663269877433777, -0.020971059799194336, 0.002718554809689522, 0.007391003891825676, -0.028924494981765747, 0.29040175676345825, 0.2159557342529297, -0.005225121974945068, 0.9792070984840393, 0.15762852132320404, 0.06169478967785835, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780685901641846, -0.18356238305568695, 0.05243098363280296, 0.008844357915222645]} +{"t": 6.6893, "q": [-0.31286048889160156, -0.013545051217079163, 0.015306936576962471, 0.6283526420593262, -0.3265340030193329, 0.021105842664837837, -0.3208286762237549, 0.03020237758755684, -0.014945355243980885, 0.6186032891273499, -0.33663269877433777, -0.020985601469874382, 0.002758730435743928, 0.007391003891825676, -0.028924494981765747, 0.2904137372970581, 0.2159557342529297, -0.005201153922826052, 0.9791951179504395, 0.15760454535484314, 0.0616828091442585, -0.040890175849199295, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05243098363280296, 0.008868326433002949]} +{"t": 6.706, "q": [-0.3128434419631958, -0.013553572818636894, 0.015320328995585442, 0.6283526420593262, -0.3265340030193329, 0.021105842664837837, -0.32080310583114624, 0.030193854123353958, -0.014931963756680489, 0.6186032891273499, -0.3366408944129944, -0.020985541865229607, 0.002718554809689522, 0.007398590445518494, -0.028909817337989807, 0.29040175676345825, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.2950156629085541, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 6.7227, "q": [-0.31281790137290955, -0.013536527752876282, 0.015320328995585442, 0.6283100247383118, -0.3265257775783539, 0.02110590599477291, -0.32080310583114624, 0.03020237758755684, -0.014958747662603855, 0.618594765663147, -0.3366408944129944, -0.020985541865229607, 0.002731946762651205, 0.007444152608513832, -0.028890376910567284, 0.29042571783065796, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 6.7395, "q": [-0.31280937790870667, -0.013553572818636894, 0.015293545089662075, 0.6282674074172974, -0.3265257775783539, 0.02110590599477291, -0.320820152759552, 0.030193854123353958, -0.014945355243980885, 0.6185692548751831, -0.3366450071334839, -0.020963728427886963, 0.002718554809689522, 0.007436553947627544, -0.02888544835150242, 0.2904137372970581, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.1575925648212433, 0.0616828091442585, -0.040890175849199295, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18353840708732605, 0.05241899937391281, 0.008856342174112797]} +{"t": 6.7562, "q": [-0.31281790137290955, -0.013519484549760818, 0.015280152671039104, 0.628224790096283, -0.3265298902988434, 0.02109861932694912, -0.32080310583114624, 0.03020237758755684, -0.014931963756680489, 0.6185266375541687, -0.336649090051651, -0.020970961079001427, 0.002691771136596799, 0.00745173916220665, -0.028875699266791344, 0.2904376983642578, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.04090216010808945, 0.2950156629085541, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 6.7731, "q": [-0.3128008544445038, -0.013510962948203087, 0.015253368765115738, 0.628224790096283, -0.3265340030193329, 0.021091332659125328, -0.320820152759552, 0.03020237758755684, -0.014945355243980885, 0.6184925436973572, -0.33663681149482727, -0.020978311076760292, 0.0027453387156128883, 0.007413770072162151, -0.02889026515185833, 0.2903897762298584, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.04086620733141899, 0.295051634311676, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 6.7898, "q": [-0.3128264248371124, -0.013502439484000206, 0.015266761183738708, 0.6281906962394714, -0.3265463709831238, 0.021083982661366463, -0.3208542466163635, 0.030193854123353958, -0.014931963756680489, 0.6184499263763428, -0.33665731549263, -0.020941857248544693, 0.002758730435743928, 0.007390991784632206, -0.028904886916279793, 0.2904137372970581, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.2950156629085541, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.1835743635892868, 0.05241899937391281, 0.008844357915222645]} +{"t": 6.8066, "q": [-0.3128264248371124, -0.01346835121512413, 0.015239977277815342, 0.6281310319900513, -0.3265422582626343, 0.021091269329190254, -0.3209053874015808, 0.03020237758755684, -0.014958747662603855, 0.6183732151985168, -0.3366655111312866, -0.020941779017448425, 0.002691771136596799, 0.007421380374580622, -0.02891480177640915, 0.2904616594314575, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.29502764344215393, -0.2237934172153473, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 6.8233, "q": [-0.3128434419631958, -0.013476874679327011, 0.015239977277815342, 0.6280969381332397, -0.3265340030193329, 0.021091332659125328, -0.3209139108657837, 0.030193854123353958, -0.014958747662603855, 0.6183391213417053, -0.3366655111312866, -0.020941779017448425, 0.002691771136596799, 0.007406201213598251, -0.028934353962540627, 0.2904616594314575, 0.21594375371932983, -0.00523710623383522, 0.9792070984840393, 0.15758058428764343, 0.06169478967785835, -0.04090216010808945, 0.29502764344215393, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 6.84, "q": [-0.31286901235580444, -0.01346835121512413, 0.015253368765115738, 0.628079891204834, -0.3265340030193329, 0.021091332659125328, -0.3209139108657837, 0.030193854123353958, -0.014931963756680489, 0.6183220744132996, -0.336665540933609, -0.02092725783586502, 0.002731946762651205, 0.007406201213598251, -0.028934353962540627, 0.2904616594314575, 0.21594375371932983, -0.005201153922826052, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05243098363280296, 0.008832373656332493]} +{"t": 6.8568, "q": [-0.3128434419631958, -0.013485396280884743, 0.015226585790514946, 0.6280202269554138, -0.3265381157398224, 0.021098555997014046, -0.3209053874015808, 0.030193854123353958, -0.014918571338057518, 0.6182794570922852, -0.3366655111312866, -0.020941779017448425, 0.002758730435743928, 0.007406207267194986, -0.02894415706396103, 0.29044967889785767, 0.2159557342529297, -0.005213138181716204, 0.9791951179504395, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835503876209259, 0.05241899937391281, 0.008856342174112797]} +{"t": 6.8736, "q": [-0.3128434419631958, -0.01346835121512413, 0.015239977277815342, 0.6279776692390442, -0.3265381157398224, 0.021098555997014046, -0.3209224343299866, 0.03020237758755684, -0.014918571338057518, 0.618219792842865, -0.33665731549263, -0.020941857248544693, 0.0027051628567278385, 0.007398608606308699, -0.028939226642251015, 0.29044967889785767, 0.21596772968769073, -0.005213138181716204, 0.9791830778121948, 0.15752065181732178, 0.0616828091442585, -0.04087819159030914, 0.295051634311676, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.008868326433002949]} +{"t": 6.8903, "q": [-0.3128434419631958, -0.013459829613566399, 0.015239977277815342, 0.6279350519180298, -0.3265463709831238, 0.021098509430885315, -0.3209224343299866, 0.030185332521796227, -0.014945355243980885, 0.6181260943412781, -0.3366532027721405, -0.020949147641658783, 0.002718554809689522, 0.007383422926068306, -0.02894897572696209, 0.2904376983642578, 0.21596772968769073, -0.005201153922826052, 0.9791951179504395, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008844357915222645]} +{"t": 6.9071, "q": [-0.3128434419631958, -0.013459829613566399, 0.015239977277815342, 0.6279009580612183, -0.3265381157398224, 0.021084045991301537, -0.3209139108657837, 0.030193854123353958, -0.014931963756680489, 0.6181175708770752, -0.3366532027721405, -0.020949147641658783, 0.002718554809689522, 0.007383422926068306, -0.02894897572696209, 0.29042571783065796, 0.21594375371932983, -0.0051891696639359, 0.9791951179504395, 0.15756858885288239, 0.06167082488536835, -0.040890175849199295, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 6.924, "q": [-0.3128519654273987, -0.013485396280884743, 0.015253368765115738, 0.6278839111328125, -0.3265422582626343, 0.021091269329190254, -0.3209139108657837, 0.030193854123353958, -0.014945355243980885, 0.6180238127708435, -0.336649090051651, -0.020941896364092827, 0.002758730435743928, 0.007391015999019146, -0.028944101184606552, 0.2904376983642578, 0.21593177318572998, -0.005201153922826052, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04086620733141899, 0.29503965377807617, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.18353840708732605, 0.05243098363280296, 0.008868326433002949]} +{"t": 6.9407, "q": [-0.31286048889160156, -0.013502439484000206, 0.015226585790514946, 0.6278157234191895, -0.3265422582626343, 0.021105796098709106, -0.3209053874015808, 0.03020237758755684, -0.014918571338057518, 0.6179726719856262, -0.3366532027721405, -0.020949147641658783, 0.0027721223887056112, 0.007368231657892466, -0.028948919847607613, 0.2904376983642578, 0.21596772968769073, -0.005201153922826052, 0.9791830778121948, 0.15762852132320404, 0.06169478967785835, -0.040890175849199295, 0.29502764344215393, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008868326433002949]} +{"t": 6.9575, "q": [-0.31286901235580444, -0.013493917882442474, 0.015253368765115738, 0.6277986764907837, -0.3265340030193329, 0.021105842664837837, -0.32087981700897217, 0.03020237758755684, -0.014918571338057518, 0.6179471015930176, -0.33665731549263, -0.020941857248544693, 0.002718554809689522, 0.007360639050602913, -0.028953792527318, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.06169478967785835, -0.04090216010808945, 0.29502764344215393, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05241899937391281, 0.008844357915222645]} +{"t": 6.9744, "q": [-0.31286901235580444, -0.013493917882442474, 0.015280152671039104, 0.6278157234191895, -0.3265381455421448, 0.021113082766532898, -0.32089686393737793, 0.03020237758755684, -0.014918571338057518, 0.6179300546646118, -0.3366655111312866, -0.020941779017448425, 0.002731946762651205, 0.007368226069957018, -0.02893911674618721, 0.29042571783065796, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.15760454535484314, 0.0616828091442585, -0.04090216010808945, 0.2950156629085541, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 6.9911, "q": [-0.3128775358200073, -0.013510962948203087, 0.015266761183738708, 0.6277986764907837, -0.3265422582626343, 0.021076759323477745, -0.32083719968795776, 0.03021089918911457, -0.014931963756680489, 0.617913007736206, -0.33663269877433777, -0.021000124514102936, 0.0026382035575807095, 0.007368226069957018, -0.02893911674618721, 0.29040175676345825, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.1576644629240036, 0.0616828091442585, -0.0409141443669796, 0.29499170184135437, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18358634412288666, 0.05243098363280296, 0.008856342174112797]} +{"t": 7.0078, "q": [-0.3128775358200073, -0.013519484549760818, 0.015280152671039104, 0.6277901530265808, -0.3265381455421448, 0.021113082766532898, -0.32079458236694336, 0.03020237758755684, -0.014958747662603855, 0.6178874373435974, -0.3366367816925049, -0.020992834120988846, 0.002691771136596799, 0.007368226069957018, -0.02893911674618721, 0.29040175676345825, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.06167082488536835, -0.040890175849199295, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.008856342174112797]} +{"t": 7.0247, "q": [-0.3128519654273987, -0.013510962948203087, 0.015293545089662075, 0.6277986764907837, -0.3265381455421448, 0.021113082766532898, -0.32079458236694336, 0.03020237758755684, -0.014931963756680489, 0.6178789138793945, -0.3366367816925049, -0.020992834120988846, 0.002718554809689522, 0.007383393589407206, -0.028899958357214928, 0.29040175676345825, 0.2159557342529297, -0.005213138181716204, 0.9791951179504395, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.023081617429852486, 0.9780685901641846, -0.18356238305568695, 0.05241899937391281, 0.0088803106918931]} +{"t": 7.0414, "q": [-0.31286048889160156, -0.01352800615131855, 0.015280152671039104, 0.6277986764907837, -0.3265340030193329, 0.021105842664837837, -0.32075196504592896, 0.03020237758755684, -0.014958747662603855, 0.6178874373435974, -0.3366367816925049, -0.020992834120988846, 0.002691771136596799, 0.007375794928520918, -0.028895027935504913, 0.29040175676345825, 0.2159557342529297, -0.0051891696639359, 0.9791830778121948, 0.15756858885288239, 0.06167082488536835, -0.04090216010808945, 0.29499170184135437, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 7.0582, "q": [-0.3128519654273987, -0.01352800615131855, 0.015293545089662075, 0.6277986764907837, -0.3265298902988434, 0.02109861932694912, -0.32070085406303406, 0.03020237758755684, -0.014931963756680489, 0.6178874373435974, -0.3366367816925049, -0.020992834120988846, 0.002691771136596799, 0.007368178106844425, -0.02886068820953369, 0.2903897762298584, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.157616525888443, 0.0616828091442585, -0.04090216010808945, 0.29499170184135437, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008868326433002949]} +{"t": 7.0749, "q": [-0.31276676058769226, -0.013510962948203087, 0.015293545089662075, 0.627773106098175, -0.3265381455421448, 0.021113082766532898, -0.32066676020622253, 0.03020237758755684, -0.014918571338057518, 0.6178789138793945, -0.3366367816925049, -0.020992834120988846, 0.002718554809689522, 0.007421315182000399, -0.028806963935494423, 0.2903897762298584, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04087819159030914, 0.2949797213077545, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.1835503876209259, 0.05241899937391281, 0.008856342174112797]} +{"t": 7.0916, "q": [-0.3127582371234894, -0.013519484549760818, 0.015293545089662075, 0.6277901530265808, -0.3265257775783539, 0.02110590599477291, -0.32065823674201965, 0.030193854123353958, -0.014945355243980885, 0.6179044842720032, -0.3366408944129944, -0.020956479012966156, 0.002718554809689522, 0.007451679557561874, -0.02877766452729702, 0.2903897762298584, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.06167082488536835, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008868326433002949]} +{"t": 7.1086, "q": [-0.3127411901950836, -0.013519484549760818, 0.015293545089662075, 0.6277901530265808, -0.3265298902988434, 0.02111312933266163, -0.32060709595680237, 0.03020237758755684, -0.014985531568527222, 0.6178959608078003, -0.33663269877433777, -0.020985601469874382, 0.002691771136596799, 0.007436482701450586, -0.02876780554652214, 0.29040175676345825, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.2950036823749542, -0.22378143668174744, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 7.1253, "q": [-0.3127070963382721, -0.013510962948203087, 0.015280152671039104, 0.6277645826339722, -0.3265340030193329, 0.021091332659125328, -0.3205985724925995, 0.03021089918911457, -0.014985531568527222, 0.6179044842720032, -0.33663269877433777, -0.020985601469874382, 0.0027855143416672945, 0.007512426003813744, -0.02874847874045372, 0.29040175676345825, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.06167082488536835, -0.04090216010808945, 0.2950036823749542, -0.22378143668174744, 0.023081617429852486, 0.9780805706977844, -0.1835503876209259, 0.05243098363280296, 0.008844357915222645]} +{"t": 7.142, "q": [-0.31259632110595703, -0.013510962948203087, 0.015266761183738708, 0.627773106098175, -0.3265340030193329, 0.021105842664837837, -0.3204622268676758, 0.03021089918911457, -0.014998923055827618, 0.617913007736206, -0.33663681149482727, -0.020978311076760292, 0.002691771136596799, 0.007482043467462063, -0.028748366981744766, 0.2904137372970581, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15758058428764343, 0.061706773936748505, -0.04090216010808945, 0.2950036823749542, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.1835503876209259, 0.05241899937391281, 0.008844357915222645]} +{"t": 7.1588, "q": [-0.3124769926071167, -0.013519484549760818, 0.015226585790514946, 0.6277645826339722, -0.3265340030193329, 0.021091332659125328, -0.32034292817115784, 0.030219420790672302, -0.015025706961750984, 0.617913007736206, -0.3366367816925049, -0.020963769406080246, 0.002691771136596799, 0.007520012557506561, -0.02873380109667778, 0.2904137372970581, 0.21594375371932983, -0.005201153922826052, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.040890175849199295, 0.29502764344215393, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008856342174112797]} +{"t": 7.1756, "q": [-0.31235769391059875, -0.013519484549760818, 0.015239977277815342, 0.6277560591697693, -0.3265381157398224, 0.021084045991301537, -0.32020655274391174, 0.03021089918911457, -0.014998923055827618, 0.617913007736206, -0.33663269877433777, -0.020971059799194336, 0.002691771136596799, 0.007504827342927456, -0.028743548318743706, 0.29042571783065796, 0.21594375371932983, -0.005201153922826052, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.29502764344215393, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 7.1923, "q": [-0.31217020750045776, -0.013485396280884743, 0.015226585790514946, 0.6277645826339722, -0.3265340030193329, 0.021091332659125328, -0.320002019405365, 0.030227944254875183, -0.015025706961750984, 0.6179044842720032, -0.3366408944129944, -0.020956479012966156, 0.002691771136596799, 0.0074896421283483505, -0.02875329554080963, 0.2904137372970581, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.157616525888443, 0.0616828091442585, -0.0409141443669796, 0.2950036823749542, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008856342174112797]} +{"t": 7.209, "q": [-0.31203386187553406, -0.013459829613566399, 0.015226585790514946, 0.6277645826339722, -0.3265257775783539, 0.02110590599477291, -0.3198060393333435, 0.030236465856432915, -0.01505249086767435, 0.6179215312004089, -0.3366408944129944, -0.020956479012966156, 0.0027989062946289778, 0.00747445086017251, -0.028753241524100304, 0.29040175676345825, 0.2159557342529297, -0.005213138181716204, 0.9791951179504395, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.29502764344215393, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 7.2258, "q": [-0.3118293285369873, -0.013459829613566399, 0.015173017978668213, 0.6277645826339722, -0.3265298902988434, 0.02108410932123661, -0.31959298253059387, 0.030244987457990646, -0.01503909844905138, 0.6179044842720032, -0.336649090051651, -0.020941896364092827, 0.002758730435743928, 0.007504815235733986, -0.0287239421159029, 0.29040175676345825, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.2950156629085541, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008856342174112797]} +{"t": 7.2425, "q": [-0.3116588890552521, -0.013451308012008667, 0.01519980188459158, 0.6277475357055664, -0.3265340030193329, 0.02107682265341282, -0.3194566071033478, 0.030236465856432915, -0.015079274773597717, 0.6178789138793945, -0.3366450071334839, -0.020963728427886963, 0.002758730435743928, 0.007512419950217009, -0.028738675639033318, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9791830778121948, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.2950156629085541, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008856342174112797]} +{"t": 7.2592, "q": [-0.31159070134162903, -0.013459829613566399, 0.015173017978668213, 0.6277475357055664, -0.3265381157398224, 0.021084045991301537, -0.3193202614784241, 0.030244987457990646, -0.015092666260898113, 0.6178703904151917, -0.3366450071334839, -0.020963728427886963, 0.0027989062946289778, 0.007520012557506561, -0.02873380109667778, 0.2904376983642578, 0.21594375371932983, -0.005201153922826052, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.2950036823749542, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 7.276, "q": [-0.31153956055641174, -0.013451308012008667, 0.015132841654121876, 0.6277304887771606, -0.3265340030193329, 0.021091332659125328, -0.31927764415740967, 0.030244987457990646, -0.015079274773597717, 0.617844820022583, -0.336649090051651, -0.020970961079001427, 0.0027453387156128883, 0.007497228682041168, -0.02873861975967884, 0.2904137372970581, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.04090216010808945, 0.2950036823749542, -0.22378143668174744, 0.02310558594763279, 0.9780805706977844, -0.1835503876209259, 0.05241899937391281, 0.008856342174112797]} +{"t": 7.2927, "q": [-0.31153956055641174, -0.013451308012008667, 0.015132841654121876, 0.6277560591697693, -0.3265422582626343, 0.021091269329190254, -0.31924358010292053, 0.030244987457990646, -0.01505249086767435, 0.617844820022583, -0.3366532027721405, -0.020949147641658783, 0.0027453387156128883, 0.0074896421283483505, -0.02875329554080963, 0.29040175676345825, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.29499170184135437, -0.22378143668174744, 0.023093601688742638, 0.9780685901641846, -0.18353840708732605, 0.05241899937391281, 0.008844357915222645]} +{"t": 7.3094, "q": [-0.3115480840206146, -0.013451308012008667, 0.015146234072744846, 0.6277560591697693, -0.3265340030193329, 0.021105842664837837, -0.31923505663871765, 0.030244987457990646, -0.015079274773597717, 0.6178277730941772, -0.33665731549263, -0.020956380292773247, 0.002731946762651205, 0.0074896300211548805, -0.028733689337968826, 0.2904137372970581, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.040890175849199295, 0.29502764344215393, -0.22380541265010834, 0.023081617429852486, 0.9780685901641846, -0.1835503876209259, 0.05241899937391281, 0.008856342174112797]} +{"t": 7.3261, "q": [-0.3114969730377197, -0.013451308012008667, 0.015132841654121876, 0.6277560591697693, -0.3265381157398224, 0.021084045991301537, -0.3192180097103119, 0.030236465856432915, -0.015079274773597717, 0.6178277730941772, -0.3366450071334839, -0.020963728427886963, 0.0027453387156128883, 0.007512426003813744, -0.02874847874045372, 0.2904736399650574, 0.2159797102212906, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04087819159030914, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835264265537262, 0.05243098363280296, 0.008868326433002949]} +{"t": 7.3428, "q": [-0.3114969730377197, -0.013459829613566399, 0.01511945016682148, 0.6277560591697693, -0.3265381157398224, 0.021084045991301537, -0.31920096278190613, 0.030236465856432915, -0.01505249086767435, 0.6178107857704163, -0.3366450071334839, -0.020963728427886963, 0.002624811604619026, 0.007466863840818405, -0.028767917305231094, 0.2904856503009796, 0.21594375371932983, -0.005213138181716204, 0.9791951179504395, 0.1575925648212433, 0.0616828091442585, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05240701511502266, 0.008868326433002949]} +{"t": 7.3595, "q": [-0.3114628791809082, -0.013442784547805786, 0.015146234072744846, 0.6277560591697693, -0.3265381157398224, 0.021098555997014046, -0.31920096278190613, 0.030236465856432915, -0.015065882354974747, 0.6178022623062134, -0.3366408944129944, -0.020956479012966156, 0.002731946762651205, 0.007451679557561874, -0.02877766452729702, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9791951179504395, 0.15760454535484314, 0.06169478967785835, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.1835503876209259, 0.05243098363280296, 0.008856342174112797]} +{"t": 7.3763, "q": [-0.3115054965019226, -0.01346835121512413, 0.015146234072744846, 0.6277475357055664, -0.3265381157398224, 0.021098555997014046, -0.319209486246109, 0.030219420790672302, -0.01503909844905138, 0.6177511215209961, -0.3366450071334839, -0.020963728427886963, 0.002758730435743928, 0.0074592712335288525, -0.028772791847586632, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.06167082488536835, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05243098363280296, 0.008844357915222645]} +{"t": 7.393, "q": [-0.3115054965019226, -0.01346835121512413, 0.015146234072744846, 0.6277475357055664, -0.3265381455421448, 0.021113082766532898, -0.31920096278190613, 0.030219420790672302, -0.015079274773597717, 0.6177170276641846, -0.3366532027721405, -0.020949147641658783, 0.0027855143416672945, 0.007474462501704693, -0.02877284772694111, 0.29044967889785767, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.06167082488536835, -0.04092612862586975, 0.29502764344215393, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 7.4097, "q": [-0.31153103709220886, -0.013476874679327011, 0.015132841654121876, 0.6277475357055664, -0.3265422582626343, 0.021105796098709106, -0.31919243931770325, 0.030219420790672302, -0.015092666260898113, 0.6176658868789673, -0.33665731549263, -0.020956380292773247, 0.002718554809689522, 0.007451679557561874, -0.02877766452729702, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.040890175849199295, 0.2950036823749542, -0.22378143668174744, 0.02310558594763279, 0.9780805706977844, -0.18353840708732605, 0.05243098363280296, 0.008844357915222645]} +{"t": 7.4264, "q": [-0.31153103709220886, -0.013459829613566399, 0.01511945016682148, 0.6277390122413635, -0.3265463709831238, 0.021113019436597824, -0.31920096278190613, 0.030219420790672302, -0.015092666260898113, 0.6176317930221558, -0.3366450071334839, -0.020949188619852066, 0.002718554809689522, 0.007428901735693216, -0.028792286291718483, 0.29042571783065796, 0.2159557342529297, -0.005201153922826052, 0.9791951179504395, 0.15760454535484314, 0.06167082488536835, -0.04090216010808945, 0.29503965377807617, -0.2237934172153473, 0.023069633170962334, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 7.4432, "q": [-0.3115651309490204, -0.013451308012008667, 0.015106058679521084, 0.6277304887771606, -0.3265463709831238, 0.021098509430885315, -0.319209486246109, 0.030227944254875183, -0.015092666260898113, 0.6175891757011414, -0.3366532027721405, -0.020949147641658783, 0.0026783791836351156, 0.007451691664755344, -0.028797272592782974, 0.29044967889785767, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06169478967785835, -0.040890175849199295, 0.2950156629085541, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 7.4599, "q": [-0.31157365441322327, -0.013459829613566399, 0.015092666260898113, 0.6277304887771606, -0.3265422582626343, 0.021105796098709106, -0.31920096278190613, 0.030219420790672302, -0.015079274773597717, 0.6175550818443298, -0.3366532027721405, -0.020949147641658783, 0.002718554809689522, 0.007451679557561874, -0.02877766452729702, 0.2904616594314575, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.04090216010808945, 0.2950156629085541, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 7.4768, "q": [-0.3115566074848175, -0.01346835121512413, 0.015092666260898113, 0.6277134418487549, -0.3265463709831238, 0.021098509430885315, -0.31920096278190613, 0.030227944254875183, -0.015106058679521084, 0.6174954175949097, -0.33665731549263, -0.020956380292773247, 0.002691771136596799, 0.007436494342982769, -0.028787413612008095, 0.29044967889785767, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.29503965377807617, -0.22378143668174744, 0.02310558594763279, 0.9780805706977844, -0.1835743635892868, 0.05243098363280296, 0.008856342174112797]} +{"t": 7.4935, "q": [-0.3115651309490204, -0.013485396280884743, 0.015092666260898113, 0.6276793479919434, -0.3265504837036133, 0.021105732768774033, -0.31920096278190613, 0.030219420790672302, -0.015079274773597717, 0.6174954175949097, -0.3366532027721405, -0.020949147641658783, 0.002691771136596799, 0.007436494342982769, -0.028787413612008095, 0.2904376983642578, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.157616525888443, 0.0616828091442585, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 7.5103, "q": [-0.3115992248058319, -0.01346835121512413, 0.015106058679521084, 0.6276793479919434, -0.3265422582626343, 0.021105796098709106, -0.31920096278190613, 0.030227944254875183, -0.015079274773597717, 0.6174954175949097, -0.336649090051651, -0.020941896364092827, 0.002758730435743928, 0.007444086950272322, -0.028782539069652557, 0.29042571783065796, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 7.527, "q": [-0.31159070134162903, -0.013476874679327011, 0.015092666260898113, 0.6276878714561462, -0.3265422582626343, 0.021120306104421616, -0.31920096278190613, 0.030227944254875183, -0.015079274773597717, 0.6174613237380981, -0.3366532027721405, -0.020949147641658783, 0.0026783791836351156, 0.007444086950272322, -0.028782539069652557, 0.2903897762298584, 0.21596772968769073, -0.005213138181716204, 0.9791830778121948, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05243098363280296, 0.008856342174112797]} +{"t": 7.5437, "q": [-0.31159070134162903, -0.013451308012008667, 0.015106058679521084, 0.6276793479919434, -0.3265422582626343, 0.021120306104421616, -0.319209486246109, 0.030236465856432915, -0.015106058679521084, 0.6174442768096924, -0.336649090051651, -0.020941896364092827, 0.0027453387156128883, 0.007436494342982769, -0.028787413612008095, 0.29040175676345825, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.29499170184135437, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.052442967891693115, 0.008868326433002949]} +{"t": 7.5606, "q": [-0.31159070134162903, -0.01346835121512413, 0.015106058679521084, 0.6276793479919434, -0.3265381455421448, 0.021113082766532898, -0.3191668689250946, 0.030227944254875183, -0.01511945016682148, 0.6174358129501343, -0.3366532027721405, -0.020949147641658783, 0.002691771136596799, 0.007413704413920641, -0.028782427310943604, 0.2903897762298584, 0.21596772968769073, -0.005213138181716204, 0.9791830778121948, 0.15760454535484314, 0.06167082488536835, -0.040890175849199295, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780685901641846, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} +{"t": 7.5773, "q": [-0.31159070134162903, -0.01346835121512413, 0.015106058679521084, 0.6276708245277405, -0.3265463709831238, 0.021098509430885315, -0.31914129853248596, 0.030227944254875183, -0.01511945016682148, 0.6174358129501343, -0.33665731549263, -0.020941857248544693, 0.0026783791836351156, 0.007421297021210194, -0.028777554631233215, 0.2904137372970581, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.2950156629085541, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835503876209259, 0.05241899937391281, 0.008844357915222645]} +{"t": 7.594, "q": [-0.31157365441322327, -0.013451308012008667, 0.01511945016682148, 0.6276708245277405, -0.3265381455421448, 0.021113082766532898, -0.31914129853248596, 0.030236465856432915, -0.01511945016682148, 0.6174358129501343, -0.3366532027721405, -0.020949147641658783, 0.002691771136596799, 0.007444086950272322, -0.028782539069652557, 0.2904137372970581, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.29502764344215393, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835503876209259, 0.05241899937391281, 0.008844357915222645]} +{"t": 7.6109, "q": [-0.3115651309490204, -0.013485396280884743, 0.01511945016682148, 0.6276623010635376, -0.3265422582626343, 0.021105796098709106, -0.31914129853248596, 0.030236465856432915, -0.01511945016682148, 0.6174358129501343, -0.3366532027721405, -0.020949147641658783, 0.0026649872306734324, 0.007428890094161034, -0.028772680088877678, 0.29040175676345825, 0.21596772968769073, -0.005225121974945068, 0.9791830778121948, 0.15760454535484314, 0.06167082488536835, -0.040890175849199295, 0.2950036823749542, -0.22378143668174744, 0.023081617429852486, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.008856342174112797]} +{"t": 7.6277, "q": [-0.3115651309490204, -0.013459829613566399, 0.01511945016682148, 0.6276623010635376, -0.3265340030193329, 0.02112036943435669, -0.3191327750682831, 0.030219420790672302, -0.015132841654121876, 0.6174528002738953, -0.336649090051651, -0.020941896364092827, 0.0027453387156128883, 0.0074592651799321175, -0.02876298874616623, 0.2904137372970581, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.008856342174112797]} +{"t": 7.6444, "q": [-0.3115651309490204, -0.013485396280884743, 0.015106058679521084, 0.6276623010635376, -0.3265381455421448, 0.021113082766532898, -0.3190816342830658, 0.030244987457990646, -0.015092666260898113, 0.6174358129501343, -0.3366532027721405, -0.020949147641658783, 0.002691771136596799, 0.007474456448107958, -0.028763044625520706, 0.29042571783065796, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.008868326433002949]} +{"t": 7.6611, "q": [-0.31153103709220886, -0.013476874679327011, 0.015092666260898113, 0.6276878714561462, -0.3265340030193329, 0.021105842664837837, -0.31901347637176514, 0.03026203252375126, -0.015186409465968609, 0.6174613237380981, -0.3366408944129944, -0.020956479012966156, 0.002691771136596799, 0.0074592651799321175, -0.02876298874616623, 0.2904137372970581, 0.2159797102212906, -0.005213138181716204, 0.9792070984840393, 0.15758058428764343, 0.06167082488536835, -0.04090216010808945, 0.2950036823749542, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 7.6778, "q": [-0.3114714026451111, -0.013493917882442474, 0.015092666260898113, 0.6276878714561462, -0.3265381455421448, 0.021113082766532898, -0.31891971826553345, 0.030253509059548378, -0.015186409465968609, 0.6174783706665039, -0.3366450071334839, -0.020963728427886963, 0.002731946762651205, 0.007436482701450586, -0.02876780554652214, 0.29042571783065796, 0.2159557342529297, -0.0051891696639359, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.0409141443669796, 0.2950156629085541, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008856342174112797]} +{"t": 7.6946, "q": [-0.31140321493148804, -0.01346835121512413, 0.015079274773597717, 0.6276963949203491, -0.3265340030193329, 0.021091332659125328, -0.3188430368900299, 0.030244987457990646, -0.01519980188459158, 0.6174442768096924, -0.336649090051651, -0.020941896364092827, 0.002691771136596799, 0.00747445086017251, -0.028753241524100304, 0.2904376983642578, 0.2159797102212906, -0.005225121974945068, 0.9791830778121948, 0.15762852132320404, 0.0616828091442585, -0.04090216010808945, 0.2950156629085541, -0.22380541265010834, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008832373656332493]} +{"t": 7.7113, "q": [-0.31135207414627075, -0.013459829613566399, 0.01503909844905138, 0.6276963949203491, -0.3265422582626343, 0.021105796098709106, -0.31878337264060974, 0.030244987457990646, -0.01519980188459158, 0.6174868941307068, -0.33663681149482727, -0.020949246361851692, 0.002691771136596799, 0.0074668521992862225, -0.02874831110239029, 0.2904137372970581, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.061658840626478195, -0.04087819159030914, 0.2950036823749542, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 7.728, "q": [-0.31134355068206787, -0.01346835121512413, 0.01503909844905138, 0.627704918384552, -0.3265381455421448, 0.021113082766532898, -0.31873223185539246, 0.030244987457990646, -0.01519980188459158, 0.6174783706665039, -0.33663681149482727, -0.020949246361851692, 0.002718554809689522, 0.00745166651904583, -0.028758058324456215, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9791830778121948, 0.15760454535484314, 0.0616828091442585, -0.0409141443669796, 0.2950036823749542, -0.22380541265010834, 0.023069633170962334, 0.9780805706977844, -0.1835743635892868, 0.05241899937391281, 0.008856342174112797]} +{"t": 7.745, "q": [-0.31126686930656433, -0.013451308012008667, 0.01505249086767435, 0.6277134418487549, -0.3265340030193329, 0.021091332659125328, -0.3186555504798889, 0.030253509059548378, -0.015213193371891975, 0.6174783706665039, -0.33663681149482727, -0.020978311076760292, 0.002691771136596799, 0.0074668521992862225, -0.02874831110239029, 0.2904137372970581, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.157616525888443, 0.0616828091442585, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780685901641846, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 7.7617, "q": [-0.3112412989139557, -0.013459829613566399, 0.01505249086767435, 0.627704918384552, -0.3265381455421448, 0.021113082766532898, -0.3186555504798889, 0.030244987457990646, -0.015226585790514946, 0.6174783706665039, -0.3366450071334839, -0.020963728427886963, 0.0026649872306734324, 0.0074896421283483505, -0.02875329554080963, 0.29044967889785767, 0.21596772968769073, -0.005213138181716204, 0.9791830778121948, 0.1575925648212433, 0.06167082488536835, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 7.7784, "q": [-0.3112327754497528, -0.013459829613566399, 0.015025706961750984, 0.627704918384552, -0.3265422582626343, 0.021105796098709106, -0.3186555504798889, 0.030244987457990646, -0.015226585790514946, 0.617469847202301, -0.336649090051651, -0.020970961079001427, 0.002691771136596799, 0.00747445086017251, -0.028753241524100304, 0.29044967889785767, 0.21596772968769073, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.06169478967785835, -0.04087819159030914, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18353840708732605, 0.05241899937391281, 0.008844357915222645]} +{"t": 7.7952, "q": [-0.3112412989139557, -0.013451308012008667, 0.015025706961750984, 0.6276963949203491, -0.3265381157398224, 0.021098555997014046, -0.3186555504798889, 0.030244987457990646, -0.015226585790514946, 0.617469847202301, -0.3366408944129944, -0.020956479012966156, 0.002718554809689522, 0.0074668521992862225, -0.02874831110239029, 0.29042571783065796, 0.2159557342529297, -0.005213138181716204, 0.9791830778121948, 0.15758058428764343, 0.0616828091442585, -0.04090216010808945, 0.2950036823749542, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 7.8119, "q": [-0.31126686930656433, -0.013451308012008667, 0.015025706961750984, 0.627704918384552, -0.3265504837036133, 0.02107669599354267, -0.31868109107017517, 0.030244987457990646, -0.015226585790514946, 0.617469847202301, -0.3366408944129944, -0.020971018821001053, 0.0027453387156128883, 0.007504821289330721, -0.028733745217323303, 0.2904616594314575, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.295051634311676, -0.22380541265010834, 0.023093601688742638, 0.9780685901641846, -0.1835503876209259, 0.05241899937391281, 0.008856342174112797]} +{"t": 7.8288, "q": [-0.3112839162349701, -0.013451308012008667, 0.015025706961750984, 0.6277134418487549, -0.3265381157398224, 0.021098555997014046, -0.31868109107017517, 0.030244987457990646, -0.015226585790514946, 0.6174613237380981, -0.3366450071334839, -0.020963728427886963, 0.002731946762651205, 0.007444067858159542, -0.02875312976539135, 0.2904616594314575, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.040890175849199295, 0.2950636148452759, -0.22380541265010834, 0.023081617429852486, 0.9780685901641846, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 7.8456, "q": [-0.31125834584236145, -0.013451308012008667, 0.015012315474450588, 0.627704918384552, -0.3265381157398224, 0.021098555997014046, -0.3187066614627838, 0.030244987457990646, -0.015213193371891975, 0.6174528002738953, -0.33663681149482727, -0.020949246361851692, 0.002731946762651205, 0.007451679557561874, -0.02877766452729702, 0.2904616594314575, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.22380541265010834, 0.02310558594763279, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 7.8623, "q": [-0.31126686930656433, -0.01346835121512413, 0.015012315474450588, 0.627704918384552, -0.3265463709831238, 0.021098509430885315, -0.31868109107017517, 0.030244987457990646, -0.015213193371891975, 0.617469847202301, -0.3366408944129944, -0.020956479012966156, 0.002731946762651205, 0.007444086950272322, -0.028782539069652557, 0.29044967889785767, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15756858885288239, 0.06167082488536835, -0.04090216010808945, 0.2950156629085541, -0.22380541265010834, 0.023093601688742638, 0.9780925512313843, -0.18356238305568695, 0.05240701511502266, 0.008868326433002949]} +{"t": 7.879, "q": [-0.31126686930656433, -0.013442784547805786, 0.015012315474450588, 0.627704918384552, -0.3265422582626343, 0.021105796098709106, -0.31868961453437805, 0.030244987457990646, -0.01519980188459158, 0.6174613237380981, -0.3366408944129944, -0.020956479012966156, 0.002731946762651205, 0.007451679557561874, -0.02877766452729702, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.15760454535484314, 0.0616828091442585, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008856342174112797]} +{"t": 7.8958, "q": [-0.31126686930656433, -0.01346835121512413, 0.015012315474450588, 0.6277219653129578, -0.3265298902988434, 0.02109861932694912, -0.31868961453437805, 0.030253509059548378, -0.015226585790514946, 0.6174954175949097, -0.3366450071334839, -0.020963728427886963, 0.002691771136596799, 0.007428895682096481, -0.02878248319029808, 0.29044967889785767, 0.21594375371932983, -0.005213138181716204, 0.9792070984840393, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.29502764344215393, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008856342174112797]} +{"t": 7.9126, "q": [-0.31125834584236145, -0.013451308012008667, 0.015025706961750984, 0.627704918384552, -0.3265298902988434, 0.02111312933266163, -0.3186640739440918, 0.030253509059548378, -0.01519980188459158, 0.617469847202301, -0.3366367816925049, -0.020963769406080246, 0.002691771136596799, 0.007421309128403664, -0.02879716083407402, 0.2904376983642578, 0.21596772968769073, -0.005201153922826052, 0.9792070984840393, 0.15762852132320404, 0.06167082488536835, -0.04087819159030914, 0.2950036823749542, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05243098363280296, 0.008868326433002949]} +{"t": 7.9293, "q": [-0.31126686930656433, -0.013459829613566399, 0.01503909844905138, 0.6277304887771606, -0.3265340030193329, 0.021105842664837837, -0.31864702701568604, 0.03027055412530899, -0.01519980188459158, 0.6174954175949097, -0.33662447333335876, -0.020985642448067665, 0.002691771136596799, 0.007413704413920641, -0.028782427310943604, 0.2904137372970581, 0.21596772968769073, -0.005213138181716204, 0.9791830778121948, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.2950036823749542, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05240701511502266, 0.008856342174112797]} +{"t": 7.946, "q": [-0.31126686930656433, -0.01346835121512413, 0.015065882354974747, 0.6277219653129578, -0.3265381455421448, 0.021113082766532898, -0.3186299800872803, 0.03027055412530899, -0.01519980188459158, 0.6174868941307068, -0.33662036061286926, -0.020992949604988098, 0.002731946762651205, 0.007406105753034353, -0.02877749875187874, 0.2904137372970581, 0.2159797102212906, -0.005201153922826052, 0.9791951179504395, 0.15762852132320404, 0.0616828091442585, -0.040890175849199295, 0.2950036823749542, -0.22380541265010834, 0.023069633170962334, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 7.9627, "q": [-0.31124982237815857, -0.01346835121512413, 0.015065882354974747, 0.6277304887771606, -0.3265463709831238, 0.021098509430885315, -0.3186299800872803, 0.03026203252375126, -0.01519980188459158, 0.6174868941307068, -0.33662858605384827, -0.020992891862988472, 0.0027453387156128883, 0.007413692772388458, -0.0287628211081028, 0.2904376983642578, 0.2159557342529297, -0.005201153922826052, 0.9792070984840393, 0.1576405018568039, 0.0616828091442585, -0.04090216010808945, 0.2950036823749542, -0.22380541265010834, 0.023081617429852486, 0.9780925512313843, -0.18356238305568695, 0.05241899937391281, 0.008868326433002949]} +{"t": 7.9795, "q": [-0.31125834584236145, -0.01346835121512413, 0.015079274773597717, 0.6277560591697693, -0.3265340030193329, 0.021105842664837837, -0.3186299800872803, 0.03026203252375126, -0.01519980188459158, 0.617469847202301, -0.33661627769470215, -0.020971177145838737, 0.002758730435743928, 0.007390908896923065, -0.02876763977110386, 0.29040175676345825, 0.2159557342529297, -0.005213138181716204, 0.9792070984840393, 0.1575925648212433, 0.0616828091442585, -0.04090216010808945, 0.295051634311676, -0.2237934172153473, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05243098363280296, 0.008868326433002949]} +{"t": 7.9962, "q": [-0.31124982237815857, -0.013476874679327011, 0.015079274773597717, 0.6277645826339722, -0.3265422582626343, 0.021105796098709106, -0.31858736276626587, 0.030253509059548378, -0.015213193371891975, 0.6174954175949097, -0.33662447333335876, -0.020985642448067665, 0.002718554809689522, 0.007398495450615883, -0.02875296212732792, 0.29040175676345825, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.15765248239040375, 0.06167082488536835, -0.04090216010808945, 0.29502764344215393, -0.22378143668174744, 0.023093601688742638, 0.9780805706977844, -0.1835743635892868, 0.05240701511502266, 0.008844357915222645]} +{"t": 8.0129, "q": [-0.3112327754497528, -0.01346835121512413, 0.015079274773597717, 0.627773106098175, -0.3265340030193329, 0.021105842664837837, -0.3185703158378601, 0.030279075726866722, -0.015226585790514946, 0.6174868941307068, -0.33662039041519165, -0.0209784097969532, 0.002691771136596799, 0.007398495450615883, -0.02875296212732792, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9791951179504395, 0.1576405018568039, 0.0616828091442585, -0.0409381128847599, 0.2950036823749542, -0.22378143668174744, 0.02310558594763279, 0.9780805706977844, -0.18353840708732605, 0.05243098363280296, 0.008856342174112797]} +{"t": 8.0299, "q": [-0.3112327754497528, -0.01346835121512413, 0.015106058679521084, 0.6277645826339722, -0.3265340030193329, 0.021105842664837837, -0.318578839302063, 0.03027055412530899, -0.01519980188459158, 0.6174868941307068, -0.33661627769470215, -0.020971177145838737, 0.0026783791836351156, 0.00746682845056057, -0.02870909683406353, 0.2904376983642578, 0.2159557342529297, -0.005213138181716204, 0.9791951179504395, 0.15760454535484314, 0.0616828091442585, -0.04090216010808945, 0.2950156629085541, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.052395034581422806, 0.008844357915222645]} +{"t": 8.0469, "q": [-0.3112412989139557, -0.01346835121512413, 0.015079274773597717, 0.6277645826339722, -0.3265381157398224, 0.021098555997014046, -0.31854474544525146, 0.03026203252375126, -0.015253368765115738, 0.617469847202301, -0.33662039041519165, -0.0209784097969532, 0.002691771136596799, 0.00745923537760973, -0.028713971376419067, 0.2903897762298584, 0.21596772968769073, -0.005213138181716204, 0.9791951179504395, 0.15756858885288239, 0.0616828091442585, -0.04090216010808945, 0.29503965377807617, -0.22380541265010834, 0.023093601688742638, 0.9780805706977844, -0.18356238305568695, 0.05241899937391281, 0.008844357915222645]} diff --git a/Data/G1/bird.jsonl b/Data/G1/bird.jsonl new file mode 100644 index 0000000..97a01c9 --- /dev/null +++ b/Data/G1/bird.jsonl @@ -0,0 +1,1051 @@ +{"meta": {"hz": 60.0, "motors": 29}} +{"t": 0.0, "q": [-0.3479716181755066, -0.011644618585705757, 0.005155880004167557, 0.6285741925239563, -0.3162897527217865, 0.015583221800625324, -0.38725003600120544, 0.0005113269435241818, -0.00483447453007102, 0.6020533442497253, -0.2821338474750519, -9.098838199861348e-05, 0.0026649872306734324, 0.005223850253969431, -0.04208042845129967, 0.2891673743724823, 0.2220437228679657, -0.005117264110594988, 0.980141818523407, 0.14554841816425323, 0.04054263234138489, -0.061347249895334244, 0.2941887676715851, -0.22290658950805664, 0.02281796559691429, 0.9774333834648132, -0.17528127133846283, 0.07061105221509933, 0.024052340537309647]} +{"t": 0.0169, "q": [-0.34795457124710083, -0.011636096984148026, 0.00512909609824419, 0.6285400986671448, -0.3162360191345215, 0.015663331374526024, -0.3872756063938141, 0.000502804818097502, -0.00483447453007102, 0.60199373960495, -0.28214210271835327, -0.00010539558570599183, 0.003361365757882595, 0.005376083310693502, -0.04246625676751137, 0.28800490498542786, 0.2198745757341385, -0.00490154791623354, 0.9816758036613464, 0.14545254409313202, 0.04084223881363869, -0.06162288784980774, 0.29374533891677856, -0.22163626551628113, 0.02310558594763279, 0.9782363772392273, -0.1753891408443451, 0.07113835960626602, 0.024112261831760406]} +{"t": 0.0337, "q": [-0.3479716181755066, -0.011687229387462139, 0.00516927195712924, 0.6285400986671448, -0.3162360191345215, 0.015648813918232918, -0.3873097002506256, 0.000502804818097502, -0.004847866017371416, 0.6020362973213196, -0.2821338474750519, -9.098838199861348e-05, 0.003696163184940815, 0.005315353628247976, -0.042713116854429245, 0.28715401887893677, 0.217873215675354, -0.004577973857522011, 0.982970118522644, 0.14548850059509277, 0.04127367213368416, -0.061838600784540176, 0.2929903268814087, -0.2202940285205841, 0.02323741279542446, 0.9794228076934814, -0.17540112137794495, 0.07171360403299332, 0.024172183126211166]} +{"t": 0.0505, "q": [-0.3479716181755066, -0.011653141118586063, 0.005182663444429636, 0.6285400986671448, -0.31632286310195923, 0.015495986677706242, -0.3873182237148285, 0.0004857605672441423, -0.004807690624147654, 0.6020533442497253, -0.2821338474750519, -9.098838199861348e-05, 0.0038300822488963604, 0.005429505370557308, -0.04292595386505127, 0.2865188717842102, 0.2157520055770874, -0.004757737275213003, 0.9834974408149719, 0.14557237923145294, 0.041309624910354614, -0.06199439615011215, 0.2923072278499603, -0.21820877492427826, 0.02353701926767826, 0.9803215861320496, -0.17542508244514465, 0.07207313179969788, 0.024172183126211166]} +{"t": 0.0673, "q": [-0.3479801416397095, -0.011653141118586063, 0.005236231256276369, 0.6285400986671448, -0.3162815272808075, 0.015568753704428673, -0.38733527064323425, 0.00046871634549461305, -0.004847866017371416, 0.6020362973213196, -0.2821338474750519, -9.098838199861348e-05, 0.0038300822488963604, 0.00567290373146534, -0.04308485612273216, 0.28606346249580383, 0.2123604714870453, -0.005117264110594988, 0.983797013759613, 0.14545254409313202, 0.041321609169244766, -0.06221011281013489, 0.29160016775131226, -0.2157280445098877, 0.02394448220729828, 0.9810166954994202, -0.1754370778799057, 0.07232479751110077, 0.02424408681690693]} +{"t": 0.0842, "q": [-0.3479290008544922, -0.011678706854581833, 0.005236231256276369, 0.6285486221313477, -0.3162236213684082, 0.015685157850384712, -0.3872756063938141, 0.000502804818097502, -0.00479429867118597, 0.6020448207855225, -0.2821296453475952, -9.823574509937316e-05, 0.0038300822488963604, 0.005764226894825697, -0.04325314983725548, 0.2857039272785187, 0.20894496142864227, -0.005320996046066284, 0.9838929176330566, 0.14553643763065338, 0.04133359342813492, -0.06238987669348717, 0.29088112711906433, -0.2131034880876541, 0.02449575625360012, 0.9817237854003906, -0.17547301948070526, 0.07255250215530396, 0.024280039593577385]} +{"t": 0.1009, "q": [-0.34794604778289795, -0.011644618585705757, 0.005196055397391319, 0.6285400986671448, -0.3163352310657501, 0.015503180213272572, -0.38729265332221985, 0.000502804818097502, -0.004807690624147654, 0.6020022630691528, -0.28214210271835327, -0.00010539558570599183, 0.003816690295934677, 0.006007606163620949, -0.04337251931428909, 0.2853923439979553, 0.2057931125164032, -0.005404885392636061, 0.983940839767456, 0.14551246166229248, 0.04133359342813492, -0.06247376650571823, 0.29032984375953674, -0.21110212802886963, 0.024999093264341354, 0.9823229908943176, -0.17544905841350555, 0.07263638824224472, 0.024292023852467537]} +{"t": 0.1176, "q": [-0.34790343046188354, -0.011653141118586063, 0.005196055397391319, 0.6285571455955505, -0.3163393437862396, 0.015510405413806438, -0.38725003600120544, 0.000502804818097502, -0.004847866017371416, 0.6020277738571167, -0.28214216232299805, -9.095356654142961e-05, 0.0038434739690274, 0.006045674905180931, -0.04348628595471382, 0.28511670231819153, 0.2033722996711731, -0.0054887752048671246, 0.9839767813682556, 0.14550048112869263, 0.04133359342813492, -0.062557652592659, 0.28995832800865173, -0.20967599749565125, 0.025502432137727737, 0.982742428779602, -0.17549699544906616, 0.07270829379558563, 0.02431599237024784]} +{"t": 0.1345, "q": [-0.3478863835334778, -0.011670185253024101, 0.0052094473503530025, 0.6285315752029419, -0.31633108854293823, 0.015524954535067081, -0.3872670829296112, 0.000502804818097502, -0.004847866017371416, 0.6020192503929138, -0.28214210271835327, -0.00010539558570599183, 0.0038300822488963604, 0.006106516346335411, -0.04350624606013298, 0.2849009931087494, 0.20153871178627014, -0.005584648810327053, 0.9840007424354553, 0.14550048112869263, 0.04129764065146446, -0.06261757761240005, 0.28968268632888794, -0.20864535868167877, 0.025802036747336388, 0.9829940795898438, -0.1754610389471054, 0.07270829379558563, 0.024327976629137993]} +{"t": 0.1512, "q": [-0.34790343046188354, -0.011678706854581833, 0.005196055397391319, 0.6285400986671448, -0.31632697582244873, 0.015503229573369026, -0.38729265332221985, 0.000502804818097502, -0.004888041876256466, 0.6020277738571167, -0.28214210271835327, -0.00010539558570599183, 0.0038300822488963604, 0.006106516346335411, -0.04350624606013298, 0.28478115797042847, 0.2001485526561737, -0.005584648810327053, 0.9840726852416992, 0.14554841816425323, 0.041321609169244766, -0.06259360909461975, 0.28961077332496643, -0.2079143226146698, 0.02593386359512806, 0.983197808265686, -0.17550897598266602, 0.07272028177976608, 0.024327976629137993]} +{"t": 0.1679, "q": [-0.34790343046188354, -0.011670185253024101, 0.005196055397391319, 0.6285315752029419, -0.31632697582244873, 0.01551773026585579, -0.3872756063938141, 0.000502804818097502, -0.00483447453007102, 0.6020618677139282, -0.28214210271835327, -0.00010539558570599183, 0.003816690295934677, 0.006091312039643526, -0.04351608082652092, 0.2847212255001068, 0.1989021897315979, -0.0055367122404277325, 0.9840846657752991, 0.14550048112869263, 0.041321609169244766, -0.0626055896282196, 0.28962278366088867, -0.2073630541563034, 0.02606569044291973, 0.9834015369415283, -0.17549699544906616, 0.07275623083114624, 0.024327976629137993]} +{"t": 0.1847, "q": [-0.34790343046188354, -0.011653141118586063, 0.0052094473503530025, 0.6285315752029419, -0.31631872057914734, 0.015517779625952244, -0.3872756063938141, 0.0004942826926708221, -0.0049148257821798325, 0.6020618677139282, -0.2821338474750519, -9.098838199861348e-05, 0.0038300822488963604, 0.006060895975679159, -0.04351598396897316, 0.2847451865673065, 0.19784757494926453, -0.0055247279815375805, 0.9840846657752991, 0.14551246166229248, 0.04133359342813492, -0.06261757761240005, 0.28962278366088867, -0.20693162083625793, 0.026089658960700035, 0.9836891889572144, -0.17544905841350555, 0.07276821881532669, 0.024327976629137993]} +{"t": 0.2014, "q": [-0.34789490699768066, -0.011644618585705757, 0.005196055397391319, 0.628523051738739, -0.31632286310195923, 0.015495986677706242, -0.38734379410743713, 0.000502804818097502, -0.004941609688103199, 0.6020703911781311, -0.282137930393219, -0.00011264294880675152, 0.0038702578749507666, 0.0060304878279566765, -0.04353564977645874, 0.2847451865673065, 0.19674502313137054, -0.0055247279815375805, 0.9840846657752991, 0.14553643763065338, 0.04134557768702507, -0.0626055896282196, 0.28961077332496643, -0.20647621154785156, 0.026101643219590187, 0.9840127229690552, -0.17553295195102692, 0.0728401243686676, 0.02431599237024784]} +{"t": 0.2181, "q": [-0.3479204773902893, -0.011627575382590294, 0.00516927195712924, 0.6285315752029419, -0.3163146376609802, 0.01549603696912527, -0.38732674717903137, 0.000502804818097502, -0.004928217735141516, 0.6020959615707397, -0.28214210271835327, -0.00010539558570599183, 0.0038300822488963604, 0.006030475255101919, -0.04350600391626358, 0.2847451865673065, 0.19584621489048004, -0.0055486964993178844, 0.9840966463088989, 0.14553643763065338, 0.04134557768702507, -0.06264154613018036, 0.2896347641944885, -0.20596089959144592, 0.026101643219590187, 0.9842044711112976, -0.17550897598266602, 0.07285210490226746, 0.02431599237024784]} +{"t": 0.2349, "q": [-0.3479801416397095, -0.01160200871527195, 0.005115704145282507, 0.6285400986671448, -0.31637659668922424, 0.015415913425385952, -0.38738641142845154, 0.0005454153870232403, -0.004847866017371416, 0.6020703911781311, -0.28214627504348755, -9.814822260523215e-05, 0.0038434739690274, 0.006030475255101919, -0.04350600391626358, 0.2847451865673065, 0.1953308880329132, -0.0055486964993178844, 0.9841086268424988, 0.14552444219589233, 0.04133359342813492, -0.06265352666378021, 0.2896347641944885, -0.2055174857378006, 0.026137595996260643, 0.9843482971191406, -0.17544905841350555, 0.0728640928864479, 0.024339960888028145]} +{"t": 0.2516, "q": [-0.3479801416397095, -0.011584963649511337, 0.005075528286397457, 0.6285315752029419, -0.31636008620262146, 0.015430495142936707, -0.38735231757164, 0.0005113269435241818, -0.004888041876256466, 0.6020959615707397, -0.28214627504348755, -9.814822260523215e-05, 0.0038568659219890833, 0.006053285673260689, -0.04350113496184349, 0.2847212255001068, 0.19507922232151031, -0.005560680292546749, 0.9841206073760986, 0.14554841816425323, 0.041321609169244766, -0.06266551464796066, 0.28962278366088867, -0.20502611994743347, 0.026137595996260643, 0.9844081997871399, -0.1754370778799057, 0.0728401243686676, 0.02431599237024784]} +{"t": 0.2683, "q": [-0.3479716181755066, -0.011584963649511337, 0.005048744846135378, 0.6285315752029419, -0.3163600564002991, 0.015445012599229813, -0.3873693645000458, 0.0005113269435241818, -0.00483447453007102, 0.6020959615707397, -0.28215041756629944, -0.00010534287139307708, 0.0038702578749507666, 0.006007677875459194, -0.04354051873087883, 0.2847212255001068, 0.1950312852859497, -0.0055247279815375805, 0.9841445684432983, 0.14547650516033173, 0.04135756194591522, -0.06266551464796066, 0.28961077332496643, -0.2046665996313095, 0.026161564514040947, 0.9844681620597839, -0.17544905841350555, 0.0728401243686676, 0.02431599237024784]} +{"t": 0.285, "q": [-0.3479716181755066, -0.011584963649511337, 0.005075528286397457, 0.6285315752029419, -0.3163518011569977, 0.01544504426419735, -0.38742899894714355, 0.0005454153870232403, -0.004807690624147654, 0.6020703911781311, -0.28214624524116516, -0.00011259023449383676, 0.0038434739690274, 0.006068510469049215, -0.04354071244597435, 0.2847212255001068, 0.19509120285511017, -0.0055247279815375805, 0.9841445684432983, 0.14544056355953217, 0.04134557768702507, -0.06266551464796066, 0.28962278366088867, -0.20439095795154572, 0.026149580255150795, 0.9844921231269836, -0.17544905841350555, 0.07282813638448715, 0.02431599237024784]} +{"t": 0.302, "q": [-0.34799718856811523, -0.011584963649511337, 0.005075528286397457, 0.628523051738739, -0.31637248396873474, 0.015423187986016273, -0.38743752241134644, 0.0005198490689508617, -0.004700555466115475, 0.6020618677139282, -0.2821504771709442, -9.090085950447246e-05, 0.0038568659219890833, 0.006083718501031399, -0.04354076460003853, 0.28470924496650696, 0.19512715935707092, -0.005476790945976973, 0.9841325879096985, 0.14552444219589233, 0.04134557768702507, -0.06268948316574097, 0.2895987927913666, -0.20412731170654297, 0.0261735487729311, 0.9845160841941833, -0.1754850149154663, 0.0728401243686676, 0.02431599237024784]} +{"t": 0.3187, "q": [-0.34799718856811523, -0.011584963649511337, 0.00508892023935914, 0.628523051738739, -0.31636834144592285, 0.015430462546646595, -0.3874630928039551, 0.0005283711361698806, -0.004713947419077158, 0.6020703911781311, -0.28214210271835327, -0.00010539558570599183, 0.0038970415480434895, 0.006076112389564514, -0.04353579878807068, 0.2847212255001068, 0.19511516392230988, -0.005452822428196669, 0.9841445684432983, 0.14554841816425323, 0.04135756194591522, -0.06270146369934082, 0.2895987927913666, -0.20389960706233978, 0.026197517290711403, 0.9845520257949829, -0.1754850149154663, 0.07288806140422821, 0.02431599237024784]} +{"t": 0.3354, "q": [-0.34803980588912964, -0.011593486182391644, 0.00508892023935914, 0.628523051738739, -0.3163641691207886, 0.01545223779976368, -0.38751423358917236, 0.0005113269435241818, -0.004687163513153791, 0.6020703911781311, -0.28214627504348755, -9.814822260523215e-05, 0.0038970415480434895, 0.006022894289344549, -0.04356033354997635, 0.2847451865673065, 0.19510318338871002, -0.005464806687086821, 0.984168529510498, 0.14552444219589233, 0.041369546204805374, -0.06268948316574097, 0.2896467447280884, -0.20373183488845825, 0.026221483945846558, 0.9845759868621826, -0.17552095651626587, 0.07288806140422821, 0.024327976629137993]} +{"t": 0.3523, "q": [-0.34803128242492676, -0.01160200871527195, 0.005075528286397457, 0.628523051738739, -0.31637245416641235, 0.015437687747180462, -0.38751423358917236, 0.0005198490689508617, -0.004740730859339237, 0.6020703911781311, -0.28214627504348755, -9.814822260523215e-05, 0.0038434739690274, 0.006038093939423561, -0.04354061558842659, 0.2847212255001068, 0.19509120285511017, -0.005476790945976973, 0.9841805100440979, 0.14553643763065338, 0.04139351472258568, -0.06270146369934082, 0.2896347641944885, -0.20354008674621582, 0.026221483945846558, 0.9846359491348267, -0.17555691301822662, 0.07295996695756912, 0.02430400811135769]} +{"t": 0.369, "q": [-0.3480483293533325, -0.01160200871527195, 0.005102312192320824, 0.6285400986671448, -0.3163600265979767, 0.01547401212155819, -0.38751423358917236, 0.0005454153870232403, -0.00479429867118597, 0.6020703911781311, -0.2821504771709442, -9.090085950447246e-05, 0.0038568659219890833, 0.006022885907441378, -0.04354056715965271, 0.2847212255001068, 0.19509120285511017, -0.005476790945976973, 0.9841805100440979, 0.14554841816425323, 0.041369546204805374, -0.06268948316574097, 0.28961077332496643, -0.20336031913757324, 0.02624545246362686, 0.9846479296684265, -0.17550897598266602, 0.07290004193782806, 0.02431599237024784]} +{"t": 0.3858, "q": [-0.348056823015213, -0.011636096984148026, 0.00512909609824419, 0.6285145282745361, -0.316339373588562, 0.01549590565264225, -0.38751423358917236, 0.0005198490689508617, -0.00479429867118597, 0.6020448207855225, -0.28214627504348755, -9.814822260523215e-05, 0.0038300822488963604, 0.005992478225380182, -0.04356023296713829, 0.2847212255001068, 0.19510318338871002, -0.0055007594637572765, 0.9841805100440979, 0.14545254409313202, 0.041369546204805374, -0.06270146369934082, 0.2895987927913666, -0.20324046909809113, 0.02630537375807762, 0.9846359491348267, -0.17553295195102692, 0.07290004193782806, 0.024339960888028145]} +{"t": 0.4025, "q": [-0.34803128242492676, -0.011644618585705757, 0.00516927195712924, 0.628523051738739, -0.3163434863090515, 0.015503129921853542, -0.38751423358917236, 0.0005113269435241818, -0.00483447453007102, 0.6020618677139282, -0.28214627504348755, -9.814822260523215e-05, 0.003816690295934677, 0.006030492018908262, -0.04354553297162056, 0.2846972644329071, 0.19511516392230988, -0.005476790945976973, 0.9841805100440979, 0.14552444219589233, 0.041369546204805374, -0.06270146369934082, 0.28961077332496643, -0.2031685709953308, 0.026377279311418533, 0.9846599102020264, -0.1754370778799057, 0.07290004193782806, 0.024327976629137993]} +{"t": 0.4192, "q": [-0.34798866510391235, -0.011670185253024101, 0.005222839303314686, 0.6285486221313477, -0.3161698281764984, 0.015794266015291214, -0.38743752241134644, 0.000502804818097502, -0.004861257970333099, 0.6020703911781311, -0.28214627504348755, -9.814822260523215e-05, 0.0038970415480434895, 0.006015283986926079, -0.04354548454284668, 0.28468528389930725, 0.19512715935707092, -0.005464806687086821, 0.9841924905776978, 0.14551246166229248, 0.041369546204805374, -0.06268948316574097, 0.2895868122577667, -0.20308467745780945, 0.026401247829198837, 0.9846718907356262, -0.1754610389471054, 0.07290004193782806, 0.024327976629137993]} +{"t": 0.4359, "q": [-0.34798866510391235, -0.011653141118586063, 0.005263015162199736, 0.628523051738739, -0.3161863684654236, 0.015765167772769928, -0.3874630928039551, 0.000502804818097502, -0.00483447453007102, 0.6020533442497253, -0.2821337878704071, -0.0001054483000189066, 0.00388364982791245, 0.005984880030155182, -0.04357503354549408, 0.28468528389930725, 0.19511516392230988, -0.005452822428196669, 0.9841924905776978, 0.14550048112869263, 0.041381530463695526, -0.06270146369934082, 0.2895987927913666, -0.20296484231948853, 0.026437200605869293, 0.9846599102020264, -0.17542508244514465, 0.07288806140422821, 0.024292023852467537]} +{"t": 0.4527, "q": [-0.348014235496521, -0.011670185253024101, 0.005276407115161419, 0.6285315752029419, -0.31619876623153687, 0.01575782522559166, -0.3874460458755493, 0.000502804818097502, -0.004888041876256466, 0.6020618677139282, -0.28213801980018616, -8.374101889785379e-05, 0.0038702578749507666, 0.005992469377815723, -0.04354047030210495, 0.28470924496650696, 0.19512715935707092, -0.005476790945976973, 0.9841924905776978, 0.14553643763065338, 0.041381530463695526, -0.06271345168352127, 0.28961077332496643, -0.20289292931556702, 0.02653307467699051, 0.9846718907356262, -0.1754370778799057, 0.07290004193782806, 0.024292023852467537]} +{"t": 0.4694, "q": [-0.34799718856811523, -0.011678706854581833, 0.005263015162199736, 0.6285400986671448, -0.3161781132221222, 0.01577971689403057, -0.3874204754829407, 0.000502804818097502, -0.004941609688103199, 0.6020618677139282, -0.28212547302246094, -0.00010548310820013285, 0.00388364982791245, 0.006000067573040724, -0.04352566972374916, 0.28468528389930725, 0.19510318338871002, -0.0055007594637572765, 0.984168529510498, 0.14552444219589233, 0.04135756194591522, -0.06271345168352127, 0.2895868122577667, -0.20283301174640656, 0.026581011712551117, 0.9846718907356262, -0.1754131019115448, 0.07288806140422821, 0.02431599237024784]} +{"t": 0.4862, "q": [-0.3479716181755066, -0.011678706854581833, 0.005249623209238052, 0.6285400986671448, -0.3161657154560089, 0.01580154150724411, -0.3874034583568573, 0.000502804818097502, -0.004968393128365278, 0.6020874381065369, -0.2821255326271057, -9.104109631152824e-05, 0.003816690295934677, 0.006007669493556023, -0.04352075234055519, 0.2846972644329071, 0.19509120285511017, -0.005476790945976973, 0.9841805100440979, 0.14551246166229248, 0.041381530463695526, -0.06270146369934082, 0.28961077332496643, -0.2027970552444458, 0.02672482281923294, 0.9846718907356262, -0.1754610389471054, 0.07294797897338867, 0.02431599237024784]} +{"t": 0.5029, "q": [-0.34798866510391235, -0.011670185253024101, 0.005249623209238052, 0.6285400986671448, -0.3161863684654236, 0.015765167772769928, -0.3874034583568573, 0.0005198490689508617, -0.004968393128365278, 0.6020703911781311, -0.28213801980018616, -8.374101889785379e-05, 0.0038568659219890833, 0.006007677875459194, -0.04354051873087883, 0.28468528389930725, 0.19510318338871002, -0.0055007594637572765, 0.9841805100440979, 0.14547650516033173, 0.04139351472258568, -0.06268948316574097, 0.2895987927913666, -0.2027730941772461, 0.02683268114924431, 0.9846718907356262, -0.1754610389471054, 0.07293599843978882, 0.02430400811135769]} +{"t": 0.5196, "q": [-0.3479630947113037, -0.011670185253024101, 0.005276407115161419, 0.6285400986671448, -0.3161822557449341, 0.01575794257223606, -0.3873693645000458, 0.0005198490689508617, -0.004955001175403595, 0.6020703911781311, -0.2821255326271057, -9.104109631152824e-05, 0.0038702578749507666, 0.005969667807221413, -0.04356510192155838, 0.28468528389930725, 0.19511516392230988, -0.005476790945976973, 0.9841805100440979, 0.1455603986978531, 0.04139351472258568, -0.06270146369934082, 0.2895987927913666, -0.20272515714168549, 0.027060380205512047, 0.9846479296684265, -0.17542508244514465, 0.07298392802476883, 0.024292023852467537]} +{"t": 0.5363, "q": [-0.3479716181755066, -0.011687229387462139, 0.005249623209238052, 0.6285315752029419, -0.3163435161113739, 0.015474130399525166, -0.3873693645000458, 0.000502804818097502, -0.004968393128365278, 0.6021044850349426, -0.2821255326271057, -9.104109631152824e-05, 0.0038300822488963604, 0.0059772697277367115, -0.04356018453836441, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.984168529510498, 0.14547650516033173, 0.041381530463695526, -0.06271345168352127, 0.2895987927913666, -0.20271317660808563, 0.02726411260664463, 0.9846958518028259, -0.17549699544906616, 0.07297194749116898, 0.02431599237024784]} +{"t": 0.5531, "q": [-0.3479630947113037, -0.011687229387462139, 0.005222839303314686, 0.6285486221313477, -0.3163145184516907, 0.015554072335362434, -0.3873693645000458, 0.0005113269435241818, -0.004968393128365278, 0.6020874381065369, -0.2821213901042938, -8.38464402477257e-05, 0.0038300822488963604, 0.005977273918688297, -0.04357006773352623, 0.28468528389930725, 0.19510318338871002, -0.005476790945976973, 0.9841805100440979, 0.14548850059509277, 0.041381530463695526, -0.06272543221712112, 0.28961077332496643, -0.20267722010612488, 0.02744387648999691, 0.9846838712692261, -0.17553295195102692, 0.07297194749116898, 0.02430400811135769]} +{"t": 0.5698, "q": [-0.34795457124710083, -0.011695751920342445, 0.005222839303314686, 0.6285400986671448, -0.31631457805633545, 0.015525072813034058, -0.3873693645000458, 0.000502804818097502, -0.0049148257821798325, 0.6021130084991455, -0.2821296453475952, -9.823574509937316e-05, 0.0038970415480434895, 0.005969667807221413, -0.04356510192155838, 0.28468528389930725, 0.19511516392230988, -0.005476790945976973, 0.9841924905776978, 0.14551246166229248, 0.04140549898147583, -0.06271345168352127, 0.28961077332496643, -0.20265324413776398, 0.027575701475143433, 0.9846958518028259, -0.1754850149154663, 0.07297194749116898, 0.024327976629137993]} +{"t": 0.5865, "q": [-0.3479630947113037, -0.01166166365146637, 0.005182663444429636, 0.6285400986671448, -0.31631872057914734, 0.015517779625952244, -0.38734379410743713, 0.000502804818097502, -0.0049148257821798325, 0.6021044850349426, -0.28212970495224, -8.379373321076855e-05, 0.0038434739690274, 0.005992478225380182, -0.04356023296713829, 0.28468528389930725, 0.19510318338871002, -0.0055007594637572765, 0.9841805100440979, 0.14553643763065338, 0.041381530463695526, -0.06273742020130157, 0.2895868122577667, -0.20262928307056427, 0.02761165425181389, 0.9846958518028259, -0.17549699544906616, 0.07298392802476883, 0.024327976629137993]} +{"t": 0.6033, "q": [-0.34795457124710083, -0.011687229387462139, 0.005155880004167557, 0.6285571455955505, -0.31631872057914734, 0.015517779625952244, -0.3873693645000458, 0.0005113269435241818, -0.004941609688103199, 0.6021215319633484, -0.2821296453475952, -9.823574509937316e-05, 0.0038702578749507666, 0.005954468157142401, -0.04358481988310814, 0.28466129302978516, 0.19510318338871002, -0.005476790945976973, 0.9841805100440979, 0.14551246166229248, 0.04139351472258568, -0.06271345168352127, 0.2895987927913666, -0.20261730253696442, 0.027791418135166168, 0.9847078323364258, -0.17554493248462677, 0.07300789654254913, 0.024339960888028145]} +{"t": 0.6202, "q": [-0.3479290008544922, -0.011670185253024101, 0.0051424880512058735, 0.6285571455955505, -0.31631460785865784, 0.01551053673028946, -0.38735231757164, 0.0005198490689508617, -0.004847866017371416, 0.6021300554275513, -0.28212970495224, -8.379373321076855e-05, 0.00388364982791245, 0.005984884686768055, -0.0435849167406559, 0.28466129302978516, 0.19509120285511017, -0.005476790945976973, 0.9841805100440979, 0.14550048112869263, 0.04140549898147583, -0.06270146369934082, 0.2895868122577667, -0.20260530710220337, 0.027851339429616928, 0.9846958518028259, -0.17554493248462677, 0.07301988452672958, 0.02431599237024784]} +{"t": 0.637, "q": [-0.3479716181755066, -0.01166166365146637, 0.005155880004167557, 0.6285656690597534, -0.31631457805633545, 0.015525072813034058, -0.3873693645000458, 0.0005198490689508617, -0.004767514765262604, 0.6021300554275513, -0.28213801980018616, -8.374101889785379e-05, 0.0038300822488963604, 0.006000096909701824, -0.0435948483645916, 0.28468528389930725, 0.19511516392230988, -0.005476790945976973, 0.9841805100440979, 0.14546452462673187, 0.041369546204805374, -0.06272543221712112, 0.2895987927913666, -0.20259332656860352, 0.02805507183074951, 0.9846958518028259, -0.17554493248462677, 0.07301988452672958, 0.02431599237024784]} +{"t": 0.6537, "q": [-0.3479630947113037, -0.011670185253024101, 0.005155880004167557, 0.6285656690597534, -0.31632283329963684, 0.01552500482648611, -0.38738641142845154, 0.0004857605672441423, -0.004780906718224287, 0.6021044850349426, -0.2821338474750519, -9.098838199861348e-05, 0.0038434739690274, 0.005992494989186525, -0.04359976202249527, 0.28468528389930725, 0.19510318338871002, -0.005464806687086821, 0.9841924905776978, 0.14552444219589233, 0.04140549898147583, -0.06273742020130157, 0.2895868122577667, -0.20259332656860352, 0.02810300886631012, 0.9847317934036255, -0.17550897598266602, 0.07304385304450989, 0.024327976629137993]} +{"t": 0.6705, "q": [-0.3479716181755066, -0.011670185253024101, 0.0051424880512058735, 0.6285741925239563, -0.31632286310195923, 0.015510505065321922, -0.38738641142845154, 0.000502804818097502, -0.0047541228123009205, 0.6021215319633484, -0.28213387727737427, -7.654637011000887e-05, 0.0038702578749507666, 0.006015296559780836, -0.04357513040304184, 0.28468528389930725, 0.19510318338871002, -0.005464806687086821, 0.9841924905776978, 0.14542856812477112, 0.04140549898147583, -0.06272543221712112, 0.28961077332496643, -0.20259332656860352, 0.028126977384090424, 0.9846958518028259, -0.17553295195102692, 0.07305583357810974, 0.02431599237024784]} +{"t": 0.6872, "q": [-0.3479716181755066, -0.011678706854581833, 0.005155880004167557, 0.6285571455955505, -0.31631872057914734, 0.015517779625952244, -0.38738641142845154, 0.000502804818097502, -0.004821082577109337, 0.6021215319633484, -0.28213801980018616, -8.374101889785379e-05, 0.0038702578749507666, 0.005939272698014975, -0.04361441731452942, 0.28468528389930725, 0.19510318338871002, -0.005464806687086821, 0.9842165112495422, 0.14541658759117126, 0.04140549898147583, -0.06272543221712112, 0.2895868122577667, -0.20260530710220337, 0.028138961642980576, 0.9846958518028259, -0.17555691301822662, 0.07306782156229019, 0.02430400811135769]} +{"t": 0.704, "q": [-0.3479716181755066, -0.011678706854581833, 0.00516927195712924, 0.6285486221313477, -0.31632697582244873, 0.015503229573369026, -0.3874119520187378, 0.000502804818097502, -0.00479429867118597, 0.6021215319633484, -0.28213387727737427, -7.654637011000887e-05, 0.0038970415480434895, 0.0059696887619793415, -0.04361451417207718, 0.28468528389930725, 0.19513913989067078, -0.005476790945976973, 0.9841924905776978, 0.14553643763065338, 0.04140549898147583, -0.06272543221712112, 0.28961077332496643, -0.20259332656860352, 0.02816293016076088, 0.9846958518028259, -0.1754850149154663, 0.07303186506032944, 0.02431599237024784]} +{"t": 0.7208, "q": [-0.3479801416397095, -0.011687229387462139, 0.00516927195712924, 0.6285571455955505, -0.31631872057914734, 0.015517779625952244, -0.3874034583568573, 0.0005113269435241818, -0.00483447453007102, 0.6021044850349426, -0.28214216232299805, -9.095356654142961e-05, 0.0038300822488963604, 0.005962078459560871, -0.04359966516494751, 0.28468528389930725, 0.19510318338871002, -0.005452822428196669, 0.9842044711112976, 0.14552444219589233, 0.04140549898147583, -0.06273742020130157, 0.2895987927913666, -0.20259332656860352, 0.02816293016076088, 0.9847317934036255, -0.17553295195102692, 0.07306782156229019, 0.024327976629137993]} +{"t": 0.7375, "q": [-0.3479801416397095, -0.011687229387462139, 0.005182663444429636, 0.6285571455955505, -0.3162690997123718, 0.015590596944093704, -0.38738641142845154, 0.000502804818097502, -0.004727339372038841, 0.6020959615707397, -0.28212970495224, -8.379373321076855e-05, 0.0038300822488963604, 0.005962078459560871, -0.04359966516494751, 0.28468528389930725, 0.19510318338871002, -0.005452822428196669, 0.9842044711112976, 0.14541658759117126, 0.04140549898147583, -0.06272543221712112, 0.2895987927913666, -0.20258134603500366, 0.028198881074786186, 0.9847437739372253, -0.17549699544906616, 0.07305583357810974, 0.024339960888028145]} +{"t": 0.7542, "q": [-0.3479716181755066, -0.011678706854581833, 0.005196055397391319, 0.6285656690597534, -0.31625255942344666, 0.015634214505553246, -0.3873693645000458, 0.000502804818097502, -0.004767514765262604, 0.6021215319633484, -0.28212970495224, -8.379373321076855e-05, 0.0038434739690274, 0.005962074268609285, -0.04358978196978569, 0.28466129302978516, 0.19511516392230988, -0.005464806687086821, 0.9841924905776978, 0.14547650516033173, 0.04140549898147583, -0.06272543221712112, 0.2895987927913666, -0.20259332656860352, 0.02822284959256649, 0.9847317934036255, -0.1754131019115448, 0.07306782156229019, 0.02431599237024784]} +{"t": 0.7714, "q": [-0.3479716181755066, -0.011687229387462139, 0.0052094473503530025, 0.6285741925239563, -0.3162194788455963, 0.01569243147969246, -0.3873608410358429, 0.000502804818097502, -0.004740730859339237, 0.6021044850349426, -0.2821255326271057, -9.104109631152824e-05, 0.0038568659219890833, 0.005977278109639883, -0.04357995092868805, 0.28468528389930725, 0.19512715935707092, -0.005452822428196669, 0.9842044711112976, 0.14548850059509277, 0.04140549898147583, -0.06272543221712112, 0.28961077332496643, -0.20259332656860352, 0.028258802369236946, 0.9847317934036255, -0.17547301948070526, 0.07303186506032944, 0.024327976629137993]} +{"t": 0.7883, "q": [-0.3479801416397095, -0.011687229387462139, 0.005222839303314686, 0.6285741925239563, -0.31620293855667114, 0.015721550211310387, -0.3873608410358429, 0.0004942826926708221, -0.00479429867118597, 0.6020959615707397, -0.28213387727737427, -7.654637011000887e-05, 0.0038970415480434895, 0.005969676189124584, -0.04358486831188202, 0.28466129302978516, 0.19511516392230988, -0.005464806687086821, 0.9842044711112976, 0.14550048112869263, 0.04140549898147583, -0.06273742020130157, 0.28961077332496643, -0.20258134603500366, 0.02834269218146801, 0.9847317934036255, -0.1754370778799057, 0.0730917900800705, 0.02431599237024784]} +{"t": 0.805, "q": [-0.3479716181755066, -0.011712796054780483, 0.005222839303314686, 0.6285571455955505, -0.3161616027355194, 0.015794316306710243, -0.3873693645000458, 0.000502804818097502, -0.004821082577109337, 0.6020959615707397, -0.2821255326271057, -9.104109631152824e-05, 0.0038702578749507666, 0.005954476539045572, -0.04360458254814148, 0.28466129302978516, 0.19509120285511017, -0.005452822428196669, 0.9842165112495422, 0.14550048112869263, 0.04140549898147583, -0.06273742020130157, 0.2895987927913666, -0.20258134603500366, 0.028438566252589226, 0.9847317934036255, -0.1754850149154663, 0.07310377061367035, 0.024339960888028145]} +{"t": 0.8218, "q": [-0.34795457124710083, -0.011704273521900177, 0.005236231256276369, 0.6285741925239563, -0.31615743041038513, 0.015816092491149902, -0.3873693645000458, 0.0004857605672441423, -0.004901433829218149, 0.6021130084991455, -0.28211721777915955, -9.1093810624443e-05, 0.0038300822488963604, 0.005924064200371504, -0.04361436888575554, 0.28468528389930725, 0.19511516392230988, -0.005452822428196669, 0.9842044711112976, 0.14547650516033173, 0.04141748324036598, -0.06272543221712112, 0.2895987927913666, -0.2025693655014038, 0.028438566252589226, 0.9847317934036255, -0.17544905841350555, 0.0730917900800705, 0.02430400811135769]} +{"t": 0.8386, "q": [-0.3479716181755066, -0.011695751920342445, 0.005249623209238052, 0.6285827159881592, -0.3161657154560089, 0.01580154150724411, -0.3873608410358429, 0.0005113269435241818, -0.004888041876256466, 0.6021130084991455, -0.28212970495224, -8.379373321076855e-05, 0.0038434739690274, 0.005916462279856205, -0.04361928254365921, 0.28466129302978516, 0.19510318338871002, -0.005452822428196669, 0.9842044711112976, 0.14553643763065338, 0.04141748324036598, -0.06274940073490143, 0.2895987927913666, -0.20258134603500366, 0.028438566252589226, 0.9847317934036255, -0.17547301948070526, 0.07307980209589005, 0.024292023852467537]} +{"t": 0.8554, "q": [-0.3479630947113037, -0.011704273521900177, 0.005236231256276369, 0.6285656690597534, -0.31619879603385925, 0.015743324533104897, -0.38735231757164, 0.000502804818097502, -0.004861257970333099, 0.6021044850349426, -0.2821213901042938, -8.38464402477257e-05, 0.0038434739690274, 0.005893652327358723, -0.0436241514980793, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842284917831421, 0.14551246166229248, 0.041441451758146286, -0.06272543221712112, 0.2895987927913666, -0.20258134603500366, 0.02846253477036953, 0.9847317934036255, -0.17549699544906616, 0.07312773913145065, 0.02430400811135769]} +{"t": 0.8721, "q": [-0.34795457124710083, -0.011695751920342445, 0.005263015162199736, 0.6285741925239563, -0.3161657452583313, 0.01577252335846424, -0.38735231757164, 0.0004942826926708221, -0.004861257970333099, 0.6021215319633484, -0.2821255326271057, -9.104109631152824e-05, 0.003910433501005173, 0.00593166658654809, -0.04360945150256157, 0.28466129302978516, 0.19510318338871002, -0.005464806687086821, 0.9842165112495422, 0.14548850059509277, 0.041429467499256134, -0.06272543221712112, 0.2895868122577667, -0.20258134603500366, 0.028510471805930138, 0.9847437739372253, -0.1754850149154663, 0.0730917900800705, 0.02430400811135769]} +{"t": 0.889, "q": [-0.3479290008544922, -0.011712796054780483, 0.005249623209238052, 0.6285571455955505, -0.3161574602127075, 0.01580159179866314, -0.38734379410743713, 0.0005113269435241818, -0.004888041876256466, 0.6021044850349426, -0.2821089029312134, -9.114651766140014e-05, 0.00388364982791245, 0.005924064200371504, -0.04361436888575554, 0.28466129302978516, 0.19510318338871002, -0.005452822428196669, 0.9841924905776978, 0.14551246166229248, 0.04140549898147583, -0.06271345168352127, 0.2895868122577667, -0.20258134603500366, 0.028510471805930138, 0.9847198128700256, -0.17547301948070526, 0.0730917900800705, 0.02431599237024784]} +{"t": 0.9057, "q": [-0.34790343046188354, -0.011712796054780483, 0.005249623209238052, 0.6285827159881592, -0.31614917516708374, 0.015816159546375275, -0.3872756063938141, 0.0005113269435241818, -0.004928217735141516, 0.6021300554275513, -0.2821213901042938, -8.38464402477257e-05, 0.0038970415480434895, 0.005924060009419918, -0.04360448569059372, 0.28468528389930725, 0.19510318338871002, -0.005452822428196669, 0.9842165112495422, 0.14542856812477112, 0.04141748324036598, -0.06273742020130157, 0.2895987927913666, -0.2025693655014038, 0.028510471805930138, 0.9847557544708252, -0.17550897598266602, 0.0730917900800705, 0.02431599237024784]} +{"t": 0.9225, "q": [-0.3479119539260864, -0.011712796054780483, 0.005249623209238052, 0.6285656690597534, -0.3161740005016327, 0.015772491693496704, -0.38729265332221985, 0.0005113269435241818, -0.004941609688103199, 0.6021215319633484, -0.2821255326271057, -9.104109631152824e-05, 0.0038702578749507666, 0.005886050406843424, -0.04362906888127327, 0.28466129302978516, 0.19510318338871002, -0.005476790945976973, 0.9842284917831421, 0.14552444219589233, 0.041429467499256134, -0.06271345168352127, 0.2895987927913666, -0.20258134603500366, 0.028558408841490746, 0.9847557544708252, -0.17547301948070526, 0.0731397271156311, 0.02431599237024784]} +{"t": 0.9392, "q": [-0.34789490699768066, -0.011704273521900177, 0.005236231256276369, 0.6285827159881592, -0.3161781132221222, 0.015765216201543808, -0.38729265332221985, 0.0005113269435241818, -0.004968393128365278, 0.6021300554275513, -0.2821172773838043, -7.665179145988077e-05, 0.0038300822488963604, 0.00596968038007617, -0.04359474778175354, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842284917831421, 0.14552444219589233, 0.041429467499256134, -0.06271345168352127, 0.2895987927913666, -0.2025693655014038, 0.02858237735927105, 0.9847557544708252, -0.1754610389471054, 0.0731397271156311, 0.02430400811135769]} +{"t": 0.9559, "q": [-0.34789490699768066, -0.011704273521900177, 0.0052094473503530025, 0.6285656690597534, -0.3162401616573334, 0.015656057745218277, -0.38729265332221985, 0.0004942826926708221, -0.004901433829218149, 0.6021385788917542, -0.2821214497089386, -6.940442835912108e-05, 0.0038300822488963604, 0.005939272698014975, -0.04361441731452942, 0.284673273563385, 0.19509120285511017, -0.005476790945976973, 0.9842284917831421, 0.14547650516033173, 0.04140549898147583, -0.06272543221712112, 0.2895868122577667, -0.2025693655014038, 0.028546424582600594, 0.9847557544708252, -0.1754610389471054, 0.07310377061367035, 0.024327976629137993]} +{"t": 0.9726, "q": [-0.3479119539260864, -0.011704273521900177, 0.0052094473503530025, 0.6285827159881592, -0.3162153661251068, 0.01568518951535225, -0.3872756063938141, 0.000502804818097502, -0.004861257970333099, 0.6021300554275513, -0.2821172773838043, -7.665179145988077e-05, 0.00388364982791245, 0.00592406839132309, -0.04362424835562706, 0.28466129302978516, 0.19511516392230988, -0.005464806687086821, 0.9842165112495422, 0.14554841816425323, 0.04140549898147583, -0.06271345168352127, 0.28962278366088867, -0.2025693655014038, 0.028558408841490746, 0.9847557544708252, -0.1754610389471054, 0.0731397271156311, 0.02431599237024784]} +{"t": 0.9894, "q": [-0.3479119539260864, -0.011712796054780483, 0.0052094473503530025, 0.6285656690597534, -0.3162897825241089, 0.01555420458316803, -0.38728412985801697, 0.000502804818097502, -0.004861257970333099, 0.6021300554275513, -0.28211721777915955, -9.1093810624443e-05, 0.003816690295934677, 0.00596968038007617, -0.04359474778175354, 0.28468528389930725, 0.19510318338871002, -0.005476790945976973, 0.9842284917831421, 0.14551246166229248, 0.04140549898147583, -0.06273742020130157, 0.2895868122577667, -0.2025693655014038, 0.02858237735927105, 0.9847557544708252, -0.17552095651626587, 0.07310377061367035, 0.02431599237024784]} +{"t": 1.0061, "q": [-0.34790343046188354, -0.011695751920342445, 0.005222839303314686, 0.6285997629165649, -0.3161740005016327, 0.015772491693496704, -0.3872585594654083, 0.00046871634549461305, -0.004874649923294783, 0.602147102355957, -0.28211721777915955, -9.1093810624443e-05, 0.00388364982791245, 0.005939272698014975, -0.04361441731452942, 0.28468528389930725, 0.19511516392230988, -0.005476790945976973, 0.9842404723167419, 0.14551246166229248, 0.041429467499256134, -0.06273742020130157, 0.28961077332496643, -0.20255737006664276, 0.028618330135941505, 0.9847797155380249, -0.1754850149154663, 0.07315170764923096, 0.024292023852467537]} +{"t": 1.0228, "q": [-0.34790343046188354, -0.011704273521900177, 0.005222839303314686, 0.6285997629165649, -0.3161698877811432, 0.015765249729156494, -0.3872585594654083, 0.0005113269435241818, -0.004941609688103199, 0.6021556258201599, -0.2821089029312134, -9.114651766140014e-05, 0.0038970415480434895, 0.0059468746185302734, -0.04360949993133545, 0.28468528389930725, 0.19509120285511017, -0.005452822428196669, 0.9842284917831421, 0.14553643763065338, 0.04141748324036598, -0.06271345168352127, 0.2895987927913666, -0.2025693655014038, 0.028630314394831657, 0.9847557544708252, -0.17547301948070526, 0.07318766415119171, 0.02430400811135769]} +{"t": 1.0396, "q": [-0.3478863835334778, -0.011704273521900177, 0.005236231256276369, 0.6285827159881592, -0.3161657750606537, 0.015758024528622627, -0.3872756063938141, 0.0005283711361698806, -0.0049148257821798325, 0.6021641492843628, -0.2821172773838043, -7.665179145988077e-05, 0.0038300822488963604, 0.005908864550292492, -0.043634083122015, 0.28468528389930725, 0.19511516392230988, -0.005476790945976973, 0.9842284917831421, 0.14552444219589233, 0.041429467499256134, -0.06274940073490143, 0.2895868122577667, -0.20255737006664276, 0.028678251430392265, 0.984767735004425, -0.1754850149154663, 0.07315170764923096, 0.024327976629137993]} +{"t": 1.0563, "q": [-0.3478863835334778, -0.011712796054780483, 0.005222839303314686, 0.6285912394523621, -0.31614917516708374, 0.015816159546375275, -0.3872585594654083, 0.0005198490689508617, -0.0049148257821798325, 0.602147102355957, -0.2821213901042938, -8.38464402477257e-05, 0.0038434739690274, 0.005901262629777193, -0.04363900050520897, 0.284673273563385, 0.19510318338871002, -0.005452822428196669, 0.9842404723167419, 0.14551246166229248, 0.04140549898147583, -0.06271345168352127, 0.2895868122577667, -0.2025693655014038, 0.028678251430392265, 0.984767735004425, -0.17550897598266602, 0.07315170764923096, 0.02430400811135769]} +{"t": 1.0734, "q": [-0.3478778600692749, -0.011729840189218521, 0.0052094473503530025, 0.6285997629165649, -0.3161616027355194, 0.015779798850417137, -0.38725003600120544, 0.0005113269435241818, -0.005008568987250328, 0.6021641492843628, -0.2821089029312134, -9.114651766140014e-05, 0.0038434739690274, 0.005855644587427378, -0.04366853088140488, 0.28468528389930725, 0.19510318338871002, -0.005464806687086821, 0.9842284917831421, 0.1455603986978531, 0.04140549898147583, -0.06272543221712112, 0.2895987927913666, -0.20255737006664276, 0.028678251430392265, 0.9847557544708252, -0.17544905841350555, 0.0731157585978508, 0.024292023852467537]} +{"t": 1.0902, "q": [-0.3478863835334778, -0.01172131858766079, 0.005196055397391319, 0.6285997629165649, -0.31614506244659424, 0.015808915719389915, -0.38724151253700256, 0.000502804818097502, -0.004968393128365278, 0.6021897196769714, -0.2821213901042938, -8.38464402477257e-05, 0.0038702578749507666, 0.005886058323085308, -0.04364883527159691, 0.28468528389930725, 0.19510318338871002, -0.005464806687086821, 0.9842404723167419, 0.14551246166229248, 0.04141748324036598, -0.06272543221712112, 0.2895987927913666, -0.2025693655014038, 0.02871420420706272, 0.9847557544708252, -0.1754370778799057, 0.07316369563341141, 0.02430400811135769]} +{"t": 1.1069, "q": [-0.3478778600692749, -0.01172131858766079, 0.005196055397391319, 0.6285827159881592, -0.3161616027355194, 0.015779798850417137, -0.3872756063938141, 0.0004857605672441423, -0.005008568987250328, 0.6021641492843628, -0.282100647687912, -7.675721280975267e-05, 0.0038702578749507666, 0.005863245110958815, -0.04365371912717819, 0.28466129302978516, 0.19510318338871002, -0.005452822428196669, 0.9842165112495422, 0.14553643763065338, 0.04140549898147583, -0.06271345168352127, 0.2895868122577667, -0.20255737006664276, 0.028726188465952873, 0.9847557544708252, -0.17544905841350555, 0.07316369563341141, 0.02430400811135769]} +{"t": 1.1236, "q": [-0.3478863835334778, -0.011746884323656559, 0.005222839303314686, 0.6285827159881592, -0.3161740303039551, 0.015743473544716835, -0.3872585594654083, 0.0005113269435241818, -0.005021960940212011, 0.6021811962127686, -0.2821089029312134, -9.114651766140014e-05, 0.0038702578749507666, 0.0058784522116184235, -0.04364386945962906, 0.28468528389930725, 0.19510318338871002, -0.005464806687086821, 0.9842284917831421, 0.14552444219589233, 0.04141748324036598, -0.06272543221712112, 0.2895987927913666, -0.20255737006664276, 0.02870221994817257, 0.984767735004425, -0.1754370778799057, 0.07315170764923096, 0.02431599237024784]} +{"t": 1.1404, "q": [-0.3478778600692749, -0.01172131858766079, 0.005249623209238052, 0.6285827159881592, -0.3161740005016327, 0.015772491693496704, -0.3872585594654083, 0.0005113269435241818, -0.005062136333435774, 0.6021726727485657, -0.28211307525634766, -8.389915456064045e-05, 0.003816690295934677, 0.005886058323085308, -0.04364883527159691, 0.28468528389930725, 0.19511516392230988, -0.005452822428196669, 0.9842404723167419, 0.14554841816425323, 0.04141748324036598, -0.06272543221712112, 0.2895868122577667, -0.2025693655014038, 0.02871420420706272, 0.9847916960716248, -0.1754610389471054, 0.07316369563341141, 0.024339960888028145]} +{"t": 1.1571, "q": [-0.3478778600692749, -0.011729840189218521, 0.0052094473503530025, 0.6285827159881592, -0.3161657452583313, 0.01577252335846424, -0.3872670829296112, 0.0005113269435241818, -0.005048744846135378, 0.6021726727485657, -0.28211307525634766, -8.389915456064045e-05, 0.0038568659219890833, 0.005878455005586147, -0.043653760105371475, 0.28466129302978516, 0.19511516392230988, -0.005452822428196669, 0.9842165112495422, 0.14547650516033173, 0.041429467499256134, -0.06272543221712112, 0.2895868122577667, -0.2025693655014038, 0.028726188465952873, 0.984767735004425, -0.17550897598266602, 0.07315170764923096, 0.024292023852467537]} +{"t": 1.174, "q": [-0.347869336605072, -0.011755406856536865, 0.005249623209238052, 0.6285912394523621, -0.31619054079055786, 0.01572885550558567, -0.3872756063938141, 0.0005113269435241818, -0.005048744846135378, 0.6021726727485657, -0.28211313486099243, -6.945713539607823e-05, 0.0038702578749507666, 0.005901262629777193, -0.04363900050520897, 0.28466129302978516, 0.19510318338871002, -0.005476790945976973, 0.9842404723167419, 0.14547650516033173, 0.041429467499256134, -0.06271345168352127, 0.2895868122577667, -0.20255737006664276, 0.02871420420706272, 0.9847916960716248, -0.17547301948070526, 0.07315170764923096, 0.024327976629137993]} +{"t": 1.1907, "q": [-0.347869336605072, -0.01172131858766079, 0.005222839303314686, 0.6285827159881592, -0.3163311183452606, 0.015495955012738705, -0.3872670829296112, 0.0005113269435241818, -0.005062136333435774, 0.6021726727485657, -0.2821172773838043, -7.665179145988077e-05, 0.0038300822488963604, 0.005916466470807791, -0.04362916573882103, 0.28466129302978516, 0.19510318338871002, -0.005464806687086821, 0.9842404723167419, 0.14550048112869263, 0.041429467499256134, -0.06272543221712112, 0.2895868122577667, -0.20255737006664276, 0.02871420420706272, 0.9847916960716248, -0.1754850149154663, 0.07315170764923096, 0.02430400811135769]} +{"t": 1.2075, "q": [-0.34789490699768066, -0.011712796054780483, 0.005236231256276369, 0.6285827159881592, -0.3161657154560089, 0.015787042677402496, -0.3872670829296112, 0.0005113269435241818, -0.004941609688103199, 0.6021556258201599, -0.2821213901042938, -8.38464402477257e-05, 0.003910433501005173, 0.0058784522116184235, -0.04364386945962906, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842404723167419, 0.14547650516033173, 0.04140549898147583, -0.06272543221712112, 0.2895987927913666, -0.20255737006664276, 0.02871420420706272, 0.9847916960716248, -0.1754850149154663, 0.07317567616701126, 0.024327976629137993]} +{"t": 1.2242, "q": [-0.34789490699768066, -0.01172131858766079, 0.005222839303314686, 0.6285912394523621, -0.3162401616573334, 0.01564154028892517, -0.38729265332221985, 0.0004942826926708221, -0.005021960940212011, 0.6021726727485657, -0.2821172773838043, -7.665179145988077e-05, 0.003816690295934677, 0.005901258438825607, -0.04362911731004715, 0.28466129302978516, 0.19510318338871002, -0.005452822428196669, 0.9842404723167419, 0.14552444219589233, 0.04141748324036598, -0.06273742020130157, 0.2895987927913666, -0.20255737006664276, 0.02871420420706272, 0.9847916960716248, -0.17544905841350555, 0.07316369563341141, 0.024327976629137993]} +{"t": 1.2409, "q": [-0.34790343046188354, -0.01172131858766079, 0.005196055397391319, 0.6285827159881592, -0.3162898123264313, 0.015539704822003841, -0.38729265332221985, 0.0004942826926708221, -0.005008568987250328, 0.6021641492843628, -0.2821172773838043, -7.665179145988077e-05, 0.0038434739690274, 0.0058936565183103085, -0.04363403469324112, 0.28466129302978516, 0.19511516392230988, -0.005464806687086821, 0.9842404723167419, 0.14551246166229248, 0.04141748324036598, -0.06272543221712112, 0.28961077332496643, -0.2025693655014038, 0.028738172724843025, 0.9847916960716248, -0.1754610389471054, 0.07316369563341141, 0.024351945146918297]} +{"t": 1.2577, "q": [-0.3478778600692749, -0.011712796054780483, 0.0052094473503530025, 0.6285827159881592, -0.3162442743778229, 0.01564878225326538, -0.3872756063938141, 0.0005113269435241818, -0.004941609688103199, 0.6021811962127686, -0.28211307525634766, -8.389915456064045e-05, 0.0038300822488963604, 0.005886058323085308, -0.04364883527159691, 0.28466129302978516, 0.19510318338871002, -0.005464806687086821, 0.9842524528503418, 0.14550048112869263, 0.04141748324036598, -0.06270146369934082, 0.2895868122577667, -0.2025693655014038, 0.02871420420706272, 0.9847916960716248, -0.17542508244514465, 0.07315170764923096, 0.024292023852467537]} +{"t": 1.2745, "q": [-0.3478778600692749, -0.01172131858766079, 0.005222839303314686, 0.6285827159881592, -0.3162112236022949, 0.01569248177111149, -0.38729265332221985, 0.0005113269435241818, -0.004968393128365278, 0.6021897196769714, -0.28210899233818054, -6.22624866082333e-05, 0.0038702578749507666, 0.005878455005586147, -0.043653760105371475, 0.28466129302978516, 0.19509120285511017, -0.005464806687086821, 0.9842404723167419, 0.14552444219589233, 0.04141748324036598, -0.06271345168352127, 0.2895987927913666, -0.20255737006664276, 0.028726188465952873, 0.9847916960716248, -0.17547301948070526, 0.07315170764923096, 0.024292023852467537]} +{"t": 1.2912, "q": [-0.3478778600692749, -0.01172131858766079, 0.005236231256276369, 0.6285827159881592, -0.31618639826774597, 0.015750648453831673, -0.38728412985801697, 0.0005113269435241818, -0.005008568987250328, 0.6021811962127686, -0.28211307525634766, -8.389915456064045e-05, 0.0038434739690274, 0.00584804080426693, -0.04367345571517944, 0.28466129302978516, 0.19511516392230988, -0.005452822428196669, 0.9842644333839417, 0.14546452462673187, 0.04141748324036598, -0.06272543221712112, 0.2895868122577667, -0.20255737006664276, 0.02871420420706272, 0.9847916960716248, -0.17550897598266602, 0.07316369563341141, 0.024327976629137993]} +{"t": 1.308, "q": [-0.3478863835334778, -0.01172131858766079, 0.005236231256276369, 0.6285741925239563, -0.3161740005016327, 0.015772491693496704, -0.38729265332221985, 0.000502804818097502, -0.0049817850813269615, 0.6021897196769714, -0.2821172773838043, -7.665179145988077e-05, 0.0038434739690274, 0.005893660709261894, -0.04364391788840294, 0.28466129302978516, 0.19510318338871002, -0.005452822428196669, 0.9842644333839417, 0.14553643763065338, 0.04140549898147583, -0.06273742020130157, 0.2895868122577667, -0.20255737006664276, 0.02871420420706272, 0.9848157167434692, -0.1754610389471054, 0.07316369563341141, 0.024292023852467537]} +{"t": 1.3247, "q": [-0.3478863835334778, -0.011738361790776253, 0.0052094473503530025, 0.6285997629165649, -0.3161781430244446, 0.015750698745250702, -0.3872756063938141, 0.0005113269435241818, -0.004995177034288645, 0.6021897196769714, -0.28211307525634766, -8.389915456064045e-05, 0.003910433501005173, 0.005870851222425699, -0.04365868493914604, 0.28466129302978516, 0.19510318338871002, -0.005464806687086821, 0.9842524528503418, 0.14554841816425323, 0.04140549898147583, -0.06272543221712112, 0.28961077332496643, -0.2025693655014038, 0.028726188465952873, 0.9847916960716248, -0.1754850149154663, 0.07317567616701126, 0.02430400811135769]} +{"t": 1.3415, "q": [-0.3478778600692749, -0.01172131858766079, 0.005222839303314686, 0.6285912394523621, -0.3161822557449341, 0.01575794257223606, -0.3872756063938141, 0.000502804818097502, -0.005021960940212011, 0.6022067666053772, -0.28211307525634766, -8.389915456064045e-05, 0.0038300822488963604, 0.005901262629777193, -0.04363900050520897, 0.28466129302978516, 0.19511516392230988, -0.005464806687086821, 0.9842524528503418, 0.14554841816425323, 0.04140549898147583, -0.06273742020130157, 0.2895868122577667, -0.2025453895330429, 0.02871420420706272, 0.9847916960716248, -0.17542508244514465, 0.07316369563341141, 0.02430400811135769]} +{"t": 1.3584, "q": [-0.3478778600692749, -0.01172131858766079, 0.005222839303314686, 0.6285997629165649, -0.3161863684654236, 0.015765167772769928, -0.38729265332221985, 0.0005113269435241818, -0.004995177034288645, 0.6022067666053772, -0.2821047604084015, -8.395186887355521e-05, 0.0038702578749507666, 0.005908864550292492, -0.043634083122015, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842644333839417, 0.14547650516033173, 0.04140549898147583, -0.06273742020130157, 0.2895987927913666, -0.20255737006664276, 0.02871420420706272, 0.9848037362098694, -0.1754610389471054, 0.07317567616701126, 0.02430400811135769]} +{"t": 1.3751, "q": [-0.3478778600692749, -0.01172131858766079, 0.005249623209238052, 0.6285997629165649, -0.3161822557449341, 0.01575794257223606, -0.3872756063938141, 0.0005113269435241818, -0.005021960940212011, 0.6022152900695801, -0.2821089029312134, -9.114651766140014e-05, 0.0038568659219890833, 0.00592406839132309, -0.04362424835562706, 0.28466129302978516, 0.19511516392230988, -0.005452822428196669, 0.9842524528503418, 0.14550048112869263, 0.04140549898147583, -0.06272543221712112, 0.2895987927913666, -0.2025693655014038, 0.028726188465952873, 0.9848157167434692, -0.1754850149154663, 0.07316369563341141, 0.024327976629137993]} +{"t": 1.3919, "q": [-0.347869336605072, -0.011746884323656559, 0.005236231256276369, 0.6285741925239563, -0.3161740005016327, 0.015772491693496704, -0.3872756063938141, 0.0005113269435241818, -0.005062136333435774, 0.6022408604621887, -0.28211307525634766, -8.389915456064045e-05, 0.0038434739690274, 0.005901262629777193, -0.04363900050520897, 0.28466129302978516, 0.19511516392230988, -0.005464806687086821, 0.9842404723167419, 0.14541658759117126, 0.04140549898147583, -0.06273742020130157, 0.28961077332496643, -0.20255737006664276, 0.02871420420706272, 0.9847916960716248, -0.17542508244514465, 0.07317567616701126, 0.02430400811135769]} +{"t": 1.4087, "q": [-0.347869336605072, -0.011729840189218521, 0.005222839303314686, 0.6285997629165649, -0.3161740005016327, 0.015772491693496704, -0.3872670829296112, 0.0004857605672441423, -0.0049817850813269615, 0.6022408604621887, -0.28211307525634766, -8.389915456064045e-05, 0.0038434739690274, 0.005901262629777193, -0.04363900050520897, 0.28466129302978516, 0.19509120285511017, -0.005452822428196669, 0.9842404723167419, 0.14553643763065338, 0.04141748324036598, -0.06274940073490143, 0.2895987927913666, -0.20255737006664276, 0.028726188465952873, 0.9847916960716248, -0.17544905841350555, 0.0731397271156311, 0.02430400811135769]} +{"t": 1.4254, "q": [-0.34786084294319153, -0.011755406856536865, 0.005249623209238052, 0.6285997629165649, -0.31614920496940613, 0.015801623463630676, -0.3872756063938141, 0.0004942826926708221, -0.004941609688103199, 0.6022408604621887, -0.2821089029312134, -9.114651766140014e-05, 0.0038702578749507666, 0.005901262629777193, -0.04363900050520897, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842524528503418, 0.14551246166229248, 0.04141748324036598, -0.06272543221712112, 0.2895868122577667, -0.20255737006664276, 0.02871420420706272, 0.9847916960716248, -0.17553295195102692, 0.07316369563341141, 0.02430400811135769]} +{"t": 1.4421, "q": [-0.34785231947898865, -0.011755406856536865, 0.005289798602461815, 0.6285997629165649, -0.31615743041038513, 0.015816092491149902, -0.3872756063938141, 0.0005113269435241818, -0.0049817850813269615, 0.6022579073905945, -0.28210482001304626, -6.950984970899299e-05, 0.0038970415480434895, 0.005901262629777193, -0.04363900050520897, 0.28466129302978516, 0.19510318338871002, -0.005476790945976973, 0.9842644333839417, 0.14551246166229248, 0.04141748324036598, -0.06273742020130157, 0.28961077332496643, -0.20258134603500366, 0.02871420420706272, 0.9848037362098694, -0.1754850149154663, 0.0731397271156311, 0.02430400811135769]} +{"t": 1.4589, "q": [-0.3478352725505829, -0.011738361790776253, 0.005263015162199736, 0.6285997629165649, -0.31614917516708374, 0.015816159546375275, -0.38728412985801697, 0.000502804818097502, -0.005021960940212011, 0.6022493839263916, -0.2821172773838043, -7.665179145988077e-05, 0.0038434739690274, 0.005893660709261894, -0.04364391788840294, 0.28466129302978516, 0.19511516392230988, -0.005464806687086821, 0.9842644333839417, 0.14553643763065338, 0.04141748324036598, -0.06272543221712112, 0.2895987927913666, -0.20255737006664276, 0.028726188465952873, 0.9847916960716248, -0.17544905841350555, 0.07317567616701126, 0.02431599237024784]} +{"t": 1.4756, "q": [-0.3478352725505829, -0.011763928458094597, 0.005249623209238052, 0.6285997629165649, -0.31614920496940613, 0.015801623463630676, -0.38730117678642273, 0.0004942826926708221, -0.005048744846135378, 0.6022749543190002, -0.28210896253585815, -7.670450577279553e-05, 0.0038434739690274, 0.0058784522116184235, -0.04364386945962906, 0.28466129302978516, 0.19511516392230988, -0.005464806687086821, 0.9842644333839417, 0.14551246166229248, 0.04139351472258568, -0.06272543221712112, 0.2895868122577667, -0.2025693655014038, 0.028726188465952873, 0.9848157167434692, -0.17544905841350555, 0.07316369563341141, 0.02430400811135769]} +{"t": 1.4924, "q": [-0.34784379601478577, -0.011755406856536865, 0.005263015162199736, 0.6286082863807678, -0.31614091992378235, 0.01581619121134281, -0.3872585594654083, 0.0005113269435241818, -0.005035352893173695, 0.602292001247406, -0.28211721777915955, -9.1093810624443e-05, 0.0038434739690274, 0.005832833703607321, -0.04368330538272858, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842644333839417, 0.14548850059509277, 0.04140549898147583, -0.06272543221712112, 0.2895987927913666, -0.20255737006664276, 0.02871420420706272, 0.9847916960716248, -0.17547301948070526, 0.07317567616701126, 0.024327976629137993]} +{"t": 1.5093, "q": [-0.3478352725505829, -0.011763928458094597, 0.005276407115161419, 0.6285997629165649, -0.31614917516708374, 0.015816159546375275, -0.3872756063938141, 0.0005113269435241818, -0.005021960940212011, 0.602292001247406, -0.28211313486099243, -6.945713539607823e-05, 0.0038568659219890833, 0.0058632479049265385, -0.04366360604763031, 0.28466129302978516, 0.19510318338871002, -0.0055007594637572765, 0.9842524528503418, 0.14551246166229248, 0.04140549898147583, -0.06272543221712112, 0.2895868122577667, -0.20255737006664276, 0.028726188465952873, 0.9848037362098694, -0.1754370778799057, 0.07317567616701126, 0.02431599237024784]} +{"t": 1.5261, "q": [-0.34786084294319153, -0.011763928458094597, 0.005249623209238052, 0.6285827159881592, -0.3161822557449341, 0.01575794257223606, -0.38729265332221985, 0.000502804818097502, -0.004968393128365278, 0.602292001247406, -0.2821172773838043, -7.665179145988077e-05, 0.0038970415480434895, 0.00588605459779501, -0.04363895207643509, 0.2846493124961853, 0.19512715935707092, -0.005476790945976973, 0.9842644333839417, 0.14544056355953217, 0.04141748324036598, -0.06273742020130157, 0.2895868122577667, -0.20255737006664276, 0.028738172724843025, 0.9848157167434692, -0.1754131019115448, 0.07317567616701126, 0.02430400811135769]} +{"t": 1.5428, "q": [-0.34785231947898865, -0.011746884323656559, 0.005249623209238052, 0.6285997629165649, -0.31631043553352356, 0.015532347373664379, -0.38730117678642273, 0.000502804818097502, -0.005008568987250328, 0.6022834777832031, -0.2821131944656372, -5.501512350747362e-05, 0.0038568659219890833, 0.005855644587427378, -0.04366853088140488, 0.28466129302978516, 0.19510318338871002, -0.005452822428196669, 0.9842644333839417, 0.14547650516033173, 0.04140549898147583, -0.06273742020130157, 0.2895987927913666, -0.20255737006664276, 0.02871420420706272, 0.9848276972770691, -0.17544905841350555, 0.07318766415119171, 0.024327976629137993]} +{"t": 1.5596, "q": [-0.34784379601478577, -0.011763928458094597, 0.005249623209238052, 0.6286168098449707, -0.3162360191345215, 0.015648813918232918, -0.38730117678642273, 0.000502804818097502, -0.004968393128365278, 0.6022749543190002, -0.28211313486099243, -6.945713539607823e-05, 0.0038970415480434895, 0.005878455005586147, -0.043653760105371475, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842764139175415, 0.14542856812477112, 0.04140549898147583, -0.06274940073490143, 0.28961077332496643, -0.20255737006664276, 0.02871420420706272, 0.984839677810669, -0.1754131019115448, 0.07316369563341141, 0.02431599237024784]} +{"t": 1.5763, "q": [-0.34784379601478577, -0.011763928458094597, 0.005263015162199736, 0.6285997629165649, -0.31620705127716064, 0.015728775411844254, -0.38732674717903137, 0.000502804818097502, -0.004941609688103199, 0.6022749543190002, -0.2821172773838043, -7.665179145988077e-05, 0.003816690295934677, 0.0058632479049265385, -0.04366360604763031, 0.28466129302978516, 0.19510318338871002, -0.005476790945976973, 0.9842764139175415, 0.14550048112869263, 0.04140549898147583, -0.06272543221712112, 0.2895987927913666, -0.20255737006664276, 0.028726188465952873, 0.9847916960716248, -0.17550897598266602, 0.07318766415119171, 0.02431599237024784]} +{"t": 1.593, "q": [-0.34785231947898865, -0.011763928458094597, 0.005249623209238052, 0.6285827159881592, -0.31631872057914734, 0.015517779625952244, -0.3873097002506256, 0.0004942826926708221, -0.004995177034288645, 0.602292001247406, -0.2821172773838043, -7.665179145988077e-05, 0.0038568659219890833, 0.005810020491480827, -0.04368818551301956, 0.28466129302978516, 0.19512715935707092, -0.0055007594637572765, 0.9842764139175415, 0.14545254409313202, 0.04141748324036598, -0.06273742020130157, 0.2895987927913666, -0.20255737006664276, 0.028738172724843025, 0.9848037362098694, -0.17552095651626587, 0.07317567616701126, 0.02430400811135769]} +{"t": 1.6097, "q": [-0.34784379601478577, -0.011738361790776253, 0.005236231256276369, 0.6285827159881592, -0.31632697582244873, 0.01551773026585579, -0.38732674717903137, 0.0005113269435241818, -0.0049148257821798325, 0.6022834777832031, -0.2821213901042938, -8.38464402477257e-05, 0.0038702578749507666, 0.005810020491480827, -0.04368818551301956, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842764139175415, 0.14544056355953217, 0.041429467499256134, -0.06273742020130157, 0.2895987927913666, -0.20255737006664276, 0.02871420420706272, 0.9848037362098694, -0.17542508244514465, 0.07318766415119171, 0.024327976629137993]} +{"t": 1.6265, "q": [-0.34785231947898865, -0.011746884323656559, 0.005236231256276369, 0.6285997629165649, -0.3161616027355194, 0.015794316306710243, -0.3873182237148285, 0.000502804818097502, -0.004941609688103199, 0.6022493839263916, -0.2821214497089386, -6.940442835912108e-05, 0.0038300822488963604, 0.005817627068608999, -0.04369315132498741, 0.2846493124961853, 0.19509120285511017, -0.0055007594637572765, 0.9842644333839417, 0.14551246166229248, 0.04140549898147583, -0.06271345168352127, 0.2895868122577667, -0.20255737006664276, 0.028726188465952873, 0.9848037362098694, -0.17544905841350555, 0.07321163266897202, 0.02430400811135769]} +{"t": 1.6433, "q": [-0.34786084294319153, -0.011763928458094597, 0.005263015162199736, 0.6285997629165649, -0.3161781430244446, 0.015750698745250702, -0.3873097002506256, 0.000502804818097502, -0.004941609688103199, 0.6022834777832031, -0.2821172773838043, -7.665179145988077e-05, 0.0038434739690274, 0.00584804080426693, -0.04367345571517944, 0.284673273563385, 0.19511516392230988, -0.005464806687086821, 0.9842644333839417, 0.14547650516033173, 0.04140549898147583, -0.06274940073490143, 0.2895868122577667, -0.20255737006664276, 0.028726188465952873, 0.9848276972770691, -0.1754610389471054, 0.07319964468479156, 0.024327976629137993]} +{"t": 1.66, "q": [-0.34786084294319153, -0.011755406856536865, 0.005249623209238052, 0.6286082863807678, -0.3161822557449341, 0.01575794257223606, -0.3873097002506256, 0.0005113269435241818, -0.0049817850813269615, 0.602292001247406, -0.28210899233818054, -6.22624866082333e-05, 0.0038568659219890833, 0.005832833703607321, -0.04368330538272858, 0.28466129302978516, 0.19509120285511017, -0.005464806687086821, 0.9842883944511414, 0.14553643763065338, 0.04140549898147583, -0.06273742020130157, 0.2895868122577667, -0.20255737006664276, 0.028726188465952873, 0.984839677810669, -0.17549699544906616, 0.07318766415119171, 0.02430400811135769]} +{"t": 1.6767, "q": [-0.34785231947898865, -0.011755406856536865, 0.005263015162199736, 0.6285997629165649, -0.3161740303039551, 0.015743473544716835, -0.3873182237148285, 0.000502804818097502, -0.004955001175403595, 0.6023005247116089, -0.2821172773838043, -7.665179145988077e-05, 0.0038970415480434895, 0.005855644587427378, -0.04366853088140488, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842644333839417, 0.14541658759117126, 0.04140549898147583, -0.06273742020130157, 0.2895868122577667, -0.20255737006664276, 0.028726188465952873, 0.984839677810669, -0.17542508244514465, 0.07316369563341141, 0.02431599237024784]} +{"t": 1.6934, "q": [-0.34785231947898865, -0.011738361790776253, 0.005263015162199736, 0.6285997629165649, -0.3161657154560089, 0.015787042677402496, -0.3873097002506256, 0.000502804818097502, -0.004968393128365278, 0.602292001247406, -0.282100647687912, -7.675721280975267e-05, 0.00388364982791245, 0.005840437486767769, -0.04367838054895401, 0.284673273563385, 0.19511516392230988, -0.005476790945976973, 0.9842764139175415, 0.1454046070575714, 0.04141748324036598, -0.06274940073490143, 0.2895868122577667, -0.20255737006664276, 0.028738172724843025, 0.984839677810669, -0.1754610389471054, 0.07317567616701126, 0.02431599237024784]} +{"t": 1.7102, "q": [-0.34786084294319153, -0.011755406856536865, 0.005249623209238052, 0.6285997629165649, -0.3161574602127075, 0.015787074342370033, -0.3873182237148285, 0.000502804818097502, -0.0049817850813269615, 0.6023005247116089, -0.28211307525634766, -8.389915456064045e-05, 0.0038970415480434895, 0.005840434692800045, -0.043668489903211594, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842764139175415, 0.1454046070575714, 0.04140549898147583, -0.06273742020130157, 0.2895868122577667, -0.20255737006664276, 0.028738172724843025, 0.984839677810669, -0.17547301948070526, 0.07319964468479156, 0.02430400811135769]} +{"t": 1.7269, "q": [-0.3478352725505829, -0.011772450059652328, 0.005276407115161419, 0.6285997629165649, -0.3161657154560089, 0.015787042677402496, -0.3873182237148285, 0.000502804818097502, -0.004995177034288645, 0.6023260951042175, -0.28210896253585815, -7.670450577279553e-05, 0.00388364982791245, 0.005817624274641275, -0.043683260679244995, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842764139175415, 0.14544056355953217, 0.04140549898147583, -0.06273742020130157, 0.2895987927913666, -0.20255737006664276, 0.028726188465952873, 0.9848276972770691, -0.17544905841350555, 0.07319964468479156, 0.02430400811135769]} +{"t": 1.7439, "q": [-0.34785231947898865, -0.011772450059652328, 0.005276407115161419, 0.6285997629165649, -0.3161574602127075, 0.015787074342370033, -0.3873097002506256, 0.0004857605672441423, -0.005048744846135378, 0.6023431420326233, -0.28210896253585815, -7.670450577279553e-05, 0.00388364982791245, 0.005817624274641275, -0.043683260679244995, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842644333839417, 0.14544056355953217, 0.04140549898147583, -0.06273742020130157, 0.2895987927913666, -0.20255737006664276, 0.028738172724843025, 0.984839677810669, -0.1754370778799057, 0.07323560118675232, 0.024292023852467537]} +{"t": 1.7606, "q": [-0.34784379601478577, -0.011772450059652328, 0.005289798602461815, 0.6286168098449707, -0.31615331768989563, 0.015808867290616035, -0.38729265332221985, 0.000502804818097502, -0.005008568987250328, 0.6023175716400146, -0.28210482001304626, -6.950984970899299e-05, 0.0038300822488963604, 0.005840434692800045, -0.043668489903211594, 0.28466129302978516, 0.19510318338871002, -0.005464806687086821, 0.9842764139175415, 0.14552444219589233, 0.04140549898147583, -0.06276138871908188, 0.2895987927913666, -0.20255737006664276, 0.028738172724843025, 0.984839677810669, -0.17552095651626587, 0.07322361320257187, 0.024292023852467537]} +{"t": 1.7773, "q": [-0.34784379601478577, -0.011772450059652328, 0.005276407115161419, 0.6286168098449707, -0.31614917516708374, 0.015816159546375275, -0.38730117678642273, 0.0004857605672441423, -0.004995177034288645, 0.6023346185684204, -0.28211307525634766, -8.389915456064045e-05, 0.0038300822488963604, 0.005817624274641275, -0.043683260679244995, 0.2846493124961853, 0.19512715935707092, -0.005476790945976973, 0.9842883944511414, 0.14551246166229248, 0.04140549898147583, -0.06273742020130157, 0.2895987927913666, -0.20255737006664276, 0.028738172724843025, 0.9848516583442688, -0.17554493248462677, 0.07319964468479156, 0.02431599237024784]} +{"t": 1.7941, "q": [-0.34786084294319153, -0.01178097352385521, 0.005276407115161419, 0.6286168098449707, -0.31614506244659424, 0.015808915719389915, -0.38729265332221985, 0.0004857605672441423, -0.005008568987250328, 0.6023431420326233, -0.28211307525634766, -8.389915456064045e-05, 0.0038434739690274, 0.005855641793459654, -0.04365864023566246, 0.2846493124961853, 0.19511516392230988, -0.005476790945976973, 0.9842644333839417, 0.14551246166229248, 0.04141748324036598, -0.06273742020130157, 0.2895987927913666, -0.20255737006664276, 0.028726188465952873, 0.984839677810669, -0.17550897598266602, 0.07321163266897202, 0.024327976629137993]} +{"t": 1.8109, "q": [-0.34782674908638, -0.01178097352385521, 0.005316582508385181, 0.6286168098449707, -0.316153347492218, 0.01579434797167778, -0.3872756063938141, 0.0004857605672441423, -0.004968393128365278, 0.6023431420326233, -0.28211307525634766, -8.389915456064045e-05, 0.003816690295934677, 0.005848038010299206, -0.04366356506943703, 0.2846493124961853, 0.19511516392230988, -0.005476790945976973, 0.9842764139175415, 0.14542856812477112, 0.04141748324036598, -0.06271345168352127, 0.2895868122577667, -0.20255737006664276, 0.028726188465952873, 0.9848516583442688, -0.17547301948070526, 0.07321163266897202, 0.024327976629137993]} +{"t": 1.8276, "q": [-0.3478182256221771, -0.01178097352385521, 0.005289798602461815, 0.6286168098449707, -0.3161450922489166, 0.01579439826309681, -0.3872585594654083, 0.0005113269435241818, -0.004968393128365278, 0.6023431420326233, -0.28210482001304626, -6.950984970899299e-05, 0.0038300822488963604, 0.005825227592140436, -0.04367833957076073, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842764139175415, 0.14548850059509277, 0.04141748324036598, -0.06274940073490143, 0.2895987927913666, -0.20255737006664276, 0.02871420420706272, 0.984839677810669, -0.17547301948070526, 0.07321163266897202, 0.02431599237024784]} +{"t": 1.8443, "q": [-0.34780970215797424, -0.011806539259850979, 0.005316582508385181, 0.6286338567733765, -0.3161492347717285, 0.015787122771143913, -0.3872756063938141, 0.000502804818097502, -0.004968393128365278, 0.6023516654968262, -0.28210896253585815, -7.670450577279553e-05, 0.0038568659219890833, 0.0058480435982346535, -0.04368334636092186, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842883944511414, 0.14547650516033173, 0.041429467499256134, -0.06272543221712112, 0.2895987927913666, -0.20255737006664276, 0.028726188465952873, 0.984839677810669, -0.1754370778799057, 0.07321163266897202, 0.024292023852467537]} +{"t": 1.861, "q": [-0.3478182256221771, -0.011815061792731285, 0.005303190555423498, 0.6286338567733765, -0.31614506244659424, 0.015808915719389915, -0.3872756063938141, 0.0004942826926708221, -0.005021960940212011, 0.6023856997489929, -0.28210482001304626, -6.950984970899299e-05, 0.0038300822488963604, 0.005832833703607321, -0.04368330538272858, 0.2846493124961853, 0.19512715935707092, -0.005476790945976973, 0.9842883944511414, 0.14545254409313202, 0.04141748324036598, -0.06272543221712112, 0.28961077332496643, -0.20255737006664276, 0.028738172724843025, 0.9848516583442688, -0.17552095651626587, 0.07323560118675232, 0.02430400811135769]} +{"t": 1.8778, "q": [-0.34780970215797424, -0.011806539259850979, 0.005316582508385181, 0.6286253333091736, -0.31614917516708374, 0.015816159546375275, -0.3872756063938141, 0.0004942826926708221, -0.005021960940212011, 0.6023687124252319, -0.28210482001304626, -6.950984970899299e-05, 0.003923825453966856, 0.005832833703607321, -0.04368330538272858, 0.28466129302978516, 0.19511516392230988, -0.005464806687086821, 0.9842883944511414, 0.14547650516033173, 0.04141748324036598, -0.06274940073490143, 0.2895987927913666, -0.2025453895330429, 0.028738172724843025, 0.984839677810669, -0.17552095651626587, 0.07321163266897202, 0.024327976629137993]} +{"t": 1.8946, "q": [-0.34780970215797424, -0.011815061792731285, 0.005316582508385181, 0.6286338567733765, -0.3161657452583313, 0.01577252335846424, -0.3872756063938141, 0.000502804818097502, -0.005035352893173695, 0.6024112701416016, -0.2821047604084015, -8.395186887355521e-05, 0.0038568659219890833, 0.00584804080426693, -0.04367345571517944, 0.28466129302978516, 0.19510318338871002, -0.005464806687086821, 0.9842644333839417, 0.14547650516033173, 0.04140549898147583, -0.06272543221712112, 0.2895868122577667, -0.20255737006664276, 0.028726188465952873, 0.9848516583442688, -0.1754850149154663, 0.07319964468479156, 0.02431599237024784]} +{"t": 1.9113, "q": [-0.3478352725505829, -0.011798016726970673, 0.005289798602461815, 0.6286338567733765, -0.31635594367980957, 0.015452287159860134, -0.38734379410743713, 0.0004942826926708221, -0.005062136333435774, 0.6024283170700073, -0.28210896253585815, -7.670450577279553e-05, 0.0038300822488963604, 0.005810020491480827, -0.04368818551301956, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842883944511414, 0.14547650516033173, 0.04140549898147583, -0.06273742020130157, 0.2895987927913666, -0.20255737006664276, 0.028738172724843025, 0.984839677810669, -0.17547301948070526, 0.07319964468479156, 0.024327976629137993]} +{"t": 1.928, "q": [-0.3478352725505829, -0.011815061792731285, 0.005276407115161419, 0.6286338567733765, -0.31614506244659424, 0.01582343503832817, -0.3873097002506256, 0.0005113269435241818, -0.005048744846135378, 0.6024283170700073, -0.2821089029312134, -9.114651766140014e-05, 0.0038434739690274, 0.005840434692800045, -0.043668489903211594, 0.2846493124961853, 0.19513913989067078, -0.005476790945976973, 0.9842883944511414, 0.14551246166229248, 0.04141748324036598, -0.06273742020130157, 0.2895868122577667, -0.20255737006664276, 0.02876214124262333, 0.9848516583442688, -0.1754610389471054, 0.07321163266897202, 0.02431599237024784]} +{"t": 1.9448, "q": [-0.3478352725505829, -0.011789495125412941, 0.005276407115161419, 0.6286338567733765, -0.3161781430244446, 0.015750698745250702, -0.3873182237148285, 0.0004942826926708221, -0.004995177034288645, 0.6024709343910217, -0.28210482001304626, -6.950984970899299e-05, 0.0038434739690274, 0.005810020491480827, -0.04368818551301956, 0.284673273563385, 0.19511516392230988, -0.0055007594637572765, 0.9842644333839417, 0.14547650516033173, 0.04140549898147583, -0.06273742020130157, 0.2895868122577667, -0.20255737006664276, 0.028738172724843025, 0.9848516583442688, -0.1754370778799057, 0.07321163266897202, 0.02431599237024784]} +{"t": 1.9615, "q": [-0.3478352725505829, -0.011772450059652328, 0.005289798602461815, 0.6286168098449707, -0.31624430418014526, 0.015634264796972275, -0.38733527064323425, 0.0004942826926708221, -0.005035352893173695, 0.6024453639984131, -0.28211313486099243, -6.945713539607823e-05, 0.0038300822488963604, 0.005787212867289782, -0.04371284693479538, 0.28466129302978516, 0.19512715935707092, -0.005476790945976973, 0.9842883944511414, 0.14544056355953217, 0.04140549898147583, -0.06272543221712112, 0.2895987927913666, -0.20255737006664276, 0.02871420420706272, 0.984839677810669, -0.17544905841350555, 0.07323560118675232, 0.024327976629137993]} +{"t": 1.9782, "q": [-0.3478352725505829, -0.011772450059652328, 0.005276407115161419, 0.6286338567733765, -0.31630218029022217, 0.01553237996995449, -0.3873608410358429, 0.000502804818097502, -0.005062136333435774, 0.6024453639984131, -0.2821172773838043, -7.665179145988077e-05, 0.0038434739690274, 0.005840437486767769, -0.04367838054895401, 0.28466129302978516, 0.19510318338871002, -0.005476790945976973, 0.9842764139175415, 0.14542856812477112, 0.04141748324036598, -0.06272543221712112, 0.2895987927913666, -0.20255737006664276, 0.028726188465952873, 0.9848516583442688, -0.1754850149154663, 0.07323560118675232, 0.02430400811135769]} +{"t": 1.9949, "q": [-0.34784379601478577, -0.011772450059652328, 0.005263015162199736, 0.6286168098449707, -0.3162732422351837, 0.015597839839756489, -0.38735231757164, 0.000502804818097502, -0.005035352893173695, 0.6024453639984131, -0.28210899233818054, -6.22624866082333e-05, 0.0038434739690274, 0.005840437486767769, -0.04367838054895401, 0.28466129302978516, 0.19511516392230988, -0.005452822428196669, 0.9842883944511414, 0.14548850059509277, 0.04140549898147583, -0.06273742020130157, 0.2895868122577667, -0.20255737006664276, 0.028726188465952873, 0.9848516583442688, -0.17547301948070526, 0.07324758172035217, 0.024327976629137993]} +{"t": 2.0116, "q": [-0.34784379601478577, -0.011789495125412941, 0.005276407115161419, 0.6286253333091736, -0.3161657154560089, 0.015787042677402496, -0.3873693645000458, 0.0004942826926708221, -0.005008568987250328, 0.6024368405342102, -0.2821047604084015, -8.395186887355521e-05, 0.0038702578749507666, 0.005794816184788942, -0.04370792582631111, 0.2846493124961853, 0.19510318338871002, -0.005476790945976973, 0.9842883944511414, 0.14547650516033173, 0.04140549898147583, -0.06274940073490143, 0.2895987927913666, -0.20255737006664276, 0.028750156983733177, 0.984839677810669, -0.17542508244514465, 0.07321163266897202, 0.024327976629137993]} +{"t": 2.0284, "q": [-0.34784379601478577, -0.01178097352385521, 0.005249623209238052, 0.6286338567733765, -0.3161781430244446, 0.015750698745250702, -0.3873693645000458, 0.0004942826926708221, -0.005008568987250328, 0.6024368405342102, -0.28210482001304626, -6.950984970899299e-05, 0.0038568659219890833, 0.00582523038610816, -0.043688226491212845, 0.28466129302978516, 0.19511516392230988, -0.005464806687086821, 0.9842764139175415, 0.14544056355953217, 0.04141748324036598, -0.06272543221712112, 0.2895987927913666, -0.20255737006664276, 0.028738172724843025, 0.984839677810669, -0.1754370778799057, 0.07324758172035217, 0.02430400811135769]} +{"t": 2.0452, "q": [-0.34785231947898865, -0.01178097352385521, 0.005289798602461815, 0.6286338567733765, -0.31618228554725647, 0.015743406489491463, -0.3873693645000458, 0.0004772384709212929, -0.005021960940212011, 0.6024709343910217, -0.28210482001304626, -6.950984970899299e-05, 0.0038568659219890833, 0.005832831375300884, -0.04367341473698616, 0.28466129302978516, 0.19511516392230988, -0.005464806687086821, 0.9842883944511414, 0.14539262652397156, 0.04141748324036598, -0.06273742020130157, 0.2895868122577667, -0.20255737006664276, 0.028738172724843025, 0.984839677810669, -0.17544905841350555, 0.07323560118675232, 0.024327976629137993]} +{"t": 2.0619, "q": [-0.3478352725505829, -0.011772450059652328, 0.005276407115161419, 0.6286168098449707, -0.3161822557449341, 0.01575794257223606, -0.38737788796424866, 0.000502804818097502, -0.005021960940212011, 0.6024453639984131, -0.28211307525634766, -8.389915456064045e-05, 0.0038434739690274, 0.005855644587427378, -0.04366853088140488, 0.2846493124961853, 0.19511516392230988, -0.005476790945976973, 0.9842644333839417, 0.14536865055561066, 0.04141748324036598, -0.06273742020130157, 0.2895868122577667, -0.2025453895330429, 0.028738172724843025, 0.984839677810669, -0.17552095651626587, 0.07324758172035217, 0.024327976629137993]} +{"t": 2.0787, "q": [-0.34786084294319153, -0.011763928458094597, 0.005289798602461815, 0.6286338567733765, -0.31619054079055786, 0.015743374824523926, -0.3873693645000458, 0.000502804818097502, -0.005048744846135378, 0.6024453639984131, -0.28211307525634766, -8.389915456064045e-05, 0.003816690295934677, 0.005855644587427378, -0.04366853088140488, 0.2846493124961853, 0.19510318338871002, -0.005476790945976973, 0.9842644333839417, 0.14542856812477112, 0.041429467499256134, -0.06274940073490143, 0.2895868122577667, -0.20255737006664276, 0.028750156983733177, 0.984839677810669, -0.17553295195102692, 0.07321163266897202, 0.024292023852467537]} +{"t": 2.0954, "q": [-0.3478778600692749, -0.011755406856536865, 0.005276407115161419, 0.6286338567733765, -0.31619054079055786, 0.015743374824523926, -0.3873693645000458, 0.0004857605672441423, -0.004941609688103199, 0.6024368405342102, -0.282100647687912, -7.675721280975267e-05, 0.00388364982791245, 0.00584804080426693, -0.04367345571517944, 0.2846493124961853, 0.19510318338871002, -0.005464806687086821, 0.9842764139175415, 0.14547650516033173, 0.04141748324036598, -0.06273742020130157, 0.2895868122577667, -0.20255737006664276, 0.028750156983733177, 0.9848516583442688, -0.17550897598266602, 0.07323560118675232, 0.02431599237024784]} +{"t": 2.1121, "q": [-0.347869336605072, -0.011789495125412941, 0.005249623209238052, 0.6286253333091736, -0.31619054079055786, 0.015743374824523926, -0.38737788796424866, 0.0004857605672441423, -0.004995177034288645, 0.6024453639984131, -0.28210482001304626, -6.950984970899299e-05, 0.0038970415480434895, 0.00584804080426693, -0.04367345571517944, 0.2846493124961853, 0.19510318338871002, -0.0055007594637572765, 0.9842883944511414, 0.14542856812477112, 0.04141748324036598, -0.06273742020130157, 0.2895868122577667, -0.20255737006664276, 0.028738172724843025, 0.9848516583442688, -0.1754370778799057, 0.07321163266897202, 0.02431599237024784]} +{"t": 2.1289, "q": [-0.347869336605072, -0.011772450059652328, 0.005289798602461815, 0.6286338567733765, -0.31618642807006836, 0.015736130997538567, -0.38738641142845154, 0.000502804818097502, -0.005021960940212011, 0.602453887462616, -0.28210899233818054, -6.22624866082333e-05, 0.0038434739690274, 0.005848038010299206, -0.04366356506943703, 0.2846493124961853, 0.19511516392230988, -0.005476790945976973, 0.9842883944511414, 0.1454046070575714, 0.04140549898147583, -0.06273742020130157, 0.2895987927913666, -0.20255737006664276, 0.028750156983733177, 0.9848516583442688, -0.17549699544906616, 0.07321163266897202, 0.02431599237024784]} +{"t": 2.1456, "q": [-0.3478863835334778, -0.011763928458094597, 0.005276407115161419, 0.6286253333091736, -0.31619468331336975, 0.01573609933257103, -0.3874204754829407, 0.0004942826926708221, -0.005021960940212011, 0.6024453639984131, -0.28210899233818054, -6.22624866082333e-05, 0.0038568659219890833, 0.005855646915733814, -0.04367842152714729, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842644333839417, 0.1453806310892105, 0.04141748324036598, -0.06273742020130157, 0.2895868122577667, -0.20255737006664276, 0.02876214124262333, 0.984839677810669, -0.1754610389471054, 0.07321163266897202, 0.02431599237024784]} +{"t": 2.1623, "q": [-0.3478778600692749, -0.011789495125412941, 0.005303190555423498, 0.6286253333091736, -0.31618228554725647, 0.015743406489491463, -0.3874204754829407, 0.0004857605672441423, -0.004968393128365278, 0.6024453639984131, -0.2821173071861267, -6.220977229531854e-05, 0.0038970415480434895, 0.005855644587427378, -0.04366853088140488, 0.28466129302978516, 0.19510318338871002, -0.005476790945976973, 0.9842764139175415, 0.14541658759117126, 0.041429467499256134, -0.06273742020130157, 0.2895987927913666, -0.2025453895330429, 0.028738172724843025, 0.984839677810669, -0.17544905841350555, 0.07323560118675232, 0.024292023852467537]} +{"t": 2.1791, "q": [-0.3478778600692749, -0.011789495125412941, 0.005316582508385181, 0.6286338567733765, -0.31618639826774597, 0.015750648453831673, -0.3874204754829407, 0.0004942826926708221, -0.005008568987250328, 0.6024453639984131, -0.2821172773838043, -7.665179145988077e-05, 0.0038568659219890833, 0.005817624274641275, -0.043683260679244995, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842883944511414, 0.14539262652397156, 0.04141748324036598, -0.06274940073490143, 0.2895868122577667, -0.2025453895330429, 0.028750156983733177, 0.9848516583442688, -0.17547301948070526, 0.07323560118675232, 0.024292023852467537]} +{"t": 2.1959, "q": [-0.3478778600692749, -0.011798016726970673, 0.005289798602461815, 0.6286338567733765, -0.31619054079055786, 0.015743374824523926, -0.3874034583568573, 0.0004942826926708221, -0.004995177034288645, 0.6024368405342102, -0.28210896253585815, -7.670450577279553e-05, 0.0038970415480434895, 0.005817627068608999, -0.04369315132498741, 0.28466129302978516, 0.19510318338871002, -0.005476790945976973, 0.9842883944511414, 0.14544056355953217, 0.04141748324036598, -0.06273742020130157, 0.2895868122577667, -0.20255737006664276, 0.028750156983733177, 0.9848756194114685, -0.1754610389471054, 0.07323560118675232, 0.024292023852467537]} +{"t": 2.2126, "q": [-0.3478863835334778, -0.011789495125412941, 0.005289798602461815, 0.6286338567733765, -0.3163476884365082, 0.015452319756150246, -0.38743752241134644, 0.0004942826926708221, -0.004968393128365278, 0.6024368405342102, -0.28210899233818054, -6.22624866082333e-05, 0.003816690295934677, 0.005855644587427378, -0.04366853088140488, 0.28466129302978516, 0.19512715935707092, -0.005476790945976973, 0.9842764139175415, 0.14539262652397156, 0.041429467499256134, -0.06273742020130157, 0.2895868122577667, -0.20255737006664276, 0.028738172724843025, 0.9848516583442688, -0.1754610389471054, 0.07324758172035217, 0.02430400811135769]} +{"t": 2.2295, "q": [-0.347869336605072, -0.011806539259850979, 0.005303190555423498, 0.6286338567733765, -0.31608301401138306, 0.015932593494653702, -0.38735231757164, 0.000502804818097502, -0.005008568987250328, 0.6024453639984131, -0.2821131944656372, -5.501512350747362e-05, 0.0038434739690274, 0.005840431898832321, -0.04365859925746918, 0.2846493124961853, 0.19511516392230988, -0.005464806687086821, 0.9842883944511414, 0.14539262652397156, 0.041429467499256134, -0.06274940073490143, 0.289562851190567, -0.20255737006664276, 0.028738172724843025, 0.9848516583442688, -0.17544905841350555, 0.07324758172035217, 0.024292023852467537]} +{"t": 2.2466, "q": [-0.3478778600692749, -0.01178097352385521, 0.005316582508385181, 0.6286509037017822, -0.31601688265800476, 0.016049010679125786, -0.38734379410743713, 0.000502804818097502, -0.004995177034288645, 0.602453887462616, -0.28210482001304626, -6.950984970899299e-05, 0.0038568659219890833, 0.005832831375300884, -0.04367341473698616, 0.28466129302978516, 0.19512715935707092, -0.005476790945976973, 0.9842764139175415, 0.14547650516033173, 0.04141748324036598, -0.06274940073490143, 0.2895987927913666, -0.20255737006664276, 0.02876214124262333, 0.9848516583442688, -0.17553295195102692, 0.07324758172035217, 0.024292023852467537]} +{"t": 2.2634, "q": [-0.34786084294319153, -0.01178097352385521, 0.005303190555423498, 0.628667950630188, -0.31601688265800476, 0.016049010679125786, -0.38737788796424866, 0.0004942826926708221, -0.005021960940212011, 0.602453887462616, -0.282100647687912, -7.675721280975267e-05, 0.0038970415480434895, 0.005817627068608999, -0.04369315132498741, 0.28466129302978516, 0.19510318338871002, -0.005476790945976973, 0.9842883944511414, 0.14546452462673187, 0.04141748324036598, -0.06273742020130157, 0.2895987927913666, -0.20255737006664276, 0.028750156983733177, 0.9848516583442688, -0.17549699544906616, 0.07324758172035217, 0.024292023852467537]} +{"t": 2.2801, "q": [-0.34785231947898865, -0.011798016726970673, 0.005329974461346865, 0.628667950630188, -0.3160044848918915, 0.01605633646249771, -0.3873608410358429, 0.0005113269435241818, -0.005021960940212011, 0.6024709343910217, -0.28210896253585815, -7.670450577279553e-05, 0.0038970415480434895, 0.005840431898832321, -0.04365859925746918, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842764139175415, 0.14541658759117126, 0.04140549898147583, -0.06273742020130157, 0.2895868122577667, -0.20255737006664276, 0.028738172724843025, 0.984839677810669, -0.17544905841350555, 0.07323560118675232, 0.02431599237024784]} +{"t": 2.2969, "q": [-0.34784379601478577, -0.011806539259850979, 0.005316582508385181, 0.628667950630188, -0.316008597612381, 0.01606357842683792, -0.3873608410358429, 0.0005113269435241818, -0.005035352893173695, 0.602522075176239, -0.28210482001304626, -6.950984970899299e-05, 0.0038434739690274, 0.005840434692800045, -0.043668489903211594, 0.2846493124961853, 0.19511516392230988, -0.005476790945976973, 0.9842764139175415, 0.14544056355953217, 0.04140549898147583, -0.06274940073490143, 0.2895987927913666, -0.2025453895330429, 0.028750156983733177, 0.9848516583442688, -0.1754610389471054, 0.07324758172035217, 0.02431599237024784]} +{"t": 2.3137, "q": [-0.34785231947898865, -0.011806539259850979, 0.005329974461346865, 0.628667950630188, -0.31601274013519287, 0.016041768714785576, -0.3873693645000458, 0.0004857605672441423, -0.005035352893173695, 0.6025391221046448, -0.282100647687912, -7.675721280975267e-05, 0.0038300822488963604, 0.005840437486767769, -0.04367838054895401, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842883944511414, 0.14547650516033173, 0.04141748324036598, -0.06274940073490143, 0.2895868122577667, -0.2025453895330429, 0.028738172724843025, 0.9848756194114685, -0.1754370778799057, 0.07323560118675232, 0.02431599237024784]} +{"t": 2.3304, "q": [-0.3478352725505829, -0.011815061792731285, 0.005329974461346865, 0.6286764740943909, -0.316008597612381, 0.016049060970544815, -0.38733527064323425, 0.0005113269435241818, -0.005062136333435774, 0.6025476455688477, -0.28210482001304626, -6.950984970899299e-05, 0.0038300822488963604, 0.005840434692800045, -0.043668489903211594, 0.28466129302978516, 0.19510318338871002, -0.005464806687086821, 0.9843003749847412, 0.1454046070575714, 0.04141748324036598, -0.06273742020130157, 0.2895868122577667, -0.20255737006664276, 0.028750156983733177, 0.9848516583442688, -0.17542508244514465, 0.07325956970453262, 0.024292023852467537]} +{"t": 2.3473, "q": [-0.3478182256221771, -0.011823583394289017, 0.005343366414308548, 0.6286764740943909, -0.31600454449653625, 0.016027318313717842, -0.3873097002506256, 0.0005113269435241818, -0.005062136333435774, 0.6026158332824707, -0.2820757329463959, -6.247346755117178e-05, 0.0038568659219890833, 0.005825227592140436, -0.04367833957076073, 0.2846493124961853, 0.19510318338871002, -0.005464806687086821, 0.9842883944511414, 0.14548850059509277, 0.041441451758146286, -0.06274940073490143, 0.2895987927913666, -0.20255737006664276, 0.028750156983733177, 0.984839677810669, -0.17544905841350555, 0.07324758172035217, 0.02431599237024784]} +{"t": 2.364, "q": [-0.34780970215797424, -0.011806539259850979, 0.005356758367270231, 0.6287190914154053, -0.31600040197372437, 0.01603461056947708, -0.3873097002506256, 0.0005113269435241818, -0.005035352893173695, 0.6026328802108765, -0.28207170963287354, -2.637675243022386e-05, 0.0038568659219890833, 0.0058176214806735516, -0.04367337375879288, 0.28466129302978516, 0.19512715935707092, -0.005476790945976973, 0.9843003749847412, 0.14550048112869263, 0.04140549898147583, -0.06272543221712112, 0.28961077332496643, -0.20255737006664276, 0.028750156983733177, 0.9848516583442688, -0.17542508244514465, 0.07324758172035217, 0.02430400811135769]} +{"t": 2.3808, "q": [-0.3477756083011627, -0.011815061792731285, 0.0053701503202319145, 0.6287105679512024, -0.3159879744052887, 0.01605643518269062, -0.38730117678642273, 0.0005113269435241818, -0.005048744846135378, 0.6026243567466736, -0.28204667568206787, -5.54369471501559e-05, 0.0038702578749507666, 0.005840434692800045, -0.043668489903211594, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9843003749847412, 0.14550048112869263, 0.041441451758146286, -0.06273742020130157, 0.2895868122577667, -0.20255737006664276, 0.028750156983733177, 0.9848756194114685, -0.1754850149154663, 0.07323560118675232, 0.02431599237024784]} +{"t": 2.3976, "q": [-0.3477500379085541, -0.011840627528727055, 0.005437109619379044, 0.6287276148796082, -0.31504112482070923, 0.0176938958466053, -0.3872585594654083, 0.0005113269435241818, -0.00508892023935914, 0.6026840209960938, -0.28203830122947693, -6.993167335167527e-05, 0.00388364982791245, 0.005810020491480827, -0.04368818551301956, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842883944511414, 0.14546452462673187, 0.04141748324036598, -0.06273742020130157, 0.2895868122577667, -0.20255737006664276, 0.028738172724843025, 0.9848756194114685, -0.1754370778799057, 0.07324758172035217, 0.024339960888028145]} +{"t": 2.4143, "q": [-0.34775856137275696, -0.011815061792731285, 0.005410325713455677, 0.6287276148796082, -0.31496667861938477, 0.017839381471276283, -0.38728412985801697, 0.0005113269435241818, -0.005062136333435774, 0.6026840209960938, -0.28204676508903503, -2.6552916096989065e-05, 0.0038300822488963604, 0.005810020491480827, -0.04368818551301956, 0.28463733196258545, 0.19510318338871002, -0.005476790945976973, 0.9843003749847412, 0.14547650516033173, 0.04141748324036598, -0.06273742020130157, 0.2895987927913666, -0.20255737006664276, 0.028750156983733177, 0.9848756194114685, -0.17544905841350555, 0.07324758172035217, 0.02431599237024784]} +{"t": 2.431, "q": [-0.3477415144443512, -0.011840627528727055, 0.005437109619379044, 0.6287446022033691, -0.3149997889995575, 0.017766663804650307, -0.38730117678642273, 0.0005113269435241818, -0.005062136333435774, 0.6027266383171082, -0.28204262256622314, -1.9340366634423845e-05, 0.0038300822488963604, 0.005840440280735493, -0.043688271194696426, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9842883944511414, 0.14544056355953217, 0.04141748324036598, -0.06273742020130157, 0.2895987927913666, -0.20255737006664276, 0.028750156983733177, 0.9848756194114685, -0.17540112137794495, 0.07324758172035217, 0.02431599237024784]} +{"t": 2.4479, "q": [-0.3477415144443512, -0.011832104995846748, 0.00542371766641736, 0.628753125667572, -0.3150535225868225, 0.017686571925878525, -0.3873097002506256, 0.0005113269435241818, -0.005062136333435774, 0.6027522087097168, -0.28204676508903503, -2.6552916096989065e-05, 0.0038568659219890833, 0.005855646915733814, -0.04367842152714729, 0.2846493124961853, 0.19511516392230988, -0.005464806687086821, 0.9842883944511414, 0.14539262652397156, 0.041429467499256134, -0.06273742020130157, 0.2895868122577667, -0.20253340899944305, 0.028750156983733177, 0.9848516583442688, -0.17549699544906616, 0.07325956970453262, 0.02431599237024784]} +{"t": 2.4647, "q": [-0.3477500379085541, -0.011832104995846748, 0.005437109619379044, 0.6287446022033691, -0.31504523754119873, 0.017701121047139168, -0.3873097002506256, 0.0005368932615965605, -0.005035352893173695, 0.602735161781311, -0.282042533159256, -4.824229472433217e-05, 0.0038300822488963604, 0.0058632479049265385, -0.04366360604763031, 0.284673273563385, 0.19510318338871002, -0.005452822428196669, 0.9842883944511414, 0.14548850059509277, 0.041429467499256134, -0.06273742020130157, 0.2895868122577667, -0.20255737006664276, 0.028750156983733177, 0.9848875999450684, -0.1754850149154663, 0.07324758172035217, 0.02430400811135769]} +{"t": 2.4814, "q": [-0.3477500379085541, -0.011815061792731285, 0.00542371766641736, 0.6287786960601807, -0.3150535225868225, 0.017686571925878525, -0.3873182237148285, 0.000502804818097502, -0.005062136333435774, 0.6027522087097168, -0.2820509076118469, -3.37475685228128e-05, 0.0038300822488963604, 0.005870851222425699, -0.04365868493914604, 0.28466129302978516, 0.19510318338871002, -0.005476790945976973, 0.9843123555183411, 0.14551246166229248, 0.04141748324036598, -0.06273742020130157, 0.2895868122577667, -0.2025453895330429, 0.028750156983733177, 0.9848756194114685, -0.17547301948070526, 0.07323560118675232, 0.02431599237024784]} +{"t": 2.4981, "q": [-0.34775856137275696, -0.011832104995846748, 0.005410325713455677, 0.6287786960601807, -0.3150535225868225, 0.017686571925878525, -0.3873097002506256, 0.0004942826926708221, -0.0049817850813269615, 0.6027436852455139, -0.2820509076118469, -3.37475685228128e-05, 0.0038434739690274, 0.005870856810361147, -0.043678462505340576, 0.28466129302978516, 0.19511516392230988, -0.0055007594637572765, 0.9843123555183411, 0.14550048112869263, 0.041429467499256134, -0.06273742020130157, 0.2895868122577667, -0.2025453895330429, 0.028750156983733177, 0.9848756194114685, -0.17547301948070526, 0.07324758172035217, 0.02430400811135769]} +{"t": 2.5149, "q": [-0.3477841317653656, -0.011806539259850979, 0.005396933760493994, 0.6287872195243835, -0.3150700032711029, 0.017686471343040466, -0.38732674717903137, 0.000502804818097502, -0.0049817850813269615, 0.6027266383171082, -0.2820509076118469, -3.37475685228128e-05, 0.0038434739690274, 0.005901266820728779, -0.04364888370037079, 0.28466129302978516, 0.19510318338871002, -0.005452822428196669, 0.9843123555183411, 0.14548850059509277, 0.04141748324036598, -0.06273742020130157, 0.2895868122577667, -0.2025453895330429, 0.028750156983733177, 0.9848875999450684, -0.17544905841350555, 0.07324758172035217, 0.024292023852467537]} +{"t": 2.5316, "q": [-0.34776708483695984, -0.011823583394289017, 0.005396933760493994, 0.6287957429885864, -0.3150617480278015, 0.01770102232694626, -0.3873608410358429, 0.000502804818097502, -0.004928217735141516, 0.6027181148529053, -0.2820509076118469, -3.37475685228128e-05, 0.0038300822488963604, 0.0058480435982346535, -0.04368334636092186, 0.28466129302978516, 0.19510318338871002, -0.005476790945976973, 0.9843123555183411, 0.1454046070575714, 0.04141748324036598, -0.06274940073490143, 0.2895987927913666, -0.20255737006664276, 0.028750156983733177, 0.9848875999450684, -0.1754610389471054, 0.07324758172035217, 0.024292023852467537]} +{"t": 2.5483, "q": [-0.34776708483695984, -0.011815061792731285, 0.005396933760493994, 0.6287957429885864, -0.31502044200897217, 0.01774478890001774, -0.38734379410743713, 0.0004942826926708221, -0.004941609688103199, 0.6027436852455139, -0.28204667568206787, -5.54369471501559e-05, 0.0038434739690274, 0.00584804080426693, -0.04367345571517944, 0.28466129302978516, 0.19511516392230988, -0.005476790945976973, 0.9843003749847412, 0.14541658759117126, 0.04140549898147583, -0.06276138871908188, 0.2895987927913666, -0.2025453895330429, 0.028750156983733177, 0.9848756194114685, -0.1754850149154663, 0.07324758172035217, 0.02430400811135769]} +{"t": 2.5651, "q": [-0.3477841317653656, -0.011840627528727055, 0.005396933760493994, 0.6288127899169922, -0.3150080144405365, 0.01778111420571804, -0.3873693645000458, 0.0004857605672441423, -0.004955001175403595, 0.6027266383171082, -0.2820384204387665, -4.104764593648724e-05, 0.0038434739690274, 0.0058480435982346535, -0.04368334636092186, 0.28466129302978516, 0.19510318338871002, -0.0055007594637572765, 0.9843123555183411, 0.14547650516033173, 0.041429467499256134, -0.06278535723686218, 0.2895987927913666, -0.20255737006664276, 0.02876214124262333, 0.9848756194114685, -0.17547301948070526, 0.07324758172035217, 0.024327976629137993]} +{"t": 2.5819, "q": [-0.3477926552295685, -0.011823583394289017, 0.005383542273193598, 0.6288127899169922, -0.315003901720047, 0.017773889005184174, -0.38738641142845154, 0.0004942826926708221, -0.0049817850813269615, 0.602735161781311, -0.28204262256622314, -1.9340366634423845e-05, 0.0038434739690274, 0.005787212867289782, -0.04371284693479538, 0.2846493124961853, 0.19511516392230988, -0.005464806687086821, 0.9843123555183411, 0.14550048112869263, 0.04140549898147583, -0.06273742020130157, 0.2895987927913666, -0.2025453895330429, 0.028750156983733177, 0.9849115610122681, -0.17544905841350555, 0.07325956970453262, 0.02431599237024784]} +{"t": 2.5986, "q": [-0.34780117869377136, -0.011789495125412941, 0.00542371766641736, 0.6288127899169922, -0.3150121569633484, 0.01775933802127838, -0.38738641142845154, 0.00046871634549461305, -0.004955001175403595, 0.6027266383171082, -0.28204676508903503, -2.6552916096989065e-05, 0.0038434739690274, 0.005817624274641275, -0.043683260679244995, 0.2846493124961853, 0.19511516392230988, -0.005476790945976973, 0.9842883944511414, 0.14541658759117126, 0.04141748324036598, -0.06274940073490143, 0.2895868122577667, -0.20255737006664276, 0.02877412550151348, 0.9849115610122681, -0.17549699544906616, 0.07323560118675232, 0.02431599237024784]} +{"t": 2.6153, "q": [-0.3477926552295685, -0.01184915006160736, 0.005383542273193598, 0.6288127899169922, -0.3150038719177246, 0.017788387835025787, -0.38737788796424866, 0.0004857605672441423, -0.0049817850813269615, 0.602735161781311, -0.28204262256622314, -1.9340366634423845e-05, 0.0038300822488963604, 0.00584804080426693, -0.04367345571517944, 0.28466129302978516, 0.19510318338871002, -0.005464806687086821, 0.9842883944511414, 0.14548850059509277, 0.04140549898147583, -0.06274940073490143, 0.2895987927913666, -0.20253340899944305, 0.02877412550151348, 0.9849115610122681, -0.17547301948070526, 0.07324758172035217, 0.024339960888028145]} +{"t": 2.6321, "q": [-0.3477926552295685, -0.011840627528727055, 0.005410325713455677, 0.6288213133811951, -0.3149997293949127, 0.017795681953430176, -0.38737788796424866, 0.0004857605672441423, -0.005021960940212011, 0.6027266383171082, -0.28204676508903503, -2.6552916096989065e-05, 0.00388364982791245, 0.0058632479049265385, -0.04366360604763031, 0.2846493124961853, 0.19510318338871002, -0.005476790945976973, 0.9843243360519409, 0.14548850059509277, 0.04141748324036598, -0.06274940073490143, 0.2895868122577667, -0.20253340899944305, 0.028798094019293785, 0.9849115610122681, -0.17547301948070526, 0.07325956970453262, 0.024327976629137993]} +{"t": 2.6488, "q": [-0.34780117869377136, -0.011883238330483437, 0.00542371766641736, 0.6288127899169922, -0.3149873614311218, 0.017803005874156952, -0.38735231757164, 0.0004942826926708221, -0.005021960940212011, 0.6027436852455139, -0.2820509076118469, -3.37475685228128e-05, 0.003816690295934677, 0.005840434692800045, -0.043668489903211594, 0.2846493124961853, 0.19511516392230988, -0.005464806687086821, 0.9843003749847412, 0.14547650516033173, 0.041441451758146286, -0.06276138871908188, 0.289562851190567, -0.20253340899944305, 0.028786109760403633, 0.9849355220794678, -0.17547301948070526, 0.07325956970453262, 0.02431599237024784]} +{"t": 2.6655, "q": [-0.3477926552295685, -0.011874716728925705, 0.005410325713455677, 0.6288127899169922, -0.3149832785129547, 0.01778128184378147, -0.3873608410358429, 0.0004857605672441423, -0.005008568987250328, 0.602735161781311, -0.2820300757884979, -4.10824577556923e-05, 0.00388364982791245, 0.005832831375300884, -0.04367341473698616, 0.2846253514289856, 0.19510318338871002, -0.005476790945976973, 0.9843243360519409, 0.14544056355953217, 0.04141748324036598, -0.06276138871908188, 0.2895388901233673, -0.20250943303108215, 0.02877412550151348, 0.9849355220794678, -0.17555691301822662, 0.07324758172035217, 0.02430400811135769]} +{"t": 2.6823, "q": [-0.34780117869377136, -0.011883238330483437, 0.005437109619379044, 0.6288042664527893, -0.31499147415161133, 0.01781023107469082, -0.38733527064323425, 0.0004942826926708221, -0.005008568987250328, 0.6027436852455139, -0.2820259630680084, -3.388780532986857e-05, 0.003937217406928539, 0.005794808268547058, -0.04367825388908386, 0.2846253514289856, 0.19510318338871002, -0.0054887752048671246, 0.9843123555183411, 0.14546452462673187, 0.04140549898147583, -0.06273742020130157, 0.28947895765304565, -0.20250943303108215, 0.028798094019293785, 0.9849475026130676, -0.17553295195102692, 0.07328353822231293, 0.024292023852467537]} +{"t": 2.699, "q": [-0.34780117869377136, -0.011891759932041168, 0.00542371766641736, 0.6288213133811951, -0.31499147415161133, 0.017795730382204056, -0.38732674717903137, 0.0004942826926708221, -0.005035352893173695, 0.6027266383171082, -0.2820218801498413, -1.225113828695612e-05, 0.0038970415480434895, 0.00579480268061161, -0.04365847632288933, 0.2846013903617859, 0.19510318338871002, -0.005476790945976973, 0.9843243360519409, 0.14552444219589233, 0.04141748324036598, -0.06276138871908188, 0.289419025182724, -0.20250943303108215, 0.028786109760403633, 0.9849594831466675, -0.17550897598266602, 0.07325956970453262, 0.02430400811135769]} +{"t": 2.7157, "q": [-0.34784379601478577, -0.011891759932041168, 0.005437109619379044, 0.6288213133811951, -0.31499969959259033, 0.01781018078327179, -0.38733527064323425, 0.0004601942200679332, -0.005048744846135378, 0.6027266383171082, -0.28203436732292175, -4.951062237523729e-06, 0.0039506093598902225, 0.005802409257739782, -0.04366344213485718, 0.2846253514289856, 0.19511516392230988, -0.005464806687086821, 0.9843123555183411, 0.14551246166229248, 0.04141748324036598, -0.06274940073490143, 0.2893711030483246, -0.2024974524974823, 0.028810078278183937, 0.9849475026130676, -0.17547301948070526, 0.07323560118675232, 0.024339960888028145]} +{"t": 2.7325, "q": [-0.3478352725505829, -0.01190880499780178, 0.005437109619379044, 0.6288213133811951, -0.31499558687210083, 0.017802955582737923, -0.38733527064323425, 0.00046871634549461305, -0.00508892023935914, 0.6027266383171082, -0.28203436732292175, -4.951062237523729e-06, 0.004071136470884085, 0.0058176107704639435, -0.04363381490111351, 0.2846253514289856, 0.19511516392230988, -0.0055007594637572765, 0.9843243360519409, 0.1454046070575714, 0.04139351472258568, -0.06274940073490143, 0.2892872095108032, -0.2024974524974823, 0.02882206253707409, 0.9849594831466675, -0.17555691301822662, 0.07322361320257187, 0.024327976629137993]} +{"t": 2.7492, "q": [-0.34784379601478577, -0.01190880499780178, 0.005450501572340727, 0.6288042664527893, -0.31499147415161133, 0.01781023107469082, -0.38735231757164, 0.0004772384709212929, -0.005075528286397457, 0.6027436852455139, -0.2820386290550232, 1.6756346667534672e-05, 0.004111311864107847, 0.005802398081868887, -0.04362388327717781, 0.2846253514289856, 0.19511516392230988, -0.005476790945976973, 0.9843243360519409, 0.14550048112869263, 0.04141748324036598, -0.06276138871908188, 0.2892632484436035, -0.2024974524974823, 0.028798094019293785, 0.9849475026130676, -0.17554493248462677, 0.07327155023813248, 0.02431599237024784]} +{"t": 2.7659, "q": [-0.34784379601478577, -0.011917326599359512, 0.00542371766641736, 0.6288042664527893, -0.3150079846382141, 0.017795613035559654, -0.38735231757164, 0.0004772384709212929, -0.005062136333435774, 0.6027266383171082, -0.2820386290550232, 1.6756346667534672e-05, 0.004151487722992897, 0.005779587663710117, -0.04363865405321121, 0.2846253514289856, 0.19511516392230988, -0.005476790945976973, 0.9843243360519409, 0.14544056355953217, 0.041429467499256134, -0.06276138871908188, 0.28920331597328186, -0.2024974524974823, 0.028798094019293785, 0.9849594831466675, -0.17544905841350555, 0.07324758172035217, 0.02431599237024784]} +{"t": 2.7826, "q": [-0.34784379601478577, -0.01190880499780178, 0.005410325713455677, 0.6288127899169922, -0.31499969959259033, 0.01781018078327179, -0.38735231757164, 0.00046871634549461305, -0.005075528286397457, 0.6027181148529053, -0.2820426821708679, -4.8983501983457245e-06, 0.00416487967595458, 0.005756774451583624, -0.043643537908792496, 0.2846253514289856, 0.19511516392230988, -0.005476790945976973, 0.9843243360519409, 0.14542856812477112, 0.04141748324036598, -0.06273742020130157, 0.28917935490608215, -0.2024974524974823, 0.028798094019293785, 0.9849475026130676, -0.17547301948070526, 0.07325956970453262, 0.024339960888028145]} +{"t": 2.7995, "q": [-0.3478778600692749, -0.011900282464921474, 0.005410325713455677, 0.6288127899169922, -0.3150079846382141, 0.017795613035559654, -0.38735231757164, 0.00046871634549461305, -0.005035352893173695, 0.6027181148529053, -0.2820386290550232, 1.6756346667534672e-05, 0.004111311864107847, 0.005749179050326347, -0.04367813095450401, 0.2846493124961853, 0.19510318338871002, -0.005452822428196669, 0.9843363165855408, 0.1454046070575714, 0.04141748324036598, -0.06276138871908188, 0.2891434133052826, -0.20248547196388245, 0.028786109760403633, 0.9849235415458679, -0.17550897598266602, 0.07327155023813248, 0.02431599237024784]} +{"t": 2.8162, "q": [-0.3478352725505829, -0.01190880499780178, 0.00542371766641736, 0.6288042664527893, -0.3150700330734253, 0.01767195388674736, -0.38738641142845154, 0.0004516721237450838, -0.005021960940212011, 0.602735161781311, -0.2820427417755127, 9.561694241710939e-06, 0.004084527958184481, 0.005779593251645565, -0.043658435344696045, 0.2846253514289856, 0.19512715935707092, -0.005464806687086821, 0.9843243360519409, 0.14536865055561066, 0.041429467499256134, -0.06272543221712112, 0.2891434133052826, -0.2024734914302826, 0.02883404679596424, 0.9849475026130676, -0.17547301948070526, 0.07324758172035217, 0.02431599237024784]} +{"t": 2.8329, "q": [-0.34782674908638, -0.011883238330483437, 0.00542371766641736, 0.6288042664527893, -0.3150617480278015, 0.017686521634459496, -0.3873693645000458, 0.0004601942200679332, -0.005008568987250328, 0.6027181148529053, -0.28203850984573364, -1.2145714208600111e-05, 0.004097919911146164, 0.00579480268061161, -0.04365847632288933, 0.2846253514289856, 0.19510318338871002, -0.005452822428196669, 0.9843243360519409, 0.14546452462673187, 0.041429467499256134, -0.06273742020130157, 0.2891673743724823, -0.20248547196388245, 0.028786109760403633, 0.9849475026130676, -0.17554493248462677, 0.07325956970453262, 0.024327976629137993]} +{"t": 2.8498, "q": [-0.34784379601478577, -0.011857671663165092, 0.005410325713455677, 0.6288213133811951, -0.315057635307312, 0.01769379712641239, -0.3874034583568573, 0.00044314999831840396, -0.005021960940212011, 0.6027266383171082, -0.2820468842983246, 2.3670420432608807e-06, 0.004044352564960718, 0.005794800352305174, -0.04364858567714691, 0.2846253514289856, 0.19510318338871002, -0.005476790945976973, 0.9843243360519409, 0.1454046070575714, 0.04141748324036598, -0.06276138871908188, 0.28920331597328186, -0.20242555439472198, 0.028846031054854393, 0.9849954843521118, -0.17549699544906616, 0.07324758172035217, 0.0243759136646986]} +{"t": 2.8666, "q": [-0.3478352725505829, -0.011883238330483437, 0.00542371766641736, 0.6288042664527893, -0.31504935026168823, 0.017708346247673035, -0.3874204754829407, 0.0004516721237450838, -0.004968393128365278, 0.6027095913887024, -0.2820468842983246, 2.3670420432608807e-06, 0.004004176706075668, 0.005779596045613289, -0.04366832226514816, 0.2846253514289856, 0.19510318338871002, -0.005476790945976973, 0.9843243360519409, 0.1454046070575714, 0.04141748324036598, -0.06278535723686218, 0.2892392873764038, -0.20220983028411865, 0.02894190326333046, 0.9851992130279541, -0.17552095651626587, 0.07329551875591278, 0.024387897923588753]} +{"t": 2.8833, "q": [-0.34785231947898865, -0.011891759932041168, 0.00542371766641736, 0.6288213133811951, -0.3150617480278015, 0.01770102232694626, -0.3874119520187378, 0.0004516721237450838, -0.0049148257821798325, 0.602735161781311, -0.2820468842983246, 2.3670420432608807e-06, 0.004017568659037352, 0.005810009781271219, -0.043648626655340195, 0.2846013903617859, 0.19510318338871002, -0.005452822428196669, 0.9843243360519409, 0.14547650516033173, 0.04141748324036598, -0.06277336925268173, 0.2892392873764038, -0.2019461840391159, 0.02906174585223198, 0.9854508638381958, -0.17549699544906616, 0.07328353822231293, 0.02443583495914936]} +{"t": 2.9003, "q": [-0.34785231947898865, -0.011883238330483437, 0.005410325713455677, 0.6288213133811951, -0.315057635307312, 0.01769379712641239, -0.38743752241134644, 0.00044314999831840396, -0.004888041876256466, 0.6027266383171082, -0.28205105662345886, 9.614405826141592e-06, 0.003977392800152302, 0.005779596045613289, -0.04366832226514816, 0.2846253514289856, 0.19512715935707092, -0.005464806687086821, 0.9843243360519409, 0.14545254409313202, 0.04140549898147583, -0.06277336925268173, 0.28938308358192444, -0.2015986442565918, 0.029157619923353195, 0.9856306314468384, -0.17547301948070526, 0.07333147525787354, 0.02443583495914936]} +{"t": 2.917, "q": [-0.3478778600692749, -0.011874716728925705, 0.005410325713455677, 0.6288127899169922, -0.3150576055049896, 0.017708295956254005, -0.3875312805175781, 0.00044314999831840396, -0.0049148257821798325, 0.6027181148529053, -0.28204694390296936, 1.6809059161460027e-05, 0.004004176706075668, 0.005810012575238943, -0.04365851730108261, 0.2846253514289856, 0.19512715935707092, -0.005476790945976973, 0.9843243360519409, 0.14548850059509277, 0.041429467499256134, -0.06276138871908188, 0.289419025182724, -0.20121514797210693, 0.02930143103003502, 0.9861219525337219, -0.17544905841350555, 0.07334345579147339, 0.02443583495914936]} +{"t": 2.9337, "q": [-0.3478778600692749, -0.011866194196045399, 0.005410325713455677, 0.6288127899169922, -0.315065860748291, 0.017693746834993362, -0.38752275705337524, 0.0004346278728917241, -0.004847866017371416, 0.6027181148529053, -0.2820468842983246, 2.3670420432608807e-06, 0.003977392800152302, 0.00579480268061161, -0.04365847632288933, 0.2846253514289856, 0.19509120285511017, -0.005464806687086821, 0.9843243360519409, 0.14541658759117126, 0.041429467499256134, -0.06277336925268173, 0.28945499658584595, -0.20079569518566132, 0.029397305101156235, 0.9865893721580505, -0.17542508244514465, 0.07336742430925369, 0.024459803476929665]} +{"t": 2.9505, "q": [-0.3479290008544922, -0.011883238330483437, 0.005410325713455677, 0.6288127899169922, -0.315057635307312, 0.01769379712641239, -0.38756537437438965, 0.00044314999831840396, -0.004901433829218149, 0.6027095913887024, -0.2820552587509155, 1.686176983639598e-05, 0.004004176706075668, 0.005779596045613289, -0.04366832226514816, 0.2846253514289856, 0.19511516392230988, -0.005476790945976973, 0.9843243360519409, 0.14536865055561066, 0.04139351472258568, -0.06276138871908188, 0.28947895765304565, -0.2003762423992157, 0.02949317917227745, 0.9869848489761353, -0.1754370778799057, 0.07337941229343414, 0.024531709030270576]} +{"t": 2.9674, "q": [-0.34794604778289795, -0.011866194196045399, 0.005410325713455677, 0.6288042664527893, -0.3150617480278015, 0.01770102232694626, -0.3875824213027954, 0.0004346278728917241, -0.004861257970333099, 0.6027181148529053, -0.28205519914627075, 2.4197540824388852e-06, 0.003977392800152302, 0.00578719936311245, -0.043663401156663895, 0.2846253514289856, 0.19510318338871002, -0.005476790945976973, 0.9843243360519409, 0.14542856812477112, 0.041429467499256134, -0.06274940073490143, 0.2894909381866455, -0.20000474154949188, 0.029565082862973213, 0.9873204231262207, -0.17547301948070526, 0.07340338081121445, 0.02455567754805088]} +{"t": 2.9841, "q": [-0.34795457124710083, -0.011866194196045399, 0.005437109619379044, 0.6288127899169922, -0.3150699734687805, 0.01770097203552723, -0.38761648535728455, 0.00044314999831840396, -0.004847866017371416, 0.6026840209960938, -0.2820594310760498, 2.4109134756145068e-05, 0.0039506093598902225, 0.005779596045613289, -0.04366832226514816, 0.2846253514289856, 0.19511516392230988, -0.005476790945976973, 0.9843243360519409, 0.14542856812477112, 0.041429467499256134, -0.06276138871908188, 0.28950291872024536, -0.19969314336776733, 0.029684925451874733, 0.9875960350036621, -0.1754610389471054, 0.07340338081121445, 0.024579646065831184]} +{"t": 3.0008, "q": [-0.34795457124710083, -0.011874716728925705, 0.005450501572340727, 0.6288127899169922, -0.3150699734687805, 0.017715489491820335, -0.3876335322856903, 0.0004346278728917241, -0.004847866017371416, 0.6027010679244995, -0.28205519914627075, 2.4197540824388852e-06, 0.004030960611999035, 0.005810006987303495, -0.04363873600959778, 0.28463733196258545, 0.19511516392230988, -0.005476790945976973, 0.9843243360519409, 0.14544056355953217, 0.041429467499256134, -0.06274940073490143, 0.28950291872024536, -0.1994774341583252, 0.02972087822854519, 0.9877278804779053, -0.1754850149154663, 0.07342734932899475, 0.02455567754805088]} +{"t": 3.0176, "q": [-0.3479290008544922, -0.011874716728925705, 0.005530852824449539, 0.6287616491317749, -0.3150700032711029, 0.017686471343040466, -0.38765057921409607, 0.0004346278728917241, -0.004928217735141516, 0.602666974067688, -0.28205105662345886, 9.614405826141592e-06, 0.003977392800152302, 0.005779596045613289, -0.04366832226514816, 0.28428977727890015, 0.19301792979240417, -0.004853611346334219, 0.9849834442138672, 0.14547650516033173, 0.041501373052597046, -0.06289321184158325, 0.2885681688785553, -0.1977277249097824, 0.030356042087078094, 0.9900168180465698, -0.17558088898658752, 0.07396663725376129, 0.02448377199470997]} +{"t": 3.0343, "q": [-0.34798866510391235, -0.011832104995846748, 0.005450501572340727, 0.6288042664527893, -0.3150741457939148, 0.017679179087281227, -0.3876420557498932, 0.0004346278728917241, -0.004968393128365278, 0.6026584506034851, -0.2820468842983246, 2.3670420432608807e-06, 0.0039506093598902225, 0.005749181844294071, -0.04368802160024643, 0.2834988236427307, 0.19120831787586212, -0.004422178957611322, 0.9863616824150085, 0.14548850059509277, 0.04164518415927887, -0.06291718035936356, 0.2868663966655731, -0.1955825537443161, 0.03057175874710083, 0.9934802651405334, -0.17552095651626587, 0.07451791316270828, 0.02436392940580845]} +{"t": 3.0511, "q": [-0.3480057120323181, -0.011840627528727055, 0.005410325713455677, 0.6288127899169922, -0.3150782287120819, 0.017700940370559692, -0.3876335322856903, 0.00044314999831840396, -0.004968393128365278, 0.602666974067688, -0.28205934166908264, -4.79279515275266e-06, 0.004017568659037352, 0.005741575732827187, -0.04368305578827858, 0.2826000154018402, 0.1886197179555893, -0.004542021546512842, 0.9878596663475037, 0.14545254409313202, 0.041681136935949326, -0.06298908591270447, 0.2855001986026764, -0.19289809465408325, 0.031218906864523888, 0.9960688948631287, -0.17550897598266602, 0.07485347241163254, 0.0243759136646986]} +{"t": 3.0679, "q": [-0.3480057120323181, -0.011874716728925705, 0.005410325713455677, 0.6288213133811951, -0.3150576055049896, 0.017708295956254005, -0.3876335322856903, 0.0004261057765688747, -0.0049817850813269615, 0.602666974067688, -0.2820427417755127, 9.561694241710939e-06, 0.004030960611999035, 0.005764383357018232, -0.04365839064121246, 0.28178510069847107, 0.18458104133605957, -0.004554005805402994, 0.9893816709518433, 0.14544056355953217, 0.04169312119483948, -0.06298908591270447, 0.283846378326416, -0.18953052163124084, 0.03141065314412117, 0.9981301426887512, -0.17550897598266602, 0.07498529553413391, 0.02436392940580845]} +{"t": 3.0846, "q": [-0.3479716181755066, -0.011866194196045399, 0.005437109619379044, 0.6288042664527893, -0.3150079846382141, 0.017795613035559654, -0.3876335322856903, 0.0004516721237450838, -0.004955001175403595, 0.6026840209960938, -0.2820385694503784, 2.2963020001043333e-06, 0.004044352564960718, 0.005764383357018232, -0.04365839064121246, 0.28053873777389526, 0.1795836091041565, -0.004673847928643227, 0.991946280002594, 0.14551246166229248, 0.04169312119483948, -0.06309694796800613, 0.28191691637039185, -0.18552778661251068, 0.03147057443857193, 1.0005030632019043, -0.17553295195102692, 0.07520101219415665, 0.02436392940580845]} +{"t": 3.1013, "q": [-0.3479716181755066, -0.011866194196045399, 0.00546389352530241, 0.6287872195243835, -0.3150079548358917, 0.01781013049185276, -0.3876335322856903, 0.0004516721237450838, -0.004968393128365278, 0.6026840209960938, -0.2820427417755127, 9.561694241710939e-06, 0.004071136470884085, 0.00575679074972868, -0.0437028743326664, 0.27934029698371887, 0.17349563539028168, -0.004637895151972771, 0.9945349097251892, 0.14544056355953217, 0.041741058230400085, -0.06312091648578644, 0.2801312506198883, -0.18103370070457458, 0.03147057443857193, 1.0029717683792114, -0.17552095651626587, 0.07524894922971725, 0.024351945146918297]} +{"t": 3.1181, "q": [-0.3479716181755066, -0.011883238330483437, 0.00542371766641736, 0.6288127899169922, -0.3150162100791931, 0.01781008206307888, -0.3875824213027954, 0.00044314999831840396, -0.005008568987250328, 0.602666974067688, -0.28205105662345886, 9.614405826141592e-06, 0.004111311864107847, 0.005817618686705828, -0.04366348311305046, 0.27799805998802185, 0.16701216995716095, -0.004733768757432699, 0.9974590539932251, 0.14550048112869263, 0.04177701100707054, -0.06325273960828781, 0.2781538665294647, -0.17619207501411438, 0.03177018091082573, 1.0059318542480469, -0.17550897598266602, 0.07532085478305817, 0.0243759136646986]} +{"t": 3.1348, "q": [-0.3479630947113037, -0.011874716728925705, 0.005410325713455677, 0.6288042664527893, -0.3150162398815155, 0.01778106391429901, -0.3875909447669983, 0.0004346278728917241, -0.005048744846135378, 0.6026840209960938, -0.2820427417755127, 9.561694241710939e-06, 0.004205055069178343, 0.005810009781271219, -0.043648626655340195, 0.2769314646720886, 0.15965384244918823, -0.0047217849642038345, 0.9998438954353333, 0.14550048112869263, 0.04176502674818039, -0.06324075907468796, 0.27645209431648254, -0.17123061418533325, 0.03183010220527649, 1.008160948753357, -0.17547301948070526, 0.07545268535614014, 0.0243759136646986]} +{"t": 3.1515, "q": [-0.3479630947113037, -0.011883238330483437, 0.005410325713455677, 0.6288042664527893, -0.31499141454696655, 0.0178537480533123, -0.38757389783859253, 0.00044314999831840396, -0.005008568987250328, 0.6027010679244995, -0.2820426821708679, -4.8983501983457245e-06, 0.004178271628916264, 0.005779596045613289, -0.04366832226514816, 0.2760806083679199, 0.1523195058107376, -0.004793690051883459, 1.0021928548812866, 0.14546452462673187, 0.04178899526596069, -0.06330067664384842, 0.27435487508773804, -0.1667005717754364, 0.03191399201750755, 1.01091730594635, -0.17549699544906616, 0.07552459090948105, 0.0243759136646986]} +{"t": 3.1683, "q": [-0.3479630947113037, -0.011874716728925705, 0.00546389352530241, 0.6288127899169922, -0.31498733162879944, 0.017817506566643715, -0.38757389783859253, 0.0004516721237450838, -0.005008568987250328, 0.6027095913887024, -0.2820426821708679, -4.8983501983457245e-06, 0.004017568659037352, 0.005703533999621868, -0.043618667870759964, 0.2754933834075928, 0.1444578468799591, -0.004889564123004675, 1.0042661428451538, 0.14541658759117126, 0.04177701100707054, -0.06338457018136978, 0.2719700038433075, -0.1618110090494156, 0.03184208646416664, 1.0135178565979004, -0.17547301948070526, 0.07571633160114288, 0.02436392940580845]} +{"t": 3.185, "q": [-0.3479716181755066, -0.011857671663165092, 0.005437109619379044, 0.6288127899169922, -0.31498730182647705, 0.01783200539648533, -0.3875824213027954, 0.0004601942200679332, -0.005021960940212011, 0.6027181148529053, -0.2820385694503784, 2.2963020001043333e-06, 0.003964001312851906, 0.005642684176564217, -0.043578941375017166, 0.2751098871231079, 0.1369677037000656, -0.0049614692106842995, 1.00566828250885, 0.14544056355953217, 0.04180097579956055, -0.06340853869915009, 0.26988476514816284, -0.15700533986091614, 0.03177018091082573, 1.0152915716171265, -0.17552095651626587, 0.0757882371544838, 0.024339960888028145]} +{"t": 3.2018, "q": [-0.3479801416397095, -0.011815061792731285, 0.0053701503202319145, 0.6288383603096008, -0.31498318910598755, 0.017839280888438225, -0.387539803981781, 0.0005113269435241818, -0.005062136333435774, 0.6027436852455139, -0.2820427417755127, 9.561694241710939e-06, 0.003977392800152302, 0.005619865842163563, -0.04356404393911362, 0.274810254573822, 0.1291539967060089, -0.004865595605224371, 1.0067708492279053, 0.14545254409313202, 0.0418129600584507, -0.06332464516162872, 0.26764369010925293, -0.15175624191761017, 0.03183010220527649, 1.017053246498108, -0.17553295195102692, 0.07593204826116562, 0.02436392940580845]} +{"t": 3.2185, "q": [-0.34793752431869507, -0.011798016726970673, 0.005383542273193598, 0.628829836845398, -0.31499147415161133, 0.01781023107469082, -0.3875312805175781, 0.0005198490689508617, -0.005021960940212011, 0.6027436852455139, -0.2820386290550232, 1.6756346667534672e-05, 0.004004176706075668, 0.005650285165756941, -0.04356412962079048, 0.27435487508773804, 0.12163988500833511, -0.004817658569663763, 1.008220911026001, 0.14542856812477112, 0.041836928576231, -0.06328869611024857, 0.26509106159210205, -0.14644722640514374, 0.03185407072305679, 1.0188509225845337, -0.17552095651626587, 0.07599197328090668, 0.02436392940580845]} +{"t": 3.2352, "q": [-0.3479290008544922, -0.011806539259850979, 0.005329974461346865, 0.6288213133811951, -0.3149873912334442, 0.01778850518167019, -0.38757389783859253, 0.0005539375124499202, -0.004995177034288645, 0.602735161781311, -0.2820468842983246, 2.3670420432608807e-06, 0.004017568659037352, 0.005771978758275509, -0.043623797595500946, 0.2736957371234894, 0.11489276587963104, -0.004374242387712002, 1.010102391242981, 0.14532071352005005, 0.041908834129571915, -0.062006380409002304, 0.26246652007102966, -0.14161759614944458, 0.03196192905306816, 1.0207923650741577, -0.17544905841350555, 0.07603991031646729, 0.0243759136646986]} +{"t": 3.2519, "q": [-0.34790343046188354, -0.01172131858766079, 0.005316582508385181, 0.6288213133811951, -0.3149873614311218, 0.017803005874156952, -0.38755685091018677, 0.0006221143994480371, -0.004995177034288645, 0.6027777194976807, -0.2820301353931427, -2.6640442229108885e-05, 0.004017568659037352, 0.005870867520570755, -0.04371802136301994, 0.2724733352661133, 0.1095358207821846, -0.0036312201991677284, 1.012846827507019, 0.14539262652397156, 0.042028676718473434, -0.06058025732636452, 0.25999775528907776, -0.13711151480674744, 0.03199788182973862, 1.0230693817138672, -0.17549699544906616, 0.07606387883424759, 0.0243759136646986]} +{"t": 3.2688, "q": [-0.3479204773902893, -0.01172131858766079, 0.00512909609824419, 0.628829836845398, -0.3149791359901428, 0.017788555473089218, -0.3874971866607666, 0.0006221143994480371, -0.0049817850813269615, 0.6027862429618835, -0.28204676508903503, -2.6552916096989065e-05, 0.004807690624147654, 0.006045812740921974, -0.043842121958732605, 0.2710472345352173, 0.10723485052585602, -0.0017137442482635379, 1.0154473781585693, 0.14541658759117126, 0.04212455078959465, -0.059297945350408554, 0.2576847970485687, -0.1333005428314209, 0.03200986608862877, 1.0258616209030151, -0.1754850149154663, 0.0760878473520279, 0.0243759136646986]} +{"t": 3.2855, "q": [-0.34794604778289795, -0.011738361790776253, 0.00483447453007102, 0.6288213133811951, -0.3149626851081848, 0.017759637907147408, -0.3873608410358429, 0.0005539375124499202, -0.0049817850813269615, 0.6027862429618835, -0.2820633351802826, -4.088951027370058e-05, 0.005450501572340727, 0.006258775480091572, -0.043941598385572433, 0.2694533169269562, 0.1067914292216301, -7.190534961409867e-05, 1.0187909603118896, 0.14539262652397156, 0.04212455078959465, -0.05878262594342232, 0.25490447878837585, -0.12977717816829681, 0.03175819665193558, 1.0292651653289795, -0.17554493248462677, 0.07633951306343079, 0.0240643247961998]} +{"t": 3.3023, "q": [-0.34799718856811523, -0.011704273521900177, 0.00479429867118597, 0.6288213133811951, -0.3149585425853729, 0.017766913399100304, -0.3874119520187378, 0.0005368932615965605, -0.004955001175403595, 0.6028118133544922, -0.282071590423584, -5.527881148736924e-05, 0.005825474392622709, 0.00666182953864336, -0.04401698708534241, 0.2680271863937378, 0.10685135424137115, 0.001761681167408824, 1.0224940776824951, 0.14541658759117126, 0.04212455078959465, -0.05874667316675186, 0.25174063444137573, -0.12697286903858185, 0.03163835406303406, 1.0328484773635864, -0.17558088898658752, 0.07663912326097488, 0.02329733408987522]} +{"t": 3.319, "q": [-0.3481079638004303, -0.011712796054780483, 0.00479429867118597, 0.6288213133811951, -0.3150247633457184, 0.01762147806584835, -0.38751423358917236, 0.0005283711361698806, -0.004888041876256466, 0.6028203368186951, -0.28208404779434204, -6.240272341528907e-05, 0.005986177362501621, 0.007262552157044411, -0.043975040316581726, 0.2673201262950897, 0.10685135424137115, 0.002996056340634823, 1.0244594812393188, 0.1454046070575714, 0.04212455078959465, -0.05874667316675186, 0.24838505685329437, -0.12531904876232147, 0.03133874759078026, 1.036335825920105, -0.17552095651626587, 0.0770106315612793, 0.022889869287610054]} +{"t": 3.3357, "q": [-0.3481846749782562, -0.011695751920342445, 0.004847866017371416, 0.6287872195243835, -0.3150205910205841, 0.01764325238764286, -0.3875994384288788, 0.0005454153870232403, -0.00483447453007102, 0.6028032898902893, -0.28208404779434204, -6.240272341528907e-05, 0.005932609550654888, 0.007848130539059639, -0.04402211681008339, 0.2668048143386841, 0.10685135424137115, 0.003595267655327916, 1.0257657766342163, 0.1453806310892105, 0.0421125665307045, -0.05879461020231247, 0.24562868475914001, -0.1248876079916954, 0.0312788262963295, 1.0388405323028564, -0.1754850149154663, 0.07752595096826553, 0.02268613874912262]} +{"t": 3.3525, "q": [-0.34821876883506775, -0.011712796054780483, 0.004847866017371416, 0.6287786960601807, -0.3150164484977722, 0.01766502857208252, -0.38760796189308167, 0.0005624596378766, -0.00483447453007102, 0.6028203368186951, -0.28208819031715393, -6.961527105886489e-05, 0.005785298999398947, 0.008433744311332703, -0.04413841664791107, 0.2660737633705139, 0.10659968107938766, 0.0036551887169480324, 1.0271799564361572, 0.1454046070575714, 0.0421125665307045, -0.05880659446120262, 0.2431359589099884, -0.1248396709561348, 0.031123032793402672, 1.041189432144165, -0.17552095651626587, 0.07816112041473389, 0.022530343383550644]} +{"t": 3.3692, "q": [-0.34821024537086487, -0.011712796054780483, 0.004874649923294783, 0.628753125667572, -0.3150123655796051, 0.01764330267906189, -0.38761648535728455, 0.0005454153870232403, -0.004807690624147654, 0.6027862429618835, -0.28210070729255676, -6.231520092114806e-05, 0.005785298999398947, 0.008738026022911072, -0.044317763298749924, 0.26536670327186584, 0.10627610981464386, 0.0036551887169480324, 1.028174638748169, 0.14541658759117126, 0.0421125665307045, -0.05880659446120262, 0.24157801270484924, -0.12492356449365616, 0.031135017052292824, 1.0433826446533203, -0.1754850149154663, 0.0788322314620018, 0.022542327642440796]} +{"t": 3.3859, "q": [-0.3481846749782562, -0.011729840189218521, 0.004888041876256466, 0.6287446022033691, -0.3150288462638855, 0.01764320395886898, -0.3876335322856903, 0.0005368932615965605, -0.004861257970333099, 0.6028032898902893, -0.28213798999786377, -9.82009296421893e-05, 0.0057719070464372635, 0.008897816762328148, -0.04449155554175377, 0.26444390416145325, 0.10609634965658188, 0.0036791572347283363, 1.0291932821273804, 0.1454046070575714, 0.04212455078959465, -0.05880659446120262, 0.24055935442447662, -0.12489959597587585, 0.031135017052292824, 1.0456596612930298, -0.1754850149154663, 0.07928763329982758, 0.022602248936891556]} +{"t": 3.4027, "q": [-0.34816762804985046, -0.011729840189218521, 0.004888041876256466, 0.6286764740943909, -0.315032958984375, 0.017650427296757698, -0.3876335322856903, 0.0005454153870232403, -0.004901433829218149, 0.6027947664260864, -0.28215041756629944, -0.00010534287139307708, 0.005785298999398947, 0.008951082825660706, -0.044556111097335815, 0.2633293867111206, 0.10606039315462112, 0.0037510625552386045, 1.0307872295379639, 0.1454046070575714, 0.042088598012924194, -0.05878262594342232, 0.239912211894989, -0.1248876079916954, 0.031158985570073128, 1.0482481718063354, -0.1754610389471054, 0.07967112958431244, 0.022590264678001404]} +{"t": 3.4195, "q": [-0.348201721906662, -0.01172131858766079, 0.004888041876256466, 0.6286935210227966, -0.3150370717048645, 0.017657671123743057, -0.38765057921409607, 0.000570981705095619, -0.004968393128365278, 0.6027691960334778, -0.2821628153324127, -0.00012692682503256947, 0.005785298999398947, 0.008951082825660706, -0.044556111097335815, 0.2622627913951874, 0.10614427924156189, 0.003918841481208801, 1.0322492122650146, 0.14544056355953217, 0.0421125665307045, -0.058770641684532166, 0.23963657021522522, -0.12492356449365616, 0.03117096982896328, 1.0500218868255615, -0.1754370778799057, 0.07999470084905624, 0.022614233195781708]} +{"t": 3.4363, "q": [-0.34826987981796265, -0.011738361790776253, 0.004955001175403595, 0.628667950630188, -0.31499573588371277, 0.017730439081788063, -0.387727290391922, 0.0005795038305222988, -0.004995177034288645, 0.6027606725692749, -0.28215450048446655, -0.00012697954662144184, 0.005691555794328451, 0.008943464607000351, -0.04453134909272194, 0.260980486869812, 0.1061922162771225, 0.003990747034549713, 1.0340348482131958, 0.1453566700220108, 0.0421125665307045, -0.058770641684532166, 0.23950473964214325, -0.1248876079916954, 0.031147001311182976, 1.0516157150268555, -0.1754131019115448, 0.08010256290435791, 0.022602248936891556]} +{"t": 3.4531, "q": [-0.3482784032821655, -0.011738361790776253, 0.004995177034288645, 0.6286509037017822, -0.31500402092933655, 0.017701370641589165, -0.3877613842487335, 0.0005880259559489787, -0.005035352893173695, 0.6027862429618835, -0.28215450048446655, -0.00012697954662144184, 0.005637987982481718, 0.009004268795251846, -0.04447232186794281, 0.2594345211982727, 0.10626412183046341, 0.004050668329000473, 1.0360362529754639, 0.14539262652397156, 0.0421125665307045, -0.058758657425642014, 0.23918116092681885, -0.12492356449365616, 0.031123032793402672, 1.0535931587219238, -0.17537714540958405, 0.08016248047351837, 0.022614233195781708]} +{"t": 3.4701, "q": [-0.34826135635375977, -0.011738361790776253, 0.005048744846135378, 0.6286594271659851, -0.31500402092933655, 0.017701370641589165, -0.3877613842487335, 0.0005795038305222988, -0.005062136333435774, 0.6027862429618835, -0.28215861320495605, -0.00013417418813332915, 0.005664771888405085, 0.009034686721861362, -0.044472478330135345, 0.25767281651496887, 0.10633602738380432, 0.00407463638111949, 1.038265347480774, 0.14541658759117126, 0.0421125665307045, -0.058770641684532166, 0.23873774707317352, -0.12489959597587585, 0.031087080016732216, 1.055678367614746, -0.17537714540958405, 0.08022240549325943, 0.022578280419111252]} +{"t": 3.4868, "q": [-0.34821876883506775, -0.011755406856536865, 0.005075528286397457, 0.6286423802375793, -0.31499576568603516, 0.017701420933008194, -0.3877784311771393, 0.0006050702068023384, -0.0051424880512058735, 0.6027947664260864, -0.28215867280960083, -0.00011973217624472454, 0.00571833923459053, 0.009065126068890095, -0.04451218992471695, 0.2555396258831024, 0.10638396441936493, 0.004098604898899794, 1.041632890701294, 0.14536865055561066, 0.0421125665307045, -0.058758657425642014, 0.23835425078868866, -0.12489959597587585, 0.031087080016732216, 1.0572603940963745, -0.1754370778799057, 0.08027034252882004, 0.022554311901330948]} +{"t": 3.5036, "q": [-0.34817615151405334, -0.01178097352385521, 0.005196055397391319, 0.6286594271659851, -0.31497922539711, 0.01773051917552948, -0.38774433732032776, 0.0005454153870232403, -0.00516927195712924, 0.6028459072113037, -0.28214624524116516, -0.00011259023449383676, 0.005651379935443401, 0.009118352085351944, -0.04450751468539238, 0.25390976667404175, 0.1064918264746666, 0.004098604898899794, 1.0437061786651611, 0.14542856812477112, 0.042148519307374954, -0.058770641684532166, 0.23743146657943726, -0.1248396709561348, 0.031039142981171608, 1.0589021444320679, -0.1754131019115448, 0.08034224808216095, 0.022518359124660492]} +{"t": 3.5203, "q": [-0.34817615151405334, -0.011798016726970673, 0.005236231256276369, 0.6286764740943909, -0.3149791955947876, 0.01775955595076084, -0.38774433732032776, 0.0005880259559489787, -0.005222839303314686, 0.602897047996521, -0.2821255326271057, -9.104109631152824e-05, 0.005624596029520035, 0.009118357673287392, -0.044517405331134796, 0.2523518204689026, 0.10652777552604675, 0.0041585261933505535, 1.045120358467102, 0.14545254409313202, 0.04218447208404541, -0.058770641684532166, 0.23620907962322235, -0.1248396709561348, 0.031027158722281456, 1.0603402853012085, -0.17540112137794495, 0.08037819713354111, 0.022530343383550644]} +{"t": 3.5371, "q": [-0.348201721906662, -0.011815061792731285, 0.005303190555423498, 0.6286935210227966, -0.3149709403514862, 0.01775958761572838, -0.38774433732032776, 0.0005539375124499202, -0.0051424880512058735, 0.602897047996521, -0.2821173071861267, -6.220977229531854e-05, 0.0055442447774112225, 0.009110745042562485, -0.044502533972263336, 0.25096166133880615, 0.10659968107938766, 0.0041824947111308575, 1.0462827682495117, 0.14550048112869263, 0.04223240911960602, -0.05878262594342232, 0.23450732231140137, -0.12489959597587585, 0.031075095757842064, 1.0623536109924316, -0.17540112137794495, 0.08043812215328217, 0.022542327642440796]} +{"t": 3.5538, "q": [-0.3481846749782562, -0.011840627528727055, 0.005329974461346865, 0.6286935210227966, -0.314987450838089, 0.017744988203048706, -0.38774433732032776, 0.0005454153870232403, -0.005155880004167557, 0.602897047996521, -0.2820923924446106, -6.23679079581052e-05, 0.005517460871487856, 0.00912595447152853, -0.044502608478069305, 0.24921196699142456, 0.10667158663272858, 0.0041824947111308575, 1.0482721328735352, 0.14550048112869263, 0.042280346155166626, -0.058758657425642014, 0.23241007328033447, -0.12487562745809555, 0.031158985570073128, 1.0645227432250977, -0.1754370778799057, 0.08049803972244263, 0.022662170231342316]} +{"t": 3.5706, "q": [-0.34817615151405334, -0.011866194196045399, 0.005343366414308548, 0.6287105679512024, -0.3149915933609009, 0.017723195254802704, -0.38775286078453064, 0.0005198490689508617, -0.0051424880512058735, 0.6029481887817383, -0.28209659457206726, -4.066063411301002e-05, 0.005557636730372906, 0.009087950922548771, -0.044537030160427094, 0.24745027720928192, 0.10674349218606949, 0.004206463228911161, 1.0508008003234863, 0.14552444219589233, 0.04230431467294693, -0.058758657425642014, 0.23004919290542603, -0.12491157650947571, 0.031254857778549194, 1.0673271417617798, -0.1754610389471054, 0.08053399622440338, 0.022793997079133987]} +{"t": 3.5873, "q": [-0.3481420576572418, -0.01184915006160736, 0.005383542273193598, 0.6287446022033691, -0.31501641869544983, 0.01769404485821724, -0.387727290391922, 0.0005113269435241818, -0.00516927195712924, 0.6029822826385498, -0.28209659457206726, -4.066063411301002e-05, 0.005557636730372906, 0.00908796675503254, -0.044566698372364044, 0.24597622454166412, 0.10682738572359085, 0.0041944789700210094, 1.053281545639038, 0.14550048112869263, 0.04231629893183708, -0.05874667316675186, 0.22657376527786255, -0.12536698579788208, 0.031314779072999954, 1.0709342956542969, -0.17550897598266602, 0.08066581934690475, 0.022913837805390358]} +{"t": 3.604, "q": [-0.34813353419303894, -0.011840627528727055, 0.005356758367270231, 0.6287276148796082, -0.3150329291820526, 0.017664946615695953, -0.38774433732032776, 0.0005198490689508617, -0.005155880004167557, 0.60304194688797, -0.28210070729255676, -6.231520092114806e-05, 0.005530852824449539, 0.009080369956791401, -0.044581491500139236, 0.24512533843517303, 0.10693524032831192, 0.0041944789700210094, 1.055139183998108, 0.14547650516033173, 0.042328283190727234, -0.058758657425642014, 0.22336198389530182, -0.12545086443424225, 0.03136271610856056, 1.0742778778076172, -0.17553295195102692, 0.0809055045247078, 0.02298574335873127]} +{"t": 3.6209, "q": [-0.3481846749782562, -0.011840627528727055, 0.005249623209238052, 0.6287276148796082, -0.3150205612182617, 0.017657753080129623, -0.3877784311771393, 0.0005113269435241818, -0.00508892023935914, 0.6030248999595642, -0.2821049392223358, -4.062581865582615e-05, 0.005678163841366768, 0.009095584973692894, -0.04459146037697792, 0.24432240426540375, 0.10697119683027267, 0.0041824947111308575, 1.0570565462112427, 0.14550048112869263, 0.04231629893183708, -0.058770641684532166, 0.22070148587226868, -0.1255347579717636, 0.03136271610856056, 1.0776695013046265, -0.17553295195102692, 0.08102534711360931, 0.023021696135401726]} +{"t": 3.6376, "q": [-0.348201721906662, -0.011815061792731285, 0.00508892023935914, 0.6287190914154053, -0.3150247037410736, 0.017650477588176727, -0.38774433732032776, 0.0004772384709212929, -0.005102312192320824, 0.6030589938163757, -0.2821131944656372, -5.501512350747362e-05, 0.006039745174348354, 0.009103202261030674, -0.0446162223815918, 0.24339962005615234, 0.10693524032831192, 0.004218447487801313, 1.0593096017837524, 0.14545254409313202, 0.04225637763738632, -0.05878262594342232, 0.21880798041820526, -0.1255587339401245, 0.031374700367450714, 1.0799823999404907, -0.17552095651626587, 0.08119312673807144, 0.023021696135401726]} +{"t": 3.6543, "q": [-0.34826135635375977, -0.011798016726970673, 0.004968393128365278, 0.6287105679512024, -0.3150205612182617, 0.017657753080129623, -0.3877699077129364, 0.0004942826926708221, -0.005062136333435774, 0.6030504703521729, -0.28213798999786377, -9.82009296421893e-05, 0.006294190883636475, 0.00911841168999672, -0.044616300612688065, 0.2425607144832611, 0.10689929127693176, 0.0041944789700210094, 1.0621978044509888, 0.14539262652397156, 0.0421125665307045, -0.058770641684532166, 0.21705828607082367, -0.12559467554092407, 0.03145859017968178, 1.0822235345840454, -0.17549699544906616, 0.08144479244947433, 0.023021696135401726]} +{"t": 3.6712, "q": [-0.34831249713897705, -0.011746884323656559, 0.004888041876256466, 0.6287105679512024, -0.3150123357772827, 0.017657803371548653, -0.3878210186958313, 0.0005113269435241818, -0.005021960940212011, 0.60304194688797, -0.28215858340263367, -0.00014861620729789138, 0.006307582836598158, 0.009110793471336365, -0.04459153860807419, 0.2424888163805008, 0.10675548017024994, 0.004230431281030178, 1.0634441375732422, 0.1454046070575714, 0.042160503566265106, -0.058758657425642014, 0.21522469818592072, -0.12570254504680634, 0.03139866888523102, 1.084356665611267, -0.17553295195102692, 0.08166050910949707, 0.023069633170962334]} +{"t": 3.688, "q": [-0.3484147787094116, -0.011738361790776253, 0.00483447453007102, 0.6286764740943909, -0.3150288462638855, 0.01764320395886898, -0.38793182373046875, 0.0005880259559489787, -0.0049817850813269615, 0.6030334234237671, -0.2821792960166931, -0.00017016535275615752, 0.006307582836598158, 0.009125986136496067, -0.044561948627233505, 0.24242889881134033, 0.10667158663272858, 0.004218447487801313, 1.0641632080078125, 0.14536865055561066, 0.0421125665307045, -0.05874667316675186, 0.21352294087409973, -0.12593023478984833, 0.031374700367450714, 1.0862621068954468, -0.17552095651626587, 0.08179233968257904, 0.02311757020652294]} +{"t": 3.7049, "q": [-0.34849146008491516, -0.011712796054780483, 0.004780906718224287, 0.628667950630188, -0.315024733543396, 0.017635978758335114, -0.38802555203437805, 0.0006221143994480371, -0.0049817850813269615, 0.60304194688797, -0.28222471475601196, -0.00024932442465797067, 0.006254015490412712, 0.009110772050917149, -0.04455197975039482, 0.2422850877046585, 0.10663563758134842, 0.004230431281030178, 1.0644748210906982, 0.14536865055561066, 0.04212455078959465, -0.05874667316675186, 0.21216872334480286, -0.12616991996765137, 0.03136271610856056, 1.0881916284561157, -0.17549699544906616, 0.08191218227148056, 0.023153522983193398]} +{"t": 3.7218, "q": [-0.3484829366207123, -0.011678706854581833, 0.004767514765262604, 0.6286509037017822, -0.31498342752456665, 0.017679745331406593, -0.3880085051059723, 0.0006988134700804949, -0.0049817850813269615, 0.6030504703521729, -0.28223705291748047, -0.0002853682963177562, 0.006200447678565979, 0.00911837350577116, -0.04454707354307175, 0.24202142655849457, 0.10665960609912872, 0.004230431281030178, 1.064618706703186, 0.1454046070575714, 0.042100582271814346, -0.058770641684532166, 0.21104221045970917, -0.1263856440782547, 0.031374700367450714, 1.0902289152145386, -0.17549699544906616, 0.08193615078926086, 0.0231774915009737]} +{"t": 3.7386, "q": [-0.3484829366207123, -0.011619052849709988, 0.004740730859339237, 0.6286338567733765, -0.31499171257019043, 0.01766519621014595, -0.38802555203437805, 0.0008010788587853312, -0.004928217735141516, 0.60304194688797, -0.2822742462158203, -0.00035013805609196424, 0.0060933125205338, 0.009110772050917149, -0.04455197975039482, 0.24160197377204895, 0.10668357461690903, 0.004230431281030178, 1.064798355102539, 0.14534468948841095, 0.0421125665307045, -0.058758657425642014, 0.20964005589485168, -0.12679310142993927, 0.031326763331890106, 1.0920385122299194, -0.17552095651626587, 0.08192416280508041, 0.02316550724208355]} +{"t": 3.7554, "q": [-0.34844884276390076, -0.011550875380635262, 0.004727339372038841, 0.6286168098449707, -0.3149958550930023, 0.017657902091741562, -0.3880425989627838, 0.0009203884401358664, -0.005008568987250328, 0.6030760407447815, -0.2823031544685364, -0.0004005185328423977, 0.0059995693154633045, 0.009110783226788044, -0.044571757316589355, 0.24090689420700073, 0.10675548017024994, 0.004230431281030178, 1.0651220083236694, 0.14539262652397156, 0.0421125665307045, -0.05873468890786171, 0.20742297172546387, -0.12766794860363007, 0.03141065314412117, 1.0938482284545898, -0.1754610389471054, 0.08194813132286072, 0.023249397054314613]} +{"t": 3.7722, "q": [-0.3484403192996979, -0.011567920446395874, 0.004713947419077158, 0.6286253333091736, -0.3149876296520233, 0.017643451690673828, -0.3880425989627838, 0.0009800433181226254, -0.005008568987250328, 0.6031186580657959, -0.2823486626148224, -0.0004652355855796486, 0.0059995693154633045, 0.009110772050917149, -0.04455197975039482, 0.23999609053134918, 0.1068153977394104, 0.004230431281030178, 1.0654215812683105, 0.14539262652397156, 0.042160503566265106, -0.05873468890786171, 0.204594686627388, -0.12932176887989044, 0.03142263740301132, 1.095573902130127, -0.17553295195102692, 0.08191218227148056, 0.02335725538432598]} +{"t": 3.789, "q": [-0.3484658896923065, -0.011550875380635262, 0.004700555466115475, 0.6286253333091736, -0.3149835169315338, 0.01763622649013996, -0.3880425989627838, 0.0010396981379017234, -0.004968393128365278, 0.6031186580657959, -0.2823815941810608, -0.0005516947130672634, 0.006026353221386671, 0.00908796675503254, -0.044566698372364044, 0.23906132578849792, 0.10692325979471207, 0.004230431281030178, 1.0658769607543945, 0.1453087329864502, 0.042208440601825714, -0.05874667316675186, 0.2018503099679947, -0.13139504194259644, 0.03136271610856056, 1.097227692604065, -0.17554493248462677, 0.08190019428730011, 0.02340519241988659]} +{"t": 3.8057, "q": [-0.348431795835495, -0.011567920446395874, 0.004553244449198246, 0.6286253333091736, -0.3149629533290863, 0.017600083723664284, -0.3879659175872803, 0.001065264455974102, -0.005062136333435774, 0.6031271815299988, -0.28238576650619507, -0.0005444473354145885, 0.006079920567572117, 0.009034753777086735, -0.044601038098335266, 0.23828235268592834, 0.10693524032831192, 0.004254399798810482, 1.0664881467819214, 0.1453326940536499, 0.04225637763738632, -0.058758657425642014, 0.1983509063720703, -0.13495436310768127, 0.03141065314412117, 1.0987616777420044, -0.1754850149154663, 0.08188821375370026, 0.023453129455447197]} +{"t": 3.8226, "q": [-0.3484147787094116, -0.011533831246197224, 0.00445950124412775, 0.6286338567733765, -0.3149547278881073, 0.01758563332259655, -0.38793182373046875, 0.0011504855938255787, -0.005035352893173695, 0.6031271815299988, -0.2823857069015503, -0.0005588893545791507, 0.0060933125205338, 0.008989164605736732, -0.04467003047466278, 0.23782694339752197, 0.10694722831249237, 0.00424241553992033, 1.067183256149292, 0.14534468948841095, 0.042280346155166626, -0.05873468890786171, 0.1942882537841797, -0.13955630362033844, 0.03159041702747345, 1.099984049797058, -0.17549699544906616, 0.08190019428730011, 0.023632891476154327]} +{"t": 3.8396, "q": [-0.348389208316803, -0.01160200871527195, 0.00445950124412775, 0.6286509037017822, -0.3149506151676178, 0.017578409984707832, -0.38793182373046875, 0.001193096162751317, -0.005048744846135378, 0.6031186580657959, -0.28237736225128174, -0.0005733841098845005, 0.006106704473495483, 0.008905556052923203, -0.04474377632141113, 0.23768313229084015, 0.10694722831249237, 0.00424241553992033, 1.067530870437622, 0.14541658759117126, 0.04230431467294693, -0.05872270464897156, 0.19003385305404663, -0.1450570672750473, 0.031626369804143906, 1.1002837419509888, -0.17544905841350555, 0.0818762257695198, 0.023800671100616455]} +{"t": 3.8563, "q": [-0.348389208316803, -0.011559397913515568, 0.00445950124412775, 0.6286509037017822, -0.31497541069984436, 0.017534758895635605, -0.38793182373046875, 0.001184574095532298, -0.005021960940212011, 0.6031186580657959, -0.28240230679512024, -0.00057324388762936, 0.0060933125205338, 0.008799118921160698, -0.044792722910642624, 0.23773106932640076, 0.10697119683027267, 0.004254399798810482, 1.0679502487182617, 0.14541658759117126, 0.04230431467294693, -0.05872270464897156, 0.18485666811466217, -0.15106116235256195, 0.03151851147413254, 1.100643277168274, -0.17544905841350555, 0.08190019428730011, 0.023848608136177063]} +{"t": 3.8731, "q": [-0.3484233021736145, -0.011567920446395874, 0.004432717338204384, 0.628667950630188, -0.31497129797935486, 0.017527516931295395, -0.387914776802063, 0.001184574095532298, -0.005048744846135378, 0.6031271815299988, -0.282389760017395, -0.0005949859623797238, 0.006106704473495483, 0.008707907050848007, -0.044871438294649124, 0.23765917122364044, 0.10703111439943314, 0.004338289611041546, 1.0687772035598755, 0.14539262652397156, 0.042280346155166626, -0.05872270464897156, 0.17945179343223572, -0.1585393100976944, 0.03148255869746208, 1.1005712747573853, -0.1754850149154663, 0.08186424523591995, 0.02382463961839676]} +{"t": 3.8901, "q": [-0.34840625524520874, -0.011525308713316917, 0.004272014833986759, 0.628667950630188, -0.31495893001556396, 0.01753484085202217, -0.387914776802063, 0.001184574095532298, -0.00508892023935914, 0.6031016111373901, -0.2823980748653412, -0.0005949332262389362, 0.006280798930674791, 0.008502645418047905, -0.04498426616191864, 0.23735956847667694, 0.10705508291721344, 0.00436225812882185, 1.0701314210891724, 0.14542856812477112, 0.04225637763738632, -0.05872270464897156, 0.17434650659561157, -0.16701216995716095, 0.031446605920791626, 1.100595235824585, -0.17552095651626587, 0.0818762257695198, 0.023788686841726303]} +{"t": 3.9069, "q": [-0.348431795835495, -0.011525308713316917, 0.004097919911146164, 0.6286935210227966, -0.31497544050216675, 0.0175202414393425, -0.38784658908843994, 0.0011504855938255787, -0.005222839303314686, 0.6030845642089844, -0.2824229598045349, -0.0006092171533964574, 0.00642810994759202, 0.008244171738624573, -0.045131467282772064, 0.23723971843719482, 0.10717492550611496, 0.004386226646602154, 1.0711380243301392, 0.14541658759117126, 0.04224439337849617, -0.058710720390081406, 0.16951686143875122, -0.17649167776107788, 0.031506527215242386, 1.1004635095596313, -0.17553295195102692, 0.08173241466283798, 0.023752734065055847]} +{"t": 3.9236, "q": [-0.3484147787094116, -0.011533831246197224, 0.003990784753113985, 0.6286935210227966, -0.3150457441806793, 0.01738201454281807, -0.3878636360168457, 0.001141963410191238, -0.005263015162199736, 0.6030675172805786, -0.28248491883277893, -0.0007171726902015507, 0.006588812451809645, 0.008069274947047234, -0.045175276696681976, 0.23729965090751648, 0.10717492550611496, 0.0043982104398310184, 1.0720728635787964, 0.14536865055561066, 0.04224439337849617, -0.058698736131191254, 0.16242220997810364, -0.18701383471488953, 0.03151851147413254, 1.0997084379196167, -0.17552095651626587, 0.08101335912942886, 0.023728765547275543]} +{"t": 3.9403, "q": [-0.3484403192996979, -0.011474177241325378, 0.003937217406928539, 0.6286935210227966, -0.3150705099105835, 0.01736738160252571, -0.38784658908843994, 0.0011504855938255787, -0.005236231256276369, 0.6030589938163757, -0.28248903155326843, -0.000724367331713438, 0.00676290737465024, 0.00792477373033762, -0.04516976699233055, 0.2373715490102768, 0.10717492550611496, 0.004446147475391626, 1.0725642442703247, 0.1454046070575714, 0.04224439337849617, -0.05867476761341095, 0.15508785843849182, -0.19806328415870667, 0.031554464250802994, 1.099456787109375, -0.17555691301822662, 0.08047407120466232, 0.023692812770605087]} +{"t": 3.9571, "q": [-0.3484658896923065, -0.011448610574007034, 0.0038300822488963604, 0.6286764740943909, -0.3150705099105835, 0.01736738160252571, -0.3878721594810486, 0.001133441342972219, -0.005289798602461815, 0.6030504703521729, -0.2825179696083069, -0.0007747478084638715, 0.006937001831829548, 0.00774221820756793, -0.04509977623820305, 0.23733559250831604, 0.10722286254167557, 0.004506068769842386, 1.0728158950805664, 0.14541658759117126, 0.042220424860715866, -0.0586627833545208, 0.1482808142900467, -0.20894496142864227, 0.0315784327685833, 1.0992530584335327, -0.17550897598266602, 0.08009057492017746, 0.023680828511714935]} +{"t": 3.9738, "q": [-0.34849146008491516, -0.011440088041126728, 0.003669379511848092, 0.6286849975585938, -0.3150746822357178, 0.017331089824438095, -0.3878721594810486, 0.0011760519118979573, -0.005410325713455677, 0.6030504703521729, -0.2825634479522705, -0.0008394648903049529, 0.007070920895785093, 0.0073087457567453384, -0.045182205736637115, 0.23733559250831604, 0.10727079957723618, 0.004542021546512842, 1.0729836225509644, 0.14539262652397156, 0.04224439337849617, -0.05861484631896019, 0.14104235172271729, -0.2217441201210022, 0.03199788182973862, 1.0990732908248901, -0.17553295195102692, 0.0794314444065094, 0.023764718323946]} +{"t": 3.9907, "q": [-0.3484233021736145, -0.011440088041126728, 0.00354885240085423, 0.6286764740943909, -0.31504160165786743, 0.01738930679857731, -0.3878551125526428, 0.001184574095532298, -0.005530852824449539, 0.6030589938163757, -0.28261303901672363, -0.0009258365025743842, 0.007178056053817272, 0.006327818613499403, -0.045599211007356644, 0.2373236119747162, 0.10727079957723618, 0.004542021546512842, 1.073163390159607, 0.14544056355953217, 0.04224439337849617, -0.05861484631896019, 0.13418737053871155, -0.23327293992042542, 0.03193796053528786, 1.0984621047973633, -0.17552095651626587, 0.07835286110639572, 0.023668844252824783]} +{"t": 4.0075, "q": [-0.3484403192996979, -0.011414522305130959, 0.0034149333368986845, 0.6287020444869995, -0.3150457441806793, 0.01738201454281807, -0.3878721594810486, 0.001193096162751317, -0.005651379935443401, 0.6030589938163757, -0.2826790511608124, -0.001055428758263588, 0.00735215051099658, 0.0053316885605454445, -0.04605622589588165, 0.23729965090751648, 0.10731873661279678, 0.004542021546512842, 1.0734390020370483, 0.14541658759117126, 0.04224439337849617, -0.05861484631896019, 0.1278357356786728, -0.24410668015480042, 0.03194994479417801, 1.0971318483352661, -0.17549699544906616, 0.07677094638347626, 0.023620907217264175]} +{"t": 4.0243, "q": [-0.3484233021736145, -0.011346344836056232, 0.0031470954418182373, 0.6287446022033691, -0.3150457441806793, 0.01738201454281807, -0.3878721594810486, 0.0012101404136046767, -0.005825474392622709, 0.6030248999595642, -0.28269150853157043, -0.0010625707218423486, 0.00743250222876668, 0.004274554084986448, -0.046454500406980515, 0.23723971843719482, 0.10733072459697723, 0.004554005805402994, 1.0738584995269775, 0.14542856812477112, 0.04224439337849617, -0.058590877801179886, 0.12065718322992325, -0.25587520003318787, 0.03209375590085983, 1.0949627161026, -0.17552095651626587, 0.07520101219415665, 0.02352503500878811]} +{"t": 4.0411, "q": [-0.3482869267463684, -0.011346344836056232, 0.003093527862802148, 0.628753125667572, -0.31503334641456604, 0.0174038577824831, -0.3878721594810486, 0.0012101404136046767, -0.005892434157431126, 0.6030248999595642, -0.2826956510543823, -0.001069765305146575, 0.007673555985093117, 0.0035215988755226135, -0.04667583107948303, 0.237095907330513, 0.10749849677085876, 0.004589958116412163, 1.0742778778076172, 0.14542856812477112, 0.04223240911960602, -0.05856690928339958, 0.11317902058362961, -0.2672242522239685, 0.03242931514978409, 1.0921703577041626, -0.17553295195102692, 0.0740145742893219, 0.023489082232117653]} +{"t": 4.058, "q": [-0.34826135635375977, -0.011329300701618195, 0.003093527862802148, 0.6287872195243835, -0.31504160165786743, 0.01738930679857731, -0.3878721594810486, 0.001201618229970336, -0.005879042204469442, 0.6030163764953613, -0.28269144892692566, -0.0010770127410069108, 0.007820867002010345, 0.0028598953504115343, -0.04680820554494858, 0.2371198832988739, 0.10758239030838013, 0.004625910893082619, 1.0745415687561035, 0.14539262652397156, 0.042208440601825714, -0.058590877801179886, 0.105341337621212, -0.27836957573890686, 0.03269296512007713, 1.0894500017166138, -0.17564080655574799, 0.07300789654254913, 0.02340519241988659]} +{"t": 4.0748, "q": [-0.3482784032821655, -0.011218513362109661, 0.003066744189709425, 0.6288213133811951, -0.3150334358215332, 0.01736033894121647, -0.3878721594810486, 0.001201618229970336, -0.005919218063354492, 0.6030334234237671, -0.28269144892692566, -0.0010770127410069108, 0.008008353412151337, 0.002342718653380871, -0.0469854436814785, 0.237095907330513, 0.1076902449131012, 0.004661863669753075, 1.0747932195663452, 0.14536865055561066, 0.042220424860715866, -0.05855492502450943, 0.09861818701028824, -0.28885579109191895, 0.032704949378967285, 1.0854471921920776, -0.1756647676229477, 0.07237273454666138, 0.02316550724208355]} +{"t": 4.0916, "q": [-0.34830397367477417, -0.011235557496547699, 0.0029997846577316523, 0.6288127899169922, -0.31502100825309753, 0.0173821821808815, -0.3878636360168457, 0.0012101404136046767, -0.0059995693154633045, 0.6030334234237671, -0.2826830744743347, -0.0010915073798969388, 0.008128880523145199, 0.0015821040142327547, -0.04715348407626152, 0.23705996572971344, 0.10778611898422241, 0.004817658569663763, 1.0750089883804321, 0.14542856812477112, 0.04219645634293556, -0.058530956506729126, 0.09158344566822052, -0.29996514320373535, 0.033256225287914276, 1.0804258584976196, -0.1756647676229477, 0.0715937614440918, 0.023201460018754005]} +{"t": 4.1084, "q": [-0.3482869267463684, -0.01124407909810543, 0.002959609031677246, 0.6288468837738037, -0.31502097845077515, 0.017396681010723114, -0.3878721594810486, 0.001201618229970336, -0.0059995693154633045, 0.6030078530311584, -0.28269144892692566, -0.0010770127410069108, 0.00832975935190916, 0.0008366885012947023, -0.04734156280755997, 0.237095907330513, 0.10790596157312393, 0.004889564123004675, 1.0751527547836304, 0.14544056355953217, 0.042208440601825714, -0.05842309817671776, 0.0848483145236969, -0.3097802400588989, 0.03341202065348625, 1.075692057609558, -0.1756887435913086, 0.07055113464593887, 0.023093601688742638]} +{"t": 4.1252, "q": [-0.3482954502105713, -0.011209990829229355, 0.0028122980147600174, 0.6288809776306152, -0.31514090299606323, 0.0171856377273798, -0.3878721594810486, 0.0012101404136046767, -0.0060933125205338, 0.6029481887817383, -0.2826997637748718, -0.0010769600048661232, 0.008597597479820251, 8.366908878087997e-05, -0.04769296944141388, 0.23710790276527405, 0.10815763473510742, 0.004985437728464603, 1.0752966403961182, 0.14542856812477112, 0.042220424860715866, -0.058279287070035934, 0.07737015932798386, -0.3197271525859833, 0.033963292837142944, 1.0715694427490234, -0.1757127046585083, 0.06808238476514816, 0.02310558594763279]} +{"t": 4.1419, "q": [-0.34826135635375977, -0.011218513362109661, 0.0026382035575807095, 0.6288809776306152, -0.3151491582393646, 0.01718558743596077, -0.387914776802063, 0.001184574095532298, -0.006187055725604296, 0.6029226183891296, -0.2827245593070984, -0.0011201457818970084, 0.008744907565414906, -0.0004791933170054108, -0.04796023666858673, 0.237095907330513, 0.10838533192873001, 0.005165201146155596, 1.0754404067993164, 0.14536865055561066, 0.042220424860715866, -0.05805158615112305, 0.06971223652362823, -0.328978955745697, 0.03576092794537544, 1.06769859790802, -0.1757127046585083, 0.06425941735506058, 0.02311757020652294]} +{"t": 4.1588, "q": [-0.34830397367477417, -0.011192946694791317, 0.00254446011967957, 0.6288809776306152, -0.3151450753211975, 0.01716386154294014, -0.3879573941230774, 0.001184574095532298, -0.006294190883636475, 0.602897047996521, -0.2827162444591522, -0.001120198518037796, 0.008878827095031738, -0.0010649376781657338, -0.048272695392370224, 0.237095907330513, 0.10864898562431335, 0.005320996046066284, 1.0756081342697144, 0.14545254409313202, 0.04219645634293556, -0.057739995419979095, 0.06210225448012352, -0.3385423719882965, 0.03864912688732147, 1.0630366802215576, -0.17565278708934784, 0.06070009991526604, 0.0231774915009737]} +{"t": 4.1756, "q": [-0.34832102060317993, -0.011082159355282784, 0.0024775005877017975, 0.6288809776306152, -0.3151450753211975, 0.01716386154294014, -0.3879659175872803, 0.001184574095532298, -0.006320974789559841, 0.6028800010681152, -0.28273698687553406, -0.001127287745475769, 0.009173448197543621, -0.0015137778827920556, -0.04858526960015297, 0.23705996572971344, 0.10884073376655579, 0.005380917340517044, 1.075680136680603, 0.14536865055561066, 0.04219645634293556, -0.05722467601299286, 0.055630773305892944, -0.346907377243042, 0.041309624910354614, 1.0572004318237305, -0.1756887435913086, 0.058219365775585175, 0.02323741279542446]} +{"t": 4.1923, "q": [-0.3483806848526001, -0.011065115220844746, 0.0023435817565768957, 0.6288809776306152, -0.3151533305644989, 0.017149312421679497, -0.38799145817756653, 0.001193096162751317, -0.006374542135745287, 0.6027862429618835, -0.2827617824077606, -0.0011704735225066543, 0.009293975308537483, -0.002137585077434778, -0.048952504992485046, 0.2370719462633133, 0.10910438746213913, 0.0055127437226474285, 1.075835943222046, 0.14539262652397156, 0.04219645634293556, -0.05631387606263161, 0.04836833477020264, -0.3552723526954651, 0.04326305165886879, 1.0515079498291016, -0.1756887435913086, 0.0553431510925293, 0.02328534983098507]} +{"t": 4.2091, "q": [-0.34839773178100586, -0.011022504419088364, 0.0021828790195286274, 0.6288554072380066, -0.3151533007621765, 0.01716381311416626, -0.38799145817756653, 0.001193096162751317, -0.006535245105624199, 0.6026754975318909, -0.28280723094940186, -0.0012496504932641983, 0.009427894838154316, -0.0026472622994333506, -0.04912668094038963, 0.23703598976135254, 0.10930811613798141, 0.005608617328107357, 1.0760875940322876, 0.14539262652397156, 0.04218447208404541, -0.05475592613220215, 0.042220424860715866, -0.3637092411518097, 0.045288387686014175, 1.0444611310958862, -0.17567676305770874, 0.05277852714061737, 0.023273365572094917]} +{"t": 4.2259, "q": [-0.348389208316803, -0.011039548553526402, 0.0018748653819784522, 0.6288468837738037, -0.3151615858078003, 0.017149262130260468, -0.3880085051059723, 0.001201618229970336, -0.006682556122541428, 0.6025135517120361, -0.28285276889801025, -0.0012999254977330565, 0.009441286325454712, -0.003217774908989668, -0.04916224256157875, 0.23703598976135254, 0.10935605317354202, 0.005644570104777813, 1.0764471292495728, 0.14532071352005005, 0.04217248782515526, -0.05255082622170448, 0.036264266818761826, -0.37165477871894836, 0.0484282523393631, 1.0360362529754639, -0.1757846176624298, 0.05128049850463867, 0.02328534983098507]} +{"t": 4.2427, "q": [-0.34840625524520874, -0.010979894548654556, 0.0018480815924704075, 0.6288468837738037, -0.3151615262031555, 0.017178261652588844, -0.38801702857017517, 0.0012357067316770554, -0.006709339562803507, 0.6024709343910217, -0.282885879278183, -0.0013430406106635928, 0.009374327026307583, -0.0041839126497507095, -0.04919882491230965, 0.2370479702949524, 0.10932010412216187, 0.005656554363667965, 1.0772979259490967, 0.1453566700220108, 0.042148519307374954, -0.05044160410761833, 0.02773149684071541, -0.3805830478668213, 0.05398893356323242, 1.0280067920684814, -0.1757366806268692, 0.04954278841614723, 0.02329733408987522]} +{"t": 4.2594, "q": [-0.34844884276390076, -0.010920239612460136, 0.0018614735454320908, 0.6288468837738037, -0.3151780664920807, 0.017149144783616066, -0.38802555203437805, 0.0012783173006027937, -0.006709339562803507, 0.6023942232131958, -0.2828899025917053, -0.0013791373930871487, 0.009414502419531345, -0.005005545914173126, -0.0493893176317215, 0.23658059537410736, 0.1092362105846405, 0.005656554363667965, 1.0787240266799927, 0.14532071352005005, 0.042148519307374954, -0.04896754398941994, 0.019402461126446724, -0.3894873261451721, 0.05903429538011551, 1.0194740295410156, -0.1757606416940689, 0.04728975147008896, 0.023309318348765373]} +{"t": 4.2762, "q": [-0.3484403192996979, -0.010945805348455906, 0.0016873788554221392, 0.6288213133811951, -0.31518635153770447, 0.017134595662355423, -0.38802555203437805, 0.001261273049749434, -0.0067896912805736065, 0.6023346185684204, -0.2829313278198242, -0.0014221996534615755, 0.009494854137301445, -0.005773899611085653, -0.049485620111227036, 0.23608924448490143, 0.10924819856882095, 0.005656554363667965, 1.079946517944336, 0.1453566700220108, 0.04212455078959465, -0.04821253940463066, 0.011900335550308228, -0.39816388487815857, 0.06284527480602264, 1.0097668170928955, -0.17580857872962952, 0.04286757484078407, 0.023321302607655525]} +{"t": 4.293, "q": [-0.3484403192996979, -0.010835018008947372, 0.0014731085393577814, 0.628829836845398, -0.3151532709598541, 0.017192812636494637, -0.3879999816417694, 0.0012783173006027937, -0.006963785737752914, 0.6023260951042175, -0.28295600414276123, -0.0014942875131964684, 0.00958859734237194, -0.006473775487393141, -0.049606673419475555, 0.23551400005817413, 0.10934407263994217, 0.005656554363667965, 1.0813605785369873, 0.14527277648448944, 0.04212455078959465, -0.04760134220123291, 0.0033316146582365036, -0.40712809562683105, 0.06644054502248764, 0.998214066028595, -0.1757846176624298, 0.0385173000395298, 0.023333286866545677]} +{"t": 4.3098, "q": [-0.34840625524520874, -0.01082649640738964, 0.0012052706442773342, 0.6288383603096008, -0.31513679027557373, 0.017192911356687546, -0.38797444105148315, 0.0012953615514561534, -0.007151272147893906, 0.602223813533783, -0.2830263376235962, -0.0015877303667366505, 0.009722515940666199, -0.007067081052809954, -0.04957912117242813, 0.2349746972322464, 0.10940399020910263, 0.005692507140338421, 1.0827268362045288, 0.14534468948841095, 0.0421125665307045, -0.04721784591674805, -0.004601942375302315, -0.41572079062461853, 0.07016763836145401, 0.9863616824150085, -0.17579659819602966, 0.033903371542692184, 0.023549001663923264]} +{"t": 4.3266, "q": [-0.34835511445999146, -0.010707186535000801, 0.0009910003282129765, 0.6288127899169922, -0.31514087319374084, 0.017200136557221413, -0.38799145817756653, 0.0012953615514561534, -0.007285191211849451, 0.6021726727485657, -0.28307175636291504, -0.0016668894095346332, 0.00973590835928917, -0.007622386794537306, -0.049576535820961, 0.23451930284500122, 0.10942795872688293, 0.005704491399228573, 1.0838533639907837, 0.1453326940536499, 0.04207661375403404, -0.04688229039311409, -0.014153369702398777, -0.4238460958003998, 0.07417037338018417, 0.9748927354812622, -0.17572470009326935, 0.029804768040776253, 0.023728765547275543]} +{"t": 4.3433, "q": [-0.3483806848526001, -0.010690141469240189, 0.0007365542696788907, 0.6288213133811951, -0.3151450455188751, 0.017178362235426903, -0.3879659175872803, 0.001312405802309513, -0.007459285669028759, 0.602078914642334, -0.28311312198638916, -0.0017244118498638272, 0.009950178675353527, -0.008055908605456352, -0.049404848366975784, 0.23383620381355286, 0.10952383279800415, 0.005704491399228573, 1.0844285488128662, 0.14534468948841095, 0.042088598012924194, -0.04669054225087166, -0.022722091525793076, -0.43146806955337524, 0.07780159264802933, 0.962273359298706, -0.17561683058738708, 0.025646241381764412, 0.023920513689517975]} +{"t": 4.3602, "q": [-0.34840625524520874, -0.010690141469240189, 0.0001740946463542059, 0.6288213133811951, -0.31517812609672546, 0.01712014526128769, -0.3879999816417694, 0.001312405802309513, -0.007794083096086979, 0.6019766926765442, -0.2831461727619171, -0.001781987026333809, 0.010472462512552738, -0.008420929312705994, -0.0491485632956028, 0.23291341960430145, 0.10963169485330582, 0.0057404437102377415, 1.0847041606903076, 0.1453087329864502, 0.0421125665307045, -0.04653474688529968, -0.029816752299666405, -0.4384189248085022, 0.08078566193580627, 0.9498097896575928, -0.1756647676229477, 0.01870737597346306, 0.024028372019529343]} +{"t": 4.377, "q": [-0.3484403192996979, -0.010690141469240189, -0.00016070275160018355, 0.628829836845398, -0.315202921628952, 0.01707647740840912, -0.3879999816417694, 0.0013379721203818917, -0.008102096617221832, 0.6019511222839355, -0.2832247018814087, -0.0019042791100218892, 0.010767084546387196, -0.008687105029821396, -0.04898607358336449, 0.23214642703533173, 0.10967963188886642, 0.005836317781358957, 1.0849319696426392, 0.14527277648448944, 0.0421125665307045, -0.046426888555288315, -0.03676760196685791, -0.44402754306793213, 0.08321846276521683, 0.9387603402137756, -0.17572470009326935, 0.012175972573459148, 0.0240643247961998]} +{"t": 4.3937, "q": [-0.34845736622810364, -0.010596398264169693, -0.00042854066123254597, 0.6288468837738037, -0.315202921628952, 0.01707647740840912, -0.38797444105148315, 0.00138058268930763, -0.008383326232433319, 0.601917028427124, -0.2832908034324646, -0.0020194293465465307, 0.010887610726058483, -0.008793565444648266, -0.048907190561294556, 0.23169103264808655, 0.10972756892442703, 0.005884254816919565, 1.0851596593856812, 0.1452607959508896, 0.0421365350484848, -0.0463310144841671, -0.04448544234037399, -0.45036718249320984, 0.08810802549123764, 0.925517737865448, -0.17574866116046906, 0.00717855105176568, 0.02412424609065056]} +{"t": 4.4105, "q": [-0.3484233021736145, -0.010587876662611961, -0.0005892434273846447, 0.6288383603096008, -0.31520289182662964, 0.017090994864702225, -0.3880085051059723, 0.0014317154418677092, -0.008557421155273914, 0.6018914580345154, -0.2834024429321289, -0.0021848545875400305, 0.01091439463198185, -0.008808774873614311, -0.048897337168455124, 0.23124760389328003, 0.10972756892442703, 0.005968144163489342, 1.0856269598007202, 0.14529675245285034, 0.042148519307374954, -0.04621117189526558, -0.052143365144729614, -0.4565151035785675, 0.09381251782178879, 0.9124069809913635, -0.1757606416940689, 0.0020972394850105047, 0.024232102558016777]} +{"t": 4.4272, "q": [-0.3483380675315857, -0.01057935506105423, -0.0006562029011547565, 0.6288213133811951, -0.3155254125595093, 0.016537871211767197, -0.38801702857017517, 0.0015169365797191858, -0.008570813573896885, 0.6017806529998779, -0.28346017003059387, -0.002314499579370022, 0.01091439463198185, -0.008816407062113285, -0.04895192012190819, 0.2308281660079956, 0.10973954945802689, 0.005980128422379494, 1.0862741470336914, 0.14534468948841095, 0.042160503566265106, -0.04609132930636406, -0.06053232029080391, -0.46304649114608765, 0.09955295920372009, 0.8973308205604553, -0.17580857872962952, -0.00529702752828598, 0.02436392940580845]} +{"t": 4.444, "q": [-0.3482358157634735, -0.010434478521347046, -0.0007901218486949801, 0.6288042664527893, -0.3162696957588196, 0.015227990224957466, -0.3880937397480011, 0.0016532903537154198, -0.008691340684890747, 0.6016442775726318, -0.2835097908973694, -0.00238642911426723, 0.010901003144681454, -0.008922934532165527, -0.04901193827390671, 0.23038475215435028, 0.10987138003110886, 0.005992112681269646, 1.0868374109268188, 0.14534468948841095, 0.04217248782515526, -0.04595950245857239, -0.06860969215631485, -0.4684034287929535, 0.10276473313570023, 0.8805170059204102, -0.17585651576519012, -0.012140019796788692, 0.02443583495914936]} +{"t": 4.4608, "q": [-0.34808239340782166, -0.010315168648958206, -0.0009642164804972708, 0.628829836845398, -0.316654235124588, 0.01455120649188757, -0.38826417922973633, 0.0018322548130527139, -0.008825259283185005, 0.6015931963920593, -0.28357577323913574, -0.002530463505536318, 0.010834043845534325, -0.009227250702679157, -0.04910273477435112, 0.2301570475101471, 0.11005114018917084, 0.006087986286729574, 1.087196946144104, 0.14536865055561066, 0.04219645634293556, -0.045875612646341324, -0.07660316675901413, -0.4749108850955963, 0.10652777552604675, 0.8639068603515625, -0.1757127046585083, -0.018192054703831673, 0.024567661806941032]} +{"t": 4.4776, "q": [-0.34790343046188354, -0.010332213714718819, -0.0010177841177210212, 0.6289491653442383, -0.3166542053222656, 0.014580224640667439, -0.3883834779262543, 0.0019430422689765692, -0.00881186779588461, 0.6015676259994507, -0.2836253046989441, -0.0026312770787626505, 0.010807259939610958, -0.009698949754238129, -0.04925388842821121, 0.23006117343902588, 0.11031479388475418, 0.006099970545619726, 1.0877362489700317, 0.14534468948841095, 0.04219645634293556, -0.0457318052649498, -0.08587896078824997, -0.48119062185287476, 0.11056645959615707, 0.8476802110671997, -0.17572470009326935, -0.026581011712551117, 0.024891234934329987]} +{"t": 4.4944, "q": [-0.3478778600692749, -0.01022142544388771, -0.001044567907229066, 0.6289406418800354, -0.3167286515235901, 0.014434722252190113, -0.38903117179870605, 0.0019259981345385313, -0.008825259283185005, 0.6015335321426392, -0.283753365278244, -0.0028543828520923853, 0.010740300640463829, -0.010505449958145618, -0.04962493106722832, 0.22991736233234406, 0.1107582077383995, 0.006111954804509878, 1.0887188911437988, 0.1453087329864502, 0.042220424860715866, -0.04557600989937782, -0.09509482979774475, -0.48693105578422546, 0.11441339552402496, 0.8308184146881104, -0.17558088898658752, -0.033615753054618835, 0.025059014558792114]} +{"t": 4.5113, "q": [-0.3479290008544922, -0.010068027302622795, -0.001191878691315651, 0.6289150714874268, -0.3167699873447418, 0.014361954294145107, -0.3891930878162384, 0.0019430422689765692, -0.0089190024882555, 0.6014909148216248, -0.2838938236236572, -0.0030990727245807648, 0.010820651426911354, -0.011479286476969719, -0.04997764527797699, 0.22941403090953827, 0.11141734570264816, 0.006111954804509878, 1.0896416902542114, 0.14532071352005005, 0.04218447208404541, -0.04539624601602554, -0.10392720252275467, -0.49327072501182556, 0.11950669437646866, 0.8142202496528625, -0.17552095651626587, -0.039320241659879684, 0.02546647936105728]} +{"t": 4.5283, "q": [-0.34799718856811523, -0.009744187816977501, -0.0016472031129524112, 0.6289321184158325, -0.31692299246788025, 0.01410721056163311, -0.38917604088783264, 0.0019004317000508308, -0.00925379991531372, 0.6014227271080017, -0.2840052843093872, -0.0033078419510275126, 0.011075098067522049, -0.012688765302300453, -0.05005020275712013, 0.22867099940776825, 0.11224425584077835, 0.006099970545619726, 1.0904207229614258, 0.1453806310892105, 0.04219645634293556, -0.045216482132673264, -0.11268766969442368, -0.4996822774410248, 0.1227424368262291, 0.796028196811676, -0.17540112137794495, -0.04715792462229729, 0.026461169123649597]} +{"t": 4.5452, "q": [-0.34803128242492676, -0.009369214065372944, -0.002383757382631302, 0.6288639307022095, -0.3170801103115082, 0.013830691576004028, -0.38912490010261536, 0.0019259981345385313, -0.009776083752512932, 0.6013374924659729, -0.2841796875, -0.0035958888474851847, 0.011075098067522049, -0.014453483745455742, -0.05010250583291054, 0.22827552258968353, 0.11328688263893127, 0.006099970545619726, 1.0914033651351929, 0.1453087329864502, 0.042160503566265106, -0.04500076547265053, -0.12180766463279724, -0.5059739947319031, 0.12657739222049713, 0.7810958623886108, -0.17528127133846283, -0.054252587258815765, 0.02738395519554615]} +{"t": 4.562, "q": [-0.3480483293533325, -0.008678922429680824, -0.002651595277711749, 0.628898024559021, -0.31715455651283264, 0.013685171492397785, -0.3891078531742096, 0.0019259981345385313, -0.010043921880424023, 0.6012693047523499, -0.28432121872901917, -0.003884301520884037, 0.010834043845534325, -0.01647668518126011, -0.050079669803380966, 0.22822758555412292, 0.1149766594171524, 0.006087986286729574, 1.0923501253128052, 0.1453566700220108, 0.042160503566265106, -0.044797033071517944, -0.13243767619132996, -0.5136559009552002, 0.13231782615184784, 0.7657320499420166, -0.17522135376930237, -0.05983723700046539, 0.028570393100380898]} +{"t": 4.5787, "q": [-0.3481591045856476, -0.00817611813545227, -0.0029194331727921963, 0.6289406418800354, -0.31716692447662354, 0.01369236409664154, -0.3891589939594269, 0.0019430422689765692, -0.010151056572794914, 0.6010562777519226, -0.2844045162200928, -0.004042877350002527, 0.010887610726058483, -0.018750909715890884, -0.05024475231766701, 0.22817964851856232, 0.1167742908000946, 0.006087986286729574, 1.0928415060043335, 0.14539262652397156, 0.042160503566265106, -0.04464123770594597, -0.14227671921253204, -0.5229676365852356, 0.13858558237552643, 0.7503323554992676, -0.1751134991645813, -0.0674232542514801, 0.029876673594117165]} +{"t": 4.5955, "q": [-0.3481505811214447, -0.007843755185604095, -0.003066744189709425, 0.6289747357368469, -0.3171916604042053, 0.013677714392542839, -0.3891589939594269, 0.0019259981345385313, -0.010311760008335114, 0.600868821144104, -0.2845335602760315, -0.0043096584267914295, 0.01092778705060482, -0.021549977362155914, -0.050552017986774445, 0.22821560502052307, 0.11834422498941422, 0.006111954804509878, 1.0932129621505737, 0.1453087329864502, 0.042160503566265106, -0.04444948956370354, -0.1525951325893402, -0.5316681861877441, 0.1428639441728592, 0.7365145087242126, -0.17512547969818115, -0.07409846782684326, 0.03154247999191284]} +{"t": 4.6122, "q": [-0.3482784032821655, -0.0070682428777217865, -0.0034015413839370012, 0.628966212272644, -0.3173777759075165, 0.01333573553711176, -0.38917604088783264, 0.0019600866362452507, -0.010606381110846996, 0.6007494926452637, -0.28477510809898376, -0.004742091055959463, 0.011048314161598682, -0.024501070380210876, -0.051004525274038315, 0.22820360958576202, 0.11950669437646866, 0.006255765445530415, 1.093536615371704, 0.14536865055561066, 0.04217248782515526, -0.044077981263399124, -0.16276974976062775, -0.5411357283592224, 0.14739398658275604, 0.7221574187278748, -0.17500564455986023, -0.07950334995985031, 0.03305249288678169]} +{"t": 4.629, "q": [-0.34832102060317993, -0.006360907573252916, -0.0034952848218381405, 0.6289150714874268, -0.3174935281276703, 0.013146483339369297, -0.38936352729797363, 0.0022327941842377186, -0.010780476033687592, 0.6007409691810608, -0.284941703081131, -0.00503035681322217, 0.011021530255675316, -0.027794554829597473, -0.05177935212850571, 0.2283833771944046, 0.12033360451459885, 0.00635163951665163, 1.0940759181976318, 0.1453087329864502, 0.04219645634293556, -0.04345479980111122, -0.17344769835472107, -0.5502557158470154, 0.15198394656181335, 0.7106406092643738, -0.17498166859149933, -0.08353005349636078, 0.03450258448719978]} +{"t": 4.6457, "q": [-0.3483465909957886, -0.00627568643540144, -0.0038300822488963604, 0.6289235949516296, -0.31782394647598267, 0.012607538141310215, -0.38930386304855347, 0.002710032742470503, -0.011115273460745811, 0.6006216406822205, -0.2851916253566742, -0.005448294337838888, 0.011209016665816307, -0.031102953478693962, -0.05253029987215996, 0.228335440158844, 0.12098075449466705, 0.006495450157672167, 1.0945671796798706, 0.1453087329864502, 0.042280346155166626, -0.0424361415207386, -0.18247181177139282, -0.5604902505874634, 0.15640611946582794, 0.699950635433197, -0.17492175102233887, -0.09027716517448425, 0.036192361265420914]} +{"t": 4.6625, "q": [-0.34839773178100586, -0.006028545089066029, -0.004338974133133888, 0.6289406418800354, -0.3181990087032318, 0.011973291635513306, -0.3892442286014557, 0.003093527862802148, -0.011637557297945023, 0.6005193591117859, -0.28547897934913635, -0.005960011389106512, 0.011423286981880665, -0.034555573016405106, -0.053374651819467545, 0.2283114790916443, 0.12155599892139435, 0.006962834857404232, 1.0952264070510864, 0.14536865055561066, 0.04230431467294693, -0.041261687874794006, -0.1908128410577774, -0.5700656175613403, 0.16084028780460358, 0.6887933611869812, -0.17484985291957855, -0.09674865007400513, 0.03858920559287071]} +{"t": 4.6792, "q": [-0.348389208316803, -0.005466085392981768, -0.004700555466115475, 0.6289321184158325, -0.3183927536010742, 0.0116307083517313, -0.3891078531742096, 0.0034855452831834555, -0.011985746212303638, 0.60028076171875, -0.2857496738433838, -0.006442910525947809, 0.011825043708086014, -0.037277668714523315, -0.05392211303114891, 0.22825154662132263, 0.12213123589754105, 0.0076818885281682014, 1.0962929725646973, 0.14532071352005005, 0.04229233041405678, -0.04043477773666382, -0.19819511473178864, -0.5785863995552063, 0.16532239317893982, 0.6773604154586792, -0.17470604181289673, -0.10276473313570023, 0.04108192399144173]} +{"t": 4.696, "q": [-0.34826135635375977, -0.0049803247675299644, -0.004955001175403595, 0.6289491653442383, -0.31880900263786316, 0.010967094451189041, -0.38880959153175354, 0.00390312890522182, -0.012240192852914333, 0.5999569296836853, -0.28603294491767883, -0.006904031615704298, 0.011905395425856113, -0.03996902331709862, -0.054433196783065796, 0.228335440158844, 0.12275441735982895, 0.008808405138552189, 1.0974793434143066, 0.14527277648448944, 0.04230431467294693, -0.03997937589883804, -0.2072911411523819, -0.5871791243553162, 0.1726687103509903, 0.6654840111732483, -0.17464610934257507, -0.10873287916183472, 0.04440155625343323]} +{"t": 4.7128, "q": [-0.3479204773902893, -0.0047246613539755344, -0.005008568987250328, 0.6289491653442383, -0.3190068304538727, 0.010631754994392395, -0.38848575949668884, 0.004542287439107895, -0.012280368246138096, 0.5997098088264465, -0.28612861037254333, -0.007084236014634371, 0.011892003007233143, -0.04234754294157028, -0.054480038583278656, 0.228335440158844, 0.12328172475099564, 0.010426276363432407, 1.0987976789474487, 0.14527277648448944, 0.042268361896276474, -0.03965580090880394, -0.2154044657945633, -0.5947172045707703, 0.18084195256233215, 0.6540870070457458, -0.1746101677417755, -0.11532419919967651, 0.0463549830019474]} +{"t": 4.7295, "q": [-0.34762221574783325, -0.004315599799156189, -0.005182663444429636, 0.6289576888084412, -0.31929540634155273, 0.010165078565478325, -0.3879573941230774, 0.005283711478114128, -0.012320543639361858, 0.5992496013641357, -0.2862900495529175, -0.007379744201898575, 0.011958963237702847, -0.044634297490119934, -0.054368238896131516, 0.2278081327676773, 0.1236652210354805, 0.01356614287942648, 1.100367546081543, 0.14527277648448944, 0.042280346155166626, -0.03953595831990242, -0.22235532104969025, -0.601164698600769, 0.18752916157245636, 0.6390708088874817, -0.17450229823589325, -0.12247878313064575, 0.04764927923679352]} +{"t": 4.7462, "q": [-0.34724724292755127, -0.0038468833081424236, -0.005383542273193598, 0.6289747357368469, -0.31959375739097595, 0.00966934859752655, -0.3874971866607666, 0.005871737375855446, -0.012494638562202454, 0.5987041592597961, -0.2863396108150482, -0.007567405700683594, 0.011905395425856113, -0.04655619338154793, -0.05437026545405388, 0.2275085300207138, 0.12422847747802734, 0.016178704798221588, 1.1014821529388428, 0.1453326940536499, 0.04224439337849617, -0.039500005543231964, -0.23002521693706512, -0.607372522354126, 0.19529493153095245, 0.6227482557296753, -0.17450229823589325, -0.13114337623119354, 0.04906341806054115]} +{"t": 4.7632, "q": [-0.34684669971466064, -0.0032929459121078253, -0.0053701503202319145, 0.6289747357368469, -0.3197884261608124, 0.009370320476591587, -0.3869943916797638, 0.006357498001307249, -0.012508030980825424, 0.5981758236885071, -0.2863144874572754, -0.007741013541817665, 0.011972354725003242, -0.04830321669578552, -0.054333772510290146, 0.2271130532026291, 0.12481570243835449, 0.01738911122083664, 1.1020933389663696, 0.1453087329864502, 0.04224439337849617, -0.03947603702545166, -0.23745544254779816, -0.6129811406135559, 0.20171847939491272, 0.6067373752593994, -0.17455023527145386, -0.14095845818519592, 0.05083708465099335]} +{"t": 4.7799, "q": [-0.34625867009162903, -0.002244725590571761, -0.0053701503202319145, 0.628966212272644, -0.3199542462825775, 0.009078781120479107, -0.38614216446876526, 0.006868824828416109, -0.012534813955426216, 0.5976729989051819, -0.2863061726093292, -0.007741057779639959, 0.011731300503015518, -0.04981414973735809, -0.054169390350580215, 0.22699320316314697, 0.125486820936203, 0.017976338043808937, 1.1024049520492554, 0.1453326940536499, 0.04224439337849617, -0.039452068507671356, -0.24633574485778809, -0.6185298562049866, 0.20912472903728485, 0.5885692834854126, -0.17452627420425415, -0.15048591792583466, 0.05240701511502266]} +{"t": 4.7966, "q": [-0.34592631459236145, 0.0019651991315186024, -0.005236231256276369, 0.628966212272644, -0.3202398717403412, 0.008677499368786812, -0.385716050863266, 0.007337541319429874, -0.012508030980825424, 0.5971190333366394, -0.2862439453601837, -0.00771969323977828, 0.011557205580174923, -0.050763845443725586, -0.05438842996954918, 0.2268374115228653, 0.12616991996765137, 0.018263958394527435, 1.1029082536697388, 0.1453087329864502, 0.04225637763738632, -0.03942809998989105, -0.2561148703098297, -0.6241744160652161, 0.21758559346199036, 0.5708445906639099, -0.17455023527145386, -0.16081631183624268, 0.053114086389541626]} +{"t": 4.8135, "q": [-0.34538090229034424, 0.0022805174812674522, -0.004646987654268742, 0.6292815208435059, -0.3206787109375, 0.008050069212913513, -0.3849831521511078, 0.008019310422241688, -0.012467854656279087, 0.5963776111602783, -0.2855730950832367, -0.007383465301245451, 0.011744692921638489, -0.051341280341148376, -0.0545329749584198, 0.22614233195781708, 0.12681707739830017, 0.018743328750133514, 1.1036392450332642, 0.14521285891532898, 0.04225637763738632, -0.03942809998989105, -0.2660018503665924, -0.6298429369926453, 0.2236376255750656, 0.5515140295028687, -0.17459817230701447, -0.1705954521894455, 0.05364139378070831]} +{"t": 4.8305, "q": [-0.3448440134525299, 0.0024765264242887497, -0.004606812261044979, 0.6292815208435059, -0.32087746262550354, 0.00775828305631876, -0.38449740409851074, 0.00848802737891674, -0.012333936057984829, 0.5961390137672424, -0.2847649157047272, -0.006101013161242008, 0.01159738190472126, -0.05209341645240784, -0.05469709262251854, 0.22580677270889282, 0.1276559680700302, 0.019390476867556572, 1.104178547859192, 0.14527277648448944, 0.04225637763738632, -0.039452068507671356, -0.2778542637825012, -0.6346006989479065, 0.2282875031232834, 0.5329145193099976, -0.1745622307062149, -0.18238791823387146, 0.05372528359293938]} +{"t": 4.8472, "q": [-0.3444945812225342, 0.0025106146931648254, -0.004646987654268742, 0.6292303800582886, -0.3209769129753113, 0.007597870659083128, -0.3842758238315582, 0.00875221285969019, -0.012333936057984829, 0.5961475372314453, -0.28413593769073486, -0.005085103213787079, 0.011222408153116703, -0.05255701392889023, -0.054873354732990265, 0.22537533938884735, 0.12805144488811493, 0.020421119406819344, 1.1051013469696045, 0.14534468948841095, 0.042280346155166626, -0.039452068507671356, -0.28895166516304016, -0.6383397579193115, 0.23076824843883514, 0.5141592025756836, -0.1745861917734146, -0.19174760580062866, 0.0538690909743309]} +{"t": 4.8639, "q": [-0.3442474603652954, 0.0026640123687684536, -0.004646987654268742, 0.6292133331298828, -0.3210681080818176, 0.007437537424266338, -0.3840712904930115, 0.009076053276658058, -0.012280368246138096, 0.5960708260536194, -0.28416892886161804, -0.0053885262459516525, 0.01065994892269373, -0.05272432044148445, -0.05498705431818962, 0.22489596903324127, 0.12821923196315765, 0.02178732119500637, 1.1061559915542603, 0.14534468948841095, 0.042280346155166626, -0.03948802128434181, -0.3004685044288635, -0.6421986818313599, 0.23360849916934967, 0.49502041935920715, -0.1745622307062149, -0.2028449922800064, 0.05385710671544075]} +{"t": 4.8808, "q": [-0.34408554434776306, 0.0027833222411572933, -0.004646987654268742, 0.6292048096656799, -0.32112205028533936, 0.007328270003199577, -0.3839775621891022, 0.009212406352162361, -0.0122669767588377, 0.5961134433746338, -0.2845394015312195, -0.00617446843534708, 0.010445678606629372, -0.052724339067935944, -0.054996974766254425, 0.2241409718990326, 0.1281832754611969, 0.022937806323170662, 1.1069828271865845, 0.14534468948841095, 0.04229233041405678, -0.039511989802122116, -0.31077492237091064, -0.6462373733520508, 0.23670043051242828, 0.4761572480201721, -0.174538254737854, -0.2130076140165329, 0.05380916967988014]} +{"t": 4.8976, "q": [-0.3439832627773285, 0.002962287049740553, -0.004700555466115475, 0.6291877627372742, -0.321130633354187, 0.007241107523441315, -0.38390085101127625, 0.009314672090113163, -0.012293760664761066, 0.5961219668388367, -0.2844642698764801, -0.006174855399876833, 0.010432287119328976, -0.052663564682006836, -0.05498543009161949, 0.2232900857925415, 0.12803946435451508, 0.024028372019529343, 1.1076899766921997, 0.14539262652397156, 0.04230431467294693, -0.039511989802122116, -0.3212251663208008, -0.6511269211769104, 0.239540696144104, 0.455843985080719, -0.1745622307062149, -0.2253393828868866, 0.053761232644319534]} +{"t": 4.9143, "q": [-0.3439832627773285, 0.0030475077219307423, -0.004821082577109337, 0.6291621923446655, -0.3211265504360199, 0.007233882788568735, -0.38395199179649353, 0.009553291834890842, -0.012320543639361858, 0.5961390137672424, -0.2857593297958374, -0.008575146086513996, 0.010459070093929768, -0.05260283127427101, -0.054993726313114166, 0.22237928211688995, 0.12801548838615417, 0.024268055334687233, 1.1088165044784546, 0.14539262652397156, 0.042328283190727234, -0.039511989802122116, -0.33191511034965515, -0.655105710029602, 0.24204540252685547, 0.43506333231925964, -0.17455023527145386, -0.23553796112537384, 0.053713299334049225]} +{"t": 4.9311, "q": [-0.34390658140182495, 0.0031156851910054684, -0.004968393128365278, 0.6291621923446655, -0.3211020827293396, 0.007176006678491831, -0.38389232754707336, 0.00990269798785448, -0.012494638562202454, 0.5961901545524597, -0.2863234281539917, -0.01033583004027605, 0.010499246418476105, -0.05260287597775459, -0.055013567209243774, 0.2216961830854416, 0.12808740139007568, 0.024471787735819817, 1.109847068786621, 0.14547650516033173, 0.04235225170850754, -0.03953595831990242, -0.3417661488056183, -0.6582695245742798, 0.24478977918624878, 0.4148579239845276, -0.174538254737854, -0.2466593235731125, 0.05372528359293938]} +{"t": 4.9478, "q": [-0.3438724875450134, 0.003371348138898611, -0.0051424880512058735, 0.6291707158088684, -0.32117265462875366, 0.007023083511739969, -0.3838411867618561, 0.010439591482281685, -0.012628557160496712, 0.5962072014808655, -0.2863481044769287, -0.010494721122086048, 0.0105126379057765, -0.05263327807188034, -0.05502430349588394, 0.2210969775915146, 0.128159299492836, 0.02460361458361149, 1.1108417510986328, 0.14544056355953217, 0.04236423596739769, -0.03952397406101227, -0.35095804929733276, -0.6611457467079163, 0.2484569549560547, 0.3956112563610077, -0.1745622307062149, -0.2567620277404785, 0.05373726412653923]} +{"t": 4.9645, "q": [-0.3436679542064667, 0.0037548434920608997, -0.005236231256276369, 0.629196286201477, -0.32125988602638245, 0.006826485972851515, -0.3836963176727295, 0.01110431645065546, -0.012641949579119682, 0.5962157249450684, -0.28638505935668945, -0.010790873318910599, 0.010378719307482243, -0.05262569710612297, -0.05502906069159508, 0.22060561180114746, 0.1281353384256363, 0.024627583101391792, 1.111548900604248, 0.14536865055561066, 0.04235225170850754, -0.03953595831990242, -0.3603536784648895, -0.6633628010749817, 0.2526514232158661, 0.37797048687934875, -0.17457421123981476, -0.2674279808998108, 0.05373726412653923]} +{"t": 4.9814, "q": [-0.3436168134212494, 0.004172427114099264, -0.005182663444429636, 0.6291877627372742, -0.32144632935523987, 0.006527519319206476, -0.38376450538635254, 0.011598599143326283, -0.012615165673196316, 0.5962072014808655, -0.2863306999206543, -0.011087529361248016, 0.010231408290565014, -0.052580151706933975, -0.055037762969732285, 0.2199704498052597, 0.12800350785255432, 0.024687504395842552, 1.1121001243591309, 0.14544056355953217, 0.04236423596739769, -0.039511989802122116, -0.3702166974544525, -0.665136456489563, 0.25665417313575745, 0.358112633228302, -0.17462214827537537, -0.2768116295337677, 0.05374924838542938]} +{"t": 4.9981, "q": [-0.34354010224342346, 0.004351391922682524, -0.005249623209238052, 0.6291707158088684, -0.3214879631996155, 0.006411106791347265, -0.38380712270736694, 0.011666775681078434, -0.01258838176727295, 0.5962327718734741, -0.28640520572662354, -0.011231685057282448, 0.01017784047871828, -0.05253469571471214, -0.055086154490709305, 0.21890385448932648, 0.12799152731895447, 0.024711472913622856, 1.1124956607818604, 0.1453566700220108, 0.04236423596739769, -0.03953595831990242, -0.37842586636543274, -0.6670179963111877, 0.2599618136882782, 0.34057968854904175, -0.17470604181289673, -0.28718996047973633, 0.05373726412653923]} +{"t": 5.0148, "q": [-0.34358271956443787, 0.004598533269017935, -0.005450501572340727, 0.6291792392730713, -0.32152536511421204, 0.006316455081105232, -0.3838411867618561, 0.012016182765364647, -0.012682124972343445, 0.5962157249450684, -0.2865252196788788, -0.01146957091987133, 0.010084097273647785, -0.05251948535442352, -0.05507582798600197, 0.21796908974647522, 0.12799152731895447, 0.02473544143140316, 1.113202691078186, 0.14534468948841095, 0.04236423596739769, -0.03952397406101227, -0.38535276055336, -0.6691272258758545, 0.2627061903476715, 0.32405343651771545, -0.1748857945203781, -0.2964058518409729, 0.053773216903209686]} +{"t": 5.0316, "q": [-0.3437105715274811, 0.004726364742964506, -0.0056112040765583515, 0.6291451454162598, -0.3218071460723877, 0.005849887616932392, -0.38404572010040283, 0.012527509592473507, -0.012695517390966415, 0.5962242484092712, -0.2866577208042145, -0.011685713194310665, 0.010017137974500656, -0.052420906722545624, -0.05513767898082733, 0.21753765642642975, 0.12797954678535461, 0.024759409949183464, 1.1140056848526, 0.14539262652397156, 0.04235225170850754, -0.03954794257879257, -0.3906378149986267, -0.6712843775749207, 0.2640604078769684, 0.30952855944633484, -0.1748857945203781, -0.3036443293094635, 0.05362940952181816]} +{"t": 5.0483, "q": [-0.3437872529029846, 0.004845674615353346, -0.005852258298546076, 0.629128098487854, -0.3234224021434784, 0.0033847838640213013, -0.38435253500938416, 0.013098491355776787, -0.012708908878266811, 0.5962327718734741, -0.2866491377353668, -0.011902587488293648, 0.009695732034742832, -0.05215531960129738, -0.05522482469677925, 0.21741782128810883, 0.127931609749794, 0.024759409949183464, 1.1146048307418823, 0.1454046070575714, 0.04236423596739769, -0.03952397406101227, -0.3965100646018982, -0.6731778979301453, 0.26501914858818054, 0.2947879731655121, -0.17496968805789948, -0.31259652972221375, 0.05378520116209984]} +{"t": 5.065, "q": [-0.3438724875450134, 0.004905329551547766, -0.005852258298546076, 0.6290514469146729, -0.32330644130706787, 0.0035598305985331535, -0.38471898436546326, 0.013643906451761723, -0.012615165673196316, 0.5962327718734741, -0.28669023513793945, -0.012191509827971458, 0.009601988829672337, -0.05183671414852142, -0.05537504330277443, 0.21733392775058746, 0.12791961431503296, 0.024759409949183464, 1.1152639389038086, 0.14534468948841095, 0.04236423596739769, -0.03954794257879257, -0.4022505283355713, -0.6741006970405579, 0.2670444846153259, 0.2796398997306824, -0.17517341673374176, -0.3212131857872009, 0.054060839116573334]} +{"t": 5.0818, "q": [-0.3439321219921112, 0.005178036633878946, -0.005892434157431126, 0.6288639307022095, -0.3233526051044464, 0.003334502223879099, -0.3849831521511078, 0.014180799946188927, -0.012655341066420078, 0.5962242484092712, -0.2867770195007324, -0.012458475306630135, 0.009374327026307583, -0.05151811242103577, -0.05552526190876961, 0.21723805367946625, 0.12797954678535461, 0.024759409949183464, 1.115815281867981, 0.14536865055561066, 0.04236423596739769, -0.03954794257879257, -0.4081946909427643, -0.6741006970405579, 0.27083149552345276, 0.2637368440628052, -0.1760362833738327, -0.33092039823532104, 0.054863784462213516]} +{"t": 5.0985, "q": [-0.3440599739551544, 0.005783106666058302, -0.006307582836598158, 0.6288127899169922, -0.32337385416030884, 0.0031674199271947145, -0.3850342929363251, 0.014666561037302017, -0.012990138493478298, 0.5962072014808655, -0.28692588210105896, -0.012848003767430782, 0.009642165154218674, -0.051282744854688644, -0.055543769150972366, 0.21707026660442352, 0.12797954678535461, 0.024759409949183464, 1.1165822744369507, 0.14536865055561066, 0.04236423596739769, -0.03953595831990242, -0.4117540121078491, -0.6739928126335144, 0.27428296208381653, 0.24709075689315796, -0.17674335837364197, -0.34037595987319946, 0.05560680478811264]} +{"t": 5.1152, "q": [-0.3441537022590637, 0.006175124552100897, -0.006642380263656378, 0.6287105679512024, -0.32337453961372375, 0.002993236295878887, -0.38512805104255676, 0.014785869978368282, -0.013713301159441471, 0.5962072014808655, -0.28714096546173096, -0.013381714932620525, 0.009695732034742832, -0.051024653017520905, -0.05558647960424423, 0.21696241199970245, 0.1278596967458725, 0.024819331243634224, 1.11776864528656, 0.14541658759117126, 0.04236423596739769, -0.03953595831990242, -0.4151335656642914, -0.6734055876731873, 0.27721908688545227, 0.23153522610664368, -0.1777380406856537, -0.3490285873413086, 0.05661347880959511]} +{"t": 5.1319, "q": [-0.3441707491874695, 0.006481920834630728, -0.00709770480170846, 0.628523051738739, -0.3233547806739807, 0.00278293015435338, -0.3851024806499481, 0.015050055459141731, -0.014222193509340286, 0.5962157249450684, -0.28730642795562744, -0.013756703585386276, 0.00992339476943016, -0.050667956471443176, -0.05568111315369606, 0.21591979265213013, 0.12769192457199097, 0.024819331243634224, 1.1193625926971436, 0.14536865055561066, 0.04236423596739769, -0.03953595831990242, -0.41844120621681213, -0.6729262471199036, 0.27917253971099854, 0.21502096951007843, -0.18006297945976257, -0.358340322971344, 0.05811150744557381]} +{"t": 5.1487, "q": [-0.3441707491874695, 0.0067375837825238705, -0.007311975117772818, 0.6283185482025146, -0.3233596086502075, 0.0026014423929154873, -0.3851450979709625, 0.015271631069481373, -0.014543598517775536, 0.5962668657302856, -0.2875175476074219, -0.014153126627206802, 0.00991000235080719, -0.05009882152080536, -0.05586938187479973, 0.21541644632816315, 0.1275121569633484, 0.024783378466963768, 1.1205130815505981, 0.1453566700220108, 0.04236423596739769, -0.03953595831990242, -0.4227195680141449, -0.6728423237800598, 0.2807064950466156, 0.19898608326911926, -0.18263959884643555, -0.3658544421195984, 0.05963350459933281]} +{"t": 5.1654, "q": [-0.34404292702674866, 0.007010291796177626, -0.007311975117772818, 0.6280202269554138, -0.3234098255634308, 0.0023978673852980137, -0.38518768548965454, 0.015586948953568935, -0.014570382423698902, 0.5962753891944885, -0.28764578700065613, -0.014434341341257095, 0.009869826957583427, -0.04922597482800484, -0.05617962405085564, 0.21511684358119965, 0.12738032639026642, 0.024807346984744072, 1.1221189498901367, 0.14534468948841095, 0.04237622022628784, -0.03952397406101227, -0.42817240953445435, -0.672974169254303, 0.281761109828949, 0.1835503876209259, -0.1850723922252655, -0.37564554810523987, 0.06179066374897957]} +{"t": 5.1821, "q": [-0.34389805793762207, 0.007163689937442541, -0.007298583164811134, 0.6277816295623779, -0.3234969973564148, 0.0022157810162752867, -0.3852388262748718, 0.015808524563908577, -0.014556990936398506, 0.5963435769081116, -0.2877616882324219, -0.014650571160018444, 0.00966894906014204, -0.04825400188565254, -0.05631377920508385, 0.21504493057727814, 0.12729644775390625, 0.024807346984744072, 1.123125672340393, 0.14539262652397156, 0.042328283190727234, -0.03952397406101227, -0.4337690472602844, -0.6730340719223022, 0.28203675150871277, 0.168821781873703, -0.18696589767932892, -0.38476553559303284, 0.06397179514169693]} +{"t": 5.1988, "q": [-0.3438469171524048, 0.007214822340756655, -0.0072584073059260845, 0.6275600790977478, -0.3235429525375366, 0.002048513852059841, -0.3854348361492157, 0.015902267768979073, -0.014543598517775536, 0.5964969396591187, -0.2877575159072876, -0.014672270976006985, 0.009454678744077682, -0.047008708119392395, -0.05653081461787224, 0.21491311490535736, 0.1272844523191452, 0.024807346984744072, 1.1239405870437622, 0.14534468948841095, 0.042340267449617386, -0.039511989802122116, -0.43925780057907104, -0.6729861497879028, 0.28212064504623413, 0.15448865294456482, -0.18881146609783173, -0.39274701476097107, 0.06615292280912399]} +{"t": 5.2156, "q": [-0.3437105715274811, 0.007206300739198923, -0.007111096754670143, 0.6273043751716614, -0.3235105276107788, 0.0019181272946298122, -0.3854689300060272, 0.015919310972094536, -0.014503423124551773, 0.5967015027999878, -0.287720263004303, -0.014607418328523636, 0.009360934607684612, -0.04548194259405136, -0.05670788884162903, 0.21437382698059082, 0.12715263664722443, 0.024807346984744072, 1.1247555017471313, 0.14539262652397156, 0.042328283190727234, -0.03953595831990242, -0.4455015957355499, -0.6729981303215027, 0.28203675150871277, 0.13948439061641693, -0.1929580122232437, -0.4021186828613281, 0.06784269958734512]} +{"t": 5.2323, "q": [-0.3437531590461731, 0.007180734071880579, -0.007070920895785093, 0.6271851062774658, -0.32349416613578796, 0.0018892111256718636, -0.38550302386283875, 0.015919310972094536, -0.014516814611852169, 0.5967952013015747, -0.28746360540390015, -0.014146187342703342, 0.00932075921446085, -0.04365886375308037, -0.056943684816360474, 0.21313944458961487, 0.12712866067886353, 0.024807346984744072, 1.1264092922210693, 0.14536865055561066, 0.04235225170850754, -0.03952397406101227, -0.4509783685207367, -0.6735374331474304, 0.2819288969039917, 0.12505538761615753, -0.19684089720249176, -0.4098365306854248, 0.06934072822332382]} +{"t": 5.2491, "q": [-0.34363386034965515, 0.007146645803004503, -0.006990569643676281, 0.6269805431365967, -0.32346975803375244, 0.0018168240785598755, -0.3854263126850128, 0.015910789370536804, -0.014503423124551773, 0.5969571471214294, -0.2873890697956085, -0.014030935242772102, 0.009307367727160454, -0.04172911494970322, -0.05723908543586731, 0.21152158081531525, 0.126960888504982, 0.024771394208073616, 1.129105806350708, 0.1454046070575714, 0.042388204485177994, -0.03953595831990242, -0.45685064792633057, -0.6742924451828003, 0.2816292941570282, 0.11084210127592087, -0.19986093044281006, -0.4195437431335449, 0.07144995033740997]} +{"t": 5.2658, "q": [-0.343386709690094, 0.007052902597934008, -0.00676290737465024, 0.6266226172447205, -0.3234166204929352, 0.0017228687647730112, -0.38535812497138977, 0.015851134434342384, -0.014423071406781673, 0.5971872210502625, -0.2873062491416931, -0.013901256956160069, 0.009267191402614117, -0.04008791968226433, -0.057441819459199905, 0.2103111743927002, 0.1263856440782547, 0.024759409949183464, 1.1313947439193726, 0.14532071352005005, 0.042448125779628754, -0.03953595831990242, -0.4625791013240814, -0.6746759414672852, 0.28124579787254333, 0.09514276683330536, -0.20453476905822754, -0.42727357149124146, 0.07394266873598099]} +{"t": 5.2826, "q": [-0.3432844579219818, 0.006959159392863512, -0.006709339562803507, 0.626511812210083, -0.32335522770881653, 0.0016289930790662766, -0.38522177934646606, 0.015851134434342384, -0.014315936714410782, 0.5974003076553345, -0.28731870651245117, -0.013893982395529747, 0.00906631350517273, -0.03864404931664467, -0.05767117068171501, 0.20947226881980896, 0.12600214779376984, 0.024711472913622856, 1.1328208446502686, 0.1453087329864502, 0.04247209429740906, -0.03952397406101227, -0.4676963686943054, -0.6746999025344849, 0.28081437945365906, 0.08137288689613342, -0.20802217721939087, -0.433433473110199, 0.07593204826116562]} +{"t": 5.2993, "q": [-0.34304583072662354, 0.006848371122032404, -0.006361150648444891, 0.6263328790664673, -0.3232981860637665, 0.0014842808013781905, -0.38485532999038696, 0.01582556776702404, -0.014074882492423058, 0.5980564951896667, -0.28692957758903503, -0.01320215780287981, 0.008704732172191143, -0.037306152284145355, -0.05764465034008026, 0.20893298089504242, 0.1254628598690033, 0.024711472913622856, 1.1339473724365234, 0.14541658759117126, 0.042520031332969666, -0.03953595831990242, -0.473736435174942, -0.6746280193328857, 0.28044286370277405, 0.06780674308538437, -0.21372666954994202, -0.442062109708786, 0.07780159264802933]} +{"t": 5.3161, "q": [-0.34303730726242065, 0.006703495513647795, -0.005972785409539938, 0.6262050271034241, -0.32324492931365967, 0.0014193471288308501, -0.38422468304634094, 0.0157062578946352, -0.01379365287721157, 0.5988746285438538, -0.2868136763572693, -0.012971476651728153, 0.008517245762050152, -0.036097317934036255, -0.0575467012822628, 0.20813004672527313, 0.12505538761615753, 0.024663535878062248, 1.1355173587799072, 0.14539262652397156, 0.04253201559185982, -0.03954794257879257, -0.47954878211021423, -0.6746519804000854, 0.2803829312324524, 0.05368933081626892, -0.21979069709777832, -0.45036718249320984, 0.08088153600692749]} +{"t": 5.333, "q": [-0.3430714011192322, 0.006550097372382879, -0.005651379935443401, 0.6261197924613953, -0.32317957282066345, 0.0012892072554677725, -0.38335543870925903, 0.01563808135688305, -0.013686517253518105, 0.5997438430786133, -0.2867225408554077, -0.012856312096118927, 0.008343150839209557, -0.034941643476486206, -0.05747547373175621, 0.20735105872154236, 0.12476776540279388, 0.02473544143140316, 1.1372071504592896, 0.14544056355953217, 0.042520031332969666, -0.039559926837682724, -0.4855768382549286, -0.6745560765266418, 0.2803110182285309, 0.040518663823604584, -0.22706511616706848, -0.45949915051460266, 0.08495616912841797]} +{"t": 5.3497, "q": [-0.3430202603340149, 0.006422265898436308, -0.005477285478264093, 0.6260346174240112, -0.3231140077114105, 0.001217128592543304, -0.3829975128173828, 0.015629559755325317, -0.013579382561147213, 0.6001955270767212, -0.2867266535758972, -0.012892419472336769, 0.008343150839209557, -0.033831145614385605, -0.05713747441768646, 0.20645225048065186, 0.12442022562026978, 0.024699488654732704, 1.1389567852020264, 0.1454046070575714, 0.042520031332969666, -0.03954794257879257, -0.4906221926212311, -0.6746159791946411, 0.2803589701652527, 0.027875307947397232, -0.2337043732404709, -0.4671211242675781, 0.08937834948301315]} +{"t": 5.3665, "q": [-0.3427986800670624, 0.006362610962241888, -0.005490677431225777, 0.6257703900337219, -0.3230119049549103, 0.0010074209421873093, -0.38266515731811523, 0.01564660482108593, -0.013699909672141075, 0.6003915667533875, -0.28674736618995667, -0.012914004735648632, 0.008343150839209557, -0.0326976552605629, -0.05667509138584137, 0.20564930140972137, 0.1239887923002243, 0.024663535878062248, 1.140634536743164, 0.14541658759117126, 0.04249606281518936, -0.039559926837682724, -0.4957274794578552, -0.6746280193328857, 0.28122183680534363, 0.014872423373162746, -0.2400919646024704, -0.47383230924606323, 0.09362076967954636]} +{"t": 5.3832, "q": [-0.3425089418888092, 0.006251823622733355, -0.005571028683334589, 0.6253443360328674, -0.3228932321071625, 0.0008268760866485536, -0.38249471783638, 0.015629559755325317, -0.013713301159441471, 0.600493848323822, -0.2867763936519623, -0.012921075336635113, 0.008624380454421043, -0.03176194429397583, -0.05632660165429115, 0.20500215888023376, 0.12350942194461823, 0.024663535878062248, 1.1415214538574219, 0.14542856812477112, 0.04248407855629921, -0.039559926837682724, -0.5000537633895874, -0.6745920181274414, 0.28221651911735535, 0.0036671729758381844, -0.24784576892852783, -0.48114266991615295, 0.09783921390771866]} +{"t": 5.3999, "q": [-0.34211692214012146, 0.006149557884782553, -0.005678163841366768, 0.6249523162841797, -0.322758287191391, 0.0006029042415320873, -0.3820430338382721, 0.015595471486449242, -0.013874003663659096, 0.6005960702896118, -0.2868219316005707, -0.013000335544347763, 0.00898596178740263, -0.031023887917399406, -0.05595192313194275, 0.20447485148906708, 0.1227424368262291, 0.024711472913622856, 1.1419289112091064, 0.14542856812477112, 0.04247209429740906, -0.039559926837682724, -0.5046916604042053, -0.6750474572181702, 0.2846253514289856, -0.006447513122111559, -0.2565942406654358, -0.4888485372066498, 0.10288457572460175]} +{"t": 5.4167, "q": [-0.34170785546302795, 0.006098425481468439, -0.005825474392622709, 0.624483585357666, -0.32259872555732727, 0.00035009588464163244, -0.38165953755378723, 0.01555286068469286, -0.014088273979723454, 0.6007068753242493, -0.2869420349597931, -0.013180396519601345, 0.00940111093223095, -0.030430302023887634, -0.0555543527007103, 0.20400746166706085, 0.12203536927700043, 0.024723457172513008, 1.1422884464263916, 0.14536865055561066, 0.04249606281518936, -0.03954794257879257, -0.5080353021621704, -0.6755627393722534, 0.2866267263889313, -0.01661013625562191, -0.267152339220047, -0.49502041935920715, 0.1086370050907135]} +{"t": 5.4334, "q": [-0.341145396232605, 0.0060472930781543255, -0.005905826110392809, 0.6240063309669495, -0.3224557638168335, 6.812442734371871e-05, -0.38119083642959595, 0.015535816550254822, -0.014222193509340286, 0.6007494926452637, -0.28708288073539734, -0.013367571868002415, 0.009521638043224812, -0.029981285333633423, -0.05523372441530228, 0.20386365056037903, 0.12117250263690948, 0.024723457172513008, 1.1427438259124756, 0.14539262652397156, 0.042460110038518906, -0.03953595831990242, -0.5122897028923035, -0.6759462356567383, 0.2902939021587372, -0.026137595996260643, -0.2778303027153015, -0.5011683106422424, 0.11411379277706146]} +{"t": 5.4502, "q": [-0.3406681716442108, 0.0060472930781543255, -0.005972785409539938, 0.6235802173614502, -0.32237401604652405, -7.642084528924897e-05, -0.3808499276638031, 0.015561383217573166, -0.014289152808487415, 0.6008262038230896, -0.28724440932273865, -0.01359078474342823, 0.009561813436448574, -0.029425663873553276, -0.05480277165770531, 0.20383968949317932, 0.12048940360546112, 0.024759409949183464, 1.143319010734558, 0.14539262652397156, 0.042448125779628754, -0.039511989802122116, -0.5162444710731506, -0.6767612099647522, 0.29542315006256104, -0.03568902239203453, -0.28790903091430664, -0.5077716112136841, 0.11851200461387634]} +{"t": 5.467, "q": [-0.3401823937892914, 0.006030248012393713, -0.005946001503616571, 0.6228814125061035, -0.3222104012966156, -0.00033639557659626007, -0.3806113302707672, 0.015561383217573166, -0.014289152808487415, 0.6009284257888794, -0.28736448287963867, -0.013785297982394695, 0.00958859734237194, -0.029136447235941887, -0.0545896477997303, 0.2037917524576187, 0.11978232860565186, 0.024759409949183464, 1.1438822746276855, 0.14539262652397156, 0.04247209429740906, -0.039511989802122116, -0.5199356079101562, -0.677456259727478, 0.30081602931022644, -0.0448329858481884, -0.2979997396469116, -0.5140153765678406, 0.12386894971132278]} +{"t": 5.4838, "q": [-0.3396710753440857, 0.006038770545274019, -0.005959393456578255, 0.6222252249717712, -0.32201051712036133, -0.0007192817283794284, -0.3804323673248291, 0.015544338151812553, -0.014275760389864445, 0.6009199023246765, -0.2875012755393982, -0.013907444663345814, 0.009709124453365803, -0.028968945145606995, -0.05441815033555031, 0.2036479413509369, 0.11955463141202927, 0.024771394208073616, 1.1442298889160156, 0.14539262652397156, 0.0424121730029583, -0.039511989802122116, -0.5232911705970764, -0.6789423227310181, 0.30653250217437744, -0.05378520116209984, -0.30912110209465027, -0.5182577967643738, 0.1291060596704483]} +{"t": 5.5005, "q": [-0.33919385075569153, 0.0060046822763979435, -0.005972785409539938, 0.6216201186180115, -0.3218471109867096, -0.0009791037300601602, -0.38022783398628235, 0.015544338151812553, -0.014302544295787811, 0.6009199023246765, -0.2876378893852234, -0.014145242050290108, 0.010084097273647785, -0.028938381001353264, -0.05429844930768013, 0.20328840613365173, 0.11938685178756714, 0.024771394208073616, 1.1445894241333008, 0.14532071352005005, 0.0424121730029583, -0.039500005543231964, -0.5259157419204712, -0.6810035705566406, 0.3121411204338074, -0.06289321184158325, -0.3192477822303772, -0.5240102410316467, 0.1341514140367508]} +{"t": 5.5172, "q": [-0.33881887793540955, 0.005987638141959906, -0.006026353221386671, 0.6211088299751282, -0.3217654526233673, -0.0011235199635848403, -0.380108505487442, 0.015510249882936478, -0.01436950359493494, 0.6009454727172852, -0.28781601786613464, -0.014368385076522827, 0.010619773529469967, -0.02893827296793461, -0.05420903116464615, 0.20273713767528534, 0.11931494623422623, 0.024783378466963768, 1.1450088024139404, 0.14532071352005005, 0.0424121730029583, -0.039511989802122116, -0.5278452038764954, -0.683580219745636, 0.316719114780426, -0.07176154106855392, -0.328152060508728, -0.5300982594490051, 0.13683588802814484]} +{"t": 5.534, "q": [-0.338529109954834, 0.005970594007521868, -0.00605313666164875, 0.6205548644065857, -0.3216552436351776, -0.0013184873387217522, -0.38004887104034424, 0.015450594946742058, -0.014409679919481277, 0.6010051369667053, -0.288010835647583, -0.014533578418195248, 0.011061705648899078, -0.028930624946951866, -0.054174136370420456, 0.2021738737821579, 0.11920709162950516, 0.024783378466963768, 1.1455001831054688, 0.1453566700220108, 0.0424121730029583, -0.03952397406101227, -0.5298824906349182, -0.686492383480072, 0.32128509879112244, -0.08140884339809418, -0.3375237286090851, -0.5360663533210754, 0.1405869424343109]} +{"t": 5.5507, "q": [-0.3381882309913635, 0.005868328269571066, -0.0059995693154633045, 0.6198816299438477, -0.32154083251953125, -0.001491681206971407, -0.3800744116306305, 0.015356851741671562, -0.01436950359493494, 0.6010221838951111, -0.28815993666648865, -0.014735179953277111, 0.01124919205904007, -0.028900183737277985, -0.054153796285390854, 0.20180237293243408, 0.11920709162950516, 0.024819331243634224, 1.1459436416625977, 0.14539262652397156, 0.0424361415207386, -0.039511989802122116, -0.5331541895866394, -0.6901355981826782, 0.3284037113189697, -0.09104415774345398, -0.34659576416015625, -0.5394698977470398, 0.1434391885995865]} +{"t": 5.5674, "q": [-0.3377450704574585, 0.005646753590553999, -0.005932609550654888, 0.6190123558044434, -0.3213651180267334, -0.0017586731119081378, -0.3800573945045471, 0.015237542800605297, -0.014289152808487415, 0.6010392308235168, -0.28828006982803345, -0.01488631870597601, 0.011463462375104427, -0.02877841703593731, -0.05407244712114334, 0.20121514797210693, 0.1191471666097641, 0.02479536272585392, 1.1467944383621216, 0.14536865055561066, 0.042400188744068146, -0.039500005543231964, -0.5363420248031616, -0.6941622495651245, 0.3361695110797882, -0.10053566843271255, -0.35575172305107117, -0.5426816940307617, 0.14643524587154388]} +{"t": 5.5842, "q": [-0.33712297677993774, 0.0053484789095819, -0.005892434157431126, 0.617913007736206, -0.32104235887527466, -0.0022710980847477913, -0.3800318241119385, 0.014998923055827618, -0.014222193509340286, 0.6010818481445312, -0.2884872257709503, -0.015145435929298401, 0.011570597998797894, -0.028747864067554474, -0.05396270751953125, 0.20025640726089478, 0.1191471666097641, 0.02479536272585392, 1.148556113243103, 0.1453566700220108, 0.04242415726184845, -0.039511989802122116, -0.5395417809486389, -0.6977455615997314, 0.34407907724380493, -0.10905645042657852, -0.3627864718437195, -0.5480985641479492, 0.1507735401391983]} +{"t": 5.6009, "q": [-0.33653494715690613, 0.005160992499440908, -0.005825474392622709, 0.6169074177742004, -0.32065820693969727, -0.0028483285568654537, -0.37991249561309814, 0.014905179850757122, -0.014141841791570187, 0.6011329889297485, -0.2886444926261902, -0.015448174439370632, 0.011650948785245419, -0.028724931180477142, -0.05386797711253166, 0.19939354062080383, 0.11911121755838394, 0.024831315502524376, 1.1503537893295288, 0.1453087329864502, 0.0424121730029583, -0.03948802128434181, -0.5426816940307617, -0.7006816864013672, 0.35196471214294434, -0.11750532686710358, -0.3704923093318939, -0.5519334673881531, 0.15405721962451935]} +{"t": 5.6176, "q": [-0.33610883355140686, 0.005084293428808451, -0.005825474392622709, 0.6160381436347961, -0.3205191195011139, -0.003021302865818143, -0.3798954486846924, 0.014819959178566933, -0.014168625697493553, 0.6011585593223572, -0.28895506262779236, -0.01594526879489422, 0.012133057229220867, -0.028785668313503265, -0.05378939211368561, 0.19869846105575562, 0.11907526105642319, 0.024771394208073616, 1.1511447429656982, 0.1453566700220108, 0.04242415726184845, -0.03952397406101227, -0.5448388457298279, -0.7042410373687744, 0.3598383367061615, -0.1273563653230667, -0.3784857988357544, -0.5560201406478882, 0.155543252825737]} +{"t": 5.6344, "q": [-0.33569976687431335, 0.005084293428808451, -0.005825474392622709, 0.6155439019203186, -0.32044970989227295, -0.0031440621241927147, -0.3797420561313629, 0.014828480780124664, -0.014235584996640682, 0.6013119220733643, -0.2892371714115143, -0.01636352203786373, 0.012682124972343445, -0.028922371566295624, -0.05365239828824997, 0.1983029693365097, 0.11900335550308228, 0.024747425690293312, 1.151456356048584, 0.1453087329864502, 0.0424121730029583, -0.03953595831990242, -0.547079861164093, -0.7087111473083496, 0.36888644099235535, -0.13762684166431427, -0.3862156271934509, -0.5586087107658386, 0.15625032782554626]} +{"t": 5.6513, "q": [-0.3352225422859192, 0.005075771827250719, -0.005825474392622709, 0.6151177883148193, -0.32043758034706116, -0.0031947477255016565, -0.37949493527412415, 0.01483700331300497, -0.014222193509340286, 0.6015761494636536, -0.2896521985530853, -0.016781242564320564, 0.01285621989518404, -0.02899811416864395, -0.05341511592268944, 0.19815915822982788, 0.11901534348726273, 0.024783378466963768, 1.151755928993225, 0.1453087329864502, 0.0424121730029583, -0.03952397406101227, -0.5500280261039734, -0.7139002680778503, 0.3795284330844879, -0.14723819494247437, -0.3942570388317108, -0.5599988698959351, 0.15629826486110687]} +{"t": 5.668, "q": [-0.3347708582878113, 0.005084293428808451, -0.0058388663455843925, 0.6147769093513489, -0.32044175267219543, -0.0032020339276641607, -0.37930744886398315, 0.014828480780124664, -0.014262368902564049, 0.601772129535675, -0.2900507152080536, -0.017039896920323372, 0.012923179194331169, -0.029096532613039017, -0.05308389663696289, 0.19796741008758545, 0.11897938698530197, 0.024819331243634224, 1.1519477367401123, 0.14529675245285034, 0.0424121730029583, -0.03952397406101227, -0.5534914135932922, -0.719221293926239, 0.3904939889907837, -0.15658588707447052, -0.4009802043437958, -0.5618804097175598, 0.15637017786502838]} +{"t": 5.6849, "q": [-0.33450666069984436, 0.005067249294370413, -0.005892434157431126, 0.6144444942474365, -0.32046225666999817, -0.003194949124008417, -0.37912845611572266, 0.01483700331300497, -0.01436950359493494, 0.6017891764640808, -0.2902539372444153, -0.017422353848814964, 0.013164233416318893, -0.02923295460641384, -0.05277831852436066, 0.19752399623394012, 0.11895541846752167, 0.024819331243634224, 1.1521754264831543, 0.1453566700220108, 0.0424121730029583, -0.039500005543231964, -0.5561639070510864, -0.7240149974822998, 0.3997578024864197, -0.16497483849525452, -0.4058937132358551, -0.563893735408783, 0.15622636675834656]} +{"t": 5.7018, "q": [-0.3341061472892761, 0.005075771827250719, -0.005932609550654888, 0.6142399907112122, -0.3204747140407562, -0.0032168258912861347, -0.3787534832954407, 0.014871091581881046, -0.01446324773132801, 0.6020362973213196, -0.29029515385627747, -0.017841653898358345, 0.013592774048447609, -0.029422137886285782, -0.05214130878448486, 0.19690081477165222, 0.11895541846752167, 0.024819331243634224, 1.1523312330245972, 0.1453326940536499, 0.0424121730029583, -0.03948802128434181, -0.5604902505874634, -0.7305223941802979, 0.41212552785873413, -0.17310014367103577, -0.4122813045978546, -0.5667340159416199, 0.15509983897209167]} +{"t": 5.7185, "q": [-0.3339442014694214, 0.005033161025494337, -0.005905826110392809, 0.6140950918197632, -0.32048702239990234, -0.0032096561044454575, -0.3787364661693573, 0.014854047447443008, -0.01446324773132801, 0.6022749543190002, -0.29031139612197876, -0.018304459750652313, 0.01411505788564682, -0.02955820970237255, -0.051577914506196976, 0.1962536722421646, 0.11897938698530197, 0.024819331243634224, 1.1525229215621948, 0.1452607959508896, 0.042400188744068146, -0.03947603702545166, -0.5639057159423828, -0.7363347411155701, 0.4227914810180664, -0.18001504242420197, -0.41798579692840576, -0.5675249695777893, 0.1534460186958313]} +{"t": 5.7352, "q": [-0.3337567150592804, 0.004922373685985804, -0.005905826110392809, 0.6138224005699158, -0.32049933075904846, -0.003202504478394985, -0.37861713767051697, 0.01480291411280632, -0.014476639218628407, 0.602360188961029, -0.290377676486969, -0.018492233008146286, 0.014985531568527222, -0.029656432569026947, -0.05113794282078743, 0.19557057321071625, 0.11897938698530197, 0.02479536272585392, 1.1526668071746826, 0.1452607959508896, 0.04242415726184845, -0.03948802128434181, -0.5652838945388794, -0.7414160966873169, 0.4321032166481018, -0.1874932050704956, -0.42473292350769043, -0.567920446395874, 0.15204386413097382]} +{"t": 5.752, "q": [-0.33349254727363586, 0.004828630480915308, -0.005852258298546076, 0.6136690378189087, -0.32051175832748413, -0.003224363084882498, -0.3783359229564667, 0.014768825843930244, -0.014476639218628407, 0.6024197936058044, -0.2901488244533539, -0.019021175801753998, 0.015869395807385445, -0.029860856011509895, -0.050560932606458664, 0.1946837455034256, 0.11900335550308228, 0.024819331243634224, 1.1528465747833252, 0.14536865055561066, 0.0424361415207386, -0.03948802128434181, -0.5660508871078491, -0.7453708648681641, 0.44124719500541687, -0.1932096779346466, -0.4312763214111328, -0.5683998465538025, 0.15004250407218933]} +{"t": 5.7687, "q": [-0.3333391547203064, 0.004666709806770086, -0.005785298999398947, 0.6136860251426697, -0.32057780027389526, -0.0032684344332665205, -0.3781825304031372, 0.014709170907735825, -0.01444985531270504, 0.6025817394256592, -0.28996163606643677, -0.019361885264515877, 0.01664612628519535, -0.02994358167052269, -0.049992237240076065, 0.19384483993053436, 0.11897938698530197, 0.024807346984744072, 1.1532180309295654, 0.14536865055561066, 0.0424121730029583, -0.039500005543231964, -0.5667819380760193, -0.7490260601043701, 0.4513978362083435, -0.19808726012706757, -0.43597412109375, -0.5683518648147583, 0.14728613197803497]} +{"t": 5.7854, "q": [-0.3331942558288574, 0.0043854801915585995, -0.005664771888405085, 0.6137030720710754, -0.3206729590892792, -0.003363583702594042, -0.37803763151168823, 0.014640994369983673, -0.014329328201711178, 0.6028032898902893, -0.2899532914161682, -0.019390860572457314, 0.017342504113912582, -0.029996128752827644, -0.04957175627350807, 0.19285015761852264, 0.11894343793392181, 0.024807346984744072, 1.1537094116210938, 0.14536865055561066, 0.0424361415207386, -0.03948802128434181, -0.567093551158905, -0.7518423795700073, 0.46090131998062134, -0.20163458585739136, -0.4429609477519989, -0.5663145780563354, 0.14273212850093842]} +{"t": 5.8021, "q": [-0.333109050989151, 0.004027551505714655, -0.005517460871487856, 0.6137030720710754, -0.32070592045783997, -0.0033493647351861, -0.37799501419067383, 0.014623950235545635, -0.014248977415263653, 0.6030675172805786, -0.2899533212184906, -0.019376398995518684, 0.018025491386651993, -0.029941996559500694, -0.04898129776120186, 0.1916397511959076, 0.11899137496948242, 0.02479536272585392, 1.1542247533798218, 0.14536865055561066, 0.042448125779628754, -0.039500005543231964, -0.56672203540802, -0.7543950080871582, 0.46929028630256653, -0.2046426236629486, -0.44912081956863403, -0.5645289421081543, 0.1365242898464203]} +{"t": 5.8189, "q": [-0.33299824595451355, 0.0034224814735352993, -0.00546389352530241, 0.613737165927887, -0.3206893801689148, -0.003349206643179059, -0.37798652052879333, 0.014632471837103367, -0.014235584996640682, 0.6035106182098389, -0.289982408285141, -0.01934010535478592, 0.0186415184289217, -0.029780877754092216, -0.04802274331450462, 0.19028553366661072, 0.11896740645170212, 0.02479536272585392, 1.1547399759292603, 0.14539262652397156, 0.042448125779628754, -0.039511989802122116, -0.5664463639259338, -0.7576786875724792, 0.47699612379074097, -0.20795027911663055, -0.4543219804763794, -0.5619043707847595, 0.12808740139007568]} +{"t": 5.8356, "q": [-0.33292156457901, 0.0030134194530546665, -0.005316582508385181, 0.6138138771057129, -0.3206893801689148, -0.003349206643179059, -0.3779609501361847, 0.014658038504421711, -0.01419540960341692, 0.6040219664573669, -0.29011136293411255, -0.019115347415208817, 0.018735261633992195, -0.029390906915068626, -0.04666521027684212, 0.1892668753862381, 0.11894343793392181, 0.024747425690293312, 1.1552433967590332, 0.14539262652397156, 0.042448125779628754, -0.039511989802122116, -0.5663864612579346, -0.7609503865242004, 0.4856966733932495, -0.21046696603298187, -0.4614645838737488, -0.5572904348373413, 0.11939883977174759]} +{"t": 5.8523, "q": [-0.3326062560081482, 0.0027662781067192554, -0.00483447453007102, 0.6139246821403503, -0.32070162892341614, -0.0033275496680289507, -0.37794390320777893, 0.014640994369983673, -0.013807044364511967, 0.6047378182411194, -0.2901945412158966, -0.018970351666212082, 0.018708478659391403, -0.029320145025849342, -0.04527416452765465, 0.18858376145362854, 0.11895541846752167, 0.024783378466963768, 1.156082272529602, 0.14539262652397156, 0.042448125779628754, -0.039511989802122116, -0.5663145780563354, -0.7637666463851929, 0.49536794424057007, -0.21073061227798462, -0.4680798649787903, -0.5534794330596924, 0.11031479388475418]} +{"t": 5.8691, "q": [-0.3323420584201813, 0.0025191367603838444, -0.004379149992018938, 0.6142058968544006, -0.3207056224346161, -0.00330581353046, -0.37797799706459045, 0.014606906101107597, -0.01344546303153038, 0.6054707169532776, -0.2902735471725464, -0.01886150799691677, 0.018708478659391403, -0.029089033603668213, -0.043550390750169754, 0.18757709860801697, 0.11894343793392181, 0.024771394208073616, 1.1572567224502563, 0.14536865055561066, 0.04242415726184845, -0.039511989802122116, -0.5661587715148926, -0.767266035079956, 0.5039246678352356, -0.21075458824634552, -0.4719507694244385, -0.5491172075271606, 0.10184194892644882]} +{"t": 5.8858, "q": [-0.33239319920539856, 0.0022464292123913765, -0.004231838975101709, 0.614555299282074, -0.32069745659828186, -0.00332025159150362, -0.37816548347473145, 0.014615427702665329, -0.013338328339159489, 0.6062036156654358, -0.29034844040870667, -0.018702087923884392, 0.018681693822145462, -0.029002919793128967, -0.042180877178907394, 0.1864985078573227, 0.11899137496948242, 0.024783378466963768, 1.1582874059677124, 0.14539262652397156, 0.0424121730029583, -0.039511989802122116, -0.5660389065742493, -0.77070552110672, 0.511954128742218, -0.21069467067718506, -0.47547414898872375, -0.5446950197219849, 0.09182313084602356]} +{"t": 5.9025, "q": [-0.33248692750930786, 0.0019396329298615456, -0.004178271628916264, 0.6148279905319214, -0.3207097053527832, -0.003298594616353512, -0.3783614933490753, 0.014606906101107597, -0.013244585134088993, 0.6068939566612244, -0.2905271649360657, -0.01854943484067917, 0.018735261633992195, -0.029167592525482178, -0.040910229086875916, 0.18556374311447144, 0.11900335550308228, 0.024783378466963768, 1.1590543985366821, 0.1453566700220108, 0.04235225170850754, -0.03952397406101227, -0.5643970966339111, -0.7742648124694824, 0.5197558403015137, -0.21039505302906036, -0.48137038946151733, -0.5402129292488098, 0.08127701282501221]} +{"t": 5.9194, "q": [-0.3324102461338043, 0.0017521465197205544, -0.003964001312851906, 0.6151348352432251, -0.3207055330276489, -0.0032912965398281813, -0.3785915672779083, 0.01447055209428072, -0.013070490211248398, 0.6076012849807739, -0.2906600534915924, -0.018592266365885735, 0.018614735454320908, -0.029066406190395355, -0.03971048817038536, 0.18518024682998657, 0.11891946941614151, 0.024807346984744072, 1.1595816612243652, 0.1453566700220108, 0.042280346155166626, -0.03953595831990242, -0.563582181930542, -0.7773327827453613, 0.52899569272995, -0.20992767810821533, -0.48703891038894653, -0.5335376858711243, 0.06962835043668747]} +{"t": 5.9361, "q": [-0.33240172266960144, 0.0017521465197205544, -0.003589028026908636, 0.6154160499572754, -0.32070961594581604, -0.0032840773928910494, -0.37890690565109253, 0.014197844080626965, -0.012708908878266811, 0.6080784797668457, -0.2909386157989502, -0.018251148983836174, 0.018614735454320908, -0.028859548270702362, -0.03883384168148041, 0.1846769154071808, 0.11894343793392181, 0.024771394208073616, 1.1602407693862915, 0.1453087329864502, 0.042268361896276474, -0.03954794257879257, -0.563582181930542, -0.7805445790290833, 0.5384512543678284, -0.2097598910331726, -0.49144911766052246, -0.5288518667221069, 0.0589863583445549]} +{"t": 5.9528, "q": [-0.3324187695980072, 0.0017691906541585922, -0.0035086767747998238, 0.6155609488487244, -0.3207055330276489, -0.0032912965398281813, -0.37911996245384216, 0.01383991539478302, -0.01260177418589592, 0.6085642576217651, -0.292677104473114, -0.015408622100949287, 0.018695086240768433, -0.028653107583522797, -0.038204941898584366, 0.18364626169204712, 0.11891946941614151, 0.024771394208073616, 1.1608879566192627, 0.14532071352005005, 0.042280346155166626, -0.03953595831990242, -0.563522219657898, -0.7838282585144043, 0.5483621954917908, -0.20961607992649078, -0.49506834149360657, -0.5242499113082886, 0.047445546835660934]} +{"t": 5.9696, "q": [-0.3324698805809021, 0.0017691906541585922, -0.003562244353815913, 0.6156546473503113, -0.32068920135498047, -0.0033201726619154215, -0.37932446599006653, 0.013422331772744656, -0.012668733485043049, 0.6090585589408875, -0.29315927624702454, -0.014987066388130188, 0.019016491249203682, -0.028636524453759193, -0.03756483644247055, 0.18220816552639008, 0.11894343793392181, 0.024759409949183464, 1.1616309881210327, 0.1453087329864502, 0.04224439337849617, -0.039559926837682724, -0.5632705688476562, -0.7867763638496399, 0.5568110942840576, -0.20743495225906372, -0.5008687376976013, -0.5194682478904724, 0.03711514547467232]} +{"t": 5.9863, "q": [-0.3325977325439453, 0.001794756855815649, -0.0036024199798703194, 0.6158592104911804, -0.320672869682312, -0.003349066711962223, -0.3796568512916565, 0.013243366964161396, -0.012695517390966415, 0.6097573637962341, -0.2935203015804291, -0.015397768467664719, 0.019699478521943092, -0.028589380905032158, -0.03683529049158096, 0.18039853870868683, 0.11900335550308228, 0.024771394208073616, 1.162290096282959, 0.14532071352005005, 0.04224439337849617, -0.03954794257879257, -0.5632585883140564, -0.790347695350647, 0.5672852993011475, -0.2057931125164032, -0.5072203278541565, -0.5116185545921326, 0.025382589548826218]} +{"t": 6.0031, "q": [-0.3326062560081482, 0.0019140667282044888, -0.003575636073946953, 0.6159955263137817, -0.320672869682312, -0.003349066711962223, -0.38006591796875, 0.012911004945635796, -0.012682124972343445, 0.6105499267578125, -0.2938023805618286, -0.015830516815185547, 0.02051638439297676, -0.02865637093782425, -0.036180995404720306, 0.17887654900550842, 0.11894343793392181, 0.024771394208073616, 1.1629852056503296, 0.1453087329864502, 0.04230431467294693, -0.03954794257879257, -0.563438355922699, -0.7940747737884521, 0.578071117401123, -0.20422318577766418, -0.5114028453826904, -0.5038408041000366, 0.013674001209437847]} +{"t": 6.0198, "q": [-0.33258920907974243, 0.002093031071126461, -0.0036158119328320026, 0.6160807609558105, -0.3206687867641449, -0.0033562856260687113, -0.38027042150497437, 0.012621252797544003, -0.012682124972343445, 0.6111464500427246, -0.29405543208122253, -0.016256161034107208, 0.021748438477516174, -0.028920907527208328, -0.03557948023080826, 0.17730660736560822, 0.11891946941614151, 0.024783378466963768, 1.1632847785949707, 0.1453326940536499, 0.042328283190727234, -0.03954794257879257, -0.5635342001914978, -0.7978857755661011, 0.5874307751655579, -0.20289292931556702, -0.5135360360145569, -0.49799248576164246, 0.002133192028850317]} +{"t": 6.0366, "q": [-0.332546591758728, 0.002374260686337948, -0.0036158119328320026, 0.6161404252052307, -0.3206608295440674, -0.003399757668375969, -0.380440890789032, 0.012340023182332516, -0.012682124972343445, 0.611564040184021, -0.29426276683807373, -0.01667473278939724, 0.024092020466923714, -0.028957223519682884, -0.03486743941903114, 0.17504160106182098, 0.11893144994974136, 0.024783378466963768, 1.1640757322311401, 0.1453326940536499, 0.04236423596739769, -0.03954794257879257, -0.563582181930542, -0.8031588196754456, 0.5963590145111084, -0.20278507471084595, -0.5170593857765198, -0.49070608615875244, -0.008532768115401268]} +{"t": 6.0533, "q": [-0.33253806829452515, 0.0025447034277021885, -0.0036425956059247255, 0.6161404252052307, -0.320636123418808, -0.003414055798202753, -0.3806198537349701, 0.012442288920283318, -0.012682124972343445, 0.6119049191474915, -0.2944701611995697, -0.017035461962223053, 0.02703823707997799, -0.028963306918740273, -0.03421379625797272, 0.17205752432346344, 0.11894343793392181, 0.02473544143140316, 1.1657055616378784, 0.1452847570180893, 0.042460110038518906, -0.03954794257879257, -0.5636181235313416, -0.809402585029602, 0.605431079864502, -0.2024734914302826, -0.5211939811706543, -0.4836713373661041, -0.020313261076807976]} +{"t": 6.07, "q": [-0.3325039744377136, 0.0025873142294585705, -0.0037899063900113106, 0.6160807609558105, -0.32059940695762634, -0.003479044884443283, -0.3807561993598938, 0.012476377189159393, -0.01284282747656107, 0.6123054623603821, -0.29468169808387756, -0.01738896407186985, 0.02938181906938553, -0.028810296207666397, -0.03371938318014145, 0.1699962317943573, 0.11894343793392181, 0.024723457172513008, 1.167527198791504, 0.1453087329864502, 0.042448125779628754, -0.03954794257879257, -0.5635941624641418, -0.8148314356803894, 0.6151143312454224, -0.2012031525373459, -0.5262273550033569, -0.4765167534351349, -0.03178216516971588]} +{"t": 6.0867, "q": [-0.332546591758728, 0.0026043583638966084, -0.003964001312851906, 0.616046667098999, -0.320587158203125, -0.0035007018595933914, -0.38100335001945496, 0.012484898790717125, -0.013003530912101269, 0.6128679513931274, -0.29490983486175537, -0.017800234258174896, 0.031323645263910294, -0.028604155406355858, -0.03323889896273613, 0.16853415966033936, 0.11875168979167938, 0.024759409949183464, 1.1695765256881714, 0.1453806310892105, 0.04242415726184845, -0.03953595831990242, -0.5636420845985413, -0.8190139532089233, 0.6238987445831299, -0.19965718686580658, -0.5309491157531738, -0.467504620552063, -0.044437509030103683]} +{"t": 6.1035, "q": [-0.3325210213661194, 0.0026469682343304157, -0.004231838975101709, 0.616046667098999, -0.3205791711807251, -0.003544192062690854, -0.3810288906097412, 0.012510465458035469, -0.013204408809542656, 0.6132173538208008, -0.2950756549835205, -0.018204541876912117, 0.032528914511203766, -0.028511950746178627, -0.03275562450289726, 0.16775518655776978, 0.11859589070081711, 0.024747425690293312, 1.1715059280395508, 0.1452368199825287, 0.04242415726184845, -0.03954794257879257, -0.5639896392822266, -0.8218661546707153, 0.6311971545219421, -0.19778765738010406, -0.5345084071159363, -0.4588879644870758, -0.05548696219921112]} +{"t": 6.1202, "q": [-0.33252954483032227, 0.0026895790360867977, -0.004553244449198246, 0.6159443855285645, -0.3205791711807251, -0.003544192062690854, -0.38102036714553833, 0.012518987990915775, -0.01351242233067751, 0.6134048104286194, -0.29520413279533386, -0.018543900921940804, 0.03322529420256615, -0.02847341075539589, -0.03251439705491066, 0.16769526898860931, 0.11847604811191559, 0.024747425690293312, 1.1725245714187622, 0.1452847570180893, 0.04235225170850754, -0.03953595831990242, -0.5646487474441528, -0.8251138925552368, 0.6375248432159424, -0.19539080560207367, -0.538403332233429, -0.4524044990539551, -0.06691991537809372]} +{"t": 6.1369, "q": [-0.3325039744377136, 0.0026895790360867977, -0.004888041876256466, 0.6158080697059631, -0.32055041193962097, -0.0035656909458339214, -0.38091811537742615, 0.012510465458035469, -0.0138606121763587, 0.6135326623916626, -0.29516223073005676, -0.01896357350051403, 0.033694010227918625, -0.028480634093284607, -0.03236229717731476, 0.16788701713085175, 0.11838017404079437, 0.024771394208073616, 1.17341148853302, 0.14527277648448944, 0.04219645634293556, -0.03953595831990242, -0.5665063261985779, -0.8284814953804016, 0.6445955038070679, -0.19334150850772858, -0.5424899458885193, -0.4438597559928894, -0.07787349820137024]} +{"t": 6.1539, "q": [-0.3324102461338043, 0.0027236673049628735, -0.005048744846135378, 0.6157057881355286, -0.32055041193962097, -0.0035656909458339214, -0.380858451128006, 0.012544553726911545, -0.014074882492423058, 0.6137542128562927, -0.2951037287712097, -0.019426681101322174, 0.033854711800813675, -0.028526073321700096, -0.03231390193104744, 0.16800685226917267, 0.11826033145189285, 0.024759409949183464, 1.1745139360427856, 0.14527277648448944, 0.042160503566265106, -0.03954794257879257, -0.5688312649726868, -0.8313816785812378, 0.6519298553466797, -0.19057315587997437, -0.5477150678634644, -0.4361898601055145, -0.0887671560049057]} +{"t": 6.1706, "q": [-0.33231648802757263, 0.0027066231705248356, -0.005075528286397457, 0.615603506565094, -0.3205544948577881, -0.003558472031727433, -0.38082435727119446, 0.012570120394229889, -0.01412845030426979, 0.6139417290687561, -0.2943674325942993, -0.02091248892247677, 0.033868104219436646, -0.028647230938076973, -0.03217829018831253, 0.16797089576721191, 0.11804462224245071, 0.024747425690293312, 1.1756165027618408, 0.14524881541728973, 0.042160503566265106, -0.03953595831990242, -0.5714557766914368, -0.8340061902999878, 0.6582096219062805, -0.18786472082138062, -0.5511305332183838, -0.4302816092967987, -0.096580870449543]} +{"t": 6.1873, "q": [-0.3322312831878662, 0.002715145703405142, -0.005155880004167557, 0.615441620349884, -0.32056283950805664, -0.0035730679519474506, -0.3807988166809082, 0.012561597861349583, -0.014168625697493553, 0.6140354871749878, -0.294379860162735, -0.020905204117298126, 0.03389488905668259, -0.02874550223350525, -0.03199813887476921, 0.16756343841552734, 0.11786485463380814, 0.024747425690293312, 1.1766951084136963, 0.14527277648448944, 0.042148519307374954, -0.03952397406101227, -0.5740563869476318, -0.8373377919197083, 0.6647650003433228, -0.18648652732372284, -0.5543063879013062, -0.4237861633300781, -0.10428673028945923]} +{"t": 6.2041, "q": [-0.33198413252830505, 0.0027066231705248356, -0.00512909609824419, 0.6151604056358337, -0.32056283950805664, -0.0035730679519474506, -0.38073062896728516, 0.012595686130225658, -0.014235584996640682, 0.6140780448913574, -0.2942723333835602, -0.021079275757074356, 0.03390828147530556, -0.028805864974856377, -0.031841982156038284, 0.16703613102436066, 0.11776898056268692, 0.024771394208073616, 1.1777976751327515, 0.14524881541728973, 0.042088598012924194, -0.039511989802122116, -0.5771962404251099, -0.8407652974128723, 0.6694148778915405, -0.18565961718559265, -0.5580334663391113, -0.4191003441810608, -0.10984741151332855]} +{"t": 6.2208, "q": [-0.3317369818687439, 0.002681057434529066, -0.005102312192320824, 0.6149814128875732, -0.32056283950805664, -0.0035730679519474506, -0.3805260956287384, 0.012714996002614498, -0.014222193509340286, 0.6140865683555603, -0.2942516505718231, -0.021115539595484734, 0.03398863226175308, -0.028805002570152283, -0.03148845210671425, 0.16628111898899078, 0.11776898056268692, 0.024783378466963768, 1.1790800094604492, 0.1453087329864502, 0.042040660977363586, -0.03952397406101227, -0.5816184282302856, -0.8454031944274902, 0.67357337474823, -0.18545588850975037, -0.5603104829788208, -0.4157807230949402, -0.11341870576143265]} +{"t": 6.2376, "q": [-0.33138757944107056, 0.0026469682343304157, -0.005062136333435774, 0.6147342920303345, -0.3205587565898895, -0.0035802870988845825, -0.3802874684333801, 0.012732040137052536, -0.014235584996640682, 0.6140950918197632, -0.2942516505718231, -0.021115539595484734, 0.03400202468037605, -0.02884216420352459, -0.031160084530711174, 0.16578976809978485, 0.11781691759824753, 0.024759409949183464, 1.1796791553497314, 0.14524881541728973, 0.04206462949514389, -0.03953595831990242, -0.5859686732292175, -0.8500770330429077, 0.6773004531860352, -0.1853959709405899, -0.5634862780570984, -0.41337189078330994, -0.1164507195353508]} +{"t": 6.2546, "q": [-0.3308165967464447, 0.002595835831016302, -0.005035352893173695, 0.6144104599952698, -0.3205587565898895, -0.0035802870988845825, -0.37986990809440613, 0.012749084271490574, -0.014235584996640682, 0.6140695214271545, -0.2942599356174469, -0.021101024001836777, 0.03389488905668259, -0.029023220762610435, -0.030681833624839783, 0.1655740588903427, 0.11796072870492935, 0.024819331243634224, 1.1799068450927734, 0.1452847570180893, 0.042028676718473434, -0.03952397406101227, -0.5913376212120056, -0.8541396856307983, 0.6814470291137695, -0.18476079404354095, -0.567692756652832, -0.41035184264183044, -0.11956661194562912]} +{"t": 6.2714, "q": [-0.3301859498023987, 0.0025873142294585705, -0.004941609688103199, 0.614180326461792, -0.3205793499946594, -0.0035732260439544916, -0.37940970063209534, 0.012885438278317451, -0.014208801090717316, 0.6140440106391907, -0.2942723333835602, -0.021079275757074356, 0.03378775343298912, -0.02921929955482483, -0.030154943466186523, 0.16538231074810028, 0.11805660277605057, 0.024807346984744072, 1.1801226139068604, 0.1452607959508896, 0.04200470820069313, -0.03952397406101227, -0.5975214838981628, -0.8580345511436462, 0.6871874332427979, -0.18431738018989563, -0.5700296759605408, -0.40563008189201355, -0.12232298403978348]} +{"t": 6.2881, "q": [-0.32956385612487793, 0.002595835831016302, -0.004955001175403595, 0.6139161586761475, -0.3205958902835846, -0.0035734022967517376, -0.3788387179374695, 0.012859872542321682, -0.01419540960341692, 0.6139672994613647, -0.294301301240921, -0.021042976528406143, 0.03378775343298912, -0.029680732637643814, -0.029549378901720047, 0.16491492092609406, 0.11806859076023102, 0.024807346984744072, 1.1801944971084595, 0.1453087329864502, 0.04201669245958328, -0.03952397406101227, -0.6032260060310364, -0.8615219593048096, 0.6923766136169434, -0.18413762748241425, -0.5724984407424927, -0.4018790125846863, -0.12344950437545776]} +{"t": 6.3048, "q": [-0.3292059302330017, 0.0025873142294585705, -0.005008568987250328, 0.6136519908905029, -0.3205876350402832, -0.0035733049735426903, -0.3784552216529846, 0.01296213734894991, -0.014302544295787811, 0.6138479709625244, -0.2943095266819, -0.02101401425898075, 0.033868104219436646, -0.030188199132680893, -0.0291211549192667, 0.1642797589302063, 0.11803263425827026, 0.024831315502524376, 1.180362343788147, 0.1453087329864502, 0.042028676718473434, -0.039500005543231964, -0.6077679991722107, -0.8653689026832581, 0.6978654265403748, -0.18423350155353546, -0.574871301651001, -0.39878708124160767, -0.12480372190475464]} +{"t": 6.3216, "q": [-0.3289417326450348, 0.0025617475621402264, -0.00508892023935914, 0.6134815216064453, -0.3205918073654175, -0.003580621210858226, -0.3781058192253113, 0.013107013888657093, -0.01444985531270504, 0.6137968301773071, -0.29430535435676575, -0.02100680023431778, 0.034028805792331696, -0.03089294023811817, -0.028657034039497375, 0.16378840804100037, 0.11805660277605057, 0.024831315502524376, 1.1805181503295898, 0.14532071352005005, 0.042040660977363586, -0.039511989802122116, -0.6116628646850586, -0.8690001368522644, 0.7024673223495483, -0.18435333669185638, -0.5774958729743958, -0.3968576192855835, -0.12588229775428772]} +{"t": 6.3383, "q": [-0.32872867584228516, 0.0025532254949212074, -0.005155880004167557, 0.6133536696434021, -0.320604145526886, -0.0035734812263399363, -0.37788423895835876, 0.013320066034793854, -0.014556990936398506, 0.6137286424636841, -0.29434266686439514, -0.02097046561539173, 0.03410915657877922, -0.03159738704562187, -0.028184298425912857, 0.16350078582763672, 0.11803263425827026, 0.024807346984744072, 1.180601954460144, 0.14527277648448944, 0.042040660977363586, -0.039511989802122116, -0.6150903701782227, -0.8724995255470276, 0.707500696182251, -0.1844971477985382, -0.5790297985076904, -0.3958509564399719, -0.12720057368278503]} +{"t": 6.3552, "q": [-0.3286179006099701, 0.0025532254949212074, -0.005182663444429636, 0.6132344007492065, -0.3206126093864441, -0.003602594370022416, -0.37785014510154724, 0.01332858856767416, -0.014556990936398506, 0.6136605143547058, -0.29434671998023987, -0.020934289321303368, 0.03409576788544655, -0.03224889561533928, -0.02778421901166439, 0.16336895525455475, 0.11809255182743073, 0.024819331243634224, 1.1807218790054321, 0.1452368199825287, 0.042028676718473434, -0.039511989802122116, -0.6178227663040161, -0.8747645616531372, 0.7115633487701416, -0.18466491997241974, -0.5799166560173035, -0.3955633342266083, -0.12802748382091522]} +{"t": 6.372, "q": [-0.32860085368156433, 0.0025873142294585705, -0.00512909609824419, 0.6131150722503662, -0.3206126093864441, -0.003602594370022416, -0.377867192029953, 0.013303021900355816, -0.014556990936398506, 0.6135838031768799, -0.2943550646305084, -0.02094871737062931, 0.03396184742450714, -0.03277156502008438, -0.02744557522237301, 0.16326110064983368, 0.11808057129383087, 0.024807346984744072, 1.180829644203186, 0.1452368199825287, 0.042040660977363586, -0.03952397406101227, -0.62126225233078, -0.8771494030952454, 0.7164769172668457, -0.18465293943881989, -0.5802043080329895, -0.39529967308044434, -0.1291060596704483]} +{"t": 6.3887, "q": [-0.3285582363605499, 0.0025873142294585705, -0.005102312192320824, 0.6129446029663086, -0.32060444355010986, -0.0036170324310660362, -0.3778586685657501, 0.013303021900355816, -0.014503423124551773, 0.6134474277496338, -0.29434671998023987, -0.020934289321303368, 0.03396184742450714, -0.0330972783267498, -0.027230847626924515, 0.1630573719739914, 0.11810453981161118, 0.024831315502524376, 1.1810214519500732, 0.14524881541728973, 0.04205264523625374, -0.039511989802122116, -0.6251930594444275, -0.8803731799125671, 0.7227925658226013, -0.18478477001190186, -0.5802761912345886, -0.3948802351951599, -0.12989701330661774]} +{"t": 6.4056, "q": [-0.3285241425037384, 0.0025532254949212074, -0.005102312192320824, 0.6128849983215332, -0.3206126093864441, -0.003602594370022416, -0.3777734637260437, 0.01338824350386858, -0.014543598517775536, 0.613362193107605, -0.294342577457428, -0.020941538736224174, 0.03398863226175308, -0.03320324420928955, -0.027144646272063255, 0.16270983219146729, 0.11811652034521103, 0.024843299761414528, 1.1810693740844727, 0.14516492187976837, 0.04207661375403404, -0.039511989802122116, -0.6292197704315186, -0.8843638896942139, 0.7292041778564453, -0.1849525421857834, -0.5803720355033875, -0.3944368064403534, -0.13068798184394836]} +{"t": 6.4223, "q": [-0.3284730017185211, 0.0025106146931648254, -0.005155880004167557, 0.6127827167510986, -0.3206126093864441, -0.003602594370022416, -0.37771379947662354, 0.013481986708939075, -0.014570382423698902, 0.6132344007492065, -0.2943756878376007, -0.020883528515696526, 0.03428325429558754, -0.033202897757291794, -0.02703702263534069, 0.16207465529441833, 0.11815247684717178, 0.024819331243634224, 1.1811652183532715, 0.1453087329864502, 0.042100582271814346, -0.03953595831990242, -0.6322157979011536, -0.8889418840408325, 0.7338540554046631, -0.18501247465610504, -0.5805757641792297, -0.3942570388317108, -0.13170664012432098]} +{"t": 6.4391, "q": [-0.32840484380722046, 0.00241687148809433, -0.005222839303314686, 0.6125952005386353, -0.3206126093864441, -0.003602594370022416, -0.3775518834590912, 0.013626862317323685, -0.014677518047392368, 0.6131406426429749, -0.29439646005630493, -0.020847270265221596, 0.034350212663412094, -0.0331873819231987, -0.02692912146449089, 0.16161926090717316, 0.11811652034521103, 0.024807346984744072, 1.181273102760315, 0.14529675245285034, 0.0421365350484848, -0.03952397406101227, -0.6357151865959167, -0.8926809430122375, 0.7388994097709656, -0.1850963532924652, -0.5806117653846741, -0.3940652906894684, -0.1336241066455841]} +{"t": 6.456, "q": [-0.32813212275505066, 0.00241687148809433, -0.005155880004167557, 0.6124759316444397, -0.3206126093864441, -0.003602594370022416, -0.37742406129837036, 0.013891047798097134, -0.014664125628769398, 0.6130980253219604, -0.29439646005630493, -0.020847270265221596, 0.03431003540754318, -0.03311838582158089, -0.0267077274620533, 0.16142751276493073, 0.11812850832939148, 0.024819331243634224, 1.1815367937088013, 0.1452847570180893, 0.04212455078959465, -0.03953595831990242, -0.6403411030769348, -0.894586443901062, 0.7446877956390381, -0.1855996996164322, -0.5805878043174744, -0.3940413296222687, -0.13605691492557526]} +{"t": 6.4728, "q": [-0.32800430059432983, 0.0024253935553133488, -0.005155880004167557, 0.6122884154319763, -0.3206126093864441, -0.003602594370022416, -0.37733882665634155, 0.013856959529221058, -0.014637341722846031, 0.6130298376083374, -0.29439231753349304, -0.020854517817497253, 0.03431003540754318, -0.03313334286212921, -0.02663951925933361, 0.16109195351600647, 0.11810453981161118, 0.02479536272585392, 1.181800365447998, 0.14534468948841095, 0.04217248782515526, -0.03954794257879257, -0.6436008214950562, -0.8952216506004333, 0.749265730381012, -0.18604311347007751, -0.5806117653846741, -0.3940652906894684, -0.13905297219753265]} +{"t": 6.4895, "q": [-0.3278423845767975, 0.0024424376897513866, -0.005276407115161419, 0.6121180057525635, -0.32060444355010986, -0.0036170324310660362, -0.3770916759967804, 0.013771738857030869, -0.014771261252462864, 0.6129275560379028, -0.29439646005630493, -0.020847270265221596, 0.034376997500658035, -0.033094827085733414, -0.02645781822502613, 0.16046877205371857, 0.11806859076023102, 0.024819331243634224, 1.1821000576019287, 0.1453566700220108, 0.042160503566265106, -0.03954794257879257, -0.6465129852294922, -0.8951736688613892, 0.7538557052612305, -0.18628279864788055, -0.5806117653846741, -0.39405331015586853, -0.14361895620822906]} +{"t": 6.5063, "q": [-0.32767194509506226, 0.0024509597569704056, -0.0053701503202319145, 0.612007200717926, -0.32060444355010986, -0.0036170324310660362, -0.37698090076446533, 0.013976269401609898, -0.014851612038910389, 0.6129275560379028, -0.2944006323814392, -0.020840022712945938, 0.034510914236307144, -0.03298768773674965, -0.026172129437327385, 0.15991750359535217, 0.11805660277605057, 0.024807346984744072, 1.1822677850723267, 0.14527277648448944, 0.04218447208404541, -0.03953595831990242, -0.6497727036476135, -0.8946703672409058, 0.7600515484809875, -0.1862947791814804, -0.5806237459182739, -0.39389750361442566, -0.14877216517925262]} +{"t": 6.523, "q": [-0.3275696635246277, 0.0024594818241894245, -0.005396933760493994, 0.6118111610412598, -0.32059627771377563, -0.0036314704921096563, -0.37696385383605957, 0.013942181132733822, -0.014824828132987022, 0.6129105687141418, -0.29444634914398193, -0.020789198577404022, 0.03479214385151863, -0.032812561839818954, -0.025978131219744682, 0.15949805080890656, 0.11809255182743073, 0.024771394208073616, 1.1825075149536133, 0.14534468948841095, 0.04219645634293556, -0.03953595831990242, -0.6526010036468506, -0.8941071033477783, 0.7669305205345154, -0.18642660975456238, -0.5805997848510742, -0.39359790086746216, -0.1540931612253189]} +{"t": 6.5398, "q": [-0.3274674117565155, 0.0024594818241894245, -0.005490677431225777, 0.6116237044334412, -0.3205921947956085, -0.0036386894062161446, -0.3769041895866394, 0.01398479100316763, -0.014945355243980885, 0.6128849983215332, -0.29445886611938477, -0.020752975717186928, 0.03515372797846794, -0.032690562307834625, -0.025789998471736908, 0.1591624915599823, 0.11806859076023102, 0.02479536272585392, 1.1826512813568115, 0.1453087329864502, 0.042220424860715866, -0.03953595831990242, -0.6540151238441467, -0.8933640718460083, 0.7731982469558716, -0.18672621250152588, -0.5805637836456299, -0.3934301435947418, -0.1594620943069458]} +{"t": 6.5566, "q": [-0.3274162709712982, 0.0024935705587267876, -0.005637987982481718, 0.6115469932556152, -0.3205922842025757, -0.0036532243248075247, -0.37682750821113586, 0.013993313536047935, -0.015025706961750984, 0.6128935217857361, -0.29447129368782043, -0.020789090543985367, 0.03530103713274002, -0.03256811946630478, -0.025454731658101082, 0.15900669991970062, 0.11811652034521103, 0.024843299761414528, 1.1829508543014526, 0.14521285891532898, 0.042208440601825714, -0.03953595831990242, -0.6544824838638306, -0.892932653427124, 0.778998613357544, -0.1865704208612442, -0.580467939376831, -0.39283090829849243, -0.1651546061038971]} +{"t": 6.5734, "q": [-0.3273907005786896, 0.0025361808948218822, -0.005731731187552214, 0.6114532351493835, -0.32058802247047424, -0.003631391329690814, -0.376818984746933, 0.01401888020336628, -0.01511945016682148, 0.612902045249939, -0.2944754660129547, -0.02078184299170971, 0.03527425229549408, -0.03230065107345581, -0.024837804958224297, 0.15900669991970062, 0.11805660277605057, 0.024831315502524376, 1.1830947399139404, 0.14524881541728973, 0.042208440601825714, -0.03952397406101227, -0.6545783877372742, -0.8926689624786377, 0.7858056426048279, -0.18634271621704102, -0.5804319977760315, -0.3916324973106384, -0.1717459261417389]} +{"t": 6.5901, "q": [-0.3273821771144867, 0.0025447034277021885, -0.00579869095236063, 0.6114106774330139, -0.3205921947956085, -0.0036386894062161446, -0.376818984746933, 0.014001836068928242, -0.01519980188459158, 0.6129275560379028, -0.2944754362106323, -0.02079630456864834, 0.035394780337810516, -0.03197202831506729, -0.024054566398262978, 0.15874305367469788, 0.11800866574048996, 0.024819331243634224, 1.1832265853881836, 0.1452847570180893, 0.04219645634293556, -0.03954794257879257, -0.6544225811958313, -0.8918300867080688, 0.7916539311408997, -0.1862947791814804, -0.5804799199104309, -0.389870822429657, -0.1785050332546234]} +{"t": 6.6069, "q": [-0.3273907005786896, 0.0025447034277021885, -0.005785298999398947, 0.6113680601119995, -0.3205840289592743, -0.003653145395219326, -0.376818984746933, 0.01401888020336628, -0.015213193371891975, 0.6129105687141418, -0.2944837510585785, -0.020796269178390503, 0.035367995500564575, -0.03147618845105171, -0.02317020483314991, 0.15857526659965515, 0.11809255182743073, 0.024807346984744072, 1.1834062337875366, 0.1453087329864502, 0.04217248782515526, -0.039511989802122116, -0.6547102332115173, -0.8910391330718994, 0.7975382208824158, -0.18655844032764435, -0.5805038809776306, -0.38683879375457764, -0.1862947791814804]} +{"t": 6.6236, "q": [-0.32734808325767517, 0.0025276588276028633, -0.005731731187552214, 0.6112572550773621, -0.3205799460411072, -0.0036603643093258142, -0.37682750821113586, 0.014035924337804317, -0.015159625560045242, 0.6128509044647217, -0.2944795787334442, -0.02080351673066616, 0.03528764471411705, -0.030783098191022873, -0.022293223068118095, 0.15846741199493408, 0.11810453981161118, 0.024819331243634224, 1.1835501194000244, 0.1452607959508896, 0.042148519307374954, -0.039500005543231964, -0.6555371284484863, -0.8902002573013306, 0.8041295409202576, -0.18698987364768982, -0.5804559588432312, -0.3825964033603668, -0.19516310095787048]} +{"t": 6.6405, "q": [-0.3273225426673889, 0.0024765264242887497, -0.005637987982481718, 0.6112146377563477, -0.3205921947956085, -0.0036386894062161446, -0.3768104612827301, 0.014087056741118431, -0.015132841654121876, 0.6128423810005188, -0.2944754660129547, -0.02076738327741623, 0.03527425229549408, -0.030151521787047386, -0.021662315353751183, 0.15811987221240997, 0.11800866574048996, 0.024819331243634224, 1.1837059259414673, 0.14529675245285034, 0.042160503566265106, -0.03952397406101227, -0.6560884118080139, -0.8898407220840454, 0.8093187212944031, -0.18733741343021393, -0.5803840160369873, -0.3798519968986511, -0.2022697478532791]} +{"t": 6.6572, "q": [-0.3272884488105774, 0.002340172417461872, -0.0056112040765583515, 0.6111720204353333, -0.3205840289592743, -0.003653145395219326, -0.3767593204975128, 0.01426602154970169, -0.015159625560045242, 0.6128168106079102, -0.2945003807544708, -0.020752815529704094, 0.03524747118353844, -0.029664305970072746, -0.021107103675603867, 0.15758058428764343, 0.11784088611602783, 0.02479536272585392, 1.1838017702102661, 0.14527277648448944, 0.042160503566265106, -0.03952397406101227, -0.6562561988830566, -0.8898407220840454, 0.8136809468269348, -0.18752916157245636, -0.5802282691001892, -0.3774431645870209, -0.21019132435321808]} +{"t": 6.674, "q": [-0.3272032141685486, 0.0022549512796103954, -0.005571028683334589, 0.6111549735069275, -0.3205840289592743, -0.003653145395219326, -0.37665706872940063, 0.014547251164913177, -0.015146234072744846, 0.6128082871437073, -0.2945087254047394, -0.020709380507469177, 0.035234078764915466, -0.029374374076724052, -0.020555870607495308, 0.15698136389255524, 0.11780493706464767, 0.024783378466963768, 1.183969497680664, 0.1452847570180893, 0.042160503566265106, -0.03952397406101227, -0.6569033265113831, -0.8902361989021301, 0.8177555799484253, -0.18752916157245636, -0.5800604820251465, -0.3753699064254761, -0.21893981099128723]} +{"t": 6.6907, "q": [-0.32722026109695435, 0.0021867742761969566, -0.005530852824449539, 0.6111038327217102, -0.3205921947956085, -0.0036386894062161446, -0.37659740447998047, 0.014462029561400414, -0.015146234072744846, 0.6127230525016785, -0.29451704025268555, -0.020709345117211342, 0.035126943141222, -0.02943379431962967, -0.020147129893302917, 0.1564660519361496, 0.11790081113576889, 0.024771394208073616, 1.1840415000915527, 0.1452368199825287, 0.042160503566265106, -0.03953595831990242, -0.657131016254425, -0.8902601599693298, 0.821063220500946, -0.1875411421060562, -0.5798926949501038, -0.3735123574733734, -0.22762838006019592]} +{"t": 6.7075, "q": [-0.3271350562572479, 0.0021782522089779377, -0.005517460871487856, 0.6110526919364929, -0.3205921947956085, -0.0036386894062161446, -0.3764951229095459, 0.014513162896037102, -0.015132841654121876, 0.6126804351806641, -0.2945087254047394, -0.020723842084407806, 0.035033199936151505, -0.029592003673315048, -0.01979333907365799, 0.1560945361852646, 0.1179247796535492, 0.024783378466963768, 1.1842092275619507, 0.1452607959508896, 0.04219645634293556, -0.03954794257879257, -0.6578500866889954, -0.8899725079536438, 0.8243588805198669, -0.1874692291021347, -0.5796650052070618, -0.37178662419319153, -0.2365206629037857]} +{"t": 6.7242, "q": [-0.3270924389362335, 0.0021612080745399, -0.005517460871487856, 0.611027181148529, -0.3205921947956085, -0.0036386894062161446, -0.3764013946056366, 0.01453020703047514, -0.01511945016682148, 0.612612247467041, -0.2945004105567932, -0.02070939913392067, 0.03497963026165962, -0.02978830598294735, -0.01949375681579113, 0.15547135472297668, 0.11803263425827026, 0.02479536272585392, 1.184401035308838, 0.1453326940536499, 0.042208440601825714, -0.03952397406101227, -0.6586410403251648, -0.8898047804832458, 0.8270313739776611, -0.18745724856853485, -0.5794253349304199, -0.370144784450531, -0.2450055032968521]} +{"t": 6.7409, "q": [-0.3270924389362335, 0.0021271193400025368, -0.005557636730372906, 0.6110016107559204, -0.3205921947956085, -0.0036386894062161446, -0.37627357244491577, 0.01458986196666956, -0.015226585790514946, 0.6125441193580627, -0.2945045828819275, -0.020702151581645012, 0.03507337346673012, -0.029893815517425537, -0.019280798733234406, 0.15470436215400696, 0.11802065372467041, 0.02479536272585392, 1.1846166849136353, 0.1453087329864502, 0.04223240911960602, -0.03953595831990242, -0.6595518589019775, -0.8897687792778015, 0.8289488554000854, -0.18745724856853485, -0.5792575478553772, -0.36888644099235535, -0.25283119082450867]} +{"t": 6.7576, "q": [-0.32708391547203064, 0.0020674648694694042, -0.005584420636296272, 0.6110016107559204, -0.3205921947956085, -0.0036386894062161446, -0.3761201500892639, 0.014675082638859749, -0.015347111970186234, 0.6123736500740051, -0.29450875520706177, -0.020665982738137245, 0.035126943141222, -0.030037516728043556, -0.01917121186852455, 0.1541171371936798, 0.11803263425827026, 0.02479536272585392, 1.1848803758621216, 0.14534468948841095, 0.042268361896276474, -0.03952397406101227, -0.6605225801467896, -0.8897088766098022, 0.8305187821388245, -0.18743328750133514, -0.5790538191795349, -0.36760413646698, -0.2618313431739807]} +{"t": 6.7744, "q": [-0.3270157277584076, 0.0019992878660559654, -0.0056112040765583515, 0.6109675168991089, -0.3205921947956085, -0.0036386894062161446, -0.3759497106075287, 0.01477734837681055, -0.0153738958761096, 0.6121861338615417, -0.2945046126842499, -0.020658770576119423, 0.03516711667180061, -0.03008291684091091, -0.019142761826515198, 0.15357784926891327, 0.11809255182743073, 0.02479536272585392, 1.1854076385498047, 0.14529675245285034, 0.04225637763738632, -0.03952397406101227, -0.6618048548698425, -0.8896369934082031, 0.8322804570198059, -0.18762503564357758, -0.578981876373291, -0.36581847071647644, -0.2700525224208832]} +{"t": 6.7911, "q": [-0.3267856240272522, 0.0019140667282044888, -0.005571028683334589, 0.6109163761138916, -0.32058385014533997, -0.0036240932531654835, -0.37568554282188416, 0.014828480780124664, -0.01538728829473257, 0.612083911895752, -0.2944921553134918, -0.020651591941714287, 0.03515372797846794, -0.03009798377752304, -0.019113784655928612, 0.15281085669994354, 0.11806859076023102, 0.024783378466963768, 1.1868937015533447, 0.14524881541728973, 0.04225637763738632, -0.03953595831990242, -0.6638182401657104, -0.8895171284675598, 0.8350608348846436, -0.18780478835105896, -0.5790538191795349, -0.36261868476867676, -0.27852538228034973]} +{"t": 6.8079, "q": [-0.32665780186653137, 0.0017691906541585922, -0.005584420636296272, 0.6108737587928772, -0.32059627771377563, -0.0036314704921096563, -0.37549805641174316, 0.01480291411280632, -0.01538728829473257, 0.6119986772537231, -0.2945503890514374, -0.020550085231661797, 0.03511355072259903, -0.030090417712926865, -0.019118526950478554, 0.15182815492153168, 0.11806859076023102, 0.02479536272585392, 1.1886913776397705, 0.1452847570180893, 0.042280346155166626, -0.03952397406101227, -0.6671139001846313, -0.8894452452659607, 0.8392313122749329, -0.18788868188858032, -0.5790657997131348, -0.3600061237812042, -0.2866267263889313]} +{"t": 6.8246, "q": [-0.3265896141529083, 0.0016243145801126957, -0.005557636730372906, 0.610890805721283, -0.3205920159816742, -0.003609655424952507, -0.3753872513771057, 0.014794392511248589, -0.015400679782032967, 0.6119475364685059, -0.2945712208747864, -0.020484905689954758, 0.035126943141222, -0.03015108034014702, -0.01911957934498787, 0.15089337527751923, 0.11809255182743073, 0.02479536272585392, 1.1897938251495361, 0.14532071352005005, 0.04225637763738632, -0.03953595831990242, -0.6705413460731506, -0.889277458190918, 0.8436894416809082, -0.18792463839054108, -0.5790897607803345, -0.3586399257183075, -0.29387718439102173]} +{"t": 6.8413, "q": [-0.32657259702682495, 0.0014709164388477802, -0.0055978125892579556, 0.6108737587928772, -0.32059627771377563, -0.0036314704921096563, -0.37522533535957336, 0.014819959178566933, -0.015414072200655937, 0.6118452548980713, -0.29455044865608215, -0.020477764308452606, 0.035193901509046555, -0.030249545350670815, -0.019087178632616997, 0.15004250407218933, 0.11811652034521103, 0.024783378466963768, 1.1908605098724365, 0.14534468948841095, 0.042268361896276474, -0.03953595831990242, -0.6729861497879028, -0.8889299035072327, 0.8475603461265564, -0.18790066242218018, -0.5791856050491333, -0.357597291469574, -0.3020983636379242]} +{"t": 6.858, "q": [-0.3265044093132019, 0.001283430028706789, -0.0056112040765583515, 0.6108652353286743, -0.3205920159816742, -0.003609655424952507, -0.3750804662704468, 0.014794392511248589, -0.015481031499803066, 0.6117856502532959, -0.2945588231086731, -0.0203909482806921, 0.035207293927669525, -0.030416175723075867, -0.019031595438718796, 0.14946725964546204, 0.11812850832939148, 0.024819331243634224, 1.1919989585876465, 0.14534468948841095, 0.042268361896276474, -0.03953595831990242, -0.6751672625541687, -0.8881868720054626, 0.8509279489517212, -0.18785272538661957, -0.5792934894561768, -0.3566145896911621, -0.30957651138305664]} +{"t": 6.8749, "q": [-0.32638511061668396, 0.001070377416908741, -0.0055442447774112225, 0.6108481884002686, -0.32060423493385315, -0.003587998216971755, -0.37495264410972595, 0.014760304242372513, -0.015427463687956333, 0.6117856502532959, -0.2945713996887207, -0.020267946645617485, 0.03516711667180061, -0.030651234090328217, -0.01903080753982067, 0.14928749203681946, 0.11812850832939148, 0.024819331243634224, 1.1929577589035034, 0.14534468948841095, 0.04225637763738632, -0.03954794257879257, -0.6776120662689209, -0.8874078989028931, 0.8543673753738403, -0.18773289024829865, -0.579353392124176, -0.3555120527744293, -0.315832257270813]} +{"t": 6.8916, "q": [-0.3262743055820465, 0.0008743684738874435, -0.005530852824449539, 0.6108737587928772, -0.32059189677238464, -0.0035951382014900446, -0.3747481107711792, 0.014734737575054169, -0.015400679782032967, 0.6117515563964844, -0.2945340573787689, -0.020217476412653923, 0.03514033555984497, -0.030878497287631035, -0.01896653138101101, 0.14898788928985596, 0.11812850832939148, 0.024831315502524376, 1.193820595741272, 0.1452847570180893, 0.04224439337849617, -0.03952397406101227, -0.6795175671577454, -0.8871203064918518, 0.8580585718154907, -0.1876969337463379, -0.5794612765312195, -0.3544454574584961, -0.3226393163204193]} +{"t": 6.9084, "q": [-0.3261464834213257, 0.0006272271275520325, -0.005530852824449539, 0.6108396649360657, -0.32059189677238464, -0.0035951382014900446, -0.3745180070400238, 0.014683605171740055, -0.015400679782032967, 0.6116492748260498, -0.29452162981033325, -0.020152421668171883, 0.035126943141222, -0.031211890280246735, -0.01889435388147831, 0.14886803925037384, 0.11815247684717178, 0.024819331243634224, 1.1944317817687988, 0.14532071352005005, 0.042208440601825714, -0.03953595831990242, -0.6813271641731262, -0.8871203064918518, 0.8616538047790527, -0.1877209097146988, -0.5794612765312195, -0.35373836755752563, -0.3281160891056061]} +{"t": 6.9251, "q": [-0.3260612487792969, 0.00046530691906809807, -0.005530852824449539, 0.6108567118644714, -0.32059168815612793, -0.003566086059436202, -0.3743305206298828, 0.014615427702665329, -0.015400679782032967, 0.6115810871124268, -0.2945092022418976, -0.020116306841373444, 0.03515372797846794, -0.0316518098115921, -0.01893124170601368, 0.14880812168121338, 0.11805660277605057, 0.02485528402030468, 1.1951388120651245, 0.14529675245285034, 0.04219645634293556, -0.03954794257879257, -0.6820821762084961, -0.8870244026184082, 0.8641465306282043, -0.1877209097146988, -0.579497218132019, -0.35353463888168335, -0.33138778805732727]} +{"t": 6.9418, "q": [-0.3259163796901703, 0.0003374754451215267, -0.005530852824449539, 0.6108567118644714, -0.3205876350402832, -0.0035733049735426903, -0.3741004168987274, 0.014547251164913177, -0.01538728829473257, 0.6115128993988037, -0.29453834891319275, -0.02003663219511509, 0.035126943141222, -0.03235701844096184, -0.018938623368740082, 0.14877216517925262, 0.11812850832939148, 0.02485528402030468, 1.1959776878356934, 0.14532071352005005, 0.04217248782515526, -0.039511989802122116, -0.6821780800819397, -0.8867607712745667, 0.8661598563194275, -0.1877928078174591, -0.5794732570648193, -0.35355859994888306, -0.3339763879776001]} +{"t": 6.9586, "q": [-0.3257203698158264, 0.00030338671058416367, -0.005490677431225777, 0.6108481884002686, -0.3206082284450531, -0.003566262312233448, -0.37394702434539795, 0.014538728632032871, -0.015293545089662075, 0.6114617586135864, -0.29450517892837524, -0.01997891440987587, 0.03500641509890556, -0.03306954726576805, -0.018863454461097717, 0.14876018464565277, 0.11803263425827026, 0.024831315502524376, 1.1968646049499512, 0.14534468948841095, 0.042148519307374954, -0.03953595831990242, -0.6818065643310547, -0.8862214684486389, 0.8679695129394531, -0.18755312263965607, -0.5793773531913757, -0.35355859994888306, -0.33650505542755127]} +{"t": 6.9753, "q": [-0.3255925476551056, 0.00030338671058416367, -0.005303190555423498, 0.6108652353286743, -0.3205958902835846, -0.0035734022967517376, -0.37390440702438354, 0.014538728632032871, -0.015132841654121876, 0.6114106774330139, -0.2944512367248535, -0.01988513395190239, 0.034497521817684174, -0.033759355545043945, -0.01882302202284336, 0.14884407818317413, 0.11805660277605057, 0.024819331243634224, 1.1978832483291626, 0.1453087329864502, 0.0421365350484848, -0.03954794257879257, -0.6815308928489685, -0.8851908445358276, 0.8689881563186646, -0.18731343746185303, -0.5791975855827332, -0.35355859994888306, -0.33878207206726074]} +{"t": 6.9921, "q": [-0.3253539204597473, 0.00029486464336514473, -0.005062136333435774, 0.6108481884002686, -0.3206082284450531, -0.003566262312233448, -0.37381067872047424, 0.014496118761599064, -0.014945355243980885, 0.6114276647567749, -0.29440560936927795, -0.01980576105415821, 0.03376096859574318, -0.03438027575612068, -0.018630357459187508, 0.14884407818317413, 0.11808057129383087, 0.02485528402030468, 1.1988179683685303, 0.14534468948841095, 0.04212455078959465, -0.03952397406101227, -0.6814590096473694, -0.8834890723228455, 0.86932373046875, -0.1871696263551712, -0.5790058374404907, -0.3535226583480835, -0.340220183134079]} +{"t": 7.0088, "q": [-0.3251323401927948, 0.00029486464336514473, -0.00483447453007102, 0.6108567118644714, -0.3206123113632202, -0.003559025237336755, -0.37375953793525696, 0.014513162896037102, -0.014757868833839893, 0.611402153968811, -0.2943143844604492, -0.019647052511572838, 0.033211901783943176, -0.03494824841618538, -0.01847078651189804, 0.14879614114761353, 0.11815247684717178, 0.02485528402030468, 1.1994891166687012, 0.14532071352005005, 0.0421365350484848, -0.03952397406101227, -0.6806800365447998, -0.8823865056037903, 0.8695993423461914, -0.18696589767932892, -0.5785384774208069, -0.35343876481056213, -0.3412867784500122]} +{"t": 7.0256, "q": [-0.3249022364616394, 0.00030338671058416367, -0.0045264605432748795, 0.6108652353286743, -0.3205958902835846, -0.0035734022967517376, -0.3737083971500397, 0.014513162896037102, -0.014490030705928802, 0.6114361882209778, -0.294235497713089, -0.019567839801311493, 0.032528914511203766, -0.03536425530910492, -0.018220508471131325, 0.14882010221481323, 0.11812850832939148, 0.024819331243634224, 1.1998846530914307, 0.14532071352005005, 0.0421365350484848, -0.03953595831990242, -0.678283154964447, -0.8820030093193054, 0.871349036693573, -0.1857195347547531, -0.578298807144165, -0.3533428907394409, -0.3420417606830597]} +{"t": 7.0424, "q": [-0.3247573673725128, 0.0003630416467785835, -0.004258622881025076, 0.6108652353286743, -0.3205958902835846, -0.0035734022967517376, -0.3737083971500397, 0.014513162896037102, -0.014275760389864445, 0.6114532351493835, -0.2941732704639435, -0.019474076107144356, 0.0317789688706398, -0.03568166494369507, -0.01796366088092327, 0.14884407818317413, 0.11809255182743073, 0.024819331243634224, 1.2004718780517578, 0.14529675245285034, 0.0421365350484848, -0.03952397406101227, -0.6753470301628113, -0.8820509910583496, 0.8738417625427246, -0.18390992283821106, -0.5775437951087952, -0.3528755009174347, -0.3437555134296417]} +{"t": 7.0591, "q": [-0.32461249828338623, 0.00043974071741104126, -0.003977392800152302, 0.6108652353286743, -0.32058364152908325, -0.003595059271901846, -0.3737339675426483, 0.014521684497594833, -0.014074882492423058, 0.6114361882209778, -0.29411518573760986, -0.01943092606961727, 0.030868319794535637, -0.035726554691791534, -0.01780855655670166, 0.14882010221481323, 0.11815247684717178, 0.024831315502524376, 1.2011789083480835, 0.1453087329864502, 0.042148519307374954, -0.03952397406101227, -0.672147274017334, -0.8822667002677917, 0.8755914568901062, -0.1832507848739624, -0.5769805312156677, -0.35249200463294983, -0.346535861492157]} +{"t": 7.0759, "q": [-0.32445910573005676, 0.0005590501241385937, -0.0038702578749507666, 0.610890805721283, -0.32057130336761475, -0.0036021810956299305, -0.3737339675426483, 0.014581339433789253, -0.013967746868729591, 0.6114617586135864, -0.2940694987773895, -0.019409431144595146, 0.03025229275226593, -0.035733748227357864, -0.01770632155239582, 0.14879614114761353, 0.11815247684717178, 0.024807346984744072, 1.2014305591583252, 0.14529675245285034, 0.042148519307374954, -0.03954794257879257, -0.6690073609352112, -0.8827340602874756, 0.8769816160202026, -0.18335863947868347, -0.5767528414726257, -0.35233622789382935, -0.3488008677959442]} +{"t": 7.0927, "q": [-0.3243483006954193, 0.0006698379293084145, -0.003816690295934677, 0.6108737587928772, -0.32057130336761475, -0.0036021810956299305, -0.3737424910068512, 0.014572817832231522, -0.013900787569582462, 0.6114873290061951, -0.29406946897506714, -0.019423890858888626, 0.02959609031677246, -0.03574894741177559, -0.017716379836201668, 0.14879614114761353, 0.11815247684717178, 0.02479536272585392, 1.2016702890396118, 0.14539262652397156, 0.04217248782515526, -0.03954794257879257, -0.6670060157775879, -0.8829497694969177, 0.8794503808021545, -0.1834545135498047, -0.5766569375991821, -0.35243210196495056, -0.35058653354644775]} +{"t": 7.1094, "q": [-0.32413527369499207, 0.0008488022722303867, -0.003816690295934677, 0.6108567118644714, -0.32057130336761475, -0.0036021810956299305, -0.37366577982902527, 0.014606906101107597, -0.013833828270435333, 0.6115214228630066, -0.29406946897506714, -0.019423890858888626, 0.029154157266020775, -0.03573378548026085, -0.017716072499752045, 0.1486043930053711, 0.11828429996967316, 0.02479536272585392, 1.2018260955810547, 0.1453566700220108, 0.04217248782515526, -0.03954794257879257, -0.6661311984062195, -0.8829138278961182, 0.8826022148132324, -0.18373015522956848, -0.5765730738639832, -0.35249200463294983, -0.3520725667476654]} +{"t": 7.1261, "q": [-0.32400742173194885, 0.0010448107495903969, -0.00388364982791245, 0.610814094543457, -0.3205755650997162, -0.003624032251536846, -0.3736061453819275, 0.014581339433789253, -0.013900787569582462, 0.6115214228630066, -0.29407361149787903, -0.019445564597845078, 0.02938181906938553, -0.035741422325372696, -0.01773085445165634, 0.14795725047588348, 0.11820041388273239, 0.024807346984744072, 1.2019098997116089, 0.14532071352005005, 0.042160503566265106, -0.03953595831990242, -0.6646331548690796, -0.8828659057617188, 0.8849631547927856, -0.1838979423046112, -0.5764651894569397, -0.35250401496887207, -0.3534747362136841]} +{"t": 7.1429, "q": [-0.32405856251716614, 0.0012322976253926754, -0.004084527958184481, 0.6108226180076599, -0.32054680585861206, -0.003645513206720352, -0.3735464811325073, 0.014606906101107597, -0.014061490073800087, 0.6115043759346008, -0.29406946897506714, -0.019452812150120735, 0.029944278299808502, -0.035786982625722885, -0.01775127649307251, 0.14737001061439514, 0.11815247684717178, 0.024819331243634224, 1.2019578218460083, 0.14536865055561066, 0.04218447208404541, -0.039559926837682724, -0.6628475189208984, -0.8823984861373901, 0.8863053321838379, -0.18395785987377167, -0.5763453841209412, -0.3525159955024719, -0.3551165759563446]} +{"t": 7.1599, "q": [-0.3240756094455719, 0.0013601290993392467, -0.004231838975101709, 0.6108481884002686, -0.3205345571041107, -0.003667188109830022, -0.37353795766830444, 0.014581339433789253, -0.01419540960341692, 0.6114873290061951, -0.29404863715171814, -0.019517989829182625, 0.030506737530231476, -0.03580981865525246, -0.017776114866137505, 0.14725017547607422, 0.11816445738077164, 0.024819331243634224, 1.2019938230514526, 0.14534468948841095, 0.04219645634293556, -0.039559926837682724, -0.6614573001861572, -0.8814038038253784, 0.8870843648910522, -0.18405373394489288, -0.5760217905044556, -0.35256391763687134, -0.35683029890060425]} +{"t": 7.1766, "q": [-0.32409265637397766, 0.0014453502371907234, -0.0043523660860955715, 0.6108226180076599, -0.32053884863853455, -0.003689021337777376, -0.3735209107398987, 0.014555772766470909, -0.014262368902564049, 0.6114873290061951, -0.29404446482658386, -0.01952523924410343, 0.0310691986232996, -0.03581734374165535, -0.01776164025068283, 0.14729811251163483, 0.11810453981161118, 0.02479536272585392, 1.2020657062530518, 0.1454046070575714, 0.04219645634293556, -0.03953595831990242, -0.6604027152061462, -0.8802652955055237, 0.8876116275787354, -0.1831788867712021, -0.5758779644966125, -0.35249200463294983, -0.35807666182518005]} +{"t": 7.1934, "q": [-0.32423752546310425, 0.0014709164388477802, -0.0045800283551216125, 0.6108311414718628, -0.3205018937587738, -0.0037249403540045023, -0.37353795766830444, 0.014444985426962376, -0.014409679919481277, 0.611495852470398, -0.29404863715171814, -0.019546929746866226, 0.03188610449433327, -0.035900458693504333, -0.01769019104540348, 0.14733406901359558, 0.11818842589855194, 0.024807346984744072, 1.2020777463912964, 0.14536865055561066, 0.04218447208404541, -0.03952397406101227, -0.6592402458190918, -0.8799177408218384, 0.8886662721633911, -0.18039853870868683, -0.5758540034294128, -0.3524440824985504, -0.3586159646511078]} +{"t": 7.2102, "q": [-0.3243568241596222, 0.0014453502371907234, -0.004767514765262604, 0.6108226180076599, -0.3204936385154724, -0.003724879352375865, -0.3735464811325073, 0.01453020703047514, -0.014610557816922665, 0.6114361882209778, -0.29405277967453003, -0.01953968219459057, 0.03262265771627426, -0.03599820286035538, -0.017502371221780777, 0.14739398658275604, 0.11812850832939148, 0.02485528402030468, 1.2020777463912964, 0.1452607959508896, 0.042160503566265106, -0.039500005543231964, -0.6584373116493225, -0.8796181678771973, 0.8905118107795715, -0.17705494165420532, -0.57569819688797, -0.3523961305618286, -0.3590713441371918]} +{"t": 7.227, "q": [-0.3244761526584625, 0.0014197840355336666, -0.004901433829218149, 0.6107970476150513, -0.3204854726791382, -0.003739317413419485, -0.37358057498931885, 0.01458986196666956, -0.01470430102199316, 0.6113680601119995, -0.29404863715171814, -0.019546929746866226, 0.033037807792425156, -0.03610321506857872, -0.017241600900888443, 0.14764565229415894, 0.11810453981161118, 0.024831315502524376, 1.2020896673202515, 0.14524881541728973, 0.042160503566265106, -0.03952397406101227, -0.6581856608390808, -0.8789230585098267, 0.8918420672416687, -0.1721893548965454, -0.5754225850105286, -0.35228827595710754, -0.3598862886428833]} +{"t": 7.2438, "q": [-0.32451024651527405, 0.0013942178338766098, -0.004847866017371416, 0.610745906829834, -0.32048138976097107, -0.0037465363275259733, -0.37358057498931885, 0.014581339433789253, -0.014731084927916527, 0.6112572550773621, -0.2940319776535034, -0.01957593858242035, 0.03310476616024971, -0.03625384718179703, -0.017010832205414772, 0.1479812115430832, 0.11820041388273239, 0.024831315502524376, 1.2021375894546509, 0.14529675245285034, 0.042148519307374954, -0.03952397406101227, -0.6582455635070801, -0.8782879114151001, 0.8921297192573547, -0.16668859124183655, -0.5744638442993164, -0.35213249921798706, -0.36084502935409546]} +{"t": 7.2606, "q": [-0.32446762919425964, 0.0013771732337772846, -0.004767514765262604, 0.6105925440788269, -0.3204895555973053, -0.003732098266482353, -0.37358057498931885, 0.014649515971541405, -0.014690909534692764, 0.6111634969711304, -0.2940070331096649, -0.019619427621364594, 0.03281014412641525, -0.036351438611745834, -0.0167838167399168, 0.14819693565368652, 0.11815247684717178, 0.024807346984744072, 1.202197551727295, 0.1453087329864502, 0.042148519307374954, -0.03952397406101227, -0.6582815051078796, -0.8783717751502991, 0.8920338153839111, -0.16371649503707886, -0.573157548904419, -0.3521804213523865, -0.3618277311325073]} +{"t": 7.2774, "q": [-0.32438239455223083, 0.0013686511665582657, -0.004646987654268742, 0.6103368401527405, -0.32048937678337097, -0.0037030463572591543, -0.37358909845352173, 0.014683605171740055, -0.014570382423698902, 0.6110357046127319, -0.294002890586853, -0.01961221545934677, 0.03211376443505287, -0.03632831946015358, -0.016690731048583984, 0.1483527272939682, 0.11812850832939148, 0.024819331243634224, 1.202257513999939, 0.14529675245285034, 0.042148519307374954, -0.03952397406101227, -0.6583054661750793, -0.878587543964386, 0.8924652338027954, -0.1636565774679184, -0.571731448173523, -0.3523961305618286, -0.36252281069755554]} +{"t": 7.2942, "q": [-0.3240329921245575, 0.0013430849649012089, -0.004365758039057255, 0.6099789142608643, -0.3204977214336395, -0.0037176422774791718, -0.37348681688308716, 0.014794392511248589, -0.014409679919481277, 0.6110016107559204, -0.29397377371788025, -0.019648490473628044, 0.03139060363173485, -0.03642675280570984, -0.01666843332350254, 0.14852049946784973, 0.11816445738077164, 0.024819331243634224, 1.2024133205413818, 0.14524881541728973, 0.042160503566265106, -0.03952397406101227, -0.6583774089813232, -0.8785395622253418, 0.8939512968063354, -0.1639322191476822, -0.5706528425216675, -0.3528994917869568, -0.3627265393733978]} +{"t": 7.3109, "q": [-0.3237517774105072, 0.0013430849649012089, -0.004298798739910126, 0.6098937392234802, -0.3204977214336395, -0.0037176422774791718, -0.37321412563323975, 0.01486256904900074, -0.01444985531270504, 0.6110357046127319, -0.2939613163471222, -0.019655773416161537, 0.03122990019619465, -0.03654778376221657, -0.016612503677606583, 0.14817295968532562, 0.11815247684717178, 0.024831315502524376, 1.2025930881500244, 0.14529675245285034, 0.04219645634293556, -0.03952397406101227, -0.6584732532501221, -0.8782998919487, 0.8946344256401062, -0.16433967649936676, -0.5692267417907715, -0.35313916206359863, -0.3628343939781189]} +{"t": 7.3277, "q": [-0.32355576753616333, 0.00133456289768219, -0.004312190227210522, 0.6098425984382629, -0.32048937678337097, -0.0037030463572591543, -0.3729584515094757, 0.014998923055827618, -0.01444985531270504, 0.6110357046127319, -0.29396960139274597, -0.019655738025903702, 0.031189724802970886, -0.03663105517625809, -0.016589894890785217, 0.14703446626663208, 0.11818842589855194, 0.024819331243634224, 1.2025930881500244, 0.14527277648448944, 0.042208440601825714, -0.039511989802122116, -0.6585931181907654, -0.8778085708618164, 0.8950299024581909, -0.1645314246416092, -0.5683279037475586, -0.35321107506752014, -0.36294224858283997]} +{"t": 7.3444, "q": [-0.3232915699481964, 0.001283430028706789, -0.004325582180172205, 0.6098425984382629, -0.32050180435180664, -0.0037104233633726835, -0.3726516664028168, 0.015007445588707924, -0.014503423124551773, 0.6110016107559204, -0.2939654588699341, -0.01966298557817936, 0.03136381879448891, -0.036714330315589905, -0.016567286103963852, 0.14582405984401703, 0.11816445738077164, 0.024723457172513008, 1.2026289701461792, 0.14532071352005005, 0.04225637763738632, -0.03953595831990242, -0.6587488651275635, -0.8772333264350891, 0.8950658440589905, -0.16386030614376068, -0.5680882334709167, -0.35321107506752014, -0.36299020051956177]} +{"t": 7.3612, "q": [-0.3230699896812439, 0.0012067309580743313, -0.004338974133133888, 0.6097914576530457, -0.3204977214336395, -0.0037176422774791718, -0.37238746881484985, 0.014990401454269886, -0.014516814611852169, 0.6110016107559204, -0.29397377371788025, -0.019648490473628044, 0.031484346836805344, -0.03672165051102638, -0.0165040772408247, 0.14514094591140747, 0.11815247684717178, 0.024711472913622856, 1.202712893486023, 0.1453326940536499, 0.042340267449617386, -0.03954794257879257, -0.6588208079338074, -0.8770175576210022, 0.8950658440589905, -0.16371649503707886, -0.5679324269294739, -0.3532470166683197, -0.3631579875946045]} +{"t": 7.3779, "q": [-0.3228398859500885, 0.0011470764875411987, -0.004325582180172205, 0.6097403168678284, -0.3204934597015381, -0.0036958272103220224, -0.37219998240470886, 0.01492222398519516, -0.014503423124551773, 0.6110101342201233, -0.2939820885658264, -0.01963399350643158, 0.03160487487912178, -0.03672916814684868, -0.01648961566388607, 0.1449611932039261, 0.11820041388273239, 0.024699488654732704, 1.2029045820236206, 0.1453806310892105, 0.042388204485177994, -0.03953595831990242, -0.6589046716690063, -0.8764663338661194, 0.8950658440589905, -0.16383634507656097, -0.5679683685302734, -0.35328298807144165, -0.3633856773376465]} +{"t": 7.3948, "q": [-0.3226183354854584, 0.0011470764875411987, -0.004298798739910126, 0.6097403168678284, -0.3204977214336395, -0.0037176422774791718, -0.37196987867355347, 0.014905179850757122, -0.014476639218628407, 0.6110016107559204, -0.2939862608909607, -0.019612286239862442, 0.03161826729774475, -0.036713968962430954, -0.016479546204209328, 0.1450091302394867, 0.11815247684717178, 0.024723457172513008, 1.203228235244751, 0.14536865055561066, 0.0424121730029583, -0.03954794257879257, -0.6590245366096497, -0.875459611415863, 0.8949819207191467, -0.16387230157852173, -0.568004310131073, -0.3533189296722412, -0.3641047179698944]} +{"t": 7.4115, "q": [-0.32230299711227417, 0.0011470764875411987, -0.004325582180172205, 0.6097317934036255, -0.32048937678337097, -0.0037030463572591543, -0.37166309356689453, 0.014854047447443008, -0.014476639218628407, 0.6109675168991089, -0.29399043321609497, -0.019590558484196663, 0.031645048409700394, -0.03670645132660866, -0.016494007781147957, 0.1452607959508896, 0.11810453981161118, 0.024711472913622856, 1.2035877704620361, 0.14534468948841095, 0.0424121730029583, -0.03954794257879257, -0.6590365171432495, -0.8741773366928101, 0.8950058817863464, -0.16417190432548523, -0.5681002140045166, -0.353450745344162, -0.36551886796951294]} +{"t": 7.4283, "q": [-0.3217831552028656, 0.0011555985547602177, -0.004338974133133888, 0.6097062230110168, -0.32050180435180664, -0.0037104233633726835, -0.3713136911392212, 0.014871091581881046, -0.014476639218628407, 0.610890805721283, -0.29399874806404114, -0.019576063379645348, 0.03160487487912178, -0.03675192594528198, -0.01649497076869011, 0.14541658759117126, 0.11816445738077164, 0.024783378466963768, 1.2041510343551636, 0.14536865055561066, 0.0424121730029583, -0.03954794257879257, -0.6590245366096497, -0.8721519708633423, 0.8950299024581909, -0.1643516719341278, -0.5681601166725159, -0.3535466194152832, -0.3677000105381012]} +{"t": 7.445, "q": [-0.32098206877708435, 0.0011470764875411987, -0.004312190227210522, 0.6096380352973938, -0.32050180435180664, -0.0037104233633726835, -0.37070009112358093, 0.014845524914562702, -0.01444985531270504, 0.6107885241508484, -0.29401537775993347, -0.019547071307897568, 0.03161826729774475, -0.0368049219250679, -0.016481468454003334, 0.14550048112869263, 0.11815247684717178, 0.024771394208073616, 1.205109715461731, 0.1453087329864502, 0.042388204485177994, -0.03953595831990242, -0.6588807106018066, -0.869263768196106, 0.8950299024581909, -0.1646033376455307, -0.5681601166725159, -0.3535466194152832, -0.36980921030044556]} +{"t": 7.4617, "q": [-0.3200531601905823, 0.0011555985547602177, -0.004298798739910126, 0.6094931960105896, -0.32050180435180664, -0.0037104233633726835, -0.36991605162620544, 0.014819959178566933, -0.01436950359493494, 0.6106947660446167, -0.2940278649330139, -0.019525310024619102, 0.03157809004187584, -0.03682764247059822, -0.016477076336741447, 0.14545254409313202, 0.11812850832939148, 0.02479536272585392, 1.2062002420425415, 0.14534468948841095, 0.042400188744068146, -0.03954794257879257, -0.6587488651275635, -0.8666033148765564, 0.894814133644104, -0.1646512746810913, -0.5681720972061157, -0.3534747362136841, -0.3713911473751068]} +{"t": 7.4784, "q": [-0.3179396688938141, 0.0011555985547602177, -0.004057744517922401, 0.6091437935829163, -0.3204977214336395, -0.0037176422774791718, -0.3688678443431854, 0.014785869978368282, -0.014168625697493553, 0.6105328798294067, -0.2940320372581482, -0.019518062472343445, 0.03160487487912178, -0.03680488467216492, -0.01647171936929226, 0.1453806310892105, 0.118248350918293, 0.024819331243634224, 1.2073148488998413, 0.14534468948841095, 0.04237622022628784, -0.03953595831990242, -0.6586290597915649, -0.864170491695404, 0.8946104049682617, -0.16454340517520905, -0.5681361556053162, -0.3534267842769623, -0.37350037693977356]} +{"t": 7.4952, "q": [-0.3157835900783539, 0.0011555985547602177, -0.003910433501005173, 0.6086750626564026, -0.320514053106308, -0.0036887661553919315, -0.3674616813659668, 0.014709170907735825, -0.014007923193275928, 0.6100130081176758, -0.2941276729106903, -0.01939472183585167, 0.03160487487912178, -0.03678212687373161, -0.01646636426448822, 0.14517690241336823, 0.11809255182743073, 0.024807346984744072, 1.2089565992355347, 0.14536865055561066, 0.042328283190727234, -0.03952397406101227, -0.6586290597915649, -0.8622889518737793, 0.894502580165863, -0.16419586539268494, -0.5681002140045166, -0.3533428907394409, -0.37582531571388245]} +{"t": 7.512, "q": [-0.31516146659851074, 0.0011726426891982555, -0.003964001312851906, 0.6080784797668457, -0.32050997018814087, -0.0036959853023290634, -0.3658083975315094, 0.014581339433789253, -0.013994530774652958, 0.6092033982276917, -0.2941567897796631, -0.019329490140080452, 0.03153791278600693, -0.036759328097105026, -0.016451260074973106, 0.14502111077308655, 0.11815247684717178, 0.02485528402030468, 1.2102868556976318, 0.1453806310892105, 0.042328283190727234, -0.03952397406101227, -0.6586530208587646, -0.86074298620224, 0.8945145606994629, -0.16419586539268494, -0.5681241750717163, -0.3533189296722412, -0.37785065174102783]} +{"t": 7.5287, "q": [-0.31387463212013245, 0.0012237750925123692, -0.0041247038170695305, 0.6073200106620789, -0.3205304741859436, -0.0036744072567671537, -0.3643340766429901, 0.014547251164913177, -0.014048098586499691, 0.6079421639442444, -0.29428157210350037, -0.019111977890133858, 0.03141738846898079, -0.0367748849093914, -0.016549069434404373, 0.14514094591140747, 0.11815247684717178, 0.024807346984744072, 1.2112696170806885, 0.1453566700220108, 0.04230431467294693, -0.039511989802122116, -0.6585931181907654, -0.8589932918548584, 0.8944426774978638, -0.16418388485908508, -0.5681121945381165, -0.3532709777355194, -0.3798519968986511]} +{"t": 7.5454, "q": [-0.31181228160858154, 0.0013601290993392467, -0.004111311864107847, 0.6066212058067322, -0.32054710388183594, -0.0036891005001962185, -0.3622205853462219, 0.014513162896037102, -0.014061490073800087, 0.6069620847702026, -0.29436057806015015, -0.019003169611096382, 0.03140399605035782, -0.03682824224233627, -0.01662330888211727, 0.14516492187976837, 0.11812850832939148, 0.024843299761414528, 1.2124080657958984, 0.14536865055561066, 0.042268361896276474, -0.03953595831990242, -0.6578860282897949, -0.8579986095428467, 0.8943467736244202, -0.164076030254364, -0.5681720972061157, -0.3532709777355194, -0.381949245929718]} +{"t": 7.5622, "q": [-0.31075555086135864, 0.0016243145801126957, -0.004231838975101709, 0.6063485145568848, -0.32060471177101135, -0.0036605834029614925, -0.36070364713668823, 0.014368286356329918, -0.01411505788564682, 0.6060246825218201, -0.2947640120983124, -0.018328823149204254, 0.031122766435146332, -0.03680632635951042, -0.016822680830955505, 0.14514094591140747, 0.11811652034521103, 0.024831315502524376, 1.2140859365463257, 0.1453566700220108, 0.04223240911960602, -0.03952397406101227, -0.6570711135864258, -0.8573514819145203, 0.8943946957588196, -0.164076030254364, -0.5681960582733154, -0.3532470166683197, -0.38423824310302734]} +{"t": 7.5791, "q": [-0.31067031621932983, 0.0017777127213776112, -0.004392541944980621, 0.6061950922012329, -0.3206005394458771, -0.003653285326436162, -0.36037981510162354, 0.014393853023648262, -0.01419540960341692, 0.6051980257034302, -0.2948971390724182, -0.018067894503474236, 0.03093527816236019, -0.03692268580198288, -0.017473237589001656, 0.1449851542711258, 0.11816445738077164, 0.024831315502524376, 1.2156318426132202, 0.1452847570180893, 0.042208440601825714, -0.039511989802122116, -0.6563280820846558, -0.8569799661636353, 0.8943707346916199, -0.1640280932188034, -0.5682080984115601, -0.3531751036643982, -0.3863953948020935]} +{"t": 7.5958, "q": [-0.3106788396835327, 0.0019737216643989086, -0.004446109291166067, 0.6062121391296387, -0.3206005394458771, -0.003653285326436162, -0.3601241409778595, 0.014427941292524338, -0.014222193509340286, 0.6046440601348877, -0.294855535030365, -0.018154853954911232, 0.0307477917522192, -0.03712048754096031, -0.017652682960033417, 0.1444338858127594, 0.11818842589855194, 0.024831315502524376, 1.2167943716049194, 0.14527277648448944, 0.042148519307374954, -0.03952397406101227, -0.655932605266571, -0.8568001985549927, 0.8943467736244202, -0.1640520542860031, -0.5682799816131592, -0.35318711400032043, -0.388864129781723]} +{"t": 7.6126, "q": [-0.310917466878891, 0.0022038184106349945, -0.004446109291166067, 0.6062718033790588, -0.32058003544807434, -0.0036748815327882767, -0.36019232869148254, 0.014479073695838451, -0.014222193509340286, 0.6042265295982361, -0.2947099804878235, -0.018365204334259033, 0.030707616358995438, -0.03737831488251686, -0.017687346786260605, 0.14365491271018982, 0.11841613054275513, 0.024867268279194832, 1.217944860458374, 0.14532071352005005, 0.04212455078959465, -0.03952397406101227, -0.6555251479148865, -0.8566683530807495, 0.8943108320236206, -0.1640520542860031, -0.5683039426803589, -0.3531271815299988, -0.3913328945636749]} +{"t": 7.6294, "q": [-0.31102824211120605, 0.002340172417461872, -0.004432717338204384, 0.6063826084136963, -0.32057178020477295, -0.0036748023703694344, -0.3601752817630768, 0.014521684497594833, -0.014248977415263653, 0.6038515567779541, -0.2942899763584137, -0.01896730251610279, 0.030546914786100388, -0.037575092166662216, -0.017623350024223328, 0.14307966828346252, 0.11841613054275513, 0.024831315502524376, 1.2188676595687866, 0.14534468948841095, 0.0421365350484848, -0.03954794257879257, -0.655105710029602, -0.8565964698791504, 0.8941789865493774, -0.16404007375240326, -0.5682799816131592, -0.3531271815299988, -0.39269909262657166]} +{"t": 7.6463, "q": [-0.3110538125038147, 0.0023146062158048153, -0.004365758039057255, 0.6064678430557251, -0.32057586312294006, -0.003667583456262946, -0.36018380522727966, 0.01453020703047514, -0.014235584996640682, 0.6038345098495483, -0.2941402792930603, -0.01919938065111637, 0.030506737530231476, -0.03764316439628601, -0.017590710893273354, 0.14260029792785645, 0.11840414255857468, 0.02485528402030468, 1.2193949222564697, 0.14532071352005005, 0.04212455078959465, -0.039511989802122116, -0.6548779606819153, -0.8561050891876221, 0.8939393162727356, -0.16401611268520355, -0.5684118270874023, -0.3531152009963989, -0.39380162954330444]} +{"t": 7.663, "q": [-0.3110623359680176, 0.0021867742761969566, -0.0043523660860955715, 0.6065700650215149, -0.32057565450668335, -0.003638549242168665, -0.36014118790626526, 0.014615427702665329, -0.014235584996640682, 0.6039026379585266, -0.29402798414230347, -0.019366208463907242, 0.030627265572547913, -0.03763560578227043, -0.01759541966021061, 0.1421089470386505, 0.11839216202497482, 0.024831315502524376, 1.2196346521377563, 0.14534468948841095, 0.04212455078959465, -0.039511989802122116, -0.654734194278717, -0.855206310749054, 0.8937475681304932, -0.1639801561832428, -0.5683998465538025, -0.353079229593277, -0.3949041962623596]} +{"t": 7.6797, "q": [-0.31111347675323486, 0.002033376134932041, -0.004338974133133888, 0.6066041588783264, -0.3205716013908386, -0.003645768389105797, -0.36014971137046814, 0.014675082638859749, -0.014275760389864445, 0.6040134429931641, -0.29401135444641113, -0.01939520053565502, 0.0307477917522192, -0.03761276602745056, -0.01757059432566166, 0.14150972664356232, 0.11834422498941422, 0.024819331243634224, 1.2198742628097534, 0.1453566700220108, 0.04212455078959465, -0.03954794257879257, -0.6546023488044739, -0.8535284996032715, 0.8935917615890503, -0.16351276636123657, -0.568435788154602, -0.3526957631111145, -0.39613857865333557]} +{"t": 7.6965, "q": [-0.3111986815929413, 0.00184588972479105, -0.0043523660860955715, 0.6066979169845581, -0.32058385014533997, -0.0036240932531654835, -0.3602178990840912, 0.014743260107934475, -0.014329328201711178, 0.6042606234550476, -0.2939946949481964, -0.019438670948147774, 0.03089510276913643, -0.037551842629909515, -0.017501147463917732, 0.14082662761211395, 0.11834422498941422, 0.02479536272585392, 1.2201619148254395, 0.14539262652397156, 0.042160503566265106, -0.03952397406101227, -0.6544225811958313, -0.85176682472229, 0.8934719562530518, -0.16291356086730957, -0.5684477686882019, -0.3522163927555084, -0.39719316363334656]} +{"t": 7.7132, "q": [-0.3112412989139557, 0.0017265803180634975, -0.004379149992018938, 0.6068854331970215, -0.32058385014533997, -0.0036240932531654835, -0.36024346947669983, 0.014845524914562702, -0.014409679919481277, 0.6045162677764893, -0.29397809505462646, -0.019453203305602074, 0.031122766435146332, -0.03753574937582016, -0.017276769503951073, 0.1401435285806656, 0.11828429996967316, 0.024819331243634224, 1.220353603363037, 0.14534468948841095, 0.04219645634293556, -0.03954794257879257, -0.6540630459785461, -0.8499212265014648, 0.8933520913124084, -0.1624581515789032, -0.5684956908226013, -0.35176098346710205, -0.3982837498188019]} +{"t": 7.73, "q": [-0.3112242519855499, 0.0016413591802120209, -0.0043523660860955715, 0.6071325540542603, -0.3205837309360504, -0.0036095762625336647, -0.3602605164051056, 0.014913702383637428, -0.014490030705928802, 0.6048656702041626, -0.2939531207084656, -0.01949670910835266, 0.03109598159790039, -0.0375119112432003, -0.017008192837238312, 0.13953232765197754, 0.11821239441633224, 0.024807346984744072, 1.2205214500427246, 0.1453566700220108, 0.04219645634293556, -0.039571911096572876, -0.6534278988838196, -0.848339319229126, 0.8931124210357666, -0.16208665072917938, -0.5685316324234009, -0.3514014482498169, -0.3993743062019348]} +{"t": 7.7468, "q": [-0.3112242519855499, 0.001539093442261219, -0.0043523660860955715, 0.6073370575904846, -0.32058781385421753, -0.0036023573484271765, -0.36027756333351135, 0.014956312254071236, -0.01453020703047514, 0.6052662134170532, -0.29396143555641174, -0.019482212141156197, 0.0310691986232996, -0.03755618631839752, -0.016716687008738518, 0.1390409767627716, 0.11816445738077164, 0.024783378466963768, 1.2206532955169678, 0.14536865055561066, 0.04217248782515526, -0.03953595831990242, -0.6524691581726074, -0.8472967147827148, 0.892788827419281, -0.16201473772525787, -0.5685316324234009, -0.3512216806411743, -0.4004289209842682]} +{"t": 7.7635, "q": [-0.31120720505714417, 0.001326040830463171, -0.004298798739910126, 0.6076012849807739, -0.3206124007701874, -0.003573560155928135, -0.36027756333351135, 0.015041533857584, -0.01453020703047514, 0.6058627367019653, -0.2939697504043579, -0.01948217675089836, 0.031029021367430687, -0.03769153729081154, -0.016456354409456253, 0.1386694759130478, 0.11820041388273239, 0.024771394208073616, 1.2208091020584106, 0.14532071352005005, 0.042220424860715866, -0.03953595831990242, -0.6514744758605957, -0.8464818000793457, 0.8924532532691956, -0.16197878122329712, -0.5685915946960449, -0.35108986496925354, -0.40180709958076477]} +{"t": 7.7804, "q": [-0.3111390471458435, 0.0009595896117389202, -0.004325582180172205, 0.6079165935516357, -0.32062864303588867, -0.0035301491152495146, -0.36032015085220337, 0.014913702383637428, -0.01446324773132801, 0.6068939566612244, -0.29396146535873413, -0.019467752426862717, 0.031015630811452866, -0.03788714483380318, -0.016109632328152657, 0.1381901055574417, 0.118248350918293, 0.02479536272585392, 1.2209649085998535, 0.14534468948841095, 0.04224439337849617, -0.03952397406101227, -0.6505396962165833, -0.8458226323127747, 0.891818106174469, -0.16201473772525787, -0.5686994194984436, -0.35106590390205383, -0.40390434861183167]} +{"t": 7.7971, "q": [-0.3111305236816406, 0.0006272271275520325, -0.004298798739910126, 0.6084534525871277, -0.32066139578819275, -0.0034868961665779352, -0.36037981510162354, 0.01486256904900074, -0.014503423124551773, 0.6078569293022156, -0.29408207535743713, -0.01928641088306904, 0.030988845974206924, -0.03787845000624657, -0.01586122065782547, 0.13745906949043274, 0.11818842589855194, 0.02479536272585392, 1.2212284803390503, 0.1453566700220108, 0.042268361896276474, -0.03953595831990242, -0.6502161026000977, -0.8450077176094055, 0.8908593654632568, -0.16199077665805817, -0.568747341632843, -0.35106590390205383, -0.40610945224761963]} +{"t": 7.8139, "q": [-0.3110623359680176, 0.00039712991565465927, -0.004218447022140026, 0.6089392304420471, -0.32068198919296265, -0.0034798351116478443, -0.3603883385658264, 0.014751781709492207, -0.014409679919481277, 0.6085813045501709, -0.29415690898895264, -0.019184831529855728, 0.031042413786053658, -0.037756435573101044, -0.015683474019169807, 0.13621270656585693, 0.1182243824005127, 0.024783378466963768, 1.2215760946273804, 0.14534468948841095, 0.042328283190727234, -0.03953595831990242, -0.6500003933906555, -0.8441088795661926, 0.8903560042381287, -0.16206267476081848, -0.5687114000320435, -0.35106590390205383, -0.4082905650138855]} +{"t": 7.8307, "q": [-0.31103676557540894, 0.0002692984417080879, -0.004138095770031214, 0.6092801094055176, -0.32071056962013245, -0.0034292840864509344, -0.36041390895843506, 0.014623950235545635, -0.014382896013557911, 0.6090670824050903, -0.294206827878952, -0.019097838550806046, 0.03109598159790039, -0.037611812353134155, -0.015529717318713665, 0.1350262612104416, 0.11821239441633224, 0.024771394208073616, 1.2219475507736206, 0.1453566700220108, 0.04236423596739769, -0.03952397406101227, -0.6494371294975281, -0.843329906463623, 0.890332043170929, -0.16208665072917938, -0.5687353610992432, -0.351053923368454, -0.4109870195388794]} +{"t": 7.8474, "q": [-0.311104953289032, 0.000218165572732687, -0.004111311864107847, 0.609620988368988, -0.32072290778160095, -0.003422143869102001, -0.3604480028152466, 0.014623950235545635, -0.014382896013557911, 0.6093653440475464, -0.2942151427268982, -0.01908334158360958, 0.03108258917927742, -0.037511877715587616, -0.01520191878080368, 0.13339641690254211, 0.11820041388273239, 0.024747425690293312, 1.2222471237182617, 0.14536865055561066, 0.0424121730029583, -0.03953595831990242, -0.6488618850708008, -0.8427067399024963, 0.8902841210365295, -0.16207465529441833, -0.5687233805656433, -0.3510299324989319, -0.413851261138916]} +{"t": 7.8642, "q": [-0.31107085943222046, 0.00020112143829464912, -0.004071136470884085, 0.6099703907966614, -0.3207187354564667, -0.0034148460254073143, -0.36046504974365234, 0.014606906101107597, -0.014329328201711178, 0.6097999811172485, -0.2942151427268982, -0.0190688818693161, 0.030975455418229103, -0.03757821023464203, -0.014780436642467976, 0.13146695494651794, 0.1182243824005127, 0.02473544143140316, 1.2227745056152344, 0.14539262652397156, 0.04242415726184845, -0.03954794257879257, -0.648166835308075, -0.8420835733413696, 0.8901642560958862, -0.16206267476081848, -0.5687713027000427, -0.3510059714317322, -0.4159964323043823]} +{"t": 7.881, "q": [-0.31107085943222046, 0.0001925993710756302, -0.004030960611999035, 0.610584020614624, -0.3207228183746338, -0.003407608950510621, -0.3605246841907501, 0.014606906101107597, -0.014262368902564049, 0.6104987859725952, -0.2942151427268982, -0.0190688818693161, 0.030868319794535637, -0.03769787400960922, -0.014423160813748837, 0.13074789941310883, 0.11815247684717178, 0.024723457172513008, 1.2233736515045166, 0.1453806310892105, 0.0424361415207386, -0.03953595831990242, -0.6470403075218201, -0.8412206768989563, 0.8896849155426025, -0.16201473772525787, -0.5686395168304443, -0.35093405842781067, -0.41780605912208557]} +{"t": 7.8978, "q": [-0.31111347675323486, 0.00020964350551366806, -0.003977392800152302, 0.6111123561859131, -0.3207474946975708, -0.003393328981474042, -0.3606269657611847, 0.014538728632032871, -0.014208801090717316, 0.6111038327217102, -0.2942608892917633, -0.019018039107322693, 0.030613873153924942, -0.03778771311044693, -0.014172013849020004, 0.13061606884002686, 0.1182243824005127, 0.024723457172513008, 1.2237212657928467, 0.14532071352005005, 0.0424361415207386, -0.03953595831990242, -0.6456022262573242, -0.8401421308517456, 0.8890377879142761, -0.16182298958301544, -0.568663477897644, -0.3508741557598114, -0.4191722571849823]} +{"t": 7.9145, "q": [-0.31107938289642334, 0.0001925993710756302, -0.00388364982791245, 0.6114276647567749, -0.32075178623199463, -0.0034151622094213963, -0.3607292175292969, 0.014496118761599064, -0.014074882492423058, 0.6115555167198181, -0.2942899763584137, -0.01896730251610279, 0.03038621135056019, -0.037764668464660645, -0.01409852597862482, 0.13064004480838776, 0.1182243824005127, 0.024747425690293312, 1.2239608764648438, 0.1453566700220108, 0.0424361415207386, -0.03954794257879257, -0.6431214809417725, -0.8387759327888489, 0.8881269693374634, -0.16145148873329163, -0.5686754584312439, -0.3507303297519684, -0.4205264747142792]} +{"t": 7.9312, "q": [-0.31107085943222046, 0.00016703316941857338, -0.0037899063900113106, 0.6117430329322815, -0.3207477033138275, -0.0034223811235278845, -0.3607974052429199, 0.0144108971580863, -0.013914179988205433, 0.6119219660758972, -0.29430246353149414, -0.018960000947117805, 0.030171940103173256, -0.03769632801413536, -0.014063009060919285, 0.1306520253419876, 0.11818842589855194, 0.024759409949183464, 1.2241885662078857, 0.14536865055561066, 0.04242415726184845, -0.03953595831990242, -0.6402332782745361, -0.8374336957931519, 0.8866409063339233, -0.16113989055156708, -0.5686994194984436, -0.35056254267692566, -0.42225217819213867]} +{"t": 7.9479, "q": [-0.3110026717185974, 0.00018407730385661125, -0.0037497307639569044, 0.6121776103973389, -0.32074350118637085, -0.0034150651190429926, -0.36092522740364075, 0.014334198087453842, -0.013699909672141075, 0.6124844551086426, -0.29441893100738525, -0.018757004290819168, 0.02973000891506672, -0.037498824298381805, -0.01394201721996069, 0.13078385591506958, 0.11817644536495209, 0.024759409949183464, 1.2244162559509277, 0.1453326940536499, 0.04242415726184845, -0.03953595831990242, -0.637704610824585, -0.8357439041137695, 0.885694146156311, -0.16051670908927917, -0.5686155557632446, -0.3504307270050049, -0.42512840032577515]} +{"t": 7.9647, "q": [-0.31099414825439453, 0.0001925993710756302, -0.0035220684949308634, 0.6126378178596497, -0.32073941826820374, -0.003422284033149481, -0.3612064719200134, 0.014257499016821384, -0.013432071544229984, 0.6132258772850037, -0.2944604754447937, -0.018727906048297882, 0.029100589454174042, -0.03730899840593338, -0.01384552102535963, 0.13084377348423004, 0.11818842589855194, 0.024759409949183464, 1.2247997522354126, 0.1452847570180893, 0.042400188744068146, -0.03954794257879257, -0.6357151865959167, -0.8334069848060608, 0.8849391341209412, -0.15936622023582458, -0.5686275362968445, -0.3503707945346832, -0.42842406034469604]} +{"t": 7.9814, "q": [-0.3110538125038147, 0.000218165572732687, -0.003321190131828189, 0.612987220287323, -0.32073545455932617, -0.003444056259468198, -0.3615303039550781, 0.014146711677312851, -0.013257976621389389, 0.6137030720710754, -0.2944563329219818, -0.01873515360057354, 0.02856491319835186, -0.03721022605895996, -0.013780158013105392, 0.1308078169822693, 0.11816445738077164, 0.024819331243634224, 1.2253750562667847, 0.14536865055561066, 0.0424121730029583, -0.03953595831990242, -0.6334022283554077, -0.8306146860122681, 0.8840283751487732, -0.1582157462835312, -0.5686994194984436, -0.3503228724002838, -0.431599885225296]} +{"t": 7.9981, "q": [-0.3111390471458435, 0.0003630416467785835, -0.003321190131828189, 0.613200306892395, -0.3207108676433563, -0.0034728350583463907, -0.36178597807884216, 0.014112623408436775, -0.013097274117171764, 0.6139076352119446, -0.29448121786117554, -0.018763968721032143, 0.028337251394987106, -0.03716488927602768, -0.013808393850922585, 0.13061606884002686, 0.1182243824005127, 0.024819331243634224, 1.2260581254959106, 0.14534468948841095, 0.0424121730029583, -0.03953595831990242, -0.6306818127632141, -0.8277384638786316, 0.8836089372634888, -0.15692144632339478, -0.5686155557632446, -0.3502030372619629, -0.4359022378921509]} +{"t": 8.0148, "q": [-0.3111816346645355, 0.0005420059897005558, -0.0033077981788665056, 0.6134644746780396, -0.3206822872161865, -0.0035233863163739443, -0.3618711829185486, 0.014027401804924011, -0.013057098723948002, 0.6139076352119446, -0.2945560812950134, -0.018633469939231873, 0.028364034369587898, -0.03718012571334839, -0.013828183524310589, 0.13044829666614532, 0.118248350918293, 0.024783378466963768, 1.227064847946167, 0.14532071352005005, 0.042400188744068146, -0.03954794257879257, -0.6284887194633484, -0.8256531953811646, 0.883525013923645, -0.15550731122493744, -0.5685316324234009, -0.35004723072052, -0.438323050737381]} +{"t": 8.0316, "q": [-0.3112839162349701, 0.0008573243394494057, -0.0033747577108442783, 0.61380535364151, -0.3206822872161865, -0.0035233863163739443, -0.3619990050792694, 0.013712083920836449, -0.013070490211248398, 0.6139246821403503, -0.29481810331344604, -0.018220102414488792, 0.028538130223751068, -0.03724099323153496, -0.013887873850762844, 0.13046027719974518, 0.1182243824005127, 0.024807346984744072, 1.2279876470565796, 0.14536865055561066, 0.04237622022628784, -0.03954794257879257, -0.6264514327049255, -0.8242270946502686, 0.883525013923645, -0.1533980816602707, -0.5684956908226013, -0.3500232696533203, -0.4406359791755676]} +{"t": 8.0483, "q": [-0.3114543557167053, 0.0011726426891982555, -0.0034015413839370012, 0.614180326461792, -0.32066595554351807, -0.003552280133590102, -0.3620501458644867, 0.01320927869528532, -0.013083881698548794, 0.6139076352119446, -0.29496362805366516, -0.01803867146372795, 0.02875239960849285, -0.03738543763756752, -0.014002872630953789, 0.13040035963058472, 0.11826033145189285, 0.024807346984744072, 1.2283830642700195, 0.1453566700220108, 0.042388204485177994, -0.03953595831990242, -0.624114453792572, -0.8236278891563416, 0.883441150188446, -0.1513487845659256, -0.5685316324234009, -0.35004723072052, -0.44322457909584045]} +{"t": 8.065, "q": [-0.31153103709220886, 0.0013516070321202278, -0.0034551091957837343, 0.6144104599952698, -0.32065778970718384, -0.0035667181946337223, -0.3620842397212982, 0.013072924688458443, -0.013097274117171764, 0.6138820648193359, -0.2950093150138855, -0.018045706674456596, 0.02889971062541008, -0.03756774961948395, -0.014113808050751686, 0.13038836419582367, 0.11834422498941422, 0.02479536272585392, 1.2286347150802612, 0.1453566700220108, 0.04236423596739769, -0.03954794257879257, -0.6219213604927063, -0.8233641982078552, 0.8833931684494019, -0.14963503181934357, -0.5685316324234009, -0.3500232696533203, -0.4465082585811615]} +{"t": 8.0818, "q": [-0.3116077482700348, 0.0014794389717280865, -0.003468500915914774, 0.6145808696746826, -0.32066187262535095, -0.003559499280527234, -0.36221206188201904, 0.013081447221338749, -0.013097274117171764, 0.6139076352119446, -0.2950757145881653, -0.018103282898664474, 0.02888631820678711, -0.03778829798102379, -0.01430828683078289, 0.13047225773334503, 0.11828429996967316, 0.024807346984744072, 1.2288984060287476, 0.1453326940536499, 0.042328283190727234, -0.03954794257879257, -0.6199799180030823, -0.8232803344726562, 0.8833692073822021, -0.14783740043640137, -0.5685076713562012, -0.34998732805252075, -0.45025932788848877]} +{"t": 8.0985, "q": [-0.3117015063762665, 0.0016072704456746578, -0.0034283252898603678, 0.6148279905319214, -0.32065361738204956, -0.0035594203509390354, -0.3622717261314392, 0.013098491355776787, -0.013016922399401665, 0.6139076352119446, -0.29505491256713867, -0.018139541149139404, 0.02875239960849285, -0.03784932941198349, -0.01440691202878952, 0.13041234016418457, 0.11828429996967316, 0.02479536272585392, 1.2291860580444336, 0.14532071352005005, 0.04230431467294693, -0.03953595831990242, -0.6188414096832275, -0.8232443928718567, 0.8834291696548462, -0.14559635519981384, -0.5685316324234009, -0.3499753177165985, -0.4548133313655853]} +{"t": 8.1152, "q": [-0.3117952346801758, 0.0016584033146500587, -0.0033747577108442783, 0.6149728894233704, -0.32064953446388245, -0.0035666392650455236, -0.36239102482795715, 0.013021792285144329, -0.012909787707030773, 0.6139161586761475, -0.2950673997402191, -0.018117796629667282, 0.028645263984799385, -0.03783426061272621, -0.014426058158278465, 0.13044829666614532, 0.11830826848745346, 0.02485528402030468, 1.2296414375305176, 0.1452607959508896, 0.04224439337849617, -0.039511989802122116, -0.6179905533790588, -0.823304295539856, 0.8833452463150024, -0.14334331452846527, -0.5685555934906006, -0.3499513566493988, -0.4584924876689911]} +{"t": 8.132, "q": [-0.31195715069770813, 0.0016924915835261345, -0.003334582084789872, 0.6151177883148193, -0.3206537067890167, -0.003573937341570854, -0.36248478293418884, 0.013004748150706291, -0.01285621989518404, 0.6139417290687561, -0.2950258255004883, -0.01817583292722702, 0.028471169993281364, -0.03783434256911278, -0.014445525594055653, 0.13041234016418457, 0.11828429996967316, 0.02485528402030468, 1.2299649715423584, 0.14524881541728973, 0.04225637763738632, -0.039511989802122116, -0.6176789402961731, -0.823448121547699, 0.8831894397735596, -0.14147378504276276, -0.5684597492218018, -0.3499034345149994, -0.46132075786590576]} +{"t": 8.1487, "q": [-0.3120253384113312, 0.0017010136507451534, -0.0032810145057737827, 0.6151859164237976, -0.32065778970718384, -0.0035667181946337223, -0.3625529706478119, 0.013004748150706291, -0.012789260596036911, 0.6139332056045532, -0.29498839378356934, -0.018212145194411278, 0.028364034369587898, -0.03781922906637192, -0.014454937539994717, 0.13044829666614532, 0.11820041388273239, 0.02485528402030468, 1.230432391166687, 0.1453087329864502, 0.04223240911960602, -0.03954794257879257, -0.617690920829773, -0.8237357139587402, 0.8830336928367615, -0.1399397999048233, -0.568435788154602, -0.349819540977478, -0.46472427248954773]} +{"t": 8.1654, "q": [-0.3120594322681427, 0.0016924915835261345, -0.003254230599850416, 0.615228533744812, -0.32065361738204956, -0.0035594203509390354, -0.362587034702301, 0.013030314818024635, -0.012762476690113544, 0.6139417290687561, -0.2949967086315155, -0.018226588144898415, 0.028323858976364136, -0.037819355726242065, -0.014484139159321785, 0.13041234016418457, 0.11828429996967316, 0.024831315502524376, 1.2307919263839722, 0.1452847570180893, 0.042220424860715866, -0.03952397406101227, -0.6178467273712158, -0.8242390751838684, 0.8826261758804321, -0.1383698582649231, -0.5683998465538025, -0.34954389929771423, -0.46876296401023865]} +{"t": 8.1823, "q": [-0.31209349632263184, 0.0016839695163071156, -0.003254230599850416, 0.6152881979942322, -0.32065778970718384, -0.0035667181946337223, -0.36256998777389526, 0.013107013888657093, -0.012802652083337307, 0.6139587759971619, -0.29498839378356934, -0.018226604908704758, 0.028310466557741165, -0.03788773715496063, -0.014529389329254627, 0.13037638366222382, 0.11821239441633224, 0.024819331243634224, 1.2310795783996582, 0.14524881541728973, 0.042208440601825714, -0.03952397406101227, -0.6181823015213013, -0.82450270652771, 0.8824464678764343, -0.13626064360141754, -0.5682080984115601, -0.34930419921875, -0.47323307394981384]} +{"t": 8.1992, "q": [-0.312153160572052, 0.0016669253818690777, -0.003254230599850416, 0.6153904795646667, -0.32065361738204956, -0.0035594203509390354, -0.3625614643096924, 0.013166667893528938, -0.01284282747656107, 0.6139758229255676, -0.2949301600456238, -0.018313633278012276, 0.028444387018680573, -0.03798651695251465, -0.01459467876702547, 0.13040035963058472, 0.11828429996967316, 0.02485528402030468, 1.2313910722732544, 0.1452847570180893, 0.042220424860715866, -0.03953595831990242, -0.6183740496635437, -0.8244907259941101, 0.8824224472045898, -0.1341993510723114, -0.5682200789451599, -0.3491004705429077, -0.4774874746799469]} +{"t": 8.2159, "q": [-0.31222987174987793, 0.0016328366473317146, -0.0032810145057737827, 0.6154245734214783, -0.32065361738204956, -0.0035594203509390354, -0.3625103533267975, 0.013251889497041702, -0.012909787707030773, 0.6139758229255676, -0.2943894565105438, -0.0192416962236166, 0.02857830561697483, -0.03808516636490822, -0.014630800113081932, 0.13041234016418457, 0.11840414255857468, 0.024819331243634224, 1.2318345308303833, 0.14524881541728973, 0.042208440601825714, -0.03952397406101227, -0.6186257004737854, -0.8245866298675537, 0.8824224472045898, -0.13144297897815704, -0.5681840777397156, -0.34904056787490845, -0.48039963841438293]} +{"t": 8.2326, "q": [-0.31230655312538147, 0.0016072704456746578, -0.0032810145057737827, 0.6154671907424927, -0.32065361738204956, -0.0035594203509390354, -0.3625103533267975, 0.013294500298798084, -0.012963354587554932, 0.6139758229255676, -0.2943645119667053, -0.019285202026367188, 0.028658656403422356, -0.03813067451119423, -0.014641488902270794, 0.13041234016418457, 0.11840414255857468, 0.024831315502524376, 1.232301950454712, 0.1453087329864502, 0.042220424860715866, -0.03952397406101227, -0.6188174486160278, -0.8245506286621094, 0.8826861381530762, -0.1284828782081604, -0.5681840777397156, -0.3490285873413086, -0.482628732919693]} +{"t": 8.2494, "q": [-0.3124258816242218, 0.001539093442261219, -0.0032944062259048223, 0.6154842376708984, -0.3206452429294586, -0.0035448241978883743, -0.3625018298625946, 0.013320066034793854, -0.013070490211248398, 0.6139587759971619, -0.29432711005210876, -0.019307071343064308, 0.02908719703555107, -0.038236964493989944, -0.014692354947328568, 0.13044829666614532, 0.11835620552301407, 0.024819331243634224, 1.2327213287353516, 0.14529675245285034, 0.04224439337849617, -0.03952397406101227, -0.6198840737342834, -0.8245866298675537, 0.8827220797538757, -0.12649349868297577, -0.5682080984115601, -0.34906452894210815, -0.48488175868988037]} +{"t": 8.2661, "q": [-0.312528133392334, 0.0014368281699717045, -0.0033881496638059616, 0.6154842376708984, -0.3206615746021271, -0.0035159301478415728, -0.3624677360057831, 0.013362676836550236, -0.01317762490361929, 0.6139417290687561, -0.29433128237724304, -0.01928536221385002, 0.02973000891506672, -0.038320377469062805, -0.01470870990306139, 0.13040035963058472, 0.11835620552301407, 0.024819331243634224, 1.2333685159683228, 0.14520087838172913, 0.04224439337849617, -0.03952397406101227, -0.621034562587738, -0.82450270652771, 0.8826741576194763, -0.12416855990886688, -0.5681720972061157, -0.3490285873413086, -0.48736247420310974]} +{"t": 8.2829, "q": [-0.3125707507133484, 0.0013430849649012089, -0.003441717242822051, 0.6154671907424927, -0.3206697404384613, -0.0035014920867979527, -0.36239102482795715, 0.013677995651960373, -0.013324935920536518, 0.6139246821403503, -0.2943479120731354, -0.01927081309258938, 0.03026568330824375, -0.0385938324034214, -0.014870066195726395, 0.12978915870189667, 0.11834422498941422, 0.02479536272585392, 1.2349504232406616, 0.14529675245285034, 0.04225637763738632, -0.039511989802122116, -0.6227842569351196, -0.82450270652771, 0.8826501965522766, -0.12117250263690948, -0.568148136138916, -0.3490285873413086, -0.49087387323379517]} +{"t": 8.2997, "q": [-0.3124855160713196, 0.0011811647564172745, -0.003589028026908636, 0.6154501438140869, -0.32067403197288513, -0.003523307153955102, -0.3622205853462219, 0.014138189144432545, -0.013499030843377113, 0.6139758229255676, -0.2943229675292969, -0.019270919263362885, 0.031042413786053658, -0.03882135450839996, -0.014923506416380405, 0.1290341466665268, 0.11840414255857468, 0.024819331243634224, 1.2365922927856445, 0.1453326940536499, 0.042220424860715866, -0.03952397406101227, -0.6244739890098572, -0.8245866298675537, 0.8827340602874756, -0.11918312311172485, -0.5681960582733154, -0.34906452894210815, -0.4946369230747223]} +{"t": 8.3164, "q": [-0.3124684691429138, 0.001027766615152359, -0.0037497307639569044, 0.6153990030288696, -0.32067790627479553, -0.0034870540257543325, -0.3621268570423126, 0.014376808889210224, -0.013753476552665234, 0.613950252532959, -0.29433128237724304, -0.01927090249955654, 0.03163165599107742, -0.03906425088644028, -0.01502592395991087, 0.12881843745708466, 0.11841613054275513, 0.024819331243634224, 1.2376948595046997, 0.14527277648448944, 0.04219645634293556, -0.03952397406101227, -0.6265113353729248, -0.8246345520019531, 0.882925808429718, -0.11796072870492935, -0.5681960582733154, -0.34908849000930786, -0.49829208850860596]} +{"t": 8.3331, "q": [-0.31235769391059875, 0.0008743684738874435, -0.0038702578749507666, 0.615373432636261, -0.32067811489105225, -0.0035160882398486137, -0.36193084716796875, 0.014393853023648262, -0.013887396082282066, 0.6139246821403503, -0.29433128237724304, -0.01927090249955654, 0.03196645528078079, -0.039299264550209045, -0.015055445954203606, 0.12896224856376648, 0.11844009906053543, 0.024819331243634224, 1.2380304336547852, 0.1452607959508896, 0.0421365350484848, -0.03953595831990242, -0.6301186084747314, -0.8245986104011536, 0.8832733631134033, -0.11722969263792038, -0.5682440400123596, -0.3491484224796295, -0.5014799237251282]} +{"t": 8.3498, "q": [-0.31232360005378723, 0.0007976694032549858, -0.003977392800152302, 0.6153393387794495, -0.3206944167613983, -0.0034872121177613735, -0.3617774546146393, 0.014359764754772186, -0.013994530774652958, 0.6138224005699158, -0.2943479120731354, -0.0192563533782959, 0.032314643263816833, -0.03957183659076691, -0.015012790448963642, 0.1290581226348877, 0.11840414255857468, 0.024819331243634224, 1.2384737730026245, 0.1452368199825287, 0.04212455078959465, -0.03952397406101227, -0.6339295506477356, -0.8245866298675537, 0.8833332657814026, -0.11693008244037628, -0.5682560205459595, -0.34913644194602966, -0.5038168430328369]} +{"t": 8.3666, "q": [-0.312340646982193, 0.0007039261981844902, -0.004111311864107847, 0.6153222918510437, -0.32070261240005493, -0.003472756128758192, -0.3615303039550781, 0.014334198087453842, -0.014141841791570187, 0.613737165927887, -0.2943437695503235, -0.019234661012887955, 0.032542306929826736, -0.03991257771849632, -0.014966892078518867, 0.12917795777320862, 0.11832025647163391, 0.024831315502524376, 1.2386655807495117, 0.1452847570180893, 0.042088598012924194, -0.03952397406101227, -0.6393344402313232, -0.8249821066856384, 0.8833093047142029, -0.11595936119556427, -0.5682799816131592, -0.34916040301322937, -0.5061897039413452]} +{"t": 8.3833, "q": [-0.3121446371078491, 0.0006527937948703766, -0.004111311864107847, 0.6153137683868408, -0.32070666551589966, -0.00346553698182106, -0.36124905943870544, 0.014376808889210224, -0.014155233278870583, 0.6137201189994812, -0.2943396270275116, -0.01924191042780876, 0.03255569934844971, -0.04041251167654991, -0.01494914386421442, 0.12920193374156952, 0.11835620552301407, 0.024831315502524376, 1.2389891147613525, 0.14527277648448944, 0.042100582271814346, -0.03953595831990242, -0.6443079113960266, -0.8253415822982788, 0.8834052085876465, -0.1143295094370842, -0.5682799816131592, -0.34913644194602966, -0.5079154372215271]} +{"t": 8.4, "q": [-0.3119230568408966, 0.0006442712619900703, -0.004178271628916264, 0.6152455806732178, -0.3207148313522339, -0.0034510991536080837, -0.36101046204566956, 0.014393853023648262, -0.01419540960341692, 0.6136178970336914, -0.29438120126724243, -0.019169412553310394, 0.03259587287902832, -0.041132524609565735, -0.015038910321891308, 0.12917795777320862, 0.11841613054275513, 0.02485528402030468, 1.2392048835754395, 0.14521285891532898, 0.042088598012924194, -0.03954794257879257, -0.6489577889442444, -0.8254255056381226, 0.8833692073822021, -0.11229219287633896, -0.5682799816131592, -0.3491484224796295, -0.5099287629127502]} +{"t": 8.417, "q": [-0.31171002984046936, 0.0006187050603330135, -0.00416487967595458, 0.615228533744812, -0.3207107484340668, -0.003458318067714572, -0.3607718348503113, 0.014402374625205994, -0.014182017184793949, 0.6135326623916626, -0.2943936884403229, -0.0191331896930933, 0.03260926529765129, -0.04189005866646767, -0.015056610107421875, 0.12916597723960876, 0.11851200461387634, 0.024831315502524376, 1.239384651184082, 0.1453087329864502, 0.042088598012924194, -0.03953595831990242, -0.6531162858009338, -0.8254015445709229, 0.883381187915802, -0.11002717167139053, -0.5682680010795593, -0.3491484224796295, -0.5127450823783875]} +{"t": 8.4339, "q": [-0.31153103709220886, 0.0006101829931139946, -0.004178271628916264, 0.6152455806732178, -0.3207230865955353, -0.0034511780831962824, -0.3605417311191559, 0.014376808889210224, -0.01419540960341692, 0.6134900450706482, -0.29439786076545715, -0.019125942140817642, 0.032542306929826736, -0.042791400104761124, -0.015063704922795296, 0.12909407913684845, 0.11877565830945969, 0.024867268279194832, 1.2394444942474365, 0.14527277648448944, 0.042088598012924194, -0.03952397406101227, -0.6578860282897949, -0.8258689045906067, 0.8834052085876465, -0.10730675607919693, -0.5682200789451599, -0.3491484224796295, -0.5155373811721802]} +{"t": 8.4506, "q": [-0.3114543557167053, 0.0006101829931139946, -0.0041916631162166595, 0.6152796745300293, -0.320735365152359, -0.003429502947255969, -0.3604053854942322, 0.014342720620334148, -0.014168625697493553, 0.613430380821228, -0.2944103479385376, -0.01908973790705204, 0.03255569934844971, -0.043745603412389755, -0.015038219280540943, 0.12907010316848755, 0.11905129253864288, 0.02490321919322014, 1.2395163774490356, 0.14527277648448944, 0.04207661375403404, -0.039511989802122116, -0.6625478863716125, -0.8272351026535034, 0.8836089372634888, -0.10508967190980911, -0.5681840777397156, -0.34913644194602966, -0.5170833468437195]} +{"t": 8.4673, "q": [-0.31139469146728516, 0.0006101829931139946, -0.004178271628916264, 0.6153137683868408, -0.32073545455932617, -0.003444056259468198, -0.3603627681732178, 0.014317153953015804, -0.014155233278870583, 0.6134218573570251, -0.2944020628929138, -0.019075313583016396, 0.032528914511203766, -0.04495865851640701, -0.01527295634150505, 0.12917795777320862, 0.11955463141202927, 0.024927187711000443, 1.2395163774490356, 0.14522483944892883, 0.042088598012924194, -0.03948802128434181, -0.6677490472793579, -0.8288889527320862, 0.8842440843582153, -0.10179401189088821, -0.5681601166725159, -0.34916040301322937, -0.5184855461120605]} +{"t": 8.4841, "q": [-0.3113861680030823, 0.0006442712619900703, -0.004151487722992897, 0.6153649091720581, -0.3207230865955353, -0.0034511780831962824, -0.36037129163742065, 0.01429158728569746, -0.014141841791570187, 0.6134218573570251, -0.2944311797618866, -0.019024558365345, 0.03247534856200218, -0.0460808090865612, -0.015545198693871498, 0.12929780781269073, 0.12027368694543839, 0.0249631404876709, 1.239612340927124, 0.1452847570180893, 0.042088598012924194, -0.03948802128434181, -0.6722910404205322, -0.8305786848068237, 0.8849871158599854, -0.09857024997472763, -0.5682200789451599, -0.3491723835468292, -0.5197678208351135]} +{"t": 8.5008, "q": [-0.3114202618598938, 0.0006613158620893955, -0.004205055069178343, 0.6154075264930725, -0.3207312524318695, -0.0034367400221526623, -0.3603627681732178, 0.014274543151259422, -0.014141841791570187, 0.6132940649986267, -0.29443952441215515, -0.018966663628816605, 0.03243517130613327, -0.04745432734489441, -0.016092197969555855, 0.1294056624174118, 0.12119647115468979, 0.02503504604101181, 1.2396602630615234, 0.1452368199825287, 0.042088598012924194, -0.039440084248781204, -0.6757664680480957, -0.8325321674346924, 0.8851428627967834, -0.0954064205288887, -0.5681960582733154, -0.34916040301322937, -0.5215534567832947]} +{"t": 8.5176, "q": [-0.31139469146728516, 0.0007124482654035091, -0.004205055069178343, 0.6154075264930725, -0.3207436203956604, -0.0034296002704650164, -0.3603883385658264, 0.014300109818577766, -0.014074882492423058, 0.6132599711418152, -0.29446864128112793, -0.01891591027379036, 0.03239499405026436, -0.04870682954788208, -0.016656462103128433, 0.1294775754213333, 0.12217917293310165, 0.025142904371023178, 1.2396842241287231, 0.1452847570180893, 0.04207661375403404, -0.039440084248781204, -0.6789902448654175, -0.8344616293907166, 0.8858140110969543, -0.09256615489721298, -0.5682080984115601, -0.3491723835468292, -0.5228477716445923]} +{"t": 8.5346, "q": [-0.3113691210746765, 0.0007465369999408722, -0.004231838975101709, 0.6154501438140869, -0.3207395374774933, -0.0034368191845715046, -0.36037129163742065, 0.014223410747945309, -0.014021314680576324, 0.613132119178772, -0.29451024532318115, -0.01881447434425354, 0.03227446973323822, -0.049846433103084564, -0.017350124195218086, 0.12952551245689392, 0.12322180718183517, 0.025178857147693634, 1.2396842241287231, 0.1452847570180893, 0.04207661375403404, -0.03946405276656151, -0.6814350485801697, -0.8363431096076965, 0.886293351650238, -0.09030113369226456, -0.5681960582733154, -0.3491843640804291, -0.5235428810119629]} +{"t": 8.5513, "q": [-0.31134355068206787, 0.0007891473360359669, -0.004258622881025076, 0.6154160499572754, -0.3207395374774933, -0.0034368191845715046, -0.3603542447090149, 0.014214888215065002, -0.014021314680576324, 0.612987220287323, -0.294551819562912, -0.018770914524793625, 0.03214054927229881, -0.050849709659814835, -0.018021104857325554, 0.12953749299049377, 0.12409665435552597, 0.025178857147693634, 1.2396721839904785, 0.1452847570180893, 0.04205264523625374, -0.039440084248781204, -0.6828611493110657, -0.8379849791526794, 0.8864012360572815, -0.08841961622238159, -0.5682080984115601, -0.34919634461402893, -0.5239623188972473]} +{"t": 8.568, "q": [-0.31130096316337585, 0.0008317581377923489, -0.004258622881025076, 0.615441620349884, -0.32074370980262756, -0.003444117261096835, -0.3602519929409027, 0.014180799946188927, -0.013994530774652958, 0.6128168106079102, -0.29474732279777527, -0.018415674567222595, 0.0321003757417202, -0.051662907004356384, -0.018565572798252106, 0.12957344949245453, 0.12498348206281662, 0.025226794183254242, 1.2396842241287231, 0.1453087329864502, 0.042028676718473434, -0.039452068507671356, -0.6840236186981201, -0.8398424983024597, 0.8866409063339233, -0.08649015426635742, -0.5682440400123596, -0.3492323160171509, -0.524357795715332]} +{"t": 8.5849, "q": [-0.311292439699173, 0.0008914126083254814, -0.004231838975101709, 0.61551833152771, -0.3207312524318695, -0.0034367400221526623, -0.3602008521556854, 0.01420636661350727, -0.013967746868729591, 0.6126889586448669, -0.2947307527065277, -0.018386824056506157, 0.03211376443505287, -0.05238489434123039, -0.019040368497371674, 0.12957344949245453, 0.12565460801124573, 0.025226794183254242, 1.2396961450576782, 0.14518888294696808, 0.04205264523625374, -0.03946405276656151, -0.685150146484375, -0.8416761159896851, 0.8870483636856079, -0.08493220061063766, -0.5682080984115601, -0.34926825761795044, -0.5246214270591736]} +{"t": 8.6016, "q": [-0.31130948662757874, 0.0009169792756438255, -0.004258622881025076, 0.615603506565094, -0.320735365152359, -0.003429502947255969, -0.36014118790626526, 0.014155233278870583, -0.013914179988205433, 0.6125185489654541, -0.29468920826911926, -0.018387002870440483, 0.0321003757417202, -0.053000226616859436, -0.019394753500819206, 0.12957344949245453, 0.12607404589653015, 0.025250762701034546, 1.2397921085357666, 0.14524881541728973, 0.04205264523625374, -0.03947603702545166, -0.6861568093299866, -0.8439651131629944, 0.8872401118278503, -0.08342219144105911, -0.5682200789451599, -0.34929221868515015, -0.5249210596084595]} +{"t": 8.6184, "q": [-0.3113180100917816, 0.0009510675445199013, -0.004231838975101709, 0.6156802177429199, -0.3207312524318695, -0.0034367400221526623, -0.3601156175136566, 0.014214888215065002, -0.013874003663659096, 0.612313985824585, -0.2946104407310486, -0.018220990896224976, 0.032006628811359406, -0.05335747450590134, -0.019634218886494637, 0.12950153648853302, 0.12639762461185455, 0.025226794183254242, 1.239768147468567, 0.14521285891532898, 0.042028676718473434, -0.03946405276656151, -0.6870796084403992, -0.846397876739502, 0.8872401118278503, -0.08184027671813965, -0.5682560205459595, -0.34929221868515015, -0.5252206325531006]} +{"t": 8.6353, "q": [-0.31130096316337585, 0.0009340234100818634, -0.004205055069178343, 0.615748405456543, -0.3207312524318695, -0.0034367400221526623, -0.3600304126739502, 0.014214888215065002, -0.013807044364511967, 0.6120583415031433, -0.2944817543029785, -0.01809859089553356, 0.03191288560628891, -0.053532302379608154, -0.019751405343413353, 0.12957344949245453, 0.12657739222049713, 0.02521480992436409, 1.2398160696029663, 0.14527277648448944, 0.04201669245958328, -0.03946405276656151, -0.6880742907524109, -0.848027765750885, 0.8872161507606506, -0.07982692122459412, -0.5682680010795593, -0.3493761122226715, -0.5256280899047852]} +{"t": 8.6521, "q": [-0.311292439699173, 0.000976633746176958, -0.004178271628916264, 0.6158421635627747, -0.3207312524318695, -0.0034367400221526623, -0.3598940670490265, 0.014214888215065002, -0.013807044364511967, 0.6116833686828613, -0.2943863570690155, -0.017947111278772354, 0.0317789688706398, -0.05357801914215088, -0.01980145461857319, 0.12956145405769348, 0.1266852468252182, 0.025202825665473938, 1.2398879528045654, 0.1452368199825287, 0.04201669245958328, -0.03947603702545166, -0.6889851093292236, -0.8485430479049683, 0.8872281312942505, -0.07799334079027176, -0.5682560205459595, -0.34943604469299316, -0.5261673927307129]} +{"t": 8.6688, "q": [-0.3113180100917816, 0.0009936783462762833, -0.004178271628916264, 0.6158592104911804, -0.3207230865955353, -0.0034511780831962824, -0.3597576916217804, 0.014240454882383347, -0.013740085065364838, 0.6113680601119995, -0.294295072555542, -0.017817340791225433, 0.03176557645201683, -0.053577907383441925, -0.01978197507560253, 0.12952551245689392, 0.12678112089633942, 0.025178857147693634, 1.2398879528045654, 0.1452607959508896, 0.042028676718473434, -0.039500005543231964, -0.6894644498825073, -0.8485430479049683, 0.8872281312942505, -0.07654324918985367, -0.568291962146759, -0.34943604469299316, -0.52675461769104]} +{"t": 8.6856, "q": [-0.31136059761047363, 0.0010448107495903969, -0.004178271628916264, 0.6158677339553833, -0.32071056962013245, -0.0034292840864509344, -0.3597065806388855, 0.014283065684139729, -0.013753476552665234, 0.6110697388648987, -0.2941872179508209, -0.01765868440270424, 0.03171201050281525, -0.053562819957733154, -0.019791264086961746, 0.12959741055965424, 0.12681707739830017, 0.025166872888803482, 1.2398879528045654, 0.14522483944892883, 0.04200470820069313, -0.039511989802122116, -0.6897521018981934, -0.8485790491104126, 0.8872161507606506, -0.074913389980793, -0.568291962146759, -0.34943604469299316, -0.5274018049240112]} +{"t": 8.7024, "q": [-0.3113691210746765, 0.0010874215513467789, -0.004178271628916264, 0.6159443855285645, -0.320718914270401, -0.003443880006670952, -0.359672486782074, 0.014368286356329918, -0.013753476552665234, 0.6108396649360657, -0.294145792722702, -0.01752866432070732, 0.031671833246946335, -0.05357041582465172, -0.019796356558799744, 0.12954947352409363, 0.12680508196353912, 0.025166872888803482, 1.2399239540100098, 0.14521285891532898, 0.04199272394180298, -0.039500005543231964, -0.6898719072341919, -0.8485910296440125, 0.8871921896934509, -0.07337941229343414, -0.5682560205459595, -0.34941208362579346, -0.5281447768211365]} +{"t": 8.7191, "q": [-0.3114202618598938, 0.0011555985547602177, -0.004178271628916264, 0.6159699559211731, -0.3207148313522339, -0.0034510991536080837, -0.3596213459968567, 0.014359764754772186, -0.013753476552665234, 0.6106522083282471, -0.2941209077835083, -0.017470911145210266, 0.031645048409700394, -0.053562819957733154, -0.019791264086961746, 0.12954947352409363, 0.12679310142993927, 0.025178857147693634, 1.2399479150772095, 0.14522483944892883, 0.04199272394180298, -0.03948802128434181, -0.6898359656333923, -0.8485430479049683, 0.8871921896934509, -0.07176154106855392, -0.568291962146759, -0.34943604469299316, -0.5289717316627502]} +{"t": 8.7358, "q": [-0.3114202618598938, 0.0011726426891982555, -0.004178271628916264, 0.6159699559211731, -0.32071056962013245, -0.0034292840864509344, -0.3595616817474365, 0.014368286356329918, -0.013766868971288204, 0.6105414032936096, -0.29410427808761597, -0.01748546026647091, 0.031511131674051285, -0.053577907383441925, -0.01978197507560253, 0.12956145405769348, 0.12681707739830017, 0.025178857147693634, 1.2399358749389648, 0.1452607959508896, 0.04199272394180298, -0.039500005543231964, -0.6897281408309937, -0.848567008972168, 0.8872281312942505, -0.07025153189897537, -0.5682680010795593, -0.34943604469299316, -0.5299783945083618]} +{"t": 8.7526, "q": [-0.3114202618598938, 0.0011896868236362934, -0.004178271628916264, 0.6159699559211731, -0.3207147419452667, -0.0034365819301456213, -0.35955315828323364, 0.014393853023648262, -0.013766868971288204, 0.6104476451873779, -0.2941126227378845, -0.017456484958529472, 0.03140399605035782, -0.053555216640233994, -0.01978616788983345, 0.1296093910932541, 0.12682905793190002, 0.025142904371023178, 1.2399718761444092, 0.1452607959508896, 0.04195677116513252, -0.039511989802122116, -0.68963223695755, -0.8485910296440125, 0.8872281312942505, -0.0688973143696785, -0.5682799816131592, -0.349448025226593, -0.5314404964447021]} +{"t": 8.7693, "q": [-0.31143730878829956, 0.0012237750925123692, -0.004178271628916264, 0.6159443855285645, -0.3207107484340668, -0.003458318067714572, -0.35950204730033875, 0.01447055209428072, -0.013753476552665234, 0.6103283166885376, -0.2940918207168579, -0.017492743209004402, 0.031337037682533264, -0.05355510115623474, -0.019766688346862793, 0.12952551245689392, 0.12684103846549988, 0.025142904371023178, 1.2399718761444092, 0.14532071352005005, 0.04195677116513252, -0.039511989802122116, -0.6895723342895508, -0.848567008972168, 0.8872281312942505, -0.06751912832260132, -0.5682799816131592, -0.349448025226593, -0.5336455702781677]} +{"t": 8.7861, "q": [-0.3114543557167053, 0.001291952095925808, -0.004205055069178343, 0.6159103512763977, -0.3207230865955353, -0.0034511780831962824, -0.35950204730033875, 0.014444985426962376, -0.01379365287721157, 0.6102175712585449, -0.29406270384788513, -0.017543496564030647, 0.03129686042666435, -0.05355510115623474, -0.019766688346862793, 0.12957344949245453, 0.12681707739830017, 0.025142904371023178, 1.2399718761444092, 0.14529675245285034, 0.04195677116513252, -0.039511989802122116, -0.6895363926887512, -0.8482913970947266, 0.8872161507606506, -0.06614094227552414, -0.5683039426803589, -0.3494719862937927, -0.5358386635780334]} +{"t": 8.8029, "q": [-0.3114714026451111, 0.001326040830463171, -0.004231838975101709, 0.6158847808837891, -0.3207107484340668, -0.003458318067714572, -0.3594338595867157, 0.014487596228718758, -0.013833828270435333, 0.6101323366165161, -0.2937715947628021, -0.01797867938876152, 0.03141738846898079, -0.05354750156402588, -0.019761595875024796, 0.12957344949245453, 0.12681707739830017, 0.025142904371023178, 1.2400437593460083, 0.14529675245285034, 0.04193280264735222, -0.039511989802122116, -0.6895843148231506, -0.8477640748023987, 0.8872520923614502, -0.06478672474622726, -0.568291962146759, -0.3494719862937927, -0.5374805331230164]} +{"t": 8.8197, "q": [-0.3115054965019226, 0.0013601290993392467, -0.004312190227210522, 0.6158251166343689, -0.3207065761089325, -0.0034510199911892414, -0.3594338595867157, 0.014547251164913177, -0.013927571475505829, 0.6100385785102844, -0.29369252920150757, -0.018145347014069557, 0.031484346836805344, -0.05351715534925461, -0.01975095272064209, 0.12959741055965424, 0.12675714492797852, 0.025178857147693634, 1.2400556802749634, 0.1453087329864502, 0.041968755424022675, -0.039511989802122116, -0.689488410949707, -0.8472967147827148, 0.8872520923614502, -0.0634564757347107, -0.5683159232139587, -0.3494839668273926, -0.5390264987945557]} +{"t": 8.8364, "q": [-0.3115140199661255, 0.0013856953009963036, -0.004338974133133888, 0.6157569289207458, -0.3207024037837982, -0.0034437221474945545, -0.3594253361225128, 0.014632471837103367, -0.014007923193275928, 0.6098937392234802, -0.29370084404945374, -0.018130850046873093, 0.031484346836805344, -0.05349435284733772, -0.01973566971719265, 0.1296093910932541, 0.12679310142993927, 0.025142904371023178, 1.2400916814804077, 0.1452607959508896, 0.04198073968291283, -0.039500005543231964, -0.6890809535980225, -0.8470690250396729, 0.8873120546340942, -0.06241384521126747, -0.5683159232139587, -0.34949594736099243, -0.5407042503356934]} +{"t": 8.8532, "q": [-0.3115140199661255, 0.0014368281699717045, -0.004325582180172205, 0.6156546473503113, -0.3207148313522339, -0.0034510991536080837, -0.3593827188014984, 0.014615427702665329, -0.014007923193275928, 0.609765887260437, -0.29365092515945435, -0.018217861652374268, 0.03147095441818237, -0.05343354493379593, -0.01969490945339203, 0.12956145405769348, 0.12678112089633942, 0.025142904371023178, 1.240127682685852, 0.1452847570180893, 0.04198073968291283, -0.03952397406101227, -0.6888652443885803, -0.8469012379646301, 0.8873719573020935, -0.06127534434199333, -0.5683039426803589, -0.3495079576969147, -0.543256938457489]} +{"t": 8.87, "q": [-0.3115054965019226, 0.0014794389717280865, -0.004325582180172205, 0.6156120300292969, -0.32070666551589966, -0.00346553698182106, -0.35936567187309265, 0.014649515971541405, -0.014007923193275928, 0.6096636056900024, -0.2936301529407501, -0.018254103139042854, 0.03144416958093643, -0.05338028073310852, -0.019649505615234375, 0.12953749299049377, 0.12675714492797852, 0.025142904371023178, 1.240127682685852, 0.1452607959508896, 0.04199272394180298, -0.039500005543231964, -0.6887574195861816, -0.8468053340911865, 0.8873240351676941, -0.06019676476716995, -0.5683279037475586, -0.3494839668273926, -0.545138418674469]} +{"t": 8.8867, "q": [-0.3114543557167053, 0.0015305713750422, -0.004312190227210522, 0.6154842376708984, -0.32070666551589966, -0.00346553698182106, -0.35936567187309265, 0.014768825843930244, -0.013967746868729591, 0.609620988368988, -0.2936176657676697, -0.01827586442232132, 0.03125668317079544, -0.05337267741560936, -0.01964440941810608, 0.12954947352409363, 0.12678112089633942, 0.025142904371023178, 1.2402474880218506, 0.14527277648448944, 0.04198073968291283, -0.039511989802122116, -0.6887813806533813, -0.8466735482215881, 0.8872161507606506, -0.05902231112122536, -0.5683878064155579, -0.3495079576969147, -0.5460372567176819]} +{"t": 8.9035, "q": [-0.31143730878829956, 0.0015305713750422, -0.004312190227210522, 0.615441620349884, -0.32070666551589966, -0.00346553698182106, -0.359297513961792, 0.014845524914562702, -0.014007923193275928, 0.6095783710479736, -0.29360517859458923, -0.01831206865608692, 0.03122990019619465, -0.053372737020254135, -0.019654149189591408, 0.12954947352409363, 0.12678112089633942, 0.02515488862991333, 1.2402714490890503, 0.1453087329864502, 0.04199272394180298, -0.039511989802122116, -0.6888293027877808, -0.8465057611465454, 0.8871442675590515, -0.05753626674413681, -0.5683638453483582, -0.34956786036491394, -0.5469000935554504]} +{"t": 8.9202, "q": [-0.3114287853240967, 0.001539093442261219, -0.004325582180172205, 0.6154245734214783, -0.3207067847251892, -0.0034800542052835226, -0.35926342010498047, 0.014854047447443008, -0.014007923193275928, 0.6095783710479736, -0.29357606172561646, -0.018348362296819687, 0.03127007558941841, -0.0533650778234005, -0.019639315083622932, 0.12952551245689392, 0.12678112089633942, 0.025142904371023178, 1.2403672933578491, 0.1452847570180893, 0.04199272394180298, -0.039511989802122116, -0.6888652443885803, -0.8463619351387024, 0.8871322870254517, -0.05625395476818085, -0.5684118270874023, -0.34956786036491394, -0.5478948354721069]} +{"t": 8.9369, "q": [-0.31144583225250244, 0.0015305713750422, -0.004325582180172205, 0.6154160499572754, -0.32070261240005493, -0.003472756128758192, -0.3592463731765747, 0.01483700331300497, -0.014021314680576324, 0.609552800655365, -0.2935885190963745, -0.018341077491641045, 0.03131025284528732, -0.0533498153090477, -0.01961938478052616, 0.12958543002605438, 0.12678112089633942, 0.025142904371023178, 1.2403912544250488, 0.1452847570180893, 0.04200470820069313, -0.03952397406101227, -0.6886734962463379, -0.8462061285972595, 0.8871322870254517, -0.05518735572695732, -0.5684477686882019, -0.3495558798313141, -0.5490453243255615]} +{"t": 8.9537, "q": [-0.31144583225250244, 0.0015305713750422, -0.004325582180172205, 0.6154160499572754, -0.32070666551589966, -0.00346553698182106, -0.3592122793197632, 0.014871091581881046, -0.014021314680576324, 0.6095187664031982, -0.29354697465896606, -0.018370194360613823, 0.031337037682533264, -0.05331181362271309, -0.01959391124546528, 0.12958543002605438, 0.12676914036273956, 0.025118935853242874, 1.2404032945632935, 0.14529675245285034, 0.04201669245958328, -0.039511989802122116, -0.6883019804954529, -0.8460023999214172, 0.8871682286262512, -0.05422861874103546, -0.5684118270874023, -0.34956786036491394, -0.5503995418548584]} +{"t": 8.9704, "q": [-0.3114202618598938, 0.0014964831061661243, -0.004298798739910126, 0.6154330968856812, -0.32070666551589966, -0.00346553698182106, -0.3591611683368683, 0.01492222398519516, -0.014034707099199295, 0.6095102429389954, -0.29355114698410034, -0.018362928181886673, 0.03131025284528732, -0.053251005709171295, -0.019553150981664658, 0.12953749299049377, 0.12678112089633942, 0.02515488862991333, 1.2404272556304932, 0.14524881541728973, 0.042028676718473434, -0.039500005543231964, -0.6877626776695251, -0.8457507491111755, 0.8871682286262512, -0.05344964563846588, -0.5684238076210022, -0.34956786036491394, -0.5518855452537537]} +{"t": 8.9872, "q": [-0.3114287853240967, 0.0014794389717280865, -0.004298798739910126, 0.6154160499572754, -0.32070666551589966, -0.00346553698182106, -0.35912707448005676, 0.01492222398519516, -0.014048098586499691, 0.609467625617981, -0.29354703426361084, -0.01832679472863674, 0.03128346800804138, -0.05325094610452652, -0.01954340934753418, 0.12954947352409363, 0.12676914036273956, 0.025130920112133026, 1.2405470609664917, 0.14532071352005005, 0.04201669245958328, -0.039500005543231964, -0.6870197057723999, -0.845487117767334, 0.8871682286262512, -0.0529463067650795, -0.568375825881958, -0.3495558798313141, -0.5538150072097778]} +{"t": 9.0046, "q": [-0.31140321493148804, 0.0014538723044097424, -0.004325582180172205, 0.6153990030288696, -0.32070666551589966, -0.00346553698182106, -0.35905036330223083, 0.01492222398519516, -0.014048098586499691, 0.6094420552253723, -0.293555349111557, -0.018312299624085426, 0.03128346800804138, -0.05325094610452652, -0.01954340934753418, 0.12958543002605438, 0.12675714492797852, 0.025130920112133026, 1.2405470609664917, 0.14527277648448944, 0.042028676718473434, -0.03952397406101227, -0.6863605380058289, -0.8453672528266907, 0.8871322870254517, -0.05275455862283707, -0.568435788154602, -0.34954389929771423, -0.555660605430603]} +{"t": 9.0214, "q": [-0.31136059761047363, 0.0014453502371907234, -0.004298798739910126, 0.6154075264930725, -0.32070666551589966, -0.00346553698182106, -0.35900774598121643, 0.014896657317876816, -0.014021314680576324, 0.6093823909759521, -0.29357194900512695, -0.018297767266631126, 0.03129686042666435, -0.05325860157608986, -0.019558243453502655, 0.12957344949245453, 0.1267331838607788, 0.025106951594352722, 1.2405470609664917, 0.1452368199825287, 0.04200470820069313, -0.039511989802122116, -0.6854977011680603, -0.8452953696250916, 0.8871682286262512, -0.05271860584616661, -0.5684238076210022, -0.3495558798313141, -0.5578057765960693]} +{"t": 9.0382, "q": [-0.31134355068206787, 0.0014197840355336666, -0.004298798739910126, 0.6154160499572754, -0.32071900367736816, -0.0034583969973027706, -0.35895663499832153, 0.014913702383637428, -0.014007923193275928, 0.6093056797981262, -0.2935636639595032, -0.01829780451953411, 0.03124329261481762, -0.053266093134880066, -0.019543861970305443, 0.12954947352409363, 0.12672120332717896, 0.025118935853242874, 1.240523099899292, 0.14529675245285034, 0.04200470820069313, -0.039511989802122116, -0.684922456741333, -0.8453073501586914, 0.8871442675590515, -0.052742574363946915, -0.5684118270874023, -0.34954389929771423, -0.5593996644020081]} +{"t": 9.0549, "q": [-0.3113350570201874, 0.0014368281699717045, -0.004298798739910126, 0.6153904795646667, -0.32071900367736816, -0.0034583969973027706, -0.35889697074890137, 0.014888135716319084, -0.014007923193275928, 0.6091267466545105, -0.29359695315361023, -0.018196385353803635, 0.03127007558941841, -0.053273752331733704, -0.019558696076273918, 0.1296093910932541, 0.12672120332717896, 0.025178857147693634, 1.240583062171936, 0.1452368199825287, 0.04200470820069313, -0.039511989802122116, -0.6842752695083618, -0.8452593684196472, 0.8871921896934509, -0.052742574363946915, -0.568435788154602, -0.34956786036491394, -0.5612332224845886]} +{"t": 9.0716, "q": [-0.3113350570201874, 0.0014283061027526855, -0.004325582180172205, 0.6153904795646667, -0.3207230865955353, -0.0034511780831962824, -0.35885435342788696, 0.014888135716319084, -0.014048098586499691, 0.6089818477630615, -0.293597012758255, -0.018153004348278046, 0.03131025284528732, -0.05327380448579788, -0.019568433985114098, 0.1296093910932541, 0.1267331838607788, 0.025142904371023178, 1.2405470609664917, 0.1453326940536499, 0.04200470820069313, -0.03952397406101227, -0.6833764910697937, -0.8452234268188477, 0.8872281312942505, -0.052742574363946915, -0.5684238076210022, -0.3495798408985138, -0.5637139678001404]} +{"t": 9.0884, "q": [-0.31136059761047363, 0.0014368281699717045, -0.004379149992018938, 0.615373432636261, -0.3207271695137024, -0.0034439589362591505, -0.3588287830352783, 0.014871091581881046, -0.014074882492423058, 0.6088625192642212, -0.2935970425605774, -0.018109621480107307, 0.03144416958093643, -0.05328895524144173, -0.01956888660788536, 0.12956145405769348, 0.12675714492797852, 0.025130920112133026, 1.2405591011047363, 0.14529675245285034, 0.04199272394180298, -0.03952397406101227, -0.6824057698249817, -0.845115602016449, 0.8872281312942505, -0.052742574363946915, -0.5684238076210022, -0.34956786036491394, -0.56597900390625]} +{"t": 9.1051, "q": [-0.3113691210746765, 0.0014453502371907234, -0.004432717338204384, 0.6153904795646667, -0.3207271695137024, -0.0034439589362591505, -0.3588373064994812, 0.014879613183438778, -0.014074882492423058, 0.608717679977417, -0.2937426269054413, -0.017855852842330933, 0.03143078088760376, -0.053281351923942566, -0.019563790410757065, 0.12953749299049377, 0.12672120332717896, 0.025142904371023178, 1.2405591011047363, 0.14527277648448944, 0.04199272394180298, -0.03952397406101227, -0.6816148161888123, -0.8450316786766052, 0.8872281312942505, -0.05275455862283707, -0.5684118270874023, -0.3495558798313141, -0.567405104637146]} +{"t": 9.1219, "q": [-0.31140321493148804, 0.0014368281699717045, -0.00445950124412775, 0.615373432636261, -0.3207271695137024, -0.0034439589362591505, -0.3588287830352783, 0.014828480780124664, -0.014088273979723454, 0.608572781085968, -0.2937842011451721, -0.017768878489732742, 0.03137721121311188, -0.05328895524144173, -0.01956888660788536, 0.12958543002605438, 0.12672120332717896, 0.025142904371023178, 1.2405591011047363, 0.14524881541728973, 0.04198073968291283, -0.039511989802122116, -0.6809436678886414, -0.844971776008606, 0.88726407289505, -0.05275455862283707, -0.5683638453483582, -0.34956786036491394, -0.5685915946960449]} +{"t": 9.1389, "q": [-0.31143730878829956, 0.0014709164388477802, -0.004472893197089434, 0.6153478622436523, -0.3207271695137024, -0.0034439589362591505, -0.3588373064994812, 0.014794392511248589, -0.014048098586499691, 0.6083597540855408, -0.29379257559776306, -0.017725443467497826, 0.03139060363173485, -0.05327380448579788, -0.019568433985114098, 0.12959741055965424, 0.12672120332717896, 0.025130920112133026, 1.2405591011047363, 0.14527277648448944, 0.041968755424022675, -0.039511989802122116, -0.6801766753196716, -0.8449837565422058, 0.8873000741004944, -0.052742574363946915, -0.5684238076210022, -0.34956786036491394, -0.5701495409011841]} +{"t": 9.1556, "q": [-0.3114543557167053, 0.0015220493078231812, -0.0044996771030128, 0.6152881979942322, -0.3207271695137024, -0.0034439589362591505, -0.3588458299636841, 0.014768825843930244, -0.014048098586499691, 0.6081040501594543, -0.2937718331813812, -0.017674902454018593, 0.031323645263910294, -0.05327380448579788, -0.019568433985114098, 0.12957344949245453, 0.1267331838607788, 0.025142904371023178, 1.2405710220336914, 0.1452368199825287, 0.041968755424022675, -0.03953595831990242, -0.6793617606163025, -0.8449957370758057, 0.8873240351676941, -0.052742574363946915, -0.5684238076210022, -0.34956786036491394, -0.5720310211181641]} +{"t": 9.1723, "q": [-0.31152254343032837, 0.0015646601095795631, -0.0045130690559744835, 0.6152370572090149, -0.3207312524318695, -0.0034367400221526623, -0.3588373064994812, 0.014794392511248589, -0.014074882492423058, 0.6079506874084473, -0.2937510907649994, -0.017653299495577812, 0.03129686042666435, -0.053281351923942566, -0.019563790410757065, 0.12957344949245453, 0.12675714492797852, 0.025142904371023178, 1.2405710220336914, 0.1452607959508896, 0.041968755424022675, -0.03953595831990242, -0.6785468459129333, -0.8449837565422058, 0.8873240351676941, -0.052742574363946915, -0.5684597492218018, -0.34956786036491394, -0.5738646388053894]} +{"t": 9.1891, "q": [-0.31153103709220886, 0.0016243145801126957, -0.0045264605432748795, 0.6151859164237976, -0.32073545455932617, -0.003444056259468198, -0.3588287830352783, 0.014794392511248589, -0.014048098586499691, 0.6078143119812012, -0.2937178313732147, -0.017682380974292755, 0.03122990019619465, -0.05327380448579788, -0.019568433985114098, 0.12951351702213287, 0.12676914036273956, 0.025130920112133026, 1.2405949831008911, 0.14527277648448944, 0.04195677116513252, -0.03952397406101227, -0.677971601486206, -0.8449597954750061, 0.8873479962348938, -0.052742574363946915, -0.5684837102890015, -0.3495798408985138, -0.5754824876785278]} +{"t": 9.2058, "q": [-0.31153956055641174, 0.0016243145801126957, -0.0045264605432748795, 0.6151007413864136, -0.32073941826820374, -0.003422284033149481, -0.3588458299636841, 0.014794392511248589, -0.014048098586499691, 0.6077461242675781, -0.2937261760234833, -0.01765342429280281, 0.03122990019619465, -0.05327380448579788, -0.019568433985114098, 0.12954947352409363, 0.12678112089633942, 0.025142904371023178, 1.2405710220336914, 0.14524881541728973, 0.041968755424022675, -0.03953595831990242, -0.6776599884033203, -0.8449957370758057, 0.8874078989028931, -0.052742574363946915, -0.5684477686882019, -0.3495558798313141, -0.5771123766899109]} +{"t": 9.2226, "q": [-0.3115566074848175, 0.0016328366473317146, -0.0045130690559744835, 0.6150496006011963, -0.3207271695137024, -0.0034439589362591505, -0.3588373064994812, 0.014794392511248589, -0.014048098586499691, 0.6077035069465637, -0.29356810450553894, -0.017928918823599815, 0.03125668317079544, -0.05327380448579788, -0.019568433985114098, 0.12957344949245453, 0.12678112089633942, 0.025142904371023178, 1.2405949831008911, 0.14527277648448944, 0.04198073968291283, -0.03953595831990242, -0.6773963570594788, -0.8449957370758057, 0.8874918222427368, -0.052742574363946915, -0.5684597492218018, -0.34959182143211365, -0.5790178179740906]} +{"t": 9.2396, "q": [-0.31157365441322327, 0.0016328366473317146, -0.004553244449198246, 0.6150325536727905, -0.3207436203956604, -0.0034296002704650164, -0.35885435342788696, 0.014819959178566933, -0.014088273979723454, 0.6076694130897522, -0.2934350073337555, -0.018146466463804245, 0.03125668317079544, -0.05328129604458809, -0.019554052501916885, 0.12956145405769348, 0.12679310142993927, 0.025142904371023178, 1.2405949831008911, 0.1453087329864502, 0.04199272394180298, -0.03952397406101227, -0.6772525310516357, -0.8449597954750061, 0.8875876665115356, -0.05276654288172722, -0.5685076713562012, -0.3496277928352356, -0.5809832811355591]} +{"t": 9.2563, "q": [-0.31157365441322327, 0.0016413591802120209, -0.004539852496236563, 0.614998459815979, -0.3207271695137024, -0.0034439589362591505, -0.35885435342788696, 0.014845524914562702, -0.01411505788564682, 0.6076523661613464, -0.2934059202671051, -0.01815382018685341, 0.03124329261481762, -0.05326620489358902, -0.01956333965063095, 0.12951351702213287, 0.12679310142993927, 0.025142904371023178, 1.2406549453735352, 0.1452607959508896, 0.04200470820069313, -0.03952397406101227, -0.6772405505180359, -0.844971776008606, 0.8878033757209778, -0.052742574363946915, -0.5684597492218018, -0.3496517539024353, -0.5829966068267822]} +{"t": 9.2731, "q": [-0.31157365441322327, 0.0016584033146500587, -0.004539852496236563, 0.6149643659591675, -0.3207230865955353, -0.0034511780831962824, -0.3588799238204956, 0.014888135716319084, -0.014141841791570187, 0.6076098084449768, -0.29341423511505127, -0.018139325082302094, 0.03125668317079544, -0.05328889563679695, -0.019559144973754883, 0.12956145405769348, 0.12679310142993927, 0.025118935853242874, 1.2406668663024902, 0.14527277648448944, 0.04200470820069313, -0.039511989802122116, -0.6772165894508362, -0.844971776008606, 0.8882827758789062, -0.052742574363946915, -0.5684477686882019, -0.34968769550323486, -0.5853814482688904]} +{"t": 9.2899, "q": [-0.3115651309490204, 0.0016498812474310398, -0.0045264605432748795, 0.6149387955665588, -0.3207230865955353, -0.0034511780831962824, -0.35886287689208984, 0.014879613183438778, -0.014155233278870583, 0.6076268553733826, -0.29339346289634705, -0.01817556470632553, 0.03124329261481762, -0.05326614901423454, -0.019553599879145622, 0.12956145405769348, 0.12679310142993927, 0.025118935853242874, 1.2406549453735352, 0.14532071352005005, 0.04201669245958328, -0.03953595831990242, -0.6772165894508362, -0.8449957370758057, 0.889133632183075, -0.052742574363946915, -0.568435788154602, -0.34968769550323486, -0.5876704454421997]} +{"t": 9.3067, "q": [-0.31152254343032837, 0.0016498812474310398, -0.0045130690559744835, 0.6149132251739502, -0.3207271695137024, -0.0034439589362591505, -0.35886287689208984, 0.014939268119633198, -0.014155233278870583, 0.6076268553733826, -0.29334354400634766, -0.018262576311826706, 0.03125668317079544, -0.05326614901423454, -0.019553599879145622, 0.12951351702213287, 0.12681707739830017, 0.025130920112133026, 1.2406668663024902, 0.14529675245285034, 0.04201669245958328, -0.039511989802122116, -0.677228569984436, -0.8449837565422058, 0.890020489692688, -0.05273059010505676, -0.5684477686882019, -0.349675714969635, -0.589072585105896]} +{"t": 9.3234, "q": [-0.31157365441322327, 0.0016584033146500587, -0.0044996771030128, 0.6149217486381531, -0.3207230865955353, -0.0034511780831962824, -0.35885435342788696, 0.014939268119633198, -0.014141841791570187, 0.6076353788375854, -0.2933352291584015, -0.018248150125145912, 0.03122990019619465, -0.05327369272708893, -0.01954895444214344, 0.12952551245689392, 0.12680508196353912, 0.025130920112133026, 1.2406789064407349, 0.1452368199825287, 0.04200470820069313, -0.03953595831990242, -0.6772165894508362, -0.8449957370758057, 0.8911229968070984, -0.052682653069496155, -0.568519651889801, -0.3496517539024353, -0.5904387831687927]} +{"t": 9.3402, "q": [-0.3115566074848175, 0.0016328366473317146, -0.0044996771030128, 0.6148876547813416, -0.3207271695137024, -0.0034439589362591505, -0.3588373064994812, 0.014947790652513504, -0.014141841791570187, 0.6076523661613464, -0.2933310866355896, -0.01824093796312809, 0.031162941828370094, -0.053258489817380905, -0.019538765773177147, 0.1296093910932541, 0.12679310142993927, 0.025118935853242874, 1.2406789064407349, 0.1452847570180893, 0.04201669245958328, -0.03952397406101227, -0.6771566867828369, -0.8449837565422058, 0.892045795917511, -0.05252685770392418, -0.5684238076210022, -0.34963977336883545, -0.5919727683067322]} +{"t": 9.3569, "q": [-0.3115566074848175, 0.0016413591802120209, -0.004486285150051117, 0.6149132251739502, -0.3207271695137024, -0.0034439589362591505, -0.3588458299636841, 0.01498187892138958, -0.01412845030426979, 0.6076694130897522, -0.2933269441127777, -0.018248185515403748, 0.031122766435146332, -0.05324328690767288, -0.019528575241565704, 0.1296093910932541, 0.12680508196353912, 0.025178857147693634, 1.2406789064407349, 0.14527277648448944, 0.04201669245958328, -0.03952397406101227, -0.6770128607749939, -0.844971776008606, 0.892932653427124, -0.05216733366250992, -0.5684477686882019, -0.34961581230163574, -0.5932910442352295]} +{"t": 9.3737, "q": [-0.3115480840206146, 0.0016072704456746578, -0.00445950124412775, 0.6149132251739502, -0.32071495056152344, -0.0034656161442399025, -0.3588458299636841, 0.015015967190265656, -0.01412845030426979, 0.6077120304107666, -0.2933228015899658, -0.018240973353385925, 0.03108258917927742, -0.053220488131046295, -0.019513292238116264, 0.1296093910932541, 0.12678112089633942, 0.025142904371023178, 1.2406789064407349, 0.14529675245285034, 0.04201669245958328, -0.03953595831990242, -0.6767851710319519, -0.8449597954750061, 0.893903374671936, -0.05183177441358566, -0.5684118270874023, -0.3496277928352356, -0.5944894552230835]} +{"t": 9.3904, "q": [-0.31153956055641174, 0.0016157925128936768, -0.004472893197089434, 0.614930272102356, -0.3207230865955353, -0.0034511780831962824, -0.35881173610687256, 0.015050055459141731, -0.014155233278870583, 0.6077376008033752, -0.29331862926483154, -0.018248222768306732, 0.031122766435146332, -0.053220488131046295, -0.019513292238116264, 0.12959741055965424, 0.12678112089633942, 0.025142904371023178, 1.2406789064407349, 0.14524881541728973, 0.04200470820069313, -0.039511989802122116, -0.6763057708740234, -0.8449597954750061, 0.8943707346916199, -0.051663994789123535, -0.5684597492218018, -0.34961581230163574, -0.5953763127326965]} +{"t": 9.4071, "q": [-0.3115054965019226, 0.0016072704456746578, -0.00445950124412775, 0.614930272102356, -0.32070648670196533, -0.0034365030005574226, -0.3587776720523834, 0.015041533857584, -0.01411505788564682, 0.6077461242675781, -0.29331862926483154, -0.018262682482600212, 0.03109598159790039, -0.05322803184390068, -0.019508646801114082, 0.12959741055965424, 0.12678112089633942, 0.025142904371023178, 1.2406789064407349, 0.14527277648448944, 0.04201669245958328, -0.03953595831990242, -0.6756346821784973, -0.844971776008606, 0.8945744633674622, -0.05159208923578262, -0.5684477686882019, -0.3496277928352356, -0.5963230729103088]} +{"t": 9.4238, "q": [-0.31147992610931396, 0.0016072704456746578, -0.004472893197089434, 0.6149217486381531, -0.32071900367736816, -0.0034583969973027706, -0.3587776720523834, 0.014930746518075466, -0.01412845030426979, 0.6077461242675781, -0.293331116437912, -0.018211999908089638, 0.03109598159790039, -0.053220488131046295, -0.019513292238116264, 0.12958543002605438, 0.12679310142993927, 0.025142904371023178, 1.2406668663024902, 0.14522483944892883, 0.04200470820069313, -0.039511989802122116, -0.6747238636016846, -0.8449118733406067, 0.8946104049682617, -0.051604073494672775, -0.5684837102890015, -0.3496277928352356, -0.5974376201629639]} +{"t": 9.4406, "q": [-0.3114714026451111, 0.0016072704456746578, -0.004472893197089434, 0.614930272102356, -0.32071900367736816, -0.0034583969973027706, -0.3587776720523834, 0.014973356388509274, -0.01412845030426979, 0.6077631711959839, -0.293331116437912, -0.018211999908089638, 0.031122766435146332, -0.053220488131046295, -0.019513292238116264, 0.12959741055965424, 0.12679310142993927, 0.025118935853242874, 1.24069082736969, 0.1452368199825287, 0.04201669245958328, -0.03953595831990242, -0.6737890839576721, -0.8449118733406067, 0.894646406173706, -0.05159208923578262, -0.5684238076210022, -0.34963977336883545, -0.5991633534431458]} +{"t": 9.4573, "q": [-0.3114714026451111, 0.0016157925128936768, -0.0044996771030128, 0.6149643659591675, -0.32071495056152344, -0.0034656161442399025, -0.3587521016597748, 0.014947790652513504, -0.01412845030426979, 0.6077716946601868, -0.29333943128585815, -0.018226424232125282, 0.031136156991124153, -0.053220488131046295, -0.019513292238116264, 0.12957344949245453, 0.12679310142993927, 0.025118935853242874, 1.24069082736969, 0.14527277648448944, 0.04201669245958328, -0.039511989802122116, -0.6727105379104614, -0.8449118733406067, 0.894646406173706, -0.05158010497689247, -0.5684238076210022, -0.34961581230163574, -0.6016080975532532]} +{"t": 9.4742, "q": [-0.3114543557167053, 0.0016072704456746578, -0.0044996771030128, 0.6149387955665588, -0.3207148313522339, -0.0034510991536080837, -0.35876062512397766, 0.014973356388509274, -0.014141841791570187, 0.6077972650527954, -0.2933727204799652, -0.01815396174788475, 0.031136156991124153, -0.053220488131046295, -0.019513292238116264, 0.12957344949245453, 0.12676914036273956, 0.025130920112133026, 1.2407028675079346, 0.1452368199825287, 0.04200470820069313, -0.03952397406101227, -0.6717278361320496, -0.8449597954750061, 0.8946703672409058, -0.05156812071800232, -0.5684118270874023, -0.3496277928352356, -0.6038252115249634]} +{"t": 9.4909, "q": [-0.31148844957351685, 0.0016328366473317146, -0.0044996771030128, 0.6149217486381531, -0.3207230865955353, -0.0034511780831962824, -0.35876914858818054, 0.014930746518075466, -0.01412845030426979, 0.6077887415885925, -0.29338517785072327, -0.018146678805351257, 0.031162941828370094, -0.05322808772325516, -0.019518384709954262, 0.129633367061615, 0.12676914036273956, 0.025142904371023178, 1.24069082736969, 0.14524881541728973, 0.04200470820069313, -0.03952397406101227, -0.6707690954208374, -0.844971776008606, 0.8946823477745056, -0.05153216794133186, -0.5684477686882019, -0.34963977336883545, -0.6060063242912292]} +{"t": 9.5076, "q": [-0.3115140199661255, 0.0016498812474310398, -0.0045264605432748795, 0.6149387955665588, -0.32071495056152344, -0.0034656161442399025, -0.35876914858818054, 0.014828480780124664, -0.014141841791570187, 0.6077802181243896, -0.29341843724250793, -0.018088677898049355, 0.031176332384347916, -0.05323569104075432, -0.019523480907082558, 0.12953749299049377, 0.12678112089633942, 0.025118935853242874, 1.24069082736969, 0.14524881541728973, 0.04199272394180298, -0.039511989802122116, -0.6697144508361816, -0.8450556397438049, 0.8947063088417053, -0.05153216794133186, -0.5684477686882019, -0.3496517539024353, -0.6088346242904663]} +{"t": 9.5246, "q": [-0.3114969730377197, 0.0016839695163071156, -0.004553244449198246, 0.614930272102356, -0.3207314610481262, -0.003465792164206505, -0.3587776720523834, 0.01486256904900074, -0.014155233278870583, 0.607754647731781, -0.29338932037353516, -0.0181394312530756, 0.031203117221593857, -0.053220488131046295, -0.019513292238116264, 0.12959741055965424, 0.12676914036273956, 0.025142904371023178, 1.24069082736969, 0.1452368199825287, 0.04198073968291283, -0.039511989802122116, -0.6687437295913696, -0.8450556397438049, 0.894730269908905, -0.05152018368244171, -0.5685076713562012, -0.3496277928352356, -0.611027717590332]} +{"t": 9.5413, "q": [-0.3115054965019226, 0.0016839695163071156, -0.004553244449198246, 0.6148961782455444, -0.3207271695137024, -0.0034439589362591505, -0.3588032126426697, 0.01483700331300497, -0.014155233278870583, 0.6077290773391724, -0.29353076219558716, -0.017892928794026375, 0.031189724802970886, -0.053220488131046295, -0.019513292238116264, 0.12962138652801514, 0.12676914036273956, 0.025142904371023178, 1.2406789064407349, 0.14529675245285034, 0.041968755424022675, -0.03952397406101227, -0.6680126786231995, -0.8450316786766052, 0.8947542309761047, -0.05149621516466141, -0.5685316324234009, -0.3496517539024353, -0.6127175092697144]} +{"t": 9.558, "q": [-0.31152254343032837, 0.0017010136507451534, -0.004566636402159929, 0.61485356092453, -0.3207314610481262, -0.003465792164206505, -0.3588032126426697, 0.014845524914562702, -0.014155233278870583, 0.6077205538749695, -0.2935931384563446, -0.017798632383346558, 0.031176332384347916, -0.05322808772325516, -0.019518384709954262, 0.12959741055965424, 0.12675714492797852, 0.025130920112133026, 1.24069082736969, 0.1452847570180893, 0.04198073968291283, -0.039511989802122116, -0.6672576665878296, -0.8450077176094055, 0.8947781920433044, -0.0514482781291008, -0.5684717297554016, -0.3496517539024353, -0.6140956878662109]} +{"t": 9.5747, "q": [-0.31152254343032837, 0.0017095357179641724, -0.0045800283551216125, 0.6148450374603271, -0.3207230865955353, -0.0034511780831962824, -0.3588458299636841, 0.014845524914562702, -0.014141841791570187, 0.6077120304107666, -0.29353073239326477, -0.017921848222613335, 0.03125668317079544, -0.053220488131046295, -0.019513292238116264, 0.1296093910932541, 0.1267331838607788, 0.025106951594352722, 1.2407028675079346, 0.1453087329864502, 0.04199272394180298, -0.039511989802122116, -0.6665146946907043, -0.8449957370758057, 0.8947781920433044, -0.05143629387021065, -0.5685076713562012, -0.34963977336883545, -0.6151502728462219]} +{"t": 9.5915, "q": [-0.31157365441322327, 0.0017180577851831913, -0.004633595701307058, 0.6148279905319214, -0.3207314610481262, -0.003465792164206505, -0.3588458299636841, 0.01483700331300497, -0.014182017184793949, 0.6076523661613464, -0.2935182452201843, -0.017943592742085457, 0.03127007558941841, -0.05322808772325516, -0.019518384709954262, 0.129633367061615, 0.12676914036273956, 0.025118935853242874, 1.24069082736969, 0.1453087329864502, 0.04198073968291283, -0.039511989802122116, -0.665567934513092, -0.8450436592102051, 0.8947662115097046, -0.051424309611320496, -0.5684956908226013, -0.3496277928352356, -0.6160850524902344]} +{"t": 9.6082, "q": [-0.31157365441322327, 0.0017180577851831913, -0.004646987654268742, 0.6147939562797546, -0.32073137164115906, -0.003451275173574686, -0.3588458299636841, 0.014845524914562702, -0.014222193509340286, 0.6076098084449768, -0.29343917965888977, -0.018110278993844986, 0.03125668317079544, -0.053212884813547134, -0.01950819604098797, 0.129633367061615, 0.12675714492797852, 0.025142904371023178, 1.2406789064407349, 0.14529675245285034, 0.04199272394180298, -0.039511989802122116, -0.6645852327346802, -0.8450316786766052, 0.8947542309761047, -0.051412325352430344, -0.5684956908226013, -0.34963977336883545, -0.6169598698616028]} +{"t": 9.6249, "q": [-0.3115992248058319, 0.0017180577851831913, -0.004673771560192108, 0.6147854328155518, -0.32073137164115906, -0.003451275173574686, -0.3588373064994812, 0.01483700331300497, -0.014275760389864445, 0.6076183319091797, -0.2934100925922394, -0.01813211292028427, 0.03137721121311188, -0.05322808772325516, -0.019518384709954262, 0.12958543002605438, 0.12676914036273956, 0.025142904371023178, 1.24069082736969, 0.14532071352005005, 0.041968755424022675, -0.039500005543231964, -0.6636624336242676, -0.8450436592102051, 0.8947542309761047, -0.051412325352430344, -0.5684837102890015, -0.34963977336883545, -0.6178946495056152]} +{"t": 9.6416, "q": [-0.31158217787742615, 0.0017436244525015354, -0.004673771560192108, 0.6147342920303345, -0.3207312524318695, -0.0034367400221526623, -0.35885435342788696, 0.014879613183438778, -0.014262368902564049, 0.607592761516571, -0.2933851182460785, -0.01820453815162182, 0.03140399605035782, -0.05322808772325516, -0.019518384709954262, 0.1296093910932541, 0.12676914036273956, 0.025178857147693634, 1.2407149076461792, 0.14522483944892883, 0.04199272394180298, -0.03953595831990242, -0.662595808506012, -0.8450196981430054, 0.8947542309761047, -0.05140034109354019, -0.5684477686882019, -0.3496277928352356, -0.619093120098114]} +{"t": 9.6586, "q": [-0.3115992248058319, 0.0017180577851831913, -0.004687163513153791, 0.6146831512451172, -0.3207314610481262, -0.003465792164206505, -0.35886287689208984, 0.014888135716319084, -0.014289152808487415, 0.6076012849807739, -0.2933560311794281, -0.01824081316590309, 0.0314575619995594, -0.05322803184390068, -0.019508646801114082, 0.129633367061615, 0.12678112089633942, 0.025142904371023178, 1.24069082736969, 0.1452368199825287, 0.04199272394180298, -0.039511989802122116, -0.6615532040596008, -0.8449957370758057, 0.8947542309761047, -0.05131645128130913, -0.5685436129570007, -0.34963977336883545, -0.6211663484573364]} +{"t": 9.6756, "q": [-0.3116077482700348, 0.0017010136507451534, -0.004713947419077158, 0.6146746277809143, -0.32071900367736816, -0.0034583969973027706, -0.35885435342788696, 0.014930746518075466, -0.014315936714410782, 0.6075757145881653, -0.2933518588542938, -0.0182480625808239, 0.031497739255428314, -0.053235407918691635, -0.019474783912301064, 0.1296093910932541, 0.12676914036273956, 0.025178857147693634, 1.2407028675079346, 0.14527277648448944, 0.04199272394180298, -0.039511989802122116, -0.6604386568069458, -0.8449957370758057, 0.8947662115097046, -0.05119660869240761, -0.5684477686882019, -0.3496277928352356, -0.6235632300376892]} +{"t": 9.6923, "q": [-0.31159070134162903, 0.0016754474490880966, -0.004713947419077158, 0.6146405339241028, -0.320723295211792, -0.003480230225250125, -0.3588714003562927, 0.014973356388509274, -0.014329328201711178, 0.6075757145881653, -0.29334771633148193, -0.018255310133099556, 0.03147095441818237, -0.05323535203933716, -0.019465046003460884, 0.1296093910932541, 0.12679310142993927, 0.025118935853242874, 1.240738868713379, 0.1452607959508896, 0.04198073968291283, -0.039511989802122116, -0.6595398783683777, -0.8449837565422058, 0.8947781920433044, -0.05105280131101608, -0.5684956908226013, -0.34963977336883545, -0.6254447102546692]} +{"t": 9.709, "q": [-0.3115651309490204, 0.0016669253818690777, -0.004673771560192108, 0.6146575808525085, -0.3207230865955353, -0.0034511780831962824, -0.35885435342788696, 0.015058577992022038, -0.014329328201711178, 0.607592761516571, -0.2933144271373749, -0.01831331104040146, 0.03144416958093643, -0.05324278399348259, -0.019440922886133194, 0.129633367061615, 0.12676914036273956, 0.025130920112133026, 1.2407028675079346, 0.1452607959508896, 0.04200470820069313, -0.03953595831990242, -0.6587488651275635, -0.8449957370758057, 0.894814133644104, -0.05078914761543274, -0.5684837102890015, -0.3496277928352356, -0.6274940371513367]} +{"t": 9.7258, "q": [-0.3115566074848175, 0.0016413591802120209, -0.004673771560192108, 0.6146575808525085, -0.3207230865955353, -0.0034511780831962824, -0.35885435342788696, 0.015033011324703693, -0.014329328201711178, 0.607592761516571, -0.29331856966018677, -0.01832052320241928, 0.03144416958093643, -0.053257763385772705, -0.01941215619444847, 0.1296093910932541, 0.12678112089633942, 0.025130920112133026, 1.240738868713379, 0.1452847570180893, 0.04199272394180298, -0.03952397406101227, -0.6581256985664368, -0.8450196981430054, 0.8948621153831482, -0.05044160410761833, -0.5685316324234009, -0.3496277928352356, -0.630154550075531]} +{"t": 9.7425, "q": [-0.3115480840206146, 0.0016157925128936768, -0.004673771560192108, 0.6146575808525085, -0.32073137164115906, -0.003451275173574686, -0.3588458299636841, 0.015067100524902344, -0.014329328201711178, 0.607592761516571, -0.2933061420917511, -0.018298886716365814, 0.03143078088760376, -0.053234849125146866, -0.019377393648028374, 0.12959741055965424, 0.12679310142993927, 0.025142904371023178, 1.2407149076461792, 0.14532071352005005, 0.04200470820069313, -0.03952397406101227, -0.6575025320053101, -0.8450196981430054, 0.8948860764503479, -0.05010604485869408, -0.5685795545578003, -0.3496277928352356, -0.6322997212409973]} +{"t": 9.7593, "q": [-0.3115480840206146, 0.0016243145801126957, -0.004646987654268742, 0.6146575808525085, -0.32071900367736816, -0.0034583969973027706, -0.3588458299636841, 0.015058577992022038, -0.014329328201711178, 0.6076353788375854, -0.2933144271373749, -0.01831331104040146, 0.03144416958093643, -0.05324988067150116, -0.01935836300253868, 0.12959741055965424, 0.12678112089633942, 0.025118935853242874, 1.240750789642334, 0.14529675245285034, 0.04199272394180298, -0.03953595831990242, -0.6569752097129822, -0.8450196981430054, 0.8948980569839478, -0.049914296716451645, -0.5685436129570007, -0.34963977336883545, -0.6332584619522095]} +{"t": 9.776, "q": [-0.3115480840206146, 0.001581704244017601, -0.004620204214006662, 0.6146490573883057, -0.3207230865955353, -0.0034511780831962824, -0.3588373064994812, 0.015067100524902344, -0.014342720620334148, 0.6076353788375854, -0.2933019697666168, -0.018306152895092964, 0.0314575619995594, -0.05325731262564659, -0.01933423988521099, 0.12962138652801514, 0.12678112089633942, 0.025118935853242874, 1.240738868713379, 0.14522483944892883, 0.04200470820069313, -0.039511989802122116, -0.6563999652862549, -0.8449957370758057, 0.894874095916748, -0.049746520817279816, -0.5685076713562012, -0.3496277928352356, -0.6338576674461365]} +{"t": 9.7928, "q": [-0.31153956055641174, 0.001573182176798582, -0.004673771560192108, 0.6146320104598999, -0.32071495056152344, -0.0034656161442399025, -0.35882025957107544, 0.015050055459141731, -0.014329328201711178, 0.6076523661613464, -0.29332277178764343, -0.018284354358911514, 0.031497739255428314, -0.05325731262564659, -0.01933423988521099, 0.12959741055965424, 0.12679310142993927, 0.025118935853242874, 1.240750789642334, 0.14529675245285034, 0.04201669245958328, -0.039511989802122116, -0.6558966636657715, -0.8449957370758057, 0.8948860764503479, -0.049554772675037384, -0.5684837102890015, -0.3496277928352356, -0.6344209313392639]} +{"t": 9.8095, "q": [-0.3115651309490204, 0.001581704244017601, -0.004660379607230425, 0.6146575808525085, -0.3207271695137024, -0.0034439589362591505, -0.3588287830352783, 0.015050055459141731, -0.014342720620334148, 0.6076523661613464, -0.29332277178764343, -0.018284354358911514, 0.03156469762325287, -0.05326491594314575, -0.019339337944984436, 0.12958543002605438, 0.12676914036273956, 0.025142904371023178, 1.240738868713379, 0.1452847570180893, 0.04201669245958328, -0.03952397406101227, -0.6554052829742432, -0.8449957370758057, 0.894874095916748, -0.0493510402739048, -0.5685316324234009, -0.3496277928352356, -0.6349602341651917]} +{"t": 9.8262, "q": [-0.31159070134162903, 0.001573182176798582, -0.004673771560192108, 0.6146490573883057, -0.3207230865955353, -0.0034511780831962824, -0.35882025957107544, 0.015024489723145962, -0.014329328201711178, 0.6076523661613464, -0.2933352291584015, -0.018248150125145912, 0.03156469762325287, -0.053279947489500046, -0.019320307299494743, 0.12964534759521484, 0.12678112089633942, 0.02509496733546257, 1.2407149076461792, 0.1452847570180893, 0.04201669245958328, -0.03952397406101227, -0.6550098061561584, -0.8449957370758057, 0.894874095916748, -0.04912333935499191, -0.5685316324234009, -0.3496277928352356, -0.6355354189872742]} +{"t": 9.843, "q": [-0.31157365441322327, 0.001581704244017601, -0.004673771560192108, 0.6146575808525085, -0.3207230865955353, -0.0034511780831962824, -0.35882025957107544, 0.015033011324703693, -0.014342720620334148, 0.6076608896255493, -0.29334354400634766, -0.018248097971081734, 0.03159148246049881, -0.05327240005135536, -0.019324952736496925, 0.12950153648853302, 0.12676914036273956, 0.025118935853242874, 1.2407628297805786, 0.1453326940536499, 0.04199272394180298, -0.039559926837682724, -0.6546862125396729, -0.8449837565422058, 0.894874095916748, -0.04897952824831009, -0.5685316324234009, -0.3496277928352356, -0.6360148191452026]} +{"t": 9.8597, "q": [-0.3115566074848175, 0.001581704244017601, -0.004687163513153791, 0.6146575808525085, -0.32072728872299194, -0.003458494320511818, -0.3588287830352783, 0.015015967190265656, -0.014302544295787811, 0.6076694130897522, -0.29336848855018616, -0.01821907050907612, 0.03156469762325287, -0.05328000336885452, -0.01933004893362522, 0.12957344949245453, 0.12678112089633942, 0.02509496733546257, 1.2407149076461792, 0.14529675245285034, 0.04199272394180298, -0.03952397406101227, -0.6543986201286316, -0.8449837565422058, 0.8948980569839478, -0.04885968565940857, -0.5685076713562012, -0.3496277928352356, -0.6365181803703308]} +{"t": 9.8764, "q": [-0.31153956055641174, 0.001573182176798582, -0.004673771560192108, 0.6146661043167114, -0.3207271695137024, -0.0034439589362591505, -0.35882025957107544, 0.015007445588707924, -0.014329328201711178, 0.6076694130897522, -0.29336848855018616, -0.01821907050907612, 0.03156469762325287, -0.05328755080699921, -0.01932540349662304, 0.1296093910932541, 0.12676914036273956, 0.025142904371023178, 1.240738868713379, 0.1452847570180893, 0.04199272394180298, -0.03953595831990242, -0.6539791822433472, -0.8449837565422058, 0.8948860764503479, -0.048775795847177505, -0.5684956908226013, -0.3496277928352356, -0.6372012495994568]} +{"t": 9.8933, "q": [-0.3115651309490204, 0.001573182176798582, -0.004673771560192108, 0.6146746277809143, -0.3207312524318695, -0.0034367400221526623, -0.3588287830352783, 0.014964834786951542, -0.014329328201711178, 0.6076608896255493, -0.2933768033981323, -0.018204573541879654, 0.03159148246049881, -0.05326491594314575, -0.019339337944984436, 0.12956145405769348, 0.12678112089633942, 0.025106951594352722, 1.240738868713379, 0.14524881541728973, 0.04199272394180298, -0.03952397406101227, -0.653331995010376, -0.8450196981430054, 0.8948980569839478, -0.048775795847177505, -0.5684956908226013, -0.3496277928352356, -0.6378363966941833]} +{"t": 9.9102, "q": [-0.3115566074848175, 0.00159022631123662, -0.004673771560192108, 0.6146746277809143, -0.32073554396629333, -0.0034585732501000166, -0.35881173610687256, 0.014896657317876816, -0.014329328201711178, 0.6076608896255493, -0.2933851182460785, -0.01820453815162182, 0.03159148246049881, -0.05328000336885452, -0.01933004893362522, 0.12966932356357574, 0.12674516439437866, 0.025118935853242874, 1.240738868713379, 0.1452368199825287, 0.04199272394180298, -0.03953595831990242, -0.6523013710975647, -0.8449837565422058, 0.8948980569839478, -0.048715874552726746, -0.5685076713562012, -0.34963977336883545, -0.6385434865951538]} +{"t": 9.927, "q": [-0.31157365441322327, 0.001581704244017601, -0.004687163513153791, 0.6146746277809143, -0.32073554396629333, -0.0034585732501000166, -0.3588373064994812, 0.01492222398519516, -0.014329328201711178, 0.6076608896255493, -0.2933851182460785, -0.01820453815162182, 0.031658440828323364, -0.05327245965600014, -0.019334692507982254, 0.12957344949245453, 0.1267092078924179, 0.025142904371023178, 1.2407268285751343, 0.1452368199825287, 0.04199272394180298, -0.03952397406101227, -0.6514744758605957, -0.8449957370758057, 0.8948980569839478, -0.048655953258275986, -0.5685316324234009, -0.34963977336883545, -0.6392984986305237]} +{"t": 9.9437, "q": [-0.31161627173423767, 0.001581704244017601, -0.004713947419077158, 0.6146831512451172, -0.3207271695137024, -0.0034439589362591505, -0.3588373064994812, 0.014871091581881046, -0.014315936714410782, 0.6076523661613464, -0.29339343309402466, -0.01820448599755764, 0.03171201050281525, -0.05328000336885452, -0.01933004893362522, 0.12958543002605438, 0.12672120332717896, 0.025166872888803482, 1.240738868713379, 0.14524881541728973, 0.04198073968291283, -0.03952397406101227, -0.6506235599517822, -0.8449957370758057, 0.8948980569839478, -0.04860801622271538, -0.5685076713562012, -0.34961581230163574, -0.6404010653495789]} +{"t": 9.9605, "q": [-0.3115992248058319, 0.001581704244017601, -0.004713947419077158, 0.6146831512451172, -0.32072728872299194, -0.003458494320511818, -0.3588458299636841, 0.014871091581881046, -0.014315936714410782, 0.6076439023017883, -0.2933809757232666, -0.018197325989603996, 0.03172539919614792, -0.05328000336885452, -0.01933004893362522, 0.12958543002605438, 0.1267331838607788, 0.025178857147693634, 1.240750789642334, 0.14527277648448944, 0.04198073968291283, -0.03952397406101227, -0.6503838896751404, -0.8449957370758057, 0.894957959651947, -0.04854809492826462, -0.5685076713562012, -0.34963977336883545, -0.6418631076812744]} +{"t": 9.9772, "q": [-0.31162479519844055, 0.001581704244017601, -0.004740730859339237, 0.6146661043167114, -0.3207271695137024, -0.0034439589362591505, -0.3588287830352783, 0.014828480780124664, -0.014329328201711178, 0.6076353788375854, -0.2933851480484009, -0.018190059810876846, 0.03176557645201683, -0.05327240005135536, -0.019324952736496925, 0.12966932356357574, 0.1267331838607788, 0.025142904371023178, 1.2407268285751343, 0.14521285891532898, 0.04199272394180298, -0.03953595831990242, -0.6502760648727417, -0.8450077176094055, 0.8949939012527466, -0.04848817363381386, -0.568519651889801, -0.34963977336883545, -0.643756628036499]} +{"t": 9.994, "q": [-0.3116503655910492, 0.00159022631123662, -0.004740730859339237, 0.6146575808525085, -0.3207436203956604, -0.0034296002704650164, -0.3588799238204956, 0.014845524914562702, -0.014342720620334148, 0.6076183319091797, -0.29339757561683655, -0.018197236582636833, 0.0317789688706398, -0.05328000336885452, -0.01933004893362522, 0.1296093910932541, 0.12672120332717896, 0.025118935853242874, 1.2407268285751343, 0.14518888294696808, 0.04199272394180298, -0.03954794257879257, -0.6502400636672974, -0.8449957370758057, 0.8950179219245911, -0.048476189374923706, -0.5684597492218018, -0.3496277928352356, -0.6455063223838806]} +{"t": 10.0107, "q": [-0.3116588890552521, 0.001581704244017601, -0.0047541228123009205, 0.6146831512451172, -0.32073545455932617, -0.003444056259468198, -0.3588884472846985, 0.014947790652513504, -0.014356112107634544, 0.6076353788375854, -0.29339760541915894, -0.018182776868343353, 0.03180575370788574, -0.05327240005135536, -0.019324952736496925, 0.1296093910932541, 0.12672120332717896, 0.025118935853242874, 1.240750789642334, 0.1452368199825287, 0.04199272394180298, -0.03952397406101227, -0.6502041220664978, -0.8449837565422058, 0.8950898051261902, -0.0484282523393631, -0.568519651889801, -0.3496277928352356, -0.6470043659210205]} +{"t": 10.0274, "q": [-0.3116844594478607, 0.001573182176798582, -0.004767514765262604, 0.6146575808525085, -0.32073941826820374, -0.003422284033149481, -0.3588884472846985, 0.014888135716319084, -0.014356112107634544, 0.607592761516571, -0.2933851480484009, -0.018190059810876846, 0.031859319657087326, -0.053279947489500046, -0.019320307299494743, 0.12959741055965424, 0.1267331838607788, 0.025130920112133026, 1.2407149076461792, 0.1453087329864502, 0.04199272394180298, -0.03952397406101227, -0.6502041220664978, -0.844971776008606, 0.8951377272605896, -0.04836833477020264, -0.5685316324234009, -0.34963977336883545, -0.6490656137466431]} +{"t": 10.0441, "q": [-0.3116503655910492, 0.0015646601095795631, -0.004807690624147654, 0.6146575808525085, -0.32073137164115906, -0.003451275173574686, -0.3588884472846985, 0.014930746518075466, -0.014409679919481277, 0.6075842380523682, -0.29337677359580994, -0.018233494833111763, 0.03191288560628891, -0.05327989161014557, -0.019310569390654564, 0.12952551245689392, 0.12672120332717896, 0.025118935853242874, 1.240750789642334, 0.14534468948841095, 0.04200470820069313, -0.03952397406101227, -0.6500723361968994, -0.844971776008606, 0.8952935338020325, -0.04824849218130112, -0.568519651889801, -0.3496517539024353, -0.6516183018684387]} +{"t": 10.0609, "q": [-0.3116588890552521, 0.001581704244017601, -0.004807690624147654, 0.6146746277809143, -0.3207312524318695, -0.0034367400221526623, -0.35890549421310425, 0.014930746518075466, -0.01444985531270504, 0.607592761516571, -0.29334768652915955, -0.018269788473844528, 0.03188610449433327, -0.05330246686935425, -0.019286897033452988, 0.12957344949245453, 0.12675714492797852, 0.025142904371023178, 1.240738868713379, 0.1452607959508896, 0.04198073968291283, -0.039511989802122116, -0.6497128009796143, -0.8449478149414062, 0.8956530690193176, -0.0481286495923996, -0.5684717297554016, -0.3496517539024353, -0.653535783290863]} +{"t": 10.0776, "q": [-0.3116503655910492, 0.001581704244017601, -0.004807690624147654, 0.6146575808525085, -0.32073545455932617, -0.003444056259468198, -0.35893958806991577, 0.014913702383637428, -0.014436463825404644, 0.607592761516571, -0.2933560013771057, -0.0182697344571352, 0.03192627802491188, -0.05330218747258186, -0.019238201901316643, 0.12954947352409363, 0.12675714492797852, 0.025118935853242874, 1.2407149076461792, 0.1452847570180893, 0.04200470820069313, -0.039511989802122116, -0.6494970917701721, -0.8448638916015625, 0.8959167003631592, -0.04806872829794884, -0.568519651889801, -0.3496517539024353, -0.6542907357215881]} +{"t": 10.0943, "q": [-0.31163331866264343, 0.001581704244017601, -0.004807690624147654, 0.6146575808525085, -0.3207271695137024, -0.0034439589362591505, -0.35892254114151, 0.014939268119633198, -0.01446324773132801, 0.6076012849807739, -0.29335182905197144, -0.01827700063586235, 0.03192627802491188, -0.05327915772795677, -0.01918395608663559, 0.12954947352409363, 0.12672120332717896, 0.025118935853242874, 1.240738868713379, 0.14524881541728973, 0.04200470820069313, -0.039511989802122116, -0.6494491100311279, -0.8448519110679626, 0.8961324095726013, -0.047936901450157166, -0.5684956908226013, -0.34963977336883545, -0.6546263098716736]} +{"t": 10.111, "q": [-0.31162479519844055, 0.0015646601095795631, -0.004780906718224287, 0.6146575808525085, -0.3207271695137024, -0.0034439589362591505, -0.35893958806991577, 0.014990401454269886, -0.014476639218628407, 0.607592761516571, -0.29335182905197144, -0.01827700063586235, 0.03192627802491188, -0.05329408496618271, -0.019145416095852852, 0.1296093910932541, 0.12675714492797852, 0.025118935853242874, 1.240750789642334, 0.14522483944892883, 0.04201669245958328, -0.03952397406101227, -0.6494011878967285, -0.8448399305343628, 0.896300196647644, -0.047757137566804886, -0.5685436129570007, -0.3496517539024353, -0.6547940969467163]} +{"t": 10.1278, "q": [-0.3116503655910492, 0.0015646601095795631, -0.004821082577109337, 0.6146490573883057, -0.3207230865955353, -0.0034511780831962824, -0.35895663499832153, 0.014990401454269886, -0.014490030705928802, 0.6076098084449768, -0.29335182905197144, -0.01827700063586235, 0.03199324011802673, -0.05331661179661751, -0.019111964851617813, 0.12948955595493317, 0.12674516439437866, 0.025142904371023178, 1.240738868713379, 0.14524881541728973, 0.04199272394180298, -0.039511989802122116, -0.6493892073631287, -0.8448638916015625, 0.8964799642562866, -0.04749348387122154, -0.5686275362968445, -0.3496517539024353, -0.654961884021759]} +{"t": 10.1446, "q": [-0.3116503655910492, 0.0015646601095795631, -0.00483447453007102, 0.6146575808525085, -0.3207312524318695, -0.0034367400221526623, -0.35893958806991577, 0.014998923055827618, -0.014503423124551773, 0.6076012849807739, -0.2933560013771057, -0.0182697344571352, 0.032020021229982376, -0.0533316470682621, -0.01909291371703148, 0.12956145405769348, 0.12678112089633942, 0.025118935853242874, 1.2407628297805786, 0.1452368199825287, 0.04198073968291283, -0.03952397406101227, -0.649365246295929, -0.8448279500007629, 0.8965878486633301, -0.04712197184562683, -0.5685675740242004, -0.34966373443603516, -0.6550337672233582]} +{"t": 10.1613, "q": [-0.3116588890552521, 0.0015646601095795631, -0.00483447453007102, 0.6146661043167114, -0.3207312524318695, -0.0034367400221526623, -0.35893958806991577, 0.01498187892138958, -0.014503423124551773, 0.6076012849807739, -0.29336845874786377, -0.01824798993766308, 0.03212715685367584, -0.05333913862705231, -0.019078515470027924, 0.12958543002605438, 0.12676914036273956, 0.025118935853242874, 1.2407747507095337, 0.14524881541728973, 0.04200470820069313, -0.039511989802122116, -0.6494371294975281, -0.8447680473327637, 0.896671712398529, -0.046618636697530746, -0.5685555934906006, -0.34968769550323486, -0.6551176905632019]} +{"t": 10.178, "q": [-0.3116588890552521, 0.0015646601095795631, -0.004847866017371416, 0.6146575808525085, -0.32073545455932617, -0.003444056259468198, -0.35893958806991577, 0.014930746518075466, -0.014516814611852169, 0.6076012849807739, -0.29336017370224, -0.018233565613627434, 0.032194118946790695, -0.053346626460552216, -0.01906411349773407, 0.12953749299049377, 0.12674516439437866, 0.025106951594352722, 1.240750789642334, 0.1452368199825287, 0.04201669245958328, -0.03952397406101227, -0.6494371294975281, -0.844516396522522, 0.8967915773391724, -0.04586362838745117, -0.5685915946960449, -0.3496997058391571, -0.6552255153656006]} +{"t": 10.1948, "q": [-0.3116418421268463, 0.001547615509480238, -0.004847866017371416, 0.6146661043167114, -0.3207312524318695, -0.0034367400221526623, -0.35892254114151, 0.014964834786951542, -0.014490030705928802, 0.6076268553733826, -0.2933643162250519, -0.018240777775645256, 0.03222090005874634, -0.05333148315548897, -0.019063664600253105, 0.12957344949245453, 0.12674516439437866, 0.025106951594352722, 1.240750789642334, 0.1452847570180893, 0.04199272394180298, -0.03952397406101227, -0.6494731307029724, -0.8442527055740356, 0.8969113826751709, -0.045096639543771744, -0.5685915946960449, -0.34973564743995667, -0.6552854776382446]} +{"t": 10.2115, "q": [-0.3116844594478607, 0.001539093442261219, -0.004861257970333099, 0.6146661043167114, -0.320735365152359, -0.003429502947255969, -0.35892254114151, 0.014947790652513504, -0.014516814611852169, 0.6076268553733826, -0.2933643162250519, -0.018255239352583885, 0.03222090005874634, -0.05334657430648804, -0.019054364413022995, 0.12959741055965424, 0.12672120332717896, 0.025118935853242874, 1.2407628297805786, 0.1452368199825287, 0.04199272394180298, -0.03952397406101227, -0.6494731307029724, -0.8439051508903503, 0.8969833254814148, -0.044149886816740036, -0.5686395168304443, -0.3497476279735565, -0.6553693413734436]} +{"t": 10.2283, "q": [-0.3116929829120636, 0.0015305713750422, -0.004874649923294783, 0.6146746277809143, -0.3207271695137024, -0.0034439589362591505, -0.35892254114151, 0.014947790652513504, -0.014516814611852169, 0.6076353788375854, -0.2933601438999176, -0.018262486904859543, 0.03224768489599228, -0.0533541701734066, -0.01905946247279644, 0.12966932356357574, 0.12672120332717896, 0.025142904371023178, 1.240738868713379, 0.1452607959508896, 0.04200470820069313, -0.03953595831990242, -0.6494491100311279, -0.8435096740722656, 0.897127091884613, -0.04319114610552788, -0.5686275362968445, -0.3497835695743561, -0.6554292440414429]} +{"t": 10.2451, "q": [-0.31166741251945496, 0.0015220493078231812, -0.004861257970333099, 0.6146831512451172, -0.3207312524318695, -0.0034367400221526623, -0.3589310646057129, 0.014930746518075466, -0.014516814611852169, 0.6076608896255493, -0.29339343309402466, -0.01819002442061901, 0.032314643263816833, -0.0533541701734066, -0.01905946247279644, 0.1296093910932541, 0.12672120332717896, 0.025142904371023178, 1.240750789642334, 0.14527277648448944, 0.04199272394180298, -0.03952397406101227, -0.6494731307029724, -0.8430183529853821, 0.8973428606987, -0.042040660977363586, -0.5686395168304443, -0.349819540977478, -0.6555251479148865]} +{"t": 10.2619, "q": [-0.3116929829120636, 0.001539093442261219, -0.004861257970333099, 0.6147172451019287, -0.32073545455932617, -0.003444056259468198, -0.35892254114151, 0.01492222398519516, -0.014516814611852169, 0.6076779365539551, -0.29339343309402466, -0.018218981102108955, 0.032354820519685745, -0.053361665457487106, -0.019045064225792885, 0.12958543002605438, 0.1267331838607788, 0.025118935853242874, 1.2407628297805786, 0.14527277648448944, 0.04200470820069313, -0.03952397406101227, -0.6494131684303284, -0.8425989151000977, 0.8975825309753418, -0.041069939732551575, -0.5686275362968445, -0.3498315215110779, -0.6556090116500854]} +{"t": 10.2788, "q": [-0.3116929829120636, 0.0015135272406041622, -0.004861257970333099, 0.6147428154945374, -0.320735365152359, -0.003429502947255969, -0.35890549421310425, 0.014930746518075466, -0.014503423124551773, 0.607686460018158, -0.2933809459209442, -0.018211785703897476, 0.032341428101062775, -0.05334657430648804, -0.019054364413022995, 0.12958543002605438, 0.1267331838607788, 0.02509496733546257, 1.240738868713379, 0.14524881541728973, 0.04198073968291283, -0.03952397406101227, -0.6494251489639282, -0.8420835733413696, 0.8979300856590271, -0.04015913978219032, -0.568663477897644, -0.34986746311187744, -0.6557288765907288]} +{"t": 10.2956, "q": [-0.3117440938949585, 0.0014964831061661243, -0.004874649923294783, 0.6147428154945374, -0.3207312524318695, -0.0034367400221526623, -0.35891401767730713, 0.014888135716319084, -0.014503423124551773, 0.607686460018158, -0.2934017479419708, -0.018189989030361176, 0.032314643263816833, -0.05337686464190483, -0.019055265933275223, 0.12954947352409363, 0.12672120332717896, 0.025118935853242874, 1.240738868713379, 0.1452607959508896, 0.04199272394180298, -0.03954794257879257, -0.6494011878967285, -0.8415802121162415, 0.8983974456787109, -0.03924833610653877, -0.5687114000320435, -0.3498794436454773, -0.6558966636657715]} +{"t": 10.3124, "q": [-0.31172704696655273, 0.0014964831061661243, -0.004847866017371416, 0.614768385887146, -0.32073545455932617, -0.003444056259468198, -0.35889697074890137, 0.014845524914562702, -0.014476639218628407, 0.6077035069465637, -0.29338929057121277, -0.01819727197289467, 0.03228786215186119, -0.0533541701734066, -0.01905946247279644, 0.12957344949245453, 0.12672120332717896, 0.025082983076572418, 1.240750789642334, 0.14522483944892883, 0.04199272394180298, -0.03954794257879257, -0.6494251489639282, -0.8410888910293579, 0.8992483019828796, -0.03814578801393509, -0.5686754584312439, -0.3499034345149994, -0.6562082171440125]} +{"t": 10.3291, "q": [-0.3117526173591614, 0.0014879610389471054, -0.00483447453007102, 0.6147769093513489, -0.32073545455932617, -0.003444056259468198, -0.35889697074890137, 0.014896657317876816, -0.01444985531270504, 0.6077376008033752, -0.29339343309402466, -0.01820448599755764, 0.03224768489599228, -0.053369373083114624, -0.019069664180278778, 0.12959741055965424, 0.12672120332717896, 0.02509496733546257, 1.2407149076461792, 0.1452368199825287, 0.04199272394180298, -0.03953595831990242, -0.6494251489639282, -0.8405256271362305, 0.900338888168335, -0.03675561770796776, -0.5686754584312439, -0.3499273955821991, -0.6567475199699402]} +{"t": 10.3459, "q": [-0.3117355704307556, 0.0014538723044097424, -0.00483447453007102, 0.6147939562797546, -0.3207312524318695, -0.0034367400221526623, -0.3588799238204956, 0.014896657317876816, -0.01446324773132801, 0.607754647731781, -0.2933809757232666, -0.018197325989603996, 0.03220750764012337, -0.05336177349090576, -0.019064564257860184, 0.12957344949245453, 0.1267092078924179, 0.025118935853242874, 1.240750789642334, 0.1453087329864502, 0.04200470820069313, -0.03953595831990242, -0.6494371294975281, -0.8396507501602173, 0.9016332030296326, -0.03507782891392708, -0.5686754584312439, -0.34996333718299866, -0.657358705997467]} +{"t": 10.3626, "q": [-0.31172704696655273, 0.0014709164388477802, -0.00483447453007102, 0.6148365139961243, -0.32073941826820374, -0.003422284033149481, -0.3588714003562927, 0.014879613183438778, -0.01444985531270504, 0.607822835445404, -0.29336434602737427, -0.018226318061351776, 0.032194118946790695, -0.0533541701734066, -0.01905946247279644, 0.12956145405769348, 0.1267092078924179, 0.025118935853242874, 1.240750789642334, 0.1453087329864502, 0.04199272394180298, -0.03953595831990242, -0.6494970917701721, -0.838536262512207, 0.9026039242744446, -0.03366369009017944, -0.5686874389648438, -0.34998732805252075, -0.6579459309577942]} +{"t": 10.3794, "q": [-0.31172704696655273, 0.0014623943716287613, -0.004847866017371416, 0.6148706078529358, -0.3207312524318695, -0.0034367400221526623, -0.3588799238204956, 0.014888135716319084, -0.014436463825404644, 0.6078484058380127, -0.2933518588542938, -0.0182480625808239, 0.032180726528167725, -0.05336177349090576, -0.019064564257860184, 0.12959741055965424, 0.12675714492797852, 0.02509496733546257, 1.240750789642334, 0.14529675245285034, 0.042028676718473434, -0.039500005543231964, -0.6494491100311279, -0.837421715259552, 0.9032869935035706, -0.032645028084516525, -0.5686994194984436, -0.3499753177165985, -0.6585331559181213]} +{"t": 10.3962, "q": [-0.31167593598365784, 0.0014623943716287613, -0.00483447453007102, 0.6149387955665588, -0.3207229971885681, -0.0034366610925644636, -0.3588458299636841, 0.014871091581881046, -0.014476639218628407, 0.6079080700874329, -0.2933518588542938, -0.0182480625808239, 0.032194118946790695, -0.0533541701734066, -0.01905946247279644, 0.12959741055965424, 0.12674516439437866, 0.025118935853242874, 1.2407628297805786, 0.14532071352005005, 0.04199272394180298, -0.03953595831990242, -0.6494371294975281, -0.8361513614654541, 0.9036824703216553, -0.03177018091082573, -0.5686754584312439, -0.34998732805252075, -0.6591683626174927]} +{"t": 10.413, "q": [-0.3116929829120636, 0.0014623943716287613, -0.004807690624147654, 0.6149558424949646, -0.32073554396629333, -0.0034585732501000166, -0.35885435342788696, 0.01492222398519516, -0.01444985531270504, 0.6080018281936646, -0.29334351420402527, -0.018277036026120186, 0.03212715685367584, -0.05334657430648804, -0.019054364413022995, 0.129633367061615, 0.1267331838607788, 0.025118935853242874, 1.240750789642334, 0.1453806310892105, 0.04200470820069313, -0.03952397406101227, -0.6494970917701721, -0.8341979384422302, 0.9038382768630981, -0.03081144392490387, -0.5686754584312439, -0.3499753177165985, -0.6601750254631042]} +{"t": 10.4297, "q": [-0.31167593598365784, 0.0014709164388477802, -0.004821082577109337, 0.6149387955665588, -0.3207312524318695, -0.0034367400221526623, -0.3588714003562927, 0.014888135716319084, -0.01444985531270504, 0.6080018281936646, -0.29336017370224, -0.018248027190566063, 0.03212715685367584, -0.0533541701734066, -0.01905946247279644, 0.12959741055965424, 0.1267092078924179, 0.025142904371023178, 1.240750789642334, 0.1452847570180893, 0.04200470820069313, -0.03954794257879257, -0.6494491100311279, -0.8321486711502075, 0.903850257396698, -0.030356042087078094, -0.5686874389648438, -0.34996333718299866, -0.6609899401664734]} +{"t": 10.4465, "q": [-0.3116588890552521, 0.0014879610389471054, -0.004807690624147654, 0.614930272102356, -0.32072728872299194, -0.003458494320511818, -0.35885435342788696, 0.01492222398519516, -0.01446324773132801, 0.6080018281936646, -0.2933518588542938, -0.0182480625808239, 0.03206019848585129, -0.05336177349090576, -0.019064564257860184, 0.12964534759521484, 0.12672120332717896, 0.025142904371023178, 1.240750789642334, 0.14532071352005005, 0.041968755424022675, -0.03953595831990242, -0.6494491100311279, -0.8299435377120972, 0.9038861989974976, -0.029864689335227013, -0.5687114000320435, -0.34998732805252075, -0.6618887782096863]} +{"t": 10.4632, "q": [-0.3116418421268463, 0.0014964831061661243, -0.004821082577109337, 0.6149387955665588, -0.32073137164115906, -0.003451275173574686, -0.3588714003562927, 0.014930746518075466, -0.014436463825404644, 0.6080188751220703, -0.2933643162250519, -0.018255239352583885, 0.032020021229982376, -0.05336926132440567, -0.01905016228556633, 0.12964534759521484, 0.1267092078924179, 0.025142904371023178, 1.2407628297805786, 0.14532071352005005, 0.04199272394180298, -0.03953595831990242, -0.6494731307029724, -0.8276185989379883, 0.9038742184638977, -0.029169604182243347, -0.5686754584312439, -0.3499753177165985, -0.662883460521698]} +{"t": 10.4799, "q": [-0.3116503655910492, 0.0015135272406041622, -0.004821082577109337, 0.6149643659591675, -0.3207271695137024, -0.0034439589362591505, -0.3588714003562927, 0.014956312254071236, -0.01446324773132801, 0.6080529093742371, -0.2933560013771057, -0.01825527474284172, 0.03207359090447426, -0.05336177349090576, -0.019064564257860184, 0.12959741055965424, 0.1267092078924179, 0.025118935853242874, 1.240750789642334, 0.1453566700220108, 0.04200470820069313, -0.03953595831990242, -0.6494251489639282, -0.825701117515564, 0.9039821028709412, -0.02840261347591877, -0.5686874389648438, -0.3499753177165985, -0.6641178131103516]} +{"t": 10.4966, "q": [-0.3116588890552521, 0.0015220493078231812, -0.004847866017371416, 0.6149728894233704, -0.32072728872299194, -0.003458494320511818, -0.35886287689208984, 0.014888135716319084, -0.014476639218628407, 0.6080188751220703, -0.2933560013771057, -0.01825527474284172, 0.032167334109544754, -0.05336926132440567, -0.01905016228556633, 0.12958543002605438, 0.12669722735881805, 0.025130920112133026, 1.2407028675079346, 0.14522483944892883, 0.04200470820069313, -0.03954794257879257, -0.6494371294975281, -0.8241431713104248, 0.9041498899459839, -0.027827370911836624, -0.5687353610992432, -0.3499753177165985, -0.6657596826553345]} +{"t": 10.5134, "q": [-0.31166741251945496, 0.0015135272406041622, -0.004861257970333099, 0.614998459815979, -0.32072728872299194, -0.003458494320511818, -0.35885435342788696, 0.014947790652513504, -0.014503423124551773, 0.6080614328384399, -0.2933560013771057, -0.01825527474284172, 0.03230125084519386, -0.05336177349090576, -0.019064564257860184, 0.12957344949245453, 0.1267092078924179, 0.025142904371023178, 1.2407268285751343, 0.1453566700220108, 0.04199272394180298, -0.03953595831990242, -0.6494731307029724, -0.8231245279312134, 0.9043176770210266, -0.027359986677765846, -0.5687953233718872, -0.34998732805252075, -0.6674254536628723]} +{"t": 10.5301, "q": [-0.3117015063762665, 0.0015135272406041622, -0.004861257970333099, 0.614998459815979, -0.32071495056152344, -0.0034656161442399025, -0.35885435342788696, 0.014879613183438778, -0.014490030705928802, 0.6080529093742371, -0.2933560013771057, -0.01825527474284172, 0.03226107731461525, -0.05336926132440567, -0.01905016228556633, 0.12956145405769348, 0.12669722735881805, 0.025142904371023178, 1.2407628297805786, 0.14532071352005005, 0.04200470820069313, -0.03953595831990242, -0.6494491100311279, -0.8224534392356873, 0.9043775796890259, -0.02690458483994007, -0.5687713027000427, -0.3500232696533203, -0.6689234972000122]} +{"t": 10.5468, "q": [-0.31167593598365784, 0.0015135272406041622, -0.004847866017371416, 0.614998459815979, -0.3207271695137024, -0.0034439589362591505, -0.35886287689208984, 0.014905179850757122, -0.014490030705928802, 0.6080529093742371, -0.2933601438999176, -0.018262486904859543, 0.03230125084519386, -0.05336926132440567, -0.01905016228556633, 0.12957344949245453, 0.1267092078924179, 0.025106951594352722, 1.240750789642334, 0.1453326940536499, 0.04200470820069313, -0.03953595831990242, -0.6494491100311279, -0.822105884552002, 0.9045214056968689, -0.026581011712551117, -0.5687713027000427, -0.35004723072052, -0.6706731915473938]} +{"t": 10.5636, "q": [-0.31166741251945496, 0.0014879610389471054, -0.004807690624147654, 0.6150155067443848, -0.32073545455932617, -0.003444056259468198, -0.35886287689208984, 0.014896657317876816, -0.014490030705928802, 0.6080273985862732, -0.2933560013771057, -0.01825527474284172, 0.03227446973323822, -0.05336177349090576, -0.019064564257860184, 0.1296573281288147, 0.1266852468252182, 0.025130920112133026, 1.240750789642334, 0.14532071352005005, 0.04200470820069313, -0.03952397406101227, -0.6494011878967285, -0.8219860196113586, 0.9045813083648682, -0.026149580255150795, -0.5687593221664429, -0.3501071631908417, -0.6723270416259766]} +{"t": 10.5803, "q": [-0.3117015063762665, 0.0014623943716287613, -0.004821082577109337, 0.614998459815979, -0.32073941826820374, -0.003422284033149481, -0.35886287689208984, 0.014930746518075466, -0.014476639218628407, 0.6080358624458313, -0.2933643162250519, -0.018255239352583885, 0.03226107731461525, -0.05337686464190483, -0.019055265933275223, 0.12951351702213287, 0.12669722735881805, 0.025118935853242874, 1.2407628297805786, 0.1453326940536499, 0.04199272394180298, -0.03952397406101227, -0.6494251489639282, -0.8220099806785583, 0.9046292304992676, -0.02575409971177578, -0.5687833428382874, -0.35019105672836304, -0.6738490462303162]} +{"t": 10.5972, "q": [-0.3116844594478607, 0.0014283061027526855, -0.004807690624147654, 0.6150325536727905, -0.3207271695137024, -0.0034439589362591505, -0.3588458299636841, 0.014930746518075466, -0.014490030705928802, 0.6080188751220703, -0.2933560311794281, -0.01824081316590309, 0.03222090005874634, -0.05338446423411369, -0.019060363993048668, 0.12958543002605438, 0.12672120332717896, 0.025130920112133026, 1.240750789642334, 0.14532071352005005, 0.04199272394180298, -0.03953595831990242, -0.6494131684303284, -0.8220459222793579, 0.9047011733055115, -0.02539457380771637, -0.5688073039054871, -0.350274920463562, -0.6747358441352844]} +{"t": 10.6139, "q": [-0.31172704696655273, 0.0014197840355336666, -0.004807690624147654, 0.6150410771369934, -0.3207395374774933, -0.0034368191845715046, -0.35885435342788696, 0.014905179850757122, -0.01444985531270504, 0.6079933047294617, -0.2933518886566162, -0.01823360100388527, 0.03220750764012337, -0.05336926132440567, -0.01905016228556633, 0.12957344949245453, 0.12674516439437866, 0.025118935853242874, 1.240738868713379, 0.14524881541728973, 0.04199272394180298, -0.03953595831990242, -0.6494491100311279, -0.8220219612121582, 0.90482097864151, -0.024879250675439835, -0.5688552260398865, -0.3504067659378052, -0.6752152442932129]} +{"t": 10.6307, "q": [-0.31176114082336426, 0.0014027399010956287, -0.004821082577109337, 0.6150240302085876, -0.32073941826820374, -0.003422284033149481, -0.3588373064994812, 0.014854047447443008, -0.01444985531270504, 0.6079933047294617, -0.2933768033981323, -0.018204573541879654, 0.03223429247736931, -0.053369373083114624, -0.019069664180278778, 0.12964534759521484, 0.12676914036273956, 0.025118935853242874, 1.2407268285751343, 0.1453087329864502, 0.04200470820069313, -0.039511989802122116, -0.6494131684303284, -0.8220219612121582, 0.9049168825149536, -0.024220118299126625, -0.5689031481742859, -0.35063445568084717, -0.6754189729690552]} +{"t": 10.6476, "q": [-0.31172704696655273, 0.0014027399010956287, -0.00479429867118597, 0.6150751709938049, -0.3207312524318695, -0.0034367400221526623, -0.3588458299636841, 0.014905179850757122, -0.01444985531270504, 0.6080358624458313, -0.2933560311794281, -0.01824081316590309, 0.03223429247736931, -0.05338446423411369, -0.019060363993048668, 0.12962138652801514, 0.1267331838607788, 0.025142904371023178, 1.240750789642334, 0.14534468948841095, 0.04199272394180298, -0.039511989802122116, -0.6494251489639282, -0.8219740390777588, 0.9050007462501526, -0.02358495444059372, -0.5689510703086853, -0.35081422328948975, -0.6755267977714539]} +{"t": 10.6643, "q": [-0.3116929829120636, 0.0014283061027526855, -0.004821082577109337, 0.6151177883148193, -0.32072728872299194, -0.003458494320511818, -0.3588287830352783, 0.014905179850757122, -0.014436463825404644, 0.6080529093742371, -0.2933518886566162, -0.01823360100388527, 0.03228786215186119, -0.053392063826322556, -0.01906546577811241, 0.12959741055965424, 0.12674516439437866, 0.025118935853242874, 1.2407747507095337, 0.1453326940536499, 0.04199272394180298, -0.03952397406101227, -0.6494011878967285, -0.8219500780105591, 0.9050726294517517, -0.023081617429852486, -0.569034993648529, -0.3509460389614105, -0.6755867004394531]} +{"t": 10.681, "q": [-0.3116929829120636, 0.0014027399010956287, -0.00483447453007102, 0.6151518821716309, -0.32073941826820374, -0.003422284033149481, -0.3588287830352783, 0.014896657317876816, -0.01446324773132801, 0.6080614328384399, -0.2933560311794281, -0.01824081316590309, 0.03223429247736931, -0.05338446423411369, -0.019060363993048668, 0.12966932356357574, 0.12676914036273956, 0.025142904371023178, 1.240750789642334, 0.1453326940536499, 0.04200470820069313, -0.03952397406101227, -0.6494491100311279, -0.8219380974769592, 0.9052044749259949, -0.022422485053539276, -0.5690829157829285, -0.3510778844356537, -0.6756346821784973]} +{"t": 10.6978, "q": [-0.31166741251945496, 0.0014027399010956287, -0.00483447453007102, 0.615143358707428, -0.3207312524318695, -0.0034367400221526623, -0.3588287830352783, 0.01492222398519516, -0.01446324773132801, 0.6080870032310486, -0.2933518588542938, -0.0182480625808239, 0.03224768489599228, -0.05338446423411369, -0.019060363993048668, 0.12958543002605438, 0.12676914036273956, 0.025118935853242874, 1.2407628297805786, 0.14534468948841095, 0.04201669245958328, -0.03954794257879257, -0.6494251489639282, -0.8219261169433594, 0.9053962230682373, -0.02178732119500637, -0.5691068768501282, -0.3511977195739746, -0.6756466627120972]} +{"t": 10.7145, "q": [-0.3116503655910492, 0.0013942178338766098, -0.004821082577109337, 0.6151348352432251, -0.3207271695137024, -0.0034439589362591505, -0.3588458299636841, 0.01492222398519516, -0.014476639218628407, 0.6081466674804688, -0.2933643162250519, -0.018240777775645256, 0.03222090005874634, -0.05339966341853142, -0.019070565700531006, 0.12959741055965424, 0.12675714492797852, 0.025142904371023178, 1.2407628297805786, 0.14529675245285034, 0.04200470820069313, -0.03953595831990242, -0.6494371294975281, -0.8219500780105591, 0.9055999517440796, -0.021032314747571945, -0.5691788196563721, -0.35123366117477417, -0.6756826043128967]} +{"t": 10.7312, "q": [-0.3117015063762665, 0.0014027399010956287, -0.00483447453007102, 0.6151944398880005, -0.3207230865955353, -0.0034511780831962824, -0.3588287830352783, 0.01492222398519516, -0.01446324773132801, 0.6081551909446716, -0.2933518588542938, -0.0182480625808239, 0.03222090005874634, -0.05339200794696808, -0.019055714830756187, 0.12966932356357574, 0.1267331838607788, 0.025142904371023178, 1.240750789642334, 0.14532071352005005, 0.04201669245958328, -0.03952397406101227, -0.6494491100311279, -0.8219380974769592, 0.9058636426925659, -0.02015746757388115, -0.5691788196563721, -0.35131755471229553, -0.6757065653800964]} +{"t": 10.7481, "q": [-0.31167593598365784, 0.0014197840355336666, -0.00483447453007102, 0.6152114868164062, -0.3207312524318695, -0.0034367400221526623, -0.3588287830352783, 0.01492222398519516, -0.014490030705928802, 0.6082148551940918, -0.2933518588542938, -0.0182480625808239, 0.03226107731461525, -0.05338446423411369, -0.019060363993048668, 0.12956145405769348, 0.1267331838607788, 0.02509496733546257, 1.240750789642334, 0.14529675245285034, 0.04199272394180298, -0.03953595831990242, -0.6494731307029724, -0.8219380974769592, 0.9060913324356079, -0.019450398162007332, -0.5692387223243713, -0.35136550664901733, -0.6756826043128967]} +{"t": 10.7648, "q": [-0.31167593598365784, 0.0014027399010956287, -0.004847866017371416, 0.6152200102806091, -0.3207271695137024, -0.0034439589362591505, -0.3588458299636841, 0.014888135716319084, -0.014490030705928802, 0.608274519443512, -0.2933560013771057, -0.01825527474284172, 0.032314643263816833, -0.05338446423411369, -0.019060363993048668, 0.12954947352409363, 0.12675714492797852, 0.025106951594352722, 1.240750789642334, 0.1452607959508896, 0.04199272394180298, -0.03954794257879257, -0.6494610905647278, -0.8219261169433594, 0.9061871767044067, -0.019114838913083076, -0.5693106055259705, -0.3513774871826172, -0.6756945848464966]} +{"t": 10.7815, "q": [-0.3116929829120636, 0.0014368281699717045, -0.004847866017371416, 0.615228533744812, -0.3207230865955353, -0.0034511780831962824, -0.3588458299636841, 0.014947790652513504, -0.014503423124551773, 0.608274519443512, -0.2933768033981323, -0.018204573541879654, 0.03228786215186119, -0.05338446423411369, -0.019060363993048668, 0.12953749299049377, 0.1267331838607788, 0.025118935853242874, 1.240750789642334, 0.14524881541728973, 0.04199272394180298, -0.03953595831990242, -0.6494851112365723, -0.8219021558761597, 0.9062350988388062, -0.01894705928862095, -0.5693585276603699, -0.3514733612537384, -0.6757185459136963]} +{"t": 10.7983, "q": [-0.3116844594478607, 0.0014453502371907234, -0.004861257970333099, 0.6152370572090149, -0.32073554396629333, -0.0034585732501000166, -0.3588287830352783, 0.01492222398519516, -0.014516814611852169, 0.6082915663719177, -0.29336851835250854, -0.01820460893213749, 0.03230125084519386, -0.05338446423411369, -0.019060363993048668, 0.12953749299049377, 0.1267331838607788, 0.025142904371023178, 1.240750789642334, 0.14521285891532898, 0.04199272394180298, -0.03953595831990242, -0.6494491100311279, -0.8218901753425598, 0.9062591195106506, -0.018851187080144882, -0.5693825483322144, -0.35148534178733826, -0.6757185459136963]} +{"t": 10.815, "q": [-0.3116844594478607, 0.0014453502371907234, -0.004861257970333099, 0.615228533744812, -0.32072320580482483, -0.003465713234618306, -0.3588458299636841, 0.014930746518075466, -0.014503423124551773, 0.6082659959793091, -0.29337266087532043, -0.01821182295680046, 0.03228786215186119, -0.05339961126446724, -0.01906081661581993, 0.12957344949245453, 0.12672120332717896, 0.025130920112133026, 1.240750789642334, 0.1452368199825287, 0.04199272394180298, -0.03952397406101227, -0.6494491100311279, -0.82187819480896, 0.9063190221786499, -0.01876729726791382, -0.5693945288658142, -0.3514733612537384, -0.6756945848464966]} +{"t": 10.8317, "q": [-0.3116929829120636, 0.0014538723044097424, -0.004847866017371416, 0.6152541041374207, -0.3207314610481262, -0.003465792164206505, -0.3588287830352783, 0.014896657317876816, -0.014490030705928802, 0.608274519443512, -0.2933768033981323, -0.018219035118818283, 0.03230125084519386, -0.05339966341853142, -0.019070565700531006, 0.12957344949245453, 0.12674516439437866, 0.025142904371023178, 1.240738868713379, 0.14527277648448944, 0.04198073968291283, -0.039559926837682724, -0.6494731307029724, -0.82187819480896, 0.9064748287200928, -0.01870737597346306, -0.5694065093994141, -0.3514973223209381, -0.6756945848464966]} +{"t": 10.8484, "q": [-0.31171002984046936, 0.0014623943716287613, -0.004861257970333099, 0.6152455806732178, -0.3207230865955353, -0.0034511780831962824, -0.35885435342788696, 0.014879613183438778, -0.014503423124551773, 0.6082659959793091, -0.2933768332004547, -0.018190113827586174, 0.032314643263816833, -0.053392063826322556, -0.01906546577811241, 0.12956145405769348, 0.12672120332717896, 0.025118935853242874, 1.240750789642334, 0.14529675245285034, 0.04199272394180298, -0.03954794257879257, -0.6494251489639282, -0.8218901753425598, 0.9066665768623352, -0.01865943893790245, -0.5694424510002136, -0.3514973223209381, -0.6757065653800964]} +{"t": 10.8651, "q": [-0.3117526173591614, 0.0014709164388477802, -0.004861257970333099, 0.6152370572090149, -0.3207230865955353, -0.0034511780831962824, -0.3588373064994812, 0.01486256904900074, -0.014490030705928802, 0.6082659959793091, -0.2933851480484009, -0.018190059810876846, 0.03227446973323822, -0.05339966341853142, -0.019070565700531006, 0.12956145405769348, 0.1267331838607788, 0.025118935853242874, 1.240750789642334, 0.14532071352005005, 0.04199272394180298, -0.039511989802122116, -0.6494731307029724, -0.82187819480896, 0.9069781303405762, -0.018551580607891083, -0.5694424510002136, -0.35148534178733826, -0.6757305264472961]} +{"t": 10.8818, "q": [-0.3117355704307556, 0.0014709164388477802, -0.004861257970333099, 0.6152455806732178, -0.3207271695137024, -0.0034439589362591505, -0.3588458299636841, 0.014854047447443008, -0.014476639218628407, 0.6082574725151062, -0.2933851480484009, -0.018190059810876846, 0.032314643263816833, -0.05341475456953049, -0.019061265513300896, 0.12953749299049377, 0.1267331838607788, 0.025142904371023178, 1.2407628297805786, 0.1452847570180893, 0.04199272394180298, -0.03953595831990242, -0.6494851112365723, -0.8218901753425598, 0.9074934720993042, -0.01835983246564865, -0.5694424510002136, -0.3515212833881378, -0.6757185459136963]} +{"t": 10.8986, "q": [-0.3117526173591614, 0.0014709164388477802, -0.004861257970333099, 0.6152370572090149, -0.3207312524318695, -0.0034367400221526623, -0.35885435342788696, 0.01483700331300497, -0.01446324773132801, 0.6082063317298889, -0.29338929057121277, -0.01818281225860119, 0.03227446973323822, -0.05339961126446724, -0.01906081661581993, 0.129633367061615, 0.12674516439437866, 0.025142904371023178, 1.240750789642334, 0.14532071352005005, 0.04199272394180298, -0.03954794257879257, -0.6494610905647278, -0.82187819480896, 0.9085480570793152, -0.018036259338259697, -0.5694544315338135, -0.35150930285453796, -0.6757065653800964]} +{"t": 10.9155, "q": [-0.31172704696655273, 0.0014709164388477802, -0.00483447453007102, 0.6152455806732178, -0.3207271695137024, -0.0034439589362591505, -0.35886287689208984, 0.014845524914562702, -0.01444985531270504, 0.6082063317298889, -0.2933560311794281, -0.01824081316590309, 0.03224768489599228, -0.05339200794696808, -0.019055714830756187, 0.12954947352409363, 0.1267331838607788, 0.025106951594352722, 1.240750789642334, 0.14529675245285034, 0.04198073968291283, -0.039511989802122116, -0.6494491100311279, -0.8219021558761597, 0.9099622368812561, -0.01756887510418892, -0.5694424510002136, -0.3514973223209381, -0.6756945848464966]} +{"t": 10.9322, "q": [-0.31172704696655273, 0.0014623943716287613, -0.004821082577109337, 0.615228533744812, -0.3207312524318695, -0.0034367400221526623, -0.35885435342788696, 0.014888135716319084, -0.01444985531270504, 0.6082233786582947, -0.2933643162250519, -0.018240777775645256, 0.032180726528167725, -0.0534072108566761, -0.019065916538238525, 0.12959741055965424, 0.12674516439437866, 0.025178857147693634, 1.240750789642334, 0.1452368199825287, 0.04200470820069313, -0.03952397406101227, -0.6494371294975281, -0.8218901753425598, 0.9129343032836914, -0.016622120514512062, -0.5693945288658142, -0.35150930285453796, -0.6757305264472961]} +{"t": 10.949, "q": [-0.31171852350234985, 0.0014453502371907234, -0.004807690624147654, 0.6152114868164062, -0.32073941826820374, -0.003422284033149481, -0.3588799238204956, 0.014879613183438778, -0.01444985531270504, 0.6082063317298889, -0.2933560311794281, -0.01824081316590309, 0.03203341364860535, -0.053407154977321625, -0.01905616745352745, 0.12959741055965424, 0.12672120332717896, 0.02515488862991333, 1.240750789642334, 0.14529675245285034, 0.04199272394180298, -0.03954794257879257, -0.6494970917701721, -0.8219021558761597, 0.9162299633026123, -0.015327824279665947, -0.5694184899330139, -0.3515212833881378, -0.6757065653800964]} +{"t": 10.9657, "q": [-0.31176114082336426, 0.0014623943716287613, -0.004821082577109337, 0.6152114868164062, -0.3207312524318695, -0.0034367400221526623, -0.35886287689208984, 0.014905179850757122, -0.01444985531270504, 0.6081892848014832, -0.2933560013771057, -0.01825527474284172, 0.03208698332309723, -0.053392063826322556, -0.01906546577811241, 0.1296093910932541, 0.12674516439437866, 0.025130920112133026, 1.240750789642334, 0.1453326940536499, 0.04199272394180298, -0.03954794257879257, -0.6497128009796143, -0.8219021558761597, 0.9188305735588074, -0.013997575268149376, -0.5694065093994141, -0.35150930285453796, -0.675742506980896]} +{"t": 10.9824, "q": [-0.3117526173591614, 0.0014453502371907234, -0.00483447453007102, 0.6152455806732178, -0.3207312524318695, -0.0034367400221526623, -0.3588799238204956, 0.014888135716319084, -0.01446324773132801, 0.6081637144088745, -0.2933851480484009, -0.018190059810876846, 0.032167334109544754, -0.05339200794696808, -0.019055714830756187, 0.1296573281288147, 0.1267331838607788, 0.025142904371023178, 1.2407628297805786, 0.1452607959508896, 0.04201669245958328, -0.039559926837682724, -0.649880588054657, -0.8218901753425598, 0.9214191436767578, -0.012823120690882206, -0.5694065093994141, -0.3515212833881378, -0.6757544875144958]} +{"t": 10.9991, "q": [-0.31176114082336426, 0.0014623943716287613, -0.004847866017371416, 0.6152200102806091, -0.32073137164115906, -0.003451275173574686, -0.3588714003562927, 0.01486256904900074, -0.014476639218628407, 0.6081381440162659, -0.2933809757232666, -0.018197325989603996, 0.03220750764012337, -0.053392063826322556, -0.01906546577811241, 0.12964534759521484, 0.12675714492797852, 0.025142904371023178, 1.2407628297805786, 0.14529675245285034, 0.04199272394180298, -0.03954794257879257, -0.6501801609992981, -0.8218901753425598, 0.9239717721939087, -0.012080099433660507, -0.5694065093994141, -0.3515212833881378, -0.6758144497871399]} +{"t": 11.016, "q": [-0.31177818775177, 0.0014623943716287613, -0.004861257970333099, 0.6152200102806091, -0.320735365152359, -0.003429502947255969, -0.3588714003562927, 0.014854047447443008, -0.01446324773132801, 0.6081551909446716, -0.2933851182460785, -0.01820453815162182, 0.03223429247736931, -0.05339966341853142, -0.019070565700531006, 0.12956145405769348, 0.12675714492797852, 0.025142904371023178, 1.2407747507095337, 0.14529675245285034, 0.04200470820069313, -0.03953595831990242, -0.6502400636672974, -0.82187819480896, 0.9256495833396912, -0.011696604080498219, -0.5694065093994141, -0.3515452742576599, -0.6758384108543396]} +{"t": 11.0327, "q": [-0.3117526173591614, 0.0014538723044097424, -0.004807690624147654, 0.6152200102806091, -0.320735365152359, -0.003429502947255969, -0.3588714003562927, 0.014879613183438778, -0.01444985531270504, 0.6081722378730774, -0.29336434602737427, -0.018226318061351776, 0.03220750764012337, -0.05337686464190483, -0.019055265933275223, 0.12958543002605438, 0.1267331838607788, 0.025142904371023178, 1.2407628297805786, 0.1452368199825287, 0.04199272394180298, -0.03954794257879257, -0.6502161026000977, -0.8218541741371155, 0.9265004396438599, -0.011564777232706547, -0.56934654712677, -0.3515212833881378, -0.675886332988739]} +{"t": 11.0495, "q": [-0.31176966428756714, 0.0014453502371907234, -0.004821082577109337, 0.6152029633522034, -0.3207312524318695, -0.0034367400221526623, -0.3588799238204956, 0.014879613183438778, -0.01446324773132801, 0.6081551909446716, -0.29337263107299805, -0.01824074238538742, 0.0321003757417202, -0.05338446423411369, -0.019060363993048668, 0.12958543002605438, 0.1267092078924179, 0.02515488862991333, 1.240750789642334, 0.1452607959508896, 0.04199272394180298, -0.03954794257879257, -0.6501561999320984, -0.8218541741371155, 0.9266921877861023, -0.011492871679365635, -0.5693825483322144, -0.35153329372406006, -0.6758983135223389]} +{"t": 11.0662, "q": [-0.31176114082336426, 0.0014623943716287613, -0.004807690624147654, 0.6151859164237976, -0.3207436203956604, -0.0034296002704650164, -0.3588799238204956, 0.014879613183438778, -0.014423071406781673, 0.6081381440162659, -0.29336434602737427, -0.018226318061351776, 0.03203341364860535, -0.05341475456953049, -0.019061265513300896, 0.1296093910932541, 0.1267092078924179, 0.025142904371023178, 1.2407628297805786, 0.1452607959508896, 0.04198073968291283, -0.03953595831990242, -0.6501801609992981, -0.8218901753425598, 0.9266802072525024, -0.01152882445603609, -0.5694304704666138, -0.3515212833881378, -0.6759342551231384]} +{"t": 11.083, "q": [-0.31172704696655273, 0.0014538723044097424, -0.004807690624147654, 0.6151944398880005, -0.3207312524318695, -0.0034367400221526623, -0.3588799238204956, 0.014879613183438778, -0.014423071406781673, 0.6081807613372803, -0.29336848855018616, -0.0182335302233696, 0.032020021229982376, -0.05338446423411369, -0.019060363993048668, 0.129633367061615, 0.12672120332717896, 0.02515488862991333, 1.2407628297805786, 0.1453087329864502, 0.04198073968291283, -0.03954794257879257, -0.6503599286079407, -0.82187819480896, 0.9266442656517029, -0.01152882445603609, -0.5694065093994141, -0.3515212833881378, -0.6759342551231384]} +{"t": 11.0997, "q": [-0.3117355704307556, 0.0014623943716287613, -0.004821082577109337, 0.6151944398880005, -0.3207312524318695, -0.0034367400221526623, -0.3588714003562927, 0.01486256904900074, -0.01446324773132801, 0.6081551909446716, -0.29337263107299805, -0.01824074238538742, 0.03206019848585129, -0.05339966341853142, -0.019070565700531006, 0.12962138652801514, 0.12676914036273956, 0.025130920112133026, 1.2407747507095337, 0.14529675245285034, 0.04199272394180298, -0.03954794257879257, -0.6504917740821838, -0.8219141364097595, 0.926632285118103, -0.01152882445603609, -0.5694065093994141, -0.3515452742576599, -0.6759462356567383]} +{"t": 11.1165, "q": [-0.31171852350234985, 0.0014623943716287613, -0.00483447453007102, 0.6152200102806091, -0.32073545455932617, -0.003444056259468198, -0.35886287689208984, 0.01486256904900074, -0.01446324773132801, 0.6081892848014832, -0.29336017370224, -0.018233565613627434, 0.03211376443505287, -0.053392063826322556, -0.01906546577811241, 0.1296573281288147, 0.12674516439437866, 0.025142904371023178, 1.240738868713379, 0.1453566700220108, 0.04201669245958328, -0.03953595831990242, -0.6506715416908264, -0.8218901753425598, 0.9266083240509033, -0.011552792973816395, -0.5694065093994141, -0.35155725479125977, -0.6759342551231384]} +{"t": 11.1332, "q": [-0.31171852350234985, 0.0014538723044097424, -0.004847866017371416, 0.615228533744812, -0.3207314610481262, -0.003465792164206505, -0.35885435342788696, 0.014888135716319084, -0.014476639218628407, 0.6082233786582947, -0.2933851182460785, -0.01820453815162182, 0.03208698332309723, -0.05340726673603058, -0.01907566748559475, 0.1296093910932541, 0.12676914036273956, 0.025118935853242874, 1.240750789642334, 0.14532071352005005, 0.04201669245958328, -0.03953595831990242, -0.650851309299469, -0.8219021558761597, 0.926632285118103, -0.011552792973816395, -0.5694065093994141, -0.35153329372406006, -0.6759222745895386]} +{"t": 11.15, "q": [-0.3116929829120636, 0.0014709164388477802, -0.004847866017371416, 0.6152455806732178, -0.3207230865955353, -0.0034511780831962824, -0.35885435342788696, 0.014888135716319084, -0.01446324773132801, 0.6082233786582947, -0.2933768033981323, -0.018204573541879654, 0.0321003757417202, -0.05340726673603058, -0.01907566748559475, 0.12958543002605438, 0.12676914036273956, 0.025118935853242874, 1.2407628297805786, 0.14532071352005005, 0.04201669245958328, -0.03954794257879257, -0.6509112119674683, -0.8218901753425598, 0.926632285118103, -0.01158874575048685, -0.5694304704666138, -0.3515692353248596, -0.6759222745895386]} +{"t": 11.1667, "q": [-0.31167593598365784, 0.0014879610389471054, -0.004847866017371416, 0.6152626276016235, -0.3207271695137024, -0.0034439589362591505, -0.3588373064994812, 0.014879613183438778, -0.01446324773132801, 0.6082915663719177, -0.29337266087532043, -0.01821182295680046, 0.03208698332309723, -0.05341486260294914, -0.019080767408013344, 0.12958543002605438, 0.12674516439437866, 0.025118935853242874, 1.2407628297805786, 0.1453087329864502, 0.04200470820069313, -0.03953595831990242, -0.6509711146354675, -0.8219380974769592, 0.926632285118103, -0.01158874575048685, -0.5694184899330139, -0.35155725479125977, -0.6759222745895386]} +{"t": 11.1835, "q": [-0.31167593598365784, 0.0014879610389471054, -0.004847866017371416, 0.6152881979942322, -0.32073137164115906, -0.003451275173574686, -0.3588373064994812, 0.01486256904900074, -0.01444985531270504, 0.6082659959793091, -0.2933851480484009, -0.018190059810876846, 0.03206019848585129, -0.05340726673603058, -0.01907566748559475, 0.129633367061615, 0.12675714492797852, 0.025118935853242874, 1.240750789642334, 0.14532071352005005, 0.04200470820069313, -0.03954794257879257, -0.6509950757026672, -0.8219860196113586, 0.926632285118103, -0.011600730009377003, -0.5694065093994141, -0.35155725479125977, -0.6759582161903381]} +{"t": 11.2003, "q": [-0.3117440938949585, 0.0014964831061661243, -0.004847866017371416, 0.6152967214584351, -0.3207271695137024, -0.0034439589362591505, -0.3588373064994812, 0.014854047447443008, -0.014436463825404644, 0.6082319021224976, -0.29338929057121277, -0.01818281225860119, 0.03207359090447426, -0.053407374769449234, -0.019095169380307198, 0.12957344949245453, 0.12676914036273956, 0.025142904371023178, 1.240750789642334, 0.14534468948841095, 0.04200470820069313, -0.03953595831990242, -0.6509950757026672, -0.8219620585441589, 0.9266562461853027, -0.011576761491596699, -0.5694065093994141, -0.35155725479125977, -0.6759222745895386]} +{"t": 11.217, "q": [-0.31167593598365784, 0.0014964831061661243, -0.00483447453007102, 0.6153052449226379, -0.3207312524318695, -0.0034367400221526623, -0.3588458299636841, 0.014845524914562702, -0.01444985531270504, 0.608274519443512, -0.29338929057121277, -0.01819727197289467, 0.03208698332309723, -0.05341486260294914, -0.019080767408013344, 0.1296093910932541, 0.12674516439437866, 0.025142904371023178, 1.2407628297805786, 0.1452847570180893, 0.04199272394180298, -0.03953595831990242, -0.6510070562362671, -0.8219740390777588, 0.9266802072525024, -0.01158874575048685, -0.5694065093994141, -0.3515692353248596, -0.6759222745895386]} +{"t": 11.2338, "q": [-0.3117015063762665, 0.0014879610389471054, -0.004847866017371416, 0.6153478622436523, -0.32073962688446045, -0.0034513543359935284, -0.3588458299636841, 0.014819959178566933, -0.01444985531270504, 0.6082659959793091, -0.2933851480484009, -0.018190059810876846, 0.03207359090447426, -0.05340726673603058, -0.01907566748559475, 0.1296093910932541, 0.12674516439437866, 0.025142904371023178, 1.240750789642334, 0.1452607959508896, 0.04198073968291283, -0.03952397406101227, -0.6510070562362671, -0.8220339417457581, 0.9267041683197021, -0.01158874575048685, -0.5694184899330139, -0.3515212833881378, -0.6759222745895386]} +{"t": 11.2505, "q": [-0.3116844594478607, 0.0014964831061661243, -0.00483447453007102, 0.6153649091720581, -0.3207312524318695, -0.0034367400221526623, -0.3588287830352783, 0.014819959178566933, -0.01444985531270504, 0.608274519443512, -0.2933851480484009, -0.018190059810876846, 0.03206019848585129, -0.05341486260294914, -0.019080767408013344, 0.1296093910932541, 0.12675714492797852, 0.025142904371023178, 1.240750789642334, 0.14532071352005005, 0.041968755424022675, -0.03952397406101227, -0.6509830951690674, -0.8220219612121582, 0.9267281293869019, -0.011612714268267155, -0.5694424510002136, -0.35153329372406006, -0.6759222745895386]} +{"t": 11.2672, "q": [-0.31166741251945496, 0.0014964831061661243, -0.00483447453007102, 0.6153819561004639, -0.3207230865955353, -0.0034511780831962824, -0.35881173610687256, 0.01483700331300497, -0.01446324773132801, 0.608274519443512, -0.29339343309402466, -0.01819002442061901, 0.03207359090447426, -0.0534224659204483, -0.019085869193077087, 0.12957344949245453, 0.12674516439437866, 0.025142904371023178, 1.240750789642334, 0.1452607959508896, 0.041968755424022675, -0.03953595831990242, -0.6509711146354675, -0.8220099806785583, 0.926776111125946, -0.011636682786047459, -0.5694424510002136, -0.35155725479125977, -0.6759102940559387]} +{"t": 11.2841, "q": [-0.31176114082336426, 0.0015135272406041622, -0.004847866017371416, 0.6154160499572754, -0.3207271695137024, -0.0034439589362591505, -0.35882025957107544, 0.014819959178566933, -0.01446324773132801, 0.6082574725151062, -0.2933809757232666, -0.018197325989603996, 0.03208698332309723, -0.05339217558503151, -0.01908496767282486, 0.129633367061615, 0.1267331838607788, 0.025142904371023178, 1.240738868713379, 0.1453087329864502, 0.04195677116513252, -0.03954794257879257, -0.6509711146354675, -0.8219740390777588, 0.926776111125946, -0.011636682786047459, -0.5694783926010132, -0.3515452742576599, -0.6758623719215393]} +{"t": 11.3008, "q": [-0.3117355704307556, 0.0015050051733851433, -0.00483447453007102, 0.6154330968856812, -0.3207312524318695, -0.0034367400221526623, -0.35881173610687256, 0.01480291411280632, -0.014436463825404644, 0.6082830429077148, -0.29338929057121277, -0.01819727197289467, 0.03208698332309723, -0.0534224659204483, -0.019085869193077087, 0.12964534759521484, 0.12674516439437866, 0.025142904371023178, 1.240750789642334, 0.14527277648448944, 0.04198073968291283, -0.03953595831990242, -0.6509591341018677, -0.8219620585441589, 0.9267521500587463, -0.011636682786047459, -0.5695023536682129, -0.35155725479125977, -0.6758264303207397]} +{"t": 11.3176, "q": [-0.3117015063762665, 0.0014879610389471054, -0.00483447453007102, 0.6154330968856812, -0.3207312524318695, -0.0034367400221526623, -0.35882025957107544, 0.01480291411280632, -0.014436463825404644, 0.6082915663719177, -0.29337266087532043, -0.01819736137986183, 0.03206019848585129, -0.05341486260294914, -0.019080767408013344, 0.12954947352409363, 0.12676914036273956, 0.02515488862991333, 1.240750789642334, 0.1452847570180893, 0.04198073968291283, -0.03954794257879257, -0.6509591341018677, -0.8219860196113586, 0.9267880916595459, -0.01164866704493761, -0.5695742964744568, -0.35155725479125977, -0.6756945848464966]} +{"t": 11.3343, "q": [-0.3117015063762665, 0.0015050051733851433, -0.004861257970333099, 0.6154842376708984, -0.3207271695137024, -0.0034439589362591505, -0.3588032126426697, 0.01480291411280632, -0.014436463825404644, 0.6083256602287292, -0.29334771633148193, -0.018226388841867447, 0.03203341364860535, -0.053407374769449234, -0.019095169380307198, 0.1296093910932541, 0.12678112089633942, 0.025142904371023178, 1.240738868713379, 0.14534468948841095, 0.04199272394180298, -0.039559926837682724, -0.650935173034668, -0.8219860196113586, 0.9269198775291443, -0.011672635562717915, -0.5696701407432556, -0.3515692353248596, -0.6754788756370544]} +{"t": 11.351, "q": [-0.31171002984046936, 0.0015135272406041622, -0.00483447453007102, 0.6154842376708984, -0.3207271695137024, -0.0034439589362591505, -0.3587946891784668, 0.014845524914562702, -0.014423071406781673, 0.6083171367645264, -0.2933518886566162, -0.01823360100388527, 0.03203341364860535, -0.05341486260294914, -0.019080767408013344, 0.12959741055965424, 0.12678112089633942, 0.025142904371023178, 1.2407628297805786, 0.1453326940536499, 0.04199272394180298, -0.03952397406101227, -0.650935173034668, -0.8220219612121582, 0.9269438982009888, -0.01170858833938837, -0.5697780251502991, -0.3515452742576599, -0.6752991080284119]} +{"t": 11.3678, "q": [-0.31167593598365784, 0.0014879610389471054, -0.004807690624147654, 0.6154927611351013, -0.32073554396629333, -0.0034585732501000166, -0.3587946891784668, 0.014828480780124664, -0.014409679919481277, 0.6083086133003235, -0.29334771633148193, -0.018240848556160927, 0.03199324011802673, -0.0534224659204483, -0.019085869193077087, 0.12962138652801514, 0.12678112089633942, 0.025178857147693634, 1.2407867908477783, 0.1453326940536499, 0.04198073968291283, -0.03953595831990242, -0.6508992314338684, -0.8220699429512024, 0.9270157814025879, -0.011672635562717915, -0.5697900056838989, -0.3515692353248596, -0.675143301486969]} +{"t": 11.3845, "q": [-0.3116844594478607, 0.0014964831061661243, -0.004780906718224287, 0.6154842376708984, -0.3207271695137024, -0.0034439589362591505, -0.3588032126426697, 0.014819959178566933, -0.014409679919481277, 0.6083341836929321, -0.29334357380867004, -0.018233636394143105, 0.03197984769940376, -0.053414974361658096, -0.019100267440080643, 0.12959741055965424, 0.12678112089633942, 0.025142904371023178, 1.240750789642334, 0.14534468948841095, 0.042028676718473434, -0.03954794257879257, -0.6508752703666687, -0.8220699429512024, 0.9270157814025879, -0.011720572598278522, -0.569861888885498, -0.3515812158584595, -0.6749874949455261]} +{"t": 11.4012, "q": [-0.31167593598365784, 0.0014879610389471054, -0.004780906718224287, 0.6154757142066956, -0.3207271695137024, -0.0034439589362591505, -0.35881173610687256, 0.014854047447443008, -0.014409679919481277, 0.6083682775497437, -0.29333943128585815, -0.018226424232125282, 0.03195306286215782, -0.0534224659204483, -0.019085869193077087, 0.12966932356357574, 0.12678112089633942, 0.025166872888803482, 1.2407747507095337, 0.14529675245285034, 0.04200470820069313, -0.03952397406101227, -0.650851309299469, -0.8221298456192017, 0.9270157814025879, -0.011696604080498219, -0.5701015591621399, -0.3515931963920593, -0.6746639609336853]} +{"t": 11.418, "q": [-0.3116929829120636, 0.0015135272406041622, -0.00479429867118597, 0.6155012845993042, -0.3207230865955353, -0.0034511780831962824, -0.3587861955165863, 0.014879613183438778, -0.014409679919481277, 0.6083512306213379, -0.2933352589607239, -0.01823367178440094, 0.03193967044353485, -0.0534224659204483, -0.019085869193077087, 0.12962138652801514, 0.12678112089633942, 0.025118935853242874, 1.240750789642334, 0.1453566700220108, 0.04199272394180298, -0.03953595831990242, -0.6508752703666687, -0.8222856521606445, 0.9270157814025879, -0.011672635562717915, -0.5705090165138245, -0.3515812158584595, -0.674544095993042]} +{"t": 11.4347, "q": [-0.31171002984046936, 0.0015050051733851433, -0.004807690624147654, 0.61551833152771, -0.3207271695137024, -0.0034439589362591505, -0.3587946891784668, 0.01486256904900074, -0.014423071406781673, 0.608342707157135, -0.2933726906776428, -0.018182901665568352, 0.03196645528078079, -0.0534224659204483, -0.019085869193077087, 0.12959741055965424, 0.12680508196353912, 0.025142904371023178, 1.240750789642334, 0.14532071352005005, 0.04198073968291283, -0.03953595831990242, -0.6509231925010681, -0.8223575353622437, 0.927003800868988, -0.011660651303827763, -0.5713359713554382, -0.3515692353248596, -0.6743763089179993]} +{"t": 11.4515, "q": [-0.3116929829120636, 0.0015135272406041622, -0.004847866017371416, 0.6155439019203186, -0.3207271695137024, -0.0034439589362591505, -0.3587946891784668, 0.014854047447443008, -0.01446324773132801, 0.608342707157135, -0.29336434602737427, -0.018197396770119667, 0.032006628811359406, -0.0534224659204483, -0.019085869193077087, 0.12964534759521484, 0.12678112089633942, 0.025142904371023178, 1.240750789642334, 0.1453087329864502, 0.04199272394180298, -0.03952397406101227, -0.6509711146354675, -0.8225013613700867, 0.9269918203353882, -0.011612714268267155, -0.5724264979362488, -0.3515452742576599, -0.6741605997085571]} +{"t": 11.4682, "q": [-0.3117015063762665, 0.0015135272406041622, -0.004821082577109337, 0.6155353784561157, -0.3207271695137024, -0.0034439589362591505, -0.3587776720523834, 0.01483700331300497, -0.014476639218628407, 0.608342707157135, -0.29336851835250854, -0.01820460893213749, 0.03199324011802673, -0.053437668830156326, -0.019096070900559425, 0.12959741055965424, 0.12678112089633942, 0.025142904371023178, 1.2407149076461792, 0.14534468948841095, 0.04199272394180298, -0.03953595831990242, -0.6510190963745117, -0.8225972056388855, 0.9269678592681885, -0.011576761491596699, -0.5734811425209045, -0.35155725479125977, -0.6740767359733582]} +{"t": 11.4849, "q": [-0.3116929829120636, 0.0015220493078231812, -0.00483447453007102, 0.6155353784561157, -0.3207271695137024, -0.0034439589362591505, -0.3587946891784668, 0.014819959178566933, -0.014396287500858307, 0.6083341836929321, -0.29336851835250854, -0.01817568950355053, 0.03199324011802673, -0.053430065512657166, -0.019090967252850533, 0.12956145405769348, 0.12679310142993927, 0.025142904371023178, 1.2407628297805786, 0.14532071352005005, 0.04198073968291283, -0.03953595831990242, -0.6510909795761108, -0.8226811289787292, 0.9269198775291443, -0.011576761491596699, -0.5750390887260437, -0.3515692353248596, -0.6740047931671143]} +{"t": 11.5017, "q": [-0.31167593598365784, 0.0015305713750422, -0.004807690624147654, 0.6155353784561157, -0.3207312524318695, -0.0034367400221526623, -0.3587946891784668, 0.01483700331300497, -0.014409679919481277, 0.6083341836929321, -0.2933768332004547, -0.018175635486841202, 0.03196645528078079, -0.053437668830156326, -0.019096070900559425, 0.12958543002605438, 0.12679310142993927, 0.025130920112133026, 1.2407628297805786, 0.14532071352005005, 0.04198073968291283, -0.03953595831990242, -0.651222825050354, -0.822932779788971, 0.9268959164619446, -0.011600730009377003, -0.5768367052078247, -0.3515931963920593, -0.6739688515663147]} +{"t": 11.5184, "q": [-0.3117015063762665, 0.001539093442261219, -0.00483447453007102, 0.6155268549919128, -0.32073941826820374, -0.003422284033149481, -0.3587946891784668, 0.01477734837681055, -0.014409679919481277, 0.6083000898361206, -0.2933768332004547, -0.018175635486841202, 0.03193967044353485, -0.053437668830156326, -0.019096070900559425, 0.1296093910932541, 0.12678112089633942, 0.025142904371023178, 1.240738868713379, 0.1452847570180893, 0.04198073968291283, -0.03954794257879257, -0.6512707471847534, -0.8232923150062561, 0.9269198775291443, -0.011600730009377003, -0.5778553485870361, -0.3516291379928589, -0.6739089488983154]} +{"t": 11.5351, "q": [-0.31171852350234985, 0.001539093442261219, -0.00483447453007102, 0.6155353784561157, -0.32073545455932617, -0.003444056259468198, -0.3587946891784668, 0.014794392511248589, -0.014409679919481277, 0.6083171367645264, -0.2933726906776428, -0.018182901665568352, 0.03196645528078079, -0.05344526469707489, -0.01910116896033287, 0.12962138652801514, 0.12682905793190002, 0.025142904371023178, 1.240738868713379, 0.1453326940536499, 0.041968755424022675, -0.03952397406101227, -0.651390552520752, -0.8236398696899414, 0.9269438982009888, -0.011600730009377003, -0.5789099931716919, -0.3516051769256592, -0.673717200756073]} +{"t": 11.5519, "q": [-0.3116844594478607, 0.001539093442261219, -0.004847866017371416, 0.6155609488487244, -0.3207395374774933, -0.0034368191845715046, -0.35876914858818054, 0.014828480780124664, -0.014409679919481277, 0.6083086133003235, -0.29336851835250854, -0.01820460893213749, 0.03197984769940376, -0.053445376455783844, -0.01912067085504532, 0.1296573281288147, 0.12681707739830017, 0.025142904371023178, 1.2407747507095337, 0.1453087329864502, 0.04198073968291283, -0.03954794257879257, -0.6515823006629944, -0.8238675594329834, 0.9269438982009888, -0.011576761491596699, -0.5794612765312195, -0.3516291379928589, -0.6735134720802307]} +{"t": 11.5686, "q": [-0.3117015063762665, 0.001539093442261219, -0.00483447453007102, 0.6155694127082825, -0.32073545455932617, -0.003444056259468198, -0.35876062512397766, 0.014819959178566933, -0.014423071406781673, 0.6083171367645264, -0.29336434602737427, -0.018197396770119667, 0.03196645528078079, -0.053506068885326385, -0.019141973927617073, 0.12959741055965424, 0.12682905793190002, 0.025142904371023178, 1.2407628297805786, 0.1452847570180893, 0.04198073968291283, -0.03952397406101227, -0.6518459916114807, -0.8239514231681824, 0.9269678592681885, -0.011564777232706547, -0.5800005197525024, -0.35166510939598083, -0.673429548740387]} +{"t": 11.5854, "q": [-0.3116844594478607, 0.0015305713750422, -0.004807690624147654, 0.6155694127082825, -0.320735365152359, -0.003429502947255969, -0.3587435781955719, 0.014811436645686626, -0.014436463825404644, 0.6083256602287292, -0.2933602035045624, -0.018190184608101845, 0.03197984769940376, -0.05352127179503441, -0.01915217563509941, 0.12966932356357574, 0.12685301899909973, 0.025142904371023178, 1.240750789642334, 0.14529675245285034, 0.04198073968291283, -0.03953595831990242, -0.6521815657615662, -0.8240593075752258, 0.9270277619361877, -0.01158874575048685, -0.5804799199104309, -0.3517010509967804, -0.673345685005188]} +{"t": 11.6023, "q": [-0.3116929829120636, 0.0015050051733851433, -0.004821082577109337, 0.615603506565094, -0.320735365152359, -0.003429502947255969, -0.35871800780296326, 0.014845524914562702, -0.014423071406781673, 0.6083086133003235, -0.2933602035045624, -0.018190184608101845, 0.03195306286215782, -0.05352127179503441, -0.01915217563509941, 0.1297052651643753, 0.12687699496746063, 0.025142904371023178, 1.2407628297805786, 0.1453087329864502, 0.04200470820069313, -0.03953595831990242, -0.652505099773407, -0.8240712881088257, 0.9270157814025879, -0.011636682786047459, -0.5810312032699585, -0.35180890560150146, -0.6732857823371887]} +{"t": 11.619, "q": [-0.3116588890552521, 0.0015135272406041622, -0.004821082577109337, 0.6156461238861084, -0.32074370980262756, -0.003444117261096835, -0.35868391394615173, 0.01483700331300497, -0.014423071406781673, 0.6083000898361206, -0.29336851835250854, -0.01817568950355053, 0.03199324011802673, -0.05352887511253357, -0.019157277420163155, 0.12958543002605438, 0.12688897550106049, 0.025178857147693634, 1.2407628297805786, 0.14532071352005005, 0.04200470820069313, -0.03952397406101227, -0.653104305267334, -0.8240593075752258, 0.9270157814025879, -0.011624698527157307, -0.5819180011749268, -0.3519047796726227, -0.6731659173965454]} +{"t": 11.6357, "q": [-0.3116844594478607, 0.0015135272406041622, -0.004807690624147654, 0.6157143115997314, -0.320735365152359, -0.003429502947255969, -0.3586498200893402, 0.014845524914562702, -0.014396287500858307, 0.6083256602287292, -0.2933560907840729, -0.01815403439104557, 0.03199324011802673, -0.05355927348136902, -0.01917767897248268, 0.12954947352409363, 0.12690095603466034, 0.025178857147693634, 1.240750789642334, 0.1453087329864502, 0.04200470820069313, -0.03954794257879257, -0.6540151238441467, -0.8242270946502686, 0.9270637035369873, -0.011600730009377003, -0.5836917161941528, -0.3520006537437439, -0.6729502081871033]} +{"t": 11.6526, "q": [-0.31166741251945496, 0.0014964831061661243, -0.004821082577109337, 0.6157569289207458, -0.3207477927207947, -0.0034368981141597033, -0.35863277316093445, 0.014828480780124664, -0.014396287500858307, 0.6083171367645264, -0.2933560907840729, -0.01815403439104557, 0.03199324011802673, -0.05365048348903656, -0.019238825887441635, 0.12958543002605438, 0.126960888504982, 0.025178857147693634, 1.240738868713379, 0.14532071352005005, 0.04198073968291283, -0.03953595831990242, -0.6552255153656006, -0.8242510557174683, 0.9270637035369873, -0.011504855938255787, -0.5859566926956177, -0.35203662514686584, -0.6726146340370178]} +{"t": 11.6694, "q": [-0.31166741251945496, 0.0014879610389471054, -0.004807690624147654, 0.6157910227775574, -0.320735365152359, -0.003429502947255969, -0.3586157262325287, 0.014854047447443008, -0.01444985531270504, 0.6083341836929321, -0.2933436334133148, -0.018132396042346954, 0.032006628811359406, -0.053718894720077515, -0.019284682348370552, 0.12956145405769348, 0.12708072364330292, 0.02515488862991333, 1.240750789642334, 0.1452847570180893, 0.04199272394180298, -0.03952397406101227, -0.6563640236854553, -0.8242510557174683, 0.927087664604187, -0.01152882445603609, -0.5876345038414001, -0.3521684408187866, -0.6722790598869324]} +{"t": 11.6861, "q": [-0.3116503655910492, 0.0014709164388477802, -0.004807690624147654, 0.6158847808837891, -0.320735365152359, -0.003429502947255969, -0.3585646152496338, 0.01486256904900074, -0.01444985531270504, 0.6083341836929321, -0.2933436334133148, -0.018132396042346954, 0.032006628811359406, -0.05383290722966194, -0.019361106678843498, 0.12958543002605438, 0.12712866067886353, 0.02515488862991333, 1.240750789642334, 0.1452847570180893, 0.04200470820069313, -0.03952397406101227, -0.6580058932304382, -0.8246345520019531, 0.9271955490112305, -0.011516840197145939, -0.588988721370697, -0.35233622789382935, -0.671859622001648]} +{"t": 11.703, "q": [-0.31163331866264343, 0.0014794389717280865, -0.00483447453007102, 0.6159699559211731, -0.3207436203956604, -0.0034296002704650164, -0.358547568321228, 0.014819959178566933, -0.014409679919481277, 0.6083341836929321, -0.2933644652366638, -0.018081678077578545, 0.03196645528078079, -0.053901318460702896, -0.019406963139772415, 0.12962138652801514, 0.12722453474998474, 0.025178857147693634, 1.2407628297805786, 0.14524881541728973, 0.04198073968291283, -0.03952397406101227, -0.6596836447715759, -0.8254374861717224, 0.92723149061203, -0.011552792973816395, -0.5898275971412659, -0.3525998890399933, -0.6713322997093201]} +{"t": 11.7197, "q": [-0.3115992248058319, 0.0014964831061661243, -0.004821082577109337, 0.6160210967063904, -0.32073941826820374, -0.003422284033149481, -0.35853052139282227, 0.014828480780124664, -0.014409679919481277, 0.608342707157135, -0.2934851050376892, -0.01782803423702717, 0.03197984769940376, -0.05402293801307678, -0.019488483667373657, 0.12957344949245453, 0.12732040882110596, 0.025178857147693634, 1.240750789642334, 0.1452607959508896, 0.04200470820069313, -0.039511989802122116, -0.6613734364509583, -0.8265280723571777, 0.9272794127464294, -0.011576761491596699, -0.5902590751647949, -0.35298335552215576, -0.670661211013794]} +{"t": 11.7365, "q": [-0.31158217787742615, 0.0014964831061661243, -0.00483447453007102, 0.6160807609558105, -0.3207312524318695, -0.0034367400221526623, -0.3585134744644165, 0.014828480780124664, -0.014409679919481277, 0.608342707157135, -0.2935600280761719, -0.017625195905566216, 0.03196645528078079, -0.054266173392534256, -0.019651522859930992, 0.1296093910932541, 0.1274881809949875, 0.025178857147693634, 1.2407268285751343, 0.1452368199825287, 0.04198073968291283, -0.03952397406101227, -0.6630991697311401, -0.8277264833450317, 0.9272794127464294, -0.011576761491596699, -0.5906665325164795, -0.35337886214256287, -0.6698582768440247]} +{"t": 11.7533, "q": [-0.3115992248058319, 0.001539093442261219, -0.004861257970333099, 0.616191565990448, -0.32073941826820374, -0.003422284033149481, -0.3584623336791992, 0.01483700331300497, -0.014423071406781673, 0.6083597540855408, -0.2935517728328705, -0.01756737194955349, 0.03196645528078079, -0.054471395909786224, -0.019789261743426323, 0.1296573281288147, 0.12766794860363007, 0.025178857147693634, 1.2407268285751343, 0.14516492187976837, 0.04199272394180298, -0.03952397406101227, -0.664968729019165, -0.8287091851234436, 0.9273033738136292, -0.011564777232706547, -0.5910500288009644, -0.353594571352005, -0.6687437295913696]} +{"t": 11.7701, "q": [-0.31159070134162903, 0.001581704244017601, -0.004861257970333099, 0.6162938475608826, -0.320735365152359, -0.003429502947255969, -0.3584623336791992, 0.01480291411280632, -0.01444985531270504, 0.608342707157135, -0.29355600476264954, -0.01748780347406864, 0.03189949691295624, -0.054638609290122986, -0.019901737570762634, 0.12964534759521484, 0.12787167727947235, 0.025178857147693634, 1.2407268285751343, 0.14521285891532898, 0.04198073968291283, -0.039511989802122116, -0.6674973964691162, -0.8295600414276123, 0.9273992776870728, -0.011444934643805027, -0.5915173888206482, -0.35381028056144714, -0.6672697067260742]} +{"t": 11.7868, "q": [-0.31158217787742615, 0.0016328366473317146, -0.00483447453007102, 0.6163619756698608, -0.3207477927207947, -0.0034368981141597033, -0.3585219979286194, 0.01477734837681055, -0.01436950359493494, 0.608342707157135, -0.2936350107192993, -0.017364516854286194, 0.03175218403339386, -0.05479062348604202, -0.020003991201519966, 0.1296093910932541, 0.12800350785255432, 0.025178857147693634, 1.240738868713379, 0.14527277648448944, 0.04199272394180298, -0.03952397406101227, -0.670433521270752, -0.8302910923957825, 0.9276389479637146, -0.011337077245116234, -0.5920087695121765, -0.3540259897708893, -0.6657117009162903]} +{"t": 11.8038, "q": [-0.31163331866264343, 0.0017265803180634975, -0.00483447453007102, 0.6164472103118896, -0.32074370980262756, -0.003444117261096835, -0.35849642753601074, 0.014768825843930244, -0.014342720620334148, 0.6082659959793091, -0.29368916153907776, -0.017197920009493828, 0.03171201050281525, -0.05490463227033615, -0.020080678164958954, 0.129633367061615, 0.12821923196315765, 0.025166872888803482, 1.2407268285751343, 0.14527277648448944, 0.041968755424022675, -0.03953595831990242, -0.6731539368629456, -0.8311179876327515, 0.9276149868965149, -0.01131310872733593, -0.5929434895515442, -0.35418179631233215, -0.6640938520431519]} +{"t": 11.8205, "q": [-0.3116418421268463, 0.00178623478859663, -0.004821082577109337, 0.6165835857391357, -0.32074370980262756, -0.003444117261096835, -0.35849642753601074, 0.01480291411280632, -0.014342720620334148, 0.6082915663719177, -0.2936975061893463, -0.017125582322478294, 0.03161826729774475, -0.05500344559550285, -0.020147142931818962, 0.12959741055965424, 0.12835104763507843, 0.025178857147693634, 1.2407268285751343, 0.1452368199825287, 0.04198073968291283, -0.03952397406101227, -0.6759222745895386, -0.8320048451423645, 0.9276149868965149, -0.011325092986226082, -0.5943217277526855, -0.35436156392097473, -0.6620685458183289]} +{"t": 11.8372, "q": [-0.3116418421268463, 0.00184588972479105, -0.004847866017371416, 0.6167113780975342, -0.32073962688446045, -0.0034513543359935284, -0.35849642753601074, 0.01480291411280632, -0.014342720620334148, 0.6083256602287292, -0.29371002316474915, -0.017074881121516228, 0.03147095441818237, -0.05507945269346237, -0.020198268815875053, 0.12957344949245453, 0.12849485874176025, 0.025178857147693634, 1.2407268285751343, 0.14527277648448944, 0.041968755424022675, -0.03952397406101227, -0.679397702217102, -0.8330115079879761, 0.927686870098114, -0.011301124468445778, -0.5956639051437378, -0.3546491861343384, -0.6593481302261353]} +{"t": 11.8541, "q": [-0.3116418421268463, 0.0019225887954235077, -0.004847866017371416, 0.6168307065963745, -0.3207271695137024, -0.0034439589362591505, -0.35849642753601074, 0.01483700331300497, -0.014329328201711178, 0.6083256602287292, -0.29367268085479736, -0.017024412751197815, 0.031497739255428314, -0.05513276532292366, -0.02025357075035572, 0.12956145405769348, 0.12861470878124237, 0.025178857147693634, 1.240750789642334, 0.1452847570180893, 0.04195677116513252, -0.03952397406101227, -0.682465672492981, -0.834281861782074, 0.9276988506317139, -0.01131310872733593, -0.5968863368034363, -0.35496076941490173, -0.656304121017456]} +{"t": 11.8708, "q": [-0.3116588890552521, 0.0020078099332749844, -0.004861257970333099, 0.6169926524162292, -0.32073962688446045, -0.0034513543359935284, -0.35849642753601074, 0.014785869978368282, -0.014342720620334148, 0.6083171367645264, -0.2936561107635498, -0.016937702894210815, 0.031511131674051285, -0.055216263979673386, -0.020290296524763107, 0.12954947352409363, 0.12869858741760254, 0.025250762701034546, 1.2407268285751343, 0.14532071352005005, 0.041968755424022675, -0.039511989802122116, -0.6851142048835754, -0.8355401754379272, 0.9276629090309143, -0.011349061504006386, -0.5977851152420044, -0.35542815923690796, -0.6534039378166199]} +{"t": 11.8876, "q": [-0.3116844594478607, 0.0020674648694694042, -0.00483447453007102, 0.6171460151672363, -0.32073962688446045, -0.0034513543359935284, -0.358479380607605, 0.01477734837681055, -0.014315936714410782, 0.6083341836929321, -0.2936229109764099, -0.016908923164010048, 0.03144416958093643, -0.055246662348508835, -0.020310744643211365, 0.12952551245689392, 0.1287585198879242, 0.025262746959924698, 1.240738868713379, 0.1452847570180893, 0.04195677116513252, -0.03953595831990242, -0.6877387166023254, -0.8368584513664246, 0.9277468323707581, -0.011277155950665474, -0.5984442830085754, -0.3559674322605133, -0.6517141461372375]} +{"t": 11.9044, "q": [-0.3117440938949585, 0.0021271193400025368, -0.00483447453007102, 0.617316484451294, -0.32073962688446045, -0.0034513543359935284, -0.358479380607605, 0.01477734837681055, -0.014302544295787811, 0.6083341836929321, -0.2935897707939148, -0.016807807609438896, 0.031497739255428314, -0.055254265666007996, -0.020315857604146004, 0.12957344949245453, 0.12877050042152405, 0.02521480992436409, 1.2407149076461792, 0.14527277648448944, 0.041968755424022675, -0.039511989802122116, -0.6902673840522766, -0.8383804559707642, 0.9277707934379578, -0.01125318743288517, -0.5986599922180176, -0.35657864809036255, -0.6508033275604248]} +{"t": 11.9211, "q": [-0.31177818775177, 0.0021612080745399, -0.00483447453007102, 0.6174613237380981, -0.3207271695137024, -0.0034439589362591505, -0.35848790407180786, 0.014811436645686626, -0.014315936714410782, 0.6083682775497437, -0.2935398817062378, -0.01686587929725647, 0.031524524092674255, -0.05526186525821686, -0.020320968702435493, 0.12959741055965424, 0.1287824809551239, 0.025202825665473938, 1.240750789642334, 0.14522483944892883, 0.041968755424022675, -0.03952397406101227, -0.6921129822731018, -0.8400702476501465, 0.9277588129043579, -0.011241203173995018, -0.5986599922180176, -0.35720181465148926, -0.6499285101890564]} +{"t": 11.9379, "q": [-0.31181228160858154, 0.0021697301417589188, -0.004861257970333099, 0.61761474609375, -0.32073137164115906, -0.003451275173574686, -0.3584708571434021, 0.01477734837681055, -0.014342720620334148, 0.608342707157135, -0.2935316264629364, -0.01680803671479225, 0.03153791278600693, -0.055239178240299225, -0.02032514661550522, 0.12962138652801514, 0.1288064569234848, 0.025178857147693634, 1.240750789642334, 0.1452847570180893, 0.04194478690624237, -0.03952397406101227, -0.6936469674110413, -0.8424071669578552, 0.9277588129043579, -0.011289140209555626, -0.5987438559532166, -0.35782501101493835, -0.6486701369285583]} +{"t": 11.9548, "q": [-0.31184637546539307, 0.0021867742761969566, -0.004874649923294783, 0.6177852153778076, -0.3207271695137024, -0.0034439589362591505, -0.35844528675079346, 0.014794392511248589, -0.014342720620334148, 0.6084108352661133, -0.29351499676704407, -0.016808126121759415, 0.03159148246049881, -0.055246662348508835, -0.020310744643211365, 0.129633367061615, 0.12879446148872375, 0.025202825665473938, 1.2407268285751343, 0.14522483944892883, 0.04192081838846207, -0.039500005543231964, -0.695156991481781, -0.8450796008110046, 0.927830696105957, -0.01131310872733593, -0.5989835858345032, -0.35865190625190735, -0.6469324231147766]} +{"t": 11.9715, "q": [-0.3119145333766937, 0.0022038184106349945, -0.004888041876256466, 0.6179641485214233, -0.3207271695137024, -0.0034439589362591505, -0.35844528675079346, 0.01477734837681055, -0.014342720620334148, 0.6084364056587219, -0.29348182678222656, -0.016750408336520195, 0.03163165599107742, -0.055246662348508835, -0.020310744643211365, 0.1296093910932541, 0.12879446148872375, 0.025178857147693634, 1.2407628297805786, 0.14529675245285034, 0.04192081838846207, -0.03952397406101227, -0.6965711116790771, -0.8476921916007996, 0.9278546571731567, -0.011396998539566994, -0.5992472171783447, -0.3595866858959198, -0.6444277167320251]} +{"t": 11.9883, "q": [-0.31194862723350525, 0.0021952963434159756, -0.004888041876256466, 0.6180408596992493, -0.3207312524318695, -0.0034367400221526623, -0.35845381021499634, 0.014785869978368282, -0.014342720620334148, 0.608427882194519, -0.29347771406173706, -0.01671425811946392, 0.03147095441818237, -0.055246662348508835, -0.020310744643211365, 0.12958543002605438, 0.12879446148872375, 0.025190841406583786, 1.240738868713379, 0.14532071352005005, 0.04193280264735222, -0.03952397406101227, -0.698069155216217, -0.8499332666397095, 0.9281303286552429, -0.011361045762896538, -0.5997025966644287, -0.360137939453125, -0.6420788168907166]} +{"t": 12.005, "q": [-0.3120168149471283, 0.0022293850779533386, -0.004847866017371416, 0.618219792842865, -0.3207312524318695, -0.0034367400221526623, -0.35845381021499634, 0.014794392511248589, -0.014302544295787811, 0.6084364056587219, -0.2934320569038391, -0.016663841903209686, 0.03140399605035782, -0.055254265666007996, -0.020315857604146004, 0.12959741055965424, 0.12887835502624512, 0.025190841406583786, 1.2407028675079346, 0.1452368199825287, 0.04193280264735222, -0.039511989802122116, -0.6994832754135132, -0.8519106507301331, 0.9283340573310852, -0.01125318743288517, -0.600565493106842, -0.36040160059928894, -0.6392865180969238]} +{"t": 12.0218, "q": [-0.3120509088039398, 0.002289039548486471, -0.004861257970333099, 0.6183817386627197, -0.32073962688446045, -0.0034513543359935284, -0.3584623336791992, 0.014794392511248589, -0.014329328201711178, 0.6084619760513306, -0.2934030294418335, -0.01661333627998829, 0.03131025284528732, -0.055254265666007996, -0.020315857604146004, 0.12958543002605438, 0.12887835502624512, 0.025178857147693634, 1.240750789642334, 0.1452847570180893, 0.041908834129571915, -0.03954794257879257, -0.7005858421325684, -0.8535165190696716, 0.9282981157302856, -0.011289140209555626, -0.6014642715454102, -0.36054542660713196, -0.6358590126037598]} +{"t": 12.0385, "q": [-0.31203386187553406, 0.0023146062158048153, -0.004874649923294783, 0.6185351610183716, -0.3207436203956604, -0.0034296002704650164, -0.35839417576789856, 0.014811436645686626, -0.014342720620334148, 0.6084790229797363, -0.2933739721775055, -0.01657729223370552, 0.03131025284528732, -0.05527706444263458, -0.02033119462430477, 0.129633367061615, 0.12891431152820587, 0.025178857147693634, 1.2407268285751343, 0.1452607959508896, 0.041908834129571915, -0.039511989802122116, -0.7018321752548218, -0.8549426198005676, 0.9282261729240417, -0.011301124468445778, -0.6024110317230225, -0.3606053292751312, -0.632036030292511]} +{"t": 12.0552, "q": [-0.3120168149471283, 0.002331650350242853, -0.004861257970333099, 0.6186373829841614, -0.3207436203956604, -0.0034296002704650164, -0.3583686053752899, 0.014828480780124664, -0.014342720620334148, 0.6085557341575623, -0.2933656871318817, -0.016533946618437767, 0.03131025284528732, -0.055292267352342606, -0.0203414186835289, 0.1296573281288147, 0.12895026803016663, 0.02521480992436409, 1.240750789642334, 0.1452607959508896, 0.041908834129571915, -0.03952397406101227, -0.7030545473098755, -0.8561050891876221, 0.9282501339912415, -0.011289140209555626, -0.6035735011100769, -0.36067724227905273, -0.630010724067688]} +{"t": 12.072, "q": [-0.3121020197868347, 0.002374260686337948, -0.0049148257821798325, 0.6188248991966248, -0.3207518756389618, -0.003429679200053215, -0.35836008191108704, 0.014845524914562702, -0.014356112107634544, 0.6085301637649536, -0.2933657765388489, -0.016447147354483604, 0.03131025284528732, -0.055299870669841766, -0.02034653350710869, 0.1296573281288147, 0.1290101855993271, 0.025202825665473938, 1.2407628297805786, 0.14527277648448944, 0.04193280264735222, -0.039511989802122116, -0.7045765519142151, -0.8571717143058777, 0.9282621145248413, -0.011265171691775322, -0.6058505177497864, -0.36072519421577454, -0.6283928751945496]} +{"t": 12.0888, "q": [-0.312153160572052, 0.0024253935553133488, -0.004888041876256466, 0.6189867854118347, -0.3207477927207947, -0.0034368981141597033, -0.3583686053752899, 0.014828480780124664, -0.014315936714410782, 0.6086153984069824, -0.2932951748371124, -0.016425758600234985, 0.03125668317079544, -0.0552847795188427, -0.020355822518467903, 0.1296093910932541, 0.12902216613292694, 0.025178857147693634, 1.2407149076461792, 0.1452607959508896, 0.04194478690624237, -0.03953595831990242, -0.7069734334945679, -0.8579986095428467, 0.9283460378646851, -0.011217234656214714, -0.6075762510299683, -0.3607611358165741, -0.6261637806892395]} +{"t": 12.1055, "q": [-0.3122469186782837, 0.0024765264242887497, -0.004861257970333099, 0.6191402077674866, -0.32074370980262756, -0.003444117261096835, -0.35839417576789856, 0.014828480780124664, -0.014302544295787811, 0.6086409687995911, -0.2933451533317566, -0.01626642793416977, 0.03109598159790039, -0.055299870669841766, -0.02034653350710869, 0.1296093910932541, 0.1290341466665268, 0.025202825665473938, 1.240738868713379, 0.1452368199825287, 0.04193280264735222, -0.03952397406101227, -0.709502100944519, -0.858489990234375, 0.9283699989318848, -0.011217234656214714, -0.60857093334198, -0.3608090579509735, -0.6234553456306458]} +{"t": 12.1223, "q": [-0.31226396560668945, 0.0025447034277021885, -0.004847866017371416, 0.619251012802124, -0.32074370980262756, -0.003444117261096835, -0.3583856523036957, 0.014845524914562702, -0.014302544295787811, 0.6086324453353882, -0.2933077812194824, -0.016230417415499687, 0.030881712213158607, -0.055299870669841766, -0.02034653350710869, 0.1296573281288147, 0.12907010316848755, 0.025178857147693634, 1.2407268285751343, 0.14524881541728973, 0.04192081838846207, -0.03953595831990242, -0.7126299738883972, -0.8589693307876587, 0.9283580183982849, -0.011229218915104866, -0.6094817519187927, -0.3608330488204956, -0.6211663484573364]} +{"t": 12.1391, "q": [-0.3122554421424866, 0.0026043583638966084, -0.004861257970333099, 0.6194469928741455, -0.3207477927207947, -0.0034368981141597033, -0.35839417576789856, 0.014845524914562702, -0.014302544295787811, 0.6086239218711853, -0.2932828962802887, -0.016216063871979713, 0.030801359564065933, -0.055292267352342606, -0.0203414186835289, 0.12959741055965424, 0.12907010316848755, 0.025202825665473938, 1.2407268285751343, 0.1452847570180893, 0.04193280264735222, -0.039511989802122116, -0.7161533236503601, -0.8594127893447876, 0.9283580183982849, -0.011241203173995018, -0.6108719110488892, -0.36086899042129517, -0.6186257004737854]} +{"t": 12.1559, "q": [-0.31227248907089233, 0.00267253490164876, -0.004861257970333099, 0.6196515560150146, -0.32074788212776184, -0.0034514153376221657, -0.3583686053752899, 0.014811436645686626, -0.014315936714410782, 0.6086580157279968, -0.29329538345336914, -0.01617985963821411, 0.03076118417084217, -0.05529998242855072, -0.02036604844033718, 0.1296093910932541, 0.12911804020404816, 0.025178857147693634, 1.240738868713379, 0.14527277648448944, 0.04193280264735222, -0.039511989802122116, -0.7196527123451233, -0.8596764206886292, 0.9282501339912415, -0.011241203173995018, -0.6121422648429871, -0.3608570098876953, -0.615066409111023]} +{"t": 12.1726, "q": [-0.3123491704463959, 0.0027492339722812176, -0.004888041876256466, 0.6198901534080505, -0.32074788212776184, -0.0034514153376221657, -0.35836008191108704, 0.01483700331300497, -0.014315936714410782, 0.6086239218711853, -0.2934451997280121, -0.015788646414875984, 0.030801359564065933, -0.05531518533825874, -0.02037627249956131, 0.12962138652801514, 0.12914201617240906, 0.025226794183254242, 1.2407268285751343, 0.14529675245285034, 0.04192081838846207, -0.03953595831990242, -0.7226847410202026, -0.8600359559059143, 0.9279505610466003, -0.011325092986226082, -0.6136642098426819, -0.36086899042129517, -0.6116868257522583]} +{"t": 12.1894, "q": [-0.3125707507133484, 0.002877065446227789, -0.005008568987250328, 0.620231032371521, -0.32076022028923035, -0.003444275353103876, -0.35840269923210144, 0.014794392511248589, -0.01436950359493494, 0.6085813045501709, -0.2934993505477905, -0.015622084029018879, 0.0309084951877594, -0.05531523749232292, -0.02038602903485298, 0.12959741055965424, 0.12917795777320862, 0.02521480992436409, 1.2407028675079346, 0.1452368199825287, 0.041908834129571915, -0.03952397406101227, -0.7257047295570374, -0.8604913353919983, 0.9276389479637146, -0.011277155950665474, -0.6157854199409485, -0.36082106828689575, -0.6090383529663086]} +{"t": 12.2064, "q": [-0.3128264248371124, 0.002928198780864477, -0.005102312192320824, 0.6206230521202087, -0.3207932710647583, -0.0034445913042873144, -0.3584367632865906, 0.014794392511248589, -0.014396287500858307, 0.6086068749427795, -0.29348689317703247, -0.01560042891651392, 0.030828144401311874, -0.05532278120517731, -0.0203813835978508, 0.12959741055965424, 0.12923789024353027, 0.025202825665473938, 1.2407268285751343, 0.1452368199825287, 0.04192081838846207, -0.03952397406101227, -0.7291921973228455, -0.860886812210083, 0.9275071024894714, -0.011109377257525921, -0.6169838905334473, -0.36082106828689575, -0.6073126196861267]} +{"t": 12.2232, "q": [-0.31315878033638, 0.0030475077219307423, -0.0051424880512058735, 0.6208872199058533, -0.3208015263080597, -0.003444688394665718, -0.35858166217803955, 0.014785869978368282, -0.014396287500858307, 0.608572781085968, -0.2934745252132416, -0.01549199316650629, 0.030828144401311874, -0.05531523749232292, -0.02038602903485298, 0.12959741055965424, 0.12923789024353027, 0.025250762701034546, 1.2407149076461792, 0.14524881541728973, 0.041908834129571915, -0.039511989802122116, -0.7319126129150391, -0.8612343668937683, 0.9273633360862732, -0.011037471704185009, -0.6178467273712158, -0.3608090579509735, -0.6052393317222595]} +{"t": 12.2399, "q": [-0.3134399950504303, 0.003149773459881544, -0.005196055397391319, 0.621194064617157, -0.3208138942718506, -0.003437530482187867, -0.3586157262325287, 0.01477734837681055, -0.01436950359493494, 0.6085472106933594, -0.2933749556541443, -0.015333300456404686, 0.0307477917522192, -0.05530763790011406, -0.020380917936563492, 0.12959741055965424, 0.1293097883462906, 0.025226794183254242, 1.2407028675079346, 0.14527277648448944, 0.041908834129571915, -0.039511989802122116, -0.7350285053253174, -0.8616538047790527, 0.927147626876831, -0.011025487445294857, -0.6182422041893005, -0.36082106828689575, -0.6026627421379089]} +{"t": 12.2567, "q": [-0.3136274814605713, 0.0032179499976336956, -0.005196055397391319, 0.621492326259613, -0.3208220303058624, -0.003423092421144247, -0.35868391394615173, 0.014768825843930244, -0.014396287500858307, 0.6085386872291565, -0.29331275820732117, -0.015239556320011616, 0.030654048547148705, -0.05530758202075958, -0.02037115953862667, 0.1296093910932541, 0.1293577253818512, 0.025202825665473938, 1.240738868713379, 0.14516492187976837, 0.041908834129571915, -0.039511989802122116, -0.7378926873207092, -0.862085223197937, 0.9270517230033875, -0.011013503186404705, -0.6185058355331421, -0.3608330488204956, -0.6005535125732422]} +{"t": 12.2735, "q": [-0.3138405382633209, 0.003311693202704191, -0.005236231256276369, 0.6217138767242432, -0.32082611322402954, -0.003415873274207115, -0.35876062512397766, 0.01477734837681055, -0.014409679919481277, 0.6085472106933594, -0.2932961881160736, -0.015152846463024616, 0.03073440119624138, -0.05531523749232292, -0.02038602903485298, 0.129633367061615, 0.1294056624174118, 0.02521480992436409, 1.2407028675079346, 0.1452368199825287, 0.04189684987068176, -0.03952397406101227, -0.7398701310157776, -0.862828254699707, 0.926859974861145, -0.011097392998635769, -0.6186257004737854, -0.36079707741737366, -0.5984562635421753]} +{"t": 12.2902, "q": [-0.3140706419944763, 0.0033457824029028416, -0.00542371766641736, 0.6220547556877136, -0.3208385705947876, -0.003423250513151288, -0.358735054731369, 0.01480291411280632, -0.014476639218628407, 0.608504593372345, -0.2932547330856323, -0.015080704353749752, 0.03076118417084217, -0.05532284080982208, -0.02039114199578762, 0.12959741055965424, 0.12941764295101166, 0.025202825665473938, 1.24069082736969, 0.14522483944892883, 0.04187288135290146, -0.03952397406101227, -0.7414759993553162, -0.8636911511421204, 0.9267521500587463, -0.01119326613843441, -0.6186856031417847, -0.36084502935409546, -0.5956879258155823]} +{"t": 12.307, "q": [-0.31437742710113525, 0.0033202157355844975, -0.005584420636296272, 0.6222934126853943, -0.32085081934928894, -0.0034015753772109747, -0.3587861955165863, 0.014794392511248589, -0.014556990936398506, 0.6085301637649536, -0.29324641823768616, -0.015066261403262615, 0.030828144401311874, -0.0553000345826149, -0.020375803112983704, 0.12964534759521484, 0.12939368188381195, 0.025202825665473938, 1.2407149076461792, 0.1452368199825287, 0.041848912835121155, -0.039511989802122116, -0.742974042892456, -0.8644341230392456, 0.9267281293869019, -0.01119326613843441, -0.6187096238136292, -0.36084502935409546, -0.5929434895515442]} +{"t": 12.3238, "q": [-0.314581960439682, 0.003311693202704191, -0.005664771888405085, 0.6224638223648071, -0.32084253430366516, -0.0034015143755823374, -0.35882025957107544, 0.014794392511248589, -0.014597166329622269, 0.6085131168365479, -0.29315927624702454, -0.014972605742514133, 0.030814751982688904, -0.05531523749232292, -0.02038602903485298, 0.1296813040971756, 0.12944161891937256, 0.025226794183254242, 1.2407028675079346, 0.1452847570180893, 0.04187288135290146, -0.03952397406101227, -0.7445319890975952, -0.8652011156082153, 0.9266562461853027, -0.011181281879544258, -0.6187455654144287, -0.3608570098876953, -0.5906305313110352]} +{"t": 12.3406, "q": [-0.31492283940315247, 0.003311693202704191, -0.005691555794328451, 0.6227024793624878, -0.32085081934928894, -0.0034015753772109747, -0.3589651584625244, 0.014768825843930244, -0.014610557816922665, 0.6085131168365479, -0.29305967688560486, -0.014871791005134583, 0.030841534957289696, -0.05531523749232292, -0.02038602903485298, 0.12964534759521484, 0.1294775754213333, 0.025226794183254242, 1.2407028675079346, 0.14529675245285034, 0.04186089709401131, -0.039511989802122116, -0.7463535666465759, -0.8660640120506287, 0.9267281293869019, -0.011121360585093498, -0.6187695264816284, -0.36082106828689575, -0.5881977677345276]} +{"t": 12.3573, "q": [-0.31523817777633667, 0.0033372598700225353, -0.005664771888405085, 0.6228899359703064, -0.3208426535129547, -0.003416031366214156, -0.3591015040874481, 0.01480291411280632, -0.014570382423698902, 0.6085216403007507, -0.2929600775241852, -0.014756480231881142, 0.030707616358995438, -0.05530763790011406, -0.020380917936563492, 0.1296093910932541, 0.12950153648853302, 0.025250762701034546, 1.2407028675079346, 0.14527277648448944, 0.041836928576231, -0.03952397406101227, -0.7478995323181152, -0.866866946220398, 0.9267880916595459, -0.011109377257525921, -0.6187695264816284, -0.3608330488204956, -0.5863401889801025]} +{"t": 12.374, "q": [-0.31556200981140137, 0.0033628265373408794, -0.005691555794328451, 0.6230518817901611, -0.3208426535129547, -0.003416031366214156, -0.3592889904975891, 0.014828480780124664, -0.014570382423698902, 0.6084790229797363, -0.2928604483604431, -0.014684585854411125, 0.030667440965771675, -0.05531518533825874, -0.02037627249956131, 0.12959741055965424, 0.12951351702213287, 0.025226794183254242, 1.24069082736969, 0.1452607959508896, 0.04180097579956055, -0.03952397406101227, -0.7494574785232544, -0.8676339387893677, 0.926776111125946, -0.01113334484398365, -0.6187815070152283, -0.3608330488204956, -0.5850818753242493]} +{"t": 12.3908, "q": [-0.31567278504371643, 0.0034224814735352993, -0.005704947747290134, 0.6231967210769653, -0.320842444896698, -0.0033869794569909573, -0.35937419533729553, 0.014819959178566933, -0.014570382423698902, 0.608504593372345, -0.2928313910961151, -0.01466302014887333, 0.030533522367477417, -0.05530758202075958, -0.02037115953862667, 0.12957344949245453, 0.12952551245689392, 0.025238778442144394, 1.24069082736969, 0.14522483944892883, 0.04182494431734085, -0.039511989802122116, -0.7511832118034363, -0.8681132793426514, 0.9267281293869019, -0.011169297620654106, -0.6187815070152283, -0.36082106828689575, -0.5839194059371948]} +{"t": 12.4077, "q": [-0.3157409727573395, 0.003490658011287451, -0.005704947747290134, 0.623222291469574, -0.3208426535129547, -0.003416031366214156, -0.3593912422657013, 0.01486256904900074, -0.014597166329622269, 0.6084875464439392, -0.29281479120254517, -0.014648630283772945, 0.03043977916240692, -0.05531518533825874, -0.02037627249956131, 0.12957344949245453, 0.12953749299049377, 0.025262746959924698, 1.24069082736969, 0.1452607959508896, 0.0418129600584507, -0.03953595831990242, -0.7527291774749756, -0.8682331442832947, 0.9267401099205017, -0.011145329102873802, -0.6187335848808289, -0.3608090579509735, -0.5827808976173401]} +{"t": 12.4244, "q": [-0.3157324492931366, 0.0035077021457254887, -0.005664771888405085, 0.6232819557189941, -0.32085898518562317, -0.0033871373161673546, -0.35940828919410706, 0.01483700331300497, -0.014570382423698902, 0.6084875464439392, -0.292806476354599, -0.01464866567403078, 0.030198724940419197, -0.05529249086976051, -0.020380446687340736, 0.12962138652801514, 0.12957344949245453, 0.025262746959924698, 1.2406789064407349, 0.1452368199825287, 0.04177701100707054, -0.03952397406101227, -0.755461573600769, -0.8683410286903381, 0.926776111125946, -0.011109377257525921, -0.6186975836753845, -0.3608090579509735, -0.5809113383293152]} +{"t": 12.4412, "q": [-0.31574949622154236, 0.0035332688130438328, -0.005678163841366768, 0.6232393383979797, -0.32085898518562317, -0.0033871373161673546, -0.35945942997932434, 0.014845524914562702, -0.014570382423698902, 0.6084704995155334, -0.2928023338317871, -0.014655914157629013, 0.03006480634212494, -0.05531518533825874, -0.02037627249956131, 0.12966932356357574, 0.12957344949245453, 0.02521480992436409, 1.24069082736969, 0.14521285891532898, 0.04180097579956055, -0.03952397406101227, -0.7575228810310364, -0.8683649897575378, 0.926776111125946, -0.011109377257525921, -0.618661642074585, -0.3608090579509735, -0.5790897607803345]} +{"t": 12.4581, "q": [-0.3158773183822632, 0.0036440561525523663, -0.005704947747290134, 0.6232308149337769, -0.32084664702415466, -0.003394277300685644, -0.35954463481903076, 0.014845524914562702, -0.014583774842321873, 0.6084619760513306, -0.29278984665870667, -0.014663197100162506, 0.03006480634212494, -0.05532278120517731, -0.0203813835978508, 0.129633367061615, 0.12952551245689392, 0.025178857147693634, 1.24069082736969, 0.14521285891532898, 0.041836928576231, -0.03953595831990242, -0.7593804597854614, -0.8683769702911377, 0.9266442656517029, -0.011145329102873802, -0.6186376810073853, -0.3607850968837738, -0.5771483182907104]} +{"t": 12.4748, "q": [-0.3159540295600891, 0.0037889317609369755, -0.005731731187552214, 0.6232990026473999, -0.32086315751075745, -0.003394435392692685, -0.3595616817474365, 0.014896657317876816, -0.014610557816922665, 0.6084364056587219, -0.2927524149417877, -0.014742907136678696, 0.030145157128572464, -0.05530758202075958, -0.02037115953862667, 0.12964534759521484, 0.12951351702213287, 0.025202825665473938, 1.2407028675079346, 0.1452368199825287, 0.04182494431734085, -0.03953595831990242, -0.7608305215835571, -0.8683649897575378, 0.926632285118103, -0.011205250397324562, -0.6185657978057861, -0.3608090579509735, -0.5749551653862]} +{"t": 12.4916, "q": [-0.3160392642021179, 0.003823020961135626, -0.005946001503616571, 0.6232990026473999, -0.3208632469177246, -0.003408952383324504, -0.35955315828323364, 0.014845524914562702, -0.014731084927916527, 0.6083086133003235, -0.2927524149417877, -0.014742907136678696, 0.03022550791501999, -0.05531523749232292, -0.02038602903485298, 0.12958543002605438, 0.12952551245689392, 0.025178857147693634, 1.2407028675079346, 0.14521285891532898, 0.041836928576231, -0.03953595831990242, -0.7622806429862976, -0.8684488534927368, 0.926632285118103, -0.011229218915104866, -0.6185657978057861, -0.3607850968837738, -0.5726542472839355]} +{"t": 12.5084, "q": [-0.3161329925060272, 0.0039167641662061214, -0.006012961268424988, 0.6233075261116028, -0.3208591639995575, -0.0034161715302616358, -0.35954463481903076, 0.014896657317876816, -0.014878395944833755, 0.6082404255867004, -0.2927316129207611, -0.014779165387153625, 0.030279075726866722, -0.05532278120517731, -0.0203813835978508, 0.12954947352409363, 0.12953749299049377, 0.025250762701034546, 1.2407149076461792, 0.1452368199825287, 0.04182494431734085, -0.03953595831990242, -0.7639703750610352, -0.8686166405677795, 0.9266203045845032, -0.011205250397324562, -0.6186017394065857, -0.3607850968837738, -0.5705090165138245]} +{"t": 12.5251, "q": [-0.3162437677383423, 0.003942329902201891, -0.006039745174348354, 0.6232819557189941, -0.32085099816322327, -0.0034306275192648172, -0.35959577560424805, 0.014845524914562702, -0.014878395944833755, 0.6082404255867004, -0.2927108407020569, -0.014772024005651474, 0.030292468145489693, -0.05529998242855072, -0.02036604844033718, 0.12964534759521484, 0.12952551245689392, 0.025202825665473938, 1.2407028675079346, 0.14522483944892883, 0.04182494431734085, -0.03953595831990242, -0.7654923796653748, -0.8688323497772217, 0.9265244007110596, -0.011181281879544258, -0.6186257004737854, -0.3607611358165741, -0.5679084658622742]} +{"t": 12.5419, "q": [-0.31635457277297974, 0.003984940703958273, -0.0060933125205338, 0.6232649087905884, -0.3208552598953247, -0.0034524425864219666, -0.3596554398536682, 0.014871091581881046, -0.014905179850757122, 0.6081807613372803, -0.29269421100616455, -0.014815494418144226, 0.03025229275226593, -0.05530758202075958, -0.02037115953862667, 0.1296573281288147, 0.12952551245689392, 0.02521480992436409, 1.2407149076461792, 0.14520087838172913, 0.041836928576231, -0.03953595831990242, -0.7670982480049133, -0.8690240979194641, 0.9265124201774597, -0.01119326613843441, -0.6186257004737854, -0.3607611358165741, -0.5651161670684814]} +{"t": 12.5586, "q": [-0.316405713558197, 0.004044595640152693, -0.0060933125205338, 0.6232393383979797, -0.32085099816322327, -0.0034306275192648172, -0.35968953371047974, 0.01486256904900074, -0.014891788363456726, 0.6081551909446716, -0.29269421100616455, -0.014801033772528172, 0.03022550791501999, -0.05531507357954979, -0.020356759428977966, 0.1296093910932541, 0.12951351702213287, 0.025202825665473938, 1.24069082736969, 0.14524881541728973, 0.041836928576231, -0.03953595831990242, -0.7687041759490967, -0.8693716526031494, 0.9265363812446594, -0.011157313361763954, -0.618661642074585, -0.3607611358165741, -0.5634623169898987]} +{"t": 12.5753, "q": [-0.3164227306842804, 0.004070162307471037, -0.006106704473495483, 0.6231967210769653, -0.32085099816322327, -0.0034306275192648172, -0.3596639633178711, 0.01492222398519516, -0.014958747662603855, 0.6081381440162659, -0.2926775813102722, -0.014801086857914925, 0.030185332521796227, -0.05531518533825874, -0.02037627249956131, 0.1296813040971756, 0.12948955595493317, 0.025202825665473938, 1.24069082736969, 0.14522483944892883, 0.04182494431734085, -0.03953595831990242, -0.7700583934783936, -0.869695246219635, 0.9265363812446594, -0.01113334484398365, -0.618661642074585, -0.36077311635017395, -0.5618804097175598]} +{"t": 12.5922, "q": [-0.3164227306842804, 0.004070162307471037, -0.006120096426457167, 0.6231796741485596, -0.32084691524505615, -0.0034378464333713055, -0.35964691638946533, 0.014964834786951542, -0.014972139149904251, 0.6081125736236572, -0.2926526367664337, -0.014844592660665512, 0.030185332521796227, -0.055330272763967514, -0.020366983488202095, 0.1296813040971756, 0.1294775754213333, 0.025178857147693634, 1.2407028675079346, 0.1452368199825287, 0.041836928576231, -0.03952397406101227, -0.7713766694068909, -0.8698869943618774, 0.92648845911026, -0.01113334484398365, -0.6186975836753845, -0.36072519421577454, -0.5599150061607361]} +{"t": 12.6089, "q": [-0.31638866662979126, 0.0040786839090287685, -0.006066528614610434, 0.6231626272201538, -0.32084691524505615, -0.0034378464333713055, -0.35962986946105957, 0.014973356388509274, -0.014998923055827618, 0.6081210970878601, -0.29264017939567566, -0.014851875603199005, 0.030131764709949493, -0.05530741438269615, -0.020341889932751656, 0.1296813040971756, 0.1294775754213333, 0.025202825665473938, 1.24069082736969, 0.14522483944892883, 0.041836928576231, -0.03953595831990242, -0.7729825377464294, -0.8699109554290771, 0.9264764785766602, -0.011109377257525921, -0.6186975836753845, -0.3607611358165741, -0.5572544932365417]} +{"t": 12.6256, "q": [-0.3164142370223999, 0.004070162307471037, -0.006079920567572117, 0.6230859756469727, -0.3208387494087219, -0.0034522844944149256, -0.35964691638946533, 0.015007445588707924, -0.014985531568527222, 0.6081125736236572, -0.29264432191848755, -0.014844628050923347, 0.03009158931672573, -0.0553225576877594, -0.020342355594038963, 0.12959741055965424, 0.12948955595493317, 0.025202825665473938, 1.240738868713379, 0.1452607959508896, 0.04182494431734085, -0.03953595831990242, -0.7744805812835693, -0.8698989748954773, 0.9264644980430603, -0.011109377257525921, -0.618721604347229, -0.3607611358165741, -0.5548096895217896]} +{"t": 12.6425, "q": [-0.3163801431655884, 0.0040360731072723866, -0.006039745174348354, 0.6230859756469727, -0.32084691524505615, -0.0034378464333713055, -0.35958725214004517, 0.015024489723145962, -0.014998923055827618, 0.608129620552063, -0.29258614778518677, -0.014902736060321331, 0.030024630948901176, -0.055315013974905014, -0.020347001031041145, 0.129633367061615, 0.12948955595493317, 0.025202825665473938, 1.2407028675079346, 0.14524881541728973, 0.041836928576231, -0.03953595831990242, -0.7760385274887085, -0.8699109554290771, 0.9264165759086609, -0.011109377257525921, -0.6187575459480286, -0.3607371747493744, -0.5522810220718384]} +{"t": 12.6592, "q": [-0.31635457277297974, 0.004027551505714655, -0.006012961268424988, 0.6231114864349365, -0.32084691524505615, -0.0034378464333713055, -0.3595616817474365, 0.015067100524902344, -0.014958747662603855, 0.6081210970878601, -0.29235321283340454, -0.015294287353754044, 0.029997846111655235, -0.05533010512590408, -0.02033771201968193, 0.12957344949245453, 0.12948955595493317, 0.025190841406583786, 1.2407028675079346, 0.14522483944892883, 0.04186089709401131, -0.03953595831990242, -0.777356743812561, -0.869922935962677, 0.9263806343078613, -0.011097392998635769, -0.6188653707504272, -0.3607371747493744, -0.5493209362030029]} +{"t": 12.676, "q": [-0.3162863850593567, 0.003984940703958273, -0.006012961268424988, 0.6231114864349365, -0.32085099816322327, -0.0034306275192648172, -0.35949352383613586, 0.015126754529774189, -0.014972139149904251, 0.6081040501594543, -0.29234910011291504, -0.015258136205375195, 0.02989071048796177, -0.05534525215625763, -0.020338181406259537, 0.1296813040971756, 0.12956145405769348, 0.025190841406583786, 1.2407149076461792, 0.14524881541728973, 0.04187288135290146, -0.039511989802122116, -0.7782915234565735, -0.8702704906463623, 0.9262967109680176, -0.011181281879544258, -0.6189013719558716, -0.36072519421577454, -0.5457016825675964]} +{"t": 12.6927, "q": [-0.3162267506122589, 0.003942329902201891, -0.005972785409539938, 0.6231029629707336, -0.32085099816322327, -0.0034306275192648172, -0.3593912422657013, 0.015143798664212227, -0.014972139149904251, 0.6080870032310486, -0.29245725274086, -0.01504069659858942, 0.029676441103219986, -0.05536811053752899, -0.020363276824355125, 0.12956145405769348, 0.12969328463077545, 0.025250762701034546, 1.240750789642334, 0.14527277648448944, 0.04188486561179161, -0.039511989802122116, -0.7790585160255432, -0.870977520942688, 0.9261409044265747, -0.011301124468445778, -0.6191530227661133, -0.36074915528297424, -0.5429213643074036]} +{"t": 12.7095, "q": [-0.31620118021965027, 0.003950852435082197, -0.005972785409539938, 0.6231114864349365, -0.3208593428134918, -0.0034452234394848347, -0.3593912422657013, 0.015118232928216457, -0.014972139149904251, 0.6080784797668457, -0.2924947142601013, -0.014946525916457176, 0.02958269789814949, -0.05545909330248833, -0.02038560062646866, 0.12958543002605438, 0.12977717816829681, 0.025250762701034546, 1.2407268285751343, 0.14527277648448944, 0.04188486561179161, -0.03952397406101227, -0.7796097993850708, -0.8721280097961426, 0.9260690212249756, -0.011420967057347298, -0.6196443438529968, -0.3607611358165741, -0.5411477088928223]} +{"t": 12.7262, "q": [-0.3161841332912445, 0.003942329902201891, -0.005959393456578255, 0.6230859756469727, -0.3208593428134918, -0.0034452234394848347, -0.35937419533729553, 0.015152321197092533, -0.014945355243980885, 0.6080614328384399, -0.29255715012550354, -0.014794389717280865, 0.02955591306090355, -0.05562631040811539, -0.02049807831645012, 0.12954947352409363, 0.12992098927497864, 0.025250762701034546, 1.2407268285751343, 0.14524881541728973, 0.04189684987068176, -0.03952397406101227, -0.7801610827445984, -0.8736380338668823, 0.9260091185569763, -0.011564777232706547, -0.6202795505523682, -0.36077311635017395, -0.5389425754547119]} +{"t": 12.7429, "q": [-0.316150039434433, 0.003942329902201891, -0.005986177362501621, 0.6231200098991394, -0.3208593428134918, -0.0034452234394848347, -0.3593060374259949, 0.015169365331530571, -0.014945355243980885, 0.6080358624458313, -0.2925446927547455, -0.014801672659814358, 0.02956930547952652, -0.05580872669816017, -0.02062078006565571, 0.1296093910932541, 0.13004082441329956, 0.025262746959924698, 1.240750789642334, 0.14522483944892883, 0.04188486561179161, -0.03952397406101227, -0.7808801531791687, -0.8752558827400208, 0.9260210990905762, -0.011600730009377003, -0.6208428144454956, -0.3608090579509735, -0.5361742377281189]} +{"t": 12.7597, "q": [-0.31608185172080994, 0.003933808300644159, -0.005986177362501621, 0.6231541037559509, -0.3208676278591156, -0.0034453205298632383, -0.35922080278396606, 0.015169365331530571, -0.014972139149904251, 0.6080443859100342, -0.2925405204296112, -0.014794442802667618, 0.029622873291373253, -0.05616598203778267, -0.02086086943745613, 0.1296813040971756, 0.13020861148834229, 0.025250762701034546, 1.2407268285751343, 0.14524881541728973, 0.04187288135290146, -0.03952397406101227, -0.7816351652145386, -0.8768977522850037, 0.9260210990905762, -0.011600730009377003, -0.6218374967575073, -0.3608090579509735, -0.5340650081634521]} +{"t": 12.7764, "q": [-0.3160562813282013, 0.003899719100445509, -0.006026353221386671, 0.6231285333633423, -0.320875883102417, -0.0034453817643225193, -0.3592037558555603, 0.015109710395336151, -0.014998923055827618, 0.6079421639442444, -0.2925488352775574, -0.014779946766793728, 0.029783576726913452, -0.056530848145484924, -0.02110600844025612, 0.12971726059913635, 0.13037638366222382, 0.025250762701034546, 1.2407268285751343, 0.1452368199825287, 0.04187288135290146, -0.039511989802122116, -0.7821145057678223, -0.8786115050315857, 0.9259851574897766, -0.011672635562717915, -0.622916042804718, -0.36079707741737366, -0.5323392748832703]} +{"t": 12.7931, "q": [-0.31608185172080994, 0.003933808300644159, -0.006066528614610434, 0.6231541037559509, -0.320875883102417, -0.0034453817643225193, -0.3591952323913574, 0.015058577992022038, -0.014972139149904251, 0.6078739762306213, -0.29252392053604126, -0.014780052937567234, 0.02993088588118553, -0.05695650354027748, -0.02139267697930336, 0.12981313467025757, 0.13056813180446625, 0.025286715477705002, 1.2407628297805786, 0.14524881541728973, 0.04189684987068176, -0.039511989802122116, -0.7827256917953491, -0.8799896836280823, 0.9258173704147339, -0.011684619821608067, -0.6238148808479309, -0.3608090579509735, -0.5302780270576477]} +{"t": 12.8099, "q": [-0.3160988986492157, 0.003959374036639929, -0.0060933125205338, 0.6231541037559509, -0.3208923041820526, -0.003431022632867098, -0.3592122793197632, 0.014998923055827618, -0.014972139149904251, 0.6078057885169983, -0.2925114631652832, -0.014787336811423302, 0.03005141392350197, -0.05720733106136322, -0.02156178280711174, 0.12990900874137878, 0.13075987994670868, 0.025262746959924698, 1.240738868713379, 0.14524881541728973, 0.04187288135290146, -0.039511989802122116, -0.7836964130401611, -0.880984365940094, 0.9257334470748901, -0.011660651303827763, -0.624258279800415, -0.36074915528297424, -0.527725338935852]} +{"t": 12.8268, "q": [-0.316150039434433, 0.003967896569520235, -0.00613348837941885, 0.6231711506843567, -0.32090047001838684, -0.0034165845718234777, -0.3592122793197632, 0.014956312254071236, -0.014945355243980885, 0.6076608896255493, -0.29251980781555176, -0.014729459770023823, 0.03007819689810276, -0.057359348982572556, -0.021664274856448174, 0.12999288737773895, 0.13091567158699036, 0.02527473121881485, 1.2407268285751343, 0.14524881541728973, 0.04186089709401131, -0.039511989802122116, -0.7853981852531433, -0.8817753195762634, 0.9257214665412903, -0.011576761491596699, -0.6247376799583435, -0.36074915528297424, -0.523902416229248]} +{"t": 12.8436, "q": [-0.31625229120254517, 0.003925285767763853, -0.006146880332380533, 0.6231796741485596, -0.32088395953178406, -0.0034164267126470804, -0.3592548966407776, 0.014964834786951542, -0.014945355243980885, 0.6074819564819336, -0.29249081015586853, -0.014635536819696426, 0.030158549547195435, -0.057435356080532074, -0.021715519949793816, 0.1300048828125, 0.13104750216007233, 0.02527473121881485, 1.240738868713379, 0.1452607959508896, 0.04186089709401131, -0.03952397406101227, -0.7871718406677246, -0.8822547197341919, 0.9257334470748901, -0.011480887420475483, -0.625229001045227, -0.3607611358165741, -0.52115797996521]} +{"t": 12.8603, "q": [-0.31638866662979126, 0.003925285767763853, -0.0061736637726426125, 0.6231967210769653, -0.32090047001838684, -0.0034165845718234777, -0.3592548966407776, 0.014905179850757122, -0.014945355243980885, 0.6072433590888977, -0.29242441058158875, -0.01456351950764656, 0.030332643538713455, -0.0574505589902401, -0.021725768223404884, 0.12994495034217834, 0.1311074197292328, 0.02527473121881485, 1.2407028675079346, 0.14522483944892883, 0.04186089709401131, -0.039511989802122116, -0.7890294194221497, -0.883009672164917, 0.9257574081420898, -0.011492871679365635, -0.6256964206695557, -0.3607611358165741, -0.5189648866653442]} +{"t": 12.877, "q": [-0.3164738714694977, 0.003925285767763853, -0.006187055725604296, 0.6231967210769653, -0.3209002614021301, -0.00338755059055984, -0.35926342010498047, 0.014947790652513504, -0.014931963756680489, 0.6070302724838257, -0.2923124134540558, -0.01439765002578497, 0.030466562137007713, -0.05746575817465782, -0.021736016497015953, 0.12992098927497864, 0.13111941516399384, 0.025250762701034546, 1.2407149076461792, 0.14522483944892883, 0.041848912835121155, -0.03952397406101227, -0.7911266684532166, -0.8839444518089294, 0.9258652925491333, -0.011636682786047459, -0.6259600520133972, -0.3607850968837738, -0.5164601802825928]} +{"t": 12.8939, "q": [-0.3166102170944214, 0.003925285767763853, -0.006200447678565979, 0.6231881976127625, -0.32093313336372375, -0.003358814399689436, -0.35931456089019775, 0.014947790652513504, -0.014931963756680489, 0.6068087220191956, -0.292275071144104, -0.014332701452076435, 0.030346035957336426, -0.05748090147972107, -0.021736500784754753, 0.13001686334609985, 0.13111941516399384, 0.025250762701034546, 1.240738868713379, 0.14522483944892883, 0.041836928576231, -0.039511989802122116, -0.7939908504486084, -0.8856821656227112, 0.9259851574897766, -0.01170858833938837, -0.6261637806892395, -0.36077311635017395, -0.5140992999076843]} +{"t": 12.9106, "q": [-0.31672102212905884, 0.003925285767763853, -0.006160271819680929, 0.6231626272201538, -0.32095763087272644, -0.003315482521429658, -0.35935714840888977, 0.014990401454269886, -0.014878395944833755, 0.6066126823425293, -0.2922004163265228, -0.014202841557562351, 0.030185332521796227, -0.057480961084365845, -0.02174626663327217, 0.13010074198246002, 0.13111941516399384, 0.025262746959924698, 1.240750789642334, 0.14527277648448944, 0.041848912835121155, -0.039511989802122116, -0.7967592477798462, -0.8875876665115356, 0.9260450601577759, -0.011816445738077164, -0.6262476444244385, -0.36079707741737366, -0.5123136639595032]} +{"t": 12.9274, "q": [-0.3168829381465912, 0.003908241633325815, -0.006146880332380533, 0.623145580291748, -0.3209698498249054, -0.003293825313448906, -0.3594338595867157, 0.014973356388509274, -0.014891788363456726, 0.6063740849494934, -0.2920510172843933, -0.01405884139239788, 0.030145157128572464, -0.057473357766866684, -0.021741140633821487, 0.1300288438796997, 0.13119131326675415, 0.025262746959924698, 1.240738868713379, 0.14527277648448944, 0.041836928576231, -0.03952397406101227, -0.7987006902694702, -0.888905942440033, 0.9260690212249756, -0.011840414255857468, -0.6263555288314819, -0.3608090579509735, -0.5108036398887634]} +{"t": 12.9442, "q": [-0.3170278072357178, 0.003899719100445509, -0.006187055725604296, 0.623060405254364, -0.32097384333610535, -0.0032720714807510376, -0.3594679534435272, 0.014990401454269886, -0.014905179850757122, 0.6060587763786316, -0.29192233085632324, -0.013950902037322521, 0.030198724940419197, -0.057465702295303345, -0.021726252511143684, 0.12987305223941803, 0.1312512308359146, 0.025250762701034546, 1.2407028675079346, 0.1452368199825287, 0.041836928576231, -0.03952397406101227, -0.8005342483520508, -0.8912788033485413, 0.9260810017585754, -0.011828429996967316, -0.6266071796417236, -0.36086899042129517, -0.5083947777748108]} +{"t": 12.9609, "q": [-0.3170278072357178, 0.003942329902201891, -0.006240623537451029, 0.6229240298271179, -0.3209695816040039, -0.0032502382528036833, -0.3593827188014984, 0.015015967190265656, -0.014958747662603855, 0.6056241393089294, -0.29183098673820496, -0.013893433846533298, 0.0301049817353487, -0.05757971480488777, -0.021803122013807297, 0.12987305223941803, 0.1314070224761963, 0.025262746959924698, 1.2407149076461792, 0.1452847570180893, 0.04182494431734085, -0.039511989802122116, -0.8030030131340027, -0.8937954902648926, 0.9260810017585754, -0.011924304068088531, -0.6273022890090942, -0.36104875802993774, -0.5053987503051758]} +{"t": 12.9778, "q": [-0.31700223684310913, 0.004044595640152693, -0.006280798930674791, 0.6228984594345093, -0.32099443674087524, -0.0032650104258209467, -0.3593316078186035, 0.015084144659340382, -0.014985531568527222, 0.6052747368812561, -0.29174381494522095, -0.013843176886439323, 0.02977018430829048, -0.05780762806534767, -0.021937331184744835, 0.13004082441329956, 0.13162274658679962, 0.025250762701034546, 1.2407268285751343, 0.1452368199825287, 0.041848912835121155, -0.03952397406101227, -0.8051961064338684, -0.894957959651947, 0.9260810017585754, -0.01191231980919838, -0.6279613971710205, -0.36137232184410095, -0.5023547410964966]} +{"t": 12.9946, "q": [-0.31700223684310913, 0.004070162307471037, -0.006307582836598158, 0.6228047013282776, -0.3209984302520752, -0.003243274288251996, -0.3593316078186035, 0.015152321197092533, -0.014945355243980885, 0.6051127910614014, -0.2916773557662964, -0.013843460939824581, 0.029636265709996223, -0.05811835452914238, -0.021991221234202385, 0.13001686334609985, 0.13191036880016327, 0.025250762701034546, 1.240750789642334, 0.14522483944892883, 0.04182494431734085, -0.03952397406101227, -0.8062507510185242, -0.8949100375175476, 0.9260570406913757, -0.01191231980919838, -0.6280932426452637, -0.36160004138946533, -0.49964630603790283]} +{"t": 13.0113, "q": [-0.3170192837715149, 0.004061639774590731, -0.006307582836598158, 0.6228047013282776, -0.3209903836250305, -0.003272229339927435, -0.3592889904975891, 0.015186409465968609, -0.014958747662603855, 0.6050360798835754, -0.29159849882125854, -0.01377870887517929, 0.02955591306090355, -0.05845040827989578, -0.021806644275784492, 0.12989701330661774, 0.13222195208072662, 0.025298699736595154, 1.2407268285751343, 0.14522483944892883, 0.04182494431734085, -0.03953595831990242, -0.8064544796943665, -0.894274890422821, 0.9259731769561768, -0.011996209621429443, -0.6280812621116638, -0.3616599440574646, -0.4979805052280426]} +{"t": 13.0281, "q": [-0.31703633069992065, 0.004027551505714655, -0.006254015490412712, 0.622847318649292, -0.3209943473339081, -0.003250493435189128, -0.3592889904975891, 0.015203453600406647, -0.014891788363456726, 0.6050446033477783, -0.29153209924697876, -0.01369219459593296, 0.029207725077867508, -0.058525677770376205, -0.02173096500337124, 0.12988503277301788, 0.13246163725852966, 0.02527473121881485, 1.2407149076461792, 0.14524881541728973, 0.041848912835121155, -0.03952397406101227, -0.8068379759788513, -0.8934479355812073, 0.9257693886756897, -0.01197224110364914, -0.6280453205108643, -0.36164796352386475, -0.49674612283706665]} +{"t": 13.0448, "q": [-0.3170278072357178, 0.003882674966007471, -0.006240623537451029, 0.6228899359703064, -0.3209819197654724, -0.003243116196244955, -0.3592378497123718, 0.015203453600406647, -0.01486500445753336, 0.6050105690956116, -0.29144081473350525, -0.01357688382267952, 0.029180940240621567, -0.0585407093167305, -0.02171192690730095, 0.12989701330661774, 0.13276124000549316, 0.025250762701034546, 1.2408466339111328, 0.1452847570180893, 0.04187288135290146, -0.03954794257879257, -0.8078925609588623, -0.8929805755615234, 0.9258413314819336, -0.012008193880319595, -0.6280812621116638, -0.3616599440574646, -0.49506834149360657]} +{"t": 13.0615, "q": [-0.3170278072357178, 0.0038315425626933575, -0.006254015490412712, 0.6229751706123352, -0.32097771763801575, -0.003235800191760063, -0.3592037558555603, 0.015246064402163029, -0.014918571338057518, 0.6049935221672058, -0.2914159297943115, -0.01353359129279852, 0.02975679188966751, -0.05856328457593918, -0.021688245236873627, 0.12986107170581818, 0.13291704654693604, 0.025178857147693634, 1.240822672843933, 0.1452847570180893, 0.04188486561179161, -0.039571911096572876, -0.8087074756622314, -0.8927528858184814, 0.9258652925491333, -0.011996209621429443, -0.6280932426452637, -0.3616839051246643, -0.49322277307510376]} +{"t": 13.0782, "q": [-0.3170278072357178, 0.003703711088746786, -0.006307582836598158, 0.6230348348617554, -0.32097771763801575, -0.003235800191760063, -0.3591015040874481, 0.015459117479622364, -0.01503909844905138, 0.6049935221672058, -0.2913910448551178, -0.013490298762917519, 0.030212117359042168, -0.05870696157217026, -0.02165868878364563, 0.12983709573745728, 0.1330009251832962, 0.025178857147693634, 1.240810751914978, 0.14529675245285034, 0.04188486561179161, -0.039559926837682724, -0.8094984889030457, -0.892561137676239, 0.9258533120155334, -0.011996209621429443, -0.6280932426452637, -0.3617078959941864, -0.4917966425418854]} +{"t": 13.095, "q": [-0.31699371337890625, 0.0035673570819199085, -0.006307582836598158, 0.623145580291748, -0.3209776282310486, -0.0032212829682976007, -0.3588714003562927, 0.015510249882936478, -0.015065882354974747, 0.6049594283103943, -0.29133298993110657, -0.013374827802181244, 0.030359428375959396, -0.05888819321990013, -0.0215865857899189, 0.12978915870189667, 0.1330728381872177, 0.025142904371023178, 1.240810751914978, 0.14527277648448944, 0.041908834129571915, -0.03959587961435318, -0.8111163377761841, -0.8925012350082397, 0.9258413314819336, -0.011996209621429443, -0.6281291842460632, -0.3617318570613861, -0.49063417315483093]} +{"t": 13.1117, "q": [-0.3169766962528229, 0.0035247462801635265, -0.006280798930674791, 0.6231711506843567, -0.32100629806518555, -0.0031852489337325096, -0.3588373064994812, 0.015450594946742058, -0.015065882354974747, 0.6049253344535828, -0.2912956476211548, -0.013324358500540257, 0.030305860564112663, -0.05914571136236191, -0.02161458320915699, 0.12977717816829681, 0.13327656686306, 0.025142904371023178, 1.2407987117767334, 0.14532071352005005, 0.04188486561179161, -0.039571911096572876, -0.8137049078941345, -0.8926090598106384, 0.925805389881134, -0.012044146656990051, -0.6281052231788635, -0.3617558181285858, -0.48916012048721313]} +{"t": 13.1285, "q": [-0.31699371337890625, 0.003448047209531069, -0.006254015490412712, 0.6231626272201538, -0.32100212574005127, -0.0031779510900378227, -0.35882025957107544, 0.015467639081180096, -0.014998923055827618, 0.6048912405967712, -0.2912500500679016, -0.013216082006692886, 0.030024630948901176, -0.05940346419811249, -0.02168157510459423, 0.12987305223941803, 0.1335522085428238, 0.025178857147693634, 1.240810751914978, 0.14521285891532898, 0.04187288135290146, -0.03958389535546303, -0.8167728781700134, -0.8926929831504822, 0.9257934093475342, -0.012068115174770355, -0.6281172037124634, -0.3617797791957855, -0.4866194725036621]} +{"t": 13.1452, "q": [-0.31698518991470337, 0.003431003075093031, -0.006187055725604296, 0.6231796741485596, -0.3210267126560211, -0.003149153897538781, -0.3587521016597748, 0.015484684146940708, -0.014931963756680489, 0.6047719120979309, -0.2911255657672882, -0.01304301805794239, 0.02989071048796177, -0.059623584151268005, -0.0217814389616251, 0.13006480038166046, 0.13380387425422668, 0.02515488862991333, 1.240810751914978, 0.1452368199825287, 0.04186089709401131, -0.039619848132133484, -0.8196491003036499, -0.8930524587631226, 0.9257814288139343, -0.01212803553789854, -0.6280812621116638, -0.36185169219970703, -0.4836593568325043]} +{"t": 13.1619, "q": [-0.31699371337890625, 0.003431003075093031, -0.006187055725604296, 0.6232478618621826, -0.32102254033088684, -0.0031418558210134506, -0.35867539048194885, 0.015442073345184326, -0.014945355243980885, 0.6045929789543152, -0.29098036885261536, -0.012819431722164154, 0.029863927513360977, -0.059858642518520355, -0.02185271680355072, 0.13017265498638153, 0.13416339457035065, 0.025118935853242874, 1.2408826351165771, 0.14529675245285034, 0.04187288135290146, -0.03970373794436455, -0.8221298456192017, -0.8935078978538513, 0.9257934093475342, -0.0121879568323493, -0.6280812621116638, -0.36192360520362854, -0.48079514503479004]} +{"t": 13.1787, "q": [-0.31695112586021423, 0.0034650913439691067, -0.006187055725604296, 0.6232990026473999, -0.3210184574127197, -0.0031490749679505825, -0.3586072027683258, 0.015476161614060402, -0.014945355243980885, 0.6044736504554749, -0.2908475697040558, -0.012689819559454918, 0.029823752120137215, -0.06023019179701805, -0.021967733278870583, 0.13022059202194214, 0.1342233270406723, 0.025142904371023178, 1.2408826351165771, 0.1453087329864502, 0.041848912835121155, -0.03970373794436455, -0.8246824741363525, -0.8937715291976929, 0.9258413314819336, -0.012163988314568996, -0.6281052231788635, -0.36199551820755005, -0.4776912033557892]} +{"t": 13.1955, "q": [-0.3169596493244171, 0.0034821354784071445, -0.006187055725604296, 0.623367190361023, -0.321022629737854, -0.003156373044475913, -0.35859018564224243, 0.015467639081180096, -0.014931963756680489, 0.6042946577072144, -0.2906690835952759, -0.012697964906692505, 0.02977018430829048, -0.060541246086359024, -0.022090701386332512, 0.13019661605358124, 0.1344270557165146, 0.025142904371023178, 1.2408826351165771, 0.14532071352005005, 0.04186089709401131, -0.039691753685474396, -0.8266239166259766, -0.8938554525375366, 0.9259132146835327, -0.012116051279008389, -0.6280932426452637, -0.36204344034194946, -0.4758935868740082]} +{"t": 13.2123, "q": [-0.31700223684310913, 0.0035673570819199085, -0.006240623537451029, 0.6234694719314575, -0.32101836800575256, -0.0031345579773187637, -0.35857313871383667, 0.015459117479622364, -0.014891788363456726, 0.6040475368499756, -0.29044926166534424, -0.012619614601135254, 0.02977018430829048, -0.060913410037755966, -0.02230355702340603, 0.13010074198246002, 0.1348465085029602, 0.02515488862991333, 1.2408586740493774, 0.14532071352005005, 0.04188486561179161, -0.039691753685474396, -0.8282897472381592, -0.8938194513320923, 0.9258772730827332, -0.012080099433660507, -0.6280453205108643, -0.3620794117450714, -0.4745393693447113]} +{"t": 13.229, "q": [-0.3170278072357178, 0.0036696228198707104, -0.0062272315844893456, 0.6235631704330444, -0.32101428508758545, -0.003141776891425252, -0.35862424969673157, 0.015425029210746288, -0.014891788363456726, 0.6038430333137512, -0.29025423526763916, -0.012613426893949509, 0.029823752120137215, -0.06111863628029823, -0.02244224026799202, 0.12999288737773895, 0.13526594638824463, 0.025142904371023178, 1.2408826351165771, 0.1453087329864502, 0.04187288135290146, -0.0397157222032547, -0.8299914598464966, -0.8937116265296936, 0.9259251952171326, -0.01212803553789854, -0.6280213594436646, -0.3621273338794708, -0.47323307394981384]} +{"t": 13.246, "q": [-0.31712156534194946, 0.0036866669543087482, -0.006254015490412712, 0.6236910223960876, -0.3210184574127197, -0.0031490749679505825, -0.35859018564224243, 0.015416506677865982, -0.014905179850757122, 0.6036981344223022, -0.29010075330734253, -0.012578114867210388, 0.029837142676115036, -0.061293452978134155, -0.022560374811291695, 0.1299809068441391, 0.13556554913520813, 0.02503504604101181, 1.2408586740493774, 0.1452607959508896, 0.04187288135290146, -0.039739690721035004, -0.8322205543518066, -0.8936396837234497, 0.9260210990905762, -0.0121879568323493, -0.6280453205108643, -0.36219924688339233, -0.4716751277446747]} +{"t": 13.2629, "q": [-0.317155659198761, 0.0037122326903045177, -0.006254015490412712, 0.6240148544311523, -0.3210184574127197, -0.0031490749679505825, -0.3586072027683258, 0.015425029210746288, -0.014918571338057518, 0.6036555171012878, -0.28995567560195923, -0.012456011958420277, 0.029810359701514244, -0.06142254173755646, -0.022628193721175194, 0.13004082441329956, 0.13573333621025085, 0.025047030299901962, 1.2408705949783325, 0.14527277648448944, 0.04187288135290146, -0.03977564349770546, -0.8357798457145691, -0.8936876654624939, 0.9260929822921753, -0.012235893867909908, -0.628069281578064, -0.36227113008499146, -0.4699493944644928]} +{"t": 13.2796, "q": [-0.31726643443107605, 0.0037974542938172817, -0.006307582836598158, 0.6242790222167969, -0.3210347890853882, -0.003120180917903781, -0.35864129662513733, 0.01540798507630825, -0.014905179850757122, 0.6035873293876648, -0.28988945484161377, -0.012340715155005455, 0.029837142676115036, -0.06156695634126663, -0.022725781425833702, 0.13016067445278168, 0.13593706488609314, 0.025070998817682266, 1.2409186363220215, 0.14527277648448944, 0.04187288135290146, -0.03978762775659561, -0.8388358354568481, -0.8937715291976929, 0.9261648654937744, -0.012271846644580364, -0.628069281578064, -0.3623790144920349, -0.46788811683654785]} +{"t": 13.2964, "q": [-0.31740278005599976, 0.0037974542938172817, -0.00638793408870697, 0.6244324445724487, -0.32104286551475525, -0.003091225866228342, -0.3587009608745575, 0.015390940010547638, -0.014972139149904251, 0.6035191416740417, -0.28981900215148926, -0.0122615871950984, 0.029944278299808502, -0.061908867210149765, -0.022937415167689323, 0.13020861148834229, 0.13612881302833557, 0.025070998817682266, 1.2408946752548218, 0.1452847570180893, 0.04187288135290146, -0.03977564349770546, -0.8412926197052002, -0.8938794136047363, 0.9262008666992188, -0.012319783680140972, -0.6280812621116638, -0.36259472370147705, -0.46553921699523926]} +{"t": 13.3131, "q": [-0.3175221085548401, 0.003780410159379244, -0.006521853152662516, 0.6246028542518616, -0.32105112075805664, -0.0030913047958165407, -0.35872653126716614, 0.015416506677865982, -0.014972139149904251, 0.6034595370292664, -0.2897568941116333, -0.012153495103120804, 0.029971063137054443, -0.062349654734134674, -0.0232255756855011, 0.13022059202194214, 0.136320561170578, 0.025070998817682266, 1.2409065961837769, 0.14524881541728973, 0.04187288135290146, -0.03978762775659561, -0.8439051508903503, -0.8942509293556213, 0.9262727499008179, -0.012319783680140972, -0.6280932426452637, -0.3629782199859619, -0.46284276247024536]} +{"t": 13.3298, "q": [-0.3176499307155609, 0.003823020961135626, -0.0065620290115475655, 0.624713659286499, -0.3210510015487671, -0.003076787805184722, -0.3588458299636841, 0.015390940010547638, -0.014985531568527222, 0.6033913493156433, -0.28972792625427246, -0.012103050015866756, 0.029997846111655235, -0.06290394067764282, -0.023513302206993103, 0.13034042716026306, 0.13676397502422333, 0.025070998817682266, 1.2409065961837769, 0.1452368199825287, 0.041848912835121155, -0.039811596274375916, -0.8465297222137451, -0.8950778245925903, 0.9263206720352173, -0.01230779942125082, -0.6281172037124634, -0.3636493384838104, -0.45965495705604553]} +{"t": 13.3465, "q": [-0.31772664189338684, 0.0038741533644497395, -0.006615596357733011, 0.6248244643211365, -0.32105520367622375, -0.0030840858817100525, -0.3588799238204956, 0.01540798507630825, -0.014985531568527222, 0.6032549738883972, -0.28969889879226685, -0.012081527151167393, 0.029971063137054443, -0.0636410266160965, -0.02398337796330452, 0.1303524225950241, 0.13727930188179016, 0.02509496733546257, 1.2408946752548218, 0.1452368199825287, 0.041848912835121155, -0.03976365923881531, -0.8485910296440125, -0.896156370639801, 0.9263086915016174, -0.012283830903470516, -0.6281291842460632, -0.3649316430091858, -0.4563233554363251]} +{"t": 13.3633, "q": [-0.3178715109825134, 0.003908241633325815, -0.006709339562803507, 0.6249096989631653, -0.3210674524307251, -0.003062410745769739, -0.3589310646057129, 0.015399462543427944, -0.014972139149904251, 0.6031782627105713, -0.2896532714366913, -0.012074544094502926, 0.029971063137054443, -0.06437825411558151, -0.02448296546936035, 0.13046027719974518, 0.13778263330459595, 0.025142904371023178, 1.2409065961837769, 0.1452368199825287, 0.04186089709401131, -0.03977564349770546, -0.850053071975708, -0.8973788022994995, 0.9262128472328186, -0.01224787812680006, -0.6281172037124634, -0.36699292063713074, -0.4548972249031067]} +{"t": 13.38, "q": [-0.31791412830352783, 0.003993463236838579, -0.00672273151576519, 0.6250971555709839, -0.3210838735103607, -0.0030480518471449614, -0.35893958806991577, 0.015331286005675793, -0.014985531568527222, 0.6031271815299988, -0.2896242141723633, -0.012067454867064953, 0.02993088588118553, -0.06500893086194992, -0.024891342967748642, 0.13048423826694489, 0.13830994069576263, 0.025142904371023178, 1.2409305572509766, 0.14527277648448944, 0.04187288135290146, -0.03976365923881531, -0.8514432311058044, -0.8984094262123108, 0.9262487888336182, -0.012223909609019756, -0.6280812621116638, -0.37080392241477966, -0.45393848419189453]} +{"t": 13.3968, "q": [-0.3180760443210602, 0.004044595640152693, -0.00672273151576519, 0.6251994371414185, -0.32110846042633057, -0.0030192548874765635, -0.3590247929096222, 0.015382418408989906, -0.014972139149904251, 0.603110134601593, -0.28960344195365906, -0.012089243158698082, 0.029863927513360977, -0.06564749032258987, -0.02534429170191288, 0.13056813180446625, 0.13872939348220825, 0.025166872888803482, 1.2409186363220215, 0.14522483944892883, 0.04187288135290146, -0.03978762775659561, -0.8523181080818176, -0.8992723226547241, 0.9262008666992188, -0.012211925350129604, -0.628069281578064, -0.3741355240345001, -0.4527999758720398]} +{"t": 13.4135, "q": [-0.3182123899459839, 0.004044595640152693, -0.006736123468726873, 0.6253187656402588, -0.321124792098999, -0.0029903787653893232, -0.35905036330223083, 0.015365374274551868, -0.014958747662603855, 0.603110134601593, -0.2894914150238037, -0.012082630768418312, 0.029676441103219986, -0.06636203825473785, -0.02584889344871044, 0.1306280493736267, 0.13913685083389282, 0.02515488862991333, 1.2409425973892212, 0.14527277648448944, 0.04187288135290146, -0.03976365923881531, -0.853192925453186, -0.9002190232276917, 0.9259731769561768, -0.012211925350129604, -0.6280333399772644, -0.37677204608917236, -0.45148172974586487]} +{"t": 13.4303, "q": [-0.31831464171409607, 0.004087206441909075, -0.006736123468726873, 0.6253954172134399, -0.3211533725261688, -0.0029398277401924133, -0.3590759336948395, 0.015356851741671562, -0.014931963756680489, 0.6030760407447815, -0.2894582152366638, -0.012082807719707489, 0.029355036094784737, -0.06686367839574814, -0.02619956247508526, 0.13071194291114807, 0.1395443230867386, 0.02515488862991333, 1.2410024404525757, 0.14529675245285034, 0.04188486561179161, -0.03976365923881531, -0.8542835116386414, -0.9012137651443481, 0.9258533120155334, -0.012140019796788692, -0.6279853582382202, -0.37914493680000305, -0.4496001899242401]} +{"t": 13.447, "q": [-0.3183572590351105, 0.0041212947107851505, -0.006736123468726873, 0.6254976987838745, -0.3211778700351715, -0.0028964956291019917, -0.359110027551651, 0.015331286005675793, -0.01486500445753336, 0.6030334234237671, -0.28938353061676025, -0.012068754062056541, 0.029006846249103546, -0.06723606586456299, -0.02645285055041313, 0.1308557540178299, 0.13995178043842316, 0.02515488862991333, 1.241098403930664, 0.1453087329864502, 0.04188486561179161, -0.03977564349770546, -0.8547748923301697, -0.9023282527923584, 0.9257934093475342, -0.012163988314568996, -0.6279733777046204, -0.380834698677063, -0.44751495122909546]} +{"t": 13.4637, "q": [-0.31836578249931335, 0.00418094964697957, -0.006709339562803507, 0.6257703900337219, -0.32124337553977966, -0.0028099894989281893, -0.3591015040874481, 0.015339807607233524, -0.01486500445753336, 0.6030334234237671, -0.2893088459968567, -0.012069150805473328, 0.02802923694252968, -0.06741847097873688, -0.02657695859670639, 0.13108345866203308, 0.14033527672290802, 0.025142904371023178, 1.241098403930664, 0.14532071352005005, 0.04187288135290146, -0.03976365923881531, -0.8546430468559265, -0.9029634594917297, 0.9256855249404907, -0.012199941091239452, -0.6279853582382202, -0.3818773329257965, -0.44569334387779236]} +{"t": 13.4805, "q": [-0.3184765875339508, 0.004232082050293684, -0.006709339562803507, 0.6261197924613953, -0.3213005065917969, -0.002708905376493931, -0.3591526448726654, 0.015271631069481373, -0.01471769344061613, 0.6030248999595642, -0.28915533423423767, -0.012048272415995598, 0.026757007464766502, -0.06742606312036514, -0.026582129299640656, 0.13128718733787537, 0.14057496190071106, 0.025142904371023178, 1.2412900924682617, 0.14527277648448944, 0.04192081838846207, -0.03976365923881531, -0.8546430468559265, -0.9028675556182861, 0.9256256222724915, -0.012140019796788692, -0.6280093789100647, -0.3826083838939667, -0.4435601532459259]} +{"t": 13.4972, "q": [-0.31873223185539246, 0.004232082050293684, -0.006695947609841824, 0.6263073086738586, -0.3213251829147339, -0.0026946072466671467, -0.3593401312828064, 0.015271631069481373, -0.014597166329622269, 0.6030334234237671, -0.28903090953826904, -0.012005561962723732, 0.02623472362756729, -0.06741099059581757, -0.026591334491968155, 0.1311793327331543, 0.14070679247379303, 0.025130920112133026, 1.241266131401062, 0.1453326940536499, 0.041908834129571915, -0.03977564349770546, -0.8547029495239258, -0.9028076529502869, 0.9255297183990479, -0.012163988314568996, -0.6279973983764648, -0.3831236958503723, -0.44087567925453186]} +{"t": 13.514, "q": [-0.31895381212234497, 0.004232082050293684, -0.006669164169579744, 0.6264607310295105, -0.32130858302116394, -0.0026799323968589306, -0.3594253361225128, 0.015322763472795486, -0.014556990936398506, 0.6029993295669556, -0.2888442277908325, -0.011955974623560905, 0.02585975080728531, -0.06739591807126999, -0.026600539684295654, 0.1309036910533905, 0.14082662761211395, 0.025142904371023178, 1.2412781715393066, 0.14534468948841095, 0.04194478690624237, -0.03977564349770546, -0.8549066781997681, -0.9028435945510864, 0.9254458546638489, -0.012140019796788692, -0.6279973983764648, -0.3834232985973358, -0.43773582577705383]} +{"t": 13.5308, "q": [-0.31914129853248596, 0.0043002585880458355, -0.006669164169579744, 0.6266822814941406, -0.32131683826446533, -0.0026800113264471292, -0.3594764769077301, 0.015339807607233524, -0.014597166329622269, 0.6029396653175354, -0.2887238562107086, -0.01197829283773899, 0.02568565495312214, -0.06740351766347885, -0.02660571224987507, 0.13077186048030853, 0.14099441468715668, 0.025130920112133026, 1.2412781715393066, 0.1452847570180893, 0.04194478690624237, -0.03978762775659561, -0.8552542328834534, -0.902879536151886, 0.9254218935966492, -0.01212803553789854, -0.6279733777046204, -0.3835791051387787, -0.4351951479911804]} +{"t": 13.5475, "q": [-0.3191753923892975, 0.0043854801915585995, -0.00672273151576519, 0.626954972743988, -0.32133325934410095, -0.002665652194991708, -0.35945090651512146, 0.015339807607233524, -0.014610557816922665, 0.6028629541397095, -0.2886699438095093, -0.011971335858106613, 0.025672264397144318, -0.06751751899719238, -0.026683278381824493, 0.13081979751586914, 0.14115020632743835, 0.025142904371023178, 1.2412781715393066, 0.14529675245285034, 0.04198073968291283, -0.03978762775659561, -0.8554939031600952, -0.902879536151886, 0.9254218935966492, -0.012163988314568996, -0.6279374361038208, -0.38368695974349976, -0.43388888239860535]} +{"t": 13.5643, "q": [-0.31920096278190613, 0.004419568460434675, -0.0067896912805736065, 0.627099871635437, -0.32135793566703796, -0.0026513542979955673, -0.35940828919410706, 0.015322763472795486, -0.014637341722846031, 0.6027606725692749, -0.2886326313018799, -0.011935404501855373, 0.02568565495312214, -0.06779871135950089, -0.026874611154198647, 0.13093964755535126, 0.14129401743412018, 0.02515488862991333, 1.2413021326065063, 0.1452368199825287, 0.041968755424022675, -0.03978762775659561, -0.8555418848991394, -0.9028675556182861, 0.9254698157310486, -0.012163988314568996, -0.6279374361038208, -0.3837948143482208, -0.43310990929603577]} +{"t": 13.581, "q": [-0.3193202614784241, 0.004487745929509401, -0.0068030827678740025, 0.6272532343864441, -0.3213866055011749, -0.0026153381913900375, -0.3594338595867157, 0.015365374274551868, -0.014637341722846031, 0.6025902628898621, -0.28862014412879944, -0.011957149021327496, 0.025832965970039368, -0.06807231158018112, -0.027060773223638535, 0.13111941516399384, 0.1414617896080017, 0.025142904371023178, 1.2412900924682617, 0.14532071352005005, 0.04198073968291283, -0.039799612015485764, -0.8556017875671387, -0.9028675556182861, 0.9254937767982483, -0.012175972573459148, -0.627925455570221, -0.3838307559490204, -0.4322590231895447]} +{"t": 13.5977, "q": [-0.3195333182811737, 0.004496267531067133, -0.006910218391567469, 0.6273981332778931, -0.3214276134967804, -0.002572182333096862, -0.35945090651512146, 0.015331286005675793, -0.014650734141469002, 0.6024368405342102, -0.28858283162117004, -0.011935669928789139, 0.0260472372174263, -0.06836105138063431, -0.027247507125139236, 0.13119131326675415, 0.1416655331850052, 0.025166872888803482, 1.2412900924682617, 0.14532071352005005, 0.04195677116513252, -0.039799612015485764, -0.8556976318359375, -0.902879536151886, 0.9255057573318481, -0.012163988314568996, -0.6278775334358215, -0.3838547468185425, -0.43124035000801086]} +{"t": 13.6144, "q": [-0.3197634220123291, 0.004504790063947439, -0.007003961596637964, 0.6275941729545593, -0.3214398920536041, -0.0025505071971565485, -0.35949352383613586, 0.015365374274551868, -0.01471769344061613, 0.6023005247116089, -0.2885703146457672, -0.01198633573949337, 0.026301683858036995, -0.06861943006515503, -0.027423415333032608, 0.13121528923511505, 0.14188124239444733, 0.025142904371023178, 1.241326093673706, 0.14534468948841095, 0.04194478690624237, -0.03978762775659561, -0.8559013605117798, -0.902879536151886, 0.9254817962646484, -0.012152004055678844, -0.6277816295623779, -0.38384273648262024, -0.42989811301231384]} +{"t": 13.6311, "q": [-0.32019802927970886, 0.004538878332823515, -0.007164664100855589, 0.6278583407402039, -0.3214641809463501, -0.0024781229440122843, -0.3595702052116394, 0.015365374274551868, -0.014824828132987022, 0.6021897196769714, -0.2885909080505371, -0.012094649486243725, 0.02656952105462551, -0.06888546049594879, -0.027614371851086617, 0.131203293800354, 0.1420849710702896, 0.02515488862991333, 1.241326093673706, 0.14532071352005005, 0.04194478690624237, -0.03977564349770546, -0.8562369346618652, -0.9028675556182861, 0.925433874130249, -0.012175972573459148, -0.6277456879615784, -0.3838547468185425, -0.42807653546333313]} +{"t": 13.6478, "q": [-0.32076048851013184, 0.004581489134579897, -0.00735215051099658, 0.628148078918457, -0.32153764367103577, -0.0023481447715312243, -0.35977473855018616, 0.015365374274551868, -0.014945355243980885, 0.602078914642334, -0.28857430815696716, -0.012094737030565739, 0.02690431848168373, -0.0691666305065155, -0.027805911377072334, 0.1311793327331543, 0.14225275814533234, 0.025142904371023178, 1.241326093673706, 0.1453326940536499, 0.04194478690624237, -0.03978762775659561, -0.8565365672111511, -0.9027717113494873, 0.9254218935966492, -0.0121879568323493, -0.6276498436927795, -0.3838307559490204, -0.42655453085899353]} +{"t": 13.6648, "q": [-0.321450799703598, 0.004607054870575666, -0.0074860695749521255, 0.6284719109535217, -0.3216641843318939, -0.0021242834627628326, -0.36014971137046814, 0.0153738958761096, -0.01511945016682148, 0.6019766926765442, -0.28857430815696716, -0.012094737030565739, 0.027279291301965714, -0.0695466622710228, -0.02807481586933136, 0.13116735219955444, 0.14249244332313538, 0.025142904371023178, 1.2412781715393066, 0.14527277648448944, 0.04192081838846207, -0.039799612015485764, -0.8567882180213928, -0.902735710144043, 0.9254218935966492, -0.012140019796788692, -0.627697765827179, -0.3838307559490204, -0.42538008093833923]} +{"t": 13.6815, "q": [-0.32222631573677063, 0.004615577403455973, -0.007619988638907671, 0.6288213133811951, -0.32167643308639526, -0.0021026262547820807, -0.36046504974365234, 0.015399462543427944, -0.015226585790514946, 0.6019681692123413, -0.2885577082633972, -0.01210927776992321, 0.027627481147646904, -0.06985829770565033, -0.02829708158969879, 0.1311793327331543, 0.1426602154970169, 0.025142904371023178, 1.2412781715393066, 0.14532071352005005, 0.04189684987068176, -0.03978762775659561, -0.8573994040489197, -0.902795672416687, 0.9254099130630493, -0.0121879568323493, -0.627697765827179, -0.3838547468185425, -0.42430150508880615]} +{"t": 13.6982, "q": [-0.323248952627182, 0.004624099005013704, -0.007834259420633316, 0.629128098487854, -0.3217093050479889, -0.002073908457532525, -0.3611382842063904, 0.015484684146940708, -0.0154542475938797, 0.6019085049629211, -0.2884044349193573, -0.011914941482245922, 0.02788192592561245, -0.07030659168958664, -0.028593072667717934, 0.13121528923511505, 0.14305569231510162, 0.025142904371023178, 1.2412781715393066, 0.14521285891532898, 0.04187288135290146, -0.03978762775659561, -0.8584660291671753, -0.9031911492347717, 0.9254218935966492, -0.0121879568323493, -0.6277097463607788, -0.38389068841934204, -0.4228873550891876]} +{"t": 13.7152, "q": [-0.32438239455223083, 0.004649665672332048, -0.007887826301157475, 0.6293752789497375, -0.32170093059539795, -0.002059294143691659, -0.36193084716796875, 0.015535816550254822, -0.015547990798950195, 0.6018744111061096, -0.2881019115447998, -0.011620203033089638, 0.027935493737459183, -0.07102856040000916, -0.02909543178975582, 0.13135908544063568, 0.14349910616874695, 0.02515488862991333, 1.2413140535354614, 0.14522483944892883, 0.04189684987068176, -0.039811596274375916, -0.8594487309455872, -0.9033469557762146, 0.925373911857605, -0.012163988314568996, -0.6276738047599792, -0.3839026689529419, -0.4209698736667633]} +{"t": 13.7319, "q": [-0.3255073130130768, 0.0046326215378940105, -0.007901218719780445, 0.6295456886291504, -0.32169675827026367, -0.002051996299996972, -0.3630557656288147, 0.01563808135688305, -0.015561383217573166, 0.6018829345703125, -0.2877327501773834, -0.011499274522066116, 0.027989061549305916, -0.07175803929567337, -0.029603851959109306, 0.13151489198207855, 0.14389459788799286, 0.02515488862991333, 1.241326093673706, 0.1452368199825287, 0.04186089709401131, -0.039799612015485764, -0.8601917624473572, -0.9033109545707703, 0.9253858923912048, -0.012223909609019756, -0.6276498436927795, -0.3839026689529419, -0.4189565181732178]} +{"t": 13.7487, "q": [-0.3263339698314667, 0.004683753941208124, -0.007874434813857079, 0.6296138763427734, -0.32168442010879517, -0.0020591362845152617, -0.3638398051261902, 0.015621037222445011, -0.015481031499803066, 0.601848840713501, -0.2875129282474518, -0.011406490579247475, 0.027948886156082153, -0.0723503828048706, -0.029960263520479202, 0.13153885304927826, 0.14432603120803833, 0.025142904371023178, 1.2413380146026611, 0.14524881541728973, 0.04188486561179161, -0.03978762775659561, -0.8605512380599976, -0.9030952453613281, 0.9254218935966492, -0.01230779942125082, -0.62761390209198, -0.3839026689529419, -0.4172068238258362]} +{"t": 13.7655, "q": [-0.3268793821334839, 0.0046752323396503925, -0.007847650907933712, 0.6296053528785706, -0.32168442010879517, -0.0020591362845152617, -0.36426588892936707, 0.01587670110166073, -0.015467639081180096, 0.6017124652862549, -0.2872888147830963, -0.011436586268246174, 0.02790871076285839, -0.07282079011201859, -0.030174707993865013, 0.13153885304927826, 0.14479340612888336, 0.025166872888803482, 1.2413740158081055, 0.14522483944892883, 0.04187288135290146, -0.03978762775659561, -0.8605272769927979, -0.902879536151886, 0.9256495833396912, -0.01230779942125082, -0.6275898814201355, -0.3839026689529419, -0.4158526062965393]} +{"t": 13.7823, "q": [-0.32693052291870117, 0.0046752323396503925, -0.007834259420633316, 0.6296223998069763, -0.32169675827026367, -0.002051996299996972, -0.3642573654651642, 0.016038620844483376, -0.0154542475938797, 0.6015591025352478, -0.28706884384155273, -0.011459452100098133, 0.02770783193409443, -0.07316884398460388, -0.030188685283064842, 0.1315028965473175, 0.14520087838172913, 0.025142904371023178, 1.2413740158081055, 0.14524881541728973, 0.04189684987068176, -0.03978762775659561, -0.8604434132575989, -0.9026997685432434, 0.9258413314819336, -0.01236772071570158, -0.6275898814201355, -0.3839026689529419, -0.4147740304470062]} +{"t": 13.799, "q": [-0.32693052291870117, 0.004615577403455973, -0.007780691608786583, 0.6296053528785706, -0.32172533869743347, -0.0020014450419694185, -0.36423182487487793, 0.015970444306731224, -0.015347111970186234, 0.6013801097869873, -0.28706055879592896, -0.011445044539868832, 0.02758730575442314, -0.07326743006706238, -0.03022686578333378, 0.13144297897815704, 0.14550048112869263, 0.025142904371023178, 1.2413500547409058, 0.14529675245285034, 0.04186089709401131, -0.039811596274375916, -0.8602995872497559, -0.9025799632072449, 0.9259012341499329, -0.012379704974591732, -0.6275898814201355, -0.3838787078857422, -0.4139830768108368]} +{"t": 13.8159, "q": [-0.32688790559768677, 0.004538878332823515, -0.0076467725448310375, 0.6295968294143677, -0.3218272924423218, -0.001806398737244308, -0.3642062544822693, 0.016021577641367912, -0.015239977277815342, 0.60132896900177, -0.2870107591152191, -0.011445309966802597, 0.02737303450703621, -0.0732523649930954, -0.03023603744804859, 0.13139504194259644, 0.14562031626701355, 0.025142904371023178, 1.2413380146026611, 0.1452368199825287, 0.04187288135290146, -0.03985953330993652, -0.8600718975067139, -0.9025319814682007, 0.9259731769561768, -0.01245160959661007, -0.6276018619537354, -0.3839026689529419, -0.4135875999927521]} +{"t": 13.8328, "q": [-0.32688790559768677, 0.004462179262191057, -0.007499461527913809, 0.6295542120933533, -0.3219131827354431, -0.0016837975708767772, -0.3642062544822693, 0.016038620844483376, -0.015146234072744846, 0.6013460159301758, -0.28699418902397156, -0.011430946178734303, 0.027091804891824722, -0.07323716580867767, -0.03022564947605133, 0.13129916787147522, 0.14564429223537445, 0.025142904371023178, 1.2413619756698608, 0.14534468948841095, 0.04187288135290146, -0.03991945460438728, -0.8599041104316711, -0.9025200009346008, 0.9260570406913757, -0.012607404962182045, -0.6275779008865356, -0.3839266300201416, -0.41341981291770935]} +{"t": 13.8496, "q": [-0.326870858669281, 0.004411046858876944, -0.00735215051099658, 0.6295456886291504, -0.32195401191711426, -0.001611571409739554, -0.3642062544822693, 0.016089754179120064, -0.01505249086767435, 0.6012778282165527, -0.286977618932724, -0.01141656469553709, 0.02686414308845997, -0.07323716580867767, -0.03022564947605133, 0.1312752068042755, 0.1456323117017746, 0.025070998817682266, 1.2413619756698608, 0.1453087329864502, 0.04189684987068176, -0.039931438863277435, -0.8594966530799866, -0.9023402333259583, 0.9260210990905762, -0.012799152173101902, -0.62761390209198, -0.3839506208896637, -0.41339585185050964]} +{"t": 13.8663, "q": [-0.32688790559768677, 0.004394001793116331, -0.007298583164811134, 0.6295371651649475, -0.32198259234428406, -0.001561020384542644, -0.3642062544822693, 0.016081232577562332, -0.015025706961750984, 0.6012522578239441, -0.286940336227417, -0.011366164311766624, 0.026663264259696007, -0.07322956621646881, -0.030220454558730125, 0.1312752068042755, 0.1456802487373352, 0.025118935853242874, 1.2413740158081055, 0.14534468948841095, 0.041908834129571915, -0.03995540738105774, -0.8590292930603027, -0.902136504650116, 0.9259851574897766, -0.013110741972923279, -0.6276618242263794, -0.3840225040912628, -0.4133119583129883]} +{"t": 13.883, "q": [-0.32685381174087524, 0.0043854801915585995, -0.007271799258887768, 0.6295371651649475, -0.3219989240169525, -0.0015321442624554038, -0.3641465902328491, 0.016166452318429947, -0.015012315474450588, 0.6012011766433716, -0.28687384724617004, -0.011438812129199505, 0.026475777849555016, -0.07323716580867767, -0.03022564947605133, 0.1312512308359146, 0.14577612280845642, 0.02509496733546257, 1.2413979768753052, 0.1453566700220108, 0.04189684987068176, -0.03996739163994789, -0.8587895631790161, -0.9019807577133179, 0.9259971380233765, -0.013386379927396774, -0.6276498436927795, -0.3842262327671051, -0.4131321907043457]} +{"t": 13.8998, "q": [-0.3268282413482666, 0.004394001793116331, -0.007311975117772818, 0.6295371651649475, -0.32200300693511963, -0.0015249252319335938, -0.36413806676864624, 0.016166452318429947, -0.014998923055827618, 0.6011500358581543, -0.28689050674438477, -0.011395351029932499, 0.02636864222586155, -0.07322963327169418, -0.030230235308408737, 0.13129916787147522, 0.14577612280845642, 0.025082983076572418, 1.2413740158081055, 0.1453326940536499, 0.041908834129571915, -0.03997937589883804, -0.8588734865188599, -0.9019447565078735, 0.9259132146835327, -0.013602095656096935, -0.6276738047599792, -0.38453784584999084, -0.4129524230957031]} +{"t": 13.9165, "q": [-0.3267686069011688, 0.004402524325996637, -0.007311975117772818, 0.6295371651649475, -0.32200300693511963, -0.0015249252319335938, -0.36408692598342896, 0.01613236404955387, -0.015012315474450588, 0.601098895072937, -0.28689464926719666, -0.01140255481004715, 0.026315074414014816, -0.07323729246854782, -0.030245209112763405, 0.13128718733787537, 0.14580008387565613, 0.025070998817682266, 1.2413500547409058, 0.14534468948841095, 0.04192081838846207, -0.04000334441661835, -0.8592929244041443, -0.9019567370414734, 0.9255297183990479, -0.013793842867016792, -0.6276857852935791, -0.384753555059433, -0.4128565490245819]} +{"t": 13.9333, "q": [-0.32671746611595154, 0.004445135127753019, -0.007311975117772818, 0.629503071308136, -0.3220113515853882, -0.001539539429359138, -0.3640784025192261, 0.01613236404955387, -0.015012315474450588, 0.6010818481445312, -0.286911278963089, -0.011373545043170452, 0.026315074414014816, -0.0732373595237732, -0.030254987999796867, 0.13129916787147522, 0.14582405984401703, 0.025070998817682266, 1.2413979768753052, 0.1453326940536499, 0.04192081838846207, -0.04002731293439865, -0.859688401222229, -0.9019447565078735, 0.9252541065216064, -0.013817811384797096, -0.627697765827179, -0.38486140966415405, -0.41284456849098206]} +{"t": 13.95, "q": [-0.32668337225914, 0.004504790063947439, -0.007338759023696184, 0.6295115947723389, -0.3220113515853882, -0.001539539429359138, -0.36404433846473694, 0.016115320846438408, -0.014985531568527222, 0.6010648012161255, -0.2869112491607666, -0.011402466334402561, 0.026435602456331253, -0.07326021790504456, -0.030280349776148796, 0.13129916787147522, 0.14582405984401703, 0.025082983076572418, 1.2413859367370605, 0.1453326940536499, 0.04193280264735222, -0.0400153286755085, -0.8598921298980713, -0.9018968343734741, 0.9249424934387207, -0.013877732679247856, -0.6276498436927795, -0.3849213421344757, -0.4128325879573822]} +{"t": 13.9669, "q": [-0.3267004191875458, 0.004564445000141859, -0.00735215051099658, 0.6295286417007446, -0.3220030963420868, -0.0015394423389807343, -0.3640528619289398, 0.016038620844483376, -0.014985531568527222, 0.601030707359314, -0.28690290451049805, -0.01143141370266676, 0.026408817619085312, -0.07326021790504456, -0.030280349776148796, 0.13135908544063568, 0.14581206440925598, 0.025059014558792114, 1.2413859367370605, 0.1452847570180893, 0.04195677116513252, -0.04002731293439865, -0.8599280714988708, -0.9017530083656311, 0.9245949387550354, -0.013877732679247856, -0.6276378631591797, -0.384981244802475, -0.41282060742378235]} +{"t": 13.9837, "q": [-0.32670894265174866, 0.004615577403455973, -0.00735215051099658, 0.629503071308136, -0.32200321555137634, -0.0015539774904027581, -0.3641039729118347, 0.016038620844483376, -0.014985531568527222, 0.6010136604309082, -0.2870022654533386, -0.01160435937345028, 0.02638203464448452, -0.07324515283107758, -0.03028952330350876, 0.13141901791095734, 0.14580008387565613, 0.025070998817682266, 1.2414219379425049, 0.14532071352005005, 0.04193280264735222, -0.040051281452178955, -0.8598442077636719, -0.9015852212905884, 0.9245350360870361, -0.013865748420357704, -0.6276378631591797, -0.3850052058696747, -0.41279664635658264]} +{"t": 14.0004, "q": [-0.3267004191875458, 0.004683753941208124, -0.0074191102758049965, 0.6295286417007446, -0.3220157325267792, -0.001575871603563428, -0.3641210198402405, 0.016021577641367912, -0.014958747662603855, 0.6009795665740967, -0.2873540222644806, -0.01230360846966505, 0.026288291439414024, -0.07324515283107758, -0.03028952330350876, 0.1314789354801178, 0.14580008387565613, 0.025070998817682266, 1.2414578199386597, 0.14536865055561066, 0.04192081838846207, -0.04006326571106911, -0.8595565557479858, -0.9012616872787476, 0.9244751334190369, -0.013889716938138008, -0.6276618242263794, -0.3850052058696747, -0.41277265548706055]} +{"t": 14.0171, "q": [-0.32671746611595154, 0.004803063813596964, -0.00743250222876668, 0.6295201182365417, -0.3220198154449463, -0.0015686525730416179, -0.364155113697052, 0.015902267768979073, -0.014931963756680489, 0.6009113788604736, -0.2874574363231659, -0.01255603414028883, 0.026261506602168083, -0.07323761284351349, -0.030294109135866165, 0.13149091601371765, 0.14581206440925598, 0.025047030299901962, 1.241481900215149, 0.1452847570180893, 0.04192081838846207, -0.04007524996995926, -0.8591251373291016, -0.9009979963302612, 0.924463152885437, -0.013925669714808464, -0.6276738047599792, -0.38516101241111755, -0.4127606749534607]} +{"t": 14.0339, "q": [-0.32671746611595154, 0.0048968070186674595, -0.00743250222876668, 0.6295115947723389, -0.32201147079467773, -0.0015540565364062786, -0.3641892075538635, 0.015868179500102997, -0.014891788363456726, 0.6008262038230896, -0.287643700838089, -0.012909234501421452, 0.026154372841119766, -0.07323008030653, -0.030298694968223572, 0.1314789354801178, 0.14584802091121674, 0.025070998817682266, 1.2415177822113037, 0.14534468948841095, 0.04192081838846207, -0.0400392971932888, -0.858717679977417, -0.9008901715278625, 0.9244151711463928, -0.013949638232588768, -0.6276738047599792, -0.38529282808303833, -0.4127606749534607]} +{"t": 14.0506, "q": [-0.3267259895801544, 0.005041682627052069, -0.007445894181728363, 0.6295115947723389, -0.3220238983631134, -0.0015614335425198078, -0.3641977310180664, 0.015851134434342384, -0.014838220551609993, 0.6007324457168579, -0.28852131962776184, -0.014480280689895153, 0.02602045238018036, -0.07322254776954651, -0.03030328080058098, 0.1315028965473175, 0.14583604037761688, 0.025118935853242874, 1.2415058612823486, 0.14532071352005005, 0.04193280264735222, -0.04007524996995926, -0.8582382798194885, -0.9008302688598633, 0.9243432879447937, -0.014009559527039528, -0.6276618242263794, -0.38543665409088135, -0.41279664635658264]} +{"t": 14.0674, "q": [-0.3267345130443573, 0.005160992499440908, -0.00743250222876668, 0.6295286417007446, -0.3220363259315491, -0.001568810548633337, -0.3641977310180664, 0.015740348026156425, -0.014744477346539497, 0.600655734539032, -0.2884591519832611, -0.014415542595088482, 0.025832965970039368, -0.07320747524499893, -0.03031245432794094, 0.13149091601371765, 0.1458839774131775, 0.025082983076572418, 1.2415298223495483, 0.14534468948841095, 0.04193280264735222, -0.04006326571106911, -0.8578668236732483, -0.9006984233856201, 0.924319326877594, -0.014093449339270592, -0.6276498436927795, -0.38553252816200256, -0.4127846658229828]} +{"t": 14.0841, "q": [-0.3267686069011688, 0.005331434775143862, -0.00743250222876668, 0.6295201182365417, -0.32204458117485046, -0.0015688895946368575, -0.3642573654651642, 0.01569773629307747, -0.014757868833839893, 0.6005534529685974, -0.2887365221977234, -0.014912828803062439, 0.02568565495312214, -0.07320747524499893, -0.03031245432794094, 0.1315028965473175, 0.14591993391513824, 0.025106951594352722, 1.241553783416748, 0.14532071352005005, 0.04195677116513252, -0.04006326571106911, -0.8574233651161194, -0.9006145000457764, 0.9243313074111938, -0.014177338220179081, -0.6276378631591797, -0.3857003152370453, -0.4127606749534607]} +{"t": 14.1009, "q": [-0.3267941474914551, 0.005425177980214357, -0.007445894181728363, 0.6295371651649475, -0.32204875349998474, -0.0015761875547468662, -0.3642914593219757, 0.01569773629307747, -0.01470430102199316, 0.6004341840744019, -0.28899312019348145, -0.015417415648698807, 0.02553834579885006, -0.07322267442941666, -0.030322842299938202, 0.13153885304927826, 0.14596785604953766, 0.025070998817682266, 1.2415657043457031, 0.14534468948841095, 0.04194478690624237, -0.04007524996995926, -0.8570159077644348, -0.9005426168441772, 0.924319326877594, -0.014225275255739689, -0.6276738047599792, -0.38585609197616577, -0.4127606749534607]} +{"t": 14.1177, "q": [-0.3267856240272522, 0.005510399583727121, -0.007472677621990442, 0.6295201182365417, -0.32204049825668335, -0.0015761086251586676, -0.36446189880371094, 0.015663648024201393, -0.014757868833839893, 0.6003233790397644, -0.2890758514404297, -0.015619352459907532, 0.025444602593779564, -0.0732075423002243, -0.030322235077619553, 0.1315508335828781, 0.1460038125514984, 0.025082983076572418, 1.241553783416748, 0.14536865055561066, 0.04195677116513252, -0.04006326571106911, -0.8568121790885925, -0.9004587531089783, 0.9243313074111938, -0.014321149326860905, -0.6276498436927795, -0.3860718011856079, -0.4127606749534607]} +{"t": 14.1344, "q": [-0.3268623352050781, 0.005570054519921541, -0.007472677621990442, 0.6295286417007446, -0.3220570385456085, -0.0015762847615405917, -0.3646579086780548, 0.01564660482108593, -0.014744477346539497, 0.60028076171875, -0.2890882194042206, -0.015655433759093285, 0.025498168542981148, -0.07322274148464203, -0.030332623049616814, 0.1315028965473175, 0.14607572555541992, 0.02509496733546257, 1.2415657043457031, 0.1453566700220108, 0.04194478690624237, -0.04007524996995926, -0.8567402958869934, -0.9003628492355347, 0.9243432879447937, -0.014429006725549698, -0.6276378631591797, -0.3863714337348938, -0.4127606749534607]} +{"t": 14.1512, "q": [-0.32693052291870117, 0.005663797724992037, -0.007526245433837175, 0.6295286417007446, -0.3220570385456085, -0.0015762847615405917, -0.36464938521385193, 0.01565512642264366, -0.014744477346539497, 0.6001699566841125, -0.28909236192703247, -0.015677088871598244, 0.02552495338022709, -0.07322274148464203, -0.030332623049616814, 0.1315028965473175, 0.14611166715621948, 0.025070998817682266, 1.241553783416748, 0.1453566700220108, 0.041968755424022675, -0.04008723422884941, -0.8567043542861938, -0.9002310037612915, 0.9243672490119934, -0.014452975243330002, -0.6276498436927795, -0.38677889108657837, -0.412736713886261]} +{"t": 14.1679, "q": [-0.32699015736579895, 0.005723452661186457, -0.007526245433837175, 0.6295201182365417, -0.32206103205680847, -0.0015545125352218747, -0.36463233828544617, 0.015663648024201393, -0.01478465273976326, 0.6000592112541199, -0.28910893201828003, -0.0156914833933115, 0.025591911748051643, -0.07322274148464203, -0.030332623049616814, 0.13151489198207855, 0.14612366259098053, 0.025070998817682266, 1.2415896654129028, 0.14536865055561066, 0.04194478690624237, -0.04008723422884941, -0.8566443920135498, -0.9001471400260925, 0.9243672490119934, -0.014536865055561066, -0.6276738047599792, -0.38725826144218445, -0.4127127528190613]} +{"t": 14.1847, "q": [-0.327058345079422, 0.005766062531620264, -0.007553029339760542, 0.629503071308136, -0.3220650851726532, -0.0015472935047000647, -0.3646579086780548, 0.015680693089962006, -0.01479804515838623, 0.5999484062194824, -0.28909650444984436, -0.015684310346841812, 0.025591911748051643, -0.07323034107685089, -0.03033781610429287, 0.1315508335828781, 0.14606373012065887, 0.025070998817682266, 1.2416256666183472, 0.1453566700220108, 0.04193280264735222, -0.04007524996995926, -0.856548547744751, -0.9001471400260925, 0.9243672490119934, -0.014524880796670914, -0.6276738047599792, -0.3881450891494751, -0.41267678141593933]} +{"t": 14.2014, "q": [-0.3271435797214508, 0.005791629198938608, -0.007553029339760542, 0.629503071308136, -0.322073370218277, -0.0015473907114937901, -0.36464086174964905, 0.015731824561953545, -0.014851612038910389, 0.5998290777206421, -0.2890882194042206, -0.015669886022806168, 0.025645479559898376, -0.07323034107685089, -0.03033781610429287, 0.13159877061843872, 0.14609968662261963, 0.025082983076572418, 1.2416256666183472, 0.14529675245285034, 0.041908834129571915, -0.04009921848773956, -0.8565844893455505, -0.9000752568244934, 0.9243073463439941, -0.014464959502220154, -0.6277097463607788, -0.38967907428741455, -0.4126048982143402]} +{"t": 14.2181, "q": [-0.3272799253463745, 0.005825717467814684, -0.007593204732984304, 0.629503071308136, -0.32206499576568604, -0.0015327765140682459, -0.3646153211593628, 0.015731824561953545, -0.014838220551609993, 0.5997268557548523, -0.28889355063438416, -0.015389024280011654, 0.02571243979036808, -0.07323794066905975, -0.030343011021614075, 0.13156282901763916, 0.14612366259098053, 0.025070998817682266, 1.2415896654129028, 0.14532071352005005, 0.04194478690624237, -0.04009921848773956, -0.85663241147995, -0.8999913334846497, 0.9243313074111938, -0.014393054880201817, -0.6277337074279785, -0.3915845453739166, -0.41254496574401855]} +{"t": 14.2349, "q": [-0.3273736536502838, 0.005800151731818914, -0.007553029339760542, 0.629503071308136, -0.3220774531364441, -0.00154017168097198, -0.3645556569099426, 0.01581704616546631, -0.014851612038910389, 0.599607527256012, -0.2887982726097107, -0.015281125903129578, 0.02571243979036808, -0.0732228010892868, -0.030342401936650276, 0.13151489198207855, 0.14612366259098053, 0.025082983076572418, 1.2416256666183472, 0.14532071352005005, 0.041908834129571915, -0.04007524996995926, -0.8565844893455505, -0.8999434113502502, 0.9243313074111938, -0.01435710210353136, -0.6278296113014221, -0.3936817944049835, -0.41249704360961914]} +{"t": 14.2516, "q": [-0.3274588882923126, 0.005791629198938608, -0.007553029339760542, 0.6294946074485779, -0.3220691680908203, -0.0015400744741782546, -0.3645556569099426, 0.01581704616546631, -0.014851612038910389, 0.5995478630065918, -0.28780871629714966, -0.013616685755550861, 0.025645479559898376, -0.07323027402162552, -0.030328037217259407, 0.1315268725156784, 0.14614762365818024, 0.02509496733546257, 1.2416256666183472, 0.14529675245285034, 0.04193280264735222, -0.040111202746629715, -0.8562608957290649, -0.8999074697494507, 0.9243792295455933, -0.0142971808090806, -0.6277816295623779, -0.39564719796180725, -0.4124610722064972]} +{"t": 14.2683, "q": [-0.327433317899704, 0.00577458506450057, -0.007512853480875492, 0.6294519901275635, -0.32207733392715454, -0.0015256365295499563, -0.3645641803741455, 0.01587670110166073, -0.014824828132987022, 0.5994285345077515, -0.2869599461555481, -0.012211752124130726, 0.02553834579885006, -0.07322267442941666, -0.030322842299938202, 0.13156282901763916, 0.1461596041917801, 0.025118935853242874, 1.2415896654129028, 0.14534468948841095, 0.04193280264735222, -0.04009921848773956, -0.8558174967765808, -0.8998235464096069, 0.9243792295455933, -0.014285196550190449, -0.6278056502342224, -0.39737293124198914, -0.41242513060569763]} +{"t": 14.2852, "q": [-0.32744184136390686, 0.005749018397182226, -0.0074860695749521255, 0.629417896270752, -0.32208970189094543, -0.00151851458940655, -0.364530086517334, 0.01588522270321846, -0.014824828132987022, 0.5993604063987732, -0.286972314119339, -0.012276718392968178, 0.025297291576862335, -0.07323027402162552, -0.030328037217259407, 0.131574809551239, 0.1462075412273407, 0.025082983076572418, 1.2416256666183472, 0.14534468948841095, 0.04192081838846207, -0.04009921848773956, -0.8556497097015381, -0.8997157216072083, 0.9243073463439941, -0.014321149326860905, -0.6278056502342224, -0.39861929416656494, -0.4124371111392975]} +{"t": 14.3019, "q": [-0.32740774750709534, 0.005723452661186457, -0.007378934416919947, 0.629417896270752, -0.3220856189727783, -0.00152573361992836, -0.3645130395889282, 0.01594487763941288, -0.014771261252462864, 0.5993348360061646, -0.2866286635398865, -0.011693075299263, 0.02504284493625164, -0.07321508228778839, -0.030317649245262146, 0.13156282901763916, 0.1462315171957016, 0.02509496733546257, 1.2416375875473022, 0.1453087329864502, 0.04194478690624237, -0.04008723422884941, -0.8552422523498535, -0.8996557593345642, 0.9241635203361511, -0.013949638232588768, -0.6279014945030212, -0.399697870016098, -0.4124371111392975]} +{"t": 14.3187, "q": [-0.32745036482810974, 0.0056723193265497684, -0.007311975117772818, 0.6294008493423462, -0.3220856189727783, -0.00152573361992836, -0.36453860998153687, 0.015987489372491837, -0.01471769344061613, 0.5993263125419617, -0.2864961624145508, -0.011491421610116959, 0.024828573688864708, -0.07319988310337067, -0.030307261273264885, 0.13149091601371765, 0.1462554782629013, 0.025082983076572418, 1.2416616678237915, 0.14534468948841095, 0.04194478690624237, -0.04008723422884941, -0.854834794998169, -0.8995239734649658, 0.9241155982017517, -0.01342233270406723, -0.6280093789100647, -0.40104010701179504, -0.4124131500720978]} +{"t": 14.3355, "q": [-0.3274674117565155, 0.005587098654359579, -0.0072584073059260845, 0.6293241381645203, -0.32208141684532166, -0.0015184174990281463, -0.3645727038383484, 0.015970444306731224, -0.014731084927916527, 0.5993433594703674, -0.28638824820518494, -0.011491977609694004, 0.024627696722745895, -0.07317708432674408, -0.03029167838394642, 0.13132314383983612, 0.14635135233402252, 0.025070998817682266, 1.2416256666183472, 0.14532071352005005, 0.04194478690624237, -0.040111202746629715, -0.8544273376464844, -0.8993801474571228, 0.9241036176681519, -0.013338442891836166, -0.6280453205108643, -0.4021786153316498, -0.41242513060569763]} +{"t": 14.3522, "q": [-0.32749298214912415, 0.005578576121479273, -0.007231623865664005, 0.629272997379303, -0.3220772445201874, -0.0015111194225028157, -0.3645641803741455, 0.015961922705173492, -0.014757868833839893, 0.5993433594703674, -0.28633439540863037, -0.011441683396697044, 0.024480385705828667, -0.07316948473453522, -0.030286485329270363, 0.13128718733787537, 0.14645922183990479, 0.025082983076572418, 1.2416136264801025, 0.1453326940536499, 0.04194478690624237, -0.04014715552330017, -0.8540678024291992, -0.8992602825164795, 0.924091637134552, -0.013266537338495255, -0.6280812621116638, -0.4033171236515045, -0.41242513060569763]} +{"t": 14.369, "q": [-0.32739922404289246, 0.005587098654359579, -0.0072584073059260845, 0.6292218565940857, -0.32207733392715454, -0.0015256365295499563, -0.36453860998153687, 0.0160045325756073, -0.01478465273976326, 0.5993348360061646, -0.28630951046943665, -0.011427345685660839, 0.024225939065217972, -0.07317708432674408, -0.03029167838394642, 0.13135908544063568, 0.14645922183990479, 0.025070998817682266, 1.2416375875473022, 0.1452847570180893, 0.04195677116513252, -0.04013517126441002, -0.8538161516189575, -0.8991883993148804, 0.924091637134552, -0.013386379927396774, -0.6280213594436646, -0.40385639667510986, -0.41242513060569763]} +{"t": 14.3858, "q": [-0.3272799253463745, 0.005655275192111731, -0.0072584073059260845, 0.6292133331298828, -0.32208141684532166, -0.0015184174990281463, -0.3644448518753052, 0.016166452318429947, -0.014811436645686626, 0.5993604063987732, -0.286214143037796, -0.011362803168594837, 0.024092020466923714, -0.0731922835111618, -0.03030206635594368, 0.1314789354801178, 0.14649516344070435, 0.025070998817682266, 1.2417575120925903, 0.14524881541728973, 0.04195677116513252, -0.04014715552330017, -0.8537202477455139, -0.8990805745124817, 0.9241036176681519, -0.013554158620536327, -0.6279973983764648, -0.40433576703071594, -0.41244909167289734]} +{"t": 14.4026, "q": [-0.32725435495376587, 0.0056723193265497684, -0.007271799258887768, 0.6292133331298828, -0.3220815360546112, -0.00153295265045017, -0.36435964703559875, 0.016166452318429947, -0.014824828132987022, 0.5993433594703674, -0.28620585799217224, -0.011362846940755844, 0.02402506023645401, -0.07317708432674408, -0.03029167838394642, 0.13149091601371765, 0.1465071588754654, 0.025070998817682266, 1.2418054342269897, 0.14534468948841095, 0.041968755424022675, -0.04012318700551987, -0.8534566164016724, -0.8990086317062378, 0.9241036176681519, -0.013685985468327999, -0.6279853582382202, -0.40468332171440125, -0.4124371111392975]} +{"t": 14.4193, "q": [-0.32725435495376587, 0.005646753590553999, -0.007231623865664005, 0.6292048096656799, -0.3220732510089874, -0.0015328555600717664, -0.36436817049980164, 0.016157930716872215, -0.014824828132987022, 0.5993859171867371, -0.2861519753932953, -0.011312535032629967, 0.023891141638159752, -0.07317708432674408, -0.03029167838394642, 0.13144297897815704, 0.14656707644462585, 0.025118935853242874, 1.2418173551559448, 0.14529675245285034, 0.04198073968291283, -0.04012318700551987, -0.8526176810264587, -0.8988648056983948, 0.9241036176681519, -0.013590111397206783, -0.6279134750366211, -0.40488705039024353, -0.41247305274009705]} +{"t": 14.4361, "q": [-0.32725435495376587, 0.0056723193265497684, -0.007271799258887768, 0.6292218565940857, -0.3220609128475189, -0.001539995544590056, -0.3643852174282074, 0.016166452318429947, -0.014838220551609993, 0.5994114875793457, -0.2861021161079407, -0.011327250860631466, 0.023797398433089256, -0.07316948473453522, -0.030286485329270363, 0.13135908544063568, 0.14662699401378632, 0.02503504604101181, 1.2417933940887451, 0.14532071352005005, 0.04198073968291283, -0.04013517126441002, -0.8513833284378052, -0.8987210392951965, 0.9241036176681519, -0.013386379927396774, -0.6279014945030212, -0.40495896339416504, -0.412509024143219]} +{"t": 14.4528, "q": [-0.32725435495376587, 0.005689363460987806, -0.007271799258887768, 0.6292303800582886, -0.3220527470111847, -0.001554433605633676, -0.3643766939640045, 0.016157930716872215, -0.014824828132987022, 0.5994285345077515, -0.28607702255249023, -0.011370752938091755, 0.023797398433089256, -0.07316948473453522, -0.030286485329270363, 0.13135908544063568, 0.14663897454738617, 0.025070998817682266, 1.2418054342269897, 0.14527277648448944, 0.041968755424022675, -0.04013517126441002, -0.8498852849006653, -0.8985173106193542, 0.9241515398025513, -0.01330249011516571, -0.6278176307678223, -0.4049469828605652, -0.41254496574401855]} +{"t": 14.4696, "q": [-0.3272373080253601, 0.0057404967956244946, -0.007285191211849451, 0.6292218565940857, -0.32205694913864136, -0.0015617315657436848, -0.36436817049980164, 0.016157930716872215, -0.014838220551609993, 0.5994285345077515, -0.28606027364730835, -0.011399743147194386, 0.023797398433089256, -0.07316948473453522, -0.030286485329270363, 0.13133512437343597, 0.1465790569782257, 0.02503504604101181, 1.24178147315979, 0.1453326940536499, 0.04195677116513252, -0.04015913978219032, -0.8476682305335999, -0.8982536196708679, 0.9241635203361511, -0.013290505856275558, -0.6278296113014221, -0.4049469828605652, -0.4126288592815399]} +{"t": 14.4863, "q": [-0.3271435797214508, 0.005723452661186457, -0.007338759023696184, 0.6292048096656799, -0.32205694913864136, -0.0015617315657436848, -0.3642573654651642, 0.016115320846438408, -0.014945355243980885, 0.5994455814361572, -0.28607693314552307, -0.01142857875674963, 0.024065235629677773, -0.07317708432674408, -0.03029167838394642, 0.13139504194259644, 0.14649516344070435, 0.025047030299901962, 1.2417933940887451, 0.14532071352005005, 0.04195677116513252, -0.04014715552330017, -0.8460383415222168, -0.8980498909950256, 0.9242833852767944, -0.013230584561824799, -0.627841591835022, -0.4049709439277649, -0.4126048982143402]} +{"t": 14.5032, "q": [-0.32716912031173706, 0.0057404967956244946, -0.00743250222876668, 0.629196286201477, -0.32205283641815186, -0.0015689685242250562, -0.36423182487487793, 0.016166452318429947, -0.015025706961750984, 0.5994114875793457, -0.2860852777957916, -0.011442987248301506, 0.024279506877064705, -0.07317708432674408, -0.03029167838394642, 0.13162274658679962, 0.14642326533794403, 0.025070998817682266, 1.2417933940887451, 0.1453566700220108, 0.04195677116513252, -0.04014715552330017, -0.8448998928070068, -0.8975825309753418, 0.9244272112846375, -0.013194631785154343, -0.627841591835022, -0.4049469828605652, -0.41264083981513977]} +{"t": 14.5199, "q": [-0.32717764377593994, 0.0057404967956244946, -0.00743250222876668, 0.629196286201477, -0.32205283641815186, -0.0015689685242250562, -0.3642488718032837, 0.016089754179120064, -0.014972139149904251, 0.5994455814361572, -0.2860852777957916, -0.011442987248301506, 0.024574128910899162, -0.07317708432674408, -0.03029167838394642, 0.13169464468955994, 0.14642326533794403, 0.02503504604101181, 1.2418293952941895, 0.14532071352005005, 0.04195677116513252, -0.04014715552330017, -0.8440489768981934, -0.8966237902641296, 0.9243552684783936, -0.013206616044044495, -0.6277816295623779, -0.40491101145744324, -0.41264083981513977]} +{"t": 14.5367, "q": [-0.3272287845611572, 0.005731974262744188, -0.00743250222876668, 0.6291792392730713, -0.3220527470111847, -0.001554433605633676, -0.3642914593219757, 0.016106797382235527, -0.014972139149904251, 0.5994029641151428, -0.2861599624156952, -0.011543790809810162, 0.024761615321040154, -0.07319214940071106, -0.030282504856586456, 0.13168266415596008, 0.14637532830238342, 0.02503504604101181, 1.2418293952941895, 0.14534468948841095, 0.04194478690624237, -0.04015913978219032, -0.8438572287559509, -0.8954133987426758, 0.924319326877594, -0.013194631785154343, -0.6277456879615784, -0.40491101145744324, -0.4126528203487396]} +{"t": 14.5534, "q": [-0.327245831489563, 0.005689363460987806, -0.007445894181728363, 0.6291621923446655, -0.32205283641815186, -0.0015689685242250562, -0.36432555317878723, 0.01606418751180172, -0.014945355243980885, 0.5994200110435486, -0.28617653250694275, -0.011572624556720257, 0.02486875094473362, -0.07316188514232635, -0.030281290411949158, 0.13167068362236023, 0.14639928936958313, 0.025047030299901962, 1.2418413162231445, 0.14529675245285034, 0.04192081838846207, -0.04014715552330017, -0.843773365020752, -0.8938194513320923, 0.9241994619369507, -0.013146694749593735, -0.6277456879615784, -0.4048750698566437, -0.4126648008823395]} +{"t": 14.5702, "q": [-0.3272373080253601, 0.0057149301283061504, -0.007445894181728363, 0.6291451454162598, -0.3220570385456085, -0.0015762847615405917, -0.36432555317878723, 0.01606418751180172, -0.014945355243980885, 0.5994114875793457, -0.2861848473548889, -0.011558128520846367, 0.024935709312558174, -0.07317708432674408, -0.03029167838394642, 0.13163472712039948, 0.14635135233402252, 0.02502306178212166, 1.2418173551559448, 0.1452847570180893, 0.041908834129571915, -0.04015913978219032, -0.8437014222145081, -0.8920817375183105, 0.924091637134552, -0.013110741972923279, -0.6277936100959778, -0.4048630893230438, -0.4126887917518616]} +{"t": 14.587, "q": [-0.32725435495376587, 0.005646753590553999, -0.00743250222876668, 0.6291195750236511, -0.32206520438194275, -0.0015618287725374103, -0.36432555317878723, 0.016081232577562332, -0.014905179850757122, 0.5993604063987732, -0.28624287247657776, -0.011601174250245094, 0.024949101731181145, -0.07317708432674408, -0.03029167838394642, 0.13162274658679962, 0.14632739126682281, 0.02503504604101181, 1.2418054342269897, 0.14521285891532898, 0.04193280264735222, -0.04015913978219032, -0.8435816168785095, -0.8904638886451721, 0.9240196943283081, -0.013134710490703583, -0.6277217268943787, -0.4048271179199219, -0.4127127528190613]} +{"t": 14.6037, "q": [-0.3272799253463745, 0.005604142788797617, -0.00743250222876668, 0.6290514469146729, -0.3220570385456085, -0.0015762847615405917, -0.364342600107193, 0.016047142446041107, -0.014878395944833755, 0.5993518829345703, -0.28625112771987915, -0.011630034074187279, 0.024935709312558174, -0.07316948473453522, -0.030286485329270363, 0.13161076605319977, 0.14632739126682281, 0.02503504604101181, 1.2417933940887451, 0.1452368199825287, 0.04193280264735222, -0.04015913978219032, -0.8432939648628235, -0.8892175555229187, 0.923947811126709, -0.013134710490703583, -0.627697765827179, -0.4047911763191223, -0.412736713886261]} +{"t": 14.6205, "q": [-0.3273310661315918, 0.005570054519921541, -0.00739232636988163, 0.6290173530578613, -0.32206103205680847, -0.0015545125352218747, -0.36436817049980164, 0.016047142446041107, -0.014838220551609993, 0.5992836952209473, -0.2862760126590729, -0.011658823117613792, 0.024908926337957382, -0.07316948473453522, -0.030286485329270363, 0.13159877061843872, 0.14635135233402252, 0.02503504604101181, 1.2418054342269897, 0.14521285891532898, 0.04193280264735222, -0.040171124041080475, -0.8428026437759399, -0.8881868720054626, 0.9238519668579102, -0.013146694749593735, -0.627697765827179, -0.4047911763191223, -0.41274869441986084]} +{"t": 14.6373, "q": [-0.3273907005786896, 0.005518921185284853, -0.007378934416919947, 0.628966212272644, -0.3220776319503784, -0.0015692057786509395, -0.3644278347492218, 0.016030099242925644, -0.01479804515838623, 0.5992496013641357, -0.28628432750701904, -0.011644327081739902, 0.024828573688864708, -0.07315429300069809, -0.030276097357273102, 0.13162274658679962, 0.14636334776878357, 0.02503504604101181, 1.2417933940887451, 0.14532071352005005, 0.04193280264735222, -0.04020707681775093, -0.8422034382820129, -0.8876835703849792, 0.9238519668579102, -0.013134710490703583, -0.6277337074279785, -0.40480315685272217, -0.41277265548706055]} +{"t": 14.654, "q": [-0.3273821771144867, 0.0054933554492890835, -0.00735215051099658, 0.6288809776306152, -0.322073370218277, -0.0015473907114937901, -0.36445337533950806, 0.016047142446041107, -0.01478465273976326, 0.599155843257904, -0.286271870136261, -0.011637149378657341, 0.024775007739663124, -0.07316948473453522, -0.030286485329270363, 0.13161076605319977, 0.14636334776878357, 0.02503504604101181, 1.2418173551559448, 0.1453087329864502, 0.04193280264735222, -0.040231045335531235, -0.8412806391716003, -0.8874678611755371, 0.9237920045852661, -0.01312272623181343, -0.6277936100959778, -0.4048271179199219, -0.41279664635658264]} +{"t": 14.6709, "q": [-0.32734808325767517, 0.005510399583727121, -0.007311975117772818, 0.6287786960601807, -0.3220774531364441, -0.00154017168097198, -0.3644363582134247, 0.01606418751180172, -0.014757868833839893, 0.599087655544281, -0.2862677574157715, -0.011615493334829807, 0.024614304304122925, -0.07316948473453522, -0.030286485329270363, 0.13161076605319977, 0.14631541073322296, 0.02502306178212166, 1.2418413162231445, 0.14527277648448944, 0.04193280264735222, -0.04020707681775093, -0.8403099179267883, -0.8875157833099365, 0.9237440824508667, -0.013074790127575397, -0.6277696490287781, -0.4048271179199219, -0.4128325879573822]} +{"t": 14.6877, "q": [-0.32736513018608093, 0.005501877050846815, -0.007285191211849451, 0.6287105679512024, -0.3220774531364441, -0.00154017168097198, -0.36445337533950806, 0.016021577641367912, -0.01470430102199316, 0.5989513397216797, -0.2862594425678253, -0.011615538038313389, 0.024413425475358963, -0.07315429300069809, -0.030276097357273102, 0.13163472712039948, 0.14636334776878357, 0.02503504604101181, 1.2418413162231445, 0.1452847570180893, 0.04194478690624237, -0.04021906107664108, -0.838907778263092, -0.8876595497131348, 0.9236361980438232, -0.013050821609795094, -0.6277816295623779, -0.40483909845352173, -0.4129045009613037]} +{"t": 14.7045, "q": [-0.3273395895957947, 0.005518921185284853, -0.007285191211849451, 0.6285912394523621, -0.3220774531364441, -0.00154017168097198, -0.36446189880371094, 0.016021577641367912, -0.01470430102199316, 0.5988831520080566, -0.28625115752220154, -0.011615581810474396, 0.024145588278770447, -0.07315429300069809, -0.030276097357273102, 0.13162274658679962, 0.14645922183990479, 0.025047030299901962, 1.2417933940887451, 0.14532071352005005, 0.04193280264735222, -0.040231045335531235, -0.8375535607337952, -0.8877554535865784, 0.9234804511070251, -0.013062805868685246, -0.6278056502342224, -0.4048630893230438, -0.412964403629303]} +{"t": 14.7214, "q": [-0.3273395895957947, 0.005535965319722891, -0.007285191211849451, 0.6285571455955505, -0.3220774531364441, -0.00154017168097198, -0.3644874691963196, 0.016047142446041107, -0.014690909534692764, 0.5988746285438538, -0.2861766815185547, -0.011456973850727081, 0.023998277261853218, -0.07314668595790863, -0.030270902439951897, 0.13162274658679962, 0.14647120237350464, 0.02503504604101181, 1.2418054342269897, 0.14529675245285034, 0.04193280264735222, -0.04024302959442139, -0.8363790512084961, -0.8876595497131348, 0.9235044121742249, -0.013074790127575397, -0.6277816295623779, -0.4048990309238434, -0.412964403629303]} +{"t": 14.7383, "q": [-0.32736513018608093, 0.005544487852603197, -0.007271799258887768, 0.6284889578819275, -0.3220774531364441, -0.00154017168097198, -0.36454713344573975, 0.01606418751180172, -0.014690909534692764, 0.5988661050796509, -0.28620147705078125, -0.01152911875396967, 0.023971492424607277, -0.07308589667081833, -0.030229350551962852, 0.13161076605319977, 0.1465071588754654, 0.02503504604101181, 1.2418413162231445, 0.14534468948841095, 0.04194478690624237, -0.04021906107664108, -0.8354323506355286, -0.8875876665115356, 0.9235044121742249, -0.013050821609795094, -0.6277936100959778, -0.4048750698566437, -0.4129764139652252]} +{"t": 14.7555, "q": [-0.3273310661315918, 0.005561531987041235, -0.007231623865664005, 0.6284122467041016, -0.3220650851726532, -0.0015472935047000647, -0.36458122730255127, 0.016055665910243988, -0.014690909534692764, 0.5988831520080566, -0.2861558198928833, -0.01153658702969551, 0.02387774921953678, -0.0730099156498909, -0.030177410691976547, 0.13162274658679962, 0.1464831829071045, 0.02503504604101181, 1.2418653964996338, 0.1453326940536499, 0.04195677116513252, -0.04021906107664108, -0.834509551525116, -0.8874558210372925, 0.923492431640625, -0.01312272623181343, -0.6277337074279785, -0.4048750698566437, -0.4129883944988251]} +{"t": 14.7724, "q": [-0.32730549573898315, 0.005604142788797617, -0.007231623865664005, 0.6283696293830872, -0.32206103205680847, -0.0015545125352218747, -0.3645727038383484, 0.016055665910243988, -0.01471769344061613, 0.5989001989364624, -0.2861558198928833, -0.01153658702969551, 0.023770615458488464, -0.07294152677059174, -0.030130667611956596, 0.13159877061843872, 0.1465071588754654, 0.02503504604101181, 1.2418653964996338, 0.1453326940536499, 0.04195677116513252, -0.04021906107664108, -0.833766520023346, -0.8871802091598511, 0.9234564304351807, -0.01318264752626419, -0.627697765827179, -0.40488705039024353, -0.4130003750324249]} +{"t": 14.7891, "q": [-0.32725435495376587, 0.0056723193265497684, -0.007204839959740639, 0.6283185482025146, -0.3220609128475189, -0.001539995544590056, -0.3645727038383484, 0.016106797382235527, -0.014677518047392368, 0.5989001989364624, -0.2861517071723938, -0.011514931917190552, 0.023569736629724503, -0.07291120290756226, -0.030119674280285835, 0.13159877061843872, 0.1464831829071045, 0.025059014558792114, 1.2418653964996338, 0.1453566700220108, 0.04198073968291283, -0.04021906107664108, -0.8331553339958191, -0.8869764804840088, 0.9235163927078247, -0.013230584561824799, -0.627697765827179, -0.4049229919910431, -0.41302433609962463]} +{"t": 14.8059, "q": [-0.3272373080253601, 0.005723452661186457, -0.007231623865664005, 0.6282588839530945, -0.3220568299293518, -0.001547214575111866, -0.3645556569099426, 0.01612384244799614, -0.014744477346539497, 0.5989001989364624, -0.2861558198928833, -0.01153658702969551, 0.023462601006031036, -0.07291120290756226, -0.030119674280285835, 0.13159877061843872, 0.14649516344070435, 0.02503504604101181, 1.2419012784957886, 0.14532071352005005, 0.04198073968291283, -0.040231045335531235, -0.832711935043335, -0.8868206739425659, 0.9234804511070251, -0.013290505856275558, -0.6277097463607788, -0.4049469828605652, -0.41307228803634644]} +{"t": 14.8226, "q": [-0.32725435495376587, 0.0057404967956244946, -0.007285191211849451, 0.6282759308815002, -0.3220650851726532, -0.0015472935047000647, -0.3645556569099426, 0.01612384244799614, -0.014771261252462864, 0.5989001989364624, -0.28614750504493713, -0.0115510830655694, 0.023449208587408066, -0.07291120290756226, -0.030119674280285835, 0.13153885304927826, 0.14649516344070435, 0.02503504604101181, 1.2418773174285889, 0.14534468948841095, 0.041968755424022675, -0.04021906107664108, -0.832496166229248, -0.8866888284683228, 0.9235044121742249, -0.01324256882071495, -0.6277217268943787, -0.40495896339416504, -0.41307228803634644]} +{"t": 14.8393, "q": [-0.3272287845611572, 0.005757540930062532, -0.007285191211849451, 0.6282674074172974, -0.32206103205680847, -0.0015545125352218747, -0.364530086517334, 0.016140887513756752, -0.01479804515838623, 0.5989087224006653, -0.28614750504493713, -0.0115510830655694, 0.02336885780096054, -0.07291120290756226, -0.030119674280285835, 0.13156282901763916, 0.14651913940906525, 0.02503504604101181, 1.2418893575668335, 0.14532071352005005, 0.04198073968291283, -0.040231045335531235, -0.8323883414268494, -0.886664867401123, 0.9234684705734253, -0.013194631785154343, -0.6277097463607788, -0.40495896339416504, -0.41309624910354614]} +{"t": 14.8562, "q": [-0.3272287845611572, 0.00577458506450057, -0.0072584073059260845, 0.6282759308815002, -0.32206112146377563, -0.0015690478030592203, -0.364530086517334, 0.016106797382235527, -0.01478465273976326, 0.5989001989364624, -0.2861558198928833, -0.01153658702969551, 0.02335546538233757, -0.07291120290756226, -0.030119674280285835, 0.13163472712039948, 0.14649516344070435, 0.025070998817682266, 1.2419252395629883, 0.1453566700220108, 0.04199272394180298, -0.04021906107664108, -0.8323643803596497, -0.8866888284683228, 0.923432469367981, -0.013134710490703583, -0.6277217268943787, -0.4049469828605652, -0.4131321907043457]} +{"t": 14.8729, "q": [-0.32721173763275146, 0.005766062531620264, -0.007285191211849451, 0.6282674074172974, -0.32206112146377563, -0.0015690478030592203, -0.3645130395889282, 0.016115320846438408, -0.01478465273976326, 0.5989001989364624, -0.2861558198928833, -0.01153658702969551, 0.023395642638206482, -0.07291120290756226, -0.030119674280285835, 0.13167068362236023, 0.14649516344070435, 0.02503504604101181, 1.2419252395629883, 0.1453326940536499, 0.04199272394180298, -0.040231045335531235, -0.8323883414268494, -0.8867487907409668, 0.9233006834983826, -0.013074790127575397, -0.6277217268943787, -0.40495896339416504, -0.4132280647754669]} +{"t": 14.8897, "q": [-0.32721173763275146, 0.005757540930062532, -0.007271799258887768, 0.6282674074172974, -0.32206103205680847, -0.0015545125352218747, -0.36449599266052246, 0.016106797382235527, -0.014757868833839893, 0.5988916754722595, -0.28616413474082947, -0.011522090993821621, 0.023234939202666283, -0.07290372997522354, -0.030134038999676704, 0.13168266415596008, 0.1465071588754654, 0.02503504604101181, 1.2419612407684326, 0.14539262652397156, 0.041968755424022675, -0.040231045335531235, -0.8324123024940491, -0.8868446350097656, 0.9231927990913391, -0.01308677438646555, -0.6277456879615784, -0.40495896339416504, -0.41326403617858887]} +{"t": 14.9064, "q": [-0.3271605968475342, 0.005731974262744188, -0.0072584073059260845, 0.6282759308815002, -0.32205283641815186, -0.0015689685242250562, -0.36445337533950806, 0.016089754179120064, -0.01478465273976326, 0.5989001989364624, -0.2861558496952057, -0.01150768343359232, 0.023101020604372025, -0.07291138917207718, -0.030149012804031372, 0.13165870308876038, 0.1464831829071045, 0.02503504604101181, 1.2419971227645874, 0.1453566700220108, 0.04198073968291283, -0.040231045335531235, -0.8324482440948486, -0.8868446350097656, 0.9230489730834961, -0.013062805868685246, -0.6277217268943787, -0.4049469828605652, -0.4132760167121887]} +{"t": 14.9232, "q": [-0.3271605968475342, 0.0056978859938681126, -0.0072584073059260845, 0.6283015012741089, -0.3220527470111847, -0.001554433605633676, -0.3644363582134247, 0.016106797382235527, -0.014757868833839893, 0.5988831520080566, -0.28616413474082947, -0.011522090993821621, 0.02287335693836212, -0.07292652130126953, -0.030149618163704872, 0.13164670765399933, 0.14647120237350464, 0.02503504604101181, 1.2419731616973877, 0.14534468948841095, 0.04198073968291283, -0.040231045335531235, -0.8324362635612488, -0.8867847323417664, 0.9229890704154968, -0.013050821609795094, -0.6277217268943787, -0.40495896339416504, -0.4132520258426666]} +{"t": 14.94, "q": [-0.3271521031856537, 0.005638231057673693, -0.007245015352964401, 0.628292977809906, -0.3220570385456085, -0.0015762847615405917, -0.3644278347492218, 0.01607270911335945, -0.01471769344061613, 0.5988916754722595, -0.28617241978645325, -0.011522047221660614, 0.022645695134997368, -0.07291138917207718, -0.030149012804031372, 0.13162274658679962, 0.14645922183990479, 0.02503504604101181, 1.2419971227645874, 0.14527277648448944, 0.041968755424022675, -0.040231045335531235, -0.8323883414268494, -0.8867607712745667, 0.9230010509490967, -0.013038837350904942, -0.6277337074279785, -0.40495896339416504, -0.41326403617858887]} +{"t": 14.9568, "q": [-0.3271605968475342, 0.005553010385483503, -0.007271799258887768, 0.628292977809906, -0.32205283641815186, -0.0015689685242250562, -0.36445337533950806, 0.016081232577562332, -0.014757868833839893, 0.5989001989364624, -0.2861889898777008, -0.011550880037248135, 0.022551951929926872, -0.0729113221168518, -0.03013923019170761, 0.13162274658679962, 0.14643524587154388, 0.02503504604101181, 1.242009162902832, 0.14532071352005005, 0.04198073968291283, -0.040231045335531235, -0.8323523998260498, -0.8866768479347229, 0.9230250120162964, -0.01302685309201479, -0.6277456879615784, -0.4049469828605652, -0.4133119583129883]} +{"t": 14.9736, "q": [-0.3272032141685486, 0.005527443718165159, -0.007231623865664005, 0.6283015012741089, -0.32205283641815186, -0.0015689685242250562, -0.36446189880371094, 0.016047142446041107, -0.01471769344061613, 0.5988916754722595, -0.28620555996894836, -0.01156524382531643, 0.022565344348549843, -0.0729113221168518, -0.03013923019170761, 0.13163472712039948, 0.14647120237350464, 0.02503504604101181, 1.2419971227645874, 0.1453566700220108, 0.04198073968291283, -0.040231045335531235, -0.8321846127510071, -0.8865570425987244, 0.9230130314826965, -0.013050821609795094, -0.6277217268943787, -0.4049709439277649, -0.4132760167121887]} +{"t": 14.9903, "q": [-0.3272287845611572, 0.005467788781970739, -0.007231623865664005, 0.6283185482025146, -0.32205694913864136, -0.0015617315657436848, -0.36445337533950806, 0.016021577641367912, -0.014690909534692764, 0.5988746285438538, -0.2861972451210022, -0.011579739861190319, 0.022592127323150635, -0.0729113221168518, -0.03013923019170761, 0.13164670765399933, 0.14644722640514374, 0.02503504604101181, 1.242021083831787, 0.14532071352005005, 0.04198073968291283, -0.04024302959442139, -0.8319928646087646, -0.8863772749900818, 0.923060953617096, -0.013110741972923279, -0.627697765827179, -0.40500688552856445, -0.4132760167121887]} +{"t": 15.0071, "q": [-0.3272032141685486, 0.005459266249090433, -0.007231623865664005, 0.6283100247383118, -0.32204440236091614, -0.0015398375689983368, -0.3644448518753052, 0.016081232577562332, -0.014690909534692764, 0.5988661050796509, -0.2861972451210022, -0.011594191193580627, 0.022618912160396576, -0.07292646169662476, -0.03013983927667141, 0.13163472712039948, 0.14644722640514374, 0.02502306178212166, 1.2420331239700317, 0.14532071352005005, 0.04198073968291283, -0.04024302959442139, -0.8318011164665222, -0.886065661907196, 0.9230489730834961, -0.01308677438646555, -0.627697765827179, -0.4050188660621643, -0.41326403617858887]} +{"t": 15.0239, "q": [-0.3272287845611572, 0.005433700513094664, -0.007231623865664005, 0.6283185482025146, -0.32206103205680847, -0.0015545125352218747, -0.36445337533950806, 0.01606418751180172, -0.01471769344061613, 0.5988661050796509, -0.2862013876438141, -0.011601394973695278, 0.02268587052822113, -0.07292652130126953, -0.030149618163704872, 0.13162274658679962, 0.14645922183990479, 0.02503504604101181, 1.2420331239700317, 0.1453566700220108, 0.041968755424022675, -0.04025501385331154, -0.8316333293914795, -0.885837972164154, 0.923060953617096, -0.013098758645355701, -0.6277097463607788, -0.40500688552856445, -0.41326403617858887]} +{"t": 15.0406, "q": [-0.32722026109695435, 0.005416656378656626, -0.007231623865664005, 0.6283015012741089, -0.3220609128475189, -0.001539995544590056, -0.3644448518753052, 0.016030099242925644, -0.014690909534692764, 0.5988746285438538, -0.28616830706596375, -0.011500392109155655, 0.0226992629468441, -0.0729113221168518, -0.03013923019170761, 0.13161076605319977, 0.14641128480434418, 0.025011077523231506, 1.2420450448989868, 0.14534468948841095, 0.04195677116513252, -0.040231045335531235, -0.8315854072570801, -0.8855863213539124, 0.9230369925498962, -0.013098758645355701, -0.6277217268943787, -0.4050188660621643, -0.41326403617858887]} +{"t": 15.0574, "q": [-0.32725435495376587, 0.005399612244218588, -0.0071914480067789555, 0.6283015012741089, -0.32206103205680847, -0.0015545125352218747, -0.3644363582134247, 0.016047142446041107, -0.014664125628769398, 0.5988405346870422, -0.2861807346343994, -0.011522003449499607, 0.02268587052822113, -0.07291892915964127, -0.030144426971673965, 0.13163472712039948, 0.14642326533794403, 0.02503504604101181, 1.242021083831787, 0.1453326940536499, 0.04195677116513252, -0.040231045335531235, -0.8315374255180359, -0.8854305148124695, 0.9229651093482971, -0.01312272623181343, -0.6277097463607788, -0.4050188660621643, -0.41326403617858887]} +{"t": 15.0742, "q": [-0.32725435495376587, 0.0054081338457763195, -0.007218231912702322, 0.6282759308815002, -0.3220609128475189, -0.001539995544590056, -0.3644704222679138, 0.016030099242925644, -0.014677518047392368, 0.5988405346870422, -0.2861765921115875, -0.011514799669384956, 0.022632304579019547, -0.07292646169662476, -0.03013983927667141, 0.13163472712039948, 0.14641128480434418, 0.02502306178212166, 1.242069125175476, 0.1453326940536499, 0.04195677116513252, -0.040231045335531235, -0.8315614461898804, -0.8853706121444702, 0.9229411482810974, -0.01308677438646555, -0.6277097463607788, -0.40500688552856445, -0.4132280647754669]} +{"t": 15.0909, "q": [-0.32721173763275146, 0.0054081338457763195, -0.007204839959740639, 0.6282759308815002, -0.32205256819725037, -0.0015253995079547167, -0.36445337533950806, 0.016081232577562332, -0.014690909534692764, 0.5988490581512451, -0.2861434519290924, -0.011471603065729141, 0.022592127323150635, -0.07292646169662476, -0.03013983927667141, 0.13163472712039948, 0.14643524587154388, 0.025070998817682266, 1.2420570850372314, 0.1453566700220108, 0.041968755424022675, -0.04024302959442139, -0.8315973877906799, -0.8853706121444702, 0.9228093028068542, -0.013050821609795094, -0.6276738047599792, -0.4050428569316864, -0.4132520258426666]} +{"t": 15.1078, "q": [-0.3271946907043457, 0.0054081338457763195, -0.007218231912702322, 0.6282759308815002, -0.3220650851726532, -0.0015472935047000647, -0.36445337533950806, 0.016081232577562332, -0.014690909534692764, 0.5988320112228394, -0.28612688183784485, -0.011457239277660847, 0.02251177653670311, -0.07294165343046188, -0.03015022724866867, 0.13162274658679962, 0.14641128480434418, 0.02503504604101181, 1.2420450448989868, 0.1453566700220108, 0.04198073968291283, -0.04024302959442139, -0.831669270992279, -0.8853825926780701, 0.9227853417396545, -0.01308677438646555, -0.627697765827179, -0.4050188660621643, -0.4132280647754669]} +{"t": 15.1248, "q": [-0.3271861672401428, 0.005425177980214357, -0.007218231912702322, 0.6282588839530945, -0.32206103205680847, -0.0015545125352218747, -0.3644363582134247, 0.01606418751180172, -0.014744477346539497, 0.5988405346870422, -0.2861185669898987, -0.011471735313534737, 0.022404640913009644, -0.07291138917207718, -0.030149012804031372, 0.13159877061843872, 0.14647120237350464, 0.02503504604101181, 1.2420810461044312, 0.14536865055561066, 0.041968755424022675, -0.04024302959442139, -0.8317052125930786, -0.8853945732116699, 0.9227374196052551, -0.013050821609795094, -0.6276258826255798, -0.4050188660621643, -0.4131801426410675]} +{"t": 15.1416, "q": [-0.3272032141685486, 0.005442222114652395, -0.007204839959740639, 0.628224790096283, -0.3220568299293518, -0.001547214575111866, -0.3644278347492218, 0.016055665910243988, -0.014744477346539497, 0.5988320112228394, -0.28613099455833435, -0.011478894390165806, 0.022284114733338356, -0.0729188621044159, -0.030134644359350204, 0.13159877061843872, 0.14647120237350464, 0.025047030299901962, 1.242069125175476, 0.14532071352005005, 0.04195677116513252, -0.04025501385331154, -0.8316572904586792, -0.8853825926780701, 0.9227374196052551, -0.013062805868685246, -0.62761390209198, -0.40500688552856445, -0.41316816210746765]} +{"t": 15.1583, "q": [-0.3271946907043457, 0.005442222114652395, -0.007231623865664005, 0.6281821727752686, -0.32205694913864136, -0.0015617315657436848, -0.3644448518753052, 0.016098275780677795, -0.014771261252462864, 0.5988405346870422, -0.2861102819442749, -0.011457327753305435, 0.022123411297798157, -0.07292639464139938, -0.030130058526992798, 0.13161076605319977, 0.14647120237350464, 0.02509496733546257, 1.242069125175476, 0.14532071352005005, 0.04194478690624237, -0.04025501385331154, -0.8316093683242798, -0.8853706121444702, 0.9227733612060547, -0.013050821609795094, -0.6276258826255798, -0.4050188660621643, -0.41314417123794556]} +{"t": 15.175, "q": [-0.32722026109695435, 0.005467788781970739, -0.007231623865664005, 0.6281651258468628, -0.32205283641815186, -0.0015689685242250562, -0.3644193112850189, 0.016115320846438408, -0.014824828132987022, 0.598857581615448, -0.2861102819442749, -0.011457327753305435, 0.021962709724903107, -0.07289619743824005, -0.03013862483203411, 0.13159877061843872, 0.14647120237350464, 0.025070998817682266, 1.2421050071716309, 0.1453566700220108, 0.04198073968291283, -0.040231045335531235, -0.8314176201820374, -0.8853346109390259, 0.9227973222732544, -0.013050821609795094, -0.6276378631591797, -0.40503084659576416, -0.41309624910354614]} +{"t": 15.1918, "q": [-0.32722026109695435, 0.005459266249090433, -0.0072584073059260845, 0.6281310319900513, -0.32205694913864136, -0.0015617315657436848, -0.3644363582134247, 0.016089754179120064, -0.01479804515838623, 0.5988490581512451, -0.2861144542694092, -0.011450079269707203, 0.02184218168258667, -0.07291120290756226, -0.030119674280285835, 0.13162274658679962, 0.1464831829071045, 0.02509496733546257, 1.2421529293060303, 0.1453087329864502, 0.04198073968291283, -0.04026699811220169, -0.8310101628303528, -0.8852866888046265, 0.9227733612060547, -0.013074790127575397, -0.62761390209198, -0.40503084659576416, -0.41307228803634644]} +{"t": 15.2086, "q": [-0.32721173763275146, 0.005459266249090433, -0.0072584073059260845, 0.6280969381332397, -0.32205283641815186, -0.0015689685242250562, -0.3644278347492218, 0.016140887513756752, -0.014838220551609993, 0.5988320112228394, -0.2861102819442749, -0.011442857794463634, 0.02165469527244568, -0.07292639464139938, -0.030130058526992798, 0.13162274658679962, 0.1464831829071045, 0.025070998817682266, 1.2421889305114746, 0.14534468948841095, 0.04198073968291283, -0.04024302959442139, -0.830470860004425, -0.8852507472038269, 0.9227853417396545, -0.013050821609795094, -0.6276378631591797, -0.4050188660621643, -0.4130363166332245]} +{"t": 15.2253, "q": [-0.3271605968475342, 0.005484832916408777, -0.007271799258887768, 0.6280969381332397, -0.3220568299293518, -0.001547214575111866, -0.36441078782081604, 0.01613236404955387, -0.014851612038910389, 0.5988405346870422, -0.2860936224460602, -0.011442944407463074, 0.02150738425552845, -0.07291126251220703, -0.030129453167319298, 0.13162274658679962, 0.14649516344070435, 0.025047030299901962, 1.242164969444275, 0.1452847570180893, 0.04198073968291283, -0.04024302959442139, -0.8298596739768982, -0.885238766670227, 0.9227733612060547, -0.01308677438646555, -0.62761390209198, -0.4050188660621643, -0.4129883944988251]} +{"t": 15.2421, "q": [-0.32717764377593994, 0.005484832916408777, -0.007285191211849451, 0.6280713677406311, -0.3220527470111847, -0.001554433605633676, -0.36440226435661316, 0.016140887513756752, -0.01486500445753336, 0.5988405346870422, -0.28609782457351685, -0.011406793259084225, 0.021413641050457954, -0.07291126251220703, -0.030129453167319298, 0.13162274658679962, 0.1465071588754654, 0.025070998817682266, 1.2422008514404297, 0.14532071352005005, 0.041968755424022675, -0.040231045335531235, -0.8293083906173706, -0.8851908445358276, 0.9227853417396545, -0.013014868833124638, -0.6276618242263794, -0.4050188660621643, -0.41291648149490356]} +{"t": 15.2588, "q": [-0.3271861672401428, 0.005484832916408777, -0.007285191211849451, 0.6280457973480225, -0.3220527470111847, -0.001554433605633676, -0.3643937408924103, 0.01612384244799614, -0.014905179850757122, 0.5988405346870422, -0.286106139421463, -0.011435654014348984, 0.02136007323861122, -0.07291879504919052, -0.030124865472316742, 0.13164670765399933, 0.1465071588754654, 0.025070998817682266, 1.2422248125076294, 0.14527277648448944, 0.04198073968291283, -0.04024302959442139, -0.8286013007164001, -0.8851069211959839, 0.9228212833404541, -0.013050821609795094, -0.6276498436927795, -0.40500688552856445, -0.412880539894104]} +{"t": 15.2756, "q": [-0.3272287845611572, 0.0054507446475327015, -0.007285191211849451, 0.6280202269554138, -0.3220527470111847, -0.001554433605633676, -0.36440226435661316, 0.016166452318429947, -0.014891788363456726, 0.5988320112228394, -0.28609779477119446, -0.011435696855187416, 0.021306505426764488, -0.07291126251220703, -0.030129453167319298, 0.13162274658679962, 0.1465071588754654, 0.02503504604101181, 1.2422608137130737, 0.1453087329864502, 0.04194478690624237, -0.04024302959442139, -0.827786386013031, -0.8850230574607849, 0.9228093028068542, -0.01302685309201479, -0.6276857852935791, -0.40500688552856445, -0.4128565490245819]} +{"t": 15.2923, "q": [-0.32721173763275146, 0.005416656378656626, -0.007298583164811134, 0.6280117034912109, -0.32205694913864136, -0.0015617315657436848, -0.36440226435661316, 0.016149409115314484, -0.01486500445753336, 0.5988234877586365, -0.2861185669898987, -0.011457283049821854, 0.021293114870786667, -0.07291879504919052, -0.030124865472316742, 0.13162274658679962, 0.14654310047626495, 0.025070998817682266, 1.2422728538513184, 0.14522483944892883, 0.04198073968291283, -0.04024302959442139, -0.8267077803611755, -0.8849271535873413, 0.9228212833404541, -0.013002884574234486, -0.6276738047599792, -0.40503084659576416, -0.4128325879573822]} +{"t": 15.309, "q": [-0.3272287845611572, 0.005382567178457975, -0.007285191211849451, 0.6280117034912109, -0.32205694913864136, -0.0015617315657436848, -0.3643937408924103, 0.016166452318429947, -0.014878395944833755, 0.5988064408302307, -0.286135196685791, -0.011442743241786957, 0.021279722452163696, -0.07291126251220703, -0.030129453167319298, 0.13162274658679962, 0.14651913940906525, 0.025070998817682266, 1.2422847747802734, 0.1452847570180893, 0.04198073968291283, -0.04024302959442139, -0.8256651759147644, -0.8847714066505432, 0.9227853417396545, -0.01302685309201479, -0.6276378631591797, -0.40500688552856445, -0.41282060742378235]} +{"t": 15.3258, "q": [-0.3272373080253601, 0.00532291317358613, -0.007285191211849451, 0.6279946565628052, -0.32206103205680847, -0.0015545125352218747, -0.3643937408924103, 0.016140887513756752, -0.01486500445753336, 0.5987808704376221, -0.28612691164016724, -0.011442787013947964, 0.021279722452163696, -0.07293399423360825, -0.030135253444314003, 0.13162274658679962, 0.146555095911026, 0.025118935853242874, 1.2423566579818726, 0.14532071352005005, 0.041968755424022675, -0.04024302959442139, -0.8248143196105957, -0.8846036195755005, 0.9228212833404541, -0.013038837350904942, -0.6276498436927795, -0.4049949049949646, -0.41284456849098206]} +{"t": 15.3425, "q": [-0.3272373080253601, 0.005271779838949442, -0.0072584073059260845, 0.6279691457748413, -0.32206520438194275, -0.0015618287725374103, -0.3643937408924103, 0.016166452318429947, -0.014851612038910389, 0.5987467765808105, -0.28612691164016724, -0.011428335681557655, 0.02119937166571617, -0.07292639464139938, -0.030130058526992798, 0.13162274658679962, 0.146555095911026, 0.025070998817682266, 1.242392659187317, 0.14532071352005005, 0.041968755424022675, -0.04024302959442139, -0.8240952491760254, -0.884268045425415, 0.9228093028068542, -0.013038837350904942, -0.6276378631591797, -0.40500688552856445, -0.41282060742378235]} +{"t": 15.3593, "q": [-0.3272287845611572, 0.005237691570073366, -0.0072584073059260845, 0.6279265284538269, -0.32206103205680847, -0.0015545125352218747, -0.3643852174282074, 0.016157930716872215, -0.014824828132987022, 0.5987297296524048, -0.28612276911735535, -0.011421114206314087, 0.020931532606482506, -0.07291879504919052, -0.030124865472316742, 0.13165870308876038, 0.1465311199426651, 0.025070998817682266, 1.242452621459961, 0.1453326940536499, 0.04195677116513252, -0.04024302959442139, -0.8234960436820984, -0.8838725686073303, 0.9228212833404541, -0.01302685309201479, -0.6276618242263794, -0.4049949049949646, -0.4128086268901825]} +{"t": 15.376, "q": [-0.3272032141685486, 0.0052291699685156345, -0.0072584073059260845, 0.627918004989624, -0.32206103205680847, -0.0015545125352218747, -0.3643852174282074, 0.016149409115314484, -0.014851612038910389, 0.5987212061882019, -0.2861393392086029, -0.011449947021901608, 0.02063691057264805, -0.07292639464139938, -0.030130058526992798, 0.13168266415596008, 0.146555095911026, 0.025082983076572418, 1.2425724267959595, 0.14534468948841095, 0.04195677116513252, -0.04024302959442139, -0.8229447603225708, -0.8835010528564453, 0.9227973222732544, -0.013002884574234486, -0.6276378631591797, -0.4049949049949646, -0.41277265548706055]} +{"t": 15.393, "q": [-0.32722026109695435, 0.005212124902755022, -0.007285191211849451, 0.6279009580612183, -0.32206103205680847, -0.0015545125352218747, -0.3643766939640045, 0.016174975782632828, -0.014851612038910389, 0.5987041592597961, -0.28612276911735535, -0.011421114206314087, 0.02019497938454151, -0.07292646169662476, -0.03013983927667141, 0.13167068362236023, 0.14663897454738617, 0.025082983076572418, 1.2426563501358032, 0.1452607959508896, 0.041968755424022675, -0.04024302959442139, -0.8221657872200012, -0.8832014203071594, 0.9227733612060547, -0.01302685309201479, -0.6276378631591797, -0.4049949049949646, -0.41277265548706055]} +{"t": 15.4097, "q": [-0.32721173763275146, 0.005195080768316984, -0.007285191211849451, 0.6278924345970154, -0.32206103205680847, -0.0015545125352218747, -0.36435964703559875, 0.016157930716872215, -0.014878395944833755, 0.5986530184745789, -0.28612691164016724, -0.011428335681557655, 0.019605735316872597, -0.07293399423360825, -0.030135253444314003, 0.13170664012432098, 0.14667493104934692, 0.025070998817682266, 1.2428600788116455, 0.14532071352005005, 0.04199272394180298, -0.04024302959442139, -0.8213269114494324, -0.882841944694519, 0.9227853417396545, -0.013014868833124638, -0.6276378631591797, -0.40498292446136475, -0.412736713886261]} +{"t": 15.4264, "q": [-0.3272032141685486, 0.00520360330119729, -0.007285191211849451, 0.6278839111328125, -0.3220650851726532, -0.0015472935047000647, -0.3643511235713959, 0.01618349738419056, -0.014878395944833755, 0.5986530184745789, -0.28611859679222107, -0.011428361758589745, 0.01884239725768566, -0.07292646169662476, -0.03013983927667141, 0.13171862065792084, 0.146782785654068, 0.025106951594352722, 1.243039846420288, 0.1453087329864502, 0.04198073968291283, -0.04024302959442139, -0.8206797242164612, -0.8824464678764343, 0.9227134585380554, -0.01302685309201479, -0.6276498436927795, -0.4049709439277649, -0.412736713886261]} +{"t": 15.4432, "q": [-0.3272032141685486, 0.0051865591667592525, -0.007311975117772818, 0.6278839111328125, -0.32206103205680847, -0.0015545125352218747, -0.3643511235713959, 0.01618349738419056, -0.01486500445753336, 0.5986700654029846, -0.28611859679222107, -0.011428361758589745, 0.0179987084120512, -0.07292646169662476, -0.03013983927667141, 0.1317785382270813, 0.14684271812438965, 0.025118935853242874, 1.2432554960250854, 0.14518888294696808, 0.04198073968291283, -0.040231045335531235, -0.820464015007019, -0.8820749521255493, 0.922749400138855, -0.013002884574234486, -0.6276618242263794, -0.40500688552856445, -0.41272473335266113]} +{"t": 15.4599, "q": [-0.32716912031173706, 0.00520360330119729, -0.007271799258887768, 0.6278668642044067, -0.3220568299293518, -0.001547214575111866, -0.36436817049980164, 0.01619201898574829, -0.014851612038910389, 0.5986274480819702, -0.28611859679222107, -0.011442831717431545, 0.017221977934241295, -0.07294159382581711, -0.03014044649899006, 0.13179051876068115, 0.14704644680023193, 0.025106951594352722, 1.2436749935150146, 0.1452847570180893, 0.04199272394180298, -0.040231045335531235, -0.820092499256134, -0.8817633390426636, 0.9227613806724548, -0.013002884574234486, -0.6276498436927795, -0.40498292446136475, -0.41272473335266113]} +{"t": 15.4767, "q": [-0.32716912031173706, 0.0051865591667592525, -0.007271799258887768, 0.627849817276001, -0.32206103205680847, -0.0015545125352218747, -0.3643511235713959, 0.016174975782632828, -0.014851612038910389, 0.5986359715461731, -0.28611859679222107, -0.011428361758589745, 0.016364896669983864, -0.07293399423360825, -0.030135253444314003, 0.1317306011915207, 0.14727413654327393, 0.025118935853242874, 1.2443220615386963, 0.1452368199825287, 0.04198073968291283, -0.04024302959442139, -0.81963711977005, -0.8814038038253784, 0.922749400138855, -0.013014868833124638, -0.6276618242263794, -0.40498292446136475, -0.4127127528190613]} +{"t": 15.4936, "q": [-0.3271521031856537, 0.005212124902755022, -0.007285191211849451, 0.627849817276001, -0.32205283641815186, -0.0015689685242250562, -0.3643340766429901, 0.016166452318429947, -0.014851612038910389, 0.598644495010376, -0.2861144542694092, -0.011435610242187977, 0.015266761183738708, -0.07293405383825302, -0.030145032331347466, 0.13164670765399933, 0.14746588468551636, 0.025106951594352722, 1.2452808618545532, 0.14522483944892883, 0.04198073968291283, -0.04020707681775093, -0.8193015456199646, -0.8809723854064941, 0.922749400138855, -0.01302685309201479, -0.6276378631591797, -0.4049949049949646, -0.4127127528190613]} +{"t": 15.5103, "q": [-0.3271605968475342, 0.00520360330119729, -0.007311975117772818, 0.6278327703475952, -0.3220568299293518, -0.001547214575111866, -0.3643340766429901, 0.016098275780677795, -0.014891788363456726, 0.5986359715461731, -0.28611862659454346, -0.011413910426199436, 0.014034707099199295, -0.07294159382581711, -0.03014044649899006, 0.13168266415596008, 0.14763367176055908, 0.025106951594352722, 1.2462036609649658, 0.1453806310892105, 0.04198073968291283, -0.040231045335531235, -0.8190498948097229, -0.880469024181366, 0.9227374196052551, -0.012990900315344334, -0.6276618242263794, -0.40500688552856445, -0.4127127528190613]} +{"t": 15.5271, "q": [-0.3271435797214508, 0.0052291699685156345, -0.007311975117772818, 0.6278327703475952, -0.3220486640930176, -0.0015616705641150475, -0.3643340766429901, 0.016157930716872215, -0.014891788363456726, 0.5986359715461731, -0.28611859679222107, -0.011428361758589745, 0.012494638562202454, -0.07294159382581711, -0.03014044649899006, 0.13169464468955994, 0.14787335693836212, 0.02509496733546257, 1.247258186340332, 0.14532071352005005, 0.04195677116513252, -0.04021906107664108, -0.8190738558769226, -0.8798578381538391, 0.9227374196052551, -0.013014868833124638, -0.6276378631591797, -0.40500688552856445, -0.4127127528190613]} +{"t": 15.5438, "q": [-0.3271350562572479, 0.0052291699685156345, -0.007338759023696184, 0.6278157234191895, -0.32204440236091614, -0.0015398375689983368, -0.36432555317878723, 0.016157930716872215, -0.014891788363456726, 0.5986359715461731, -0.2861144542694092, -0.011435610242187977, 0.010887610726058483, -0.07294165343046188, -0.03015022724866867, 0.13170664012432098, 0.14814899861812592, 0.025106951594352722, 1.2485644817352295, 0.1453326940536499, 0.04193280264735222, -0.040231045335531235, -0.819121778011322, -0.8790788650512695, 0.9227374196052551, -0.013002884574234486, -0.6276378631591797, -0.4049949049949646, -0.4127127528190613]} +{"t": 15.5605, "q": [-0.3271094858646393, 0.005246214102953672, -0.007338759023696184, 0.6278157234191895, -0.32205694913864136, -0.0015617315657436848, -0.36431702971458435, 0.016174975782632828, -0.014878395944833755, 0.5986359715461731, -0.2861144542694092, -0.011450079269707203, 0.00958859734237194, -0.07294159382581711, -0.03014044649899006, 0.13169464468955994, 0.14853249490261078, 0.025118935853242874, 1.2495352029800415, 0.14532071352005005, 0.04195677116513252, -0.04020707681775093, -0.8191097974777222, -0.8782519698143005, 0.9227134585380554, -0.012990900315344334, -0.6276498436927795, -0.40500688552856445, -0.4127127528190613]} +{"t": 15.5773, "q": [-0.3270498216152191, 0.005271779838949442, -0.007311975117772818, 0.6278071999549866, -0.32205283641815186, -0.0015689685242250562, -0.36430850625038147, 0.016166452318429947, -0.014838220551609993, 0.598644495010376, -0.2861102819442749, -0.011442857794463634, 0.008463677950203419, -0.07294925302267075, -0.030155420303344727, 0.13163472712039948, 0.148856058716774, 0.025142904371023178, 1.2499186992645264, 0.14527277648448944, 0.04192081838846207, -0.04021906107664108, -0.819037914276123, -0.8776527643203735, 0.9226774573326111, -0.012990900315344334, -0.6276738047599792, -0.4050188660621643, -0.4127127528190613]} +{"t": 15.5941, "q": [-0.3270668685436249, 0.005271779838949442, -0.007245015352964401, 0.6278071999549866, -0.3220568299293518, -0.001547214575111866, -0.36431702971458435, 0.016174975782632828, -0.014771261252462864, 0.5986359715461731, -0.28611859679222107, -0.011442831717431545, 0.0076467725448310375, -0.07294165343046188, -0.03015022724866867, 0.1315508335828781, 0.14907178282737732, 0.025142904371023178, 1.2500265836715698, 0.14524881541728973, 0.041908834129571915, -0.040231045335531235, -0.8190019726753235, -0.877245306968689, 0.9226774573326111, -0.013050821609795094, -0.6276738047599792, -0.4050188660621643, -0.4127127528190613]} +{"t": 15.6108, "q": [-0.32703277468681335, 0.00528882397338748, -0.007231623865664005, 0.6277901530265808, -0.3220527470111847, -0.001554433605633676, -0.36431702971458435, 0.016157930716872215, -0.014744477346539497, 0.5986359715461731, -0.2861144542694092, -0.011435610242187977, 0.007070920895785093, -0.07294165343046188, -0.03015022724866867, 0.13137108087539673, 0.1493234485387802, 0.025130920112133026, 1.250098466873169, 0.1452847570180893, 0.041908834129571915, -0.040231045335531235, -0.8189899921417236, -0.8768018484115601, 0.9226415157318115, -0.013098758645355701, -0.6276618242263794, -0.40503084659576416, -0.4126887917518616]} +{"t": 15.6276, "q": [-0.32699868083000183, 0.00528882397338748, -0.007218231912702322, 0.6277816295623779, -0.3220527470111847, -0.001554433605633676, -0.36430850625038147, 0.01612384244799614, -0.014771261252462864, 0.598644495010376, -0.28611859679222107, -0.011442831717431545, 0.006588812451809645, -0.07294925302267075, -0.030155420303344727, 0.1311793327331543, 0.14956313371658325, 0.025070998817682266, 1.2502782344818115, 0.1452847570180893, 0.04193280264735222, -0.04024302959442139, -0.8190738558769226, -0.8761547207832336, 0.9226415157318115, -0.013074790127575397, -0.6276378631591797, -0.40503084659576416, -0.4126887917518616]} +{"t": 15.6443, "q": [-0.3270157277584076, 0.005305869039148092, -0.007218231912702322, 0.6277901530265808, -0.32206103205680847, -0.0015545125352218747, -0.3642999827861786, 0.016106797382235527, -0.014771261252462864, 0.5986359715461731, -0.2861144542694092, -0.011435610242187977, 0.006254015490412712, -0.07294932007789612, -0.030165202915668488, 0.13109543919563293, 0.14971892535686493, 0.025047030299901962, 1.2504700422286987, 0.14536865055561066, 0.04193280264735222, -0.04025501385331154, -0.8190738558769226, -0.8754836320877075, 0.922521710395813, -0.013050821609795094, -0.6276378631591797, -0.40503084659576416, -0.4126887917518616]} +{"t": 15.661, "q": [-0.3270157277584076, 0.005314390640705824, -0.007204839959740639, 0.627773106098175, -0.3220568299293518, -0.001547214575111866, -0.3642914593219757, 0.016106797382235527, -0.014757868833839893, 0.5986615419387817, -0.2861103117465973, -0.011428406462073326, 0.0060933125205338, -0.07295691967010498, -0.030170394107699394, 0.13104750216007233, 0.1498507559299469, 0.02503504604101181, 1.2506498098373413, 0.1452607959508896, 0.04193280264735222, -0.04026699811220169, -0.8190618753433228, -0.874632716178894, 0.9224258065223694, -0.013014868833124638, -0.6276738047599792, -0.40503084659576416, -0.4127007722854614]} +{"t": 15.6778, "q": [-0.3270157277584076, 0.005305869039148092, -0.007218231912702322, 0.6277560591697693, -0.32206103205680847, -0.0015545125352218747, -0.3642914593219757, 0.01613236404955387, -0.01479804515838623, 0.5986189246177673, -0.28612273931503296, -0.011450035497546196, 0.006012961268424988, -0.07296445220708847, -0.030165808275341988, 0.1311313956975937, 0.14986273646354675, 0.02503504604101181, 1.250961422920227, 0.14527277648448944, 0.04194478690624237, -0.04026699811220169, -0.8190139532089233, -0.8736739754676819, 0.9223299622535706, -0.013038837350904942, -0.627697765827179, -0.4050188660621643, -0.4127127528190613]} +{"t": 15.6945, "q": [-0.3270157277584076, 0.00528882397338748, -0.007218231912702322, 0.6277645826339722, -0.32205283641815186, -0.0015689685242250562, -0.3642914593219757, 0.01613236404955387, -0.014757868833839893, 0.598644495010376, -0.28611859679222107, -0.011442831717431545, 0.00605313666164875, -0.07295691967010498, -0.030170394107699394, 0.1311793327331543, 0.1498986929655075, 0.02502306178212166, 1.2513208389282227, 0.1452607959508896, 0.041908834129571915, -0.040290966629981995, -0.8190259337425232, -0.872463583946228, 0.9223419427871704, -0.013038837350904942, -0.627697765827179, -0.40503084659576416, -0.41267678141593933]} +{"t": 15.7112, "q": [-0.3270157277584076, 0.005297346506267786, -0.007231623865664005, 0.6277560591697693, -0.32205283641815186, -0.0015689685242250562, -0.3642914593219757, 0.016174975782632828, -0.01478465273976326, 0.5986700654029846, -0.28611859679222107, -0.011442831717431545, 0.006106704473495483, -0.07295691967010498, -0.030170394107699394, 0.13119131326675415, 0.1498747169971466, 0.025011077523231506, 1.2517763376235962, 0.14527277648448944, 0.04189684987068176, -0.04026699811220169, -0.8191097974777222, -0.8709895014762878, 0.9222460389137268, -0.012990900315344334, -0.6277097463607788, -0.40503084659576416, -0.4126887917518616]} +{"t": 15.728, "q": [-0.3270157277584076, 0.005305869039148092, -0.0072584073059260845, 0.6277475357055664, -0.3220568299293518, -0.001547214575111866, -0.3642914593219757, 0.01613236404955387, -0.014824828132987022, 0.5986274480819702, -0.28612688183784485, -0.011457239277660847, 0.006146880332380533, -0.0729493796825409, -0.0301749799400568, 0.1311553567647934, 0.1498986929655075, 0.02502306178212166, 1.2523994445800781, 0.14532071352005005, 0.04182494431734085, -0.04027898237109184, -0.8192775845527649, -0.8698869943618774, 0.9221262335777283, -0.012978916056454182, -0.6277456879615784, -0.40503084659576416, -0.4126887917518616]} +{"t": 15.7447, "q": [-0.3270157277584076, 0.00528882397338748, -0.007271799258887768, 0.6277304887771606, -0.3220486640930176, -0.0015616705641150475, -0.36427441239356995, 0.01612384244799614, -0.014824828132987022, 0.5986530184745789, -0.28612273931503296, -0.011450035497546196, 0.006200447678565979, -0.07296457886695862, -0.030185367912054062, 0.13102354109287262, 0.14986273646354675, 0.02503504604101181, 1.2534061670303345, 0.14532071352005005, 0.04178899526596069, -0.04026699811220169, -0.8194333910942078, -0.8686286211013794, 0.9218745231628418, -0.013002884574234486, -0.6277576684951782, -0.4050188660621643, -0.41267678141593933]} +{"t": 15.7614, "q": [-0.3270072042942047, 0.005331434775143862, -0.007311975117772818, 0.6277219653129578, -0.3220486640930176, -0.0015616705641150475, -0.36427441239356995, 0.016089754179120064, -0.01486500445753336, 0.598644495010376, -0.28612273931503296, -0.011450035497546196, 0.006294190883636475, -0.07296451926231384, -0.03017559088766575, 0.13086773455142975, 0.14992265403270721, 0.02503504604101181, 1.254269003868103, 0.1453087329864502, 0.04177701100707054, -0.04027898237109184, -0.8196491003036499, -0.8677897453308105, 0.9216468334197998, -0.013002884574234486, -0.6278056502342224, -0.40503084659576416, -0.4126648008823395]} +{"t": 15.7782, "q": [-0.32699868083000183, 0.005331434775143862, -0.007311975117772818, 0.6277304887771606, -0.32204875349998474, -0.0015761875547468662, -0.3642914593219757, 0.01613236404955387, -0.01486500445753336, 0.5986359715461731, -0.28612691164016724, -0.011442787013947964, 0.006334366742521524, -0.0729796513915062, -0.03017619624733925, 0.1308797299861908, 0.1498507559299469, 0.02502306178212166, 1.2550599575042725, 0.14532071352005005, 0.04176502674818039, -0.040290966629981995, -0.8197689652442932, -0.8674062490463257, 0.9213592410087585, -0.012954947538673878, -0.6277816295623779, -0.4050188660621643, -0.41267678141593933]} +{"t": 15.7949, "q": [-0.3270157277584076, 0.00532291317358613, -0.007311975117772818, 0.627704918384552, -0.3220527470111847, -0.001554433605633676, -0.3642914593219757, 0.016098275780677795, -0.014851612038910389, 0.5986359715461731, -0.28612273931503296, -0.011450035497546196, 0.006361150648444891, -0.07296451926231384, -0.03017559088766575, 0.13079583644866943, 0.14979083836078644, 0.024999093264341354, 1.2564620971679688, 0.1452847570180893, 0.04175304248929024, -0.04027898237109184, -0.8199127316474915, -0.867238461971283, 0.9210835695266724, -0.012990900315344334, -0.6278056502342224, -0.40503084659576416, -0.4126528203487396]} +{"t": 15.8116, "q": [-0.3270157277584076, 0.00532291317358613, -0.007311975117772818, 0.627704918384552, -0.3220527470111847, -0.001554433605633676, -0.36427441239356995, 0.016081232577562332, -0.014838220551609993, 0.5986359715461731, -0.28612273931503296, -0.011450035497546196, 0.006361150648444891, -0.07296457886695862, -0.030185367912054062, 0.13067598640918732, 0.14979083836078644, 0.02503504604101181, 1.258080005645752, 0.1453087329864502, 0.04176502674818039, -0.04026699811220169, -0.8200325965881348, -0.8672145009040833, 0.9206880927085876, -0.01302685309201479, -0.6278056502342224, -0.4050428569316864, -0.41264083981513977]} +{"t": 15.8284, "q": [-0.32698163390159607, 0.00532291317358613, -0.007285191211849451, 0.6276878714561462, -0.3220486640930176, -0.0015616705641150475, -0.3642488718032837, 0.016089754179120064, -0.014838220551609993, 0.5986359715461731, -0.2861185669898987, -0.011457283049821854, 0.006294190883636475, -0.07299478352069855, -0.030176805332303047, 0.13068798184394836, 0.14975488185882568, 0.02503504604101181, 1.258894920349121, 0.1453087329864502, 0.04176502674818039, -0.0403149351477623, -0.8200565576553345, -0.8672504425048828, 0.9198611974716187, -0.013002884574234486, -0.6278296113014221, -0.40503084659576416, -0.4126528203487396]} +{"t": 15.8451, "q": [-0.3270157277584076, 0.00532291317358613, -0.007285191211849451, 0.6276793479919434, -0.3220486640930176, -0.0015616705641150475, -0.3642573654651642, 0.016106797382235527, -0.01479804515838623, 0.5986359715461731, -0.28611859679222107, -0.011442831717431545, 0.006213839631527662, -0.07298718392848969, -0.030171610414981842, 0.13077186048030853, 0.1497788429260254, 0.024987109005451202, 1.2591944932937622, 0.14529675245285034, 0.04176502674818039, -0.0403149351477623, -0.8200445771217346, -0.8672983646392822, 0.9187586307525635, -0.01302685309201479, -0.6278535723686218, -0.40503084659576416, -0.4126648008823395]} +{"t": 15.8618, "q": [-0.3270157277584076, 0.00532291317358613, -0.007285191211849451, 0.6276878714561462, -0.3220527470111847, -0.001554433605633676, -0.3642573654651642, 0.01607270911335945, -0.014824828132987022, 0.5986359715461731, -0.2861144542694092, -0.011450079269707203, 0.006213839631527662, -0.07299478352069855, -0.030176805332303047, 0.1308557540178299, 0.1498028188943863, 0.02503504604101181, 1.2593742609024048, 0.14529675245285034, 0.04178899526596069, -0.04030295088887215, -0.8200206160545349, -0.8673223257064819, 0.9174283742904663, -0.01296693179756403, -0.627841591835022, -0.4050428569316864, -0.4126528203487396]} +{"t": 15.8786, "q": [-0.32698163390159607, 0.005297346506267786, -0.007271799258887768, 0.6276963949203491, -0.3220527470111847, -0.001554433605633676, -0.3642573654651642, 0.016098275780677795, -0.014824828132987022, 0.598644495010376, -0.28609785437583923, -0.011392341926693916, 0.006187055725604296, -0.07300238311290741, -0.030181998386979103, 0.13084377348423004, 0.1497788429260254, 0.024987109005451202, 1.2594221830368042, 0.1452607959508896, 0.04178899526596069, -0.04030295088887215, -0.8199127316474915, -0.8673103451728821, 0.9158225059509277, -0.012954947538673878, -0.6278655529022217, -0.40503084659576416, -0.4126648008823395]} +{"t": 15.8954, "q": [-0.32694756984710693, 0.005305869039148092, -0.0072584073059260845, 0.6276793479919434, -0.322040319442749, -0.0015470745274797082, -0.3642403483390808, 0.01613236404955387, -0.014838220551609993, 0.5986359715461731, -0.286085307598114, -0.011414083652198315, 0.006187055725604296, -0.07298725098371506, -0.030181391164660454, 0.13077186048030853, 0.14968296885490417, 0.02503504604101181, 1.2595540285110474, 0.14527277648448944, 0.04186089709401131, -0.040362872183322906, -0.8199247121810913, -0.8672863841056824, 0.9139649271965027, -0.01296693179756403, -0.627925455570221, -0.4050428569316864, -0.4126528203487396]} +{"t": 15.9121, "q": [-0.32698163390159607, 0.005331434775143862, -0.007271799258887768, 0.6276793479919434, -0.3220362365245819, -0.0015542935580015182, -0.3642573654651642, 0.01613236404955387, -0.014838220551609993, 0.598644495010376, -0.2860894799232483, -0.01142128836363554, 0.006187055725604296, -0.07299484312534332, -0.03018658421933651, 0.13066400587558746, 0.14967098832130432, 0.02490321919322014, 1.2596498727798462, 0.1453087329864502, 0.04188486561179161, -0.04037485644221306, -0.8199007511138916, -0.8672744035720825, 0.9121553301811218, -0.01296693179756403, -0.6279014945030212, -0.40505483746528625, -0.4126528203487396]} +{"t": 15.9288, "q": [-0.3269731104373932, 0.00532291317358613, -0.007271799258887768, 0.6276793479919434, -0.32205694913864136, -0.0015617315657436848, -0.3642573654651642, 0.016140887513756752, -0.01486500445753336, 0.5986359715461731, -0.2861061692237854, -0.0114212017506361, 0.006120096426457167, -0.07306310534477234, -0.030213771387934685, 0.1306280493736267, 0.14965900778770447, 0.024879250675439835, 1.2597577571868896, 0.1453326940536499, 0.04189684987068176, -0.040350887924432755, -0.8199966549873352, -0.8673223257064819, 0.9103577136993408, -0.012978916056454182, -0.6279014945030212, -0.4050668179988861, -0.4126528203487396]} +{"t": 15.9455, "q": [-0.3269731104373932, 0.00532291317358613, -0.0072584073059260845, 0.6276878714561462, -0.32204440236091614, -0.0015398375689983368, -0.36423182487487793, 0.01613236404955387, -0.014824828132987022, 0.5986359715461731, -0.2860936224460602, -0.01142849214375019, 0.006106704473495483, -0.07310856878757477, -0.030225373804569244, 0.13061606884002686, 0.14965900778770447, 0.02491520345211029, 1.2598296403884888, 0.1453087329864502, 0.04195677116513252, -0.0403149351477623, -0.8197450041770935, -0.8672744035720825, 0.9076972007751465, -0.013002884574234486, -0.6279014945030212, -0.40507879853248596, -0.4126048982143402]} +{"t": 15.9623, "q": [-0.3269646167755127, 0.005314390640705824, -0.007311975117772818, 0.6276878714561462, -0.32204440236091614, -0.0015398375689983368, -0.36422330141067505, 0.01613236404955387, -0.014851612038910389, 0.598644495010376, -0.28609779477119446, -0.011435696855187416, 0.006146880332380533, -0.07312370091676712, -0.030225981026887894, 0.13061606884002686, 0.149599090218544, 0.024927187711000443, 1.2599375247955322, 0.14529675245285034, 0.04198073968291283, -0.04024302959442139, -0.8191097974777222, -0.8670347332954407, 0.9037424325942993, -0.01296693179756403, -0.6278895139694214, -0.40510275959968567, -0.41264083981513977]} +{"t": 15.979, "q": [-0.32693904638290405, 0.005305869039148092, -0.007298583164811134, 0.6276623010635376, -0.3220486640930176, -0.0015616705641150475, -0.36423182487487793, 0.01613236404955387, -0.014851612038910389, 0.598644495010376, -0.28610196709632874, -0.011442901566624641, 0.006079920567572117, -0.07312370091676712, -0.030225981026887894, 0.13071194291114807, 0.1495511531829834, 0.024927187711000443, 1.2599974870681763, 0.1453566700220108, 0.04205264523625374, -0.04019509255886078, -0.8191697597503662, -0.8667351007461548, 0.901537299156189, -0.012978916056454182, -0.6279014945030212, -0.40507879853248596, -0.4126528203487396]} +{"t": 15.9957, "q": [-0.32694756984710693, 0.00532291317358613, -0.007285191211849451, 0.6276623010635376, -0.3220321536064148, -0.0015615124721080065, -0.36423182487487793, 0.016174975782632828, -0.01486500445753336, 0.5986359715461731, -0.28610196709632874, -0.011442901566624641, 0.006146880332380533, -0.07311616837978363, -0.0302305668592453, 0.13078385591506958, 0.1495032161474228, 0.024927187711000443, 1.2601532936096191, 0.14529675245285034, 0.04207661375403404, -0.04019509255886078, -0.819265604019165, -0.8666871786117554, 0.9001711010932922, -0.012990900315344334, -0.6278775334358215, -0.40505483746528625, -0.4126648008823395]} +{"t": 16.0125, "q": [-0.32698163390159607, 0.005331434775143862, -0.007325367070734501, 0.6276623010635376, -0.3220280706882477, -0.0015687315026298165, -0.36423182487487793, 0.016166452318429947, -0.014945355243980885, 0.5986530184745789, -0.2861144542694092, -0.011435610242187977, 0.0061736637726426125, -0.07313890010118484, -0.030236367136240005, 0.13079583644866943, 0.1495751142501831, 0.024927187711000443, 1.2602851390838623, 0.14532071352005005, 0.04207661375403404, -0.04020707681775093, -0.8191697597503662, -0.8666632175445557, 0.8986610770225525, -0.01296693179756403, -0.6279134750366211, -0.4050907790660858, -0.4126528203487396]} +{"t": 16.0292, "q": [-0.32699015736579895, 0.005357001442462206, -0.007378934416919947, 0.627636730670929, -0.32204049825668335, -0.0015761086251586676, -0.36423182487487793, 0.016166452318429947, -0.014972139149904251, 0.5986615419387817, -0.28610196709632874, -0.011442901566624641, 0.006254015490412712, -0.07313890010118484, -0.030236367136240005, 0.13079583644866943, 0.14958709478378296, 0.024927187711000443, 1.2603689432144165, 0.14532071352005005, 0.04206462949514389, -0.040231045335531235, -0.8189899921417236, -0.8664355278015137, 0.8967556357383728, -0.013014868833124638, -0.6279494166374207, -0.4050907790660858, -0.41261687874794006]} +{"t": 16.0459, "q": [-0.3270157277584076, 0.005382567178457975, -0.007378934416919947, 0.6276282072067261, -0.3220280706882477, -0.0015687315026298165, -0.3642403483390808, 0.016157930716872215, -0.014985531568527222, 0.598644495010376, -0.286106139421463, -0.011450105346739292, 0.006307582836598158, -0.07313890010118484, -0.030236367136240005, 0.13075987994670868, 0.1495751142501831, 0.024867268279194832, 1.2604649066925049, 0.1452847570180893, 0.042088598012924194, -0.04024302959442139, -0.81889408826828, -0.8660520315170288, 0.8943827152252197, -0.012978916056454182, -0.6279613971710205, -0.4051147401332855, -0.4126288592815399]} +{"t": 16.0629, "q": [-0.3269731104373932, 0.0053655230440199375, -0.007365542463958263, 0.6276112198829651, -0.32203641533851624, -0.0015833275392651558, -0.3642573654651642, 0.016157930716872215, -0.014945355243980885, 0.5986359715461731, -0.286106139421463, -0.011450105346739292, 0.006294190883636475, -0.07312364131212234, -0.03021620213985443, 0.13077186048030853, 0.149599090218544, 0.024879250675439835, 1.2605007886886597, 0.1452607959508896, 0.04207661375403404, -0.040231045335531235, -0.8189060688018799, -0.8658003807067871, 0.8929925560951233, -0.01290701050311327, -0.6279494166374207, -0.40510275959968567, -0.4126528203487396]} +{"t": 16.0799, "q": [-0.32699868083000183, 0.005339957308024168, -0.00735215051099658, 0.6276112198829651, -0.3220365345478058, -0.0015978446463122964, -0.3642403483390808, 0.016140887513756752, -0.014931963756680489, 0.598644495010376, -0.28610196709632874, -0.011442901566624641, 0.006280798930674791, -0.0731085017323494, -0.030215593054890633, 0.13075987994670868, 0.14961107075214386, 0.024927187711000443, 1.260548710823059, 0.1452607959508896, 0.04206462949514389, -0.04021906107664108, -0.8189899921417236, -0.8657523989677429, 0.8915424942970276, -0.012954947538673878, -0.6279613971710205, -0.40510275959968567, -0.4126528203487396]} +{"t": 16.0966, "q": [-0.32698163390159607, 0.005357001442462206, -0.007365542463958263, 0.6275771260261536, -0.32202398777008057, -0.0015759505331516266, -0.3642403483390808, 0.016166452318429947, -0.014945355243980885, 0.5986700654029846, -0.28610196709632874, -0.011442901566624641, 0.006254015490412712, -0.07314643263816833, -0.0302317813038826, 0.13071194291114807, 0.149599090218544, 0.024927187711000443, 1.260536789894104, 0.1453806310892105, 0.04206462949514389, -0.04021906107664108, -0.8188461661338806, -0.8657164573669434, 0.89024817943573, -0.012883041985332966, -0.6279374361038208, -0.40507879853248596, -0.41261687874794006]} +{"t": 16.1134, "q": [-0.3269646167755127, 0.0053484789095819, -0.007378934416919947, 0.6275600790977478, -0.32203641533851624, -0.0015833275392651558, -0.3642403483390808, 0.016157930716872215, -0.014918571338057518, 0.5986189246177673, -0.28609779477119446, -0.011435696855187416, 0.006267406977713108, -0.07313890010118484, -0.030236367136240005, 0.13067598640918732, 0.1495751142501831, 0.02491520345211029, 1.260548710823059, 0.1453326940536499, 0.04206462949514389, -0.04021906107664108, -0.8189180493354797, -0.8657044768333435, 0.8895291090011597, -0.012918994762003422, -0.6279374361038208, -0.40510275959968567, -0.41264083981513977]} +{"t": 16.1301, "q": [-0.32699868083000183, 0.0053484789095819, -0.00735215051099658, 0.6275345087051392, -0.32203641533851624, -0.0015833275392651558, -0.36423182487487793, 0.016174975782632828, -0.014972139149904251, 0.598644495010376, -0.2861102819442749, -0.011442857794463634, 0.006280798930674791, -0.07313123345375061, -0.030221393331885338, 0.1306520253419876, 0.1496230512857437, 0.02491520345211029, 1.2605607509613037, 0.14529675245285034, 0.042088598012924194, -0.040231045335531235, -0.8188341856002808, -0.8656565546989441, 0.8887381553649902, -0.012942963279783726, -0.627925455570221, -0.40510275959968567, -0.41264083981513977]} +{"t": 16.1468, "q": [-0.32699015736579895, 0.005305869039148092, -0.007365542463958263, 0.6275004148483276, -0.3220406174659729, -0.0015906256157904863, -0.3642403483390808, 0.01619201898574829, -0.014918571338057518, 0.598644495010376, -0.286106139421463, -0.011435654014348984, 0.006267406977713108, -0.07311610132455826, -0.030220787972211838, 0.13064004480838776, 0.14958709478378296, 0.02490321919322014, 1.260548710823059, 0.14532071352005005, 0.04207661375403404, -0.04021906107664108, -0.8186424374580383, -0.8655486702919006, 0.8877434730529785, -0.01290701050311327, -0.6279374361038208, -0.4051147401332855, -0.41264083981513977]} +{"t": 16.1636, "q": [-0.3270157277584076, 0.00528882397338748, -0.007338759023696184, 0.6274833679199219, -0.32203641533851624, -0.0015833275392651558, -0.3642403483390808, 0.016166452318429947, -0.014905179850757122, 0.598644495010376, -0.28610196709632874, -0.011442901566624641, 0.006280798930674791, -0.07312364131212234, -0.03021620213985443, 0.1306280493736267, 0.14964702725410461, 0.024927187711000443, 1.2605726718902588, 0.14527277648448944, 0.042088598012924194, -0.04024302959442139, -0.8185824751853943, -0.8652850389480591, 0.8864611387252808, -0.012954947538673878, -0.6279374361038208, -0.4051147401332855, -0.4126288592815399]} +{"t": 16.1804, "q": [-0.32698163390159607, 0.005297346506267786, -0.00735215051099658, 0.6274918913841248, -0.3220365345478058, -0.0015978446463122964, -0.36423182487487793, 0.016234630718827248, -0.014931963756680489, 0.598644495010376, -0.2860935926437378, -0.011457395739853382, 0.006294190883636475, -0.07312370091676712, -0.030225981026887894, 0.1306520253419876, 0.14964702725410461, 0.024927187711000443, 1.260548710823059, 0.1452847570180893, 0.042088598012924194, -0.040231045335531235, -0.8184147477149963, -0.864997386932373, 0.8855983018875122, -0.012895026244223118, -0.6279374361038208, -0.40510275959968567, -0.41264083981513977]} +{"t": 16.1972, "q": [-0.3269731104373932, 0.00526325823739171, -0.00735215051099658, 0.6274577975273132, -0.32202398777008057, -0.0015759505331516266, -0.36423182487487793, 0.016157930716872215, -0.014958747662603855, 0.5986359715461731, -0.2860935926437378, -0.011457395739853382, 0.006307582836598158, -0.07312370091676712, -0.030225981026887894, 0.13067598640918732, 0.14963503181934357, 0.024927187711000443, 1.2605847120285034, 0.1452847570180893, 0.04207661375403404, -0.040231045335531235, -0.8176117539405823, -0.8648176193237305, 0.8851549029350281, -0.012871057726442814, -0.6279613971710205, -0.4051267206668854, -0.41264083981513977]} +{"t": 16.2139, "q": [-0.32694756984710693, 0.005220647435635328, -0.007311975117772818, 0.6274407505989075, -0.32202398777008057, -0.0015759505331516266, -0.36423182487487793, 0.01619201898574829, -0.014931963756680489, 0.5986359715461731, -0.2860894203186035, -0.01146464329212904, 0.006294190883636475, -0.07313117384910583, -0.030211616307497025, 0.13066400587558746, 0.14953915774822235, 0.024987109005451202, 1.2605847120285034, 0.1453326940536499, 0.042088598012924194, -0.040231045335531235, -0.8164733052253723, -0.8645899295806885, 0.8849990963935852, -0.012883041985332966, -0.6279494166374207, -0.4051626920700073, -0.4126288592815399]} +{"t": 16.2307, "q": [-0.32693052291870117, 0.005212124902755022, -0.007285191211849451, 0.6274492740631104, -0.32202398777008057, -0.0015759505331516266, -0.3642403483390808, 0.016200540587306023, -0.014931963756680489, 0.598644495010376, -0.2860602140426636, -0.011443134397268295, 0.006267406977713108, -0.07313117384910583, -0.030211616307497025, 0.13061606884002686, 0.1495511531829834, 0.024927187711000443, 1.2605726718902588, 0.1453326940536499, 0.04207661375403404, -0.04020707681775093, -0.8157063126564026, -0.8641585111618042, 0.8848432898521423, -0.012895026244223118, -0.6279613971710205, -0.40518665313720703, -0.41264083981513977]} +{"t": 16.2474, "q": [-0.32694756984710693, 0.00520360330119729, -0.0072584073059260845, 0.6274407505989075, -0.3220280706882477, -0.0015687315026298165, -0.3642403483390808, 0.01619201898574829, -0.014905179850757122, 0.5986359715461731, -0.28606024384498596, -0.011428682133555412, 0.006200447678565979, -0.07312357425689697, -0.03020641952753067, 0.1306280493736267, 0.1496230512857437, 0.024927187711000443, 1.2606086730957031, 0.1454046070575714, 0.04207661375403404, -0.04021906107664108, -0.8150231838226318, -0.8637031316757202, 0.8848193287849426, -0.012871057726442814, -0.6279733777046204, -0.40521061420440674, -0.41264083981513977]} +{"t": 16.2641, "q": [-0.32693904638290405, 0.005195080768316984, -0.0072584073059260845, 0.6274407505989075, -0.32202407717704773, -0.0015904676401987672, -0.36423182487487793, 0.016226107254624367, -0.014905179850757122, 0.5986700654029846, -0.2860518991947174, -0.011414255946874619, 0.006200447678565979, -0.07311597466468811, -0.030201228335499763, 0.13061606884002686, 0.1495751142501831, 0.02490321919322014, 1.2606086730957031, 0.14534468948841095, 0.042088598012924194, -0.04021906107664108, -0.814555823802948, -0.8632357120513916, 0.884723424911499, -0.012691294774413109, -0.6280333399772644, -0.40521061420440674, -0.41261687874794006]} +{"t": 16.2808, "q": [-0.32693904638290405, 0.00520360330119729, -0.0072584073059260845, 0.6274407505989075, -0.32201990485191345, -0.0015831695636734366, -0.36421477794647217, 0.016319850459694862, -0.014918571338057518, 0.5986700654029846, -0.286051869392395, -0.011428707279264927, 0.0062272315844893456, -0.07312357425689697, -0.03020641952753067, 0.13059210777282715, 0.14953915774822235, 0.024879250675439835, 1.2606205940246582, 0.1453566700220108, 0.04207661375403404, -0.04021906107664108, -0.8142921328544617, -0.8631278872489929, 0.8846515417098999, -0.01236772071570158, -0.6281291842460632, -0.40521061420440674, -0.4126288592815399]} +{"t": 16.2976, "q": [-0.3269134759902954, 0.00520360330119729, -0.0072584073059260845, 0.627406656742096, -0.32202398777008057, -0.0015759505331516266, -0.36421477794647217, 0.016294283792376518, -0.014958747662603855, 0.5986700654029846, -0.286051869392395, -0.011428707279264927, 0.006240623537451029, -0.07312357425689697, -0.03020641952753067, 0.130604088306427, 0.14961107075214386, 0.02491520345211029, 1.2606086730957031, 0.14534468948841095, 0.04207661375403404, -0.040231045335531235, -0.8143401145935059, -0.8630200028419495, 0.8845796585083008, -0.012415657751262188, -0.6281052231788635, -0.40521061420440674, -0.4126048982143402]} +{"t": 16.3145, "q": [-0.3269134759902954, 0.00520360330119729, -0.0072584073059260845, 0.627406656742096, -0.32201990485191345, -0.0015831695636734366, -0.3641977310180664, 0.016285762190818787, -0.014931963756680489, 0.5986274480819702, -0.2860560417175293, -0.01143592968583107, 0.0062272315844893456, -0.0731387659907341, -0.03021680749952793, 0.13061606884002686, 0.14958709478378296, 0.024939171969890594, 1.2606205940246582, 0.14539262652397156, 0.042088598012924194, -0.04021906107664108, -0.8144479393959045, -0.862828254699707, 0.8844478130340576, -0.012463593855500221, -0.6281172037124634, -0.40521061420440674, -0.4125809371471405]} +{"t": 16.3313, "q": [-0.3268793821334839, 0.005212124902755022, -0.007285191211849451, 0.6273896098136902, -0.3220117390155792, -0.0015976076247170568, -0.36418068408966064, 0.016277240589261055, -0.014891788363456726, 0.5986530184745789, -0.2860560417175293, -0.01143592968583107, 0.006280798930674791, -0.07313117384910583, -0.030211616307497025, 0.1306520253419876, 0.149599090218544, 0.0249631404876709, 1.2606205940246582, 0.14532071352005005, 0.04207661375403404, -0.040231045335531235, -0.8146157264709473, -0.862600564956665, 0.8842201232910156, -0.012499546632170677, -0.6281291842460632, -0.4052465856075287, -0.41259291768074036]} +{"t": 16.3481, "q": [-0.326870858669281, 0.00520360330119729, -0.007285191211849451, 0.6273640394210815, -0.32201582193374634, -0.0015903885941952467, -0.36417216062545776, 0.016277240589261055, -0.014945355243980885, 0.5986700654029846, -0.2860560715198517, -0.01142145972698927, 0.006294190883636475, -0.0731387659907341, -0.03021680749952793, 0.13061606884002686, 0.1496230512857437, 0.024927187711000443, 1.2606446743011475, 0.1453326940536499, 0.042088598012924194, -0.04020707681775093, -0.8147475719451904, -0.8623369336128235, 0.8839564323425293, -0.012523515149950981, -0.6281531453132629, -0.4052465856075287, -0.41259291768074036]} +{"t": 16.3648, "q": [-0.32684528827667236, 0.005212124902755022, -0.007285191211849451, 0.6273640394210815, -0.32201164960861206, -0.001583090634085238, -0.364155113697052, 0.01625167392194271, -0.014945355243980885, 0.5986530184745789, -0.2860727906227112, -0.011421374045312405, 0.006320974789559841, -0.0731387659907341, -0.03021680749952793, 0.1306280493736267, 0.14958709478378296, 0.024879250675439835, 1.2606326341629028, 0.1453806310892105, 0.04207661375403404, -0.040231045335531235, -0.8148913383483887, -0.8620732426643372, 0.8837886452674866, -0.012583436444401741, -0.6281172037124634, -0.4052225947380066, -0.4126048982143402]} +{"t": 16.3816, "q": [-0.32684528827667236, 0.005212124902755022, -0.007298583164811134, 0.6273555159568787, -0.32201582193374634, -0.0015903885941952467, -0.364155113697052, 0.016268718987703323, -0.014945355243980885, 0.5986530184745789, -0.2860644459724426, -0.011406946927309036, 0.006320974789559841, -0.07315396517515182, -0.030227195471525192, 0.1306520253419876, 0.14953915774822235, 0.024891234934329987, 1.2606326341629028, 0.14536865055561066, 0.04207661375403404, -0.04021906107664108, -0.8149632811546326, -0.861773669719696, 0.8837167620658875, -0.012547483667731285, -0.6281411647796631, -0.40523460507392883, -0.41259291768074036]} +{"t": 16.3984, "q": [-0.3268793821334839, 0.005169515032321215, -0.007285191211849451, 0.62732994556427, -0.3220282793045044, -0.001597765600308776, -0.364155113697052, 0.01624315232038498, -0.014918571338057518, 0.5986359715461731, -0.28607693314552307, -0.01142857875674963, 0.006320974789559841, -0.0731387659907341, -0.03021680749952793, 0.13068798184394836, 0.149599090218544, 0.02490321919322014, 1.2606446743011475, 0.1453087329864502, 0.04207661375403404, -0.040231045335531235, -0.8149393200874329, -0.8614620566368103, 0.8836808204650879, -0.012475578114390373, -0.6281291842460632, -0.4052465856075287, -0.4126048982143402]} +{"t": 16.4151, "q": [-0.3268623352050781, 0.00520360330119729, -0.007271799258887768, 0.6273640394210815, -0.32201990485191345, -0.0015831695636734366, -0.3641465902328491, 0.016268718987703323, -0.014905179850757122, 0.598644495010376, -0.2860727906227112, -0.011421374045312405, 0.006307582836598158, -0.07313890010118484, -0.030236367136240005, 0.13068798184394836, 0.1496230512857437, 0.02490321919322014, 1.2606446743011475, 0.14532071352005005, 0.042088598012924194, -0.04021906107664108, -0.8148194551467896, -0.861114501953125, 0.8836808204650879, -0.01245160959661007, -0.6281291842460632, -0.4052465856075287, -0.41259291768074036]} +{"t": 16.4318, "q": [-0.32689642906188965, 0.005195080768316984, -0.007271799258887768, 0.6273555159568787, -0.32201582193374634, -0.0015903885941952467, -0.364155113697052, 0.01625167392194271, -0.014905179850757122, 0.598644495010376, -0.286085307598114, -0.011414083652198315, 0.006347758695483208, -0.0731387659907341, -0.03021680749952793, 0.13068798184394836, 0.14964702725410461, 0.02490321919322014, 1.2606446743011475, 0.14532071352005005, 0.04207661375403404, -0.040231045335531235, -0.8147236108779907, -0.8607310056686401, 0.8836808204650879, -0.012463593855500221, -0.6281291842460632, -0.40523460507392883, -0.41264083981513977]} +{"t": 16.4486, "q": [-0.3268793821334839, 0.005195080768316984, -0.007285191211849451, 0.6273384690284729, -0.32203641533851624, -0.0015833275392651558, -0.36418068408966064, 0.01624315232038498, -0.014918571338057518, 0.598644495010376, -0.2860936224460602, -0.01142849214375019, 0.006280798930674791, -0.07315396517515182, -0.030227195471525192, 0.13068798184394836, 0.14956313371658325, 0.024927187711000443, 1.2606446743011475, 0.14534468948841095, 0.04207661375403404, -0.040231045335531235, -0.8145797848701477, -0.8602636456489563, 0.8836808204650879, -0.012439625337719917, -0.6281411647796631, -0.4052465856075287, -0.41261687874794006]} +{"t": 16.4655, "q": [-0.32688790559768677, 0.0051865591667592525, -0.007285191211849451, 0.62732994556427, -0.32202398777008057, -0.0015759505331516266, -0.36421477794647217, 0.016226107254624367, -0.014891788363456726, 0.5986615419387817, -0.28610193729400635, -0.01145735289901495, 0.006294190883636475, -0.07315396517515182, -0.030227195471525192, 0.13069996237754822, 0.14953915774822235, 0.02490321919322014, 1.2606205940246582, 0.1452847570180893, 0.042088598012924194, -0.040231045335531235, -0.8145797848701477, -0.8596524596214294, 0.883668839931488, -0.01242764201015234, -0.6281411647796631, -0.40521061420440674, -0.41261687874794006]} +{"t": 16.4821, "q": [-0.32688790559768677, 0.005195080768316984, -0.007271799258887768, 0.627261757850647, -0.3220282793045044, -0.001597765600308776, -0.36423182487487793, 0.016217585653066635, -0.014878395944833755, 0.598644495010376, -0.28610196709632874, -0.011442901566624641, 0.006294190883636475, -0.0731387659907341, -0.03021680749952793, 0.13067598640918732, 0.1495751142501831, 0.02490321919322014, 1.2606446743011475, 0.14529675245285034, 0.04207661375403404, -0.04021906107664108, -0.814639687538147, -0.8591850399971008, 0.8836568593978882, -0.012379704974591732, -0.628213107585907, -0.40523460507392883, -0.4126048982143402]} +{"t": 16.4989, "q": [-0.32693052291870117, 0.005195080768316984, -0.007285191211849451, 0.6272277235984802, -0.3220365345478058, -0.0015978446463122964, -0.3642573654651642, 0.016200540587306023, -0.014905179850757122, 0.5986359715461731, -0.286106139421463, -0.011450105346739292, 0.006267406977713108, -0.07314630597829819, -0.030212221667170525, 0.1306280493736267, 0.14958709478378296, 0.024867268279194832, 1.2606565952301025, 0.1452847570180893, 0.04207661375403404, -0.040231045335531235, -0.8147236108779907, -0.8586937189102173, 0.8836209177970886, -0.012403673492372036, -0.6282011270523071, -0.40523460507392883, -0.4126048982143402]} +{"t": 16.5156, "q": [-0.32693052291870117, 0.00520360330119729, -0.007285191211849451, 0.6271510124206543, -0.3220406174659729, -0.0015906256157904863, -0.36426588892936707, 0.016174975782632828, -0.014878395944833755, 0.5986274480819702, -0.28612685203552246, -0.011486142873764038, 0.006267406977713108, -0.07315396517515182, -0.030227195471525192, 0.13061606884002686, 0.14961107075214386, 0.02491520345211029, 1.2606446743011475, 0.1452847570180893, 0.04207661375403404, -0.04024302959442139, -0.8146876096725464, -0.8583821058273315, 0.8835609555244446, -0.012379704974591732, -0.6282370686531067, -0.40523460507392883, -0.4126048982143402]} +{"t": 16.5323, "q": [-0.32689642906188965, 0.005195080768316984, -0.007285191211849451, 0.6271169185638428, -0.32201990485191345, -0.0015831695636734366, -0.36426588892936707, 0.01619201898574829, -0.014878395944833755, 0.5986189246177673, -0.28613927960395813, -0.011493301950395107, 0.006267406977713108, -0.0731387659907341, -0.03021680749952793, 0.13061606884002686, 0.14958709478378296, 0.024927187711000443, 1.2606565952301025, 0.1453326940536499, 0.04207661375403404, -0.04024302959442139, -0.8146995902061462, -0.8579866290092468, 0.8834651112556458, -0.01230779942125082, -0.6282610297203064, -0.40518665313720703, -0.4126048982143402]} +{"t": 16.5491, "q": [-0.3269134759902954, 0.00520360330119729, -0.007285191211849451, 0.6271083950996399, -0.32201990485191345, -0.0015831695636734366, -0.3642829358577728, 0.016209064051508904, -0.01486500445753336, 0.5986019372940063, -0.28613924980163574, -0.01150775421410799, 0.006267406977713108, -0.0731387659907341, -0.03021680749952793, 0.13066400587558746, 0.14953915774822235, 0.02491520345211029, 1.2606686353683472, 0.14532071352005005, 0.042088598012924194, -0.04024302959442139, -0.8146995902061462, -0.8577229976654053, 0.8834651112556458, -0.012283830903470516, -0.6282610297203064, -0.40523460507392883, -0.4126048982143402]} +{"t": 16.5658, "q": [-0.32689642906188965, 0.00520360330119729, -0.007285191211849451, 0.6270572543144226, -0.3220282793045044, -0.001597765600308776, -0.3642914593219757, 0.016234630718827248, -0.014878395944833755, 0.5986104607582092, -0.28614339232444763, -0.011514975689351559, 0.0062272315844893456, -0.0731387659907341, -0.03021680749952793, 0.13067598640918732, 0.14958709478378296, 0.02490321919322014, 1.2606925964355469, 0.1453566700220108, 0.04207661375403404, -0.040231045335531235, -0.8146636486053467, -0.8574953079223633, 0.8834291696548462, -0.012283830903470516, -0.6282730102539062, -0.4052225947380066, -0.41259291768074036]} +{"t": 16.5825, "q": [-0.32694756984710693, 0.00520360330119729, -0.007285191211849451, 0.6269890666007996, -0.3220282793045044, -0.001597765600308776, -0.36430850625038147, 0.016157930716872215, -0.014878395944833755, 0.5985848903656006, -0.2861475646495819, -0.011507728137075901, 0.006213839631527662, -0.0731387659907341, -0.03021680749952793, 0.1306520253419876, 0.14961107075214386, 0.024879250675439835, 1.2606686353683472, 0.1453566700220108, 0.04206462949514389, -0.04021906107664108, -0.8146636486053467, -0.8572196364402771, 0.8834291696548462, -0.012223909609019756, -0.6282610297203064, -0.4052225947380066, -0.4126048982143402]} +{"t": 16.5993, "q": [-0.32689642906188965, 0.005220647435635328, -0.007271799258887768, 0.626954972743988, -0.32201990485191345, -0.0015831695636734366, -0.36431702971458435, 0.01618349738419056, -0.01486500445753336, 0.5985678434371948, -0.28613927960395813, -0.011493301950395107, 0.006187055725604296, -0.07313117384910583, -0.030211616307497025, 0.1306280493736267, 0.1496230512857437, 0.02490321919322014, 1.2606686353683472, 0.14539262652397156, 0.04207661375403404, -0.04021906107664108, -0.814639687538147, -0.8568840622901917, 0.883381187915802, -0.012175972573459148, -0.6282610297203064, -0.40521061420440674, -0.4126288592815399]} +{"t": 16.616, "q": [-0.32688790559768677, 0.00520360330119729, -0.0072584073059260845, 0.6269464492797852, -0.3220157325267792, -0.001575871603563428, -0.36431702971458435, 0.01624315232038498, -0.014878395944833755, 0.5985848903656006, -0.28613510727882385, -0.01150055043399334, 0.006146880332380533, -0.07313117384910583, -0.030211616307497025, 0.1306280493736267, 0.14965900778770447, 0.02491520345211029, 1.2606805562973022, 0.1453806310892105, 0.042088598012924194, -0.040231045335531235, -0.8146277070045471, -0.8566204309463501, 0.8833212852478027, -0.01209208369255066, -0.6282610297203064, -0.4052225947380066, -0.4126048982143402]} +{"t": 16.6327, "q": [-0.326870858669281, 0.00520360330119729, -0.0072584073059260845, 0.6269208788871765, -0.3220282793045044, -0.001597765600308776, -0.36430850625038147, 0.016234630718827248, -0.014878395944833755, 0.5985848903656006, -0.28613924980163574, -0.01150775421410799, 0.00613348837941885, -0.07313117384910583, -0.030211616307497025, 0.130604088306427, 0.14961107075214386, 0.024891234934329987, 1.2606686353683472, 0.14529675245285034, 0.042088598012924194, -0.04021906107664108, -0.8145797848701477, -0.8563448190689087, 0.8833332657814026, -0.012104067951440811, -0.6282610297203064, -0.40521061420440674, -0.4125809371471405]} +{"t": 16.6494, "q": [-0.3268623352050781, 0.005212124902755022, -0.007245015352964401, 0.626886785030365, -0.3220282793045044, -0.001597765600308776, -0.3642999827861786, 0.016226107254624367, -0.014891788363456726, 0.5985934138298035, -0.2861226201057434, -0.011536763980984688, 0.00613348837941885, -0.07312357425689697, -0.03020641952753067, 0.13056813180446625, 0.14961107075214386, 0.02491520345211029, 1.2606925964355469, 0.1453087329864502, 0.042088598012924194, -0.040231045335531235, -0.814411997795105, -0.8560571670532227, 0.8833452463150024, -0.012080099433660507, -0.6282849907875061, -0.4052225947380066, -0.41259291768074036]} +{"t": 16.6662, "q": [-0.3268793821334839, 0.00520360330119729, -0.0072584073059260845, 0.6268953084945679, -0.32201990485191345, -0.0015831695636734366, -0.3642999827861786, 0.016226107254624367, -0.014878395944833755, 0.5985848903656006, -0.2861267924308777, -0.01151504646986723, 0.00613348837941885, -0.07313117384910583, -0.030211616307497025, 0.13059210777282715, 0.14964702725410461, 0.02490321919322014, 1.2606686353683472, 0.14532071352005005, 0.042100582271814346, -0.04021906107664108, -0.8142921328544617, -0.8556017875671387, 0.8833332657814026, -0.012080099433660507, -0.628296971321106, -0.40523460507392883, -0.41261687874794006]} +{"t": 16.6829, "q": [-0.3268793821334839, 0.00520360330119729, -0.0072584073059260845, 0.6268953084945679, -0.3220157325267792, -0.001575871603563428, -0.36430850625038147, 0.01625167392194271, -0.014878395944833755, 0.5985678434371948, -0.28613510727882385, -0.01150055043399334, 0.00613348837941885, -0.0731387659907341, -0.03021680749952793, 0.13059210777282715, 0.149599090218544, 0.02491520345211029, 1.260704517364502, 0.1453326940536499, 0.042088598012924194, -0.040231045335531235, -0.8143041133880615, -0.8551943302154541, 0.8833452463150024, -0.012056130915880203, -0.6282849907875061, -0.4052225947380066, -0.41259291768074036]} +{"t": 16.6996, "q": [-0.32684528827667236, 0.005195080768316984, -0.007245015352964401, 0.6268782615661621, -0.3220117390155792, -0.0015976076247170568, -0.3642829358577728, 0.01624315232038498, -0.014905179850757122, 0.5985763669013977, -0.2861267924308777, -0.01151504646986723, 0.006160271819680929, -0.07313117384910583, -0.030211616307497025, 0.13061606884002686, 0.1495271772146225, 0.024879250675439835, 1.2606805562973022, 0.1452847570180893, 0.042100582271814346, -0.04021906107664108, -0.8143041133880615, -0.8547149300575256, 0.8833572268486023, -0.011996209621429443, -0.628296971321106, -0.4052225947380066, -0.4125809371471405]} +{"t": 16.7164, "q": [-0.3268197178840637, 0.0051865591667592525, -0.007231623865664005, 0.626886785030365, -0.3220117390155792, -0.0015976076247170568, -0.3642829358577728, 0.016268718987703323, -0.014905179850757122, 0.5985763669013977, -0.2861184775829315, -0.011529560200870037, 0.006146880332380533, -0.07313117384910583, -0.030211616307497025, 0.13061606884002686, 0.1495751142501831, 0.024891234934329987, 1.2606925964355469, 0.14532071352005005, 0.04207661375403404, -0.04024302959442139, -0.8143160939216614, -0.8541157245635986, 0.8833452463150024, -0.011960256844758987, -0.6283089518547058, -0.40521061420440674, -0.4126288592815399]} +{"t": 16.7332, "q": [-0.3267941474914551, 0.005195080768316984, -0.0072584073059260845, 0.626886785030365, -0.3219994008541107, -0.0016047655371949077, -0.36426588892936707, 0.016277240589261055, -0.014878395944833755, 0.5985678434371948, -0.2861018776893616, -0.01150074414908886, 0.006146880332380533, -0.0731387659907341, -0.03021680749952793, 0.1306520253419876, 0.14958709478378296, 0.024891234934329987, 1.2606925964355469, 0.1452607959508896, 0.04207661375403404, -0.04024302959442139, -0.8143160939216614, -0.8534925580024719, 0.8833332657814026, -0.011924304068088531, -0.628296971321106, -0.40521061420440674, -0.41259291768074036]} +{"t": 16.7499, "q": [-0.32680267095565796, 0.005178036633878946, -0.007231623865664005, 0.6268953084945679, -0.3220159411430359, -0.0016049055848270655, -0.3642403483390808, 0.016285762190818787, -0.014918571338057518, 0.5986019372940063, -0.2860935628414154, -0.011486335657536983, 0.006146880332380533, -0.07313117384910583, -0.030211616307497025, 0.13064004480838776, 0.149599090218544, 0.02490321919322014, 1.260704517364502, 0.14532071352005005, 0.04207661375403404, -0.040231045335531235, -0.8143160939216614, -0.8529772162437439, 0.8833332657814026, -0.011900335550308228, -0.6283089518547058, -0.40521061420440674, -0.4126048982143402]} +{"t": 16.7666, "q": [-0.3267686069011688, 0.005160992499440908, -0.007231623865664005, 0.6268953084945679, -0.3219994008541107, -0.0016047655371949077, -0.3642403483390808, 0.01624315232038498, -0.014891788363456726, 0.5985934138298035, -0.28608936071395874, -0.011493583209812641, 0.0061736637726426125, -0.07312357425689697, -0.03020641952753067, 0.13061606884002686, 0.1496230512857437, 0.02490321919322014, 1.2606805562973022, 0.14529675245285034, 0.042088598012924194, -0.04024302959442139, -0.8143160939216614, -0.8524858951568604, 0.8833332657814026, -0.011804461479187012, -0.6282849907875061, -0.40521061420440674, -0.4126048982143402]} +{"t": 16.7834, "q": [-0.3267430365085602, 0.005135425832122564, -0.007218231912702322, 0.6269123554229736, -0.32199522852897644, -0.001597467577084899, -0.3641977310180664, 0.016260195523500443, -0.014905179850757122, 0.5985678434371948, -0.28608518838882446, -0.011486360803246498, 0.006146880332380533, -0.07312357425689697, -0.03020641952753067, 0.130604088306427, 0.14953915774822235, 0.024891234934329987, 1.260704517364502, 0.14532071352005005, 0.042088598012924194, -0.040231045335531235, -0.8142921328544617, -0.8520424365997314, 0.883297324180603, -0.011744541116058826, -0.6282849907875061, -0.40521061420440674, -0.41261687874794006]} +{"t": 16.8001, "q": [-0.3267004191875458, 0.005135425832122564, -0.007231623865664005, 0.6269038319587708, -0.3219994008541107, -0.0016047655371949077, -0.3641977310180664, 0.016277240589261055, -0.01486500445753336, 0.5986104607582092, -0.28608936071395874, -0.011493583209812641, 0.006160271819680929, -0.07313117384910583, -0.030211616307497025, 0.13067598640918732, 0.14953915774822235, 0.024951156228780746, 1.260704517364502, 0.1453806310892105, 0.042088598012924194, -0.04021906107664108, -0.8143160939216614, -0.8517428636550903, 0.8832733631134033, -0.011732556857168674, -0.6282849907875061, -0.40521061420440674, -0.4126048982143402]} +{"t": 16.8172, "q": [-0.3267004191875458, 0.0051439483650028706, -0.007218231912702322, 0.6268953084945679, -0.3220076560974121, -0.0016048266552388668, -0.3641892075538635, 0.016268718987703323, -0.014891788363456726, 0.5986274480819702, -0.28608939051628113, -0.01147911325097084, 0.0061736637726426125, -0.0731387659907341, -0.03021680749952793, 0.13068798184394836, 0.14958709478378296, 0.02491520345211029, 1.260704517364502, 0.14534468948841095, 0.042088598012924194, -0.04021906107664108, -0.8142921328544617, -0.8515271544456482, 0.883297324180603, -0.011744541116058826, -0.6283089518547058, -0.40521061420440674, -0.41259291768074036]} +{"t": 16.834, "q": [-0.32670894265174866, 0.0051439483650028706, -0.007218231912702322, 0.6269038319587708, -0.32200348377227783, -0.0015975285787135363, -0.3641977310180664, 0.016268718987703323, -0.014905179850757122, 0.5985934138298035, -0.28608521819114685, -0.011471908539533615, 0.006146880332380533, -0.07313117384910583, -0.030211616307497025, 0.130604088306427, 0.14949122071266174, 0.02490321919322014, 1.2607405185699463, 0.14532071352005005, 0.04207661375403404, -0.04021906107664108, -0.8142561912536621, -0.8512874841690063, 0.8833332657814026, -0.011672635562717915, -0.628296971321106, -0.4052465856075287, -0.41259291768074036]} +{"t": 16.8507, "q": [-0.32670894265174866, 0.005135425832122564, -0.007218231912702322, 0.6269038319587708, -0.32199522852897644, -0.001597467577084899, -0.3641977310180664, 0.016277240589261055, -0.014905179850757122, 0.5986189246177673, -0.28609776496887207, -0.011479070410132408, 0.006160271819680929, -0.07312357425689697, -0.03020641952753067, 0.1306280493736267, 0.14956313371658325, 0.02491520345211029, 1.2607284784317017, 0.14534468948841095, 0.042088598012924194, -0.04021906107664108, -0.8141723275184631, -0.8509998321533203, 0.8833212852478027, -0.011660651303827763, -0.6283209323883057, -0.40523460507392883, -0.4126048982143402]} +{"t": 16.8674, "q": [-0.3266918957233429, 0.0051439483650028706, -0.007218231912702322, 0.626886785030365, -0.32199522852897644, -0.001597467577084899, -0.36418068408966064, 0.016260195523500443, -0.014931963756680489, 0.5986359715461731, -0.2860935628414154, -0.011486335657536983, 0.0061736637726426125, -0.07312357425689697, -0.03020641952753067, 0.13061606884002686, 0.1495751142501831, 0.024927187711000443, 1.2607405185699463, 0.1453087329864502, 0.042088598012924194, -0.04020707681775093, -0.8142322301864624, -0.8508200645446777, 0.8833212852478027, -0.011660651303827763, -0.6283089518547058, -0.40523460507392883, -0.41259291768074036]} +{"t": 16.8841, "q": [-0.3266918957233429, 0.005126904230564833, -0.007218231912702322, 0.6268527507781982, -0.3219994902610779, -0.0016192826442420483, -0.3641977310180664, 0.016277240589261055, -0.014945355243980885, 0.5986189246177673, -0.2860935628414154, -0.011486335657536983, 0.006187055725604296, -0.0731387659907341, -0.03021680749952793, 0.13064004480838776, 0.14956313371658325, 0.024891234934329987, 1.2607405185699463, 0.14532071352005005, 0.04207661375403404, -0.040231045335531235, -0.8142442107200623, -0.8507362008094788, 0.8833093047142029, -0.011672635562717915, -0.6283448934555054, -0.40523460507392883, -0.4126048982143402]} +{"t": 16.9009, "q": [-0.32667484879493713, 0.005135425832122564, -0.007231623865664005, 0.6268697381019592, -0.3219994902610779, -0.0016192826442420483, -0.36418068408966064, 0.016328373923897743, -0.014918571338057518, 0.5986274480819702, -0.28608936071395874, -0.011493583209812641, 0.006187055725604296, -0.07313117384910583, -0.030211616307497025, 0.13059210777282715, 0.14956313371658325, 0.02491520345211029, 1.2607405185699463, 0.1453566700220108, 0.042088598012924194, -0.040231045335531235, -0.8143880367279053, -0.850712239742279, 0.883297324180603, -0.011696604080498219, -0.6283209323883057, -0.4052225947380066, -0.41259291768074036]} +{"t": 16.9176, "q": [-0.32668337225914, 0.005135425832122564, -0.007231623865664005, 0.6268612146377563, -0.3219870626926422, -0.001611905638128519, -0.36417216062545776, 0.016294283792376518, -0.014918571338057518, 0.5986189246177673, -0.28608518838882446, -0.011486360803246498, 0.0061736637726426125, -0.07312357425689697, -0.03020641952753067, 0.13061606884002686, 0.1495511531829834, 0.024879250675439835, 1.2607165575027466, 0.14532071352005005, 0.04207661375403404, -0.04020707681775093, -0.814495861530304, -0.850712239742279, 0.8832374215126038, -0.011660651303827763, -0.6283209323883057, -0.4052225947380066, -0.41259291768074036]} +{"t": 16.9343, "q": [-0.32668337225914, 0.005135425832122564, -0.007218231912702322, 0.6268357038497925, -0.32199522852897644, -0.001597467577084899, -0.3641465902328491, 0.016260195523500443, -0.014931963756680489, 0.5986189246177673, -0.28608518838882446, -0.011486360803246498, 0.006200447678565979, -0.07313117384910583, -0.030211616307497025, 0.13061606884002686, 0.14964702725410461, 0.024879250675439835, 1.260704517364502, 0.14534468948841095, 0.042088598012924194, -0.040231045335531235, -0.814495861530304, -0.850712239742279, 0.883213460445404, -0.011660651303827763, -0.6283448934555054, -0.4052225947380066, -0.4126048982143402]} +{"t": 16.9511, "q": [-0.32668337225914, 0.0051439483650028706, -0.007204839959740639, 0.626801609992981, -0.3219953179359436, -0.0016119845677167177, -0.3641892075538635, 0.01625167392194271, -0.014905179850757122, 0.5986189246177673, -0.28608518838882446, -0.011500829830765724, 0.006187055725604296, -0.07312357425689697, -0.03020641952753067, 0.13067598640918732, 0.14961107075214386, 0.02490321919322014, 1.2607284784317017, 0.14534468948841095, 0.042088598012924194, -0.040231045335531235, -0.8144719004631042, -0.850712239742279, 0.8831774592399597, -0.011636682786047459, -0.6283568739891052, -0.40523460507392883, -0.41259291768074036]} +{"t": 16.9678, "q": [-0.3266918957233429, 0.005135425832122564, -0.007245015352964401, 0.6267845630645752, -0.3219953179359436, -0.0016119845677167177, -0.36418068408966064, 0.016260195523500443, -0.014918571338057518, 0.5986274480819702, -0.28608936071395874, -0.011493583209812641, 0.0061736637726426125, -0.07312357425689697, -0.03020641952753067, 0.1306520253419876, 0.14956313371658325, 0.024891234934329987, 1.2607284784317017, 0.14536865055561066, 0.04207661375403404, -0.04021906107664108, -0.8145198822021484, -0.850712239742279, 0.88315349817276, -0.01164866704493761, -0.6283688545227051, -0.40523460507392883, -0.41259291768074036]} +{"t": 16.9845, "q": [-0.3266918957233429, 0.005135425832122564, -0.007218231912702322, 0.6267589926719666, -0.3219953179359436, -0.0016119845677167177, -0.3641977310180664, 0.016277240589261055, -0.014905179850757122, 0.5986104607582092, -0.28608936071395874, -0.011493583209812641, 0.006213839631527662, -0.07312357425689697, -0.03020641952753067, 0.1305801123380661, 0.14956313371658325, 0.024891234934329987, 1.2607165575027466, 0.14534468948841095, 0.042088598012924194, -0.040231045335531235, -0.8145198822021484, -0.850712239742279, 0.8831774592399597, -0.011612714268267155, -0.6283688545227051, -0.4052225947380066, -0.41259291768074036]} +{"t": 17.0013, "q": [-0.3266407549381256, 0.005126904230564833, -0.007218231912702322, 0.6267504692077637, -0.3219994008541107, -0.0016047655371949077, -0.36418068408966064, 0.016319850459694862, -0.014918571338057518, 0.5986189246177673, -0.28608936071395874, -0.011493583209812641, 0.006267406977713108, -0.07312357425689697, -0.03020641952753067, 0.1305801123380661, 0.1495751142501831, 0.02491520345211029, 1.2607405185699463, 0.14529675245285034, 0.04207661375403404, -0.040231045335531235, -0.8145318627357483, -0.8506043553352356, 0.8831415176391602, -0.011576761491596699, -0.6283808946609497, -0.4052465856075287, -0.4126048982143402]} +{"t": 17.018, "q": [-0.32668337225914, 0.005109860096126795, -0.007231623865664005, 0.6266737580299377, -0.3219994008541107, -0.0016047655371949077, -0.3641977310180664, 0.016285762190818787, -0.014945355243980885, 0.5986189246177673, -0.2860935628414154, -0.011486335657536983, 0.006254015490412712, -0.07313117384910583, -0.030211616307497025, 0.1305801123380661, 0.1495271772146225, 0.02491520345211029, 1.2607284784317017, 0.14532071352005005, 0.042088598012924194, -0.040231045335531235, -0.8144838809967041, -0.8504485487937927, 0.8831175565719604, -0.011504855938255787, -0.6284288167953491, -0.40523460507392883, -0.41259291768074036]} +{"t": 17.0348, "q": [-0.32668337225914, 0.005109860096126795, -0.007245015352964401, 0.626656711101532, -0.322003573179245, -0.0016120636137202382, -0.3641977310180664, 0.016294283792376518, -0.014931963756680489, 0.5986274480819702, -0.2861143946647644, -0.011493435129523277, 0.006240623537451029, -0.07312357425689697, -0.03020641952753067, 0.1306520253419876, 0.1495751142501831, 0.02490321919322014, 1.260704517364502, 0.14527277648448944, 0.042088598012924194, -0.040231045335531235, -0.8144359588623047, -0.8502088785171509, 0.8831415176391602, -0.011516840197145939, -0.6284048557281494, -0.40521061420440674, -0.41259291768074036]} +{"t": 17.0515, "q": [-0.32668337225914, 0.005084293428808451, -0.007204839959740639, 0.6266311407089233, -0.322003573179245, -0.0016120636137202382, -0.36421477794647217, 0.016285762190818787, -0.014918571338057518, 0.5986274480819702, -0.2861102521419525, -0.011486231349408627, 0.006267406977713108, -0.07312357425689697, -0.03020641952753067, 0.130604088306427, 0.14953915774822235, 0.02491520345211029, 1.2607405185699463, 0.1453087329864502, 0.042088598012924194, -0.040231045335531235, -0.8143760561943054, -0.850053071975708, 0.8831415176391602, -0.01152882445603609, -0.6284048557281494, -0.4051986336708069, -0.41259291768074036]} +{"t": 17.0682, "q": [-0.32668337225914, 0.005101337563246489, -0.007218231912702322, 0.6266226172447205, -0.3219994008541107, -0.0016047655371949077, -0.36423182487487793, 0.016268718987703323, -0.014905179850757122, 0.5986274480819702, -0.2861061096191406, -0.011479026637971401, 0.0062272315844893456, -0.07312357425689697, -0.03020641952753067, 0.13064004480838776, 0.14949122071266174, 0.024891234934329987, 1.2607284784317017, 0.1452847570180893, 0.042088598012924194, -0.040231045335531235, -0.8143041133880615, -0.8498613238334656, 0.88315349817276, -0.011516840197145939, -0.6284048557281494, -0.4051986336708069, -0.4126048982143402]} +{"t": 17.0849, "q": [-0.3267004191875458, 0.0051183816976845264, -0.007218231912702322, 0.6266226172447205, -0.3219994008541107, -0.0016047655371949077, -0.3642488718032837, 0.016285762190818787, -0.014918571338057518, 0.5986104607582092, -0.2861018776893616, -0.01150074414908886, 0.0062272315844893456, -0.07312357425689697, -0.03020641952753067, 0.1306280493736267, 0.1495271772146225, 0.024891234934329987, 1.2607284784317017, 0.1452847570180893, 0.04206462949514389, -0.04021906107664108, -0.8142202496528625, -0.849681556224823, 0.88315349817276, -0.011492871679365635, -0.6283928751945496, -0.40521061420440674, -0.4126048982143402]} +{"t": 17.1017, "q": [-0.3267004191875458, 0.005075771827250719, -0.007218231912702322, 0.6265970468521118, -0.3219994008541107, -0.0016047655371949077, -0.3642488718032837, 0.01624315232038498, -0.014891788363456726, 0.5986274480819702, -0.28611433506011963, -0.011522356420755386, 0.006240623537451029, -0.07312357425689697, -0.03020641952753067, 0.13059210777282715, 0.149599090218544, 0.024891234934329987, 1.2607405185699463, 0.14534468948841095, 0.042088598012924194, -0.04021906107664108, -0.8141962885856628, -0.849597692489624, 0.8831774592399597, -0.011492871679365635, -0.6283928751945496, -0.40523460507392883, -0.41259291768074036]} +{"t": 17.1184, "q": [-0.32670894265174866, 0.005075771827250719, -0.007218231912702322, 0.6265885233879089, -0.3219953179359436, -0.0016119845677167177, -0.3642573654651642, 0.01625167392194271, -0.01486500445753336, 0.5986189246177673, -0.28610605001449585, -0.011507948860526085, 0.006254015490412712, -0.07312357425689697, -0.03020641952753067, 0.130604088306427, 0.14956313371658325, 0.02491520345211029, 1.2607524394989014, 0.14534468948841095, 0.0421125665307045, -0.040231045335531235, -0.8141483664512634, -0.8494658470153809, 0.8832014203071594, -0.011480887420475483, -0.6283928751945496, -0.4052225947380066, -0.41259291768074036]} +{"t": 17.1351, "q": [-0.3267004191875458, 0.005084293428808451, -0.0071914480067789555, 0.6265714764595032, -0.3219953179359436, -0.0016119845677167177, -0.3642403483390808, 0.01625167392194271, -0.014878395944833755, 0.5986104607582092, -0.28611433506011963, -0.011522356420755386, 0.0062272315844893456, -0.0731387659907341, -0.03021680749952793, 0.13061606884002686, 0.1495511531829834, 0.024927187711000443, 1.2607165575027466, 0.1453326940536499, 0.042088598012924194, -0.040231045335531235, -0.8141363859176636, -0.8493939638137817, 0.8832014203071594, -0.011492871679365635, -0.6283808946609497, -0.40523460507392883, -0.41259291768074036]} +{"t": 17.1519, "q": [-0.32668337225914, 0.005075771827250719, -0.007218231912702322, 0.6265629529953003, -0.32199522852897644, -0.001597467577084899, -0.3642403483390808, 0.016260195523500443, -0.014891788363456726, 0.5986019372940063, -0.2861185371875763, -0.011500638909637928, 0.006267406977713108, -0.07312357425689697, -0.03020641952753067, 0.13056813180446625, 0.14953915774822235, 0.02490321919322014, 1.2607284784317017, 0.1453326940536499, 0.042088598012924194, -0.040231045335531235, -0.8141962885856628, -0.8494299054145813, 0.8832014203071594, -0.011480887420475483, -0.6284048557281494, -0.4052225947380066, -0.4126048982143402]} +{"t": 17.1686, "q": [-0.3267004191875458, 0.005067249294370413, -0.007204839959740639, 0.6265714764595032, -0.32199522852897644, -0.001597467577084899, -0.3642403483390808, 0.016260195523500443, -0.014878395944833755, 0.5986104607582092, -0.2861185371875763, -0.011500638909637928, 0.006280798930674791, -0.07312357425689697, -0.03020641952753067, 0.13056813180446625, 0.1495032161474228, 0.024927187711000443, 1.2607284784317017, 0.14527277648448944, 0.042088598012924194, -0.040231045335531235, -0.8143041133880615, -0.8494299054145813, 0.8831654787063599, -0.011492871679365635, -0.6284048557281494, -0.4052225947380066, -0.41259291768074036]} +{"t": 17.1853, "q": [-0.32668337225914, 0.005067249294370413, -0.007218231912702322, 0.626579999923706, -0.3219994008541107, -0.0016047655371949077, -0.3642403483390808, 0.016260195523500443, -0.014891788363456726, 0.5986104607582092, -0.28611019253730774, -0.011515152640640736, 0.006267406977713108, -0.07313117384910583, -0.030211616307497025, 0.13061606884002686, 0.14940734207630157, 0.024891234934329987, 1.2607284784317017, 0.14527277648448944, 0.042100582271814346, -0.040231045335531235, -0.8143760561943054, -0.8494418859481812, 0.8831175565719604, -0.011480887420475483, -0.6284048557281494, -0.4052225947380066, -0.4125809371471405]} +{"t": 17.202, "q": [-0.32667484879493713, 0.005050205159932375, -0.007218231912702322, 0.6265544295310974, -0.3219911456108093, -0.001604686607606709, -0.3642403483390808, 0.01624315232038498, -0.014905179850757122, 0.5986019372940063, -0.28610605001449585, -0.011507948860526085, 0.006254015490412712, -0.07313117384910583, -0.030211616307497025, 0.13064004480838776, 0.1495511531829834, 0.02490321919322014, 1.2607524394989014, 0.14529675245285034, 0.04207661375403404, -0.04021906107664108, -0.8144239783287048, -0.8495017886161804, 0.8831175565719604, -0.011468903161585331, -0.6284048557281494, -0.4052225947380066, -0.41259291768074036]} +{"t": 17.2189, "q": [-0.3266492784023285, 0.005067249294370413, -0.007231623865664005, 0.6265885233879089, -0.3219953179359436, -0.0016119845677167177, -0.36421477794647217, 0.016260195523500443, -0.014891788363456726, 0.5986104607582092, -0.28611019253730774, -0.011515152640640736, 0.006280798930674791, -0.07312357425689697, -0.03020641952753067, 0.1306520253419876, 0.14953915774822235, 0.024891234934329987, 1.2607284784317017, 0.14532071352005005, 0.042088598012924194, -0.04021906107664108, -0.8144359588623047, -0.8495617508888245, 0.88315349817276, -0.011444934643805027, -0.6284168362617493, -0.40521061420440674, -0.41259291768074036]} +{"t": 17.2356, "q": [-0.3267004191875458, 0.005067249294370413, -0.007231623865664005, 0.6265629529953003, -0.32199522852897644, -0.001597467577084899, -0.3642403483390808, 0.016285762190818787, -0.014905179850757122, 0.5986189246177673, -0.28610605001449585, -0.011507948860526085, 0.006280798930674791, -0.07313117384910583, -0.030211616307497025, 0.13064004480838776, 0.1495751142501831, 0.024879250675439835, 1.2607284784317017, 0.14532071352005005, 0.04207661375403404, -0.040231045335531235, -0.8144719004631042, -0.8495617508888245, 0.8831415176391602, -0.011420967057347298, -0.6284048557281494, -0.4052225947380066, -0.4126048982143402]} +{"t": 17.2524, "q": [-0.32666632533073425, 0.005067249294370413, -0.007231623865664005, 0.6265544295310974, -0.3219953179359436, -0.0016119845677167177, -0.36421477794647217, 0.01625167392194271, -0.014918571338057518, 0.5986104607582092, -0.2861185371875763, -0.011500638909637928, 0.006280798930674791, -0.07313117384910583, -0.030211616307497025, 0.13061606884002686, 0.14949122071266174, 0.024879250675439835, 1.2607405185699463, 0.1452847570180893, 0.042088598012924194, -0.040231045335531235, -0.8145797848701477, -0.8495257496833801, 0.8831415176391602, -0.011420967057347298, -0.628440797328949, -0.4052225947380066, -0.4126048982143402]} +{"t": 17.2692, "q": [-0.32668337225914, 0.005058727692812681, -0.007231623865664005, 0.6265544295310974, -0.3219953179359436, -0.0016119845677167177, -0.3642403483390808, 0.016294283792376518, -0.014931963756680489, 0.5986019372940063, -0.2861185371875763, -0.011500638909637928, 0.006280798930674791, -0.07315383851528168, -0.030207635834813118, 0.13059210777282715, 0.14953915774822235, 0.024879250675439835, 1.2606805562973022, 0.14521285891532898, 0.042088598012924194, -0.04021906107664108, -0.814639687538147, -0.8495017886161804, 0.88315349817276, -0.01143295131623745, -0.6284527778625488, -0.40523460507392883, -0.4125809371471405]} +{"t": 17.2859, "q": [-0.32671746611595154, 0.005067249294370413, -0.007231623865664005, 0.6265373826026917, -0.32199522852897644, -0.001597467577084899, -0.3642488718032837, 0.016260195523500443, -0.014945355243980885, 0.5985934138298035, -0.2861226499080658, -0.011507842689752579, 0.006294190883636475, -0.07313117384910583, -0.030211616307497025, 0.1305561512708664, 0.149599090218544, 0.024867268279194832, 1.260704517364502, 0.14529675245285034, 0.042088598012924194, -0.04021906107664108, -0.8146277070045471, -0.8494418859481812, 0.8831415176391602, -0.01143295131623745, -0.6284527778625488, -0.4052225947380066, -0.41259291768074036]} +{"t": 17.3027, "q": [-0.3266918957233429, 0.005041682627052069, -0.007218231912702322, 0.6265032887458801, -0.3219911456108093, -0.001604686607606709, -0.36426588892936707, 0.016277240589261055, -0.014918571338057518, 0.5986104607582092, -0.2861267924308777, -0.01151504646986723, 0.006361150648444891, -0.07313117384910583, -0.030211616307497025, 0.1305801123380661, 0.1495511531829834, 0.02490321919322014, 1.2607284784317017, 0.14522483944892883, 0.04207661375403404, -0.040231045335531235, -0.8145438432693481, -0.8493939638137817, 0.88315349817276, -0.01143295131623745, -0.6284767389297485, -0.40523460507392883, -0.4126048982143402]} +{"t": 17.3194, "q": [-0.32670894265174866, 0.005041682627052069, -0.007231623865664005, 0.6264777779579163, -0.3219953179359436, -0.0016119845677167177, -0.3642488718032837, 0.016268718987703323, -0.014958747662603855, 0.5986104607582092, -0.28613924980163574, -0.01150775421410799, 0.00638793408870697, -0.07312357425689697, -0.03020641952753067, 0.13061606884002686, 0.14956313371658325, 0.02490321919322014, 1.2607405185699463, 0.1452607959508896, 0.04207661375403404, -0.040231045335531235, -0.8144838809967041, -0.849310040473938, 0.8831774592399597, -0.01143295131623745, -0.6284887194633484, -0.40521061420440674, -0.41259291768074036]} +{"t": 17.3361, "q": [-0.3267004191875458, 0.005041682627052069, -0.007231623865664005, 0.6264522075653076, -0.322003573179245, -0.0016120636137202382, -0.3642573654651642, 0.016260195523500443, -0.014918571338057518, 0.5986189246177673, -0.28613924980163574, -0.01150775421410799, 0.00642810994759202, -0.07312357425689697, -0.03020641952753067, 0.13061606884002686, 0.1495511531829834, 0.024867268279194832, 1.2607405185699463, 0.14529675245285034, 0.042100582271814346, -0.04021906107664108, -0.8144359588623047, -0.8492022156715393, 0.8832014203071594, -0.01143295131623745, -0.628524661064148, -0.4052225947380066, -0.41259291768074036]} +{"t": 17.3528, "q": [-0.3267004191875458, 0.004999072756618261, -0.007231623865664005, 0.6264351606369019, -0.3219994008541107, -0.0016047655371949077, -0.3642573654651642, 0.016277240589261055, -0.014891788363456726, 0.5986019372940063, -0.28613510727882385, -0.01150055043399334, 0.00642810994759202, -0.07315383851528168, -0.030207635834813118, 0.1306280493736267, 0.14953915774822235, 0.02491520345211029, 1.2607405185699463, 0.1452607959508896, 0.04207661375403404, -0.04021906107664108, -0.8143520951271057, -0.8490464091300964, 0.883213460445404, -0.011420967057347298, -0.6285006999969482, -0.40521061420440674, -0.41259291768074036]} +{"t": 17.3696, "q": [-0.32670894265174866, 0.004999072756618261, -0.0072584073059260845, 0.6264351606369019, -0.3219911456108093, -0.001604686607606709, -0.3642573654651642, 0.016260195523500443, -0.014878395944833755, 0.5986019372940063, -0.28613510727882385, -0.01150055043399334, 0.00642810994759202, -0.0731387659907341, -0.03021680749952793, 0.13061606884002686, 0.149599090218544, 0.02497512474656105, 1.2607405185699463, 0.1453326940536499, 0.042088598012924194, -0.04021906107664108, -0.8143760561943054, -0.8489265441894531, 0.8832374215126038, -0.011444934643805027, -0.628524661064148, -0.40523460507392883, -0.41259291768074036]} +{"t": 17.3863, "q": [-0.32670894265174866, 0.004964983556419611, -0.007218231912702322, 0.6264436841011047, -0.3219911456108093, -0.001604686607606709, -0.3642573654651642, 0.01625167392194271, -0.014905179850757122, 0.5986189246177673, -0.28613924980163574, -0.01150775421410799, 0.006414717994630337, -0.07312357425689697, -0.03020641952753067, 0.13061606884002686, 0.14953915774822235, 0.02491520345211029, 1.2607284784317017, 0.1453326940536499, 0.04207661375403404, -0.04021906107664108, -0.814328134059906, -0.8488906025886536, 0.8832494020462036, -0.01143295131623745, -0.6285006999969482, -0.40523460507392883, -0.41259291768074036]} +{"t": 17.4031, "q": [-0.3267345130443573, 0.004956461954861879, -0.007231623865664005, 0.6264351606369019, -0.32199522852897644, -0.001597467577084899, -0.36426588892936707, 0.01625167392194271, -0.014878395944833755, 0.5985848903656006, -0.2861558496952057, -0.01150768343359232, 0.006414717994630337, -0.07313863933086395, -0.030197247862815857, 0.13056813180446625, 0.14945527911186218, 0.024891234934329987, 1.2607405185699463, 0.14532071352005005, 0.042088598012924194, -0.040231045335531235, -0.8143041133880615, -0.8489145636558533, 0.8832733631134033, -0.01143295131623745, -0.628524661064148, -0.40523460507392883, -0.41259291768074036]} +{"t": 17.4198, "q": [-0.3267345130443573, 0.004930895287543535, -0.007218231912702322, 0.6264181137084961, -0.32200348377227783, -0.0015975285787135363, -0.3642829358577728, 0.016234630718827248, -0.014905179850757122, 0.5985763669013977, -0.2861517369747162, -0.011486010625958443, 0.006414717994630337, -0.07313863933086395, -0.030197247862815857, 0.13056813180446625, 0.14953915774822235, 0.02490321919322014, 1.2607284784317017, 0.14532071352005005, 0.04207661375403404, -0.040231045335531235, -0.8143160939216614, -0.8489025831222534, 0.8832853436470032, -0.011408982798457146, -0.6285126805305481, -0.40521061420440674, -0.41259291768074036]} +{"t": 17.4366, "q": [-0.32671746611595154, 0.004905329551547766, -0.007218231912702322, 0.6264181137084961, -0.32200348377227783, -0.0015975285787135363, -0.36427441239356995, 0.01625167392194271, -0.01486500445753336, 0.5985763669013977, -0.28614339232444763, -0.011514975689351559, 0.006441501900553703, -0.07312357425689697, -0.03020641952753067, 0.1305321753025055, 0.1495511531829834, 0.02490321919322014, 1.260704517364502, 0.14534468948841095, 0.04207661375403404, -0.04021906107664108, -0.8143640756607056, -0.8488786220550537, 0.8832853436470032, -0.011396998539566994, -0.6285366415977478, -0.40521061420440674, -0.41259291768074036]} +{"t": 17.4535, "q": [-0.3267345130443573, 0.004879762884229422, -0.007218231912702322, 0.6264181137084961, -0.32199522852897644, -0.001597467577084899, -0.36427441239356995, 0.01625167392194271, -0.014905179850757122, 0.5986104607582092, -0.28614339232444763, -0.011514975689351559, 0.006441501900553703, -0.07314623892307281, -0.030202442780137062, 0.1305561512708664, 0.14953915774822235, 0.024879250675439835, 1.2606686353683472, 0.14532071352005005, 0.042088598012924194, -0.040231045335531235, -0.8143640756607056, -0.8488906025886536, 0.8832733631134033, -0.01137303002178669, -0.628524661064148, -0.40521061420440674, -0.4126048982143402]} +{"t": 17.4702, "q": [-0.3267259895801544, 0.004845674615353346, -0.007231623865664005, 0.6263754963874817, -0.32200348377227783, -0.0015975285787135363, -0.36426588892936707, 0.016260195523500443, -0.014931963756680489, 0.5985848903656006, -0.28613924980163574, -0.01150775421410799, 0.00646828580647707, -0.07314623892307281, -0.030202442780137062, 0.13056813180446625, 0.14958709478378296, 0.02490321919322014, 1.2607165575027466, 0.14534468948841095, 0.042088598012924194, -0.04021906107664108, -0.8143401145935059, -0.8488786220550537, 0.8832853436470032, -0.011385014280676842, -0.6285126805305481, -0.40521061420440674, -0.4126048982143402]} +{"t": 17.487, "q": [-0.3267430365085602, 0.0048541962169110775, -0.007204839959740639, 0.6263754963874817, -0.32199522852897644, -0.001597467577084899, -0.3642914593219757, 0.016260195523500443, -0.014931963756680489, 0.5985763669013977, -0.2861558794975281, -0.01147876214236021, 0.006521853152662516, -0.07313863933086395, -0.030197247862815857, 0.130604088306427, 0.14943130314350128, 0.024891234934329987, 1.260704517364502, 0.14532071352005005, 0.042088598012924194, -0.04024302959442139, -0.814328134059906, -0.8488306999206543, 0.8832853436470032, -0.01137303002178669, -0.6285366415977478, -0.4052225947380066, -0.41259291768074036]} +{"t": 17.5037, "q": [-0.32676008343696594, 0.004845674615353346, -0.007231623865664005, 0.6263669729232788, -0.32200348377227783, -0.0015975285787135363, -0.3642914593219757, 0.01624315232038498, -0.014918571338057518, 0.5985848903656006, -0.2861517071723938, -0.011500479653477669, 0.006548637058585882, -0.07314623892307281, -0.030202442780137062, 0.130604088306427, 0.14956313371658325, 0.02490321919322014, 1.2607405185699463, 0.1452847570180893, 0.042088598012924194, -0.04024302959442139, -0.8143401145935059, -0.8487947583198547, 0.8832853436470032, -0.011361045762896538, -0.6285366415977478, -0.4052225947380066, -0.41259291768074036]} +{"t": 17.5204, "q": [-0.3267430365085602, 0.004871240351349115, -0.007231623865664005, 0.6263669729232788, -0.32199931144714355, -0.0015902306186035275, -0.3642914593219757, 0.016294283792376518, -0.014918571338057518, 0.5985848903656006, -0.2861475646495819, -0.0114932581782341, 0.006575420964509249, -0.07313863933086395, -0.030197247862815857, 0.13061606884002686, 0.1495271772146225, 0.024891234934329987, 1.2607165575027466, 0.1453087329864502, 0.042088598012924194, -0.04024302959442139, -0.8143520951271057, -0.8487228155136108, 0.8832613825798035, -0.01137303002178669, -0.6285366415977478, -0.40521061420440674, -0.41259291768074036]} +{"t": 17.5372, "q": [-0.3267430365085602, 0.004845674615353346, -0.007218231912702322, 0.6263584494590759, -0.32200348377227783, -0.0015975285787135363, -0.3642914593219757, 0.01624315232038498, -0.014931963756680489, 0.5985848903656006, -0.2861558496952057, -0.01150768343359232, 0.006575420964509249, -0.07313863933086395, -0.030197247862815857, 0.13056813180446625, 0.14956313371658325, 0.02490321919322014, 1.2607165575027466, 0.14536865055561066, 0.04207661375403404, -0.040231045335531235, -0.8143760561943054, -0.8486149907112122, 0.8832733631134033, -0.011361045762896538, -0.6285486221313477, -0.40521061420440674, -0.4126048982143402]} +{"t": 17.5541, "q": [-0.32676008343696594, 0.00483715208247304, -0.007245015352964401, 0.626349925994873, -0.32199522852897644, -0.001597467577084899, -0.3642914593219757, 0.016285762190818787, -0.014905179850757122, 0.5985593199729919, -0.2861517071723938, -0.011500479653477669, 0.006642380263656378, -0.07315371185541153, -0.030188074335455894, 0.13054417073726654, 0.1495511531829834, 0.0249631404876709, 1.2607165575027466, 0.14532071352005005, 0.042088598012924194, -0.040231045335531235, -0.8143880367279053, -0.8485550284385681, 0.8832613825798035, -0.011349061504006386, -0.6285366415977478, -0.40521061420440674, -0.41259291768074036]} +{"t": 17.5708, "q": [-0.3267430365085602, 0.00483715208247304, -0.007231623865664005, 0.6263328790664673, -0.32199931144714355, -0.0015902306186035275, -0.3642914593219757, 0.01625167392194271, -0.014918571338057518, 0.5985763669013977, -0.28614342212677, -0.01148605439811945, 0.0066289883106946945, -0.0731537714600563, -0.030197856947779655, 0.1305561512708664, 0.14946725964546204, 0.02490321919322014, 1.2606925964355469, 0.14529675245285034, 0.042088598012924194, -0.04024302959442139, -0.814328134059906, -0.8484472036361694, 0.8833093047142029, -0.011337077245116234, -0.6285366415977478, -0.40521061420440674, -0.4125809371471405]} +{"t": 17.5875, "q": [-0.3267345130443573, 0.004820107948035002, -0.007231623865664005, 0.6263328790664673, -0.32199522852897644, -0.001597467577084899, -0.3642914593219757, 0.01624315232038498, -0.014958747662603855, 0.5985848903656006, -0.2861475646495819, -0.0114932581782341, 0.0066289883106946945, -0.07313863933086395, -0.030197247862815857, 0.13049623370170593, 0.14949122071266174, 0.02490321919322014, 1.260704517364502, 0.14527277648448944, 0.04207661375403404, -0.04025501385331154, -0.8142921328544617, -0.8482434749603271, 0.8833572268486023, -0.011325092986226082, -0.6285606026649475, -0.4052225947380066, -0.41259291768074036]} diff --git a/Data/G1/change_battery.jsonl b/Data/G1/change_battery.jsonl new file mode 100644 index 0000000..5f95c92 --- /dev/null +++ b/Data/G1/change_battery.jsonl @@ -0,0 +1,1791 @@ +{"meta": {"hz": 60.0, "motors": 29}} +{"t": 0.0, "q": [-0.361163854598999, -0.013280864804983139, 0.00965555664151907, 0.6272277235984802, -0.295504629611969, 0.023743262514472008, -0.3479204773902893, 0.004218447022140026, -0.005919218063354492, 0.6231881976127625, -0.329052597284317, 0.002989309374243021, 0.0027989062946289778, 0.008115666918456554, -0.03323470801115036, 0.28880783915519714, 0.21666280925273895, -0.005201153922826052, 0.9821192622184753, 0.08121709525585175, 0.06204233318567276, 0.017796574160456657, 0.29257088899612427, -0.22161228954792023, 0.029325399547815323, 0.9865414500236511, -0.1188715323805809, 0.07364306598901749, -0.021104220300912857]} +{"t": 0.0167, "q": [-0.361163854598999, -0.013272343203425407, 0.009628772735595703, 0.6271936297416687, -0.2955128848552704, 0.023728763684630394, -0.3478863835334778, 0.004235491156578064, -0.005946001503616571, 0.623145580291748, -0.32904013991355896, 0.0029674179386347532, 0.0034149333368986845, 0.008814769797027111, -0.03331649303436279, 0.28777721524238586, 0.2144816815853119, -0.0049255164340138435, 0.9834015369415283, 0.0809534415602684, 0.06252170354127884, 0.017844511196017265, 0.29177993535995483, -0.22038990259170532, 0.029828736558556557, 0.9882311820983887, -0.11871573328971863, 0.07402656227350235, -0.021319936960935593]} +{"t": 0.0336, "q": [-0.3612064719200134, -0.01328938640654087, 0.009601988829672337, 0.6272192001342773, -0.2955128848552704, 0.023728763684630394, -0.3479204773902893, 0.004218447022140026, -0.005919218063354492, 0.6231541037559509, -0.3290402293205261, 0.0029819400515407324, 0.0037899063900113106, 0.008981923572719097, -0.033307503908872604, 0.2867705225944519, 0.2129596769809723, -0.004877579864114523, 0.9842524528503418, 0.08068978786468506, 0.06309694796800613, 0.01794038526713848, 0.29113277792930603, -0.2190956026315689, 0.030296120792627335, 0.9898490905761719, -0.11863184720277786, 0.07423029094934464, -0.021523669362068176]} +{"t": 0.0505, "q": [-0.3612149953842163, -0.013306431472301483, 0.009628772735595703, 0.6272277235984802, -0.2955087125301361, 0.02372155152261257, -0.3479204773902893, 0.004209924954921007, -0.005919218063354492, 0.6231626272201538, -0.3291149139404297, 0.0030988024082034826, 0.0038434739690274, 0.009133849292993546, -0.03325914219021797, 0.28606346249580383, 0.21052688360214233, -0.004985437728464603, 0.9844681620597839, 0.08046209067106247, 0.06322877109050751, 0.018012290820479393, 0.29058149456977844, -0.21713019907474518, 0.030799459666013718, 0.99074786901474, -0.11861985921859741, 0.07438608258962631, -0.021571604534983635]} +{"t": 0.0673, "q": [-0.36118942499160767, -0.01328938640654087, 0.00965555664151907, 0.6272361874580383, -0.2955087125301361, 0.02372155152261257, -0.3479204773902893, 0.004201402887701988, -0.005879042204469442, 0.6231541037559509, -0.3291066288948059, 0.0030842081177979708, 0.0038970415480434895, 0.009187047369778156, -0.03327416628599167, 0.28558409214019775, 0.20747090876102448, -0.005141232628375292, 0.9845041036605835, 0.08036621659994125, 0.06327670812606812, 0.017976338043808937, 0.2900422215461731, -0.214457705616951, 0.03133874759078026, 0.9914190173149109, -0.11858391016721725, 0.07443401962518692, -0.02154763787984848]} +{"t": 0.084, "q": [-0.3611809015274048, -0.013272343203425407, 0.009628772735595703, 0.6272277235984802, -0.29553356766700745, 0.02369251847267151, -0.34793752431869507, 0.004192880820482969, -0.005852258298546076, 0.6231626272201538, -0.32919368147850037, 0.003208422102034092, 0.003977392800152302, 0.00928585696965456, -0.03331892192363739, 0.2852725088596344, 0.20418722927570343, -0.005273059010505676, 0.984611988067627, 0.08028232306241989, 0.06334861367940903, 0.017976338043808937, 0.28943103551864624, -0.21194101870059967, 0.03163835406303406, 0.9919103384017944, -0.11851200461387634, 0.07450592517852783, -0.02154763787984848]} +{"t": 0.1009, "q": [-0.36119794845581055, -0.013255298137664795, 0.009628772735595703, 0.6272106766700745, -0.2955377399921417, 0.02369973249733448, -0.3479290008544922, 0.004201402887701988, -0.005852258298546076, 0.6231626272201538, -0.32929757237434387, 0.003390904515981674, 0.003937217406928539, 0.009346656501293182, -0.03333890065550804, 0.28504478931427, 0.2012990266084671, -0.005309011787176132, 0.9847317934036255, 0.08022240549325943, 0.06336060166358948, 0.01798832230269909, 0.28890371322631836, -0.20995163917541504, 0.03189002349972725, 0.9919822812080383, -0.11845207959413528, 0.07449394464492798, -0.021559620276093483]} +{"t": 0.1177, "q": [-0.36119794845581055, -0.013272343203425407, 0.009682340547442436, 0.6272277235984802, -0.2955377399921417, 0.02369973249733448, -0.3479290008544922, 0.00418435875326395, -0.0058388663455843925, 0.6231541037559509, -0.3292850852012634, 0.0033690130803734064, 0.003964001312851906, 0.009331475012004375, -0.033358484506607056, 0.284817099571228, 0.1983509063720703, -0.005309011787176132, 0.984767735004425, 0.08012653142213821, 0.06337258219718933, 0.01800030656158924, 0.2882445752620697, -0.20838171243667603, 0.03196192905306816, 0.9921620488166809, -0.11840414255857468, 0.07450592517852783, -0.02154763787984848]} +{"t": 0.1344, "q": [-0.3612235188484192, -0.013280864804983139, 0.00966894906014204, 0.6272192001342773, -0.2955377399921417, 0.02369973249733448, -0.34795457124710083, 0.004209924954921007, -0.00579869095236063, 0.6231711506843567, -0.3292892575263977, 0.0033763102255761623, 0.003964001312851906, 0.009346656501293182, -0.03333890065550804, 0.2847212255001068, 0.19579827785491943, -0.005332980304956436, 0.9847557544708252, 0.0800546258687973, 0.06338457018136978, 0.018012290820479393, 0.2878131568431854, -0.20723122358322144, 0.031985897570848465, 0.9922099709510803, -0.11842811107635498, 0.07452989369630814, -0.021535653620958328]} +{"t": 0.1511, "q": [-0.3612235188484192, -0.013272343203425407, 0.00966894906014204, 0.6272106766700745, -0.295541912317276, 0.023706963285803795, -0.3479630947113037, 0.004209924954921007, -0.005825474392622709, 0.6231796741485596, -0.3291853070259094, 0.0031793059315532446, 0.003977392800152302, 0.009316278621554375, -0.03335840627551079, 0.2845294773578644, 0.1938088834285736, -0.005452822428196669, 0.9847557544708252, 0.0800066888332367, 0.06338457018136978, 0.017976338043808937, 0.28733378648757935, -0.20627248287200928, 0.03196192905306816, 0.9923418164253235, -0.11838017404079437, 0.07455386221408844, -0.021583588793873787]} +{"t": 0.1678, "q": [-0.36124905943870544, -0.013263821601867676, 0.00958859734237194, 0.6272192001342773, -0.2955459952354431, 0.023685215041041374, -0.3479716181755066, 0.004209924954921007, -0.005865650251507759, 0.6231626272201538, -0.3291895389556885, 0.003201124956831336, 0.004004176706075668, 0.009301074780523777, -0.03334849327802658, 0.2843976616859436, 0.1925385594367981, -0.005476790945976973, 0.9847797155380249, 0.07994676381349564, 0.06337258219718933, 0.017976338043808937, 0.2870701253414154, -0.20538565516471863, 0.03197391331195831, 0.9924017190933228, -0.11840414255857468, 0.07455386221408844, -0.021559620276093483]} +{"t": 0.1846, "q": [-0.36124053597450256, -0.013246776536107063, 0.009521638043224812, 0.6272021532058716, -0.29552945494651794, 0.023714231327176094, -0.34795457124710083, 0.00424401368945837, -0.005946001503616571, 0.6231626272201538, -0.32920607924461365, 0.0032158098183572292, 0.004004176706075668, 0.009301074780523777, -0.03334849327802658, 0.2842777967453003, 0.1920112520456314, -0.005476790945976973, 0.9847797155380249, 0.07992279529571533, 0.06338457018136978, 0.01800030656158924, 0.2868903577327728, -0.2046186625957489, 0.03196192905306816, 0.9924136996269226, -0.11841613054275513, 0.07456585019826889, -0.021559620276093483]} +{"t": 0.2013, "q": [-0.3612661063671112, -0.013238254934549332, 0.009535029530525208, 0.6272192001342773, -0.2955211102962494, 0.02369980327785015, -0.34795457124710083, 0.004278101958334446, -0.005959393456578255, 0.6231711506843567, -0.32919758558273315, 0.0031721533741801977, 0.003977392800152302, 0.009316271170973778, -0.03334857523441315, 0.28415796160697937, 0.19186744093894958, -0.005476790945976973, 0.9847797155380249, 0.07994676381349564, 0.06342051923274994, 0.018012290820479393, 0.2867944836616516, -0.203995481133461, 0.031985897570848465, 0.992461621761322, -0.11842811107635498, 0.07456585019826889, -0.021583588793873787]} +{"t": 0.218, "q": [-0.36124053597450256, -0.0132297333329916, 0.009521638043224812, 0.6271936297416687, -0.29552116990089417, 0.02371426671743393, -0.3479630947113037, 0.004278101958334446, -0.005946001503616571, 0.6231711506843567, -0.3291269540786743, 0.003048066282644868, 0.003964001312851906, 0.009323866106569767, -0.03334369882941246, 0.28413400053977966, 0.19187943637371063, -0.005440838169306517, 0.9847797155380249, 0.07992279529571533, 0.06339655071496964, 0.018012290820479393, 0.28666266798973083, -0.2034921497106552, 0.03199788182973862, 0.9924496412277222, -0.11839216202497482, 0.07460179924964905, -0.02159557305276394]} +{"t": 0.2349, "q": [-0.36118942499160767, -0.013246776536107063, 0.009535029530525208, 0.6271936297416687, -0.2955127954483032, 0.023685375228524208, -0.34795457124710083, 0.004286624025553465, -0.005932609550654888, 0.6231711506843567, -0.3291309177875519, 0.003026319434866309, 0.004004176706075668, 0.009331452660262585, -0.03332899138331413, 0.2840980291366577, 0.1919393539428711, -0.00535694882273674, 0.9848037362098694, 0.07992279529571533, 0.06340853869915009, 0.018012290820479393, 0.2865907549858093, -0.20313261449337006, 0.03197391331195831, 0.992461621761322, -0.11840414255857468, 0.07456585019826889, -0.021559620276093483]} +{"t": 0.2516, "q": [-0.3612149953842163, -0.013238254934549332, 0.009561813436448574, 0.6271936297416687, -0.29549628496170044, 0.023728836327791214, -0.34794604778289795, 0.004286624025553465, -0.005946001503616571, 0.6231796741485596, -0.32913506031036377, 0.003033616580069065, 0.003977392800152302, 0.00933905504643917, -0.03333394601941109, 0.2840980291366577, 0.1919633150100708, -0.00535694882273674, 0.9848157167434692, 0.07986287772655487, 0.06339655071496964, 0.018012290820479393, 0.2865787744522095, -0.2028449922800064, 0.03197391331195831, 0.992461621761322, -0.11839216202497482, 0.07455386221408844, -0.02160755731165409]} +{"t": 0.2683, "q": [-0.3612149953842163, -0.013246776536107063, 0.009601988829672337, 0.6272021532058716, -0.29549211263656616, 0.023721622303128242, -0.34795457124710083, 0.004286624025553465, -0.005919218063354492, 0.6231796741485596, -0.32907313108444214, 0.002982229460030794, 0.0039506093598902225, 0.009384622797369957, -0.033304691314697266, 0.284074068069458, 0.1919393539428711, -0.005344964563846588, 0.9848157167434692, 0.07992279529571533, 0.06343250721693039, 0.018012290820479393, 0.2865907549858093, -0.20266523957252502, 0.03196192905306816, 0.992461621761322, -0.11838017404079437, 0.07456585019826889, -0.02159557305276394]} +{"t": 0.2852, "q": [-0.36123204231262207, -0.013272343203425407, 0.009615381248295307, 0.6272021532058716, -0.29548391699790955, 0.023765064775943756, -0.34793752431869507, 0.004286624025553465, -0.005932609550654888, 0.6231711506843567, -0.32906481623649597, 0.0029676170088350773, 0.003964001312851906, 0.00938461534678936, -0.033294860273599625, 0.2840980291366577, 0.1919393539428711, -0.005368933081626892, 0.9848636388778687, 0.07992279529571533, 0.06342051923274994, 0.018012290820479393, 0.2865907549858093, -0.2024974524974823, 0.03196192905306816, 0.992461621761322, -0.11833223700523376, 0.07456585019826889, -0.021571604534983635]} +{"t": 0.302, "q": [-0.36119794845581055, -0.013272343203425407, 0.00958859734237194, 0.6272192001342773, -0.29549217224121094, 0.023750565946102142, -0.3479290008544922, 0.004278101958334446, -0.005959393456578255, 0.6231881976127625, -0.32903996109962463, 0.002938356250524521, 0.003977392800152302, 0.009354222565889359, -0.03329470008611679, 0.28411003947257996, 0.1919393539428711, -0.005368933081626892, 0.9848875999450684, 0.07989882677793503, 0.06343250721693039, 0.018012290820479393, 0.2866027355194092, -0.20238959789276123, 0.03196192905306816, 0.9924736022949219, -0.11834422498941422, 0.0746137872338295, -0.021619541570544243]} +{"t": 0.3187, "q": [-0.36118942499160767, -0.013280864804983139, 0.00958859734237194, 0.6272277235984802, -0.29548391699790955, 0.023765064775943756, -0.3479290008544922, 0.004278101958334446, -0.005959393456578255, 0.6231881976127625, -0.3290275037288666, 0.002916446654126048, 0.004030960611999035, 0.009354230016469955, -0.03330453112721443, 0.2840980291366577, 0.1919393539428711, -0.005368933081626892, 0.9848875999450684, 0.07989882677793503, 0.06343250721693039, 0.018024275079369545, 0.2866027355194092, -0.20235364139080048, 0.03196192905306816, 0.9924736022949219, -0.11834422498941422, 0.07460179924964905, -0.021583588793873787]} +{"t": 0.3354, "q": [-0.36118942499160767, -0.01328938640654087, 0.009628772735595703, 0.6272277235984802, -0.29548388719558716, 0.023750601336359978, -0.3479204773902893, 0.004269579891115427, -0.005932609550654888, 0.6231796741485596, -0.32901114225387573, 0.0029308421071618795, 0.003964001312851906, 0.009369411505758762, -0.03328494727611542, 0.284074068069458, 0.1919393539428711, -0.005368933081626892, 0.9848995804786682, 0.07988684624433517, 0.0634564757347107, 0.018024275079369545, 0.2865667939186096, -0.20235364139080048, 0.03194994479417801, 0.9924736022949219, -0.11838017404079437, 0.0746137872338295, -0.02160755731165409]} +{"t": 0.3522, "q": [-0.3611809015274048, -0.013306431472301483, 0.009682340547442436, 0.6272447109222412, -0.29548799991607666, 0.02374335192143917, -0.34789490699768066, 0.004286624025553465, -0.005919218063354492, 0.6231881976127625, -0.3290030360221863, 0.0029452915769070387, 0.004004176706075668, 0.009392202831804752, -0.0332801528275013, 0.284074068069458, 0.1919393539428711, -0.00535694882273674, 0.9849115610122681, 0.07992279529571533, 0.0634564757347107, 0.018036259338259697, 0.2865428328514099, -0.20232968032360077, 0.03194994479417801, 0.992461621761322, -0.11838017404079437, 0.0745898187160492, -0.021619541570544243]} +{"t": 0.3689, "q": [-0.361163854598999, -0.013323476538062096, 0.009762692265212536, 0.627261757850647, -0.29548388719558716, 0.023750601336359978, -0.34784379601478577, 0.004269579891115427, -0.005919218063354492, 0.6231881976127625, -0.32899895310401917, 0.0029525163117796183, 0.004004176706075668, 0.00939221028238535, -0.03328998386859894, 0.2840980291366577, 0.1919633150100708, -0.005368933081626892, 0.9849115610122681, 0.07989882677793503, 0.06343250721693039, 0.018024275079369545, 0.28653085231781006, -0.2022697478532791, 0.03196192905306816, 0.992461621761322, -0.11839216202497482, 0.07460179924964905, -0.021619541570544243]} +{"t": 0.3856, "q": [-0.3611382842063904, -0.013323476538062096, 0.009695732034742832, 0.6272702813148499, -0.2954963445663452, 0.023757779970765114, -0.34782674908638, 0.004286624025553465, -0.005905826110392809, 0.6231967210769653, -0.3289908468723297, 0.002966966014355421, 0.004030960611999035, 0.00936941895633936, -0.03329478204250336, 0.2840980291366577, 0.19195133447647095, -0.005368933081626892, 0.9849115610122681, 0.07988684624433517, 0.0634564757347107, 0.01804824359714985, 0.2865188717842102, -0.2022218108177185, 0.03196192905306816, 0.9924736022949219, -0.11834422498941422, 0.07460179924964905, -0.02159557305276394]} +{"t": 0.4023, "q": [-0.36114680767059326, -0.013314953073859215, 0.009722515940666199, 0.6272702813148499, -0.29548805952072144, 0.02375781536102295, -0.34782674908638, 0.004252535756677389, -0.005879042204469442, 0.6231967210769653, -0.3289703130722046, 0.002974064089357853, 0.004044352564960718, 0.009399804286658764, -0.03328510746359825, 0.28411003947257996, 0.1919393539428711, -0.005368933081626892, 0.9848995804786682, 0.07991081476211548, 0.0634564757347107, 0.018024275079369545, 0.2865428328514099, -0.2021978497505188, 0.03193796053528786, 0.992461621761322, -0.11835620552301407, 0.0746137872338295, -0.021583588793873787]} +{"t": 0.4192, "q": [-0.3611212372779846, -0.013323476538062096, 0.009749299846589565, 0.6272958517074585, -0.29548394680023193, 0.023779526352882385, -0.3477926552295685, 0.004252535756677389, -0.005865650251507759, 0.6232052445411682, -0.32896220684051514, 0.0029885137919336557, 0.004004176706075668, 0.00937702041119337, -0.03329973667860031, 0.2841220200061798, 0.1919393539428711, -0.005368933081626892, 0.9849115610122681, 0.07989882677793503, 0.0634564757347107, 0.018024275079369545, 0.28650686144828796, -0.20218586921691895, 0.03193796053528786, 0.992461621761322, -0.11835620552301407, 0.07462576776742935, -0.02159557305276394]} +{"t": 0.4359, "q": [-0.3611382842063904, -0.013331998139619827, 0.009749299846589565, 0.6272788047790527, -0.29548388719558716, 0.023750601336359978, -0.3477926552295685, 0.004261057823896408, -0.005892434157431126, 0.6231881976127625, -0.32897892594337463, 0.00303224241361022, 0.003977392800152302, 0.00938461534678936, -0.033294860273599625, 0.28411003947257996, 0.1919393539428711, -0.005368933081626892, 0.9849355220794678, 0.07989882677793503, 0.0634564757347107, 0.018024275079369545, 0.2865188717842102, -0.20218586921691895, 0.03194994479417801, 0.9924855828285217, -0.11834422498941422, 0.0746137872338295, -0.021631525829434395]} +{"t": 0.4527, "q": [-0.36110419034957886, -0.013306431472301483, 0.009722515940666199, 0.6272958517074585, -0.29547974467277527, 0.023757850751280785, -0.3477926552295685, 0.004252535756677389, -0.005905826110392809, 0.6231967210769653, -0.3289872109889984, 0.003046836471185088, 0.003964001312851906, 0.00940742064267397, -0.03330972418189049, 0.2841220200061798, 0.1919393539428711, -0.005368933081626892, 0.9849235415458679, 0.07992279529571533, 0.0634564757347107, 0.018036259338259697, 0.28650686144828796, -0.20216189324855804, 0.031985897570848465, 0.9924736022949219, -0.11834422498941422, 0.07462576776742935, -0.02160755731165409]} +{"t": 0.4696, "q": [-0.3610871434211731, -0.013340519741177559, 0.009749299846589565, 0.6272958517074585, -0.2954879403114319, 0.02371440827846527, -0.3477756083011627, 0.004252535756677389, -0.005892434157431126, 0.6232052445411682, -0.3289749324321747, 0.003053989028558135, 0.003990784753113985, 0.009415008127689362, -0.03329501673579216, 0.2840980291366577, 0.19195133447647095, -0.005368933081626892, 0.9849355220794678, 0.07991081476211548, 0.0634564757347107, 0.018024275079369545, 0.2865188717842102, -0.20213793218135834, 0.03196192905306816, 0.9924736022949219, -0.11836819350719452, 0.07462576776742935, -0.021631525829434395]} +{"t": 0.4863, "q": [-0.36111271381378174, -0.013323476538062096, 0.009722515940666199, 0.627261757850647, -0.2954838275909424, 0.0237361378967762, -0.3477926552295685, 0.00424401368945837, -0.005879042204469442, 0.6232052445411682, -0.32899966835975647, 0.003068727906793356, 0.004030960611999035, 0.009399826638400555, -0.033314600586891174, 0.28411003947257996, 0.1919393539428711, -0.005368933081626892, 0.9849355220794678, 0.07989882677793503, 0.06346845626831055, 0.018012290820479393, 0.2864948809146881, -0.2021259367465973, 0.03193796053528786, 0.992461621761322, -0.11836819350719452, 0.0746137872338295, -0.021619541570544243]} +{"t": 0.503, "q": [-0.3611297607421875, -0.013306431472301483, 0.00973590835928917, 0.6272702813148499, -0.2954838275909424, 0.0237361378967762, -0.3477841317653656, 0.00424401368945837, -0.005892434157431126, 0.6232052445411682, -0.32899966835975647, 0.003068727906793356, 0.004004176706075668, 0.009392231702804565, -0.03331947699189186, 0.28411003947257996, 0.19195133447647095, -0.00535694882273674, 0.9849355220794678, 0.07991081476211548, 0.06346845626831055, 0.018024275079369545, 0.28653085231781006, -0.2021259367465973, 0.03197391331195831, 0.9924736022949219, -0.11833223700523376, 0.07462576776742935, -0.021619541570544243]} +{"t": 0.5197, "q": [-0.36111271381378174, -0.013323476538062096, 0.009722515940666199, 0.6272702813148499, -0.2954838275909424, 0.0237361378967762, -0.3477926552295685, 0.004252535756677389, -0.005879042204469442, 0.6231967210769653, -0.3289954364299774, 0.0030469088815152645, 0.003977392800152302, 0.009407428093254566, -0.03331955522298813, 0.2840980291366577, 0.1919393539428711, -0.005368933081626892, 0.9849475026130676, 0.07989882677793503, 0.063480444252491, 0.018012290820479393, 0.28653085231781006, -0.20210197567939758, 0.03196192905306816, 0.9924855828285217, -0.11836819350719452, 0.07462576776742935, -0.021631525829434395]} +{"t": 0.5365, "q": [-0.36110419034957886, -0.013323476538062096, 0.009695732034742832, 0.627261757850647, -0.29549211263656616, 0.023721622303128242, -0.3477926552295685, 0.004261057823896408, -0.005879042204469442, 0.6232308149337769, -0.32900357246398926, 0.0030324591789394617, 0.004004176706075668, 0.009415023028850555, -0.03331467881798744, 0.284074068069458, 0.1919393539428711, -0.005368933081626892, 0.9849594831466675, 0.07989882677793503, 0.063480444252491, 0.018036259338259697, 0.28650686144828796, -0.20210197567939758, 0.03194994479417801, 0.9925335049629211, -0.11834422498941422, 0.0746137872338295, -0.021619541570544243]} +{"t": 0.5532, "q": [-0.3611212372779846, -0.013306431472301483, 0.009695732034742832, 0.6272532343864441, -0.2954796552658081, 0.023728923872113228, -0.34780117869377136, 0.004269579891115427, -0.005892434157431126, 0.6232137680053711, -0.3290160298347473, 0.0030543506145477295, 0.004030960611999035, 0.009415023028850555, -0.03331467881798744, 0.28408604860305786, 0.19195133447647095, -0.005368933081626892, 0.9849475026130676, 0.07988684624433517, 0.063480444252491, 0.018024275079369545, 0.28653085231781006, -0.20210197567939758, 0.03197391331195831, 0.9925335049629211, -0.11833223700523376, 0.07462576776742935, -0.02160755731165409]} +{"t": 0.5699, "q": [-0.36110419034957886, -0.013297909870743752, 0.009682340547442436, 0.6272361874580383, -0.29549211263656616, 0.023721622303128242, -0.3478182256221771, 0.004269579891115427, -0.005905826110392809, 0.6232052445411682, -0.32900771498680115, 0.0030397563241422176, 0.004004176706075668, 0.00940742064267397, -0.03330972418189049, 0.2840980291366577, 0.1919393539428711, -0.00535694882273674, 0.9849594831466675, 0.07989882677793503, 0.06344448775053024, 0.018036259338259697, 0.2865188717842102, -0.20210197567939758, 0.03196192905306816, 0.9925335049629211, -0.11834422498941422, 0.0746137872338295, -0.02160755731165409]} +{"t": 0.5867, "q": [-0.36111271381378174, -0.01328938640654087, 0.00965555664151907, 0.6272447109222412, -0.29549214243888855, 0.023736102506518364, -0.34782674908638, 0.004261057823896408, -0.005905826110392809, 0.623222291469574, -0.32901185750961304, 0.0030470534693449736, 0.004004176706075668, 0.00940742064267397, -0.03330972418189049, 0.2840980291366577, 0.1919393539428711, -0.00535694882273674, 0.9849714636802673, 0.07987485826015472, 0.063480444252491, 0.018036259338259697, 0.28650686144828796, -0.20210197567939758, 0.03196192905306816, 0.9925215244293213, -0.11839216202497482, 0.0746377557516098, -0.021631525829434395]} +{"t": 0.6034, "q": [-0.3611297607421875, -0.01328938640654087, 0.00966894906014204, 0.6272277235984802, -0.2954879701137543, 0.023728888481855392, -0.3478352725505829, 0.004269579891115427, -0.005892434157431126, 0.6232052445411682, -0.32900771498680115, 0.0030397563241422176, 0.004004176706075668, 0.00940742064267397, -0.03330972418189049, 0.284074068069458, 0.19195133447647095, -0.005368933081626892, 0.9849475026130676, 0.07989882677793503, 0.06346845626831055, 0.018036259338259697, 0.2865188717842102, -0.20208999514579773, 0.03196192905306816, 0.9925455451011658, -0.11835620552301407, 0.07460179924964905, -0.021619541570544243]} +{"t": 0.6201, "q": [-0.3611382842063904, -0.01328938640654087, 0.009695732034742832, 0.6272277235984802, -0.29549211263656616, 0.023721622303128242, -0.3478352725505829, 0.004269579891115427, -0.005892434157431126, 0.6232052445411682, -0.32901594042778015, 0.003039828734472394, 0.004030960611999035, 0.009392231702804565, -0.03331947699189186, 0.28406208753585815, 0.1919393539428711, -0.00535694882273674, 0.9849834442138672, 0.07989882677793503, 0.06346845626831055, 0.01804824359714985, 0.28650686144828796, -0.20208999514579773, 0.03194994479417801, 0.9925215244293213, -0.11834422498941422, 0.0746377557516098, -0.021619541570544243]} +{"t": 0.6368, "q": [-0.36114680767059326, -0.01328938640654087, 0.009695732034742832, 0.6271936297416687, -0.2955004572868347, 0.023736048489809036, -0.34784379601478577, 0.00424401368945837, -0.005892434157431126, 0.6232052445411682, -0.32902008295059204, 0.00304712587967515, 0.003977392800152302, 0.009399826638400555, -0.033314600586891174, 0.284074068069458, 0.1919393539428711, -0.00535694882273674, 0.9850074648857117, 0.07988684624433517, 0.0634564757347107, 0.018024275079369545, 0.28648290038108826, -0.20208999514579773, 0.03193796053528786, 0.9925335049629211, -0.11833223700523376, 0.07467370480298996, -0.021631525829434395]} +{"t": 0.6538, "q": [-0.36111271381378174, -0.013297909870743752, 0.009695732034742832, 0.6272106766700745, -0.29549628496170044, 0.023728836327791214, -0.34785231947898865, 0.004278101958334446, -0.005892434157431126, 0.6232052445411682, -0.3290034830570221, 0.003017937298864126, 0.004004176706075668, 0.00940742064267397, -0.03330972418189049, 0.28406208753585815, 0.1919393539428711, -0.00535694882273674, 0.9850074648857117, 0.07989882677793503, 0.063480444252491, 0.018036259338259697, 0.2864709198474884, -0.20208999514579773, 0.03194994479417801, 0.9925215244293213, -0.11830826848745346, 0.0746377557516098, -0.021619541570544243]} +{"t": 0.6705, "q": [-0.36114680767059326, -0.01328938640654087, 0.00966894906014204, 0.6272106766700745, -0.29549628496170044, 0.023728836327791214, -0.347869336605072, 0.004269579891115427, -0.005865650251507759, 0.6231967210769653, -0.32901594042778015, 0.003039828734472394, 0.003977392800152302, 0.009422595612704754, -0.03328030928969383, 0.28406208753585815, 0.1919393539428711, -0.005368933081626892, 0.9850314259529114, 0.07991081476211548, 0.06346845626831055, 0.018036259338259697, 0.28645893931388855, -0.20207799971103668, 0.03193796053528786, 0.9925335049629211, -0.11832025647163391, 0.07467370480298996, -0.021631525829434395]} +{"t": 0.6872, "q": [-0.3611382842063904, -0.01328938640654087, 0.00966894906014204, 0.6271936297416687, -0.29549214243888855, 0.023736102506518364, -0.347869336605072, 0.004269579891115427, -0.005879042204469442, 0.6232052445411682, -0.329024076461792, 0.00302536110393703, 0.004030960611999035, 0.00940740667283535, -0.033290062099695206, 0.28403812646865845, 0.1919393539428711, -0.00535694882273674, 0.9850553870201111, 0.07989882677793503, 0.0634564757347107, 0.018024275079369545, 0.28643497824668884, -0.20208999514579773, 0.03197391331195831, 0.9925335049629211, -0.11830826848745346, 0.07468569278717041, -0.021631525829434395]} +{"t": 0.7041, "q": [-0.3611297607421875, -0.013272343203425407, 0.009682340547442436, 0.6271936297416687, -0.29549628496170044, 0.023728836327791214, -0.347869336605072, 0.004269579891115427, -0.005865650251507759, 0.6232137680053711, -0.3290199041366577, 0.003018063958734274, 0.003990784753113985, 0.009415008127689362, -0.03329501673579216, 0.28403812646865845, 0.1919393539428711, -0.005368933081626892, 0.9850553870201111, 0.07991081476211548, 0.06346845626831055, 0.01806022785604, 0.28641098737716675, -0.20207799971103668, 0.03193796053528786, 0.9925335049629211, -0.11830826848745346, 0.07469767332077026, -0.021631525829434395]} +{"t": 0.7208, "q": [-0.36115533113479614, -0.013272343203425407, 0.00965555664151907, 0.6272021532058716, -0.29549211263656616, 0.023721622303128242, -0.34786084294319153, 0.004269579891115427, -0.005865650251507759, 0.6231967210769653, -0.32902413606643677, 0.0030399009119719267, 0.004004176706075668, 0.009399819187819958, -0.03330476954579353, 0.28403812646865845, 0.1919393539428711, -0.00535694882273674, 0.9850913286209106, 0.07988684624433517, 0.0634564757347107, 0.01804824359714985, 0.28641098737716675, -0.20208999514579773, 0.03194994479417801, 0.9925335049629211, -0.11834422498941422, 0.07464973628520966, -0.021619541570544243]} +{"t": 0.7375, "q": [-0.36115533113479614, -0.013280864804983139, 0.00966894906014204, 0.6271765828132629, -0.2955004572868347, 0.023736048489809036, -0.347869336605072, 0.004269579891115427, -0.005865650251507759, 0.6232052445411682, -0.329024076461792, 0.00302536110393703, 0.004044352564960718, 0.009407414123415947, -0.03329989314079285, 0.2840261459350586, 0.1919633150100708, -0.00535694882273674, 0.9851152896881104, 0.07988684624433517, 0.06346845626831055, 0.01804824359714985, 0.28638702630996704, -0.20206601917743683, 0.03194994479417801, 0.9925335049629211, -0.11836819350719452, 0.07468569278717041, -0.02159557305276394]} +{"t": 0.7543, "q": [-0.3611382842063904, -0.013272343203425407, 0.009682340547442436, 0.6271765828132629, -0.2954963147640228, 0.023743316531181335, -0.347869336605072, 0.004269579891115427, -0.005892434157431126, 0.6231881976127625, -0.32902422547340393, 0.003054422792047262, 0.004017568659037352, 0.009399819187819958, -0.03330476954579353, 0.28403812646865845, 0.19195133447647095, -0.00535694882273674, 0.9851272702217102, 0.07988684624433517, 0.06346845626831055, 0.01804824359714985, 0.2863990068435669, -0.20206601917743683, 0.03194994479417801, 0.9925335049629211, -0.11835620552301407, 0.0746617242693901, -0.02159557305276394]} +{"t": 0.771, "q": [-0.3611723780632019, -0.013280864804983139, 0.00966894906014204, 0.6271851062774658, -0.2955004572868347, 0.023736048489809036, -0.34786084294319153, 0.004252535756677389, -0.0058388663455843925, 0.6232052445411682, -0.32902008295059204, 0.00304712587967515, 0.004017568659037352, 0.009415015578269958, -0.0333048477768898, 0.28403812646865845, 0.1919393539428711, -0.00535694882273674, 0.9851392507553101, 0.07986287772655487, 0.06349242478609085, 0.018036259338259697, 0.2863990068435669, -0.20206601917743683, 0.03197391331195831, 0.9925455451011658, -0.11833223700523376, 0.0746617242693901, -0.021619541570544243]} +{"t": 0.7877, "q": [-0.3611809015274048, -0.013263821601867676, 0.009682340547442436, 0.6271765828132629, -0.2955128848552704, 0.023728763684630394, -0.347869336605072, 0.004252535756677389, -0.005865650251507759, 0.6231881976127625, -0.32906144857406616, 0.0030910533387213945, 0.004017568659037352, 0.009415008127689362, -0.03329501673579216, 0.2840501070022583, 0.1919633150100708, -0.00535694882273674, 0.9851512312889099, 0.07991081476211548, 0.063480444252491, 0.018036259338259697, 0.2863990068435669, -0.20206601917743683, 0.03196192905306816, 0.9925455451011658, -0.11830826848745346, 0.07467370480298996, -0.021631525829434395]} +{"t": 0.8045, "q": [-0.361163854598999, -0.01328938640654087, 0.00966894906014204, 0.6271765828132629, -0.2955004572868347, 0.023736048489809036, -0.3478863835334778, 0.004235491156578064, -0.005865650251507759, 0.6231881976127625, -0.3290739357471466, 0.0031129627022892237, 0.003977392800152302, 0.009407414123415947, -0.03329989314079285, 0.28406208753585815, 0.1919393539428711, -0.00535694882273674, 0.9851392507553101, 0.07991081476211548, 0.06349242478609085, 0.01804824359714985, 0.2863750457763672, -0.20206601917743683, 0.03197391331195831, 0.9925455451011658, -0.11832025647163391, 0.0746617242693901, -0.021631525829434395]} +{"t": 0.8212, "q": [-0.36115533113479614, -0.01328938640654087, 0.009642165154218674, 0.6271765828132629, -0.29550042748451233, 0.023721586912870407, -0.34786084294319153, 0.00424401368945837, -0.005865650251507759, 0.6231967210769653, -0.3290697932243347, 0.0031056657899171114, 0.003990784753113985, 0.009422610513865948, -0.033299971371889114, 0.28406208753585815, 0.1919393539428711, -0.00535694882273674, 0.9851632118225098, 0.07992279529571533, 0.06346845626831055, 0.01804824359714985, 0.28636306524276733, -0.20206601917743683, 0.03197391331195831, 0.9925335049629211, -0.11829628795385361, 0.07467370480298996, -0.021619541570544243]} +{"t": 0.838, "q": [-0.36118942499160767, -0.013272343203425407, 0.00965555664151907, 0.6271765828132629, -0.2955128848552704, 0.023728763684630394, -0.3478863835334778, 0.004261057823896408, -0.005865650251507759, 0.6231881976127625, -0.3290739357471466, 0.0031129627022892237, 0.004004176706075668, 0.009422610513865948, -0.033299971371889114, 0.2840501070022583, 0.1919393539428711, -0.00535694882273674, 0.9851751923561096, 0.07989882677793503, 0.06346845626831055, 0.01804824359714985, 0.28638702630996704, -0.20204205811023712, 0.03197391331195831, 0.9925455451011658, -0.11833223700523376, 0.07468569278717041, -0.021631525829434395]} +{"t": 0.8547, "q": [-0.36118942499160767, -0.013272343203425407, 0.009628772735595703, 0.6271680593490601, -0.29552939534187317, 0.023685304448008537, -0.3479119539260864, 0.004252535756677389, -0.005892434157431126, 0.6231967210769653, -0.3290822505950928, 0.0031275569926947355, 0.003977392800152302, 0.00943781342357397, -0.03330988436937332, 0.28406208753585815, 0.1919393539428711, -0.005368933081626892, 0.9851751923561096, 0.07988684624433517, 0.0634564757347107, 0.018036259338259697, 0.28636306524276733, -0.20206601917743683, 0.03197391331195831, 0.9925335049629211, -0.11830826848745346, 0.0746617242693901, -0.02160755731165409]} +{"t": 0.8714, "q": [-0.361163854598999, -0.013272343203425407, 0.009628772735595703, 0.6271765828132629, -0.2955128252506256, 0.023699838668107986, -0.34789490699768066, 0.00424401368945837, -0.005865650251507759, 0.6231796741485596, -0.3290739357471466, 0.0031129627022892237, 0.003990784753113985, 0.009422610513865948, -0.033299971371889114, 0.28406208753585815, 0.1919393539428711, -0.00535694882273674, 0.9851992130279541, 0.07988684624433517, 0.0635044127702713, 0.018036259338259697, 0.28631511330604553, -0.20206601917743683, 0.03193796053528786, 0.9925695061683655, -0.11830826848745346, 0.0746617242693901, -0.021619541570544243]} +{"t": 0.8882, "q": [-0.3611809015274048, -0.013280864804983139, 0.00965555664151907, 0.6271765828132629, -0.295512855052948, 0.023714302107691765, -0.34790343046188354, 0.004261057823896408, -0.005852258298546076, 0.6231881976127625, -0.3290780782699585, 0.0031202598474919796, 0.004057744517922401, 0.009422610513865948, -0.033299971371889114, 0.28406208753585815, 0.1919393539428711, -0.00535694882273674, 0.9851992130279541, 0.07991081476211548, 0.0634564757347107, 0.018036259338259697, 0.2863391041755676, -0.20206601917743683, 0.03194994479417801, 0.9925335049629211, -0.11834422498941422, 0.0746617242693901, -0.02159557305276394]} +{"t": 0.9049, "q": [-0.36119794845581055, -0.013280864804983139, 0.009615381248295307, 0.6271680593490601, -0.29552945494651794, 0.023714231327176094, -0.34790343046188354, 0.00424401368945837, -0.005879042204469442, 0.6231967210769653, -0.3290780782699585, 0.0031202598474919796, 0.004044352564960718, 0.00942261703312397, -0.033309802412986755, 0.2840501070022583, 0.1919393539428711, -0.00535694882273674, 0.9852471351623535, 0.07991081476211548, 0.0634564757347107, 0.018024275079369545, 0.2862911522388458, -0.20204205811023712, 0.03193796053528786, 0.9925335049629211, -0.11833223700523376, 0.07470966130495071, -0.02160755731165409]} +{"t": 0.9216, "q": [-0.36123204231262207, -0.013255298137664795, 0.009642165154218674, 0.6271680593490601, -0.29552945494651794, 0.023714231327176094, -0.34790343046188354, 0.00424401368945837, -0.005865650251507759, 0.6231881976127625, -0.32908207178115845, 0.0030985132325440645, 0.003977392800152302, 0.009422610513865948, -0.033299971371889114, 0.28403812646865845, 0.1919393539428711, -0.00535694882273674, 0.9852591156959534, 0.07989882677793503, 0.0635044127702713, 0.018024275079369545, 0.2862911522388458, -0.20204205811023712, 0.03193796053528786, 0.9925455451011658, -0.11834422498941422, 0.07468569278717041, -0.02160755731165409]} +{"t": 0.9384, "q": [-0.3612149953842163, -0.013272343203425407, 0.00965555664151907, 0.6271510124206543, -0.29552116990089417, 0.02371426671743393, -0.34790343046188354, 0.00424401368945837, -0.005865650251507759, 0.6231881976127625, -0.3290863037109375, 0.003120332257822156, 0.004057744517922401, 0.009415015578269958, -0.0333048477768898, 0.2840261459350586, 0.19195133447647095, -0.00535694882273674, 0.9852710962295532, 0.07988684624433517, 0.06346845626831055, 0.018036259338259697, 0.28627917170524597, -0.20204205811023712, 0.03196192905306816, 0.9925575256347656, -0.11835620552301407, 0.07467370480298996, -0.021631525829434395]} +{"t": 0.9551, "q": [-0.3612661063671112, -0.013272343203425407, 0.009615381248295307, 0.6271595358848572, -0.2955170273780823, 0.023721514269709587, -0.3479290008544922, 0.00424401368945837, -0.005879042204469442, 0.6231796741485596, -0.32924410700798035, 0.0033831915352493525, 0.004030960611999035, 0.00943021196871996, -0.03330492973327637, 0.2840261459350586, 0.19195133447647095, -0.005368933081626892, 0.9852591156959534, 0.07989882677793503, 0.06349242478609085, 0.01804824359714985, 0.2862432301044464, -0.20204205811023712, 0.031985897570848465, 0.9925455451011658, -0.11834422498941422, 0.07469767332077026, -0.021643510088324547]} +{"t": 0.9718, "q": [-0.36124905943870544, -0.013255298137664795, 0.009628772735595703, 0.6271510124206543, -0.2955169975757599, 0.023707052692770958, -0.3479290008544922, 0.004252535756677389, -0.005919218063354492, 0.6231796741485596, -0.3292316198348999, 0.0033612819388508797, 0.004044352564960718, 0.009399819187819958, -0.03330476954579353, 0.2840261459350586, 0.19195133447647095, -0.005368933081626892, 0.9852710962295532, 0.07989882677793503, 0.06349242478609085, 0.018036259338259697, 0.2862432301044464, -0.20204205811023712, 0.03196192905306816, 0.9925335049629211, -0.11830826848745346, 0.07467370480298996, -0.021619541570544243]} +{"t": 0.9886, "q": [-0.36124905943870544, -0.013280864804983139, 0.009615381248295307, 0.6271595358848572, -0.29552945494651794, 0.023714231327176094, -0.3479290008544922, 0.004252535756677389, -0.005879042204469442, 0.6231881976127625, -0.3292108476161957, 0.0033247964456677437, 0.004044352564960718, 0.00942261703312397, -0.033309802412986755, 0.2840021550655365, 0.1919633150100708, -0.00535694882273674, 0.9852591156959534, 0.07989882677793503, 0.063480444252491, 0.018036259338259697, 0.2862432301044464, -0.20201808214187622, 0.03194994479417801, 0.9925575256347656, -0.11830826848745346, 0.07469767332077026, -0.021631525829434395]} +{"t": 1.0056, "q": [-0.3612661063671112, -0.013272343203425407, 0.009628772735595703, 0.6271510124206543, -0.29552945494651794, 0.023714231327176094, -0.3479290008544922, 0.00424401368945837, -0.005879042204469442, 0.6231796741485596, -0.3292026221752167, 0.0033247058745473623, 0.003990784753113985, 0.009437799453735352, -0.03329022228717804, 0.28403812646865845, 0.1919393539428711, -0.005368933081626892, 0.9852591156959534, 0.07989882677793503, 0.0635044127702713, 0.018024275079369545, 0.28620725870132446, -0.20203006267547607, 0.03193796053528786, 0.9925335049629211, -0.11832025647163391, 0.07468569278717041, -0.021631525829434395]} +{"t": 1.0225, "q": [-0.3612746298313141, -0.013263821601867676, 0.009642165154218674, 0.6271510124206543, -0.2955170273780823, 0.023721514269709587, -0.34794604778289795, 0.00424401368945837, -0.005892434157431126, 0.6231796741485596, -0.3292108476161957, 0.0033247964456677437, 0.004044352564960718, 0.009445400908589363, -0.033295176923274994, 0.28403812646865845, 0.19195133447647095, -0.00535694882273674, 0.9852830767631531, 0.07989882677793503, 0.06349242478609085, 0.018036259338259697, 0.2861713171005249, -0.20204205811023712, 0.03193796053528786, 0.9925335049629211, -0.11833223700523376, 0.07470966130495071, -0.021619541570544243]} +{"t": 1.0392, "q": [-0.3612746298313141, -0.013263821601867676, 0.009615381248295307, 0.6271510124206543, -0.2955169975757599, 0.023707052692770958, -0.34795457124710083, 0.004235491156578064, -0.005852258298546076, 0.6231796741485596, -0.3292067050933838, 0.0033174811396747828, 0.004004176706075668, 0.009452995844185352, -0.03329030051827431, 0.28403812646865845, 0.19195133447647095, -0.005344964563846588, 0.9852950572967529, 0.07988684624433517, 0.0635044127702713, 0.018036259338259697, 0.2861233651638031, -0.20201808214187622, 0.03196192905306816, 0.9925575256347656, -0.11830826848745346, 0.07469767332077026, -0.021631525829434395]} +{"t": 1.056, "q": [-0.3612746298313141, -0.013263821601867676, 0.009615381248295307, 0.6271339654922485, -0.29552528262138367, 0.023707017302513123, -0.34794604778289795, 0.004235491156578064, -0.005865650251507759, 0.6231711506843567, -0.3292025327682495, 0.003310183994472027, 0.004030960611999035, 0.009445400908589363, -0.033295176923274994, 0.28401416540145874, 0.1919393539428711, -0.00535694882273674, 0.9852950572967529, 0.07989882677793503, 0.0635044127702713, 0.018012290820479393, 0.2860994040966034, -0.20203006267547607, 0.03196192905306816, 0.9925455451011658, -0.11830826848745346, 0.07467370480298996, -0.021631525829434395]} +{"t": 1.0729, "q": [-0.3612149953842163, -0.013280864804983139, 0.009628772735595703, 0.6271510124206543, -0.29552116990089417, 0.02371426671743393, -0.34794604778289795, 0.00424401368945837, -0.005852258298546076, 0.6231881976127625, -0.3291443884372711, 0.003208006266504526, 0.004017568659037352, 0.009437799453735352, -0.03329022228717804, 0.2840261459350586, 0.1919393539428711, -0.00535694882273674, 0.9852950572967529, 0.07992279529571533, 0.063480444252491, 0.018036259338259697, 0.2860994040966034, -0.20201808214187622, 0.03196192905306816, 0.9925335049629211, -0.11833223700523376, 0.07467370480298996, -0.021619541570544243]} +{"t": 1.0896, "q": [-0.36123204231262207, -0.01328938640654087, 0.009682340547442436, 0.6271424889564514, -0.2955169975757599, 0.023707052692770958, -0.3479290008544922, 0.00424401368945837, -0.0058388663455843925, 0.6231796741485596, -0.32908207178115845, 0.0030985132325440645, 0.004017568659037352, 0.009452988393604755, -0.033280469477176666, 0.2840261459350586, 0.1919393539428711, -0.005344964563846588, 0.9852950572967529, 0.07991081476211548, 0.063480444252491, 0.018036259338259697, 0.2860395014286041, -0.20201808214187622, 0.03197391331195831, 0.9925455451011658, -0.11833223700523376, 0.07469767332077026, -0.021619541570544243]} +{"t": 1.1063, "q": [-0.3612064719200134, -0.013272343203425407, 0.009628772735595703, 0.6271424889564514, -0.2955169975757599, 0.023707052692770958, -0.3479204773902893, 0.00424401368945837, -0.005879042204469442, 0.6231796741485596, -0.3290945291519165, 0.0031204044353216887, 0.003990784753113985, 0.009460575878620148, -0.03326576203107834, 0.28401416540145874, 0.1919633150100708, -0.00535694882273674, 0.9853070378303528, 0.07989882677793503, 0.06351639330387115, 0.018036259338259697, 0.2859915494918823, -0.20201808214187622, 0.03194994479417801, 0.9925335049629211, -0.11828429996967316, 0.07469767332077026, -0.021619541570544243]} +{"t": 1.1231, "q": [-0.3612064719200134, -0.013272343203425407, 0.009628772735595703, 0.6271510124206543, -0.2955169975757599, 0.023707052692770958, -0.34790343046188354, 0.00424401368945837, -0.005892434157431126, 0.6231881976127625, -0.3290945291519165, 0.0031204044353216887, 0.004030960611999035, 0.00944539438933134, -0.03328534588217735, 0.28401416540145874, 0.1919393539428711, -0.005368933081626892, 0.9852950572967529, 0.07988684624433517, 0.06351639330387115, 0.018024275079369545, 0.2860035300254822, -0.20203006267547607, 0.03196192905306816, 0.9925335049629211, -0.11832025647163391, 0.07469767332077026, -0.021619541570544243]} +{"t": 1.1398, "q": [-0.3612149953842163, -0.013272343203425407, 0.009628772735595703, 0.6271510124206543, -0.29550036787986755, 0.02370712347328663, -0.3479204773902893, 0.004261057823896408, -0.005892434157431126, 0.6231796741485596, -0.3290780782699585, 0.0031202598474919796, 0.004057744517922401, 0.009452988393604755, -0.033280469477176666, 0.28401416540145874, 0.19195133447647095, -0.00535694882273674, 0.9853190183639526, 0.07989882677793503, 0.06351639330387115, 0.01806022785604, 0.2859915494918823, -0.20200610160827637, 0.03193796053528786, 0.9925335049629211, -0.11830826848745346, 0.07468569278717041, -0.021631525829434395]} +{"t": 1.1567, "q": [-0.36118942499160767, -0.01328938640654087, 0.009642165154218674, 0.6271510124206543, -0.29550036787986755, 0.02370712347328663, -0.3479119539260864, 0.004269579891115427, -0.005879042204469442, 0.6231881976127625, -0.3290739357471466, 0.0031129627022892237, 0.004030960611999035, 0.00944539438933134, -0.03328534588217735, 0.28403812646865845, 0.1919393539428711, -0.00535694882273674, 0.9853309988975525, 0.07989882677793503, 0.06351639330387115, 0.018036259338259697, 0.28597956895828247, -0.20200610160827637, 0.03194994479417801, 0.9925575256347656, -0.11832025647163391, 0.07472164183855057, -0.0216554943472147]} +{"t": 1.1735, "q": [-0.36114680767059326, -0.01328938640654087, 0.009695732034742832, 0.6271424889564514, -0.2954963147640228, 0.023743316531181335, -0.34790343046188354, 0.004269579891115427, -0.005865650251507759, 0.6231967210769653, -0.32903239130973816, 0.0030399553943425417, 0.004057744517922401, 0.009452988393604755, -0.033280469477176666, 0.28403812646865845, 0.1919393539428711, -0.005344964563846588, 0.9853309988975525, 0.07991081476211548, 0.06354036182165146, 0.018036259338259697, 0.28597956895828247, -0.20200610160827637, 0.03196192905306816, 0.9925575256347656, -0.11834422498941422, 0.07469767332077026, -0.02160755731165409]} +{"t": 1.1902, "q": [-0.36114680767059326, -0.013280864804983139, 0.009682340547442436, 0.6271510124206543, -0.29549211263656616, 0.023721622303128242, -0.3478863835334778, 0.004261057823896408, -0.005879042204469442, 0.6231796741485596, -0.3290407061576843, 0.003054567612707615, 0.004071136470884085, 0.009460590779781342, -0.03328542411327362, 0.28403812646865845, 0.1919393539428711, -0.005344964563846588, 0.9853309988975525, 0.07992279529571533, 0.06351639330387115, 0.01806022785604, 0.2859675884246826, -0.20200610160827637, 0.03197391331195831, 0.9925575256347656, -0.11833223700523376, 0.07469767332077026, -0.021619541570544243]} +{"t": 1.2069, "q": [-0.361163854598999, -0.013272343203425407, 0.009695732034742832, 0.6271510124206543, -0.2955004572868347, 0.023736048489809036, -0.34790343046188354, 0.004261057823896408, -0.005879042204469442, 0.6232052445411682, -0.3290531635284424, 0.0030764590483158827, 0.004004176706075668, 0.009452988393604755, -0.033280469477176666, 0.2840261459350586, 0.1919393539428711, -0.00535694882273674, 0.9853429794311523, 0.07989882677793503, 0.06351639330387115, 0.018036259338259697, 0.2860035300254822, -0.20200610160827637, 0.03196192905306816, 0.9925455451011658, -0.11832025647163391, 0.07469767332077026, -0.021619541570544243]} +{"t": 1.2238, "q": [-0.36115533113479614, -0.01328938640654087, 0.009695732034742832, 0.6271595358848572, -0.2954961955547333, 0.023699909448623657, -0.34790343046188354, 0.00424401368945837, -0.005892434157431126, 0.6231881976127625, -0.3290531635284424, 0.0030764590483158827, 0.004004176706075668, 0.009452981874346733, -0.033270638436079025, 0.2840261459350586, 0.1919393539428711, -0.00535694882273674, 0.985366940498352, 0.07989882677793503, 0.0635283812880516, 0.018036259338259697, 0.2859915494918823, -0.20200610160827637, 0.03196192905306816, 0.9925575256347656, -0.11832025647163391, 0.07469767332077026, -0.021619541570544243]} +{"t": 1.2405, "q": [-0.3611723780632019, -0.01328938640654087, 0.009682340547442436, 0.6271510124206543, -0.2954879403114319, 0.02371440827846527, -0.34789490699768066, 0.004252535756677389, -0.005892434157431126, 0.6231967210769653, -0.32906126976013184, 0.00306200934574008, 0.004044352564960718, 0.009483374655246735, -0.03327079489827156, 0.28403812646865845, 0.19195133447647095, -0.00535694882273674, 0.985366940498352, 0.07988684624433517, 0.06351639330387115, 0.01806022785604, 0.28597956895828247, -0.20200610160827637, 0.03194994479417801, 0.9925695061683655, -0.11832025647163391, 0.07469767332077026, -0.021631525829434395]} +{"t": 1.2572, "q": [-0.36118942499160767, -0.01328938640654087, 0.009682340547442436, 0.6271510124206543, -0.29549628496170044, 0.023728836327791214, -0.3478863835334778, 0.004235491156578064, -0.005865650251507759, 0.6231881976127625, -0.329069584608078, 0.0030766036361455917, 0.004044352564960718, 0.009521354921162128, -0.03325624763965607, 0.28403812646865845, 0.19195133447647095, -0.005344964563846588, 0.985366940498352, 0.07991081476211548, 0.06351639330387115, 0.018036259338259697, 0.2859436273574829, -0.20198212563991547, 0.03196192905306816, 0.9925455451011658, -0.11830826848745346, 0.07469767332077026, -0.021631525829434395]} +{"t": 1.274, "q": [-0.3611723780632019, -0.013297909870743752, 0.009682340547442436, 0.6271424889564514, -0.29550042748451233, 0.023721586912870407, -0.3478863835334778, 0.004269579891115427, -0.005879042204469442, 0.6231881976127625, -0.3290531635284424, 0.0030764590483158827, 0.004044352564960718, 0.009498563595116138, -0.033261045813560486, 0.28403812646865845, 0.1919393539428711, -0.005344964563846588, 0.9853909611701965, 0.07988684624433517, 0.06351639330387115, 0.018036259338259697, 0.28595560789108276, -0.20200610160827637, 0.031985897570848465, 0.9925335049629211, -0.11834422498941422, 0.07469767332077026, -0.021643510088324547]} +{"t": 1.2907, "q": [-0.3611809015274048, -0.013297909870743752, 0.009682340547442436, 0.6271510124206543, -0.29549628496170044, 0.023728836327791214, -0.34789490699768066, 0.004261057823896408, -0.005892434157431126, 0.6231881976127625, -0.3290654420852661, 0.003069306490942836, 0.004030960611999035, 0.009498556144535542, -0.033251214772462845, 0.28401416540145874, 0.19195133447647095, -0.005344964563846588, 0.9853909611701965, 0.07989882677793503, 0.0635044127702713, 0.01804824359714985, 0.2859675884246826, -0.20198212563991547, 0.03196192905306816, 0.9925335049629211, -0.11832025647163391, 0.07469767332077026, -0.021631525829434395]} +{"t": 1.3074, "q": [-0.36118942499160767, -0.013280864804983139, 0.009682340547442436, 0.6271510124206543, -0.29549211263656616, 0.023721622303128242, -0.3478863835334778, 0.004252535756677389, -0.005865650251507759, 0.6231881976127625, -0.32906562089920044, 0.0030983504839241505, 0.004044352564960718, 0.009498563595116138, -0.033261045813560486, 0.2840261459350586, 0.19195133447647095, -0.00535694882273674, 0.9853909611701965, 0.07989882677793503, 0.0635044127702713, 0.01804824359714985, 0.2859675884246826, -0.20198212563991547, 0.03193796053528786, 0.9925575256347656, -0.11833223700523376, 0.07467370480298996, -0.021559620276093483]} +{"t": 1.3242, "q": [-0.3611723780632019, -0.01328938640654087, 0.009682340547442436, 0.6271510124206543, -0.29549211263656616, 0.023721622303128242, -0.3478863835334778, 0.00424401368945837, -0.005879042204469442, 0.6231967210769653, -0.32906967401504517, 0.0030911255162209272, 0.004057744517922401, 0.00950615108013153, -0.03324633836746216, 0.2840261459350586, 0.1919393539428711, -0.00535694882273674, 0.9854029417037964, 0.07988684624433517, 0.0635044127702713, 0.018036259338259697, 0.2859436273574829, -0.20200610160827637, 0.03196192905306816, 0.9925695061683655, -0.11830826848745346, 0.07467370480298996, -0.021619541570544243]} +{"t": 1.3411, "q": [-0.36118942499160767, -0.013297909870743752, 0.009682340547442436, 0.6271510124206543, -0.2955004572868347, 0.023736048489809036, -0.34790343046188354, 0.004252535756677389, -0.005879042204469442, 0.6231796741485596, -0.329069584608078, 0.0030766036361455917, 0.004084527958184481, 0.009506158530712128, -0.0332561694085598, 0.2840261459350586, 0.19195133447647095, -0.005344964563846588, 0.9854149222373962, 0.07988684624433517, 0.06351639330387115, 0.01804824359714985, 0.28593161702156067, -0.20198212563991547, 0.03194994479417801, 0.9925575256347656, -0.11833223700523376, 0.07468569278717041, -0.02160755731165409]} +{"t": 1.3579, "q": [-0.3611809015274048, -0.013297909870743752, 0.00966894906014204, 0.6271424889564514, -0.29550454020500183, 0.0237143374979496, -0.3478863835334778, 0.004252535756677389, -0.005879042204469442, 0.6231881976127625, -0.329069584608078, 0.0030766036361455917, 0.004044352564960718, 0.00949095468968153, -0.03324626013636589, 0.2840261459350586, 0.1919633150100708, -0.00535694882273674, 0.9853909611701965, 0.07991081476211548, 0.063480444252491, 0.01804824359714985, 0.28593161702156067, -0.20198212563991547, 0.03196192905306816, 0.9925575256347656, -0.11832025647163391, 0.07469767332077026, -0.021631525829434395]} +{"t": 1.3746, "q": [-0.3611809015274048, -0.013306431472301483, 0.00966894906014204, 0.6271510124206543, -0.2955004572868347, 0.023736048489809036, -0.34789490699768066, 0.00424401368945837, -0.005865650251507759, 0.6231796741485596, -0.3291070759296417, 0.003156835911795497, 0.004044352564960718, 0.009483367204666138, -0.03326096385717392, 0.28401416540145874, 0.1919633150100708, -0.00535694882273674, 0.9854029417037964, 0.07989882677793503, 0.06351639330387115, 0.018036259338259697, 0.28593161702156067, -0.20198212563991547, 0.03194994479417801, 0.9925455451011658, -0.11830826848745346, 0.07469767332077026, -0.021643510088324547]} +{"t": 1.3914, "q": [-0.36118942499160767, -0.01328938640654087, 0.00965555664151907, 0.6271339654922485, -0.29550454020500183, 0.0237143374979496, -0.34789490699768066, 0.004252535756677389, -0.005865650251507759, 0.6231796741485596, -0.3291070759296417, 0.003156835911795497, 0.004044352564960718, 0.009490962140262127, -0.03325609117746353, 0.2840021550655365, 0.1919393539428711, -0.005344964563846588, 0.9853909611701965, 0.07989882677793503, 0.06351639330387115, 0.018036259338259697, 0.2859436273574829, -0.20198212563991547, 0.03197391331195831, 0.9925695061683655, -0.11833223700523376, 0.07469767332077026, -0.021643510088324547]} +{"t": 1.4082, "q": [-0.3611809015274048, -0.013272343203425407, 0.009695732034742832, 0.6271510124206543, -0.2955128848552704, 0.023728763684630394, -0.3479119539260864, 0.004269579891115427, -0.0058388663455843925, 0.6231881976127625, -0.32911112904548645, 0.0031496111769229174, 0.004071136470884085, 0.009490962140262127, -0.03325609117746353, 0.28401416540145874, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.06349242478609085, 0.018036259338259697, 0.2859436273574829, -0.20198212563991547, 0.03193796053528786, 0.9925695061683655, -0.11830826848745346, 0.07469767332077026, -0.0216554943472147]} +{"t": 1.4249, "q": [-0.3612064719200134, -0.013272343203425407, 0.009682340547442436, 0.6271169185638428, -0.2955128848552704, 0.023728763684630394, -0.3479119539260864, 0.00424401368945837, -0.0058388663455843925, 0.6231796741485596, -0.3291319012641907, 0.0031860966701060534, 0.004044352564960718, 0.009490962140262127, -0.03325609117746353, 0.28401416540145874, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07987485826015472, 0.06351639330387115, 0.018036259338259697, 0.28593161702156067, -0.20198212563991547, 0.03197391331195831, 0.9925575256347656, -0.11830826848745346, 0.07468569278717041, -0.021643510088324547]} +{"t": 1.4416, "q": [-0.36119794845581055, -0.01328938640654087, 0.00965555664151907, 0.6271339654922485, -0.29553768038749695, 0.02367078885436058, -0.3479204773902893, 0.004252535756677389, -0.005879042204469442, 0.6231881976127625, -0.3291526734828949, 0.003222600556910038, 0.004057744517922401, 0.00950616504997015, -0.03326600044965744, 0.28401416540145874, 0.19195133447647095, -0.005344964563846588, 0.9854149222373962, 0.07991081476211548, 0.0635044127702713, 0.018036259338259697, 0.28593161702156067, -0.20198212563991547, 0.03193796053528786, 0.9925695061683655, -0.11833223700523376, 0.07469767332077026, -0.021631525829434395]} +{"t": 1.4585, "q": [-0.3612235188484192, -0.01328938640654087, 0.009628772735595703, 0.6271169185638428, -0.29552939534187317, 0.023685304448008537, -0.3479204773902893, 0.00424401368945837, -0.005865650251507759, 0.6231626272201538, -0.3292773365974426, 0.0034415866248309612, 0.004071136470884085, 0.009490962140262127, -0.03325609117746353, 0.2840261459350586, 0.1919393539428711, -0.00535694882273674, 0.9853909611701965, 0.07988684624433517, 0.0635044127702713, 0.018036259338259697, 0.2859436273574829, -0.2019701451063156, 0.03196192905306816, 0.9925575256347656, -0.11833223700523376, 0.07472164183855057, -0.021631525829434395]} +{"t": 1.4752, "q": [-0.3611809015274048, -0.013272343203425407, 0.009628772735595703, 0.6271083950996399, -0.2955211102962494, 0.02369980327785015, -0.3479119539260864, 0.00424401368945837, -0.005879042204469442, 0.6232052445411682, -0.32924824953079224, 0.0033904886804521084, 0.004017568659037352, 0.009506158530712128, -0.0332561694085598, 0.28401416540145874, 0.1919633150100708, -0.005344964563846588, 0.9854149222373962, 0.07988684624433517, 0.06351639330387115, 0.01806022785604, 0.28593161702156067, -0.20198212563991547, 0.03196192905306816, 0.9925575256347656, -0.11832025647163391, 0.07470966130495071, -0.021631525829434395]} +{"t": 1.4919, "q": [-0.3612235188484192, -0.013263821601867676, 0.009601988829672337, 0.627099871635437, -0.2955211102962494, 0.02369980327785015, -0.3479119539260864, 0.00424401368945837, -0.005892434157431126, 0.6231881976127625, -0.3292316198348999, 0.0033612819388508797, 0.004030960611999035, 0.00950615108013153, -0.03324633836746216, 0.28403812646865845, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.0635044127702713, 0.01804824359714985, 0.28593161702156067, -0.20198212563991547, 0.03194994479417801, 0.9925575256347656, -0.11832025647163391, 0.07469767332077026, -0.021619541570544243]} +{"t": 1.5086, "q": [-0.36123204231262207, -0.013263821601867676, 0.009628772735595703, 0.627099871635437, -0.2955211102962494, 0.02369980327785015, -0.3479204773902893, 0.004269579891115427, -0.005852258298546076, 0.6231796741485596, -0.32922330498695374, 0.003346687648445368, 0.004030960611999035, 0.009521347470581532, -0.033246416598558426, 0.28401416540145874, 0.19195133447647095, -0.005344964563846588, 0.9854149222373962, 0.07989882677793503, 0.06349242478609085, 0.018036259338259697, 0.28593161702156067, -0.2019701451063156, 0.03193796053528786, 0.9925575256347656, -0.11830826848745346, 0.07469767332077026, -0.021643510088324547]} +{"t": 1.5254, "q": [-0.36124053597450256, -0.013246776536107063, 0.009628772735595703, 0.6270828247070312, -0.29552528262138367, 0.023707017302513123, -0.3479290008544922, 0.00424401368945837, -0.005892434157431126, 0.6231711506843567, -0.32927724719047546, 0.0034270465839654207, 0.004030960611999035, 0.009506158530712128, -0.0332561694085598, 0.28401416540145874, 0.1919633150100708, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.06351639330387115, 0.018036259338259697, 0.28593161702156067, -0.2019701451063156, 0.03196192905306816, 0.9925455451011658, -0.11832025647163391, 0.07470966130495071, -0.021631525829434395]} +{"t": 1.5422, "q": [-0.3611809015274048, -0.01328938640654087, 0.009628772735595703, 0.6270828247070312, -0.2955211102962494, 0.02369980327785015, -0.3479204773902893, 0.00424401368945837, -0.005879042204469442, 0.6231796741485596, -0.3292067050933838, 0.0033174811396747828, 0.004057744517922401, 0.00952894240617752, -0.03324154019355774, 0.28401416540145874, 0.1919393539428711, -0.005344964563846588, 0.9854269027709961, 0.07989882677793503, 0.0635044127702713, 0.018036259338259697, 0.2859196364879608, -0.2019701451063156, 0.03196192905306816, 0.9925575256347656, -0.11834422498941422, 0.07469767332077026, -0.021631525829434395]} +{"t": 1.5589, "q": [-0.3612235188484192, -0.013255298137664795, 0.009628772735595703, 0.6270828247070312, -0.2955211102962494, 0.02369980327785015, -0.34794604778289795, 0.004235491156578064, -0.005892434157431126, 0.6231796741485596, -0.3292108476161957, 0.0033247964456677437, 0.004044352564960718, 0.009521347470581532, -0.033246416598558426, 0.28403812646865845, 0.19195133447647095, -0.005344964563846588, 0.9854149222373962, 0.07989882677793503, 0.0635044127702713, 0.01804824359714985, 0.28593161702156067, -0.2019701451063156, 0.03194994479417801, 0.9925455451011658, -0.11830826848745346, 0.07472164183855057, -0.021643510088324547]} +{"t": 1.5757, "q": [-0.3612235188484192, -0.013246776536107063, 0.009615381248295307, 0.6270572543144226, -0.29553771018981934, 0.02368525043129921, -0.3479716181755066, 0.004261057823896408, -0.005865650251507759, 0.6231796741485596, -0.3292856514453888, 0.0034561806824058294, 0.004004176706075668, 0.009536543861031532, -0.033246494829654694, 0.28403812646865845, 0.1919633150100708, -0.005344964563846588, 0.9854149222373962, 0.07989882677793503, 0.06349242478609085, 0.018036259338259697, 0.2859196364879608, -0.2019701451063156, 0.03194994479417801, 0.9925575256347656, -0.11832025647163391, 0.07469767332077026, -0.021643510088324547]} +{"t": 1.5924, "q": [-0.36124905943870544, -0.013263821601867676, 0.009601988829672337, 0.6270743012428284, -0.2955418527126312, 0.023678001016378403, -0.3479630947113037, 0.004235491156578064, -0.005865650251507759, 0.6231796741485596, -0.32933512330055237, 0.0034856765996664762, 0.004044352564960718, 0.00951374601572752, -0.03324146196246147, 0.28401416540145874, 0.1919393539428711, -0.005344964563846588, 0.9853909611701965, 0.07989882677793503, 0.06349242478609085, 0.018036259338259697, 0.2858956754207611, -0.2019701451063156, 0.03196192905306816, 0.9925814867019653, -0.11834422498941422, 0.07469767332077026, -0.021631525829434395]} +{"t": 1.6093, "q": [-0.3612575829029083, -0.013297909870743752, 0.009628772735595703, 0.6270657777786255, -0.2955418527126312, 0.023678001016378403, -0.3479716181755066, 0.004235491156578064, -0.005865650251507759, 0.6231626272201538, -0.3293309807777405, 0.0034783794544637203, 0.004044352564960718, 0.00951374601572752, -0.03324146196246147, 0.2840261459350586, 0.19195133447647095, -0.005344964563846588, 0.9854149222373962, 0.07989882677793503, 0.0635044127702713, 0.018036259338259697, 0.28590765595436096, -0.20198212563991547, 0.03193796053528786, 0.9925814867019653, -0.11834422498941422, 0.07472164183855057, -0.021631525829434395]} +{"t": 1.626, "q": [-0.36124053597450256, -0.013255298137664795, 0.00958859734237194, 0.6270657777786255, -0.29552528262138367, 0.023707017302513123, -0.3479801416397095, 0.004252535756677389, -0.005865650251507759, 0.6231796741485596, -0.3292437195777893, 0.003325085621327162, 0.004017568659037352, 0.009513752534985542, -0.03325129300355911, 0.28401416540145874, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.06351639330387115, 0.018036259338259697, 0.28593161702156067, -0.20198212563991547, 0.03197391331195831, 0.9925814867019653, -0.11833223700523376, 0.07469767332077026, -0.0216554943472147]} +{"t": 1.6428, "q": [-0.3611809015274048, -0.013280864804983139, 0.009628772735595703, 0.6270657777786255, -0.2955128252506256, 0.023699838668107986, -0.3479630947113037, 0.004235491156578064, -0.005879042204469442, 0.6231881976127625, -0.329094260931015, 0.003076838795095682, 0.004044352564960718, 0.00952894240617752, -0.03324154019355774, 0.2840261459350586, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07991081476211548, 0.06351639330387115, 0.018024275079369545, 0.2859196364879608, -0.2019701451063156, 0.03194994479417801, 0.9925695061683655, -0.11832025647163391, 0.07469767332077026, -0.021631525829434395]} +{"t": 1.6595, "q": [-0.3612235188484192, -0.013272343203425407, 0.009628772735595703, 0.6270743012428284, -0.2955169975757599, 0.023707052692770958, -0.3479716181755066, 0.00424401368945837, -0.005892434157431126, 0.6231796741485596, -0.3291066288948059, 0.0030842081177979708, 0.004057744517922401, 0.009521340020000935, -0.033236585557460785, 0.28401416540145874, 0.19195133447647095, -0.005344964563846588, 0.9854029417037964, 0.07991081476211548, 0.0635044127702713, 0.018036259338259697, 0.2858956754207611, -0.2019701451063156, 0.03193796053528786, 0.9926174283027649, -0.11833223700523376, 0.07468569278717041, -0.0216554943472147]} +{"t": 1.6762, "q": [-0.3612149953842163, -0.013263821601867676, 0.00965555664151907, 0.6270657777786255, -0.29550865292549133, 0.023692624643445015, -0.3479630947113037, 0.00424401368945837, -0.005865650251507759, 0.6231796741485596, -0.3291025459766388, 0.003091433085501194, 0.004030960611999035, 0.009528934955596924, -0.0332317091524601, 0.2840021550655365, 0.1919393539428711, -0.00535694882273674, 0.9854029417037964, 0.07989882677793503, 0.06351639330387115, 0.018036259338259697, 0.2858717143535614, -0.2019701451063156, 0.03193796053528786, 0.992605447769165, -0.11828429996967316, 0.07473362982273102, -0.021643510088324547]} +{"t": 1.6931, "q": [-0.3612064719200134, -0.013272343203425407, 0.009628772735595703, 0.6270743012428284, -0.29549628496170044, 0.023728836327791214, -0.34795457124710083, 0.00424401368945837, -0.005879042204469442, 0.6231881976127625, -0.32910671830177307, 0.00309873023070395, 0.004071136470884085, 0.009521340020000935, -0.033236585557460785, 0.28401416540145874, 0.19195133447647095, -0.00535694882273674, 0.9854149222373962, 0.07988684624433517, 0.06351639330387115, 0.01804824359714985, 0.28585973381996155, -0.2019701451063156, 0.03196192905306816, 0.992605447769165, -0.11833223700523376, 0.07472164183855057, -0.02166747860610485]} +{"t": 1.7098, "q": [-0.3611809015274048, -0.01328938640654087, 0.00965555664151907, 0.6270657777786255, -0.29550036787986755, 0.02370712347328663, -0.34794604778289795, 0.00424401368945837, -0.005852258298546076, 0.6231881976127625, -0.32910671830177307, 0.00309873023070395, 0.004044352564960718, 0.009536536410450935, -0.03323666378855705, 0.28401416540145874, 0.19195133447647095, -0.00535694882273674, 0.9854149222373962, 0.07987485826015472, 0.0635044127702713, 0.01806022785604, 0.28583574295043945, -0.2019701451063156, 0.03196192905306816, 0.9926174283027649, -0.11836819350719452, 0.07469767332077026, -0.021643510088324547]} +{"t": 1.7266, "q": [-0.36119794845581055, -0.013272343203425407, 0.00966894906014204, 0.6270657777786255, -0.29549625515937805, 0.023714372888207436, -0.34794604778289795, 0.004269579891115427, -0.005879042204469442, 0.6231881976127625, -0.32910671830177307, 0.00309873023070395, 0.004044352564960718, 0.009528934955596924, -0.0332317091524601, 0.28401416540145874, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.06351639330387115, 0.018036259338259697, 0.28583574295043945, -0.20198212563991547, 0.03194994479417801, 0.992605447769165, -0.11836819350719452, 0.07469767332077026, -0.021631525829434395]} +{"t": 1.7435, "q": [-0.3611723780632019, -0.01328938640654087, 0.00966894906014204, 0.6270743012428284, -0.29548799991607666, 0.02374335192143917, -0.3479119539260864, 0.00424401368945837, -0.005865650251507759, 0.6231881976127625, -0.32909858226776123, 0.003113179700449109, 0.004071136470884085, 0.009536536410450935, -0.03323666378855705, 0.28399017453193665, 0.1919633150100708, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.0635044127702713, 0.018036259338259697, 0.28581178188323975, -0.2019701451063156, 0.03194994479417801, 0.992605447769165, -0.11833223700523376, 0.07469767332077026, -0.021631525829434395]} +{"t": 1.7602, "q": [-0.36114680767059326, -0.013297909870743752, 0.009682340547442436, 0.6270828247070312, -0.2954879403114319, 0.02371440827846527, -0.34790343046188354, 0.004252535756677389, -0.005865650251507759, 0.6231881976127625, -0.3290407061576843, 0.003054567612707615, 0.004044352564960718, 0.009521354921162128, -0.03325624763965607, 0.2840021550655365, 0.1919393539428711, -0.005344964563846588, 0.9854149222373962, 0.07989882677793503, 0.0635283812880516, 0.01804824359714985, 0.28583574295043945, -0.20198212563991547, 0.03196192905306816, 0.9926174283027649, -0.11832025647163391, 0.07469767332077026, -0.021643510088324547]} +{"t": 1.7769, "q": [-0.36114680767059326, -0.01328938640654087, 0.009722515940666199, 0.6270828247070312, -0.29549628496170044, 0.023728836327791214, -0.3478863835334778, 0.004269579891115427, -0.005865650251507759, 0.6232052445411682, -0.32903239130973816, 0.0030399553943425417, 0.004030960611999035, 0.009536536410450935, -0.03323666378855705, 0.28401416540145874, 0.19195133447647095, -0.00535694882273674, 0.9854149222373962, 0.07988684624433517, 0.0635044127702713, 0.01804824359714985, 0.2857998013496399, -0.2019701451063156, 0.031985897570848465, 0.992605447769165, -0.11833223700523376, 0.07472164183855057, -0.021643510088324547]} +{"t": 1.7938, "q": [-0.361163854598999, -0.013280864804983139, 0.009695732034742832, 0.6270828247070312, -0.29549211263656616, 0.023721622303128242, -0.3478778600692749, 0.004269579891115427, -0.005852258298546076, 0.6231881976127625, -0.32902422547340393, 0.003054422792047262, 0.004044352564960718, 0.00952894240617752, -0.03324154019355774, 0.28401416540145874, 0.1919633150100708, -0.00535694882273674, 0.9854149222373962, 0.07988684624433517, 0.0635283812880516, 0.018036259338259697, 0.2857758402824402, -0.20198212563991547, 0.03197391331195831, 0.9925934672355652, -0.11833223700523376, 0.07469767332077026, -0.021643510088324547]} +{"t": 1.8105, "q": [-0.3611297607421875, -0.01328938640654087, 0.009722515940666199, 0.6270828247070312, -0.2954879403114319, 0.02371440827846527, -0.3478778600692749, 0.004252535756677389, -0.005852258298546076, 0.6232052445411682, -0.32902008295059204, 0.00304712587967515, 0.004071136470884085, 0.009521340020000935, -0.033236585557460785, 0.28401416540145874, 0.1919393539428711, -0.005344964563846588, 0.9854149222373962, 0.07991081476211548, 0.0635044127702713, 0.018024275079369545, 0.2857518792152405, -0.2019701451063156, 0.03196192905306816, 0.992605447769165, -0.11833223700523376, 0.07469767332077026, -0.021643510088324547]} +{"t": 1.8273, "q": [-0.36107009649276733, -0.013297909870743752, 0.00973590835928917, 0.6270743012428284, -0.29548379778862, 0.02372167445719242, -0.3478778600692749, 0.004252535756677389, -0.005879042204469442, 0.6231967210769653, -0.32902422547340393, 0.003054422792047262, 0.004071136470884085, 0.009506143629550934, -0.03323650732636452, 0.28401416540145874, 0.1919393539428711, -0.005344964563846588, 0.9854149222373962, 0.07991081476211548, 0.06351639330387115, 0.01804824359714985, 0.28573986887931824, -0.2019701451063156, 0.03196192905306816, 0.9926174283027649, -0.11830826848745346, 0.07470966130495071, -0.0216554943472147]} +{"t": 1.8441, "q": [-0.36110419034957886, -0.013280864804983139, 0.009722515940666199, 0.6270828247070312, -0.2954879403114319, 0.02371440827846527, -0.3478778600692749, 0.004269579891115427, -0.005879042204469442, 0.6231967210769653, -0.3290616273880005, 0.003120133187621832, 0.004057744517922401, 0.009513752534985542, -0.03325129300355911, 0.28401416540145874, 0.19195133447647095, -0.00535694882273674, 0.9854149222373962, 0.07992279529571533, 0.0635283812880516, 0.018036259338259697, 0.2857278883457184, -0.2019701451063156, 0.03197391331195831, 0.992605447769165, -0.11829628795385361, 0.07469767332077026, -0.0216554943472147]} +{"t": 1.8609, "q": [-0.3611382842063904, -0.013297909870743752, 0.009695732034742832, 0.6270828247070312, -0.2954879403114319, 0.02371440827846527, -0.34786084294319153, 0.004269579891115427, -0.005865650251507759, 0.6231967210769653, -0.32906144857406616, 0.0030910533387213945, 0.004030960611999035, 0.00951375998556614, -0.033261124044656754, 0.28401416540145874, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.0635044127702713, 0.018036259338259697, 0.28573986887931824, -0.20198212563991547, 0.03196192905306816, 0.9926174283027649, -0.11833223700523376, 0.07470966130495071, -0.021631525829434395]} +{"t": 1.8776, "q": [-0.36114680767059326, -0.01328938640654087, 0.009695732034742832, 0.6270743012428284, -0.295492023229599, 0.023692695423960686, -0.347869336605072, 0.004261057823896408, -0.005879042204469442, 0.6231881976127625, -0.32906144857406616, 0.0030910533387213945, 0.004071136470884085, 0.00952894240617752, -0.03324154019355774, 0.28399017453193665, 0.1919393539428711, -0.005344964563846588, 0.9854149222373962, 0.07991081476211548, 0.06351639330387115, 0.018036259338259697, 0.2857278883457184, -0.2019701451063156, 0.03197391331195831, 0.992605447769165, -0.11833223700523376, 0.07467370480298996, -0.021631525829434395]} +{"t": 1.8943, "q": [-0.36114680767059326, -0.013297909870743752, 0.00965555664151907, 0.6270657777786255, -0.29550862312316895, 0.023678161203861237, -0.347869336605072, 0.004261057823896408, -0.005879042204469442, 0.6231881976127625, -0.3290903568267822, 0.0031131075229495764, 0.004017568659037352, 0.009536543861031532, -0.033246494829654694, 0.28401416540145874, 0.19197531044483185, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.0635044127702713, 0.018024275079369545, 0.28571590781211853, -0.2019701451063156, 0.03196192905306816, 0.992605447769165, -0.11829628795385361, 0.07468569278717041, -0.021643510088324547]} +{"t": 1.9111, "q": [-0.36115533113479614, -0.013280864804983139, 0.00965555664151907, 0.6270657777786255, -0.29551273584365845, 0.02367091178894043, -0.3478863835334778, 0.004261057823896408, -0.005879042204469442, 0.6231881976127625, -0.32911112904548645, 0.0031496111769229174, 0.004030960611999035, 0.009536543861031532, -0.033246494829654694, 0.28401416540145874, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.06351639330387115, 0.01804824359714985, 0.2857278883457184, -0.2019701451063156, 0.03194994479417801, 0.992605447769165, -0.11829628795385361, 0.07473362982273102, -0.0216554943472147]} +{"t": 1.9278, "q": [-0.361163854598999, -0.01328938640654087, 0.00965555664151907, 0.6270487308502197, -0.29552939534187317, 0.023685304448008537, -0.3478863835334778, 0.00424401368945837, -0.005892434157431126, 0.6231881976127625, -0.3291236162185669, 0.0031715023797005415, 0.004084527958184481, 0.009521340020000935, -0.033236585557460785, 0.28401416540145874, 0.1919393539428711, -0.005344964563846588, 0.9854149222373962, 0.07989882677793503, 0.06351639330387115, 0.01804824359714985, 0.28571590781211853, -0.2019701451063156, 0.03194994479417801, 0.9925934672355652, -0.11829628795385361, 0.07469767332077026, -0.02166747860610485]} +{"t": 1.9445, "q": [-0.3611809015274048, -0.013272343203425407, 0.009642165154218674, 0.6270487308502197, -0.2955252230167389, 0.023678090423345566, -0.3478863835334778, 0.004252535756677389, -0.005865650251507759, 0.6231796741485596, -0.329264760017395, 0.003405155148357153, 0.004044352564960718, 0.009521354921162128, -0.03325624763965607, 0.2840021550655365, 0.19195133447647095, -0.005344964563846588, 0.9854149222373962, 0.07991081476211548, 0.06351639330387115, 0.018036259338259697, 0.2857278883457184, -0.2019701451063156, 0.031985897570848465, 0.992605447769165, -0.11830826848745346, 0.07473362982273102, -0.021679462864995003]} +{"t": 1.9613, "q": [-0.36119794845581055, -0.013272343203425407, 0.009628772735595703, 0.6270487308502197, -0.2955252230167389, 0.023678090423345566, -0.3479119539260864, 0.00424401368945837, -0.0058388663455843925, 0.6231881976127625, -0.3293271064758301, 0.0035146481823176146, 0.004057744517922401, 0.009528948925435543, -0.03325137123465538, 0.2840021550655365, 0.19195133447647095, -0.005344964563846588, 0.9854149222373962, 0.07991081476211548, 0.06351639330387115, 0.018036259338259697, 0.28571590781211853, -0.2019701451063156, 0.03197391331195831, 0.992605447769165, -0.11830826848745346, 0.07472164183855057, -0.021631525829434395]} +{"t": 1.9781, "q": [-0.3612064719200134, -0.013246776536107063, 0.009628772735595703, 0.627031683921814, -0.29552939534187317, 0.023685304448008537, -0.3479204773902893, 0.004235491156578064, -0.005852258298546076, 0.6231796741485596, -0.3293556272983551, 0.0034785785246640444, 0.004057744517922401, 0.00951375998556614, -0.033261124044656754, 0.28399017453193665, 0.19195133447647095, -0.005344964563846588, 0.9854149222373962, 0.07991081476211548, 0.06351639330387115, 0.018036259338259697, 0.2856679856777191, -0.2019701451063156, 0.031985897570848465, 0.992605447769165, -0.11830826848745346, 0.07472164183855057, -0.021703431382775307]} +{"t": 1.9949, "q": [-0.3612064719200134, -0.013272343203425407, 0.00965555664151907, 0.6270061135292053, -0.29552939534187317, 0.023685304448008537, -0.34793752431869507, 0.00424401368945837, -0.005865650251507759, 0.6231711506843567, -0.32935571670532227, 0.00349310040473938, 0.004017568659037352, 0.009536543861031532, -0.033246494829654694, 0.28399017453193665, 0.1919393539428711, -0.005344964563846588, 0.9854149222373962, 0.07989882677793503, 0.0635283812880516, 0.01804824359714985, 0.28571590781211853, -0.2019701451063156, 0.031985897570848465, 0.992605447769165, -0.11828429996967316, 0.07474561035633087, -0.02166747860610485]} +{"t": 2.0116, "q": [-0.36118942499160767, -0.01328938640654087, 0.00965555664151907, 0.6269975900650024, -0.29553356766700745, 0.02369251847267151, -0.34795457124710083, 0.00424401368945837, -0.005865650251507759, 0.6231626272201538, -0.3293474316596985, 0.003478506114333868, 0.004017568659037352, 0.00952894240617752, -0.03324154019355774, 0.28401416540145874, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07988684624433517, 0.0635283812880516, 0.018036259338259697, 0.28567996621131897, -0.20198212563991547, 0.03194994479417801, 0.992605447769165, -0.11835620552301407, 0.07473362982273102, -0.02166747860610485]} +{"t": 2.0284, "q": [-0.3612746298313141, -0.013255298137664795, 0.009628772735595703, 0.6269975900650024, -0.2955418825149536, 0.02369246445596218, -0.34798866510391235, 0.004252535756677389, -0.0058388663455843925, 0.6231626272201538, -0.3293515741825104, 0.003485803259536624, 0.004057744517922401, 0.009551732800900936, -0.03323674574494362, 0.28399017453193665, 0.19195133447647095, -0.005344964563846588, 0.9853909611701965, 0.07988684624433517, 0.0635044127702713, 0.018036259338259697, 0.28567996621131897, -0.2019701451063156, 0.03197391331195831, 0.9925934672355652, -0.11838017404079437, 0.07468569278717041, -0.021643510088324547]} +{"t": 2.0451, "q": [-0.3612235188484192, -0.013263821601867676, 0.00965555664151907, 0.6269805431365967, -0.2955418527126312, 0.023678001016378403, -0.3480057120323181, 0.00424401368945837, -0.005865650251507759, 0.6231626272201538, -0.3293514847755432, 0.0034712813794612885, 0.004017568659037352, 0.009528934955596924, -0.0332317091524601, 0.28401416540145874, 0.1919393539428711, -0.005344964563846588, 0.9854149222373962, 0.07989882677793503, 0.06351639330387115, 0.01804824359714985, 0.28567996621131897, -0.2019701451063156, 0.03194994479417801, 0.992605447769165, -0.11835620552301407, 0.07473362982273102, -0.021631525829434395]} +{"t": 2.0618, "q": [-0.36130020022392273, -0.013238254934549332, 0.009601988829672337, 0.6269634962081909, -0.2955169975757599, 0.023707052692770958, -0.3480227589607239, 0.004235491156578064, -0.0058388663455843925, 0.6231541037559509, -0.3293474316596985, 0.003478506114333868, 0.004057744517922401, 0.009536536410450935, -0.03323666378855705, 0.28401416540145874, 0.1919633150100708, -0.005344964563846588, 0.9853909611701965, 0.07986287772655487, 0.06351639330387115, 0.01804824359714985, 0.285643994808197, -0.2019701451063156, 0.031985897570848465, 0.9926174283027649, -0.11836819350719452, 0.07472164183855057, -0.021643510088324547]} +{"t": 2.0786, "q": [-0.36128315329551697, -0.013255298137664795, 0.00965555664151907, 0.6269634962081909, -0.295550137758255, 0.023677965626120567, -0.34803128242492676, 0.00424401368945837, -0.0058388663455843925, 0.6231711506843567, -0.3293474316596985, 0.003478506114333868, 0.004084527958184481, 0.009536543861031532, -0.033246494829654694, 0.28401416540145874, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07992279529571533, 0.0635044127702713, 0.01804824359714985, 0.28565600514411926, -0.2019701451063156, 0.03194994479417801, 0.992605447769165, -0.11834422498941422, 0.07473362982273102, -0.02166747860610485]} +{"t": 2.0953, "q": [-0.3612746298313141, -0.013263821601867676, 0.00965555664151907, 0.6269379258155823, -0.29553771018981934, 0.02368525043129921, -0.34803128242492676, 0.004226969089359045, -0.0058388663455843925, 0.6231541037559509, -0.3293474316596985, 0.003478506114333868, 0.004084527958184481, 0.009536536410450935, -0.03323666378855705, 0.28399017453193665, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07991081476211548, 0.0635044127702713, 0.018036259338259697, 0.28563201427459717, -0.2019461840391159, 0.03196192905306816, 0.992605447769165, -0.11834422498941422, 0.07473362982273102, -0.02166747860610485]} +{"t": 2.112, "q": [-0.36134281754493713, -0.013263821601867676, 0.009628772735595703, 0.6269379258155823, -0.2955418527126312, 0.023678001016378403, -0.3480483293533325, 0.00424401368945837, -0.005825474392622709, 0.6231541037559509, -0.3293432593345642, 0.003471208969131112, 0.004084527958184481, 0.00951374601572752, -0.03324146196246147, 0.28399017453193665, 0.19195133447647095, -0.005332980304956436, 0.9854149222373962, 0.07989882677793503, 0.06351639330387115, 0.01804824359714985, 0.2856200337409973, -0.2019701451063156, 0.03194994479417801, 0.992605447769165, -0.11832025647163391, 0.07470966130495071, -0.02166747860610485]} +{"t": 2.1288, "q": [-0.3612746298313141, -0.013255298137664795, 0.009642165154218674, 0.6269464492797852, -0.2955252230167389, 0.023678090423345566, -0.3480483293533325, 0.00424401368945837, -0.005825474392622709, 0.6231541037559509, -0.3293473422527313, 0.0034639842342585325, 0.004111311864107847, 0.009536536410450935, -0.03323666378855705, 0.28399017453193665, 0.19195133447647095, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.0635044127702713, 0.01804824359714985, 0.28558409214019775, -0.2019701451063156, 0.03196192905306816, 0.9925934672355652, -0.11830826848745346, 0.07473362982273102, -0.02166747860610485]} +{"t": 2.1455, "q": [-0.36130020022392273, -0.013272343203425407, 0.009682340547442436, 0.6269464492797852, -0.29552945494651794, 0.023714231327176094, -0.3480227589607239, 0.004235491156578064, -0.005852258298546076, 0.6231541037559509, -0.32922685146331787, 0.0032522953115403652, 0.004071136470884085, 0.009521340020000935, -0.033236585557460785, 0.2840021550655365, 0.1919633150100708, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.06349242478609085, 0.01806022785604, 0.2855721116065979, -0.2019701451063156, 0.03196192905306816, 0.9926174283027649, -0.11830826848745346, 0.07472164183855057, -0.021643510088324547]} +{"t": 2.1622, "q": [-0.3613172471523285, -0.01328938640654087, 0.00965555664151907, 0.626954972743988, -0.29552945494651794, 0.023714231327176094, -0.3480227589607239, 0.004226969089359045, -0.0058388663455843925, 0.6231626272201538, -0.32925593852996826, 0.003303393255919218, 0.004044352564960718, 0.009544131346046925, -0.033231791108846664, 0.28401416540145874, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.0635044127702713, 0.018036259338259697, 0.28553614020347595, -0.2019701451063156, 0.03196192905306816, 0.992605447769165, -0.11830826848745346, 0.07473362982273102, -0.021679462864995003]} +{"t": 2.179, "q": [-0.36130020022392273, -0.013272343203425407, 0.00966894906014204, 0.6269464492797852, -0.29552116990089417, 0.02371426671743393, -0.34803128242492676, 0.004235491156578064, -0.0058388663455843925, 0.6231626272201538, -0.32924771308898926, 0.0033033208455890417, 0.004030960611999035, 0.009528934955596924, -0.0332317091524601, 0.28399017453193665, 0.1919393539428711, -0.005368933081626892, 0.9854149222373962, 0.07989882677793503, 0.06351639330387115, 0.018036259338259697, 0.28548821806907654, -0.2019701451063156, 0.03197391331195831, 0.9926174283027649, -0.11830826848745346, 0.07472164183855057, -0.02166747860610485]} +{"t": 2.1957, "q": [-0.36130020022392273, -0.013272343203425407, 0.00965555664151907, 0.6269634962081909, -0.2955169975757599, 0.023707052692770958, -0.34803128242492676, 0.004235491156578064, -0.005852258298546076, 0.623145580291748, -0.329243540763855, 0.0032960239332169294, 0.004044352564960718, 0.009528934955596924, -0.0332317091524601, 0.2840021550655365, 0.19195133447647095, -0.00535694882273674, 0.9854149222373962, 0.07991081476211548, 0.06351639330387115, 0.018036259338259697, 0.2854282855987549, -0.2019461840391159, 0.031985897570848465, 0.992605447769165, -0.1182723194360733, 0.07468569278717041, -0.0216554943472147]} +{"t": 2.2124, "q": [-0.3613172471523285, -0.013272343203425407, 0.009628772735595703, 0.6269720196723938, -0.29552945494651794, 0.023714231327176094, -0.348014235496521, 0.004235491156578064, -0.005825474392622709, 0.6231541037559509, -0.3292393982410431, 0.0032887267880141735, 0.004057744517922401, 0.009544138796627522, -0.033241622149944305, 0.28399017453193665, 0.1919633150100708, -0.005344964563846588, 0.9854149222373962, 0.07989882677793503, 0.0635044127702713, 0.018036259338259697, 0.2854282855987549, -0.2019461840391159, 0.03194994479417801, 0.992605447769165, -0.11829628795385361, 0.07472164183855057, -0.021643510088324547]} +{"t": 2.2292, "q": [-0.36128315329551697, -0.013272343203425407, 0.00965555664151907, 0.6269634962081909, -0.2955086827278137, 0.023707088083028793, -0.3480227589607239, 0.004235491156578064, -0.0058388663455843925, 0.6231626272201538, -0.32924771308898926, 0.0033033208455890417, 0.004071136470884085, 0.009544138796627522, -0.033241622149944305, 0.28399017453193665, 0.1919393539428711, -0.005344964563846588, 0.9854029417037964, 0.07989882677793503, 0.06351639330387115, 0.018036259338259697, 0.28538036346435547, -0.2019701451063156, 0.03197391331195831, 0.992605447769165, -0.11830826848745346, 0.07472164183855057, -0.021619541570544243]} +{"t": 2.2459, "q": [-0.3612746298313141, -0.013272343203425407, 0.00966894906014204, 0.6269805431365967, -0.29550865292549133, 0.023692624643445015, -0.34798866510391235, 0.004235491156578064, -0.005852258298546076, 0.6231711506843567, -0.3291066288948059, 0.0030842081177979708, 0.004071136470884085, 0.009544131346046925, -0.033231791108846664, 0.2840021550655365, 0.1919393539428711, -0.005344964563846588, 0.9854149222373962, 0.07989882677793503, 0.0635044127702713, 0.018036259338259697, 0.2853683829307556, -0.2019461840391159, 0.03194994479417801, 0.9925934672355652, -0.11828429996967316, 0.07472164183855057, -0.0216554943472147]} +{"t": 2.2626, "q": [-0.3612746298313141, -0.01328938640654087, 0.00965555664151907, 0.6269805431365967, -0.29550865292549133, 0.023692624643445015, -0.34799718856811523, 0.00424401368945837, -0.005879042204469442, 0.6231626272201538, -0.3291272222995758, 0.0030916319228708744, 0.004057744517922401, 0.009536536410450935, -0.03323666378855705, 0.2839781939983368, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.06351639330387115, 0.018036259338259697, 0.2853563725948334, -0.2019701451063156, 0.03197391331195831, 0.992605447769165, -0.11834422498941422, 0.07469767332077026, -0.02166747860610485]} +{"t": 2.2793, "q": [-0.3612661063671112, -0.013280864804983139, 0.009642165154218674, 0.6269805431365967, -0.29550865292549133, 0.023692624643445015, -0.34798866510391235, 0.00424401368945837, -0.005879042204469442, 0.6231711506843567, -0.3291398584842682, 0.0031426032073795795, 0.004084527958184481, 0.009521332569420338, -0.033226754516363144, 0.28399017453193665, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07991081476211548, 0.06351639330387115, 0.01804824359714985, 0.28533241152763367, -0.2019701451063156, 0.031985897570848465, 0.9925934672355652, -0.11830826848745346, 0.07472164183855057, -0.021691447123885155]} +{"t": 2.2963, "q": [-0.36124053597450256, -0.013272343203425407, 0.00965555664151907, 0.6269805431365967, -0.29550448060035706, 0.023685410618782043, -0.3479630947113037, 0.004235491156578064, -0.005865650251507759, 0.6231626272201538, -0.32912322878837585, 0.0031133966986089945, 0.004057744517922401, 0.009536536410450935, -0.03323666378855705, 0.28401416540145874, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.0635044127702713, 0.018036259338259697, 0.2853204309940338, -0.2019701451063156, 0.03194994479417801, 0.992605447769165, -0.11830826848745346, 0.07469767332077026, -0.021679462864995003]} +{"t": 2.3131, "q": [-0.36124905943870544, -0.01328938640654087, 0.00966894906014204, 0.6269890666007996, -0.29550448060035706, 0.023685410618782043, -0.3479630947113037, 0.004235491156578064, -0.005825474392622709, 0.6231711506843567, -0.32911908626556396, 0.0031060995534062386, 0.004111311864107847, 0.009536536410450935, -0.03323666378855705, 0.28401416540145874, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.06351639330387115, 0.01804824359714985, 0.2853204309940338, -0.2019701451063156, 0.03193796053528786, 0.992605447769165, -0.11832025647163391, 0.07472164183855057, -0.02166747860610485]} +{"t": 2.3298, "q": [-0.36124053597450256, -0.01328938640654087, 0.00966894906014204, 0.6269805431365967, -0.29550448060035706, 0.023685410618782043, -0.34795457124710083, 0.004235491156578064, -0.005852258298546076, 0.6231711506843567, -0.32911086082458496, 0.003106027143076062, 0.004030960611999035, 0.009536536410450935, -0.03323666378855705, 0.2840021550655365, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07992279529571533, 0.06351639330387115, 0.01806022785604, 0.2853204309940338, -0.2019461840391159, 0.03194994479417801, 0.9925934672355652, -0.11832025647163391, 0.07474561035633087, -0.0216554943472147]} +{"t": 2.3465, "q": [-0.3612064719200134, -0.013297909870743752, 0.009682340547442436, 0.6269805431365967, -0.29550448060035706, 0.023685410618782043, -0.34795457124710083, 0.004261057823896408, -0.005852258298546076, 0.6231626272201538, -0.3291233479976654, 0.003127936739474535, 0.004071136470884085, 0.009544138796627522, -0.033241622149944305, 0.28401416540145874, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07992279529571533, 0.06351639330387115, 0.01804824359714985, 0.2853204309940338, -0.2019701451063156, 0.03196192905306816, 0.9926174283027649, -0.11830826848745346, 0.07472164183855057, -0.02166747860610485]} +{"t": 2.3633, "q": [-0.3611809015274048, -0.013306431472301483, 0.009709124453365803, 0.6269720196723938, -0.29550865292549133, 0.023692624643445015, -0.3479204773902893, 0.00424401368945837, -0.0058388663455843925, 0.6231626272201538, -0.32911086082458496, 0.003106027143076062, 0.004044352564960718, 0.009536529891192913, -0.03322683274745941, 0.28399017453193665, 0.19195133447647095, -0.00535694882273674, 0.9854149222373962, 0.07991081476211548, 0.0635044127702713, 0.01804824359714985, 0.28530845046043396, -0.2019461840391159, 0.03196192905306816, 0.992605447769165, -0.118248350918293, 0.07474561035633087, -0.0216554943472147]} +{"t": 2.38, "q": [-0.361163854598999, -0.01328938640654087, 0.009695732034742832, 0.6269805431365967, -0.2954796552658081, 0.023728923872113228, -0.34790343046188354, 0.004269579891115427, -0.005892434157431126, 0.6231796741485596, -0.3290776312351227, 0.0030476320534944534, 0.004071136470884085, 0.009536543861031532, -0.033246494829654694, 0.28399017453193665, 0.19195133447647095, -0.00535694882273674, 0.9854149222373962, 0.07988684624433517, 0.06351639330387115, 0.018036259338259697, 0.2852725088596344, -0.2019461840391159, 0.03193796053528786, 0.992605447769165, -0.11830826848745346, 0.07473362982273102, -0.021643510088324547]} +{"t": 2.3967, "q": [-0.3611723780632019, -0.013297909870743752, 0.009695732034742832, 0.6269805431365967, -0.2954879403114319, 0.02371440827846527, -0.34790343046188354, 0.00424401368945837, -0.005892434157431126, 0.6231796741485596, -0.3290445804595947, 0.0030182809568941593, 0.004044352564960718, 0.009544138796627522, -0.033241622149944305, 0.28399017453193665, 0.19195133447647095, -0.005368933081626892, 0.9854149222373962, 0.07991081476211548, 0.06351639330387115, 0.018036259338259697, 0.2852725088596344, -0.2019701451063156, 0.03196192905306816, 0.992605447769165, -0.11830826848745346, 0.07473362982273102, -0.0216554943472147]} +{"t": 2.4135, "q": [-0.36111271381378174, -0.013297909870743752, 0.009709124453365803, 0.6269890666007996, -0.2954796552658081, 0.023728923872113228, -0.3479119539260864, 0.004252535756677389, -0.005865650251507759, 0.6231967210769653, -0.32903239130973816, 0.0030399553943425417, 0.004017568659037352, 0.009551740251481533, -0.03324657678604126, 0.28401416540145874, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07988684624433517, 0.0635044127702713, 0.018036259338259697, 0.2852725088596344, -0.2019701451063156, 0.03194994479417801, 0.992605447769165, -0.11829628795385361, 0.07472164183855057, -0.0216554943472147]} +{"t": 2.4303, "q": [-0.3611212372779846, -0.013306431472301483, 0.009762692265212536, 0.6269805431365967, -0.29548379778862, 0.02372167445719242, -0.34790343046188354, 0.004261057823896408, -0.005892434157431126, 0.6231881976127625, -0.329024076461792, 0.00302536110393703, 0.004084527958184481, 0.009544138796627522, -0.033241622149944305, 0.28399017453193665, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.0635044127702713, 0.018036259338259697, 0.2852964699268341, -0.2019701451063156, 0.03194994479417801, 0.992605447769165, -0.11832025647163391, 0.07475759834051132, -0.021631525829434395]} +{"t": 2.4471, "q": [-0.3611723780632019, -0.013297909870743752, 0.009722515940666199, 0.6269805431365967, -0.2954879403114319, 0.02371440827846527, -0.34786084294319153, 0.00424401368945837, -0.005879042204469442, 0.6231881976127625, -0.329024076461792, 0.00302536110393703, 0.004097919911146164, 0.009536536410450935, -0.03323666378855705, 0.2840021550655365, 0.19195133447647095, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.0635044127702713, 0.018036259338259697, 0.28530845046043396, -0.2019461840391159, 0.03194994479417801, 0.9926174283027649, -0.11830826848745346, 0.07473362982273102, -0.021631525829434395]} +{"t": 2.4638, "q": [-0.361095666885376, -0.013297909870743752, 0.009749299846589565, 0.6269805431365967, -0.29549211263656616, 0.023721622303128242, -0.34784379601478577, 0.004252535756677389, -0.005879042204469442, 0.6231881976127625, -0.3290199935436249, 0.0030326037667691708, 0.004057744517922401, 0.009551732800900936, -0.03323674574494362, 0.28399017453193665, 0.19195133447647095, -0.005368933081626892, 0.985438883304596, 0.07991081476211548, 0.06351639330387115, 0.01806022785604, 0.28533241152763367, -0.2019461840391159, 0.03196192905306816, 0.992605447769165, -0.11833223700523376, 0.07474561035633087, -0.021631525829434395]} +{"t": 2.4805, "q": [-0.36107009649276733, -0.013306431472301483, 0.00973590835928917, 0.6269975900650024, -0.29547548294067383, 0.023721709847450256, -0.34784379601478577, 0.004252535756677389, -0.005852258298546076, 0.6231881976127625, -0.32899507880210876, 0.002988821128383279, 0.004057744517922401, 0.009544138796627522, -0.033241622149944305, 0.2840021550655365, 0.1919633150100708, -0.005368933081626892, 0.9854149222373962, 0.07988684624433517, 0.0635044127702713, 0.01804824359714985, 0.28528448939323425, -0.2019461840391159, 0.03194994479417801, 0.992605447769165, -0.11828429996967316, 0.07473362982273102, -0.021643510088324547]} +{"t": 2.4972, "q": [-0.36101046204566956, -0.013297909870743752, 0.009762692265212536, 0.6269890666007996, -0.2954920828342438, 0.023707158863544464, -0.34780970215797424, 0.004269579891115427, -0.0058388663455843925, 0.6231881976127625, -0.32899922132492065, 0.0029961182735860348, 0.004004176706075668, 0.009559335187077522, -0.03324170038104057, 0.28401416540145874, 0.1919393539428711, -0.005344964563846588, 0.9854149222373962, 0.07989882677793503, 0.06351639330387115, 0.01804824359714985, 0.2852725088596344, -0.2019701451063156, 0.03196192905306816, 0.992605447769165, -0.11834422498941422, 0.07472164183855057, -0.021643510088324547]} +{"t": 2.5141, "q": [-0.3610530495643616, -0.013314953073859215, 0.009722515940666199, 0.6269890666007996, -0.2954920828342438, 0.023707158863544464, -0.3478182256221771, 0.004269579891115427, -0.005865650251507759, 0.6231881976127625, -0.3290034830570221, 0.003017937298864126, 0.003977392800152302, 0.009528948925435543, -0.03325137123465538, 0.28399017453193665, 0.19195133447647095, -0.00535694882273674, 0.9854149222373962, 0.07991081476211548, 0.0635044127702713, 0.01806022785604, 0.2852725088596344, -0.2019461840391159, 0.03194994479417801, 0.9926174283027649, -0.11830826848745346, 0.07473362982273102, -0.0216554943472147]} +{"t": 2.5308, "q": [-0.36101898550987244, -0.013314953073859215, 0.00973590835928917, 0.6269975900650024, -0.2954961955547333, 0.023699909448623657, -0.3478182256221771, 0.004261057823896408, -0.005865650251507759, 0.6231881976127625, -0.32901161909103394, 0.003003469668328762, 0.004004176706075668, 0.009536543861031532, -0.033246494829654694, 0.2839781939983368, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07987485826015472, 0.0635044127702713, 0.018036259338259697, 0.28523653745651245, -0.2019461840391159, 0.03196192905306816, 0.992605447769165, -0.11830826848745346, 0.07472164183855057, -0.0216554943472147]} +{"t": 2.5475, "q": [-0.36107009649276733, -0.013306431472301483, 0.00973590835928917, 0.6269890666007996, -0.2954879403114319, 0.02371440827846527, -0.34782674908638, 0.004269579891115427, -0.005865650251507759, 0.6231881976127625, -0.3290282189846039, 0.0030326582491397858, 0.004057744517922401, 0.00953655131161213, -0.033256325870752335, 0.2839781939983368, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.06351639330387115, 0.01804824359714985, 0.2852245569229126, -0.2019701451063156, 0.03196192905306816, 0.992605447769165, -0.11829628795385361, 0.07473362982273102, -0.0216554943472147]} +{"t": 2.5643, "q": [-0.36107009649276733, -0.013297909870743752, 0.009722515940666199, 0.6269805431365967, -0.29549211263656616, 0.023721622303128242, -0.34780970215797424, 0.004261057823896408, -0.005865650251507759, 0.6231881976127625, -0.3290404975414276, 0.003025505691766739, 0.004044352564960718, 0.009551740251481533, -0.03324657678604126, 0.28399017453193665, 0.1919393539428711, -0.005344964563846588, 0.9854149222373962, 0.07988684624433517, 0.06349242478609085, 0.018036259338259697, 0.28526049852371216, -0.2019701451063156, 0.03193796053528786, 0.992605447769165, -0.1182723194360733, 0.07472164183855057, -0.02166747860610485]} +{"t": 2.581, "q": [-0.361095666885376, -0.013280864804983139, 0.00966894906014204, 0.6269805431365967, -0.2954961955547333, 0.023699909448623657, -0.34784379601478577, 0.004261057823896408, -0.005879042204469442, 0.6231881976127625, -0.32903218269348145, 0.003010911401361227, 0.004084527958184481, 0.009559341706335545, -0.033251531422138214, 0.28401416540145874, 0.1919393539428711, -0.005344964563846588, 0.9854269027709961, 0.07989882677793503, 0.0635044127702713, 0.01804824359714985, 0.2852725088596344, -0.2019461840391159, 0.03196192905306816, 0.992605447769165, -0.11830826848745346, 0.07473362982273102, -0.0216554943472147]} +{"t": 2.5977, "q": [-0.36110419034957886, -0.013272343203425407, 0.00966894906014204, 0.6269720196723938, -0.2954920828342438, 0.023707158863544464, -0.3478352725505829, 0.004261057823896408, -0.005865650251507759, 0.6231881976127625, -0.32903218269348145, 0.003010911401361227, 0.004030960611999035, 0.009559341706335545, -0.033251531422138214, 0.28401416540145874, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.0635044127702713, 0.018036259338259697, 0.28526049852371216, -0.2019701451063156, 0.03193796053528786, 0.992605447769165, -0.11832025647163391, 0.07473362982273102, -0.0216554943472147]} +{"t": 2.6146, "q": [-0.36111271381378174, -0.013272343203425407, 0.00966894906014204, 0.6269720196723938, -0.295492023229599, 0.023692695423960686, -0.34784379601478577, 0.004261057823896408, -0.005879042204469442, 0.6231881976127625, -0.3290445804595947, 0.0030182809568941593, 0.004057744517922401, 0.009544145315885544, -0.033251453191041946, 0.2840021550655365, 0.19192737340927124, -0.005368933081626892, 0.9854149222373962, 0.07988684624433517, 0.06351639330387115, 0.018036259338259697, 0.2852485179901123, -0.2019701451063156, 0.03193796053528786, 0.992605447769165, -0.11832025647163391, 0.07476957887411118, -0.021679462864995003]} +{"t": 2.6313, "q": [-0.361163854598999, -0.01328938640654087, 0.00965555664151907, 0.6269464492797852, -0.2955251932144165, 0.023663610219955444, -0.34786084294319153, 0.00424401368945837, -0.005825474392622709, 0.6231796741485596, -0.3291068971157074, 0.003127773990854621, 0.004071136470884085, 0.00955174770206213, -0.0332564078271389, 0.2840021550655365, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07988684624433517, 0.06351639330387115, 0.018036259338259697, 0.28526049852371216, -0.2019701451063156, 0.03194994479417801, 0.9925934672355652, -0.11833223700523376, 0.07472164183855057, -0.021703431382775307]} +{"t": 2.6481, "q": [-0.36114680767059326, -0.01328938640654087, 0.00965555664151907, 0.6269464492797852, -0.29553771018981934, 0.02368525043129921, -0.347869336605072, 0.00424401368945837, -0.0058388663455843925, 0.6231711506843567, -0.32927289605140686, 0.00339070544578135, 0.004084527958184481, 0.00953655131161213, -0.033256325870752335, 0.28399017453193665, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.06351639330387115, 0.01806022785604, 0.28526049852371216, -0.2019461840391159, 0.03194994479417801, 0.992605447769165, -0.11832025647163391, 0.07473362982273102, -0.021679462864995003]} +{"t": 2.6648, "q": [-0.36115533113479614, -0.013255298137664795, 0.00965555664151907, 0.6269464492797852, -0.29553353786468506, 0.023678036406636238, -0.347869336605072, 0.004235491156578064, -0.0058388663455843925, 0.6231626272201538, -0.3293226659297943, 0.003463767236098647, 0.004057744517922401, 0.00955174770206213, -0.0332564078271389, 0.28399017453193665, 0.1919393539428711, -0.00535694882273674, 0.985438883304596, 0.07989882677793503, 0.06354036182165146, 0.018036259338259697, 0.28526049852371216, -0.2019461840391159, 0.03196192905306816, 0.9926174283027649, -0.11834422498941422, 0.07473362982273102, -0.02166747860610485]} +{"t": 2.6815, "q": [-0.36115533113479614, -0.013280864804983139, 0.009682340547442436, 0.6269294023513794, -0.2955169379711151, 0.02369258925318718, -0.3478863835334778, 0.00424401368945837, -0.005825474392622709, 0.6231626272201538, -0.3292562961578369, 0.00336151709780097, 0.004071136470884085, 0.009559349156916142, -0.033261362463235855, 0.28401416540145874, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07988684624433517, 0.0635044127702713, 0.018036259338259697, 0.2852485179901123, -0.2019701451063156, 0.03196192905306816, 0.992605447769165, -0.11832025647163391, 0.07475759834051132, -0.02166747860610485]} +{"t": 2.6983, "q": [-0.3611382842063904, -0.013272343203425407, 0.00965555664151907, 0.6269379258155823, -0.29550865292549133, 0.023692624643445015, -0.3478778600692749, 0.004235491156578064, -0.005825474392622709, 0.6231711506843567, -0.32921889424324036, 0.0032958067022264004, 0.0041247038170695305, 0.009544145315885544, -0.033251453191041946, 0.2840021550655365, 0.1919393539428711, -0.005344964563846588, 0.9854149222373962, 0.07989882677793503, 0.0635044127702713, 0.018036259338259697, 0.2852485179901123, -0.2019701451063156, 0.03196192905306816, 0.9925934672355652, -0.11828429996967316, 0.07473362982273102, -0.021691447123885155]} +{"t": 2.715, "q": [-0.36115533113479614, -0.013280864804983139, 0.009682340547442436, 0.6269379258155823, -0.2955128252506256, 0.023699838668107986, -0.3478778600692749, 0.004235491156578064, -0.005825474392622709, 0.6231626272201538, -0.3291440010070801, 0.0031499003525823355, 0.0041247038170695305, 0.009551740251481533, -0.03324657678604126, 0.28401416540145874, 0.1919393539428711, -0.005320996046066284, 0.9854149222373962, 0.07989882677793503, 0.0635044127702713, 0.01804824359714985, 0.28526049852371216, -0.2019461840391159, 0.03196192905306816, 0.992605447769165, -0.11830826848745346, 0.07470966130495071, -0.0216554943472147]} +{"t": 2.7318, "q": [-0.36114680767059326, -0.013297909870743752, 0.009682340547442436, 0.6269294023513794, -0.2955128252506256, 0.023699838668107986, -0.3478863835334778, 0.004235491156578064, -0.0058388663455843925, 0.6231626272201538, -0.32916903495788574, 0.0032082232646644115, 0.004071136470884085, 0.009528948925435543, -0.03325137123465538, 0.28399017453193665, 0.1919393539428711, -0.005344964563846588, 0.985438883304596, 0.07989882677793503, 0.06351639330387115, 0.018036259338259697, 0.28528448939323425, -0.2019701451063156, 0.03194994479417801, 0.992605447769165, -0.11832025647163391, 0.07475759834051132, -0.021643510088324547]} +{"t": 2.7486, "q": [-0.36114680767059326, -0.013280864804983139, 0.00965555664151907, 0.6269379258155823, -0.29550862312316895, 0.023678161203861237, -0.3478778600692749, 0.004235491156578064, -0.005825474392622709, 0.6231711506843567, -0.3291025459766388, 0.003091433085501194, 0.004057744517922401, 0.009559341706335545, -0.033251531422138214, 0.28399017453193665, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07991081476211548, 0.0635044127702713, 0.018036259338259697, 0.28526049852371216, -0.2019701451063156, 0.03194994479417801, 0.992605447769165, -0.11828429996967316, 0.07473362982273102, -0.021643510088324547]} +{"t": 2.7653, "q": [-0.36111271381378174, -0.013272343203425407, 0.009695732034742832, 0.6269634962081909, -0.29550448060035706, 0.023685410618782043, -0.3478863835334778, 0.00424401368945837, -0.005825474392622709, 0.6231711506843567, -0.32909443974494934, 0.003105882555246353, 0.004044352564960718, 0.009544145315885544, -0.033251453191041946, 0.28399017453193665, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.0635044127702713, 0.018036259338259697, 0.2852485179901123, -0.2019461840391159, 0.03194994479417801, 0.992605447769165, -0.11828429996967316, 0.07473362982273102, -0.0216554943472147]} +{"t": 2.7821, "q": [-0.36111271381378174, -0.01328938640654087, 0.009709124453365803, 0.6269634962081909, -0.2955128252506256, 0.023699838668107986, -0.3478863835334778, 0.00424401368945837, -0.0058388663455843925, 0.6231711506843567, -0.32909858226776123, 0.003113179700449109, 0.004097919911146164, 0.009551732800900936, -0.03323674574494362, 0.28399017453193665, 0.1919393539428711, -0.00535694882273674, 0.985438883304596, 0.07989882677793503, 0.0635044127702713, 0.018036259338259697, 0.2852245569229126, -0.2019701451063156, 0.03194994479417801, 0.992605447769165, -0.11830826848745346, 0.07478156685829163, -0.0216554943472147]} +{"t": 2.7988, "q": [-0.36115533113479614, -0.013280864804983139, 0.009722515940666199, 0.6269464492797852, -0.29550862312316895, 0.023678161203861237, -0.3478863835334778, 0.00424401368945837, -0.0058388663455843925, 0.6231626272201538, -0.32910671830177307, 0.00309873023070395, 0.004097919911146164, 0.009559341706335545, -0.033251531422138214, 0.28401416540145874, 0.19195133447647095, -0.00535694882273674, 0.985438883304596, 0.07989882677793503, 0.06351639330387115, 0.018036259338259697, 0.28523653745651245, -0.2019701451063156, 0.03196192905306816, 0.9925934672355652, -0.11830826848745346, 0.07476957887411118, -0.021679462864995003]} +{"t": 2.8155, "q": [-0.3611382842063904, -0.01328938640654087, 0.009682340547442436, 0.6269464492797852, -0.29550448060035706, 0.023685410618782043, -0.3478863835334778, 0.004235491156578064, -0.005852258298546076, 0.6231711506843567, -0.3291027247905731, 0.003120476845651865, 0.004030960611999035, 0.009574524126946926, -0.0332319475710392, 0.2840021550655365, 0.1919393539428711, -0.005344964563846588, 0.9854269027709961, 0.07988684624433517, 0.06349242478609085, 0.01806022785604, 0.28518861532211304, -0.2019701451063156, 0.03194994479417801, 0.992605447769165, -0.11832025647163391, 0.07474561035633087, -0.021679462864995003]} +{"t": 2.8323, "q": [-0.36115533113479614, -0.01328938640654087, 0.009695732034742832, 0.6269464492797852, -0.29550865292549133, 0.023692624643445015, -0.3478863835334778, 0.004235491156578064, -0.005825474392622709, 0.6231626272201538, -0.3291027247905731, 0.003120476845651865, 0.004044352564960718, 0.009551732800900936, -0.03323674574494362, 0.28399017453193665, 0.1919393539428711, -0.00535694882273674, 0.985438883304596, 0.07989882677793503, 0.0635044127702713, 0.018036259338259697, 0.28521257638931274, -0.2019701451063156, 0.03196192905306816, 0.992605447769165, -0.11834422498941422, 0.07472164183855057, -0.021679462864995003]} +{"t": 2.849, "q": [-0.3611297607421875, -0.013306431472301483, 0.009695732034742832, 0.6269634962081909, -0.29550865292549133, 0.023692624643445015, -0.347869336605072, 0.004235491156578064, -0.005852258298546076, 0.6231626272201538, -0.32909858226776123, 0.003113179700449109, 0.004097919911146164, 0.009544138796627522, -0.033241622149944305, 0.28399017453193665, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07989882677793503, 0.06351639330387115, 0.01804824359714985, 0.28521257638931274, -0.2019701451063156, 0.03194994479417801, 0.9925934672355652, -0.11830826848745346, 0.07474561035633087, -0.021643510088324547]} +{"t": 2.8657, "q": [-0.3611212372779846, -0.01328938640654087, 0.009709124453365803, 0.6269464492797852, -0.29550448060035706, 0.023685410618782043, -0.347869336605072, 0.004235491156578064, -0.0058388663455843925, 0.6231711506843567, -0.3291027247905731, 0.003120476845651865, 0.004044352564960718, 0.009544138796627522, -0.033241622149944305, 0.2840021550655365, 0.1919393539428711, -0.00535694882273674, 0.985438883304596, 0.07992279529571533, 0.0635044127702713, 0.01806022785604, 0.28521257638931274, -0.2019701451063156, 0.03196192905306816, 0.992605447769165, -0.11830826848745346, 0.07472164183855057, -0.0216554943472147]} +{"t": 2.8824, "q": [-0.36114680767059326, -0.01328938640654087, 0.009682340547442436, 0.6269634962081909, -0.29550448060035706, 0.023685410618782043, -0.347869336605072, 0.004235491156578064, -0.0058388663455843925, 0.6231796741485596, -0.3291027247905731, 0.003120476845651865, 0.004071136470884085, 0.009559335187077522, -0.03324170038104057, 0.2840021550655365, 0.1919393539428711, -0.005368933081626892, 0.9854149222373962, 0.07983890920877457, 0.06351639330387115, 0.01804824359714985, 0.2851766347885132, -0.2019461840391159, 0.03196192905306816, 0.9925934672355652, -0.11833223700523376, 0.07475759834051132, -0.02166747860610485]} +{"t": 2.8992, "q": [-0.36114680767059326, -0.013297909870743752, 0.009722515940666199, 0.6269464492797852, -0.29550865292549133, 0.023692624643445015, -0.3478778600692749, 0.004235491156578064, -0.005865650251507759, 0.6231796741485596, -0.3291025459766388, 0.003091433085501194, 0.004097919911146164, 0.009551732800900936, -0.03323674574494362, 0.2840021550655365, 0.1919393539428711, -0.005344964563846588, 0.9854149222373962, 0.07991081476211548, 0.06351639330387115, 0.01804824359714985, 0.2851766347885132, -0.2019701451063156, 0.03194994479417801, 0.9926174283027649, -0.11834422498941422, 0.07473362982273102, -0.0216554943472147]} +{"t": 2.9159, "q": [-0.3611212372779846, -0.01328938640654087, 0.009695732034742832, 0.6269464492797852, -0.29550448060035706, 0.023685410618782043, -0.3478778600692749, 0.004235491156578064, -0.005879042204469442, 0.6231626272201538, -0.3291025459766388, 0.003091433085501194, 0.004084527958184481, 0.009551740251481533, -0.03324657678604126, 0.2839781939983368, 0.1919393539428711, -0.005368933081626892, 0.9854149222373962, 0.07989882677793503, 0.06349242478609085, 0.018036259338259697, 0.2851526439189911, -0.2019701451063156, 0.03194994479417801, 0.9925934672355652, -0.11832025647163391, 0.07472164183855057, -0.0216554943472147]} +{"t": 2.9327, "q": [-0.36114680767059326, -0.01328938640654087, 0.00966894906014204, 0.6269294023513794, -0.29550036787986755, 0.02370712347328663, -0.3478863835334778, 0.00424401368945837, -0.005865650251507759, 0.6231711506843567, -0.32910671830177307, 0.00309873023070395, 0.004097919911146164, 0.009551740251481533, -0.03324657678604126, 0.28399017453193665, 0.1919393539428711, -0.005368933081626892, 0.9854149222373962, 0.07989882677793503, 0.0635283812880516, 0.018036259338259697, 0.28518861532211304, -0.2019701451063156, 0.03196192905306816, 0.992605447769165, -0.11830826848745346, 0.07473362982273102, -0.021679462864995003]} +{"t": 2.9494, "q": [-0.361095666885376, -0.01328938640654087, 0.009682340547442436, 0.6269294023513794, -0.29550865292549133, 0.023692624643445015, -0.34786084294319153, 0.00424401368945837, -0.005905826110392809, 0.6231711506843567, -0.32910671830177307, 0.00309873023070395, 0.004071136470884085, 0.009551740251481533, -0.03324657678604126, 0.28396621346473694, 0.1919393539428711, -0.005344964563846588, 0.9854149222373962, 0.07986287772655487, 0.0635044127702713, 0.018036259338259697, 0.28518861532211304, -0.2019701451063156, 0.03196192905306816, 0.9925934672355652, -0.11830826848745346, 0.07475759834051132, -0.021643510088324547]} +{"t": 2.9662, "q": [-0.3610786199569702, -0.013297909870743752, 0.00965555664151907, 0.6269379258155823, -0.2954961359500885, 0.02367098443210125, -0.34786084294319153, 0.004269579891115427, -0.005865650251507759, 0.6231711506843567, -0.32911086082458496, 0.003106027143076062, 0.004097919911146164, 0.009582125581800938, -0.033236902207136154, 0.28399017453193665, 0.1919393539428711, -0.005344964563846588, 0.9854149222373962, 0.07989882677793503, 0.06349242478609085, 0.01804824359714985, 0.28518861532211304, -0.2019461840391159, 0.03197391331195831, 0.9926174283027649, -0.11830826848745346, 0.07476957887411118, -0.0216554943472147]} +{"t": 2.9831, "q": [-0.36106157302856445, -0.013263821601867676, 0.00965555664151907, 0.6269123554229736, -0.2955003082752228, 0.023678196594119072, -0.347869336605072, 0.004252535756677389, -0.005879042204469442, 0.6231796741485596, -0.32911086082458496, 0.003106027143076062, 0.004044352564960718, 0.009582111611962318, -0.03321724012494087, 0.28399017453193665, 0.1919393539428711, -0.005344964563846588, 0.985438883304596, 0.07991081476211548, 0.0635044127702713, 0.01804824359714985, 0.28518861532211304, -0.2019461840391159, 0.03197391331195831, 0.9926174283027649, -0.11832025647163391, 0.07476957887411118, -0.021643510088324547]} +{"t": 2.9999, "q": [-0.36106157302856445, -0.01328938640654087, 0.009695732034742832, 0.6269294023513794, -0.29550865292549133, 0.023692624643445015, -0.347869336605072, 0.004269579891115427, -0.005865650251507759, 0.6231796741485596, -0.3291025459766388, 0.003091433085501194, 0.004057744517922401, 0.00957451667636633, -0.03322211652994156, 0.2839781939983368, 0.1919393539428711, -0.00535694882273674, 0.9854149222373962, 0.07988684624433517, 0.06351639330387115, 0.01804824359714985, 0.2851526439189911, -0.2019461840391159, 0.03196192905306816, 0.9926174283027649, -0.11832025647163391, 0.07476957887411118, -0.0216554943472147]} +{"t": 3.0166, "q": [-0.36107009649276733, -0.013297909870743752, 0.009682340547442436, 0.6269208788871765, -0.29550033807754517, 0.02369266003370285, -0.34786084294319153, 0.004261057823896408, -0.005852258298546076, 0.6231626272201538, -0.32909026741981506, 0.0030985854100435972, 0.004071136470884085, 0.00957451667636633, -0.03322211652994156, 0.28399017453193665, 0.1919393539428711, -0.005344964563846588, 0.985438883304596, 0.07989882677793503, 0.0635044127702713, 0.018036259338259697, 0.2851286828517914, -0.2019701451063156, 0.03196192905306816, 0.992605447769165, -0.11830826848745346, 0.07473362982273102, -0.021679462864995003]} +{"t": 3.0333, "q": [-0.36101046204566956, -0.01328938640654087, 0.009695732034742832, 0.6268782615661621, -0.29550033807754517, 0.02369266003370285, -0.3478352725505829, 0.004269579891115427, -0.005865650251507759, 0.6231626272201538, -0.3291027247905731, 0.003120476845651865, 0.004044352564960718, 0.00958969909697771, -0.033202532678842545, 0.28364264965057373, 0.18992599844932556, -0.004733768757432699, 0.9860979914665222, 0.07986287772655487, 0.06366020441055298, 0.018096180632710457, 0.28420591354370117, -0.20050807297229767, 0.03163835406303406, 0.9938997626304626, -0.11823636293411255, 0.07484148442745209, -0.02178732119500637]} +{"t": 3.0501, "q": [-0.3610275089740753, -0.01328938640654087, 0.009722515940666199, 0.6268782615661621, -0.2954919934272766, 0.023678231984376907, -0.34786084294319153, 0.004269579891115427, -0.005879042204469442, 0.6231626272201538, -0.32909026741981506, 0.0030985854100435972, 0.004084527958184481, 0.009597286581993103, -0.03318782523274422, 0.282875657081604, 0.1874212920665741, -0.00441019469872117, 0.9876199960708618, 0.07979097217321396, 0.06394782662391663, 0.018132133409380913, 0.2829475700855255, -0.19886623322963715, 0.03159041702747345, 0.9959011077880859, -0.11818842589855194, 0.07510513812303543, -0.02208692766726017]} +{"t": 3.0669, "q": [-0.36107009649276733, -0.013323476538062096, 0.009709124453365803, 0.6268782615661621, -0.2954961955547333, 0.023699909448623657, -0.34786084294319153, 0.004252535756677389, -0.0058388663455843925, 0.6231711506843567, -0.329094260931015, 0.003076838795095682, 0.004071136470884085, 0.009597286581993103, -0.03318782523274422, 0.2820487320423126, 0.18438929319381714, -0.004326305352151394, 0.9891659617424011, 0.0797070786356926, 0.0640556812286377, 0.018192054703831673, 0.28196483850479126, -0.19646938145160675, 0.031674306839704514, 0.9975429177284241, -0.11815247684717178, 0.0752369686961174, -0.022242721170186996]} +{"t": 3.0836, "q": [-0.3610275089740753, -0.013280864804983139, 0.00973590835928917, 0.6268612146377563, -0.2955003082752228, 0.023678196594119072, -0.34785231947898865, 0.004235491156578064, -0.0058388663455843925, 0.6231711506843567, -0.32909026741981506, 0.0030985854100435972, 0.004071136470884085, 0.009604902938008308, -0.03321244567632675, 0.28079038858413696, 0.18038655817508698, -0.004625910893082619, 0.9914429783821106, 0.0797070786356926, 0.0641036182641983, 0.01816808618605137, 0.2811978757381439, -0.1929100751876831, 0.031806133687496185, 0.9990170001983643, -0.11814048886299133, 0.07535681128501892, -0.02232661098241806]} +{"t": 3.1003, "q": [-0.3610530495643616, -0.01328938640654087, 0.009722515940666199, 0.626886785030365, -0.29550448060035706, 0.023685410618782043, -0.34782674908638, 0.004218447022140026, -0.005852258298546076, 0.6231796741485596, -0.3290861248970032, 0.0030912882648408413, 0.004057744517922401, 0.009612511843442917, -0.03322723135352135, 0.2791365683078766, 0.1742386519908905, -0.00447011599317193, 0.9942952394485474, 0.0797310471534729, 0.06419949233531952, 0.018216023221611977, 0.2805507183074951, -0.18863169848918915, 0.03183010220527649, 1.0003832578659058, -0.11811652034521103, 0.07535681128501892, -0.02238653227686882]} +{"t": 3.117, "q": [-0.3610871434211731, -0.013323476538062096, 0.009722515940666199, 0.6268782615661621, -0.29550865292549133, 0.023692624643445015, -0.3478352725505829, 0.004218447022140026, -0.0057719070464372635, 0.6231626272201538, -0.3291318118572235, 0.003171574790030718, 0.0041247038170695305, 0.00960490945726633, -0.03322227671742439, 0.2775786221027374, 0.16821058094501495, -0.004661863669753075, 0.9970635771751404, 0.07968311011791229, 0.06422346085309982, 0.018204038962721825, 0.2797357738018036, -0.18405373394489288, 0.03184208646416664, 1.002180814743042, -0.11809255182743073, 0.07536879181861877, -0.022374548017978668]} +{"t": 3.1338, "q": [-0.3610530495643616, -0.013323476538062096, 0.009682340547442436, 0.6268782615661621, -0.2954961955547333, 0.023699909448623657, -0.34784379601478577, 0.004218447022140026, -0.005852258298546076, 0.6231711506843567, -0.32909026741981506, 0.0030985854100435972, 0.004097919911146164, 0.009604895487427711, -0.03320261463522911, 0.2762603461742401, 0.16075639426708221, -0.004685832187533379, 0.9994723796844482, 0.07963517308235168, 0.06428338587284088, 0.018204038962721825, 0.27866917848587036, -0.17864884436130524, 0.03189002349972725, 1.0045536756515503, -0.11805660277605057, 0.07541672885417938, -0.022470422089099884]} +{"t": 3.1505, "q": [-0.36114680767059326, -0.013297909870743752, 0.009709124453365803, 0.6268782615661621, -0.29550036787986755, 0.02370712347328663, -0.34786084294319153, 0.004209924954921007, -0.005812082905322313, 0.6231626272201538, -0.3290861248970032, 0.0030912882648408413, 0.004084527958184481, 0.009589706547558308, -0.033212363719940186, 0.2751338481903076, 0.15299062430858612, -0.004733768757432699, 1.0019770860671997, 0.07963517308235168, 0.06429536640644073, 0.018216023221611977, 0.27760258316993713, -0.17282451689243317, 0.03194994479417801, 1.006794810295105, -0.11803263425827026, 0.07545268535614014, -0.022458437830209732]} +{"t": 3.1673, "q": [-0.3611297607421875, -0.01328938640654087, 0.009722515940666199, 0.626886785030365, -0.29550448060035706, 0.023685410618782043, -0.347869336605072, 0.004201402887701988, -0.005812082905322313, 0.6231796741485596, -0.3290861248970032, 0.0030912882648408413, 0.004044352564960718, 0.009635274298489094, -0.033183109015226364, 0.27437883615493774, 0.14515294134616852, -0.004805674310773611, 1.0040743350982666, 0.07955128699541092, 0.06431933492422104, 0.018192054703831673, 0.276416152715683, -0.16726383566856384, 0.03197391331195831, 1.0087721347808838, -0.11804462224245071, 0.0754886344075203, -0.022458437830209732]} +{"t": 3.1841, "q": [-0.36111271381378174, -0.013314953073859215, 0.009749299846589565, 0.6268782615661621, -0.29550036787986755, 0.02370712347328663, -0.3478778600692749, 0.004192880820482969, -0.0057719070464372635, 0.6231711506843567, -0.3290903568267822, 0.0031131075229495764, 0.004044352564960718, 0.00962766446173191, -0.03316832333803177, 0.27394741773605347, 0.13683588802814484, -0.004805674310773611, 1.00566828250885, 0.07962319254875183, 0.06434330344200134, 0.018192054703831673, 0.274810254573822, -0.16127172112464905, 0.03193796053528786, 1.0113487243652344, -0.11803263425827026, 0.0755605399608612, -0.022482406347990036]} +{"t": 3.2008, "q": [-0.36106157302856445, -0.01328938640654087, 0.009722515940666199, 0.6268782615661621, -0.2954961955547333, 0.023699909448623657, -0.34785231947898865, 0.00418435875326395, -0.005825474392622709, 0.6231711506843567, -0.32909026741981506, 0.0030985854100435972, 0.004071136470884085, 0.009627636522054672, -0.033128999173641205, 0.273611843585968, 0.1290820837020874, -0.004877579864114523, 1.0067708492279053, 0.07952731847763062, 0.06436727195978165, 0.018204038962721825, 0.2733481824398041, -0.15548333525657654, 0.03191399201750755, 1.013014554977417, -0.11803263425827026, 0.07565641403198242, -0.022518359124660492]} +{"t": 3.2175, "q": [-0.3610275089740753, -0.013272343203425407, 0.009722515940666199, 0.6268697381019592, -0.29550448060035706, 0.023685410618782043, -0.3478778600692749, 0.004218447022140026, -0.005825474392622709, 0.6231711506843567, -0.32909026741981506, 0.0030985854100435972, 0.004044352564960718, 0.009635230526328087, -0.03312412276864052, 0.27320438623428345, 0.1206931322813034, -0.004841627087444067, 1.0080171823501587, 0.07951533794403076, 0.06436727195978165, 0.018192054703831673, 0.271814227104187, -0.1492035984992981, 0.03193796053528786, 1.0145126581192017, -0.11805660277605057, 0.07568038254976273, -0.022482406347990036]} +{"t": 3.2343, "q": [-0.3610530495643616, -0.01328938640654087, 0.009722515940666199, 0.6268527507781982, -0.295492023229599, 0.023692695423960686, -0.34790343046188354, 0.00424401368945837, -0.005785298999398947, 0.6231626272201538, -0.329094260931015, 0.003076838795095682, 0.003977392800152302, 0.009650426916778088, -0.033124200999736786, 0.27230557799339294, 0.11243600398302078, -0.0049614692106842995, 1.0099705457687378, 0.07950334995985031, 0.0643792599439621, 0.018204038962721825, 0.2702682614326477, -0.1428879201412201, 0.03197391331195831, 1.015986680984497, -0.11800866574048996, 0.07572831958532333, -0.022494390606880188]} +{"t": 3.2511, "q": [-0.3610445559024811, -0.013272343203425407, 0.009722515940666199, 0.6268186569213867, -0.29550448060035706, 0.023685410618782043, -0.34789490699768066, 0.00424401368945837, -0.005812082905322313, 0.6231796741485596, -0.329094260931015, 0.003076838795095682, 0.003977392800152302, 0.009658021852374077, -0.0331193245947361, 0.27083149552345276, 0.10480204969644547, -0.004985437728464603, 1.0129066705703735, 0.07952731847763062, 0.0643792599439621, 0.01822800748050213, 0.26905784010887146, -0.13693176209926605, 0.031985897570848465, 1.0170292854309082, -0.11800866574048996, 0.07576426863670349, -0.022494390606880188]} +{"t": 3.2678, "q": [-0.3610871434211731, -0.013255298137664795, 0.00965555664151907, 0.6268101334571838, -0.2954961657524109, 0.02368544600903988, -0.34789490699768066, 0.004235491156578064, -0.005825474392622709, 0.6231626272201538, -0.32909831404685974, 0.0030696140602231026, 0.004084527958184481, 0.00968080572783947, -0.03310469910502434, 0.26886609196662903, 0.09676063805818558, -0.0049494849517941475, 1.0163462162017822, 0.07950334995985031, 0.0644032284617424, 0.018216023221611977, 0.2673680782318115, -0.1308797299861908, 0.03199788182973862, 1.018311619758606, -0.11803263425827026, 0.07577625662088394, -0.022458437830209732]} +{"t": 3.2845, "q": [-0.36111271381378174, -0.013238254934549332, 0.00965555664151907, 0.626801609992981, -0.2954878807067871, 0.023685481399297714, -0.34790343046188354, 0.004278101958334446, -0.005852258298546076, 0.6231626272201538, -0.3291357159614563, 0.0031353060621768236, 0.004071136470884085, 0.009688393212854862, -0.03308999165892601, 0.2666250467300415, 0.08963002264499664, -0.0049614692106842995, 1.0205646753311157, 0.07953930646181107, 0.06445116549730301, 0.01829991117119789, 0.2652828097343445, -0.12473181635141373, 0.03194994479417801, 1.0202889442443848, -0.11802065372467041, 0.0757882371544838, -0.022542327642440796]} +{"t": 3.3014, "q": [-0.36111271381378174, -0.013238254934549332, 0.009601988829672337, 0.626801609992981, -0.29548367857933044, 0.0236782506108284, -0.34789490699768066, 0.004337756894528866, -0.0058388663455843925, 0.6231796741485596, -0.329143762588501, 0.003106316551566124, 0.004071136470884085, 0.009688393212854862, -0.03308999165892601, 0.26516297459602356, 0.08297877758741379, -0.004589958116412163, 1.023608684539795, 0.07949136942625046, 0.06464291363954544, 0.019030949100852013, 0.2630537450313568, -0.11877565830945969, 0.03191399201750755, 1.0222424268722534, -0.11802065372467041, 0.07582419365644455, -0.022614233195781708]} +{"t": 3.3181, "q": [-0.361095666885376, -0.0132297333329916, 0.009615381248295307, 0.6267845630645752, -0.2955003082752228, 0.023678196594119072, -0.34789490699768066, 0.004405933897942305, -0.0058388663455843925, 0.6231711506843567, -0.32916414737701416, 0.003084714524447918, 0.004057744517922401, 0.00968081969767809, -0.03312436118721962, 0.2647075653076172, 0.07711848616600037, -0.0041705104522407055, 1.0248908996582031, 0.07951533794403076, 0.06478672474622726, 0.020385166630148888, 0.2613280117511749, -0.1134546622633934, 0.03169827535748482, 1.024303674697876, -0.11798469722270966, 0.07586014270782471, -0.023608922958374023]} +{"t": 3.3348, "q": [-0.3610360324382782, -0.013246776536107063, 0.009561813436448574, 0.6267845630645752, -0.2955003082752228, 0.023678196594119072, -0.3478778600692749, 0.004457066301256418, -0.0058388663455843925, 0.6231796741485596, -0.3291472792625427, 0.0030119242146611214, 0.004071136470884085, 0.009741612710058689, -0.03313450887799263, 0.26426413655281067, 0.0740145742893219, -0.002984072081744671, 1.0263410806655884, 0.07946740090847015, 0.06495450437068939, 0.0222666896879673, 0.25990188121795654, -0.10872089117765427, 0.031374700367450714, 1.026760458946228, -0.11793676018714905, 0.07594403624534607, -0.02491520345211029]} +{"t": 3.3515, "q": [-0.3610019385814667, -0.013246776536107063, 0.009521638043224812, 0.6267163753509521, -0.2954961359500885, 0.02367098443210125, -0.347869336605072, 0.004457066301256418, -0.005919218063354492, 0.6231796741485596, -0.32917970418930054, 0.002939585829153657, 0.004044352564960718, 0.009749221615493298, -0.033149294555187225, 0.2640843987464905, 0.07342734932899475, -0.0020852552261203527, 1.0275514125823975, 0.0794554129242897, 0.0649784728884697, 0.023764718323946, 0.2586435377597809, -0.1061922162771225, 0.030703585594892502, 1.029145359992981, -0.11790081113576889, 0.07619570195674896, -0.026628948748111725]} +{"t": 3.3683, "q": [-0.3610275089740753, -0.013246776536107063, 0.009454678744077682, 0.6266822814941406, -0.29548367857933044, 0.0236782506108284, -0.3478863835334778, 0.004457066301256418, -0.005946001503616571, 0.6231796741485596, -0.32920417189598083, 0.0029107590671628714, 0.004071136470884085, 0.009749200195074081, -0.0331198014318943, 0.26404842734336853, 0.07387076318264008, -0.0011145329335704446, 1.0287498235702515, 0.07947938144207001, 0.06499045342206955, 0.024471787735819817, 0.2575410008430481, -0.10522149503231049, 0.03051183745265007, 1.0316500663757324, -0.11790081113576889, 0.07637546956539154, -0.028067056089639664]} +{"t": 3.3851, "q": [-0.3610530495643616, -0.013246776536107063, 0.009494854137301445, 0.6266908049583435, -0.2954878807067871, 0.023685481399297714, -0.34790343046188354, 0.004448544234037399, -0.005972785409539938, 0.6231711506843567, -0.3291877210140228, 0.0029106144793331623, 0.004071136470884085, 0.009825082495808601, -0.032982561737298965, 0.26398852467536926, 0.07467370480298996, -0.0004074636672157794, 1.0303317308425903, 0.07947938144207001, 0.0649784728884697, 0.024663535878062248, 0.25595909357070923, -0.10524546355009079, 0.030415963381528854, 1.0344663858413696, -0.11790081113576889, 0.07650729268789291, -0.02906174585223198]} +{"t": 3.4018, "q": [-0.3610871434211731, -0.013246776536107063, 0.009561813436448574, 0.6267078518867493, -0.2954961955547333, 0.023699909448623657, -0.34795457124710083, 0.004431500099599361, -0.005905826110392809, 0.6231626272201538, -0.32919198274612427, 0.0029324335046112537, 0.004071136470884085, 0.009824981912970543, -0.03284492716193199, 0.2637608051300049, 0.07529688626527786, 0.00045540055725723505, 1.032285213470459, 0.07947938144207001, 0.0649784728884697, 0.024699488654732704, 0.25430527329444885, -0.10522149503231049, 0.030415963381528854, 1.0366474390029907, -0.11791279166936874, 0.07672300934791565, -0.029517147690057755]} +{"t": 3.4186, "q": [-0.3610871434211731, -0.013280864804983139, 0.00965555664151907, 0.6267078518867493, -0.29547548294067383, 0.023721709847450256, -0.34793752431869507, 0.0043803672306239605, -0.005879042204469442, 0.6231711506843567, -0.3291589915752411, 0.002917621983215213, 0.004057744517922401, 0.009847677312791348, -0.03271232917904854, 0.26364096999168396, 0.0755365714430809, 0.0016058861510828137, 1.0340348482131958, 0.07944343239068985, 0.06496648490428925, 0.024687504395842552, 0.25298699736595154, -0.10538927465677261, 0.03045191615819931, 1.0380735397338867, -0.1179487481713295, 0.07683087140321732, -0.02960103563964367]} +{"t": 3.4353, "q": [-0.3610871434211731, -0.013340519741177559, 0.009695732034742832, 0.6267163753509521, -0.2954796552658081, 0.023728923872113228, -0.3479630947113037, 0.004320712294429541, -0.005852258298546076, 0.6231711506843567, -0.329101026058197, 0.002844488015398383, 0.003990784753113985, 0.009847662411630154, -0.032692667096853256, 0.2632335126399994, 0.07554855942726135, 0.0024208135437220335, 1.0357606410980225, 0.07947938144207001, 0.06494251638650894, 0.024699488654732704, 0.25188446044921875, -0.10567689687013626, 0.03045191615819931, 1.039008378982544, -0.1179727166891098, 0.07689078897237778, -0.029636988416314125]} +{"t": 3.452, "q": [-0.3610871434211731, -0.013340519741177559, 0.009722515940666199, 0.6267163753509521, -0.2954796552658081, 0.023728923872113228, -0.34794604778289795, 0.004295146092772484, -0.005825474392622709, 0.6231626272201538, -0.3290887475013733, 0.00285164057277143, 0.004044352564960718, 0.009824885986745358, -0.03271712362766266, 0.2625863552093506, 0.07550062239170074, 0.002600576961413026, 1.037522315979004, 0.0794554129242897, 0.06490656733512878, 0.024723457172513008, 0.2506500780582428, -0.10556904226541519, 0.030487868934869766, 1.0400749444961548, -0.11796072870492935, 0.07696269452571869, -0.02972087822854519]} +{"t": 3.4687, "q": [-0.36106157302856445, -0.013340519741177559, 0.009722515940666199, 0.6267163753509521, -0.29548799991607666, 0.02374335192143917, -0.3479290008544922, 0.004295146092772484, -0.005825474392622709, 0.6231711506843567, -0.32908883690834045, 0.0028661624528467655, 0.004097919911146164, 0.009832488372921944, -0.03272207826375961, 0.2610164284706116, 0.07546466588973999, 0.00264851376414299, 1.0408419370651245, 0.0794554129242897, 0.06482267379760742, 0.024747425690293312, 0.2494516521692276, -0.10538927465677261, 0.03045191615819931, 1.0416209697723389, -0.11793676018714905, 0.0770346000790596, -0.030008500441908836]} +{"t": 3.4856, "q": [-0.3610786199569702, -0.013340519741177559, 0.009722515940666199, 0.626724898815155, -0.2954879403114319, 0.02371440827846527, -0.3479290008544922, 0.004286624025553465, -0.005825474392622709, 0.6231626272201538, -0.32907238602638245, 0.0028660178650170565, 0.004084527958184481, 0.009817284531891346, -0.032712168991565704, 0.25955435633659363, 0.07542871683835983, 0.0027563718613237143, 1.0431549549102783, 0.07946740090847015, 0.06491854786872864, 0.02473544143140316, 0.2481573522090912, -0.10532935708761215, 0.030427947640419006, 1.0432507991790771, -0.11796072870492935, 0.07711848616600037, -0.03075152263045311]} +{"t": 3.5023, "q": [-0.361095666885376, -0.013340519741177559, 0.009722515940666199, 0.6267419457435608, -0.29547548294067383, 0.023721709847450256, -0.3479290008544922, 0.004286624025553465, -0.005812082905322313, 0.6231711506843567, -0.32906028628349304, 0.0029022321105003357, 0.004044352564960718, 0.009809660725295544, -0.03267772123217583, 0.25837990641593933, 0.07538077980279922, 0.0027803401462733746, 1.0444492101669312, 0.0794554129242897, 0.06490656733512878, 0.024771394208073616, 0.2466593235731125, -0.1053173691034317, 0.030403979122638702, 1.0450243949890137, -0.11793676018714905, 0.07720237970352173, -0.0318780392408371]} +{"t": 3.519, "q": [-0.3610786199569702, -0.013340519741177559, 0.009722515940666199, 0.6267504692077637, -0.29547548294067383, 0.023721709847450256, -0.3479290008544922, 0.004286624025553465, -0.005812082905322313, 0.6231711506843567, -0.3290357291698456, 0.0029165372252464294, 0.004004176706075668, 0.009824843145906925, -0.03265813738107681, 0.25712156295776367, 0.07542871683835983, 0.0028402614407241344, 1.045515775680542, 0.07949136942625046, 0.06491854786872864, 0.024771394208073616, 0.24514931440353394, -0.1052934005856514, 0.03045191615819931, 1.0470257997512817, -0.11791279166936874, 0.07726229727268219, -0.032944634556770325]} +{"t": 3.5358, "q": [-0.3610275089740753, -0.013331998139619827, 0.009722515940666199, 0.6267419457435608, -0.29547548294067383, 0.023721709847450256, -0.34790343046188354, 0.004286624025553465, -0.00579869095236063, 0.6231711506843567, -0.3290397822856903, 0.00290931249037385, 0.004030960611999035, 0.009824864566326141, -0.032687630504369736, 0.2560669481754303, 0.07547665387392044, 0.0028762139845639467, 1.0464146137237549, 0.07949136942625046, 0.06494251638650894, 0.024783378466963768, 0.24407073855400085, -0.10528142005205154, 0.03043993189930916, 1.0489072799682617, -0.1179247796535492, 0.07734619081020355, -0.0337236113846302]} +{"t": 3.5525, "q": [-0.3609934151172638, -0.013340519741177559, 0.009695732034742832, 0.6267504692077637, -0.2954671382904053, 0.02370726503431797, -0.34786084294319153, 0.004286624025553465, -0.005812082905322313, 0.6231796741485596, -0.3290315568447113, 0.0029092219192534685, 0.004044352564960718, 0.009870482608675957, -0.0327271930873394, 0.25473669171333313, 0.07562046498060226, 0.0029121667612344027, 1.0477808713912964, 0.07947938144207001, 0.06494251638650894, 0.024783378466963768, 0.24361532926559448, -0.1052694320678711, 0.03045191615819931, 1.0501537322998047, -0.11793676018714905, 0.07738213986158371, -0.03422694653272629]} +{"t": 3.5692, "q": [-0.3609507977962494, -0.013340519741177559, 0.009682340547442436, 0.6267504692077637, -0.29547131061553955, 0.023714497685432434, -0.34780970215797424, 0.004286624025553465, -0.005825474392622709, 0.6231711506843567, -0.3290480077266693, 0.0029093846678733826, 0.004030960611999035, 0.009855307638645172, -0.032756607979536057, 0.2531667649745941, 0.07564442604780197, 0.002948119305074215, 1.0497702360153198, 0.07941946387290955, 0.06495450437068939, 0.02479536272585392, 0.2434355616569519, -0.10524546355009079, 0.03045191615819931, 1.0511244535446167, -0.11796072870492935, 0.07745404541492462, -0.03449060022830963]} +{"t": 3.5859, "q": [-0.360908180475235, -0.013331998139619827, 0.00966894906014204, 0.6267504692077637, -0.2954587936401367, 0.023692836984992027, -0.34782674908638, 0.004286624025553465, -0.0058388663455843925, 0.6231881976127625, -0.32903555035591125, 0.0028874753043055534, 0.004057744517922401, 0.00984770618379116, -0.0327516533434391, 0.2513691186904907, 0.07569236308336258, 0.002972087822854519, 1.0523827075958252, 0.0794314444065094, 0.06499045342206955, 0.024783378466963768, 0.24329175055027008, -0.1052934005856514, 0.030463900417089462, 1.0522269010543823, -0.11793676018714905, 0.07744206488132477, -0.03471830114722252]} +{"t": 3.6027, "q": [-0.3609422743320465, -0.013340519741177559, 0.009642165154218674, 0.6267334222793579, -0.2954587936401367, 0.023692836984992027, -0.3478182256221771, 0.004303668159991503, -0.005865650251507759, 0.6231967210769653, -0.32903969287872314, 0.0028947722166776657, 0.004097919911146164, 0.009840089827775955, -0.032727036625146866, 0.24953553080558777, 0.07571633160114288, 0.002996056340634823, 1.0548874139785767, 0.07947938144207001, 0.06502640247344971, 0.024807346984744072, 0.24305206537246704, -0.1052694320678711, 0.030475884675979614, 1.0540485382080078, -0.11793676018714905, 0.07744206488132477, -0.034874096512794495]} +{"t": 3.6194, "q": [-0.36092522740364075, -0.013340519741177559, 0.009601988829672337, 0.6267334222793579, -0.2954547107219696, 0.023714549839496613, -0.3478182256221771, 0.004312190227210522, -0.005919218063354492, 0.6231881976127625, -0.32903555035591125, 0.0028874753043055534, 0.004138095770031214, 0.009847677312791348, -0.03271232917904854, 0.2479056864976883, 0.07571633160114288, 0.003032008884474635, 1.0571644306182861, 0.07944343239068985, 0.06501442193984985, 0.024843299761414528, 0.24284833669662476, -0.1052694320678711, 0.03045191615819931, 1.0557982921600342, -0.1179487481713295, 0.07740610837936401, -0.034993939101696014]} +{"t": 3.6361, "q": [-0.36092522740364075, -0.013306431472301483, 0.009628772735595703, 0.6267334222793579, -0.2954505383968353, 0.02370733581483364, -0.3478352725505829, 0.004320712294429541, -0.005932609550654888, 0.6231796741485596, -0.3290436565876007, 0.0028730256017297506, 0.004205055069178343, 0.009855278767645359, -0.03271728381514549, 0.24627582728862762, 0.07571633160114288, 0.003055977402254939, 1.0602444410324097, 0.07947938144207001, 0.06501442193984985, 0.024843299761414528, 0.24272850155830383, -0.10524546355009079, 0.03043993189930916, 1.0572243928909302, -0.1179247796535492, 0.07743007689714432, -0.03502989187836647]} +{"t": 3.653, "q": [-0.3608996570110321, -0.013331998139619827, 0.009642165154218674, 0.6267163753509521, -0.2954547107219696, 0.023714549839496613, -0.3478352725505829, 0.004329234827309847, -0.005919218063354492, 0.6231881976127625, -0.3290477395057678, 0.002865800866857171, 0.004097919911146164, 0.009870496578514576, -0.03274685516953468, 0.24501748383045197, 0.07571633160114288, 0.003091930178925395, 1.0631805658340454, 0.07941946387290955, 0.06503839045763016, 0.02485528402030468, 0.24263262748718262, -0.10524546355009079, 0.030463900417089462, 1.058279037475586, -0.11791279166936874, 0.07740610837936401, -0.03502989187836647]} +{"t": 3.6697, "q": [-0.3608996570110321, -0.013306431472301483, 0.00965555664151907, 0.6267078518867493, -0.2954587936401367, 0.023692836984992027, -0.3478352725505829, 0.004346278961747885, -0.005892434157431126, 0.6231711506843567, -0.32905587553977966, 0.002851333236321807, 0.004017568659037352, 0.009870482608675957, -0.0327271930873394, 0.24471788108348846, 0.07569236308336258, 0.003103914437815547, 1.064271092414856, 0.0794554129242897, 0.06502640247344971, 0.024867268279194832, 0.24232102930545807, -0.1052934005856514, 0.03045191615819931, 1.0589860677719116, -0.1179247796535492, 0.07740610837936401, -0.035053860396146774]} +{"t": 3.6864, "q": [-0.360908180475235, -0.013323476538062096, 0.00965555664151907, 0.6266993284225464, -0.2954629957675934, 0.023714514449238777, -0.34782674908638, 0.004354801028966904, -0.005905826110392809, 0.6231711506843567, -0.3290517032146454, 0.002844036091119051, 0.004044352564960718, 0.009855278767645359, -0.03271728381514549, 0.24439430236816406, 0.07569236308336258, 0.003103914437815547, 1.0648822784423828, 0.07939549535512924, 0.06503839045763016, 0.024879250675439835, 0.24215325713157654, -0.10524546355009079, 0.03043993189930916, 1.0595253705978394, -0.11796072870492935, 0.07739412784576416, -0.03508981317281723]} +{"t": 3.7032, "q": [-0.3609422743320465, -0.013306431472301483, 0.00965555664151907, 0.6266822814941406, -0.2954629957675934, 0.023714514449238777, -0.34784379601478577, 0.004354801028966904, -0.005892434157431126, 0.6232052445411682, -0.3290517032146454, 0.002844036091119051, 0.004071136470884085, 0.009855278767645359, -0.03271728381514549, 0.24415461719036102, 0.07569236308336258, 0.003103914437815547, 1.0651220083236694, 0.07941946387290955, 0.06502640247344971, 0.02490321919322014, 0.2419615089893341, -0.10524546355009079, 0.03043993189930916, 1.060160517692566, -0.11790081113576889, 0.07739412784576416, -0.03514973446726799]} +{"t": 3.7199, "q": [-0.36091670393943787, -0.01334904134273529, 0.00966894906014204, 0.6266737580299377, -0.2954671382904053, 0.02370726503431797, -0.3478352725505829, 0.004329234827309847, -0.005892434157431126, 0.6231796741485596, -0.32905587553977966, 0.002851333236321807, 0.004084527958184481, 0.009870468638837337, -0.03270753100514412, 0.24384303390979767, 0.07571633160114288, 0.0031638354994356632, 1.0654934644699097, 0.07944343239068985, 0.06501442193984985, 0.02491520345211029, 0.24179372191429138, -0.10524546355009079, 0.03043993189930916, 1.0608675479888916, -0.11788882315158844, 0.07739412784576416, -0.035173699259757996]} +{"t": 3.7366, "q": [-0.3608996570110321, -0.013340519741177559, 0.009695732034742832, 0.6266737580299377, -0.2954588830471039, 0.023721763864159584, -0.34784379601478577, 0.004329234827309847, -0.005879042204469442, 0.6231796741485596, -0.32905587553977966, 0.002851333236321807, 0.004111311864107847, 0.009862873703241348, -0.032712407410144806, 0.24357937276363373, 0.07571633160114288, 0.003187804017215967, 1.065769076347351, 0.0794074758887291, 0.06502640247344971, 0.02491520345211029, 0.24169784784317017, -0.10528142005205154, 0.03045191615819931, 1.0616105794906616, -0.11790081113576889, 0.07738213986158371, -0.03518568351864815]} +{"t": 3.7534, "q": [-0.36091670393943787, -0.013374608010053635, 0.00973590835928917, 0.6266652345657349, -0.2954629957675934, 0.023714514449238777, -0.347869336605072, 0.004320712294429541, -0.005812082905322313, 0.6231711506843567, -0.32906433939933777, 0.002895007375627756, 0.004097919911146164, 0.009862873703241348, -0.032712407410144806, 0.24312397837638855, 0.07574030011892319, 0.0032117723021656275, 1.0662964582443237, 0.0794554129242897, 0.06503839045763016, 0.024927187711000443, 0.2413862645626068, -0.10524546355009079, 0.03043993189930916, 1.062904953956604, -0.11790081113576889, 0.0773581713438034, -0.03518568351864815]} +{"t": 3.7701, "q": [-0.36091670393943787, -0.013374608010053635, 0.009749299846589565, 0.626656711101532, -0.29547131061553955, 0.023714497685432434, -0.3478863835334778, 0.004320712294429541, -0.005812082905322313, 0.6231881976127625, -0.32907265424728394, 0.002909601666033268, 0.004097919911146164, 0.009855293668806553, -0.032736945897340775, 0.24262064695358276, 0.07571633160114288, 0.0032477250788360834, 1.0669915676116943, 0.0794554129242897, 0.06502640247344971, 0.024939171969890594, 0.24112261831760406, -0.1052934005856514, 0.03043993189930916, 1.0641392469406128, -0.11790081113576889, 0.07737015932798386, -0.0351976677775383]} +{"t": 3.7869, "q": [-0.3609422743320465, -0.013383129611611366, 0.009722515940666199, 0.626656711101532, -0.2954671382904053, 0.02370726503431797, -0.3478778600692749, 0.004286624025553465, -0.005785298999398947, 0.6231626272201538, -0.3290807902812958, 0.002895134035497904, 0.004097919911146164, 0.009870482608675957, -0.0327271930873394, 0.24203340709209442, 0.07572831958532333, 0.0032357408199459314, 1.0676027536392212, 0.07949136942625046, 0.06502640247344971, 0.02491520345211029, 0.24082300066947937, -0.10524546355009079, 0.03045191615819931, 1.0654934644699097, -0.11790081113576889, 0.07738213986158371, -0.03520965203642845]} +{"t": 3.8036, "q": [-0.3609422743320465, -0.01334904134273529, 0.00973590835928917, 0.6266737580299377, -0.2954671382904053, 0.02370726503431797, -0.34786084294319153, 0.004286624025553465, -0.0057719070464372635, 0.6231711506843567, -0.32907265424728394, 0.002909601666033268, 0.004205055069178343, 0.009847677312791348, -0.03271232917904854, 0.24127840995788574, 0.07575228810310364, 0.0032357408199459314, 1.068501591682434, 0.07947938144207001, 0.06502640247344971, 0.024939171969890594, 0.24051141738891602, -0.10525745153427124, 0.03043993189930916, 1.0672551393508911, -0.11788882315158844, 0.0773581713438034, -0.03524560481309891]} +{"t": 3.8203, "q": [-0.3609934151172638, -0.013374608010053635, 0.00965555664151907, 0.6266737580299377, -0.29547959566116333, 0.023699980229139328, -0.3478778600692749, 0.00424401368945837, -0.005879042204469442, 0.6231711506843567, -0.3290768265724182, 0.002916898811236024, 0.004486285150051117, 0.009870482608675957, -0.0327271930873394, 0.2401159405708313, 0.07577625662088394, 0.0032597093377262354, 1.0704549551010132, 0.07944343239068985, 0.06501442193984985, 0.024939171969890594, 0.24007998406887054, -0.10524546355009079, 0.03045191615819931, 1.0692805051803589, -0.1179247796535492, 0.07738213986158371, -0.035221636295318604]} +{"t": 3.8373, "q": [-0.36096784472465515, -0.013357564806938171, 0.009615381248295307, 0.6266822814941406, -0.2954837679862976, 0.0237071942538023, -0.347869336605072, 0.004235491156578064, -0.005879042204469442, 0.6231796741485596, -0.32907265424728394, 0.002909601666033268, 0.004606812261044979, 0.009862881153821945, -0.03272223845124245, 0.23913322389125824, 0.07575228810310364, 0.0032357408199459314, 1.0719770193099976, 0.0794314444065094, 0.06501442193984985, 0.024939171969890594, 0.2395167201757431, -0.1052694320678711, 0.03045191615819931, 1.071126103401184, -0.11790081113576889, 0.07740610837936401, -0.035221636295318604]} +{"t": 3.854, "q": [-0.3609422743320465, -0.013400174677371979, 0.009682340547442436, 0.6266822814941406, -0.29547131061553955, 0.023714497685432434, -0.347869336605072, 0.004226969089359045, -0.005852258298546076, 0.6231796741485596, -0.32907265424728394, 0.002909601666033268, 0.004660379607230425, 0.009862873703241348, -0.032712407410144806, 0.23848608136177063, 0.07572831958532333, 0.0032357408199459314, 1.0729477405548096, 0.07939549535512924, 0.06501442193984985, 0.024939171969890594, 0.23918116092681885, -0.10524546355009079, 0.030475884675979614, 1.072252631187439, -0.11790081113576889, 0.0773581713438034, -0.035233620554208755]} +{"t": 3.8708, "q": [-0.36093375086784363, -0.013357564806938171, 0.00966894906014204, 0.6266737580299377, -0.295462965965271, 0.023700051009655, -0.3478778600692749, 0.004252535756677389, -0.0058388663455843925, 0.6231881976127625, -0.3290436565876007, 0.0028730256017297506, 0.004486285150051117, 0.009855278767645359, -0.03271728381514549, 0.2379228174686432, 0.07572831958532333, 0.0032357408199459314, 1.0737626552581787, 0.0794314444065094, 0.06502640247344971, 0.0249631404876709, 0.23878568410873413, -0.1052694320678711, 0.030475884675979614, 1.0734390020370483, -0.11790081113576889, 0.07738213986158371, -0.03524560481309891]} +{"t": 3.8877, "q": [-0.36091670393943787, -0.013340519741177559, 0.009682340547442436, 0.6266737580299377, -0.2954588234424591, 0.023707300424575806, -0.34786084294319153, 0.004269579891115427, -0.0058388663455843925, 0.6231967210769653, -0.329047828912735, 0.0028803227469325066, 0.004446109291166067, 0.009855293668806553, -0.032736945897340775, 0.23733559250831604, 0.07574030011892319, 0.0032477250788360834, 1.074709415435791, 0.0794554129242897, 0.06501442193984985, 0.0249631404876709, 0.23840218782424927, -0.10524546355009079, 0.030463900417089462, 1.074949026107788, -0.11790081113576889, 0.0773581713438034, -0.03524560481309891]} +{"t": 3.9046, "q": [-0.3608570694923401, -0.013340519741177559, 0.009709124453365803, 0.6266737580299377, -0.2954588234424591, 0.023707300424575806, -0.3478352725505829, 0.004286624025553465, -0.005852258298546076, 0.6231626272201538, -0.3290436565876007, 0.0028730256017297506, 0.004419325385242701, 0.009885686449706554, -0.03273710235953331, 0.23695209622383118, 0.07576426863670349, 0.0032597093377262354, 1.0752726793289185, 0.0794554129242897, 0.06502640247344971, 0.02497512474656105, 0.23749138414859772, -0.10524546355009079, 0.030463900417089462, 1.0772860050201416, -0.11790081113576889, 0.07738213986158371, -0.03525758907198906]} +{"t": 3.9214, "q": [-0.3608485460281372, -0.013357564806938171, 0.009695732034742832, 0.6266822814941406, -0.29544222354888916, 0.023707371205091476, -0.34782674908638, 0.004286624025553465, -0.0058388663455843925, 0.6231796741485596, -0.32903555035591125, 0.0028874753043055534, 0.004419325385242701, 0.009870482608675957, -0.0327271930873394, 0.23672440648078918, 0.07576426863670349, 0.0032597093377262354, 1.0756081342697144, 0.07947938144207001, 0.06502640247344971, 0.02502306178212166, 0.23658059537410736, -0.10520951449871063, 0.030487868934869766, 1.0790596008300781, -0.11791279166936874, 0.07739412784576416, -0.035221636295318604]} +{"t": 3.9381, "q": [-0.36078888177871704, -0.013374608010053635, 0.009722515940666199, 0.6266822814941406, -0.2954505681991577, 0.02372179925441742, -0.3478352725505829, 0.004303668159991503, -0.005852258298546076, 0.6232052445411682, -0.3290272355079651, 0.0028728810139000416, 0.004312190227210522, 0.009900861419737339, -0.03270769119262695, 0.23643678426742554, 0.07576426863670349, 0.0032836776226758957, 1.076375126838684, 0.07941946387290955, 0.06502640247344971, 0.025011077523231506, 0.23575368523597717, -0.10517355799674988, 0.03051183745265007, 1.080533742904663, -0.11791279166936874, 0.07740610837936401, -0.03525758907198906]} +{"t": 3.9552, "q": [-0.3607718348503113, -0.013383129611611366, 0.009762692265212536, 0.6266822814941406, -0.2954380512237549, 0.023700157180428505, -0.34782674908638, 0.004312190227210522, -0.0058388663455843925, 0.6232052445411682, -0.3290189206600189, 0.0028582867234945297, 0.004312190227210522, 0.009878062643110752, -0.03270265460014343, 0.2359214574098587, 0.0757882371544838, 0.0032956618815660477, 1.0779330730438232, 0.0794314444065094, 0.06501442193984985, 0.025011077523231506, 0.23491477966308594, -0.10514958947896957, 0.03051183745265007, 1.0816242694854736, -0.11790081113576889, 0.07740610837936401, -0.03525758907198906]} +{"t": 3.972, "q": [-0.36073774099349976, -0.013374608010053635, 0.009762692265212536, 0.6266822814941406, -0.2954297661781311, 0.02370019443333149, -0.3478182256221771, 0.004312190227210522, -0.005825474392622709, 0.6231881976127625, -0.3290024995803833, 0.0028581421356648207, 0.004312190227210522, 0.009878062643110752, -0.03270265460014343, 0.23522637784481049, 0.0757882371544838, 0.0032956618815660477, 1.0798505544662476, 0.0794314444065094, 0.06500244140625, 0.024999093264341354, 0.23394405841827393, -0.10511364042758942, 0.030499853193759918, 1.0826549530029297, -0.1179247796535492, 0.07740610837936401, -0.03525758907198906]} +{"t": 3.9887, "q": [-0.3607121706008911, -0.013383129611611366, 0.009762692265212536, 0.6266822814941406, -0.295433908700943, 0.023707406595349312, -0.34780117869377136, 0.004312190227210522, -0.005825474392622709, 0.623222291469574, -0.32900258898735046, 0.002872664015740156, 0.004338974133133888, 0.009900861419737339, -0.03270769119262695, 0.23466311395168304, 0.07577625662088394, 0.0032716935966163874, 1.0815163850784302, 0.07941946387290955, 0.06499045342206955, 0.02502306178212166, 0.232853502035141, -0.10513760894536972, 0.030487868934869766, 1.083553671836853, -0.11788882315158844, 0.07741809636354446, -0.03525758907198906]} +{"t": 4.0057, "q": [-0.3607121706008911, -0.013383129611611366, 0.009789476171135902, 0.6266993284225464, -0.295433908700943, 0.023707406595349312, -0.3477841317653656, 0.004303668159991503, -0.005852258298546076, 0.6232137680053711, -0.32899028062820435, 0.0028798345010727644, 0.004338974133133888, 0.009885657578706741, -0.032697778195142746, 0.2338721603155136, 0.07575228810310364, 0.0032716935966163874, 1.0832421779632568, 0.07939549535512924, 0.06496648490428925, 0.025047030299901962, 0.23173896968364716, -0.10514958947896957, 0.030487868934869766, 1.0846322774887085, -0.11790081113576889, 0.07740610837936401, -0.03525758907198906]} +{"t": 4.0225, "q": [-0.36073774099349976, -0.013400174677371979, 0.009776083752512932, 0.6266822814941406, -0.2954338788986206, 0.023692945018410683, -0.3477841317653656, 0.004295146092772484, -0.0058388663455843925, 0.6232052445411682, -0.32900258898735046, 0.002872664015740156, 0.004392541944980621, 0.009885650128126144, -0.032687947154045105, 0.23281754553318024, 0.07574030011892319, 0.0032956618815660477, 1.0845963954925537, 0.07941946387290955, 0.0649784728884697, 0.02502306178212166, 0.23058848083019257, -0.10514958947896957, 0.030463900417089462, 1.0856988430023193, -0.11788882315158844, 0.07744206488132477, -0.03524560481309891]} +{"t": 4.0393, "q": [-0.3607547879219055, -0.013383129611611366, 0.009776083752512932, 0.6266822814941406, -0.2954380512237549, 0.023700157180428505, -0.34776708483695984, 0.004295146092772484, -0.005825474392622709, 0.6231881976127625, -0.3290069103240967, 0.0029090228490531445, 0.0043523660860955715, 0.009855243377387524, -0.03266812860965729, 0.2319067418575287, 0.07574030011892319, 0.0032956618815660477, 1.0851836204528809, 0.07941946387290955, 0.0649784728884697, 0.02502306178212166, 0.22959378361701965, -0.10516157746315002, 0.030487868934869766, 1.0867055654525757, -0.11790081113576889, 0.07744206488132477, -0.03526957333087921]} +{"t": 4.056, "q": [-0.36074626445770264, -0.013383129611611366, 0.009789476171135902, 0.6266822814941406, -0.29545050859451294, 0.023692874237895012, -0.3477841317653656, 0.004303668159991503, -0.005825474392622709, 0.6231967210769653, -0.32900673151016235, 0.002879961160942912, 0.0043523660860955715, 0.009900796227157116, -0.032619211822748184, 0.23094800114631653, 0.07576426863670349, 0.0033076461404561996, 1.085543155670166, 0.07937152683734894, 0.0649784728884697, 0.02502306178212166, 0.228107750415802, -0.10514958947896957, 0.030487868934869766, 1.0881437063217163, -0.1179247796535492, 0.07745404541492462, -0.03526957333087921]} +{"t": 4.0729, "q": [-0.3607974052429199, -0.013374608010053635, 0.00973590835928917, 0.6266737580299377, -0.2954629063606262, 0.0236711073666811, -0.3477926552295685, 0.004286624025553465, -0.0058388663455843925, 0.6232052445411682, -0.32901087403297424, 0.002887258306145668, 0.0043523660860955715, 0.009893180802464485, -0.03259459137916565, 0.23008513450622559, 0.0757882371544838, 0.0032836776226758957, 1.0860943794250488, 0.0794314444065094, 0.0649784728884697, 0.02503504604101181, 0.22634606063365936, -0.10517355799674988, 0.030475884675979614, 1.0902049541473389, -0.11793676018714905, 0.07747801393270493, -0.03526957333087921]} +{"t": 4.0896, "q": [-0.36078888177871704, -0.013383129611611366, 0.00973590835928917, 0.6266652345657349, -0.2954629063606262, 0.0236711073666811, -0.3477926552295685, 0.004269579891115427, -0.00579869095236063, 0.6231881976127625, -0.3290274143218994, 0.0029019247740507126, 0.0043523660860955715, 0.009908391162753105, -0.0326143354177475, 0.22947394847869873, 0.0758361741900444, 0.0032956618815660477, 1.0866097211837769, 0.0794554129242897, 0.06499045342206955, 0.02502306178212166, 0.22482407093048096, -0.10517355799674988, 0.030475884675979614, 1.092278242111206, -0.1179247796535492, 0.07749000191688538, -0.03526957333087921]} +{"t": 4.1063, "q": [-0.36078035831451416, -0.01334904134273529, 0.009709124453365803, 0.6266481876373291, -0.2954670786857605, 0.02367832139134407, -0.34780970215797424, 0.004278101958334446, -0.005812082905322313, 0.6232052445411682, -0.32903987169265747, 0.0029238343704491854, 0.004338974133133888, 0.009916000068187714, -0.03262912109494209, 0.2289346605539322, 0.07587213069200516, 0.0033076461404561996, 1.0871729850769043, 0.0794554129242897, 0.06501442193984985, 0.025047030299901962, 0.2232421487569809, -0.10514958947896957, 0.030499853193759918, 1.0940638780593872, -0.1179247796535492, 0.07750198245048523, -0.03526957333087921]} +{"t": 4.1232, "q": [-0.3607718348503113, -0.013383129611611366, 0.009749299846589565, 0.6265885233879089, -0.29547542333602905, 0.023692749440670013, -0.34780970215797424, 0.004278101958334446, -0.005785298999398947, 0.6231881976127625, -0.3290766477584839, 0.002887836890295148, 0.004338974133133888, 0.00989321619272232, -0.032643746584653854, 0.22839535772800446, 0.07594403624534607, 0.0032836776226758957, 1.088107705116272, 0.07944343239068985, 0.06502640247344971, 0.025047030299901962, 0.22219951450824738, -0.10518554598093033, 0.03051183745265007, 1.0957896709442139, -0.1179247796535492, 0.07750198245048523, -0.03526957333087921]} +{"t": 4.1399, "q": [-0.3607547879219055, -0.013340519741177559, 0.00973590835928917, 0.6264947652816772, -0.29547542333602905, 0.023692749440670013, -0.3478182256221771, 0.004252535756677389, -0.005812082905322313, 0.6231796741485596, -0.3290807008743286, 0.0028806121554225683, 0.004338974133133888, 0.009916014038026333, -0.032648783177137375, 0.2277841717004776, 0.07600395381450653, 0.0033076461404561996, 1.0892223119735718, 0.0794314444065094, 0.06502640247344971, 0.025047030299901962, 0.22125276923179626, -0.10518554598093033, 0.030499853193759918, 1.0983542203903198, -0.11793676018714905, 0.07750198245048523, -0.03525758907198906]} +{"t": 4.1567, "q": [-0.3607974052429199, -0.01334904134273529, 0.009682340547442436, 0.6264010667800903, -0.29547542333602905, 0.023692749440670013, -0.34784379601478577, 0.004278101958334446, -0.0058388663455843925, 0.6231541037559509, -0.3291136622428894, 0.002895423211157322, 0.004419325385242701, 0.00991600751876831, -0.032638952136039734, 0.2274126559495926, 0.07599197328090668, 0.0032956618815660477, 1.0901449918746948, 0.07941946387290955, 0.06501442193984985, 0.025047030299901962, 0.2204977571964264, -0.10518554598093033, 0.030523821711540222, 1.100882887840271, -0.11790081113576889, 0.07746603339910507, -0.03526957333087921]} +{"t": 4.1736, "q": [-0.36078035831451416, -0.013391653075814247, 0.00965555664151907, 0.6263328790664673, -0.2954712510108948, 0.023685535416007042, -0.34784379601478577, 0.00424401368945837, -0.005852258298546076, 0.6231541037559509, -0.3291298449039459, 0.002851984230801463, 0.0045130690559744835, 0.009916000068187714, -0.03262912109494209, 0.22706511616706848, 0.07596800476312637, 0.0032836776226758957, 1.0911877155303955, 0.0794314444065094, 0.06501442193984985, 0.025059014558792114, 0.21994648873806, -0.10518554598093033, 0.030487868934869766, 1.103052020072937, -0.1179247796535492, 0.07747801393270493, -0.03526957333087921]} +{"t": 4.1904, "q": [-0.3607974052429199, -0.013383129611611366, 0.009628772735595703, 0.6262561678886414, -0.2954712510108948, 0.023685535416007042, -0.34789490699768066, 0.004235491156578064, -0.005852258298546076, 0.6231285333633423, -0.3291379511356354, 0.0028375345282256603, 0.004446109291166067, 0.00993877649307251, -0.03260466083884239, 0.22694526612758636, 0.07594403624534607, 0.0033076461404561996, 1.092218279838562, 0.07939549535512924, 0.06499045342206955, 0.025047030299901962, 0.2192753702402115, -0.10517355799674988, 0.03051183745265007, 1.1050654649734497, -0.1179247796535492, 0.07746603339910507, -0.03526957333087921]} +{"t": 4.2071, "q": [-0.3607974052429199, -0.013357564806938171, 0.009628772735595703, 0.6261794567108154, -0.29547542333602905, 0.023692749440670013, -0.3479204773902893, 0.004252535756677389, -0.0058388663455843925, 0.6231200098991394, -0.3291296660900116, 0.002822940470650792, 0.004379149992018938, 0.00994635745882988, -0.03258012235164642, 0.2269332855939865, 0.07590807974338531, 0.0032956618815660477, 1.0928294658660889, 0.0794314444065094, 0.0649784728884697, 0.025059014558792114, 0.2184963971376419, -0.10517355799674988, 0.03051183745265007, 1.1071386337280273, -0.1179247796535492, 0.07747801393270493, -0.03526957333087921]} +{"t": 4.2238, "q": [-0.36078888177871704, -0.013340519741177559, 0.009628772735595703, 0.6261283159255981, -0.295462965965271, 0.023700051009655, -0.34793752431869507, 0.00424401368945837, -0.0058388663455843925, 0.6231200098991394, -0.3291254937648773, 0.002815643325448036, 0.004365758039057255, 0.009938741102814674, -0.03255550563335419, 0.2269093245267868, 0.07588411122560501, 0.0032956618815660477, 1.0931410789489746, 0.07939549535512924, 0.06499045342206955, 0.025059014558792114, 0.21772940456867218, -0.10517355799674988, 0.03051183745265007, 1.1091281175613403, -0.1179247796535492, 0.07750198245048523, -0.03526957333087921]} +{"t": 4.2405, "q": [-0.36078035831451416, -0.013366086408495903, 0.009695732034742832, 0.6260346174240112, -0.295462965965271, 0.023700051009655, -0.34799718856811523, 0.00424401368945837, -0.005825474392622709, 0.6231200098991394, -0.32914599776268005, 0.002808562945574522, 0.004338974133133888, 0.009961532428860664, -0.032550711184740067, 0.22677749395370483, 0.07586014270782471, 0.0032836776226758957, 1.093416690826416, 0.07932358980178833, 0.06496648490428925, 0.025059014558792114, 0.2169504314661026, -0.10510165244340897, 0.030523821711540222, 1.1111294031143188, -0.1179247796535492, 0.07747801393270493, -0.03525758907198906]} +{"t": 4.2573, "q": [-0.3607718348503113, -0.013340519741177559, 0.009695732034742832, 0.625983476638794, -0.2954587936401367, 0.023692836984992027, -0.3480057120323181, 0.00424401368945837, -0.005812082905322313, 0.6231200098991394, -0.32915014028549194, 0.002815860090777278, 0.0043523660860955715, 0.009953937493264675, -0.032555583864450455, 0.22659772634506226, 0.07588411122560501, 0.0032956618815660477, 1.0936444997787476, 0.07937152683734894, 0.06495450437068939, 0.025059014558792114, 0.21601566672325134, -0.10496982932090759, 0.03051183745265007, 1.113418459892273, -0.11791279166936874, 0.07746603339910507, -0.03526957333087921]} +{"t": 4.274, "q": [-0.3607547879219055, -0.013374608010053635, 0.009722515940666199, 0.625983476638794, -0.29544636607170105, 0.02370012179017067, -0.34798866510391235, 0.00424401368945837, -0.005812082905322313, 0.6231114864349365, -0.32914167642593384, 0.002772222040221095, 0.0043523660860955715, 0.009991931729018688, -0.03256069868803024, 0.2263101041316986, 0.07588411122560501, 0.0032956618815660477, 1.093860149383545, 0.07934755831956863, 0.06496648490428925, 0.025082983076572418, 0.21498501300811768, -0.10496982932090759, 0.030547790229320526, 1.115599513053894, -0.1179247796535492, 0.07749000191688538, -0.03525758907198906]} +{"t": 4.2908, "q": [-0.3607292175292969, -0.01334904134273529, 0.009762692265212536, 0.625983476638794, -0.29545050859451294, 0.023692874237895012, -0.34798866510391235, 0.004269579891115427, -0.005785298999398947, 0.6231114864349365, -0.3291458189487457, 0.002779519185423851, 0.004365758039057255, 0.01002232450991869, -0.03256085887551308, 0.2260105013847351, 0.07589609920978546, 0.0032956618815660477, 1.0940399169921875, 0.07941946387290955, 0.0649784728884697, 0.025070998817682266, 0.21407420933246613, -0.10496982932090759, 0.030535805970430374, 1.1174211502075195, -0.1179247796535492, 0.07747801393270493, -0.03526957333087921]} +{"t": 4.3076, "q": [-0.360720694065094, -0.013366086408495903, 0.009749299846589565, 0.6259493827819824, -0.29545050859451294, 0.023692874237895012, -0.3479801416397095, 0.00424401368945837, -0.005785298999398947, 0.6231114864349365, -0.32914167642593384, 0.002772222040221095, 0.004338974133133888, 0.010029919445514679, -0.03255598247051239, 0.22575883567333221, 0.07588411122560501, 0.0032956618815660477, 1.0942556858062744, 0.07937152683734894, 0.06496648490428925, 0.02509496733546257, 0.21301960945129395, -0.10494586080312729, 0.03057175874710083, 1.119710087776184, -0.11791279166936874, 0.07746603339910507, -0.03525758907198906]} +{"t": 4.3243, "q": [-0.360720694065094, -0.013374608010053635, 0.009749299846589565, 0.6259664297103882, -0.29545465111732483, 0.023700086399912834, -0.3479801416397095, 0.004235491156578064, -0.0057719070464372635, 0.6231200098991394, -0.32914185523986816, 0.0028012660332024097, 0.004446109291166067, 0.0100603261962533, -0.03257580101490021, 0.22556708753108978, 0.07590807974338531, 0.0033076461404561996, 1.094447374343872, 0.07934755831956863, 0.0649784728884697, 0.025070998817682266, 0.21191705763339996, -0.10496982932090759, 0.030559774488210678, 1.1220110654830933, -0.11791279166936874, 0.07747801393270493, -0.03526957333087921]} +{"t": 4.3412, "q": [-0.3607292175292969, -0.013383129611611366, 0.009789476171135902, 0.6259664297103882, -0.2954505681991577, 0.02372179925441742, -0.3479630947113037, 0.004235491156578064, -0.005704947747290134, 0.6231200098991394, -0.3291376829147339, 0.002793968887999654, 0.004405933897942305, 0.010067921131849289, -0.03257092460989952, 0.2253393828868866, 0.07592006772756577, 0.0032956618815660477, 1.0947229862213135, 0.07939549535512924, 0.0649784728884697, 0.025106951594352722, 0.21103021502494812, -0.10494586080312729, 0.030547790229320526, 1.1237847805023193, -0.1179247796535492, 0.07746603339910507, -0.03525758907198906]} +{"t": 4.3579, "q": [-0.3607121706008911, -0.013400174677371979, 0.009802867658436298, 0.6259664297103882, -0.29544222354888916, 0.023707371205091476, -0.3479716181755066, 0.00424401368945837, -0.005731731187552214, 0.6231200098991394, -0.3291376829147339, 0.002793968887999654, 0.004365758039057255, 0.010052717290818691, -0.03256101533770561, 0.22525550425052643, 0.07590807974338531, 0.0032956618815660477, 1.0949746370315552, 0.07939549535512924, 0.0649784728884697, 0.025082983076572418, 0.21004751324653625, -0.10492189228534698, 0.030583743005990982, 1.125294804573059, -0.1179247796535492, 0.07750198245048523, -0.035233620554208755]} +{"t": 4.3747, "q": [-0.3607121706008911, -0.01340869627892971, 0.009829651564359665, 0.6259664297103882, -0.29544222354888916, 0.023707371205091476, -0.3479630947113037, 0.00424401368945837, -0.005704947747290134, 0.6231200098991394, -0.32912957668304443, 0.002808418357744813, 0.004405933897942305, 0.010060298256576061, -0.032536476850509644, 0.22523152828216553, 0.07590807974338531, 0.0032956618815660477, 1.095286250114441, 0.07939549535512924, 0.06496648490428925, 0.025082983076572418, 0.2092086225748062, -0.10492189228534698, 0.030595727264881134, 1.126265525817871, -0.1179247796535492, 0.07750198245048523, -0.03524560481309891]} +{"t": 4.3914, "q": [-0.360720694065094, -0.013400174677371979, 0.009843043051660061, 0.6259749531745911, -0.29544222354888916, 0.023707371205091476, -0.3479630947113037, 0.004226969089359045, -0.005691555794328451, 0.6231200098991394, -0.32913362979888916, 0.0028011936228722334, 0.004392541944980621, 0.010052703320980072, -0.03254135325551033, 0.22518359124660492, 0.07593204826116562, 0.0032956618815660477, 1.0958136320114136, 0.07939549535512924, 0.06496648490428925, 0.025082983076572418, 0.20820194482803345, -0.10492189228534698, 0.030643664300441742, 1.1272960901260376, -0.11793676018714905, 0.07750198245048523, -0.03524560481309891]} +{"t": 4.4082, "q": [-0.3607121706008911, -0.013391653075814247, 0.009856435470283031, 0.6259749531745911, -0.29544639587402344, 0.023714585229754448, -0.34795457124710083, 0.004201402887701988, -0.00571833923459053, 0.6231029629707336, -0.32912135124206543, 0.0028083461802452803, 0.004325582180172205, 0.01006031222641468, -0.032556138932704926, 0.22493192553520203, 0.07594403624534607, 0.0032956618815660477, 1.0966764688491821, 0.07939549535512924, 0.06494251638650894, 0.025070998817682266, 0.20711137354373932, -0.10490990430116653, 0.030619695782661438, 1.128302812576294, -0.1179487481713295, 0.07752595096826553, -0.03524560481309891]} +{"t": 4.4249, "q": [-0.36069512367248535, -0.013417219743132591, 0.009843043051660061, 0.6259749531745911, -0.29544639587402344, 0.023714585229754448, -0.34793752431869507, 0.004192880820482969, -0.005691555794328451, 0.6231200098991394, -0.32912135124206543, 0.0028083461802452803, 0.004365758039057255, 0.010037528350949287, -0.032570768147706985, 0.22452445328235626, 0.07590807974338531, 0.0033076461404561996, 1.097515344619751, 0.07937152683734894, 0.06493053585290909, 0.02509496733546257, 0.2060447782278061, -0.10490990430116653, 0.030619695782661438, 1.1293214559555054, -0.1179487481713295, 0.07753793895244598, -0.035233620554208755]} +{"t": 4.4417, "q": [-0.36069512367248535, -0.013400174677371979, 0.009856435470283031, 0.625983476638794, -0.29544639587402344, 0.023714585229754448, -0.34793752431869507, 0.004201402887701988, -0.005691555794328451, 0.6231200098991394, -0.3291254937648773, 0.002815643325448036, 0.004379149992018938, 0.01004511583596468, -0.03255606070160866, 0.22399716079235077, 0.07589609920978546, 0.0032836776226758957, 1.0986778736114502, 0.07935953885316849, 0.06491854786872864, 0.02509496733546257, 0.20518192648887634, -0.10493387281894684, 0.030607711523771286, 1.1301244497299194, -0.1179247796535492, 0.07756190747022629, -0.035233620554208755]} +{"t": 4.4584, "q": [-0.36069512367248535, -0.013383129611611366, 0.009829651564359665, 0.6260005235671997, -0.2954380512237549, 0.023700157180428505, -0.3479204773902893, 0.004175836686044931, -0.005704947747290134, 0.6231200098991394, -0.32910075783729553, 0.0028009044472128153, 0.0043523660860955715, 0.01006031222641468, -0.032556138932704926, 0.22285865247249603, 0.07589609920978546, 0.0032836776226758957, 1.1002956628799438, 0.07937152683734894, 0.06491854786872864, 0.025082983076572418, 0.20463064312934875, -0.10492189228534698, 0.030607711523771286, 1.130987286567688, -0.11793676018714905, 0.07756190747022629, -0.03524560481309891]} +{"t": 4.4751, "q": [-0.36069512367248535, -0.013417219743132591, 0.009816259145736694, 0.6260005235671997, -0.2954380512237549, 0.023700157180428505, -0.34793752431869507, 0.00418435875326395, -0.00571833923459053, 0.6231029629707336, -0.3291296660900116, 0.002822940470650792, 0.004379149992018938, 0.010037514381110668, -0.032551106065511703, 0.22168420255184174, 0.07588411122560501, 0.0033076461404561996, 1.1016019582748413, 0.07938350737094879, 0.06489457935094833, 0.025106951594352722, 0.20415127277374268, -0.10494586080312729, 0.030619695782661438, 1.1323294639587402, -0.1179247796535492, 0.07754991948604584, -0.03525758907198906]} +{"t": 4.492, "q": [-0.36069512367248535, -0.013434262946248055, 0.009789476171135902, 0.6260005235671997, -0.2954380512237549, 0.023700157180428505, -0.3479119539260864, 0.004192880820482969, -0.005745123140513897, 0.6231200098991394, -0.3291132152080536, 0.0028227956499904394, 0.004486285150051117, 0.010052703320980072, -0.03254135325551033, 0.2204977571964264, 0.07589609920978546, 0.0033076461404561996, 1.1024168729782104, 0.07939549535512924, 0.06495450437068939, 0.02509496733546257, 0.20377977192401886, -0.10494586080312729, 0.030607711523771286, 1.1339713335037231, -0.11793676018714905, 0.07754991948604584, -0.035233620554208755]} +{"t": 4.5089, "q": [-0.36068660020828247, -0.013400174677371979, 0.00973590835928917, 0.6260260939598083, -0.29544222354888916, 0.023707371205091476, -0.3479204773902893, 0.004175836686044931, -0.005865650251507759, 0.6231114864349365, -0.3291005790233612, 0.0027718422934412956, 0.0047541228123009205, 0.01006031222641468, -0.032556138932704926, 0.21914353966712952, 0.07592006772756577, 0.0032956618815660477, 1.103399634361267, 0.07941946387290955, 0.06496648490428925, 0.025106951594352722, 0.2034202367067337, -0.10496982932090759, 0.030595727264881134, 1.136008620262146, -0.11791279166936874, 0.07752595096826553, -0.03525758907198906]} +{"t": 4.5256, "q": [-0.3607121706008911, -0.013417219743132591, 0.009749299846589565, 0.6260260939598083, -0.2954380512237549, 0.023700157180428505, -0.34790343046188354, 0.004201402887701988, -0.005852258298546076, 0.6231114864349365, -0.3291047215461731, 0.0027791394386440516, 0.004847866017371416, 0.010045108385384083, -0.03254622966051102, 0.21783725917339325, 0.07596800476312637, 0.0032956618815660477, 1.1045620441436768, 0.07939549535512924, 0.06496648490428925, 0.02509496733546257, 0.20310865342617035, -0.10494586080312729, 0.030595727264881134, 1.1376385688781738, -0.1179247796535492, 0.07752595096826553, -0.035233620554208755]} +{"t": 4.5424, "q": [-0.36064401268959045, -0.013425741344690323, 0.009762692265212536, 0.6260005235671997, -0.2954380512237549, 0.023700157180428505, -0.3479119539260864, 0.004209924954921007, -0.0058388663455843925, 0.6231200098991394, -0.32909244298934937, 0.0027862919960170984, 0.004767514765262604, 0.010060298256576061, -0.032536476850509644, 0.21678264439105988, 0.07600395381450653, 0.0032956618815660477, 1.1058324575424194, 0.07941946387290955, 0.0649784728884697, 0.02509496733546257, 0.20268920063972473, -0.10490990430116653, 0.03063168004155159, 1.1394840478897095, -0.11790081113576889, 0.07750198245048523, -0.035233620554208755]} +{"t": 4.5591, "q": [-0.36060991883277893, -0.013383129611611366, 0.009762692265212536, 0.625983476638794, -0.2954338788986206, 0.023692945018410683, -0.34789490699768066, 0.004218447022140026, -0.005812082905322313, 0.6231285333633423, -0.32910075783729553, 0.0028009044472128153, 0.004646987654268742, 0.010075501166284084, -0.03254638984799385, 0.21578796207904816, 0.07602792233228683, 0.0033076461404561996, 1.1070548295974731, 0.07934755831956863, 0.06502640247344971, 0.025118935853242874, 0.2022457867860794, -0.10483799874782562, 0.030619695782661438, 1.141892910003662, -0.1179247796535492, 0.07749000191688538, -0.03520965203642845]} +{"t": 4.5758, "q": [-0.3605417311191559, -0.013442784547805786, 0.009762692265212536, 0.6259749531745911, -0.29542970657348633, 0.02368573099374771, -0.34790343046188354, 0.00424401368945837, -0.005812082905322313, 0.6231285333633423, -0.3290883004665375, 0.0027789948508143425, 0.004593420308083296, 0.010128677822649479, -0.032531920820474625, 0.21491311490535736, 0.07606387883424759, 0.0033076461404561996, 1.107893705368042, 0.07941946387290955, 0.06502640247344971, 0.025106951594352722, 0.20183831453323364, -0.10470617562532425, 0.030679617077112198, 1.1444575786590576, -0.11793676018714905, 0.07753793895244598, -0.035221636295318604]} +{"t": 4.5925, "q": [-0.3605417311191559, -0.01340869627892971, 0.009802867658436298, 0.6259664297103882, -0.29542553424835205, 0.02367851696908474, -0.3479119539260864, 0.004261057823896408, -0.00579869095236063, 0.6231370568275452, -0.32909244298934937, 0.0027862919960170984, 0.004633595701307058, 0.010159042663872242, -0.032492753118276596, 0.21373865008354187, 0.07606387883424759, 0.0033196303993463516, 1.1090081930160522, 0.0794314444065094, 0.06506235897541046, 0.025106951594352722, 0.20179037749767303, -0.10451442748308182, 0.03069160133600235, 1.146315097808838, -0.11790081113576889, 0.07750198245048523, -0.03518568351864815]} +{"t": 4.6093, "q": [-0.36055877804756165, -0.013383129611611366, 0.009776083752512932, 0.6259664297103882, -0.29542553424835205, 0.02367851696908474, -0.34790343046188354, 0.004235491156578064, -0.005785298999398947, 0.6231114864349365, -0.32909640669822693, 0.0027645453810691833, 0.004593420308083296, 0.010280556045472622, -0.03241473808884621, 0.21276792883872986, 0.07603991031646729, 0.0033196303993463516, 1.1101586818695068, 0.0794074758887291, 0.06511029601097107, 0.025118935853242874, 0.20174244046211243, -0.10428673028945923, 0.030703585594892502, 1.1478490829467773, -0.11790081113576889, 0.07754991948604584, -0.035161715000867844]} +{"t": 4.626, "q": [-0.3605417311191559, -0.013400174677371979, 0.009829651564359665, 0.6259664297103882, -0.29541727900505066, 0.023693015798926353, -0.3479119539260864, 0.00424401368945837, -0.0057719070464372635, 0.6231200098991394, -0.32908421754837036, 0.002786237746477127, 0.004620204214006662, 0.01042484026402235, -0.032302431762218475, 0.21171332895755768, 0.07605189085006714, 0.0033196303993463516, 1.1113331317901611, 0.07938350737094879, 0.06517021358013153, 0.025118935853242874, 0.20174244046211243, -0.10401108860969543, 0.030715569853782654, 1.149299144744873, -0.11790081113576889, 0.07751397043466568, -0.03514973446726799]} +{"t": 4.6429, "q": [-0.3605417311191559, -0.013417219743132591, 0.009856435470283031, 0.6259493827819824, -0.29542145133018494, 0.023700229823589325, -0.34790343046188354, 0.004252535756677389, -0.00575851509347558, 0.6231285333633423, -0.32907193899154663, 0.0027933900710195303, 0.0045800283551216125, 0.010546330362558365, -0.03222450613975525, 0.2106587141752243, 0.07603991031646729, 0.0033076461404561996, 1.112231969833374, 0.07939549535512924, 0.0652541071176529, 0.025118935853242874, 0.20171847939491272, -0.103819340467453, 0.03076350688934326, 1.1504735946655273, -0.11793676018714905, 0.07750198245048523, -0.03514973446726799]} +{"t": 4.6596, "q": [-0.36055025458335876, -0.013417219743132591, 0.009856435470283031, 0.6259493827819824, -0.29542553424835205, 0.02367851696908474, -0.34790343046188354, 0.004218447022140026, -0.005731731187552214, 0.6231285333633423, -0.32906779646873474, 0.0027860929258167744, 0.0045800283551216125, 0.01060708798468113, -0.03220520541071892, 0.2100355327129364, 0.07606387883424759, 0.0033316146582365036, 1.1131787300109863, 0.07939549535512924, 0.0652780756354332, 0.025118935853242874, 0.20174244046211243, -0.10365156084299088, 0.030775491148233414, 1.1515761613845825, -0.1179487481713295, 0.07753793895244598, -0.035125765949487686]} +{"t": 4.6763, "q": [-0.3605417311191559, -0.013434262946248055, 0.009856435470283031, 0.6259664297103882, -0.29542145133018494, 0.023700229823589325, -0.34790343046188354, 0.004235491156578064, -0.005745123140513897, 0.6231285333633423, -0.32908007502555847, 0.002778940601274371, 0.004593420308083296, 0.010675458237528801, -0.032200686633586884, 0.20942433178424835, 0.07605189085006714, 0.0033316146582365036, 1.1141494512557983, 0.0794314444065094, 0.06531402468681335, 0.025118935853242874, 0.20170649886131287, -0.1034718006849289, 0.030787475407123566, 1.1527506113052368, -0.1179247796535492, 0.07751397043466568, -0.035125765949487686]} +{"t": 4.6933, "q": [-0.360533207654953, -0.013442784547805786, 0.00991000235080719, 0.6259408593177795, -0.29542553424835205, 0.02367851696908474, -0.3478778600692749, 0.004235491156578064, -0.005704947747290134, 0.6231114864349365, -0.32906362414360046, 0.002778796013444662, 0.0045800283551216125, 0.010713458061218262, -0.03221563622355461, 0.20896893739700317, 0.0760878473520279, 0.0033076461404561996, 1.1148685216903687, 0.0794314444065094, 0.06536196172237396, 0.025130920112133026, 0.20146681368350983, -0.10328005254268646, 0.03081144392490387, 1.1545482873916626, -0.11793676018714905, 0.07752595096826553, -0.035125765949487686]} +{"t": 4.71, "q": [-0.3604905903339386, -0.013425741344690323, 0.00992339476943016, 0.6259323358535767, -0.29542970657348633, 0.02368573099374771, -0.3478863835334778, 0.004235491156578064, -0.005731731187552214, 0.6231285333633423, -0.3290759027004242, 0.0027716434560716152, 0.004553244449198246, 0.01069067046046257, -0.032220419496297836, 0.20871727168560028, 0.07607585936784744, 0.0032956618815660477, 1.115359902381897, 0.07937152683734894, 0.06538593024015427, 0.025130920112133026, 0.2012031525373459, -0.10314822942018509, 0.03082342818379402, 1.1562020778656006, -0.1179247796535492, 0.07750198245048523, -0.03510179743170738]} +{"t": 4.7268, "q": [-0.360533207654953, -0.013417219743132591, 0.009869826957583427, 0.6258556246757507, -0.2954297661781311, 0.02370019443333149, -0.3478863835334778, 0.00424401368945837, -0.005691555794328451, 0.6231200098991394, -0.32908421754837036, 0.002786237746477127, 0.004620204214006662, 0.010698282159864902, -0.032235197722911835, 0.2085854411125183, 0.07607585936784744, 0.0033196303993463516, 1.115815281867981, 0.07937152683734894, 0.06540989875793457, 0.025142904371023178, 0.2009275257587433, -0.1029205247759819, 0.03087136335670948, 1.1582633256912231, -0.11793676018714905, 0.07750198245048523, -0.03507782891392708]} +{"t": 4.7436, "q": [-0.3605246841907501, -0.013434262946248055, 0.009856435470283031, 0.625838577747345, -0.29542970657348633, 0.02368573099374771, -0.3478863835334778, 0.004218447022140026, -0.005731731187552214, 0.6231114864349365, -0.32909244298934937, 0.0027862919960170984, 0.004660379607230425, 0.010728651657700539, -0.032215725630521774, 0.2085375040769577, 0.07606387883424759, 0.0033076461404561996, 1.116342544555664, 0.07935953885316849, 0.06540989875793457, 0.02515488862991333, 0.20078371465206146, -0.10270480811595917, 0.03085937909781933, 1.1600251197814941, -0.11793676018714905, 0.07749000191688538, -0.035053860396146774]} +{"t": 4.7604, "q": [-0.36050763726234436, -0.01346835121512413, 0.009856435470283031, 0.6258130073547363, -0.29542961716651917, 0.02365678735077381, -0.34789490699768066, 0.004226969089359045, -0.005731731187552214, 0.6231370568275452, -0.32909244298934937, 0.0027862919960170984, 0.004687163513153791, 0.01075143925845623, -0.03221094235777855, 0.20852552354335785, 0.07603991031646729, 0.0033076461404561996, 1.1170976161956787, 0.07938350737094879, 0.06540989875793457, 0.025130920112133026, 0.20061592757701874, -0.10246512293815613, 0.030847394838929176, 1.1618705987930298, -0.11790081113576889, 0.07750198245048523, -0.03501790761947632]} +{"t": 4.7771, "q": [-0.3605417311191559, -0.013442784547805786, 0.009856435470283031, 0.6257959604263306, -0.2954380512237549, 0.023700157180428505, -0.34790343046188354, 0.004201402887701988, -0.005704947747290134, 0.6231285333633423, -0.3291005790233612, 0.0027718422934412956, 0.004646987654268742, 0.010736244730651379, -0.032210856676101685, 0.2084655910730362, 0.07606387883424759, 0.0033196303993463516, 1.118212103843689, 0.07937152683734894, 0.06538593024015427, 0.025142904371023178, 0.20046013593673706, -0.10215353965759277, 0.03087136335670948, 1.1639080047607422, -0.1179247796535492, 0.07750198245048523, -0.03498195484280586]} +{"t": 4.794, "q": [-0.360533207654953, -0.013442784547805786, 0.009816259145736694, 0.6257789134979248, -0.2954338788986206, 0.023692945018410683, -0.34790343046188354, 0.004209924954921007, -0.005704947747290134, 0.6231114864349365, -0.3290883004665375, 0.0027789948508143425, 0.004687163513153791, 0.010736244730651379, -0.032210856676101685, 0.20833377540111542, 0.07602792233228683, 0.0032956618815660477, 1.1195063591003418, 0.07931160181760788, 0.06536196172237396, 0.025130920112133026, 0.2004002183675766, -0.10193782299757004, 0.03087136335670948, 1.1655378341674805, -0.11790081113576889, 0.07749000191688538, -0.03496997058391571]} +{"t": 4.8108, "q": [-0.36051616072654724, -0.013442784547805786, 0.009856435470283031, 0.625761866569519, -0.29542553424835205, 0.02367851696908474, -0.34790343046188354, 0.004192880820482969, -0.005704947747290134, 0.6231114864349365, -0.32909244298934937, 0.0027862919960170984, 0.004646987654268742, 0.010713448747992516, -0.03220581263303757, 0.2082618623971939, 0.07599197328090668, 0.0032956618815660477, 1.1204651594161987, 0.07938350737094879, 0.06531402468681335, 0.025142904371023178, 0.20041219890117645, -0.101698137819767, 0.030943268910050392, 1.1665085554122925, -0.11790081113576889, 0.07749000191688538, -0.0349220335483551]} +{"t": 4.8275, "q": [-0.3604991137981415, -0.013451308012008667, 0.009896610863506794, 0.6257448196411133, -0.2954380512237549, 0.023700157180428505, -0.34790343046188354, 0.004201402887701988, -0.005678163841366768, 0.6231200098991394, -0.32909640669822693, 0.0027645453810691833, 0.0045800283551216125, 0.010713448747992516, -0.03220581263303757, 0.20809409022331238, 0.07595601677894592, 0.0032716935966163874, 1.1214838027954102, 0.07934755831956863, 0.0652780756354332, 0.025130920112133026, 0.2004241794347763, -0.10148242115974426, 0.030967237427830696, 1.1671797037124634, -0.11788882315158844, 0.07747801393270493, -0.03479020670056343]} +{"t": 4.8444, "q": [-0.36055025458335876, -0.013434262946248055, 0.00992339476943016, 0.6257533431053162, -0.2954255938529968, 0.023692980408668518, -0.3479204773902893, 0.00418435875326395, -0.005664771888405085, 0.6231114864349365, -0.32909244298934937, 0.0027862919960170984, 0.004553244449198246, 0.010721040889620781, -0.032200947403907776, 0.20792630314826965, 0.07592006772756577, 0.0032836776226758957, 1.1221789121627808, 0.07937152683734894, 0.0652780756354332, 0.025130920112133026, 0.20046013593673706, -0.10143448412418365, 0.030979221686720848, 1.1674672365188599, -0.11793676018714905, 0.07750198245048523, -0.03476623818278313]} +{"t": 4.8613, "q": [-0.360533207654953, -0.013485396280884743, 0.00999035406857729, 0.625761866569519, -0.29542970657348633, 0.02368573099374771, -0.3479290008544922, 0.004150270018726587, -0.005651379935443401, 0.6231200098991394, -0.32909244298934937, 0.0027862919960170984, 0.0045264605432748795, 0.010713448747992516, -0.03220581263303757, 0.20775853097438812, 0.07594403624534607, 0.0032716935966163874, 1.122670292854309, 0.07935953885316849, 0.0652541071176529, 0.02515488862991333, 0.20048409700393677, -0.1013985276222229, 0.030979221686720848, 1.1676350831985474, -0.1179247796535492, 0.07751397043466568, -0.03470631688833237]} +{"t": 4.878, "q": [-0.36051616072654724, -0.013485396280884743, 0.009963570162653923, 0.6257533431053162, -0.29542970657348633, 0.02368573099374771, -0.3479204773902893, 0.004099137615412474, -0.005637987982481718, 0.6231285333633423, -0.3290802538394928, 0.002807984361425042, 0.004553244449198246, 0.01071343943476677, -0.03219598904252052, 0.20760273933410645, 0.07594403624534607, 0.0032716935966163874, 1.122897982597351, 0.07938350737094879, 0.06526608765125275, 0.025142904371023178, 0.20049609243869781, -0.1013985276222229, 0.030967237427830696, 1.167754888534546, -0.1179247796535492, 0.07749000191688538, -0.03470631688833237]} +{"t": 4.8947, "q": [-0.3604991137981415, -0.01352800615131855, 0.009950178675353527, 0.6257533431053162, -0.2954380512237549, 0.023700157180428505, -0.34790343046188354, 0.004082093480974436, -0.0056112040765583515, 0.6231114864349365, -0.3290802538394928, 0.002807984361425042, 0.0045800283551216125, 0.01069826353341341, -0.03221555054187775, 0.20744693279266357, 0.07593204826116562, 0.0032716935966163874, 1.1231017112731934, 0.07935953885316849, 0.06521815061569214, 0.025142904371023178, 0.20048409700393677, -0.1013745591044426, 0.030967237427830696, 1.1678746938705444, -0.11793676018714905, 0.07752595096826553, -0.034694332629442215]} +{"t": 4.9116, "q": [-0.360533207654953, -0.013502439484000206, 0.009936786256730556, 0.6257533431053162, -0.295433908700943, 0.023707406595349312, -0.34789490699768066, 0.004030960611999035, -0.005624596029520035, 0.6231114864349365, -0.3290843963623047, 0.002815281506627798, 0.004593420308083296, 0.010713448747992516, -0.03220581263303757, 0.20732709765434265, 0.07592006772756577, 0.0032836776226758957, 1.1231975555419922, 0.07938350737094879, 0.06521815061569214, 0.025142904371023178, 0.20048409700393677, -0.10138654708862305, 0.030967237427830696, 1.1679346561431885, -0.11793676018714905, 0.07750198245048523, -0.03467036411166191]} +{"t": 4.9284, "q": [-0.360533207654953, -0.013570617884397507, 0.009963570162653923, 0.6257533431053162, -0.2954338788986206, 0.023692945018410683, -0.34790343046188354, 0.004005394410341978, -0.0056112040765583515, 0.6230944395065308, -0.3290761709213257, 0.0028152090962976217, 0.004646987654268742, 0.01069826353341341, -0.03221555054187775, 0.20715931057929993, 0.07594403624534607, 0.0032716935966163874, 1.1233054399490356, 0.07938350737094879, 0.06520617008209229, 0.025142904371023178, 0.2004481554031372, -0.10138654708862305, 0.030991205945611, 1.167982578277588, -0.11791279166936874, 0.07751397043466568, -0.03464639559388161]} +{"t": 4.9451, "q": [-0.360533207654953, -0.01358766108751297, 0.00999035406857729, 0.6257533431053162, -0.295433908700943, 0.023707406595349312, -0.34790343046188354, 0.003988349810242653, -0.0056112040765583515, 0.6231029629707336, -0.32907211780548096, 0.002822434064000845, 0.004660379607230425, 0.010698244906961918, -0.03219590336084366, 0.207039475440979, 0.07594403624534607, 0.0032477250788360834, 1.1234252452850342, 0.07938350737094879, 0.06519418209791183, 0.025130920112133026, 0.2004481554031372, -0.10138654708862305, 0.030979221686720848, 1.1680065393447876, -0.1179247796535492, 0.07749000191688538, -0.03464639559388161]} +{"t": 4.9618, "q": [-0.3605417311191559, -0.01358766108751297, 0.00999035406857729, 0.6257533431053162, -0.2954380512237549, 0.023700157180428505, -0.34790343046188354, 0.003979827743023634, -0.005584420636296272, 0.6230774521827698, -0.32907626032829285, 0.002829731209203601, 0.004646987654268742, 0.010690651834011078, -0.03220077231526375, 0.20700351893901825, 0.07593204826116562, 0.0032836776226758957, 1.1234612464904785, 0.07935953885316849, 0.06519418209791183, 0.025130920112133026, 0.2004481554031372, -0.10138654708862305, 0.030979221686720848, 1.168054461479187, -0.1179487481713295, 0.07751397043466568, -0.0346224270761013]} +{"t": 4.9786, "q": [-0.360533207654953, -0.01358766108751297, 0.00999035406857729, 0.6257533431053162, -0.2954380512237549, 0.023700157180428505, -0.34789490699768066, 0.003979827743023634, -0.005584420636296272, 0.6230774521827698, -0.32907211780548096, 0.002822434064000845, 0.004673771560192108, 0.010713430121541023, -0.03218616545200348, 0.20689566433429718, 0.07593204826116562, 0.0032597093377262354, 1.1235450506210327, 0.07938350737094879, 0.06520617008209229, 0.025142904371023178, 0.20043615996837616, -0.10138654708862305, 0.030991205945611, 1.168042540550232, -0.11796072870492935, 0.07750198245048523, -0.034634411334991455]} +{"t": 4.9953, "q": [-0.3605417311191559, -0.013596182689070702, 0.00999035406857729, 0.6257533431053162, -0.2954297959804535, 0.02371465601027012, -0.34790343046188354, 0.003979827743023634, -0.0055978125892579556, 0.623060405254364, -0.3290761709213257, 0.0028152090962976217, 0.004646987654268742, 0.01068304106593132, -0.03218599408864975, 0.20681177079677582, 0.07592006772756577, 0.0032956618815660477, 1.1235331296920776, 0.07938350737094879, 0.06518220156431198, 0.025142904371023178, 0.20043615996837616, -0.1013985276222229, 0.030991205945611, 1.1680784225463867, -0.1179487481713295, 0.07750198245048523, -0.0346224270761013]} +{"t": 5.0121, "q": [-0.360533207654953, -0.013613227754831314, 0.01000374648720026, 0.6257448196411133, -0.2954297959804535, 0.02371465601027012, -0.34790343046188354, 0.003988349810242653, -0.005637987982481718, 0.623060405254364, -0.32907626032829285, 0.002829731209203601, 0.004660379607230425, 0.010698235593736172, -0.032186079770326614, 0.20677582919597626, 0.07594403624534607, 0.0032716935966163874, 1.1236050128936768, 0.07939549535512924, 0.06518220156431198, 0.025130920112133026, 0.20041219890117645, -0.1013985276222229, 0.030967237427830696, 1.1682102680206299, -0.11796072870492935, 0.07749000191688538, -0.0346224270761013]} +{"t": 5.0288, "q": [-0.3605417311191559, -0.013596182689070702, 0.009963570162653923, 0.6257193088531494, -0.2954297959804535, 0.02371465601027012, -0.34790343046188354, 0.004005394410341978, -0.0056112040765583515, 0.623060405254364, -0.32907211780548096, 0.002822434064000845, 0.004646987654268742, 0.010698226280510426, -0.03217625617980957, 0.206667959690094, 0.07594403624534607, 0.0032716935966163874, 1.1236529350280762, 0.07933557033538818, 0.06519418209791183, 0.02515488862991333, 0.20041219890117645, -0.10138654708862305, 0.030967237427830696, 1.1682102680206299, -0.1179247796535492, 0.07751397043466568, -0.0346224270761013]} +{"t": 5.0458, "q": [-0.360533207654953, -0.013596182689070702, 0.00999035406857729, 0.6256852149963379, -0.2954380512237549, 0.023700157180428505, -0.3479119539260864, 0.003996872343122959, -0.005637987982481718, 0.623060405254364, -0.3290802538394928, 0.002807984361425042, 0.004620204214006662, 0.010690624825656414, -0.032171301543712616, 0.20656010508537292, 0.07594403624534607, 0.0032716935966163874, 1.1236889362335205, 0.07938350737094879, 0.06517021358013153, 0.025142904371023178, 0.20036426186561584, -0.10138654708862305, 0.030955253168940544, 1.1682102680206299, -0.1179487481713295, 0.07750198245048523, -0.03461044281721115]} +{"t": 5.0626, "q": [-0.3604991137981415, -0.013579139485955238, 0.00999035406857729, 0.6256340742111206, -0.295433908700943, 0.023707406595349312, -0.3479119539260864, 0.004013916477560997, -0.005624596029520035, 0.623060405254364, -0.3290720283985138, 0.0028079121839255095, 0.004660379607230425, 0.010698226280510426, -0.03217625617980957, 0.20654812455177307, 0.07594403624534607, 0.0032716935966163874, 1.12373685836792, 0.07938350737094879, 0.06518220156431198, 0.02515488862991333, 0.200352281332016, -0.1013985276222229, 0.030979221686720848, 1.1682342290878296, -0.11796072870492935, 0.07749000191688538, -0.034598458558321]} +{"t": 5.0793, "q": [-0.3604820966720581, -0.013579139485955238, 0.00999035406857729, 0.6256170272827148, -0.2954297661781311, 0.02370019443333149, -0.34790343046188354, 0.004005394410341978, -0.005651379935443401, 0.623060405254364, -0.3290760815143585, 0.0028006872162222862, 0.004646987654268742, 0.010728615336120129, -0.0321764312684536, 0.20642827451229095, 0.07594403624534607, 0.0032716935966163874, 1.1237727403640747, 0.07939549535512924, 0.06517021358013153, 0.02515488862991333, 0.200352281332016, -0.1013985276222229, 0.030955253168940544, 1.1682581901550293, -0.11796072870492935, 0.07750198245048523, -0.03461044281721115]} +{"t": 5.0961, "q": [-0.36045652627944946, -0.013562094420194626, 0.010017137974500656, 0.6255403161048889, -0.29541727900505066, 0.023693015798926353, -0.3479119539260864, 0.004030960611999035, -0.005678163841366768, 0.6230774521827698, -0.3290802538394928, 0.002807984361425042, 0.004620204214006662, 0.010728615336120129, -0.0321764312684536, 0.2063683569431305, 0.07594403624534607, 0.0032716935966163874, 1.1238206624984741, 0.07937152683734894, 0.06519418209791183, 0.02515488862991333, 0.200352281332016, -0.1013985276222229, 0.030967237427830696, 1.168270230293274, -0.11793676018714905, 0.07749000191688538, -0.03458647429943085]} +{"t": 5.1128, "q": [-0.3603627681732178, -0.013545051217079163, 0.010030529461801052, 0.6254550814628601, -0.2954172194004059, 0.023678533732891083, -0.34790343046188354, 0.004005394410341978, -0.005637987982481718, 0.6230774521827698, -0.3290760815143585, 0.0028006872162222862, 0.004687163513153791, 0.010728615336120129, -0.0321764312684536, 0.20633240044116974, 0.07594403624534607, 0.0032956618815660477, 1.1238447427749634, 0.07938350737094879, 0.06518220156431198, 0.025118935853242874, 0.200352281332016, -0.10141051560640335, 0.030943268910050392, 1.168270230293274, -0.1179487481713295, 0.07749000191688538, -0.034598458558321]} +{"t": 5.1295, "q": [-0.36028608679771423, -0.013545051217079163, 0.010030529461801052, 0.6253954172134399, -0.2954089343547821, 0.023678569123148918, -0.3478863835334778, 0.004048004746437073, -0.005637987982481718, 0.623060405254364, -0.32907193899154663, 0.0027933900710195303, 0.004673771560192108, 0.010721022263169289, -0.03218130022287369, 0.20626050233840942, 0.07594403624534607, 0.0032716935966163874, 1.1238806247711182, 0.07935953885316849, 0.06519418209791183, 0.025142904371023178, 0.2004002183675766, -0.1013985276222229, 0.030967237427830696, 1.1682941913604736, -0.1179247796535492, 0.07749000191688538, -0.034598458558321]} +{"t": 5.1464, "q": [-0.36026903986930847, -0.013545051217079163, 0.010017137974500656, 0.6253102421760559, -0.2954047620296478, 0.023671356961131096, -0.34790343046188354, 0.004048004746437073, -0.005637987982481718, 0.623060405254364, -0.32908016443252563, 0.0027934624813497066, 0.004646987654268742, 0.010736207477748394, -0.03217156231403351, 0.20626050233840942, 0.07595601677894592, 0.0032956618815660477, 1.1239525079727173, 0.07935953885316849, 0.06518220156431198, 0.025142904371023178, 0.2003762423992157, -0.1014224961400032, 0.030955253168940544, 1.168342113494873, -0.1179487481713295, 0.07750198245048523, -0.0346224270761013]} +{"t": 5.1631, "q": [-0.3602178990840912, -0.013536527752876282, 0.010017137974500656, 0.62523353099823, -0.2954047620296478, 0.023671356961131096, -0.34789490699768066, 0.004022438544780016, -0.005624596029520035, 0.6230689287185669, -0.32908007502555847, 0.002778940601274371, 0.004646987654268742, 0.010736207477748394, -0.03217156231403351, 0.20623652637004852, 0.07594403624534607, 0.0032836776226758957, 1.1240124702453613, 0.07934755831956863, 0.06518220156431198, 0.025142904371023178, 0.20036426186561584, -0.1013985276222229, 0.030979221686720848, 1.1683541536331177, -0.1179487481713295, 0.07751397043466568, -0.03461044281721115]} +{"t": 5.1798, "q": [-0.3602093756198883, -0.013545051217079163, 0.010057313367724419, 0.6251994371414185, -0.29540058970451355, 0.023664142936468124, -0.34789490699768066, 0.004030960611999035, -0.0056112040765583515, 0.6230774521827698, -0.32908421754837036, 0.002786237746477127, 0.004660379607230425, 0.010713430121541023, -0.03218616545200348, 0.20622454583644867, 0.07594403624534607, 0.0032716935966163874, 1.124024510383606, 0.07938350737094879, 0.06519418209791183, 0.025142904371023178, 0.200352281332016, -0.1014224961400032, 0.030955253168940544, 1.1683900356292725, -0.11796072870492935, 0.07750198245048523, -0.03458647429943085]} +{"t": 5.1967, "q": [-0.3602008521556854, -0.013545051217079163, 0.010057313367724419, 0.6251142024993896, -0.2954047620296478, 0.023671356961131096, -0.34790343046188354, 0.004056526813656092, -0.005624596029520035, 0.623060405254364, -0.32908421754837036, 0.002786237746477127, 0.004687163513153791, 0.010743818245828152, -0.03218634054064751, 0.20621256530284882, 0.07594403624534607, 0.0032956618815660477, 1.1240724325180054, 0.07934755831956863, 0.06520617008209229, 0.02515488862991333, 0.200352281332016, -0.1013985276222229, 0.030943268910050392, 1.1684139966964722, -0.11798469722270966, 0.07750198245048523, -0.034598458558321]} +{"t": 5.2135, "q": [-0.3601667582988739, -0.013553572818636894, 0.010057313367724419, 0.6250374913215637, -0.2953922748565674, 0.02366417832672596, -0.34789490699768066, 0.004048004746437073, -0.0055978125892579556, 0.623060405254364, -0.32909640669822693, 0.0027645453810691833, 0.004646987654268742, 0.010736226104199886, -0.032191209495067596, 0.20620058476924896, 0.07593204826116562, 0.0032956618815660477, 1.1241443157196045, 0.07934755831956863, 0.06519418209791183, 0.02515488862991333, 0.20034028589725494, -0.1013985276222229, 0.030979221686720848, 1.1684499979019165, -0.1179247796535492, 0.07750198245048523, -0.03461044281721115]} +{"t": 5.2302, "q": [-0.36010709404945374, -0.01352800615131855, 0.010057313367724419, 0.6249693632125854, -0.295392245054245, 0.02364971488714218, -0.34789490699768066, 0.004048004746437073, -0.005557636730372906, 0.623060405254364, -0.3291005790233612, 0.0027718422934412956, 0.004673771560192108, 0.010728615336120129, -0.0321764312684536, 0.20622454583644867, 0.07592006772756577, 0.0032716935966163874, 1.1242282390594482, 0.07933557033538818, 0.06520617008209229, 0.025142904371023178, 0.20030434429645538, -0.1013985276222229, 0.030955253168940544, 1.1684619188308716, -0.11793676018714905, 0.07750198245048523, -0.034598458558321]} +{"t": 5.247, "q": [-0.36009860038757324, -0.013545051217079163, 0.01007070578634739, 0.6249011754989624, -0.2953964173793793, 0.023656928911805153, -0.3479119539260864, 0.004022438544780016, -0.005530852824449539, 0.6230689287185669, -0.3291005790233612, 0.0027718422934412956, 0.004646987654268742, 0.010743818245828152, -0.03218634054064751, 0.20624852180480957, 0.07595601677894592, 0.0032836776226758957, 1.1242761611938477, 0.07935953885316849, 0.06519418209791183, 0.025142904371023178, 0.20031632483005524, -0.1013985276222229, 0.030967237427830696, 1.1684739589691162, -0.1179247796535492, 0.07749000191688538, -0.034598458558321]} +{"t": 5.2638, "q": [-0.3600815534591675, -0.01352800615131855, 0.010110881179571152, 0.6248670816421509, -0.295392245054245, 0.02364971488714218, -0.3479119539260864, 0.004048004746437073, -0.005490677431225777, 0.6230263113975525, -0.32910463213920593, 0.002764617558568716, 0.004646987654268742, 0.010728633962571621, -0.032196078449487686, 0.20620058476924896, 0.07594403624534607, 0.0032716935966163874, 1.1243480443954468, 0.07931160181760788, 0.06520617008209229, 0.025166872888803482, 0.20029236376285553, -0.1014224961400032, 0.030967237427830696, 1.1684858798980713, -0.1179247796535492, 0.07749000191688538, -0.03458647429943085]} +{"t": 5.2805, "q": [-0.3600730299949646, -0.013536527752876282, 0.010097489692270756, 0.6248244643211365, -0.295392245054245, 0.02364971488714218, -0.3479119539260864, 0.004022438544780016, -0.005490677431225777, 0.6230177879333496, -0.3291005790233612, 0.0027718422934412956, 0.004620204214006662, 0.010728633962571621, -0.032196078449487686, 0.20618858933448792, 0.07588411122560501, 0.0032716935966163874, 1.124419927597046, 0.07934755831956863, 0.06519418209791183, 0.02515488862991333, 0.20031632483005524, -0.1014224961400032, 0.030955253168940544, 1.1685458421707153, -0.1179487481713295, 0.07749000191688538, -0.03458647429943085]} +{"t": 5.2972, "q": [-0.36004745960235596, -0.013545051217079163, 0.010097489692270756, 0.6247477531433105, -0.2953964173793793, 0.023656928911805153, -0.34790343046188354, 0.004022438544780016, -0.005504068918526173, 0.6229836940765381, -0.32910463213920593, 0.002764617558568716, 0.004593420308083296, 0.010743836872279644, -0.032205987721681595, 0.20618858933448792, 0.07582419365644455, 0.0032836776226758957, 1.1245397329330444, 0.07935953885316849, 0.06517021358013153, 0.025166872888803482, 0.20028036832809448, -0.1014224961400032, 0.030955253168940544, 1.16855788230896, -0.11790081113576889, 0.07749000191688538, -0.034598458558321]} +{"t": 5.3139, "q": [-0.3600645065307617, -0.01352800615131855, 0.01007070578634739, 0.6246625185012817, -0.2953963577747345, 0.023642465472221375, -0.3479119539260864, 0.004005394410341978, -0.005490677431225777, 0.6229410767555237, -0.32912495732307434, 0.0027284754905849695, 0.004593420308083296, 0.010728633962571621, -0.032196078449487686, 0.2061406522989273, 0.07584816217422485, 0.0032956618815660477, 1.1246955394744873, 0.07934755831956863, 0.06518220156431198, 0.02515488862991333, 0.20025640726089478, -0.1014224961400032, 0.030943268910050392, 1.168569803237915, -0.1179487481713295, 0.07750198245048523, -0.034598458558321]} +{"t": 5.3309, "q": [-0.3600218892097473, -0.013545051217079163, 0.010124272666871548, 0.6245773434638977, -0.2953880727291107, 0.02364250086247921, -0.34790343046188354, 0.004022438544780016, -0.005490677431225777, 0.6229410767555237, -0.3291413187980652, 0.002714098198339343, 0.004606812261044979, 0.010728633962571621, -0.032196078449487686, 0.20612867176532745, 0.07588411122560501, 0.0032836776226758957, 1.1249831914901733, 0.07933557033538818, 0.06517021358013153, 0.02515488862991333, 0.20025640726089478, -0.1013985276222229, 0.030955253168940544, 1.1685818433761597, -0.11790081113576889, 0.07749000191688538, -0.03461044281721115]} +{"t": 5.3476, "q": [-0.35996222496032715, -0.01352800615131855, 0.01017784047871828, 0.6245091557502747, -0.2953964173793793, 0.023656928911805153, -0.3479204773902893, 0.004013916477560997, -0.005490677431225777, 0.622915506362915, -0.3291413187980652, 0.002714098198339343, 0.004606812261044979, 0.010728633962571621, -0.032196078449487686, 0.20602081716060638, 0.07594403624534607, 0.0032836776226758957, 1.1256064176559448, 0.07931160181760788, 0.06514624506235123, 0.025130920112133026, 0.20024442672729492, -0.1013985276222229, 0.030979221686720848, 1.1686058044433594, -0.11793676018714905, 0.07749000191688538, -0.03458647429943085]} +{"t": 5.3644, "q": [-0.35991960763931274, -0.013553572818636894, 0.010204624384641647, 0.6244580149650574, -0.29537972807884216, 0.023628056049346924, -0.3479204773902893, 0.004022438544780016, -0.00546389352530241, 0.622915506362915, -0.3291454613208771, 0.002721413504332304, 0.004593420308083296, 0.010728633962571621, -0.032196078449487686, 0.20569723844528198, 0.07596800476312637, 0.0032956618815660477, 1.1265531778335571, 0.07931160181760788, 0.06512227654457092, 0.02515488862991333, 0.20025640726089478, -0.1014224961400032, 0.030979221686720848, 1.1686177253723145, -0.11793676018714905, 0.07747801393270493, -0.03458647429943085]} +{"t": 5.3811, "q": [-0.35991960763931274, -0.013562094420194626, 0.01017784047871828, 0.6244239211082458, -0.2953880727291107, 0.02364250086247921, -0.3479204773902893, 0.004022438544780016, -0.005477285478264093, 0.6229069828987122, -0.3291618227958679, 0.0027070362120866776, 0.004620204214006662, 0.010728633962571621, -0.032196078449487686, 0.20490628480911255, 0.07597998529672623, 0.0033076461404561996, 1.1281111240386963, 0.07927565276622772, 0.06505037099123001, 0.02515488862991333, 0.20024442672729492, -0.1013985276222229, 0.030955253168940544, 1.1686416864395142, -0.11791279166936874, 0.07750198245048523, -0.03455052152276039]} +{"t": 5.398, "q": [-0.35991111397743225, -0.013562094420194626, 0.010164448991417885, 0.6243727803230286, -0.2953880727291107, 0.02364250086247921, -0.34790343046188354, 0.004005394410341978, -0.00546389352530241, 0.6228728890419006, -0.3291657865047455, 0.002685271669179201, 0.004593420308083296, 0.010728633962571621, -0.032196078449487686, 0.20400746166706085, 0.07618372142314911, 0.0033316146582365036, 1.1290578842163086, 0.07927565276622772, 0.06503839045763016, 0.025130920112133026, 0.20023243129253387, -0.1013985276222229, 0.030967237427830696, 1.1686416864395142, -0.11793676018714905, 0.07750198245048523, -0.03456250578165054]} +{"t": 5.4147, "q": [-0.35986849665641785, -0.013553572818636894, 0.010191232897341251, 0.6243642568588257, -0.29538390040397644, 0.02363528683781624, -0.34790343046188354, 0.003996872343122959, -0.005450501572340727, 0.6228728890419006, -0.3291618227958679, 0.0027070362120866776, 0.004660379607230425, 0.010743818245828152, -0.03218634054064751, 0.20273713767528534, 0.07635150104761124, 0.0033435989171266556, 1.1295372247695923, 0.07927565276622772, 0.06505037099123001, 0.025130920112133026, 0.20023243129253387, -0.1013985276222229, 0.030967237427830696, 1.1687016487121582, -0.1179487481713295, 0.07750198245048523, -0.03456250578165054]} +{"t": 5.4315, "q": [-0.35986849665641785, -0.013579139485955238, 0.010218016803264618, 0.6243727803230286, -0.2953880727291107, 0.02364250086247921, -0.3479119539260864, 0.004013916477560997, -0.005437109619379044, 0.6228728890419006, -0.3291657865047455, 0.002685271669179201, 0.0047541228123009205, 0.010736207477748394, -0.03217156231403351, 0.20075973868370056, 0.07651928067207336, 0.0033316146582365036, 1.1304121017456055, 0.07931160181760788, 0.06503839045763016, 0.025106951594352722, 0.20022045075893402, -0.1014224961400032, 0.030955253168940544, 1.1686896085739136, -0.1179727166891098, 0.07749000191688538, -0.03456250578165054]} +{"t": 5.4482, "q": [-0.35986849665641785, -0.013596182689070702, 0.01024479977786541, 0.6243131160736084, -0.2953880727291107, 0.02364250086247921, -0.34790343046188354, 0.004005394410341978, -0.0053701503202319145, 0.622847318649292, -0.3291575610637665, 0.002685199026018381, 0.004620204214006662, 0.010743818245828152, -0.03218634054064751, 0.19875837862491608, 0.07672300934791565, 0.0033316146582365036, 1.1308914422988892, 0.07932358980178833, 0.06512227654457092, 0.025106951594352722, 0.20019648969173431, -0.1014224961400032, 0.030967237427830696, 1.1686776876449585, -0.1179247796535492, 0.07747801393270493, -0.034574490040540695]} +{"t": 5.4649, "q": [-0.3598088324069977, -0.013596182689070702, 0.010445678606629372, 0.624270498752594, -0.2953880727291107, 0.02364250086247921, -0.3479119539260864, 0.003996872343122959, -0.005222839303314686, 0.6228217482566833, -0.32916995882987976, 0.0026925685815513134, 0.004553244449198246, 0.010743818245828152, -0.03218634054064751, 0.19687685370445251, 0.07697467505931854, 0.0033316146582365036, 1.1311310529708862, 0.07933557033538818, 0.06517021358013153, 0.025106951594352722, 0.20019648969173431, -0.1014224961400032, 0.031027158722281456, 1.1687016487121582, -0.11796072870492935, 0.07751397043466568, -0.03456250578165054]} +{"t": 5.4818, "q": [-0.35968953371047974, -0.013579139485955238, 0.010686732828617096, 0.6241256594657898, -0.29540058970451355, 0.023664142936468124, -0.3479290008544922, 0.003988349810242653, -0.005048744846135378, 0.6227961778640747, -0.32916995882987976, 0.0026925685815513134, 0.0045130690559744835, 0.010728633962571621, -0.032196078449487686, 0.1949833482503891, 0.07714245468378067, 0.0033316146582365036, 1.1313228607177734, 0.07931160181760788, 0.06519418209791183, 0.02509496733546257, 0.2000526785850525, -0.1013985276222229, 0.030955253168940544, 1.168725609779358, -0.11793676018714905, 0.07749000191688538, -0.03455052152276039]} +{"t": 5.4985, "q": [-0.3595787286758423, -0.013621749356389046, 0.01092778705060482, 0.6240148544311523, -0.2953964173793793, 0.023656928911805153, -0.3479119539260864, 0.003937217406928539, -0.004874649923294783, 0.6228047013282776, -0.3291618227958679, 0.0027070362120866776, 0.004553244449198246, 0.010743836872279644, -0.032205987721681595, 0.1926344335079193, 0.0772862657904625, 0.0033196303993463516, 1.1313947439193726, 0.07931160181760788, 0.06519418209791183, 0.025070998817682266, 0.19993282854557037, -0.10138654708862305, 0.030955253168940544, 1.1687136888504028, -0.11791279166936874, 0.07750198245048523, -0.034574490040540695]} +{"t": 5.5153, "q": [-0.3594764769077301, -0.013630270957946777, 0.011101881042122841, 0.6239466667175293, -0.2954089343547821, 0.023678569123148918, -0.3479290008544922, 0.0039116512052714825, -0.004727339372038841, 0.6227876543998718, -0.3291659653186798, 0.0027143333572894335, 0.004472893197089434, 0.010743836872279644, -0.032205987721681595, 0.1894945651292801, 0.07732222229242325, 0.0033196303993463516, 1.1314547061920166, 0.07933557033538818, 0.06514624506235123, 0.02503504604101181, 0.1998249739408493, -0.10138654708862305, 0.030991205945611, 1.168725609779358, -0.11793676018714905, 0.07751397043466568, -0.034598458558321]} +{"t": 5.5322, "q": [-0.35945942997932434, -0.013664361089468002, 0.011209016665816307, 0.6238699555397034, -0.2954047620296478, 0.023671356961131096, -0.3479119539260864, 0.0038605183362960815, -0.004593420308083296, 0.6227194666862488, -0.3291701078414917, 0.0027216305024921894, 0.0045130690559744835, 0.010774253867566586, -0.032235633581876755, 0.1861989051103592, 0.07738213986158371, 0.0032716935966163874, 1.131203055381775, 0.07932358980178833, 0.06496648490428925, 0.02503504604101181, 0.19978901743888855, -0.10136257857084274, 0.030991205945611, 1.1687376499176025, -0.1179247796535492, 0.07750198245048523, -0.034574490040540695]} +{"t": 5.549, "q": [-0.35922932624816895, -0.013715492561459541, 0.011302759870886803, 0.6238018274307251, -0.2954131066799164, 0.02368578314781189, -0.3478778600692749, 0.0038434739690274, -0.00445950124412775, 0.6226598620414734, -0.329166054725647, 0.002728855237364769, 0.004312190227210522, 0.01077428087592125, -0.03226510062813759, 0.1820523589849472, 0.07753793895244598, 0.0032477250788360834, 1.130927324295044, 0.07932358980178833, 0.06448711454868317, 0.025011077523231506, 0.19958528876304626, -0.10130265355110168, 0.031039142981171608, 1.168725609779358, -0.11790081113576889, 0.07750198245048523, -0.03458647429943085]} +{"t": 5.5657, "q": [-0.3591015040874481, -0.013741059228777885, 0.011490246281027794, 0.6237080693244934, -0.2954131066799164, 0.02368578314781189, -0.3478352725505829, 0.0038008634001016617, -0.0041916631162166595, 0.6226513385772705, -0.32917851209640503, 0.0027507466729730368, 0.0042854067869484425, 0.010797068476676941, -0.03226032108068466, 0.17622803151607513, 0.07754991948604584, 0.0031997880432754755, 1.1310112476348877, 0.07937152683734894, 0.06427139788866043, 0.02502306178212166, 0.19951337575912476, -0.10126670449972153, 0.031003190204501152, 1.1687376499176025, -0.1179247796535492, 0.07751397043466568, -0.034574490040540695]} +{"t": 5.5828, "q": [-0.3590333163738251, -0.013792192563414574, 0.011557205580174923, 0.6236824989318848, -0.29541727900505066, 0.023693015798926353, -0.3478352725505829, 0.0037582528311759233, -0.003964001312851906, 0.622617244720459, -0.32917046546936035, 0.002779718255624175, 0.004272014833986759, 0.010797077789902687, -0.032270144671201706, 0.17028385400772095, 0.0776338130235672, 0.003175819758325815, 1.1311191320419312, 0.07934755831956863, 0.06423544883728027, 0.02502306178212166, 0.19953735172748566, -0.10126670449972153, 0.030991205945611, 1.1687376499176025, -0.1179487481713295, 0.07751397043466568, -0.03456250578165054]} +{"t": 5.5995, "q": [-0.3589651584625244, -0.013868890702724457, 0.011677732691168785, 0.6236143112182617, -0.29541727900505066, 0.023693015798926353, -0.3478352725505829, 0.0036645096261054277, -0.0038434739690274, 0.6226342916488647, -0.3291582763195038, 0.002801410621032119, 0.004030960611999035, 0.010804679244756699, -0.03227509930729866, 0.16449548304080963, 0.07782556116580963, 0.0032237565610557795, 1.1308674812316895, 0.0794074758887291, 0.06409163773059845, 0.02503504604101181, 0.19936956465244293, -0.10129067301750183, 0.031003190204501152, 1.168797492980957, -0.11796072870492935, 0.07750198245048523, -0.03456250578165054]} +{"t": 5.6163, "q": [-0.3587861955165863, -0.013877412304282188, 0.011758084408938885, 0.6235290765762329, -0.29542145133018494, 0.023700229823589325, -0.3478352725505829, 0.00364746549166739, -0.003562244353815913, 0.6226257681846619, -0.32915034890174866, 0.0028449222445487976, 0.003816690295934677, 0.010819855146110058, -0.03225553780794144, 0.1597377359867096, 0.07808921486139297, 0.003187804017215967, 1.1306877136230469, 0.07941946387290955, 0.06397179514169693, 0.025047030299901962, 0.19928568601608276, -0.10126670449972153, 0.031063111498951912, 1.1687616109848022, -0.1179487481713295, 0.07751397043466568, -0.03458647429943085]} +{"t": 5.633, "q": [-0.3586498200893402, -0.013868890702724457, 0.011717909015715122, 0.623435378074646, -0.2954007685184479, 0.023736493661999702, -0.34784379601478577, 0.00364746549166739, -0.0032676225528120995, 0.6226001977920532, -0.32914212346076965, 0.0028448316734284163, 0.0037899063900113106, 0.010857845656573772, -0.03226066753268242, 0.15397332608699799, 0.07847270369529724, 0.0032117723021656275, 1.1301363706588745, 0.07939549535512924, 0.06372012197971344, 0.025059014558792114, 0.199249729514122, -0.10126670449972153, 0.031039142981171608, 1.1687616109848022, -0.11796072870492935, 0.07756190747022629, -0.034598458558321]} +{"t": 5.6498, "q": [-0.35853052139282227, -0.013937067240476608, 0.011677732691168785, 0.6233586668968201, -0.29540911316871643, 0.023750919848680496, -0.34784379601478577, 0.0036218990571796894, -0.0030801359098404646, 0.6226087212562561, -0.32913851737976074, 0.0029247021302580833, 0.003816690295934677, 0.010926280170679092, -0.032324910163879395, 0.1470824033021927, 0.07900001108646393, 0.0032357408199459314, 1.12898588180542, 0.0794314444065094, 0.06328869611024857, 0.025070998817682266, 0.19928568601608276, -0.10126670449972153, 0.030991205945611, 1.1688095331192017, -0.1179247796535492, 0.07750198245048523, -0.03456250578165054]} +{"t": 5.6665, "q": [-0.35840269923210144, -0.013962633907794952, 0.011691125109791756, 0.623290479183197, -0.29539257287979126, 0.023779917508363724, -0.3478352725505829, 0.003570766421034932, -0.0029194331727921963, 0.6226001977920532, -0.32915106415748596, 0.0029611336067318916, 0.0036158119328320026, 0.0110706752166152, -0.032379768788814545, 0.14025138318538666, 0.07968311011791229, 0.0032597093377262354, 1.1279911994934082, 0.07944343239068985, 0.06306099146604538, 0.025070998817682266, 0.19927369058132172, -0.10130265355110168, 0.030955253168940544, 1.168797492980957, -0.1179487481713295, 0.07750198245048523, -0.03458647429943085]} +{"t": 5.6832, "q": [-0.3582748472690582, -0.013996722176671028, 0.011731300503015518, 0.6232563853263855, -0.295388400554657, 0.023772703483700752, -0.34780117869377136, 0.0035537220537662506, -0.0027453387156128883, 0.6225916743278503, -0.32916757464408875, 0.00297580030746758, 0.003696163184940815, 0.011290918104350567, -0.03230750933289528, 0.13223394751548767, 0.08034224808216095, 0.0032597093377262354, 1.1279432773590088, 0.0794074758887291, 0.06310892850160599, 0.025059014558792114, 0.19929766654968262, -0.1013985276222229, 0.030919300392270088, 1.1688095331192017, -0.1179247796535492, 0.07752595096826553, -0.034598458558321]} +{"t": 5.6999, "q": [-0.3582748472690582, -0.014022288843989372, 0.011677732691168785, 0.6232308149337769, -0.2953842580318451, 0.02377997152507305, -0.34782674908638, 0.0035366779193282127, -0.002651595277711749, 0.6225831508636475, -0.32918429374694824, 0.0030195286963135004, 0.0036158119328320026, 0.01158716157078743, -0.03226521238684654, 0.12479173392057419, 0.08086955547332764, 0.0032716935966163874, 1.1272602081298828, 0.07944343239068985, 0.06300107389688492, 0.025070998817682266, 0.19927369058132172, -0.10155432671308517, 0.030943268910050392, 1.1688095331192017, -0.11798469722270966, 0.07750198245048523, -0.03458647429943085]} +{"t": 5.7167, "q": [-0.35812997817993164, -0.014064900577068329, 0.011731300503015518, 0.6231711506843567, -0.29535529017448425, 0.023816252127289772, -0.34775856137275696, 0.0035366779193282127, -0.00254446011967957, 0.6225661039352417, -0.32918429374694824, 0.0030195286963135004, 0.0033881496638059616, 0.011936591938138008, -0.03221847862005234, 0.11728961020708084, 0.08144479244947433, 0.0032597093377262354, 1.125522494316101, 0.07944343239068985, 0.0628812313079834, 0.025082983076572418, 0.19921377301216125, -0.1017221063375473, 0.03093128465116024, 1.1688334941864014, -0.11796072870492935, 0.07750198245048523, -0.034574490040540695]} +{"t": 5.7336, "q": [-0.35793396830558777, -0.01407342217862606, 0.011798259802162647, 0.6230518817901611, -0.29535114765167236, 0.02382350154221058, -0.3477500379085541, 0.0035451999865472317, -0.002383757382631302, 0.6225746273994446, -0.32919684052467346, 0.0030559420119971037, 0.003334582084789872, 0.012323932722210884, -0.0320885069668293, 0.10938002169132233, 0.08206797391176224, 0.0032477250788360834, 1.123005747795105, 0.07946740090847015, 0.06286924332380295, 0.025070998817682266, 0.1992017924785614, -0.10187789797782898, 0.03087136335670948, 1.1688214540481567, -0.1179487481713295, 0.07750198245048523, -0.03458647429943085]} +{"t": 5.7505, "q": [-0.3576953411102295, -0.014116032049059868, 0.011972354725003242, 0.6227194666862488, -0.29535529017448425, 0.023816252127289772, -0.34758812189102173, 0.0035366779193282127, -0.0021427033934742212, 0.6225746273994446, -0.32920506596565247, 0.00305601442232728, 0.003321190131828189, 0.01266574952751398, -0.03201722353696823, 0.1019737720489502, 0.08264321833848953, 0.0032117723021656275, 1.1201295852661133, 0.07949136942625046, 0.06259360909461975, 0.025082983076572418, 0.19918981194496155, -0.10200972855091095, 0.03085937909781933, 1.1688214540481567, -0.11791279166936874, 0.07751397043466568, -0.03456250578165054]} +{"t": 5.7672, "q": [-0.35735446214675903, -0.014150120317935944, 0.012133057229220867, 0.6223104596138, -0.2953387200832367, 0.023830804973840714, -0.347383588552475, 0.003459978848695755, -0.0018614735454320908, 0.6225234866142273, -0.32921329140663147, 0.0030560865998268127, 0.0034283252898603678, 0.013121548108756542, -0.03196152299642563, 0.09306949377059937, 0.08331433683633804, 0.0032237565610557795, 1.1182000637054443, 0.07947938144207001, 0.06240186095237732, 0.025059014558792114, 0.19921377301216125, -0.1023213118314743, 0.03085937909781933, 1.1688334941864014, -0.11793676018714905, 0.07753793895244598, -0.03456250578165054]} +{"t": 5.784, "q": [-0.3571499288082123, -0.01424386352300644, 0.012200016528367996, 0.6220206618309021, -0.29532626271247864, 0.023838071152567863, -0.34680408239364624, 0.0034344124142080545, -0.0016873788554221392, 0.6224979162216187, -0.3292132019996643, 0.0030415647197514772, 0.0033077981788665056, 0.013622951693832874, -0.03192582726478577, 0.08453672379255295, 0.0839734673500061, 0.003175819758325815, 1.1151561737060547, 0.07947938144207001, 0.0622820183634758, 0.025047030299901962, 0.1991778165102005, -0.10263290256261826, 0.030883347615599632, 1.168857455253601, -0.1179247796535492, 0.07746603339910507, -0.03456250578165054]} +{"t": 5.8009, "q": [-0.35687723755836487, -0.01425238698720932, 0.012414286844432354, 0.6216627359390259, -0.2953096628189087, 0.023838141933083534, -0.3459092676639557, 0.0034173682797700167, -0.0014329327968880534, 0.6225064396858215, -0.32920506596565247, 0.00305601442232728, 0.003133703488856554, 0.014230736531317234, -0.031900741159915924, 0.07709451764822006, 0.08466855436563492, 0.003043993143364787, 1.1104223728179932, 0.07950334995985031, 0.06185058504343033, 0.02503504604101181, 0.19916583597660065, -0.10281267017126083, 0.030847394838929176, 1.1688814163208008, -0.1179247796535492, 0.07751397043466568, -0.03455052152276039]} +{"t": 5.8176, "q": [-0.35623806715011597, -0.01431204192340374, 0.012695517390966415, 0.6211088299751282, -0.2953013777732849, 0.023852640762925148, -0.3430202603340149, 0.003391801845282316, -0.0011784868547692895, 0.6225064396858215, -0.3291924297809601, 0.0030050792265683413, 0.003106919815763831, 0.01473940722644329, -0.03168414533138275, 0.06860969215631485, 0.08529172837734222, 0.003020024858415127, 1.1059283018112183, 0.07950334995985031, 0.061538998037576675, 0.025011077523231506, 0.19916583597660065, -0.10290854424238205, 0.030847394838929176, 1.168857455253601, -0.11791279166936874, 0.07750198245048523, -0.03455052152276039]} +{"t": 5.8343, "q": [-0.3543546795845032, -0.014388740062713623, 0.012641949579119682, 0.6205548644065857, -0.29529720544815063, 0.023845426738262177, -0.341213583946228, 0.0033832797780632973, -0.0012856220128014684, 0.6220377087593079, -0.3291676938533783, 0.0029903221875429153, 0.002986392704769969, 0.015923134982585907, -0.03069218620657921, 0.059477709233760834, 0.08562728762626648, 0.002996056340634823, 1.101685881614685, 0.07950334995985031, 0.06131129711866379, 0.024987109005451202, 0.19909393787384033, -0.10295648127794266, 0.030799459666013718, 1.1688334941864014, -0.1179247796535492, 0.07751397043466568, -0.03452655300498009]} +{"t": 5.8512, "q": [-0.35268434882164, -0.014593271538615227, 0.012722301296889782, 0.6196430325508118, -0.29529720544815063, 0.023845426738262177, -0.3402164876461029, 0.003144660498946905, -0.0012052706442773342, 0.6218758225440979, -0.3291594684123993, 0.002990249777212739, 0.0031203117687255144, 0.016370883211493492, -0.030366823077201843, 0.050513509660959244, 0.085747130215168, 0.002984072081744671, 1.0991212129592896, 0.07947938144207001, 0.06120343878865242, 0.02497512474656105, 0.19926171004772186, -0.10296846181154251, 0.030799459666013718, 1.1689174175262451, -0.11793676018714905, 0.07751397043466568, -0.034514568746089935]} +{"t": 5.868, "q": [-0.3505282402038574, -0.014917111024260521, 0.012963354587554932, 0.6183732151985168, -0.2952888607978821, 0.023831000551581383, -0.3390319049358368, 0.0026929883752018213, -0.0008704732172191143, 0.6218587756156921, -0.3291718363761902, 0.0029976193327456713, 0.0031203117687255144, 0.01670510321855545, -0.030389590188860893, 0.041441451758146286, 0.08580705523490906, 0.003020024858415127, 1.0961731672286987, 0.07947938144207001, 0.061119548976421356, 0.02491520345211029, 0.19928568601608276, -0.10295648127794266, 0.03081144392490387, 1.169085144996643, -0.1179487481713295, 0.07754991948604584, -0.03450258448719978]} +{"t": 5.8847, "q": [-0.34867042303085327, -0.015189819037914276, 0.01345885545015335, 0.6171204447746277, -0.2952764928340912, 0.023867228999733925, -0.3387506902217865, 0.0023521038237959146, -0.00046871634549461305, 0.6217735409736633, -0.32920461893081665, 0.002983386628329754, 0.0029997846577316523, 0.017176294699311256, -0.030580496415495872, 0.03387940302491188, 0.0857710987329483, 0.002972087822854519, 1.0915712118148804, 0.07934755831956863, 0.06109558045864105, 0.024783378466963768, 0.19928568601608276, -0.10298044979572296, 0.03081144392490387, 1.169085144996643, -0.11793676018714905, 0.07752595096826553, -0.03450258448719978]} +{"t": 5.9015, "q": [-0.3476988971233368, -0.015223907306790352, 0.01384721975773573, 0.6163023710250854, -0.29528066515922546, 0.023874443024396896, -0.3386654555797577, 0.0023009711876511574, -0.00016070275160018355, 0.6215775609016418, -0.3292703926563263, 0.0029839654453098774, 0.0030399602837860584, 0.017944110557436943, -0.031044278293848038, 0.02540655806660652, 0.08569919317960739, 0.003032008884474635, 1.0868253707885742, 0.07929962128400803, 0.06102367490530014, 0.024699488654732704, 0.19938156008720398, -0.10298044979572296, 0.030847394838929176, 1.1691330671310425, -0.11793676018714905, 0.07753793895244598, -0.03452655300498009]} +{"t": 5.9182, "q": [-0.3473324477672577, -0.015223907306790352, 0.013994530774652958, 0.6159870028495789, -0.29528066515922546, 0.023874443024396896, -0.3386228680610657, 0.0022924491204321384, -9.374327055411413e-05, 0.6214838027954102, -0.3293444514274597, 0.002999138319864869, 0.003093527862802148, 0.018886292353272438, -0.03125061094760895, 0.016993630677461624, 0.08568721264600754, 0.003055977402254939, 1.0821754932403564, 0.07929962128400803, 0.06096375361084938, 0.024591630324721336, 0.19944147765636444, -0.10302838683128357, 0.03085937909781933, 1.169180989265442, -0.1179247796535492, 0.07752595096826553, -0.03453853726387024]} +{"t": 5.935, "q": [-0.3473239243030548, -0.015240952372550964, 0.014007923193275928, 0.6159273982048035, -0.29528898000717163, 0.02387440763413906, -0.33854615688323975, 0.0022498385515064, -0.00016070275160018355, 0.621492326259613, -0.32949599623680115, 0.0029205698519945145, 0.0031203117687255144, 0.020018436014652252, -0.031493473798036575, 0.006171876098960638, 0.08566324412822723, 0.003103914437815547, 1.0779690742492676, 0.07926366478204727, 0.06087986379861832, 0.024387897923588753, 0.19944147765636444, -0.10314822942018509, 0.03082342818379402, 1.1692888736724854, -0.11793676018714905, 0.07752595096826553, -0.034514568746089935]} +{"t": 5.9517, "q": [-0.347383588552475, -0.015257995575666428, 0.014074882492423058, 0.6159443855285645, -0.2952474057674408, 0.023860104382038116, -0.33813709020614624, 0.0022924491204321384, -0.00020087843586225063, 0.6215349435806274, -0.3295080065727234, 0.0028698514215648174, 0.0030399602837860584, 0.02111232839524746, -0.031594231724739075, -0.0025286716409027576, 0.08566324412822723, 0.0031278827227652073, 1.0727440118789673, 0.07919175922870636, 0.060867879539728165, 0.024327976629137993, 0.19929766654968262, -0.10372346639633179, 0.03081144392490387, 1.16930091381073, -0.1179727166891098, 0.07753793895244598, -0.03453853726387024]} +{"t": 5.9684, "q": [-0.3476477861404419, -0.015257995575666428, 0.014222193509340286, 0.6159359216690063, -0.29523077607154846, 0.02386019192636013, -0.33771950006484985, 0.0023009711876511574, -0.0001473108568461612, 0.6215434670448303, -0.32947883009910583, 0.002804231597110629, 0.0031203117687255144, 0.02226644940674305, -0.03138163313269615, -0.012415657751262188, 0.08554340153932571, 0.0031398669816553593, 1.0670394897460938, 0.07903596758842468, 0.060807958245277405, 0.024268055334687233, 0.19923774898052216, -0.10443054139614105, 0.03081144392490387, 1.1693367958068848, -0.11793676018714905, 0.07752595096826553, -0.03452655300498009]} +{"t": 5.9853, "q": [-0.3477756083011627, -0.01527504064142704, 0.014436463825404644, 0.6159188747406006, -0.2951640486717224, 0.023759199306368828, -0.3377535939216614, 0.0023180153220891953, -0.00020087843586225063, 0.6215860843658447, -0.32946646213531494, 0.0027968622744083405, 0.0032006630208343267, 0.023571716621518135, -0.030917612835764885, -0.022458437830209732, 0.08490823209285736, 0.0031158984638750553, 1.0613828897476196, 0.07884421944618225, 0.0607839897274971, 0.024220118299126625, 0.19928568601608276, -0.10496982932090759, 0.030775491148233414, 1.169312834739685, -0.1179247796535492, 0.07750198245048523, -0.03449060022830963]} +{"t": 6.0021, "q": [-0.347869336605072, -0.015292083844542503, 0.01505249086767435, 0.6159103512763977, -0.2951391041278839, 0.023744843900203705, -0.3377535939216614, 0.0023094932548701763, -0.0002812298189383, 0.6215860843658447, -0.32946646213531494, 0.0027968622744083405, 0.0033747577108442783, 0.024747971445322037, -0.03049604967236519, -0.03284876048564911, 0.08357799053192139, 0.003103914437815547, 1.0582311153411865, 0.07868842035531998, 0.06077200546860695, 0.024160198867321014, 0.19930964708328247, -0.1055930107831955, 0.030739538371562958, 1.1694086790084839, -0.1179247796535492, 0.07754991948604584, -0.03446663171052933]} +{"t": 6.0188, "q": [-0.347869336605072, -0.015402872115373611, 0.01578904502093792, 0.6159018278121948, -0.29512250423431396, 0.023744914680719376, -0.3377450704574585, 0.0023350596893578768, -0.00030801360844634473, 0.6216371655464172, -0.32947468757629395, 0.002796934451907873, 0.003240838646888733, 0.026000142097473145, -0.03019506111741066, -0.043179161846637726, 0.08225972205400467, 0.0031398669816553593, 1.0533175468444824, 0.0785326287150383, 0.0607839897274971, 0.02413623034954071, 0.1992257535457611, -0.1061682477593422, 0.030715569853782654, 1.1693967580795288, -0.11796072870492935, 0.07751397043466568, -0.03443067893385887]} +{"t": 6.0356, "q": [-0.3477841317653656, -0.0154540054500103, 0.01611045002937317, 0.6159273982048035, -0.29508087038993835, 0.023716166615486145, -0.33762577176094055, 0.0023606258910149336, -0.00030801360844634473, 0.6216968297958374, -0.32947051525115967, 0.0027896373067051172, 0.0031872710678726435, 0.027191663160920143, -0.029972175136208534, -0.05281447991728783, 0.0809294730424881, 0.0032357408199459314, 1.048416018486023, 0.07826897501945496, 0.06081994250416756, 0.024088293313980103, 0.1992257535457611, -0.10676746070384979, 0.030715569853782654, 1.1694326400756836, -0.11791279166936874, 0.07749000191688538, -0.034394726157188416]} +{"t": 6.0524, "q": [-0.3476051688194275, -0.015488093718886375, 0.016217585653066635, 0.6159188747406006, -0.29508498311042786, 0.023694435134530067, -0.3373274803161621, 0.002394714392721653, -0.0003214055032003671, 0.621722400188446, -0.3294910490512848, 0.0027825392317026854, 0.00321405497379601, 0.02837536297738552, -0.029655834659934044, -0.06333663314580917, 0.0797550156712532, 0.0033076461404561996, 1.042447805404663, 0.07784952968358994, 0.06089184805750847, 0.024112261831760406, 0.19927369058132172, -0.10730675607919693, 0.030595727264881134, 1.169372797012329, -0.11793676018714905, 0.07750198245048523, -0.03437075763940811]} +{"t": 6.0691, "q": [-0.3476051688194275, -0.015547748655080795, 0.016217585653066635, 0.6158677339553833, -0.29508498311042786, 0.023694435134530067, -0.3372252285480499, 0.002386192325502634, -0.00036158118746243417, 0.6217564940452576, -0.3295074701309204, 0.0027826838195323944, 0.00321405497379601, 0.029619790613651276, -0.029469801113009453, -0.0746617242693901, 0.07854460924863815, 0.0033196303993463516, 1.0378578901290894, 0.07702261209487915, 0.06087986379861832, 0.024100277572870255, 0.19926171004772186, -0.10791794955730438, 0.030547790229320526, 1.169372797012329, -0.11790081113576889, 0.07752595096826553, -0.03435877338051796]} +{"t": 6.0859, "q": [-0.34747734665870667, -0.015743756666779518, 0.016217585653066635, 0.6157739758491516, -0.29508084058761597, 0.023701684549450874, -0.33717408776283264, 0.002394714392721653, -0.00036158118746243417, 0.6217650175094604, -0.3295074701309204, 0.0027826838195323944, 0.0031203117687255144, 0.030909746885299683, -0.02926599234342575, -0.08520784229040146, 0.07764579355716705, 0.0033316146582365036, 1.032225251197815, 0.07603991031646729, 0.060927800834178925, 0.02407630905508995, 0.19918981194496155, -0.10855311155319214, 0.030559774488210678, 1.1693367958068848, -0.11793676018714905, 0.07750198245048523, -0.03437075763940811]} +{"t": 6.1026, "q": [-0.3474262058734894, -0.01581193320453167, 0.016257761046290398, 0.6157143115997314, -0.29508498311042786, 0.023694435134530067, -0.337105929851532, 0.002403236459940672, -0.00030801360844634473, 0.6217650175094604, -0.32952383160591125, 0.002768324688076973, 0.0030533522367477417, 0.03211590275168419, -0.028997469693422318, -0.09523864090442657, 0.07699864357709885, 0.0033555831760168076, 1.0261971950531006, 0.07467370480298996, 0.06095176935195923, 0.0240643247961998, 0.19906996190547943, -0.10912835597991943, 0.030535805970430374, 1.169312834739685, -0.1179487481713295, 0.07751397043466568, -0.03437075763940811]} +{"t": 6.1193, "q": [-0.3473750650882721, -0.0158204548060894, 0.0163247212767601, 0.6156887412071228, -0.29508915543556213, 0.02370164915919304, -0.3370888829231262, 0.002394714392721653, -0.0002812298189383, 0.6217735409736633, -0.3295319676399231, 0.002753857057541609, 0.003066744189709425, 0.032942697405815125, -0.028840741142630577, -0.10355568677186966, 0.07662713527679443, 0.0033435989171266556, 1.021283745765686, 0.0731397271156311, 0.060999706387519836, 0.02407630905508995, 0.19908194243907928, -0.10960772633552551, 0.030499853193759918, 1.16930091381073, -0.1179247796535492, 0.07747801393270493, -0.03437075763940811]} +{"t": 6.1363, "q": [-0.3473750650882721, -0.015905676409602165, 0.01629793643951416, 0.6155864596366882, -0.29508912563323975, 0.02368718758225441, -0.3370547890663147, 0.0023606258910149336, -0.0002946217136923224, 0.6217820644378662, -0.32955265045166016, 0.002775820903480053, 0.0031203117687255144, 0.034391745924949646, -0.028676455840468407, -0.11725366115570068, 0.07619570195674896, 0.0033316146582365036, 1.0153155326843262, 0.07113835960626602, 0.06101169064640999, 0.0240643247961998, 0.19910591840744019, -0.11042264848947525, 0.030499853193759918, 1.1693248748779297, -0.11793676018714905, 0.07749000191688538, -0.03434678912162781]} +{"t": 6.153, "q": [-0.3472898602485657, -0.016016464680433273, 0.01629793643951416, 0.6155098080635071, -0.295093297958374, 0.023694399744272232, -0.3370462656021118, 0.002326537622138858, -0.00020087843586225063, 0.6217905879020691, -0.32957303524017334, 0.0027542186435312033, 0.0030399602837860584, 0.03543931618332863, -0.028764771297574043, -0.12744024395942688, 0.0761597529053688, 0.0032956618815660477, 1.0092874765396118, 0.07049120962619781, 0.060999706387519836, 0.024052340537309647, 0.19908194243907928, -0.1110338494181633, 0.03051183745265007, 1.1693488359451294, -0.11793676018714905, 0.07751397043466568, -0.034334804862737656]} +{"t": 6.1697, "q": [-0.34725576639175415, -0.0163488257676363, 0.016378289088606834, 0.6155098080635071, -0.29508498311042786, 0.023694435134530067, -0.33703774213790894, 0.0023350596893578768, -0.00016070275160018355, 0.6218332052230835, -0.32960981130599976, 0.0027182213962078094, 0.0030131766106933355, 0.03676081821322441, -0.029135003685951233, -0.1384177953004837, 0.07614776492118835, 0.0032956618815660477, 1.0018812417984009, 0.07038335502147675, 0.060999706387519836, 0.0240643247961998, 0.19911789894104004, -0.11170496046543121, 0.03051183745265007, 1.1693367958068848, -0.1179487481713295, 0.07747801393270493, -0.03437075763940811]} +{"t": 6.1866, "q": [-0.34724724292755127, -0.017362957820296288, 0.0163247212767601, 0.6155012845993042, -0.295093297958374, 0.023694399744272232, -0.3370206952095032, 0.0023094932548701763, -0.0001473108568461612, 0.621867299079895, -0.32965895533561707, 0.0026896116323769093, 0.0030801359098404646, 0.037892527878284454, -0.029476875439286232, -0.14981479942798615, 0.07619570195674896, 0.0033435989171266556, 0.9959250688552856, 0.0703713670372963, 0.06102367490530014, 0.024052340537309647, 0.1992017924785614, -0.11243600398302078, 0.03051183745265007, 1.1694207191467285, -0.11793676018714905, 0.07750198245048523, -0.034334804862737656]} +{"t": 6.2033, "q": [-0.3472216725349426, -0.01966392993927002, 0.016164017841219902, 0.6154330968856812, -0.2951015532016754, 0.023679902777075768, -0.3370121717453003, 0.002198705682530999, -0.0001473108568461612, 0.6219099164009094, -0.32971224188804626, 0.0026682987809181213, 0.002946217078715563, 0.03891072794795036, -0.02990034408867359, -0.16141553223133087, 0.07648332417011261, 0.003379551460966468, 0.9889622330665588, 0.0703713670372963, 0.06101169064640999, 0.024040356278419495, 0.19918981194496155, -0.11301124095916748, 0.030559774488210678, 1.1693967580795288, -0.1179247796535492, 0.07746603339910507, -0.034334804862737656]} +{"t": 6.2201, "q": [-0.34703418612480164, -0.020047424361109734, 0.015668518841266632, 0.6151348352432251, -0.2951056957244873, 0.02367265336215496, -0.3370121717453003, 0.0018407768802717328, -8.035137580009177e-05, 0.6221570372581482, -0.329938679933548, 0.0027356548234820366, 0.002731946762651205, 0.039906200021505356, -0.03032892383635044, -0.17256085574626923, 0.07663912326097488, 0.003415504237636924, 0.9811365604400635, 0.07033541798591614, 0.06097573786973953, 0.02400440350174904, 0.19926171004772186, -0.11350259929895401, 0.03057175874710083, 1.1693967580795288, -0.11790081113576889, 0.07747801393270493, -0.034334804862737656]} +{"t": 6.2368, "q": [-0.3470427095890045, -0.020166734233498573, 0.015722084790468216, 0.6150922179222107, -0.2951098382472992, 0.023665403947234154, -0.3370121717453003, 0.0015851134667173028, -6.695948104606941e-05, 0.6222678422927856, -0.330086886882782, 0.0027805224526673555, 0.0028122980147600174, 0.041015174239873886, -0.0306871235370636, -0.1835024505853653, 0.07653126120567322, 0.0034394727554172277, 0.9750245809555054, 0.07032343000173569, 0.06113153323531151, 0.02400440350174904, 0.19935758411884308, -0.11412577331066132, 0.030583743005990982, 1.1694086790084839, -0.11793676018714905, 0.07750198245048523, -0.034322820603847504]} +{"t": 6.2535, "q": [-0.34699156880378723, -0.020482052117586136, 0.015668518841266632, 0.615066647529602, -0.29511815309524536, 0.023679830133914948, -0.3370206952095032, 0.001252750982530415, -9.374327055411413e-05, 0.6224552989006042, -0.33014506101608276, 0.002882718574255705, 0.002946217078715563, 0.04197964072227478, -0.030929723754525185, -0.1942882537841797, 0.0764114186167717, 0.0034394727554172277, 0.9683253765106201, 0.07035938650369644, 0.06103565916419029, 0.023980434983968735, 0.1994055211544037, -0.11478491127490997, 0.030595727264881134, 1.169468641281128, -0.11793676018714905, 0.07751397043466568, -0.03431083634495735]} +{"t": 6.2703, "q": [-0.3471364378929138, -0.020737716928124428, 0.015668518841266632, 0.6150922179222107, -0.29513484239578247, 0.023708686232566833, -0.3370888829231262, 0.0009629990672692657, -5.3567582654068246e-05, 0.6226683855056763, -0.3302944302558899, 0.003116443520411849, 0.0030399602837860584, 0.042982060462236404, -0.03118874318897724, -0.20467858016490936, 0.076435387134552, 0.0034394727554172277, 0.9600682854652405, 0.07034739851951599, 0.06093978509306908, 0.02394448220729828, 0.19939354062080383, -0.11534816771745682, 0.030583743005990982, 1.1694926023483276, -0.1179247796535492, 0.07746603339910507, -0.0342988520860672]} +{"t": 6.287, "q": [-0.3471790552139282, -0.020950770005583763, 0.01565512642264366, 0.6151177883148193, -0.2951472997665405, 0.02370140142738819, -0.337148517370224, 0.0007414240390062332, 4.017568790004589e-05, 0.6227535605430603, -0.3303484618663788, 0.0032113422639667988, 0.003093527862802148, 0.04392422363162041, -0.031573981046676636, -0.2145775556564331, 0.07651928067207336, 0.003463441040366888, 0.9519549608230591, 0.07033541798591614, 0.06091581657528877, 0.023920513689517975, 0.19948941469192505, -0.11586348712444305, 0.03057175874710083, 1.169540524482727, -0.1179247796535492, 0.07750198245048523, -0.034322820603847504]} +{"t": 6.3037, "q": [-0.34720462560653687, -0.021214954555034637, 0.015601558610796928, 0.6151348352432251, -0.2951472997665405, 0.02370140142738819, -0.33754053711891174, 0.0005454153870232403, 0.00010713516530813649, 0.6228217482566833, -0.3304024636745453, 0.0033062228467315435, 0.003347973804920912, 0.04485843703150749, -0.03188659995794296, -0.22567494213581085, 0.07657919824123383, 0.003487409558147192, 0.9442610740661621, 0.07035938650369644, 0.06096375361084938, 0.023920513689517975, 0.19963322579860687, -0.11641476303339005, 0.030583743005990982, 1.1695884466171265, -0.11796072870492935, 0.07751397043466568, -0.034322820603847504]} +{"t": 6.3205, "q": [-0.34747734665870667, -0.021368352696299553, 0.01562834158539772, 0.615143358707428, -0.29516804218292236, 0.023694081231951714, -0.33800074458122253, 0.00032384038786403835, 0.00020087843586225063, 0.6228387951850891, -0.33049795031547546, 0.0034595890901982784, 0.003254230599850416, 0.04569416493177414, -0.03223155811429024, -0.2352503389120102, 0.07683087140321732, 0.0036072516813874245, 0.9352489113807678, 0.07027550041675568, 0.060867879539728165, 0.02389654517173767, 0.1997051239013672, -0.11693008244037628, 0.03057175874710083, 1.1696603298187256, -0.11796072870492935, 0.07751397043466568, -0.03428686782717705]} +{"t": 6.3372, "q": [-0.34795457124710083, -0.02153879590332508, 0.01564173400402069, 0.6151518821716309, -0.2952345609664917, 0.02370825968682766, -0.3382564187049866, 0.00020453077740967274, 0.0005356758483685553, 0.6228387951850891, -0.33073854446411133, 0.0038248433265835047, 0.003240838646888733, 0.04665118083357811, -0.032559990882873535, -0.24592828750610352, 0.07709451764822006, 0.0036791572347283363, 0.9262967109680176, 0.07028748095035553, 0.06089184805750847, 0.023920513689517975, 0.19971711933612823, -0.11748135834932327, 0.030595727264881134, 1.1696844100952148, -0.1179247796535492, 0.07751397043466568, -0.0342988520860672]} +{"t": 6.3539, "q": [-0.34826135635375977, -0.02170923724770546, 0.015668518841266632, 0.6151092648506165, -0.2953842878341675, 0.02379443496465683, -0.33863988518714905, 1.704423084447626e-05, 0.0008436894277110696, 0.6228047013282776, -0.3311982750892639, 0.0037417442072182894, 0.00321405497379601, 0.047615550458431244, -0.03283524140715599, -0.2561867833137512, 0.07740610837936401, 0.003787015099078417, 0.9167333245277405, 0.07032343000173569, 0.060867879539728165, 0.02389654517173767, 0.1998009979724884, -0.11796072870492935, 0.03057175874710083, 1.1697202920913696, -0.11793676018714905, 0.07751397043466568, -0.034334804862737656]} +{"t": 6.3706, "q": [-0.3482954502105713, -0.021981945261359215, 0.015614950098097324, 0.6151263117790222, -0.2955589294433594, 0.023866022005677223, -0.33877626061439514, -0.0003067961661145091, 0.001044567907229066, 0.6228217482566833, -0.33257612586021423, 0.004008375573903322, 0.0033077981788665056, 0.04853567108511925, -0.03343435004353523, -0.26591798663139343, 0.07751397043466568, 0.003894873196259141, 0.9076732397079468, 0.07032343000173569, 0.06084391102194786, 0.023908529430627823, 0.2000766396522522, -0.11845207959413528, 0.030583743005990982, 1.1697802543640137, -0.11793676018714905, 0.07751397043466568, -0.034334804862737656]} +{"t": 6.3888, "q": [-0.3481931984424591, -0.022356918081641197, 0.01562834158539772, 0.6151604056358337, -0.29558807611465454, 0.023887591436505318, -0.33872511982917786, -0.0006476807757280767, 0.0012454462703317404, 0.6229581236839294, -0.3348270058631897, 0.005404408555477858, 0.0032274469267576933, 0.04955518618226051, -0.03421724587678909, -0.2761165499687195, 0.07757388800382614, 0.003978762775659561, 0.8959646224975586, 0.07031144946813583, 0.0607600212097168, 0.023908529430627823, 0.20029236376285553, -0.11897938698530197, 0.030559774488210678, 1.169768214225769, -0.1179247796535492, 0.07751397043466568, -0.03434678912162781]} +{"t": 6.4055, "q": [-0.34826135635375977, -0.02260405942797661, 0.015614950098097324, 0.6152455806732178, -0.2956171929836273, 0.023909160867333412, -0.3387933075428009, -0.0008607336785644293, 0.001312405802309513, 0.6230774521827698, -0.3352077603340149, 0.006062307860702276, 0.003240838646888733, 0.05073400214314461, -0.03501105681061745, -0.28583574295043945, 0.0776098445057869, 0.00407463638111949, 0.8854185342788696, 0.07032343000173569, 0.06071208417415619, 0.023908529430627823, 0.20047211647033691, -0.119770348072052, 0.03057175874710083, 1.1698161363601685, -0.1179247796535492, 0.07754991948604584, -0.03431083634495735]} +{"t": 6.4222, "q": [-0.3483806848526001, -0.02285120077431202, 0.015561383217573166, 0.6152370572090149, -0.29562562704086304, 0.023952532559633255, -0.33895522356033325, -0.0009800433181226254, 0.0015400679549202323, 0.6230859756469727, -0.3354686498641968, 0.006537304259836674, 0.003347973804920912, 0.051973480731248856, -0.03582730516791344, -0.2959384620189667, 0.07766976207494736, 0.0041705104522407055, 0.8752678632736206, 0.07031144946813583, 0.060628194361925125, 0.023920513689517975, 0.2006998211145401, -0.12059725821018219, 0.030595727264881134, 1.1699600219726562, -0.11793676018714905, 0.07751397043466568, -0.034322820603847504]} +{"t": 6.4389, "q": [-0.34849998354911804, -0.023021643981337547, 0.0154542475938797, 0.6152711510658264, -0.2956174612045288, 0.024010438472032547, -0.33919385075569153, -0.001133441342972219, 0.0017007706919685006, 0.6231626272201538, -0.335456520318985, 0.006573510356247425, 0.0034551091957837343, 0.05311393365263939, -0.0365387499332428, -0.30542996525764465, 0.07770571857690811, 0.004230431281030178, 0.8648056387901306, 0.07033541798591614, 0.06061621010303497, 0.023932497948408127, 0.20075973868370056, -0.12150806188583374, 0.030619695782661438, 1.1701996326446533, -0.11793676018714905, 0.07752595096826553, -0.03428686782717705]} +{"t": 6.4557, "q": [-0.3486193120479584, -0.023175042122602463, 0.01538728829473257, 0.6152967214584351, -0.2956175208091736, 0.024024901911616325, -0.3394068777561188, -0.0012783173006027937, 0.001834689755924046, 0.6232478618621826, -0.3353613018989563, 0.0064054024405777454, 0.0034015413839370012, 0.0541858971118927, -0.03718414157629013, -0.3152090907096863, 0.07835286110639572, 0.004494084510952234, 0.8544393181800842, 0.07035938650369644, 0.06036454066634178, 0.023920513689517975, 0.2007237821817398, -0.1221671923995018, 0.030607711523771286, 1.1710145473480225, -0.1179247796535492, 0.07752595096826553, -0.03431083634495735]} +{"t": 6.4724, "q": [-0.3485596477985382, -0.023328440263867378, 0.015414072200655937, 0.6154160499572754, -0.2956010401248932, 0.024082859978079796, -0.3394750654697418, -0.0013379721203818917, 0.002048959955573082, 0.6234779357910156, -0.33536139130592346, 0.006419952027499676, 0.0035086767747998238, 0.05512756109237671, -0.03751755133271217, -0.3243890106678009, 0.07977898418903351, 0.005033374764025211, 0.8439051508903503, 0.07033541798591614, 0.060340575873851776, 0.023932497948408127, 0.2006279081106186, -0.12273044884204865, 0.030619695782661438, 1.1716258525848389, -0.11793676018714905, 0.07751397043466568, -0.03431083634495735]} +{"t": 6.4891, "q": [-0.3485596477985382, -0.02356705814599991, 0.015400679782032967, 0.6156546473503113, -0.295613557100296, 0.02410450205206871, -0.3395773470401764, -0.0014828480780124664, 0.0021427033934742212, 0.6239125728607178, -0.3353405296802521, 0.0063543193973600864, 0.0038300822488963604, 0.056038208305835724, -0.03768268972635269, -0.33498305082321167, 0.08106129616498947, 0.005320996046066284, 0.8337425589561462, 0.07035938650369644, 0.060148827731609344, 0.023920513689517975, 0.2006758451461792, -0.12342553585767746, 0.030607711523771286, 1.1720212697982788, -0.1179247796535492, 0.07751397043466568, -0.03428686782717705]} +{"t": 6.5058, "q": [-0.3486533761024475, -0.02393350936472416, 0.015440856106579304, 0.6158592104911804, -0.2956177294254303, 0.024111714214086533, -0.33979037404060364, -0.0017725999932736158, 0.002129311440512538, 0.6245517730712891, -0.3353440761566162, 0.00624533835798502, 0.004017568659037352, 0.05675072595477104, -0.0376056432723999, -0.34576886892318726, 0.08216384798288345, 0.005440838169306517, 0.8226811289787292, 0.07033541798591614, 0.060028985142707825, 0.023920513689517975, 0.20066386461257935, -0.12390490621328354, 0.030655648559331894, 1.1725845336914062, -0.11791279166936874, 0.07751397043466568, -0.03431083634495735]} +{"t": 6.5226, "q": [-0.34882381558418274, -0.02429996058344841, 0.015467639081180096, 0.6160807609558105, -0.29560530185699463, 0.024118999019265175, -0.34013980627059937, -0.0021049624774605036, 0.0020757438614964485, 0.6252676248550415, -0.3352877199649811, 0.0056561012752354145, 0.004017568659037352, 0.05726638063788414, -0.03761139139533043, -0.3559914231300354, 0.08326639980077744, 0.005452822428196669, 0.8126024007797241, 0.0703953355550766, 0.05970541015267372, 0.023932497948408127, 0.2006279081106186, -0.12433633953332901, 0.030655648559331894, 1.1733754873275757, -0.11793676018714905, 0.07750198245048523, -0.03431083634495735]} +{"t": 6.5393, "q": [-0.3489260971546173, -0.024683456867933273, 0.015507815405726433, 0.6165409684181213, -0.29558053612709045, 0.024176975712180138, -0.3404806852340698, -0.0023606258910149336, 0.0021025275345891714, 0.6263669729232788, -0.3355279564857483, 0.005316936876624823, 0.004084527958184481, 0.05771338567137718, -0.037551697343587875, -0.36656150221824646, 0.08445283770561218, 0.005440838169306517, 0.8010016679763794, 0.07035938650369644, 0.059489693492650986, 0.023932497948408127, 0.20049609243869781, -0.12464793026447296, 0.03063168004155159, 1.1743701696395874, -0.11793676018714905, 0.07750198245048523, -0.034334804862737656]} +{"t": 6.556, "q": [-0.3491050601005554, -0.02507547289133072, 0.015467639081180096, 0.6172909140586853, -0.2955847680568695, 0.024213114753365517, -0.3407192826271057, -0.002718554809689522, 0.002089135814458132, 0.6277560591697693, -0.33584317564964294, 0.0051965354941785336, 0.004566636402159929, 0.057962995022535324, -0.03742687776684761, -0.3775869905948639, 0.08545950800180435, 0.005464806687086821, 0.7905274629592896, 0.07035938650369644, 0.059357866644859314, 0.023908529430627823, 0.200352281332016, -0.12482769042253494, 0.030607711523771286, 1.1755326986312866, -0.11793676018714905, 0.07750198245048523, -0.03431083634495735]} +{"t": 6.5727, "q": [-0.3493010699748993, -0.025407835841178894, 0.015360504388809204, 0.618219792842865, -0.2956222593784332, 0.024249130859971046, -0.3410005271434784, -0.003067961661145091, 0.0019552167505025864, 0.6291621923446655, -0.3364078402519226, 0.004925997462123632, 0.004928217735141516, 0.058144524693489075, -0.037334319204092026, -0.38850462436676025, 0.08663396537303925, 0.0055486964993178844, 0.778099775314331, 0.0703713670372963, 0.05891445279121399, 0.023920513689517975, 0.19989687204360962, -0.12493554502725601, 0.030619695782661438, 1.177162528038025, -0.1179247796535492, 0.07746603339910507, -0.0342988520860672]} +{"t": 6.5895, "q": [-0.3494288921356201, -0.025527145713567734, 0.015320328995585442, 0.6192851066589355, -0.29568472504615784, 0.02431398443877697, -0.34111982583999634, -0.0031787490006536245, 0.0019150411244481802, 0.6305087208747864, -0.3369689881801605, 0.004735220223665237, 0.005249623209238052, 0.05829577147960663, -0.03725063428282738, -0.3989548683166504, 0.08772452920675278, 0.005944175645709038, 0.7661275267601013, 0.07035938650369644, 0.05856690928339958, 0.023920513689517975, 0.199249729514122, -0.12510332465171814, 0.03063168004155159, 1.1789960861206055, -0.1179247796535492, 0.07747801393270493, -0.03428686782717705]} +{"t": 6.6064, "q": [-0.3495226502418518, -0.02551010064780712, 0.015306936576962471, 0.6205974817276001, -0.2958056628704071, 0.024494292214512825, -0.34120506048202515, -0.0031872710678726435, 0.0018614735454320908, 0.6318210959434509, -0.3373083770275116, 0.004469436593353748, 0.005396933760493994, 0.058507975190877914, -0.03723764419555664, -0.4080389142036438, 0.08856342732906342, 0.006735134404152632, 0.7539515495300293, 0.07034739851951599, 0.057859838008880615, 0.023920513689517975, 0.19851869344711304, -0.12533102929592133, 0.03063168004155159, 1.1807698011398315, -0.1179247796535492, 0.07747801393270493, -0.03428686782717705]} +{"t": 6.6231, "q": [-0.3498890995979309, -0.025407835841178894, 0.015173017978668213, 0.6223530173301697, -0.29600977897644043, 0.024717673659324646, -0.34119653701782227, -0.003136138431727886, 0.0015802436973899603, 0.6330227255821228, -0.33762767910957336, 0.0042979782447218895, 0.005571028683334589, 0.058787908405065536, -0.03711386024951935, -0.41821351647377014, 0.0890667587518692, 0.0076219672337174416, 0.7422429919242859, 0.07029946893453598, 0.05730856582522392, 0.023920513689517975, 0.19789551198482513, -0.1255347579717636, 0.030619695782661438, 1.182255744934082, -0.1179487481713295, 0.07746603339910507, -0.034274883568286896]} +{"t": 6.6398, "q": [-0.3504856526851654, -0.0253140926361084, 0.014905179850757122, 0.6239125728607178, -0.2962893843650818, 0.024984272196888924, -0.34130731225013733, -0.0031105722300708294, 0.001084743533283472, 0.634275496006012, -0.33803313970565796, 0.004120066296309233, 0.005329974461346865, 0.058909207582473755, -0.037117790430784225, -0.42817240953445435, 0.08927049487829208, 0.008808405138552189, 0.7302947044372559, 0.07031144946813583, 0.05649363622069359, 0.023920513689517975, 0.19667312502861023, -0.12570254504680634, 0.030619695782661438, 1.1844968795776367, -0.11796072870492935, 0.07747801393270493, -0.03428686782717705]} +{"t": 6.6566, "q": [-0.3508009612560272, -0.025280004367232323, 0.014677518047392368, 0.6252505779266357, -0.29639366269111633, 0.025077922269701958, -0.34134992957115173, -0.003093527862802148, 0.0008838651119731367, 0.6350680589675903, -0.33807432651519775, 0.004149543587118387, 0.00508892023935914, 0.058931972831487656, -0.03712344914674759, -0.43718454241752625, 0.08915065228939056, 0.010486196726560593, 0.7189216613769531, 0.07023954391479492, 0.05555886775255203, 0.023908529430627823, 0.19561851024627686, -0.12572650611400604, 0.030643664300441742, 1.1864622831344604, -0.1179487481713295, 0.07747801393270493, -0.034274883568286896]} +{"t": 6.6733, "q": [-0.3513208031654358, -0.02520330436527729, 0.014516814611852169, 0.6264522075653076, -0.2965846657752991, 0.024975869804620743, -0.34162265062332153, -0.0030423952266573906, 0.0007365542696788907, 0.6357327699661255, -0.3380744159221649, 0.004164079204201698, 0.0049817850813269615, 0.05893193185329437, -0.03711360692977905, -0.4461127817630768, 0.08841961622238159, 0.013254553079605103, 0.7063262462615967, 0.07027550041675568, 0.054252587258815765, 0.023920513689517975, 0.1946837455034256, -0.1257384866476059, 0.030655648559331894, 1.1880202293395996, -0.1179727166891098, 0.07747801393270493, -0.034274883568286896]} +{"t": 6.6902, "q": [-0.35171282291412354, -0.025126606225967407, 0.014423071406781673, 0.6275004148483276, -0.29678839445114136, 0.024953365325927734, -0.3417334258556366, -0.0030423952266573906, 0.0006829866906628013, 0.6362611651420593, -0.3380744159221649, 0.004164079204201698, 0.004955001175403595, 0.058939579874277115, -0.037128616124391556, -0.45493316650390625, 0.08782040327787399, 0.01561544556170702, 0.6962475180625916, 0.07025153189897537, 0.05229916051030159, 0.023908529430627823, 0.19421635568141937, -0.12577444314956665, 0.030643664300441742, 1.1887153387069702, -0.11793676018714905, 0.07749000191688538, -0.034274883568286896]} +{"t": 6.7069, "q": [-0.35247981548309326, -0.025049906224012375, 0.014275760389864445, 0.6284889578819275, -0.29745906591415405, 0.024024615064263344, -0.3420146703720093, -0.00301682879216969, 0.0005088920588605106, 0.6365764737129211, -0.33796432614326477, 0.004315693862736225, 0.004901433829218149, 0.058985233306884766, -0.037169456481933594, -0.46321427822113037, 0.08736500144004822, 0.017317205667495728, 0.6850662231445312, 0.07021557539701462, 0.04933905601501465, 0.023932497948408127, 0.19389277696609497, -0.12584635615348816, 0.030679617077112198, 1.1890867948532104, -0.11793676018714905, 0.07749000191688538, -0.0342988520860672]} +{"t": 6.7236, "q": [-0.35294002294540405, -0.02503286302089691, 0.014168625697493553, 0.6290003061294556, -0.2984544634819031, 0.02243606001138687, -0.34229588508605957, -0.003008306724950671, 0.000522283953614533, 0.6366616487503052, -0.3381302058696747, 0.003815655130892992, 0.00483447453007102, 0.05906890705227852, -0.037236135452985764, -0.47028496861457825, 0.08746087551116943, 0.01804824359714985, 0.6726865172386169, 0.07025153189897537, 0.045216482132673264, 0.023932497948408127, 0.1934373825788498, -0.125858336687088, 0.03069160133600235, 1.1893384456634521, -0.11793676018714905, 0.07746603339910507, -0.034274883568286896]} +{"t": 6.7405, "q": [-0.3535535931587219, -0.025058429688215256, 0.014141841791570187, 0.6292133331298828, -0.29928112030029297, 0.02120128460228443, -0.34295210242271423, -0.0029827402904629707, 0.0007633380591869354, 0.6366190910339355, -0.33953800797462463, 0.0029711322858929634, 0.004874649923294783, 0.05909961834549904, -0.037325698882341385, -0.4769362211227417, 0.08748484402894974, 0.01870737597346306, 0.661768913269043, 0.07026351243257523, 0.04103398695588112, 0.023920513689517975, 0.19328159093856812, -0.125858336687088, 0.030667632818222046, 1.1893744468688965, -0.11791279166936874, 0.07746603339910507, -0.034274883568286896]} +{"t": 6.7573, "q": [-0.3544228672981262, -0.02507547289133072, 0.01419540960341692, 0.6295201182365417, -0.2993932366371155, 0.021164434030652046, -0.3438383936882019, -0.0029827402904629707, 0.0011249192757532, 0.6366105675697327, -0.34092459082603455, 0.004445437341928482, 0.004861257970333099, 0.05912264063954353, -0.03739041090011597, -0.4842465817928314, 0.08741293847560883, 0.019750002771615982, 0.6490656137466431, 0.07029946893453598, 0.039511989802122116, 0.023920513689517975, 0.19312578439712524, -0.12588229775428772, 0.03069160133600235, 1.189554214477539, -0.11796072870492935, 0.07747801393270493, -0.034274883568286896]} +{"t": 6.774, "q": [-0.3558034300804138, -0.02507547289133072, 0.014208801090717316, 0.6298525333404541, -0.29946795105934143, 0.021135054528713226, -0.3454064726829529, -0.0029997846577316523, 0.0014865003759041429, 0.6366616487503052, -0.3403215706348419, 0.004657847806811333, 0.00479429867118597, 0.05913083627820015, -0.03753336891531944, -0.4922161102294922, 0.08738896995782852, 0.021403826773166656, 0.6375008821487427, 0.07029946893453598, 0.0378941185772419, 0.023920513689517975, 0.19301792979240417, -0.125858336687088, 0.030679617077112198, 1.189554214477539, -0.11793676018714905, 0.07746603339910507, -0.034274883568286896]} +{"t": 6.7907, "q": [-0.3577038645744324, -0.02502434141933918, 0.014155233278870583, 0.6301848888397217, -0.2993931472301483, 0.021063098683953285, -0.3473750650882721, -0.003008306724950671, 0.0019150411244481802, 0.6367383599281311, -0.3393121361732483, 0.004648291971534491, 0.00479429867118597, 0.059193067252635956, -0.03789949417114258, -0.4999339282512665, 0.087269127368927, 0.023489082232117653, 0.6260079741477966, 0.07032343000173569, 0.03653990104794502, 0.023932497948408127, 0.1929340362548828, -0.12589429318904877, 0.030667632818222046, 1.1896381378173828, -0.1179247796535492, 0.07744206488132477, -0.03423893079161644]} +{"t": 6.8074, "q": [-0.3597917854785919, -0.024939119815826416, 0.014088273979723454, 0.6304916739463806, -0.2992601692676544, 0.020948007702827454, -0.34928402304649353, -0.0029401297215372324, 0.002356973709538579, 0.6367298364639282, -0.3381134867668152, 0.0046078963205218315, 0.004847866017371416, 0.05931507423520088, -0.03806072846055031, -0.5084547400474548, 0.0872211903333664, 0.025322668254375458, 0.6145151257514954, 0.07032343000173569, 0.03375956416130066, 0.02395646646618843, 0.19285015761852264, -0.12597817182540894, 0.030667632818222046, 1.1899256706237793, -0.11791279166936874, 0.07746603339910507, -0.03423893079161644]} +{"t": 6.8242, "q": [-0.36198198795318604, -0.024709021672606468, 0.013726692646741867, 0.6307984590530396, -0.29909810423851013, 0.020796874538064003, -0.35156795382499695, -0.002888997085392475, 0.0029060414526611567, 0.6367298364639282, -0.33713051676750183, 0.005034806206822395, 0.004633595701307058, 0.0594976432621479, -0.038204267621040344, -0.5160766839981079, 0.08762865513563156, 0.026449184864759445, 0.602363109588623, 0.07032343000173569, 0.030296120792627335, 0.023920513689517975, 0.19274228811264038, -0.1260141283273697, 0.030655648559331894, 1.1900935173034668, -0.11790081113576889, 0.07746603339910507, -0.03423893079161644]} +{"t": 6.8409, "q": [-0.3640102446079254, -0.02460675686597824, 0.013807044364511967, 0.6311904788017273, -0.29894015192985535, 0.02062400057911873, -0.35381779074668884, -0.00282082031480968, 0.00354885240085423, 0.6367809772491455, -0.3362305760383606, 0.005549247842282057, 0.0045130690559744835, 0.05965063348412514, -0.03851395472884178, -0.5231474041938782, 0.08791627734899521, 0.027575701475143433, 0.5909421443939209, 0.07032343000173569, 0.02690458483994007, 0.023932497948408127, 0.192790225148201, -0.1260620653629303, 0.03063168004155159, 1.190524935722351, -0.11788882315158844, 0.07746603339910507, -0.03425091505050659]} +{"t": 6.8577, "q": [-0.36501583456993103, -0.024461880326271057, 0.014262368902564049, 0.6313012838363647, -0.29873648285865784, 0.0203862264752388, -0.3552154004573822, -0.002769687445834279, 0.004298798739910126, 0.6367980241775513, -0.33554354310035706, 0.005949377082288265, 0.0045130690559744835, 0.05973374471068382, -0.03845275565981865, -0.5309850573539734, 0.08806008845567703, 0.028869997709989548, 0.5796410441398621, 0.07033541798591614, 0.022218754515051842, 0.023920513689517975, 0.19282618165016174, -0.12614595890045166, 0.03063168004155159, 1.1908724308013916, -0.11790081113576889, 0.07747801393270493, -0.03425091505050659]} +{"t": 6.8744, "q": [-0.3658510148525238, -0.024223262444138527, 0.014623950235545635, 0.6313012838363647, -0.29867416620254517, 0.02033589594066143, -0.3561358153820038, -0.002769687445834279, 0.004968393128365278, 0.6367127895355225, -0.3351563513278961, 0.006432436406612396, 0.004593420308083296, 0.05975642055273056, -0.038438744843006134, -0.5396137237548828, 0.08791627734899521, 0.030643664300441742, 0.5686035752296448, 0.07031144946813583, 0.019714049994945526, 0.023920513689517975, 0.193161740899086, -0.12612198293209076, 0.030643664300441742, 1.1915556192398071, -0.1179247796535492, 0.07747801393270493, -0.03423893079161644]} +{"t": 6.8912, "q": [-0.3658851087093353, -0.023430705070495605, 0.014905179850757122, 0.6313012838363647, -0.2986866533756256, 0.020372016355395317, -0.3562124967575073, -0.002837864449247718, 0.005504068918526173, 0.6366786956787109, -0.33506691455841064, 0.0065914359875023365, 0.0044996771030128, 0.05976402387022972, -0.038443904370069504, -0.546109139919281, 0.08796421438455582, 0.03350789472460747, 0.5570507645606995, 0.07029946893453598, 0.018371816724538803, 0.02394448220729828, 0.19335348904132843, -0.1260620653629303, 0.030643664300441742, 1.1924782991409302, -0.11791279166936874, 0.07746603339910507, -0.03422694653272629]} +{"t": 6.9079, "q": [-0.36568909883499146, -0.021743325516581535, 0.01538728829473257, 0.6313012838363647, -0.29874902963638306, 0.020465794950723648, -0.35611024498939514, -0.0028719529509544373, 0.006120096426457167, 0.6366105675697327, -0.3350876271724701, 0.00662798760458827, 0.004365758039057255, 0.05993165075778961, -0.03863610699772835, -0.5534075498580933, 0.08802413195371628, 0.036695696413517, 0.5446111559867859, 0.07031144946813583, 0.017736652866005898, 0.02394448220729828, 0.19342540204524994, -0.12595421075820923, 0.030655648559331894, 1.1935689449310303, -0.11790081113576889, 0.07747801393270493, -0.03422694653272629]} +{"t": 6.9249, "q": [-0.3656635284423828, -0.0215302724391222, 0.015882788226008415, 0.6313012838363647, -0.29885292053222656, 0.020573794841766357, -0.3560846745967865, -0.0029060414526611567, 0.006588812451809645, 0.6363804340362549, -0.33510005474090576, 0.006649907678365707, 0.004379149992018938, 0.06011470779776573, -0.03888779133558273, -0.5601786375045776, 0.0881679430603981, 0.03942809998989105, 0.5323991775512695, 0.07031144946813583, 0.01720934733748436, 0.023920513689517975, 0.1935092806816101, -0.12591825425624847, 0.030643664300441742, 1.1940003633499146, -0.11790081113576889, 0.07747801393270493, -0.03422694653272629]} +{"t": 6.9416, "q": [-0.36568909883499146, -0.021632539108395576, 0.016016706824302673, 0.6312927603721619, -0.2989194393157959, 0.020689263939857483, -0.356118768453598, -0.0029316076543182135, 0.006937001831829548, 0.6361503601074219, -0.3351042568683624, 0.0066717457957565784, 0.004312190227210522, 0.06019074097275734, -0.03893940523266792, -0.5681241750717163, 0.08829977363348007, 0.04268781095743179, 0.5194922089576721, 0.07029946893453598, 0.016514262184500694, 0.023932497948408127, 0.19358119368553162, -0.12593023478984833, 0.030643664300441742, 1.1942520141601562, -0.1179247796535492, 0.07746603339910507, -0.03425091505050659]} +{"t": 6.9583, "q": [-0.36591067910194397, -0.021743325516581535, 0.01596313901245594, 0.631284236907959, -0.29894858598709106, 0.020783251151442528, -0.35616135597229004, -0.0030509172938764095, 0.006950393784791231, 0.6359457969665527, -0.3350801169872284, 0.006758724804967642, 0.004325582180172205, 0.060228537768125534, -0.038916055113077164, -0.5764651894569397, 0.08826381713151932, 0.0457557737827301, 0.5073521733283997, 0.07031144946813583, 0.015483618713915348, 0.02394448220729828, 0.19377294182777405, -0.12595421075820923, 0.030643664300441742, 1.1945875883102417, -0.11793676018714905, 0.07744206488132477, -0.03425091505050659]} +{"t": 6.9753, "q": [-0.3660470247268677, -0.021760370582342148, 0.015882788226008415, 0.6312416195869446, -0.29898601770401, 0.020848199725151062, -0.3561869263648987, -0.00307648372836411, 0.006883434485644102, 0.6355452537536621, -0.3350517153739929, 0.0068238480016589165, 0.004446109291166067, 0.060205813497304916, -0.03892023116350174, -0.5836317539215088, 0.08858739584684372, 0.04733768850564957, 0.4954278767108917, 0.07031144946813583, 0.014177338220179081, 0.02395646646618843, 0.19379690289497375, -0.12597817182540894, 0.030655648559331894, 1.1952106952667236, -0.11791279166936874, 0.07749000191688538, -0.03422694653272629]} +{"t": 6.9921, "q": [-0.36609816551208496, -0.021760370582342148, 0.015829220414161682, 0.6312245726585388, -0.2990899980068207, 0.02107204869389534, -0.35615283250808716, -0.003093527862802148, 0.006910218391567469, 0.6352299451828003, -0.3350479006767273, 0.006874667014926672, 0.0045130690559744835, 0.060190655291080475, -0.03891974315047264, -0.5914814472198486, 0.0887671560049057, 0.048596031963825226, 0.483599454164505, 0.07028748095035553, 0.011864382773637772, 0.02394448220729828, 0.19379690289497375, -0.12600214779376984, 0.030667632818222046, 1.1957499980926514, -0.11793676018714905, 0.07747801393270493, -0.03422694653272629]} +{"t": 7.0088, "q": [-0.36615779995918274, -0.02177741378545761, 0.015842612832784653, 0.6312075257301331, -0.29916900396347046, 0.02120916172862053, -0.3561272919178009, -0.003067961661145091, 0.006870042532682419, 0.6349316835403442, -0.3350728154182434, 0.006933056749403477, 0.004566636402159929, 0.060190606862306595, -0.0389099083840847, -0.5988876819610596, 0.08882708102464676, 0.049794454127550125, 0.47058457136154175, 0.07027550041675568, 0.009275790303945541, 0.023932497948408127, 0.193760946393013, -0.1260380893945694, 0.030679617077112198, 1.1966608762741089, -0.11793676018714905, 0.07750198245048523, -0.03425091505050659]} +{"t": 7.0255, "q": [-0.36614927649497986, -0.021785937249660492, 0.01581582799553871, 0.6310967206954956, -0.29918569326400757, 0.02132493443787098, -0.35602501034736633, -0.00307648372836411, 0.006883434485644102, 0.6346589922904968, -0.3350605368614197, 0.006940217688679695, 0.004633595701307058, 0.06020572781562805, -0.03890056908130646, -0.6063058972358704, 0.08885104954242706, 0.05128049850463867, 0.4593912959098816, 0.07026351243257523, 0.005093295592814684, 0.023932497948408127, 0.19364111125469208, -0.1260620653629303, 0.030655648559331894, 1.1979671716690063, -0.11793676018714905, 0.07750198245048523, -0.03423893079161644]} +{"t": 7.0423, "q": [-0.3661833703517914, -0.02183706872165203, 0.015748869627714157, 0.6310455799102783, -0.2991940677165985, 0.021426258608698845, -0.35596534609794617, -0.0031190942972898483, 0.006829866673797369, 0.6345226168632507, -0.33502793312072754, 0.006983484607189894, 0.005021960940212011, 0.06019047647714615, -0.03888041898608208, -0.6141076683998108, 0.08871921896934509, 0.053281866014003754, 0.4481620788574219, 0.07027550041675568, -0.0005992112564854324, 0.02395646646618843, 0.19336546957492828, -0.1261339634656906, 0.030667632818222046, 1.1992014646530151, -0.11791279166936874, 0.07747801393270493, -0.03422694653272629]} +{"t": 7.059, "q": [-0.36620041728019714, -0.021862635388970375, 0.01565512642264366, 0.6309944987297058, -0.2991941571235657, 0.021513119339942932, -0.3558886647224426, -0.003102049930021167, 0.006709339562803507, 0.6343863010406494, -0.33490607142448425, 0.007214832119643688, 0.005075528286397457, 0.06017531082034111, -0.03887992352247238, -0.6211903095245361, 0.08892294764518738, 0.055582836270332336, 0.4357703924179077, 0.07027550041675568, -0.0035353463608771563, 0.02394448220729828, 0.19287411868572235, -0.12612198293209076, 0.030667632818222046, 1.2007474899291992, -0.1179247796535492, 0.07747801393270493, -0.03425091505050659]} +{"t": 7.0757, "q": [-0.36615779995918274, -0.02189672365784645, 0.015681909397244453, 0.6308922171592712, -0.29916927218437195, 0.0215712022036314, -0.3557693660259247, -0.0031105722300708294, 0.00672273151576519, 0.6342328786849976, -0.3347276747226715, 0.007620056159794331, 0.005276407115161419, 0.06018287315964699, -0.03887525573372841, -0.6280932426452637, 0.08930644392967224, 0.0577879324555397, 0.4242176115512848, 0.07026351243257523, -0.006052033975720406, 0.02395646646618843, 0.1924906224012375, -0.12616991996765137, 0.030655648559331894, 1.201526403427124, -0.11793676018714905, 0.07747801393270493, -0.034262899309396744]} +{"t": 7.0924, "q": [-0.36606407165527344, -0.021930811926722527, 0.015695301815867424, 0.630841076374054, -0.2990904450416565, 0.02168024517595768, -0.35565856099128723, -0.003102049930021167, 0.006695947609841824, 0.6342073082923889, -0.3321640193462372, 0.012376648373901844, 0.005236231256276369, 0.060205597430467606, -0.038871075958013535, -0.6355714201927185, 0.08951018005609512, 0.06035256013274193, 0.41204163432121277, 0.07023954391479492, -0.008532768115401268, 0.023932497948408127, 0.19209514558315277, -0.12622983753681183, 0.030667632818222046, 1.2022933959960938, -0.1179247796535492, 0.07747801393270493, -0.03423893079161644]} +{"t": 7.1092, "q": [-0.36601293087005615, -0.021930811926722527, 0.015708694234490395, 0.6306620836257935, -0.299028217792511, 0.021760258823633194, -0.35560742020606995, -0.003085005795583129, 0.006749515421688557, 0.6341561675071716, -0.3319956362247467, 0.012840158306062222, 0.005062136333435774, 0.060197990387678146, -0.038865912705659866, -0.6425342559814453, 0.08935438096523285, 0.06324075907468796, 0.40026113390922546, 0.07027550041675568, -0.011408982798457146, 0.02394448220729828, 0.19169966876506805, -0.12625381350517273, 0.03069160133600235, 1.2026649713516235, -0.1179487481713295, 0.07747801393270493, -0.03425091505050659]} +{"t": 7.1259, "q": [-0.36597031354904175, -0.021973423659801483, 0.015722084790468216, 0.6305683851242065, -0.29884180426597595, 0.022087087854743004, -0.35551369190216064, -0.0030423952266573906, 0.006736123468726873, 0.634130597114563, -0.33195364475250244, 0.012723445892333984, 0.0049817850813269615, 0.060220539569854736, -0.03882241249084473, -0.6491734981536865, 0.0890427902340889, 0.06564958393573761, 0.38935548067092896, 0.07025153189897537, -0.01408146508038044, 0.02394448220729828, 0.19153188169002533, -0.12626579403877258, 0.030643664300441742, 1.2028687000274658, -0.11791279166936874, 0.07746603339910507, -0.03422694653272629]} +{"t": 7.1426, "q": [-0.365953266620636, -0.02196490205824375, 0.015681909397244453, 0.6305001974105835, -0.2988089323043823, 0.022145114839076996, -0.3554540276527405, -0.0030423952266573906, 0.006575420964509249, 0.6341135501861572, -0.3319453001022339, 0.012708830647170544, 0.005021960940212011, 0.06022045016288757, -0.038802746683359146, -0.6565437912940979, 0.08865930140018463, 0.06773483753204346, 0.37939661741256714, 0.07023954391479492, -0.01804824359714985, 0.02394448220729828, 0.1913401335477829, -0.12625381350517273, 0.030643664300441742, 1.2031203508377075, -0.11791279166936874, 0.07747801393270493, -0.03422694653272629]} +{"t": 7.1595, "q": [-0.365953266620636, -0.021990466862916946, 0.01562834158539772, 0.6303126811981201, -0.29879245162010193, 0.022159652784466743, -0.3553517758846283, -0.0029912625905126333, 0.006495069246739149, 0.6339772343635559, -0.3318745493888855, 0.012584565207362175, 0.004821082577109337, 0.06024312600493431, -0.03878873586654663, -0.6624040603637695, 0.08865930140018463, 0.06955644488334656, 0.3681553900241852, 0.07022756338119507, -0.021511685103178024, 0.02394448220729828, 0.1910165697336197, -0.1263137310743332, 0.03069160133600235, 1.2034438848495483, -0.11793676018714905, 0.07750198245048523, -0.034274883568286896]} +{"t": 7.1764, "q": [-0.36582544445991516, -0.021998990327119827, 0.015668518841266632, 0.6301252245903015, -0.29884588718414307, 0.022065354511141777, -0.35523244738578796, -0.002948652021586895, 0.006495069246739149, 0.63390052318573, -0.3319114148616791, 0.01257764920592308, 0.004767514765262604, 0.060280922800302505, -0.03876538574695587, -0.6681325435638428, 0.08864731341600418, 0.07118629664182663, 0.35639888048171997, 0.07022756338119507, -0.0240643247961998, 0.023920513689517975, 0.1907169669866562, -0.12630175054073334, 0.03069160133600235, 1.2036596536636353, -0.11791279166936874, 0.07746603339910507, -0.034274883568286896]} +{"t": 7.1931, "q": [-0.3656720519065857, -0.022024555131793022, 0.015681909397244453, 0.6299718022346497, -0.29888302087783813, 0.021971071138978004, -0.35511314868927, -0.0029230855870991945, 0.006481677293777466, 0.6338834762573242, -0.33196479082107544, 0.01258544810116291, 0.004780906718224287, 0.06029604375362396, -0.03875604644417763, -0.674028754234314, 0.08851549029350281, 0.07295996695756912, 0.3453374207019806, 0.07021557539701462, -0.02569417841732502, 0.023920513689517975, 0.1903694123029709, -0.1263137310743332, 0.030655648559331894, 1.2038873434066772, -0.11791279166936874, 0.07747801393270493, -0.03425091505050659]} +{"t": 7.2099, "q": [-0.36556127667427063, -0.02206716686487198, 0.01565512642264366, 0.629784345626831, -0.2989369332790375, 0.021876629441976547, -0.3549938499927521, -0.0028719529509544373, 0.006454893853515387, 0.6338408589363098, -0.3319973647594452, 0.012556708417832851, 0.004687163513153791, 0.060311201959848404, -0.038756538182497025, -0.6798771023750305, 0.08857540786266327, 0.07442203909158707, 0.3341202139854431, 0.07020359486341476, -0.02671283856034279, 0.023920513689517975, 0.1895664781332016, -0.12634968757629395, 0.030679617077112198, 1.2045704126358032, -0.11790081113576889, 0.07745404541492462, -0.03425091505050659]} +{"t": 7.2268, "q": [-0.3654760420322418, -0.022050121799111366, 0.01564173400402069, 0.6296309232711792, -0.2989659309387207, 0.02178232930600643, -0.35492566227912903, -0.0028719529509544373, 0.0064013260416686535, 0.6337982416152954, -0.3320459723472595, 0.012484497390687466, 0.004727339372038841, 0.06035655736923218, -0.038728516548871994, -0.6855935454368591, 0.08865930140018463, 0.07538077980279922, 0.32355010509490967, 0.07021557539701462, -0.02756371721625328, 0.02389654517173767, 0.18867963552474976, -0.12642158567905426, 0.030655648559331894, 1.2056490182876587, -0.11793676018714905, 0.07747801393270493, -0.034262899309396744]} +{"t": 7.2435, "q": [-0.3654334247112274, -0.02207568846642971, 0.015614950098097324, 0.6295286417007446, -0.29898667335510254, 0.02174600213766098, -0.35491713881492615, -0.002846386516466737, 0.00638793408870697, 0.6337897181510925, -0.3321819007396698, 0.01255128439515829, 0.004713947419077158, 0.06040947139263153, -0.03869582340121269, -0.6919931173324585, 0.08838365972042084, 0.07605189085006714, 0.3124886751174927, 0.07019160687923431, -0.028666267171502113, 0.023872576653957367, 0.18770891427993774, -0.12646952271461487, 0.030643664300441742, 1.2066916227340698, -0.11793676018714905, 0.07746603339910507, -0.034262899309396744]} +{"t": 7.2602, "q": [-0.36542490124702454, -0.022058645263314247, 0.0155345993116498, 0.629341185092926, -0.29901984333992004, 0.02165893465280533, -0.35491713881492615, -0.002829342382028699, 0.006320974789559841, 0.6336789131164551, -0.3322106599807739, 0.012558819726109505, 0.004727339372038841, 0.06041707843542099, -0.03870098665356636, -0.6984286904335022, 0.08792825788259506, 0.07672300934791565, 0.30190661549568176, 0.07021557539701462, -0.03002048470079899, 0.023860592395067215, 0.186846062541008, -0.12650547921657562, 0.030643664300441742, 1.2081297636032104, -0.11793676018714905, 0.07750198245048523, -0.03425091505050659]} +{"t": 7.2769, "q": [-0.3653141260147095, -0.022033078595995903, 0.015521206893026829, 0.6291366219520569, -0.29905712604522705, 0.021564604714512825, -0.3548489511013031, -0.0028122980147600174, 0.006294190883636475, 0.6335511207580566, -0.33224740624427795, 0.012537405826151371, 0.004673771560192108, 0.06041707843542099, -0.03870098665356636, -0.7038815021514893, 0.08748484402894974, 0.07769373059272766, 0.2913844585418701, 0.07017962634563446, -0.03179414942860603, 0.023848608136177063, 0.18648652732372284, -0.12656539678573608, 0.03063168004155159, 1.208932638168335, -0.1179247796535492, 0.07749000191688538, -0.034274883568286896]} +{"t": 7.2937, "q": [-0.3652118444442749, -0.02200751192867756, 0.015521206893026829, 0.6289321184158325, -0.2990778982639313, 0.021542754024267197, -0.3547893166542053, -0.002778209513053298, 0.006294190883636475, 0.6334232687950134, -0.3323086202144623, 0.012501650489866734, 0.0045800283551216125, 0.06045505031943321, -0.038716964423656464, -0.7087351083755493, 0.08728111535310745, 0.07922771573066711, 0.2798795998096466, 0.0700957328081131, -0.03413107246160507, 0.02383662387728691, 0.18611501157283783, -0.1266373097896576, 0.030679617077112198, 1.2093881368637085, -0.1179487481713295, 0.07747801393270493, -0.034262899309396744]} +{"t": 7.3105, "q": [-0.3650243580341339, -0.021998990327119827, 0.015561383217573166, 0.6286935210227966, -0.2990820109844208, 0.0215065386146307, -0.35477226972579956, -0.002752643311396241, 0.006320974789559841, 0.6333039402961731, -0.3323206305503845, 0.012465439736843109, 0.004365758039057255, 0.06048532947897911, -0.03870811313390732, -0.7138164043426514, 0.0872451588511467, 0.08179233968257904, 0.26928552985191345, 0.07004779577255249, -0.03886484354734421, 0.023800671100616455, 0.18579144775867462, -0.1266612708568573, 0.03063168004155159, 1.2095558643341064, -0.11796072870492935, 0.07747801393270493, -0.03422694653272629]} +{"t": 7.3272, "q": [-0.36495620012283325, -0.02194785699248314, 0.015561383217573166, 0.6284719109535217, -0.2990736961364746, 0.021492091938853264, -0.3547637462615967, -0.0026759442407637835, 0.006347758695483208, 0.6331591010093689, -0.3323408365249634, 0.012429293245077133, 0.004258622881025076, 0.06053077429533005, -0.03869975730776787, -0.7187179327011108, 0.08720920979976654, 0.08446481823921204, 0.2589191794395447, 0.06996390968561172, -0.042939480394124985, 0.023848608136177063, 0.1853959709405899, -0.12667326629161835, 0.030643664300441742, 1.2096517086029053, -0.1179247796535492, 0.07746603339910507, -0.034262899309396744]} +{"t": 7.3439, "q": [-0.36494767665863037, -0.021879680454730988, 0.015547990798950195, 0.6282333135604858, -0.29912760853767395, 0.021412162110209465, -0.3547893166542053, -0.002641855739057064, 0.006294190883636475, 0.6328863501548767, -0.3323609232902527, 0.012378613464534283, 0.004312190227210522, 0.060545891523361206, -0.038690414279699326, -0.7243625521659851, 0.08718524128198624, 0.0863703116774559, 0.2481813132762909, 0.06992795318365097, -0.04718189314007759, 0.02382463961839676, 0.18503643572330475, -0.1266852468252182, 0.030643664300441742, 1.2096517086029053, -0.1179487481713295, 0.07746603339910507, -0.03425091505050659]} +{"t": 7.3608, "q": [-0.36496472358703613, -0.021811503916978836, 0.0153738958761096, 0.6280117034912109, -0.2991192936897278, 0.02139771357178688, -0.3547978401184082, -0.0025992451701313257, 0.006146880332380533, 0.6325966119766235, -0.33236923813819885, 0.012393228709697723, 0.004405933897942305, 0.06056101247668266, -0.03868107497692108, -0.7303786277770996, 0.08714928478002548, 0.08861136436462402, 0.23729965090751648, 0.06974819302558899, -0.049135323613882065, 0.02382463961839676, 0.1848207265138626, -0.1267092078924179, 0.030643664300441742, 1.2097235918045044, -0.11791279166936874, 0.07746603339910507, -0.034274883568286896]} +{"t": 7.3775, "q": [-0.3650243580341339, -0.021794458851218224, 0.01519980188459158, 0.627704918384552, -0.29910269379615784, 0.02138333208858967, -0.3547978401184082, -0.0025651566684246063, 0.005946001503616571, 0.6322557330131531, -0.33237746357917786, 0.012393328361213207, 0.00445950124412775, 0.06054580584168434, -0.038670752197504044, -0.736406683921814, 0.08712531626224518, 0.09079249203205109, 0.22736471891403198, 0.06968826800584793, -0.050453588366508484, 0.02383662387728691, 0.18456904590129852, -0.1267092078924179, 0.030667632818222046, 1.2097835540771484, -0.1179247796535492, 0.07749000191688538, -0.034274883568286896]} +{"t": 7.3942, "q": [-0.364973247051239, -0.021802980452775955, 0.01511945016682148, 0.6272958517074585, -0.2990943491458893, 0.021354427561163902, -0.35477226972579956, -0.002514024032279849, 0.005865650251507759, 0.6319063305854797, -0.332385778427124, 0.012407943606376648, 0.004472893197089434, 0.06059902906417847, -0.038706883788108826, -0.7418115735054016, 0.08706539869308472, 0.09219464659690857, 0.21581192314624786, 0.06964033097028732, -0.05164002627134323, 0.02382463961839676, 0.184401273727417, -0.12678112089633942, 0.030643664300441742, 1.2098314762115479, -0.11793676018714905, 0.07749000191688538, -0.03425091505050659]} +{"t": 7.411, "q": [-0.3649391531944275, -0.021802980452775955, 0.015092666260898113, 0.6269890666007996, -0.299090176820755, 0.021332699805498123, -0.3547978401184082, -0.002514024032279849, 0.005852258298546076, 0.6316677331924438, -0.3324182331562042, 0.012364652939140797, 0.004606812261044979, 0.06062944233417511, -0.0387275293469429, -0.746497392654419, 0.08705341070890427, 0.0929616317152977, 0.20522986352443695, 0.06959239393472672, -0.053341787308454514, 0.02382463961839676, 0.18430539965629578, -0.12684103846549988, 0.030655648559331894, 1.2099153995513916, -0.11791279166936874, 0.07747801393270493, -0.03425091505050659]} +{"t": 7.4277, "q": [-0.36495620012283325, -0.021794458851218224, 0.014958747662603855, 0.6266908049583435, -0.29909849166870117, 0.02131817489862442, -0.3547893166542053, -0.0024884575977921486, 0.005785298999398947, 0.6312671899795532, -0.3324424922466278, 0.012321298941969872, 0.004780906718224287, 0.06075052171945572, -0.038682300597429276, -0.750895619392395, 0.08702944219112396, 0.09390839189291, 0.19292205572128296, 0.06956842541694641, -0.05541505664587021, 0.02383662387728691, 0.18426944315433502, -0.1270088255405426, 0.03063168004155159, 1.2100112438201904, -0.1179487481713295, 0.07747801393270493, -0.03422694653272629]} +{"t": 7.4444, "q": [-0.3649902939796448, -0.021794458851218224, 0.014771261252462864, 0.626349925994873, -0.2990694046020508, 0.021325597539544106, -0.3547893166542053, -0.0024288028944283724, 0.005571028683334589, 0.6308666467666626, -0.3324585258960724, 0.012277844361960888, 0.005329974461346865, 0.06088671833276749, -0.038627732545137405, -0.7553777098655701, 0.08706539869308472, 0.09459149092435837, 0.1817767322063446, 0.06953247636556625, -0.05831523984670639, 0.02382463961839676, 0.18420952558517456, -0.12711668014526367, 0.030655648559331894, 1.2101551294326782, -0.1179247796535492, 0.07750198245048523, -0.03423893079161644]} +{"t": 7.4612, "q": [-0.3650243580341339, -0.021794458851218224, 0.014583774842321873, 0.6259579062461853, -0.299061119556427, 0.02134012244641781, -0.35477226972579956, -0.0024458470288664103, 0.0053701503202319145, 0.6304149627685547, -0.3324991762638092, 0.012234635651111603, 0.005477285478264093, 0.06097773090004921, -0.03864062577486038, -0.7593564391136169, 0.08758071810007095, 0.09569403529167175, 0.17090703547000885, 0.06944858282804489, -0.0610835961997509, 0.02382463961839676, 0.1841735690832138, -0.1272125542163849, 0.030619695782661438, 1.2104426622390747, -0.11796072870492935, 0.07749000191688538, -0.03425091505050659]} +{"t": 7.4779, "q": [-0.3650414049625397, -0.021811503916978836, 0.01444985531270504, 0.6255488395690918, -0.29904451966285706, 0.02134021744132042, -0.3547126054763794, -0.0024458470288664103, 0.005236231256276369, 0.6299291849136353, -0.3324620723724365, 0.012212449684739113, 0.005919218063354492, 0.06105341017246246, -0.03861362114548683, -0.7645695805549622, 0.08776047825813293, 0.09761151671409607, 0.16002535820007324, 0.06940064579248428, -0.06409163773059845, 0.02383662387728691, 0.1841256320476532, -0.1272604912519455, 0.030643664300441742, 1.210478663444519, -0.11796072870492935, 0.07750198245048523, -0.03425091505050659]} +{"t": 7.4949, "q": [-0.36510106921195984, -0.021794458851218224, 0.014302544295787811, 0.6250289678573608, -0.2990112602710724, 0.02132592909038067, -0.35469555854797363, -0.0024373249616473913, 0.005035352893173695, 0.6294093728065491, -0.33244186639785767, 0.012248596176505089, 0.006026353221386671, 0.061106324195861816, -0.03858092799782753, -0.7692674398422241, 0.08736500144004822, 0.10018812119960785, 0.14939534664154053, 0.06934072822332382, -0.0673753172159195, 0.02382463961839676, 0.18402975797653198, -0.12727247178554535, 0.030667632818222046, 1.2106224298477173, -0.11796072870492935, 0.07750198245048523, -0.03423893079161644]} +{"t": 7.5118, "q": [-0.36509254574775696, -0.021794458851218224, 0.014315936714410782, 0.6244750618934631, -0.29898640513420105, 0.02136950194835663, -0.354669988155365, -0.0024373249616473913, 0.004995177034288645, 0.6287786960601807, -0.3324216604232788, 0.012284742668271065, 0.006039745174348354, 0.06112135574221611, -0.03855189308524132, -0.7741689682006836, 0.08720920979976654, 0.10433466732501984, 0.13792644441127777, 0.06929279118776321, -0.06972422450780869, 0.02382463961839676, 0.18399381637573242, -0.1273084282875061, 0.030679617077112198, 1.2107542753219604, -0.11796072870492935, 0.07751397043466568, -0.034274883568286896]} +{"t": 7.5286, "q": [-0.36496472358703613, -0.021802980452775955, 0.01444985531270504, 0.6237506866455078, -0.2989117205142975, 0.021456824615597725, -0.3545251190662384, -0.0024288028944283724, 0.005102312192320824, 0.6281651258468628, -0.3323688805103302, 0.0123496288433671, 0.005785298999398947, 0.06114412099123001, -0.03855757787823677, -0.7783994078636169, 0.08713730424642563, 0.10807374119758606, 0.12531904876232147, 0.06920889765024185, -0.07119828462600708, 0.023848608136177063, 0.18401777744293213, -0.12738032639026642, 0.03069160133600235, 1.2108142375946045, -0.11793676018714905, 0.07752595096826553, -0.034262899309396744]} +{"t": 7.5454, "q": [-0.36473461985588074, -0.02190524712204933, 0.014650734141469002, 0.6232137680053711, -0.298708438873291, 0.021769320592284203, -0.3543035387992859, -0.0024373249616473913, 0.00516927195712924, 0.6278071999549866, -0.3322995603084564, 0.012399816885590553, 0.005637987982481718, 0.06122727319598198, -0.03850620612502098, -0.782509982585907, 0.08711333572864532, 0.11189670860767365, 0.11334680020809174, 0.06906508654356003, -0.072792187333107, 0.023800671100616455, 0.18405373394489288, -0.12739230692386627, 0.030679617077112198, 1.2108381986618042, -0.11793676018714905, 0.07746603339910507, -0.03425091505050659]} +{"t": 7.5621, "q": [-0.3646664321422577, -0.02190524712204933, 0.014811436645686626, 0.6228047013282776, -0.2982482612133026, 0.02258167788386345, -0.3541927635669708, -0.0024202808272093534, 0.005236231256276369, 0.6275004148483276, -0.33206707239151, 0.012063149362802505, 0.005517460871487856, 0.06126502528786659, -0.03847300633788109, -0.7874834537506104, 0.08657404035329819, 0.11474895477294922, 0.10095511376857758, 0.06882540881633759, -0.07464973628520966, 0.02383662387728691, 0.18399381637573242, -0.12738032639026642, 0.030643664300441742, 1.210874080657959, -0.11793676018714905, 0.07751397043466568, -0.03423893079161644]} +{"t": 7.5788, "q": [-0.3646153211593628, -0.021973423659801483, 0.01486500445753336, 0.6225234866142273, -0.2966691255569458, 0.0253517534583807, -0.3541245758533478, -0.0024202808272093534, 0.005155880004167557, 0.6272192001342773, -0.3317966163158417, 0.011602543294429779, 0.005490677431225777, 0.06131033971905708, -0.03843513876199722, -0.7933317422866821, 0.08655007183551788, 0.11556388437747955, 0.08937834948301315, 0.06817825883626938, -0.07754991948604584, 0.023812655359506607, 0.1838979423046112, -0.12740430235862732, 0.030679617077112198, 1.2108981609344482, -0.11793676018714905, 0.07749000191688538, -0.03423893079161644]} +{"t": 7.5956, "q": [-0.3646067976951599, -0.02206716686487198, 0.014878395944833755, 0.6222678422927856, -0.2964458465576172, 0.025743337348103523, -0.35403937101364136, -0.002403236459940672, 0.00516927195712924, 0.626954972743988, -0.3311903178691864, 0.010491780005395412, 0.005383542273193598, 0.06133301556110382, -0.038421131670475006, -0.7987366318702698, 0.08651412278413773, 0.1164507195353508, 0.07693872600793839, 0.06688395887613297, -0.08070177584886551, 0.02382463961839676, 0.18393388390541077, -0.12742826342582703, 0.030667632818222046, 1.210922122001648, -0.11798469722270966, 0.07750198245048523, -0.03422694653272629]} +{"t": 7.6123, "q": [-0.3645215630531311, -0.022237608209252357, 0.014918571338057518, 0.6221996545791626, -0.29637134075164795, 0.025844929739832878, -0.3537581264972687, -0.002369148191064596, 0.00512909609824419, 0.6267845630645752, -0.3306349217891693, 0.009381559677422047, 0.005530852824449539, 0.06144627556204796, -0.03832153230905533, -0.8048845529556274, 0.08605872094631195, 0.11730159819126129, 0.06695586442947388, 0.06582935154438019, -0.08440490067005157, 0.02383662387728691, 0.1839219033718109, -0.12744024395942688, 0.030643664300441742, 1.2110059261322021, -0.11796072870492935, 0.07751397043466568, -0.03422694653272629]} +{"t": 7.6292, "q": [-0.364530086517334, -0.022365441545844078, 0.014958747662603855, 0.622174084186554, -0.2963464856147766, 0.025873959064483643, -0.3536558747291565, -0.0023606258910149336, 0.005008568987250328, 0.6267760396003723, -0.3304232358932495, 0.008892523124814034, 0.005517460871487856, 0.061483945697546005, -0.03826863691210747, -0.8115597367286682, 0.08563927561044693, 0.11844009906053543, 0.05663744732737541, 0.06449910253286362, -0.0884435847401619, 0.02383662387728691, 0.18388594686985016, -0.1274881809949875, 0.030667632818222046, 1.2110059261322021, -0.11793676018714905, 0.07750198245048523, -0.034214962273836136]} +{"t": 7.6459, "q": [-0.36436817049980164, -0.02254440449178219, 0.015079274773597717, 0.6220206618309021, -0.2963050901889801, 0.025932004675269127, -0.3535110056400299, -0.0023435817565768957, 0.004901433829218149, 0.6267760396003723, -0.33042240142822266, 0.008732604794204235, 0.005356758367270231, 0.061514224857091904, -0.038259804248809814, -0.8187143206596375, 0.08536363393068314, 0.12035757303237915, 0.044329650700092316, 0.061107564717531204, -0.09074455499649048, 0.023812655359506607, 0.18386198580265045, -0.1275121569633484, 0.030655648559331894, 1.211221694946289, -0.11796072870492935, 0.07749000191688538, -0.034202978014945984]} +{"t": 7.6626, "q": [-0.3640784025192261, -0.022842679172754288, 0.015239977277815342, 0.6218076348304749, -0.2963050901889801, 0.025932004675269127, -0.3530507981777191, -0.0023180153220891953, 0.004968393128365278, 0.6267675161361694, -0.3304915726184845, 0.00862427894026041, 0.005222839303314686, 0.06159745901823044, -0.03822813183069229, -0.8251858353614807, 0.08508799970149994, 0.12292219698429108, 0.032824791967868805, 0.05812349170446396, -0.09211075305938721, 0.023848608136177063, 0.1838739663362503, -0.1276080310344696, 0.030667632818222046, 1.2113056182861328, -0.1179487481713295, 0.07749000191688538, -0.034202978014945984]} +{"t": 7.6794, "q": [-0.3637545704841614, -0.023601148277521133, 0.015347111970186234, 0.6216286420822144, -0.29630085825920105, 0.02591032162308693, -0.35193440318107605, -0.002326537622138858, 0.004955001175403595, 0.6267845630645752, -0.33053213357925415, 0.008537481538951397, 0.005222839303314686, 0.06168061122298241, -0.0381767600774765, -0.832711935043335, 0.08496815711259842, 0.1257864236831665, 0.02160755731165409, 0.05456417798995972, -0.09231448918581009, 0.023860592395067215, 0.1838979423046112, -0.12772786617279053, 0.030655648559331894, 1.2114133834838867, -0.11796072870492935, 0.07753793895244598, -0.03422694653272629]} +{"t": 7.6961, "q": [-0.36349040269851685, -0.024981729686260223, 0.015427463687956333, 0.6214326620101929, -0.2962301969528198, 0.025932317599654198, -0.34844884276390076, -0.0022924491204321384, 0.004901433829218149, 0.6268442273139954, -0.33052363991737366, 0.00847927387803793, 0.005182663444429636, 0.0617411732673645, -0.038159094750881195, -0.8397586345672607, 0.08499212563037872, 0.12869858741760254, 0.010342386551201344, 0.05050152540206909, -0.0926620289683342, 0.023860592395067215, 0.1838979423046112, -0.12777580320835114, 0.030643664300441742, 1.2114853858947754, -0.11793676018714905, 0.07752595096826553, -0.03423893079161644]} +{"t": 7.7128, "q": [-0.36253592371940613, -0.02502434141933918, 0.015427463687956333, 0.6213048100471497, -0.29620519280433655, 0.025917934253811836, -0.3475028872489929, -0.0022924491204321384, 0.004486285150051117, 0.626801609992981, -0.33051949739456177, 0.008471966721117496, 0.00508892023935914, 0.06217129901051521, -0.03775567188858986, -0.8479079008102417, 0.08460862934589386, 0.13224592804908752, -0.0008388957940042019, 0.047924917191267014, -0.09269798547029495, 0.023872576653957367, 0.18383800983428955, -0.127931609749794, 0.030619695782661438, 1.2115212678909302, -0.1179247796535492, 0.07750198245048523, -0.034202978014945984]} +{"t": 7.7296, "q": [-0.3623654842376709, -0.024981729686260223, 0.0153738958761096, 0.6209468841552734, -0.29618823528289795, 0.02581670507788658, -0.34753698110580444, -0.0023094932548701763, 0.004218447022140026, 0.6267760396003723, -0.33066603541374207, 0.008255396038293839, 0.00508892023935914, 0.06223985180258751, -0.03783170133829117, -0.8556017875671387, 0.08448878675699234, 0.13455888628959656, -0.010833739303052425, 0.04577973857522011, -0.09272195398807526, 0.023860592395067215, 0.18383800983428955, -0.12799152731895447, 0.030643664300441742, 1.2117010354995728, -0.1179487481713295, 0.07747801393270493, -0.034214962273836136]} +{"t": 7.7464, "q": [-0.36128315329551697, -0.0250158179551363, 0.015481031499803066, 0.6205804347991943, -0.29610878229141235, 0.025694023817777634, -0.3466847836971283, -0.0023094932548701763, 0.004231838975101709, 0.6268357038497925, -0.33066996932029724, 0.008219090290367603, 0.005263015162199736, 0.06231559067964554, -0.03782449662685394, -0.863055944442749, 0.08478839695453644, 0.13555356860160828, -0.021703431382775307, 0.0400392971932888, -0.0926859974861145, 0.023872576653957367, 0.18386198580265045, -0.12819525599479675, 0.030655648559331894, 1.2117968797683716, -0.11793676018714905, 0.07750198245048523, -0.034202978014945984]} +{"t": 7.7632, "q": [-0.36064401268959045, -0.024998774752020836, 0.015467639081180096, 0.6202566027641296, -0.2960960865020752, 0.025628961622714996, -0.34620752930641174, -0.0023009711876511574, 0.00416487967595458, 0.6268357038497925, -0.3307715952396393, 0.008038416504859924, 0.005450501572340727, 0.06245928257703781, -0.03776555135846138, -0.8699468970298767, 0.08490823209285736, 0.13650032877922058, -0.031925976276397705, 0.03488608077168465, -0.09267401695251465, 0.023860592395067215, 0.18393388390541077, -0.12836304306983948, 0.030643664300441742, 1.2120726108551025, -0.1179966852068901, 0.07749000191688538, -0.03423893079161644]} +{"t": 7.7799, "q": [-0.35978326201438904, -0.025007296353578568, 0.015507815405726433, 0.6198390126228333, -0.2960706353187561, 0.025484368205070496, -0.3454490602016449, -0.0023180153220891953, 0.004030960611999035, 0.6268271803855896, -0.3308451175689697, 0.007981009781360626, 0.005383542273193598, 0.06261890381574631, -0.03787440061569214, -0.8775448799133301, 0.08475244045257568, 0.137794628739357, -0.04262788966298103, 0.0300923902541399, -0.09259012341499329, 0.023860592395067215, 0.18388594686985016, -0.12844692170619965, 0.030679617077112198, 1.2122763395309448, -0.11796072870492935, 0.07751397043466568, -0.03423893079161644]} +{"t": 7.7966, "q": [-0.3584112226963043, -0.0250158179551363, 0.015547990798950195, 0.6192339658737183, -0.29604098200798035, 0.025332540273666382, -0.3441622257232666, -0.0023350596893578768, 0.004084527958184481, 0.6267930865287781, -0.3309187889099121, 0.007952665910124779, 0.0052094473503530025, 0.06271716952323914, -0.03782371059060097, -0.8851668834686279, 0.0845726802945137, 0.13937653601169586, -0.05251487344503403, 0.02726411260664463, -0.09250623732805252, 0.023860592395067215, 0.18380206823349, -0.12851883471012115, 0.030655648559331894, 1.212420105934143, -0.11796072870492935, 0.07751397043466568, -0.03422694653272629]} +{"t": 7.8134, "q": [-0.3569539189338684, -0.02502434141933918, 0.015547990798950195, 0.6185777187347412, -0.2959402799606323, 0.02507246658205986, -0.34275609254837036, -0.0023350596893578768, 0.00416487967595458, 0.6267334222793579, -0.33096763491630554, 0.007880480960011482, 0.00508892023935914, 0.0628380998969078, -0.037759050726890564, -0.8934000134468079, 0.08379369974136353, 0.14212092757225037, -0.062066301703453064, 0.025250762701034546, -0.09219464659690857, 0.023860592395067215, 0.18376611173152924, -0.12857875227928162, 0.030643664300441742, 1.212515950202942, -0.1179487481713295, 0.07750198245048523, -0.03422694653272629]} +{"t": 7.8302, "q": [-0.35542845726013184, -0.025041384622454643, 0.015521206893026829, 0.617844820022583, -0.29623281955718994, 0.02423928864300251, -0.3416482210159302, -0.0023606258910149336, 0.004205055069178343, 0.6264010667800903, -0.33107423782348633, 0.007867014035582542, 0.005115704145282507, 0.06306586414575577, -0.037855517119169235, -0.9003269076347351, 0.08284694701433182, 0.1453566700220108, -0.07218098640441895, 0.022098911926150322, -0.09194297343492508, 0.023872576653957367, 0.18365825712680817, -0.12860272824764252, 0.030643664300441742, 1.2125399112701416, -0.1179487481713295, 0.07747801393270493, -0.03422694653272629]} +{"t": 7.847, "q": [-0.3532894253730774, -0.02503286302089691, 0.015507815405726433, 0.616864800453186, -0.29623228311538696, 0.024036753922700882, -0.3406766951084137, -0.002386192325502634, 0.004539852496236563, 0.6260857582092285, -0.33181777596473694, 0.008085203357040882, 0.005021960940212011, 0.06334710866212845, -0.038047295063734055, -0.9074695110321045, 0.08124106377363205, 0.1494792401790619, -0.08266718685626984, 0.018575549125671387, -0.09195496141910553, 0.023860592395067215, 0.18340657651424408, -0.12865066528320312, 0.030643664300441742, 1.2125638723373413, -0.11793676018714905, 0.07747801393270493, -0.03422694653272629]} +{"t": 7.8637, "q": [-0.3510395884513855, -0.024990251287817955, 0.015494422987103462, 0.6160125732421875, -0.2964511513710022, 0.023551160469651222, -0.34088975191116333, -0.0024202808272093534, 0.005035352893173695, 0.6258130073547363, -0.3337118327617645, 0.010277117602527142, 0.00483447453007102, 0.06355995684862137, -0.038192279636859894, -0.914600133895874, 0.07920374721288681, 0.15355387330055237, -0.09248226881027222, 0.012978916056454182, -0.09177519381046295, 0.02388456091284752, 0.183298721909523, -0.12868660688400269, 0.03063168004155159, 1.212515950202942, -0.11793676018714905, 0.07751397043466568, -0.03423893079161644]} +{"t": 7.8808, "q": [-0.34894314408302307, -0.024913553148508072, 0.015400679782032967, 0.6153308153152466, -0.29666265845298767, 0.023427283391356468, -0.3411283493041992, -0.002394714392721653, 0.005437109619379044, 0.6255232691764832, -0.3341566026210785, 0.00982369389384985, 0.004446109291166067, 0.06384864449501038, -0.038349732756614685, -0.9216348528862, 0.07771769911050797, 0.15627430379390717, -0.10089518874883652, 0.008676579222083092, -0.0917632132768631, 0.02388456091284752, 0.18326276540756226, -0.1287824809551239, 0.030595727264881134, 1.2124561071395874, -0.11790081113576889, 0.07740610837936401, -0.03423893079161644]} +{"t": 7.8977, "q": [-0.3479630947113037, -0.024828331544995308, 0.015347111970186234, 0.6151944398880005, -0.29769232869148254, 0.021665053442120552, -0.34075337648391724, -0.002377670258283615, 0.005450501572340727, 0.6254721283912659, -0.33445751667022705, 0.009317959658801556, 0.004097919911146164, 0.06444220244884491, -0.03888139873743057, -0.9302035570144653, 0.07698666304349899, 0.1581917703151703, -0.10869692265987396, 0.0021092237439006567, -0.09125987440347672, 0.02388456091284752, 0.18326276540756226, -0.12891431152820587, 0.03063168004155159, 1.2124561071395874, -0.1179247796535492, 0.07747801393270493, -0.03422694653272629]} +{"t": 7.9144, "q": [-0.34803128242492676, -0.024700500071048737, 0.015347111970186234, 0.6152541041374207, -0.2981886863708496, 0.02082378789782524, -0.34075337648391724, -0.002275404753163457, 0.005316582508385181, 0.625463604927063, -0.33458781242370605, 0.009130306541919708, 0.0034551091957837343, 0.0652255117893219, -0.039504341781139374, -0.9391797780990601, 0.07698666304349899, 0.16046877205371857, -0.11720572412014008, -0.004098604898899794, -0.09115201979875565, 0.023872576653957367, 0.18319086730480194, -0.12927383184432983, 0.03063168004155159, 1.2124440670013428, -0.1179487481713295, 0.07745404541492462, -0.03419099375605583]} +{"t": 7.9311, "q": [-0.3481931984424591, -0.02466641180217266, 0.015239977277815342, 0.6152626276016235, -0.2983214259147644, 0.020591331645846367, -0.34101757407188416, -0.0022327941842377186, 0.005329974461346865, 0.6254550814628601, -0.3346487581729889, 0.009021898731589317, 0.0035220684949308634, 0.06584850698709488, -0.039870887994766235, -0.9485753774642944, 0.07708253711462021, 0.16369253396987915, -0.12432435154914856, -0.010150638408958912, -0.09111606329679489, 0.02388456091284752, 0.18321482837200165, -0.12969328463077545, 0.030595727264881134, 1.2124440670013428, -0.11793676018714905, 0.07747801393270493, -0.034262899309396744]} +{"t": 7.9481, "q": [-0.34859374165534973, -0.02464936673641205, 0.015146234072744846, 0.6152541041374207, -0.2983255684375763, 0.0205695778131485, -0.3414607346057892, -0.002258360618725419, 0.005343366414308548, 0.6254039406776428, -0.3347187638282776, 0.009073472581803799, 0.003696163184940815, 0.06644856184720993, -0.04019232839345932, -0.9573239088058472, 0.07713047415018082, 0.1675993949174881, -0.13108345866203308, -0.01390170119702816, -0.09075653553009033, 0.023872576653957367, 0.1832747608423233, -0.13012471795082092, 0.030607711523771286, 1.2124561071395874, -0.11791279166936874, 0.07747801393270493, -0.03422694653272629]} +{"t": 7.9648, "q": [-0.3487386107444763, -0.02465789020061493, 0.015146234072744846, 0.6152796745300293, -0.2983172535896301, 0.020584100857377052, -0.34171637892723083, -0.002258360618725419, 0.005343366414308548, 0.6253868937492371, -0.33474743366241455, 0.00906649325042963, 0.003776514669880271, 0.06703214347362518, -0.04023785889148712, -0.9663479924201965, 0.07708253711462021, 0.1727406233549118, -0.13907693326473236, -0.01912682317197323, -0.0902891531586647, 0.023872576653957367, 0.18333467841148376, -0.13048423826694489, 0.030607711523771286, 1.2124561071395874, -0.1179247796535492, 0.07747801393270493, -0.03423893079161644]} +{"t": 7.9815, "q": [-0.3488749563694, -0.02465789020061493, 0.015092666260898113, 0.6153308153152466, -0.29831311106681824, 0.020605873316526413, -0.3418612480163574, -0.002266882685944438, 0.005343366414308548, 0.6253613233566284, -0.3347598612308502, 0.009088413789868355, 0.004017568659037352, 0.0675630196928978, -0.040355388075113297, -0.9742815494537354, 0.07741809636354446, 0.1778099536895752, -0.14550048112869263, -0.02358495444059372, -0.09027716517448425, 0.02388456091284752, 0.18339459598064423, -0.13081979751586914, 0.030607711523771286, 1.2125399112701416, -0.11793676018714905, 0.07750198245048523, -0.03422694653272629]} +{"t": 7.9984, "q": [-0.3490198254585266, -0.024674933403730392, 0.015065882354974747, 0.6153649091720581, -0.2983297109603882, 0.020620249211788177, -0.3418782949447632, -0.002258360618725419, 0.005316582508385181, 0.6252420544624329, -0.3347475230693817, 0.009081024676561356, 0.004084527958184481, 0.06785164773464203, -0.040523651987314224, -0.9817357659339905, 0.07744206488132477, 0.18243585526943207, -0.15285879373550415, -0.030403979122638702, -0.09012137353420258, 0.02389654517173767, 0.1834545135498047, -0.13099956512451172, 0.030583743005990982, 1.2125040292739868, -0.1179487481713295, 0.07746603339910507, -0.03422694653272629]} +{"t": 8.0151, "q": [-0.3491050601005554, -0.02471754513680935, 0.014998923055827618, 0.6154245734214783, -0.29834631085395813, 0.020634610205888748, -0.3419123888015747, -0.002283926820382476, 0.005329974461346865, 0.6252079606056213, -0.33473509550094604, 0.009059105068445206, 0.0041247038170695305, 0.06797301024198532, -0.04055768996477127, -0.9891539812088013, 0.07648332417011261, 0.18697787821292877, -0.15991750359535217, -0.03772634267807007, -0.09009740501642227, 0.023872576653957367, 0.18339459598064423, -0.13114337623119354, 0.030607711523771286, 1.2125519514083862, -0.11796072870492935, 0.07750198245048523, -0.03425091505050659]} +{"t": 8.0318, "q": [-0.34913915395736694, -0.02477720007300377, 0.015012315474450588, 0.6154501438140869, -0.29832562804222107, 0.020728882402181625, -0.34188681840896606, -0.0022924491204321384, 0.005289798602461815, 0.6251909136772156, -0.33465275168418884, 0.009000142104923725, 0.004097919911146164, 0.06803371012210846, -0.04057963564991951, -0.9977946281433105, 0.07534482330083847, 0.193161740899086, -0.16666461527347565, -0.04369448497891426, -0.08995359390974045, 0.023872576653957367, 0.18335863947868347, -0.13121528923511505, 0.030607711523771286, 1.2126957178115845, -0.11796072870492935, 0.07752595096826553, -0.03422694653272629]} +{"t": 8.0487, "q": [-0.34926697611808777, -0.024802764877676964, 0.015025706961750984, 0.6156120300292969, -0.29833394289016724, 0.02074331045150757, -0.34189534187316895, -0.0023009711876511574, 0.005236231256276369, 0.6252164840698242, -0.3346368074417114, 0.009087203070521355, 0.004111311864107847, 0.06807148456573486, -0.0405564084649086, -1.006507158279419, 0.07449394464492798, 0.19964520633220673, -0.1727645844221115, -0.04972255229949951, -0.08925850689411163, 0.02389654517173767, 0.18344253301620483, -0.13121528923511505, 0.030679617077112198, 1.2127317190170288, -0.1179487481713295, 0.07750198245048523, -0.03422694653272629]} +{"t": 8.0654, "q": [-0.3493947982788086, -0.024794243276119232, 0.015079274773597717, 0.6156205534934998, -0.29815608263015747, 0.021069927141070366, -0.3419720530509949, -0.0022924491204321384, 0.005263015162199736, 0.6252079606056213, -0.33455851674079895, 0.009020998142659664, 0.003803298342972994, 0.0680563747882843, -0.040565699338912964, -1.0153754949569702, 0.07394266873598099, 0.20566128194332123, -0.17858892679214478, -0.054372429847717285, -0.08880311250686646, 0.023980434983968735, 0.1833226978778839, -0.1312272697687149, 0.03069160133600235, 1.2127556800842285, -0.11793676018714905, 0.07750198245048523, -0.03423893079161644]} +{"t": 8.0821, "q": [-0.34937775135040283, -0.0247857216745615, 0.015173017978668213, 0.6157057881355286, -0.2979121804237366, 0.021512223407626152, -0.3420061469078064, -0.002258360618725419, 0.00542371766641736, 0.6252250075340271, -0.334410697221756, 0.00899044331163168, 0.0035354604478925467, 0.06808658689260483, -0.040547117590904236, -1.024303674697876, 0.07301988452672958, 0.21201293170452118, -0.18462897837162018, -0.05951366201043129, -0.08883906155824661, 0.023968450725078583, 0.1832028478384018, -0.131203293800354, 0.03069160133600235, 1.2127556800842285, -0.11796072870492935, 0.07746603339910507, -0.03423893079161644]} +{"t": 8.0988, "q": [-0.3493522107601166, -0.0247857216745615, 0.015280152671039104, 0.6158251166343689, -0.29651060700416565, 0.02399943768978119, -0.34198057651519775, -0.0022242721170186996, 0.0055442447774112225, 0.6253358125686646, -0.3343239426612854, 0.008866029791533947, 0.0033747577108442783, 0.0681394636631012, -0.04051459953188896, -1.0320454835891724, 0.07160574942827225, 0.2177533656358719, -0.19112442433834076, -0.06325273960828781, -0.08916263282299042, 0.02400440350174904, 0.18323880434036255, -0.131203293800354, 0.03063168004155159, 1.2127436399459839, -0.11793676018714905, 0.07746603339910507, -0.034202978014945984]} +{"t": 8.1156, "q": [-0.34931811690330505, -0.024802764877676964, 0.015360504388809204, 0.615978479385376, -0.2958613336086273, 0.025094496086239815, -0.34194648265838623, -0.0022072279825806618, 0.005624596029520035, 0.6254976987838745, -0.33423247933387756, 0.008632571436464787, 0.003254230599850416, 0.06821500509977341, -0.04046814516186714, -1.0396195650100708, 0.06946057081222534, 0.22313429415225983, -0.1989501267671585, -0.06756706535816193, -0.08935438096523285, 0.02400440350174904, 0.1832507848739624, -0.13121528923511505, 0.03063168004155159, 1.2127196788787842, -0.1179487481713295, 0.07747801393270493, -0.03422694653272629]} +{"t": 8.1327, "q": [-0.349437415599823, -0.024862419813871384, 0.015333720482885838, 0.616421639919281, -0.2959192097187042, 0.024992970749735832, -0.3418782949447632, -0.0021901836153119802, 0.00546389352530241, 0.6259579062461853, -0.3338800072669983, 0.00789501704275608, 0.0035354604478925467, 0.06829800456762314, -0.040397342294454575, -1.0471097230911255, 0.06639260798692703, 0.22732876241207123, -0.2069675624370575, -0.0701436698436737, -0.09060074388980865, 0.02394448220729828, 0.18323880434036255, -0.13121528923511505, 0.030607711523771286, 1.2127436399459839, -0.1179247796535492, 0.07749000191688538, -0.03422694653272629]} +{"t": 8.1495, "q": [-0.3496760427951813, -0.02495616301894188, 0.0153738958761096, 0.617009699344635, -0.29589027166366577, 0.025043733417987823, -0.3418186604976654, -0.0021901836153119802, 0.0051424880512058735, 0.626511812210083, -0.3337465822696686, 0.007472168654203415, 0.0038970415480434895, 0.06837349385023117, -0.04034103453159332, -1.054935336112976, 0.06242582947015762, 0.23258984088897705, -0.21666280925273895, -0.07167764753103256, -0.09092431515455246, 0.023920513689517975, 0.18331070244312286, -0.13121528923511505, 0.03063168004155159, 1.2127436399459839, -0.1179487481713295, 0.07747801393270493, -0.03425091505050659]} +{"t": 8.1662, "q": [-0.34969308972358704, -0.0250839963555336, 0.015507815405726433, 0.6174868941307068, -0.29591095447540283, 0.025007469579577446, -0.3416822850704193, -0.002266882685944438, 0.004847866017371416, 0.6271424889564514, -0.3339216709136963, 0.00721953809261322, 0.003990784753113985, 0.06838855892419815, -0.040321893990039825, -1.0616105794906616, 0.05849500373005867, 0.23880966007709503, -0.22574685513973236, -0.07569236308336258, -0.09105614572763443, 0.023920513689517975, 0.18339459598064423, -0.13126322627067566, 0.030655648559331894, 1.2127796411514282, -0.11793676018714905, 0.07749000191688538, -0.034214962273836136]} +{"t": 8.1829, "q": [-0.3497186601161957, -0.025118084624409676, 0.01565512642264366, 0.6181175708770752, -0.29592758417129517, 0.025007402524352074, -0.3416311740875244, -0.0023094932548701763, 0.0045800283551216125, 0.627849817276001, -0.3343428671360016, 0.006969382055103779, 0.004084527958184481, 0.06844143569469452, -0.04028937593102455, -1.0679742097854614, 0.05530719831585884, 0.24462200701236725, -0.23421970009803772, -0.07878429442644119, -0.09098424017429352, 0.023932497948408127, 0.1833226978778839, -0.13137108087539673, 0.030643664300441742, 1.2127796411514282, -0.1179487481713295, 0.07750198245048523, -0.03423893079161644]} +{"t": 8.1997, "q": [-0.34982091188430786, -0.025126606225967407, 0.015695301815867424, 0.6188419461250305, -0.2959607243537903, 0.024963874369859695, -0.34162265062332153, -0.0023435817565768957, 0.0042854067869484425, 0.6286423802375793, -0.33462822437286377, 0.006623384077101946, 0.004111311864107847, 0.06853954493999481, -0.04020928218960762, -1.0734150409698486, 0.05362940952181816, 0.24931982159614563, -0.24197348952293396, -0.08059391379356384, -0.09076852351427078, 0.02389654517173767, 0.18338261544704437, -0.13139504194259644, 0.030655648559331894, 1.2127915620803833, -0.11796072870492935, 0.07750198245048523, -0.034202978014945984]} +{"t": 8.2164, "q": [-0.3499317169189453, -0.025118084624409676, 0.01580243743956089, 0.6195833683013916, -0.2959607243537903, 0.024963874369859695, -0.34162265062332153, -0.0023435817565768957, 0.0038568659219890833, 0.6294093728065491, -0.33483195304870605, 0.006363792810589075, 0.004097919911146164, 0.06869817525148392, -0.0401117242872715, -1.0786162614822388, 0.05235908180475235, 0.25416144728660583, -0.2484809309244156, -0.08263123035430908, -0.09068462997674942, 0.02389654517173767, 0.18335863947868347, -0.1315268725156784, 0.03063168004155159, 1.212815523147583, -0.11796072870492935, 0.07750198245048523, -0.03422694653272629]} +{"t": 8.2331, "q": [-0.3502640724182129, -0.025101039558649063, 0.015668518841266632, 0.6204100251197815, -0.2960103154182434, 0.02487686648964882, -0.3418101370334625, -0.002326537622138858, 0.0034551091957837343, 0.6304234862327576, -0.3353028893470764, 0.0062158661894500256, 0.004151487722992897, 0.06878118216991425, -0.04004092141985893, -1.0844885110855103, 0.05056144669651985, 0.26126810908317566, -0.25448501110076904, -0.08466855436563492, -0.0902412161231041, 0.023860592395067215, 0.18335863947868347, -0.13158679008483887, 0.030643664300441742, 1.2128275632858276, -0.11793676018714905, 0.07750198245048523, -0.03423893079161644]} +{"t": 8.2498, "q": [-0.3508009612560272, -0.024981729686260223, 0.015400679782032967, 0.6215434670448303, -0.2960599958896637, 0.024804305285215378, -0.3420487344264984, -0.0023435817565768957, 0.002852473873645067, 0.6313949823379517, -0.3358655869960785, 0.006359559949487448, 0.0041916631162166595, 0.0689699724316597, -0.03991496190428734, -1.090276837348938, 0.048584047704935074, 0.26905784010887146, -0.2590869665145874, -0.08713730424642563, -0.09009740501642227, 0.02389654517173767, 0.18335863947868347, -0.1317545771598816, 0.030619695782661438, 1.2128515243530273, -0.11793676018714905, 0.07750198245048523, -0.034214962273836136]} +{"t": 8.2666, "q": [-0.35133785009384155, -0.02477720007300377, 0.015065882354974747, 0.6226769089698792, -0.2962380647659302, 0.024579308927059174, -0.34226179122924805, -0.002275404753163457, 0.002169487066566944, 0.6323153972625732, -0.3361048698425293, 0.005831414368003607, 0.00416487967595458, 0.06929467618465424, -0.03973569720983505, -1.0962090492248535, 0.04681038483977318, 0.2775786221027374, -0.2644558846950531, -0.08857540786266327, -0.08983375132083893, 0.023860592395067215, 0.18334665894508362, -0.1320302039384842, 0.030643664300441742, 1.212875485420227, -0.1179487481713295, 0.07751397043466568, -0.03425091505050659]} +{"t": 8.2833, "q": [-0.35167020559310913, -0.02466641180217266, 0.014811436645686626, 0.6233501434326172, -0.29659804701805115, 0.024020791053771973, -0.3426111936569214, -0.0022924491204321384, 0.001834689755924046, 0.6330653429031372, -0.3365430235862732, 0.005683178547769785, 0.004205055069178343, 0.06945335865020752, -0.03966802731156349, -1.1015900373458862, 0.044617269188165665, 0.28668662905693054, -0.2689020335674286, -0.0899895504117012, -0.08983375132083893, 0.02389654517173767, 0.18321482837200165, -0.13219799101352692, 0.030667632818222046, 1.212863564491272, -0.1179727166891098, 0.07749000191688538, -0.03423893079161644]} +{"t": 8.3001, "q": [-0.35179805755615234, -0.024640845134854317, 0.014690909534692764, 0.6236569285392761, -0.2971024811267853, 0.023136096075177193, -0.3428327739238739, -0.0022924491204321384, 0.0017275545978918672, 0.6337044835090637, -0.33662867546081543, 0.0055895475670695305, 0.004151487722992897, 0.06951414793729782, -0.03970969095826149, -1.106695294380188, 0.042448125779628754, 0.2944044768810272, -0.27315643429756165, -0.09160741418600082, -0.08989367634057999, 0.02388456091284752, 0.1832028478384018, -0.13230584561824799, 0.030715569853782654, 1.2128515243530273, -0.11793676018714905, 0.07750198245048523, -0.03423893079161644]} +{"t": 8.3168, "q": [-0.3520963191986084, -0.024513013660907745, 0.014650734141469002, 0.6242278814315796, -0.29759854078292847, 0.022236986085772514, -0.3432418406009674, -0.0022413162514567375, 0.0016472031129524112, 0.6343692541122437, -0.3368084132671356, 0.005445980001240969, 0.004178271628916264, 0.0695519894361496, -0.03970622643828392, -1.1124956607818604, 0.03996739163994789, 0.3028533458709717, -0.2766318619251251, -0.0932852104306221, -0.0899416133761406, 0.023860592395067215, 0.18321482837200165, -0.1323537826538086, 0.030667632818222046, 1.212875485420227, -0.1179487481713295, 0.07749000191688538, -0.03422694653272629]} +{"t": 8.3336, "q": [-0.352871835231781, -0.024325527250766754, 0.014516814611852169, 0.6248670816421509, -0.29870739579200745, 0.02033570595085621, -0.34400030970573425, -0.002156095113605261, 0.0014998923288658261, 0.634803831577301, -0.33740919828414917, 0.00580076826736331, 0.004178271628916264, 0.06976476311683655, -0.03985198587179184, -1.1187034845352173, 0.037522610276937485, 0.31284821033477783, -0.2797118127346039, -0.09593372046947479, -0.08988168835639954, 0.023872576653957367, 0.18314293026924133, -0.13246163725852966, 0.030679617077112198, 1.212863564491272, -0.1179727166891098, 0.07749000191688538, -0.03423893079161644]} +{"t": 8.3503, "q": [-0.3541927635669708, -0.02411247417330742, 0.014423071406781673, 0.6254550814628601, -0.2987488806247711, 0.020306497812271118, -0.3453553318977356, -0.0019430422689765692, 0.0014731085393577814, 0.6353748440742493, -0.3383448123931885, 0.004915409721434116, 0.004111311864107847, 0.07016017287969589, -0.040171846747398376, -1.1259299516677856, 0.035784896463155746, 0.32265129685401917, -0.28348684310913086, -0.09776730835437775, -0.08995359390974045, 0.023908529430627823, 0.18308301270008087, -0.13248561322689056, 0.03069160133600235, 1.2128275632858276, -0.11793676018714905, 0.07747801393270493, -0.034214962273836136]} +{"t": 8.367, "q": [-0.3561869263648987, -0.023890899494290352, 0.014409679919481277, 0.6262305974960327, -0.2987239956855774, 0.020321117714047432, -0.34725576639175415, -0.001695900922641158, 0.0014597165863960981, 0.6358265280723572, -0.3399580419063568, 0.003265875857323408, 0.003655987558886409, 0.07078380137681961, -0.04069703817367554, -1.1339234113693237, 0.03501790761947632, 0.33214280009269714, -0.28718996047973633, -0.09933724254369736, -0.09016931056976318, 0.023920513689517975, 0.1829991191625595, -0.13266538083553314, 0.030679617077112198, 1.2127676010131836, -0.1179727166891098, 0.07746603339910507, -0.03423893079161644]} +{"t": 8.3837, "q": [-0.35831746459007263, -0.023618191480636597, 0.01444985531270504, 0.6269634962081909, -0.29870736598968506, 0.020292259752750397, -0.34909653663635254, -0.00138058268930763, 0.001566851744428277, 0.6361503601074219, -0.339658260345459, 0.0032267055939882994, 0.003468500915914774, 0.0714217945933342, -0.04107567295432091, -1.1414375305175781, 0.03495798632502556, 0.3396688997745514, -0.29107287526130676, -0.10095511376857758, -0.09020526707172394, 0.02388456091284752, 0.1829272210597992, -0.13313275575637817, 0.030643664300441742, 1.2127196788787842, -0.1179966852068901, 0.07745404541492462, -0.03425091505050659]} +{"t": 8.4005, "q": [-0.3605843484401703, -0.023430705070495605, 0.014516814611852169, 0.6275004148483276, -0.29866164922714233, 0.020227357745170593, -0.3512185513973236, -0.0012101404136046767, 0.0016338112764060497, 0.6363122463226318, -0.33918893337249756, 0.002931478200480342, 0.0033077981788665056, 0.07230889052152634, -0.041311997920274734, -1.1497305631637573, 0.0342988520860672, 0.3491843640804291, -0.29422470927238464, -0.10374743491411209, -0.09030113369226456, 0.023860592395067215, 0.18301109969615936, -0.13367204368114471, 0.030655648559331894, 1.2127317190170288, -0.1179247796535492, 0.07746603339910507, -0.03423893079161644]} +{"t": 8.4173, "q": [-0.3629534840583801, -0.02340513840317726, 0.014744477346539497, 0.6278071999549866, -0.29861176013946533, 0.020184192806482315, -0.3537836968898773, -0.0011163970921188593, 0.001941824913956225, 0.6365679502487183, -0.3386891782283783, 0.0031303020659834146, 0.003347973804920912, 0.0731290653347969, -0.04179676994681358, -1.1590063571929932, 0.03353186324238777, 0.35879573225975037, -0.2962620258331299, -0.10607238113880157, -0.09030113369226456, 0.02389654517173767, 0.18316689133644104, -0.1342233270406723, 0.030643664300441742, 1.2127436399459839, -0.11793676018714905, 0.07745404541492462, -0.03422694653272629]} +{"t": 8.4341, "q": [-0.3644448518753052, -0.023413660004734993, 0.01486500445753336, 0.628224790096283, -0.29849973320961, 0.02014865167438984, -0.3552494943141937, -0.001073786523193121, 0.0021025275345891714, 0.6368491649627686, -0.3368583619594574, 0.0055918400175869465, 0.003321190131828189, 0.07372672855854034, -0.041707322001457214, -1.1678627729415894, 0.03356781601905823, 0.3673284947872162, -0.2979757785797119, -0.10775016993284225, -0.09020526707172394, 0.023860592395067215, 0.18310697376728058, -0.13463078439235687, 0.030667632818222046, 1.2127436399459839, -0.11793676018714905, 0.07747801393270493, -0.03419099375605583]} +{"t": 8.4508, "q": [-0.36519479751586914, -0.023422183468937874, 0.015092666260898113, 0.6281395554542542, -0.29840436577796936, 0.01999720372259617, -0.3563999831676483, -0.001005609636195004, 0.002504284493625164, 0.636815071105957, -0.3352186381816864, 0.008170020766556263, 0.0031604873947799206, 0.07433052361011505, -0.04132780805230141, -1.1774141788482666, 0.033603768795728683, 0.3763046860694885, -0.3006722331047058, -0.10940399020910263, -0.09021724760532379, 0.02389654517173767, 0.18316689133644104, -0.1348944455385208, 0.030643664300441742, 1.2127676010131836, -0.1179727166891098, 0.07751397043466568, -0.034202978014945984]} +{"t": 8.468, "q": [-0.3652544617652893, -0.023439226672053337, 0.015347111970186234, 0.6280031800270081, -0.2984250783920288, 0.02000431716442108, -0.3565874695777893, -0.0009970874525606632, 0.0029730007518082857, 0.6367213129997253, -0.3352103531360626, 0.008155389688909054, 0.0030399602837860584, 0.07469277828931808, -0.04109616205096245, -1.1855394840240479, 0.03356781601905823, 0.38453784584999084, -0.30351248383522034, -0.11092598736286163, -0.09021724760532379, 0.02388456091284752, 0.18321482837200165, -0.13501428067684174, 0.030643664300441742, 1.2127796411514282, -0.1179727166891098, 0.07747801393270493, -0.034202978014945984]} +{"t": 8.4847, "q": [-0.36513516306877136, -0.023481838405132294, 0.015333720482885838, 0.6278753876686096, -0.29847484827041626, 0.020076410844922066, -0.35657042264938354, -0.001005609636195004, 0.0035086767747998238, 0.6366786956787109, -0.3352389633655548, 0.00813387893140316, 0.002731946762651205, 0.07486643642187119, -0.041009727865457535, -1.194803237915039, 0.033256225287914276, 0.39511990547180176, -0.3064725995063782, -0.11573166400194168, -0.09033709019422531, 0.023872576653957367, 0.18326276540756226, -0.1351461112499237, 0.030643664300441742, 1.2127676010131836, -0.11793676018714905, 0.07750198245048523, -0.03425091505050659]} +{"t": 8.5014, "q": [-0.3648880124092102, -0.0235244482755661, 0.015347111970186234, 0.6277560591697693, -0.2985329329967499, 0.020148470997810364, -0.3564426004886627, -0.0010396981379017234, 0.004151487722992897, 0.6367042660713196, -0.3352999985218048, 0.008040002547204494, 0.0026649872306734324, 0.07489681988954544, -0.04103061556816101, -1.203168272972107, 0.03314836695790291, 0.4045394957065582, -0.30902522802352905, -0.11983026564121246, -0.09027716517448425, 0.023920513689517975, 0.18323880434036255, -0.1351461112499237, 0.030667632818222046, 1.212803602218628, -0.11793676018714905, 0.07747801393270493, -0.03422694653272629]} +{"t": 8.5182, "q": [-0.36490505933761597, -0.023618191480636597, 0.015320328995585442, 0.6277134418487549, -0.2985661029815674, 0.020220663398504257, -0.35642555356025696, -0.0010567422723397613, 0.004432717338204384, 0.6365679502487183, -0.3353573679924011, 0.00802602618932724, 0.002691771136596799, 0.07490447163581848, -0.0410456657409668, -1.2130433320999146, 0.03323225677013397, 0.414306640625, -0.3124527335166931, -0.1239408552646637, -0.09037303924560547, 0.023920513689517975, 0.1832507848739624, -0.1351461112499237, 0.03069160133600235, 1.212815523147583, -0.11796072870492935, 0.07750198245048523, -0.034202978014945984]} +{"t": 8.5349, "q": [-0.3649306297302246, -0.023797156289219856, 0.015333720482885838, 0.6276452541351318, -0.29856202006340027, 0.020300326868891716, -0.3564085066318512, -0.0011504855938255787, 0.004553244449198246, 0.6364912390708923, -0.33533644676208496, 0.007945897988975048, 0.002865865593776107, 0.07490447163581848, -0.0410456657409668, -1.223181962966919, 0.03341202065348625, 0.423714280128479, -0.3148016333580017, -0.12692493200302124, -0.09066066145896912, 0.02389654517173767, 0.183298721909523, -0.13513413071632385, 0.030679617077112198, 1.2128275632858276, -0.1179487481713295, 0.07751397043466568, -0.03419099375605583]} +{"t": 8.5517, "q": [-0.3649817705154419, -0.024052819237113, 0.015347111970186234, 0.6275259852409363, -0.2985787093639374, 0.020387127995491028, -0.35634031891822815, -0.0013464941876009107, 0.004553244449198246, 0.636371910572052, -0.33528652787208557, 0.007814587093889713, 0.0030533522367477417, 0.07490447163581848, -0.0410456657409668, -1.2347826957702637, 0.03351987898349762, 0.434176504611969, -0.31658726930618286, -0.1281353384256363, -0.09061272442340851, 0.02388456091284752, 0.18326276540756226, -0.13513413071632385, 0.030667632818222046, 1.212875485420227, -0.11796072870492935, 0.07751397043466568, -0.034214962273836136]} +{"t": 8.5684, "q": [-0.36500731110572815, -0.02435961551964283, 0.015333720482885838, 0.6273896098136902, -0.2984626889228821, 0.020749814808368683, -0.35628068447113037, -0.0016277240356430411, 0.0045264605432748795, 0.6363463401794434, -0.3352154791355133, 0.007559500634670258, 0.0030801359098404646, 0.07488933205604553, -0.04104505106806755, -1.246958613395691, 0.033543847501277924, 0.4452019929885864, -0.31831300258636475, -0.12977717816829681, -0.09062471240758896, 0.023908529430627823, 0.1832747608423233, -0.1351700723171234, 0.030679617077112198, 1.2129114866256714, -0.11793676018714905, 0.07750198245048523, -0.03422694653272629]} +{"t": 8.5851, "q": [-0.36495620012283325, -0.024691978469491005, 0.015440856106579304, 0.627261757850647, -0.29842957854270935, 0.020923776552081108, -0.3562124967575073, -0.0018322548130527139, 0.0045264605432748795, 0.6362611651420593, -0.3351440727710724, 0.007231756113469601, 0.003173879347741604, 0.07488927990198135, -0.04103522002696991, -1.258439540863037, 0.033903371542692184, 0.45546048879623413, -0.32053008675575256, -0.1315508335828781, -0.09063669294118881, 0.02388456091284752, 0.183298721909523, -0.13518206775188446, 0.030715569853782654, 1.2129114866256714, -0.1179966852068901, 0.07750198245048523, -0.03422694653272629]} +{"t": 8.6018, "q": [-0.3649306297302246, -0.024947641417384148, 0.015561383217573166, 0.6272277235984802, -0.29812419414520264, 0.02147522009909153, -0.3561272919178009, -0.0020879183430224657, 0.004606812261044979, 0.6362611651420593, -0.3351175785064697, 0.006868097465485334, 0.0032006630208343267, 0.07488927990198135, -0.04103522002696991, -1.2706754207611084, 0.034155040979385376, 0.4663781225681305, -0.3229628801345825, -0.13506221771240234, -0.09066066145896912, 0.023872576653957367, 0.1832747608423233, -0.13523000478744507, 0.030715569853782654, 1.2129473686218262, -0.11793676018714905, 0.07749000191688538, -0.03422694653272629]} +{"t": 8.6187, "q": [-0.3648880124092102, -0.025041384622454643, 0.015588166192173958, 0.6272447109222412, -0.29605698585510254, 0.02514435164630413, -0.3559994399547577, -0.0022072279825806618, 0.004660379607230425, 0.6362611651420593, -0.33526864647865295, 0.006731527391821146, 0.003321190131828189, 0.07488173246383667, -0.04103982821106911, -1.283174991607666, 0.034334804862737656, 0.47879377007484436, -0.3249882161617279, -0.13884922862052917, -0.09067264944314957, 0.02389654517173767, 0.18333467841148376, -0.13524198532104492, 0.030715569853782654, 1.2129473686218262, -0.1179487481713295, 0.07750198245048523, -0.03422694653272629]} +{"t": 8.6354, "q": [-0.36481982469558716, -0.025160694494843483, 0.015681909397244453, 0.6272192001342773, -0.2961687743663788, 0.02499198168516159, -0.3557608425617218, -0.002258360618725419, 0.004700555466115475, 0.6362015008926392, -0.3353129029273987, 0.006564811337739229, 0.0033747577108442783, 0.07486660033464432, -0.04103921353816986, -1.2948355674743652, 0.03452655300498009, 0.48999902606010437, -0.3267139494419098, -0.142408549785614, -0.09070859849452972, 0.02395646646618843, 0.183298721909523, -0.13525396585464478, 0.030727554112672806, 1.2129833698272705, -0.11796072870492935, 0.07751397043466568, -0.03422694653272629]} +{"t": 8.6522, "q": [-0.3647601902484894, -0.025305571034550667, 0.015829220414161682, 0.6271680593490601, -0.29621508717536926, 0.02515820972621441, -0.35560742020606995, -0.0023009711876511574, 0.004713947419077158, 0.6361929774284363, -0.3354068398475647, 0.006485793739557266, 0.003321190131828189, 0.07488927990198135, -0.04103522002696991, -1.307167410850525, 0.03560513257980347, 0.5012282133102417, -0.32901492714881897, -0.14645922183990479, -0.09067264944314957, 0.023908529430627823, 0.18328674137592316, -0.13525396585464478, 0.030727554112672806, 1.2129952907562256, -0.11798469722270966, 0.07750198245048523, -0.03423893079161644]} +{"t": 8.6691, "q": [-0.36473461985588074, -0.025407835841178894, 0.016043491661548615, 0.6271254420280457, -0.2962154746055603, 0.025273969396948814, -0.3552239239215851, -0.002403236459940672, 0.004767514765262604, 0.6362270712852478, -0.3354681730270386, 0.006450079381465912, 0.0032944062259048223, 0.07486660033464432, -0.04103921353816986, -1.3209012746810913, 0.0364200621843338, 0.5139674544334412, -0.3314477205276489, -0.1490238457918167, -0.09079249203205109, 0.02394448220729828, 0.1831549108028412, -0.13525396585464478, 0.030727554112672806, 1.2129833698272705, -0.11798469722270966, 0.07751397043466568, -0.03422694653272629]} +{"t": 8.6858, "q": [-0.36467495560646057, -0.025544188916683197, 0.016230978071689606, 0.6269720196723938, -0.2962072193622589, 0.025288468226790428, -0.3549853265285492, -0.0024799355305731297, 0.004767514765262604, 0.6362441182136536, -0.3354969322681427, 0.006457631476223469, 0.0033077981788665056, 0.07486660033464432, -0.04103921353816986, -1.334311604499817, 0.03715109825134277, 0.5258558392524719, -0.33283787965774536, -0.1507256031036377, -0.09092431515455246, 0.023932497948408127, 0.18313094973564148, -0.13526594638824463, 0.030727554112672806, 1.2129833698272705, -0.11796072870492935, 0.07751397043466568, -0.03423893079161644]} +{"t": 8.7025, "q": [-0.3645641803741455, -0.025654977187514305, 0.016364896669983864, 0.6266737580299377, -0.2962072789669037, 0.025302933529019356, -0.354627400636673, -0.0025566346012055874, 0.004767514765262604, 0.6361929774284363, -0.3355008661746979, 0.006421325728297234, 0.0033747577108442783, 0.07487419247627258, -0.041044436395168304, -1.3483211994171143, 0.03892476484179497, 0.5374445915222168, -0.333497017621994, -0.15563912689685822, -0.09099622070789337, 0.023920513689517975, 0.18313094973564148, -0.13526594638824463, 0.030715569853782654, 1.21303129196167, -0.1179727166891098, 0.07750198245048523, -0.03422694653272629]} +{"t": 8.7195, "q": [-0.3645727038383484, -0.025757241994142532, 0.016579166054725647, 0.6265970468521118, -0.29619893431663513, 0.025302983820438385, -0.35437172651290894, -0.002633333671838045, 0.004740730859339237, 0.6362015008926392, -0.33551716804504395, 0.006406958214938641, 0.0034551091957837343, 0.07487408816814423, -0.04102477803826332, -1.3627861738204956, 0.039511989802122116, 0.5503156185150146, -0.3334251046180725, -0.15967781841754913, -0.09094828367233276, 0.023920513689517975, 0.18310697376728058, -0.13530190289020538, 0.030727554112672806, 1.21303129196167, -0.1179966852068901, 0.07751397043466568, -0.034214962273836136]} +{"t": 8.7362, "q": [-0.3645130395889282, -0.025791330263018608, 0.01695414073765278, 0.6264351606369019, -0.2961822748184204, 0.02528858557343483, -0.3541671931743622, -0.002641855739057064, 0.004687163513153791, 0.6362526416778564, -0.335517019033432, 0.00637789536267519, 0.0034551091957837343, 0.07486654072999954, -0.04102938249707222, -1.3773709535598755, 0.04024302959442139, 0.5641454458236694, -0.3333532214164734, -0.16450746357440948, -0.09096027165651321, 0.02395646646618843, 0.18310697376728058, -0.13530190289020538, 0.030739538371562958, 1.213091254234314, -0.1179727166891098, 0.07750198245048523, -0.03425091505050659]} +{"t": 8.7529, "q": [-0.3644789457321167, -0.025816896930336952, 0.0169675312936306, 0.6263669729232788, -0.29616567492485046, 0.025303097441792488, -0.3539711833000183, -0.002633333671838045, 0.004687163513153791, 0.6362696886062622, -0.3354963958263397, 0.006355875171720982, 0.0035220684949308634, 0.07488162815570831, -0.041020169854164124, -1.3918359279632568, 0.041549310088157654, 0.5775677561759949, -0.33320939540863037, -0.16744358837604523, -0.09097225219011307, 0.023968450725078583, 0.18313094973564148, -0.13531388342380524, 0.03075152263045311, 1.213091254234314, -0.11796072870492935, 0.07751397043466568, -0.03422694653272629]} +{"t": 8.7698, "q": [-0.36446189880371094, -0.02579985372722149, 0.016940748319029808, 0.6263414025306702, -0.2961614429950714, 0.02528141625225544, -0.3538263142108917, -0.002641855739057064, 0.004606812261044979, 0.6363378167152405, -0.3354963958263397, 0.006355875171720982, 0.003655987558886409, 0.07487408816814423, -0.04102477803826332, -1.4054020643234253, 0.0421365350484848, 0.5927038192749023, -0.33299368619918823, -0.16984044015407562, -0.09102018922567368, 0.023908529430627823, 0.18311895430088043, -0.13528992235660553, 0.03075152263045311, 1.213163137435913, -0.11796072870492935, 0.07750198245048523, -0.034214962273836136]} +{"t": 8.7865, "q": [-0.36445337533950806, -0.025816896930336952, 0.016887180507183075, 0.6262902617454529, -0.2961489260196686, 0.025274232029914856, -0.35376664996147156, -0.002641855739057064, 0.0044996771030128, 0.6363292932510376, -0.335492342710495, 0.006363099906593561, 0.0038702578749507666, 0.07486654072999954, -0.04102938249707222, -1.4166792631149292, 0.0424121730029583, 0.6055629253387451, -0.3329337537288666, -0.17168600857257843, -0.09100820869207382, 0.02401638776063919, 0.1832028478384018, -0.13531388342380524, 0.030739538371562958, 1.2131750583648682, -0.11793676018714905, 0.07751397043466568, -0.03423893079161644]} +{"t": 8.8033, "q": [-0.36426588892936707, -0.02579985372722149, 0.01678004488348961, 0.62628173828125, -0.2961694598197937, 0.025194572284817696, -0.35368144512176514, -0.002641855739057064, 0.004419325385242701, 0.6363633871078491, -0.33550047874450684, 0.006348650436848402, 0.003990784753113985, 0.07485900074243546, -0.04103399068117142, -1.4272493124008179, 0.04231629893183708, 0.6180264949798584, -0.3329217731952667, -0.17540112137794495, -0.09098424017429352, 0.02407630905508995, 0.1832028478384018, -0.13540975749492645, 0.030715569853782654, 1.2132350206375122, -0.1179487481713295, 0.07751397043466568, -0.03423893079161644]} +{"t": 8.82, "q": [-0.36390796303749084, -0.025791330263018608, 0.016699694097042084, 0.626349925994873, -0.29615697264671326, 0.02518737129867077, -0.3537069857120514, -0.002650377806276083, 0.004312190227210522, 0.6364656686782837, -0.3355044424533844, 0.006326894275844097, 0.0041247038170695305, 0.07486654072999954, -0.04102938249707222, -1.437471866607666, 0.041848912835121155, 0.6313889026641846, -0.3329337537288666, -0.17839717864990234, -0.090864397585392, 0.02400440350174904, 0.1831549108028412, -0.1354457139968872, 0.030727554112672806, 1.2132470607757568, -0.11796072870492935, 0.07750198245048523, -0.03423893079161644]} +{"t": 8.8367, "q": [-0.36378014087677, -0.025782808661460876, 0.01648542284965515, 0.62628173828125, -0.2962065637111664, 0.025100361555814743, -0.3538433611392975, -0.002701510675251484, 0.004057744517922401, 0.6364315748214722, -0.33556610345840454, 0.006349305622279644, 0.004553244449198246, 0.0748666450381279, -0.0410490408539772, -1.4489167928695679, 0.04129764065146446, 0.6440082788467407, -0.33283787965774536, -0.1825796663761139, -0.0909123346209526, 0.02424408681690693, 0.18319086730480194, -0.13557754456996918, 0.030727554112672806, 1.2134147882461548, -0.1179247796535492, 0.07753793895244598, -0.034202978014945984]} +{"t": 8.8535, "q": [-0.3632262051105499, -0.02579985372722149, 0.01628454588353634, 0.6260090470314026, -0.29647135734558105, 0.024679681286215782, -0.3537581264972687, -0.002880475018173456, 0.0037497307639569044, 0.6364060044288635, -0.3356439173221588, 0.00632828613743186, 0.004780906718224287, 0.07478365302085876, -0.04109977185726166, -1.4621833562850952, 0.042460110038518906, 0.6569752097129822, -0.33283787965774536, -0.18543191254138947, -0.09094828367233276, 0.02419615164399147, 0.1832507848739624, -0.13563746213912964, 0.030727554112672806, 1.2135226726531982, -0.1179727166891098, 0.07750198245048523, -0.03422694653272629]} +{"t": 8.8704, "q": [-0.3630131483078003, -0.02579985372722149, 0.01597653143107891, 0.6259749531745911, -0.2967730760574341, 0.024121375754475594, -0.3535706400871277, -0.0029912625905126333, 0.003468500915914774, 0.6363974809646606, -0.3359200060367584, 0.0065708705224096775, 0.00542371766641736, 0.07473174482584, -0.04131913557648659, -1.4763007164001465, 0.044137902557849884, 0.6711525917053223, -0.3325982093811035, -0.18726550042629242, -0.09098424017429352, 0.02419615164399147, 0.1832747608423233, -0.13570936024188995, 0.030739538371562958, 1.2136305570602417, -0.11796072870492935, 0.07751397043466568, -0.03423893079161644]} +{"t": 8.8871, "q": [-0.3630898594856262, -0.025774287059903145, 0.015695301815867424, 0.6259493827819824, -0.29738107323646545, 0.023113293573260307, -0.35349395871162415, -0.0031190942972898483, 0.0032274469267576933, 0.6362781524658203, -0.33606722950935364, 0.006485119462013245, 0.005785298999398947, 0.07477086037397385, -0.041571635752916336, -1.491065263748169, 0.0463310144841671, 0.6865043640136719, -0.3314477205276489, -0.18848788738250732, -0.09103217720985413, 0.024208135902881622, 0.18319086730480194, -0.13588912785053253, 0.03075152263045311, 1.213846206665039, -0.1179247796535492, 0.07752595096826553, -0.03422694653272629]} +{"t": 8.9039, "q": [-0.3631921112537384, -0.025774287059903145, 0.01565512642264366, 0.6257362961769104, -0.29887786507606506, 0.020602624863386154, -0.3537410795688629, -0.003144660498946905, 0.003254230599850416, 0.6362015008926392, -0.33615806698799133, 0.006602308247238398, 0.005504068918526173, 0.07478654384613037, -0.041680559515953064, -1.5046913623809814, 0.048536110669374466, 0.703677773475647, -0.3307046890258789, -0.1901896595954895, -0.09115201979875565, 0.0240643247961998, 0.18263959884643555, -0.13596104085445404, 0.030727554112672806, 1.2139899730682373, -0.11793676018714905, 0.07750198245048523, -0.03422694653272629]} +{"t": 8.9206, "q": [-0.3634733557701111, -0.0257487203925848, 0.01578904502093792, 0.6255744099617004, -0.2989068031311035, 0.020450416952371597, -0.3543035387992859, -0.0031190942972898483, 0.003575636073946953, 0.6362015008926392, -0.33690744638442993, 0.0063554453663527966, 0.005115704145282507, 0.07479403913021088, -0.04166609048843384, -1.5164958238601685, 0.050393667072057724, 0.7200961709022522, -0.33002158999443054, -0.19301792979240417, -0.09136773645877838, 0.02412424609065056, 0.18169283866882324, -0.1360688954591751, 0.030799459666013718, 1.2139180898666382, -0.1179487481713295, 0.07747801393270493, -0.03423893079161644]} +{"t": 8.9373, "q": [-0.3638823926448822, -0.025646455585956573, 0.015869395807385445, 0.6252505779266357, -0.29889431595802307, 0.020399784669280052, -0.3551557660102844, -0.0030423952266573906, 0.004057744517922401, 0.6360310316085815, -0.3383340835571289, 0.005242456682026386, 0.005008568987250328, 0.0747939944267273, -0.041656244546175, -1.5271018743515015, 0.05279051139950752, 0.7373054623603821, -0.3291108012199402, -0.19548667967319489, -0.09137971699237823, 0.02412424609065056, 0.1808539479970932, -0.13603293895721436, 0.030775491148233414, 1.2138941287994385, -0.11793676018714905, 0.07747801393270493, -0.03423893079161644]} +{"t": 8.9541, "q": [-0.36390796303749084, -0.025603843852877617, 0.015829220414161682, 0.6246625185012817, -0.2989150583744049, 0.020363474264740944, -0.35591423511505127, -0.0030338731594383717, 0.004861257970333099, 0.6359884142875671, -0.33902642130851746, 0.0049800267443060875, 0.004138095770031214, 0.0747939944267273, -0.041656244546175, -1.536006212234497, 0.05454020947217941, 0.7564203143119812, -0.32822397351264954, -0.19646938145160675, -0.09134376794099808, 0.0240643247961998, 0.18031466007232666, -0.13603293895721436, 0.03076350688934326, 1.2138822078704834, -0.1179247796535492, 0.07745404541492462, -0.03423893079161644]} +{"t": 8.9708, "q": [-0.36386537551879883, -0.025535667315125465, 0.015842612832784653, 0.6242960691452026, -0.29891088604927063, 0.020356260240077972, -0.3563999831676483, -0.002974218223243952, 0.005879042204469442, 0.6359457969665527, -0.3389938175678253, 0.005023323930799961, 0.003240838646888733, 0.07480158656835556, -0.04166146740317345, -1.543064832687378, 0.05543902516365051, 0.7754272818565369, -0.3275168836116791, -0.19698470830917358, -0.09131979942321777, 0.024100277572870255, 0.18024274706840515, -0.1359969824552536, 0.030787475407123566, 1.213834285736084, -0.11796072870492935, 0.07749000191688538, -0.03423893079161644]} +{"t": 8.9875, "q": [-0.36381423473358154, -0.025518624112010002, 0.01615062542259693, 0.6241427063941956, -0.2989441454410553, 0.020399518311023712, -0.3568090498447418, -0.0029316076543182135, 0.00672273151576519, 0.6359202265739441, -0.3389734625816345, 0.005059487652033567, 0.002691771136596799, 0.07480908930301666, -0.04164700210094452, -1.550950527191162, 0.05559482052922249, 0.795656681060791, -0.32684576511383057, -0.19709256291389465, -0.09122392535209656, 0.024100277572870255, 0.1805063933134079, -0.13598500192165375, 0.030727554112672806, 1.213846206665039, -0.11791279166936874, 0.07747801393270493, -0.03422694653272629]} +{"t": 9.0043, "q": [-0.3639250099658966, -0.025552712380886078, 0.016378289088606834, 0.6240574717521667, -0.2989732623100281, 0.020435543730854988, -0.3570135831832886, -0.0029401297215372324, 0.007070920895785093, 0.6358861923217773, -0.33900222182273865, 0.00506702670827508, 0.002316797850653529, 0.07481663674116135, -0.04164237901568413, -1.5583207607269287, 0.055642757564783096, 0.8143401145935059, -0.3263663947582245, -0.19711653888225555, -0.09115201979875565, 0.024172183126211166, 0.18093782663345337, -0.1359730213880539, 0.030727554112672806, 1.2138701677322388, -0.1179487481713295, 0.07746603339910507, -0.03417900949716568]} +{"t": 9.021, "q": [-0.36395910382270813, -0.025612367317080498, 0.016498815268278122, 0.623810350894928, -0.29900234937667847, 0.020457111299037933, -0.35715845227241516, -0.0029827402904629707, 0.007311975117772818, 0.6355963945388794, -0.33901870250701904, 0.005081736017018557, 0.0022498385515064, 0.07480908930301666, -0.04164700210094452, -1.5647562742233276, 0.05567871034145355, 0.8328796625137329, -0.3263064920902252, -0.19709256291389465, -0.09105614572763443, 0.02419615164399147, 0.18130934238433838, -0.13591310381889343, 0.030739538371562958, 1.2139301300048828, -0.11793676018714905, 0.07747801393270493, -0.034214962273836136]} +{"t": 9.0378, "q": [-0.364155113697052, -0.025637932121753693, 0.016512207686901093, 0.6237165927886963, -0.29902729392051697, 0.02050039917230606, -0.35724368691444397, -0.0029827402904629707, 0.007298583164811134, 0.6352555155754089, -0.33901065587997437, 0.005110729951411486, 0.0022632302716374397, 0.07480903714895248, -0.041637152433395386, -1.5702691078186035, 0.056709352880716324, 0.849453866481781, -0.3264143466949463, -0.1970326453447342, -0.09104415774345398, 0.02430400811135769, 0.18163292109966278, -0.13588912785053253, 0.030727554112672806, 1.213906168937683, -0.11791279166936874, 0.07749000191688538, -0.03423893079161644]} +{"t": 9.0545, "q": [-0.36430850625038147, -0.02562941052019596, 0.016378289088606834, 0.6236057877540588, -0.2990066111087799, 0.02060912735760212, -0.35729479789733887, -0.0029827402904629707, 0.0071914480067789555, 0.634718656539917, -0.33899855613708496, 0.005161506589502096, 0.002531068166717887, 0.07479384541511536, -0.0416266955435276, -1.5766446590423584, 0.05770404636859894, 0.8647217750549316, -0.3265701234340668, -0.19697272777557373, -0.0908883661031723, 0.02430400811135769, 0.1817767322063446, -0.13591310381889343, 0.030739538371562958, 1.213942050933838, -0.1179247796535492, 0.07747801393270493, -0.034214962273836136]} +{"t": 9.0712, "q": [-0.3643937408924103, -0.025672022253274918, 0.01631132885813713, 0.6231881976127625, -0.29899418354034424, 0.020674360916018486, -0.3572692573070526, -0.002965696156024933, 0.007164664100855589, 0.634130597114563, -0.3388277292251587, 0.005479755345731974, 0.0027855143416672945, 0.07480903714895248, -0.041637152433395386, -1.5851175785064697, 0.058638814836740494, 0.8816914558410645, -0.3266060948371887, -0.19691281020641327, -0.09078050404787064, 0.024351945146918297, 0.18189656734466553, -0.13593706488609314, 0.030739538371562958, 1.214002013206482, -0.11791279166936874, 0.07747801393270493, -0.034214962273836136]} +{"t": 9.0881, "q": [-0.3643766939640045, -0.025731675326824188, 0.01628454588353634, 0.6227876543998718, -0.2988987863063812, 0.02082696557044983, -0.3571925461292267, -0.0029912625905126333, 0.007124488707631826, 0.6335852146148682, -0.3385540843009949, 0.00576067715883255, 0.0029194331727921963, 0.07479384541511536, -0.0416266955435276, -1.5959392786026, 0.05946572497487068, 0.8999194502830505, -0.3272172808647156, -0.19688883423805237, -0.09073256701231003, 0.024387897923588753, 0.18211229145526886, -0.13593706488609314, 0.03075152263045311, 1.2140859365463257, -0.11796072870492935, 0.07750198245048523, -0.034202978014945984]} +{"t": 9.105, "q": [-0.36436817049980164, -0.02579985372722149, 0.016204193234443665, 0.6224893927574158, -0.29878678917884827, 0.02100861631333828, -0.3570476770401001, -0.003025350859388709, 0.00705752894282341, 0.6330312490463257, -0.3364429175853729, 0.009337774477899075, 0.0031203117687255144, 0.07478629797697067, -0.041631314903497696, -1.6080433130264282, 0.06077200546860695, 0.9170209169387817, -0.3288351595401764, -0.19692479074001312, -0.09087637811899185, 0.02455567754805088, 0.18217220902442932, -0.13593706488609314, 0.03075152263045311, 1.2144813537597656, -0.11796072870492935, 0.07747801393270493, -0.03422694653272629]} +{"t": 9.1217, "q": [-0.36426588892936707, -0.025833941996097565, 0.016190802678465843, 0.6223444938659668, -0.29845160245895386, 0.02159680612385273, -0.35679200291633606, -0.00301682879216969, 0.00709770480170846, 0.6327926516532898, -0.3347053825855255, 0.008070412091910839, 0.003361365757882595, 0.0748014897108078, -0.04164177179336548, -1.6198956966400146, 0.06295313686132431, 0.9322169423103333, -0.33018937706947327, -0.19691281020641327, -0.09093630313873291, 0.024591630324721336, 0.18226808309555054, -0.1359730213880539, 0.03076350688934326, 1.2152124643325806, -0.11793676018714905, 0.07747801393270493, -0.034202978014945984]} +{"t": 9.1384, "q": [-0.3641210198402405, -0.025833941996097565, 0.016271153464913368, 0.622404158115387, -0.2961043417453766, 0.025614462792873383, -0.3564596474170685, -0.00301682879216969, 0.007111096754670143, 0.6327926516532898, -0.3347509205341339, 0.008150803856551647, 0.0035354604478925467, 0.07479384541511536, -0.0416266955435276, -1.6332341432571411, 0.06626078486442566, 0.9488510489463806, -0.33129191398620605, -0.19691281020641327, -0.09109209477901459, 0.024579646065831184, 0.18224410712718964, -0.13586516678333282, 0.030775491148233414, 1.216111183166504, -0.1179487481713295, 0.07749000191688538, -0.034214962273836136]} +{"t": 9.1555, "q": [-0.36408692598342896, -0.025910640135407448, 0.016257761046290398, 0.6224893927574158, -0.29624098539352417, 0.025433044880628586, -0.3561358153820038, -0.0030338731594383717, 0.006977177690714598, 0.63285231590271, -0.33465874195098877, 0.007771976757794619, 0.003669379511848092, 0.07480144500732422, -0.041631925851106644, -1.645997405052185, 0.07058708369731903, 0.9645383954048157, -0.3315316140651703, -0.19691281020641327, -0.09124789386987686, 0.024567661806941032, 0.18218418955802917, -0.1359730213880539, 0.03076350688934326, 1.2171059846878052, -0.1179727166891098, 0.07754991948604584, -0.03419099375605583]} +{"t": 9.1722, "q": [-0.3639846742153168, -0.02592768520116806, 0.01628454588353634, 0.6225234866142273, -0.29614153504371643, 0.025549201294779778, -0.35578638315200806, -0.0030423952266573906, 0.0068566505797207355, 0.6329545378684998, -0.33465784788131714, 0.007597527001053095, 0.003816690295934677, 0.07480903714895248, -0.041637152433395386, -1.6585209369659424, 0.07709451764822006, 0.9806451797485352, -0.33149564266204834, -0.19688883423805237, -0.09136773645877838, 0.024507740512490273, 0.18183664977550507, -0.13588912785053253, 0.030787475407123566, 1.217944860458374, -0.1179247796535492, 0.07751397043466568, -0.034214962273836136]} +{"t": 9.189, "q": [-0.36389943957328796, -0.025995861738920212, 0.01631132885813713, 0.6225320100784302, -0.29613322019577026, 0.025549234822392464, -0.35556483268737793, -0.0030423952266573906, 0.0067896912805736065, 0.6330738663673401, -0.3347472548484802, 0.00743854558095336, 0.003964001312851906, 0.07479384541511536, -0.0416266955435276, -1.6708526611328125, 0.08418918401002884, 0.9971114993095398, -0.3313758075237274, -0.19691281020641327, -0.09169130772352219, 0.024591630324721336, 0.18158498406410217, -0.13590110838413239, 0.03076350688934326, 1.2190234661102295, -0.11793676018714905, 0.07746603339910507, -0.03422694653272629]} +{"t": 9.2057, "q": [-0.363967627286911, -0.026004383340477943, 0.016391679644584656, 0.6225831508636475, -0.29610416293144226, 0.02555658295750618, -0.35463592410087585, -0.0029997846577316523, 0.006521853152662516, 0.6331250071525574, -0.3347756266593933, 0.007373422384262085, 0.003990784753113985, 0.07479384541511536, -0.0416266955435276, -1.683064579963684, 0.09096027165651321, 1.013458013534546, -0.3298298418521881, -0.19692479074001312, -0.09165535122156143, 0.0246755201369524, 0.18132132291793823, -0.13593706488609314, 0.030775491148233414, 1.2201498746871948, -0.1179247796535492, 0.07746603339910507, -0.034202978014945984]} +{"t": 9.2224, "q": [-0.3640698790550232, -0.026064038276672363, 0.016672909259796143, 0.6225149631500244, -0.29609164595603943, 0.025549380108714104, -0.35400527715682983, -0.0029912625905126333, 0.006414717994630337, 0.6331079602241516, -0.33476319909095764, 0.007351502310484648, 0.004004176706075668, 0.07479380071163177, -0.04161684960126877, -1.6937425136566162, 0.09825865924358368, 1.0291693210601807, -0.32824793457984924, -0.19687685370445251, -0.0914636105298996, 0.02461559884250164, 0.18086592853069305, -0.13593706488609314, 0.03082342818379402, 1.2215161323547363, -0.1179487481713295, 0.07747801393270493, -0.03422694653272629]} +{"t": 9.2392, "q": [-0.3641124963760376, -0.026200393214821815, 0.017101449891924858, 0.6226342916488647, -0.29607489705085754, 0.02552051469683647, -0.35326385498046875, -0.0029997846577316523, 0.00642810994759202, 0.6334488391876221, -0.3346972167491913, 0.007278153672814369, 0.003977392800152302, 0.07478610426187515, -0.04159192368388176, -1.70467209815979, 0.10658770054578781, 1.045228123664856, -0.32737308740615845, -0.19688883423805237, -0.09166733920574188, 0.024639567360281944, 0.1799551248550415, -0.13598500192165375, 0.030799459666013718, 1.2229782342910767, -0.1179247796535492, 0.07747801393270493, -0.034214962273836136]} +{"t": 9.2559, "q": [-0.3639846742153168, -0.026200393214821815, 0.017838004976511, 0.6227961778640747, -0.2960292398929596, 0.025542395189404488, -0.3523690402507782, -0.0029827402904629707, 0.00638793408870697, 0.6338493824005127, -0.33455315232276917, 0.007182230241596699, 0.004044352564960718, 0.07482320815324783, -0.04144085943698883, -1.7159373760223389, 0.11393403261899948, 1.060843586921692, -0.3260188698768616, -0.1968528777360916, -0.09177519381046295, 0.024627583101391792, 0.1793559193611145, -0.1360209584236145, 0.030799459666013718, 1.223924994468689, -0.1179487481713295, 0.07747801393270493, -0.03423893079161644]} +{"t": 9.2726, "q": [-0.36404433846473694, -0.026302658021450043, 0.018387073650956154, 0.6227706074714661, -0.296037495136261, 0.025527896359562874, -0.3523178994655609, -0.0029912625905126333, 0.006254015490412712, 0.6339260935783386, -0.334524542093277, 0.0072037591598927975, 0.004044352564960718, 0.07479262351989746, -0.04138059914112091, -1.726723074913025, 0.12257465720176697, 1.0781728029251099, -0.32365795969963074, -0.1968528777360916, -0.09193099290132523, 0.024639567360281944, 0.17879265546798706, -0.13598500192165375, 0.030835412442684174, 1.2249196767807007, -0.11793676018714905, 0.07747801393270493, -0.03423893079161644]} +{"t": 9.2895, "q": [-0.363967627286911, -0.02633674629032612, 0.018427249044179916, 0.6227450370788574, -0.296037495136261, 0.025527896359562874, -0.35175544023513794, -0.003008306724950671, 0.006254015490412712, 0.6339260935783386, -0.3344917297363281, 0.007203449495136738, 0.004004176706075668, 0.07478507608175278, -0.041385218501091, -1.7368258237838745, 0.13011273741722107, 1.0951544046401978, -0.32109335064888, -0.19687685370445251, -0.09195496141910553, 0.02461559884250164, 0.17837320268154144, -0.13596104085445404, 0.030835412442684174, 1.225746512413025, -0.1179727166891098, 0.07746603339910507, -0.03423893079161644]} +{"t": 9.3062, "q": [-0.363711953163147, -0.026387879624962807, 0.018427249044179916, 0.622685432434082, -0.29606664180755615, 0.025535032153129578, -0.3507157266139984, -0.0029997846577316523, 0.006254015490412712, 0.6338834762573242, -0.33449587225914, 0.0072107561863958836, 0.004097919911146164, 0.07467856258153915, -0.04128257930278778, -1.7477434873580933, 0.13775867223739624, 1.1126154661178589, -0.3186725378036499, -0.19686487317085266, -0.09197892993688583, 0.024711472913622856, 0.17766614258289337, -0.13596104085445404, 0.03082342818379402, 1.2268850803375244, -0.1179487481713295, 0.07749000191688538, -0.034214962273836136]} +{"t": 9.323, "q": [-0.3630898594856262, -0.026456056162714958, 0.018387073650956154, 0.6226683855056763, -0.2960874140262604, 0.025527698919177055, -0.3497016131877899, -0.003067961661145091, 0.0060933125205338, 0.6338408589363098, -0.3344959318637848, 0.007225287612527609, 0.0039506093598902225, 0.07464827597141266, -0.04128137603402138, -1.758613109588623, 0.14559635519981384, 1.1308075189590454, -0.31626370549201965, -0.1968289166688919, -0.0920388475060463, 0.024687504395842552, 0.17689915001392365, -0.13593706488609314, 0.030787475407123566, 1.227819800376892, -0.1179487481713295, 0.07747801393270493, -0.034262899309396744]} +{"t": 9.34, "q": [-0.3622802495956421, -0.026507189497351646, 0.01829332858324051, 0.6225575804710388, -0.29615795612335205, 0.025476789101958275, -0.34877270460128784, -0.003144660498946905, 0.006066528614610434, 0.6336107850074768, -0.33456602692604065, 0.007291375193744898, 0.003964001312851906, 0.07462563365697861, -0.041295237839221954, -1.7687277793884277, 0.15258315205574036, 1.148999571800232, -0.3133755028247833, -0.19686487317085266, -0.09215869009494781, 0.024711472913622856, 0.17627596855163574, -0.13593706488609314, 0.03082342818379402, 1.2286826372146606, -0.1179487481713295, 0.07747801393270493, -0.03423893079161644]} +{"t": 9.3568, "q": [-0.3618200421333313, -0.026566844433546066, 0.01829332858324051, 0.6224893927574158, -0.2962454557418823, 0.025527091696858406, -0.348431795835495, -0.003229881636798382, 0.006120096426457167, 0.6334744095802307, -0.334664911031723, 0.007379582617431879, 0.0037095551379024982, 0.07453500479459763, -0.041340846568346024, -1.7798731327056885, 0.160432830452919, 1.168054461479187, -0.3103075325489044, -0.19684089720249176, -0.09211075305938721, 0.02473544143140316, 0.17559286952018738, -0.1359730213880539, 0.03081144392490387, 1.229689359664917, -0.1179487481713295, 0.07747801393270493, -0.03425091505050659]} +{"t": 9.3735, "q": [-0.361538827419281, -0.02658388763666153, 0.018373681232333183, 0.622404158115387, -0.2962746024131775, 0.025534190237522125, -0.34831249713897705, -0.0032810145057737827, 0.006320974789559841, 0.6334488391876221, -0.334673136472702, 0.007379664573818445, 0.0036827712319791317, 0.07451996207237244, -0.041359931230545044, -1.7923487424850464, 0.16781510412693024, 1.1879363059997559, -0.3087615668773651, -0.1968289166688919, -0.09209877252578735, 0.024711472913622856, 0.17507754266262054, -0.1359250843524933, 0.03081144392490387, 1.2302765846252441, -0.1179487481713295, 0.07745404541492462, -0.03425091505050659]} +{"t": 9.3902, "q": [-0.36156439781188965, -0.026609454303979874, 0.018346896395087242, 0.6223615407943726, -0.2962746024131775, 0.025534190237522125, -0.34836363792419434, -0.0034088462125509977, 0.006374542135745287, 0.6334488391876221, -0.3346443772315979, 0.007372112013399601, 0.003696163184940815, 0.07448966801166534, -0.04135872796177864, -1.804165244102478, 0.1748138964176178, 1.2079139947891235, -0.3081144392490387, -0.1968289166688919, -0.09217067807912827, 0.024771394208073616, 0.1747659593820572, -0.1359730213880539, 0.03081144392490387, 1.2307919263839722, -0.1179966852068901, 0.07745404541492462, -0.03422694653272629]} +{"t": 9.4071, "q": [-0.3615473508834839, -0.026677630841732025, 0.018346896395087242, 0.6223700642585754, -0.2962787449359894, 0.02552694082260132, -0.34839773178100586, -0.003519633784890175, 0.00642810994759202, 0.6334658861160278, -0.3346405327320099, 0.007422949653118849, 0.003803298342972994, 0.07445938140153885, -0.04135752469301224, -1.8159816265106201, 0.1817527562379837, 1.2284190654754639, -0.30755117535591125, -0.19684089720249176, -0.09221861511468887, 0.02479536272585392, 0.17463412880897522, -0.13603293895721436, 0.030799459666013718, 1.231175422668457, -0.1179966852068901, 0.07747801393270493, -0.034214962273836136]} +{"t": 9.4238, "q": [-0.36147063970565796, -0.02670319750905037, 0.01830672100186348, 0.6224126815795898, -0.2962746024131775, 0.025534190237522125, -0.34840625524520874, -0.003596332622691989, 0.006548637058585882, 0.633525550365448, -0.33463233709335327, 0.007422867696732283, 0.0036024199798703194, 0.07442928105592728, -0.04139569401741028, -1.8264918327331543, 0.1885957568883896, 1.2460358142852783, -0.3070598244667053, -0.19684089720249176, -0.09227853268384933, 0.024747425690293312, 0.1744423806667328, -0.13596104085445404, 0.030799459666013718, 1.2314870357513428, -0.1179727166891098, 0.07746603339910507, -0.03423893079161644]} +{"t": 9.4406, "q": [-0.36147063970565796, -0.026686152443289757, 0.018253153190016747, 0.6224212050437927, -0.2963119447231293, 0.025512345135211945, -0.34849146008491516, -0.0036048549227416515, 0.006709339562803507, 0.6335766911506653, -0.33466121554374695, 0.0074594831094145775, 0.003468500915914774, 0.0743689015507698, -0.041432663798332214, -1.8385958671569824, 0.19571438431739807, 1.2669602632522583, -0.3066163957118988, -0.19684089720249176, -0.09229052066802979, 0.024867268279194832, 0.17434650659561157, -0.1359969824552536, 0.030847394838929176, 1.2316547632217407, -0.11793676018714905, 0.07747801393270493, -0.03422694653272629]} +{"t": 9.4575, "q": [-0.36141952872276306, -0.026635020971298218, 0.018038883805274963, 0.6223871111869812, -0.29631608724594116, 0.025505095720291138, -0.3485681712627411, -0.0036133769899606705, 0.0068566505797207355, 0.6334999799728394, -0.33466559648513794, 0.007510419934988022, 0.0034283252898603678, 0.07424058020114899, -0.04151121899485588, -1.8499209880828857, 0.20253340899944305, 1.2864946126937866, -0.3061490058898926, -0.19681693613529205, -0.09245830029249191, 0.024843299761414528, 0.17429856956005096, -0.13598500192165375, 0.030799459666013718, 1.2317147254943848, -0.1179247796535492, 0.07746603339910507, -0.03423893079161644]} +{"t": 9.4743, "q": [-0.36129167675971985, -0.026617975905537605, 0.017931748181581497, 0.6223956346511841, -0.29633262753486633, 0.025476079434156418, -0.3486193120479584, -0.0036218990571796894, 0.00705752894282341, 0.6335170269012451, -0.3347069025039673, 0.007568955421447754, 0.003361365757882595, 0.07418780028820038, -0.04155340790748596, -1.8608266115188599, 0.2093644142150879, 1.3049862384796143, -0.30538201332092285, -0.19681693613529205, -0.09253020584583282, 0.024867268279194832, 0.17429856956005096, -0.13600897789001465, 0.030835412442684174, 1.2317745685577393, -0.11793676018714905, 0.07747801393270493, -0.03422694653272629]} +{"t": 9.491, "q": [-0.3612235188484192, -0.026575366035103798, 0.01778443716466427, 0.6223871111869812, -0.29635751247406006, 0.025447050109505653, -0.3486533761024475, -0.0036133769899606705, 0.007204839959740639, 0.6335340738296509, -0.3347150385379791, 0.007554505951702595, 0.003321190131828189, 0.07417270541191101, -0.041562650352716446, -1.8730264902114868, 0.2169983685016632, 1.3259825706481934, -0.30427947640419006, -0.19681693613529205, -0.09260211139917374, 0.02485528402030468, 0.17425063252449036, -0.13596104085445404, 0.03081144392490387, 1.2318345308303833, -0.11796072870492935, 0.07746603339910507, -0.03422694653272629]} +{"t": 9.5078, "q": [-0.3612149953842163, -0.026566844433546066, 0.017704086378216743, 0.6223019361495972, -0.29635336995124817, 0.025454318150877953, -0.34868746995925903, -0.0036218990571796894, 0.007311975117772818, 0.633457362651825, -0.3347439467906952, 0.007591139059513807, 0.003254230599850416, 0.07410477101802826, -0.041604235768318176, -1.8848190307617188, 0.2241889089345932, 1.3460681438446045, -0.3032728135585785, -0.19686487317085266, -0.0926380604505539, 0.024891234934329987, 0.17420269548892975, -0.1360449194908142, 0.03081144392490387, 1.2318824529647827, -0.1179727166891098, 0.07746603339910507, -0.03422694653272629]} +{"t": 9.5246, "q": [-0.3612149953842163, -0.026549799367785454, 0.01765051856637001, 0.6222848892211914, -0.29635751247406006, 0.025447050109505653, -0.3487386107444763, -0.0036133769899606705, 0.0074191102758049965, 0.6334658861160278, -0.33475223183631897, 0.007605752442032099, 0.0029060414526611567, 0.07405193150043488, -0.04163658246397972, -1.8967912197113037, 0.23278158903121948, 1.367615818977356, -0.3023020923137665, -0.19684089720249176, -0.09262607991695404, 0.024879250675439835, 0.1741188019514084, -0.135949045419693, 0.03082342818379402, 1.2319064140319824, -0.1179487481713295, 0.07744206488132477, -0.03422694653272629]} +{"t": 9.5413, "q": [-0.36124905943870544, -0.026507189497351646, 0.017529990524053574, 0.6222593188285828, -0.2965231239795685, 0.025229336693882942, -0.3489346206188202, -0.0036218990571796894, 0.007660164497792721, 0.633380651473999, -0.33484262228012085, 0.0076357158832252026, 0.0027051628567278385, 0.07402174174785614, -0.04165506735444069, -1.9097342491149902, 0.24115855991840363, 1.3892472982406616, -0.30188262462615967, -0.19681693613529205, -0.09267401695251465, 0.024879250675439835, 0.17410682141780853, -0.1359730213880539, 0.030847394838929176, 1.2319064140319824, -0.11793676018714905, 0.07745404541492462, -0.03422694653272629]} +{"t": 9.5582, "q": [-0.3612661063671112, -0.026507189497351646, 0.017556775361299515, 0.6221996545791626, -0.29652735590934753, 0.02525101788341999, -0.3490198254585266, -0.0036048549227416515, 0.007794083096086979, 0.6333380341529846, -0.3348468244075775, 0.007657572161406279, 0.002651595277711749, 0.07396890223026276, -0.041687414050102234, -1.9219461679458618, 0.24911609292030334, 1.4097882509231567, -0.3017028570175171, -0.19686487317085266, -0.09276989102363586, 0.02490321919322014, 0.17405888438224792, -0.1359969824552536, 0.03082342818379402, 1.2319064140319824, -0.11793676018714905, 0.07747801393270493, -0.03422694653272629]} +{"t": 9.5749, "q": [-0.3613087236881256, -0.026507189497351646, 0.01765051856637001, 0.6222167015075684, -0.2964487671852112, 0.02537432499229908, -0.3491135835647583, -0.00358781055547297, 0.007928002625703812, 0.6333209872245789, -0.33483463525772095, 0.007679246831685305, 0.0024908925406634808, 0.0738934725522995, -0.04174346476793289, -1.9345535039901733, 0.2583199739456177, 1.4305570125579834, -0.301595002412796, -0.1968528777360916, -0.09291369467973709, 0.024951156228780746, 0.17410682141780853, -0.13605691492557526, 0.030799459666013718, 1.2319064140319824, -0.11791279166936874, 0.07746603339910507, -0.03425091505050659]} +{"t": 9.5917, "q": [-0.3613683879375458, -0.026515711098909378, 0.017717478796839714, 0.6222081780433655, -0.29648199677467346, 0.0253597442060709, -0.3491987884044647, -0.0036048549227416515, 0.00798156950622797, 0.633312463760376, -0.33483463525772095, 0.007679246831685305, 0.0023703654296696186, 0.07382549345493317, -0.041775207966566086, -1.9474844932556152, 0.26688870787620544, 1.4518049955368042, -0.30153509974479675, -0.19684089720249176, -0.09304552525281906, 0.024879250675439835, 0.1741188019514084, -0.1360209584236145, 0.030799459666013718, 1.2319424152374268, -0.11791279166936874, 0.07747801393270493, -0.03422694653272629]} +{"t": 9.6084, "q": [-0.36147063970565796, -0.02652423270046711, 0.017771044746041298, 0.6221996545791626, -0.29649457335472107, 0.02539585903286934, -0.34928402304649353, -0.0036048549227416515, 0.008088705129921436, 0.6332102417945862, -0.3348182141780853, 0.007679082918912172, 0.0021025275345891714, 0.07374995946884155, -0.04181157425045967, -1.959888219833374, 0.275816947221756, 1.4717707633972168, -0.3013792932033539, -0.19686487317085266, -0.09312941133975983, 0.024951156228780746, 0.17405888438224792, -0.1360449194908142, 0.030799459666013718, 1.2320142984390259, -0.11796072870492935, 0.07747801393270493, -0.03423893079161644]} +{"t": 9.6251, "q": [-0.3614621162414551, -0.026541277766227722, 0.01781122200191021, 0.6222252249717712, -0.296440988779068, 0.02553354948759079, -0.34927549958229065, -0.003596332622691989, 0.008182448334991932, 0.6330994367599487, -0.3347693085670471, 0.007736735511571169, 0.002089135814458132, 0.07371976971626282, -0.04183005541563034, -1.9721720218658447, 0.2843736708164215, 1.4927071332931519, -0.30128341913223267, -0.19686487317085266, -0.09334512799978256, 0.024927187711000443, 0.17410682141780853, -0.13605691492557526, 0.030799459666013718, 1.2320023775100708, -0.11791279166936874, 0.07745404541492462, -0.03422694653272629]} +{"t": 9.6419, "q": [-0.36147916316986084, -0.026549799367785454, 0.017851397395133972, 0.6222252249717712, -0.2964494526386261, 0.025576913729310036, -0.34927549958229065, -0.0036133769899606705, 0.008195839822292328, 0.6331079602241516, -0.3347485363483429, 0.00768565246835351, 0.0021025275345891714, 0.07368957996368408, -0.04184854030609131, -1.9835331439971924, 0.2927626371383667, 1.5127447843551636, -0.3012474775314331, -0.19686487317085266, -0.09351290762424469, 0.02497512474656105, 0.17408286035060883, -0.1360449194908142, 0.030847394838929176, 1.2321580648422241, -0.11793676018714905, 0.07746603339910507, -0.03422694653272629]} +{"t": 9.6586, "q": [-0.36174336075782776, -0.026566844433546066, 0.017838004976511, 0.6222934126853943, -0.29644960165023804, 0.02562032826244831, -0.3493522107601166, -0.0036218990571796894, 0.008155664429068565, 0.6329886317253113, -0.33472007513046265, 0.007736244238913059, 0.002089135814458132, 0.07357601821422577, -0.04184895381331444, -1.9958049058914185, 0.30223017930984497, 1.5343043804168701, -0.30121150612831116, -0.19686487317085266, -0.09368068724870682, 0.02497512474656105, 0.1741188019514084, -0.1359969824552536, 0.03082342818379402, 1.2321821451187134, -0.11793676018714905, 0.07747801393270493, -0.03422694653272629]} +{"t": 9.6753, "q": [-0.3618626594543457, -0.02658388763666153, 0.017851397395133972, 0.6222848892211914, -0.296420693397522, 0.025685574859380722, -0.3494033217430115, -0.0036304211243987083, 0.008128880523145199, 0.6328437924385071, -0.3346550464630127, 0.007851877249777317, 0.0022230546455830336, 0.07340192049741745, -0.0418568029999733, -2.007309675216675, 0.3122130334377289, 1.5556483268737793, -0.3011276423931122, -0.19686487317085266, -0.09383648633956909, 0.024999093264341354, 0.17410682141780853, -0.13598500192165375, 0.030835412442684174, 1.2322899103164673, -0.1179727166891098, 0.07747801393270493, -0.03422694653272629]} +{"t": 9.6921, "q": [-0.36198198795318604, -0.026600932702422142, 0.017851397395133972, 0.6223104596138, -0.2964249849319458, 0.025721721351146698, -0.3494033217430115, -0.0036218990571796894, 0.008115489035844803, 0.6327159404754639, -0.33464691042900085, 0.007866326719522476, 0.002236446598544717, 0.07311372458934784, -0.04175679385662079, -2.019413948059082, 0.32292693853378296, 1.5769681930541992, -0.30100777745246887, -0.19681693613529205, -0.09405220299959183, 0.024987109005451202, 0.1741188019514084, -0.1359969824552536, 0.030799459666013718, 1.2322899103164673, -0.1179487481713295, 0.07747801393270493, -0.03422694653272629]} +{"t": 9.7088, "q": [-0.3620842397212982, -0.026635020971298218, 0.017864787951111794, 0.6223785877227783, -0.2964418828487396, 0.025794001296162605, -0.34941184520721436, -0.00364746549166739, 0.008088705129921436, 0.6326733231544495, -0.33461833000183105, 0.00788783747702837, 0.002276622224599123, 0.07268109172582626, -0.04154793545603752, -2.029900074005127, 0.33313748240470886, 1.5971616506576538, -0.30103176832199097, -0.19684089720249176, -0.09457950294017792, 0.025011077523231506, 0.17405888438224792, -0.13598500192165375, 0.03081144392490387, 1.232373833656311, -0.1179487481713295, 0.07747801393270493, -0.03422694653272629]} +{"t": 9.7256, "q": [-0.36221206188201904, -0.02664354257285595, 0.017878180369734764, 0.6224126815795898, -0.29646697640419006, 0.025837300345301628, -0.34942036867141724, -0.0036815537605434656, 0.008048529736697674, 0.6325284242630005, -0.3345940113067627, 0.007945735938847065, 0.0024373249616473913, 0.07215767353773117, -0.04135531187057495, -2.0410335063934326, 0.3433121144771576, 1.6176667213439941, -0.3010197579860687, -0.19684089720249176, -0.09531054645776749, 0.025011077523231506, 0.17405888438224792, -0.1359730213880539, 0.03081144392490387, 1.232373833656311, -0.11796072870492935, 0.07745404541492462, -0.03422694653272629]} +{"t": 9.7423, "q": [-0.3621779680252075, -0.026677630841732025, 0.017891572788357735, 0.6225405335426331, -0.29646727442741394, 0.02592412941157818, -0.34931811690330505, -0.0036645096261054277, 0.00806192122399807, 0.6325539946556091, -0.33451226353645325, 0.008003078401088715, 0.0026783791836351156, 0.07164189219474792, -0.041177742183208466, -2.04984188079834, 0.35231226682662964, 1.63630211353302, -0.30103176832199097, -0.1968528777360916, -0.09614943712949753, 0.025011077523231506, 0.17405888438224792, -0.13596104085445404, 0.03085937909781933, 1.2325056791305542, -0.1179966852068901, 0.07747801393270493, -0.03422694653272629]} +{"t": 9.759, "q": [-0.36230581998825073, -0.02670319750905037, 0.017878180369734764, 0.6227279901504517, -0.296492338180542, 0.025952979922294617, -0.3493436872959137, -0.003715642262250185, 0.00798156950622797, 0.6325454711914062, -0.3345123529434204, 0.00801760982722044, 0.0028122980147600174, 0.07105067372322083, -0.04105628281831741, -2.058542251586914, 0.36167192459106445, 1.6561239957809448, -0.30116358399391174, -0.19684089720249176, -0.09696436673402786, 0.024987109005451202, 0.17405888438224792, -0.13591310381889343, 0.030835412442684174, 1.2324936389923096, -0.11796072870492935, 0.07747801393270493, -0.03422694653272629]} +{"t": 9.7758, "q": [-0.36233991384506226, -0.026720240712165833, 0.017918355762958527, 0.6228558421134949, -0.29649659991264343, 0.025989126414060593, -0.3492414057254791, -0.0037326866295188665, 0.007968178018927574, 0.6325539946556091, -0.3345124125480652, 0.008032141253352165, 0.0027855143416672945, 0.07026152312755585, -0.040740951895713806, -2.067650318145752, 0.37125930190086365, 1.6763653755187988, -0.3015231192111969, -0.19684089720249176, -0.09798302501440048, 0.025011077523231506, 0.173939049243927, -0.1359969824552536, 0.030847394838929176, 1.2324696779251099, -0.1179247796535492, 0.07747801393270493, -0.03423893079161644]} +{"t": 9.7926, "q": [-0.3623313903808594, -0.026754330843687057, 0.017931748181581497, 0.6229410767555237, -0.29649242758750916, 0.025981910526752472, -0.3492158353328705, -0.0037326866295188665, 0.007941394113004208, 0.6325880885124207, -0.334389865398407, 0.00813267007470131, 0.0027721223887056112, 0.06962409615516663, -0.04049069434404373, -2.0757997035980225, 0.37969622015953064, 1.694809079170227, -0.30171486735343933, -0.19687685370445251, -0.09886986017227173, 0.025070998817682266, 0.17383117973804474, -0.135949045419693, 0.030847394838929176, 1.2324696779251099, -0.11796072870492935, 0.07747801393270493, -0.03422694653272629]} +{"t": 9.8093, "q": [-0.36228877305984497, -0.02677137404680252, 0.018012098968029022, 0.6230007410049438, -0.2964841425418854, 0.025996409356594086, -0.3491221070289612, -0.0037582528311759233, 0.008021745830774307, 0.6326477527618408, -0.3343490958213806, 0.008175873197615147, 0.002718554809689522, 0.06897889077663422, -0.04020582512021065, -2.0826425552368164, 0.3888401687145233, 1.714810848236084, -0.3014751672744751, -0.19687685370445251, -0.09955295920372009, 0.025106951594352722, 0.17380721867084503, -0.13593706488609314, 0.030847394838929176, 1.2324696779251099, -0.11796072870492935, 0.07746603339910507, -0.03425091505050659]} +{"t": 9.8262, "q": [-0.36226320266723633, -0.02677137404680252, 0.018012098968029022, 0.6232649087905884, -0.29649659991264343, 0.025989126414060593, -0.34900277853012085, -0.003783819265663624, 0.00798156950622797, 0.6326818466186523, -0.3342920243740082, 0.008247975260019302, 0.0028122980147600174, 0.06865216791629791, -0.0399918295443058, -2.0890541076660156, 0.3979361951351166, 1.7333024740219116, -0.3014512062072754, -0.19687685370445251, -0.10021208971738815, 0.025082983076572418, 0.17381919920444489, -0.13588912785053253, 0.030847394838929176, 1.2324457168579102, -0.11796072870492935, 0.07745404541492462, -0.03423893079161644]} +{"t": 9.8429, "q": [-0.3622802495956421, -0.026805462315678596, 0.018012098968029022, 0.6235120296478271, -0.2964800298213959, 0.026003658771514893, -0.3489346206188202, -0.0037923413328826427, 0.007954785600304604, 0.632775604724884, -0.33421871066093445, 0.008348994888365269, 0.0027989062946289778, 0.06825689971446991, -0.03970165178179741, -2.094590902328491, 0.4067685604095459, 1.7506077289581299, -0.3014751672744751, -0.1968528777360916, -0.1011228933930397, 0.025118935853242874, 0.17375928163528442, -0.13581722974777222, 0.030895331874489784, 1.2324696779251099, -0.1179247796535492, 0.07745404541492462, -0.03422694653272629]} +{"t": 9.8596, "q": [-0.36229729652404785, -0.026779895648360252, 0.0179987084120512, 0.6239125728607178, -0.2964841425418854, 0.025996409356594086, -0.3488749563694, -0.003783819265663624, 0.007887826301157475, 0.6329289674758911, -0.33417391777038574, 0.008413953706622124, 0.002839081920683384, 0.06773224472999573, -0.039294060319662094, -2.1009786128997803, 0.41616421937942505, 1.7686798572540283, -0.3014751672744751, -0.1968528777360916, -0.10274076461791992, 0.025106951594352722, 0.1736873835325241, -0.13566142320632935, 0.030919300392270088, 1.2324217557907104, -0.11793676018714905, 0.07746603339910507, -0.034214962273836136]} +{"t": 9.8766, "q": [-0.3623654842376709, -0.026779895648360252, 0.01795853115618229, 0.6241427063941956, -0.296475887298584, 0.026010924950242043, -0.3488749563694, -0.003775297198444605, 0.007847650907933712, 0.6330994367599487, -0.3341290056705475, 0.008449850603938103, 0.0027855143416672945, 0.06719231605529785, -0.03885631635785103, -2.107450008392334, 0.4253201484680176, 1.7858293056488037, -0.3014751672744751, -0.19687685370445251, -0.10538927465677261, 0.025178857147693634, 0.173567533493042, -0.1354217380285263, 0.030907316133379936, 1.2324098348617554, -0.11796072870492935, 0.07749000191688538, -0.03422694653272629]} +{"t": 9.8935, "q": [-0.362356960773468, -0.026754330843687057, 0.01797192357480526, 0.6242023706436157, -0.2964675724506378, 0.02601095847785473, -0.3488749563694, -0.003775297198444605, 0.007887826301157475, 0.6330994367599487, -0.3340516984462738, 0.008572625927627087, 0.002731946762651205, 0.06675919145345688, -0.03857991099357605, -2.112447500228882, 0.43448808789253235, 1.8022836446762085, -0.3014512062072754, -0.19687685370445251, -0.10843326896429062, 0.025238778442144394, 0.17354357242584229, -0.1351461112499237, 0.03093128465116024, 1.2324098348617554, -0.11796072870492935, 0.07745404541492462, -0.03423893079161644]} +{"t": 9.9102, "q": [-0.36229729652404785, -0.026728764176368713, 0.01795853115618229, 0.6243216395378113, -0.29646748304367065, 0.02598200924694538, -0.34872156381607056, -0.003775297198444605, 0.007847650907933712, 0.6330568194389343, -0.3339907228946686, 0.008681033737957478, 0.002986392704769969, 0.06644003093242645, -0.038371581584215164, -2.117037296295166, 0.44262537360191345, 1.8177553415298462, -0.30169087648391724, -0.19687685370445251, -0.11112972348928452, 0.025226794183254242, 0.1736634075641632, -0.13497832417488098, 0.03093128465116024, 1.2324817180633545, -0.11796072870492935, 0.07745404541492462, -0.03422694653272629]} +{"t": 9.9269, "q": [-0.3623313903808594, -0.026737285777926445, 0.01795853115618229, 0.6244409680366516, -0.2964758276939392, 0.025996441021561623, -0.3487471342086792, -0.003783819265663624, 0.007834259420633316, 0.633082389831543, -0.33395805954933167, 0.008709769695997238, 0.00287925754673779, 0.0663108229637146, -0.038283269852399826, -2.12081241607666, 0.4517933130264282, 1.8328673839569092, -0.3019545376300812, -0.19687685370445251, -0.11291536688804626, 0.025226794183254242, 0.1736634075641632, -0.13494238257408142, 0.030955253168940544, 1.2324936389923096, -0.11798469722270966, 0.07743007689714432, -0.03422694653272629]} +{"t": 9.9438, "q": [-0.36230581998825073, -0.026720240712165833, 0.017931748181581497, 0.6244580149650574, -0.29647988080978394, 0.02596026100218296, -0.34872156381607056, -0.0037923413328826427, 0.007887826301157475, 0.6330312490463257, -0.33393773436546326, 0.008745893836021423, 0.0030399602837860584, 0.0663108229637146, -0.038283269852399826, -2.1248390674591064, 0.46025416254997253, 1.8479316234588623, -0.30208635330200195, -0.19687685370445251, -0.11412577331066132, 0.025226794183254242, 0.1736873835325241, -0.13491840660572052, 0.030907316133379936, 1.232529640197754, -0.1179727166891098, 0.07745404541492462, -0.03422694653272629]} +{"t": 9.9605, "q": [-0.36234843730926514, -0.026737285777926445, 0.017851397395133972, 0.6244409680366516, -0.2965337634086609, 0.02590939961373806, -0.3487556576728821, -0.003826429834589362, 0.007941394113004208, 0.633005678653717, -0.33396685123443604, 0.008826120756566525, 0.002865865593776107, 0.06632598489522934, -0.0382838137447834, -2.1292014122009277, 0.46884685754776, 1.8619650602340698, -0.30211034417152405, -0.19691281020641327, -0.11518038809299469, 0.025262746959924698, 0.17369936406612396, -0.13491840660572052, 0.030919300392270088, 1.2325655221939087, -0.11793676018714905, 0.07746603339910507, -0.03422694653272629]} +{"t": 9.9772, "q": [-0.36226320266723633, -0.0267117191106081, 0.017851397395133972, 0.624415397644043, -0.2965254485607147, 0.025909433141350746, -0.3487556576728821, -0.003834951901808381, 0.007968178018927574, 0.6329715847969055, -0.3339627981185913, 0.008833363652229309, 0.0027989062946289778, 0.06636393815279007, -0.03829994425177574, -2.1337194442749023, 0.47745153307914734, 1.875447392463684, -0.30211034417152405, -0.19691281020641327, -0.11631888896226883, 0.02527473121881485, 0.17371134459972382, -0.13495436310768127, 0.030883347615599632, 1.2324817180633545, -0.11793676018714905, 0.07744206488132477, -0.03422694653272629]} +{"t": 9.994, "q": [-0.3622802495956421, -0.026677630841732025, 0.017851397395133972, 0.6243813037872314, -0.29654204845428467, 0.025894902646541595, -0.3487897515296936, -0.003826429834589362, 0.00799496192485094, 0.6329630613327026, -0.33397093415260315, 0.008818896487355232, 0.0029328251257538795, 0.06636393815279007, -0.03829994425177574, -2.13916015625, 0.48453420400619507, 1.8885821104049683, -0.3022181987762451, -0.19687685370445251, -0.11742144078016281, 0.025358621031045914, 0.17374730110168457, -0.13491840660572052, 0.030919300392270088, 1.232541561126709, -0.1179727166891098, 0.07746603339910507, -0.03422694653272629]} +{"t": 10.0107, "q": [-0.3623313903808594, -0.026660587638616562, 0.01778443716466427, 0.6242875456809998, -0.29654204845428467, 0.025894902646541595, -0.3488408625125885, -0.003826429834589362, 0.007968178018927574, 0.632937490940094, -0.33397093415260315, 0.008818896487355232, 0.002839081920683384, 0.06637135148048401, -0.03826575353741646, -2.1451284885406494, 0.4928153157234192, 1.9011296033859253, -0.3023260533809662, -0.1968528777360916, -0.11855994164943695, 0.025358621031045914, 0.17373532056808472, -0.13495436310768127, 0.030919300392270088, 1.232529640197754, -0.11796072870492935, 0.07744206488132477, -0.03423893079161644]} +{"t": 10.0276, "q": [-0.3624251186847687, -0.02664354257285595, 0.017704086378216743, 0.6242278814315796, -0.29654204845428467, 0.025894902646541595, -0.34895166754722595, -0.003817907767370343, 0.007954785600304604, 0.6328693628311157, -0.33397093415260315, 0.008818896487355232, 0.002946217078715563, 0.06637904793024063, -0.03829064220190048, -2.1497302055358887, 0.49988600611686707, 1.9111003875732422, -0.3023020923137665, -0.19691281020641327, -0.11989019066095352, 0.02540655806660652, 0.17375928163528442, -0.13495436310768127, 0.030919300392270088, 1.232541561126709, -0.11796072870492935, 0.07744206488132477, -0.03423893079161644]} +{"t": 10.0443, "q": [-0.362356960773468, -0.02664354257285595, 0.017596950754523277, 0.6241341829299927, -0.29654204845428467, 0.025894902646541595, -0.34890905022621155, -0.0038008634001016617, 0.007887826301157475, 0.6327670812606812, -0.33399146795272827, 0.008826385252177715, 0.00321405497379601, 0.06642455607652664, -0.03830211982131004, -2.15374493598938, 0.5071364641189575, 1.9218263626098633, -0.3021462857723236, -0.1968528777360916, -0.12112456560134888, 0.02539457380771637, 0.17392705380916595, -0.1350502371788025, 0.030895331874489784, 1.2325655221939087, -0.1179247796535492, 0.07745404541492462, -0.03423893079161644]} +{"t": 10.061, "q": [-0.362356960773468, -0.02664354257285595, 0.017543382942676544, 0.6240659952163696, -0.29654207825660706, 0.025909367948770523, -0.3489346206188202, -0.003826429834589362, 0.007807475049048662, 0.6327926516532898, -0.3340282738208771, 0.008804937824606895, 0.0032810145057737827, 0.06646993011236191, -0.0382840558886528, -2.1581432819366455, 0.5155373811721802, 1.931593418121338, -0.3023260533809662, -0.19687685370445251, -0.12319783866405487, 0.025418542325496674, 0.17387911677360535, -0.13511015474796295, 0.030895331874489784, 1.2326973676681519, -0.11796072870492935, 0.07745404541492462, -0.03423893079161644]} +{"t": 10.0779, "q": [-0.3623143434524536, -0.026609454303979874, 0.01746303215622902, 0.6239040493965149, -0.29651305079460144, 0.025931181386113167, -0.3489346206188202, -0.0038093857001513243, 0.0077672996558249, 0.6327329874038696, -0.3340240716934204, 0.008783100172877312, 0.0034551091957837343, 0.06652290374040604, -0.03827119246125221, -2.1618824005126953, 0.5231474041938782, 1.940162181854248, -0.30278146266937256, -0.1968528777360916, -0.12675714492797852, 0.02539457380771637, 0.1739150732755661, -0.13521800935268402, 0.030919300392270088, 1.2327094078063965, -0.1179247796535492, 0.07745404541492462, -0.03422694653272629]} +{"t": 10.0946, "q": [-0.36239102482795715, -0.02659240923821926, 0.017409464344382286, 0.6238273978233337, -0.29650890827178955, 0.025938430801033974, -0.3489687144756317, -0.0038008634001016617, 0.0076869479380548, 0.6326818466186523, -0.33404454588890076, 0.008776038885116577, 0.0035220684949308634, 0.0665755644440651, -0.03819938376545906, -2.165956974029541, 0.530421793460846, 1.9466816186904907, -0.30321288108825684, -0.19687685370445251, -0.13001686334609985, 0.02540655806660652, 0.1738671362400055, -0.13515809178352356, 0.03093128465116024, 1.2327333688735962, -0.11793676018714905, 0.07747801393270493, -0.03419099375605583]} +{"t": 10.1113, "q": [-0.3624165952205658, -0.026558320969343185, 0.01731572113931179, 0.6236739754676819, -0.2965047359466553, 0.025931213051080704, -0.34904539585113525, -0.003783819265663624, 0.0076467725448310375, 0.6325710415840149, -0.33403220772743225, 0.008768650703132153, 0.0034283252898603678, 0.0667719766497612, -0.03809848800301552, -2.169732093811035, 0.5376722812652588, 1.9519426822662354, -0.30348852276802063, -0.19687685370445251, -0.1327732354402542, 0.025430526584386826, 0.17387911677360535, -0.13524198532104492, 0.030883347615599632, 1.2327094078063965, -0.11796072870492935, 0.07745404541492462, -0.034202978014945984]} +{"t": 10.1281, "q": [-0.36233991384506226, -0.026549799367785454, 0.017396071925759315, 0.6234268546104431, -0.2965047359466553, 0.025931213051080704, -0.3490368723869324, -0.003775297198444605, 0.007700339891016483, 0.6324688196182251, -0.3340443968772888, 0.008746976032853127, 0.0035220684949308634, 0.06704395264387131, -0.03796105459332466, -2.1728718280792236, 0.543940007686615, 1.9570119380950928, -0.30358439683914185, -0.1968528777360916, -0.1339237242937088, 0.02540655806660652, 0.1739150732755661, -0.13526594638824463, 0.030907316133379936, 1.2327094078063965, -0.1179247796535492, 0.07744206488132477, -0.03419099375605583]} +{"t": 10.1448, "q": [-0.3623739778995514, -0.026575366035103798, 0.017396071925759315, 0.6232819557189941, -0.29649651050567627, 0.025960195809602737, -0.3490368723869324, -0.0037923413328826427, 0.007660164497792721, 0.6324432492256165, -0.3340812623500824, 0.008740060962736607, 0.0036024199798703194, 0.06742148101329803, -0.037729207426309586, -2.1775097846984863, 0.5508189797401428, 1.962572693824768, -0.30353644490242004, -0.1968528777360916, -0.1345468908548355, 0.025418542325496674, 0.1739150732755661, -0.13536182045936584, 0.030895331874489784, 1.2327452898025513, -0.1179487481713295, 0.07744206488132477, -0.03422694653272629]} +{"t": 10.1615, "q": [-0.3623654842376709, -0.026609454303979874, 0.017436247318983078, 0.6230518817901611, -0.29647988080978394, 0.02596026100218296, -0.3490709662437439, -0.0037923413328826427, 0.007660164497792721, 0.6323665380477905, -0.33406877517700195, 0.008703608997166157, 0.0036827712319791317, 0.0677461102604866, -0.03751998767256737, -2.1829147338867188, 0.5574941635131836, 1.9672465324401855, -0.30360835790634155, -0.19687685370445251, -0.1348225325345993, 0.02540655806660652, 0.17387911677360535, -0.135349839925766, 0.030883347615599632, 1.2327333688735962, -0.1179247796535492, 0.07741809636354446, -0.03419099375605583]} +{"t": 10.1782, "q": [-0.3623739778995514, -0.02664354257285595, 0.01746303215622902, 0.6228217482566833, -0.29645904898643494, 0.02595309354364872, -0.3490794897079468, -0.003783819265663624, 0.007619988638907671, 0.6322301626205444, -0.3340562880039215, 0.00866713933646679, 0.003803298342972994, 0.06781405955553055, -0.037478256970644, -2.187840223312378, 0.5629469752311707, 1.970781922340393, -0.30462703108787537, -0.19687685370445251, -0.13518206775188446, 0.025418542325496674, 0.17401094734668732, -0.1354217380285263, 0.030895331874489784, 1.2327933311462402, -0.11793676018714905, 0.07745404541492462, -0.03419099375605583]} +{"t": 10.195, "q": [-0.3622717261314392, -0.026635020971298218, 0.017516599968075752, 0.6226342916488647, -0.29645073413848877, 0.025953125208616257, -0.34895166754722595, -0.0037497307639569044, 0.007526245433837175, 0.6320682764053345, -0.33406034111976624, 0.008659915067255497, 0.003964001312851906, 0.06780656427145004, -0.03749272599816322, -2.1914353370666504, 0.5685915946960449, 1.9732027053833008, -0.30490267276763916, -0.1968528777360916, -0.13521800935268402, 0.025418542325496674, 0.1742626130580902, -0.1353738009929657, 0.030907316133379936, 1.2328652143478394, -0.11796072870492935, 0.07745404541492462, -0.03419099375605583]} +{"t": 10.2117, "q": [-0.3621864914894104, -0.026635020971298218, 0.017529990524053574, 0.6226257681846619, -0.29645904898643494, 0.02595309354364872, -0.34880679845809937, -0.0037497307639569044, 0.007405718322843313, 0.632034182548523, -0.334101140499115, 0.008616729639470577, 0.004205055069178343, 0.06782176345586777, -0.037503115832805634, -2.1945154666900635, 0.5736489295959473, 1.976186752319336, -0.3049745559692383, -0.1968528777360916, -0.13523000478744507, 0.02539457380771637, 0.17445436120033264, -0.13548167049884796, 0.03085937909781933, 1.2330089807510376, -0.11793676018714905, 0.07746603339910507, -0.034202978014945984]} +{"t": 10.2284, "q": [-0.36224615573883057, -0.026660587638616562, 0.017529990524053574, 0.622617244720459, -0.29645904898643494, 0.02595309354364872, -0.3487897515296936, -0.0037923413328826427, 0.007178056053817272, 0.632034182548523, -0.3341338038444519, 0.008587975986301899, 0.004888041876256466, 0.06792017072439194, -0.037491992115974426, -2.1988296508789062, 0.5801323652267456, 1.9802014827728271, -0.30540600419044495, -0.1968528777360916, -0.13520602881908417, 0.025382589548826218, 0.17445436120033264, -0.13533785939216614, 0.030919300392270088, 1.2335482835769653, -0.11796072870492935, 0.07747801393270493, -0.034214962273836136]} +{"t": 10.2452, "q": [-0.36226320266723633, -0.026686152443289757, 0.017690693959593773, 0.6226257681846619, -0.2964465618133545, 0.025945909321308136, -0.3487045168876648, -0.003775297198444605, 0.006963785737752914, 0.6320086121559143, -0.33412960171699524, 0.008566138334572315, 0.005396933760493994, 0.06801067292690277, -0.03741668537259102, -2.2034196853637695, 0.5869274139404297, 1.9839645624160767, -0.3067602217197418, -0.19686487317085266, -0.13519404828548431, 0.025382589548826218, 0.17427460849285126, -0.13546967506408691, 0.030895331874489784, 1.2337759733200073, -0.1179487481713295, 0.07751397043466568, -0.03422694653272629]} +{"t": 10.2619, "q": [-0.36229729652404785, -0.026660587638616562, 0.017677301540970802, 0.6226342916488647, -0.29643818736076355, 0.025931477546691895, -0.34867894649505615, -0.003783819265663624, 0.006655772216618061, 0.631957471370697, -0.3341417908668518, 0.008544445969164371, 0.005959393456578255, 0.06800312548875809, -0.037421323359012604, -2.208177328109741, 0.5936505794525146, 1.988290786743164, -0.309061199426651, -0.1968528777360916, -0.13520602881908417, 0.025370605289936066, 0.1741427779197693, -0.13549365103244781, 0.030955253168940544, 1.2337520122528076, -0.11796072870492935, 0.07746603339910507, -0.03417900949716568]} +{"t": 10.2786, "q": [-0.36221206188201904, -0.026660587638616562, 0.017704086378216743, 0.6226428151130676, -0.2964339554309845, 0.025909794494509697, -0.34844884276390076, -0.003775297198444605, 0.0064013260416686535, 0.6319319009780884, -0.334133505821228, 0.008529813960194588, 0.006160271819680929, 0.0679955780506134, -0.03742595762014389, -2.211904525756836, 0.6008171439170837, 1.9920778274536133, -0.3116138279438019, -0.19687685370445251, -0.13521800935268402, 0.025370605289936066, 0.1739869862794876, -0.1354217380285263, 0.03093128465116024, 1.2338119745254517, -0.11796072870492935, 0.07747801393270493, -0.034202978014945984]} +{"t": 10.2955, "q": [-0.36221206188201904, -0.02665206417441368, 0.01765051856637001, 0.6227279901504517, -0.2964380383491516, 0.02588806301355362, -0.34835511445999146, -0.003766775131225586, 0.006187055725604296, 0.6319233775138855, -0.33417436480522156, 0.008501178584992886, 0.006320974789559841, 0.0679955780506134, -0.03742595762014389, -2.2151761054992676, 0.609086275100708, 1.9962602853775024, -0.3135552704334259, -0.1968528777360916, -0.13530190289020538, 0.025370605289936066, 0.1738431751728058, -0.13545769453048706, 0.03093128465116024, 1.233799934387207, -0.11796072870492935, 0.07747801393270493, -0.03422694653272629]} +{"t": 10.3124, "q": [-0.3622205853462219, -0.026660587638616562, 0.017677301540970802, 0.6227706074714661, -0.2964503765106201, 0.02585184946656227, -0.3482869267463684, -0.003783819265663624, 0.005932609550654888, 0.6319489479064941, -0.33415788412094116, 0.00848646555095911, 0.006709339562803507, 0.0679653212428093, -0.03743467479944229, -2.218735456466675, 0.6177868247032166, 2.001617193222046, -0.3142983019351959, -0.1968528777360916, -0.13531388342380524, 0.025358621031045914, 0.17383117973804474, -0.13540975749492645, 0.03093128465116024, 1.2338238954544067, -0.1179966852068901, 0.07747801393270493, -0.034214962273836136]} +{"t": 10.3292, "q": [-0.3622802495956421, -0.026609454303979874, 0.01765051856637001, 0.6228387951850891, -0.29644620418548584, 0.02584463357925415, -0.34830397367477417, -0.0038008634001016617, 0.00579869095236063, 0.631957471370697, -0.3341372609138489, 0.008464463986456394, 0.006655772216618061, 0.06793492287397385, -0.03741389885544777, -2.222498655319214, 0.6270026564598083, 2.006890296936035, -0.3145020306110382, -0.19684089720249176, -0.13533785939216614, 0.025382589548826218, 0.17378325760364532, -0.1354217380285263, 0.030907316133379936, 1.2337759733200073, -0.11796072870492935, 0.07745404541492462, -0.03422694653272629]} +{"t": 10.3459, "q": [-0.362356960773468, -0.026600932702422142, 0.017610343173146248, 0.622847318649292, -0.2964750826358795, 0.02577940560877323, -0.34831249713897705, -0.0037923413328826427, 0.00571833923459053, 0.631957471370697, -0.3341291546821594, 0.008478913456201553, 0.006655772216618061, 0.06790456920862198, -0.03740295022726059, -2.2256743907928467, 0.6358949542045593, 2.012211322784424, -0.3148735463619232, -0.1968528777360916, -0.1353738009929657, 0.02539457380771637, 0.17375928163528442, -0.1354217380285263, 0.030883347615599632, 1.2338238954544067, -0.1179487481713295, 0.07747801393270493, -0.034202978014945984]} +{"t": 10.3626, "q": [-0.3623654842376709, -0.026609454303979874, 0.017543382942676544, 0.6228558421134949, -0.29649174213409424, 0.025779321789741516, -0.3483295440673828, -0.003775297198444605, 0.0057719070464372635, 0.6319233775138855, -0.33412930369377136, 0.008507976308465004, 0.006347758695483208, 0.06788946688175201, -0.03741222247481346, -2.226501226425171, 0.6442839503288269, 2.0164897441864014, -0.3149334490299225, -0.19687685370445251, -0.135349839925766, 0.02539457380771637, 0.17374730110168457, -0.13538579642772675, 0.030883347615599632, 1.233799934387207, -0.11796072870492935, 0.07745404541492462, -0.03422694653272629]} +{"t": 10.3793, "q": [-0.36234843730926514, -0.026575366035103798, 0.01746303215622902, 0.622847318649292, -0.2965001165866852, 0.02579377219080925, -0.34840625524520874, -0.003783819265663624, 0.00605313666164875, 0.6319489479064941, -0.33412131667137146, 0.008551506325602531, 0.006160271819680929, 0.06788946688175201, -0.03741222247481346, -2.2263333797454834, 0.653331995010376, 2.0208518505096436, -0.3148975074291229, -0.1968528777360916, -0.135349839925766, 0.025382589548826218, 0.17372332513332367, -0.13540975749492645, 0.03085937909781933, 1.2336920499801636, -0.11793676018714905, 0.07744206488132477, -0.034214962273836136]} +{"t": 10.3961, "q": [-0.36234843730926514, -0.02658388763666153, 0.017355896532535553, 0.6228387951850891, -0.29653725028038025, 0.025714026764035225, -0.34845736622810364, -0.0037923413328826427, 0.006307582836598158, 0.6319233775138855, -0.33410099148750305, 0.008587630465626717, 0.0061736637726426125, 0.0679197683930397, -0.037413340061903, -2.227100372314453, 0.6627875566482544, 2.026017189025879, -0.31483757495880127, -0.19684089720249176, -0.13536182045936584, 0.025358621031045914, 0.17375928163528442, -0.1354217380285263, 0.03087136335670948, 1.233728051185608, -0.1179487481713295, 0.07745404541492462, -0.03423893079161644]} +{"t": 10.4128, "q": [-0.3622717261314392, -0.026635020971298218, 0.017235370352864265, 0.6228132247924805, -0.2965579926967621, 0.02569226361811161, -0.34844884276390076, -0.0038519962690770626, 0.0064013260416686535, 0.6319233775138855, -0.33408066630363464, 0.00862377230077982, 0.006441501900553703, 0.067897267639637, -0.03745674714446068, -2.229341506958008, 0.6734175682067871, 2.0325844287872314, -0.31446605920791626, -0.1968528777360916, -0.135349839925766, 0.02539457380771637, 0.17403492331504822, -0.13540975749492645, 0.030847394838929176, 1.2337640523910522, -0.11793676018714905, 0.07746603339910507, -0.03422694653272629]} +{"t": 10.4296, "q": [-0.362101286649704, -0.026694675907492638, 0.01714162714779377, 0.6228643655776978, -0.29652485251426697, 0.025735775008797646, -0.3483721613883972, -0.004039482679218054, 0.006294190883636475, 0.6319319009780884, -0.33409300446510315, 0.008631179109215736, 0.0067896912805736065, 0.0678747147321701, -0.03749031946063042, -2.230863571166992, 0.6829330325126648, 2.0386126041412354, -0.3143582046031952, -0.1968528777360916, -0.13533785939216614, 0.025382589548826218, 0.17408286035060883, -0.13545769453048706, 0.03082342818379402, 1.2339438199996948, -0.1179727166891098, 0.07747801393270493, -0.034202978014945984]} +{"t": 10.4464, "q": [-0.3620586693286896, -0.026720240712165833, 0.01699431613087654, 0.6228984594345093, -0.29656633734703064, 0.025706697255373, -0.348389208316803, -0.004141747951507568, 0.006160271819680929, 0.6318978071212769, -0.3341137170791626, 0.008667713031172752, 0.0068030827678740025, 0.06784456223249435, -0.0375186987221241, -2.2313308715820312, 0.6933832764625549, 2.0441014766693115, -0.3141784369945526, -0.1968528777360916, -0.13533785939216614, 0.025370605289936066, 0.17404690384864807, -0.13543373346328735, 0.03085937909781933, 1.2339917421340942, -0.1179966852068901, 0.07747801393270493, -0.03422694653272629]} +{"t": 10.4632, "q": [-0.36211833357810974, -0.026635020971298218, 0.016940748319029808, 0.6229069828987122, -0.2965705692768097, 0.02572837844491005, -0.348389208316803, -0.004175836686044931, 0.006079920567572117, 0.6318296194076538, -0.3341015875339508, 0.008703918196260929, 0.006843258626759052, 0.06783696264028549, -0.037513505667448044, -2.2314627170562744, 0.7028868198394775, 2.049733877182007, -0.31411853432655334, -0.1968528777360916, -0.13533785939216614, 0.02534663677215576, 0.1739630103111267, -0.1354457139968872, 0.03087136335670948, 1.234027624130249, -0.11796072870492935, 0.07750198245048523, -0.034214962273836136]} +{"t": 10.4799, "q": [-0.36233991384506226, -0.02665206417441368, 0.01682022027671337, 0.6228558421134949, -0.29667389392852783, 0.02553262747824192, -0.34849998354911804, -0.00418435875326395, 0.0060933125205338, 0.6317529678344727, -0.33411461114883423, 0.008842144161462784, 0.006575420964509249, 0.06779150664806366, -0.037511829286813736, -2.2325172424316406, 0.7141999006271362, 2.0561575889587402, -0.3142263889312744, -0.19684089720249176, -0.13536182045936584, 0.025370605289936066, 0.1738431751728058, -0.13546967506408691, 0.030907316133379936, 1.2339677810668945, -0.1179727166891098, 0.07746603339910507, -0.03423893079161644]} +{"t": 10.4966, "q": [-0.3624933063983917, -0.026660587638616562, 0.016766652464866638, 0.622847318649292, -0.296690434217453, 0.02550361305475235, -0.34859374165534973, -0.0041673146188259125, 0.00613348837941885, 0.6316762566566467, -0.3340738117694855, 0.008885329589247704, 0.006320974789559841, 0.0677839145064354, -0.03750663623213768, -2.234494686126709, 0.7249137759208679, 2.062161684036255, -0.31437018513679504, -0.1968289166688919, -0.13543373346328735, 0.025370605289936066, 0.17379523813724518, -0.13551761209964752, 0.030883347615599632, 1.2339677810668945, -0.1179727166891098, 0.07747801393270493, -0.034214962273836136]} +{"t": 10.5134, "q": [-0.3624592125415802, -0.026677630841732025, 0.016726477071642876, 0.6227620840072632, -0.2966863214969635, 0.025510862469673157, -0.3486193120479584, -0.0041587925516068935, 0.006294190883636475, 0.6315313577651978, -0.33404120802879333, 0.008928614668548107, 0.006267406977713108, 0.06779146194458008, -0.037501998245716095, -2.2369155883789062, 0.7360112071037292, 2.0693881511688232, -0.3139627277851105, -0.1968528777360916, -0.1353977769613266, 0.02533465251326561, 0.1738671362400055, -0.13550563156604767, 0.03082342818379402, 1.2339078187942505, -0.11793676018714905, 0.07745404541492462, -0.03422694653272629]} +{"t": 10.5301, "q": [-0.36239954829216003, -0.02664354257285595, 0.01661934331059456, 0.6227620840072632, -0.296558141708374, 0.025735661387443542, -0.3486193120479584, -0.0041587925516068935, 0.006334366742521524, 0.6315313577651978, -0.333996057510376, 0.008920916356146336, 0.006254015490412712, 0.06782186031341553, -0.037522777915000916, -2.2393124103546143, 0.7462577223777771, 2.078040599822998, -0.31363916397094727, -0.1968289166688919, -0.1353977769613266, 0.02534663677215576, 0.17395102977752686, -0.1354457139968872, 0.030847394838929176, 1.2339677810668945, -0.11793676018714905, 0.07745404541492462, -0.03419099375605583]} +{"t": 10.5468, "q": [-0.3623739778995514, -0.026677630841732025, 0.01663273386657238, 0.622779130935669, -0.29655829071998596, 0.025779057294130325, -0.3486107885837555, -0.0041587925516068935, 0.0064013260416686535, 0.6315313577651978, -0.33400434255599976, 0.008935529738664627, 0.006160271819680929, 0.06779161095619202, -0.03753149136900902, -2.242140769958496, 0.7554016709327698, 2.0849075317382812, -0.3136511445045471, -0.1968528777360916, -0.13540975749492645, 0.025358621031045914, 0.173939049243927, -0.13546967506408691, 0.030835412442684174, 1.2339797019958496, -0.11793676018714905, 0.07746603339910507, -0.03422694653272629]} +{"t": 10.5635, "q": [-0.36239102482795715, -0.026686152443289757, 0.01664612628519535, 0.6227706074714661, -0.29654163122177124, 0.02577914111316204, -0.3486022651195526, -0.004175836686044931, 0.006374542135745287, 0.6314205527305603, -0.33395496010780334, 0.008905957452952862, 0.006187055725604296, 0.06778401136398315, -0.03752629831433296, -2.2453525066375732, 0.764641523361206, 2.0923140048980713, -0.31351932883262634, -0.1968289166688919, -0.1353977769613266, 0.02534663677215576, 0.1738911122083664, -0.13550563156604767, 0.03087136335670948, 1.2340036630630493, -0.1179487481713295, 0.07750198245048523, -0.03423893079161644]} +{"t": 10.5803, "q": [-0.36243364214897156, -0.02670319750905037, 0.016699694097042084, 0.622779130935669, -0.29652923345565796, 0.02580088935792446, -0.34857669472694397, -0.004150270018726587, 0.006307582836598158, 0.6313098073005676, -0.33389782905578613, 0.008963546715676785, 0.006240623537451029, 0.0677839145064354, -0.03750663623213768, -2.248863935470581, 0.7737495303153992, 2.099828004837036, -0.3131837546825409, -0.1968528777360916, -0.13540975749492645, 0.025370605289936066, 0.1738911122083664, -0.13551761209964752, 0.03085937909781933, 1.2340396642684937, -0.11796072870492935, 0.07747801393270493, -0.034202978014945984]} +{"t": 10.597, "q": [-0.3624165952205658, -0.026694675907492638, 0.016739869490265846, 0.6227961778640747, -0.29649198055267334, 0.02585168555378914, -0.3485596477985382, -0.004150270018726587, 0.006334366742521524, 0.6312501430511475, -0.3338611125946045, 0.008999506011605263, 0.006213839631527662, 0.0677839145064354, -0.03750663623213768, -2.2521116733551025, 0.7826058864593506, 2.106191635131836, -0.31294408440589905, -0.1968528777360916, -0.1353977769613266, 0.025322668254375458, 0.1738911122083664, -0.13554158806800842, 0.030895331874489784, 1.2339797019958496, -0.1179727166891098, 0.07745404541492462, -0.03425091505050659]} +{"t": 10.6138, "q": [-0.3623825013637543, -0.026720240712165833, 0.01679343730211258, 0.6228217482566833, -0.2964920699596405, 0.025880616158246994, -0.3485255539417267, -0.0041587925516068935, 0.006347758695483208, 0.6312075257301331, -0.3338404893875122, 0.008977504447102547, 0.006521853152662516, 0.06778401136398315, -0.03752629831433296, -2.2564857006073, 0.7909229397773743, 2.1136457920074463, -0.3127043843269348, -0.1968528777360916, -0.1353738009929657, 0.025310683995485306, 0.17399896681308746, -0.1354457139968872, 0.030895331874489784, 1.2340036630630493, -0.11793676018714905, 0.07745404541492462, -0.03422694653272629]} +{"t": 10.6305, "q": [-0.3623654842376709, -0.026737285777926445, 0.01678004488348961, 0.6228302717208862, -0.29647544026374817, 0.025880681350827217, -0.348431795835495, -0.004175836686044931, 0.006307582836598158, 0.6312075257301331, -0.33380767703056335, 0.008977158926427364, 0.006454893853515387, 0.0678066611289978, -0.037512388080358505, -2.2613754272460938, 0.7989882826805115, 2.121112108230591, -0.3125605881214142, -0.1968528777360916, -0.13538579642772675, 0.025358621031045914, 0.173939049243927, -0.13545769453048706, 0.030883347615599632, 1.234015703201294, -0.1179487481713295, 0.07747801393270493, -0.03423893079161644]} +{"t": 10.6473, "q": [-0.36244216561317444, -0.026728764176368713, 0.016927355900406837, 0.6228558421134949, -0.29646721482276917, 0.02590966410934925, -0.34839773178100586, -0.004175836686044931, 0.006307582836598158, 0.63113933801651, -0.3337954580783844, 0.008998851291835308, 0.006347758695483208, 0.0677839145064354, -0.03750663623213768, -2.2669479846954346, 0.807916522026062, 2.1280148029327393, -0.31262049078941345, -0.1968528777360916, -0.13538579642772675, 0.025358621031045914, 0.17385515570640564, -0.13546967506408691, 0.03093128465116024, 1.2339917421340942, -0.11793676018714905, 0.07747801393270493, -0.03419099375605583]} +{"t": 10.664, "q": [-0.3624251186847687, -0.02676285244524479, 0.017007706686854362, 0.6228387951850891, -0.2964465618133545, 0.025945909321308136, -0.3482528328895569, -0.0041673146188259125, 0.006280798930674791, 0.6309604048728943, -0.3336810767650604, 0.0090849120169878, 0.00642810994759202, 0.06778401136398315, -0.03752629831433296, -2.2711665630340576, 0.8155145645141602, 2.1349897384643555, -0.31252461671829224, -0.1968289166688919, -0.13538579642772675, 0.025286715477705002, 0.1738671362400055, -0.13550563156604767, 0.030883347615599632, 1.234015703201294, -0.1179487481713295, 0.07746603339910507, -0.03422694653272629]} +{"t": 10.6808, "q": [-0.36234843730926514, -0.026737285777926445, 0.01699431613087654, 0.6228217482566833, -0.2964465022087097, 0.02593144401907921, -0.3482358157634735, -0.004175836686044931, 0.006307582836598158, 0.6309348344802856, -0.3336810767650604, 0.0090849120169878, 0.006280798930674791, 0.06779921054840088, -0.03753668814897537, -2.276128053665161, 0.8249461054801941, 2.1418566703796387, -0.3125126361846924, -0.1968528777360916, -0.13538579642772675, 0.025358621031045914, 0.17387911677360535, -0.13551761209964752, 0.030883347615599632, 1.234015703201294, -0.1179487481713295, 0.07745404541492462, -0.03419099375605583]} +{"t": 10.6975, "q": [-0.36225467920303345, -0.02677137404680252, 0.017021099105477333, 0.622847318649292, -0.29646313190460205, 0.025931378826498985, -0.34813353419303894, -0.0041673146188259125, 0.006294190883636475, 0.6309604048728943, -0.3336810767650604, 0.0090849120169878, 0.00642810994759202, 0.06779921054840088, -0.03753668814897537, -2.2797951698303223, 0.8328317403793335, 2.1479926109313965, -0.3123328685760498, -0.1968528777360916, -0.13538579642772675, 0.02534663677215576, 0.17392705380916595, -0.13551761209964752, 0.030883347615599632, 1.234027624130249, -0.11796072870492935, 0.07747801393270493, -0.03422694653272629]} +{"t": 10.7145, "q": [-0.3621864914894104, -0.02677137404680252, 0.017074666917324066, 0.6228558421134949, -0.2964465022087097, 0.02593144401907921, -0.3479716181755066, -0.004175836686044931, 0.0062272315844893456, 0.6309774518013, -0.3336810767650604, 0.0090849120169878, 0.006441501900553703, 0.06781431287527084, -0.0375274159014225, -2.283642053604126, 0.8410049676895142, 2.154320240020752, -0.3122849464416504, -0.1968528777360916, -0.13536182045936584, 0.025262746959924698, 0.17392705380916595, -0.13548167049884796, 0.03087136335670948, 1.234015703201294, -0.11793676018714905, 0.07747801393270493, -0.03423893079161644]} +{"t": 10.7313, "q": [-0.3621950149536133, -0.02676285244524479, 0.017074666917324066, 0.6228984594345093, -0.29644641280174255, 0.025902513414621353, -0.3479801416397095, -0.00418435875326395, 0.006146880332380533, 0.6310200095176697, -0.33366888761520386, 0.009106586687266827, 0.006521853152662516, 0.06780681014060974, -0.03754188120365143, -2.2874410152435303, 0.849741518497467, 2.1613190174102783, -0.31222501397132874, -0.1968528777360916, -0.135349839925766, 0.025298699736595154, 0.17390309274196625, -0.13548167049884796, 0.03085937909781933, 1.2340396642684937, -0.1179727166891098, 0.07746603339910507, -0.034214962273836136]} +{"t": 10.748, "q": [-0.3621779680252075, -0.026754330843687057, 0.01711484231054783, 0.6229410767555237, -0.29645049571990967, 0.02588079869747162, -0.3479630947113037, -0.0041673146188259125, 0.0060933125205338, 0.6310796737670898, -0.3336566090583801, 0.009113747626543045, 0.006361150648444891, 0.06779161095619202, -0.03753149136900902, -2.2908804416656494, 0.8582262992858887, 2.166999578475952, -0.31206923723220825, -0.1968528777360916, -0.13531388342380524, 0.025298699736595154, 0.1738671362400055, -0.13549365103244781, 0.030883347615599632, 1.2340636253356934, -0.1179727166891098, 0.07747801393270493, -0.03425091505050659]} +{"t": 10.765, "q": [-0.3621353805065155, -0.026677630841732025, 0.017101449891924858, 0.6229325532913208, -0.2964836061000824, 0.025837251916527748, -0.3479716181755066, -0.0041247038170695305, 0.006200447678565979, 0.6310881972312927, -0.3336566090583801, 0.009113747626543045, 0.006106704473495483, 0.06779921054840088, -0.03753668814897537, -2.294931173324585, 0.8672624230384827, 2.1714816093444824, -0.31197336316108704, -0.1968289166688919, -0.1353258639574051, 0.025286715477705002, 0.1738431751728058, -0.13545769453048706, 0.03087136335670948, 1.2339677810668945, -0.11798469722270966, 0.07746603339910507, -0.03425091505050659]} +{"t": 10.7818, "q": [-0.3621353805065155, -0.026686152443289757, 0.017074666917324066, 0.6229069828987122, -0.2964876890182495, 0.025815537199378014, -0.3480227589607239, -0.0041161817498505116, 0.006213839631527662, 0.6310967206954956, -0.33365675806999207, 0.009142810478806496, 0.006307582836598158, 0.06779161095619202, -0.03753149136900902, -2.2997968196868896, 0.8762865662574768, 2.1775336265563965, -0.312057226896286, -0.19681693613529205, -0.13531388342380524, 0.02527473121881485, 0.17392705380916595, -0.13556554913520813, 0.03085937909781933, 1.2340036630630493, -0.11793676018714905, 0.07746603339910507, -0.034214962273836136]} +{"t": 10.7985, "q": [-0.362169474363327, -0.02670319750905037, 0.017061274498701096, 0.6228814125061035, -0.2965083122253418, 0.025764789432287216, -0.3480483293533325, -0.0041161817498505116, 0.00613348837941885, 0.6310881972312927, -0.33365684747695923, 0.009157359600067139, 0.006187055725604296, 0.06780681014060974, -0.03754188120365143, -2.304746389389038, 0.8854305148124695, 2.1829745769500732, -0.3120093047618866, -0.19679296016693115, -0.13531388342380524, 0.025286715477705002, 0.173939049243927, -0.13549365103244781, 0.03087136335670948, 1.2339917421340942, -0.11793676018714905, 0.07746603339910507, -0.03425091505050659]} +{"t": 10.8152, "q": [-0.362101286649704, -0.0267117191106081, 0.017021099105477333, 0.6228217482566833, -0.2965579926967621, 0.02569226361811161, -0.34808239340782166, -0.0041161817498505116, 0.006160271819680929, 0.631071150302887, -0.33366918563842773, 0.009164748713374138, 0.00646828580647707, 0.06781455874443054, -0.037576571106910706, -2.3088808059692383, 0.8941789865493774, 2.188403367996216, -0.31199732422828674, -0.19681693613529205, -0.1353258639574051, 0.025322668254375458, 0.17399896681308746, -0.13555356860160828, 0.030847394838929176, 1.2340755462646484, -0.11796072870492935, 0.07747801393270493, -0.03423893079161644]} +{"t": 10.8322, "q": [-0.36203309893608093, -0.0267117191106081, 0.016940748319029808, 0.6229069828987122, -0.2966614365577698, 0.025539910420775414, -0.34808239340782166, -0.004133225884288549, 0.0059995693154633045, 0.6310455799102783, -0.33368557691574097, 0.009164911694824696, 0.00646828580647707, 0.06779945641756058, -0.037585847079753876, -2.3126437664031982, 0.9026997685432434, 2.192741632461548, -0.3119014501571655, -0.196804940700531, -0.13530190289020538, 0.02527473121881485, 0.1739869862794876, -0.13546967506408691, 0.03087136335670948, 1.2340755462646484, -0.11796072870492935, 0.07747801393270493, -0.03423893079161644]} +{"t": 10.849, "q": [-0.3618967533111572, -0.026677630841732025, 0.016913963481783867, 0.6228558421134949, -0.29667800664901733, 0.025510895997285843, -0.34817615151405334, -0.004141747951507568, 0.005919218063354492, 0.6309689283370972, -0.3337228298187256, 0.009230690076947212, 0.006776299327611923, 0.06779205054044724, -0.037619974464178085, -2.3163950443267822, 0.9121792912483215, 2.1979188919067383, -0.3117097020149231, -0.19679296016693115, -0.1353258639574051, 0.025286715477705002, 0.17402292788028717, -0.13546967506408691, 0.03087136335670948, 1.234087586402893, -0.1179966852068901, 0.07747801393270493, -0.03422694653272629]} +{"t": 10.8657, "q": [-0.3618200421333313, -0.026660587638616562, 0.01682022027671337, 0.6228387951850891, -0.2966863214969635, 0.025510862469673157, -0.34821876883506775, -0.0041587925516068935, 0.005745123140513897, 0.6308495998382568, -0.3338009715080261, 0.009267814457416534, 0.006829866673797369, 0.06776930391788483, -0.03761422634124756, -2.3200621604919434, 0.9208678603172302, 2.202568769454956, -0.31176963448524475, -0.19679296016693115, -0.13528992235660553, 0.02527473121881485, 0.17402292788028717, -0.13550563156604767, 0.030847394838929176, 1.2340995073318481, -0.11796072870492935, 0.07747801393270493, -0.03422694653272629]} +{"t": 10.8828, "q": [-0.36179450154304504, -0.02664354257285595, 0.01679343730211258, 0.6228643655776978, -0.29671114683151245, 0.025481833145022392, -0.34830397367477417, -0.0041673146188259125, 0.005664771888405085, 0.6306876540184021, -0.3338257968425751, 0.009311654604971409, 0.0068030827678740025, 0.06777694821357727, -0.037629250437021255, -2.3235974311828613, 0.9299519062042236, 2.206547498703003, -0.31176963448524475, -0.196804940700531, -0.13531388342380524, 0.025298699736595154, 0.17402292788028717, -0.13550563156604767, 0.030883347615599632, 1.2340995073318481, -0.1179727166891098, 0.07746603339910507, -0.03423893079161644]} +{"t": 10.8997, "q": [-0.3617689311504364, -0.026617975905537605, 0.016713086515665054, 0.6228558421134949, -0.2967277467250824, 0.02546728402376175, -0.3483721613883972, -0.0041673146188259125, 0.0056112040765583515, 0.6305001974105835, -0.33386334776878357, 0.009435577318072319, 0.006816474720835686, 0.06776180118322372, -0.037628691643476486, -2.3264377117156982, 0.9394434094429016, 2.2093279361724854, -0.3118534982204437, -0.196804940700531, -0.13528992235660553, 0.025298699736595154, 0.1739869862794876, -0.13549365103244781, 0.030883347615599632, 1.2341235876083374, -0.1179727166891098, 0.07746603339910507, -0.03422694653272629]} +{"t": 10.9165, "q": [-0.36179450154304504, -0.02664354257285595, 0.016672909259796143, 0.6228387951850891, -0.29682284593582153, 0.02530049718916416, -0.3484147787094116, -0.0041673146188259125, 0.0055978125892579556, 0.6302445530891418, -0.3339051902294159, 0.009595886804163456, 0.006843258626759052, 0.067769356071949, -0.0376240573823452, -2.328355312347412, 0.9491986036300659, 2.211113452911377, -0.3117816150188446, -0.19681693613529205, -0.13528992235660553, 0.025286715477705002, 0.17405888438224792, -0.13550563156604767, 0.030895331874489784, 1.2341115474700928, -0.11796072870492935, 0.07749000191688538, -0.03422694653272629]} +{"t": 10.9332, "q": [-0.3618967533111572, -0.026575366035103798, 0.016405072063207626, 0.6228387951850891, -0.2968312203884125, 0.025314928963780403, -0.3484829366207123, -0.00418435875326395, 0.0056112040765583515, 0.63009113073349, -0.3338848054409027, 0.009617497213184834, 0.006990569643676281, 0.067769356071949, -0.0376240573823452, -2.330260753631592, 0.9585822224617004, 2.212599515914917, -0.3118534982204437, -0.19679296016693115, -0.13528992235660553, 0.025286715477705002, 0.17402292788028717, -0.13549365103244781, 0.03087136335670948, 1.2341115474700928, -0.11793676018714905, 0.07747801393270493, -0.03423893079161644]} +{"t": 10.9499, "q": [-0.3620075285434723, -0.026541277766227722, 0.016338111832737923, 0.6228217482566833, -0.29683947563171387, 0.02530043013393879, -0.34849998354911804, -0.004261057823896408, 0.0055442447774112225, 0.6298950910568237, -0.33387282490730286, 0.009682766161859035, 0.007164664100855589, 0.06775415688753128, -0.03761366754770279, -2.3328492641448975, 0.9678220748901367, 2.2138218879699707, -0.3119613528251648, -0.196804940700531, -0.13528992235660553, 0.025250762701034546, 0.17408286035060883, -0.13550563156604767, 0.03085937909781933, 1.234147548675537, -0.11796072870492935, 0.07746603339910507, -0.03422694653272629]} +{"t": 10.9667, "q": [-0.362101286649704, -0.026549799367785454, 0.0163247212767601, 0.6227706074714661, -0.2968478500843048, 0.025314882397651672, -0.34849998354911804, -0.004346278961747885, 0.0055442447774112225, 0.629716157913208, -0.3337791860103607, 0.009819927625358105, 0.007137880194932222, 0.06775415688753128, -0.03761366754770279, -2.3359172344207764, 0.976774275302887, 2.2148046493530273, -0.3119014501571655, -0.1967809796333313, -0.13530190289020538, 0.025262746959924698, 0.17407086491584778, -0.13551761209964752, 0.030883347615599632, 1.234147548675537, -0.1179966852068901, 0.07750198245048523, -0.034202978014945984]} +{"t": 10.9834, "q": [-0.3621864914894104, -0.026541277766227722, 0.01628454588353634, 0.6227535605430603, -0.29686877131462097, 0.025350963696837425, -0.3485170304775238, -0.004388889297842979, 0.005584420636296272, 0.6295371651649475, -0.3337341845035553, 0.009841274470090866, 0.007218231912702322, 0.06775415688753128, -0.03761366754770279, -2.339752197265625, 0.9863616824150085, 2.215811252593994, -0.3119373917579651, -0.19679296016693115, -0.13527794182300568, 0.025262746959924698, 0.17408286035060883, -0.13545769453048706, 0.030883347615599632, 1.234147548675537, -0.1179247796535492, 0.07747801393270493, -0.03422694653272629]} +{"t": 11.0002, "q": [-0.3623143434524536, -0.02653275430202484, 0.01628454588353634, 0.6227535605430603, -0.2968648374080658, 0.025416109710931778, -0.3485085070133209, -0.004457066301256418, 0.005571028683334589, 0.6292900443077087, -0.33362385630607605, 0.009920109994709492, 0.007204839959740639, 0.06774655729532242, -0.03760847449302673, -2.3441503047943115, 0.9950742125511169, 2.216722249984741, -0.31192541122436523, -0.19676899909973145, -0.13520602881908417, 0.025262746959924698, 0.17405888438224792, -0.13546967506408691, 0.03087136335670948, 1.234183430671692, -0.11796072870492935, 0.07747801393270493, -0.03425091505050659]} +{"t": 11.0169, "q": [-0.3622802495956421, -0.026541277766227722, 0.016230978071689606, 0.6227110028266907, -0.2968483567237854, 0.025459572672843933, -0.34849998354911804, -0.004576376173645258, 0.005584420636296272, 0.6289235949516296, -0.3335181772708893, 0.010108008980751038, 0.007365542463958263, 0.06775415688753128, -0.03761366754770279, -2.347038507461548, 1.0031994581222534, 2.2183640003204346, -0.312057226896286, -0.19679296016693115, -0.13519404828548431, 0.02527473121881485, 0.1741188019514084, -0.13552960753440857, 0.03087136335670948, 1.2341715097427368, -0.1179487481713295, 0.07749000191688538, -0.034214962273836136]} +{"t": 11.0337, "q": [-0.36224615573883057, -0.026549799367785454, 0.016244368627667427, 0.6227194666862488, -0.2968568205833435, 0.02550295554101467, -0.3485170304775238, -0.004729773849248886, 0.005517460871487856, 0.628829836845398, -0.3335099518299103, 0.010107927024364471, 0.007499461527913809, 0.067769356071949, -0.0376240573823452, -2.348524570465088, 1.0098507404327393, 2.2202935218811035, -0.31222501397132874, -0.19681693613529205, -0.1351700723171234, 0.025262746959924698, 0.17413079738616943, -0.13549365103244781, 0.03087136335670948, 1.2341954708099365, -0.1179727166891098, 0.07746603339910507, -0.034214962273836136]} +{"t": 11.0505, "q": [-0.36224615573883057, -0.026541277766227722, 0.016257761046290398, 0.622685432434082, -0.2968651354312897, 0.025502922013401985, -0.3485170304775238, -0.0049343048594892025, 0.005477285478264093, 0.6288042664527893, -0.33345237374305725, 0.010078290477395058, 0.007472677621990442, 0.06778445839881897, -0.03761478140950203, -2.3501784801483154, 1.0173648595809937, 2.222402572631836, -0.31317177414894104, -0.196804940700531, -0.13526594638824463, 0.025202825665473938, 0.17408286035060883, -0.13552960753440857, 0.030895331874489784, 1.2341954708099365, -0.11796072870492935, 0.07745404541492462, -0.03422694653272629]} +{"t": 11.0672, "q": [-0.3624165952205658, -0.026575366035103798, 0.01628454588353634, 0.6226939558982849, -0.29679498076438904, 0.025669610127806664, -0.3485170304775238, -0.005002481862902641, 0.0055442447774112225, 0.6288213133811951, -0.3333868384361267, 0.010092167183756828, 0.007539637386798859, 0.06776165962219238, -0.03759919852018356, -2.3521080017089844, 1.0259575843811035, 2.2252070903778076, -0.3129321038722992, -0.19681693613529205, -0.13527794182300568, 0.025190841406583786, 0.17405888438224792, -0.13555356860160828, 0.030895331874489784, 1.2341954708099365, -0.1179727166891098, 0.07746603339910507, -0.03422694653272629]} +{"t": 11.0839, "q": [-0.36271488666534424, -0.026609454303979874, 0.016338111832737923, 0.6227620840072632, -0.2966916263103485, 0.025850893929600716, -0.34849146008491516, -0.004985437728464603, 0.005490677431225777, 0.6288213133811951, -0.33321499824523926, 0.01017767284065485, 0.007499461527913809, 0.06775405257940292, -0.03759400546550751, -2.354109287261963, 1.0344183444976807, 2.227436065673828, -0.31264448165893555, -0.19679296016693115, -0.13523000478744507, 0.025202825665473938, 0.17402292788028717, -0.13552960753440857, 0.030919300392270088, 1.2342313528060913, -0.11793676018714905, 0.07750198245048523, -0.03425091505050659]} +{"t": 11.1007, "q": [-0.36292794346809387, -0.026617975905537605, 0.016351504251360893, 0.6228217482566833, -0.29662543535232544, 0.025952452793717384, -0.3484744131565094, -0.004959871061146259, 0.005517460871487856, 0.6288639307022095, -0.33312904834747314, 0.010213159956037998, 0.0074860695749521255, 0.06771605461835861, -0.03756803274154663, -2.355008125305176, 1.043574333190918, 2.229712963104248, -0.3123568594455719, -0.196804940700531, -0.1351700723171234, 0.025202825665473938, 0.17399896681308746, -0.13546967506408691, 0.030895331874489784, 1.2341954708099365, -0.11796072870492935, 0.07747801393270493, -0.03422694653272629]} +{"t": 11.1174, "q": [-0.36336255073547363, -0.026635020971298218, 0.016378289088606834, 0.6230177879333496, -0.2965758740901947, 0.026053927838802338, -0.3484403192996979, -0.0049428269267082214, 0.005517460871487856, 0.628898024559021, -0.33303940296173096, 0.010328528471291065, 0.0074191102758049965, 0.06769325584173203, -0.037552446126937866, -2.3555233478546143, 1.0525624752044678, 2.232205867767334, -0.31227296590805054, -0.1967809796333313, -0.13500230014324188, 0.02521480992436409, 0.17397499084472656, -0.13549365103244781, 0.030895331874489784, 1.2342073917388916, -0.11796072870492935, 0.07746603339910507, -0.03423893079161644]} +{"t": 11.1341, "q": [-0.3635500371456146, -0.026754330843687057, 0.01644524745643139, 0.6230433583259583, -0.2965550720691681, 0.02606125921010971, -0.348431795835495, -0.00495134899392724, 0.0056112040765583515, 0.6290003061294556, -0.33297789096832275, 0.010335180908441544, 0.007231623865664005, 0.06769325584173203, -0.037552446126937866, -2.3556551933288574, 1.0615147352218628, 2.234039306640625, -0.3122849464416504, -0.19679296016693115, -0.1348225325345993, 0.02521480992436409, 0.17390309274196625, -0.13548167049884796, 0.030919300392270088, 1.2341954708099365, -0.1179727166891098, 0.07746603339910507, -0.03423893079161644]} +{"t": 11.1508, "q": [-0.3636011779308319, -0.026737285777926445, 0.016565775498747826, 0.6231200098991394, -0.29652613401412964, 0.026112021878361702, -0.34839773178100586, -0.004959871061146259, 0.005785298999398947, 0.6292474269866943, -0.3329535126686096, 0.010378547012805939, 0.007137880194932222, 0.06769305467605591, -0.037513118237257004, -2.3554635047912598, 1.0699396133422852, 2.235741138458252, -0.3140825629234314, -0.19679296016693115, -0.13497832417488098, 0.02521480992436409, 0.17387911677360535, -0.13549365103244781, 0.030919300392270088, 1.2341954708099365, -0.1179487481713295, 0.07746603339910507, -0.03423893079161644]} +{"t": 11.1677, "q": [-0.36366936564445496, -0.026737285777926445, 0.01661934331059456, 0.6231967210769653, -0.29649290442466736, 0.026126602664589882, -0.3484147787094116, -0.0049343048594892025, 0.005879042204469442, 0.6295115947723389, -0.33291202783584595, 0.010290930978953838, 0.006883434485644102, 0.06770765781402588, -0.037405528128147125, -2.354013442993164, 1.079047679901123, 2.237346887588501, -0.3145259916782379, -0.19679296016693115, -0.13499031960964203, 0.025202825665473938, 0.1738431751728058, -0.13551761209964752, 0.030883347615599632, 1.2341235876083374, -0.11793676018714905, 0.07745404541492462, -0.034202978014945984]} +{"t": 11.1846, "q": [-0.3636523187160492, -0.026788419112563133, 0.016713086515665054, 0.6233330965042114, -0.2964804172515869, 0.026119418442249298, -0.3484744131565094, -0.004840561654418707, 0.005879042204469442, 0.6298440098762512, -0.332911878824234, 0.010261868126690388, 0.006575420964509249, 0.06761565804481506, -0.03718598932027817, -2.351400852203369, 1.0885272026062012, 2.238497495651245, -0.31439417600631714, -0.19679296016693115, -0.13493038713932037, 0.02521480992436409, 0.17369936406612396, -0.13551761209964752, 0.030835412442684174, 1.234087586402893, -0.11791279166936874, 0.07746603339910507, -0.034202978014945984]} +{"t": 11.2013, "q": [-0.36368638277053833, -0.026933293789625168, 0.016833612695336342, 0.6237592101097107, -0.29648035764694214, 0.02610495314002037, -0.3484403192996979, -0.004618986509740353, 0.005731731187552214, 0.6300740838050842, -0.33287033438682556, 0.01015970204025507, 0.00638793408870697, 0.067295603454113, -0.036801014095544815, -2.349339485168457, 1.0993130207061768, 2.240199327468872, -0.31439417600631714, -0.19676899909973145, -0.13493038713932037, 0.025190841406583786, 0.17360348999500275, -0.13546967506408691, 0.03082342818379402, 1.2340636253356934, -0.11793676018714905, 0.07745404541492462, -0.034202978014945984]} +{"t": 11.2181, "q": [-0.36368638277053833, -0.026933293789625168, 0.017034491524100304, 0.624108612537384, -0.29648032784461975, 0.026090487837791443, -0.348431795835495, -0.004405933897942305, 0.00546389352530241, 0.6302189826965332, -0.332861989736557, 0.010130539536476135, 0.0065620290115475655, 0.0669381394982338, -0.03650800883769989, -2.3470864295959473, 1.110062837600708, 2.2430875301361084, -0.3142983019351959, -0.19679296016693115, -0.13488245010375977, 0.025190841406583786, 0.17365142703056335, -0.13545769453048706, 0.030727554112672806, 1.2341115474700928, -0.11793676018714905, 0.07747801393270493, -0.03422694653272629]} +{"t": 11.2348, "q": [-0.3636523187160492, -0.02694181725382805, 0.0169675312936306, 0.6243045926094055, -0.29646357893943787, 0.02606160379946232, -0.34840625524520874, -0.004329234827309847, 0.005021960940212011, 0.6304064393043518, -0.33290278911590576, 0.010087336413562298, 0.006642380263656378, 0.06649751961231232, -0.03624635189771652, -2.344773530960083, 1.120225429534912, 2.245676040649414, -0.31444209814071655, -0.19679296016693115, -0.13490642607212067, 0.02521480992436409, 0.1736873835325241, -0.13552960753440857, 0.030739538371562958, 1.2341954708099365, -0.1179247796535492, 0.07749000191688538, -0.03422694653272629]} +{"t": 11.2516, "q": [-0.36366936564445496, -0.026873638853430748, 0.016699694097042084, 0.6245517730712891, -0.2964467406272888, 0.02600380778312683, -0.3482869267463684, -0.004269579891115427, 0.004419325385242701, 0.6305172443389893, -0.3329148292541504, 0.010036598891019821, 0.006695947609841824, 0.06602641195058823, -0.03595434129238129, -2.342472553253174, 1.1313108205795288, 2.247725248336792, -0.3145020306110382, -0.19679296016693115, -0.1348944455385208, 0.025190841406583786, 0.17362745106220245, -0.13550563156604767, 0.030739538371562958, 1.2341715097427368, -0.1179727166891098, 0.07747801393270493, -0.034202978014945984]} +{"t": 11.2684, "q": [-0.3636608421802521, -0.02683102898299694, 0.016391679644584656, 0.6248244643211365, -0.29644665122032166, 0.025974858552217484, -0.348244309425354, -0.004201402887701988, 0.003977392800152302, 0.6306791305541992, -0.3329595625400543, 0.009957090020179749, 0.006883434485644102, 0.06545621156692505, -0.035546235740184784, -2.340674877166748, 1.1426838636398315, 2.249439001083374, -0.31464582681655884, -0.19679296016693115, -0.13488245010375977, 0.025190841406583786, 0.173567533493042, -0.13538579642772675, 0.030775491148233414, 1.2341715097427368, -0.1179487481713295, 0.07747801393270493, -0.034202978014945984]} +{"t": 11.2851, "q": [-0.3636523187160492, -0.026779895648360252, 0.01615062542259693, 0.6249352693557739, -0.2964254915714264, 0.025866413488984108, -0.34826987981796265, -0.0041587925516068935, 0.0036425956059247255, 0.6309007406234741, -0.3329837918281555, 0.009884660132229328, 0.006937001831829548, 0.0647568628191948, -0.035070229321718216, -2.3388173580169678, 1.1534817218780518, 2.251044988632202, -0.314777672290802, -0.19679296016693115, -0.1348704695701599, 0.025202825665473938, 0.17344769835472107, -0.13520602881908417, 0.030835412442684174, 1.2341715097427368, -0.11796072870492935, 0.07747801393270493, -0.034202978014945984]} +{"t": 11.3018, "q": [-0.36367788910865784, -0.02670319750905037, 0.016083667054772377, 0.6249948740005493, -0.2964085340499878, 0.025779668241739273, -0.34839773178100586, -0.0041247038170695305, 0.0034149333368986845, 0.6311904788017273, -0.3330204486846924, 0.009834150783717632, 0.0068566505797207355, 0.06392809748649597, -0.03445674106478691, -2.336073160171509, 1.1645790338516235, 2.251967668533325, -0.3151491582393646, -0.19679296016693115, -0.13485848903656006, 0.025190841406583786, 0.17318403720855713, -0.13493038713932037, 0.030883347615599632, 1.234087586402893, -0.1179727166891098, 0.07745404541492462, -0.034202978014945984]} +{"t": 11.3186, "q": [-0.36366936564445496, -0.02658388763666153, 0.016070274636149406, 0.6249778270721436, -0.29639607667922974, 0.025786951184272766, -0.3485085070133209, -0.003962783608585596, 0.003468500915914774, 0.6313012838363647, -0.3329872488975525, 0.009761148132383823, 0.00646828580647707, 0.06342542171478271, -0.0339188277721405, -2.3328733444213867, 1.1746697425842285, 2.252027750015259, -0.3154727518558502, -0.19676899909973145, -0.1348944455385208, 0.025190841406583786, 0.1727885603904724, -0.13471467792987823, 0.030907316133379936, 1.2340515851974487, -0.1179727166891098, 0.07745404541492462, -0.03422694653272629]} +{"t": 11.3354, "q": [-0.36372047662734985, -0.02647309936583042, 0.01613723486661911, 0.6249011754989624, -0.29639607667922974, 0.025786951184272766, -0.3485255539417267, -0.003783819265663624, 0.0036024199798703194, 0.6312501430511475, -0.3329872488975525, 0.009761148132383823, 0.006187055725604296, 0.06303630024194717, -0.033370744436979294, -2.3307759761810303, 1.1855754852294922, 2.2520036697387695, -0.3159041702747345, -0.19674502313137054, -0.1348704695701599, 0.025178857147693634, 0.1726207733154297, -0.1344510167837143, 0.03082342818379402, 1.234027624130249, -0.1179247796535492, 0.07744206488132477, -0.03423893079161644]} +{"t": 11.3521, "q": [-0.3639335334300995, -0.026379356160759926, 0.01612384244799614, 0.6247648000717163, -0.2964457869529724, 0.025728872045874596, -0.34857669472694397, -0.0036645096261054277, 0.003655987558886409, 0.63113933801651, -0.3330485224723816, 0.009710883721709251, 0.006039745174348354, 0.0629216730594635, -0.033175479620695114, -2.330488443374634, 1.1973918676376343, 2.252638816833496, -0.315976083278656, -0.1967330425977707, -0.13485848903656006, 0.02515488862991333, 0.1727645844221115, -0.1341993510723114, 0.030835412442684174, 1.2340515851974487, -0.11793676018714905, 0.07745404541492462, -0.03422694653272629]} +{"t": 11.3692, "q": [-0.3639335334300995, -0.02639640122652054, 0.01613723486661911, 0.6246539950370789, -0.2964707016944885, 0.025714289397001266, -0.3485170304775238, -0.003690076060593128, 0.0036292036529630423, 0.6310285329818726, -0.3331790268421173, 0.009566842578351498, 0.006120096426457167, 0.06292172521352768, -0.03318529576063156, -2.3309078216552734, 1.2086809873580933, 2.2540531158447266, -0.31601202487945557, -0.1967330425977707, -0.1348465085029602, 0.02515488862991333, 0.17310014367103577, -0.13405553996562958, 0.030835412442684174, 1.2341715097427368, -0.1179487481713295, 0.07747801393270493, -0.03419099375605583]} +{"t": 11.3861, "q": [-0.3638312816619873, -0.026447534561157227, 0.016164017841219902, 0.6245432496070862, -0.2964874505996704, 0.02574317343533039, -0.34836363792419434, -0.003724164329469204, 0.0037229470908641815, 0.6309859752655029, -0.33326032757759094, 0.009422292932868004, 0.006347758695483208, 0.0629446804523468, -0.033230237662792206, -2.332094192504883, 1.2220433950424194, 2.2552754878997803, -0.31601202487945557, -0.19674502313137054, -0.13483451306819916, 0.02515488862991333, 0.1733638048171997, -0.13398364186286926, 0.03075152263045311, 1.234183430671692, -0.11796072870492935, 0.07744206488132477, -0.03422694653272629]} +{"t": 11.4029, "q": [-0.36372047662734985, -0.026439011096954346, 0.016190802678465843, 0.6244750618934631, -0.29649582505226135, 0.02575760707259178, -0.3482528328895569, -0.0037497307639569044, 0.003669379511848092, 0.6309007406234741, -0.333350270986557, 0.009365050122141838, 0.006441501900553703, 0.06299033761024475, -0.03327104449272156, -2.333112955093384, 1.2333805561065674, 2.2564139366149902, -0.31621575355529785, -0.1967330425977707, -0.1348225325345993, 0.025106951594352722, 0.1733398288488388, -0.13403157889842987, 0.030739538371562958, 1.2342673540115356, -0.11796072870492935, 0.07747801393270493, -0.034202978014945984]} +{"t": 11.4196, "q": [-0.36372047662734985, -0.02647309936583042, 0.016244368627667427, 0.6242534518241882, -0.2964916229248047, 0.02575038932263851, -0.34830397367477417, -0.003817907767370343, 0.0037497307639569044, 0.6307814121246338, -0.3333747982978821, 0.009350763633847237, 0.006495069246739149, 0.06303609907627106, -0.0333314873278141, -2.3347907066345215, 1.2455685138702393, 2.258091688156128, -0.3161798119544983, -0.1967330425977707, -0.13481055200099945, 0.02509496733546257, 0.1732679307460785, -0.1341514140367508, 0.030739538371562958, 1.2342313528060913, -0.11796072870492935, 0.07747801393270493, -0.034202978014945984]} +{"t": 11.4365, "q": [-0.36367788910865784, -0.026507189497351646, 0.016164017841219902, 0.6241341829299927, -0.29648327827453613, 0.02573595754802227, -0.34831249713897705, -0.003817907767370343, 0.0037497307639569044, 0.6307047009468079, -0.33337894082069397, 0.00935807079076767, 0.006695947609841824, 0.0630892664194107, -0.03335783630609512, -2.337822675704956, 1.258080005645752, 2.2617709636688232, -0.3160000443458557, -0.1967090666294098, -0.13467872142791748, 0.025059014558792114, 0.17323197424411774, -0.1341514140367508, 0.03075152263045311, 1.2342313528060913, -0.11796072870492935, 0.07746603339910507, -0.034214962273836136]} +{"t": 11.4533, "q": [-0.36368638277053833, -0.026507189497351646, 0.016083667054772377, 0.6241427063941956, -0.2964916229248047, 0.02575038932263851, -0.3482869267463684, -0.003834951901808381, 0.0036292036529630423, 0.6307047009468079, -0.3333911895751953, 0.009350927546620369, 0.006990569643676281, 0.06310446560382843, -0.03336817026138306, -2.341370105743408, 1.2690935134887695, 2.2664806842803955, -0.3160240054130554, -0.19667312502861023, -0.13463078439235687, 0.025047030299901962, 0.17318403720855713, -0.1341993510723114, 0.030727554112672806, 1.2342792749404907, -0.11796072870492935, 0.07746603339910507, -0.03419099375605583]} +{"t": 11.47, "q": [-0.3636608421802521, -0.026507189497351646, 0.016083667054772377, 0.6240659952163696, -0.29647499322891235, 0.025750456377863884, -0.34830397367477417, -0.0038434739690274, 0.0036158119328320026, 0.630696177482605, -0.33337464928627014, 0.009321700781583786, 0.0070307450369000435, 0.06311216950416565, -0.03339296206831932, -2.344521999359131, 1.2812694311141968, 2.2727603912353516, -0.315832257270813, -0.19667312502861023, -0.13464276492595673, 0.02503504604101181, 0.17310014367103577, -0.13423530757427216, 0.03069160133600235, 1.2341954708099365, -0.11796072870492935, 0.07745404541492462, -0.03419099375605583]} +{"t": 11.4867, "q": [-0.36357560753822327, -0.026456056162714958, 0.016070274636149406, 0.6240574717521667, -0.2964874505996704, 0.02574317343533039, -0.34830397367477417, -0.003817907767370343, 0.0036158119328320026, 0.6307047009468079, -0.333382785320282, 0.00930723361670971, 0.00676290737465024, 0.06313502043485641, -0.03341827541589737, -2.347973346710205, 1.292810320854187, 2.2780933380126953, -0.31552067399024963, -0.1967090666294098, -0.13465476036071777, 0.02503504604101181, 0.17292039096355438, -0.134247288107872, 0.03069160133600235, 1.2342792749404907, -0.1179966852068901, 0.07747801393270493, -0.03422694653272629]} +{"t": 11.5034, "q": [-0.3634136915206909, -0.02641344629228115, 0.01612384244799614, 0.6239978075027466, -0.296479195356369, 0.025757672265172005, -0.34830397367477417, -0.0037923413328826427, 0.003696163184940815, 0.630696177482605, -0.33339083194732666, 0.009278252720832825, 0.0065620290115475655, 0.06314272433519363, -0.03344307094812393, -2.3514249324798584, 1.3048903942108154, 2.2832705974578857, -0.31481361389160156, -0.19668510556221008, -0.13459482789039612, 0.025011077523231506, 0.17282451689243317, -0.1342233270406723, 0.03069160133600235, 1.2341954708099365, -0.11796072870492935, 0.07746603339910507, -0.03422694653272629]} +{"t": 11.5202, "q": [-0.36335402727127075, -0.026421967893838882, 0.016056882217526436, 0.6239551901817322, -0.29648327827453613, 0.02573595754802227, -0.34830397367477417, -0.003783819265663624, 0.0036292036529630423, 0.6306791305541992, -0.33339887857437134, 0.009249253198504448, 0.006575420964509249, 0.06316553056240082, -0.03345856815576553, -2.355139970779419, 1.3176655769348145, 2.2898619174957275, -0.31380695104599, -0.19668510556221008, -0.13459482789039612, 0.025011077523231506, 0.1727885603904724, -0.1342712640762329, 0.030703585594892502, 1.2342313528060913, -0.1179966852068901, 0.07747801393270493, -0.03422694653272629]} +{"t": 11.5369, "q": [-0.36335402727127075, -0.02639640122652054, 0.016043491661548615, 0.6240063309669495, -0.2964376211166382, 0.025772301480174065, -0.3482784032821655, -0.003775297198444605, 0.0035220684949308634, 0.6307132244110107, -0.3333824872970581, 0.009249089285731316, 0.006642380263656378, 0.06315797567367554, -0.033463217318058014, -2.3585195541381836, 1.329709768295288, 2.296177625656128, -0.31326764822006226, -0.19666112959384918, -0.1345708668231964, 0.02502306178212166, 0.1727406233549118, -0.1342712640762329, 0.030703585594892502, 1.2342792749404907, -0.1179966852068901, 0.07747801393270493, -0.034214962273836136]} +{"t": 11.5536, "q": [-0.36343926191329956, -0.02639640122652054, 0.016003314405679703, 0.6240319013595581, -0.29645422101020813, 0.025757789611816406, -0.3482784032821655, -0.0037497307639569044, 0.0034952848218381405, 0.630696177482605, -0.3333824872970581, 0.009249089285731316, 0.0065620290115475655, 0.06315037608146667, -0.03345805034041405, -2.362929582595825, 1.342820405960083, 2.301318883895874, -0.31274035573005676, -0.19666112959384918, -0.1345229297876358, 0.0249631404876709, 0.1726207733154297, -0.13428324460983276, 0.030775491148233414, 1.234243392944336, -0.1179727166891098, 0.07745404541492462, -0.03423893079161644]} +{"t": 11.5704, "q": [-0.36343926191329956, -0.02639640122652054, 0.01598992384970188, 0.6240319013595581, -0.29644182324409485, 0.025779535993933678, -0.34826135635375977, -0.003775297198444605, 0.003441717242822051, 0.6305939555168152, -0.33335381746292114, 0.009256068617105484, 0.006937001831829548, 0.06313527375459671, -0.03346734493970871, -2.366189479827881, 1.3554997444152832, 2.30873703956604, -0.3126085102558136, -0.19664914906024933, -0.13448697328567505, 0.024939171969890594, 0.17265672981739044, -0.1342712640762329, 0.030787475407123566, 1.234255313873291, -0.11793676018714905, 0.07747801393270493, -0.03425091505050659]} +{"t": 11.5871, "q": [-0.3634136915206909, -0.02647309936583042, 0.015909571200609207, 0.6240319013595581, -0.296450138092041, 0.02577950432896614, -0.34826135635375977, -0.003826429834589362, 0.003347973804920912, 0.6305087208747864, -0.33337029814720154, 0.009270763956010342, 0.007325367070734501, 0.06315047293901443, -0.03347767889499664, -2.3695929050445557, 1.367615818977356, 2.3170180320739746, -0.31246471405029297, -0.19667312502861023, -0.1344749927520752, 0.02491520345211029, 0.1727645844221115, -0.1342712640762329, 0.030775491148233414, 1.2343032360076904, -0.1179966852068901, 0.07749000191688538, -0.03422694653272629]} +{"t": 11.6038, "q": [-0.3634222149848938, -0.026481622830033302, 0.015909571200609207, 0.624108612537384, -0.2964750826358795, 0.02577940560877323, -0.34826987981796265, -0.0038690404035151005, 0.0032676225528120995, 0.6304746270179749, -0.33337855339050293, 0.009285377338528633, 0.007378934416919947, 0.06310511380434036, -0.03349575027823448, -2.3765318393707275, 1.3818531036376953, 2.3230581283569336, -0.312428742647171, -0.19662518799304962, -0.13446301221847534, 0.024927187711000443, 0.17270466685295105, -0.13428324460983276, 0.030799459666013718, 1.2343631982803345, -0.11798469722270966, 0.07744206488132477, -0.03425091505050659]} +{"t": 11.6207, "q": [-0.36336255073547363, -0.026481622830033302, 0.015762262046337128, 0.6241341829299927, -0.2964833676815033, 0.025764888152480125, -0.3482784032821655, -0.0038860845379531384, 0.0031872710678726435, 0.6301337480545044, -0.3333662152290344, 0.009277988225221634, 0.007606596685945988, 0.06308245658874512, -0.033509694039821625, -2.383410692214966, 1.396138310432434, 2.329469680786133, -0.3124407231807709, -0.19662518799304962, -0.13441507518291473, 0.024927187711000443, 0.1726687103509903, -0.13430720567703247, 0.030847394838929176, 1.2343392372131348, -0.1179966852068901, 0.07747801393270493, -0.03422694653272629]} +{"t": 11.6374, "q": [-0.3631921112537384, -0.026558320969343185, 0.015668518841266632, 0.6241000890731812, -0.2964875400066376, 0.025772104039788246, -0.3482784032821655, -0.00392869533970952, 0.0030131766106933355, 0.629946231842041, -0.3333541750907898, 0.009328744374215603, 0.007713731843978167, 0.06304468959569931, -0.03353293240070343, -2.388108491897583, 1.410339593887329, 2.3373193740844727, -0.31229692697525024, -0.19664914906024933, -0.1344270557165146, 0.024927187711000443, 0.17270466685295105, -0.13433118164539337, 0.03087136335670948, 1.2343631982803345, -0.1179727166891098, 0.07747801393270493, -0.03422694653272629]} +{"t": 11.6541, "q": [-0.3631409704685211, -0.026541277766227722, 0.015695301815867424, 0.6242023706436157, -0.29649174213409424, 0.025779321789741516, -0.34826987981796265, -0.003988349810242653, 0.003066744189709425, 0.6299377083778381, -0.3333665132522583, 0.009336150251328945, 0.0076467725448310375, 0.06304468959569931, -0.03353293240070343, -2.393105983734131, 1.424409031867981, 2.3435990810394287, -0.31222501397132874, -0.19664914906024933, -0.13437911868095398, 0.024927187711000443, 0.17257283627986908, -0.13431920111179352, 0.03087136335670948, 1.2343032360076904, -0.1179966852068901, 0.07745404541492462, -0.03422694653272629]} +{"t": 11.6708, "q": [-0.3630898594856262, -0.026609454303979874, 0.015748869627714157, 0.6241512298583984, -0.2965209186077118, 0.025800922885537148, -0.34826135635375977, -0.004022438544780016, 0.003254230599850416, 0.6298013925552368, -0.33334213495254517, 0.009379517287015915, 0.007807475049048662, 0.06304479390382767, -0.033552560955286026, -2.3968091011047363, 1.43867027759552, 2.3506219387054443, -0.3113142251968384, -0.19662518799304962, -0.13393570482730865, 0.024891234934329987, 0.1726447492837906, -0.13435514271259308, 0.030895331874489784, 1.2342913150787354, -0.11793676018714905, 0.07744206488132477, -0.03423893079161644]} +{"t": 11.6876, "q": [-0.36312392354011536, -0.02664354257285595, 0.015722084790468216, 0.62418532371521, -0.2965705692768097, 0.02572837844491005, -0.3482954502105713, -0.00418435875326395, 0.0032006630208343267, 0.6297928690910339, -0.3333382308483124, 0.009415805339813232, 0.007847650907933712, 0.06304468959569931, -0.03353293240070343, -2.4021899700164795, 1.4542018175125122, 2.3580880165100098, -0.3106910288333893, -0.19654129445552826, -0.13350427150726318, 0.02485528402030468, 0.17265672981739044, -0.13435514271259308, 0.030835412442684174, 1.2343392372131348, -0.1179487481713295, 0.07751397043466568, -0.03419099375605583]} +{"t": 11.7043, "q": [-0.3632432520389557, -0.02664354257285595, 0.015681909397244453, 0.6242194175720215, -0.29660364985466003, 0.02567036636173725, -0.3482954502105713, -0.004235491156578064, 0.003093527862802148, 0.6297076344490051, -0.3333342969417572, 0.009452092461287975, 0.007807475049048662, 0.06298422813415527, -0.03356030210852623, -2.4069597721099854, 1.4713633060455322, 2.3651227951049805, -0.3106670677661896, -0.19658923149108887, -0.13349229097366333, 0.024867268279194832, 0.17260879278182983, -0.13430720567703247, 0.03085937909781933, 1.2343392372131348, -0.11793676018714905, 0.07747801393270493, -0.03423893079161644]} +{"t": 11.7211, "q": [-0.3631835877895355, -0.026609454303979874, 0.015722084790468216, 0.6242108941078186, -0.29673606157302856, 0.025467250496149063, -0.3483465909957886, -0.004235491156578064, 0.0031872710678726435, 0.6296053528785706, -0.3333057165145874, 0.009473621845245361, 0.007700339891016483, 0.06293881684541702, -0.03356856107711792, -2.4102914333343506, 1.4867150783538818, 2.371438503265381, -0.31105056405067444, -0.19658923149108887, -0.1335282325744629, 0.024831315502524376, 0.17254887521266937, -0.1342712640762329, 0.030895331874489784, 1.2343032360076904, -0.1179487481713295, 0.07746603339910507, -0.034214962273836136]} +{"t": 11.7378, "q": [-0.36326882243156433, -0.026617975905537605, 0.01577565260231495, 0.6242194175720215, -0.2967611253261566, 0.0254961010068655, -0.3483721613883972, -0.004261057823896408, 0.003334582084789872, 0.629503071308136, -0.3333222568035126, 0.009502848610281944, 0.007499461527913809, 0.062840536236763, -0.03360935300588608, -2.415121078491211, 1.5034090280532837, 2.3765199184417725, -0.3113621473312378, -0.19654129445552826, -0.13361212611198425, 0.02479536272585392, 0.17252489924430847, -0.1342233270406723, 0.030919300392270088, 1.2342792749404907, -0.1179487481713295, 0.07746603339910507, -0.03423893079161644]} +{"t": 11.7546, "q": [-0.36326029896736145, -0.026558320969343185, 0.015842612832784653, 0.6241938471794128, -0.2967569828033447, 0.02550335042178631, -0.3483721613883972, -0.004278101958334446, 0.003468500915914774, 0.6294690370559692, -0.33325308561325073, 0.009611174464225769, 0.0074191102758049965, 0.06283293664455414, -0.03360418602824211, -2.4203221797943115, 1.518904685974121, 2.3814454078674316, -0.3113142251968384, -0.19654129445552826, -0.13367204368114471, 0.0246755201369524, 0.17252489924430847, -0.134247288107872, 0.030835412442684174, 1.234243392944336, -0.11793676018714905, 0.07745404541492462, -0.034214962273836136]} +{"t": 11.7713, "q": [-0.36331993341445923, -0.02659240923821926, 0.015882788226008415, 0.62418532371521, -0.2967569828033447, 0.02550335042178631, -0.34836363792419434, -0.004312190227210522, 0.00354885240085423, 0.6294775605201721, -0.3332367539405823, 0.009625541977584362, 0.007445894181728363, 0.06285574287176132, -0.03361968696117401, -2.4247562885284424, 1.5348916053771973, 2.3862390518188477, -0.3108348548412323, -0.19654129445552826, -0.13358816504478455, 0.024711472913622856, 0.17256085574626923, -0.13423530757427216, 0.030883347615599632, 1.2342313528060913, -0.11793676018714905, 0.07744206488132477, -0.034202978014945984]} +{"t": 11.7881, "q": [-0.36325177550315857, -0.026600932702422142, 0.01581582799553871, 0.6241682767868042, -0.2967611849308014, 0.02551056630909443, -0.3483721613883972, -0.004346278961747885, 0.003468500915914774, 0.6294008493423462, -0.3332614600658417, 0.009640336968004704, 0.0074860695749521255, 0.06284064054489136, -0.033628981560468674, -2.426529884338379, 1.550207495689392, 2.393105983734131, -0.3103794455528259, -0.1964813768863678, -0.1333484798669815, 0.024687504395842552, 0.17256085574626923, -0.1341993510723114, 0.030883347615599632, 1.234255313873291, -0.11796072870492935, 0.07745404541492462, -0.034214962273836136]} +{"t": 11.8048, "q": [-0.3631921112537384, -0.026609454303979874, 0.015695301815867424, 0.6242108941078186, -0.2967569828033447, 0.02550335042178631, -0.3483721613883972, -0.004337756894528866, 0.003321190131828189, 0.6293752789497375, -0.3332612216472626, 0.00959672499448061, 0.0074860695749521255, 0.06279532611370087, -0.03365686908364296, -2.428471326828003, 1.5651637315750122, 2.398127317428589, -0.31027159094810486, -0.1964813768863678, -0.13327656686306, 0.024687504395842552, 0.17254887521266937, -0.1342233270406723, 0.03087136335670948, 1.234255313873291, -0.11793676018714905, 0.07749000191688538, -0.03422694653272629]} +{"t": 11.8215, "q": [-0.3632262051105499, -0.02658388763666153, 0.015547990798950195, 0.6242875456809998, -0.29674866795539856, 0.025503382086753845, -0.3483806848526001, -0.004363323096185923, 0.003133703488856554, 0.6293667554855347, -0.33324894309043884, 0.009603867307305336, 0.007619988638907671, 0.06268194317817688, -0.03370695561170578, -2.430616617202759, 1.581222653388977, 2.402945041656494, -0.31057119369506836, -0.19646938145160675, -0.13333648443222046, 0.0246755201369524, 0.17253689467906952, -0.1341993510723114, 0.030955253168940544, 1.2342792749404907, -0.11796072870492935, 0.07749000191688538, -0.03419099375605583]} +{"t": 11.8383, "q": [-0.36316654086112976, -0.026617975905537605, 0.015507815405726433, 0.6243045926094055, -0.2966907322406769, 0.0255904421210289, -0.3483806848526001, -0.004346278961747885, 0.003066744189709425, 0.6293582320213318, -0.33324894309043884, 0.009603867307305336, 0.007553029339760542, 0.062598817050457, -0.033748265355825424, -2.43279767036438, 1.596550464630127, 2.406001091003418, -0.3105592131614685, -0.1964574009180069, -0.1333484798669815, 0.024699488654732704, 0.17254887521266937, -0.1341753900051117, 0.03093128465116024, 1.2342313528060913, -0.11793676018714905, 0.07744206488132477, -0.03423893079161644]} +{"t": 11.855, "q": [-0.36321768164634705, -0.026635020971298218, 0.015521206893026829, 0.6243301630020142, -0.2966865599155426, 0.02558322623372078, -0.34839773178100586, -0.004320712294429541, 0.0030801359098404646, 0.6293838024139404, -0.33324065804481506, 0.009589253924787045, 0.007459285669028759, 0.06256860494613647, -0.03376685455441475, -2.4340200424194336, 1.6111233234405518, 2.40922474861145, -0.31049928069114685, -0.19644542038440704, -0.13327656686306, 0.024627583101391792, 0.17252489924430847, -0.1341514140367508, 0.030907316133379936, 1.2342313528060913, -0.11796072870492935, 0.07745404541492462, -0.03423893079161644]} +{"t": 11.8717, "q": [-0.36326029896736145, -0.026609454303979874, 0.0155345993116498, 0.6243301630020142, -0.2966907322406769, 0.0255904421210289, -0.34839773178100586, -0.004312190227210522, 0.003066744189709425, 0.6294519901275635, -0.3332570791244507, 0.009589417837560177, 0.007378934416919947, 0.06256860494613647, -0.03376685455441475, -2.4354941844940186, 1.6261035203933716, 2.4122567176818848, -0.3104393780231476, -0.19639748334884644, -0.13324061036109924, 0.024567661806941032, 0.1724889576435089, -0.1341753900051117, 0.03093128465116024, 1.2342673540115356, -0.11796072870492935, 0.07747801393270493, -0.034202978014945984]} +{"t": 11.8885, "q": [-0.3632347285747528, -0.026635020971298218, 0.015588166192173958, 0.624338686466217, -0.29660385847091675, 0.025728246197104454, -0.3483806848526001, -0.004320712294429541, 0.003093527862802148, 0.629571259021759, -0.3332200348377228, 0.00956723466515541, 0.0074191102758049965, 0.06257615983486176, -0.03376220911741257, -2.4378671646118164, 1.6408681869506836, 2.4148693084716797, -0.31027159094810486, -0.19639748334884644, -0.13309679925441742, 0.02455567754805088, 0.172464981675148, -0.1341753900051117, 0.030919300392270088, 1.2342673540115356, -0.11796072870492935, 0.07746603339910507, -0.03423893079161644]} +{"t": 11.9052, "q": [-0.3632773458957672, -0.026626497507095337, 0.01562834158539772, 0.6243045926094055, -0.29656654596328735, 0.02576455846428871, -0.348389208316803, -0.004312190227210522, 0.0031203117687255144, 0.6296650171279907, -0.3332405090332031, 0.009560191072523594, 0.007526245433837175, 0.06259126216173172, -0.033752914518117905, -2.440084218978882, 1.6550694704055786, 2.4178173542022705, -0.31012779474258423, -0.1964094638824463, -0.13301292061805725, 0.024471787735819817, 0.17242904007434845, -0.13418737053871155, 0.03087136335670948, 1.2343032360076904, -0.1179966852068901, 0.07745404541492462, -0.034214962273836136]} +{"t": 11.9219, "q": [-0.36330291628837585, -0.026660587638616562, 0.015561383217573166, 0.6243131160736084, -0.2965541481971741, 0.025786306709051132, -0.34839773178100586, -0.004303668159991503, 0.0030131766106933355, 0.6297502517700195, -0.3332527279853821, 0.00953849870711565, 0.007499461527913809, 0.06262162327766418, -0.033763766288757324, -2.4421215057373047, 1.6698219776153564, 2.42153263092041, -0.30990007519721985, -0.19639748334884644, -0.13303688168525696, 0.024411866441369057, 0.1723451465368271, -0.134247288107872, 0.03085937909781933, 1.2344350814819336, -0.1179966852068901, 0.07747801393270493, -0.03419099375605583]} +{"t": 11.9387, "q": [-0.36330291628837585, -0.02665206417441368, 0.015561383217573166, 0.6242875456809998, -0.2965540587902069, 0.025757376104593277, -0.3483806848526001, -0.004261057823896408, 0.002986392704769969, 0.6298184394836426, -0.33326077461242676, 0.009509517811238766, 0.007539637386798859, 0.06262166798114777, -0.03377357870340347, -2.4434876441955566, 1.6831364631652832, 2.4250199794769287, -0.30974429845809937, -0.19639748334884644, -0.1329769641160965, 0.02442385070025921, 0.17227323353290558, -0.13428324460983276, 0.03085937909781933, 1.2344471216201782, -0.11796072870492935, 0.07750198245048523, -0.03423893079161644]} +{"t": 11.9554, "q": [-0.36326882243156433, -0.026575366035103798, 0.0155345993116498, 0.6242960691452026, -0.29654985666275024, 0.025750160217285156, -0.3483806848526001, -0.004141747951507568, 0.0029060414526611567, 0.629861056804657, -0.3332769572734833, 0.009466051124036312, 0.0074860695749521255, 0.0626140683889389, -0.033768411725759506, -2.444662094116211, 1.697721242904663, 2.4288430213928223, -0.30960047245025635, -0.19638550281524658, -0.13296498358249664, 0.024411866441369057, 0.17212942242622375, -0.13425926864147186, 0.03085937909781933, 1.234483003616333, -0.1179727166891098, 0.07745404541492462, -0.034202978014945984]} +{"t": 11.9722, "q": [-0.3632262051105499, -0.026481622830033302, 0.015494422987103462, 0.6243301630020142, -0.29655399918556213, 0.02574291080236435, -0.3483806848526001, -0.004030960611999035, 0.0027721223887056112, 0.6298525333404541, -0.33328086137771606, 0.009429763071238995, 0.0072584073059260845, 0.06259896606206894, -0.03377771005034447, -2.445920467376709, 1.711898684501648, 2.431898832321167, -0.30927690863609314, -0.19636152684688568, -0.1329290270805359, 0.024387897923588753, 0.17173394560813904, -0.134247288107872, 0.03082342818379402, 1.2345070838928223, -0.1179966852068901, 0.07747801393270493, -0.03425091505050659]} +{"t": 11.9889, "q": [-0.36326029896736145, -0.026430489495396614, 0.015494422987103462, 0.6243813037872314, -0.296558141708374, 0.025735661387443542, -0.3483806848526001, -0.00392869533970952, 0.0027855143416672945, 0.6298695802688599, -0.33328086137771606, 0.009429763071238995, 0.006950393784791231, 0.06256110966205597, -0.03378131985664368, -2.447298526763916, 1.72708261013031, 2.434847116470337, -0.30892935395240784, -0.19636152684688568, -0.1329290270805359, 0.02436392940580845, 0.1711706817150116, -0.134247288107872, 0.03081144392490387, 1.2344950437545776, -0.11796072870492935, 0.07747801393270493, -0.03423893079161644]} +{"t": 12.0056, "q": [-0.36325177550315857, -0.026430489495396614, 0.015494422987103462, 0.6244068741798401, -0.29654985666275024, 0.025750160217285156, -0.3483721613883972, -0.0038860845379531384, 0.002839081920683384, 0.6299036145210266, -0.3332727253437042, 0.009444213472306728, 0.0065620290115475655, 0.06255350261926651, -0.03377615287899971, -2.4483413696289062, 1.7420989274978638, 2.4384663105010986, -0.3086656928062439, -0.19636152684688568, -0.132905051112175, 0.02431599237024784, 0.1703677475452423, -0.13428324460983276, 0.03081144392490387, 1.2344950437545776, -0.11796072870492935, 0.07746603339910507, -0.03423893079161644]} +{"t": 12.0225, "q": [-0.3632432520389557, -0.02646457776427269, 0.01562834158539772, 0.6244239211082458, -0.29654160141944885, 0.02576465718448162, -0.3483806848526001, -0.003920173272490501, 0.002946217078715563, 0.6300485134124756, -0.3332686126232147, 0.009436906315386295, 0.006294190883636475, 0.06258376687765121, -0.033767376095056534, -2.450378656387329, 1.755988597869873, 2.4413065910339355, -0.30842602252960205, -0.19633756577968597, -0.13285711407661438, 0.02430400811135769, 0.16948091983795166, -0.13435514271259308, 0.03081144392490387, 1.234542965888977, -0.1179727166891098, 0.07747801393270493, -0.03423893079161644]} +{"t": 12.0392, "q": [-0.3632432520389557, -0.026481622830033302, 0.015748869627714157, 0.6245688199996948, -0.29654568433761597, 0.025742942467331886, -0.34835511445999146, -0.003920173272490501, 0.003133703488856554, 0.6302615404129028, -0.3332481384277344, 0.009443985298275948, 0.006039745174348354, 0.06259141862392426, -0.03378235548734665, -2.453206777572632, 1.7695907354354858, 2.44364333152771, -0.30792269110679626, -0.19633756577968597, -0.13283315300941467, 0.024280039593577385, 0.1684263050556183, -0.1344030797481537, 0.030799459666013718, 1.2346268892288208, -0.1179727166891098, 0.07747801393270493, -0.03422694653272629]} +{"t": 12.0559, "q": [-0.3632262051105499, -0.026507189497351646, 0.015829220414161682, 0.6246795654296875, -0.2965622544288635, 0.025728411972522736, -0.34836363792419434, -0.00392869533970952, 0.003240838646888733, 0.6303467750549316, -0.33326053619384766, 0.009465905837714672, 0.005879042204469442, 0.06259141862392426, -0.03378235548734665, -2.4555678367614746, 1.7825576066970825, 2.4467952251434326, -0.3073953688144684, -0.19632558524608612, -0.13280917704105377, 0.024232102558016777, 0.1672518402338028, -0.1344510167837143, 0.030775491148233414, 1.2347347736358643, -0.11796072870492935, 0.07747801393270493, -0.03423893079161644]} +{"t": 12.0727, "q": [-0.36312392354011536, -0.026498666033148766, 0.015842612832784653, 0.6247477531433105, -0.2965623140335083, 0.025742877274751663, -0.3483721613883972, -0.003937217406928539, 0.003240838646888733, 0.6304490566253662, -0.3332359194755554, 0.009465659968554974, 0.005745123140513897, 0.06255350261926651, -0.03377615287899971, -2.459846019744873, 1.7947216033935547, 2.447861909866333, -0.3070598244667053, -0.19633756577968597, -0.1327732354402542, 0.02424408681690693, 0.16631707549095154, -0.1344510167837143, 0.030787475407123566, 1.234770655632019, -0.1179966852068901, 0.07750198245048523, -0.034202978014945984]} +{"t": 12.0894, "q": [-0.363106906414032, -0.026498666033148766, 0.01581582799553871, 0.6248756051063538, -0.29659947752952576, 0.02566315047442913, -0.3483806848526001, -0.00392869533970952, 0.00321405497379601, 0.6304831504821777, -0.3332318663597107, 0.009472884237766266, 0.0056112040765583515, 0.06256110966205597, -0.03378131985664368, -2.4629619121551514, 1.8064781427383423, 2.4489643573760986, -0.3064126670360565, -0.19636152684688568, -0.13282117247581482, 0.02425607107579708, 0.16544222831726074, -0.1344510167837143, 0.03076350688934326, 1.2347826957702637, -0.11798469722270966, 0.07749000191688538, -0.03423893079161644]} +{"t": 12.1063, "q": [-0.36311542987823486, -0.026515711098909378, 0.015842612832784653, 0.6249182224273682, -0.2966243028640747, 0.025619637221097946, -0.3483806848526001, -0.003920173272490501, 0.003254230599850416, 0.6305854320526123, -0.3332318663597107, 0.009472884237766266, 0.005624596029520035, 0.06256870925426483, -0.033786483108997345, -2.4643161296844482, 1.8164969682693481, 2.449899196624756, -0.30535805225372314, -0.19633756577968597, -0.13283315300941467, 0.024280039593577385, 0.16473515331745148, -0.1344749927520752, 0.030799459666013718, 1.234758734703064, -0.11798469722270966, 0.07749000191688538, -0.03422694653272629]} +{"t": 12.123, "q": [-0.36316654086112976, -0.02652423270046711, 0.015882788226008415, 0.6249523162841797, -0.2965663969516754, 0.02572116255760193, -0.34839773178100586, -0.003962783608585596, 0.003361365757882595, 0.630611002445221, -0.33322373032569885, 0.009487334638834, 0.005557636730372906, 0.06260652095079422, -0.03377306088805199, -2.46451997756958, 1.8267914056777954, 2.449815273284912, -0.30386003851890564, -0.19632558524608612, -0.13285711407661438, 0.024292023852467537, 0.16418388485908508, -0.13453491032123566, 0.03082342818379402, 1.2347227334976196, -0.1179487481713295, 0.07745404541492462, -0.03423893079161644]} +{"t": 12.1398, "q": [-0.363336980342865, -0.026515711098909378, 0.01598992384970188, 0.6249011754989624, -0.29664501547813416, 0.025597838684916496, -0.348389208316803, -0.003937217406928539, 0.003575636073946953, 0.6308240294456482, -0.33325663208961487, 0.009502192959189415, 0.005490677431225777, 0.06262162327766418, -0.033763766288757324, -2.4639687538146973, 1.835707664489746, 2.4490244388580322, -0.30296120047569275, -0.19636152684688568, -0.13279719650745392, 0.02425607107579708, 0.1639561802148819, -0.1344749927520752, 0.03085937909781933, 1.2346148490905762, -0.1179727166891098, 0.07747801393270493, -0.03422694653272629]} +{"t": 12.1565, "q": [-0.3636949062347412, -0.02652423270046711, 0.016056882217526436, 0.624858558177948, -0.2965497076511383, 0.025706762447953224, -0.34836363792419434, -0.0039116512052714825, 0.003696163184940815, 0.6309689283370972, -0.3332359194755554, 0.009465659968554974, 0.005383542273193598, 0.06262902170419693, -0.0337296724319458, -2.463585138320923, 1.8445639610290527, 2.4481494426727295, -0.30153509974479675, -0.19636152684688568, -0.13266538083553314, 0.024268055334687233, 0.16387230157852173, -0.13448697328567505, 0.03085937909781933, 1.2345908880233765, -0.11793676018714905, 0.07745404541492462, -0.03423893079161644]} +{"t": 12.1733, "q": [-0.36395058035850525, -0.02647309936583042, 0.01615062542259693, 0.6248159408569336, -0.29653722047805786, 0.025699561461806297, -0.3486022651195526, -0.003894606838002801, 0.0037899063900113106, 0.6312160491943359, -0.33321499824523926, 0.009385514073073864, 0.0053701503202319145, 0.06270395219326019, -0.03356542810797691, -2.4625306129455566, 1.8514070510864258, 2.446735382080078, -0.30045652389526367, -0.19638550281524658, -0.13264140486717224, 0.024280039593577385, 0.16380038857460022, -0.1344749927520752, 0.03081144392490387, 1.2345669269561768, -0.11796072870492935, 0.07746603339910507, -0.034202978014945984]} +{"t": 12.19, "q": [-0.3639164865016937, -0.026447534561157227, 0.01615062542259693, 0.6247648000717163, -0.296450138092041, 0.02577950432896614, -0.34886643290519714, -0.0037923413328826427, 0.0037229470908641815, 0.6313012838363647, -0.33321863412857056, 0.009291063994169235, 0.005316582508385181, 0.06277729570865631, -0.03308713436126709, -2.459810256958008, 1.8580702543258667, 2.4430081844329834, -0.29921016097068787, -0.19636152684688568, -0.13266538083553314, 0.02425607107579708, 0.16371649503707886, -0.1344749927520752, 0.030847394838929176, 1.234531044960022, -0.11793676018714905, 0.07743007689714432, -0.034202978014945984]} +{"t": 12.2067, "q": [-0.3638738691806793, -0.02640492282807827, 0.016097059473395348, 0.6246710419654846, -0.2964085042476654, 0.025765184313058853, -0.3491135835647583, -0.003698598127812147, 0.0036024199798703194, 0.6313353776931763, -0.3332469165325165, 0.009211409837007523, 0.005196055397391319, 0.06290211528539658, -0.032351426780223846, -2.456634283065796, 1.8659558296203613, 2.4376392364501953, -0.2970050573348999, -0.19633756577968597, -0.13266538083553314, 0.02424408681690693, 0.16371649503707886, -0.1344989538192749, 0.03082342818379402, 1.2345190048217773, -0.1179247796535492, 0.07744206488132477, -0.03422694653272629]} +{"t": 12.2235, "q": [-0.36376309394836426, -0.026362312957644463, 0.016097059473395348, 0.6246028542518616, -0.2963918149471283, 0.02575080282986164, -0.3493351638317108, -0.0036389431916177273, 0.0035220684949308634, 0.6314375996589661, -0.33333227038383484, 0.009059634990990162, 0.005249623209238052, 0.06285981088876724, -0.031521398574113846, -2.4517807960510254, 1.8737096786499023, 2.433384895324707, -0.29374533891677856, -0.19638550281524658, -0.1327252984046936, 0.024268055334687233, 0.16369253396987915, -0.1344749927520752, 0.030847394838929176, 1.2345070838928223, -0.1179727166891098, 0.07746603339910507, -0.03423893079161644]} +{"t": 12.2402, "q": [-0.3637886643409729, -0.0262770913541317, 0.016003314405679703, 0.6246028542518616, -0.29636287689208984, 0.02580154687166214, -0.3496163785457611, -0.0035366779193282127, 0.0033077981788665056, 0.6314290761947632, -0.3333640396595001, 0.00885646790266037, 0.0051424880512058735, 0.06294641643762589, -0.030731020495295525, -2.4470229148864746, 1.8817631006240845, 2.4269495010375977, -0.2897665798664093, -0.19638550281524658, -0.1326294243335724, 0.02424408681690693, 0.16362062096595764, -0.13448697328567505, 0.03082342818379402, 1.234471082687378, -0.1179247796535492, 0.07744206488132477, -0.03422694653272629]} +{"t": 12.2572, "q": [-0.3636097013950348, -0.026183348149061203, 0.016003314405679703, 0.6246369481086731, -0.29631713032722473, 0.02580896206200123, -0.34986352920532227, -0.003391801845282316, 0.0031604873947799206, 0.6313949823379517, -0.33340024948120117, 0.008718732744455338, 0.0051424880512058735, 0.06306345760822296, -0.029970824718475342, -2.440347671508789, 1.88957679271698, 2.421496629714966, -0.2858237624168396, -0.19636152684688568, -0.1324496567249298, 0.02425607107579708, 0.16339293122291565, -0.1345229297876358, 0.03081144392490387, 1.2344111204147339, -0.11793676018714905, 0.07743007689714432, -0.03422694653272629]} +{"t": 12.274, "q": [-0.36354151368141174, -0.026123693212866783, 0.01594974845647812, 0.6246966123580933, -0.2962545156478882, 0.025744114071130753, -0.3501192033290863, -0.0033747577108442783, 0.0029060414526611567, 0.6314290761947632, -0.33351826667785645, 0.00853822287172079, 0.005155880004167557, 0.06301246583461761, -0.02899996004998684, -2.432569980621338, 1.897222638130188, 2.4159598350524902, -0.28189295530319214, -0.19632558524608612, -0.13248561322689056, 0.02424408681690693, 0.16321316361427307, -0.13451094925403595, 0.030835412442684174, 1.2343871593475342, -0.11796072870492935, 0.07745404541492462, -0.03423893079161644]} +{"t": 12.2907, "q": [-0.36348187923431396, -0.02609812654554844, 0.01593635603785515, 0.6246795654296875, -0.29622548818588257, 0.025765908882021904, -0.3502214550971985, -0.003272492438554764, 0.0027855143416672945, 0.6314375996589661, -0.3335375487804413, 0.008298568427562714, 0.005075528286397457, 0.06293100863695145, -0.02798917144536972, -2.4260506629943848, 1.904293417930603, 2.408961057662964, -0.2787650525569916, -0.19633756577968597, -0.13222195208072662, 0.02425607107579708, 0.16309332847595215, -0.13451094925403595, 0.030895331874489784, 1.2343991994857788, -0.11793676018714905, 0.07745404541492462, -0.034214962273836136]} +{"t": 12.3076, "q": [-0.3630557656288147, -0.02605551667511463, 0.01597653143107891, 0.6246369481086731, -0.2962213456630707, 0.02577315829694271, -0.3502214550971985, -0.0032469260040670633, 0.002718554809689522, 0.6314546465873718, -0.3335251212120056, 0.008276647888123989, 0.004767514765262604, 0.06297914683818817, -0.02714475616812706, -2.420501947402954, 1.9104293584823608, 2.4015069007873535, -0.2770393490791321, -0.19636152684688568, -0.13194632530212402, 0.02419615164399147, 0.16287760436534882, -0.1344749927520752, 0.03087136335670948, 1.2344231605529785, -0.1179487481713295, 0.07745404541492462, -0.03423893079161644]} +{"t": 12.3243, "q": [-0.36280861496925354, -0.026072561740875244, 0.01612384244799614, 0.6246199011802673, -0.29620471596717834, 0.025773242115974426, -0.3501703143119812, -0.003204315435141325, 0.002718554809689522, 0.6316165924072266, -0.3334921598434448, 0.008247257210314274, 0.004325582180172205, 0.06300298869609833, -0.02608020231127739, -2.415228843688965, 1.9168528318405151, 2.3944602012634277, -0.2760685980319977, -0.19631358981132507, -0.1317785382270813, 0.024100277572870255, 0.16263791918754578, -0.13453491032123566, 0.03085937909781933, 1.2343991994857788, -0.1179247796535492, 0.07744206488132477, -0.03425091505050659]} +{"t": 12.3411, "q": [-0.3624165952205658, -0.026081083342432976, 0.0163247212767601, 0.6245006322860718, -0.2962172031402588, 0.025780407711863518, -0.3499317169189453, -0.003195793367922306, 0.0027721223887056112, 0.6319233775138855, -0.33343422412872314, 0.008144945837557316, 0.003696163184940815, 0.06305714696645737, -0.02501722238957882, -2.4100637435913086, 1.9239715337753296, 2.389223098754883, -0.27522972226142883, -0.19633756577968597, -0.1318025141954422, 0.02407630905508995, 0.1621825248003006, -0.13448697328567505, 0.03081144392490387, 1.2343871593475342, -0.11793676018714905, 0.07745404541492462, -0.03423893079161644]} +{"t": 12.358, "q": [-0.362169474363327, -0.026072561740875244, 0.016498815268278122, 0.6243557333946228, -0.29622557759284973, 0.02579485811293125, -0.3498038649559021, -0.003204315435141325, 0.0027989062946289778, 0.6320256590843201, -0.3334340751171112, 0.008115846663713455, 0.0029997846577316523, 0.06324067711830139, -0.024100996553897858, -2.4057013988494873, 1.9320008754730225, 2.385483980178833, -0.2742350399494171, -0.19632558524608612, -0.1318025141954422, 0.02407630905508995, 0.16143949329853058, -0.13455888628959656, 0.030847394838929176, 1.2343631982803345, -0.1179247796535492, 0.07744206488132477, -0.03422694653272629]} +{"t": 12.3747, "q": [-0.36188822984695435, -0.026064038276672363, 0.016565775498747826, 0.6240745186805725, -0.29622966051101685, 0.025773124769330025, -0.3497101366519928, -0.003144660498946905, 0.0027855143416672945, 0.6321108937263489, -0.3334829807281494, 0.008058212697505951, 0.0021962709724903107, 0.06353648006916046, -0.023018386214971542, -2.4022018909454346, 1.9419478178024292, 2.3810858726501465, -0.27325230836868286, -0.19630160927772522, -0.1315268725156784, 0.024100277572870255, 0.16002535820007324, -0.1345229297876358, 0.03085937909781933, 1.2344111204147339, -0.1179727166891098, 0.07749000191688538, -0.034202978014945984]} +{"t": 12.3915, "q": [-0.3613087236881256, -0.02591916359961033, 0.01678004488348961, 0.6234439015388489, -0.29622551798820496, 0.02578037418425083, -0.34964194893836975, -0.0029060414526611567, 0.002959609031677246, 0.6320938467979431, -0.333629310131073, 0.007798047736287117, 0.0008838651119731367, 0.06386707723140717, -0.021504411473870277, -2.3986785411834717, 1.9531171321868896, 2.377610445022583, -0.2731204926967621, -0.19631358981132507, -0.1314549595117569, 0.024052340537309647, 0.15811987221240997, -0.13448697328567505, 0.03082342818379402, 1.2343991994857788, -0.11796072870492935, 0.07745404541492462, -0.03423893079161644]} +{"t": 12.4082, "q": [-0.36026903986930847, -0.02568054385483265, 0.017355896532535553, 0.6226342916488647, -0.29622963070869446, 0.025758659467101097, -0.3495822846889496, -0.0025566346012055874, 0.0034149333368986845, 0.6320427060127258, -0.3337065577507019, 0.0076607223600149155, -0.0003481892927084118, 0.06407585740089417, -0.019918398931622505, -2.397444248199463, 1.96468186378479, 2.3754892349243164, -0.27322834730148315, -0.19630160927772522, -0.13146695494651794, 0.02400440350174904, 0.1567416787147522, -0.1344749927520752, 0.030847394838929176, 1.234531044960022, -0.1179487481713295, 0.07750198245048523, -0.03423893079161644]} +{"t": 12.4249, "q": [-0.3594253361225128, -0.02538226917386055, 0.017690693959593773, 0.6220547556877136, -0.2962295114994049, 0.025729728862643242, -0.34909653663635254, -0.0021646174136549234, 0.0037229470908641815, 0.6318807601928711, -0.3337915241718292, 0.007436272222548723, -0.0011784868547692895, 0.06406576931476593, -0.01847785897552967, -2.397588014602661, 1.9762825965881348, 2.3739430904388428, -0.2733481824398041, -0.19632558524608612, -0.1315028965473175, 0.02401638776063919, 0.15590278804302216, -0.13439109921455383, 0.03085937909781933, 1.2345550060272217, -0.1179487481713295, 0.07747801393270493, -0.03419099375605583]} +{"t": 12.4417, "q": [-0.3583345115184784, -0.025126606225967407, 0.01778443716466427, 0.62142413854599, -0.29623356461524963, 0.025693530216813087, -0.34844884276390076, -0.0019089538836851716, 0.003696163184940815, 0.6316933035850525, -0.3339623808860779, 0.0071618035435676575, -0.0018212978029623628, 0.06362058967351913, -0.01754714362323284, -2.3982112407684326, 1.9870444536209106, 2.373403787612915, -0.27343207597732544, -0.19631358981132507, -0.13158679008483887, 0.024040356278419495, 0.15525563061237335, -0.13433118164539337, 0.030907316133379936, 1.2346148490905762, -0.1179487481713295, 0.07747801393270493, -0.03422694653272629]} +{"t": 12.4585, "q": [-0.3575930893421173, -0.025066951289772987, 0.017730869352817535, 0.6207594275474548, -0.2962251305580139, 0.025664614513516426, -0.3477756083011627, -0.0018578211311250925, 0.003696163184940815, 0.6315398812294006, -0.33415356278419495, 0.0068512288853526115, -0.002356973709538579, 0.06311134248971939, -0.017183322459459305, -2.3987746238708496, 1.9973868131637573, 2.373068332672119, -0.27348002791404724, -0.19630160927772522, -0.13167068362236023, 0.024040356278419495, 0.1546204686164856, -0.1341514140367508, 0.031027158722281456, 1.23469877243042, -0.1179487481713295, 0.07751397043466568, -0.03422694653272629]} +{"t": 12.4752, "q": [-0.356681227684021, -0.024981729686260223, 0.017677301540970802, 0.6199924349784851, -0.2961875796318054, 0.02562861703336239, -0.3468296527862549, -0.0017811221769079566, 0.003669379511848092, 0.63113933801651, -0.33423900604248047, 0.006713985465466976, -0.0027051628567278385, 0.06282257288694382, -0.016988618299365044, -2.3997092247009277, 2.0093350410461426, 2.372912645339966, -0.2740193009376526, -0.19630160927772522, -0.1318264752626419, 0.024040356278419495, 0.1537695974111557, -0.13407951593399048, 0.030979221686720848, 1.23469877243042, -0.1179727166891098, 0.07746603339910507, -0.03423893079161644]} +{"t": 12.492, "q": [-0.3557693660259247, -0.02495616301894188, 0.017704086378216743, 0.6190890669822693, -0.296137273311615, 0.02551303617656231, -0.34584107995033264, -0.0017896442441269755, 0.003669379511848092, 0.6307132244110107, -0.3343329131603241, 0.006634967867285013, -0.0029194331727921963, 0.06270118802785873, -0.01693580113351345, -2.400404453277588, 2.0231528282165527, 2.3729004859924316, -0.27387550473213196, -0.19626565277576447, -0.13183845579624176, 0.02401638776063919, 0.15269100666046143, -0.1341274529695511, 0.030979221686720848, 1.23469877243042, -0.11798469722270966, 0.07747801393270493, -0.03423893079161644]} +{"t": 12.5089, "q": [-0.3547126054763794, -0.02495616301894188, 0.017851397395133972, 0.6181687116622925, -0.2960745096206665, 0.025404755026102066, -0.3443070948123932, -0.0018066884949803352, 0.0037497307639569044, 0.6303723454475403, -0.33435723185539246, 0.0065770698711276054, -0.0029997846577316523, 0.06267072260379791, -0.016905583441257477, -2.401111364364624, 2.0372703075408936, 2.372828722000122, -0.2737196981906891, -0.19630160927772522, -0.1318025141954422, 0.024028372019529343, 0.1516004502773285, -0.1341993510723114, 0.030991205945611, 1.2347227334976196, -0.1179966852068901, 0.07747801393270493, -0.03422694653272629]} +{"t": 12.5257, "q": [-0.3540734648704529, -0.024922074750065804, 0.017904965206980705, 0.6170011758804321, -0.29608264565467834, 0.02534686028957367, -0.34235554933547974, -0.0018322548130527139, 0.0038970415480434895, 0.6297587752342224, -0.3345491886138916, 0.006411845795810223, -0.0034149333368986845, 0.06261000037193298, -0.016874315217137337, -2.4019863605499268, 2.053520917892456, 2.372804641723633, -0.2736957371234894, -0.19630160927772522, -0.1317785382270813, 0.024052340537309647, 0.14999456703662872, -0.134247288107872, 0.031003190204501152, 1.2347826957702637, -0.11796072870492935, 0.07747801393270493, -0.03422694653272629]} +{"t": 12.5425, "q": [-0.35256505012512207, -0.024862419813871384, 0.017690693959593773, 0.6159018278121948, -0.2961157560348511, 0.0253033135086298, -0.3404977321624756, -0.0018578211311250925, 0.00388364982791245, 0.6286253333091736, -0.33483171463012695, 0.006320179905742407, -0.004874649923294783, 0.06246718764305115, -0.017000528052449226, -2.40211820602417, 2.0697834491729736, 2.3726367950439453, -0.272641122341156, -0.19633756577968597, -0.13149091601371765, 0.024052340537309647, 0.14818494021892548, -0.1342712640762329, 0.031027158722281456, 1.2350223064422607, -0.1179966852068901, 0.07750198245048523, -0.03422694653272629]} +{"t": 12.5592, "q": [-0.3500424921512604, -0.024743109941482544, 0.01765051856637001, 0.6148620843887329, -0.2961696982383728, 0.025266917422413826, -0.33886146545410156, -0.0018748653819784522, 0.003803298342972994, 0.6276196837425232, -0.33513304591178894, 0.005887121427804232, -0.006655772216618061, 0.06224885955452919, -0.01714354194700718, -2.402022123336792, 2.084739923477173, 2.3723254203796387, -0.27175429463386536, -0.19630160927772522, -0.1311313956975937, 0.024052340537309647, 0.14614762365818024, -0.13421133160591125, 0.030979221686720848, 1.235058307647705, -0.1179727166891098, 0.07747801393270493, -0.03423893079161644]} +{"t": 12.5759, "q": [-0.34844884276390076, -0.024615278467535973, 0.017596950754523277, 0.6141632795333862, -0.29618629813194275, 0.025252368301153183, -0.3382478952407837, -0.0018492990639060736, 0.0037497307639569044, 0.6269038319587708, -0.3352598547935486, 0.005822980776429176, -0.008155664429068565, 0.061865951865911484, -0.01754320226609707, -2.4019503593444824, 2.1006429195404053, 2.3717620372772217, -0.2717662751674652, -0.19631358981132507, -0.1311553567647934, 0.024052340537309647, 0.14414626359939575, -0.13421133160591125, 0.031003190204501152, 1.2350223064422607, -0.1179487481713295, 0.07746603339910507, -0.03425091505050659]} +{"t": 12.5926, "q": [-0.34864485263824463, -0.024444837123155594, 0.017583558335900307, 0.6138564944267273, -0.2961905896663666, 0.025288552045822144, -0.3381200432777405, -0.0017214673571288586, 0.003816690295934677, 0.626349925994873, -0.33529651165008545, 0.005772489123046398, -0.009387718513607979, 0.06176859885454178, -0.017680715769529343, -2.4018545150756836, 2.1166417598724365, 2.371210813522339, -0.2718501687049866, -0.19630160927772522, -0.1311313956975937, 0.024040356278419495, 0.14213290810585022, -0.13425926864147186, 0.031039142981171608, 1.2348664999008179, -0.11796072870492935, 0.07741809636354446, -0.03425091505050659]} +{"t": 12.6094, "q": [-0.34857669472694397, -0.024325527250766754, 0.01746303215622902, 0.6138564944267273, -0.2961905896663666, 0.025288552045822144, -0.33821380138397217, -0.0016618125373497605, 0.003669379511848092, 0.6259579062461853, -0.33528822660446167, 0.005757857579737902, -0.010124272666871548, 0.06171581521630287, -0.017703169956803322, -2.4018664360046387, 2.131742000579834, 2.370515823364258, -0.2719939649105072, -0.19626565277576447, -0.13114337623119354, 0.02401638776063919, 0.1403113156557083, -0.13430720567703247, 0.031039142981171608, 1.2348545789718628, -0.11793676018714905, 0.07744206488132477, -0.03423893079161644]} +{"t": 12.6261, "q": [-0.3485170304775238, -0.024257350713014603, 0.01711484231054783, 0.6139587759971619, -0.2961573600769043, 0.025303130969405174, -0.33831605315208435, -0.0016703346045687795, 0.0031470954418182373, 0.6254465579986572, -0.3352552652359009, 0.005728467367589474, -0.010231408290565014, 0.06139165163040161, -0.017862172797322273, -2.402453660964966, 2.1466143131256104, 2.3701202869415283, -0.272041916847229, -0.1962776482105255, -0.1311313956975937, 0.023932497948408127, 0.13917280733585358, -0.13433118164539337, 0.031015174463391304, 1.2348785400390625, -0.11796072870492935, 0.07746603339910507, -0.034214962273836136]} +{"t": 12.6429, "q": [-0.34822729229927063, -0.024282917380332947, 0.016672909259796143, 0.6139843463897705, -0.2961075007915497, 0.025317812338471413, -0.33827343583106995, -0.0017725999932736158, 0.0024908925406634808, 0.6246284246444702, -0.33506259322166443, 0.005748340394347906, -0.009642165154218674, 0.06103038415312767, -0.01815176196396351, -2.406120777130127, 2.160935640335083, 2.3709232807159424, -0.27207785844802856, -0.1962776482105255, -0.1311793327331543, 0.023980434983968735, 0.13883724808692932, -0.1344030797481537, 0.031039142981171608, 1.235154151916504, -0.11796072870492935, 0.07752595096826553, -0.03423893079161644]} +{"t": 12.6596, "q": [-0.3481846749782562, -0.024376660585403442, 0.016405072063207626, 0.6141206622123718, -0.29609930515289307, 0.025361260399222374, -0.33826491236686707, -0.0019856528379023075, 0.002022176282480359, 0.624108612537384, -0.33496931195259094, 0.005958177149295807, -0.008825259283185005, 0.060797493904829025, -0.018401704728603363, -2.41113018989563, 2.1732912063598633, 2.370983123779297, -0.2718381881713867, -0.19630160927772522, -0.13119131326675415, 0.023980434983968735, 0.13827398419380188, -0.1344510167837143, 0.03105112724006176, 1.235226035118103, -0.1179727166891098, 0.07749000191688538, -0.034262899309396744]} +{"t": 12.6763, "q": [-0.348201721906662, -0.024495968595147133, 0.01645863987505436, 0.6142655611038208, -0.29609110951423645, 0.025390224531292915, -0.3382564187049866, -0.0021134845446795225, 0.0020757438614964485, 0.6237080693244934, -0.3348146378993988, 0.006189196836203337, -0.00798156950622797, 0.06081334128975868, -0.01850922778248787, -2.417973279953003, 2.1858267784118652, 2.36962890625, -0.27145469188690186, -0.19631358981132507, -0.1309276670217514, 0.023920513689517975, 0.1371714472770691, -0.1344749927520752, 0.031087080016732216, 1.2352020740509033, -0.1179727166891098, 0.07747801393270493, -0.034262899309396744]} +{"t": 12.693, "q": [-0.3481591045856476, -0.024674933403730392, 0.016538990661501884, 0.6142911314964294, -0.29608288407325745, 0.025419188663363457, -0.3382564187049866, -0.0022413162514567375, 0.0021828790195286274, 0.6234183311462402, -0.33469247817993164, 0.00636238232254982, -0.007124488707631826, 0.06098072975873947, -0.018651200458407402, -2.424804210662842, 2.197295665740967, 2.369508981704712, -0.27090340852737427, -0.1962776482105255, -0.13086773455142975, 0.023860592395067215, 0.13570936024188995, -0.1344510167837143, 0.031075095757842064, 1.2352020740509033, -0.11798469722270966, 0.07750198245048523, -0.03423893079161644]} +{"t": 12.7098, "q": [-0.34816762804985046, -0.0250158179551363, 0.01664612628519535, 0.6142996549606323, -0.29609963297843933, 0.025448070839047432, -0.3382478952407837, -0.002454369328916073, 0.002504284493625164, 0.6233842372894287, -0.3346313536167145, 0.0064417277462780476, -0.006602204404771328, 0.06097498908638954, -0.018928702920675278, -2.4321985244750977, 2.208608865737915, 2.370300054550171, -0.27041205763816833, -0.19630160927772522, -0.1308557540178299, 0.023872576653957367, 0.1339476853609085, -0.1344510167837143, 0.031087080016732216, 1.2351301908493042, -0.11798469722270966, 0.07751397043466568, -0.03422694653272629]} +{"t": 12.7266, "q": [-0.34809091687202454, -0.025237392634153366, 0.016713086515665054, 0.6145212054252625, -0.2961038649082184, 0.02546975202858448, -0.33804336190223694, -0.002522546099498868, 0.0027453387156128883, 0.6233075261116028, -0.33454200625419617, 0.006615258753299713, -0.006602204404771328, 0.06114236265420914, -0.019070925191044807, -2.4405994415283203, 2.218867301940918, 2.3706235885620117, -0.26956117153167725, -0.1962536722421646, -0.1308078169822693, 0.023860592395067215, 0.13229386508464813, -0.1344270557165146, 0.031087080016732216, 1.2350702285766602, -0.11793676018714905, 0.07751397043466568, -0.03423893079161644]} +{"t": 12.7433, "q": [-0.3480738699436188, -0.025424880906939507, 0.016927355900406837, 0.6147257685661316, -0.29609987139701843, 0.025520415976643562, -0.3378388285636902, -0.002573678968474269, 0.003093527862802148, 0.6233416199684143, -0.3345298171043396, 0.006636932957917452, -0.006615596357733011, 0.061180680990219116, -0.019145334139466286, -2.4506423473358154, 2.229029893875122, 2.3708033561706543, -0.2686983048915863, -0.1962536722421646, -0.13072392344474792, 0.023848608136177063, 0.13098758459091187, -0.1344270557165146, 0.031075095757842064, 1.2351422309875488, -0.11796072870492935, 0.07752595096826553, -0.03425091505050659]} +{"t": 12.7601, "q": [-0.3479801416397095, -0.025612367317080498, 0.01699431613087654, 0.6147598624229431, -0.2961123585700989, 0.02552761882543564, -0.33735305070877075, -0.002582201035693288, 0.003361365757882595, 0.6233416199684143, -0.3344113528728485, 0.006730236578732729, -0.0065620290115475655, 0.061173275113105774, -0.019169436767697334, -2.4635612964630127, 2.238845109939575, 2.37076735496521, -0.26729616522789, -0.1962536722421646, -0.13044829666614532, 0.023812655359506607, 0.13017265498638153, -0.13451094925403595, 0.031075095757842064, 1.235214114189148, -0.1179966852068901, 0.07751397043466568, -0.03428686782717705]} +{"t": 12.7769, "q": [-0.34784379601478577, -0.02568906545639038, 0.0169675312936306, 0.6150069832801819, -0.29610827565193176, 0.025549333542585373, -0.3363815248012543, -0.0025651566684246063, 0.003347973804920912, 0.6233927607536316, -0.33436256647109985, 0.006816952023655176, -0.006481677293777466, 0.06102275475859642, -0.01929088495671749, -2.4756293296813965, 2.2466588020324707, 2.371126890182495, -0.26679283380508423, -0.1962536722421646, -0.13024455308914185, 0.02382463961839676, 0.12974122166633606, -0.1344270557165146, 0.03105112724006176, 1.2354058027267456, -0.11798469722270966, 0.07754991948604584, -0.034274883568286896]} +{"t": 12.7936, "q": [-0.3477756083011627, -0.025595322251319885, 0.01661934331059456, 0.6156631708145142, -0.29610827565193176, 0.025549333542585373, -0.33625370264053345, -0.0025651566684246063, 0.002624811604619026, 0.6238018274307251, -0.3343500792980194, 0.006780500523746014, -0.006334366742521524, 0.06030557304620743, -0.01952407695353031, -2.490370035171509, 2.246586799621582, 2.371210813522339, -0.2678234577178955, -0.19621771574020386, -0.13052019476890564, 0.023728765547275543, 0.1297292411327362, -0.13425926864147186, 0.03111104853451252, 1.2359211444854736, -0.11793676018714905, 0.07758587598800659, -0.034274883568286896]} +{"t": 12.8103, "q": [-0.3477329909801483, -0.025552712380886078, 0.016164017841219902, 0.6155949831008911, -0.29609155654907227, 0.02552044950425625, -0.33533331751823425, -0.0025481125339865685, 0.002129311440512538, 0.6233927607536316, -0.334190309047699, 0.006815250497311354, -0.006106704473495483, 0.05995890498161316, -0.01973618008196354, -2.504103899002075, 2.2465388774871826, 2.371354579925537, -0.2682429254055023, -0.1961577981710434, -0.13077186048030853, 0.02340519241988659, 0.12953749299049377, -0.13425926864147186, 0.03111104853451252, 1.237095594406128, -0.11796072870492935, 0.07762182503938675, -0.03431083634495735]} +{"t": 12.827, "q": [-0.34703418612480164, -0.025544188916683197, 0.016164017841219902, 0.6157057881355286, -0.29609981179237366, 0.025505950674414635, -0.3345237076282501, -0.0025481125339865685, 0.002022176282480359, 0.6235035061836243, -0.3341945707798004, 0.00685162004083395, -0.0059995693154633045, 0.0598905012011528, -0.019690008834004402, -2.5174663066864014, 2.2466228008270264, 2.373164176940918, -0.26666098833084106, -0.1961817741394043, -0.13031646609306335, 0.023429160937666893, 0.12899820506572723, -0.13433118164539337, 0.031099064275622368, 1.2376708984375, -0.11796072870492935, 0.07764579355716705, -0.034274883568286896]} +{"t": 12.8438, "q": [-0.3469148874282837, -0.02556975558400154, 0.016204193234443665, 0.6156546473503113, -0.2961081862449646, 0.025520384311676025, -0.333109050989151, -0.0025651566684246063, 0.0020623519085347652, 0.6234012842178345, -0.334214985370636, 0.0068300277926027775, -0.005972785409539938, 0.05993592366576195, -0.019691526889801025, -2.5315358638763428, 2.246574878692627, 2.374770164489746, -0.26421621441841125, -0.1961817741394043, -0.13010074198246002, 0.02340519241988659, 0.1281832754611969, -0.13443903625011444, 0.031075095757842064, 1.2387014627456665, -0.1179487481713295, 0.07766976207494736, -0.034274883568286896]} +{"t": 12.8605, "q": [-0.34665921330451965, -0.025654977187514305, 0.016498815268278122, 0.6153308153152466, -0.2961622178554535, 0.0255129374563694, -0.33226534724235535, -0.0026674221735447645, 0.0024908925406634808, 0.6233416199684143, -0.3343139588832855, 0.006932766642421484, -0.005879042204469442, 0.06012604758143425, -0.01983928680419922, -2.54559326171875, 2.246598720550537, 2.375321388244629, -0.26246652007102966, -0.1961817741394043, -0.12964534759521484, 0.023381223902106285, 0.12773986160755157, -0.13441507518291473, 0.031123032793402672, 1.2396363019943237, -0.1179966852068901, 0.07768175005912781, -0.034274883568286896]} +{"t": 12.8772, "q": [-0.34588369727134705, -0.025646455585956573, 0.016512207686901093, 0.6154501438140869, -0.29625391960144043, 0.025570454075932503, -0.3315580189228058, -0.002718554809689522, 0.0024908925406634808, 0.623367190361023, -0.3343837261199951, 0.006940728519111872, -0.00579869095236063, 0.060567937791347504, -0.020312415435910225, -2.5581767559051514, 2.246598720550537, 2.3766636848449707, -0.2617594599723816, -0.1961817741394043, -0.12957344949245453, 0.023381223902106285, 0.12734438478946686, -0.1344510167837143, 0.031099064275622368, 1.2403912544250488, -0.1179727166891098, 0.07774166762828827, -0.034322820603847504]} +{"t": 12.8939, "q": [-0.34555986523628235, -0.02568054385483265, 0.01647203229367733, 0.6154757142066956, -0.29625803232192993, 0.025548739358782768, -0.33133643865585327, -0.002778209513053298, 0.0024775005877017975, 0.6234268546104431, -0.3344041407108307, 0.006919117644429207, -0.0058388663455843925, 0.06096465140581131, -0.020823046565055847, -2.571730852127075, 2.2466228008270264, 2.3782455921173096, -0.2611842155456543, -0.19619375467300415, -0.12953749299049377, 0.023393208160996437, 0.1267092078924179, -0.1344749927520752, 0.031075095757842064, 1.241493821144104, -0.11798469722270966, 0.07776563614606857, -0.034394726157188416]} +{"t": 12.9107, "q": [-0.3456194996833801, -0.02568906545639038, 0.016431856900453568, 0.6157569289207458, -0.29625388979911804, 0.025555988773703575, -0.33135348558425903, -0.0027952538803219795, 0.002464108867570758, 0.6235546469688416, -0.33437949419021606, 0.006918872240930796, -0.005812082905322313, 0.06130068376660347, -0.021302059292793274, -2.5852251052856445, 2.246598720550537, 2.3798274993896484, -0.2605370581150055, -0.1961577981710434, -0.12944161891937256, 0.02328534983098507, 0.12630175054073334, -0.13448697328567505, 0.031039142981171608, 1.2425484657287598, -0.1179487481713295, 0.07777762413024902, -0.03446663171052933]} +{"t": 12.9275, "q": [-0.34561097621917725, -0.025672022253274918, 0.016391679644584656, 0.6160381436347961, -0.2962622046470642, 0.025555957108736038, -0.33143872022628784, -0.00282082031480968, 0.002464108867570758, 0.6238614320755005, -0.33439192175865173, 0.006940810475498438, -0.00575851509347558, 0.06143913045525551, -0.0216581579297781, -2.5983479022979736, 2.246574878692627, 2.381025791168213, -0.26017752289772034, -0.1961817741394043, -0.12944161891937256, 0.02328534983098507, 0.1261100023984909, -0.13451094925403595, 0.031075095757842064, 1.24366295337677, -0.1179487481713295, 0.07781357318162918, -0.03449060022830963]} +{"t": 12.9442, "q": [-0.3456876873970032, -0.025654977187514305, 0.016217585653066635, 0.616259753704071, -0.29628297686576843, 0.025548623874783516, -0.33175402879714966, -0.0028122980147600174, 0.0024373249616473913, 0.6239722371101379, -0.3344084918498993, 0.0069700367748737335, -0.005651379935443401, 0.06154122203588486, -0.022252094000577927, -2.6119019985198975, 2.2466347217559814, 2.3817570209503174, -0.25955435633659363, -0.19619375467300415, -0.1294056624174118, 0.02329733408987522, 0.12602610886096954, -0.13453491032123566, 0.031027158722281456, 1.244981288909912, -0.11796072870492935, 0.07783754169940948, -0.03446663171052933]} +{"t": 12.9609, "q": [-0.3456876873970032, -0.025637932121753693, 0.016177410259842873, 0.6163023710250854, -0.2962995171546936, 0.02551962621510029, -0.3319244682788849, -0.002829342382028699, 0.002423933008685708, 0.6240489482879639, -0.3344578742980957, 0.006999591365456581, -0.005557636730372906, 0.06165087968111038, -0.022831032052636147, -2.624605178833008, 2.2466228008270264, 2.381924629211426, -0.2592187821865082, -0.1961817741394043, -0.12932176887989044, 0.023249397054314613, 0.12605008482933044, -0.1344749927520752, 0.031099064275622368, 1.24589204788208, -0.11798469722270966, 0.07786151021718979, -0.034454647451639175]} +{"t": 12.9776, "q": [-0.34574735164642334, -0.025595322251319885, 0.01611045002937317, 0.6164727807044983, -0.2962954342365265, 0.025541340932250023, -0.33226534724235535, -0.00282082031480968, 0.0024775005877017975, 0.6242108941078186, -0.33447426557540894, 0.006999772973358631, -0.005745123140513897, 0.06172185018658638, -0.023277005180716515, -2.6365416049957275, 2.2466228008270264, 2.3822243213653564, -0.25897911190986633, -0.1961817741394043, -0.1293337643146515, 0.023261381313204765, 0.12605008482933044, -0.13446301221847534, 0.031039142981171608, 1.2461557388305664, -0.11793676018714905, 0.07789746671915054, -0.03443067893385887]} +{"t": 12.9946, "q": [-0.3458496034145355, -0.025527145713567734, 0.016083667054772377, 0.6168477535247803, -0.2963036000728607, 0.025497911497950554, -0.33249545097351074, -0.002752643311396241, 0.0025176764465868473, 0.6244068741798401, -0.33452773094177246, 0.007022102363407612, -0.006146880332380533, 0.06192800775170326, -0.023561934009194374, -2.6469438076019287, 2.246598720550537, 2.382200241088867, -0.2587634027004242, -0.19621771574020386, -0.1293097883462906, 0.023249397054314613, 0.12596619129180908, -0.13451094925403595, 0.031063111498951912, 1.246335506439209, -0.11793676018714905, 0.0779094472527504, -0.034394726157188416]} +{"t": 13.0113, "q": [-0.3459092676639557, -0.02551010064780712, 0.016070274636149406, 0.6171971559524536, -0.2963077127933502, 0.025490662083029747, -0.3331516683101654, -0.0026674221735447645, 0.0026783791836351156, 0.6248074173927307, -0.33458492159843445, 0.006979063153266907, -0.006294190883636475, 0.062057968229055405, -0.02376646175980568, -2.6593356132507324, 2.246574878692627, 2.3819127082824707, -0.2581881582736969, -0.1961577981710434, -0.12924987077713013, 0.02316550724208355, 0.12596619129180908, -0.13448697328567505, 0.03105112724006176, 1.2463953495025635, -0.1179727166891098, 0.07792143523693085, -0.034394726157188416]} +{"t": 13.028, "q": [-0.3460797071456909, -0.025493057444691658, 0.016003314405679703, 0.617682933807373, -0.2963244616985321, 0.02551954612135887, -0.3337141275405884, -0.002701510675251484, 0.002758730435743928, 0.6253783702850342, -0.3346712589263916, 0.007016269490122795, -0.006655772216618061, 0.06204379349946976, -0.023922184482216835, -2.6692583560943604, 2.246598720550537, 2.38196063041687, -0.2579364776611328, -0.1961817741394043, -0.12926185131072998, 0.023189475759863853, 0.12602610886096954, -0.1345229297876358, 0.031027158722281456, 1.2465392351150513, -0.1179727166891098, 0.07792143523693085, -0.03440671041607857]} +{"t": 13.045, "q": [-0.34625014662742615, -0.0254504457116127, 0.015922963619232178, 0.6183987855911255, -0.2963285744190216, 0.025497812777757645, -0.33455780148506165, -0.002701510675251484, 0.0027051628567278385, 0.6259408593177795, -0.33477818965911865, 0.007075477857142687, -0.006910218391567469, 0.06212763860821724, -0.024017896503210068, -2.679588794708252, 2.246598720550537, 2.3820085525512695, -0.25715750455856323, -0.1961577981710434, -0.12922589480876923, 0.02316550724208355, 0.1260620653629303, -0.13448697328567505, 0.031027158722281456, 1.2466470003128052, -0.11793676018714905, 0.0779094472527504, -0.034394726157188416]} +{"t": 13.0619, "q": [-0.3469489514827728, -0.02544192411005497, 0.016056882217526436, 0.6191231608390808, -0.29637831449508667, 0.02545420080423355, -0.33761724829673767, -0.0026759442407637835, 0.0029194331727921963, 0.6269890666007996, -0.33499571681022644, 0.007099444977939129, -0.00705752894282341, 0.06222166493535042, -0.024548642337322235, -2.6914172172546387, 2.246574878692627, 2.3818886280059814, -0.2556115388870239, -0.1961577981710434, -0.12921391427516937, 0.02316550724208355, 0.1260620653629303, -0.1344749927520752, 0.031099064275622368, 1.2467788457870483, -0.1179487481713295, 0.07792143523693085, -0.03440671041607857]} +{"t": 13.0786, "q": [-0.3487130403518677, -0.02551010064780712, 0.01647203229367733, 0.6202821731567383, -0.296312153339386, 0.025570224970579147, -0.3394068777561188, -0.0026759442407637835, 0.0036024199798703194, 0.6286764740943909, -0.3349485993385315, 0.006713784299790859, -0.006977177690714598, 0.0621512345969677, -0.02542532980442047, -2.7008249759674072, 2.246598720550537, 2.381852865219116, -0.25425732135772705, -0.1961817741394043, -0.12920193374156952, 0.02316550724208355, 0.12599016726016998, -0.13455888628959656, 0.03105112724006176, 1.2469106912612915, -0.11796072870492935, 0.07792143523693085, -0.034382741898298264]} +{"t": 13.0953, "q": [-0.3497186601161957, -0.025365225970745087, 0.016391679644584656, 0.6222848892211914, -0.29641208052635193, 0.025598779320716858, -0.3400460481643677, -0.0025481125339865685, 0.0034551091957837343, 0.6302189826965332, -0.3351617753505707, 0.00668685045093298, -0.007338759023696184, 0.062256526201963425, -0.02531176619231701, -2.709022045135498, 2.246574878692627, 2.3817689418792725, -0.2536221444606781, -0.19616977870464325, -0.12922589480876923, 0.0231774915009737, 0.12549880146980286, -0.1345468908548355, 0.031039142981171608, 1.2468388080596924, -0.11796072870492935, 0.0779094472527504, -0.03437075763940811]} +{"t": 13.1121, "q": [-0.3511674106121063, -0.0253140926361084, 0.016391679644584656, 0.6234524250030518, -0.29648301005363464, 0.025663593783974648, -0.3420061469078064, -0.002522546099498868, 0.0034551091957837343, 0.6317103505134583, -0.33550912141799927, 0.006435939110815525, -0.00772712379693985, 0.06224892660975456, -0.025306619703769684, -2.716320514678955, 2.2465507984161377, 2.3817689418792725, -0.25218406319618225, -0.19619375467300415, -0.12920193374156952, 0.0231774915009737, 0.1252351552248001, -0.1344989538192749, 0.031147001311182976, 1.246862769126892, -0.1179727166891098, 0.07789746671915054, -0.03437075763940811]} +{"t": 13.1288, "q": [-0.3525905907154083, -0.02527148276567459, 0.01629793643951416, 0.6246539950370789, -0.29647883772850037, 0.025656377896666527, -0.3420998752117157, -0.00250550196506083, 0.0032944062259048223, 0.6325880885124207, -0.3355827331542969, 0.006393081974238157, -0.008182448334991932, 0.0622413232922554, -0.02530146948993206, -2.723726749420166, 2.246586799621582, 2.3816850185394287, -0.25109347701072693, -0.19616977870464325, -0.1291539967060089, 0.023189475759863853, 0.12517523765563965, -0.13455888628959656, 0.031099064275622368, 1.246862769126892, -0.1179966852068901, 0.07789746671915054, -0.03434678912162781]} +{"t": 13.1455, "q": [-0.353920042514801, -0.025160694494843483, 0.01594974845647812, 0.6257789134979248, -0.29648301005363464, 0.025663593783974648, -0.3421339690685272, -0.002369148191064596, 0.0029060414526611567, 0.6330397725105286, -0.3355744779109955, 0.006378468591719866, -0.008436894044280052, 0.06225647032260895, -0.025301996618509293, -2.7315523624420166, 2.246574878692627, 2.380786180496216, -0.25026658177375793, -0.1961817741394043, -0.1290581226348877, 0.02311757020652294, 0.12515126168727875, -0.13453491032123566, 0.031087080016732216, 1.2468867301940918, -0.11793676018714905, 0.07789746671915054, -0.034334804862737656]} +{"t": 13.1623, "q": [-0.3551216721534729, -0.025058429688215256, 0.015695301815867424, 0.6267760396003723, -0.29647883772850037, 0.025656377896666527, -0.3423299789428711, -0.0022924491204321384, 0.0025176764465868473, 0.6337300539016724, -0.3355746269226074, 0.006407531443983316, -0.008570813573896885, 0.06223372370004654, -0.025296323001384735, -2.737640380859375, 2.246574878692627, 2.3801748752593994, -0.24982315301895142, -0.1961577981710434, -0.12904614210128784, 0.02311757020652294, 0.12512730062007904, -0.13453491032123566, 0.031075095757842064, 1.2468867301940918, -0.11796072870492935, 0.07787349820137024, -0.03428686782717705]} +{"t": 13.179, "q": [-0.3564852178096771, -0.024913553148508072, 0.015293545089662075, 0.6278071999549866, -0.29647883772850037, 0.025656377896666527, -0.34293505549430847, -0.0022157500497996807, 0.002048959955573082, 0.6342925429344177, -0.3355623483657837, 0.00641467422246933, -0.008798475377261639, 0.062195781618356705, -0.02528035268187523, -2.7411997318267822, 2.246574878692627, 2.3803067207336426, -0.24978721141815186, -0.1961817741394043, -0.12911804020404816, 0.023153522983193398, 0.12505538761615753, -0.13451094925403595, 0.031075095757842064, 1.2469106912612915, -0.11796072870492935, 0.07789746671915054, -0.03428686782717705]} +{"t": 13.1957, "q": [-0.3576442301273346, -0.02484537661075592, 0.01503909844905138, 0.6286082863807678, -0.29651200771331787, 0.025627315044403076, -0.3435571491718292, -0.0021816615480929613, 0.0018079059664160013, 0.6346845626831055, -0.3355049788951874, 0.006428632419556379, -0.008825259283185005, 0.06214257329702377, -0.025244316086173058, -2.7433929443359375, 2.246574878692627, 2.3798155784606934, -0.24933180212974548, -0.1961817741394043, -0.12909407913684845, 0.023153522983193398, 0.12487562745809555, -0.1345468908548355, 0.031075095757842064, 1.2468867301940918, -0.11796072870492935, 0.07789746671915054, -0.034274883568286896]} +{"t": 13.2124, "q": [-0.35889697074890137, -0.02489650808274746, 0.015012315474450588, 0.6290088295936584, -0.2965077757835388, 0.02560563199222088, -0.3453894257545471, -0.002198705682530999, 0.0018212978029623628, 0.6350510120391846, -0.3354318141937256, 0.006558733060956001, -0.00881186779588461, 0.06209708750247955, -0.025232966989278793, -2.744112014770508, 2.2466108798980713, 2.3783774375915527, -0.24861274659633636, -0.1961577981710434, -0.1291060596704483, 0.023153522983193398, 0.12480372190475464, -0.1345229297876358, 0.031123032793402672, 1.2468867301940918, -0.1179487481713295, 0.07788547873497009, -0.03428686782717705]} +{"t": 13.2292, "q": [-0.36026903986930847, -0.024939119815826416, 0.015132841654121876, 0.6295371651649475, -0.29645806550979614, 0.02566371113061905, -0.34885790944099426, -0.0022072279825806618, 0.001982000656425953, 0.6354600787162781, -0.3352242410182953, 0.006869180127978325, -0.008878827095031738, 0.06202879920601845, -0.025206176564097404, -2.744135856628418, 2.2466108798980713, 2.3765437602996826, -0.24754615128040314, -0.1961577981710434, -0.12914201617240906, 0.023153522983193398, 0.12465991079807281, -0.1344989538192749, 0.03105112724006176, 1.246802806854248, -0.1179727166891098, 0.07787349820137024, -0.034274883568286896]} +{"t": 13.2459, "q": [-0.3620416224002838, -0.02496468648314476, 0.015347111970186234, 0.6300229430198669, -0.2964496910572052, 0.02564927749335766, -0.34899428486824036, -0.0022072279825806618, 0.002316797850653529, 0.6358435750007629, -0.3350652754306793, 0.007063812110573053, -0.008945786394178867, 0.0620136559009552, -0.025205649435520172, -2.7441599369049072, 2.246586799621582, 2.3738951683044434, -0.24595224857330322, -0.1961817741394043, -0.129130020737648, 0.02316550724208355, 0.12461197376251221, -0.1345468908548355, 0.031039142981171608, 1.2467190027236938, -0.1179247796535492, 0.07787349820137024, -0.03425091505050659]} +{"t": 13.2626, "q": [-0.36340516805648804, -0.024981729686260223, 0.015574774704873562, 0.6303126811981201, -0.2964414358139038, 0.025663776323199272, -0.34886643290519714, -0.0022157500497996807, 0.002624811604619026, 0.6360566020011902, -0.3345301151275635, 0.007487253751605749, -0.009227016009390354, 0.061929989606142044, -0.025139251723885536, -2.7429494857788086, 2.246574878692627, 2.3697726726531982, -0.24395088851451874, -0.1961817741394043, -0.12909407913684845, 0.02310558594763279, 0.1245880052447319, -0.13455888628959656, 0.031015174463391304, 1.2466470003128052, -0.1179487481713295, 0.07784952968358994, -0.034202978014945984]} +{"t": 13.2795, "q": [-0.3642062544822693, -0.02513512782752514, 0.015748869627714157, 0.6304064393043518, -0.29639166593551636, 0.025707369670271873, -0.3488493859767914, -0.0022413162514567375, 0.002946217078715563, 0.6360821723937988, -0.3341018259525299, 0.007955372333526611, -0.009227016009390354, 0.06170172244310379, -0.024945851415395737, -2.7411398887634277, 2.2466228008270264, 2.3649191856384277, -0.2421892136335373, -0.1961338371038437, -0.1290101855993271, 0.02310558594763279, 0.12465991079807281, -0.1345708668231964, 0.031015174463391304, 1.2465990781784058, -0.11793676018714905, 0.07786151021718979, -0.03425091505050659]} +{"t": 13.2962, "q": [-0.364155113697052, -0.025280004367232323, 0.015762262046337128, 0.6304746270179749, -0.29634174704551697, 0.025707585737109184, -0.3495311737060547, -0.002266882685944438, 0.003106919815763831, 0.6360651254653931, -0.3337264060974121, 0.008329550735652447, -0.009307367727160454, 0.06129831820726395, -0.024585364386439323, -2.73946213722229, 2.246598720550537, 2.3587591648101807, -0.24088293313980103, -0.1961577981710434, -0.12895026803016663, 0.02310558594763279, 0.12479173392057419, -0.13459482789039612, 0.031039142981171608, 1.2466111183166504, -0.11793676018714905, 0.07787349820137024, -0.03422694653272629]} +{"t": 13.3129, "q": [-0.3640784025192261, -0.02537374757230282, 0.015922963619232178, 0.6305172443389893, -0.2963252067565918, 0.025736583396792412, -0.35010215640068054, -0.0023435817565768957, 0.003334582084789872, 0.6360566020011902, -0.33332934975624084, 0.00849272683262825, -0.009508245624601841, 0.06068277359008789, -0.024198411032557487, -2.73649001121521, 2.2466228008270264, 2.3537259101867676, -0.23997212946414948, -0.1961338371038437, -0.12890233099460602, 0.023141538724303246, 0.12497150152921677, -0.13451094925403595, 0.030979221686720848, 1.2465871572494507, -0.11793676018714905, 0.07786151021718979, -0.03419099375605583]} +{"t": 13.3299, "q": [-0.36386537551879883, -0.02539079077541828, 0.01611045002937317, 0.6307217478752136, -0.2962505519390106, 0.025794759392738342, -0.3501362204551697, -0.0023606258910149336, 0.0034952848218381405, 0.6360651254653931, -0.33281129598617554, 0.00825499277561903, -0.009508245624601841, 0.059785857796669006, -0.023602690547704697, -2.7346444129943848, 2.246598720550537, 2.3488001823425293, -0.2388935387134552, -0.19609788060188293, -0.12887835502624512, 0.02298574335873127, 0.1252111792564392, -0.13429522514343262, 0.031027158722281456, 1.246575117111206, -0.1179487481713295, 0.07786151021718979, -0.034214962273836136]} +{"t": 13.3466, "q": [-0.3640272915363312, -0.02538226917386055, 0.01615062542259693, 0.6308581233024597, -0.2962380051612854, 0.02577310986816883, -0.3500851094722748, -0.0023521038237959146, 0.0034952848218381405, 0.6360651254653931, -0.33275845646858215, 0.008348951116204262, -0.009441286325454712, 0.058661628514528275, -0.022959750145673752, -2.7338054180145264, 2.246598720550537, 2.344545841217041, -0.23758725821971893, -0.1961098611354828, -0.12884239852428436, 0.022961774840950966, 0.12561865150928497, -0.13379189372062683, 0.031039142981171608, 1.2465871572494507, -0.1179247796535492, 0.07786151021718979, -0.034214962273836136]} +{"t": 13.3634, "q": [-0.3639761507511139, -0.025407835841178894, 0.016083667054772377, 0.6309433579444885, -0.29623380303382874, 0.025765875354409218, -0.3498890995979309, -0.0023606258910149336, 0.0033881496638059616, 0.6360566020011902, -0.33272188901901245, 0.008413992822170258, -0.009387718513607979, 0.05697740986943245, -0.022378964349627495, -2.733853340148926, 2.246574878692627, 2.3392727375030518, -0.2355499416589737, -0.19609788060188293, -0.1288543939590454, 0.022997727617621422, 0.12591825425624847, -0.13286910951137543, 0.031063111498951912, 1.2466470003128052, -0.11793676018714905, 0.07787349820137024, -0.034214962273836136]} +{"t": 13.3803, "q": [-0.3639846742153168, -0.02539079077541828, 0.016070274636149406, 0.6309689283370972, -0.2962585985660553, 0.025722362101078033, -0.3497612476348877, -0.0023606258910149336, 0.0034149333368986845, 0.6360566020011902, -0.33270561695098877, 0.008442891761660576, -0.009441286325454712, 0.05516352877020836, -0.021633753553032875, -2.733853340148926, 2.2466228008270264, 2.334035634994507, -0.23332087695598602, -0.1961098611354828, -0.12884239852428436, 0.022973759099841118, 0.12599016726016998, -0.13176655769348145, 0.031063111498951912, 1.2466470003128052, -0.11793676018714905, 0.07786151021718979, -0.03419099375605583]} +{"t": 13.3974, "q": [-0.363967627286911, -0.025365225970745087, 0.016070274636149406, 0.6309689283370972, -0.29624614119529724, 0.02572966367006302, -0.3497697710990906, -0.0023521038237959146, 0.003334582084789872, 0.6360651254653931, -0.33270132541656494, 0.008406521752476692, -0.009494854137301445, 0.05315355584025383, -0.021060822531580925, -2.733625650405884, 2.2466228008270264, 2.328690767288208, -0.23141539096832275, -0.19608590006828308, -0.12867462635040283, 0.022949790582060814, 0.12597817182540894, -0.13036440312862396, 0.031075095757842064, 1.2466470003128052, -0.11796072870492935, 0.07786151021718979, -0.034202978014945984]} +{"t": 13.4142, "q": [-0.36395910382270813, -0.0253140926361084, 0.01598992384970188, 0.6309859752655029, -0.29624196887016296, 0.02572244592010975, -0.34969308972358704, -0.0023521038237959146, 0.0031872710678726435, 0.6360480785369873, -0.33269721269607544, 0.008399215526878834, -0.009535029530525208, 0.0504603385925293, -0.020237280055880547, -2.7337934970855713, 2.246670722961426, 2.324376344680786, -0.23003719747066498, -0.19609788060188293, -0.1285547912120819, 0.02292582206428051, 0.1260380893945694, -0.12872256338596344, 0.03105112724006176, 1.2466709613800049, -0.11796072870492935, 0.07787349820137024, -0.03423893079161644]} +{"t": 13.431, "q": [-0.3639335334300995, -0.025228871032595634, 0.015842612832784653, 0.6309859752655029, -0.2962377071380615, 0.02568628080189228, -0.349624902009964, -0.0022924491204321384, 0.002959609031677246, 0.63599693775177, -0.3326970338821411, 0.00837013404816389, -0.009481461718678474, 0.04783663898706436, -0.01966729387640953, -2.7347042560577393, 2.246682643890381, 2.3203976154327393, -0.2289346605539322, -0.1961338371038437, -0.128530815243721, 0.022937806323170662, 0.12625381350517273, -0.12720057368278503, 0.03105112724006176, 1.2466830015182495, -0.11793676018714905, 0.07789746671915054, -0.03423893079161644]} +{"t": 13.4477, "q": [-0.3638909161090851, -0.025160694494843483, 0.01564173400402069, 0.6309774518013, -0.29623764753341675, 0.025671815499663353, -0.34936925768852234, -0.0022498385515064, 0.0027453387156128883, 0.6359117031097412, -0.3327297270298004, 0.008341399021446705, -0.009454678744077682, 0.044946931302547455, -0.019022256135940552, -2.735231637954712, 2.2467546463012695, 2.3164188861846924, -0.22765234112739563, -0.1961338371038437, -0.12854279577732086, 0.022949790582060814, 0.1263137310743332, -0.125486820936203, 0.03105112724006176, 1.2467069625854492, -0.11793676018714905, 0.07787349820137024, -0.034214962273836136]} +{"t": 13.4645, "q": [-0.36390796303749084, -0.02503286302089691, 0.015481031499803066, 0.6309177875518799, -0.2962251305580139, 0.025664614513516426, -0.34928402304649353, -0.0021901836153119802, 0.0025176764465868473, 0.6358094811439514, -0.3327663838863373, 0.008290889672935009, -0.00940111093223095, 0.04217131435871124, -0.018485818058252335, -2.7353994846343994, 2.246802568435669, 2.3128716945648193, -0.22585470974445343, -0.19609788060188293, -0.12857875227928162, 0.022937806323170662, 0.1263137310743332, -0.12373712658882141, 0.031075095757842064, 1.2467190027236938, -0.1179966852068901, 0.07789746671915054, -0.03422694653272629]} +{"t": 13.4812, "q": [-0.3638312816619873, -0.024828331544995308, 0.015347111970186234, 0.6308836936950684, -0.29622510075569153, 0.0256501492112875, -0.3491987884044647, -0.0020623519085347652, 0.002276622224599123, 0.6357071995735168, -0.33278682827949524, 0.008283828385174274, -0.00940111093223095, 0.03886385262012482, -0.017708877101540565, -2.7349798679351807, 2.246802568435669, 2.3098394870758057, -0.22364960610866547, -0.1961098611354828, -0.1285068541765213, 0.02292582206428051, 0.12619389593601227, -0.12187957018613815, 0.03105112724006176, 1.2467069625854492, -0.11796072870492935, 0.07783754169940948, -0.034214962273836136]} +{"t": 13.498, "q": [-0.36359265446662903, -0.024555623531341553, 0.015159625560045242, 0.6308666467666626, -0.296224981546402, 0.025621216744184494, -0.3491050601005554, -0.0018322548130527139, 0.002008784329518676, 0.6354941725730896, -0.3327867090702057, 0.008254746906459332, -0.009307367727160454, 0.0355704091489315, -0.016675613820552826, -2.7348721027374268, 2.2467784881591797, 2.307454824447632, -0.22152841091156006, -0.1961338371038437, -0.12831510603427887, 0.02292582206428051, 0.12602610886096954, -0.11987820267677307, 0.031147001311182976, 1.2466709613800049, -0.1179727166891098, 0.07782556116580963, -0.03423893079161644]} +{"t": 13.5147, "q": [-0.36340516805648804, -0.024257350713014603, 0.014985531568527222, 0.6307814121246338, -0.29621243476867676, 0.025599569082260132, -0.34913915395736694, -0.0017129451734945178, 0.0015400679549202323, 0.6351617574691772, -0.3327867090702057, 0.008254746906459332, -0.00925379991531372, 0.03281007707118988, -0.01631039008498192, -2.7348601818084717, 2.246814489364624, 2.3057289123535156, -0.2200423628091812, -0.1961098611354828, -0.12824319303035736, 0.02292582206428051, 0.12591825425624847, -0.11782890558242798, 0.031147001311182976, 1.2466470003128052, -0.11798469722270966, 0.07786151021718979, -0.03423893079161644]} +{"t": 13.5314, "q": [-0.3632262051105499, -0.023848289623856544, 0.014824828132987022, 0.630696177482605, -0.29617494344711304, 0.025578001514077187, -0.34913915395736694, -0.0015510249650105834, 0.001004392164759338, 0.6346163749694824, -0.33267906308174133, 0.00806471984833479, -0.009280583821237087, 0.030057601630687714, -0.01608196273446083, -2.7349679470062256, 2.246802568435669, 2.3036797046661377, -0.21886791288852692, -0.1961338371038437, -0.12817129492759705, 0.02292582206428051, 0.12591825425624847, -0.11576761305332184, 0.031158985570073128, 1.2466470003128052, -0.1179487481713295, 0.07787349820137024, -0.03422694653272629]} +{"t": 13.5484, "q": [-0.36292794346809387, -0.023311395198106766, 0.014824828132987022, 0.6306365132331848, -0.2961499094963074, 0.02556363306939602, -0.3490198254585266, -0.0013038836186751723, 0.0006026353221386671, 0.6339516639709473, -0.33249330520629883, 0.00783756747841835, -0.009293975308537483, 0.027926623821258545, -0.01587621495127678, -2.735219717025757, 2.2468385696411133, 2.3015224933624268, -0.21736988425254822, -0.1961577981710434, -0.12817129492759705, 0.022937806323170662, 0.12596619129180908, -0.11410180479288101, 0.03118295408785343, 1.2466470003128052, -0.1179966852068901, 0.07786151021718979, -0.03422694653272629]} +{"t": 13.5651, "q": [-0.36262965202331543, -0.022689281031489372, 0.01486500445753336, 0.6305939555168152, -0.296116441488266, 0.02550588548183441, -0.3486533761024475, -0.0009970874525606632, 0.00037497308221645653, 0.6332954168319702, -0.33237364888191223, 0.007698295172303915, -0.009240408428013325, 0.026023078709840775, -0.015696430578827858, -2.7355551719665527, 2.246814489364624, 2.298814058303833, -0.21532057225704193, -0.1961098611354828, -0.12819525599479675, 0.022949790582060814, 0.12596619129180908, -0.11212441325187683, 0.031147001311182976, 1.2466709613800049, -0.11793676018714905, 0.07786151021718979, -0.03425091505050659]} +{"t": 13.5818, "q": [-0.3626040816307068, -0.02213534340262413, 0.01486500445753336, 0.6305257678031921, -0.2961122691631317, 0.02549866959452629, -0.34840625524520874, -0.000690291344653815, 4.017568790004589e-05, 0.632477343082428, -0.3321998417377472, 0.007405855692923069, -0.009173448197543621, 0.024006590247154236, -0.015833109617233276, -2.7357468605041504, 2.2467546463012695, 2.2939724922180176, -0.21275594830513, -0.1961098611354828, -0.12807542085647583, 0.022949790582060814, 0.12609802186489105, -0.10994328558444977, 0.031123032793402672, 1.2466590404510498, -0.1179487481713295, 0.07787349820137024, -0.03422694653272629]} +{"t": 13.5986, "q": [-0.3626466989517212, -0.021700715646147728, 0.014811436645686626, 0.6303126811981201, -0.29607486724853516, 0.025506049394607544, -0.34826135635375977, -0.0004346278728917241, -0.00036158118746243417, 0.6314631700515747, -0.33182471990585327, 0.00704600103199482, -0.009240408428013325, 0.021550070494413376, -0.015987399965524673, -2.735806941986084, 2.246814489364624, 2.2909164428710938, -0.21087442338466644, -0.19609788060188293, -0.12784771621227264, 0.022901853546500206, 0.12627777457237244, -0.1080138236284256, 0.03111104853451252, 1.2467429637908936, -0.11796072870492935, 0.0779094472527504, -0.03425091505050659]} +{"t": 13.6153, "q": [-0.36229729652404785, -0.02147061936557293, 0.014757868833839893, 0.6299718022346497, -0.29607486724853516, 0.025506049394607544, -0.34795457124710083, -0.00010226538870483637, -0.00046871634549461305, 0.6305087208747864, -0.3314577341079712, 0.006671696435660124, -0.009240408428013325, 0.019032038748264313, -0.01589956134557724, -2.7357828617095947, 2.246718645095825, 2.2887473106384277, -0.2091846466064453, -0.19607390463352203, -0.12778779864311218, 0.022853918373584747, 0.12652945518493652, -0.10632404685020447, 0.031135017052292824, 1.2467669248580933, -0.11796072870492935, 0.0779094472527504, -0.03423893079161644]} +{"t": 13.632, "q": [-0.3620501458644867, -0.021010424941778183, 0.014677518047392368, 0.6295883059501648, -0.2960582375526428, 0.025506116449832916, -0.34734097123146057, 0.0002300971100339666, -0.0006695947959087789, 0.6292644739151001, -0.33095309138298035, 0.006644845940172672, -0.009119881317019463, 0.01681758090853691, -0.015945449471473694, -2.735914707183838, 2.246718645095825, 2.2857632637023926, -0.20658408105373383, -0.19609788060188293, -0.12771588563919067, 0.022782012820243835, 0.1266852468252182, -0.10481403023004532, 0.031087080016732216, 1.2467788457870483, -0.1179727166891098, 0.07788547873497009, -0.03423893079161644]} +{"t": 13.6489, "q": [-0.361163854598999, -0.02037978731095791, 0.014396287500858307, 0.6291877627372742, -0.29603734612464905, 0.02548450045287609, -0.34602856636047363, 0.000570981705095619, -0.0009910003282129765, 0.627849817276001, -0.33043161034584045, 0.006676428020000458, -0.0089993542060256, 0.01526245754212141, -0.015818927437067032, -2.7386112213134766, 2.2467427253723145, 2.2848763465881348, -0.20296484231948853, -0.1961577981710434, -0.12773986160755157, 0.022793997079133987, 0.12672120332717896, -0.10368751734495163, 0.031135017052292824, 1.2468507289886475, -0.11793676018714905, 0.07792143523693085, -0.03423893079161644]} +{"t": 13.6656, "q": [-0.35968953371047974, -0.019868459552526474, 0.014222193509340286, 0.628667950630188, -0.2960415184497833, 0.02549171634018421, -0.3438469171524048, 0.0007755124825052917, -0.0012588382232934237, 0.626426637172699, -0.3300745487213135, 0.006753170397132635, -0.009200232103466988, 0.014404941350221634, -0.015544254332780838, -2.741187810897827, 2.246682643890381, 2.284672737121582, -0.19969314336776733, -0.1961338371038437, -0.1276319921016693, 0.022782012820243835, 0.12675714492797852, -0.10318417847156525, 0.03118295408785343, 1.2468746900558472, -0.1179727166891098, 0.0779094472527504, -0.03425091505050659]} +{"t": 13.6823, "q": [-0.35724368691444397, -0.01936565525829792, 0.013914179988205433, 0.6279691457748413, -0.2960788905620575, 0.025469869375228882, -0.3404380679130554, 0.0012186624808236957, -0.0015132841654121876, 0.6239296197891235, -0.32961925864219666, 0.0068871681578457355, -0.009642165154218674, 0.014404472894966602, -0.01523254718631506, -2.744950771331787, 2.2466347217559814, 2.2842652797698975, -0.195235013961792, -0.1961338371038437, -0.12746421992778778, 0.02274606004357338, 0.12679310142993927, -0.10301639884710312, 0.031087080016732216, 1.2469466924667358, -0.1179487481713295, 0.0779094472527504, -0.03425091505050659]} +{"t": 13.6993, "q": [-0.3550279140472412, -0.018010638654232025, 0.013833828270435333, 0.6269294023513794, -0.2960871756076813, 0.025455370545387268, -0.33846092224121094, 0.0014317154418677092, -0.0015936355339363217, 0.6219354867935181, -0.3289579153060913, 0.006932171992957592, -0.010110881179571152, 0.014442799612879753, -0.015500718727707863, -2.74847412109375, 2.2466347217559814, 2.284217357635498, -0.19205918908119202, -0.19609788060188293, -0.1273084282875061, 0.02274606004357338, 0.12679310142993927, -0.10302838683128357, 0.031123032793402672, 1.2469706535339355, -0.11793676018714905, 0.07794540375471115, -0.03428686782717705]} +{"t": 13.7161, "q": [-0.35212188959121704, -0.01563296839594841, 0.014302544295787811, 0.6256937384605408, -0.29608309268951416, 0.025477085262537003, -0.3385632038116455, 0.0016788567882031202, -0.0014597165863960981, 0.6199412941932678, -0.3285812735557556, 0.007161267567425966, -0.010284976102411747, 0.0143747478723526, -0.01564142480492592, -2.7526326179504395, 2.246682643890381, 2.284660816192627, -0.1892668753862381, -0.1961098611354828, -0.12722453474998474, 0.022770028561353683, 0.12682905793190002, -0.10310029238462448, 0.03105112724006176, 1.2469946146011353, -0.11791279166936874, 0.0779334157705307, -0.03425091505050659]} +{"t": 13.7328, "q": [-0.3503492772579193, -0.01539435051381588, 0.015146234072744846, 0.6247733235359192, -0.2961495816707611, 0.025462357327342033, -0.3376598656177521, 0.0017470336752012372, -0.0009910003282129765, 0.6188675165176392, -0.3285606801509857, 0.007153825834393501, -0.010137665085494518, 0.013708021491765976, -0.016132961958646774, -2.7575583457946777, 2.2466588020324707, 2.284888505935669, -0.18653446435928345, -0.1961338371038437, -0.12722453474998474, 0.022770028561353683, 0.12684103846549988, -0.10325608402490616, 0.03105112724006176, 1.2470065355300903, -0.1179487481713295, 0.077957384288311, -0.03422694653272629]} +{"t": 13.7496, "q": [-0.34922435879707336, -0.01533469557762146, 0.015266761183738708, 0.6239892840385437, -0.29619133472442627, 0.025505589321255684, -0.3371911346912384, 0.0016447682864964008, -0.00044193255598656833, 0.6186288595199585, -0.3285894989967346, 0.007161357905715704, -0.010191232897341251, 0.012548575177788734, -0.01689925603568554, -2.760806083679199, 2.2466347217559814, 2.284888505935669, -0.18383800983428955, -0.1961098611354828, -0.12724851071834564, 0.022770028561353683, 0.12684103846549988, -0.10335195809602737, 0.031015174463391304, 1.24703049659729, -0.11798469722270966, 0.07801730930805206, -0.03423893079161644]} +{"t": 13.7663, "q": [-0.348431795835495, -0.015445481985807419, 0.015132841654121876, 0.6233586668968201, -0.2962205708026886, 0.02554163709282875, -0.33657753467559814, 0.0015510249650105834, 1.3391895663517062e-05, 0.6184414029121399, -0.3286266028881073, 0.007183448411524296, -0.010392110794782639, 0.012322191148996353, -0.01784348674118519, -2.76751708984375, 2.2466347217559814, 2.284900426864624, -0.18011091649532318, -0.1961338371038437, -0.1272125542163849, 0.02274606004357338, 0.1269129514694214, -0.1035437062382698, 0.031003190204501152, 1.24703049659729, -0.1179727166891098, 0.07799334079027176, -0.034262899309396744]} +{"t": 13.7831, "q": [-0.3482869267463684, -0.015428438782691956, 0.015092666260898113, 0.6227620840072632, -0.2962247431278229, 0.02554885484278202, -0.3364241421222687, 0.0014658038271591067, 0.0003481892927084118, 0.6183561682701111, -0.3286348283290863, 0.0071835205890238285, -0.01057959720492363, 0.013006467372179031, -0.018834032118320465, -2.7753548622131348, 2.2466588020324707, 2.2848405838012695, -0.176240012049675, -0.1961098611354828, -0.12717659771442413, 0.02274606004357338, 0.12690095603466034, -0.10378339141607285, 0.030967237427830696, 1.24703049659729, -0.11793676018714905, 0.07796937227249146, -0.034202978014945984]} +{"t": 13.7998, "q": [-0.3482869267463684, -0.015436960384249687, 0.014918571338057518, 0.622404158115387, -0.29621636867523193, 0.02553442120552063, -0.3364923298358917, 0.001448759576305747, 0.000522283953614533, 0.6183220744132996, -0.3286307752132416, 0.007190745323896408, -0.011101881042122841, 0.013971399515867233, -0.01972423680126667, -2.779932737350464, 2.2466347217559814, 2.284996271133423, -0.17357951402664185, -0.19609788060188293, -0.12712866067886353, 0.02275804430246353, 0.12688897550106049, -0.10378339141607285, 0.031003190204501152, 1.2470065355300903, -0.1179727166891098, 0.07801730930805206, -0.03422694653272629]} +{"t": 13.8165, "q": [-0.3482784032821655, -0.015419915318489075, 0.014677518047392368, 0.6222934126853943, -0.29621636867523193, 0.02553442120552063, -0.3366968631744385, 0.0014572817599400878, 0.0004955001641064882, 0.6182538866996765, -0.3285980522632599, 0.007219518069177866, -0.01193217933177948, 0.015126075595617294, -0.02050524763762951, -2.785062074661255, 2.2466347217559814, 2.2852120399475098, -0.1715182363986969, -0.19609788060188293, -0.12711668014526367, 0.022770028561353683, 0.1269129514694214, -0.1037953719496727, 0.030979221686720848, 1.2470065355300903, -0.1179487481713295, 0.07800532132387161, -0.03423893079161644]} +{"t": 13.8334, "q": [-0.3482784032821655, -0.015385827049612999, 0.014516814611852169, 0.6222848892211914, -0.29619964957237244, 0.025505555793642998, -0.3370206952095032, 0.0015169365797191858, 0.00042854066123254597, 0.6182027459144592, -0.32855650782585144, 0.007146528922021389, -0.012923179194331169, 0.016478141769766808, -0.02128901518881321, -2.7907304763793945, 2.2466588020324707, 2.2860748767852783, -0.16942098736763, -0.19612184166908264, -0.12710469961166382, 0.022770028561353683, 0.1269369125366211, -0.10389124602079391, 0.030979221686720848, 1.2470065355300903, -0.11796072870492935, 0.07799334079027176, -0.03422694653272629]} +{"t": 13.8501, "q": [-0.3482528328895569, -0.015326172113418579, 0.014423071406781673, 0.6222934126853943, -0.29617467522621155, 0.025505654513835907, -0.33712297677993774, 0.0015595471486449242, 0.0003883649769704789, 0.6183220744132996, -0.3284989893436432, 0.007146022282540798, -0.014275760389864445, 0.01779196970164776, -0.02181466668844223, -2.7973339557647705, 2.2466347217559814, 2.286398410797119, -0.16747954487800598, -0.19609788060188293, -0.12712866067886353, 0.02274606004357338, 0.1269369125366211, -0.10425077378749847, 0.030943268910050392, 1.2470065355300903, -0.11796072870492935, 0.07800532132387161, -0.034214962273836136]} +{"t": 13.8668, "q": [-0.3482869267463684, -0.01521538570523262, 0.014235584996640682, 0.6222678422927856, -0.29615795612335205, 0.025476789101958275, -0.3372252285480499, 0.0016618125373497605, 0.00033479739795438945, 0.6183220744132996, -0.3284737765789032, 0.007058655843138695, -0.015681909397244453, 0.01928066462278366, -0.022465484216809273, -2.803421974182129, 2.2466347217559814, 2.2869975566864014, -0.16529841721057892, -0.19612184166908264, -0.12712866067886353, 0.02274606004357338, 0.1269369125366211, -0.10475411266088486, 0.03093128465116024, 1.2469706535339355, -0.1179487481713295, 0.07798135280609131, -0.03423893079161644]} +{"t": 13.8836, "q": [-0.3482358157634735, -0.015044942498207092, 0.014222193509340286, 0.6221826076507568, -0.29614120721817017, 0.0254479069262743, -0.3373274803161621, 0.0018492990639060736, 0.00037497308221645653, 0.6183817386627197, -0.3283036947250366, 0.006802949123084545, -0.016512207686901093, 0.020602596923708916, -0.023154737427830696, -2.8111636638641357, 2.246598720550537, 2.286937713623047, -0.16268585622310638, -0.19609788060188293, -0.12712866067886353, 0.022734075784683228, 0.1269129514694214, -0.10538927465677261, 0.030883347615599632, 1.2469706535339355, -0.11796072870492935, 0.07799334079027176, -0.034214962273836136]} +{"t": 13.9003, "q": [-0.34821024537086487, -0.014806324616074562, 0.014248977415263653, 0.6221655607223511, -0.2961161136627197, 0.025404607877135277, -0.3373871445655823, 0.002002697205170989, 0.00037497308221645653, 0.6184414029121399, -0.3282290995121002, 0.006700608413666487, -0.017355896532535553, 0.022023148834705353, -0.023753110319375992, -2.817479372024536, 2.246598720550537, 2.287045478820801, -0.160061314702034, -0.1961098611354828, -0.1272125542163849, 0.02275804430246353, 0.126960888504982, -0.10597650706768036, 0.030835412442684174, 1.2469346523284912, -0.11790081113576889, 0.07796937227249146, -0.03422694653272629]} +{"t": 13.917, "q": [-0.34826987981796265, -0.01455065980553627, 0.014262368902564049, 0.6221570372581482, -0.296107679605484, 0.025375692173838615, -0.3374553322792053, 0.0023435817565768957, 0.00042854066123254597, 0.6185010671615601, -0.3281334638595581, 0.006518198177218437, -0.018253153190016747, 0.023147208616137505, -0.024109741672873497, -2.8221051692962646, 2.2466228008270264, 2.288795232772827, -0.1577123999595642, -0.1961338371038437, -0.12722453474998474, 0.02275804430246353, 0.12697286903858185, -0.10650380700826645, 0.030799459666013718, 1.2468867301940918, -0.11788882315158844, 0.07794540375471115, -0.03423893079161644]} +{"t": 13.9339, "q": [-0.34839773178100586, -0.01437169499695301, 0.014222193509340286, 0.6221144199371338, -0.2961075007915497, 0.025317812338471413, -0.3374553322792053, 0.0025566346012055874, 0.0003883649769704789, 0.6185436844825745, -0.3281536102294922, 0.006453012581914663, -0.018574560061097145, 0.023868456482887268, -0.024211831390857697, -2.825580596923828, 2.2466228008270264, 2.290472984313965, -0.15565112233161926, -0.19614581763744354, -0.1272365152835846, 0.022782012820243835, 0.12694889307022095, -0.10692325979471207, 0.030799459666013718, 1.246862769126892, -0.1179487481713295, 0.07796937227249146, -0.03423893079161644]} +{"t": 13.9506, "q": [-0.34836363792419434, -0.014294996857643127, 0.01411505788564682, 0.622097373008728, -0.29609084129333496, 0.025317860767245293, -0.33748942613601685, 0.0027355989441275597, 0.00030801360844634473, 0.6186203360557556, -0.3281613886356354, 0.006380457431077957, -0.01865491084754467, 0.024224944412708282, -0.024113690480589867, -2.828277111053467, 2.246598720550537, 2.2918033599853516, -0.15422499179840088, -0.1961577981710434, -0.12722453474998474, 0.022782012820243835, 0.1269369125366211, -0.1071389764547348, 0.030799459666013718, 1.2468267679214478, -0.11791279166936874, 0.07799334079027176, -0.03423893079161644]} +{"t": 13.9673, "q": [-0.3483465909957886, -0.014235341921448708, 0.013967746868729591, 0.6220377087593079, -0.29605311155319214, 0.02522396482527256, -0.33776211738586426, 0.0028719529509544373, 0.00020087843586225063, 0.6186800003051758, -0.32798686623573303, 0.006073869299143553, -0.018721869215369225, 0.02438400126993656, -0.023993711918592453, -2.8316328525543213, 2.246562957763672, 2.291743278503418, -0.153242290019989, -0.1961338371038437, -0.1272365152835846, 0.022770028561353683, 0.12694889307022095, -0.10717492550611496, 0.030775491148233414, 1.246802806854248, -0.11791279166936874, 0.07794540375471115, -0.03423893079161644]} +{"t": 13.9841, "q": [-0.3484658896923065, -0.014260908588767052, 0.013900787569582462, 0.6220036149024963, -0.29599058628082275, 0.02518804743885994, -0.33804336190223694, 0.002957174088805914, 0.00010713516530813649, 0.6187226176261902, -0.3279619514942169, 0.0060300868935883045, -0.018587950617074966, 0.02454308047890663, -0.023883504793047905, -2.834796667098999, 2.2466347217559814, 2.291719436645508, -0.15246331691741943, -0.1961098611354828, -0.1272365152835846, 0.02275804430246353, 0.1269369125366211, -0.10730675607919693, 0.03076350688934326, 1.246802806854248, -0.11790081113576889, 0.07794540375471115, -0.03423893079161644]} +{"t": 14.0008, "q": [-0.34854260087013245, -0.01425238698720932, 0.013820436783134937, 0.6219780445098877, -0.29597383737564087, 0.025159163400530815, -0.33812856674194336, 0.002974218223243952, -0.00010713516530813649, 0.618739664554596, -0.32796168327331543, 0.005986502859741449, -0.018520992249250412, 0.024732200428843498, -0.023646684363484383, -2.8352279663085938, 2.2466588020324707, 2.291407823562622, -0.15234346687793732, -0.1961098611354828, -0.1272365152835846, 0.022770028561353683, 0.12694889307022095, -0.10734270513057709, 0.030739538371562958, 1.246802806854248, -0.11790081113576889, 0.077957384288311, -0.03422694653272629]} +{"t": 14.0176, "q": [-0.34873008728027344, -0.014303518459200859, 0.01384721975773573, 0.6219354867935181, -0.29595711827278137, 0.025130297988653183, -0.33831605315208435, 0.003008306724950671, -0.00018748654110822827, 0.618739664554596, -0.32801470160484314, 0.005921624600887299, -0.018360288813710213, 0.02486840821802616, -0.023492198437452316, -2.835012197494507, 2.2466347217559814, 2.290712833404541, -0.15212775766849518, -0.1961098611354828, -0.1272604912519455, 0.02275804430246353, 0.12697286903858185, -0.1074385792016983, 0.03076350688934326, 1.246790885925293, -0.11790081113576889, 0.07796937227249146, -0.03423893079161644]} +{"t": 14.0344, "q": [-0.34877270460128784, -0.014329085126519203, 0.013967746868729591, 0.6218843460083008, -0.2959529161453247, 0.025123082101345062, -0.3383927643299103, 0.003025350859388709, -0.0002544460294302553, 0.618739664554596, -0.3280635476112366, 0.005849412642419338, -0.018279938027262688, 0.025080209597945213, -0.023221487179398537, -2.834904432296753, 2.2466347217559814, 2.290053606033325, -0.15155251324176788, -0.19612184166908264, -0.1272365152835846, 0.02274606004357338, 0.12694889307022095, -0.10755842179059982, 0.030739538371562958, 1.246802806854248, -0.1179247796535492, 0.07798135280609131, -0.034202978014945984]} +{"t": 14.0511, "q": [-0.3488749563694, -0.014346130192279816, 0.014021314680576324, 0.6217905879020691, -0.2959362864494324, 0.025123130530118942, -0.33846092224121094, 0.003025350859388709, -0.00020087843586225063, 0.6187737584114075, -0.32808756828308105, 0.005747940391302109, -0.01845403201878071, 0.025496572256088257, -0.022821636870503426, -2.8346288204193115, 2.246574878692627, 2.289022922515869, -0.15078552067279816, -0.1961098611354828, -0.1272604912519455, 0.02274606004357338, 0.1269848495721817, -0.10770223289728165, 0.030739538371562958, 1.246790885925293, -0.11796072870492935, 0.07796937227249146, -0.03423893079161644]} +{"t": 14.068, "q": [-0.34896019101142883, -0.014422828331589699, 0.01412845030426979, 0.6216968297958374, -0.2959153652191162, 0.02508704923093319, -0.33845239877700806, 0.0030594393610954285, -5.3567582654068246e-05, 0.6188334226608276, -0.3280990421772003, 0.005610054358839989, -0.01848081685602665, 0.025897853076457977, -0.022450469434261322, -2.833334445953369, 2.246598720550537, 2.2859909534454346, -0.14976686239242554, -0.19612184166908264, -0.1272365152835846, 0.02274606004357338, 0.12697286903858185, -0.10792993009090424, 0.030715569853782654, 1.2467669248580933, -0.11790081113576889, 0.07794540375471115, -0.03423893079161644]} +{"t": 14.0847, "q": [-0.349249929189682, -0.01443134993314743, 0.01419540960341692, 0.6216201186180115, -0.2958739697933197, 0.025145092979073524, -0.33840128779411316, 0.003067961661145091, 0.0, 0.6189612150192261, -0.328084796667099, 0.005297616124153137, -0.01833350583910942, 0.02630683407187462, -0.02219260297715664, -2.832651376724243, 2.246598720550537, 2.2818803787231445, -0.14864034950733185, -0.1961098611354828, -0.12722453474998474, 0.022722091525793076, 0.12694889307022095, -0.10816961526870728, 0.030679617077112198, 1.2467190027236938, -0.11787684261798859, 0.07794540375471115, -0.034214962273836136]} +{"t": 14.1015, "q": [-0.34954822063446045, -0.014473961666226387, 0.014342720620334148, 0.6217564940452576, -0.29585713148117065, 0.025087280198931694, -0.3382904827594757, 0.0030509172938764095, -0.00013391896209213883, 0.6193873286247253, -0.3282356262207031, 0.00510285422205925, -0.01797192357480526, 0.026404596865177155, -0.021876541897654533, -2.8330228328704834, 2.2466347217559814, 2.2769548892974854, -0.14734604954719543, -0.1961098611354828, -0.1272125542163849, 0.022722091525793076, 0.12699683010578156, -0.10827747732400894, 0.03069160133600235, 1.2467669248580933, -0.11785287410020828, 0.077957384288311, -0.034202978014945984]} +{"t": 14.1182, "q": [-0.3496675193309784, -0.014508049935102463, 0.014570382423698902, 0.6219269633293152, -0.2958321273326874, 0.025072911754250526, -0.33822232484817505, 0.003093527862802148, -0.0006160272168926895, 0.6194469928741455, -0.32822713255882263, 0.005059198010712862, -0.017717478796839714, 0.02644963748753071, -0.02170136198401451, -2.8332505226135254, 2.246598720550537, 2.2716097831726074, -0.14591993391513824, -0.19612184166908264, -0.1272365152835846, 0.02274606004357338, 0.12694889307022095, -0.1083134263753891, 0.030703585594892502, 1.2468267679214478, -0.11790081113576889, 0.07798135280609131, -0.03423893079161644]} +{"t": 14.1349, "q": [-0.34968456625938416, -0.014499528333544731, 0.015132841654121876, 0.6220036149024963, -0.2957863211631775, 0.025036921724677086, -0.3381456136703491, 0.0032980586402118206, -0.0008570813224650919, 0.6195066571235657, -0.3281855881214142, 0.004986208863556385, -0.018079059198498726, 0.026411155238747597, -0.02150055207312107, -2.8318843841552734, 2.246598720550537, 2.26837420463562, -0.14487729966640472, -0.19616977870464325, -0.1272365152835846, 0.022734075784683228, 0.12678112089633942, -0.10827747732400894, 0.030727554112672806, 1.2468388080596924, -0.11790081113576889, 0.07796937227249146, -0.03422694653272629]} +{"t": 14.1517, "q": [-0.3498038649559021, -0.014525093138217926, 0.0155345993116498, 0.6220547556877136, -0.29574039578437805, 0.024957535788416862, -0.3376428186893463, 0.0035366779193282127, -0.0008035137434490025, 0.6196089386940002, -0.32808631658554077, 0.004883669316768646, -0.018065666779875755, 0.026387475430965424, -0.021163200959563255, -2.830482244491577, 2.2466588020324707, 2.263017177581787, -0.14340323209762573, -0.1961098611354828, -0.1272125542163849, 0.022722091525793076, 0.12662532925605774, -0.10825350880622864, 0.030727554112672806, 1.246802806854248, -0.11788882315158844, 0.07798135280609131, -0.03422694653272629]} +{"t": 14.1687, "q": [-0.3502214550971985, -0.014593271538615227, 0.01577565260231495, 0.6220377087593079, -0.29571956396102905, 0.024921465665102005, -0.33662867546081543, 0.00364746549166739, -0.0006428110064007342, 0.6200265288352966, -0.32803258299827576, 0.004832354374229908, -0.018012098968029022, 0.02642505057156086, -0.02103186957538128, -2.8300387859344482, 2.246718645095825, 2.255922555923462, -0.1417374312877655, -0.19608590006828308, -0.12720057368278503, 0.022734075784683228, 0.12662532925605774, -0.10825350880622864, 0.03069160133600235, 1.2466830015182495, -0.11791279166936874, 0.07796937227249146, -0.03423893079161644]} +{"t": 14.1854, "q": [-0.35024702548980713, -0.014584748074412346, 0.01580243743956089, 0.6220121383666992, -0.29569464921951294, 0.02493603527545929, -0.3363218903541565, 0.0036645096261054277, -0.000709770480170846, 0.6204015016555786, -0.32798272371292114, 0.004744752775877714, -0.018012098968029022, 0.026484277099370956, -0.0204954631626606, -2.831153392791748, 2.2467546463012695, 2.2477972507476807, -0.13987988233566284, -0.19609788060188293, -0.12720057368278503, 0.022590264678001404, 0.12652945518493652, -0.10827747732400894, 0.030643664300441742, 1.2466830015182495, -0.11788882315158844, 0.07796937227249146, -0.03423893079161644]} +{"t": 14.2021, "q": [-0.3499913513660431, -0.014652926474809647, 0.015668518841266632, 0.622029185295105, -0.2956904172897339, 0.02489989623427391, -0.33602359890937805, 0.003707120195031166, -0.0008436894277110696, 0.6208531260490417, -0.3279702663421631, 0.004722861107438803, -0.01798531599342823, 0.02640671841800213, -0.019869377836585045, -2.8316328525543213, 2.246934413909912, 2.240978240966797, -0.13768675923347473, -0.19609788060188293, -0.1272365152835846, 0.022554311901330948, 0.1263856440782547, -0.10827747732400894, 0.030667632818222046, 1.2466709613800049, -0.11786485463380814, 0.07796937227249146, -0.03425091505050659]} +{"t": 14.2189, "q": [-0.3493095934391022, -0.014865977689623833, 0.01538728829473257, 0.6221144199371338, -0.2956986725330353, 0.024885380640625954, -0.3349839150905609, 0.0038434739690274, -0.0011650949018076062, 0.621049165725708, -0.32800692319869995, 0.004672341980040073, -0.017851397395133972, 0.026124382391572, -0.01927543431520462, -2.8319203853607178, 2.2470061779022217, 2.234602689743042, -0.13552960753440857, -0.19609788060188293, -0.12720057368278503, 0.022482406347990036, 0.12625381350517273, -0.10821755230426788, 0.030655648559331894, 1.246730923652649, -0.11787684261798859, 0.07798135280609131, -0.034262899309396744]} +{"t": 14.2356, "q": [-0.3481591045856476, -0.014865977689623833, 0.014891788363456726, 0.622097373008728, -0.29570695757865906, 0.02487088181078434, -0.3332453966140747, 0.004048004746437073, -0.001673986902460456, 0.6209468841552734, -0.32808831334114075, 0.004542331676930189, -0.017878180369734764, 0.025758514180779457, -0.018646128475666046, -2.8341615200042725, 2.2470662593841553, 2.2286343574523926, -0.13379189372062683, -0.1961098611354828, -0.12712866067886353, 0.02244645357131958, 0.12608602643013, -0.10802580416202545, 0.030727554112672806, 1.246730923652649, -0.11793676018714905, 0.07796937227249146, -0.034214962273836136]} +{"t": 14.2524, "q": [-0.34706827998161316, -0.014883022755384445, 0.014556990936398506, 0.622029185295105, -0.29574841260910034, 0.024841759353876114, -0.3323846757411957, 0.004252535756677389, -0.0020355682354420424, 0.6208105683326721, -0.32825949788093567, 0.004311427939683199, -0.017931748181581497, 0.02525033988058567, -0.018633682280778885, -2.836186647415161, 2.2471859455108643, 2.2238528728485107, -0.13284513354301453, -0.19609788060188293, -0.12714064121246338, 0.022434469312429428, 0.12590627372264862, -0.10764230787754059, 0.030799459666013718, 1.246730923652649, -0.11793676018714905, 0.077957384288311, -0.03423893079161644]} +{"t": 14.2693, "q": [-0.3462245762348175, -0.014857456088066101, 0.01444985531270504, 0.6220206618309021, -0.29579392075538635, 0.024776462465524673, -0.3315409719944, 0.004576376173645258, -0.0021159194875508547, 0.620750904083252, -0.3283735513687134, 0.004152645356953144, -0.017878180369734764, 0.024750301614403725, -0.018811438232660294, -2.8373851776123047, 2.2473058700561523, 2.2197420597076416, -0.13250957429409027, -0.1961098611354828, -0.12712866067886353, 0.022470422089099884, 0.12575048208236694, -0.10730675607919693, 0.030799459666013718, 1.2466709613800049, -0.11793676018714905, 0.07796937227249146, -0.03422694653272629]} +{"t": 14.286, "q": [-0.3459433615207672, -0.014823367819190025, 0.014315936714410782, 0.6219950914382935, -0.29579806327819824, 0.024769213050603867, -0.33124271035194397, 0.004849083721637726, -0.0021828790195286274, 0.6207082867622375, -0.3284306228160858, 0.004080523736774921, -0.017931748181581497, 0.024386802688241005, -0.0190503541380167, -2.8388712406158447, 2.247282028198242, 2.2149124145507812, -0.13234180212020874, -0.1961098611354828, -0.12712866067886353, 0.022482406347990036, 0.12565460801124573, -0.1070910394191742, 0.03082342818379402, 1.2466709613800049, -0.11791279166936874, 0.07798135280609131, -0.03422694653272629]} +{"t": 14.3027, "q": [-0.3459092676639557, -0.014695536345243454, 0.014289152808487415, 0.6219695210456848, -0.2957937717437744, 0.02471861056983471, -0.3312171399593353, 0.005087703000754118, -0.0022230546455830336, 0.6207253336906433, -0.328446626663208, 0.004008041229099035, -0.018065666779875755, 0.024265948683023453, -0.0192536860704422, -2.8405730724334717, 2.247282028198242, 2.208824634552002, -0.13220997154712677, -0.1961098611354828, -0.12712866067886353, 0.022458437830209732, 0.1255587339401245, -0.10700714588165283, 0.03085937909781933, 1.2466470003128052, -0.11793676018714905, 0.077957384288311, -0.03423893079161644]} +{"t": 14.3195, "q": [-0.34592631459236145, -0.014687014743685722, 0.014423071406781673, 0.6218928694725037, -0.29565608501434326, 0.024480486288666725, -0.3312256634235382, 0.00526666734367609, -0.002089135814458132, 0.620750904083252, -0.3284870982170105, 0.003906713332980871, -0.018105842173099518, 0.024296294897794724, -0.019254088401794434, -2.842071056365967, 2.2473058700561523, 2.2027604579925537, -0.13216203451156616, -0.1961098611354828, -0.12714064121246338, 0.02244645357131958, 0.12554673850536346, -0.10700714588165283, 0.03081144392490387, 1.246563196182251, -0.11790081113576889, 0.07798135280609131, -0.03425091505050659]} +{"t": 14.3362, "q": [-0.3462330996990204, -0.014601793140172958, 0.014476639218628407, 0.6217138767242432, -0.2955307066440582, 0.02419165149331093, -0.33139610290527344, 0.005428587552160025, -0.002008784329518676, 0.6207253336906433, -0.32858899235725403, 0.003769604954868555, -0.018212977796792984, 0.024334263056516647, -0.019269252195954323, -2.843904495239258, 2.247246026992798, 2.1965887546539307, -0.13213807344436646, -0.19609788060188293, -0.12714064121246338, 0.022434469312429428, 0.1255587339401245, -0.10704310238361359, 0.030775491148233414, 1.2465392351150513, -0.11788882315158844, 0.07796937227249146, -0.03423893079161644]} +{"t": 14.3531, "q": [-0.3463098108768463, -0.014593271538615227, 0.014503423124551773, 0.6215093731880188, -0.2954263687133789, 0.02399679273366928, -0.3315154016017914, 0.00552233075723052, -0.0018882573349401355, 0.6206400990486145, -0.3288537263870239, 0.0033870164770632982, -0.018360288813710213, 0.024357009679079056, -0.019264688715338707, -2.8458938598632812, 2.2472219467163086, 2.1911957263946533, -0.13193432986736298, -0.1961098611354828, -0.12714064121246338, 0.02238653227686882, 0.12558269500732422, -0.10706707090139389, 0.030787475407123566, 1.2465152740478516, -0.11790081113576889, 0.07794540375471115, -0.03423893079161644]} +{"t": 14.3698, "q": [-0.3463524281978607, -0.014482483267784119, 0.01444985531270504, 0.6211344003677368, -0.2953178286552429, 0.023794718086719513, -0.33175402879714966, 0.005599029827862978, -0.0018614735454320908, 0.6205719113349915, -0.32914718985557556, 0.002997402334585786, -0.018373681232333183, 0.02440265193581581, -0.01931413635611534, -2.8487942218780518, 2.2471981048583984, 2.1852874755859375, -0.13171862065792084, -0.1961338371038437, -0.12716461718082428, 0.022410500794649124, 0.12572650611400604, -0.1070910394191742, 0.03076350688934326, 1.2465392351150513, -0.11787684261798859, 0.07796937227249146, -0.03422694653272629]} +{"t": 14.3865, "q": [-0.3465058207511902, -0.014448394998908043, 0.01446324773132801, 0.6205463409423828, -0.2952675521373749, 0.023621322587132454, -0.33180516958236694, 0.005573463626205921, -0.0017677302239462733, 0.620461106300354, -0.3293363153934479, 0.0030136059504002333, -0.018373681232333183, 0.024395177140831947, -0.01935795694589615, -2.8526411056518555, 2.2472219467163086, 2.1788878440856934, -0.13108345866203308, -0.19607390463352203, -0.12714064121246338, 0.022374548017978668, 0.12584635615348816, -0.10710301995277405, 0.030787475407123566, 1.2465511560440063, -0.11790081113576889, 0.07796937227249146, -0.03425091505050659]} +{"t": 14.4033, "q": [-0.3468126058578491, -0.014405785128474236, 0.014503423124551773, 0.6197367310523987, -0.2952800393104553, 0.02362849935889244, -0.3318648040294647, 0.00558198569342494, -0.0016873788554221392, 0.6202906966209412, -0.32938969135284424, 0.0030068152118474245, -0.01845403201878071, 0.024296920746564865, -0.019498134031891823, -2.8562722206115723, 2.247246026992798, 2.1729438304901123, -0.1303524225950241, -0.19609788060188293, -0.127188578248024, 0.022350579500198364, 0.12594223022460938, -0.1070910394191742, 0.030787475407123566, 1.2465871572494507, -0.11790081113576889, 0.07798135280609131, -0.03422694653272629]} +{"t": 14.42, "q": [-0.3470597565174103, -0.014354651793837547, 0.014664125628769398, 0.6186118125915527, -0.29522567987442017, 0.023491278290748596, -0.33216309547424316, 0.005471197888255119, -0.0014998923288658261, 0.6198901534080505, -0.32990017533302307, 0.003817465156316757, -0.018762046471238136, 0.024183686822652817, -0.01971626468002796, -2.8587889671325684, 2.247257947921753, 2.1678504943847656, -0.12956145405769348, -0.19609788060188293, -0.12716461718082428, 0.02238653227686882, 0.12600214779376984, -0.10703111439943314, 0.030775491148233414, 1.246563196182251, -0.11788882315158844, 0.07796937227249146, -0.03423893079161644]} +{"t": 14.4368, "q": [-0.3472898602485657, -0.014235341921448708, 0.014851612038910389, 0.6176744103431702, -0.29502546787261963, 0.023173855617642403, -0.33229944109916687, 0.0054456316865980625, -0.0011249192757532, 0.6194981336593628, -0.33054426312446594, 0.0049633849412202835, -0.018922748044133186, 0.02420688420534134, -0.019887397065758705, -2.861485481262207, 2.2472219467163086, 2.161618709564209, -0.12831510603427887, -0.19607390463352203, -0.12720057368278503, 0.022338595241308212, 0.1260380893945694, -0.10704310238361359, 0.030787475407123566, 1.246563196182251, -0.11790081113576889, 0.07796937227249146, -0.034214962273836136]} +{"t": 14.4537, "q": [-0.34726428985595703, -0.014209775254130363, 0.014918571338057518, 0.616941511631012, -0.29489198327064514, 0.02295740880072117, -0.33258920907974243, 0.005403021350502968, -0.0006160272168926895, 0.6193788051605225, -0.33094674348831177, 0.005584273487329483, -0.01898970827460289, 0.024214809760451317, -0.020019281655550003, -2.8638103008270264, 2.247246026992798, 2.1558542251586914, -0.1269848495721817, -0.19609788060188293, -0.127188578248024, 0.022338595241308212, 0.12609802186489105, -0.10703111439943314, 0.03076350688934326, 1.2465871572494507, -0.11790081113576889, 0.077957384288311, -0.03419099375605583]} +{"t": 14.4704, "q": [-0.34726428985595703, -0.014167165383696556, 0.014811436645686626, 0.6165324449539185, -0.2948252558708191, 0.02285643294453621, -0.333109050989151, 0.005360410548746586, -0.00037497308221645653, 0.6193361878395081, -0.33109378814697266, 0.005440319888293743, -0.01913701929152012, 0.02423805743455887, -0.020209938287734985, -2.8653564453125, 2.247282028198242, 2.1517555713653564, -0.12570254504680634, -0.19606192409992218, -0.127188578248024, 0.022278673946857452, 0.12619389593601227, -0.10703111439943314, 0.030775491148233414, 1.2465871572494507, -0.11787684261798859, 0.077957384288311, -0.03423893079161644]} +{"t": 14.4872, "q": [-0.34726428985595703, -0.014175686985254288, 0.014690909534692764, 0.6163619756698608, -0.2948252260684967, 0.022841952741146088, -0.3331942558288574, 0.005360410548746586, -0.00040175687172450125, 0.6193276643753052, -0.33124902844429016, 0.0052964212372899055, -0.01929772086441517, 0.024284053593873978, -0.020396016538143158, -2.867513418197632, 2.247257947921753, 2.1483161449432373, -0.12443221360445023, -0.19604994356632233, -0.127188578248024, 0.022278673946857452, 0.12632571160793304, -0.10703111439943314, 0.030787475407123566, 1.2465871572494507, -0.11790081113576889, 0.07794540375471115, -0.03423893079161644]} +{"t": 14.5039, "q": [-0.3472728133201599, -0.014175686985254288, 0.014677518047392368, 0.616191565990448, -0.29480868577957153, 0.022870948538184166, -0.3331942558288574, 0.005360410548746586, -0.00046871634549461305, 0.6192851066589355, -0.33140772581100464, 0.005043625831604004, -0.01933789812028408, 0.02431492507457733, -0.020601416006684303, -2.8718037605285645, 2.2473058700561523, 2.141904592514038, -0.12299410253763199, -0.19619375467300415, -0.12717659771442413, 0.022338595241308212, 0.12646952271461487, -0.10704310238361359, 0.03076350688934326, 1.2465871572494507, -0.11788882315158844, 0.07796937227249146, -0.03423893079161644]} +{"t": 14.5206, "q": [-0.34731540083885193, -0.014116032049059868, 0.014677518047392368, 0.6161404252052307, -0.2948128283023834, 0.02286370098590851, -0.3331942558288574, 0.005360410548746586, -0.0006695947959087789, 0.6192936301231384, -0.3315781056880951, 0.0046819886192679405, -0.019230762496590614, 0.024178767576813698, -0.020755792036652565, -2.875746726989746, 2.2475216388702393, 2.134941816329956, -0.12209528684616089, -0.19639748334884644, -0.1272125542163849, 0.02232661098241806, 0.12657739222049713, -0.10703111439943314, 0.030739538371562958, 1.2466111183166504, -0.11787684261798859, 0.077957384288311, -0.03423893079161644]} +{"t": 14.5373, "q": [-0.34734097123146057, -0.014056377112865448, 0.014583774842321873, 0.6162427067756653, -0.294758677482605, 0.022813310846686363, -0.33322834968566895, 0.005411543417721987, -0.0011650949018076062, 0.6192851066589355, -0.3309478461742401, 0.0031149331480264664, -0.019217370077967644, 0.02397419884800911, -0.020855575799942017, -2.877328634262085, 2.2475335597991943, 2.1287100315093994, -0.12038154155015945, -0.19633756577968597, -0.12802748382091522, 0.022338595241308212, 0.1266373097896576, -0.10695920884609222, 0.030775491148233414, 1.2466470003128052, -0.11788882315158844, 0.07796937227249146, -0.03423893079161644]} +{"t": 14.5543, "q": [-0.34739211201667786, -0.014039333909749985, 0.014155233278870583, 0.616353452205658, -0.2947545051574707, 0.02280609682202339, -0.33327949047088623, 0.005411543417721987, -0.001607027486898005, 0.6192851066589355, -0.33057013154029846, 0.0018478917190805078, -0.018601343035697937, 0.02342083491384983, -0.02104855515062809, -2.877927780151367, 2.247617483139038, 2.1200454235076904, -0.11514443904161453, -0.1964813768863678, -0.12909407913684845, 0.022518359124660492, 0.1266852468252182, -0.10671952366828918, 0.03082342818379402, 1.2466470003128052, -0.11788882315158844, 0.07796937227249146, -0.03423893079161644]} +{"t": 14.571, "q": [-0.347451776266098, -0.014056377112865448, 0.013298152014613152, 0.6166517734527588, -0.2946961224079132, 0.022719532251358032, -0.33327949047088623, 0.005377454683184624, -0.0024908925406634808, 0.6192765831947327, -0.33050447702407837, 0.0012009069323539734, -0.017342504113912582, 0.022685006260871887, -0.021122226491570473, -2.87734055519104, 2.247605562210083, 2.1106977462768555, -0.11080614477396011, -0.1964334398508072, -0.1293337643146515, 0.022494390606880188, 0.12667326629161835, -0.1064918264746666, 0.030787475407123566, 1.2466709613800049, -0.11791279166936874, 0.07799334079027176, -0.03423893079161644]} +{"t": 14.5877, "q": [-0.3472813367843628, -0.014064900577068329, 0.012400895357131958, 0.6170182228088379, -0.29463788866996765, 0.0226763729006052, -0.33326244354248047, 0.005275189410895109, -0.0035220684949308634, 0.6193021535873413, -0.3306249678134918, 0.0007516859914176166, -0.01577565260231495, 0.021736882627010345, -0.02127162553369999, -2.876741409301758, 2.2475335597991943, 2.1002354621887207, -0.10401108860969543, -0.19636152684688568, -0.12896224856376648, 0.022422485053539276, 0.12669722735881805, -0.10634801536798477, 0.03081144392490387, 1.2466709613800049, -0.11791279166936874, 0.07796937227249146, -0.034214962273836136]} +{"t": 14.6045, "q": [-0.34698304533958435, -0.01407342217862606, 0.011664341203868389, 0.6175380349159241, -0.29457539319992065, 0.022611556574702263, -0.3332368731498718, 0.005258145276457071, -0.004379149992018938, 0.6193106770515442, -0.3306698501110077, 0.0007012389833107591, -0.014985531568527222, 0.02126678079366684, -0.02142230048775673, -2.876777410507202, 2.247365713119507, 2.0888025760650635, -0.0959576889872551, -0.1961338371038437, -0.12841098010540009, 0.022038990631699562, 0.1267331838607788, -0.10613229870796204, 0.030835412442684174, 1.246802806854248, -0.11793676018714905, 0.07799334079027176, -0.03422694653272629]} +{"t": 14.6212, "q": [-0.3469063639640808, -0.01407342217862606, 0.011048314161598682, 0.6183391213417053, -0.29437950253486633, 0.022344736382365227, -0.3332113027572632, 0.005292233545333147, -0.0049817850813269615, 0.6193447113037109, -0.33063262701034546, 0.0006645906250923872, -0.013619557954370975, 0.020812293514609337, -0.02176855131983757, -2.8781914710998535, 2.247257947921753, 2.081000804901123, -0.08665793389081955, -0.19589415192604065, -0.12740430235862732, 0.021583588793873787, 0.12675714492797852, -0.10601245611906052, 0.030919300392270088, 1.2470065355300903, -0.1179487481713295, 0.07800532132387161, -0.03425091505050659]} +{"t": 14.6381, "q": [-0.34684669971466064, -0.014226820319890976, 0.010740300640463829, 0.619182825088501, -0.29428374767303467, 0.022265562787652016, -0.33294713497161865, 0.005292233545333147, -0.005383542273193598, 0.6196345090866089, -0.3304966986179352, 0.0006125524523667991, -0.012869611382484436, 0.020804939791560173, -0.021871041506528854, -2.8820624351501465, 2.2471261024475098, 2.0734987258911133, -0.07651928067207336, -0.19561851024627686, -0.1267092078924179, 0.021403826773166656, 0.12678112089633942, -0.10600047558546066, 0.030883347615599632, 1.2471504211425781, -0.11796072870492935, 0.07807722687721252, -0.03423893079161644]} +{"t": 14.6548, "q": [-0.34693190455436707, -0.014235341921448708, 0.010780476033687592, 0.6201031804084778, -0.2942337691783905, 0.02222236804664135, -0.33292156457901, 0.005309277679771185, -0.005490677431225777, 0.6205122470855713, -0.33046770095825195, 0.0005759763880632818, -0.012923179194331169, 0.0208352692425251, -0.021861637011170387, -2.886340618133545, 2.2472219467163086, 2.0667994022369385, -0.06476275622844696, -0.19535484910011292, -0.125858336687088, 0.021260015666484833, 0.12681707739830017, -0.10637198388576508, 0.031075095757842064, 1.2478694915771484, -0.11800866574048996, 0.07811318337917328, -0.03422694653272629]} +{"t": 14.6716, "q": [-0.34706827998161316, -0.014337606728076935, 0.010901003144681454, 0.6214156150817871, -0.29424625635147095, 0.022229565307497978, -0.33266589045524597, 0.0054626758210361, -0.005504068918526173, 0.6214497089385986, -0.3304016888141632, 0.0005318319308571517, -0.012976747006177902, 0.020827604457736015, -0.021827351301908493, -2.892284870147705, 2.247246026992798, 2.0584704875946045, -0.05155613645911217, -0.19501930475234985, -0.1254388839006424, 0.021212078630924225, 0.12652945518493652, -0.10647983849048615, 0.030955253168940544, 1.248504638671875, -0.11796072870492935, 0.07810119539499283, -0.03423893079161644]} +{"t": 14.6884, "q": [-0.34735801815986633, -0.014405785128474236, 0.010941178537905216, 0.622685432434082, -0.2942836880683899, 0.022251099348068237, -0.3325210213661194, 0.00577799417078495, -0.005584420636296272, 0.6223785877227783, -0.330364465713501, 0.0004951835726387799, -0.013338328339159489, 0.02078952081501484, -0.02176339365541935, -2.896970748901367, 2.247246026992798, 2.0502731800079346, -0.03652791678905487, -0.19432421028614044, -0.12476776540279388, 0.021140173077583313, 0.1256905496120453, -0.10638396441936493, 0.030979221686720848, 1.248960018157959, -0.11796072870492935, 0.07807722687721252, -0.034202978014945984]} +{"t": 14.7051, "q": [-0.3473324477672577, -0.014422828331589699, 0.011209016665816307, 0.6234609484672546, -0.29434171319007874, 0.022192981094121933, -0.3325210213661194, 0.005991047248244286, -0.005396933760493994, 0.6231881976127625, -0.3303478956222534, 0.0004659953701775521, -0.014731084927916527, 0.020569121465086937, -0.02160932496190071, -2.900589942932129, 2.2472100257873535, 2.042819023132324, -0.02064882032573223, -0.19305388629436493, -0.12285029143095016, 0.021104220300912857, 0.1250913441181183, -0.10607238113880157, 0.030967237427830696, 1.2489360570907593, -0.1179247796535492, 0.07805325835943222, -0.034262899309396744]} +{"t": 14.7218, "q": [-0.3471534848213196, -0.014414306730031967, 0.011691125109791756, 0.6236057877540588, -0.2943374812602997, 0.02217128686606884, -0.3325551152229309, 0.006161489523947239, -0.005182663444429636, 0.6234524250030518, -0.3302903175354004, 0.00045096754911355674, -0.016056882217526436, 0.02023477852344513, -0.02140015736222267, -2.904940128326416, 2.247246026992798, 2.035029411315918, -0.0031638354994356632, -0.19144800305366516, -0.1203455924987793, 0.02105628326535225, 0.12498348206281662, -0.105892613530159, 0.030967237427830696, 1.2489120960235596, -0.11790081113576889, 0.07804127782583237, -0.03423893079161644]} +{"t": 14.7385, "q": [-0.3470597565174103, -0.01443134993314743, 0.012039314024150372, 0.6237762570381165, -0.29433321952819824, 0.022120684385299683, -0.33253806829452515, 0.00640863087028265, -0.004955001175403595, 0.6235802173614502, -0.3302614986896515, 0.0004434355942066759, -0.017101449891924858, 0.0198016706854105, -0.02111680433154106, -2.9093503952026367, 2.2471141815185547, 2.0281143188476562, 0.013158679008483887, -0.18969830870628357, -0.11658254265785217, 0.020984377712011337, 0.12533102929592133, -0.10578475892543793, 0.030703585594892502, 1.248900055885315, -0.11778096854686737, 0.07804127782583237, -0.03422694653272629]} +{"t": 14.7553, "q": [-0.3471790552139282, -0.014269430190324783, 0.012360719963908195, 0.6240233778953552, -0.2943456172943115, 0.022098936140537262, -0.33268293738365173, 0.006672816351056099, -0.004646987654268742, 0.6235631704330444, -0.3302450180053711, 0.00042878749081864953, -0.017744261771440506, 0.019315313547849655, -0.02075035311281681, -2.9139163494110107, 2.2471859455108643, 2.0224339962005615, 0.02907373011112213, -0.18641462922096252, -0.11304719746112823, 0.02099636197090149, 0.12564261257648468, -0.10567689687013626, 0.030799459666013718, 1.248960018157959, -0.11781691759824753, 0.07804127782583237, -0.03423893079161644]} +{"t": 14.772, "q": [-0.3472387194633484, -0.01418420858681202, 0.01252142246812582, 0.6242278814315796, -0.29437050223350525, 0.022084347903728485, -0.3327766954898834, 0.006902913562953472, -0.00445950124412775, 0.6235887408256531, -0.3302408456802368, 0.00040693304617889225, -0.01845403201878071, 0.018973398953676224, -0.020517250522971153, -2.920076370239258, 2.247246026992798, 2.0141408443450928, 0.0463549830019474, -0.1841735690832138, -0.11001519113779068, 0.020972393453121185, 0.12594223022460938, -0.10560499131679535, 0.030775491148233414, 1.249187707901001, -0.11781691759824753, 0.07802928984165192, -0.03423893079161644]} +{"t": 14.7887, "q": [-0.34720462560653687, -0.0141245536506176, 0.012454463168978691, 0.6243813037872314, -0.2943912446498871, 0.022077027708292007, -0.3328363299369812, 0.006988134700804949, -0.004405933897942305, 0.6236398816108704, -0.3302656412124634, 0.0004507324774749577, -0.019096843898296356, 0.018775878474116325, -0.02039797231554985, -2.926715612411499, 2.247162103652954, 2.005751848220825, 0.06211423873901367, -0.1826515793800354, -0.10778611898422241, 0.020840568467974663, 0.12626579403877258, -0.10554507374763489, 0.03075152263045311, 1.249247670173645, -0.11780493706464767, 0.07800532132387161, -0.034214962273836136]} +{"t": 14.8055, "q": [-0.3471790552139282, -0.01407342217862606, 0.012548206374049187, 0.6243983507156372, -0.29440370202064514, 0.022069742903113365, -0.33285337686538696, 0.006996656768023968, -0.004298798739910126, 0.6236484050750732, -0.3302697241306305, 0.0004435078881215304, -0.01932450570166111, 0.018707601353526115, -0.02040211856365204, -2.934001922607422, 2.247246026992798, 1.9982976913452148, 0.07796937227249146, -0.18154902756214142, -0.10578475892543793, 0.020792631432414055, 0.12651745975017548, -0.10553308576345444, 0.030727554112672806, 1.2493075132369995, -0.11781691759824753, 0.07800532132387161, -0.03423893079161644]} +{"t": 14.8223, "q": [-0.3471534848213196, -0.014064900577068329, 0.012467854656279087, 0.6244580149650574, -0.2943912446498871, 0.022077027708292007, -0.3328448534011841, 0.006971090566366911, -0.0042854067869484425, 0.6236910223960876, -0.3302861750125885, 0.0004436525341589004, -0.01947181671857834, 0.01862427219748497, -0.02046467550098896, -2.9393229484558105, 2.2471022605895996, 1.9938275814056396, 0.09189503639936447, -0.1799791008234024, -0.10365156084299088, 0.020780647173523903, 0.12660135328769684, -0.10550911724567413, 0.030727554112672806, 1.2496072053909302, -0.11780493706464767, 0.07804127782583237, -0.03422694653272629]} +{"t": 14.8391, "q": [-0.3471790552139282, -0.014047855511307716, 0.012414286844432354, 0.6243898272514343, -0.29443278908729553, 0.02207685075700283, -0.33289599418640137, 0.006971090566366911, -0.004245230928063393, 0.6236739754676819, -0.33033981919288635, 0.0004949846188537776, -0.019364681094884872, 0.018586628139019012, -0.020625554025173187, -2.9461419582366943, 2.2471859455108643, 1.9874639511108398, 0.10712698847055435, -0.17645573616027832, -0.10094312578439713, 0.020804615691304207, 0.12662532925605774, -0.10550911724567413, 0.03082342818379402, 1.2497988939285278, -0.11780493706464767, 0.07801730930805206, -0.03425091505050659]} +{"t": 14.8558, "q": [-0.3471790552139282, -0.013962633907794952, 0.012280368246138096, 0.6244750618934631, -0.29442861676216125, 0.02206963673233986, -0.3329300880432129, 0.00697961263358593, -0.0042854067869484425, 0.6236739754676819, -0.3303975462913513, 0.0005245348438620567, -0.019458424299955368, 0.018510881811380386, -0.020703012123703957, -2.952385902404785, 2.2473537921905518, 1.980513095855713, 0.12155599892139435, -0.17130251228809357, -0.09700031578540802, 0.02076866291463375, 0.1266373097896576, -0.10549713671207428, 0.030835412442684174, 1.250218391418457, -0.11781691759824753, 0.07800532132387161, -0.03423893079161644]} +{"t": 14.8727, "q": [-0.34729838371276855, -0.013775147497653961, 0.0121062733232975, 0.6245517730712891, -0.2944576144218445, 0.022047800943255424, -0.33326244354248047, 0.007013700902462006, -0.0043523660860955715, 0.6236228346824646, -0.3307822048664093, 0.0009273775503970683, -0.01949859969317913, 0.018450291827321053, -0.02077084593474865, -2.9569039344787598, 2.247257947921753, 1.9746527671813965, 0.1348465085029602, -0.16523849964141846, -0.0923624262213707, 0.02070874162018299, 0.12669722735881805, -0.10546118021011353, 0.03087136335670948, 1.2509973049163818, -0.11781691759824753, 0.07801730930805206, -0.03422694653272629]} +{"t": 14.8897, "q": [-0.34747734665870667, -0.013698449358344078, 0.012119665741920471, 0.6245347261428833, -0.29450759291648865, 0.02209099382162094, -0.33400386571884155, 0.00703926756978035, -0.0043523660860955715, 0.6235120296478271, -0.33156195282936096, 0.002081751823425293, -0.019244154915213585, 0.01833653822541237, -0.0208137109875679, -2.9628000259399414, 2.247269868850708, 1.966395616531372, 0.1480291485786438, -0.16267387568950653, -0.08894691616296768, 0.020684773102402687, 0.1266373097896576, -0.10546118021011353, 0.03082342818379402, 1.251584529876709, -0.11780493706464767, 0.07802928984165192, -0.03425091505050659]} +{"t": 14.9064, "q": [-0.34775856137275696, -0.013672882691025734, 0.011825043708086014, 0.6245602965354919, -0.2945158779621124, 0.022090958431363106, -0.3355889916419983, 0.007013700902462006, -0.004633595701307058, 0.6234779357910156, -0.33235785365104675, 0.003192705102264881, -0.019083451479673386, 0.01821523904800415, -0.020880943164229393, -2.9681930541992188, 2.247389793395996, 1.9585819244384766, 0.16127172112464905, -0.15996544063091278, -0.08742492645978928, 0.020612867549061775, 0.12662532925605774, -0.10547316819429398, 0.03085937909781933, 1.2519919872283936, -0.11782890558242798, 0.07800532132387161, -0.034214962273836136]} +{"t": 14.9232, "q": [-0.34821024537086487, -0.01364731602370739, 0.011691125109791756, 0.6245858669281006, -0.29453250765800476, 0.022090906277298927, -0.3373274803161621, 0.006937001831829548, -0.004687163513153791, 0.62352055311203, -0.33268699049949646, 0.003253704169765115, -0.018601343035697937, 0.017488844692707062, -0.02204602211713791, -2.972327470779419, 2.2474136352539062, 1.952481985092163, 0.1741427779197693, -0.15631024539470673, -0.08658602833747864, 0.020564930513501167, 0.12669722735881805, -0.10542523115873337, 0.03087136335670948, 1.2522915601730347, -0.11784088611602783, 0.07799334079027176, -0.03423893079161644]} +{"t": 14.9399, "q": [-0.3486533761024475, -0.013621749356389046, 0.011624165810644627, 0.6247307062149048, -0.29450762271881104, 0.02210545726120472, -0.33808594942092896, 0.006971090566366911, -0.004713947419077158, 0.623597264289856, -0.3326334059238434, 0.0032314511481672525, -0.018226370215415955, 0.017042197287082672, -0.022701481357216835, -2.9759347438812256, 2.2474136352539062, 1.9458786249160767, 0.18621088564395905, -0.15306252241134644, -0.08593887835741043, 0.020552946254611015, 0.1267092078924179, -0.10542523115873337, 0.030907316133379936, 1.2529387474060059, -0.11785287410020828, 0.07801730930805206, -0.03422694653272629]} +{"t": 14.9566, "q": [-0.34922435879707336, -0.013476874679327011, 0.01159738190472126, 0.6247051358222961, -0.29449930787086487, 0.022105492651462555, -0.33881035447120667, 0.0070648337714374065, -0.004673771560192108, 0.6235802173614502, -0.3325963020324707, 0.0032093245536088943, -0.018253153190016747, 0.016632452607154846, -0.02278592810034752, -2.979302406311035, 2.247401714324951, 1.9370942115783691, 0.19889020919799805, -0.14841264486312866, -0.08520784229040146, 0.02052897773683071, 0.12656539678573608, -0.10537729412317276, 0.03085937909781933, 1.2534180879592896, -0.11784088611602783, 0.07802928984165192, -0.03425091505050659]} +{"t": 14.9735, "q": [-0.34931811690330505, -0.013425741344690323, 0.011650948785245419, 0.6246710419654846, -0.29448679089546204, 0.02208385057747364, -0.3390745222568512, 0.007192665245383978, -0.004646987654268742, 0.6235887408256531, -0.3325384855270386, 0.0031652345787733793, -0.01833350583910942, 0.016070883721113205, -0.022859258577227592, -2.9815673828125, 2.247401714324951, 1.9304189682006836, 0.20961607992649078, -0.14452975988388062, -0.08435696363449097, 0.020385166630148888, 0.12644556164741516, -0.1053173691034317, 0.03085937909781933, 1.2534540891647339, -0.11784088611602783, 0.07800532132387161, -0.03425091505050659]} +{"t": 14.9904, "q": [-0.3493095934391022, -0.013314953073859215, 0.011677732691168785, 0.624713659286499, -0.29448261857032776, 0.022076638415455818, -0.33909156918525696, 0.007226753979921341, -0.004606812261044979, 0.6235716938972473, -0.3325424790382385, 0.0031434877309948206, -0.018400464206933975, 0.015403174795210361, -0.023009857162833214, -2.984203815460205, 2.2474136352539062, 1.9229048490524292, 0.22072546184062958, -0.1423366367816925, -0.08348211646080017, 0.020373182371258736, 0.12644556164741516, -0.1050417348742485, 0.030895331874489784, 1.2535380125045776, -0.11784088611602783, 0.07800532132387161, -0.03423893079161644]} +{"t": 15.0071, "q": [-0.34927549958229065, -0.013306431472301483, 0.011677732691168785, 0.6246966123580933, -0.2944742739200592, 0.022062210366129875, -0.33910009264945984, 0.00729493098333478, -0.004620204214006662, 0.6235802173614502, -0.3325381278991699, 0.0031071468256413937, -0.018400464206933975, 0.014432310126721859, -0.02345101162791252, -2.986229181289673, 2.2474617958068848, 1.9165292978286743, 0.23068435490131378, -0.13997575640678406, -0.08263123035430908, 0.02033722959458828, 0.12651745975017548, -0.10449045896530151, 0.030967237427830696, 1.2537776231765747, -0.11785287410020828, 0.07802928984165192, -0.03423893079161644]} +{"t": 15.0238, "q": [-0.34923288226127625, -0.013297909870743752, 0.01158398948609829, 0.6247051358222961, -0.2944742739200592, 0.022062210366129875, -0.3390659987926483, 0.007311975117772818, -0.004700555466115475, 0.6235887408256531, -0.33246704936027527, 0.0029104137793183327, -0.018212977796792984, 0.013575104996562004, -0.023968525230884552, -2.9884462356567383, 2.24749755859375, 1.9113761186599731, 0.23973244428634644, -0.13677595555782318, -0.08205599337816238, 0.020325245335698128, 0.12662532925605774, -0.10357965528964996, 0.030991205945611, 1.2540053129196167, -0.11784088611602783, 0.07799334079027176, -0.03423893079161644]} +{"t": 15.0406, "q": [-0.3492925465106964, -0.013306431472301483, 0.01126258447766304, 0.6247818470001221, -0.2944493591785431, 0.02206231653690338, -0.33895522356033325, 0.007363107521086931, -0.004995177034288645, 0.6235887408256531, -0.33210521936416626, 0.00221727741882205, -0.01797192357480526, 0.012862123548984528, -0.02446223795413971, -2.990675449371338, 2.2474377155303955, 1.9064505100250244, 0.24674321711063385, -0.1339716613292694, -0.081552654504776, 0.02034921385347843, 0.1266373097896576, -0.10265687108039856, 0.031039142981171608, 1.254328966140747, -0.11784088611602783, 0.07804127782583237, -0.03423893079161644]} +{"t": 15.0573, "q": [-0.3493522107601166, -0.013314953073859215, 0.01118223275989294, 0.6248159408569336, -0.29444101452827454, 0.02204788848757744, -0.338972270488739, 0.0073716300539672375, -0.005102312192320824, 0.6235887408256531, -0.3308231234550476, -2.370116089878138e-05, -0.01762373559176922, 0.012126327492296696, -0.024950917810201645, -2.9931440353393555, 2.2474136352539062, 1.9005903005599976, 0.2527712881565094, -0.13350427150726318, -0.08133693784475327, 0.020361198112368584, 0.12660135328769684, -0.10166218131780624, 0.031063111498951912, 1.254556655883789, -0.11784088611602783, 0.07804127782583237, -0.03425091505050659]} +{"t": 15.074, "q": [-0.34946298599243164, -0.013280864804983139, 0.011168841272592545, 0.6248756051063538, -0.29444101452827454, 0.02204788848757744, -0.3389893174171448, 0.007405718322843313, -0.005182663444429636, 0.6235887408256531, -0.33075717091560364, -9.690505248727277e-05, -0.017396071925759315, 0.010972399264574051, -0.02515893429517746, -2.9934916496276855, 2.2474136352539062, 1.8977140188217163, 0.2572413980960846, -0.13340839743614197, -0.08139685541391373, 0.020253339782357216, 0.12645754218101501, -0.1005236804485321, 0.031063111498951912, 1.2545806169509888, -0.11784088611602783, 0.07805325835943222, -0.034214962273836136]} +{"t": 15.0908, "q": [-0.3496760427951813, -0.013297909870743752, 0.011075098067522049, 0.6250715851783752, -0.29442018270492554, 0.022026265040040016, -0.3390148878097534, 0.007414240390062332, -0.005303190555423498, 0.6235802173614502, -0.3307160437107086, -9.726679127197713e-05, -0.017061274498701096, 0.00943097472190857, -0.02515493892133236, -2.993419885635376, 2.247269868850708, 1.8970788717269897, 0.2589910924434662, -0.13346831500530243, -0.08145678043365479, 0.02022937312722206, 0.12642158567905426, -0.09936121106147766, 0.031039142981171608, 1.2545925378799438, -0.11786485463380814, 0.07802928984165192, -0.03423893079161644]} +{"t": 15.1075, "q": [-0.3501106798648834, -0.013340519741177559, 0.011008137837052345, 0.6253783702850342, -0.29441604018211365, 0.022033514454960823, -0.33913418650627136, 0.007380152121186256, -0.00542371766641736, 0.6235631704330444, -0.3306543529033661, -0.00011959148105233908, -0.016713086515665054, 0.007692159153521061, -0.025044197216629982, -2.9934797286987305, 2.2473177909851074, 1.89705491065979, 0.2594345211982727, -0.13381585478782654, -0.08198408782482147, 0.020241355523467064, 0.12650547921657562, -0.09801898151636124, 0.031075095757842064, 1.2547004222869873, -0.11786485463380814, 0.07802928984165192, -0.034274883568286896]} +{"t": 15.1242, "q": [-0.3504515588283539, -0.013357564806938171, 0.010941178537905216, 0.625906765460968, -0.2944243848323822, 0.02204796113073826, -0.3391256630420685, 0.007363107521086931, -0.005477285478264093, 0.6235546469688416, -0.33064207434654236, -9.791777847567573e-05, -0.016565775498747826, 0.005998610053211451, -0.02475866861641407, -2.993515729904175, 2.2473537921905518, 1.8971507549285889, 0.2590869665145874, -0.13413943350315094, -0.08326639980077744, 0.020241355523467064, 0.12651745975017548, -0.09665277600288391, 0.031099064275622368, 1.2549760341644287, -0.11784088611602783, 0.07802928984165192, -0.034262899309396744]} +{"t": 15.1409, "q": [-0.35056233406066895, -0.013417219743132591, 0.010941178537905216, 0.6262476444244385, -0.2944410741329193, 0.022076815366744995, -0.3390830457210541, 0.007269364316016436, -0.005490677431225777, 0.6235631704330444, -0.33058488368988037, 1.7783566363505088e-05, -0.016525600105524063, 0.00433557340875268, -0.02432859316468239, -2.9933478832244873, 2.2473537921905518, 1.8971388339996338, 0.25893115997314453, -0.13418737053871155, -0.08500410616397858, 0.020241355523467064, 0.12646952271461487, -0.09517871588468552, 0.031075095757842064, 1.2551318407058716, -0.11786485463380814, 0.07805325835943222, -0.03423893079161644]} +{"t": 15.1577, "q": [-0.35056233406066895, -0.013417219743132591, 0.011008137837052345, 0.6263073086738586, -0.2944411337375641, 0.022091278806328773, -0.3390659987926483, 0.00711596617475152, -0.005396933760493994, 0.6235461235046387, -0.33052757382392883, 8.99025981198065e-05, -0.016565775498747826, 0.0029003052040934563, -0.023752495646476746, -2.993072271347046, 2.2473537921905518, 1.8971028327941895, 0.25884726643562317, -0.1341753900051117, -0.0869215875864029, 0.020253339782357216, 0.12646952271461487, -0.09393236041069031, 0.031099064275622368, 1.2552037239074707, -0.11784088611602783, 0.07805325835943222, -0.03422694653272629]} +{"t": 15.1744, "q": [-0.3505793809890747, -0.013400174677371979, 0.011088489554822445, 0.6263243556022644, -0.294466108083725, 0.022120116278529167, -0.33905747532844543, 0.006971090566366911, -0.005276407115161419, 0.6235290765762329, -0.33044588565826416, 0.0002634907723404467, -0.016525600105524063, 0.0017765671946108341, -0.02313675917685032, -2.992856502532959, 2.2473299503326416, 1.89705491065979, 0.2584398090839386, -0.13416339457035065, -0.08834771066904068, 0.020253339782357216, 0.12655341625213623, -0.09290171414613724, 0.031158985570073128, 1.2552636861801147, -0.11784088611602783, 0.07804127782583237, -0.03428686782717705]} +{"t": 15.1911, "q": [-0.35074129700660706, -0.013391653075814247, 0.011088489554822445, 0.6264692544937134, -0.29447445273399353, 0.02213454246520996, -0.3390319049358368, 0.0068091703578829765, -0.005276407115161419, 0.6234694719314575, -0.33037233352661133, 0.0003935689455829561, -0.01644524745643139, 0.0006528537487611175, -0.022519471123814583, -2.9926648139953613, 2.2473299503326416, 1.8970309495925903, 0.2578166425228119, -0.13416339457035065, -0.08895890414714813, 0.020253339782357216, 0.12655341625213623, -0.09175122529268265, 0.031099064275622368, 1.2556113004684448, -0.11782890558242798, 0.07801730930805206, -0.034274883568286896]} +{"t": 15.208, "q": [-0.3508606255054474, -0.013417219743132591, 0.011061705648899078, 0.6265544295310974, -0.29447028040885925, 0.02212733030319214, -0.3390319049358368, 0.006638728082180023, -0.005316582508385181, 0.6233842372894287, -0.33029481768608093, 0.0005308915278874338, -0.016244368627667427, -0.0006300220265984535, -0.022091399878263474, -2.9925808906555176, 2.2473537921905518, 1.896994948387146, 0.2576368749141693, -0.13416339457035065, -0.0890427902340889, 0.020253339782357216, 0.12657739222049713, -0.09074455499649048, 0.031099064275622368, 1.2561146020889282, -0.11790081113576889, 0.07804127782583237, -0.034274883568286896]} +{"t": 15.2247, "q": [-0.35096287727355957, -0.01340869627892971, 0.01099474634975195, 0.6266908049583435, -0.29447028040885925, 0.02212733030319214, -0.33899784088134766, 0.006544984877109528, -0.005343366414308548, 0.6233160495758057, -0.33022114634513855, 0.0005738244508393109, -0.01596313901245594, -0.0024519094731658697, -0.021686293184757233, -2.9924609661102295, 2.247365713119507, 1.8969351053237915, 0.25722941756248474, -0.1341753900051117, -0.08911469578742981, 0.020253339782357216, 0.12657739222049713, -0.08953414857387543, 0.031087080016732216, 1.2565460205078125, -0.11786485463380814, 0.07806524634361267, -0.03425091505050659]} +{"t": 15.2415, "q": [-0.35097992420196533, -0.013391653075814247, 0.010967962443828583, 0.6267760396003723, -0.2944745123386383, 0.02214900590479374, -0.3388955593109131, 0.006442719139158726, -0.005410325713455677, 0.6232734322547913, -0.33020928502082825, 0.0006536045111715794, -0.01581582799553871, -0.004759309813380241, -0.02126864530146122, -2.9923412799835205, 2.2474377155303955, 1.8968392610549927, 0.2564983665943146, -0.13413943350315094, -0.08919858932495117, 0.020253339782357216, 0.12657739222049713, -0.0881200060248375, 0.031063111498951912, 1.256725788116455, -0.11786485463380814, 0.07806524634361267, -0.03428686782717705]} +{"t": 15.2582, "q": [-0.35092878341674805, -0.013263821601867676, 0.01084743533283472, 0.626801609992981, -0.294491171836853, 0.02216341532766819, -0.33886998891830444, 0.006391586735844612, -0.005450501572340727, 0.6232563853263855, -0.3302053213119507, 0.0006753512425348163, -0.015762262046337128, -0.007453511003404856, -0.020812910050153732, -2.9923412799835205, 2.2474136352539062, 1.896827220916748, 0.25552764534950256, -0.13418737053871155, -0.08916263282299042, 0.02022937312722206, 0.12651745975017548, -0.08675380796194077, 0.031099064275622368, 1.256725788116455, -0.11786485463380814, 0.07806524634361267, -0.03428686782717705]} +{"t": 15.2749, "q": [-0.3509884476661682, -0.013195643201470375, 0.010646557435393333, 0.6268357038497925, -0.29448699951171875, 0.022156203165650368, -0.33886146545410156, 0.006400108803063631, -0.005504068918526173, 0.6230944395065308, -0.33014020323753357, 0.0007764621404930949, -0.015668518841266632, -0.01015516184270382, -0.02039651945233345, -2.9922094345092773, 2.2473177909851074, 1.8967792987823486, 0.2556235194206238, -0.13431920111179352, -0.08925850689411163, 0.020241355523467064, 0.12648151814937592, -0.08550744503736496, 0.03105112724006176, 1.2567497491836548, -0.11785287410020828, 0.07804127782583237, -0.03431083634495735]} +{"t": 15.2917, "q": [-0.3511674106121063, -0.01310189999639988, 0.010365326888859272, 0.6268782615661621, -0.29448699951171875, 0.022156203165650368, -0.33886146545410156, 0.006434197071939707, -0.005637987982481718, 0.6228899359703064, -0.33000996708869934, 0.0009786839364096522, -0.015440856106579304, -0.012446735054254532, -0.020196102559566498, -2.9918618202209473, 2.2473299503326416, 1.8968151807785034, 0.2556474804878235, -0.13436713814735413, -0.08921056985855103, 0.02022937312722206, 0.12655341625213623, -0.08438093215227127, 0.03105112724006176, 1.2567377090454102, -0.11787684261798859, 0.07802928984165192, -0.03428686782717705]} +{"t": 15.3085, "q": [-0.35123559832572937, -0.012982591055333614, 0.010084097273647785, 0.6269464492797852, -0.2944703996181488, 0.022170718759298325, -0.338784784078598, 0.00640863087028265, -0.0057719070464372635, 0.6227024793624878, -0.3298797905445099, 0.001195427612401545, -0.01505249086767435, -0.01479880977421999, -0.01990177482366562, -2.9914183616638184, 2.247269868850708, 1.8967912197113037, 0.2558991611003876, -0.13437911868095398, -0.08921056985855103, 0.02022937312722206, 0.12667326629161835, -0.08329036831855774, 0.031099064275622368, 1.2567497491836548, -0.11784088611602783, 0.07805325835943222, -0.03428686782717705]} +{"t": 15.3253, "q": [-0.35133785009384155, -0.012752493843436241, 0.009789476171135902, 0.6270231604576111, -0.29447051882743835, 0.022214142605662346, -0.338784784078598, 0.006331931799650192, -0.00579869095236063, 0.6225661039352417, -0.32977837324142456, 0.0014051455073058605, -0.014610557816922665, -0.016483096405863762, -0.019740773364901543, -2.9913344383239746, 2.2473058700561523, 1.8966714143753052, 0.2561148703098297, -0.13431920111179352, -0.08919858932495117, 0.02022937312722206, 0.12675714492797852, -0.08261924982070923, 0.031075095757842064, 1.2567737102508545, -0.11782890558242798, 0.07804127782583237, -0.03425091505050659]} +{"t": 15.342, "q": [-0.35157647728919983, -0.01256500743329525, 0.009548421949148178, 0.6271169185638428, -0.29452890157699585, 0.022300690412521362, -0.33877626061439514, 0.006170011591166258, -0.005865650251507759, 0.6223530173301697, -0.32972216606140137, 0.0016225401777774096, -0.014262368902564049, -0.018053825944662094, -0.019799649715423584, -2.9913225173950195, 2.2473177909851074, 1.8966834545135498, 0.2561148703098297, -0.13434316217899323, -0.08918660134077072, 0.02021738886833191, 0.12679310142993927, -0.08206797391176224, 0.031147001311182976, 1.2568336725234985, -0.11785287410020828, 0.07804127782583237, -0.03423893079161644]} +{"t": 15.3587, "q": [-0.35170429944992065, -0.01256500743329525, 0.009307367727160454, 0.6271510124206543, -0.2945205569267273, 0.02228626236319542, -0.3387933075428009, 0.006101834587752819, -0.005879042204469442, 0.6220377087593079, -0.32959654927253723, 0.0019046686356887221, -0.014034707099199295, -0.019366895779967308, -0.020033923909068108, -2.991394519805908, 2.2473299503326416, 1.8966953754425049, 0.25615084171295166, -0.13431920111179352, -0.08911469578742981, 0.020205404609441757, 0.12681707739830017, -0.08154066652059555, 0.031135017052292824, 1.256893515586853, -0.11786485463380814, 0.07801730930805206, -0.03422694653272629]} +{"t": 15.3755, "q": [-0.35179805755615234, -0.012462742626667023, 0.009186840616166592, 0.6271595358848572, -0.29451245069503784, 0.02235863171517849, -0.3387506902217865, 0.0059995693154633045, -0.005879042204469442, 0.6217394471168518, -0.32942166924476624, 0.0022009031381458044, -0.013887396082282066, -0.02038397081196308, -0.020220888778567314, -2.991382360458374, 2.2472338676452637, 1.896755337715149, 0.25672608613967896, -0.13429522514343262, -0.08913866430521011, 0.02021738886833191, 0.12679310142993927, -0.08103732764720917, 0.031123032793402672, 1.256953477859497, -0.11785287410020828, 0.07804127782583237, -0.034202978014945984]} +{"t": 15.3922, "q": [-0.35194292664527893, -0.012351954355835915, 0.00906631350517273, 0.6272447109222412, -0.29452916979789734, 0.022401949390769005, -0.33867397904396057, 0.005982525181025267, -0.005905826110392809, 0.6212707161903381, -0.3292103111743927, 0.002576718805357814, -0.013753476552665234, -0.021113060414791107, -0.020560747012495995, -2.991358518600464, 2.2471859455108643, 1.896767258644104, 0.25755298137664795, -0.13431920111179352, -0.08905477821826935, 0.020205404609441757, 0.12681707739830017, -0.08072574436664581, 0.031099064275622368, 1.2570613622665405, -0.11786485463380814, 0.07804127782583237, -0.03419099375605583]} +{"t": 15.409, "q": [-0.3520877957344055, -0.012368999421596527, 0.009012745693325996, 0.627261757850647, -0.29454582929611206, 0.022416358813643456, -0.33863139152526855, 0.005914348177611828, -0.005852258298546076, 0.6208446025848389, -0.32895001769065857, 0.003010188229382038, -0.013619557954370975, -0.021584194153547287, -0.02086959406733513, -2.991382360458374, 2.2472100257873535, 1.8968032598495483, 0.2577327489852905, -0.13431920111179352, -0.0890427902340889, 0.02021738886833191, 0.12681707739830017, -0.08055796474218369, 0.031123032793402672, 1.2571332454681396, -0.11785287410020828, 0.07802928984165192, -0.03425091505050659]} +{"t": 15.4257, "q": [-0.35215598344802856, -0.012394565157592297, 0.00906631350517273, 0.6273128986358643, -0.29453346133232117, 0.022452587261795998, -0.33858877420425415, 0.00577799417078495, -0.005825474392622709, 0.6205719113349915, -0.32866358757019043, 0.003211035393178463, -0.013539206236600876, -0.021865377202630043, -0.021063683554530144, -2.991394519805908, 2.247269868850708, 1.8967792987823486, 0.2575410008430481, -0.13428324460983276, -0.08913866430521011, 0.020205404609441757, 0.12681707739830017, -0.08041415363550186, 0.031135017052292824, 1.2573130130767822, -0.11787684261798859, 0.07805325835943222, -0.03423893079161644]} +{"t": 15.4424, "q": [-0.3523178994655609, -0.012368999421596527, 0.009039529599249363, 0.6273896098136902, -0.29453346133232117, 0.022452587261795998, -0.33858877420425415, 0.005692773032933474, -0.00575851509347558, 0.6203418374061584, -0.3284601867198944, 0.003543321741744876, -0.01352581474930048, -0.022078080102801323, -0.021173838526010513, -2.9913344383239746, 2.2472939491271973, 1.896755337715149, 0.257433146238327, -0.13428324460983276, -0.08916263282299042, 0.020181436091661453, 0.12682905793190002, -0.08029431104660034, 0.031147001311182976, 1.257924199104309, -0.11790081113576889, 0.07806524634361267, -0.03428686782717705]} +{"t": 15.4592, "q": [-0.3525139093399048, -0.012343432754278183, 0.008945786394178867, 0.6275515556335449, -0.29453349113464355, 0.022467050701379776, -0.33859729766845703, 0.00564164062961936, -0.00579869095236063, 0.6201117038726807, -0.3282889127731323, 0.0037597035989165306, -0.013565990142524242, -0.02226036600768566, -0.021254291757941246, -2.99125075340271, 2.2473177909851074, 1.8965635299682617, 0.25734925270080566, -0.13429522514343262, -0.08918660134077072, 0.02021738886833191, 0.12682905793190002, -0.08006660640239716, 0.031087080016732216, 1.2591346502304077, -0.11790081113576889, 0.07807722687721252, -0.03425091505050659]} +{"t": 15.4759, "q": [-0.35271844267845154, -0.01232638768851757, 0.008905611000955105, 0.6277475357055664, -0.29453766345977783, 0.022474264726042747, -0.33859729766845703, 0.005624596029520035, -0.005812082905322313, 0.6199668645858765, -0.3281254470348358, 0.003903530305251479, -0.013579382561147213, -0.022541219368577003, -0.02130175195634365, -2.9912025928497314, 2.2473299503326416, 1.8965156078338623, 0.2573971748352051, -0.13431920111179352, -0.08917462080717087, 0.020205404609441757, 0.12679310142993927, -0.07994676381349564, 0.031099064275622368, 1.2602012157440186, -0.11790081113576889, 0.07805325835943222, -0.03425091505050659]} +{"t": 15.4926, "q": [-0.35284626483917236, -0.012317866086959839, 0.008825259283185005, 0.627849817276001, -0.2945418357849121, 0.02248147875070572, -0.33859729766845703, 0.005616073962301016, -0.0058388663455843925, 0.6198901534080505, -0.3280681073665619, 0.003932085819542408, -0.013552598655223846, -0.023095151409506798, -0.021313486620783806, -2.991142749786377, 2.2473537921905518, 1.8964557647705078, 0.2573851943016052, -0.1342712640762329, -0.08916263282299042, 0.020205404609441757, 0.1267092078924179, -0.07971906661987305, 0.031075095757842064, 1.261207938194275, -0.11787684261798859, 0.07804127782583237, -0.034274883568286896]} +{"t": 15.5093, "q": [-0.3530081808567047, -0.012309344485402107, 0.00865116436034441, 0.6279009580612183, -0.29453766345977783, 0.022474264726042747, -0.33859729766845703, 0.005607551895081997, -0.005932609550654888, 0.6197623014450073, -0.32802724838256836, 0.00397528987377882, -0.013391895219683647, -0.023960646241903305, -0.021529292687773705, -2.9910829067230225, 2.247389793395996, 1.8963958024978638, 0.2574211657047272, -0.13429522514343262, -0.08911469578742981, 0.0201694518327713, 0.1266373097896576, -0.07932358980178833, 0.031147001311182976, 1.2619868516921997, -0.11786485463380814, 0.07804127782583237, -0.03425091505050659]} +{"t": 15.5262, "q": [-0.35311898589134216, -0.012275256216526031, 0.008530637249350548, 0.6279520988464355, -0.2945418357849121, 0.02248147875070572, -0.3385717272758484, 0.005624596029520035, -0.00605313666164875, 0.6196856498718262, -0.32799032330513, 0.0039822254329919815, -0.01311066560447216, -0.024978438392281532, -0.021934159100055695, -2.991010904312134, 2.247377872467041, 1.8962039947509766, 0.2574451267719269, -0.13431920111179352, -0.08912668377161026, 0.020193420350551605, 0.12660135328769684, -0.0788322314620018, 0.03111104853451252, 1.263161301612854, -0.11790081113576889, 0.07802928984165192, -0.03423893079161644]} +{"t": 15.543, "q": [-0.3533320128917694, -0.012232644483447075, 0.008289583027362823, 0.6279691457748413, -0.29453763365745544, 0.02245980128645897, -0.33858025074005127, 0.005633118096739054, -0.006280798930674791, 0.6195492744445801, -0.32798200845718384, 0.00396763114258647, -0.012816044501960278, -0.026133118197321892, -0.022478319704532623, -2.990831136703491, 2.2474136352539062, 1.8961081504821777, 0.2573851943016052, -0.13435514271259308, -0.08911469578742981, 0.020181436091661453, 0.12655341625213623, -0.07835286110639572, 0.031087080016732216, 1.2642039060592651, -0.11788882315158844, 0.07802928984165192, -0.034262899309396744]} +{"t": 15.5597, "q": [-0.3533746302127838, -0.012172989547252655, 0.007954785600304604, 0.6279606223106384, -0.29453763365745544, 0.02245980128645897, -0.3384779691696167, 0.005692773032933474, -0.006548637058585882, 0.6194384694099426, -0.32791534066200256, 0.0038217792753130198, -0.012534813955426216, -0.027469659224152565, -0.022928573191165924, -2.9906632900238037, 2.2474377155303955, 1.8959044218063354, 0.2571694850921631, -0.13436713814735413, -0.08910271525382996, 0.020181436091661453, 0.12655341625213623, -0.07764579355716705, 0.031099064275622368, 1.2654383182525635, -0.11787684261798859, 0.07802928984165192, -0.03422694653272629]} +{"t": 15.5765, "q": [-0.35335758328437805, -0.012036636471748352, 0.007633380591869354, 0.6279691457748413, -0.29453346133232117, 0.022452587261795998, -0.3383927643299103, 0.005760950036346912, -0.00676290737465024, 0.6193276643753052, -0.3279111087322235, 0.0037999602500349283, -0.012146449647843838, -0.028851283714175224, -0.023204443976283073, -2.990603446960449, 2.2474377155303955, 1.8957486152648926, 0.2571694850921631, -0.1344030797481537, -0.0890667587518692, 0.020193420350551605, 0.12648151814937592, -0.07686682045459747, 0.031087080016732216, 1.2667685747146606, -0.11790081113576889, 0.07802928984165192, -0.03423893079161644]} +{"t": 15.5933, "q": [-0.35336610674858093, -0.0119684599339962, 0.007445894181728363, 0.6279691457748413, -0.29452091455459595, 0.02243092842400074, -0.33830752968788147, 0.005829127039760351, -0.006910218391567469, 0.6192680597305298, -0.32787787914276123, 0.0037415651604533195, -0.011677732691168785, -0.02999730408191681, -0.02335520274937153, -2.990567445755005, 2.2474617958068848, 1.895556926727295, 0.25712156295776367, -0.13441507518291473, -0.0890427902340889, 0.0201694518327713, 0.12648151814937592, -0.07621967047452927, 0.031099064275622368, 1.2674636840820312, -0.11788882315158844, 0.07806524634361267, -0.03423893079161644]} +{"t": 15.6103, "q": [-0.3533831536769867, -0.01178097352385521, 0.007298583164811134, 0.6279691457748413, -0.29451674222946167, 0.02242371439933777, -0.33826491236686707, 0.005922870244830847, -0.007044136989861727, 0.6191743016242981, -0.3277741074562073, 0.003573604626581073, -0.011048314161598682, -0.031234504655003548, -0.02352801151573658, -2.99055552482605, 2.24747371673584, 1.8953771591186523, 0.2569417953491211, -0.1344510167837143, -0.08907874673604965, 0.020181436091661453, 0.12654143571853638, -0.07572831958532333, 0.031147001311182976, 1.26795494556427, -0.11790081113576889, 0.07802928984165192, -0.03423893079161644]} +{"t": 15.6269, "q": [-0.3533916771411896, -0.011593486182391644, 0.0071914480067789555, 0.6279520988464355, -0.2945167124271393, 0.02240925095975399, -0.3382564187049866, 0.006016613449901342, -0.00709770480170846, 0.6190634965896606, -0.32762452960014343, 0.0033108359202742577, -0.010191232897341251, -0.032289452850818634, -0.023659009486436844, -2.990567445755005, 2.2475576400756836, 1.895041584968567, 0.2556474804878235, -0.1344749927520752, -0.08917462080717087, 0.020181436091661453, 0.12657739222049713, -0.07517704367637634, 0.03111104853451252, 1.2685902118682861, -0.11787684261798859, 0.07804127782583237, -0.03425091505050659]} +{"t": 15.6437, "q": [-0.3533916771411896, -0.011397477239370346, 0.007218231912702322, 0.6279520988464355, -0.29452085494995117, 0.022402003407478333, -0.3382393717765808, 0.006161489523947239, -0.007164664100855589, 0.6189271807670593, -0.32753726840019226, 0.0031575418543070555, -0.009535029530525208, -0.03318478912115097, -0.023743940517306328, -2.990579605102539, 2.2475576400756836, 1.894598126411438, 0.2550962269306183, -0.13453491032123566, -0.08919858932495117, 0.020181436091661453, 0.12660135328769684, -0.0746377557516098, 0.031087080016732216, 1.269201397895813, -0.11790081113576889, 0.07804127782583237, -0.03423893079161644]} +{"t": 15.6604, "q": [-0.35336610674858093, -0.011235557496547699, 0.007178056053817272, 0.6279265284538269, -0.29452913999557495, 0.022387485951185226, -0.33826491236686707, 0.0063063655979931355, -0.007151272147893906, 0.6187737584114075, -0.327425092458725, 0.002960465382784605, -0.008852043189108372, -0.034209344536066055, -0.023904861882328987, -2.990591526031494, 2.2475454807281494, 1.8939869403839111, 0.25506025552749634, -0.13453491032123566, -0.08919858932495117, 0.0201694518327713, 0.12657739222049713, -0.07419434189796448, 0.03111104853451252, 1.2702679634094238, -0.11790081113576889, 0.07801730930805206, -0.034262899309396744]} +{"t": 15.6771, "q": [-0.3533916771411896, -0.011073637753725052, 0.007151272147893906, 0.6279009580612183, -0.2945207953453064, 0.022373057901859283, -0.3382564187049866, 0.006442719139158726, -0.007178056053817272, 0.6186288595199585, -0.3273214101791382, 0.0028070269618183374, -0.008236016146838665, -0.035180769860744476, -0.02405119314789772, -2.9906275272369385, 2.2475335597991943, 1.8930761814117432, 0.25508424639701843, -0.13453491032123566, -0.08917462080717087, 0.02015746757388115, 0.12654143571853638, -0.07383481413125992, 0.031039142981171608, 1.271382451057434, -0.11785287410020828, 0.07802928984165192, -0.03422694653272629]} +{"t": 15.6939, "q": [-0.3533831536769867, -0.010962849482893944, 0.007111096754670143, 0.6278668642044067, -0.2945331931114197, 0.022351311519742012, -0.3382393717765808, 0.0065620290115475655, -0.007245015352964401, 0.6184840202331543, -0.3272632360458374, 0.002704830840229988, -0.007566420827060938, -0.035992879420518875, -0.024189496412873268, -2.990687370300293, 2.2475335597991943, 1.8921653032302856, 0.25510820746421814, -0.13455888628959656, -0.08918660134077072, 0.0201694518327713, 0.12645754218101501, -0.07340338081121445, 0.03111104853451252, 1.272353172302246, -0.11785287410020828, 0.07801730930805206, -0.03423893079161644]} +{"t": 15.7106, "q": [-0.3533831536769867, -0.010860584676265717, 0.006977177690714598, 0.6278327703475952, -0.2945372760295868, 0.022329598665237427, -0.3381882309913635, 0.006681338418275118, -0.007285191211849451, 0.6183391213417053, -0.3271346390247345, 0.00250762770883739, -0.007044136989861727, -0.0369185246527195, -0.024256639182567596, -2.990675449371338, 2.2475335597991943, 1.8913264274597168, 0.25513216853141785, -0.13453491032123566, -0.08917462080717087, 0.020181436091661453, 0.1264096051454544, -0.07291202992200851, 0.031099064275622368, 1.2734557390213013, -0.11784088611602783, 0.07801730930805206, -0.03425091505050659]} +{"t": 15.7275, "q": [-0.35344281792640686, -0.010766841471195221, 0.0068030827678740025, 0.6278071999549866, -0.2945331037044525, 0.022322384640574455, -0.3381967544555664, 0.0067665595561265945, -0.007405718322843313, 0.6181857585906982, -0.32703888416290283, 0.0023106595035642385, -0.006669164169579744, -0.03766176849603653, -0.024252209812402725, -2.9906513690948486, 2.2475335597991943, 1.8905714750289917, 0.25527599453926086, -0.13459482789039612, -0.08903080970048904, 0.0201694518327713, 0.12634968757629395, -0.07245662808418274, 0.031099064275622368, 1.273983120918274, -0.11787684261798859, 0.07799334079027176, -0.03425091505050659]} +{"t": 15.7443, "q": [-0.35363030433654785, -0.01057935506105423, 0.006602204404771328, 0.627773106098175, -0.2945414185523987, 0.02232234925031662, -0.33817118406295776, 0.00686030276119709, -0.007553029339760542, 0.6178362965583801, -0.3269645571708679, 0.0022519209887832403, -0.00638793408870697, -0.03837517648935318, -0.024394657462835312, -2.9906275272369385, 2.2475216388702393, 1.8896007537841797, 0.2553958296775818, -0.13459482789039612, -0.08905477821826935, 0.020181436091661453, 0.12644556164741516, -0.07207313179969788, 0.031087080016732216, 1.2744624614715576, -0.11786485463380814, 0.07801730930805206, -0.03425091505050659]} +{"t": 15.761, "q": [-0.3538263142108917, -0.010477089323103428, 0.006414717994630337, 0.6277390122413635, -0.29454559087753296, 0.02232956327497959, -0.33817118406295776, 0.006945523899048567, -0.00772712379693985, 0.6174954175949097, -0.326811283826828, 0.0020544826984405518, -0.0062272315844893456, -0.03897523134946823, -0.02463752217590809, -2.990603446960449, 2.2475335597991943, 1.8887139558792114, 0.25527599453926086, -0.13466674089431763, -0.0890907272696495, 0.0201694518327713, 0.12650547921657562, -0.07170161604881287, 0.031039142981171608, 1.2750136852264404, -0.11786485463380814, 0.07800532132387161, -0.03423893079161644]} +{"t": 15.7777, "q": [-0.3540308475494385, -0.010391868650913239, 0.006240623537451029, 0.6276708245277405, -0.2945413887500763, 0.0223078690469265, -0.33817970752716064, 0.006971090566366911, -0.007847650907933712, 0.617171585559845, -0.326732873916626, 0.002002932596951723, -0.006120096426457167, -0.03950685262680054, -0.02483489364385605, -2.990567445755005, 2.2475454807281494, 1.8878870010375977, 0.2551921010017395, -0.13465476036071777, -0.08916263282299042, 0.020181436091661453, 0.12650547921657562, -0.07135407626628876, 0.031063111498951912, 1.2755769491195679, -0.11787684261798859, 0.07800532132387161, -0.03423893079161644]} +{"t": 15.7945, "q": [-0.3542012870311737, -0.010238470509648323, 0.006160271819680929, 0.6276708245277405, -0.29456213116645813, 0.02230054885149002, -0.33817970752716064, 0.0070222229696810246, -0.008021745830774307, 0.6169244647026062, -0.32668358087539673, 0.0020025167614221573, -0.005972785409539938, -0.03994768112897873, -0.025089075788855553, -2.990579605102539, 2.2475335597991943, 1.8870600461959839, 0.25518012046813965, -0.13461880385875702, -0.08916263282299042, 0.0201694518327713, 0.12651745975017548, -0.07107844203710556, 0.031027158722281456, 1.2759004831314087, -0.11784088611602783, 0.07801730930805206, -0.034262899309396744]} +{"t": 15.8113, "q": [-0.35427796840667725, -0.01022142544388771, 0.006066528614610434, 0.6276537775993347, -0.2945703864097595, 0.022286050021648407, -0.33817118406295776, 0.0070307450369000435, -0.008048529736697674, 0.6167880892753601, -0.32665494084358215, 0.002024046378210187, -0.005959393456578255, -0.04044106975197792, -0.02521263249218464, -2.990603446960449, 2.2475335597991943, 1.8861253261566162, 0.25522804260253906, -0.13467872142791748, -0.08911469578742981, 0.0201694518327713, 0.12651745975017548, -0.07080280035734177, 0.031027158722281456, 1.2762120962142944, -0.11784088611602783, 0.07801730930805206, -0.03422694653272629]} +{"t": 15.828, "q": [-0.35436320304870605, -0.010170293040573597, 0.0059995693154633045, 0.6276623010635376, -0.29458287358283997, 0.022293228656053543, -0.33817970752716064, 0.0070307450369000435, -0.008035137318074703, 0.6166517734527588, -0.32663848996162415, 0.002023901790380478, -0.005972785409539938, -0.04083577170968056, -0.025309549644589424, -2.9907472133636475, 2.2475335597991943, 1.8845913410186768, 0.25520408153533936, -0.13469070196151733, -0.08910271525382996, 0.020193420350551605, 0.12654143571853638, -0.07052716612815857, 0.031015174463391304, 1.2763679027557373, -0.11785287410020828, 0.07802928984165192, -0.034262899309396744]} +{"t": 15.8448, "q": [-0.35441434383392334, -0.01016177050769329, 0.005946001503616571, 0.6276452541351318, -0.29458707571029663, 0.022314904257655144, -0.3381626605987549, 0.00703926756978035, -0.008035137318074703, 0.616489827632904, -0.3266385793685913, 0.0020384236704558134, -0.005905826110392809, -0.04117714986205101, -0.025341980159282684, -2.990819215774536, 2.2475454807281494, 1.88212251663208, 0.2551441490650177, -0.13466674089431763, -0.08911469578742981, 0.020193420350551605, 0.12656539678573608, -0.07015565782785416, 0.031039142981171608, 1.2764757871627808, -0.11787684261798859, 0.07804127782583237, -0.034262899309396744]} +{"t": 15.8617, "q": [-0.35446545481681824, -0.01016177050769329, 0.005892434157431126, 0.6275771260261536, -0.29458290338516235, 0.022307690232992172, -0.33817118406295776, 0.00703926756978035, -0.00806192122399807, 0.6163023710250854, -0.32659775018692017, 0.0020816458854824305, -0.005879042204469442, -0.04141239449381828, -0.025381730869412422, -2.990807294845581, 2.2475335597991943, 1.8798575401306152, 0.2550962269306183, -0.13469070196151733, -0.0890907272696495, 0.0201694518327713, 0.12654143571853638, -0.0698200985789299, 0.031039142981171608, 1.2765357494354248, -0.11784088611602783, 0.07804127782583237, -0.034262899309396744]} +{"t": 15.8784, "q": [-0.3544739782810211, -0.010144727304577827, 0.00579869095236063, 0.6275089383125305, -0.29458704590797424, 0.022300440818071365, -0.33817118406295776, 0.00703926756978035, -0.008008353412151337, 0.6161745190620422, -0.3264632523059845, 0.0022620302625000477, -0.005825474392622709, -0.04163972660899162, -0.02533807046711445, -2.99055552482605, 2.2475576400756836, 1.878395438194275, 0.2550482749938965, -0.13466674089431763, -0.0890907272696495, 0.02015746757388115, 0.12650547921657562, -0.06935270875692368, 0.031015174463391304, 1.2765237092971802, -0.11786485463380814, 0.07801730930805206, -0.034274883568286896]} +{"t": 15.8951, "q": [-0.35454216599464417, -0.01009359396994114, 0.005812082905322313, 0.6274237036705017, -0.29458287358283997, 0.022293228656053543, -0.33817118406295776, 0.0070648337714374065, -0.008021745830774307, 0.6159359216690063, -0.3264220952987671, 0.0022471467964351177, -0.005825474392622709, -0.04180615022778511, -0.025234242901206017, -2.9903876781463623, 2.2475335597991943, 1.8778321743011475, 0.2550482749938965, -0.13465476036071777, -0.08910271525382996, 0.02015746757388115, 0.12648151814937592, -0.06880144029855728, 0.030991205945611, 1.276619553565979, -0.11786485463380814, 0.07804127782583237, -0.03428686782717705]} +{"t": 15.9119, "q": [-0.35469555854797363, -0.010050983168184757, 0.005812082905322313, 0.6273810863494873, -0.2945745587348938, 0.02229326404631138, -0.33817118406295776, 0.00711596617475152, -0.008128880523145199, 0.615603506565094, -0.3263562321662903, 0.0022320463322103024, -0.0058388663455843925, -0.041957754641771317, -0.025218192487955093, -2.9904236793518066, 2.2475576400756836, 1.8777244091033936, 0.25506025552749634, -0.13461880385875702, -0.08911469578742981, 0.02015746757388115, 0.12651745975017548, -0.06846588104963303, 0.031015174463391304, 1.2765955924987793, -0.11785287410020828, 0.07801730930805206, -0.0342988520860672]} +{"t": 15.9287, "q": [-0.35482341051101685, -0.010025417432188988, 0.00579869095236063, 0.6273043751716614, -0.2945787310600281, 0.02230047807097435, -0.33817970752716064, 0.007158576976507902, -0.008276191540062428, 0.6153052449226379, -0.32628199458122253, 0.002187811303883791, -0.005825474392622709, -0.04210962727665901, -0.02527068555355072, -2.990471601486206, 2.2475576400756836, 1.8777483701705933, 0.255120187997818, -0.13469070196151733, -0.08911469578742981, 0.020181436091661453, 0.12648151814937592, -0.06809436529874802, 0.031039142981171608, 1.2766674757003784, -0.11786485463380814, 0.07802928984165192, -0.03428686782717705]} +{"t": 15.9454, "q": [-0.35486599802970886, -0.009957239963114262, 0.0057719070464372635, 0.6272277235984802, -0.2945745587348938, 0.02229326404631138, -0.33817118406295776, 0.007218231912702322, -0.008369934745132923, 0.6151518821716309, -0.32626140117645264, 0.002180369570851326, -0.00579869095236063, -0.04236752539873123, -0.025286484509706497, -2.9904837608337402, 2.2475576400756836, 1.8777602910995483, 0.2550962269306183, -0.13464276492595673, -0.08910271525382996, 0.0201694518327713, 0.12650547921657562, -0.0674472227692604, 0.031027158722281456, 1.2766915559768677, -0.11785287410020828, 0.07801730930805206, -0.0342988520860672]} +{"t": 15.9622, "q": [-0.3549000918865204, -0.00988906342536211, 0.005704947747290134, 0.6271680593490601, -0.2945787012577057, 0.02228601463139057, -0.33817118406295776, 0.007260842248797417, -0.008410110138356686, 0.6150240302085876, -0.32623231410980225, 0.002129271626472473, -0.00579869095236063, -0.04259501025080681, -0.0252819936722517, -2.9904837608337402, 2.2475576400756836, 1.877772331237793, 0.25520408153533936, -0.13467872142791748, -0.08910271525382996, 0.020181436091661453, 0.12648151814937592, -0.06683602184057236, 0.031015174463391304, 1.2767993211746216, -0.11786485463380814, 0.07801730930805206, -0.03431083634495735]} +{"t": 15.9789, "q": [-0.35495975613594055, -0.009778276085853577, 0.005651379935443401, 0.627099871635437, -0.2945828437805176, 0.022278765216469765, -0.33817118406295776, 0.007311975117772818, -0.008436894044280052, 0.6148961782455444, -0.3262198567390442, 0.002107362262904644, -0.005731731187552214, -0.04273148626089096, -0.02527538128197193, -2.9904837608337402, 2.2475335597991943, 1.8777483701705933, 0.25520408153533936, -0.13461880385875702, -0.08911469578742981, 0.0201694518327713, 0.12650547921657562, -0.06656038761138916, 0.031003190204501152, 1.2767874002456665, -0.11787684261798859, 0.07804127782583237, -0.03431083634495735]} +{"t": 15.9956, "q": [-0.35501089692115784, -0.009727142751216888, 0.005624596029520035, 0.6270146369934082, -0.2945703864097595, 0.022286050021648407, -0.338154137134552, 0.007363107521086931, -0.00847707036882639, 0.614700198173523, -0.32621967792510986, 0.0020783182699233294, -0.005664771888405085, -0.04282257333397865, -0.02529708668589592, -2.9904837608337402, 2.2475335597991943, 1.877772331237793, 0.2552879750728607, -0.13461880385875702, -0.08911469578742981, 0.02015746757388115, 0.12654143571853638, -0.0665244311094284, 0.031003190204501152, 1.2768113613128662, -0.11788882315158844, 0.07804127782583237, -0.03431083634495735]} +{"t": 16.0124, "q": [-0.35501089692115784, -0.009684532880783081, 0.0056112040765583515, 0.6269123554229736, -0.2945745289325714, 0.0222788006067276, -0.3381200432777405, 0.0073716300539672375, -0.008490461856126785, 0.6145723462104797, -0.32620304822921753, 0.0020491299219429493, -0.0055978125892579556, -0.04282257333397865, -0.02529708668589592, -2.990471601486206, 2.2475216388702393, 1.8777962923049927, 0.2553119361400604, -0.13459482789039612, -0.08912668377161026, 0.02015746757388115, 0.12657739222049713, -0.0665244311094284, 0.030991205945611, 1.2768232822418213, -0.11784088611602783, 0.07806524634361267, -0.0342988520860672]} +{"t": 16.0291, "q": [-0.3550194203853607, -0.009667487815022469, 0.005637987982481718, 0.6267845630645752, -0.294574499130249, 0.02226433716714382, -0.33809447288513184, 0.007380152121186256, -0.008503853343427181, 0.6143507957458496, -0.32618245482444763, 0.0020416700281202793, -0.005450501572340727, -0.042830172926187515, -0.025302156805992126, -2.9904837608337402, 2.247509717941284, 1.8777483701705933, 0.25538384914398193, -0.13464276492595673, -0.08911469578742981, 0.0201694518327713, 0.12660135328769684, -0.06651245057582855, 0.030991205945611, 1.276835322380066, -0.11785287410020828, 0.07802928984165192, -0.034274883568286896]} +{"t": 16.0458, "q": [-0.3550194203853607, -0.009641922079026699, 0.005624596029520035, 0.6266993284225464, -0.2945703864097595, 0.022286050021648407, -0.33804336190223694, 0.007397196255624294, -0.008517245762050152, 0.6141973733901978, -0.3261822760105133, 0.0020126260351389647, -0.005410325713455677, -0.042830172926187515, -0.025302156805992126, -2.990459680557251, 2.24749755859375, 1.8777962923049927, 0.2553958296775818, -0.13463078439235687, -0.0890907272696495, 0.0201694518327713, 0.12660135328769684, -0.06642855703830719, 0.030979221686720848, 1.27689528465271, -0.11785287410020828, 0.07801730930805206, -0.034274883568286896]} +{"t": 16.0625, "q": [-0.3549853265285492, -0.009641922079026699, 0.005624596029520035, 0.6266055703163147, -0.29457035660743713, 0.02227158658206463, -0.3380689322948456, 0.00743128452450037, -0.008517245762050152, 0.6141377091407776, -0.32616564631462097, 0.0019834376871585846, -0.005249623209238052, -0.04283773899078369, -0.025297438725829124, -2.9905195236206055, 2.24747371673584, 1.877784252166748, 0.25547972321510315, -0.13467872142791748, -0.08910271525382996, 0.02015746757388115, 0.12657739222049713, -0.06642855703830719, 0.031015174463391304, 1.2769192457199097, -0.11784088611602783, 0.07802928984165192, -0.034274883568286896]} +{"t": 16.0793, "q": [-0.35495975613594055, -0.009573744609951973, 0.005637987982481718, 0.626511812210083, -0.29457446932792664, 0.0222498569637537, -0.3380518853664398, 0.007482417393475771, -0.008503853343427181, 0.6140354871749878, -0.32615724205970764, 0.0019543033558875322, -0.00516927195712924, -0.0428074449300766, -0.025306524708867073, -2.99055552482605, 2.24749755859375, 1.877784252166748, 0.2555875778198242, -0.13464276492595673, -0.0890907272696495, 0.02015746757388115, 0.12651745975017548, -0.06639260798692703, 0.030979221686720848, 1.2769551277160645, -0.11785287410020828, 0.07802928984165192, -0.0342988520860672]} +{"t": 16.096, "q": [-0.35495975613594055, -0.00946295727044344, 0.005637987982481718, 0.6264436841011047, -0.2945827543735504, 0.022249821573495865, -0.3380604088306427, 0.007525027729570866, -0.008503853343427181, 0.6139246821403503, -0.32614073157310486, 0.0019396368879824877, -0.005102312192320824, -0.04281500726938248, -0.025301804766058922, -2.9906275272369385, 2.24747371673584, 1.8778082132339478, 0.2555995583534241, -0.13463078439235687, -0.0890907272696495, 0.0201694518327713, 0.12644556164741516, -0.06639260798692703, 0.030979221686720848, 1.276907205581665, -0.11788882315158844, 0.07804127782583237, -0.03431083634495735]} +{"t": 16.1127, "q": [-0.3549427092075348, -0.00943739153444767, 0.005678163841366768, 0.6262305974960327, -0.294582724571228, 0.022235358133912086, -0.3380604088306427, 0.0075846826657652855, -0.008490461856126785, 0.613737165927887, -0.32611995935440063, 0.0019031331175938249, -0.005008568987250328, -0.04279987886548042, -0.025311244651675224, -2.9906632900238037, 2.2474496364593506, 1.8779041767120361, 0.25568345189094543, -0.13461880385875702, -0.0890907272696495, 0.0201694518327713, 0.12642158567905426, -0.06635665148496628, 0.030955253168940544, 1.2769192457199097, -0.11787684261798859, 0.07805325835943222, -0.0342988520860672]} +{"t": 16.1296, "q": [-0.35490861535072327, -0.009369214065372944, 0.005678163841366768, 0.6261197924613953, -0.2945660650730133, 0.022220948711037636, -0.33803483843803406, 0.0076187714003026485, -0.008436894044280052, 0.6136178970336914, -0.326070100069046, 0.0018155495636165142, -0.004955001175403595, -0.0428074449300766, -0.025306524708867073, -2.9907472133636475, 2.2474136352539062, 1.8778802156448364, 0.25580328702926636, -0.13461880385875702, -0.08910271525382996, 0.02015746757388115, 0.1263616681098938, -0.06632070243358612, 0.030979221686720848, 1.27689528465271, -0.11784088611602783, 0.07802928984165192, -0.0342988520860672]} +{"t": 16.1463, "q": [-0.354857474565506, -0.009301036596298218, 0.005704947747290134, 0.6260260939598083, -0.2945660650730133, 0.022220948711037636, -0.33803483843803406, 0.007712514605373144, -0.008356543257832527, 0.6135241389274597, -0.3260451555252075, 0.0017717487644404173, -0.005048744846135378, -0.04279983788728714, -0.025301450863480568, -2.9907712936401367, 2.2474496364593506, 1.8779041767120361, 0.2558152675628662, -0.13459482789039612, -0.0890907272696495, 0.02015746757388115, 0.12632571160793304, -0.06630872189998627, 0.030943268910050392, 1.2768712043762207, -0.11786485463380814, 0.07802928984165192, -0.0342988520860672]} +{"t": 16.163, "q": [-0.35482341051101685, -0.009215815924108028, 0.005664771888405085, 0.6258897185325623, -0.29457443952560425, 0.022235393524169922, -0.33803483843803406, 0.007772169075906277, -0.008343150839209557, 0.6133962869644165, -0.32603687047958374, 0.0017571544740349054, -0.00516927195712924, -0.04282261058688164, -0.025306876748800278, -2.9908552169799805, 2.2474136352539062, 1.8779640197753906, 0.255863219499588, -0.13461880385875702, -0.08911469578742981, 0.0201694518327713, 0.12630175054073334, -0.06630872189998627, 0.030955253168940544, 1.2767874002456665, -0.11786485463380814, 0.07798135280609131, -0.0342988520860672]} +{"t": 16.1799, "q": [-0.3548063635826111, -0.009207293391227722, 0.005678163841366768, 0.6257362961769104, -0.2945702373981476, 0.022228162735700607, -0.3380518853664398, 0.007772169075906277, -0.008302975445985794, 0.6132599711418152, -0.3260287344455719, 0.0017716040601953864, -0.005263015162199736, -0.04279987886548042, -0.025311244651675224, -2.9908552169799805, 2.2474136352539062, 1.8779760599136353, 0.2558392286300659, -0.13459482789039612, -0.08911469578742981, 0.0201694518327713, 0.1263616681098938, -0.06628475338220596, 0.030991205945611, 1.276739478111267, -0.11784088611602783, 0.07798135280609131, -0.0342988520860672]} +{"t": 16.1967, "q": [-0.3547893166542053, -0.009224338456988335, 0.00571833923459053, 0.6256170272827148, -0.2945660650730133, 0.022220948711037636, -0.33804336190223694, 0.007780691608786583, -0.008262800052762032, 0.613200306892395, -0.326008141040802, 0.0017641441663727164, -0.00542371766641736, -0.042799800634384155, -0.02529166080057621, -2.9908790588378906, 2.247389793395996, 1.8780359029769897, 0.2559111416339874, -0.13463078439235687, -0.08911469578742981, 0.020145483314990997, 0.12662532925605774, -0.06626078486442566, 0.031027158722281456, 1.276679515838623, -0.11785287410020828, 0.07796937227249146, -0.0342988520860672]} +{"t": 16.2134, "q": [-0.3547466993331909, -0.009207293391227722, 0.005745123140513897, 0.625531792640686, -0.29456189274787903, 0.022213734686374664, -0.33804336190223694, 0.007772169075906277, -0.00814227294176817, 0.6131235957145691, -0.32598763704299927, 0.0017712423577904701, -0.005584420636296272, -0.042792197316884995, -0.025286585092544556, -2.990891218185425, 2.247401714324951, 1.8780359029769897, 0.2558991611003876, -0.13464276492595673, -0.08912668377161026, 0.02015746757388115, 0.1267331838607788, -0.0662248283624649, 0.031027158722281456, 1.276619553565979, -0.11790081113576889, 0.07796937227249146, -0.034322820603847504]} +{"t": 16.2303, "q": [-0.3546188771724701, -0.009215815924108028, 0.005704947747290134, 0.6253527998924255, -0.29456189274787903, 0.022213734686374664, -0.3380518853664398, 0.007763647008687258, -0.008048529736697674, 0.6130895018577576, -0.3259754478931427, 0.0017929167952388525, -0.0058388663455843925, -0.04278463125228882, -0.025291305035352707, -2.990915060043335, 2.247389793395996, 1.8780359029769897, 0.2559111416339874, -0.13467872142791748, -0.08917462080717087, 0.02015746757388115, 0.12676914036273956, -0.06610498577356339, 0.031075095757842064, 1.276619553565979, -0.11786485463380814, 0.07794540375471115, -0.03431083634495735]} +{"t": 16.247, "q": [-0.3545251190662384, -0.009224338456988335, 0.00571833923459053, 0.6252164840698242, -0.29456189274787903, 0.022213734686374664, -0.33804336190223694, 0.00774660287424922, -0.007928002625703812, 0.6130298376083374, -0.3259427547454834, 0.0018216893076896667, -0.006026353221386671, -0.042792197316884995, -0.025286585092544556, -2.99090313911438, 2.247389793395996, 1.8780598640441895, 0.25595909357070923, -0.13463078439235687, -0.08917462080717087, 0.02015746757388115, 0.12680508196353912, -0.06594919413328171, 0.031027158722281456, 1.276679515838623, -0.11786485463380814, 0.07796937227249146, -0.03428686782717705]} +{"t": 16.2637, "q": [-0.3545165956020355, -0.009215815924108028, 0.00571833923459053, 0.6251312494277954, -0.2945660650730133, 0.022220948711037636, -0.3380689322948456, 0.007763647008687258, -0.007861042395234108, 0.6129275560379028, -0.3258938789367676, 0.0018938829889521003, -0.006026353221386671, -0.04277706518769264, -0.025296024978160858, -2.990939140319824, 2.247377872467041, 1.8780839443206787, 0.25603097677230835, -0.13460682332515717, -0.08921056985855103, 0.02015746757388115, 0.12681707739830017, -0.06593720614910126, 0.031099064275622368, 1.276847243309021, -0.11785287410020828, 0.07798135280609131, -0.034262899309396744]} +{"t": 16.2804, "q": [-0.35454216599464417, -0.009207293391227722, 0.005704947747290134, 0.6250460147857666, -0.2945452928543091, 0.022213824093341827, -0.33803483843803406, 0.007763647008687258, -0.007941394113004208, 0.6127997636795044, -0.32581159472465515, 0.001878619659692049, -0.005986177362501621, -0.04279983788728714, -0.025301450863480568, -2.99090313911438, 2.2472939491271973, 1.8780958652496338, 0.2566421926021576, -0.13460682332515717, -0.08917462080717087, 0.0201694518327713, 0.12694889307022095, -0.06609300523996353, 0.031099064275622368, 1.2769911289215088, -0.11785287410020828, 0.07799334079027176, -0.03417900949716568]} +{"t": 16.2972, "q": [-0.35455068945884705, -0.009164683520793915, 0.005678163841366768, 0.6249863505363464, -0.2945285737514496, 0.0221849512308836, -0.3378729224205017, 0.007840346544981003, -0.008115489035844803, 0.6124929785728455, -0.32572081685066223, 0.001819736324250698, -0.0059995693154633045, -0.04279987886548042, -0.025311244651675224, -2.99092698097229, 2.2472338676452637, 1.8781079053878784, 0.2578406035900116, -0.13460682332515717, -0.08893493562936783, 0.02015746757388115, 0.12720057368278503, -0.06634467095136642, 0.031123032793402672, 1.2770509719848633, -0.11790081113576889, 0.07799334079027176, -0.033975277096033096]} +{"t": 16.3139, "q": [-0.3545336425304413, -0.008943108841776848, 0.005704947747290134, 0.6249096989631653, -0.29451191425323486, 0.022156095132231712, -0.3377024531364441, 0.008078965358436108, -0.008249407634139061, 0.612083911895752, -0.3254852592945099, 0.0016070347046479583, -0.005865650251507759, -0.04281500726938248, -0.025301804766058922, -2.99090313911438, 2.247174024581909, 1.8781917095184326, 0.2586435377597809, -0.13464276492595673, -0.08894691616296768, 0.0201694518327713, 0.12717659771442413, -0.0668000727891922, 0.031075095757842064, 1.2770509719848633, -0.11786485463380814, 0.07800532132387161, -0.033963292837142944]} +{"t": 16.3308, "q": [-0.354482501745224, -0.008602224290370941, 0.005704947747290134, 0.6247051358222961, -0.2944910228252411, 0.022120008245110512, -0.3375575840473175, 0.008351673372089863, -0.008276191540062428, 0.6116066575050354, -0.32525819540023804, 0.0014379891799762845, -0.005745123140513897, -0.04279231280088425, -0.025315964594483376, -2.990939140319824, 2.2472100257873535, 1.8781797885894775, 0.25900307297706604, -0.13465476036071777, -0.08898287266492844, 0.020145483314990997, 0.12714064121246338, -0.06796254217624664, 0.03105112724006176, 1.2769790887832642, -0.11785287410020828, 0.07798135280609131, -0.03395130857825279]} +{"t": 16.3476, "q": [-0.35432058572769165, -0.008363604545593262, 0.00571833923459053, 0.6244324445724487, -0.2944534718990326, 0.022055067121982574, -0.3373871445655823, 0.008769256994128227, -0.008249407634139061, 0.6111038327217102, -0.32499852776527405, 0.0013122381642460823, -0.005731731187552214, -0.042807478457689285, -0.02531631477177143, -2.990891218185425, 2.2471859455108643, 1.878167748451233, 0.25923076272010803, -0.13466674089431763, -0.08907874673604965, 0.0201694518327713, 0.12711668014526367, -0.06943660229444504, 0.03105112724006176, 1.276835322380066, -0.11787684261798859, 0.07796937227249146, -0.033903371542692184]} +{"t": 16.3643, "q": [-0.354295015335083, -0.00780966691672802, 0.005678163841366768, 0.6241341829299927, -0.294440895318985, 0.02200448326766491, -0.3372337520122528, 0.009246495552361012, -0.00831636693328619, 0.610370934009552, -0.3247256577014923, 0.0010483843507245183, -0.005691555794328451, -0.04282272607088089, -0.02533625438809395, -2.990891218185425, 2.2472100257873535, 1.8781797885894775, 0.25942251086235046, -0.13463078439235687, -0.0890907272696495, 0.02015746757388115, 0.12711668014526367, -0.07188138365745544, 0.031015174463391304, 1.2766915559768677, -0.11784088611602783, 0.07796937227249146, -0.03385543450713158]} +{"t": 16.381, "q": [-0.3542439043521881, -0.007161986082792282, 0.005664771888405085, 0.6239381432533264, -0.2943783104419708, 0.0218962412327528, -0.3370206952095032, 0.009791910648345947, -0.00839671865105629, 0.6095017194747925, -0.3243761956691742, 0.0010235273512080312, -0.005731731187552214, -0.04286834970116615, -0.02536669187247753, -2.99092698097229, 2.247162103652954, 1.8781437873840332, 0.2596142590045929, -0.13464276492595673, -0.08907874673604965, 0.02015746757388115, 0.12704476714134216, -0.07480553537607193, 0.030979221686720848, 1.276379942893982, -0.11785287410020828, 0.07796937227249146, -0.03386741876602173]} +{"t": 16.3977, "q": [-0.3541927635669708, -0.006650659255683422, 0.005637987982481718, 0.6236228346824646, -0.2941780388355255, 0.021549874916672707, -0.3367394804954529, 0.010524812154471874, -0.008450286462903023, 0.6085983514785767, -0.3241550922393799, 0.0011522895656526089, -0.005731731187552214, -0.042845577001571655, -0.02536126598715782, -2.9908430576324463, 2.247150182723999, 1.8781318664550781, 0.25987792015075684, -0.13465476036071777, -0.08905477821826935, 0.02015746757388115, 0.12706874310970306, -0.07904794812202454, 0.030883347615599632, 1.2762839794158936, -0.11786485463380814, 0.07794540375471115, -0.03386741876602173]} +{"t": 16.4145, "q": [-0.35409900546073914, -0.006386473774909973, 0.005517460871487856, 0.6231626272201538, -0.2940111458301544, 0.02126123569905758, -0.33656901121139526, 0.011172492988407612, -0.00847707036882639, 0.6077716946601868, -0.3240410089492798, 0.0013110722647979856, -0.005664771888405085, -0.04292156919836998, -0.02540219947695732, -2.9907472133636475, 2.247162103652954, 1.8780479431152344, 0.2601296007633209, -0.13466674089431763, -0.08905477821826935, 0.02015746757388115, 0.12711668014526367, -0.08385362476110458, 0.030847394838929176, 1.2762839794158936, -0.11784088611602783, 0.07792143523693085, -0.03375956416130066]} +{"t": 16.4313, "q": [-0.35399675369262695, -0.006224553566426039, 0.005356758367270231, 0.6225916743278503, -0.29376929998397827, 0.020842721685767174, -0.3363815248012543, 0.011590076610445976, -0.008584205061197281, 0.6070217490196228, -0.3239101469516754, 0.0014116044621914625, -0.00546389352530241, -0.04301273450255394, -0.025443488731980324, -2.9907472133636475, 2.247138023376465, 1.8780239820480347, 0.2603333294391632, -0.13467872142791748, -0.0890907272696495, 0.02015746757388115, 0.12706874310970306, -0.08893493562936783, 0.030727554112672806, 1.2763439416885376, -0.11785287410020828, 0.077957384288311, -0.03374757990241051]} +{"t": 16.448, "q": [-0.3538263142108917, -0.006233075633645058, 0.005075528286397457, 0.6218843460083008, -0.2934001088142395, 0.020229555666446686, -0.336168497800827, 0.012084359303116798, -0.00873151607811451, 0.6061609983444214, -0.32368046045303345, 0.0014822067460045218, -0.005356758367270231, -0.043248359113931656, -0.025581156834959984, -2.990795135498047, 2.2471022605895996, 1.8780839443206787, 0.2607887387275696, -0.13461880385875702, -0.08910271525382996, 0.02015746757388115, 0.12708072364330292, -0.09504689276218414, 0.030679617077112198, 1.276379942893982, -0.11785287410020828, 0.07796937227249146, -0.03374757990241051]} +{"t": 16.4647, "q": [-0.3534172475337982, -0.006284208502620459, 0.004780906718224287, 0.621117353439331, -0.2930184602737427, 0.0196236539632082, -0.33560603857040405, 0.012672385200858116, -0.00898596178740263, 0.6050360798835754, -0.32355427742004395, 0.0016772038070484996, -0.005289798602461815, -0.04339262843132019, -0.025628579780459404, -2.990831136703491, 2.2471261024475098, 1.8781079053878784, 0.26172348856925964, -0.13460682332515717, -0.08911469578742981, 0.02015746757388115, 0.12710469961166382, -0.10181798040866852, 0.030667632818222046, 1.276379942893982, -0.11790081113576889, 0.0779334157705307, -0.033735595643520355]} +{"t": 16.4815, "q": [-0.35224971175193787, -0.006284208502620459, 0.004432717338204384, 0.6200520992279053, -0.29262858629226685, 0.018945466727018356, -0.3340635299682617, 0.013524597510695457, -0.009227016009390354, 0.6029396653175354, -0.323093980550766, 0.0016731530195102096, -0.005316582508385181, -0.04347572848200798, -0.025547290220856667, -2.9907352924346924, 2.247174024581909, 1.8780239820480347, 0.26329341530799866, -0.1345708668231964, -0.08916263282299042, 0.020145483314990997, 0.12708072364330292, -0.10909239947795868, 0.030667632818222046, 1.2762839794158936, -0.11790081113576889, 0.0779094472527504, -0.03371162712574005]} +{"t": 16.4982, "q": [-0.3499402105808258, -0.006267163902521133, 0.004231838975101709, 0.6180834770202637, -0.2920893132686615, 0.01806543953716755, -0.33222275972366333, 0.014300109818577766, -0.009213624522089958, 0.6009710431098938, -0.3227235674858093, 0.0015535256825387478, -0.005289798602461815, -0.04380879923701286, -0.025428244844079018, -2.9906394481658936, 2.2470662593841553, 1.8779520988464355, 0.2652828097343445, -0.13459482789039612, -0.08915065228939056, 0.020145483314990997, 0.12711668014526367, -0.11673834174871445, 0.030547790229320526, 1.2762120962142944, -0.11787684261798859, 0.07794540375471115, -0.03374757990241051]} +{"t": 16.5151, "q": [-0.34767335653305054, -0.006267163902521133, 0.004312190227210522, 0.6158080697059631, -0.29154592752456665, 0.017163701355457306, -0.3312768042087555, 0.014393853023648262, -0.0089190024882555, 0.6003915667533875, -0.32276424765586853, 0.001495825476013124, -0.005196055397391319, -0.0449710488319397, -0.025960730388760567, -2.990603446960449, 2.247018337249756, 1.8779520988464355, 0.26795530319213867, -0.13459482789039612, -0.08913866430521011, 0.020145483314990997, 0.12714064121246338, -0.1245880052447319, 0.030535805970430374, 1.2761282920837402, -0.11790081113576889, 0.077957384288311, -0.03371162712574005]} +{"t": 16.5319, "q": [-0.3466933071613312, -0.006258642300963402, 0.004071136470884085, 0.6148365139961243, -0.29134270548820496, 0.016795722767710686, -0.33083364367485046, 0.014513162896037102, -0.0089993542060256, 0.60028076171875, -0.32305291295051575, 0.00101188151165843, -0.005329974461346865, -0.046012766659259796, -0.026657352223992348, -2.9907472133636475, 2.2469823360443115, 1.8780359029769897, 0.27095136046409607, -0.13459482789039612, -0.0890907272696495, 0.02015746757388115, 0.12711668014526367, -0.13320466876029968, 0.0303800106048584, 1.2760802507400513, -0.11787684261798859, 0.077957384288311, -0.03371162712574005]} +{"t": 16.5489, "q": [-0.3463609218597412, -0.005934801883995533, 0.0038568659219890833, 0.6148620843887329, -0.29127630591392517, 0.016709208488464355, -0.33069729804992676, 0.014819959178566933, -0.009414502419531345, 0.6004597544670105, -0.3233741819858551, 0.00046998608740977943, -0.0055978125892579556, -0.046385347843170166, -0.026906508952379227, -2.9908790588378906, 2.2469942569732666, 1.878167748451233, 0.2737916111946106, -0.13466674089431763, -0.08917462080717087, 0.02015746757388115, 0.1272365152835846, -0.14281600713729858, 0.030308105051517487, 1.2758885622024536, -0.11784088611602783, 0.07794540375471115, -0.033675674349069595]} +{"t": 16.5656, "q": [-0.3464035391807556, -0.00527007644996047, 0.0037229470908641815, 0.6148706078529358, -0.29095694422721863, 0.016139209270477295, -0.3307313621044159, 0.015271631069481373, -0.009789476171135902, 0.6005449295043945, -0.32352063059806824, 3.549823668436147e-05, -0.005812082905322313, -0.04662105068564415, -0.027064276859164238, -2.99090313911438, 2.247042179107666, 1.8781797885894775, 0.2775786221027374, -0.13461880385875702, -0.08916263282299042, 0.0201694518327713, 0.12720057368278503, -0.1536976844072342, 0.030104374513030052, 1.2758525609970093, -0.11787684261798859, 0.0779094472527504, -0.03366369009017944]} +{"t": 16.5823, "q": [-0.34652286767959595, -0.004869537428021431, 0.003481892868876457, 0.6147598624229431, -0.2905711531639099, 0.01552609633654356, -0.33084216713905334, 0.015603993088006973, -0.010351935401558876, 0.6005278825759888, -0.32353952527046204, -0.0005235592252574861, -0.006120096426457167, -0.04675022140145302, -0.027131246402859688, -2.9908790588378906, 2.2469582557678223, 1.8782516717910767, 0.27949610352516174, -0.13463078439235687, -0.0890667587518692, 0.02015746757388115, 0.12715263664722443, -0.16437563300132751, 0.02991262637078762, 1.2757567167282104, -0.11787684261798859, 0.0779334157705307, -0.033615753054618835]} +{"t": 16.5991, "q": [-0.34660807251930237, -0.0045627411454916, 0.003106919815763831, 0.6145041584968567, -0.2901189923286438, 0.014797565527260303, -0.3309614658355713, 0.01583409123122692, -0.010793867520987988, 0.6005960702896118, -0.32353731989860535, -0.0012643698137253523, -0.006535245105624199, -0.0467805489897728, -0.02713203802704811, -2.990915060043335, 2.2469582557678223, 1.8782516717910767, 0.28196483850479126, -0.13461880385875702, -0.08905477821826935, 0.02015746757388115, 0.12711668014526367, -0.17627596855163574, 0.02973286248743534, 1.2757208347320557, -0.11791279166936874, 0.07794540375471115, -0.03362773731350899]} +{"t": 16.6158, "q": [-0.34661659598350525, -0.004341166000813246, 0.00287925754673779, 0.6142911314964294, -0.28979554772377014, 0.014278330840170383, -0.3310807943344116, 0.015961922705173492, -0.011128664948046207, 0.600723922252655, -0.32363900542259216, -0.00161936751101166, -0.006843258626759052, -0.046780504286289215, -0.02712225168943405, -2.9908671379089355, 2.2469582557678223, 1.878239631652832, 0.2833550274372101, -0.13465476036071777, -0.08907874673604965, 0.02015746757388115, 0.12715263664722443, -0.18791265785694122, 0.02949317917227745, 1.2756608724594116, -0.11788882315158844, 0.0779094472527504, -0.033615753054618835]} +{"t": 16.6326, "q": [-0.34661659598350525, -0.004059936385601759, 0.0027989062946289778, 0.6141888499259949, -0.28961336612701416, 0.013961255550384521, -0.3312171399593353, 0.016098275780677795, -0.011289368383586407, 0.600953996181488, -0.32376107573509216, -0.002024991437792778, -0.006963785737752914, -0.046772900968790054, -0.027117162942886353, -2.9908790588378906, 2.2469942569732666, 1.8782756328582764, 0.28503280878067017, -0.13465476036071777, -0.08917462080717087, 0.020145483314990997, 0.12714064121246338, -0.20073577761650085, 0.029157619923353195, 1.2756727933883667, -0.11791279166936874, 0.07792143523693085, -0.033615753054618835]} +{"t": 16.6493, "q": [-0.3465569317340851, -0.003702007234096527, 0.002718554809689522, 0.6140865683555603, -0.2894602119922638, 0.013694643042981625, -0.3313279151916504, 0.01619201898574829, -0.011476854793727398, 0.6012352705001831, -0.3238372206687927, -0.00258335517719388, -0.0070173535495996475, -0.04675017669796944, -0.02712146006524563, -2.99092698097229, 2.246946334838867, 1.8782756328582764, 0.2865667939186096, -0.13471467792987823, -0.08917462080717087, 0.02015746757388115, 0.12714064121246338, -0.2134031057357788, 0.028989840298891068, 1.275648832321167, -0.11790081113576889, 0.0779094472527504, -0.03362773731350899]} +{"t": 16.6661, "q": [-0.34652286767959595, -0.003258857410401106, 0.0026649872306734324, 0.6140354871749878, -0.28935670852661133, 0.013500042259693146, -0.3313790559768677, 0.016226107254624367, -0.011570597998797894, 0.6013545393943787, -0.32386013865470886, -0.0030331306625157595, -0.0070307450369000435, -0.046719808131456375, -0.027110883966088295, -2.99092698097229, 2.246934413909912, 1.878287672996521, 0.2878251373767853, -0.13469070196151733, -0.08916263282299042, 0.02015746757388115, 0.12714064121246338, -0.2259386032819748, 0.028786109760403633, 1.2755529880523682, -0.11786485463380814, 0.07794540375471115, -0.03365170583128929]} +{"t": 16.6829, "q": [-0.34652286767959595, -0.0027390082832425833, 0.002731946762651205, 0.613950252532959, -0.28924494981765747, 0.013305467553436756, -0.3315068781375885, 0.016200540587306023, -0.011664341203868389, 0.6014482975006104, -0.32387861609458923, -0.0035628005862236023, -0.0070307450369000435, -0.04665915668010712, -0.02710930071771145, -2.990891218185425, 2.2468984127044678, 1.8783235549926758, 0.2894430160522461, -0.13464276492595673, -0.08915065228939056, 0.020145483314990997, 0.12711668014526367, -0.2389175146818161, 0.02858237735927105, 1.2753732204437256, -0.11790081113576889, 0.0779334157705307, -0.03362773731350899]} +{"t": 16.6996, "q": [-0.34651434421539307, -0.0021595044527202845, 0.0027721223887056112, 0.6138735413551331, -0.28911662101745605, 0.013067626394331455, -0.3317028880119324, 0.016209064051508904, -0.011664341203868389, 0.6015931963920593, -0.3237321972846985, -0.00415174663066864, -0.007070920895785093, -0.04662122204899788, -0.027103416621685028, -2.990939140319824, 2.2468984127044678, 1.8783595561981201, 0.2910608649253845, -0.13463078439235687, -0.08917462080717087, 0.02015746757388115, 0.12711668014526367, -0.2515249252319336, 0.028378644958138466, 1.2752294540405273, -0.11788882315158844, 0.07794540375471115, -0.0336996428668499]} +{"t": 16.7163, "q": [-0.3465484380722046, -0.0012732045724987984, 0.0029194331727921963, 0.6138905882835388, -0.2890007197856903, 0.012851414270699024, -0.33176255226135254, 0.016234630718827248, -0.011717909015715122, 0.601635754108429, -0.32343724370002747, -0.004828885197639465, -0.007124488707631826, -0.04659850150346756, -0.027107717469334602, -2.990939140319824, 2.2468984127044678, 1.8783595561981201, 0.29349368810653687, -0.13461880385875702, -0.08918660134077072, 0.02015746757388115, 0.12714064121246338, -0.2638806700706482, 0.028306739404797554, 1.275133490562439, -0.11790081113576889, 0.07794540375471115, -0.033615753054618835]} +{"t": 16.7331, "q": [-0.34660807251930237, -0.0003357715904712677, 0.0031872710678726435, 0.6139417290687561, -0.2889179289340973, 0.012692832387983799, -0.3319670855998993, 0.016336895525455475, -0.011717909015715122, 0.6016442775726318, -0.32308822870254517, -0.005644331220537424, -0.007151272147893906, -0.04659850150346756, -0.027107717469334602, -2.9909510612487793, 2.2468984127044678, 1.878455400466919, 0.2963578999042511, -0.13469070196151733, -0.08917462080717087, 0.020145483314990997, 0.1272604912519455, -0.27594876289367676, 0.028198881074786186, 1.2750616073608398, -0.11787684261798859, 0.077957384288311, -0.03363972157239914]} +{"t": 16.7499, "q": [-0.3467359244823456, 0.0005505280569195747, 0.0033747577108442783, 0.613950252532959, -0.288777232170105, 0.012404458597302437, -0.3321886658668518, 0.016405072063207626, -0.011691125109791756, 0.601635754108429, -0.32276880741119385, -0.00626361183822155, -0.007151272147893906, -0.04660610109567642, -0.0271128062158823, -2.99090313911438, 2.2468984127044678, 1.8784193992614746, 0.29891055822372437, -0.13469070196151733, -0.08917462080717087, 0.020145483314990997, 0.12762001156806946, -0.2872139513492584, 0.028150945901870728, 1.2750736474990845, -0.11787684261798859, 0.077957384288311, -0.03359178453683853]} +{"t": 16.7666, "q": [-0.34698304533958435, 0.0011726426891982555, 0.0034283252898603678, 0.6140013933181763, -0.2886282503604889, 0.012101676315069199, -0.33249545097351074, 0.016558470204472542, -0.011691125109791756, 0.6016528010368347, -0.32260292768478394, -0.006569661665707827, -0.007325367070734501, -0.04659854248166084, -0.027117500081658363, -2.990891218185425, 2.2468984127044678, 1.8784314393997192, 0.3006003201007843, -0.13469070196151733, -0.08910271525382996, 0.0201694518327713, 0.12782374024391174, -0.2989464998245239, 0.028150945901870728, 1.2750376462936401, -0.11790081113576889, 0.07796937227249146, -0.03357980027794838]} +{"t": 16.7833, "q": [-0.3471875786781311, 0.0015220493078231812, 0.0034283252898603678, 0.6139928698539734, -0.28836745023727417, 0.011647692881524563, -0.3328704237937927, 0.0167374350130558, -0.011704516597092152, 0.6019255518913269, -0.3223581612110138, -0.0070432256907224655, -0.0077672996558249, -0.0466136634349823, -0.02710811235010624, -2.99092698097229, 2.246922492980957, 1.878455400466919, 0.30263763666152954, -0.13469070196151733, -0.0890667587518692, 0.02015746757388115, 0.12801548838615417, -0.3101397752761841, 0.02811499312520027, 1.274965763092041, -0.1179487481713295, 0.07794540375471115, -0.03366369009017944]} +{"t": 16.8004, "q": [-0.34735801815986633, 0.0017351023852825165, 0.003334582084789872, 0.613950252532959, -0.28809836506843567, 0.011164850555360317, -0.3332027792930603, 0.016865266487002373, -0.01177147589623928, 0.6022579073905945, -0.32218360900878906, -0.007465459406375885, -0.008249407634139061, -0.04659094288945198, -0.027112411335110664, -2.9909629821777344, 2.246922492980957, 1.8784433603286743, 0.3042195439338684, -0.13466674089431763, -0.08917462080717087, 0.020145483314990997, 0.1281832754611969, -0.3206019997596741, 0.028138961642980576, 1.2747260332107544, -0.11793676018714905, 0.0779334157705307, -0.03357980027794838]} +{"t": 16.8171, "q": [-0.3475966453552246, 0.0019566770642995834, 0.0032810145057737827, 0.613950252532959, -0.2879203259944916, 0.010869449004530907, -0.3336118459701538, 0.01695900969207287, -0.011798259802162647, 0.6027181148529053, -0.32220301032066345, -0.00776286656036973, -0.008771691471338272, -0.046560656279325485, -0.02712140418589115, -2.990939140319824, 2.2468984127044678, 1.8784314393997192, 0.305885374546051, -0.13463078439235687, -0.08917462080717087, 0.020133499056100845, 0.12857875227928162, -0.33074066042900085, 0.02810300886631012, 1.2743066549301147, -0.11796072870492935, 0.07792143523693085, -0.033603768795728683]} +{"t": 16.8338, "q": [-0.3476563096046448, 0.002033376134932041, 0.0032676225528120995, 0.6139417290687561, -0.2877919673919678, 0.010660511441528797, -0.3339782953262329, 0.0169675312936306, -0.01177147589623928, 0.603340208530426, -0.3221972584724426, -0.008176581002771854, -0.00940111093223095, -0.04645451530814171, -0.027118634432554245, -2.9909510612487793, 2.246922492980957, 1.8784914016723633, 0.3073714077472687, -0.13464276492595673, -0.08917462080717087, 0.020145483314990997, 0.12902216613292694, -0.3410590589046478, 0.028079040348529816, 1.2738991975784302, -0.1179487481713295, 0.0779094472527504, -0.033603768795728683]} +{"t": 16.8506, "q": [-0.3477841317653656, 0.00210155313834548, 0.0032274469267576933, 0.6139672994613647, -0.2877257168292999, 0.010545214638113976, -0.334344744682312, 0.016950488090515137, -0.011650948785245419, 0.6039026379585266, -0.32227855920791626, -0.00843724887818098, -0.010017137974500656, -0.04629535228013992, -0.02712925150990486, -2.9909749031066895, 2.2468864917755127, 1.8785752058029175, 0.3084619641304016, -0.13464276492595673, -0.08917462080717087, 0.020145483314990997, 0.12952551245689392, -0.35056254267692566, 0.027995150536298752, 1.2736594676971436, -0.11793676018714905, 0.07792143523693085, -0.03357980027794838]} +{"t": 16.8673, "q": [-0.34790343046188354, 0.002144163940101862, 0.003254230599850416, 0.6139843463897705, -0.2876967191696167, 0.010509221814572811, -0.3347708582878113, 0.01690787635743618, -0.011570597998797894, 0.604465126991272, -0.32231464982032776, -0.008676471188664436, -0.010780476033687592, -0.04609847441315651, -0.027182959020137787, -2.991238594055176, 2.2468864917755127, 1.8787909746170044, 0.3094566762447357, -0.13461880385875702, -0.08918660134077072, 0.020145483314990997, 0.12994495034217834, -0.35992223024368286, 0.027779433876276016, 1.2733718156814575, -0.11793676018714905, 0.0779094472527504, -0.033555831760168076]} +{"t": 16.884, "q": [-0.34821876883506775, 0.002135641872882843, 0.0032944062259048223, 0.6140440106391907, -0.28766772150993347, 0.010473228991031647, -0.33547818660736084, 0.016865266487002373, -0.01143667846918106, 0.6053344011306763, -0.3223266303539276, -0.008770735003054142, -0.011744692921638489, -0.04584893211722374, -0.027348151430487633, -2.991370439529419, 2.2468864917755127, 1.8788509368896484, 0.31064310669898987, -0.13466674089431763, -0.08918660134077072, 0.020145483314990997, 0.13007678091526031, -0.3694497048854828, 0.027407923713326454, 1.2730603218078613, -0.11796072870492935, 0.0779094472527504, -0.03351987898349762]} +{"t": 16.9008, "q": [-0.34882381558418274, 0.0019992878660559654, 0.003655987558886409, 0.6141462326049805, -0.287601500749588, 0.010343479923903942, -0.336961030960083, 0.0167374350130558, -0.011235800571739674, 0.60685133934021, -0.3224779963493347, -0.009009093977510929, -0.012695517390966415, -0.045735590159893036, -0.0274482574313879, -2.991346597671509, 2.2468504905700684, 1.8788628578186035, 0.3121411204338074, -0.13463078439235687, -0.08918660134077072, 0.020145483314990997, 0.13007678091526031, -0.37909698486328125, 0.02708434872329235, 1.2727487087249756, -0.11793676018714905, 0.0779334157705307, -0.033495910465717316]} +{"t": 16.9175, "q": [-0.3497527241706848, 0.0017265803180634975, 0.0045130690559744835, 0.6144956350326538, -0.28750622272491455, 0.010221130214631557, -0.33894670009613037, 0.016413593664765358, -0.010485853999853134, 0.6088625192642212, -0.3227275609970093, -0.009406368248164654, -0.013418679125607014, -0.04571293294429779, -0.027472196146845818, -2.9913344383239746, 2.2468864917755127, 1.8788748979568481, 0.31411853432655334, -0.13463078439235687, -0.08921056985855103, 0.020145483314990997, 0.13010074198246002, -0.3880971372127533, 0.026509106159210205, 1.2725210189819336, -0.11793676018714905, 0.0779334157705307, -0.03350789472460747]} +{"t": 16.9342, "q": [-0.3508009612560272, 0.00159022631123662, 0.005303190555423498, 0.6150496006011963, -0.28738197684288025, 0.010048299096524715, -0.3409408628940582, 0.0163028072565794, -0.009508245624601841, 0.6108822822570801, -0.3228340148925781, -0.009550727903842926, -0.014409679919481277, -0.0456368587911129, -0.027411550283432007, -2.991358518600464, 2.2468984127044678, 1.878910779953003, 0.3160719573497772, -0.13463078439235687, -0.08921056985855103, 0.02015746757388115, 0.13012471795082092, -0.3975526988506317, 0.025226794183254242, 1.2724850177764893, -0.11791279166936874, 0.07794540375471115, -0.033495910465717316]} +{"t": 16.951, "q": [-0.3512611389160156, 0.0014197840355336666, 0.005745123140513897, 0.6151859164237976, -0.2870258390903473, 0.009486418217420578, -0.34204021096229553, 0.016149409115314484, -0.008798475377261639, 0.6122287511825562, -0.32284626364707947, -0.009572401642799377, -0.015320328995585442, -0.04546189308166504, -0.027275001630187035, -2.9912986755371094, 2.2468624114990234, 1.8788988590240479, 0.3171505331993103, -0.13463078439235687, -0.08918660134077072, 0.020145483314990997, 0.13018463551998138, -0.40578585863113403, 0.024088293313980103, 1.2724730968475342, -0.1179247796535492, 0.07794540375471115, -0.03347194194793701]} +{"t": 16.9677, "q": [-0.3512696623802185, 0.0012322976253926754, 0.005865650251507759, 0.615143358707428, -0.28676074743270874, 0.009140880778431892, -0.34266233444213867, 0.016081232577562332, -0.008410110138356686, 0.6129957437515259, -0.32285040616989136, -0.00956511590629816, -0.016056882217526436, -0.045309897512197495, -0.02719290368258953, -2.991286516189575, 2.2468745708465576, 1.8788988590240479, 0.31878039240837097, -0.13465476036071777, -0.08917462080717087, 0.020133499056100845, 0.13012471795082092, -0.41457030177116394, 0.022937806323170662, 1.2724370956420898, -0.11793676018714905, 0.07794540375471115, -0.03345995768904686]} +{"t": 16.9846, "q": [-0.35110774636268616, 0.0011215098202228546, 0.005986177362501621, 0.6151604056358337, -0.2866489291191101, 0.008975228294730186, -0.34276461601257324, 0.015996010974049568, -0.008222623728215694, 0.6134644746780396, -0.32291996479034424, -0.009673458524048328, -0.01645863987505436, -0.04506712779402733, -0.027167370542883873, -2.991382360458374, 2.2468984127044678, 1.8789347410202026, 0.3202904164791107, -0.13467872142791748, -0.08917462080717087, 0.020133499056100845, 0.12958543002605438, -0.42268362641334534, 0.022110896185040474, 1.2721734046936035, -0.1179247796535492, 0.07796937227249146, -0.03345995768904686]} +{"t": 17.0013, "q": [-0.35096287727355957, 0.0010618548840284348, 0.005919218063354492, 0.615228533744812, -0.2865661382675171, 0.008816664107143879, -0.34276461601257324, 0.015961922705173492, -0.008222623728215694, 0.6137286424636841, -0.3229527175426483, -0.009716762229800224, -0.016565775498747826, -0.044681426137685776, -0.027427373453974724, -2.991586208343506, 2.2468984127044678, 1.878982663154602, 0.32151278853416443, -0.13470269739627838, -0.08917462080717087, 0.020133499056100845, 0.1290581226348877, -0.429886132478714, 0.021823273971676826, 1.2718138694763184, -0.11791279166936874, 0.0779334157705307, -0.03344797343015671]} +{"t": 17.018, "q": [-0.3508606255054474, 0.001036288682371378, 0.005731731187552214, 0.6152711510658264, -0.28649577498435974, 0.008694163523614407, -0.3426964282989502, 0.015902267768979073, -0.008195839822292328, 0.6139246821403503, -0.32300588488578796, -0.009810717776417732, -0.016512207686901093, -0.044197339564561844, -0.027728760614991188, -2.9920175075531006, 2.2468624114990234, 1.8793781995773315, 0.3225434422492981, -0.13469070196151733, -0.08917462080717087, 0.020145483314990997, 0.1285547912120819, -0.43728041648864746, 0.021499700844287872, 1.2715622186660767, -0.11790081113576889, 0.07792143523693085, -0.033376067876815796]} +{"t": 17.0349, "q": [-0.35088616609573364, 0.001036288682371378, 0.005504068918526173, 0.6153052449226379, -0.28641295433044434, 0.008564486168324947, -0.3427305221557617, 0.015808524563908577, -0.008075312711298466, 0.614112138748169, -0.3230631649494171, -0.009897368960082531, -0.01645863987505436, -0.043660350143909454, -0.028072837740182877, -2.992508888244629, 2.2468385696411133, 1.8796777725219727, 0.32380178570747375, -0.13465476036071777, -0.08917462080717087, 0.02015746757388115, 0.12807542085647583, -0.4439316689968109, 0.02112818881869316, 1.2714663743972778, -0.11790081113576889, 0.07792143523693085, -0.03338805213570595]} +{"t": 17.0518, "q": [-0.35088616609573364, 0.0010448107495903969, 0.0053701503202319145, 0.6153052449226379, -0.28631773591041565, 0.008398744277656078, -0.342781662940979, 0.01576591283082962, -0.00772712379693985, 0.614248514175415, -0.3231040835380554, -0.009955103509128094, -0.01644524745643139, -0.043115537613630295, -0.028382936492562294, -2.992748737335205, 2.2468624114990234, 1.8797377347946167, 0.3249882161617279, -0.13467872142791748, -0.08917462080717087, 0.02015746757388115, 0.12754811346530914, -0.4508705139160156, 0.020840568467974663, 1.2713345289230347, -0.11790081113576889, 0.07792143523693085, -0.03335209935903549]} +{"t": 17.0685, "q": [-0.35087767243385315, 0.00107889948412776, 0.005276407115161419, 0.6153052449226379, -0.2862555980682373, 0.008319572545588017, -0.34285834431648254, 0.015731824561953545, -0.00735215051099658, 0.6143763661384583, -0.3231736123561859, -0.010077974759042263, -0.016391679644584656, -0.04235813394188881, -0.028688976541161537, -2.992616891860962, 2.2468864917755127, 1.8796658515930176, 0.32605481147766113, -0.13470269739627838, -0.08917462080717087, 0.020145483314990997, 0.12717659771442413, -0.4577374756336212, 0.020684773102402687, 1.2711308002471924, -0.11788882315158844, 0.0779094472527504, -0.033316146582365036]} +{"t": 17.0853, "q": [-0.3509543538093567, 0.001070377416908741, 0.005155880004167557, 0.6153052449226379, -0.2862100303173065, 0.00825476460158825, -0.34299468994140625, 0.01571478135883808, -0.007231623865664005, 0.6145041584968567, -0.3232514560222626, -0.010200769640505314, -0.0163247212767601, -0.04148734733462334, -0.029095051810145378, -2.9924609661102295, 2.2468504905700684, 1.8795100450515747, 0.32684576511383057, -0.13464276492595673, -0.08918660134077072, 0.020145483314990997, 0.12708072364330292, -0.4636816680431366, 0.020433103665709496, 1.271082878112793, -0.11788882315158844, 0.0779094472527504, -0.033316146582365036]} +{"t": 17.1022, "q": [-0.35106515884399414, 0.00107889948412776, 0.004968393128365278, 0.6152711510658264, -0.28616863489151, 0.008182691410183907, -0.34312254190444946, 0.015740348026156425, -0.007271799258887768, 0.614555299282074, -0.32338303327560425, -0.010432043112814426, -0.01628454588353634, -0.040586359798908234, -0.029559511691331863, -2.992293357849121, 2.2468864917755127, 1.8795459270477295, 0.32769665122032166, -0.13463078439235687, -0.08916263282299042, 0.020145483314990997, 0.1273323893547058, -0.468990683555603, 0.020325245335698128, 1.271142840385437, -0.11788882315158844, 0.0779094472527504, -0.03332813084125519]} +{"t": 17.1189, "q": [-0.35105663537979126, 0.001070377416908741, 0.004874649923294783, 0.6152626276016235, -0.2861272096633911, 0.008139538578689098, -0.34313106536865234, 0.015731824561953545, -0.007285191211849451, 0.6147513389587402, -0.323485791683197, -0.010641764849424362, -0.016204193234443665, -0.039593592286109924, -0.02990579977631569, -2.992173433303833, 2.2468745708465576, 1.8795100450515747, 0.32864341139793396, -0.13461880385875702, -0.08917462080717087, 0.020133499056100845, 0.12745223939418793, -0.47482699155807495, 0.020313261076807976, 1.2712026834487915, -0.11784088611602783, 0.07792143523693085, -0.033256225287914276]} +{"t": 17.1356, "q": [-0.3510395884513855, 0.001070377416908741, 0.00483447453007102, 0.6152626276016235, -0.28609398007392883, 0.008067435584962368, -0.34321627020835876, 0.015731824561953545, -0.007338759023696184, 0.6150155067443848, -0.3235927224159241, -0.010800627991557121, -0.016043491661548615, -0.0384412482380867, -0.0301847942173481, -2.9921135902404785, 2.2468864917755127, 1.87949800491333, 0.3293384909629822, -0.13461880385875702, -0.08917462080717087, 0.020145483314990997, 0.12746421992778778, -0.4800880551338196, 0.020301276817917824, 1.2713584899902344, -0.11785287410020828, 0.0779094472527504, -0.033256225287914276]} +{"t": 17.1523, "q": [-0.35105663537979126, 0.0011044656857848167, 0.00479429867118597, 0.6152200102806091, -0.2860189974308014, 0.007952172309160233, -0.3432333171367645, 0.01571478135883808, -0.007378934416919947, 0.6151348352432251, -0.3236461877822876, -0.010880077257752419, -0.01598992384970188, -0.03729613870382309, -0.030400723218917847, -2.992077589035034, 2.2468864917755127, 1.8794381618499756, 0.33004555106163025, -0.13460682332515717, -0.08918660134077072, 0.020133499056100845, 0.12752413749694824, -0.4848457872867584, 0.020301276817917824, 1.2715742588043213, -0.11788882315158844, 0.07792143523693085, -0.033256225287914276]} +{"t": 17.1691, "q": [-0.3510906994342804, 0.0011044656857848167, 0.004606812261044979, 0.6151944398880005, -0.28592315316200256, 0.007815338671207428, -0.3432333171367645, 0.01571478135883808, -0.007472677621990442, 0.6152796745300293, -0.3236996531486511, -0.010974020697176456, -0.015842612832784653, -0.03611208498477936, -0.03035757876932621, -2.99204158782959, 2.2468624114990234, 1.879426121711731, 0.3309324085712433, -0.13465476036071777, -0.08922255784273148, 0.020121514797210693, 0.1275121569633484, -0.48983123898506165, 0.020313261076807976, 1.2719337940216064, -0.11784088611602783, 0.07788547873497009, -0.033184319734573364]} +{"t": 17.1858, "q": [-0.35115036368370056, 0.0011044656857848167, 0.0045130690559744835, 0.6151518821716309, -0.2858273684978485, 0.007664053700864315, -0.34335261583328247, 0.015723302960395813, -0.007526245433837175, 0.6155268549919128, -0.3238312005996704, -0.011219806037843227, -0.015735477209091187, -0.034920137375593185, -0.030221451073884964, -2.9920055866241455, 2.2468864917755127, 1.8794500827789307, 0.3319869935512543, -0.13464276492595673, -0.08922255784273148, 0.0201694518327713, 0.12754811346530914, -0.4953080415725708, 0.02034921385347843, 1.272580862045288, -0.11785287410020828, 0.0779094472527504, -0.0331004299223423]} +{"t": 17.2025, "q": [-0.35125264525413513, 0.0011044656857848167, 0.00445950124412775, 0.6151263117790222, -0.2857648730278015, 0.007555951829999685, -0.34358271956443787, 0.015723302960395813, -0.007553029339760542, 0.6158421635627747, -0.3240368068218231, -0.011537631042301655, -0.015574774704873562, -0.03378107771277428, -0.030023088678717613, -2.9918737411499023, 2.2468864917755127, 1.879426121711731, 0.33359289169311523, -0.13469070196151733, -0.08925850689411163, 0.020121514797210693, 0.12752413749694824, -0.5005451440811157, 0.020325245335698128, 1.2730962038040161, -0.11784088611602783, 0.07789746671915054, -0.033004555851221085]} +{"t": 17.2193, "q": [-0.3512270748615265, 0.00107889948412776, 0.0045264605432748795, 0.6151092648506165, -0.2856607735157013, 0.007361336145550013, -0.34368500113487244, 0.01569773629307747, -0.007553029339760542, 0.6163364052772522, -0.3241519331932068, -0.011754515580832958, -0.015521206893026829, -0.03265691176056862, -0.029717963188886642, -2.9918618202209473, 2.2468624114990234, 1.8794500827789307, 0.33536654710769653, -0.13469070196151733, -0.08924652636051178, 0.020121514797210693, 0.1275840550661087, -0.5062256455421448, 0.020325245335698128, 1.2733359336853027, -0.11784088611602783, 0.07789746671915054, -0.03296860307455063]} +{"t": 17.236, "q": [-0.35130375623703003, 0.0010874215513467789, 0.004553244449198246, 0.6150325536727905, -0.2855774462223053, 0.007231646217405796, -0.34409406781196594, 0.015740348026156425, -0.007553029339760542, 0.6166773438453674, -0.32435342669487, -0.012094138190150261, -0.015481031499803066, -0.03168533742427826, -0.02975045144557953, -2.9919216632843018, 2.2468624114990234, 1.879426121711731, 0.337272047996521, -0.13467872142791748, -0.08918660134077072, 0.020145483314990997, 0.1276080310344696, -0.5121099352836609, 0.020313261076807976, 1.2733359336853027, -0.11784088611602783, 0.0779094472527504, -0.03290868178009987]} +{"t": 17.2527, "q": [-0.35148271918296814, 0.001070377416908741, 0.0045264605432748795, 0.6149387955665588, -0.28548169136047363, 0.007051439490169287, -0.3444264233112335, 0.015723302960395813, -0.007553029339760542, 0.6169329881668091, -0.3244932293891907, -0.01231083832681179, -0.015481031499803066, -0.03072906658053398, -0.029832322150468826, -2.9918618202209473, 2.2468504905700684, 1.8794381618499756, 0.3389738202095032, -0.13460682332515717, -0.08918660134077072, 0.02015746757388115, 0.12741628289222717, -0.5191686153411865, 0.020289292559027672, 1.273311972618103, -0.11781691759824753, 0.0779334157705307, -0.03287272900342941]} +{"t": 17.2696, "q": [-0.351678729057312, 0.0011555985547602177, 0.0044996771030128, 0.6148279905319214, -0.2853608727455139, 0.006856909953057766, -0.34463948011398315, 0.015808524563908577, -0.007740515749901533, 0.6170693039894104, -0.32458364963531494, -0.012513378635048866, -0.0153738958761096, -0.029757460579276085, -0.02985502779483795, -2.991837978363037, 2.2468504905700684, 1.8794381618499756, 0.3409392237663269, -0.13463078439235687, -0.08925850689411163, 0.020133499056100845, 0.1273084282875061, -0.5256640911102295, 0.020313261076807976, 1.2735276222229004, -0.11782890558242798, 0.0779094472527504, -0.03283677622675896]} +{"t": 17.2863, "q": [-0.3519684970378876, 0.0011641206219792366, 0.004272014833986759, 0.6146405339241028, -0.28516095876693726, 0.006510991137474775, -0.34492921829223633, 0.015851134434342384, -0.00799496192485094, 0.6172312498092651, -0.3246905505657196, -0.01270128320902586, -0.015333720482885838, -0.02891484647989273, -0.029855456203222275, -2.9917898178100586, 2.2468864917755127, 1.8794500827789307, 0.3436596393585205, -0.13459482789039612, -0.08935438096523285, 0.020121514797210693, 0.12732040882110596, -0.5332980155944824, 0.020289292559027672, 1.273695468902588, -0.11785287410020828, 0.0779094472527504, -0.0327768549323082]} +{"t": 17.303, "q": [-0.35248833894729614, 0.0012152530252933502, 0.004044352564960718, 0.6146064400672913, -0.2850193679332733, 0.006251518148928881, -0.34547463059425354, 0.015902267768979073, -0.008195839822292328, 0.6174868941307068, -0.3248180150985718, -0.012939843349158764, -0.015333720482885838, -0.028087368234992027, -0.029867272824048996, -2.9918019771575928, 2.2468385696411133, 1.879486083984375, 0.3460085391998291, -0.13464276492595673, -0.08928247541189194, 0.02010953053832054, 0.12732040882110596, -0.5413634181022644, 0.020289292559027672, 1.2737194299697876, -0.11782890558242798, 0.07789746671915054, -0.03266899660229683]} +{"t": 17.3198, "q": [-0.35312750935554504, 0.0012237750925123692, 0.003937217406928539, 0.6145893931388855, -0.28486526012420654, 0.005984865594655275, -0.34629276394844055, 0.015919310972094536, -0.00831636693328619, 0.617844820022583, -0.32494959235191345, -0.013156604953110218, -0.015320328995585442, -0.027472661808133125, -0.02999054081737995, -2.991813898086548, 2.2468385696411133, 1.8795579671859741, 0.34821364283561707, -0.13461880385875702, -0.08927049487829208, 0.020133499056100845, 0.12729644775390625, -0.5494767427444458, 0.020193420350551605, 1.273767352104187, -0.11781691759824753, 0.07789746671915054, -0.03263304382562637]} +{"t": 17.3365, "q": [-0.35427796840667725, 0.0012578638270497322, 0.003923825453966856, 0.6145893931388855, -0.28471115231513977, 0.005747134797275066, -0.3473665416240692, 0.015961922705173492, -0.008369934745132923, 0.618287980556488, -0.3250318467617035, -0.013286629691720009, -0.015320328995585442, -0.02687337063252926, -0.030212171375751495, -2.9918618202209473, 2.2468624114990234, 1.8795698881149292, 0.3508741557598114, -0.13464276492595673, -0.08930644392967224, 0.020133499056100845, 0.12727247178554535, -0.5583690404891968, 0.02015746757388115, 1.2737553119659424, -0.11782890558242798, 0.07787349820137024, -0.03263304382562637]} +{"t": 17.3532, "q": [-0.35527506470680237, 0.0013004741631448269, 0.003977392800152302, 0.6146149635314941, -0.28455284237861633, 0.005487729329615831, -0.3484147787094116, 0.0160045325756073, -0.008343150839209557, 0.6187822818756104, -0.3250441253185272, -0.013380900025367737, -0.0154542475938797, -0.026342255994677544, -0.03037118725478649, -2.9921014308929443, 2.2468745708465576, 1.8796058893203735, 0.3534986972808838, -0.13464276492595673, -0.08941430598497391, 0.020133499056100845, 0.12711668014526367, -0.56746506690979, 0.019953735172748566, 1.2737194299697876, -0.11782890558242798, 0.0779094472527504, -0.03260907530784607]} +{"t": 17.37, "q": [-0.3559057116508484, 0.0013516070321202278, 0.003937217406928539, 0.6145979166030884, -0.28429868817329407, 0.0051204124465584755, -0.3488493859767914, 0.016149409115314484, -0.008383326232433319, 0.6189101338386536, -0.32504820823669434, -0.013402636162936687, -0.015708694234490395, -0.025802407413721085, -0.030044568702578545, -2.9922094345092773, 2.2468504905700684, 1.8796658515930176, 0.35588353872299194, -0.13466674089431763, -0.089342400431633, 0.020133499056100845, 0.12690095603466034, -0.5769206285476685, 0.019654128700494766, 1.2736834287643433, -0.11784088611602783, 0.07789746671915054, -0.03259709104895592]} +{"t": 17.3868, "q": [-0.3561698794364929, 0.0014709164388477802, 0.003937217406928539, 0.614478588104248, -0.2842028737068176, 0.0049691093154251575, -0.3491562008857727, 0.016268718987703323, -0.00839671865105629, 0.6189442276954651, -0.32503584027290344, -0.013424496166408062, -0.01596313901245594, -0.02537657879292965, -0.029773544520139694, -2.992185354232788, 2.2468385696411133, 1.8796658515930176, 0.3577171266078949, -0.13461880385875702, -0.08930644392967224, 0.020145483314990997, 0.12685301899909973, -0.5854653716087341, 0.018994996324181557, 1.273695468902588, -0.11784088611602783, 0.07789746671915054, -0.03259709104895592]} +{"t": 17.4035, "q": [-0.35623806715011597, 0.0015135272406041622, 0.003990784753113985, 0.6143422722816467, -0.284140408039093, 0.0048610251396894455, -0.3493351638317108, 0.016353938728570938, -0.008343150839209557, 0.618969738483429, -0.32502761483192444, -0.013439069502055645, -0.016164017841219902, -0.02515607513487339, -0.029637925326824188, -2.992161512374878, 2.2468504905700684, 1.8796179294586182, 0.3592391312122345, -0.13460682332515717, -0.08927049487829208, 0.020133499056100845, 0.12680508196353912, -0.5950766801834106, 0.018024275079369545, 1.2736715078353882, -0.11787684261798859, 0.0779094472527504, -0.032585106790065765]} +{"t": 17.4202, "q": [-0.35620397329330444, 0.0015305713750422, 0.004004176706075668, 0.6141377091407776, -0.28413626551628113, 0.004839350935071707, -0.3493947982788086, 0.016388028860092163, -0.00831636693328619, 0.6189782619476318, -0.3250892758369446, -0.013561992906033993, -0.016418464481830597, -0.02511807531118393, -0.02962266467511654, -2.992077589035034, 2.2468624114990234, 1.8796418905258179, 0.3603177070617676, -0.13467872142791748, -0.08931843191385269, 0.020121514797210693, 0.12685301899909973, -0.6038011908531189, 0.0171494260430336, 1.273695468902588, -0.11788882315158844, 0.07789746671915054, -0.03257312253117561]} +{"t": 17.437, "q": [-0.3561869263648987, 0.0015646601095795631, 0.004044352564960718, 0.6140695214271545, -0.2841404676437378, 0.004817633889615536, -0.34937775135040283, 0.016396550461649895, -0.00831636693328619, 0.6189953088760376, -0.3251427412033081, -0.013641443103551865, -0.016672909259796143, -0.02510291151702404, -0.029632261022925377, -2.9921014308929443, 2.2468624114990234, 1.8796179294586182, 0.3614082932472229, -0.13467872142791748, -0.0893903374671936, 0.020121514797210693, 0.1269369125366211, -0.6135324239730835, 0.01607084646821022, 1.2737194299697876, -0.11787684261798859, 0.0779094472527504, -0.032525185495615005]} +{"t": 17.454, "q": [-0.35615283250808716, 0.0015646601095795631, 0.004151487722992897, 0.6139928698539734, -0.28413626551628113, 0.004824899137020111, -0.34936925768852234, 0.016439160332083702, -0.008195839822292328, 0.6190294027328491, -0.3251633048057556, -0.013663056306540966, -0.01699431613087654, -0.025102980434894562, -0.02966170199215412, -2.9922454357147217, 2.2468984127044678, 1.8796179294586182, 0.36282241344451904, -0.13461880385875702, -0.08951018005609512, 0.020133499056100845, 0.12690095603466034, -0.6229640245437622, 0.013218600302934647, 1.2736594676971436, -0.11790081113576889, 0.07788547873497009, -0.032513201236724854]} +{"t": 17.4708, "q": [-0.3561698794364929, 0.0015646601095795631, 0.0041916631162166595, 0.6139758229255676, -0.2841404676437378, 0.004817633889615536, -0.34936925768852234, 0.016439160332083702, -0.008155664429068565, 0.619037926197052, -0.3251632750034332, -0.013692080043256283, -0.017355896532535553, -0.025110583752393723, -0.02966671623289585, -2.9923532009124756, 2.2468864917755127, 1.879653811454773, 0.364284485578537, -0.13465476036071777, -0.08955811709165573, 0.020121514797210693, 0.12676914036273956, -0.6321558952331543, 0.008856342174112797, 1.2737194299697876, -0.11787684261798859, 0.07789746671915054, -0.032525185495615005]} +{"t": 17.4876, "q": [-0.3561784029006958, 0.0015305713750422, 0.004338974133133888, 0.6139161586761475, -0.28414463996887207, 0.004824838601052761, -0.34942036867141724, 0.016413593664765358, -0.008102096617221832, 0.6190294027328491, -0.3251715302467346, -0.0136775067076087, -0.017717478796839714, -0.025095397606492043, -0.02966650016605854, -2.9924371242523193, 2.2468864917755127, 1.8796658515930176, 0.365626722574234, -0.13461880385875702, -0.08949819207191467, 0.020133499056100845, 0.12639762461185455, -0.640389084815979, 0.004314321093261242, 1.2734557390213013, -0.11788882315158844, 0.0779094472527504, -0.032513201236724854]} +{"t": 17.5043, "q": [-0.35616135597229004, 0.0014709164388477802, 0.0044996771030128, 0.6138309240341187, -0.28414878249168396, 0.004832042846828699, -0.34953969717025757, 0.016336895525455475, -0.007968178018927574, 0.6190294027328491, -0.3251756429672241, -0.013670220039784908, -0.017864787951111794, -0.024996789172291756, -0.02970925346016884, -2.9925808906555176, 2.2468745708465576, 1.8797736167907715, 0.3668251633644104, -0.13461880385875702, -0.08937834948301315, 0.020121514797210693, 0.12579841911792755, -0.6484664082527161, -0.0016658073291182518, 1.273467779159546, -0.11793676018714905, 0.07789746671915054, -0.03253716975450516]} +{"t": 17.5211, "q": [-0.3561869263648987, 0.0014112619683146477, 0.004687163513153791, 0.6138224005699158, -0.2841570973396301, 0.004860939458012581, -0.3496078550815582, 0.016277240589261055, -0.00772712379693985, 0.6190464496612549, -0.3251797556877136, -0.013662933371961117, -0.017864787951111794, -0.0247084591537714, -0.02979346178472042, -2.992748737335205, 2.2468745708465576, 1.8798096179962158, 0.36761611700057983, -0.13461880385875702, -0.08942628651857376, 0.020121514797210693, 0.12558269500732422, -0.6561962366104126, -0.005872270558029413, 1.2732040882110596, -0.11796072870492935, 0.07788547873497009, -0.032405346632003784]} +{"t": 17.5378, "q": [-0.35616135597229004, 0.0013430849649012089, 0.004861257970333099, 0.6137797832489014, -0.28416547179222107, 0.0048608784563839436, -0.34968456625938416, 0.01619201898574829, -0.007673555985093117, 0.6190634965896606, -0.325179785490036, -0.0136339096352458, -0.017904965206980705, -0.02413143403828144, -0.02979540452361107, -2.9927966594696045, 2.2468745708465576, 1.8798216581344604, 0.36796364188194275, -0.13461880385875702, -0.08943827450275421, 0.020121514797210693, 0.1254628598690033, -0.6633987426757812, -0.011816445738077164, 1.2731801271438599, -0.11793676018714905, 0.07787349820137024, -0.032417330890893936]} +{"t": 17.5545, "q": [-0.35615283250808716, 0.0012408196926116943, 0.004995177034288645, 0.6137456893920898, -0.28416961431503296, 0.004868082702159882, -0.3497612476348877, 0.016174975782632828, -0.007713731843978167, 0.6190805435180664, -0.3251756727695465, -0.013641196303069592, -0.017918355762958527, -0.023394539952278137, -0.029644016176462173, -2.9927966594696045, 2.2468504905700684, 1.8798335790634155, 0.368431031703949, -0.13461880385875702, -0.08948621153831482, 0.020133499056100845, 0.125486820936203, -0.6705533266067505, -0.015447665937244892, 1.273192048072815, -0.1179487481713295, 0.07786151021718979, -0.03244129940867424]} +{"t": 17.5713, "q": [-0.35614433884620667, 0.0011811647564172745, 0.0052094473503530025, 0.6137542128562927, -0.28418630361557007, 0.004882448352873325, -0.34990614652633667, 0.016089754179120064, -0.007753907702863216, 0.619182825088501, -0.325179785490036, -0.0136339096352458, -0.01797192357480526, -0.02254369854927063, -0.029476534575223923, -2.9927127361297607, 2.2468745708465576, 1.8798456192016602, 0.3688984215259552, -0.13464276492595673, -0.08949819207191467, 0.020121514797210693, 0.1255107969045639, -0.6767971515655518, -0.01918674446642399, 1.2730962038040161, -0.11796072870492935, 0.07792143523693085, -0.03245328366756439]} +{"t": 17.588, "q": [-0.35616135597229004, 0.0011215098202228546, 0.005343366414308548, 0.613737165927887, -0.2841779291629791, 0.004896961152553558, -0.35005953907966614, 0.016047142446041107, -0.007673555985093117, 0.6192339658737183, -0.3251715898513794, -0.013590417802333832, -0.018038883805274963, -0.021419808268547058, -0.029482483863830566, -2.992640733718872, 2.2468624114990234, 1.8797616958618164, 0.36976128816604614, -0.13461880385875702, -0.08951018005609512, 0.02010953053832054, 0.12547484040260315, -0.6830409169197083, -0.02177533693611622, 1.2729883193969727, -0.11793676018714905, 0.07792143523693085, -0.03244129940867424]} +{"t": 17.6048, "q": [-0.3561869263648987, 0.0011044656857848167, 0.005504068918526173, 0.613737165927887, -0.2841779291629791, 0.004896961152553558, -0.3502214550971985, 0.016038620844483376, -0.007660164497792721, 0.6193276643753052, -0.3251715898513794, -0.013590417802333832, -0.018105842173099518, -0.020098503679037094, -0.029486391693353653, -2.9925928115844727, 2.2468504905700684, 1.879725694656372, 0.3709956705570221, -0.13461880385875702, -0.08953414857387543, 0.020121514797210693, 0.12542690336704254, -0.6884098649024963, -0.02389654517173767, 1.272736668586731, -0.1179487481713295, 0.0779094472527504, -0.03242931514978409]} +{"t": 17.6215, "q": [-0.3561698794364929, 0.0010448107495903969, 0.005584420636296272, 0.613737165927887, -0.2841821014881134, 0.004904183559119701, -0.3503151834011078, 0.015987489372491837, -0.007593204732984304, 0.6195322275161743, -0.3251674771308899, -0.013583192601799965, -0.01813262701034546, -0.018488699570298195, -0.029597153887152672, -2.992628812789917, 2.2468504905700684, 1.8797616958618164, 0.3728172481060028, -0.13461880385875702, -0.08957009762525558, 0.020133499056100845, 0.1252111792564392, -0.694042444229126, -0.027587685734033585, 1.2725210189819336, -0.11798469722270966, 0.07792143523693085, -0.03239336237311363]} +{"t": 17.6383, "q": [-0.35629773139953613, 0.0009425454773008823, 0.005584420636296272, 0.6137627363204956, -0.2841779291629791, 0.004896961152553558, -0.35051971673965454, 0.015902267768979073, -0.00739232636988163, 0.6196856498718262, -0.3251716196537018, -0.013575905933976173, -0.01813262701034546, -0.01646125316619873, -0.029867103323340416, -2.9926648139953613, 2.2468745708465576, 1.8798096179962158, 0.3745429813861847, -0.13467872142791748, -0.08951018005609512, 0.02010953053832054, 0.12499547004699707, -0.6987402439117432, -0.03287272900342941, 1.2722573280334473, -0.1179966852068901, 0.0779094472527504, -0.032405346632003784]} +{"t": 17.6551, "q": [-0.3565448522567749, 0.0008914126083254814, 0.0055442447774112225, 0.613737165927887, -0.2841779291629791, 0.004896961152553558, -0.35088616609573364, 0.015859656035900116, -0.007231623865664005, 0.6197282075881958, -0.3251798450946808, -0.013575844466686249, -0.018105842173099518, -0.014350592158734798, -0.03061489947140217, -2.9926886558532715, 2.2468385696411133, 1.8798216581344604, 0.3760649859905243, -0.13467872142791748, -0.08947422355413437, 0.020133499056100845, 0.12489959597587585, -0.7023475170135498, -0.03929627314209938, 1.2719457149505615, -0.11798469722270966, 0.07788547873497009, -0.03242931514978409]} +{"t": 17.6718, "q": [-0.356911301612854, 0.0008061914704740047, 0.005557636730372906, 0.6137797832489014, -0.2841654419898987, 0.004875347949564457, -0.3512611389160156, 0.01582556776702404, -0.00705752894282341, 0.6199753880500793, -0.3251798450946808, -0.013575844466686249, -0.018038883805274963, -0.011829379945993423, -0.03132372722029686, -2.9926528930664062, 2.2468624114990234, 1.8798216581344604, 0.3774791359901428, -0.13463078439235687, -0.08946224302053452, 0.020121514797210693, 0.1248876079916954, -0.7056551575660706, -0.044137902557849884, 1.2714903354644775, -0.1179727166891098, 0.07788547873497009, -0.03242931514978409]} +{"t": 17.6886, "q": [-0.3571925461292267, 0.0006698379293084145, 0.005584420636296272, 0.6137883067131042, -0.28415292501449585, 0.004868186544626951, -0.3518065810203552, 0.015748869627714157, -0.006990569643676281, 0.6203929781913757, -0.3251880705356598, -0.013561271131038666, -0.017838004976511, -0.009398664347827435, -0.031721968203783035, -2.9925808906555176, 2.2468504905700684, 1.8797975778579712, 0.37847381830215454, -0.13466674089431763, -0.08949819207191467, 0.020121514797210693, 0.1248396709561348, -0.708303689956665, -0.04893159121274948, 1.2712746858596802, -0.1179966852068901, 0.0779094472527504, -0.03242931514978409]} +{"t": 17.7054, "q": [-0.3580192029476166, 0.0004993956536054611, 0.005637987982481718, 0.6138394474983215, -0.2841028571128845, 0.004853974562138319, -0.35299113392829895, 0.01561251562088728, -0.007003961596637964, 0.6210065484046936, -0.3251962959766388, -0.0135757215321064, -0.017436247318983078, -0.0068992977030575275, -0.0323052704334259, -2.992521047592163, 2.2468504905700684, 1.8797377347946167, 0.37974414229393005, -0.13470269739627838, -0.08958208560943604, 0.020121514797210693, 0.12476776540279388, -0.7105087637901306, -0.053162023425102234, 1.2711787223815918, -0.11800866574048996, 0.0779334157705307, -0.03239336237311363]} +{"t": 17.7222, "q": [-0.35927194356918335, 0.0002437322400510311, 0.0055978125892579556, 0.6139161586761475, -0.28389862179756165, 0.0046165017411112785, -0.3543376326560974, 0.01540798507630825, -0.0068030827678740025, 0.6215178966522217, -0.3251962959766388, -0.013590233400464058, -0.016900572925806046, -0.004490976221859455, -0.033148378133773804, -2.9924609661102295, 2.2468385696411133, 1.8797377347946167, 0.38117027282714844, -0.13465476036071777, -0.08961803466081619, 0.02010953053832054, 0.12457602471113205, -0.7122824192047119, -0.056721337139606476, 1.271082878112793, -0.1179727166891098, 0.0779094472527504, -0.03238137811422348]} +{"t": 17.7389, "q": [-0.3603116273880005, -3.749784082174301e-05, 0.00546389352530241, 0.6138991117477417, -0.2835943400859833, 0.0042638941667973995, -0.35511314868927, 0.015263108536601067, -0.0067896912805736065, 0.6221399903297424, -0.3251839578151703, -0.013583069667220116, -0.016418464481830597, -0.002279765671119094, -0.03351307287812233, -2.9924609661102295, 2.2468624114990234, 1.879713773727417, 0.38301584124565125, -0.13467872142791748, -0.0896659716963768, 0.02010953053832054, 0.12406069785356522, -0.7141999006271362, -0.058411113917827606, 1.2707353830337524, -0.11798469722270966, 0.0779094472527504, -0.032345425337553024]} +{"t": 17.7558, "q": [-0.36096784472465515, -0.0002675950527191162, 0.005249623209238052, 0.6139246821403503, -0.28346189856529236, 0.0040913717821240425, -0.3555818796157837, 0.01516084372997284, -0.006843258626759052, 0.6225234866142273, -0.3251962959766388, -0.0135757215321064, -0.016030099242925644, -0.0011246073991060257, -0.033374302089214325, -2.9923532009124756, 2.2468624114990234, 1.8797017335891724, 0.385724276304245, -0.13467872142791748, -0.08973787724971771, 0.02010953053832054, 0.12316188216209412, -0.715793788433075, -0.05995707958936691, 1.2704477310180664, -0.1179966852068901, 0.07792143523693085, -0.032345425337553024]} +{"t": 17.7726, "q": [-0.3621268570423126, -0.0003528161905705929, 0.0052094473503530025, 0.6139417290687561, -0.28336673974990845, 0.003969185054302216, -0.3559057116508484, 0.015126754529774189, -0.006816474720835686, 0.6227706074714661, -0.3251921832561493, -0.013583008199930191, -0.01565512642264366, -0.0002887481823563576, -0.03308931738138199, -2.992269277572632, 2.2468385696411133, 1.8796179294586182, 0.38795334100723267, -0.13466674089431763, -0.08959406614303589, 0.02010953053832054, 0.12229901552200317, -0.7168843746185303, -0.06157495081424713, 1.2701361179351807, -0.1179966852068901, 0.0779334157705307, -0.032357409596443176]} +{"t": 17.7893, "q": [-0.3631580173969269, -0.0004295152612030506, 0.00512909609824419, 0.6139246821403503, -0.28329238295555115, 0.0038396455347537994, -0.35598239302635193, 0.015084144659340382, -0.006883434485644102, 0.622915506362915, -0.3252045214176178, -0.013590171001851559, -0.015320328995585442, 0.0007294726674444973, -0.0330696664750576, -2.992161512374878, 2.2468385696411133, 1.8796179294586182, 0.390098512172699, -0.13466674089431763, -0.08959406614303589, 0.02010953053832054, 0.12132829427719116, -0.7176274061203003, -0.06354036182165146, 1.2698125839233398, -0.1179966852068901, 0.07792143523693085, -0.032345425337553024]} +{"t": 17.8061, "q": [-0.3637375235557556, -0.0005232584662735462, 0.005062136333435774, 0.6139246821403503, -0.28327175974845886, 0.0037892123218625784, -0.35623806715011597, 0.015033011324703693, -0.006896826438605785, 0.6230689287185669, -0.3252333104610443, -0.01364076416939497, -0.014891788363456726, 0.0027204975485801697, -0.03329749405384064, -2.9921374320983887, 2.2468385696411133, 1.8796179294586182, 0.39193210005760193, -0.13473863899707794, -0.08958208560943604, 0.02009754627943039, 0.12078900635242462, -0.7176154255867004, -0.06581736356019974, 1.2695128917694092, -0.1179727166891098, 0.0779094472527504, -0.032345425337553024]} +{"t": 17.8228, "q": [-0.3637375235557556, -0.0005829129368066788, 0.005062136333435774, 0.6138394474983215, -0.2832552492618561, 0.003760433755815029, -0.35634031891822815, 0.015007445588707924, -0.0068030827678740025, 0.6233245730400085, -0.32531145215034485, -0.013734540902078152, -0.014583774842321873, 0.0052356780506670475, -0.033278416842222214, -2.9921014308929443, 2.2468504905700684, 1.8795579671859741, 0.39350202679634094, -0.13467872142791748, -0.08965399116277695, 0.020121514797210693, 0.12047741562128067, -0.7172079682350159, -0.06718356907367706, 1.269213318824768, -0.11796072870492935, 0.0779094472527504, -0.03238137811422348]} +{"t": 17.8397, "q": [-0.3640102446079254, -0.000591435469686985, 0.005062136333435774, 0.6138479709625244, -0.28325536847114563, 0.0037315317895263433, -0.3563147783279419, 0.014998923055827618, -0.0068030827678740025, 0.6235376000404358, -0.32545948028564453, -0.01399473287165165, -0.014342720620334148, 0.007530559785664082, -0.03317801281809807, -2.9921014308929443, 2.2468624114990234, 1.87949800491333, 0.39461657404899597, -0.13464276492595673, -0.08960605412721634, 0.020121514797210693, 0.12032162398099899, -0.7168963551521301, -0.06811833381652832, 1.2690455913543701, -0.1179487481713295, 0.07787349820137024, -0.032357409596443176]} +{"t": 17.8566, "q": [-0.3641124963760376, -0.000591435469686985, 0.005062136333435774, 0.6137627363204956, -0.28326380252838135, 0.0037025948986411095, -0.35633182525634766, 0.015007445588707924, -0.0068566505797207355, 0.6237677335739136, -0.32570624351501465, -0.014341253787279129, -0.014141841791570187, 0.009657821618020535, -0.03284405544400215, -2.9920055866241455, 2.2468504905700684, 1.8794140815734863, 0.3949281573295593, -0.13470269739627838, -0.08958208560943604, 0.020121514797210693, 0.12027368694543839, -0.7166566848754883, -0.06852579861879349, 1.2690695524215698, -0.11793676018714905, 0.07792143523693085, -0.03236939385533333]} +{"t": 17.8733, "q": [-0.364155113697052, -0.0005829129368066788, 0.004968393128365278, 0.6136860251426697, -0.28324317932128906, 0.0036521616857498884, -0.3564170300960541, 0.014998923055827618, -0.006829866673797369, 0.6240830421447754, -0.32590797543525696, -0.014593731611967087, -0.013954355381429195, 0.011480877175927162, -0.03234311565756798, -2.9920055866241455, 2.2468745708465576, 1.8793901205062866, 0.39497610926628113, -0.13464276492595673, -0.08960605412721634, 0.020121514797210693, 0.12023773044347763, -0.7131333351135254, -0.0685977041721344, 1.269081473350525, -0.11790081113576889, 0.0779094472527504, -0.03233344107866287]} +{"t": 17.8901, "q": [-0.36430850625038147, -0.000599957536906004, 0.004995177034288645, 0.6136690378189087, -0.2831977903842926, 0.003558542812243104, -0.3567664325237274, 0.015007445588707924, -0.0067896912805736065, 0.6245858669281006, -0.3261263966560364, -0.014933156780898571, -0.01379365287721157, 0.013015064410865307, -0.03185255080461502, -2.991933822631836, 2.247042179107666, 1.8793421983718872, 0.3948562443256378, -0.13473863899707794, -0.08960605412721634, 0.02010953053832054, 0.12026169896125793, -0.7078602313995361, -0.06860969215631485, 1.2690455913543701, -0.1179247796535492, 0.07789746671915054, -0.03233344107866287]} +{"t": 17.907, "q": [-0.3644874691963196, -0.0006340458057820797, 0.005008568987250328, 0.6136605143547058, -0.28314828872680664, 0.003457746934145689, -0.3572351634502411, 0.014990401454269886, -0.006709339562803507, 0.625301718711853, -0.3264313340187073, -0.015366229228675365, -0.013659733347594738, 0.01416928879916668, -0.03138968348503113, -2.991945743560791, 2.2470662593841553, 1.8792463541030884, 0.3947124481201172, -0.13470269739627838, -0.08970192819833755, 0.020121514797210693, 0.12027368694543839, -0.70233553647995, -0.0686216726899147, 1.269081473350525, -0.11790081113576889, 0.07789746671915054, -0.032345425337553024]} +{"t": 17.9237, "q": [-0.364530086517334, -0.0007533556781709194, 0.005102312192320824, 0.6136178970336914, -0.2830864191055298, 0.003320889314636588, -0.3578146696090698, 0.014828480780124664, -0.0066289883106946945, 0.6262561678886414, -0.3268640339374542, -0.015936197713017464, -0.013565990142524242, 0.014875260181725025, -0.03101743571460247, -2.9917778968811035, 2.2471022605895996, 1.8791863918304443, 0.39467647671699524, -0.13470269739627838, -0.08972589671611786, 0.020121514797210693, 0.12027368694543839, -0.695528507232666, -0.06863366067409515, 1.2690695524215698, -0.1179247796535492, 0.0779334157705307, -0.032345425337553024]} +{"t": 17.9404, "q": [-0.36464938521385193, -0.0010345852933824062, 0.005102312192320824, 0.6136264204978943, -0.28302451968193054, 0.0031984918750822544, -0.35825780034065247, 0.014658038504421711, -0.006521853152662516, 0.6274918913841248, -0.32752755284309387, -0.016185080632567406, -0.013391895219683647, 0.015269892290234566, -0.030725941061973572, -2.9916582107543945, 2.2471022605895996, 1.879138469696045, 0.3946884870529175, -0.13466674089431763, -0.08970192819833755, 0.02010953053832054, 0.12035757303237915, -0.6883739233016968, -0.06854976713657379, 1.2690935134887695, -0.11787684261798859, 0.07789746671915054, -0.03226153552532196]} +{"t": 17.9573, "q": [-0.36473461985588074, -0.0013839919120073318, 0.00516927195712924, 0.6136264204978943, -0.2829708158969879, 0.0031049256213009357, -0.35836008191108704, 0.014359764754772186, -0.006441501900553703, 0.6287872195243835, -0.3282240629196167, -0.016303101554512978, -0.013231192715466022, 0.01534568052738905, -0.030588990077376366, -2.9916460514068604, 2.2470901012420654, 1.8791025876998901, 0.3946884870529175, -0.13464276492595673, -0.0896899402141571, 0.02010953053832054, 0.12044146656990051, -0.6814829707145691, -0.06847786158323288, 1.2691174745559692, -0.11788882315158844, 0.0779094472527504, -0.03226153552532196]} +{"t": 17.974, "q": [-0.3647601902484894, -0.0019208851736038923, 0.005182663444429636, 0.6136349439620972, -0.28293365240097046, 0.0030401558615267277, -0.3583686053752899, 0.014001836068928242, -0.006320974789559841, 0.6302189826965332, -0.3288919925689697, -0.01674058847129345, -0.013204408809542656, 0.015353257767856121, -0.030574312433600426, -2.9916820526123047, 2.2471022605895996, 1.8791145086288452, 0.3946884870529175, -0.13466674089431763, -0.08970192819833755, 0.02010953053832054, 0.12041749805212021, -0.6740767359733582, -0.06847786158323288, 1.2691174745559692, -0.11791279166936874, 0.07789746671915054, -0.032225582748651505]} +{"t": 17.9908, "q": [-0.3647942841053009, -0.0023981237318366766, 0.005155880004167557, 0.6136690378189087, -0.28292956948280334, 0.0030185191426426172, -0.35836008191108704, 0.01369503978639841, -0.006307582836598158, 0.6316251158714294, -0.32964980602264404, -0.01697414368391037, -0.013231192715466022, 0.015307627618312836, -0.030534610152244568, -2.9916820526123047, 2.2471261024475098, 1.8790786266326904, 0.3946884870529175, -0.13466674089431763, -0.08972589671611786, 0.02009754627943039, 0.1203695610165596, -0.6669341325759888, -0.06846588104963303, 1.2689976692199707, -0.11793676018714905, 0.07786151021718979, -0.03214169293642044]} +{"t": 18.0076, "q": [-0.36477723717689514, -0.00282422942109406, 0.00512909609824419, 0.6136605143547058, -0.28292128443717957, 0.0030041118152439594, -0.35836008191108704, 0.013285977765917778, -0.006254015490412712, 0.6326221823692322, -0.33017417788505554, -0.0168539360165596, -0.013217801228165627, 0.015322808176279068, -0.030524911358952522, -2.991706132888794, 2.247174024581909, 1.8790905475616455, 0.3946285545825958, -0.13467872142791748, -0.08974986523389816, 0.02009754627943039, 0.12029765546321869, -0.6607382893562317, -0.06850183010101318, 1.2688418626785278, -0.11793676018714905, 0.07786151021718979, -0.03215367719531059]} +{"t": 18.0243, "q": [-0.3647431433200836, -0.003182158339768648, 0.005155880004167557, 0.6136519908905029, -0.2828923463821411, 0.0029681914020329714, -0.3583430349826813, 0.013055880554020405, -0.006160271819680929, 0.6332528591156006, -0.3304773271083832, -0.01669192686676979, -0.013204408809542656, 0.015383554622530937, -0.030505770817399025, -2.991741895675659, 2.247138023376465, 1.8791265487670898, 0.39449673891067505, -0.13461880385875702, -0.08976184576749802, 0.02010953053832054, 0.12020178139209747, -0.6541948914527893, -0.06845389306545258, 1.2686381340026855, -0.1179247796535492, 0.07786151021718979, -0.03209375590085983]} +{"t": 18.041, "q": [-0.3647005259990692, -0.003386689117178321, 0.005155880004167557, 0.6136349439620972, -0.2828467786312103, 0.0029179162811487913, -0.35820668935775757, 0.012970659881830215, -0.006146880332380533, 0.6336789131164551, -0.3305223882198334, -0.01666979305446148, -0.013231192715466022, 0.01559615321457386, -0.03042895346879959, -2.9916820526123047, 2.2471022605895996, 1.879138469696045, 0.39452069997787476, -0.13469070196151733, -0.08978581428527832, 0.02009754627943039, 0.12011788785457611, -0.6480829119682312, -0.06846588104963303, 1.2682546377182007, -0.11790081113576889, 0.07789746671915054, -0.032045818865299225]} +{"t": 18.058, "q": [-0.36464938521385193, -0.0035741757601499557, 0.005182663444429636, 0.6136605143547058, -0.2827848196029663, 0.002809960627928376, -0.3581896424293518, 0.013021792285144329, -0.006039745174348354, 0.6339942812919617, -0.3305469751358032, -0.01662607118487358, -0.013257976621389389, 0.01589980535209179, -0.03027428314089775, -2.991729974746704, 2.2471261024475098, 1.8791505098342896, 0.39456862211227417, -0.13464276492595673, -0.08979780226945877, 0.02010953053832054, 0.11993812769651413, -0.6429776549339294, -0.06845389306545258, 1.2677512168884277, -0.1179247796535492, 0.07787349820137024, -0.03203383460640907]} +{"t": 18.0747, "q": [-0.3646067976951599, -0.003915060311555862, 0.005182663444429636, 0.6136605143547058, -0.2827270030975342, 0.002709199907258153, -0.35812997817993164, 0.013047358952462673, -0.005919218063354492, 0.6343181133270264, -0.33061662316322327, -0.016502156853675842, -0.013244585134088993, 0.016142679378390312, -0.030138935893774033, -2.9916701316833496, 2.2471022605895996, 1.8791624307632446, 0.3946045935153961, -0.13464276492595673, -0.08980978280305862, 0.02010953053832054, 0.11963851749897003, -0.6378483772277832, -0.06846588104963303, 1.2670681476593018, -0.1179247796535492, 0.07789746671915054, -0.03202185034751892]} +{"t": 18.0915, "q": [-0.3646067976951599, -0.004213334061205387, 0.00516927195712924, 0.6136605143547058, -0.28267306089401245, 0.002673437586054206, -0.3581470251083374, 0.013064403086900711, -0.005865650251507759, 0.634505569934845, -0.3306862711906433, -0.01637822575867176, -0.013257976621389389, 0.01625640131533146, -0.0300075002014637, -2.9917898178100586, 2.2471022605895996, 1.8791744709014893, 0.3946045935153961, -0.13469070196151733, -0.08979780226945877, 0.02009754627943039, 0.11885954439640045, -0.632922887802124, -0.06850183010101318, 1.2666007280349731, -0.11788882315158844, 0.07788547873497009, -0.03200986608862877]} +{"t": 18.1084, "q": [-0.3646238446235657, -0.00444343127310276, 0.005182663444429636, 0.6137030720710754, -0.2826606333255768, 0.0026662955060601234, -0.3581129312515259, 0.013192234560847282, -0.005905826110392809, 0.6345908045768738, -0.33070266246795654, -0.016320059075951576, -0.013257976621389389, 0.016241196542978287, -0.02999754250049591, -2.991825819015503, 2.2471022605895996, 1.879210352897644, 0.39456862211227417, -0.13470269739627838, -0.08978581428527832, 0.02010953053832054, 0.11769707500934601, -0.6280213594436646, -0.06856175512075424, 1.2661094665527344, -0.11793676018714905, 0.07789746671915054, -0.03200986608862877]} +{"t": 18.1251, "q": [-0.3645727038383484, -0.004656484350562096, 0.0052094473503530025, 0.6137712597846985, -0.28267303109169006, 0.002687879605218768, -0.3579680621623993, 0.013285977765917778, -0.005892434157431126, 0.6346078515052795, -0.33080917596817017, -0.01597086526453495, -0.013405287638306618, 0.016203243285417557, -0.03001190908253193, -2.9918618202209473, 2.247138023376465, 1.8792223930358887, 0.394580602645874, -0.13471467792987823, -0.08977383375167847, 0.02010953053832054, 0.11639079451560974, -0.6239826679229736, -0.06854976713657379, 1.2657020092010498, -0.11791279166936874, 0.07789746671915054, -0.03197391331195831]} +{"t": 18.1418, "q": [-0.3645641803741455, -0.005005890969187021, 0.005276407115161419, 0.613737165927887, -0.2827019989490509, 0.0027238179463893175, -0.3580021560192108, 0.013294500298798084, -0.005825474392622709, 0.6345908045768738, -0.33125221729278564, -0.015154457651078701, -0.013766868971288204, 0.016150115057826042, -0.030035948380827904, -2.9918618202209473, 2.247150182723999, 1.8792223930358887, 0.39456862211227417, -0.13461880385875702, -0.08976184576749802, 0.02010953053832054, 0.11553991585969925, -0.6201836466789246, -0.0685737356543541, 1.2647671699523926, -0.1179247796535492, 0.07787349820137024, -0.03196192905306816]} +{"t": 18.1586, "q": [-0.36453860998153687, -0.005372342187911272, 0.005356758367270231, 0.613737165927887, -0.2827226221561432, 0.002759791212156415, -0.35802772641181946, 0.013337111100554466, -0.005785298999398947, 0.634573757648468, -0.33139699697494507, -0.014826375991106033, -0.01412845030426979, 0.01610458828508854, -0.030064966529607773, -2.9919817447662354, 2.247150182723999, 1.8792223930358887, 0.39456862211227417, -0.13469070196151733, -0.08976184576749802, 0.02010953053832054, 0.11516840755939484, -0.6170557737350464, -0.06865762919187546, 1.2636406421661377, -0.11793676018714905, 0.07788547873497009, -0.03197391331195831]} +{"t": 18.1754, "q": [-0.3644278347492218, -0.005764359142631292, 0.00546389352530241, 0.613737165927887, -0.2827889025211334, 0.0028316155076026917, -0.3581129312515259, 0.013456420041620731, -0.00575851509347558, 0.634573757648468, -0.33169054985046387, -0.014220979064702988, -0.014556990936398506, 0.01602872833609581, -0.030123144388198853, -2.9921014308929443, 2.247162103652954, 1.8792463541030884, 0.39456862211227417, -0.13464276492595673, -0.08974986523389816, 0.02010953053832054, 0.11484482884407043, -0.6138080358505249, -0.06876548379659653, 1.2626699209213257, -0.11791279166936874, 0.07787349820137024, -0.03196192905306816]} +{"t": 18.1921, "q": [-0.3642999827861786, -0.00621603149920702, 0.005490677431225777, 0.6137201189994812, -0.2828510105609894, 0.0028962090145796537, -0.3582407534122467, 0.013405287638306618, -0.0056112040765583515, 0.6345311403274536, -0.3318765163421631, -0.01386347133666277, -0.015012315474450588, 0.0158921517431736, -0.03022998943924904, -2.9921135902404785, 2.247162103652954, 1.879258394241333, 0.39426901936531067, -0.13467872142791748, -0.08979780226945877, 0.02010953053832054, 0.11459316313266754, -0.6106442213058472, -0.06882540881633759, 1.2617831230163574, -0.11793676018714905, 0.07789746671915054, -0.03194994479417801]} +{"t": 18.2088, "q": [-0.3641892075538635, -0.0065995268523693085, 0.005490677431225777, 0.6137030720710754, -0.28287166357040405, 0.0029322002083063126, -0.35839417576789856, 0.01338824350386858, -0.005624596029520035, 0.6344885230064392, -0.3320046663284302, -0.013608137145638466, -0.015333720482885838, 0.015816250815987587, -0.030278487130999565, -2.9921374320983887, 2.2472219467163086, 1.8792823553085327, 0.39384958148002625, -0.13467872142791748, -0.08984573930501938, 0.02010953053832054, 0.11454522609710693, -0.6077320575714111, -0.06884937733411789, 1.2606446743011475, -0.11790081113576889, 0.07789746671915054, -0.03197391331195831]} +{"t": 18.2255, "q": [-0.36418068408966064, -0.006931888870894909, 0.005490677431225777, 0.6137201189994812, -0.2829584777355194, 0.0030688815750181675, -0.3585646152496338, 0.01341380923986435, -0.005437109619379044, 0.6343947649002075, -0.3321203589439392, -0.01338925026357174, -0.015588166192173958, 0.015725210309028625, -0.030366167426109314, -2.992185354232788, 2.247269868850708, 1.8792463541030884, 0.3937297463417053, -0.13463078439235687, -0.08989367634057999, 0.02009754627943039, 0.11450926959514618, -0.604831874370575, -0.06881342083215714, 1.2594702243804932, -0.1179247796535492, 0.07792143523693085, -0.03194994479417801]} +{"t": 18.2423, "q": [-0.3641636371612549, -0.007315384224057198, 0.00546389352530241, 0.6136945486068726, -0.2830536961555481, 0.0031766442116349936, -0.35868391394615173, 0.013243366964161396, -0.005249623209238052, 0.6342073082923889, -0.33217859268188477, -0.013127285055816174, -0.015695301815867424, 0.015679681673645973, -0.030405092984437943, -2.9922454357147217, 2.247246026992798, 1.879270315170288, 0.3937896490097046, -0.13465476036071777, -0.08988168835639954, 0.02009754627943039, 0.11449728906154633, -0.6021114587783813, -0.06877747178077698, 1.258475422859192, -0.11793676018714905, 0.07789746671915054, -0.03193796053528786]} +{"t": 18.2591, "q": [-0.36418068408966064, -0.007673312909901142, 0.005450501572340727, 0.6136690378189087, -0.2831408679485321, 0.003212195821106434, -0.3588799238204956, 0.013200757093727589, -0.00516927195712924, 0.6340624094009399, -0.33220788836479187, -0.012916415929794312, -0.015695301815867424, 0.015679681673645973, -0.030405092984437943, -2.9922213554382324, 2.2472100257873535, 1.8792823553085327, 0.39392149448394775, -0.13469070196151733, -0.08986970782279968, 0.020133499056100845, 0.11442538350820541, -0.5994988679885864, -0.06881342083215714, 1.2578043937683105, -0.11790081113576889, 0.07789746671915054, -0.03193796053528786]} +{"t": 18.2758, "q": [-0.36423182487487793, -0.00805680826306343, 0.005383542273193598, 0.613575279712677, -0.2832232713699341, 0.003413910511881113, -0.3591611683368683, 0.013098491355776787, -0.005115704145282507, 0.6338834762573242, -0.3322330713272095, -0.012712862342596054, -0.015681909397244453, 0.015679694712162018, -0.030414922162890434, -2.9922332763671875, 2.247162103652954, 1.879258394241333, 0.3940652906894684, -0.13466674089431763, -0.08984573930501938, 0.02009754627943039, 0.11447332054376602, -0.596538782119751, -0.06883738934993744, 1.2565100193023682, -0.11791279166936874, 0.0779094472527504, -0.031925976276397705]} +{"t": 18.2927, "q": [-0.3642403483390808, -0.008193162269890308, 0.005356758367270231, 0.6135582327842712, -0.28330177068710327, 0.0035506626591086388, -0.35940828919410706, 0.013055880554020405, -0.005102312192320824, 0.633687436580658, -0.332282692193985, -0.012610743753612041, -0.015681909397244453, 0.015687258914113045, -0.030390415340662003, -2.9922094345092773, 2.247162103652954, 1.8792344331741333, 0.39417314529418945, -0.13465476036071777, -0.08980978280305862, 0.02010953053832054, 0.11447332054376602, -0.5937584638595581, -0.0688973143696785, 1.2554434537887573, -0.11793676018714905, 0.0779334157705307, -0.03196192905306816]} +{"t": 18.3094, "q": [-0.3642488718032837, -0.008252817206084728, 0.005383542273193598, 0.613507091999054, -0.28338855504989624, 0.0036873440258204937, -0.3597065806388855, 0.013021792285144329, -0.004928217735141516, 0.6334062218666077, -0.33231160044670105, -0.012559665367007256, -0.01565512642264366, 0.01569487527012825, -0.03040522150695324, -2.9921255111694336, 2.247174024581909, 1.8792463541030884, 0.39422109723091125, -0.13463078439235687, -0.08978581428527832, 0.02010953053832054, 0.11444935202598572, -0.5904747843742371, -0.06890929490327835, 1.2543888092041016, -0.11791279166936874, 0.0779094472527504, -0.031925976276397705]} +{"t": 18.3261, "q": [-0.36427441239356995, -0.008252817206084728, 0.005316582508385181, 0.613430380821228, -0.2834629714488983, 0.0038024415262043476, -0.3597491681575775, 0.013021792285144329, -0.004767514765262604, 0.6330482959747314, -0.3323364555835724, -0.012486825697124004, -0.015574774704873562, 0.015664514154195786, -0.03042462095618248, -2.992077589035034, 2.247150182723999, 1.8792223930358887, 0.3943049907684326, -0.13459482789039612, -0.08979780226945877, 0.02009754627943039, 0.11443736404180527, -0.5871671438217163, -0.06893326342105865, 1.2534420490264893, -0.1179247796535492, 0.0779094472527504, -0.03193796053528786]} +{"t": 18.3431, "q": [-0.3643340766429901, -0.008244294673204422, 0.005303190555423498, 0.6133877635002136, -0.28348779678344727, 0.0038311854004859924, -0.35972362756729126, 0.013047358952462673, -0.004740730859339237, 0.632707417011261, -0.3323405981063843, -0.012479528784751892, -0.015467639081180096, 0.015649335458874702, -0.030434319749474525, -2.992065668106079, 2.247150182723999, 1.8792223930358887, 0.3942809998989105, -0.13460682332515717, -0.08980978280305862, 0.02010953053832054, 0.11438942700624466, -0.5844706892967224, -0.0689452514052391, 1.2525193691253662, -0.11791279166936874, 0.0779094472527504, -0.03193796053528786]} +{"t": 18.3598, "q": [-0.364342600107193, -0.00823577307164669, 0.005236231256276369, 0.6132684946060181, -0.2834918200969696, 0.003867264138534665, -0.35973212122917175, 0.013055880554020405, -0.004807690624147654, 0.6324858665466309, -0.33233246207237244, -0.012436007149517536, -0.015333720482885838, 0.015687311068177223, -0.03042972832918167, -2.9920895099639893, 2.247162103652954, 1.8792344331741333, 0.3943289518356323, -0.13463078439235687, -0.08983375132083893, 0.020121514797210693, 0.11429355293512344, -0.5818341374397278, -0.0689212828874588, 1.251572608947754, -0.1179487481713295, 0.07789746671915054, -0.03189002349972725]} +{"t": 18.3765, "q": [-0.36441078782081604, -0.00823577307164669, 0.005236231256276369, 0.6130980253219604, -0.2834959328174591, 0.0038889185525476933, -0.35972362756729126, 0.013081447221338749, -0.004780906718224287, 0.632264256477356, -0.3323654532432556, -0.012406672351062298, -0.015280152671039104, 0.01566450111567974, -0.030414791777729988, -2.9920175075531006, 2.247174024581909, 1.8792463541030884, 0.3943049907684326, -0.13467872142791748, -0.08983375132083893, 0.02010953053832054, 0.11399395018815994, -0.5796769857406616, -0.06893326342105865, 1.2510572671890259, -0.1179247796535492, 0.07792143523693085, -0.0318780392408371]} +{"t": 18.3933, "q": [-0.36441078782081604, -0.008227250538766384, 0.0052094473503530025, 0.6129531264305115, -0.2835041880607605, 0.0039033079519867897, -0.35972362756729126, 0.013072924688458443, -0.004847866017371416, 0.6320853233337402, -0.3323778808116913, -0.012370243668556213, -0.015186409465968609, 0.015664463862776756, -0.030385306105017662, -2.99204158782959, 2.247174024581909, 1.879198431968689, 0.3943049907684326, -0.13469070196151733, -0.08984573930501938, 0.02010953053832054, 0.11369434744119644, -0.577699601650238, -0.06893326342105865, 1.2507935762405396, -0.11790081113576889, 0.07789746671915054, -0.03191399201750755]} +{"t": 18.41, "q": [-0.36441078782081604, -0.008193162269890308, 0.005155880004167557, 0.6128168106079102, -0.28349998593330383, 0.003910555504262447, -0.3597065806388855, 0.013089969754219055, -0.004941609688103199, 0.6318637132644653, -0.33242323994636536, -0.012333537451922894, -0.015079274773597717, 0.015656860545277596, -0.030380327254533768, -2.9920175075531006, 2.247162103652954, 1.879198431968689, 0.3942929804325104, -0.13469070196151733, -0.08984573930501938, 0.02010953053832054, 0.11338275671005249, -0.5756023526191711, -0.06900516897439957, 1.2505419254302979, -0.1179247796535492, 0.0779094472527504, -0.0319020077586174]} +{"t": 18.4268, "q": [-0.3643852174282074, -0.008150551468133926, 0.005048744846135378, 0.6127656698226929, -0.2834624946117401, 0.00393245555460453, -0.35968953371047974, 0.013115535490214825, -0.005008568987250328, 0.6317870020866394, -0.3324315547943115, -0.012289885431528091, -0.014985531568527222, 0.015664437785744667, -0.030365649610757828, -2.9919817447662354, 2.2471859455108643, 1.8792223930358887, 0.39424505829811096, -0.13464276492595673, -0.08983375132083893, 0.02010953053832054, 0.11309513449668884, -0.5735410451889038, -0.06907707452774048, 1.250170350074768, -0.11793676018714905, 0.0779094472527504, -0.0319020077586174]} +{"t": 18.4436, "q": [-0.36432555317878723, -0.008107941597700119, 0.005008568987250328, 0.6127400994300842, -0.2834542393684387, 0.003918066155165434, -0.3596980571746826, 0.013166667893528938, -0.005048744846135378, 0.6317870020866394, -0.332456111907959, -0.012333241291344166, -0.014878395944833755, 0.015649206936359406, -0.030336035415530205, -2.9919216632843018, 2.2471859455108643, 1.8791863918304443, 0.3942570388317108, -0.13464276492595673, -0.08980978280305862, 0.02009754627943039, 0.11281949281692505, -0.5716835260391235, -0.06910104304552078, 1.2498228549957275, -0.11793676018714905, 0.07792143523693085, -0.0319020077586174]} +{"t": 18.4603, "q": [-0.3642403483390808, -0.008073852397501469, 0.0049817850813269615, 0.6127400994300842, -0.2834169566631317, 0.003882180666550994, -0.3595702052116394, 0.013192234560847282, -0.005196055397391319, 0.6318040490150452, -0.3324766755104065, -0.01234031654894352, -0.01479804515838623, 0.015634002164006233, -0.030326077714562416, -2.9918737411499023, 2.2472219467163086, 1.8791863918304443, 0.39435291290283203, -0.13463078439235687, -0.08983375132083893, 0.02010953053832054, 0.1125798150897026, -0.5699817538261414, -0.06910104304552078, 1.2495232820510864, -0.11796072870492935, 0.07792143523693085, -0.03191399201750755]} +{"t": 18.4771, "q": [-0.3642573654651642, -0.008031241595745087, 0.005008568987250328, 0.6127315759658813, -0.28338369727134705, 0.0038824095390737057, -0.3593316078186035, 0.013217801228165627, -0.005289798602461815, 0.6318466663360596, -0.3324601948261261, -0.012354983948171139, -0.014731084927916527, 0.0156339630484581, -0.03029659204185009, -2.9918618202209473, 2.247246026992798, 1.8791744709014893, 0.39437687397003174, -0.13465476036071777, -0.08980978280305862, 0.02010953053832054, 0.11243600398302078, -0.568435788154602, -0.06912501156330109, 1.2492835521697998, -0.11790081113576889, 0.07792143523693085, -0.0319020077586174]} +{"t": 18.494, "q": [-0.36423182487487793, -0.008014197461307049, 0.005035352893173695, 0.6127486228942871, -0.2833090126514435, 0.003839522134512663, -0.35889697074890137, 0.01326893363147974, -0.005289798602461815, 0.6319148540496826, -0.33241474628448486, -0.012435268610715866, -0.014637341722846031, 0.015656718984246254, -0.030272215604782104, -2.991837978363037, 2.2472219467163086, 1.8791744709014893, 0.39431697130203247, -0.13465476036071777, -0.08982177078723907, 0.02010953053832054, 0.11230417340993881, -0.5667939186096191, -0.06910104304552078, 1.2490918636322021, -0.11791279166936874, 0.0779094472527504, -0.03191399201750755]} +{"t": 18.5108, "q": [-0.3641124963760376, -0.007980109192430973, 0.005062136333435774, 0.6127912402153015, -0.283284068107605, 0.003839698154479265, -0.35804474353790283, 0.01341380923986435, -0.005316582508385181, 0.6320853233337402, -0.3323858976364136, -0.012457325123250484, -0.014423071406781673, 0.01564907841384411, -0.030237751081585884, -2.9918737411499023, 2.2472219467163086, 1.8791744709014893, 0.3943049907684326, -0.13466674089431763, -0.08980978280305862, 0.020085562020540237, 0.11212441325187683, -0.5652838945388794, -0.06912501156330109, 1.2488641738891602, -0.11793676018714905, 0.07789746671915054, -0.0319020077586174]} +{"t": 18.5275, "q": [-0.36404433846473694, -0.007997153326869011, 0.005062136333435774, 0.6127997636795044, -0.2832260727882385, 0.0037822811864316463, -0.357916921377182, 0.013516074977815151, -0.005356758367270231, 0.6322727799415588, -0.3322829306125641, -0.012509086169302464, -0.01436950359493494, 0.01574753038585186, -0.030007632449269295, -2.9918618202209473, 2.247246026992798, 1.879210352897644, 0.39431697130203247, -0.13470269739627838, -0.08980978280305862, 0.020121514797210693, 0.11189670860767365, -0.5636181235313416, -0.06912501156330109, 1.2486364841461182, -0.11790081113576889, 0.07792143523693085, -0.03191399201750755]} +{"t": 18.5442, "q": [-0.36395058035850525, -0.007971586659550667, 0.005075528286397457, 0.6128082871437073, -0.28315961360931396, 0.003768261056393385, -0.357916921377182, 0.013626862317323685, -0.005477285478264093, 0.6323665380477905, -0.33220067620277405, -0.012509825639426708, -0.014436463825404644, 0.015724070370197296, -0.0295609999448061, -2.9918618202209473, 2.2472219467163086, 1.8791863918304443, 0.39426901936531067, -0.13466674089431763, -0.08983375132083893, 0.02010953053832054, 0.11166901141405106, -0.5620721578598022, -0.06910104304552078, 1.2483128309249878, -0.1179247796535492, 0.07789746671915054, -0.03191399201750755]} +{"t": 18.561, "q": [-0.36380571126937866, -0.007937498390674591, 0.005155880004167557, 0.6128423810005188, -0.28313058614730835, 0.0037467647343873978, -0.35776352882385254, 0.013677995651960373, -0.005557636730372906, 0.6324347257614136, -0.33218011260032654, -0.012502732686698437, -0.014423071406781673, 0.015829896554350853, -0.029209017753601074, -2.9918737411499023, 2.247246026992798, 1.8791863918304443, 0.3942929804325104, -0.13466674089431763, -0.08985771983861923, 0.020121514797210693, 0.11150123178958893, -0.5604422688484192, -0.06902913749217987, 1.2479653358459473, -0.11787684261798859, 0.07792143523693085, -0.03191399201750755]} +{"t": 18.5777, "q": [-0.36372900009155273, -0.007911932654678822, 0.005196055397391319, 0.6128509044647217, -0.28313884139060974, 0.0037611539009958506, -0.35766124725341797, 0.013763216324150562, -0.005651379935443401, 0.6324602961540222, -0.33217599987983704, -0.012495509348809719, -0.014436463825404644, 0.01582205854356289, -0.029037408530712128, -2.9918737411499023, 2.247246026992798, 1.879198431968689, 0.3942570388317108, -0.13463078439235687, -0.08985771983861923, 0.02009754627943039, 0.11145329475402832, -0.5587405562400818, -0.06902913749217987, 1.2475578784942627, -0.11791279166936874, 0.0779334157705307, -0.03191399201750755]} +{"t": 18.5945, "q": [-0.36368638277053833, -0.007877843454480171, 0.005249623209238052, 0.612825334072113, -0.2831472158432007, 0.0037466592621058226, -0.3574056029319763, 0.013788782991468906, -0.0057719070464372635, 0.6324602961540222, -0.33216366171836853, -0.012502879835665226, -0.014490030705928802, 0.015837233513593674, -0.02902773581445217, -2.9919097423553467, 2.2472219467163086, 1.8791863918304443, 0.3942929804325104, -0.13465476036071777, -0.08985771983861923, 0.02009754627943039, 0.11139337718486786, -0.5569069385528564, -0.06902913749217987, 1.2468267679214478, -0.11788882315158844, 0.0779334157705307, -0.0319020077586174]} +{"t": 18.6112, "q": [-0.36361822485923767, -0.007843755185604095, 0.005329974461346865, 0.6128082871437073, -0.2831472158432007, 0.0037466592621058226, -0.356911301612854, 0.013856959529221058, -0.005932609550654888, 0.6324688196182251, -0.33215951919555664, -0.012510176748037338, -0.014597166329622269, 0.01587507501244545, -0.028934935107827187, -2.991957664489746, 2.2472219467163086, 1.879198431968689, 0.3941851258277893, -0.13464276492595673, -0.08985771983861923, 0.02010953053832054, 0.11127353459596634, -0.5545819997787476, -0.06902913749217987, 1.2458081245422363, -0.11790081113576889, 0.07792143523693085, -0.031925976276397705]} +{"t": 18.6282, "q": [-0.36368638277053833, -0.00780966691672802, 0.005410325713455677, 0.6127315759658813, -0.28315961360931396, 0.003768261056393385, -0.3567153215408325, 0.01389957033097744, -0.005986177362501621, 0.6324262022972107, -0.33217188715934753, -0.012502806261181831, -0.014744477346539497, 0.015890318900346756, -0.028974276036024094, -2.9920055866241455, 2.2472219467163086, 1.879198431968689, 0.39422109723091125, -0.13461880385875702, -0.08986970782279968, 0.02009754627943039, 0.11094995588064194, -0.5524727702140808, -0.06902913749217987, 1.2449932098388672, -0.11791279166936874, 0.0779094472527504, -0.03191399201750755]} +{"t": 18.6449, "q": [-0.36368638277053833, -0.007775578647851944, 0.005490677431225777, 0.6126804351806641, -0.283184677362442, 0.0037392007652670145, -0.35647669434547424, 0.013950702734291553, -0.006120096426457167, 0.6324176788330078, -0.3322090208530426, -0.012451635673642159, -0.014811436645686626, 0.01588273234665394, -0.028979111462831497, -2.9921014308929443, 2.2471261024475098, 1.8792463541030884, 0.3942330777645111, -0.13465476036071777, -0.08986970782279968, 0.02010953053832054, 0.1101110652089119, -0.550207793712616, -0.06902913749217987, 1.2445738315582275, -0.11790081113576889, 0.07789746671915054, -0.03191399201750755]} +{"t": 18.6616, "q": [-0.3636523187160492, -0.007767056114971638, 0.005651379935443401, 0.6124588847160339, -0.2831929326057434, 0.003753590164706111, -0.35643407702445984, 0.013942181132733822, -0.0060933125205338, 0.632400631904602, -0.33224624395370483, -0.012371426448225975, -0.014878395944833755, 0.015913138166069984, -0.028998976573348045, -2.9922213554382324, 2.2471022605895996, 1.879258394241333, 0.3942809998989105, -0.13467872142791748, -0.08990565687417984, 0.02009754627943039, 0.10897255688905716, -0.5482183694839478, -0.06898120045661926, 1.244465947151184, -0.11788882315158844, 0.07789746671915054, -0.03191399201750755]} +{"t": 18.6785, "q": [-0.3637545704841614, -0.007784100715070963, 0.0058388663455843925, 0.6123054623603821, -0.28323861956596375, 0.0037605392280966043, -0.35639145970344543, 0.01389957033097744, -0.0059995693154633045, 0.6323409676551819, -0.3322586417198181, -0.012349535711109638, -0.014998923055827618, 0.01598152332007885, -0.029024068266153336, -2.9922454357147217, 2.247042179107666, 1.8793542385101318, 0.3943289518356323, -0.13463078439235687, -0.08986970782279968, 0.02010953053832054, 0.10779810696840286, -0.5463848114013672, -0.06896921992301941, 1.2441543340682983, -0.1179727166891098, 0.0779094472527504, -0.03191399201750755]} +{"t": 18.6952, "q": [-0.3638227581977844, -0.007775578647851944, 0.005959393456578255, 0.6121946573257446, -0.28323861956596375, 0.0037605392280966043, -0.3564085066318512, 0.013891047798097134, -0.005852258298546076, 0.6322557330131531, -0.3322916626930237, -0.012305662035942078, -0.015065882354974747, 0.016065113246440887, -0.029059091582894325, -2.992305278778076, 2.2469942569732666, 1.8793302774429321, 0.3943049907684326, -0.13464276492595673, -0.08986970782279968, 0.02010953053832054, 0.10671952366828918, -0.5447549223899841, -0.06895723193883896, 1.2438666820526123, -0.11796072870492935, 0.07792143523693085, -0.031925976276397705]} +{"t": 18.712, "q": [-0.3637971878051758, -0.007818189449608326, 0.00613348837941885, 0.6119560599327087, -0.28323450684547424, 0.003753344528377056, -0.35639145970344543, 0.013865482062101364, -0.0057719070464372635, 0.632264256477356, -0.3322875499725342, -0.01229843869805336, -0.015106058679521084, 0.01617150381207466, -0.029109012335538864, -2.9923412799835205, 2.2469582557678223, 1.8793542385101318, 0.3943049907684326, -0.13463078439235687, -0.08986970782279968, 0.02009754627943039, 0.1056169793009758, -0.5431849956512451, -0.06895723193883896, 1.2435550689697266, -0.1179487481713295, 0.0779094472527504, -0.03191399201750755]} +{"t": 18.7287, "q": [-0.3638738691806793, -0.007843755185604095, 0.006200447678565979, 0.6116918921470642, -0.2832842767238617, 0.003781912149861455, -0.35642555356025696, 0.01383991539478302, -0.005691555794328451, 0.6321364045143127, -0.33230820298194885, -0.012261936441063881, -0.015146234072744846, 0.016262708231806755, -0.029158804565668106, -2.9923770427703857, 2.2469942569732666, 1.8793901205062866, 0.39435291290283203, -0.13465476036071777, -0.08986970782279968, 0.02010953053832054, 0.10473014414310455, -0.5416869521141052, -0.06896921992301941, 1.2432794570922852, -0.11796072870492935, 0.0779094472527504, -0.03191399201750755]} +{"t": 18.7454, "q": [-0.36385685205459595, -0.007843755185604095, 0.0061736637726426125, 0.6114532351493835, -0.28331759572029114, 0.0037672591861337423, -0.3565448522567749, 0.013677995651960373, -0.005624596029520035, 0.6319148540496826, -0.3323371112346649, -0.012225359678268433, -0.015159625560045242, 0.016308316960930824, -0.029188601300120354, -2.99238920211792, 2.246922492980957, 1.8794140815734863, 0.3945566415786743, -0.13463078439235687, -0.08980978280305862, 0.02010953053832054, 0.10427474230527878, -0.5405604839324951, -0.06890929490327835, 1.2429319620132446, -0.11793676018714905, 0.0779094472527504, -0.03191399201750755]} +{"t": 18.7622, "q": [-0.36381423473358154, -0.00786932185292244, 0.0060933125205338, 0.6111634969711304, -0.28334254026412964, 0.00376708316616714, -0.3566727042198181, 0.013652428984642029, -0.0055978125892579556, 0.6316080689430237, -0.3323659598827362, -0.012203339487314224, -0.01511945016682148, 0.01640709489583969, -0.02922375500202179, -2.9923770427703857, 2.246946334838867, 1.8794140815734863, 0.39477235078811646, -0.13461880385875702, -0.08980978280305862, 0.020085562020540237, 0.10408299416303635, -0.5393500328063965, -0.06890929490327835, 1.2426203489303589, -0.11790081113576889, 0.0779094472527504, -0.03191399201750755]} +{"t": 18.779, "q": [-0.3637886643409729, -0.007843755185604095, 0.005905826110392809, 0.6109760403633118, -0.2833508551120758, 0.0037670303136110306, -0.356868714094162, 0.013626862317323685, -0.005530852824449539, 0.6311734318733215, -0.33237424492836, -0.012174207717180252, -0.015106058679521084, 0.016551434993743896, -0.02924959920346737, -2.99238920211792, 2.2468984127044678, 1.8794740438461304, 0.3949640989303589, -0.13461880385875702, -0.08979780226945877, 0.02010953053832054, 0.10397513955831528, -0.5385111570358276, -0.0689212828874588, 1.2422488927841187, -0.11790081113576889, 0.0779094472527504, -0.03191399201750755]} +{"t": 18.7957, "q": [-0.3637886643409729, -0.007843755185604095, 0.005745123140513897, 0.6107544302940369, -0.28336748480796814, 0.0037669427692890167, -0.35720106959342957, 0.013618340715765953, -0.005396933760493994, 0.6306450366973877, -0.3323824107646942, -0.01220319140702486, -0.015106058679521084, 0.016802145168185234, -0.029296118766069412, -2.992604970932007, 2.2468984127044678, 1.8796418905258179, 0.39497610926628113, -0.13467872142791748, -0.08980978280305862, 0.020133499056100845, 0.10391521453857422, -0.5378040671348572, -0.06890929490327835, 1.2419731616973877, -0.11796072870492935, 0.07792143523693085, -0.03191399201750755]} +{"t": 18.8124, "q": [-0.36376309394836426, -0.007792622782289982, 0.005584420636296272, 0.6104646921157837, -0.2833881378173828, 0.003802916035056114, -0.35766977071762085, 0.013592774048447609, -0.005196055397391319, 0.6300229430198669, -0.3323741853237152, -0.01220326591283083, -0.015132841654121876, 0.017068076878786087, -0.02936241216957569, -2.992616891860962, 2.246922492980957, 1.8796658515930176, 0.3949640989303589, -0.13460682332515717, -0.08985771983861923, 0.020121514797210693, 0.10387926548719406, -0.5373007655143738, -0.06890929490327835, 1.2416375875473022, -0.11793676018714905, 0.07792143523693085, -0.03191399201750755]} +{"t": 18.8292, "q": [-0.363711953163147, -0.007758534513413906, 0.005396933760493994, 0.6100897192955017, -0.28345075249671936, 0.0037375136744230986, -0.35825780034065247, 0.013584252446889877, -0.005048744846135378, 0.6295115947723389, -0.33239468932151794, -0.012224860489368439, -0.015146234072744846, 0.017235293984413147, -0.029442502185702324, -2.9925568103790283, 2.2468984127044678, 1.8795579671859741, 0.3949640989303589, -0.13464276492595673, -0.08984573930501938, 0.02010953053832054, 0.10386727750301361, -0.5369292497634888, -0.06893326342105865, 1.2413619756698608, -0.11793676018714905, 0.07792143523693085, -0.031925976276397705]} +{"t": 18.8459, "q": [-0.36367788910865784, -0.007741490378975868, 0.005155880004167557, 0.6096380352973938, -0.28346315026283264, 0.0037590975407510996, -0.358291894197464, 0.013490508310496807, -0.005075528286397457, 0.628736138343811, -0.3324317932128906, -0.012188228778541088, -0.015159625560045242, 0.01744810864329338, -0.029542647302150726, -2.9925448894500732, 2.2468745708465576, 1.8795819282531738, 0.3950599730014801, -0.13464276492595673, -0.08982177078723907, 0.02010953053832054, 0.10393918305635452, -0.5366535782814026, -0.06896921992301941, 1.2411582469940186, -0.1179247796535492, 0.07792143523693085, -0.03191399201750755]} +{"t": 18.8629, "q": [-0.3636949062347412, -0.007707401644438505, 0.004995177034288645, 0.6092545390129089, -0.2834755778312683, 0.0037662393879145384, -0.3582748472690582, 0.013516074977815151, -0.0051424880512058735, 0.6281395554542542, -0.3324276804924011, -0.0121955256909132, -0.015132841654121876, 0.01767619326710701, -0.029692014679312706, -2.9924731254577637, 2.2468624114990234, 1.8795100450515747, 0.39509594440460205, -0.13466674089431763, -0.08984573930501938, 0.02010953053832054, 0.10402307659387589, -0.5365217924118042, -0.06895723193883896, 1.241050362586975, -0.11791279166936874, 0.0779094472527504, -0.031925976276397705]} +{"t": 18.8798, "q": [-0.36367788910865784, -0.007690357510000467, 0.004968393128365278, 0.608802855014801, -0.2834380269050598, 0.0038025998510420322, -0.35825780034065247, 0.013516074977815151, -0.0051424880512058735, 0.6276282072067261, -0.33242353796958923, -0.012202822603285313, -0.015079274773597717, 0.017699003219604492, -0.02970695123076439, -2.99238920211792, 2.246922492980957, 1.8795100450515747, 0.39511990547180176, -0.13466674089431763, -0.08983375132083893, 0.020121514797210693, 0.1040949821472168, -0.5363779664039612, -0.06902913749217987, 1.2409186363220215, -0.1179247796535492, 0.0779334157705307, -0.03191399201750755]} +{"t": 18.8965, "q": [-0.3637034296989441, -0.007681835442781448, 0.004941609688103199, 0.6084534525871277, -0.2834298312664032, 0.0037737684324383736, -0.35825780034065247, 0.013533119112253189, -0.00516927195712924, 0.6272532343864441, -0.33241531252861023, -0.01220287848263979, -0.015025706961750984, 0.017729351297020912, -0.029687626287341118, -2.9923532009124756, 2.2468984127044678, 1.8795340061187744, 0.3951558470726013, -0.13464276492595673, -0.08984573930501938, 0.020121514797210693, 0.10410696268081665, -0.5362941026687622, -0.06900516897439957, 1.2407747507095337, -0.11796072870492935, 0.07789746671915054, -0.03191399201750755]} +{"t": 18.9133, "q": [-0.36372047662734985, -0.007681835442781448, 0.004941609688103199, 0.6079336404800415, -0.2834380865097046, 0.00378815783187747, -0.3582748472690582, 0.013550163246691227, -0.005182663444429636, 0.6268271803855896, -0.33241942524909973, -0.012195581570267677, -0.015025706961750984, 0.01774449646472931, -0.029658334329724312, -2.9923532009124756, 2.2468984127044678, 1.8795100450515747, 0.3951558470726013, -0.13464276492595673, -0.08984573930501938, 0.02009754627943039, 0.1041429191827774, -0.5361862182617188, -0.06904111802577972, 1.240583062171936, -0.1179727166891098, 0.0779094472527504, -0.03191399201750755]} +{"t": 18.9302, "q": [-0.36377161741256714, -0.007681835442781448, 0.004955001175403595, 0.6075330972671509, -0.2833922505378723, 0.0038101107347756624, -0.35825780034065247, 0.013558685779571533, -0.0051424880512058735, 0.6264522075653076, -0.33238643407821655, -0.012239454314112663, -0.014998923055827618, 0.01777484640479088, -0.02963901124894619, -2.9922094345092773, 2.2468864917755127, 1.8793901205062866, 0.39509594440460205, -0.13460682332515717, -0.08983375132083893, 0.02010953053832054, 0.10410696268081665, -0.5360783338546753, -0.06906508654356003, 1.2402833700180054, -0.11793676018714905, 0.0779094472527504, -0.03191399201750755]} +{"t": 18.9469, "q": [-0.3637460470199585, -0.007690357510000467, 0.005062136333435774, 0.6073200106620789, -0.28335076570510864, 0.0037959322798997164, -0.35802772641181946, 0.013618340715765953, -0.00516927195712924, 0.626349925994873, -0.3323536515235901, -0.012181652709841728, -0.014905179850757122, 0.017789989709854126, -0.029609719291329384, -2.9921493530273438, 2.2468624114990234, 1.879366159439087, 0.39509594440460205, -0.13470269739627838, -0.08986970782279968, 0.02009754627943039, 0.10410696268081665, -0.5359944701194763, -0.06907707452774048, 1.2398040294647217, -0.11790081113576889, 0.0779334157705307, -0.03191399201750755]} +{"t": 18.9637, "q": [-0.3637545704841614, -0.007673312909901142, 0.005115704145282507, 0.607311487197876, -0.2833091616630554, 0.003796196077018976, -0.3578146696090698, 0.013635384850203991, -0.005276407115161419, 0.626349925994873, -0.3323289155960083, -0.012210913933813572, -0.014851612038910389, 0.01785067282617092, -0.029561256989836693, -2.99204158782959, 2.2468745708465576, 1.879366159439087, 0.3952397406101227, -0.13466674089431763, -0.08984573930501938, 0.02009754627943039, 0.10415489971637726, -0.5360064506530762, -0.06910104304552078, 1.2390490770339966, -0.11790081113576889, 0.0779334157705307, -0.03191399201750755]} +{"t": 18.9804, "q": [-0.3636608421802521, -0.007690357510000467, 0.005182663444429636, 0.6073285341262817, -0.2832260727882385, 0.0037822811864316463, -0.3573288917541504, 0.013737649656832218, -0.005303190555423498, 0.6264181137084961, -0.33217206597328186, -0.012430206872522831, -0.01479804515838623, 0.017896197736263275, -0.02953227236866951, -2.9920175075531006, 2.2468624114990234, 1.8793901205062866, 0.3952637314796448, -0.13464276492595673, -0.08984573930501938, 0.02009754627943039, 0.1040949821472168, -0.5359585285186768, -0.069196917116642, 1.238353967666626, -0.1179247796535492, 0.0779334157705307, -0.031925976276397705]} +{"t": 18.9972, "q": [-0.3634648323059082, -0.007698879577219486, 0.005263015162199736, 0.607379674911499, -0.283151239156723, 0.003782755695283413, -0.356306254863739, 0.013865482062101364, -0.005329974461346865, 0.6265544295310974, -0.3320651650428772, -0.012402109801769257, -0.014771261252462864, 0.0179948341101408, -0.02946947142481804, -2.9920055866241455, 2.2468504905700684, 1.8794381618499756, 0.3952876925468445, -0.13467872142791748, -0.08984573930501938, 0.020085562020540237, 0.10402307659387589, -0.535874605178833, -0.06926882266998291, 1.2374671697616577, -0.11791279166936874, 0.07792143523693085, -0.03191399201750755]} +{"t": 19.0139, "q": [-0.36290237307548523, -0.007707401644438505, 0.005329974461346865, 0.607456386089325, -0.28314298391342163, 0.003768348600715399, -0.35633182525634766, 0.013976269401609898, -0.005517460871487856, 0.6266226172447205, -0.3319331407546997, -0.012563046999275684, -0.014838220551609993, 0.01830541528761387, -0.028947506099939346, -2.9921014308929443, 2.2468984127044678, 1.8794621229171753, 0.3952037990093231, -0.13464276492595673, -0.08983375132083893, 0.02010953053832054, 0.10389124602079391, -0.5357667803764343, -0.06926882266998291, 1.236424446105957, -0.11790081113576889, 0.0779094472527504, -0.031925976276397705]} +{"t": 19.0307, "q": [-0.36266374588012695, -0.007681835442781448, 0.005450501572340727, 0.6075842380523682, -0.28309711813926697, 0.0038047616835683584, -0.3563658893108368, 0.014061490073800087, -0.005812082905322313, 0.6267675161361694, -0.33176419138908386, -0.01268803607672453, -0.01486500445753336, 0.018615780398249626, -0.028396913781762123, -2.992161512374878, 2.2468745708465576, 1.8795100450515747, 0.39519181847572327, -0.13466674089431763, -0.08989367634057999, 0.020085562020540237, 0.10378339141607285, -0.535563051700592, -0.06934072822332382, 1.2353219985961914, -0.11788882315158844, 0.0779334157705307, -0.031925976276397705]} +{"t": 19.0474, "q": [-0.3624592125415802, -0.007681835442781448, 0.005704947747290134, 0.6077461242675781, -0.283088743686676, 0.0038192563224583864, -0.3561698794364929, 0.0140785351395607, -0.006039745174348354, 0.6269805431365967, -0.3316364586353302, -0.012769076973199844, -0.014851612038910389, 0.0190096627920866, -0.02784191258251667, -2.9921374320983887, 2.2468864917755127, 1.879486083984375, 0.39519181847572327, -0.13463078439235687, -0.08986970782279968, 0.02010953053832054, 0.10375942289829254, -0.5353593230247498, -0.06937667727470398, 1.2339078187942505, -0.11791279166936874, 0.0779334157705307, -0.031925976276397705]} +{"t": 19.0642, "q": [-0.36224615573883057, -0.007681835442781448, 0.005972785409539938, 0.6080188751220703, -0.28308454155921936, 0.0038265218026936054, -0.3558460474014282, 0.014087056741118431, -0.006240623537451029, 0.6272447109222412, -0.3315538763999939, -0.012900512665510178, -0.01486500445753336, 0.01945691742002964, -0.02741015888750553, -2.9921493530273438, 2.2468624114990234, 1.8795100450515747, 0.3952397406101227, -0.13464276492595673, -0.08985771983861923, 0.02010953053832054, 0.10371148586273193, -0.535191535949707, -0.06941263377666473, 1.232829213142395, -0.1179247796535492, 0.07789746671915054, -0.03193796053528786]} +{"t": 19.0813, "q": [-0.36207571625709534, -0.007673312909901142, 0.006240623537451029, 0.6082404255867004, -0.283088743686676, 0.0038192563224583864, -0.35556483268737793, 0.014121145009994507, -0.006267406977713108, 0.6274322271347046, -0.33152905106544495, -0.012958849780261517, -0.014851612038910389, 0.019927220419049263, -0.02713075652718544, -2.9921374320983887, 2.246922492980957, 1.8795100450515747, 0.39527571201324463, -0.13460682332515717, -0.08986970782279968, 0.02010953053832054, 0.10366354882717133, -0.5349518656730652, -0.06943660229444504, 1.2319303750991821, -0.11791279166936874, 0.07789746671915054, -0.03193796053528786]} +{"t": 19.098, "q": [-0.3620927631855011, -0.007673312909901142, 0.006521853152662516, 0.6083341836929321, -0.2830928564071655, 0.0038264510221779346, -0.35505348443984985, 0.014172278344631195, -0.006213839631527662, 0.6275259852409363, -0.33159103989601135, -0.012849360704421997, -0.014851612038910389, 0.02042020671069622, -0.02687690779566765, -2.9922094345092773, 2.2468864917755127, 1.8795698881149292, 0.395215779542923, -0.13464276492595673, -0.08985771983861923, 0.02009754627943039, 0.10356767475605011, -0.53459233045578, -0.06942461431026459, 1.2312712669372559, -0.11790081113576889, 0.07792143523693085, -0.03193796053528786]} +{"t": 19.1147, "q": [-0.36211833357810974, -0.007681835442781448, 0.0068030827678740025, 0.6083086133003235, -0.2830969989299774, 0.003833645721897483, -0.3545251190662384, 0.014129667542874813, -0.006187055725604296, 0.627543032169342, -0.3316241204738617, -0.012776429764926434, -0.014851612038910389, 0.020920993760228157, -0.02673596516251564, -2.992305278778076, 2.2468745708465576, 1.8796179294586182, 0.3952037990093231, -0.13463078439235687, -0.08988168835639954, 0.02010953053832054, 0.1034718006849289, -0.5341368913650513, -0.0694725513458252, 1.2307559251785278, -0.11790081113576889, 0.07788547873497009, -0.03191399201750755]} +{"t": 19.1316, "q": [-0.36229729652404785, -0.007681835442781448, 0.0070173535495996475, 0.608274519443512, -0.28310948610305786, 0.0038263455498963594, -0.35423538088798523, 0.014112623408436775, -0.006120096426457167, 0.6275515556335449, -0.33165714144706726, -0.01273257378488779, -0.01486500445753336, 0.021551014855504036, -0.02667994610965252, -2.99241304397583, 2.2468504905700684, 1.879713773727417, 0.39527571201324463, -0.13470269739627838, -0.08986970782279968, 0.02010953053832054, 0.10336394608020782, -0.5335856676101685, -0.06943660229444504, 1.230204701423645, -0.11791279166936874, 0.07792143523693085, -0.031925976276397705]} +{"t": 19.1484, "q": [-0.36229729652404785, -0.007681835442781448, 0.007111096754670143, 0.6082148551940918, -0.2831385135650635, 0.0038478418719023466, -0.35409900546073914, 0.014146711677312851, -0.006106704473495483, 0.6275174617767334, -0.33182650804519653, -0.012433310970664024, -0.014905179850757122, 0.022112734615802765, -0.02663779817521572, -2.9924731254577637, 2.2468504905700684, 1.879713773727417, 0.3953835666179657, -0.13469070196151733, -0.08983375132083893, 0.02010953053832054, 0.10323211550712585, -0.5329145193099976, -0.06946057081222534, 1.2298451662063599, -0.11793676018714905, 0.0779094472527504, -0.03191399201750755]} +{"t": 19.1651, "q": [-0.36233991384506226, -0.007707401644438505, 0.007218231912702322, 0.6081040501594543, -0.28321340680122375, 0.003832925343886018, -0.3540819585323334, 0.014104100875556469, -0.00605313666164875, 0.6275004148483276, -0.33202478289604187, -0.012097472324967384, -0.014958747662603855, 0.02268201857805252, -0.026581035926938057, -2.992496967315674, 2.2468504905700684, 1.8797377347946167, 0.39541950821876526, -0.13471467792987823, -0.08983375132083893, 0.02010953053832054, 0.10316020995378494, -0.5321954488754272, -0.06948453933000565, 1.2296533584594727, -0.11791279166936874, 0.0779094472527504, -0.03194994479417801]} +{"t": 19.1819, "q": [-0.3623825013637543, -0.0077500119805336, 0.007164664100855589, 0.6080358624458313, -0.2832259237766266, 0.003825607243925333, -0.3541245758533478, 0.0140785351395607, -0.0059995693154633045, 0.6274833679199219, -0.3320661187171936, -0.012009965255856514, -0.014985531568527222, 0.023129906505346298, -0.026562005281448364, -2.9924609661102295, 2.2468624114990234, 1.879713773727417, 0.3953835666179657, -0.13463078439235687, -0.08988168835639954, 0.02010953053832054, 0.10314822942018509, -0.5313565731048584, -0.06941263377666473, 1.2295695543289185, -0.11793676018714905, 0.0779094472527504, -0.031925976276397705]} +{"t": 19.1986, "q": [-0.3626552224159241, -0.0077500119805336, 0.007124488707631826, 0.6080018281936646, -0.28324249386787415, 0.00383994379080832, -0.3541671931743622, 0.014087056741118431, -0.006039745174348354, 0.6274833679199219, -0.3320702612400055, -0.012002668343484402, -0.014945355243980885, 0.023592958226799965, -0.026543278247117996, -2.9924609661102295, 2.2468624114990234, 1.8796898126602173, 0.3953595757484436, -0.13464276492595673, -0.08986970782279968, 0.02009754627943039, 0.1031721979379654, -0.5302900075912476, -0.06941263377666473, 1.2295335531234741, -0.11790081113576889, 0.07792143523693085, -0.031925976276397705]} +{"t": 19.2154, "q": [-0.3626807928085327, -0.0077500119805336, 0.007044136989861727, 0.6079165935516357, -0.28323835134506226, 0.0038327493239194155, -0.35431206226348877, 0.014087056741118431, -0.00605313666164875, 0.6274833679199219, -0.33207863569259644, -0.011944479309022427, -0.014931963756680489, 0.02391190081834793, -0.026606297120451927, -2.99238920211792, 2.2468385696411133, 1.879653811454773, 0.3953835666179657, -0.13461880385875702, -0.08984573930501938, 0.02009754627943039, 0.10330402106046677, -0.529139518737793, -0.06941263377666473, 1.2295335531234741, -0.11790081113576889, 0.07792143523693085, -0.03193796053528786]} +{"t": 19.2323, "q": [-0.36285123229026794, -0.0077500119805336, 0.006977177690714598, 0.6077802181243896, -0.2832634150981903, 0.00380370719358325, -0.35458478331565857, 0.014061490073800087, -0.005932609550654888, 0.6274577975273132, -0.3320910632610321, -0.011908050626516342, -0.014931963756680489, 0.024200482293963432, -0.026668908074498177, -2.9923171997070312, 2.2468745708465576, 1.8796418905258179, 0.39534759521484375, -0.13465476036071777, -0.08984573930501938, 0.02010953053832054, 0.10342386364936829, -0.5278452038764954, -0.06938866525888443, 1.2295455932617188, -0.11791279166936874, 0.07792143523693085, -0.03193796053528786]} +{"t": 19.249, "q": [-0.36284270882606506, -0.007724445778876543, 0.0067896912805736065, 0.6077461242675781, -0.283284068107605, 0.003839698154479265, -0.3547637462615967, 0.01398479100316763, -0.005745123140513897, 0.6274407505989075, -0.3320786654949188, -0.011929959058761597, -0.014931963756680489, 0.024435963481664658, -0.02674548141658306, -2.992305278778076, 2.2468745708465576, 1.8796058893203735, 0.39532363414764404, -0.13470269739627838, -0.08985771983861923, 0.020133499056100845, 0.10353171825408936, -0.5266587734222412, -0.06935270875692368, 1.2295575141906738, -0.11793676018714905, 0.07792143523693085, -0.031925976276397705]} +{"t": 19.2658, "q": [-0.3628768026828766, -0.007732967846095562, 0.006535245105624199, 0.6077035069465637, -0.283296674489975, 0.003803496016189456, -0.3552239239215851, 0.013882526196539402, -0.005624596029520035, 0.6274322271347046, -0.3320951759815216, -0.01190075371414423, -0.014931963756680489, 0.02467130497097969, -0.02676333673298359, -2.992305278778076, 2.2468984127044678, 1.8796058893203735, 0.3953356146812439, -0.13465476036071777, -0.08988168835639954, 0.02009754627943039, 0.10362759232521057, -0.5253644585609436, -0.06937667727470398, 1.2295575141906738, -0.1179487481713295, 0.0779094472527504, -0.031925976276397705]} +{"t": 19.2826, "q": [-0.36285123229026794, -0.0077500119805336, 0.006320974789559841, 0.6076439023017883, -0.2833133935928345, 0.0037745067384094, -0.35616135597229004, 0.0137802604585886, -0.005490677431225777, 0.627406656742096, -0.3321199119091034, -0.011886011809110641, -0.014985531568527222, 0.024914324283599854, -0.02681572362780571, -2.992293357849121, 2.2468984127044678, 1.8796058893203735, 0.3952637314796448, -0.13465476036071777, -0.08985771983861923, 0.02009754627943039, 0.10368751734495163, -0.5239503383636475, -0.06937667727470398, 1.2295935153961182, -0.11793676018714905, 0.07792143523693085, -0.03193796053528786]} +{"t": 19.2993, "q": [-0.36280009150505066, -0.007715923711657524, 0.006079920567572117, 0.6076098084449768, -0.28332170844078064, 0.0037744538858532906, -0.35652783513069153, 0.013763216324150562, -0.005410325713455677, 0.6273469924926758, -0.3321281373500824, -0.011885938234627247, -0.014958747662603855, 0.025111831724643707, -0.026877449825406075, -2.992269277572632, 2.246922492980957, 1.8795819282531738, 0.39525172114372253, -0.13465476036071777, -0.08985771983861923, 0.02009754627943039, 0.10375942289829254, -0.5224403142929077, -0.06942461431026459, 1.2295575141906738, -0.11793676018714905, 0.0779334157705307, -0.031925976276397705]} +{"t": 19.316, "q": [-0.36276599764823914, -0.007715923711657524, 0.005825474392622709, 0.607592761516571, -0.2833217680454254, 0.0037600118666887283, -0.3568516671657562, 0.013746172189712524, -0.0051424880512058735, 0.6272788047790527, -0.3321405053138733, -0.011878566816449165, -0.014958747662603855, 0.025347545742988586, -0.027042675763368607, -2.992293357849121, 2.246922492980957, 1.8796179294586182, 0.3952397406101227, -0.13465476036071777, -0.08988168835639954, 0.02010953053832054, 0.10375942289829254, -0.5207625031471252, -0.06941263377666473, 1.2295814752578735, -0.11793676018714905, 0.0779334157705307, -0.03193796053528786]} +{"t": 19.3328, "q": [-0.3627489507198334, -0.007681835442781448, 0.0055978125892579556, 0.6075757145881653, -0.28333836793899536, 0.003774330485612154, -0.3572351634502411, 0.013746172189712524, -0.005102312192320824, 0.6271680593490601, -0.3321898281574249, -0.011892643757164478, -0.014931963756680489, 0.025514885783195496, -0.02718229964375496, -2.9922454357147217, 2.2468984127044678, 1.8796418905258179, 0.3952277600765228, -0.13467872142791748, -0.08988168835639954, 0.02009754627943039, 0.10372346639633179, -0.5191805958747864, -0.06943660229444504, 1.2295335531234741, -0.11796072870492935, 0.07794540375471115, -0.03193796053528786]} +{"t": 19.3495, "q": [-0.3627915680408478, -0.007681835442781448, 0.00542371766641736, 0.6075586676597595, -0.28335922956466675, 0.0037525356747210026, -0.35748228430747986, 0.013626862317323685, -0.005075528286397457, 0.6271083950996399, -0.3322225511074066, -0.011964983306825161, -0.014851612038910389, 0.025781018659472466, -0.027367372065782547, -2.9922213554382324, 2.2468984127044678, 1.8796179294586182, 0.3952397406101227, -0.13467872142791748, -0.08986970782279968, 0.020121514797210693, 0.10363958030939102, -0.5174069404602051, -0.06941263377666473, 1.2295095920562744, -0.11796072870492935, 0.07792143523693085, -0.031925976276397705]} +{"t": 19.3663, "q": [-0.36284270882606506, -0.007673312909901142, 0.005356758367270231, 0.6075330972671509, -0.2833509147167206, 0.0037525882944464684, -0.35756751894950867, 0.013609818182885647, -0.005075528286397457, 0.627099871635437, -0.3322307765483856, -0.011964908801019192, -0.014731084927916527, 0.026047106832265854, -0.02753286249935627, -2.9922454357147217, 2.246946334838867, 1.8795819282531738, 0.395215779542923, -0.13469070196151733, -0.08988168835639954, 0.020121514797210693, 0.10355568677186966, -0.5157771110534668, -0.06941263377666473, 1.2294496297836304, -0.1179727166891098, 0.0779334157705307, -0.03193796053528786]} +{"t": 19.383, "q": [-0.36289384961128235, -0.007681835442781448, 0.005356758367270231, 0.6075330972671509, -0.28335508704185486, 0.0037453409750014544, -0.3576868176460266, 0.013601296581327915, -0.005075528286397457, 0.6270657777786255, -0.3322307765483856, -0.011964908801019192, -0.014597166329622269, 0.026335831731557846, -0.027644824236631393, -2.9922094345092773, 2.2469823360443115, 1.8795579671859741, 0.39519181847572327, -0.13464276492595673, -0.08988168835639954, 0.02009754627943039, 0.10348378121852875, -0.5141951441764832, -0.06943660229444504, 1.2293897867202759, -0.1179727166891098, 0.0779094472527504, -0.03193796053528786]} +{"t": 19.3998, "q": [-0.362919420003891, -0.007690357510000467, 0.005329974461346865, 0.6074819564819336, -0.2833467125892639, 0.003759835846722126, -0.35776352882385254, 0.013584252446889877, -0.005048744846135378, 0.6270487308502197, -0.3322307765483856, -0.011964908801019192, -0.014423071406781673, 0.026670079678297043, -0.027747660875320435, -2.992161512374878, 2.2469942569732666, 1.8795579671859741, 0.39516785740852356, -0.13465476036071777, -0.08988168835639954, 0.020121514797210693, 0.10342386364936829, -0.5123975276947021, -0.0694725513458252, 1.2292819023132324, -0.11796072870492935, 0.07792143523693085, -0.03193796053528786]} +{"t": 19.4167, "q": [-0.3630898594856262, -0.007698879577219486, 0.005343366414308548, 0.6074734330177307, -0.2833509147167206, 0.0037525882944464684, -0.357916921377182, 0.013558685779571533, -0.005035352893173695, 0.6270231604576111, -0.3322307765483856, -0.011964908801019192, -0.014342720620334148, 0.026966407895088196, -0.02786462940275669, -2.9921374320983887, 2.2469823360443115, 1.8795698881149292, 0.3951798379421234, -0.13464276492595673, -0.08986970782279968, 0.02009754627943039, 0.10338791459798813, -0.5108515620231628, -0.06946057081222534, 1.2291500568389893, -0.11796072870492935, 0.0779334157705307, -0.03193796053528786]} +{"t": 19.4334, "q": [-0.36312392354011536, -0.007707401644438505, 0.005396933760493994, 0.607456386089325, -0.2833259105682373, 0.0037672065664082766, -0.357916921377182, 0.013533119112253189, -0.004995177034288645, 0.6269975900650024, -0.3322307765483856, -0.011964908801019192, -0.01419540960341692, 0.027323195710778236, -0.027874765917658806, -2.9921374320983887, 2.2469582557678223, 1.8796058893203735, 0.3952277600765228, -0.13467872142791748, -0.08988168835639954, 0.020085562020540237, 0.10332798957824707, -0.5092217326164246, -0.0694725513458252, 1.2290902137756348, -0.11796072870492935, 0.0779334157705307, -0.03197391331195831]} +{"t": 19.4501, "q": [-0.36316654086112976, -0.007732967846095562, 0.005450501572340727, 0.6074734330177307, -0.2833300828933716, 0.0037599410861730576, -0.357916921377182, 0.013533119112253189, -0.004995177034288645, 0.6269890666007996, -0.3322184383869171, -0.011972280219197273, -0.014182017184793949, 0.027740443125367165, -0.02777807042002678, -2.9921255111694336, 2.2469582557678223, 1.8795819282531738, 0.3952037990093231, -0.13461880385875702, -0.08985771983861923, 0.02009754627943039, 0.10326807200908661, -0.5076158046722412, -0.06944858282804489, 1.2289702892303467, -0.1179487481713295, 0.0779334157705307, -0.03193796053528786]} +{"t": 19.467, "q": [-0.3632432520389557, -0.007767056114971638, 0.00546389352530241, 0.607456386089325, -0.28332579135894775, 0.003796090604737401, -0.3578828275203705, 0.013575729914009571, -0.005008568987250328, 0.627031683921814, -0.3322061002254486, -0.011965112760663033, -0.014101666398346424, 0.028150197118520737, -0.027715876698493958, -2.9921255111694336, 2.2469823360443115, 1.8795819282531738, 0.3951798379421234, -0.13463078439235687, -0.08986970782279968, 0.020085562020540237, 0.10323211550712585, -0.5061417818069458, -0.06944858282804489, 1.228886365890503, -0.11796072870492935, 0.077957384288311, -0.03193796053528786]} +{"t": 19.4837, "q": [-0.36326882243156433, -0.007784100715070963, 0.0055442447774112225, 0.6074819564819336, -0.2833216190338135, 0.003803337924182415, -0.35784024000167847, 0.013575729914009571, -0.005008568987250328, 0.6270402073860168, -0.3322060704231262, -0.011979633010923862, -0.013967746868729591, 0.02853701449930668, -0.027589570730924606, -2.9920895099639893, 2.2469823360443115, 1.8795579671859741, 0.3951318860054016, -0.13464276492595673, -0.08986970782279968, 0.02010953053832054, 0.10323211550712585, -0.5045718550682068, -0.06944858282804489, 1.228790521621704, -0.1179727166891098, 0.0779334157705307, -0.03193796053528786]} +{"t": 19.5005, "q": [-0.36339664459228516, -0.007818189449608326, 0.005584420636296272, 0.6074649095535278, -0.2833133935928345, 0.0037745067384094, -0.3577379584312439, 0.013558685779571533, -0.005021960940212011, 0.6270743012428284, -0.3321896493434906, -0.011965260840952396, -0.013914179988205433, 0.028779760003089905, -0.02752475067973137, -2.9920895099639893, 2.2469582557678223, 1.8795340061187744, 0.3951318860054016, -0.13459482789039612, -0.08988168835639954, 0.02010953053832054, 0.1032441034913063, -0.5029419660568237, -0.06948453933000565, 1.22870671749115, -0.11796072870492935, 0.07794540375471115, -0.03193796053528786]} +{"t": 19.5173, "q": [-0.3634307384490967, -0.007818189449608326, 0.0056112040765583515, 0.6074734330177307, -0.2833009660243988, 0.0037673646584153175, -0.35756751894950867, 0.013575729914009571, -0.005075528286397457, 0.6270828247070312, -0.3321896493434906, -0.011965260840952396, -0.013820436783134937, 0.02899211272597313, -0.027449633926153183, -2.992065668106079, 2.246934413909912, 1.8795579671859741, 0.3952037990093231, -0.13464276492595673, -0.08985771983861923, 0.02009754627943039, 0.10318417847156525, -0.5013121366500854, -0.06948453933000565, 1.228658676147461, -0.1179727166891098, 0.077957384288311, -0.03197391331195831]} +{"t": 19.534, "q": [-0.3635585606098175, -0.007843755185604095, 0.005637987982481718, 0.6074904799461365, -0.2832967936992645, 0.0037746119778603315, -0.3573288917541504, 0.013592774048447609, -0.00508892023935914, 0.6271424889564514, -0.3321690559387207, -0.01197272352874279, -0.013766868971288204, 0.029212048277258873, -0.027379650622606277, -2.9921014308929443, 2.246922492980957, 1.8795819282531738, 0.3952397406101227, -0.13464276492595673, -0.08986970782279968, 0.020085562020540237, 0.10314822942018509, -0.4997062385082245, -0.06948453933000565, 1.2284549474716187, -0.11798469722270966, 0.07792143523693085, -0.03194994479417801]} +{"t": 19.5508, "q": [-0.3636011779308319, -0.007826711051166058, 0.00571833923459053, 0.6075160503387451, -0.28326764702796936, 0.00378201762214303, -0.3570391535758972, 0.01369503978639841, -0.005115704145282507, 0.6272788047790527, -0.3321319818496704, -0.011994835920631886, -0.013713301159441471, 0.029333317652344704, -0.027322901412844658, -2.9921255111694336, 2.246934413909912, 1.8795698881149292, 0.3952397406101227, -0.13461880385875702, -0.08985771983861923, 0.02009754627943039, 0.10301639884710312, -0.4981003403663635, -0.06950850784778595, 1.2282272577285767, -0.11798469722270966, 0.0779334157705307, -0.03196192905306816]} +{"t": 19.5675, "q": [-0.3635585606098175, -0.007826711051166058, 0.00579869095236063, 0.607524573802948, -0.28323861956596375, 0.0037605392280966043, -0.35660451650619507, 0.013712083920836449, -0.0051424880512058735, 0.627474844455719, -0.3320866823196411, -0.012017021887004375, -0.013673125766217709, 0.02942442148923874, -0.027334226295351982, -2.992185354232788, 2.246934413909912, 1.8796179294586182, 0.395215779542923, -0.13464276492595673, -0.08986970782279968, 0.02010953053832054, 0.1029205247759819, -0.4966382682323456, -0.06948453933000565, 1.2278916835784912, -0.1179727166891098, 0.0779334157705307, -0.03193796053528786]} +{"t": 19.5842, "q": [-0.36357560753822327, -0.007843755185604095, 0.005986177362501621, 0.6075586676597595, -0.2832135856151581, 0.0037895813584327698, -0.35628920793533325, 0.013729128055274487, -0.005249623209238052, 0.627773106098175, -0.33202069997787476, -0.012090248987078667, -0.013646341860294342, 0.02943962998688221, -0.027344277128577232, -2.9923412799835205, 2.246934413909912, 1.879725694656372, 0.3952037990093231, -0.13469070196151733, -0.08986970782279968, 0.020121514797210693, 0.10275274515151978, -0.49545183777809143, -0.0694725513458252, 1.2275562286376953, -0.11798469722270966, 0.07794540375471115, -0.03191399201750755]} +{"t": 19.6009, "q": [-0.3635585606098175, -0.00786932185292244, 0.006280798930674791, 0.607592761516571, -0.2831971049308777, 0.003746342845261097, -0.3560761511325836, 0.01375469472259283, -0.005249623209238052, 0.6281992197036743, -0.33199605345726013, -0.012075932696461678, -0.013632949441671371, 0.02946244180202484, -0.027359355241060257, -2.992293357849121, 2.246946334838867, 1.8797017335891724, 0.3952037990093231, -0.13464276492595673, -0.08986970782279968, 0.02010953053832054, 0.10241718590259552, -0.494517058134079, -0.0694725513458252, 1.2272446155548096, -0.1179966852068901, 0.07792143523693085, -0.03193796053528786]} +{"t": 19.6177, "q": [-0.36357560753822327, -0.00786932185292244, 0.0065620290115475655, 0.6078143119812012, -0.2831929326057434, 0.003753590164706111, -0.3559909164905548, 0.0137802604585886, -0.005410325713455677, 0.6286423802375793, -0.33198362588882446, -0.012097842060029507, -0.013632949441671371, 0.029500290751457214, -0.027325700968503952, -2.992293357849121, 2.246946334838867, 1.879653811454773, 0.39514386653900146, -0.13469070196151733, -0.08986970782279968, 0.02010953053832054, 0.10211758315563202, -0.493917852640152, -0.0694725513458252, 1.2269809246063232, -0.1179966852068901, 0.0779334157705307, -0.031925976276397705]} +{"t": 19.6344, "q": [-0.3635585606098175, -0.007886365987360477, 0.006776299327611923, 0.6079336404800415, -0.2831804156303406, 0.0037609082646667957, -0.35605910420417786, 0.013814348727464676, -0.0056112040765583515, 0.6289917826652527, -0.33198362588882446, -0.012097842060029507, -0.013659733347594738, 0.029636655002832413, -0.027239814400672913, -2.992293357849121, 2.2469582557678223, 1.8796777725219727, 0.3951558470726013, -0.13465476036071777, -0.08986970782279968, 0.02010953053832054, 0.1017221063375473, -0.4935103952884674, -0.0694965198636055, 1.226837158203125, -0.1179966852068901, 0.0779334157705307, -0.031925976276397705]} +{"t": 19.6513, "q": [-0.3635670840740204, -0.007894888520240784, 0.007044136989861727, 0.6080188751220703, -0.2831721603870392, 0.0037465188652276993, -0.35602501034736633, 0.013814348727464676, -0.005571028683334589, 0.6292474269866943, -0.33197951316833496, -0.012105138972401619, -0.013686517253518105, 0.02975783869624138, -0.02715367265045643, -2.992305278778076, 2.246946334838867, 1.8796658515930176, 0.39511990547180176, -0.13466674089431763, -0.08986970782279968, 0.02009754627943039, 0.1013985276222229, -0.4932827055454254, -0.0694725513458252, 1.2267292737960815, -0.1179966852068901, 0.0779334157705307, -0.03193796053528786]} +{"t": 19.668, "q": [-0.3635585606098175, -0.007911932654678822, 0.007325367070734501, 0.6080955266952515, -0.28318461775779724, 0.0037536427844315767, -0.35596534609794617, 0.013805827125906944, -0.005477285478264093, 0.629571259021759, -0.33197131752967834, -0.012090692296624184, -0.0137802604585886, 0.029818415641784668, -0.027105702087283134, -2.9923291206359863, 2.246922492980957, 1.8796898126602173, 0.3951079249382019, -0.13465476036071777, -0.08985771983861923, 0.020085562020540237, 0.10106296837329865, -0.4931868314743042, -0.0694965198636055, 1.2265135049819946, -0.1179727166891098, 0.0779334157705307, -0.03193796053528786]} +{"t": 19.6847, "q": [-0.36348187923431396, -0.007920454256236553, 0.007633380591869354, 0.6081551909446716, -0.28318455815315247, 0.003768102964386344, -0.35592275857925415, 0.013797304593026638, -0.00542371766641736, 0.6299291849136353, -0.33199191093444824, -0.01208322960883379, -0.013820436783134937, 0.029879022389650345, -0.027067530900239944, -2.9923412799835205, 2.246922492980957, 1.879713773727417, 0.3951079249382019, -0.13465476036071777, -0.08988168835639954, 0.02010953053832054, 0.10073939710855484, -0.4931868314743042, -0.06948453933000565, 1.226333737373352, -0.1179966852068901, 0.077957384288311, -0.03193796053528786]} +{"t": 19.7015, "q": [-0.3633795976638794, -0.00792897678911686, 0.007874434813857079, 0.6081892848014832, -0.28318873047828674, 0.003760837484151125, -0.35588014125823975, 0.013797304593026638, -0.0053701503202319145, 0.6301422715187073, -0.3320125639438629, -0.012046745046973228, -0.013887396082282066, 0.029916955158114433, -0.027063267305493355, -2.9923770427703857, 2.246934413909912, 1.8797377347946167, 0.3951318860054016, -0.13465476036071777, -0.08988168835639954, 0.02010953053832054, 0.10033193230628967, -0.49322277307510376, -0.06948453933000565, 1.2261899709701538, -0.1179966852068901, 0.0779334157705307, -0.03194994479417801]} +{"t": 19.7182, "q": [-0.363336980342865, -0.00792897678911686, 0.00799496192485094, 0.608274519443512, -0.2831804156303406, 0.0037609082646667957, -0.35588014125823975, 0.0137802604585886, -0.005343366414308548, 0.6303041577339172, -0.3320166766643524, -0.012039448134601116, -0.013954355381429195, 0.029992882162332535, -0.027074338868260384, -2.99241304397583, 2.246934413909912, 1.879725694656372, 0.39509594440460205, -0.13465476036071777, -0.08986970782279968, 0.02009754627943039, 0.09975668787956238, -0.49322277307510376, -0.0694965198636055, 1.2260222434997559, -0.1179966852068901, 0.07794540375471115, -0.03193796053528786]} +{"t": 19.7349, "q": [-0.36334550380706787, -0.00792897678911686, 0.00798156950622797, 0.6083341836929321, -0.28318461775779724, 0.0037536427844315767, -0.35592275857925415, 0.013788782991468906, -0.005316582508385181, 0.630466103553772, -0.3320373594760895, -0.012002945877611637, -0.01411505788564682, 0.03006877936422825, -0.02707561105489731, -2.99241304397583, 2.246946334838867, 1.8797616958618164, 0.39509594440460205, -0.13464276492595673, -0.08989367634057999, 0.02009754627943039, 0.09925335645675659, -0.49322277307510376, -0.0694725513458252, 1.2259143590927124, -0.11802065372467041, 0.0779334157705307, -0.031925976276397705]} +{"t": 19.7516, "q": [-0.363336980342865, -0.00792897678911686, 0.007954785600304604, 0.6083341836929321, -0.28318461775779724, 0.0037536427844315767, -0.3559994399547577, 0.0137802604585886, -0.005343366414308548, 0.6305257678031921, -0.33204972743988037, -0.0119810551404953, -0.014222193509340286, 0.030159885063767433, -0.027086935937404633, -2.99238920211792, 2.246946334838867, 1.879713773727417, 0.3950839638710022, -0.13467872142791748, -0.08989367634057999, 0.02009754627943039, 0.09882192313671112, -0.4931628406047821, -0.06950850784778595, 1.225650668144226, -0.1179966852068901, 0.0779334157705307, -0.03194994479417801]} +{"t": 19.7684, "q": [-0.36331993341445923, -0.007920454256236553, 0.007914610207080841, 0.6083853244781494, -0.2831887900829315, 0.0037463954649865627, -0.3559994399547577, 0.013763216324150562, -0.005289798602461815, 0.6305939555168152, -0.33206623792648315, -0.011966369114816189, -0.014235584996640682, 0.030220715329051018, -0.027127142995595932, -2.99238920211792, 2.2469582557678223, 1.8796898126602173, 0.3950839638710022, -0.13467872142791748, -0.08986970782279968, 0.02009754627943039, 0.0984264388680458, -0.4931149184703827, -0.06944858282804489, 1.2253990173339844, -0.11800866574048996, 0.07792143523693085, -0.03193796053528786]} +{"t": 19.7853, "q": [-0.36330291628837585, -0.00792897678911686, 0.007834259420633316, 0.608427882194519, -0.28320547938346863, 0.0037318479735404253, -0.35610172152519226, 0.013746172189712524, -0.005289798602461815, 0.6306450366973877, -0.33209100365638733, -0.01192258857190609, -0.014208801090717316, 0.03026636689901352, -0.027167096734046936, -2.99241304397583, 2.2469823360443115, 1.8797377347946167, 0.39504799246788025, -0.13469070196151733, -0.08988168835639954, 0.02009754627943039, 0.0981268361210823, -0.493090957403183, -0.06946057081222534, 1.2251592874526978, -0.1179966852068901, 0.07792143523693085, -0.03193796053528786]} +{"t": 19.8022, "q": [-0.363294392824173, -0.007920454256236553, 0.0077672996558249, 0.6084193587303162, -0.28320127725601196, 0.003739095525816083, -0.35616135597229004, 0.01372060552239418, -0.005343366414308548, 0.6306535601615906, -0.3320992588996887, -0.011922496370971203, -0.014222193509340286, 0.030342459678649902, -0.027236953377723694, -2.9923412799835205, 2.2469942569732666, 1.8796777725219727, 0.3950120508670807, -0.13470269739627838, -0.08988168835639954, 0.02010953053832054, 0.0977792963385582, -0.49303102493286133, -0.06946057081222534, 1.2250155210494995, -0.11800866574048996, 0.0779334157705307, -0.03196192905306816]} +{"t": 19.8189, "q": [-0.36330291628837585, -0.007911932654678822, 0.007606596685945988, 0.6084534525871277, -0.28319716453552246, 0.0037319008260965347, -0.35619544982910156, 0.013677995651960373, -0.005155880004167557, 0.6306706070899963, -0.33209100365638733, -0.01192258857190609, -0.01419540960341692, 0.030388111248612404, -0.027276907116174698, -2.992305278778076, 2.247018337249756, 1.8796418905258179, 0.39497610926628113, -0.13465476036071777, -0.08986970782279968, 0.02009754627943039, 0.09753961116075516, -0.4929591119289398, -0.06942461431026459, 1.2248237133026123, -0.1179966852068901, 0.0779334157705307, -0.03194994479417801]} +{"t": 19.8357, "q": [-0.36331993341445923, -0.007911932654678822, 0.007472677621990442, 0.6084704995155334, -0.2832055389881134, 0.0037174061872065067, -0.3565448522567749, 0.013643906451761723, -0.00508892023935914, 0.6306450366973877, -0.3321115970611572, -0.011915125884115696, -0.01419540960341692, 0.030426129698753357, -0.027302036061882973, -2.992269277572632, 2.247018337249756, 1.8795819282531738, 0.3949401378631592, -0.13469070196151733, -0.08988168835639954, 0.02009754627943039, 0.09726396948099136, -0.4927913546562195, -0.06941263377666473, 1.224679946899414, -0.11800866574048996, 0.07794540375471115, -0.03196192905306816]} +{"t": 19.8524, "q": [-0.36335402727127075, -0.007903410121798515, 0.007311975117772818, 0.6084619760513306, -0.28320562839508057, 0.0036885221488773823, -0.3566471338272095, 0.013601296581327915, -0.00483447453007102, 0.6305939555168152, -0.33212393522262573, -0.011922292411327362, -0.01419540960341692, 0.03047935664653778, -0.027337219566106796, -2.9922213554382324, 2.247042179107666, 1.8795698881149292, 0.3949161767959595, -0.13466674089431763, -0.08986970782279968, 0.02010953053832054, 0.09697634726762772, -0.49250373244285583, -0.06946057081222534, 1.2245841026306152, -0.1179966852068901, 0.077957384288311, -0.03194994479417801]} +{"t": 19.8692, "q": [-0.36334550380706787, -0.007903410121798515, 0.007137880194932222, 0.6084449291229248, -0.2832222580909729, 0.003688398515805602, -0.3569965362548828, 0.013601296581327915, -0.004660379607230425, 0.6305683851242065, -0.332173228263855, -0.011950907297432423, -0.01419540960341692, 0.03049462102353573, -0.027366867288947105, -2.9922213554382324, 2.2470781803131104, 1.8795579671859741, 0.3949281573295593, -0.13465476036071777, -0.08988168835639954, 0.02009754627943039, 0.09677261859178543, -0.49220409989356995, -0.06946057081222534, 1.2245001792907715, -0.1179966852068901, 0.0779334157705307, -0.03196192905306816]} +{"t": 19.8859, "q": [-0.3633795976638794, -0.007894888520240784, 0.006950393784791231, 0.6084619760513306, -0.28323057293891907, 0.0036883458960801363, -0.3574056029319763, 0.013533119112253189, -0.0043523660860955715, 0.6305172443389893, -0.3322019577026367, -0.011972409673035145, -0.014222193509340286, 0.03050222434103489, -0.02737189270555973, -2.992185354232788, 2.2470662593841553, 1.8794621229171753, 0.39495211839675903, -0.13461880385875702, -0.08990565687417984, 0.02009754627943039, 0.09664079546928406, -0.49174872040748596, -0.06946057081222534, 1.2244282960891724, -0.1179966852068901, 0.07796937227249146, -0.03196192905306816]} +{"t": 19.9026, "q": [-0.3634136915206909, -0.007903410121798515, 0.0067896912805736065, 0.6084704995155334, -0.28323477506637573, 0.0036810985766351223, -0.35766124725341797, 0.013481986708939075, -0.004084527958184481, 0.6304746270179749, -0.33222252130508423, -0.011979502625763416, -0.014168625697493553, 0.03050985559821129, -0.02738671563565731, -2.9921014308929443, 2.2471022605895996, 1.8794021606445312, 0.3949281573295593, -0.13461880385875702, -0.08989367634057999, 0.02010953053832054, 0.096580870449543, -0.4911974370479584, -0.06944858282804489, 1.2243683338165283, -0.1179966852068901, 0.07796937227249146, -0.03193796053528786]} +{"t": 19.9193, "q": [-0.36349040269851685, -0.007903410121798515, 0.006602204404771328, 0.6084704995155334, -0.28323477506637573, 0.0036810985766351223, -0.35789987444877625, 0.01350755337625742, -0.004111311864107847, 0.6304234862327576, -0.33224302530288696, -0.0120010981336236, -0.014074882492423058, 0.03050985559821129, -0.02738671563565731, -2.992065668106079, 2.2471261024475098, 1.8794140815734863, 0.3949281573295593, -0.13464276492595673, -0.08990565687417984, 0.02009754627943039, 0.09647301584482193, -0.49057427048683167, -0.06948453933000565, 1.2243324518203735, -0.11798469722270966, 0.077957384288311, -0.03196192905306816]} +{"t": 19.9362, "q": [-0.3635585606098175, -0.007911932654678822, 0.006495069246739149, 0.6084619760513306, -0.2832472026348114, 0.003688240423798561, -0.35804474353790283, 0.013516074977815151, -0.004084527958184481, 0.6303638219833374, -0.33225125074386597, -0.012001024559140205, -0.013967746868729591, 0.030494648963212967, -0.02737666480243206, -2.99204158782959, 2.247162103652954, 1.8793901205062866, 0.3949041962623596, -0.13469070196151733, -0.08989367634057999, 0.020121514797210693, 0.09642507880926132, -0.4897952973842621, -0.06946057081222534, 1.2242964506149292, -0.1179966852068901, 0.077957384288311, -0.03194994479417801]} +{"t": 19.953, "q": [-0.36362674832344055, -0.007911932654678822, 0.0064013260416686535, 0.6084619760513306, -0.28323477506637573, 0.0036810985766351223, -0.3580617904663086, 0.013481986708939075, -0.004151487722992897, 0.6303126811981201, -0.3322717845439911, -0.012022636830806732, -0.013833828270435333, 0.030494648963212967, -0.02737666480243206, -2.991957664489746, 2.2471859455108643, 1.8793542385101318, 0.3948562443256378, -0.1347266584634781, -0.08990565687417984, 0.02009754627943039, 0.09631721675395966, -0.48893243074417114, -0.0694725513458252, 1.22422456741333, -0.1179966852068901, 0.077957384288311, -0.03196192905306816]} +{"t": 19.9697, "q": [-0.36367788910865784, -0.007920454256236553, 0.006374542135745287, 0.6084790229797363, -0.28323894739151, 0.0036738512571901083, -0.35807883739471436, 0.013456420041620731, -0.0041247038170695305, 0.6302700638771057, -0.3322799503803253, -0.012037083506584167, -0.013726692646741867, 0.030494676902890205, -0.027386462315917015, -2.991933822631836, 2.2472100257873535, 1.8793182373046875, 0.39479634165763855, -0.13464276492595673, -0.08988168835639954, 0.02009754627943039, 0.09606555104255676, -0.487973690032959, -0.06948453933000565, 1.2242006063461304, -0.1179966852068901, 0.077957384288311, -0.03196192905306816]} +{"t": 19.9866, "q": [-0.363711953163147, -0.007911932654678822, 0.006374542135745287, 0.6084790229797363, -0.2832180857658386, 0.003695663996040821, -0.3580617904663086, 0.01347346417605877, -0.004097919911146164, 0.6302445530891418, -0.3322716951370239, -0.012051677331328392, -0.013619557954370975, 0.030487073585391045, -0.02738143503665924, -2.991933822631836, 2.2472100257873535, 1.8793302774429321, 0.39477235078811646, -0.13471467792987823, -0.08991764485836029, 0.020085562020540237, 0.09581387788057327, -0.4869909882545471, -0.0694965198636055, 1.2241406440734863, -0.1179966852068901, 0.077957384288311, -0.03197391331195831]} +{"t": 20.0033, "q": [-0.3637460470199585, -0.007920454256236553, 0.006374542135745287, 0.608504593372345, -0.28323057293891907, 0.0036883458960801363, -0.35804474353790283, 0.013447898440063, -0.004111311864107847, 0.6302615404129028, -0.3322593867778778, -0.012044527567923069, -0.013619557954370975, 0.030487073585391045, -0.02738143503665924, -2.9918737411499023, 2.2472219467163086, 1.8793063163757324, 0.39482030272483826, -0.134750634431839, -0.08988168835639954, 0.02010953053832054, 0.09549030661582947, -0.4859483540058136, -0.0694965198636055, 1.2240447998046875, -0.1179966852068901, 0.07792143523693085, -0.03197391331195831]} +{"t": 20.02, "q": [-0.36378014087677, -0.00792897678911686, 0.0064013260416686535, 0.6084704995155334, -0.28322646021842957, 0.003681151196360588, -0.3580106794834137, 0.013499030843377113, -0.004084527958184481, 0.6302700638771057, -0.3322593867778778, -0.012044527567923069, -0.013539206236600876, 0.030502252280712128, -0.027381690219044685, -2.9918859004974365, 2.247246026992798, 1.879258394241333, 0.3948322832584381, -0.13467872142791748, -0.08990565687417984, 0.02009754627943039, 0.09511879831552505, -0.48483380675315857, -0.0694965198636055, 1.2239848375320435, -0.11798469722270966, 0.07796937227249146, -0.03196192905306816]} +{"t": 20.0368, "q": [-0.36380571126937866, -0.007920454256236553, 0.006414717994630337, 0.6084960699081421, -0.28320562839508057, 0.0036885221488773823, -0.35795101523399353, 0.01347346417605877, -0.004138095770031214, 0.6302700638771057, -0.33224284648895264, -0.01207373384386301, -0.01352581474930048, 0.030487045645713806, -0.027371637523174286, -2.991837978363037, 2.2472338676452637, 1.8792823553085327, 0.3948562443256378, -0.13466674089431763, -0.08988168835639954, 0.02010953053832054, 0.09487911313772202, -0.48356348276138306, -0.06946057081222534, 1.223865032196045, -0.11802065372467041, 0.07796937227249146, -0.03196192905306816]} +{"t": 20.0535, "q": [-0.3637971878051758, -0.007937498390674591, 0.00646828580647707, 0.6085472106933594, -0.283189058303833, 0.0036741674412041903, -0.3577038645744324, 0.013533119112253189, -0.004218447022140026, 0.630321204662323, -0.3322347104549408, -0.01204473152756691, -0.013472246937453747, 0.030471865087747574, -0.02737138420343399, -2.9918618202209473, 2.2472219467163086, 1.879258394241333, 0.39484426379203796, -0.13470269739627838, -0.08988168835639954, 0.020085562020540237, 0.09465140849351883, -0.4821014106273651, -0.0694965198636055, 1.2237931489944458, -0.11800866574048996, 0.0779334157705307, -0.03197391331195831]} +{"t": 20.0702, "q": [-0.3637886643409729, -0.007946020923554897, 0.006495069246739149, 0.6086153984069824, -0.28318068385124207, 0.003688662312924862, -0.3575930893421173, 0.013524597510695457, -0.004245230928063393, 0.6304064393043518, -0.3322058618068695, -0.012066788040101528, -0.013485639356076717, 0.03044147789478302, -0.027361076325178146, -2.9918737411499023, 2.2472219467163086, 1.879258394241333, 0.39484426379203796, -0.13467872142791748, -0.08986970782279968, 0.02009754627943039, 0.09441172331571579, -0.4805075228214264, -0.0694965198636055, 1.2237212657928467, -0.1179966852068901, 0.0779334157705307, -0.03194994479417801]} +{"t": 20.087, "q": [-0.36381423473358154, -0.00792897678911686, 0.006495069246739149, 0.608717679977417, -0.28316813707351685, 0.003710404271259904, -0.357473760843277, 0.013575729914009571, -0.004312190227210522, 0.6304149627685547, -0.33216044306755066, -0.012132552452385426, -0.013472246937453747, 0.03044144995510578, -0.02735127881169319, -2.9918618202209473, 2.247246026992798, 1.8792823553085327, 0.3948322832584381, -0.13471467792987823, -0.08990565687417984, 0.020073577761650085, 0.09427990019321442, -0.47890162467956543, -0.06948453933000565, 1.2236613035202026, -0.11803263425827026, 0.07796937227249146, -0.03196192905306816]} +{"t": 20.1037, "q": [-0.3638312816619873, -0.007920454256236553, 0.00646828580647707, 0.6087858080863953, -0.28315988183021545, 0.003696015104651451, -0.3569965362548828, 0.013643906451761723, -0.004325582180172205, 0.6304746270179749, -0.33215636014938354, -0.012125329114496708, -0.01345885545015335, 0.030411062762141228, -0.027340972796082497, -2.9918618202209473, 2.247246026992798, 1.8792942762374878, 0.3947843611240387, -0.13469070196151733, -0.08986970782279968, 0.02010953053832054, 0.09402823448181152, -0.4771878719329834, -0.0694965198636055, 1.2235534191131592, -0.1179966852068901, 0.07794540375471115, -0.03196192905306816]} +{"t": 20.1204, "q": [-0.3638227581977844, -0.007920454256236553, 0.006495069246739149, 0.6089562773704529, -0.28315988183021545, 0.003696015104651451, -0.35675790905952454, 0.01366095058619976, -0.004405933897942305, 0.6305769085884094, -0.3321358561515808, -0.012089196592569351, -0.013418679125607014, 0.03041866607964039, -0.027345998212695122, -2.991837978363037, 2.247246026992798, 1.8793063163757324, 0.39474838972091675, -0.13469070196151733, -0.08989367634057999, 0.02010953053832054, 0.09390839189291, -0.4755939841270447, -0.0694965198636055, 1.2234935760498047, -0.11800866574048996, 0.07796937227249146, -0.03197391331195831]} +{"t": 20.1371, "q": [-0.3637545704841614, -0.00792897678911686, 0.006535245105624199, 0.6090585589408875, -0.2831474840641022, 0.0036744310054928064, -0.3565959930419922, 0.013686517253518105, -0.004553244449198246, 0.630696177482605, -0.3321359157562256, -0.012074676342308521, -0.013405287638306618, 0.03041861020028591, -0.027326403185725212, -2.9918618202209473, 2.247246026992798, 1.8793063163757324, 0.39472442865371704, -0.13467872142791748, -0.08990565687417984, 0.02009754627943039, 0.09374061226844788, -0.4742876887321472, -0.06942461431026459, 1.2234336137771606, -0.11800866574048996, 0.077957384288311, -0.03194994479417801]} +{"t": 20.1538, "q": [-0.3637460470199585, -0.007920454256236553, 0.006602204404771328, 0.6091607809066772, -0.2831474840641022, 0.0036744310054928064, -0.3565789461135864, 0.013677995651960373, -0.004606812261044979, 0.6308325529098511, -0.33211126923561096, -0.01206037774682045, -0.013391895219683647, 0.03041861020028591, -0.027326403185725212, -2.9918618202209473, 2.247269868850708, 1.8793063163757324, 0.3947603702545166, -0.13465476036071777, -0.08990565687417984, 0.020085562020540237, 0.09365671873092651, -0.47305333614349365, -0.06942461431026459, 1.223421573638916, -0.11802065372467041, 0.077957384288311, -0.03194994479417801]} +{"t": 20.1708, "q": [-0.3637886643409729, -0.00792897678911686, 0.006669164169579744, 0.609177827835083, -0.28315573930740356, 0.003688820404931903, -0.3565874695777893, 0.01369503978639841, -0.004713947419077158, 0.6309007406234741, -0.33211129903793335, -0.012045858427882195, -0.013365112245082855, 0.03041861020028591, -0.027326403185725212, -2.9918737411499023, 2.247246026992798, 1.8793302774429321, 0.3947124481201172, -0.13466674089431763, -0.08986970782279968, 0.02009754627943039, 0.09364473819732666, -0.47205862402915955, -0.06941263377666473, 1.2233976125717163, -0.11800866574048996, 0.077957384288311, -0.031925976276397705]} +{"t": 20.1875, "q": [-0.3638227581977844, -0.007946020923554897, 0.006709339562803507, 0.609246015548706, -0.2831765115261078, 0.003695909632369876, -0.35657042264938354, 0.013677995651960373, -0.004700555466115475, 0.6309263110160828, -0.33211538195610046, -0.012053081765770912, -0.013365112245082855, 0.03041103482246399, -0.027331175282597542, -2.9918618202209473, 2.247246026992798, 1.8793302774429321, 0.3947603702545166, -0.13467872142791748, -0.08988168835639954, 0.02009754627943039, 0.0935608446598053, -0.47125568985939026, -0.06943660229444504, 1.2233856916427612, -0.11803263425827026, 0.0779334157705307, -0.03193796053528786]} +{"t": 20.2042, "q": [-0.3637886643409729, -0.007954543456435204, 0.006749515421688557, 0.609246015548706, -0.2831765115261078, 0.003695909632369876, -0.35652783513069153, 0.013669473119080067, -0.004727339372038841, 0.6309604048728943, -0.33211126923561096, -0.01206037774682045, -0.013365112245082855, 0.03041103482246399, -0.027331175282597542, -2.9918978214263916, 2.247246026992798, 1.8793421983718872, 0.3947124481201172, -0.134750634431839, -0.08988168835639954, 0.02009754627943039, 0.09351290762424469, -0.4706924259662628, -0.06940064579248428, 1.2233617305755615, -0.11802065372467041, 0.077957384288311, -0.03194994479417801]} +{"t": 20.2209, "q": [-0.36377161741256714, -0.007963065057992935, 0.0068030827678740025, 0.6092545390129089, -0.283168226480484, 0.0036815202329307795, -0.3565022647380829, 0.013677995651960373, -0.004888041876256466, 0.6310114860534668, -0.33211129903793335, -0.012045858427882195, -0.013378503732383251, 0.03042621538043022, -0.027331430464982986, -2.9918978214263916, 2.247246026992798, 1.8793781995773315, 0.3948083221912384, -0.1347745954990387, -0.08989367634057999, 0.02009754627943039, 0.09341703355312347, -0.47023701667785645, -0.06938866525888443, 1.223349690437317, -0.11800866574048996, 0.0779334157705307, -0.03193796053528786]} +{"t": 20.2377, "q": [-0.36381423473358154, -0.007971586659550667, 0.0068030827678740025, 0.6092715859413147, -0.2831765115261078, 0.003695909632369876, -0.35649374127388, 0.013703561387956142, -0.004901433829218149, 0.6310285329818726, -0.3321361243724823, -0.011987521313130856, -0.013405287638306618, 0.03041103482246399, -0.027331175282597542, -2.991957664489746, 2.247246026992798, 1.8793901205062866, 0.39477235078811646, -0.13473863899707794, -0.08990565687417984, 0.02009754627943039, 0.09329719096422195, -0.46991345286369324, -0.06941263377666473, 1.2233617305755615, -0.11802065372467041, 0.077957384288311, -0.03193796053528786]} +{"t": 20.2544, "q": [-0.36385685205459595, -0.00798863172531128, 0.006816474720835686, 0.609322726726532, -0.28318890929222107, 0.0037175114266574383, -0.35646817088127136, 0.01366095058619976, -0.004780906718224287, 0.6310029625892639, -0.3321319818496704, -0.011994835920631886, -0.013391895219683647, 0.030403459444642067, -0.02733594737946987, -2.991933822631836, 2.2472219467163086, 1.8794021606445312, 0.3947603702545166, -0.13466674089431763, -0.08990565687417984, 0.020085562020540237, 0.09315337985754013, -0.46966177225112915, -0.06942461431026459, 1.2233377695083618, -0.11802065372467041, 0.07794540375471115, -0.03196192905306816]} +{"t": 20.2711, "q": [-0.36381423473358154, -0.00798863172531128, 0.0068030827678740025, 0.6093312501907349, -0.28318890929222107, 0.0037175114266574383, -0.3564852178096771, 0.013618340715765953, -0.004687163513153791, 0.6310200095176697, -0.3321360647678375, -0.012002076953649521, -0.013391895219683647, 0.030395884066820145, -0.027340717613697052, -2.9919216632843018, 2.247246026992798, 1.879426121711731, 0.39479634165763855, -0.13467872142791748, -0.08989367634057999, 0.02009754627943039, 0.09308147430419922, -0.4694700539112091, -0.06943660229444504, 1.223349690437317, -0.11802065372467041, 0.0779334157705307, -0.03193796053528786]} +{"t": 20.2878, "q": [-0.3638227581977844, -0.007971586659550667, 0.006749515421688557, 0.6093397736549377, -0.28318890929222107, 0.0037175114266574383, -0.35651078820228577, 0.013643906451761723, -0.004673771560192108, 0.6310200095176697, -0.3321360647678375, -0.012002076953649521, -0.013365112245082855, 0.030388308688998222, -0.02734548971056938, -2.991969585418701, 2.247269868850708, 1.8794021606445312, 0.39477235078811646, -0.13466674089431763, -0.08988168835639954, 0.020085562020540237, 0.09303353726863861, -0.46929028630256653, -0.06941263377666473, 1.2233377695083618, -0.11802065372467041, 0.07794540375471115, -0.03193796053528786]} +{"t": 20.3047, "q": [-0.36381423473358154, -0.00798863172531128, 0.00676290737465024, 0.6093482971191406, -0.28318890929222107, 0.0037175114266574383, -0.3565533757209778, 0.013652428984642029, -0.004700555466115475, 0.6310285329818726, -0.3321443200111389, -0.012001984752714634, -0.013365112245082855, 0.03038073144853115, -0.02735026180744171, -2.9919817447662354, 2.247269868850708, 1.8793901205062866, 0.39474838972091675, -0.13467872142791748, -0.08988168835639954, 0.02010953053832054, 0.09302155673503876, -0.46915844082832336, -0.06943660229444504, 1.223349690437317, -0.11800866574048996, 0.077957384288311, -0.03194994479417801]} +{"t": 20.3215, "q": [-0.3638227581977844, -0.00798863172531128, 0.006669164169579744, 0.6093397736549377, -0.28318899869918823, 0.0036886094603687525, -0.3565874695777893, 0.013626862317323685, -0.004687163513153791, 0.6309944987297058, -0.3321525752544403, -0.01198739092797041, -0.013391895219683647, 0.030388308688998222, -0.02734548971056938, -2.9919216632843018, 2.2472939491271973, 1.8793901205062866, 0.39467647671699524, -0.13467872142791748, -0.08988168835639954, 0.02009754627943039, 0.09304552525281906, -0.4690026640892029, -0.06941263377666473, 1.2233736515045166, -0.11803263425827026, 0.07792143523693085, -0.03197391331195831]} +{"t": 20.3382, "q": [-0.3638398051261902, -0.007963065057992935, 0.006655772216618061, 0.6093312501907349, -0.28318890929222107, 0.0037175114266574383, -0.35661303997039795, 0.013643906451761723, -0.004646987654268742, 0.6310029625892639, -0.3321608006954193, -0.011987317353487015, -0.013391895219683647, 0.03036552481353283, -0.027340209111571312, -2.9918978214263916, 2.247269868850708, 1.8793302774429321, 0.39470046758651733, -0.13471467792987823, -0.08986970782279968, 0.02009754627943039, 0.09305750578641891, -0.46878692507743835, -0.06940064579248428, 1.223409652709961, -0.11803263425827026, 0.077957384288311, -0.03194994479417801]} +{"t": 20.3549, "q": [-0.3638312816619873, -0.007963065057992935, 0.006655772216618061, 0.6093482971191406, -0.28318890929222107, 0.0037175114266574383, -0.3565959930419922, 0.013643906451761723, -0.004673771560192108, 0.6309859752655029, -0.3321608006954193, -0.011987317353487015, -0.013418679125607014, 0.030380675569176674, -0.027330666780471802, -2.991933822631836, 2.247282028198242, 1.8793302774429321, 0.3946884870529175, -0.13470269739627838, -0.08988168835639954, 0.02009754627943039, 0.09306949377059937, -0.46858319640159607, -0.06936469674110413, 1.223421573638916, -0.11800866574048996, 0.07796937227249146, -0.03194994479417801]} +{"t": 20.3716, "q": [-0.3638823926448822, -0.007963065057992935, 0.006655772216618061, 0.6093397736549377, -0.2831806242465973, 0.003703104332089424, -0.3565959930419922, 0.01366095058619976, -0.004646987654268742, 0.6309859752655029, -0.33214840292930603, -0.012009208090603352, -0.013432071544229984, 0.03037310019135475, -0.027335437014698982, -2.9918978214263916, 2.2472939491271973, 1.8793302774429321, 0.3946884870529175, -0.134750634431839, -0.08988168835639954, 0.020085562020540237, 0.09309346228837967, -0.46833154559135437, -0.06937667727470398, 1.2234336137771606, -0.1179966852068901, 0.07796937227249146, -0.031985897570848465]} +{"t": 20.3886, "q": [-0.36385685205459595, -0.007946020923554897, 0.006655772216618061, 0.6093397736549377, -0.2831806242465973, 0.003703104332089424, -0.35660451650619507, 0.013669473119080067, -0.004553244449198246, 0.6310029625892639, -0.3321484327316284, -0.011994687840342522, -0.013432071544229984, 0.030380675569176674, -0.027330666780471802, -2.9919216632843018, 2.2473058700561523, 1.8793542385101318, 0.39465251564979553, -0.13470269739627838, -0.08988168835639954, 0.02009754627943039, 0.09306949377059937, -0.46798399090766907, -0.06940064579248428, 1.2234336137771606, -0.11802065372467041, 0.07796937227249146, -0.03197391331195831]} +{"t": 20.4055, "q": [-0.36385685205459595, -0.00792897678911686, 0.006655772216618061, 0.6093397736549377, -0.2831723093986511, 0.00370315695181489, -0.35662156343460083, 0.013669473119080067, -0.004606812261044979, 0.6310114860534668, -0.3321443200111389, -0.012001984752714634, -0.013432071544229984, 0.030373072251677513, -0.027325639501214027, -2.991933822631836, 2.2473058700561523, 1.8793063163757324, 0.3946884870529175, -0.1347266584634781, -0.08986970782279968, 0.020085562020540237, 0.09304552525281906, -0.46758851408958435, -0.06937667727470398, 1.223421573638916, -0.11803263425827026, 0.07796937227249146, -0.03197391331195831]} +{"t": 20.4222, "q": [-0.3638398051261902, -0.00792897678911686, 0.006655772216618061, 0.6093482971191406, -0.2831765115261078, 0.003695909632369876, -0.35661303997039795, 0.013677995651960373, -0.004593420308083296, 0.6310029625892639, -0.33214426040649414, -0.012016522698104382, -0.01345885545015335, 0.030365440994501114, -0.027310816571116447, -2.991957664489746, 2.2473058700561523, 1.8793063163757324, 0.3947124481201172, -0.13469070196151733, -0.08985771983861923, 0.020073577761650085, 0.09304552525281906, -0.46701326966285706, -0.06937667727470398, 1.2234455347061157, -0.11800866574048996, 0.077957384288311, -0.03199788182973862]} +{"t": 20.439, "q": [-0.3638312816619873, -0.00792897678911686, 0.0066289883106946945, 0.6093397736549377, -0.2831765115261078, 0.003695909632369876, -0.3565959930419922, 0.01369503978639841, -0.0045800283551216125, 0.6310114860534668, -0.33213192224502563, -0.012023894116282463, -0.01344546303153038, 0.030372988432645798, -0.027296246960759163, -2.9919817447662354, 2.2473058700561523, 1.8793063163757324, 0.3947124481201172, -0.13467872142791748, -0.08988168835639954, 0.020085562020540237, 0.09304552525281906, -0.46641406416893005, -0.06938866525888443, 1.2234336137771606, -0.11803263425827026, 0.077957384288311, -0.031985897570848465]} +{"t": 20.4557, "q": [-0.3637971878051758, -0.00792897678911686, 0.006655772216618061, 0.6093312501907349, -0.283168226480484, 0.0036815202329307795, -0.3565959930419922, 0.01369503978639841, -0.004713947419077158, 0.6310285329818726, -0.33213186264038086, -0.012038413435220718, -0.013485639356076717, 0.030357807874679565, -0.027295993641018867, -2.991957664489746, 2.2473058700561523, 1.8793901205062866, 0.3946285545825958, -0.13467872142791748, -0.08986970782279968, 0.02010953053832054, 0.09302155673503876, -0.465707004070282, -0.06935270875692368, 1.2234336137771606, -0.11802065372467041, 0.0779334157705307, -0.03197391331195831]} +{"t": 20.4725, "q": [-0.36378014087677, -0.007920454256236553, 0.006669164169579744, 0.6093312501907349, -0.28316405415534973, 0.003688767785206437, -0.35661303997039795, 0.013729128055274487, -0.004673771560192108, 0.6310200095176697, -0.33211955428123474, -0.01203126460313797, -0.013499030843377113, 0.030350176617503166, -0.02728116884827614, -2.9920175075531006, 2.247365713119507, 1.8793302774429321, 0.3941372036933899, -0.13469070196151733, -0.08990565687417984, 0.02009754627943039, 0.09297361969947815, -0.4649280309677124, -0.06930477172136307, 1.2234455347061157, -0.11803263425827026, 0.07796937227249146, -0.03199788182973862]} +{"t": 20.4892, "q": [-0.36378014087677, -0.007911932654678822, 0.006642380263656378, 0.6093397736549377, -0.283168226480484, 0.0036815202329307795, -0.3565959930419922, 0.013771738857030869, -0.004713947419077158, 0.6310285329818726, -0.33211955428123474, -0.01203126460313797, -0.013565990142524242, 0.03031218610703945, -0.02726583741605282, -2.99204158782959, 2.2474136352539062, 1.8793302774429321, 0.3938615620136261, -0.13470269739627838, -0.0899416133761406, 0.020085562020540237, 0.0929376631975174, -0.4640291929244995, -0.06925683468580246, 1.2234455347061157, -0.11803263425827026, 0.077957384288311, -0.031985897570848465]} +{"t": 20.5059, "q": [-0.36376309394836426, -0.007877843454480171, 0.006655772216618061, 0.6093482971191406, -0.28316405415534973, 0.003688767785206437, -0.3565959930419922, 0.013797304593026638, -0.004780906718224287, 0.6310029625892639, -0.33211544156074524, -0.012038561515510082, -0.013592774048447609, 0.03026650659739971, -0.02721608616411686, -2.992065668106079, 2.2474377155303955, 1.8793302774429321, 0.3938376009464264, -0.1347266584634781, -0.08992962539196014, 0.020085562020540237, 0.09284179657697678, -0.4631064236164093, -0.06931675970554352, 1.2234575748443604, -0.11803263425827026, 0.0779334157705307, -0.03197391331195831]} +{"t": 20.5227, "q": [-0.3637545704841614, -0.00786932185292244, 0.0066289883106946945, 0.6093312501907349, -0.28316405415534973, 0.003688767785206437, -0.3565789461135864, 0.013822871260344982, -0.004767514765262604, 0.6310200095176697, -0.33211538195610046, -0.012053081765770912, -0.013632949441671371, 0.03022082708775997, -0.02716633304953575, -2.9921374320983887, 2.2474136352539062, 1.879366159439087, 0.39387354254722595, -0.13471467792987823, -0.0899416133761406, 0.02009754627943039, 0.09279385954141617, -0.4621117115020752, -0.06929279118776321, 1.2234575748443604, -0.11803263425827026, 0.077957384288311, -0.031985897570848465]} +{"t": 20.5395, "q": [-0.3637886643409729, -0.007860800251364708, 0.006682556122541428, 0.6093482971191406, -0.283168226480484, 0.0036815202329307795, -0.3565874695777893, 0.013814348727464676, -0.0047541228123009205, 0.6310114860534668, -0.33211544156074524, -0.012038561515510082, -0.013659733347594738, 0.030213167890906334, -0.027141712605953217, -2.9921374320983887, 2.247365713119507, 1.8793542385101318, 0.39394545555114746, -0.1347266584634781, -0.0899416133761406, 0.020085562020540237, 0.09278187155723572, -0.4609133005142212, -0.06925683468580246, 1.2234455347061157, -0.11804462224245071, 0.077957384288311, -0.03197391331195831]} +{"t": 20.5562, "q": [-0.3637034296989441, -0.007877843454480171, 0.006709339562803507, 0.6093482971191406, -0.2831641137599945, 0.003674325766041875, -0.3565789461135864, 0.013797304593026638, -0.00483447453007102, 0.6310200095176697, -0.33211538195610046, -0.012053081765770912, -0.013659733347594738, 0.0302358940243721, -0.027127398177981377, -2.992185354232788, 2.247377872467041, 1.8793542385101318, 0.39401736855506897, -0.13469070196151733, -0.08992962539196014, 0.02009754627943039, 0.09279385954141617, -0.459990531206131, -0.06926882266998291, 1.2234575748443604, -0.11803263425827026, 0.077957384288311, -0.03199788182973862]} +{"t": 20.573, "q": [-0.3637545704841614, -0.007877843454480171, 0.006709339562803507, 0.6093482971191406, -0.28315994143486023, 0.003681573085486889, -0.35657042264938354, 0.013805827125906944, -0.00483447453007102, 0.6310285329818726, -0.33211949467658997, -0.012060304172337055, -0.013673125766217709, 0.030205534771084785, -0.027126889675855637, -2.992161512374878, 2.247389793395996, 1.8793542385101318, 0.39401736855506897, -0.13473863899707794, -0.08991764485836029, 0.02009754627943039, 0.09279385954141617, -0.45885202288627625, -0.06926882266998291, 1.2234935760498047, -0.11803263425827026, 0.07794540375471115, -0.03199788182973862]} +{"t": 20.5899, "q": [-0.3637375235557556, -0.00786932185292244, 0.006736123468726873, 0.6093312501907349, -0.2831641137599945, 0.003674325766041875, -0.35657042264938354, 0.013814348727464676, -0.004847866017371416, 0.6310285329818726, -0.33211129903793335, -0.012045858427882195, -0.013659733347594738, 0.030205506831407547, -0.027117092162370682, -2.992185354232788, 2.2474136352539062, 1.8793542385101318, 0.3940413296222687, -0.13469070196151733, -0.08992962539196014, 0.02009754627943039, 0.09279385954141617, -0.4577614367008209, -0.06928080320358276, 1.2235054969787598, -0.11803263425827026, 0.07794540375471115, -0.03199788182973862]} +{"t": 20.6067, "q": [-0.3637375235557556, -0.007877843454480171, 0.006695947609841824, 0.6093568205833435, -0.28315994143486023, 0.003681573085486889, -0.356536328792572, 0.013831393793225288, -0.0049148257821798325, 0.6310285329818726, -0.33211538195610046, -0.012053081765770912, -0.013673125766217709, 0.030182667076587677, -0.027092216536402702, -2.992185354232788, 2.2474136352539062, 1.879366159439087, 0.3940053880214691, -0.13470269739627838, -0.08992962539196014, 0.02009754627943039, 0.09280584007501602, -0.4566469192504883, -0.06926882266998291, 1.2235175371170044, -0.11803263425827026, 0.0779334157705307, -0.03196192905306816]} +{"t": 20.6234, "q": [-0.3637375235557556, -0.007877843454480171, 0.006695947609841824, 0.6093312501907349, -0.28315994143486023, 0.003681573085486889, -0.35657042264938354, 0.013865482062101364, -0.004955001175403595, 0.6310285329818726, -0.33211544156074524, -0.012038561515510082, -0.013659733347594738, 0.030152281746268272, -0.027081908658146858, -2.992185354232788, 2.2474136352539062, 1.8793302774429321, 0.3940053880214691, -0.13473863899707794, -0.08990565687417984, 0.02009754627943039, 0.09279385954141617, -0.455700159072876, -0.0692448541522026, 1.2235175371170044, -0.11803263425827026, 0.07794540375471115, -0.03199788182973862]} +{"t": 20.6402, "q": [-0.3637460470199585, -0.007877843454480171, 0.006749515421688557, 0.6093312501907349, -0.28315579891204834, 0.0036743783857673407, -0.35657042264938354, 0.01383991539478302, -0.005075528286397457, 0.6310114860534668, -0.33212366700172424, -0.012038487941026688, -0.013606165535748005, 0.030144648626446724, -0.027067085728049278, -2.992161512374878, 2.2474136352539062, 1.8793302774429321, 0.3940053880214691, -0.1347266584634781, -0.08991764485836029, 0.02009754627943039, 0.09276989102363586, -0.4550170600414276, -0.06925683468580246, 1.2235175371170044, -0.11803263425827026, 0.07794540375471115, -0.031985897570848465]} +{"t": 20.6569, "q": [-0.3637460470199585, -0.007886365987360477, 0.0067896912805736065, 0.609322726726532, -0.2831723093986511, 0.00370315695181489, -0.35656189918518066, 0.013848437927663326, -0.005008568987250328, 0.6309859752655029, -0.33211544156074524, -0.012038561515510082, -0.013606165535748005, 0.030152224004268646, -0.02706231363117695, -2.992185354232788, 2.2474136352539062, 1.8793063163757324, 0.3939933776855469, -0.13470269739627838, -0.0899416133761406, 0.020085562020540237, 0.09276989102363586, -0.45456165075302124, -0.06926882266998291, 1.2235175371170044, -0.11803263425827026, 0.0779334157705307, -0.03196192905306816]} +{"t": 20.6737, "q": [-0.3637375235557556, -0.00786932185292244, 0.0068030827678740025, 0.6093397736549377, -0.28316813707351685, 0.003710404271259904, -0.3565533757209778, 0.013822871260344982, -0.005062136333435774, 0.6309859752655029, -0.33211955428123474, -0.01203126460313797, -0.013579382561147213, 0.030159801244735718, -0.027057543396949768, -2.992161512374878, 2.2474136352539062, 1.8792942762374878, 0.3940293490886688, -0.13476261496543884, -0.0899416133761406, 0.02009754627943039, 0.09278187155723572, -0.4543459415435791, -0.0692208856344223, 1.2235054969787598, -0.11805660277605057, 0.07796937227249146, -0.03197391331195831]} +{"t": 20.6904, "q": [-0.36372900009155273, -0.007894888520240784, 0.006816474720835686, 0.6093397736549377, -0.2831765115261078, 0.003695909632369876, -0.3565533757209778, 0.013797304593026638, -0.005048744846135378, 0.6309944987297058, -0.33212780952453613, -0.012016670778393745, -0.013592774048447609, 0.030159801244735718, -0.027057543396949768, -2.9921014308929443, 2.2474136352539062, 1.8792942762374878, 0.3940293490886688, -0.13470269739627838, -0.08991764485836029, 0.020085562020540237, 0.09276989102363586, -0.45433396100997925, -0.069196917116642, 1.2235175371170044, -0.11803263425827026, 0.077957384288311, -0.031985897570848465]} +{"t": 20.7071, "q": [-0.36376309394836426, -0.007903410121798515, 0.0068030827678740025, 0.6093482971191406, -0.28318068385124207, 0.003688662312924862, -0.3565533757209778, 0.0137802604585886, -0.005008568987250328, 0.6309689283370972, -0.33212369680404663, -0.012023967690765858, -0.013592774048447609, 0.030159857124090195, -0.027077138423919678, -2.9921014308929443, 2.247401714324951, 1.8792942762374878, 0.39405331015586853, -0.1347266584634781, -0.08988168835639954, 0.02009754627943039, 0.09279385954141617, -0.45442983508110046, -0.0692448541522026, 1.2235294580459595, -0.11803263425827026, 0.07794540375471115, -0.03200986608862877]} +{"t": 20.7238, "q": [-0.36372900009155273, -0.007903410121798515, 0.006776299327611923, 0.6093482971191406, -0.2831806242465973, 0.003703104332089424, -0.3565448522567749, 0.013788782991468906, -0.0049817850813269615, 0.6309263110160828, -0.3321402072906494, -0.011994762346148491, -0.013579382561147213, 0.030152251943945885, -0.027072111144661903, -2.992065668106079, 2.247389793395996, 1.8792942762374878, 0.3940892517566681, -0.13471467792987823, -0.08990565687417984, 0.020085562020540237, 0.09279385954141617, -0.4545496702194214, -0.0692448541522026, 1.2235175371170044, -0.11804462224245071, 0.077957384288311, -0.03197391331195831]} +{"t": 20.7405, "q": [-0.3637375235557556, -0.007911932654678822, 0.00676290737465024, 0.6093397736549377, -0.2831847667694092, 0.0037102990318089724, -0.3565533757209778, 0.0137802604585886, -0.004955001175403595, 0.6309433579444885, -0.3321525454521179, -0.01200191117823124, -0.013552598655223846, 0.030144648626446724, -0.027067085728049278, -2.9920175075531006, 2.2474136352539062, 1.879258394241333, 0.3941132426261902, -0.13470269739627838, -0.08990565687417984, 0.020085562020540237, 0.09281782805919647, -0.4546934962272644, -0.06926882266998291, 1.2235294580459595, -0.11804462224245071, 0.07794540375471115, -0.03199788182973862]} +{"t": 20.7573, "q": [-0.3637545704841614, -0.007894888520240784, 0.00672273151576519, 0.6093397736549377, -0.2831765115261078, 0.003695909632369876, -0.3565533757209778, 0.013788782991468906, -0.005035352893173695, 0.6309348344802856, -0.33214840292930603, -0.012009208090603352, -0.013579382561147213, 0.030099110677838326, -0.027066322043538094, -2.991957664489746, 2.247389793395996, 1.8792344331741333, 0.3941132426261902, -0.13471467792987823, -0.08992962539196014, 0.020085562020540237, 0.09281782805919647, -0.4548133313655853, -0.06926882266998291, 1.2235054969787598, -0.11804462224245071, 0.07794540375471115, -0.03197391331195831]} +{"t": 20.774, "q": [-0.36376309394836426, -0.007894888520240784, 0.006682556122541428, 0.6093397736549377, -0.2831847667694092, 0.0037102990318089724, -0.35656189918518066, 0.013797304593026638, -0.004955001175403595, 0.630909264087677, -0.3321567177772522, -0.011980094015598297, -0.013565990142524242, 0.030083902180194855, -0.027056269347667694, -2.991957664489746, 2.2474136352539062, 1.879198431968689, 0.3940892517566681, -0.1347266584634781, -0.08990565687417984, 0.020085562020540237, 0.09280584007501602, -0.45493316650390625, -0.0692448541522026, 1.2235175371170044, -0.11804462224245071, 0.077957384288311, -0.03199788182973862]} +{"t": 20.7907, "q": [-0.36378014087677, -0.007886365987360477, 0.0066289883106946945, 0.6093482971191406, -0.2831765115261078, 0.003695909632369876, -0.35657042264938354, 0.0137802604585886, -0.004928217735141516, 0.6309263110160828, -0.33214840292930603, -0.012009208090603352, -0.013552598655223846, 0.030030760914087296, -0.027050480246543884, -2.991933822631836, 2.2474136352539062, 1.8791744709014893, 0.3941132426261902, -0.13470269739627838, -0.08991764485836029, 0.02009754627943039, 0.09281782805919647, -0.45502904057502747, -0.06926882266998291, 1.2235175371170044, -0.11804462224245071, 0.077957384288311, -0.031985897570848465]} +{"t": 20.8074, "q": [-0.3637545704841614, -0.007877843454480171, 0.006575420964509249, 0.6093142032623291, -0.2831765115261078, 0.003695909632369876, -0.3565959930419922, 0.013771738857030869, -0.004821082577109337, 0.6309007406234741, -0.3321566581726074, -0.011994614265859127, -0.013565990142524242, 0.030038364231586456, -0.02705550752580166, -2.991945743560791, 2.247401714324951, 1.8791744709014893, 0.3941611647605896, -0.13471467792987823, -0.08992962539196014, 0.02009754627943039, 0.09280584007501602, -0.45520880818367004, -0.06932874023914337, 1.2234935760498047, -0.11804462224245071, 0.077957384288311, -0.031985897570848465]} +{"t": 20.8242, "q": [-0.36376309394836426, -0.007860800251364708, 0.006548637058585882, 0.6093568205833435, -0.2831765115261078, 0.003695909632369876, -0.35661303997039795, 0.013805827125906944, -0.004861257970333099, 0.6309007406234741, -0.3321566581726074, -0.011994614265859127, -0.013552598655223846, 0.030030760914087296, -0.027050480246543884, -2.9919216632843018, 2.2474136352539062, 1.8791624307632446, 0.3941132426261902, -0.13470269739627838, -0.08991764485836029, 0.02009754627943039, 0.09279385954141617, -0.4554245173931122, -0.06934072822332382, 1.2235175371170044, -0.11804462224245071, 0.0779334157705307, -0.031985897570848465]} +{"t": 20.8409, "q": [-0.3637971878051758, -0.007852277718484402, 0.006521853152662516, 0.6093312501907349, -0.283168226480484, 0.0036815202329307795, -0.35661303997039795, 0.013797304593026638, -0.00483447453007102, 0.630909264087677, -0.33214840292930603, -0.012009208090603352, -0.013539206236600876, 0.030038364231586456, -0.02705550752580166, -2.991933822631836, 2.247389793395996, 1.8791624307632446, 0.3941372036933899, -0.13470269739627838, -0.08991764485836029, 0.020061593502759933, 0.09278187155723572, -0.4554964303970337, -0.06931675970554352, 1.22348153591156, -0.11804462224245071, 0.077957384288311, -0.03199788182973862]} +{"t": 20.8576, "q": [-0.3637545704841614, -0.007852277718484402, 0.006495069246739149, 0.6093482971191406, -0.2831724286079407, 0.0036742729134857655, -0.35662156343460083, 0.013788782991468906, -0.004847866017371416, 0.6309007406234741, -0.33214840292930603, -0.012009208090603352, -0.013485639356076717, 0.030030760914087296, -0.027050480246543884, -2.9918978214263916, 2.247389793395996, 1.8791505098342896, 0.39422109723091125, -0.1347266584634781, -0.0899416133761406, 0.02009754627943039, 0.09276989102363586, -0.4555683434009552, -0.06932874023914337, 1.2234935760498047, -0.11803263425827026, 0.077957384288311, -0.031985897570848465]} +{"t": 20.8744, "q": [-0.3637545704841614, -0.007852277718484402, 0.00646828580647707, 0.6093397736549377, -0.2831724286079407, 0.0036742729134857655, -0.35660451650619507, 0.0137802604585886, -0.00483447453007102, 0.6309007406234741, -0.33215659856796265, -0.012023653835058212, -0.013472246937453747, 0.030045967549085617, -0.027060532942414284, -2.991933822631836, 2.247365713119507, 1.8791863918304443, 0.3942570388317108, -0.13471467792987823, -0.08992962539196014, 0.020085562020540237, 0.09274592250585556, -0.4557361304759979, -0.06936469674110413, 1.22348153591156, -0.11803263425827026, 0.07796937227249146, -0.03199788182973862]} +{"t": 20.8912, "q": [-0.36376309394836426, -0.007835233584046364, 0.006495069246739149, 0.6093482971191406, -0.2831765115261078, 0.003695909632369876, -0.35660451650619507, 0.013763216324150562, -0.00483447453007102, 0.6308922171592712, -0.33214840292930603, -0.012009208090603352, -0.01344546303153038, 0.03005354292690754, -0.027055760845541954, -2.991933822631836, 2.2473537921905518, 1.879198431968689, 0.3942809998989105, -0.1347985714673996, -0.08992962539196014, 0.02010953053832054, 0.09272195398807526, -0.455843985080719, -0.06940064579248428, 1.22348153591156, -0.11805660277605057, 0.07798135280609131, -0.03199788182973862]} +{"t": 20.908, "q": [-0.36378014087677, -0.007852277718484402, 0.006495069246739149, 0.6093397736549377, -0.283168226480484, 0.0036815202329307795, -0.35660451650619507, 0.01375469472259283, -0.0047541228123009205, 0.6309007406234741, -0.3321525752544403, -0.01198739092797041, -0.013472246937453747, 0.03005354292690754, -0.027055760845541954, -2.9920055866241455, 2.2473537921905518, 1.8792223930358887, 0.3942809998989105, -0.1347985714673996, -0.08991764485836029, 0.020085562020540237, 0.09261409193277359, -0.455843985080719, -0.06941263377666473, 1.22348153591156, -0.11804462224245071, 0.07796937227249146, -0.03199788182973862]} +{"t": 20.9247, "q": [-0.36378014087677, -0.007852277718484402, 0.006495069246739149, 0.6093312501907349, -0.283168226480484, 0.0036815202329307795, -0.35660451650619507, 0.013746172189712524, -0.004767514765262604, 0.6308922171592712, -0.3321525454521179, -0.01200191117823124, -0.013485639356076717, 0.03005354292690754, -0.027055760845541954, -2.9920175075531006, 2.2473537921905518, 1.879258394241333, 0.3942570388317108, -0.13473863899707794, -0.08995359390974045, 0.020085562020540237, 0.09259012341499329, -0.45580801367759705, -0.06946057081222534, 1.22348153591156, -0.11803263425827026, 0.07794540375471115, -0.03199788182973862]} +{"t": 20.9414, "q": [-0.36376309394836426, -0.007826711051166058, 0.006508461199700832, 0.6093397736549377, -0.2831641137599945, 0.003674325766041875, -0.3565959930419922, 0.013746172189712524, -0.004780906718224287, 0.6308922171592712, -0.3321525454521179, -0.01200191117823124, -0.013485639356076717, 0.030030760914087296, -0.027050480246543884, -2.99204158782959, 2.2473537921905518, 1.8792463541030884, 0.3942570388317108, -0.13473863899707794, -0.08992962539196014, 0.02010953053832054, 0.09253020584583282, -0.45587992668151855, -0.06946057081222534, 1.22348153591156, -0.11803263425827026, 0.07792143523693085, -0.03199788182973862]} +{"t": 20.9584, "q": [-0.3637375235557556, -0.007835233584046364, 0.006508461199700832, 0.6093312501907349, -0.28318068385124207, 0.003688662312924862, -0.3565959930419922, 0.013788782991468906, -0.004821082577109337, 0.6309007406234741, -0.33214014768600464, -0.012023819610476494, -0.01351242233067751, 0.030045967549085617, -0.027060532942414284, -2.99204158782959, 2.2472939491271973, 1.8792942762374878, 0.3942809998989105, -0.1347266584634781, -0.0899416133761406, 0.020085562020540237, 0.09248226881027222, -0.45587992668151855, -0.06946057081222534, 1.2234575748443604, -0.11804462224245071, 0.07794540375471115, -0.03199788182973862]} +{"t": 20.9751, "q": [-0.36378014087677, -0.007843755185604095, 0.006535245105624199, 0.609322726726532, -0.283168226480484, 0.0036815202329307795, -0.3565959930419922, 0.013771738857030869, -0.00483447453007102, 0.6309007406234741, -0.332140177488327, -0.012009300291538239, -0.013539206236600876, 0.030030760914087296, -0.027050480246543884, -2.9920055866241455, 2.247282028198242, 1.8792942762374878, 0.3942929804325104, -0.1347745954990387, -0.0899416133761406, 0.02009754627943039, 0.09243433177471161, -0.45590388774871826, -0.06946057081222534, 1.2234694957733154, -0.11805660277605057, 0.077957384288311, -0.03200986608862877]} +{"t": 20.9918, "q": [-0.3637460470199585, -0.007843755185604095, 0.0065620290115475655, 0.6093397736549377, -0.2831641137599945, 0.003674325766041875, -0.35657042264938354, 0.013797304593026638, -0.00483447453007102, 0.6309177875518799, -0.33213186264038086, -0.012038413435220718, -0.013565990142524242, 0.03005354292690754, -0.027055760845541954, -2.9920175075531006, 2.2473058700561523, 1.8792823553085327, 0.3943049907684326, -0.13476261496543884, -0.08992962539196014, 0.02009754627943039, 0.09237440675497055, -0.45590388774871826, -0.06944858282804489, 1.22348153591156, -0.11805660277605057, 0.077957384288311, -0.03200986608862877]} +{"t": 21.0089, "q": [-0.3637375235557556, -0.007843755185604095, 0.006588812451809645, 0.6093312501907349, -0.283168226480484, 0.0036815202329307795, -0.3565533757209778, 0.013805827125906944, -0.004901433829218149, 0.6308922171592712, -0.33213186264038086, -0.012038413435220718, -0.013592774048447609, 0.03004593960940838, -0.02705073542892933, -2.9920175075531006, 2.247282028198242, 1.879258394241333, 0.3943289518356323, -0.1347266584634781, -0.08992962539196014, 0.02009754627943039, 0.09235043823719025, -0.4559158682823181, -0.0694725513458252, 1.22348153591156, -0.11804462224245071, 0.077957384288311, -0.03199788182973862]} +{"t": 21.0256, "q": [-0.3637375235557556, -0.007843755185604095, 0.006588812451809645, 0.6093312501907349, -0.2831641137599945, 0.003674325766041875, -0.3565448522567749, 0.013805827125906944, -0.004901433829218149, 0.6308922171592712, -0.33213186264038086, -0.012038413435220718, -0.013592774048447609, 0.03004593960940838, -0.02705073542892933, -2.9920055866241455, 2.247282028198242, 1.879258394241333, 0.39435291290283203, -0.13476261496543884, -0.0899416133761406, 0.02010953053832054, 0.09224258363246918, -0.45640721917152405, -0.06953247636556625, 1.2234935760498047, -0.11804462224245071, 0.07794540375471115, -0.03199788182973862]} +{"t": 21.0424, "q": [-0.3637460470199585, -0.007843755185604095, 0.006602204404771328, 0.609322726726532, -0.28316405415534973, 0.003688767785206437, -0.3565448522567749, 0.013822871260344982, -0.004901433829218149, 0.6308922171592712, -0.33212774991989136, -0.01204571034759283, -0.013579382561147213, 0.030030760914087296, -0.027050480246543884, -2.9919817447662354, 2.247282028198242, 1.879270315170288, 0.3943888545036316, -0.13476261496543884, -0.0899416133761406, 0.02010953053832054, 0.09215869009494781, -0.45710232853889465, -0.06960438191890717, 1.2234694957733154, -0.11805660277605057, 0.07796937227249146, -0.03200986608862877]} +{"t": 21.0591, "q": [-0.3637375235557556, -0.007843755185604095, 0.006602204404771328, 0.609322726726532, -0.283168226480484, 0.0036815202329307795, -0.35652783513069153, 0.013831393793225288, -0.0049148257821798325, 0.6309007406234741, -0.33213186264038086, -0.012038413435220718, -0.013619557954370975, 0.030038336291909218, -0.027045708149671555, -2.9920175075531006, 2.247269868850708, 1.8792823553085327, 0.3943888545036316, -0.13473863899707794, -0.08992962539196014, 0.020085562020540237, 0.09201487898826599, -0.4577135145664215, -0.0697721615433693, 1.2234575748443604, -0.11806859076023102, 0.077957384288311, -0.03200986608862877]} +{"t": 21.0758, "q": [-0.3637375235557556, -0.007860800251364708, 0.0066289883106946945, 0.609322726726532, -0.28315579891204834, 0.0036743783857673407, -0.35652783513069153, 0.013831393793225288, -0.004901433829218149, 0.6309007406234741, -0.33213186264038086, -0.012038413435220718, -0.013632949441671371, 0.030038336291909218, -0.027045708149671555, -2.99204158782959, 2.247282028198242, 1.8793063163757324, 0.3943409323692322, -0.1347985714673996, -0.08992962539196014, 0.020085562020540237, 0.09190702438354492, -0.458240807056427, -0.0698440670967102, 1.2234455347061157, -0.11806859076023102, 0.07792143523693085, -0.03199788182973862]} +{"t": 21.0926, "q": [-0.3637375235557556, -0.007835233584046364, 0.006602204404771328, 0.6093312501907349, -0.28315988183021545, 0.003696015104651451, -0.35652783513069153, 0.013831393793225288, -0.004888041876256466, 0.6308922171592712, -0.33212366700172424, -0.012038487941026688, -0.013673125766217709, 0.03004591166973114, -0.027040937915444374, -2.992077589035034, 2.247269868850708, 1.8793302774429321, 0.39440086483955383, -0.1348225325345993, -0.08990565687417984, 0.020085562020540237, 0.0917392447590828, -0.45864829421043396, -0.06995192170143127, 1.2234694957733154, -0.11805660277605057, 0.077957384288311, -0.03199788182973862]} +{"t": 21.1093, "q": [-0.3637460470199585, -0.007835233584046364, 0.006642380263656378, 0.6093397736549377, -0.28315988183021545, 0.003696015104651451, -0.35651078820228577, 0.013831393793225288, -0.004888041876256466, 0.6309007406234741, -0.33211538195610046, -0.012053081765770912, -0.013753476552665234, 0.030038336291909218, -0.027045708149671555, -2.992077589035034, 2.2472219467163086, 1.8793302774429321, 0.3943648934364319, -0.1348225325345993, -0.0899416133761406, 0.02009754627943039, 0.0915115475654602, -0.4590677320957184, -0.07008375227451324, 1.22348153591156, -0.11806859076023102, 0.077957384288311, -0.031985897570848465]} +{"t": 21.1261, "q": [-0.3637034296989441, -0.007826711051166058, 0.006615596357733011, 0.6093312501907349, -0.2831641137599945, 0.003674325766041875, -0.35651931166648865, 0.013831393793225288, -0.004888041876256466, 0.6309007406234741, -0.33212360739707947, -0.012053007259964943, -0.013833828270435333, 0.030030760914087296, -0.027050480246543884, -2.9921014308929443, 2.2472219467163086, 1.8793542385101318, 0.39442482590675354, -0.1347985714673996, -0.08992962539196014, 0.02009754627943039, 0.09122392535209656, -0.45940327644348145, -0.07034739851951599, 1.22348153591156, -0.11806859076023102, 0.07796937227249146, -0.03199788182973862]} +{"t": 21.1428, "q": [-0.3637034296989441, -0.007792622782289982, 0.006615596357733011, 0.6093312501907349, -0.2831641137599945, 0.003674325766041875, -0.35649374127388, 0.013874003663659096, -0.004888041876256466, 0.6309007406234741, -0.33211949467658997, -0.012060304172337055, -0.013900787569582462, 0.03004593960940838, -0.02705073542892933, -2.9921014308929443, 2.247150182723999, 1.8793901205062866, 0.3946045935153961, -0.13476261496543884, -0.08988168835639954, 0.02009754627943039, 0.09096027165651321, -0.4596309959888458, -0.07064700871706009, 1.2234694957733154, -0.11805660277605057, 0.077957384288311, -0.03200986608862877]} +{"t": 21.1595, "q": [-0.36372047662734985, -0.0077500119805336, 0.006615596357733011, 0.6093142032623291, -0.283168226480484, 0.0036815202329307795, -0.35649374127388, 0.013874003663659096, -0.004807690624147654, 0.6308922171592712, -0.33212360739707947, -0.012053007259964943, -0.013940962962806225, 0.030038336291909218, -0.027045708149671555, -2.9921255111694336, 2.2471022605895996, 1.8794021606445312, 0.3947124481201172, -0.13473863899707794, -0.08989367634057999, 0.02009754627943039, 0.09072058647871017, -0.45982274413108826, -0.07127019017934799, 1.2234694957733154, -0.11808057129383087, 0.07796937227249146, -0.03197391331195831]} +{"t": 21.1763, "q": [-0.36372047662734985, -0.007741490378975868, 0.006615596357733011, 0.6092971563339233, -0.2831641137599945, 0.003674325766041875, -0.35649374127388, 0.013891047798097134, -0.004861257970333099, 0.6308836936950684, -0.33211952447891235, -0.0120457848533988, -0.013981139287352562, 0.030038336291909218, -0.027045708149671555, -2.992161512374878, 2.2471022605895996, 1.8793781995773315, 0.3946884870529175, -0.13476261496543884, -0.08989367634057999, 0.02009754627943039, 0.09048090130090714, -0.4599665403366089, -0.07282813638448715, 1.22348153591156, -0.11808057129383087, 0.07796937227249146, -0.03197391331195831]} +{"t": 21.1931, "q": [-0.3637460470199585, -0.0077500119805336, 0.006602204404771328, 0.6092801094055176, -0.2831641137599945, 0.003674325766041875, -0.3565022647380829, 0.013882526196539402, -0.004861257970333099, 0.6308666467666626, -0.33211949467658997, -0.012060304172337055, -0.013967746868729591, 0.03004591166973114, -0.027040937915444374, -2.9922094345092773, 2.2471261024475098, 1.8794140815734863, 0.3946285545825958, -0.1347985714673996, -0.08992962539196014, 0.020073577761650085, 0.09025319665670395, -0.4600144922733307, -0.07534482330083847, 1.2234694957733154, -0.11808057129383087, 0.07794540375471115, -0.03197391331195831]} +{"t": 21.2099, "q": [-0.36372900009155273, -0.007724445778876543, 0.006602204404771328, 0.6092801094055176, -0.2831641137599945, 0.003674325766041875, -0.35649374127388, 0.013882526196539402, -0.004821082577109337, 0.6308836936950684, -0.33212774991989136, -0.01204571034759283, -0.013967746868729591, 0.03006112016737461, -0.027050988748669624, -2.9922213554382324, 2.2471022605895996, 1.8794140815734863, 0.39461657404899597, -0.13481055200099945, -0.08992962539196014, 0.02009754627943039, 0.08988168835639954, -0.46032607555389404, -0.07716642320156097, 1.2234694957733154, -0.11809255182743073, 0.07796937227249146, -0.03199788182973862]} +{"t": 21.2266, "q": [-0.36372047662734985, -0.007724445778876543, 0.006602204404771328, 0.6092545390129089, -0.2831641137599945, 0.003674325766041875, -0.35651078820228577, 0.01383991539478302, -0.00483447453007102, 0.6308325529098511, -0.33213600516319275, -0.012031116522848606, -0.013967746868729591, 0.030068695545196533, -0.027046218514442444, -2.9922573566436768, 2.2471022605895996, 1.8794381618499756, 0.3946884870529175, -0.1347266584634781, -0.08992962539196014, 0.02010953053832054, 0.08963002264499664, -0.46090131998062134, -0.07776563614606857, 1.2234575748443604, -0.11809255182743073, 0.07798135280609131, -0.03197391331195831]} +{"t": 21.2435, "q": [-0.3637375235557556, -0.007698879577219486, 0.006615596357733011, 0.609246015548706, -0.2831641137599945, 0.003674325766041875, -0.35646817088127136, 0.013882526196539402, -0.00483447453007102, 0.6308155059814453, -0.33212366700172424, -0.012038487941026688, -0.013927571475505829, 0.03004591166973114, -0.027040937915444374, -2.9922454357147217, 2.2470781803131104, 1.8794021606445312, 0.3947364091873169, -0.13476261496543884, -0.08992962539196014, 0.02010953053832054, 0.089342400431633, -0.46169227361679077, -0.07807722687721252, 1.2234455347061157, -0.11809255182743073, 0.077957384288311, -0.03197391331195831]} +{"t": 21.2602, "q": [-0.3637375235557556, -0.007690357510000467, 0.006575420964509249, 0.6092119216918945, -0.28316405415534973, 0.003688767785206437, -0.35646817088127136, 0.013874003663659096, -0.004888041876256466, 0.6308240294456482, -0.33211949467658997, -0.012060304172337055, -0.013887396082282066, 0.03006112016737461, -0.027050988748669624, -2.992293357849121, 2.247030258178711, 1.8793901205062866, 0.39484426379203796, -0.1347266584634781, -0.0899416133761406, 0.020085562020540237, 0.08910271525382996, -0.462758868932724, -0.07841278612613678, 1.223409652709961, -0.11810453981161118, 0.07796937227249146, -0.03197391331195831]} +{"t": 21.277, "q": [-0.363711953163147, -0.007698879577219486, 0.006615596357733011, 0.6091693043708801, -0.283168226480484, 0.0036815202329307795, -0.35646817088127136, 0.013891047798097134, -0.004901433829218149, 0.6307984590530396, -0.33213600516319275, -0.012031116522848606, -0.013900787569582462, 0.03006112016737461, -0.027050988748669624, -2.992293357849121, 2.247042179107666, 1.8794140815734863, 0.3949640989303589, -0.13473863899707794, -0.08992962539196014, 0.020085562020540237, 0.088791124522686, -0.46408912539482117, -0.07874834537506104, 1.2233976125717163, -0.11810453981161118, 0.077957384288311, -0.03197391331195831]} +{"t": 21.2938, "q": [-0.36372900009155273, -0.007690357510000467, 0.006642380263656378, 0.6091437935829163, -0.2831723093986511, 0.00370315695181489, -0.35646817088127136, 0.013908091932535172, -0.004928217735141516, 0.6307899355888367, -0.33212360739707947, -0.012053007259964943, -0.013900787569582462, 0.030068695545196533, -0.027046218514442444, -2.992305278778076, 2.247018337249756, 1.8794621229171753, 0.39507198333740234, -0.1347745954990387, -0.0899416133761406, 0.02009754627943039, 0.08850350230932236, -0.46546730399131775, -0.07900001108646393, 1.2233856916427612, -0.11812850832939148, 0.07796937227249146, -0.03199788182973862]} +{"t": 21.3105, "q": [-0.3636949062347412, -0.007707401644438505, 0.006669164169579744, 0.6091182231903076, -0.283168226480484, 0.0036815202329307795, -0.35649374127388, 0.013916614465415478, -0.004968393128365278, 0.630764365196228, -0.33213186264038086, -0.012038413435220718, -0.013954355381429195, 0.030061090365052223, -0.02704119123518467, -2.992269277572632, 2.247042179107666, 1.879426121711731, 0.39509594440460205, -0.13481055200099945, -0.08992962539196014, 0.020085562020540237, 0.08829977363348007, -0.4670252501964569, -0.07925168424844742, 1.2233856916427612, -0.11809255182743073, 0.077957384288311, -0.03200986608862877]} +{"t": 21.3273, "q": [-0.36368638277053833, -0.007698879577219486, 0.006669164169579744, 0.6091096997261047, -0.2831724286079407, 0.0036742729134857655, -0.35647669434547424, 0.013942181132733822, -0.004955001175403595, 0.630764365196228, -0.33212774991989136, -0.01204571034759283, -0.014021314680576324, 0.030068695545196533, -0.027046218514442444, -2.992305278778076, 2.247042179107666, 1.8795100450515747, 0.3950839638710022, -0.13481055200099945, -0.08992962539196014, 0.02009754627943039, 0.08808405697345734, -0.4687030613422394, -0.0794074758887291, 1.2233617305755615, -0.11810453981161118, 0.077957384288311, -0.03199788182973862]} +{"t": 21.344, "q": [-0.36372047662734985, -0.007707401644438505, 0.006669164169579744, 0.6091011762619019, -0.283168226480484, 0.0036815202329307795, -0.35646817088127136, 0.013908091932535172, -0.004941609688103199, 0.6307302713394165, -0.33213600516319275, -0.012031116522848606, -0.014141841791570187, 0.030061090365052223, -0.02704119123518467, -2.992293357849121, 2.247030258178711, 1.8794740438461304, 0.39509594440460205, -0.1347745954990387, -0.0899416133761406, 0.02009754627943039, 0.08791627734899521, -0.4707763195037842, -0.07955128699541092, 1.223349690437317, -0.11810453981161118, 0.077957384288311, -0.03197391331195831]} +{"t": 21.3608, "q": [-0.3637034296989441, -0.007707401644438505, 0.00672273151576519, 0.6090670824050903, -0.2831765115261078, 0.003695909632369876, -0.35649374127388, 0.01389957033097744, -0.004874649923294783, 0.6307047009468079, -0.33214840292930603, -0.012009208090603352, -0.014222193509340286, 0.030068695545196533, -0.027046218514442444, -2.992269277572632, 2.247018337249756, 1.8794621229171753, 0.3950839638710022, -0.134750634431839, -0.08992962539196014, 0.020085562020540237, 0.08777246624231339, -0.4730892777442932, -0.07963517308235168, 1.223349690437317, -0.11812850832939148, 0.07796937227249146, -0.03197391331195831]} +{"t": 21.3775, "q": [-0.3637034296989441, -0.007724445778876543, 0.006749515421688557, 0.6090585589408875, -0.28318068385124207, 0.003688662312924862, -0.35649374127388, 0.01389957033097744, -0.004861257970333099, 0.6307047009468079, -0.332140177488327, -0.012009300291538239, -0.014275760389864445, 0.030068695545196533, -0.027046218514442444, -2.992269277572632, 2.247018337249756, 1.8794621229171753, 0.3951079249382019, -0.13473863899707794, -0.0899416133761406, 0.02009754627943039, 0.08770056068897247, -0.47545015811920166, -0.07969509810209274, 1.2233617305755615, -0.11812850832939148, 0.077957384288311, -0.03197391331195831]} +{"t": 21.3942, "q": [-0.36372900009155273, -0.007707401644438505, 0.0067896912805736065, 0.6090074181556702, -0.28318068385124207, 0.003688662312924862, -0.3564852178096771, 0.01389957033097744, -0.004807690624147654, 0.630696177482605, -0.3321525454521179, -0.01200191117823124, -0.014289152808487415, 0.030068695545196533, -0.027046218514442444, -2.992305278778076, 2.2469942569732666, 1.8794500827789307, 0.39519181847572327, -0.1347745954990387, -0.08992962539196014, 0.02009754627943039, 0.08767659217119217, -0.4776912033557892, -0.07985088974237442, 1.2233856916427612, -0.11812850832939148, 0.07796937227249146, -0.03197391331195831]} +{"t": 21.4109, "q": [-0.3637034296989441, -0.007715923711657524, 0.006776299327611923, 0.6089818477630615, -0.2831765115261078, 0.003695909632369876, -0.3564596474170685, 0.01389957033097744, -0.004807690624147654, 0.6306791305541992, -0.33214840292930603, -0.012009208090603352, -0.014342720620334148, 0.030076326802372932, -0.027061041444540024, -2.992269277572632, 2.2469823360443115, 1.8794740438461304, 0.3952637314796448, -0.1347266584634781, -0.08990565687417984, 0.02009754627943039, 0.08767659217119217, -0.4800041615962982, -0.07999470084905624, 1.2233617305755615, -0.11812850832939148, 0.077957384288311, -0.03199788182973862]} +{"t": 21.4278, "q": [-0.363711953163147, -0.007707401644438505, 0.00672273151576519, 0.6089136600494385, -0.283168226480484, 0.0036815202329307795, -0.35646817088127136, 0.013882526196539402, -0.00483447453007102, 0.6306876540184021, -0.3321525454521179, -0.01200191117823124, -0.014436463825404644, 0.030076326802372932, -0.027061041444540024, -2.992269277572632, 2.2469582557678223, 1.879486083984375, 0.39537158608436584, -0.1347266584634781, -0.08992962539196014, 0.02009754627943039, 0.08767659217119217, -0.4820774495601654, -0.08018644899129868, 1.223409652709961, -0.11812850832939148, 0.077957384288311, -0.03197391331195831]} +{"t": 21.4445, "q": [-0.36368638277053833, -0.007707401644438505, 0.006695947609841824, 0.608879566192627, -0.2831765115261078, 0.003695909632369876, -0.3564596474170685, 0.013856959529221058, -0.004821082577109337, 0.6306791305541992, -0.3321566581726074, -0.011994614265859127, -0.01446324773132801, 0.030076326802372932, -0.027061041444540024, -2.9922454357147217, 2.2469582557678223, 1.8794740438461304, 0.39537158608436584, -0.134750634431839, -0.08992962539196014, 0.020085562020540237, 0.08768857270479202, -0.4842945337295532, -0.08042613416910172, 1.2233976125717163, -0.11811652034521103, 0.07796937227249146, -0.03197391331195831]} +{"t": 21.4613, "q": [-0.3636949062347412, -0.007698879577219486, 0.006642380263656378, 0.6088454723358154, -0.2831599712371826, 0.0036671310663223267, -0.3564511239528656, 0.01383991539478302, -0.004713947419077158, 0.6306706070899963, -0.3321566581726074, -0.011994614265859127, -0.014490030705928802, 0.030076326802372932, -0.027061041444540024, -2.9922094345092773, 2.2469582557678223, 1.8795219659805298, 0.39539554715156555, -0.134750634431839, -0.08992962539196014, 0.02009754627943039, 0.08766460418701172, -0.48653557896614075, -0.08066581934690475, 1.2233976125717163, -0.11811652034521103, 0.07796937227249146, -0.03197391331195831]} +{"t": 21.478, "q": [-0.36368638277053833, -0.0076647913083434105, 0.006642380263656378, 0.6088113784790039, -0.2831558585166931, 0.0036599363666027784, -0.35647669434547424, 0.013831393793225288, -0.004673771560192108, 0.6306535601615906, -0.3321566581726074, -0.011994614265859127, -0.014476639218628407, 0.030106686055660248, -0.027061549946665764, -2.992185354232788, 2.246934413909912, 1.8795100450515747, 0.3954314887523651, -0.134750634431839, -0.08992962539196014, 0.020085562020540237, 0.08767659217119217, -0.4887406826019287, -0.08112122118473053, 1.223409652709961, -0.11812850832939148, 0.07794540375471115, -0.031985897570848465]} +{"t": 21.4947, "q": [-0.36367788910865784, -0.007639224641025066, 0.006615596357733011, 0.6087602972984314, -0.2831600308418274, 0.0036526890471577644, -0.35647669434547424, 0.013831393793225288, -0.004713947419077158, 0.6306620836257935, -0.3321525454521179, -0.01200191117823124, -0.014490030705928802, 0.030114345252513885, -0.027086172252893448, -2.992185354232788, 2.246934413909912, 1.8795219659805298, 0.3955034017562866, -0.134750634431839, -0.0899416133761406, 0.02009754627943039, 0.08766460418701172, -0.4909697473049164, -0.08194813132286072, 1.223421573638916, -0.11812850832939148, 0.07798135280609131, -0.03197391331195831]} +{"t": 21.5115, "q": [-0.36367788910865784, -0.007639224641025066, 0.006615596357733011, 0.6086665391921997, -0.2831558585166931, 0.0036599363666027784, -0.3564852178096771, 0.013822871260344982, -0.004660379607230425, 0.6306365132331848, -0.3321607708930969, -0.012001837603747845, -0.014476639218628407, 0.030197875574231148, -0.027102267369627953, -2.992185354232788, 2.246922492980957, 1.8795219659805298, 0.3956352174282074, -0.1347745954990387, -0.08992962539196014, 0.020085562020540237, 0.08766460418701172, -0.49365419149398804, -0.08300274610519409, 1.2234336137771606, -0.11812850832939148, 0.077957384288311, -0.03194994479417801]} +{"t": 21.5282, "q": [-0.3636437952518463, -0.007647747173905373, 0.006615596357733011, 0.6085472106933594, -0.2831517159938812, 0.003652723738923669, -0.35649374127388, 0.013831393793225288, -0.004646987654268742, 0.6306195259094238, -0.33216485381126404, -0.012009060010313988, -0.014476639218628407, 0.030281461775302887, -0.027137959375977516, -2.992185354232788, 2.2468745708465576, 1.8795100450515747, 0.39574307203292847, -0.134750634431839, -0.08991764485836029, 0.020085562020540237, 0.08766460418701172, -0.49617090821266174, -0.0848722830414772, 1.2234575748443604, -0.11810453981161118, 0.07796937227249146, -0.03196192905306816]} +{"t": 21.5449, "q": [-0.3636608421802521, -0.007639224641025066, 0.006642380263656378, 0.6084449291229248, -0.2831476330757141, 0.003631087252870202, -0.3565022647380829, 0.013822871260344982, -0.0045800283551216125, 0.6305513381958008, -0.3321689963340759, -0.012001763097941875, -0.014436463825404644, 0.03044094517827034, -0.027174923568964005, -2.992161512374878, 2.2468745708465576, 1.8795219659805298, 0.39582696557044983, -0.134750634431839, -0.08992962539196014, 0.02009754627943039, 0.08767659217119217, -0.4991309940814972, -0.08681372553110123, 1.2234575748443604, -0.11810453981161118, 0.077957384288311, -0.03197391331195831]} +{"t": 21.5618, "q": [-0.3636523187160492, -0.0076647913083434105, 0.006642380263656378, 0.608274519443512, -0.2831518054008484, 0.0036238397005945444, -0.35651078820228577, 0.013822871260344982, -0.004566636402159929, 0.630534291267395, -0.33217716217041016, -0.012016208842396736, -0.014409679919481277, 0.030501747503876686, -0.0272053349763155, -2.992185354232788, 2.2468745708465576, 1.8795340061187744, 0.39594683051109314, -0.134750634431839, -0.08991764485836029, 0.020085562020540237, 0.08766460418701172, -0.5021390318870544, -0.0878683403134346, 1.2234575748443604, -0.11814048886299133, 0.07796937227249146, -0.031985897570848465]} +{"t": 21.5787, "q": [-0.36359265446662903, -0.007647747173905373, 0.0066289883106946945, 0.6080784797668457, -0.28313523530960083, 0.0036095031537115574, -0.35652783513069153, 0.013822871260344982, -0.004539852496236563, 0.6304916739463806, -0.3321812152862549, -0.012052490375936031, -0.014409679919481277, 0.03052455745637417, -0.027220413088798523, -2.992185354232788, 2.2468984127044678, 1.8796058893203735, 0.39619848132133484, -0.13476261496543884, -0.08992962539196014, 0.020073577761650085, 0.08766460418701172, -0.5051351189613342, -0.08855143934488297, 1.2234575748443604, -0.11812850832939148, 0.07796937227249146, -0.03197391331195831]} +{"t": 21.5954, "q": [-0.36357560753822327, -0.0076647913083434105, 0.006642380263656378, 0.6079592108726501, -0.28311872482299805, 0.003580706659704447, -0.35652783513069153, 0.013856959529221058, -0.004620204214006662, 0.6304490566253662, -0.33218124508857727, -0.012037970125675201, -0.014490030705928802, 0.030516983941197395, -0.027225183323025703, -2.9922213554382324, 2.2468984127044678, 1.8796058893203735, 0.39639022946357727, -0.1347266584634781, -0.08991764485836029, 0.02009754627943039, 0.0875926986336708, -0.5083827972412109, -0.08929446339607239, 1.2234336137771606, -0.11811652034521103, 0.0779334157705307, -0.03197391331195831]} +{"t": 21.6121, "q": [-0.36359265446662903, -0.007639224641025066, 0.006615596357733011, 0.6078569293022156, -0.2831104099750519, 0.0035807595122605562, -0.35651931166648865, 0.013874003663659096, -0.004593420308083296, 0.6304064393043518, -0.33218538761138916, -0.01203067321330309, -0.014556990936398506, 0.03052455745637417, -0.027220413088798523, -2.9922094345092773, 2.2468745708465576, 1.8796058893203735, 0.39649808406829834, -0.13473863899707794, -0.08992962539196014, 0.020085562020540237, 0.08760468661785126, -0.5118702054023743, -0.09010939300060272, 1.2234336137771606, -0.11812850832939148, 0.07792143523693085, -0.03196192905306816]} +{"t": 21.6288, "q": [-0.3635585606098175, -0.0076221805065870285, 0.0066289883106946945, 0.6076439023017883, -0.2830815315246582, 0.0035159368999302387, -0.3565533757209778, 0.013882526196539402, -0.004620204214006662, 0.6303979158401489, -0.3321894705295563, -0.012037896551191807, -0.014623950235545635, 0.030547285452485085, -0.027206098660826683, -2.9922213554382324, 2.2468745708465576, 1.879593849182129, 0.39661794900894165, -0.134750634431839, -0.08992962539196014, 0.02009754627943039, 0.08770056068897247, -0.5153695940971375, -0.0908404290676117, 1.2234575748443604, -0.11814048886299133, 0.07794540375471115, -0.03197391331195831]} +{"t": 21.6456, "q": [-0.36354151368141174, -0.007605136372148991, 0.006669164169579744, 0.6075757145881653, -0.28306910395622253, 0.0035087950527668, -0.3565533757209778, 0.013908091932535172, -0.004553244449198246, 0.6303638219833374, -0.3321770429611206, -0.012074325233697891, -0.014744477346539497, 0.03063061833381653, -0.027153611183166504, -2.9922332763671875, 2.2468984127044678, 1.8796179294586182, 0.3968096673488617, -0.13473863899707794, -0.08995359390974045, 0.020085562020540237, 0.08782040327787399, -0.5192645192146301, -0.09160741418600082, 1.2234694957733154, -0.11812850832939148, 0.077957384288311, -0.03197391331195831]} +{"t": 21.6624, "q": [-0.3635159432888031, -0.0075795697048306465, 0.006695947609841824, 0.6075501441955566, -0.28305670619010925, 0.0034872109536081553, -0.35656189918518066, 0.013891047798097134, -0.0045264605432748795, 0.6303638219833374, -0.3321647047996521, -0.012067175470292568, -0.01486500445753336, 0.0307745561003685, -0.027062952518463135, -2.992269277572632, 2.2468745708465576, 1.8796418905258179, 0.3970853090286255, -0.1348225325345993, -0.0899416133761406, 0.020085562020540237, 0.08783238381147385, -0.5228357911109924, -0.09255417436361313, 1.2235175371170044, -0.11812850832939148, 0.077957384288311, -0.03196192905306816]} +{"t": 21.6791, "q": [-0.36349040269851685, -0.007562525570392609, 0.00672273151576519, 0.6074904799461365, -0.28305670619010925, 0.0034872109536081553, -0.3565448522567749, 0.013916614465415478, -0.0044996771030128, 0.6303467750549316, -0.3321770131587982, -0.012088844552636147, -0.014998923055827618, 0.030941223725676537, -0.026957979425787926, -2.992269277572632, 2.2468864917755127, 1.8796298503875732, 0.39731302857398987, -0.13478657603263855, -0.0899416133761406, 0.02009754627943039, 0.0878683403134346, -0.5265988707542419, -0.09424394369125366, 1.2235175371170044, -0.11812850832939148, 0.077957384288311, -0.03193796053528786]} +{"t": 21.6958, "q": [-0.36349040269851685, -0.007536959368735552, 0.006736123468726873, 0.6074819564819336, -0.2830691635608673, 0.0034943530336022377, -0.356536328792572, 0.013925136998295784, -0.0045264605432748795, 0.6303552985191345, -0.332177072763443, -0.012059787288308144, -0.015173017978668213, 0.031107909977436066, -0.026862910017371178, -2.992305278778076, 2.246922492980957, 1.8796898126602173, 0.3975766599178314, -0.1347745954990387, -0.0899416133761406, 0.02009754627943039, 0.08788032084703445, -0.5309610962867737, -0.09563411772251129, 1.223541498184204, -0.11812850832939148, 0.077957384288311, -0.03194994479417801]} +{"t": 21.7126, "q": [-0.3635074198246002, -0.007528437301516533, 0.0067896912805736065, 0.6074904799461365, -0.2830691635608673, 0.0034943530336022377, -0.3565448522567749, 0.013933658599853516, -0.0045130690559744835, 0.6303552985191345, -0.3321770429611206, -0.012074325233697891, -0.015320328995585442, 0.031236717477440834, -0.026791686192154884, -2.9923770427703857, 2.2468984127044678, 1.8797496557235718, 0.397900253534317, -0.13476261496543884, -0.0899416133761406, 0.02010953053832054, 0.08782040327787399, -0.5346282720565796, -0.09668873250484467, 1.2235175371170044, -0.11812850832939148, 0.0779334157705307, -0.03194994479417801]} +{"t": 21.7293, "q": [-0.3634563088417053, -0.007545481435954571, 0.006829866673797369, 0.607456386089325, -0.28305256366729736, 0.0034799985587596893, -0.356536328792572, 0.013933658599853516, -0.004432717338204384, 0.6303467750549316, -0.3321811258792877, -0.012081547640264034, -0.015414072200655937, 0.03144142031669617, -0.026721790432929993, -2.99241304397583, 2.2468745708465576, 1.8797377347946167, 0.3983077108860016, -0.13476261496543884, -0.0899416133761406, 0.02009754627943039, 0.08778444677591324, -0.5392541885375977, -0.09768342226743698, 1.2234935760498047, -0.11815247684717178, 0.07796937227249146, -0.03193796053528786]} +{"t": 21.746, "q": [-0.3634307384490967, -0.007536959368735552, 0.006990569643676281, 0.6074649095535278, -0.28305256366729736, 0.0034799985587596893, -0.35657042264938354, 0.013908091932535172, -0.004566636402159929, 0.6303552985191345, -0.33215638995170593, -0.012110808864235878, -0.015440856106579304, 0.03161579370498657, -0.026661161333322525, -2.99241304397583, 2.2468745708465576, 1.8797736167907715, 0.3988829553127289, -0.13476261496543884, -0.08995359390974045, 0.020085562020540237, 0.08772452920675278, -0.5434007048606873, -0.09851033240556717, 1.2234694957733154, -0.11812850832939148, 0.07794540375471115, -0.03197391331195831]} +{"t": 21.7628, "q": [-0.36339664459228516, -0.007536959368735552, 0.007124488707631826, 0.6074478626251221, -0.28305670619010925, 0.0034872109536081553, -0.356536328792572, 0.01395922526717186, -0.004553244449198246, 0.6303552985191345, -0.33215636014938354, -0.012125329114496708, -0.015507815405726433, 0.03171446919441223, -0.02666778676211834, -2.9924490451812744, 2.2468504905700684, 1.8797975778579712, 0.3995780348777771, -0.1347985714673996, -0.0899416133761406, 0.02009754627943039, 0.08768857270479202, -0.5479906797409058, -0.09904962033033371, 1.223409652709961, -0.11814048886299133, 0.07794540375471115, -0.03193796053528786]} +{"t": 21.7795, "q": [-0.3633881211280823, -0.007545481435954571, 0.007204839959740639, 0.6074137687683105, -0.2830609083175659, 0.0034799636341631413, -0.35652783513069153, 0.013967746868729591, -0.004539852496236563, 0.6303638219833374, -0.3321440517902374, -0.01210366003215313, -0.015588166192173958, 0.031828295439481735, -0.02666488103568554, -2.9924490451812744, 2.2468624114990234, 1.8798335790634155, 0.4007285237312317, -0.13481055200099945, -0.0899655818939209, 0.020085562020540237, 0.08765262365341187, -0.5529041886329651, -0.09928930550813675, 1.223349690437317, -0.11814048886299133, 0.07798135280609131, -0.03193796053528786]} +{"t": 21.7964, "q": [-0.36331993341445923, -0.007545481435954571, 0.007338759023696184, 0.6074222922325134, -0.2830609083175659, 0.0034799636341631413, -0.356536328792572, 0.013993313536047935, -0.0045800283551216125, 0.6303808689117432, -0.3321564197540283, -0.012096289545297623, -0.01564173400402069, 0.03188909590244293, -0.026695335283875465, -2.9924731254577637, 2.2468624114990234, 1.8798335790634155, 0.40223854780197144, -0.1347985714673996, -0.0899655818939209, 0.02010953053832054, 0.0875687301158905, -0.5576499700546265, -0.09945708513259888, 1.2233257293701172, -0.11815247684717178, 0.07796937227249146, -0.03193796053528786]} +{"t": 21.8131, "q": [-0.3632347285747528, -0.007545481435954571, 0.007378934416919947, 0.6074137687683105, -0.28306496143341064, 0.0035016003530472517, -0.35647669434547424, 0.013993313536047935, -0.004566636402159929, 0.6303808689117432, -0.33215227723121643, -0.012103586457669735, -0.015762262046337128, 0.03195752575993538, -0.02674061805009842, -2.992521047592163, 2.2468864917755127, 1.8798335790634155, 0.40383243560791016, -0.13473863899707794, -0.08995359390974045, 0.02009754627943039, 0.08750881254673004, -0.562982976436615, -0.09975668787956238, 1.2232178449630737, -0.11815247684717178, 0.07794540375471115, -0.03191399201750755]} +{"t": 21.8299, "q": [-0.3632006347179413, -0.00755400350317359, 0.007499461527913809, 0.6073967218399048, -0.28306496143341064, 0.0035016003530472517, -0.35646817088127136, 0.014010357670485973, -0.004553244449198246, 0.6303638219833374, -0.3321564197540283, -0.012096289545297623, -0.015882788226008415, 0.032033588737249374, -0.02680073119699955, -2.992532968521118, 2.2468745708465576, 1.8799294233322144, 0.4055701494216919, -0.1347745954990387, -0.0899416133761406, 0.020073577761650085, 0.08740095794200897, -0.5688192844390869, -0.09996042400598526, 1.2231340408325195, -0.11816445738077164, 0.077957384288311, -0.031925976276397705]} +{"t": 21.8466, "q": [-0.3631409704685211, -0.00755400350317359, 0.007579812780022621, 0.607379674911499, -0.2830774784088135, 0.0034943001810461283, -0.3565022647380829, 0.01398479100316763, -0.0044996771030128, 0.6303552985191345, -0.3321605920791626, -0.01207447238266468, -0.01596313901245594, 0.03217042237520218, -0.0268815029412508, -2.9925808906555176, 2.2468504905700684, 1.879941463470459, 0.4072958827018738, -0.13476261496543884, -0.08995359390974045, 0.02010953053832054, 0.08734103292226791, -0.5748113989830017, -0.1002001091837883, 1.2229901552200317, -0.11817644536495209, 0.077957384288311, -0.031925976276397705]} +{"t": 21.8633, "q": [-0.36307281255722046, -0.00755400350317359, 0.007713731843978167, 0.6073626279830933, -0.2830732762813568, 0.003501547733321786, -0.35646817088127136, 0.01398479100316763, -0.004446109291166067, 0.6303638219833374, -0.3321605920791626, -0.01207447238266468, -0.01612384244799614, 0.03233775123953819, -0.027011793106794357, -2.992640733718872, 2.2468504905700684, 1.8799893856048584, 0.40880587697029114, -0.134750634431839, -0.0899416133761406, 0.020085562020540237, 0.0872211903333664, -0.5810551643371582, -0.10084725171327591, 1.2228463888168335, -0.11818842589855194, 0.07798135280609131, -0.0319020077586174]} +{"t": 21.8801, "q": [-0.3630046248435974, -0.007571048103272915, 0.007780691608786583, 0.6073541045188904, -0.2830897867679596, 0.003530326299369335, -0.3564511239528656, 0.013976269401609898, -0.004432717338204384, 0.6303382515907288, -0.3321565091609955, -0.01205271203070879, -0.016271153464913368, 0.03245186060667038, -0.027106862515211105, -2.9927966594696045, 2.2468745708465576, 1.8800612688064575, 0.4103159010410309, -0.13478657603263855, -0.08995359390974045, 0.020085562020540237, 0.08702944219112396, -0.5871671438217163, -0.10165020078420639, 1.2226186990737915, -0.11818842589855194, 0.07794540375471115, -0.03191399201750755]} +{"t": 21.897, "q": [-0.36298757791519165, -0.007571048103272915, 0.007753907702863216, 0.6073541045188904, -0.2830856144428253, 0.003537573618814349, -0.35643407702445984, 0.01398479100316763, -0.004392541944980621, 0.6303297281265259, -0.3321647047996521, -0.012067175470292568, -0.016351504251360893, 0.03264205902814865, -0.02727184258401394, -2.9931082725524902, 2.2468385696411133, 1.880181074142456, 0.41194576025009155, -0.13478657603263855, -0.08995359390974045, 0.020085562020540237, 0.08682571351528168, -0.593926191329956, -0.1026448905467987, 1.2223191261291504, -0.11818842589855194, 0.077957384288311, -0.03193796053528786]} +{"t": 21.9137, "q": [-0.362919420003891, -0.007562525570392609, 0.007780691608786583, 0.6073029637336731, -0.2830939292907715, 0.003537538694217801, -0.3564170300960541, 0.013925136998295784, -0.004379149992018938, 0.6303297281265259, -0.3321729898452759, -0.012052563950419426, -0.01647203229367733, 0.03270305320620537, -0.02737087942659855, -2.993647575378418, 2.2468385696411133, 1.8803129196166992, 0.4134078323841095, -0.13478657603263855, -0.08995359390974045, 0.020085562020540237, 0.0866219773888588, -0.6000860929489136, -0.10457435250282288, 1.2220433950424194, -0.118248350918293, 0.077957384288311, -0.0319020077586174]} +{"t": 21.9304, "q": [-0.3628768026828766, -0.007571048103272915, 0.007753907702863216, 0.6073285341262817, -0.2830939292907715, 0.003537538694217801, -0.35638293623924255, 0.013976269401609898, -0.004379149992018938, 0.6303297281265259, -0.332168847322464, -0.012059878557920456, -0.01647203229367733, 0.03276390954852104, -0.027420928701758385, -2.994222640991211, 2.2468504905700684, 1.8804328441619873, 0.41459426283836365, -0.1347745954990387, -0.08995359390974045, 0.020085562020540237, 0.08635832369327545, -0.6062699556350708, -0.10735469311475754, 1.2217319011688232, -0.118248350918293, 0.07796937227249146, -0.0319020077586174]} +{"t": 21.9472, "q": [-0.36289384961128235, -0.0075795697048306465, 0.007753907702863216, 0.607311487197876, -0.2830815017223358, 0.003530378919094801, -0.35638293623924255, 0.013967746868729591, -0.004392541944980621, 0.6303126811981201, -0.3321688771247864, -0.01204532291740179, -0.01647203229367733, 0.03293877840042114, -0.027526961639523506, -2.9947140216827393, 2.2468504905700684, 1.8804926872253418, 0.41551706194877625, -0.13478657603263855, -0.08992962539196014, 0.02009754627943039, 0.08603475242853165, -0.6121782064437866, -0.10963169485330582, 1.2212764024734497, -0.11823636293411255, 0.07796937227249146, -0.03191399201750755]} +{"t": 21.9639, "q": [-0.3628768026828766, -0.007588092237710953, 0.007780691608786583, 0.6072944402694702, -0.2830856144428253, 0.003537573618814349, -0.35639145970344543, 0.013942181132733822, -0.004392541944980621, 0.6302956342697144, -0.33216479420661926, -0.012038099579513073, -0.016431856900453568, 0.03321245312690735, -0.02767895720899105, -2.9951095581054688, 2.2468504905700684, 1.8805047273635864, 0.4162001609802246, -0.13476261496543884, -0.0899416133761406, 0.020085562020540237, 0.08595086634159088, -0.6178587079048157, -0.11291536688804626, 1.2200300693511963, -0.11826033145189285, 0.07796937227249146, -0.03191399201750755]} +{"t": 21.9806, "q": [-0.3628597557544708, -0.007596613839268684, 0.007780691608786583, 0.6072348356246948, -0.28309398889541626, 0.003523078979924321, -0.35638293623924255, 0.01389957033097744, -0.004405933897942305, 0.6302956342697144, -0.3321771025657654, -0.012045267038047314, -0.016405072063207626, 0.03357742354273796, -0.02791125886142254, -2.9955170154571533, 2.2468745708465576, 1.8805047273635864, 0.4165237247943878, -0.13473863899707794, -0.0899416133761406, 0.02009754627943039, 0.08590292930603027, -0.6224486827850342, -0.11760120093822479, 1.2185200452804565, -0.11828429996967316, 0.077957384288311, -0.031925976276397705]} +{"t": 21.9974, "q": [-0.3628597557544708, -0.007596613839268684, 0.007740515749901533, 0.6072007417678833, -0.28309398889541626, 0.003523078979924321, -0.35639145970344543, 0.013916614465415478, -0.004365758039057255, 0.630236029624939, -0.3321647346019745, -0.01205263752490282, -0.016338111832737923, 0.03400314226746559, -0.02815450169146061, -2.996080160140991, 2.2468385696411133, 1.8805047273635864, 0.41671547293663025, -0.13476261496543884, -0.0899416133761406, 0.020085562020540237, 0.08598681539297104, -0.6268109083175659, -0.12093281745910645, 1.216686487197876, -0.11828429996967316, 0.07798135280609131, -0.031925976276397705]} +{"t": 22.0141, "q": [-0.36284270882606506, -0.0076221805065870285, 0.007700339891016483, 0.6071836948394775, -0.2830856740474701, 0.003523131599649787, -0.35639145970344543, 0.013908091932535172, -0.004338974133133888, 0.6302530169487, -0.332168847322464, -0.012059878557920456, -0.01628454588353634, 0.03445909917354584, -0.02835909090936184, -2.9965476989746094, 2.2468385696411133, 1.8805406093597412, 0.4167754054069519, -0.13476261496543884, -0.0899655818939209, 0.02009754627943039, 0.08603475242853165, -0.6307777166366577, -0.12439625710248947, 1.2144094705581665, -0.11830826848745346, 0.07798135280609131, -0.031925976276397705]} +{"t": 22.0308, "q": [-0.3628341853618622, -0.007596613839268684, 0.007700339891016483, 0.6071410775184631, -0.2830773591995239, 0.0035231842193752527, -0.35639145970344543, 0.013916614465415478, -0.004298798739910126, 0.6302615404129028, -0.3321688771247864, -0.01204532291740179, -0.016244368627667427, 0.03502131253480911, -0.02856566570699215, -2.997170925140381, 2.2468745708465576, 1.8805526494979858, 0.41673943400382996, -0.13473863899707794, -0.0899895504117012, 0.02009754627943039, 0.08603475242853165, -0.6339535117149353, -0.12807542085647583, 1.211089849472046, -0.11830826848745346, 0.07799334079027176, -0.0319020077586174]} +{"t": 22.0476, "q": [-0.3628597557544708, -0.0076221805065870285, 0.007619988638907671, 0.607149600982666, -0.2830691635608673, 0.0034943530336022377, -0.35639145970344543, 0.013942181132733822, -0.004312190227210522, 0.6302700638771057, -0.3321647346019745, -0.01205263752490282, -0.016190802678465843, 0.035522907972335815, -0.028800753876566887, -2.9979379177093506, 2.2468745708465576, 1.8805526494979858, 0.4167514443397522, -0.13471467792987823, -0.0899895504117012, 0.020085562020540237, 0.08590292930603027, -0.6365661025047302, -0.13073591887950897, 1.208021879196167, -0.11832025647163391, 0.07799334079027176, -0.031925976276397705]} +{"t": 22.0643, "q": [-0.36285123229026794, -0.007588092237710953, 0.007526245433837175, 0.607149600982666, -0.28305256366729736, 0.0034799985587596893, -0.3563744127750397, 0.013925136998295784, -0.004218447022140026, 0.6302700638771057, -0.3321647346019745, -0.01205263752490282, -0.016030099242925644, 0.03614630922675133, -0.02915654517710209, -2.9991841316223145, 2.2468385696411133, 1.8806126117706299, 0.4167993664741516, -0.1347266584634781, -0.08995359390974045, 0.02010953053832054, 0.08569919317960739, -0.6388550996780396, -0.13345633447170258, 1.2049659490585327, -0.11833223700523376, 0.07798135280609131, -0.03193796053528786]} +{"t": 22.081, "q": [-0.36285123229026794, -0.0075795697048306465, 0.00739232636988163, 0.6071325540542603, -0.28304430842399597, 0.003465609159320593, -0.35634884238243103, 0.013925136998295784, -0.004151487722992897, 0.6302785873413086, -0.3321605920791626, -0.01207447238266468, -0.01593635603785515, 0.03692176192998886, -0.029603688046336174, -3.000945806503296, 2.2468984127044678, 1.8806005716323853, 0.41681134700775146, -0.1347745954990387, -0.08997756242752075, 0.020085562020540237, 0.08565125614404678, -0.6407485604286194, -0.1354457139968872, 1.2017182111740112, -0.11834422498941422, 0.07799334079027176, -0.031925976276397705]} +{"t": 22.0978, "q": [-0.36284270882606506, -0.007588092237710953, 0.007338759023696184, 0.6071325540542603, -0.28304848074913025, 0.003458361839875579, -0.3563233017921448, 0.013925136998295784, -0.0041247038170695305, 0.6302700638771057, -0.3321729898452759, -0.012052563950419426, -0.01581582799553871, 0.037697456777095795, -0.03011942282319069, -3.002767562866211, 2.2468624114990234, 1.880564570426941, 0.4167993664741516, -0.13478657603263855, -0.0899895504117012, 0.020073577761650085, 0.08553141355514526, -0.6425342559814453, -0.13670405745506287, 1.1986981630325317, -0.11835620552301407, 0.07799334079027176, -0.03191399201750755]} +{"t": 22.1145, "q": [-0.36280009150505066, -0.007588092237710953, 0.007285191211849451, 0.6071155071258545, -0.28304430842399597, 0.003465609159320593, -0.3563147783279419, 0.01389957033097744, -0.004084527958184481, 0.6302871108055115, -0.332177072763443, -0.012059787288308144, -0.01564173400402069, 0.038564156740903854, -0.030608920380473137, -3.0048887729644775, 2.2468504905700684, 1.8806005716323853, 0.4167754054069519, -0.13478657603263855, -0.09000153094530106, 0.020085562020540237, 0.08555538207292557, -0.6438285112380981, -0.1378905028104782, 1.1951388120651245, -0.11836819350719452, 0.07800532132387161, -0.031925976276397705]} +{"t": 22.1313, "q": [-0.3627489507198334, -0.007588092237710953, 0.007245015352964401, 0.6071155071258545, -0.2830318808555603, 0.003458467312157154, -0.3563233017921448, 0.013916614465415478, -0.004057744517922401, 0.630321204662323, -0.332177072763443, -0.012059787288308144, -0.015547990798950195, 0.039445824921131134, -0.031039884313941002, -3.007105827331543, 2.2468745708465576, 1.8805166482925415, 0.4167754054069519, -0.13481055200099945, -0.0900135189294815, 0.020085562020540237, 0.08551943302154541, -0.6450389623641968, -0.13865748047828674, 1.191591501235962, -0.11836819350719452, 0.07798135280609131, -0.031925976276397705]} +{"t": 22.148, "q": [-0.36270636320114136, -0.007605136372148991, 0.007231623865664005, 0.6071410775184631, -0.2830154597759247, 0.003400786779820919, -0.3563147783279419, 0.01389957033097744, -0.004017568659037352, 0.6303297281265259, -0.332168847322464, -0.012059878557920456, -0.015481031499803066, 0.040304236114025116, -0.03133828565478325, -3.009742259979248, 2.2468385696411133, 1.880468726158142, 0.41683530807495117, -0.134750634431839, -0.0899895504117012, 0.020073577761650085, 0.08550744503736496, -0.6463212370872498, -0.1389690786600113, 1.1879483461380005, -0.11834422498941422, 0.07799334079027176, -0.03191399201750755]} +{"t": 22.1649, "q": [-0.36262112855911255, -0.007605136372148991, 0.007204839959740639, 0.6071410775184631, -0.2829988896846771, 0.0033864500001072884, -0.35634884238243103, 0.013882526196539402, -0.003964001312851906, 0.6303808689117432, -0.3321852684020996, -0.012074233032763004, -0.015440856106579304, 0.0411851704120636, -0.03155458718538284, -3.0119714736938477, 2.2468745708465576, 1.880624532699585, 0.41681134700775146, -0.1347266584634781, -0.09000153094530106, 0.020085562020540237, 0.08507601171731949, -0.6479031443595886, -0.13938851654529572, 1.1852757930755615, -0.11836819350719452, 0.07796937227249146, -0.031925976276397705]} +{"t": 22.1816, "q": [-0.3625614643096924, -0.00761365843936801, 0.007137880194932222, 0.6071581244468689, -0.2829948365688324, 0.003350353566929698, -0.3564085066318512, 0.013848437927663326, -0.003964001312851906, 0.6303808689117432, -0.3321647047996521, -0.012067175470292568, -0.0154542475938797, 0.04213530942797661, -0.032032646238803864, -3.0135412216186523, 2.2468385696411133, 1.8809480667114258, 0.41683530807495117, -0.13478657603263855, -0.0900135189294815, 0.02009754627943039, 0.08426108956336975, -0.6491974592208862, -0.1396401971578598, 1.1831306219100952, -0.11836819350719452, 0.07802928984165192, -0.03191399201750755]} +{"t": 22.1984, "q": [-0.3625018298625946, -0.00761365843936801, 0.007151272147893906, 0.607149600982666, -0.2829907536506653, 0.0033287168480455875, -0.3564596474170685, 0.013848437927663326, -0.003937217406928539, 0.6303808689117432, -0.332168847322464, -0.012059878557920456, -0.015507815405726433, 0.04316188395023346, -0.03268013522028923, -3.0145599842071533, 2.2468624114990234, 1.881151795387268, 0.41685929894447327, -0.13481055200099945, -0.0900135189294815, 0.02009754627943039, 0.08357799053192139, -0.650335967540741, -0.14041917026042938, 1.1801586151123047, -0.11838017404079437, 0.07800532132387161, -0.0319020077586174]} +{"t": 22.2153, "q": [-0.3624506890773773, -0.0076307025738060474, 0.007164664100855589, 0.6071410775184631, -0.28300321102142334, 0.0033358586952090263, -0.3565959930419922, 0.013814348727464676, -0.00388364982791245, 0.6303723454475403, -0.3321771025657654, -0.012045267038047314, -0.015601558610796928, 0.044006239622831345, -0.03327484428882599, -3.0150034427642822, 2.2468504905700684, 1.8811758756637573, 0.4168952405452728, -0.1347745954990387, -0.09000153094530106, 0.02009754627943039, 0.08319449424743652, -0.6505157351493835, -0.141809344291687, 1.1767550706863403, -0.11838017404079437, 0.07802928984165192, -0.03191399201750755]} +{"t": 22.2321, "q": [-0.3623313903808594, -0.0076647913083434105, 0.007231623865664005, 0.6071410775184631, -0.28302398324012756, 0.0033429479226469994, -0.3566727042198181, 0.013763216324150562, -0.0037497307639569044, 0.6303808689117432, -0.33220189809799194, -0.01200148556381464, -0.015681909397244453, 0.04489615187048912, -0.033890753984451294, -3.015350818634033, 2.2468504905700684, 1.881151795387268, 0.4168952405452728, -0.1347985714673996, -0.09002549946308136, 0.02009754627943039, 0.08311060070991516, -0.6505157351493835, -0.14357101917266846, 1.1726444959640503, -0.11838017404079437, 0.07802928984165192, -0.03191399201750755]} +{"t": 22.2488, "q": [-0.36224615573883057, -0.007698879577219486, 0.007231623865664005, 0.6071240305900574, -0.2830531597137451, 0.003321100492030382, -0.3569539189338684, 0.013771738857030869, -0.003696163184940815, 0.6303723454475403, -0.33220604062080383, -0.01199417095631361, -0.01578904502093792, 0.04564151540398598, -0.034390754997730255, -3.0153987407684326, 2.2468745708465576, 1.8811638355255127, 0.4168952405452728, -0.13483451306819916, -0.0900135189294815, 0.02009754627943039, 0.08336227387189865, -0.6505995988845825, -0.14486531913280487, 1.1677069664001465, -0.11836819350719452, 0.07807722687721252, -0.0319020077586174]} +{"t": 22.2657, "q": [-0.36224615573883057, -0.007707401644438505, 0.007271799258887768, 0.6071240305900574, -0.2830655574798584, 0.003342684358358383, -0.3570902943611145, 0.013729128055274487, -0.003589028026908636, 0.6303638219833374, -0.33220604062080383, -0.01199417095631361, -0.015922963619232178, 0.04623481258749962, -0.03479870781302452, -3.0153868198394775, 2.2468385696411133, 1.8810919523239136, 0.4169311821460724, -0.1347745954990387, -0.09002549946308136, 0.020085562020540237, 0.0833263173699379, -0.6510190963745117, -0.14639928936958313, 1.1636801958084106, -0.11838017404079437, 0.07805325835943222, -0.0319020077586174]} +{"t": 22.2824, "q": [-0.36224615573883057, -0.007732967846095562, 0.0072584073059260845, 0.6071410775184631, -0.2830864191055298, 0.003320889314636588, -0.35725221037864685, 0.01375469472259283, -0.003468500915914774, 0.6303552985191345, -0.33221837878227234, -0.011986799538135529, -0.015909571200609207, 0.04671396687626839, -0.03512044996023178, -3.0154707431793213, 2.2468745708465576, 1.881139874458313, 0.4170750081539154, -0.13478657603263855, -0.09000153094530106, 0.020073577761650085, 0.08311060070991516, -0.6516063213348389, -0.1484006643295288, 1.1603845357894897, -0.11840414255857468, 0.07806524634361267, -0.031866054981946945]} +{"t": 22.2991, "q": [-0.3621950149536133, -0.007775578647851944, 0.007245015352964401, 0.6071325540542603, -0.28309887647628784, 0.0033280313946306705, -0.3576868176460266, 0.013729128055274487, -0.0034149333368986845, 0.6303638219833374, -0.33221837878227234, -0.011986799538135529, -0.01593635603785515, 0.04712469130754471, -0.035406194627285004, -3.015638589859009, 2.2468984127044678, 1.8812477588653564, 0.4171469211578369, -0.1347745954990387, -0.09000153094530106, 0.02009754627943039, 0.08314655721187592, -0.6522055268287659, -0.1516963243484497, 1.1568971872329712, -0.11838017404079437, 0.07806524634361267, -0.03184208646416664]} +{"t": 22.3161, "q": [-0.362169474363327, -0.007775578647851944, 0.0072584073059260845, 0.6071240305900574, -0.28309887647628784, 0.0033280313946306705, -0.35803622007369995, 0.013703561387956142, -0.003361365757882595, 0.6303808689117432, -0.33223071694374084, -0.011993949301540852, -0.01598992384970188, 0.047527823597192764, -0.03568699583411217, -3.0156984329223633, 2.2468504905700684, 1.8812477588653564, 0.41729071736335754, -0.13476261496543884, -0.09002549946308136, 0.020073577761650085, 0.08315853774547577, -0.6526609063148499, -0.15592674911022186, 1.1536134481430054, -0.11839216202497482, 0.07806524634361267, -0.03184208646416664]} +{"t": 22.3328, "q": [-0.3620927631855011, -0.007792622782289982, 0.007245015352964401, 0.6071325540542603, -0.2831155061721802, 0.0033279259223490953, -0.3581470251083374, 0.013584252446889877, -0.003321190131828189, 0.6303808689117432, -0.33223071694374084, -0.011993949301540852, -0.016043491661548615, 0.0478016696870327, -0.03588100150227547, -3.0157344341278076, 2.2468745708465576, 1.8812477588653564, 0.4174704849720001, -0.1348225325345993, -0.0900135189294815, 0.020085562020540237, 0.08341021090745926, -0.6534398794174194, -0.15857526659965515, 1.1500182151794434, -0.11839216202497482, 0.07807722687721252, -0.03181811794638634]} +{"t": 22.3495, "q": [-0.3620842397212982, -0.007801144849509001, 0.0071914480067789555, 0.6071155071258545, -0.28314897418022156, 0.0032699289731681347, -0.35831746459007263, 0.013447898440063, -0.0031203117687255144, 0.6303723454475403, -0.3322637677192688, -0.011935555376112461, -0.01613723486661911, 0.04806045442819595, -0.036104120314121246, -3.0157582759857178, 2.2468745708465576, 1.8812477588653564, 0.4176023006439209, -0.13476261496543884, -0.0900135189294815, 0.020085562020540237, 0.08388957381248474, -0.6540989875793457, -0.16214656829833984, 1.1457997560501099, -0.11839216202497482, 0.07808921486139297, -0.03179414942860603]} +{"t": 22.3664, "q": [-0.3620927631855011, -0.00780966691672802, 0.007178056053817272, 0.607149600982666, -0.28315314650535583, 0.0032626816537231207, -0.3583771288394928, 0.013405287638306618, -0.0029060414526611567, 0.6303638219833374, -0.3322678208351135, -0.011957298964262009, -0.016257761046290398, 0.048197727650403976, -0.03629456087946892, -3.015806198120117, 2.2468504905700684, 1.8812717199325562, 0.4177221655845642, -0.1347745954990387, -0.09002549946308136, 0.020085562020540237, 0.08398544788360596, -0.6544345617294312, -0.16648486256599426, 1.142791748046875, -0.11840414255857468, 0.07807722687721252, -0.031806133687496185]} +{"t": 22.3831, "q": [-0.36206719279289246, -0.007801144849509001, 0.0071914480067789555, 0.6071410775184631, -0.2831697165966034, 0.0032770182006061077, -0.35845381021499634, 0.013405287638306618, -0.0028926494996994734, 0.6303638219833374, -0.3322637677192688, -0.011935555376112461, -0.01631132885813713, 0.048312220722436905, -0.036479488015174866, -3.015998125076294, 2.2468504905700684, 1.8812717199325562, 0.41784200072288513, -0.13471467792987823, -0.0900135189294815, 0.020085562020540237, 0.0839494988322258, -0.6553214192390442, -0.16897757351398468, 1.1407424211502075, -0.11839216202497482, 0.07807722687721252, -0.03181811794638634]} +{"t": 22.3998, "q": [-0.36202457547187805, -0.00780966691672802, 0.0071914480067789555, 0.6071581244468689, -0.2831655442714691, 0.0032842655200511217, -0.35859018564224243, 0.013354155234992504, -0.002865865593776107, 0.6303808689117432, -0.33225956559181213, -0.011971892789006233, -0.016418464481830597, 0.048343006521463394, -0.03659829869866371, -3.016465425491333, 2.2468864917755127, 1.8812717199325562, 0.4179498553276062, -0.13476261496543884, -0.09002549946308136, 0.020085562020540237, 0.0839494988322258, -0.6558486819267273, -0.1723451465368271, 1.1387650966644287, -0.11840414255857468, 0.07812516391277313, -0.03177018091082573]} +{"t": 22.4167, "q": [-0.36199048161506653, -0.007852277718484402, 0.0071914480067789555, 0.6071666479110718, -0.283169686794281, 0.0032914781477302313, -0.35876914858818054, 0.013285977765917778, -0.0027453387156128883, 0.6303723454475403, -0.3322596251964569, -0.011942852288484573, -0.01645863987505436, 0.04836604744195938, -0.03667265921831131, -3.017124652862549, 2.2468745708465576, 1.8812836408615112, 0.41816556453704834, -0.1347745954990387, -0.0900135189294815, 0.020073577761650085, 0.08423712104558945, -0.6564838886260986, -0.17468206584453583, 1.1362364292144775, -0.11840414255857468, 0.07826897501945496, -0.03177018091082573]} +{"t": 22.4334, "q": [-0.36193937063217163, -0.007852277718484402, 0.007151272147893906, 0.6071410775184631, -0.283186137676239, 0.0033346987329423428, -0.3589310646057129, 0.013175190426409245, -0.0027989062946289778, 0.630389392375946, -0.3322596549987793, -0.011928332969546318, -0.01644524745643139, 0.048419397324323654, -0.03673797845840454, -3.0182511806488037, 2.2468624114990234, 1.881367564201355, 0.4184292256832123, -0.1347266584634781, -0.0900135189294815, 0.020073577761650085, 0.08477640897035599, -0.6572748422622681, -0.17582057416439056, 1.1330845355987549, -0.11840414255857468, 0.0782569944858551, -0.03178216516971588]} +{"t": 22.4502, "q": [-0.36193937063217163, -0.007894888520240784, 0.007137880194932222, 0.6072007417678833, -0.2831903398036957, 0.0033274514134973288, -0.35894811153411865, 0.0131496237590909, -0.002691771136596799, 0.6303979158401489, -0.3322719633579254, -0.011950002051889896, -0.016418464481830597, 0.04843464493751526, -0.03675804287195206, -3.0196292400360107, 2.2468745708465576, 1.881367564201355, 0.41878876090049744, -0.13473863899707794, -0.0900135189294815, 0.020061593502759933, 0.08562728762626648, -0.6577781438827515, -0.17659954726696014, 1.1290818452835083, -0.11838017404079437, 0.07838881760835648, -0.03178216516971588]} +{"t": 22.4671, "q": [-0.3619052767753601, -0.007946020923554897, 0.007124488707631826, 0.6072263121604919, -0.28317371010780334, 0.003327556885778904, -0.35899922251701355, 0.01320927869528532, -0.002718554809689522, 0.6304831504821777, -0.3322513699531555, -0.011957446113228798, -0.016418464481830597, 0.048442400991916656, -0.0368025004863739, -3.0206000804901123, 2.2468745708465576, 1.8814754486083984, 0.41923215985298157, -0.1347985714673996, -0.09002549946308136, 0.020073577761650085, 0.08617856353521347, -0.6579219698905945, -0.17712685465812683, 1.1244559288024902, -0.11840414255857468, 0.07846072316169739, -0.03178216516971588]} +{"t": 22.4839, "q": [-0.3618285655975342, -0.00798863172531128, 0.007137880194932222, 0.6072689294815063, -0.28318196535110474, 0.0033419460523873568, -0.35904183983802795, 0.013200757093727589, -0.002718554809689522, 0.6305939555168152, -0.3322555124759674, -0.011950149200856686, -0.01647203229367733, 0.04841984063386917, -0.03685599938035011, -3.0211033821105957, 2.246814489364624, 1.8815593719482422, 0.41978344321250916, -0.1347745954990387, -0.09002549946308136, 0.020085562020540237, 0.0863223746418953, -0.6579219698905945, -0.17745041847229004, 1.1202853918075562, -0.11840414255857468, 0.07848469167947769, -0.03179414942860603]} +{"t": 22.5007, "q": [-0.3617774546146393, -0.00798863172531128, 0.007151272147893906, 0.6073455810546875, -0.2831944525241852, 0.003334646113216877, -0.3591015040874481, 0.013158146291971207, -0.0026783791836351156, 0.6306876540184021, -0.3322596251964569, -0.011942852288484573, -0.016605950891971588, 0.04842020571231842, -0.036954350769519806, -3.021354913711548, 2.2468624114990234, 1.8816192150115967, 0.4202388525009155, -0.13476261496543884, -0.09002549946308136, 0.020073577761650085, 0.08643022924661636, -0.6578261256217957, -0.17765416204929352, 1.1175649166107178, -0.11840414255857468, 0.07860453426837921, -0.03177018091082573]} +{"t": 22.5174, "q": [-0.36175188422203064, -0.008014197461307049, 0.007245015352964401, 0.6073711514472961, -0.28317785263061523, 0.0033347513526678085, -0.3593060374259949, 0.013124058023095131, -0.002651595277711749, 0.6307984590530396, -0.3322555124759674, -0.011950149200856686, -0.01661934331059456, 0.04846609756350517, -0.03705389425158501, -3.0217745304107666, 2.2468745708465576, 1.8817270994186401, 0.42070621252059937, -0.1347266584634781, -0.0900135189294815, 0.020073577761650085, 0.08644221723079681, -0.6576822996139526, -0.17775003612041473, 1.1144490242004395, -0.11840414255857468, 0.07879628241062164, -0.03177018091082573]} +{"t": 22.5341, "q": [-0.36175188422203064, -0.008073852397501469, 0.0072584073059260845, 0.607456386089325, -0.2831694781780243, 0.00334924622438848, -0.35935714840888977, 0.0131496237590909, -0.00258463597856462, 0.6310029625892639, -0.3322555124759674, -0.011950149200856686, -0.016592558473348618, 0.048534732311964035, -0.03714911267161369, -3.022505521774292, 2.2468624114990234, 1.8818708658218384, 0.42108970880508423, -0.13471467792987823, -0.09000153094530106, 0.020073577761650085, 0.08649015426635742, -0.6575384736061096, -0.1777620166540146, 1.1111414432525635, -0.11841613054275513, 0.07890413701534271, -0.03177018091082573]} +{"t": 22.5508, "q": [-0.36178597807884216, -0.008133507333695889, 0.007218231912702322, 0.6076523661613464, -0.2831652760505676, 0.003356493543833494, -0.35945090651512146, 0.0131496237590909, -0.00258463597856462, 0.6311649084091187, -0.3322555124759674, -0.011950149200856686, -0.016592558473348618, 0.04873252287507057, -0.0372919999063015, -3.0236079692840576, 2.2468504905700684, 1.8819668292999268, 0.42160505056381226, -0.13470269739627838, -0.0900135189294815, 0.020061593502759933, 0.08651412278413773, -0.6573107838630676, -0.1778818517923355, 1.1071146726608276, -0.11840414255857468, 0.0791558101773262, -0.03177018091082573]} +{"t": 22.5676, "q": [-0.36179450154304504, -0.008210206404328346, 0.0071914480067789555, 0.6078398823738098, -0.28315696120262146, 0.003356564324349165, -0.359485000371933, 0.013081447221338749, -0.00258463597856462, 0.6313268542289734, -0.3322513699531555, -0.011957446113228798, -0.016512207686901093, 0.04893069714307785, -0.037543248385190964, -3.0246148109436035, 2.2468745708465576, 1.8822304010391235, 0.42233607172966003, -0.13469070196151733, -0.0900135189294815, 0.020073577761650085, 0.08649015426635742, -0.6570351719856262, -0.17792978882789612, 1.1031599044799805, -0.11840414255857468, 0.07922771573066711, -0.03177018091082573]} +{"t": 22.5843, "q": [-0.3617774546146393, -0.008286905474960804, 0.007137880194932222, 0.608129620552063, -0.2831694185733795, 0.0033636882435530424, -0.359485000371933, 0.013038836419582367, -0.0025712440256029367, 0.6316336393356323, -0.3322513699531555, -0.011957446113228798, -0.01644524745643139, 0.04917449131608009, -0.03781558945775032, -3.0260887145996094, 2.2468745708465576, 1.8822064399719238, 0.423342764377594, -0.13471467792987823, -0.09000153094530106, 0.020073577761650085, 0.08650213479995728, -0.6566756367683411, -0.17792978882789612, 1.0993369817733765, -0.11840414255857468, 0.07928763329982758, -0.03175819665193558]} +{"t": 22.601, "q": [-0.36179450154304504, -0.00835508294403553, 0.007070920895785093, 0.6084108352661133, -0.28316110372543335, 0.003363759024068713, -0.3595276176929474, 0.01293657161295414, -0.0025712440256029367, 0.6319233775138855, -0.3322596251964569, -0.011942852288484573, -0.016351504251360893, 0.04944101721048355, -0.038083624094724655, -3.0278143882751465, 2.2468504905700684, 1.8822064399719238, 0.42432546615600586, -0.13471467792987823, -0.0899655818939209, 0.020073577761650085, 0.0866219773888588, -0.6562681794166565, -0.1779058277606964, 1.0966883897781372, -0.11840414255857468, 0.07932358980178833, -0.03178216516971588]} +{"t": 22.6178, "q": [-0.36179450154304504, -0.008423259481787682, 0.007044136989861727, 0.6086665391921997, -0.2831569015979767, 0.003371006343513727, -0.3595787286758423, 0.01287691667675972, -0.00254446011967957, 0.6322045922279358, -0.3322514295578003, -0.011928406544029713, -0.01612384244799614, 0.04969210922718048, -0.0382823720574379, -3.0297439098358154, 2.2468504905700684, 1.8822064399719238, 0.42505648732185364, -0.13467872142791748, -0.0899416133761406, 0.020085562020540237, 0.0866699144244194, -0.655704915523529, -0.1779058277606964, 1.093932032585144, -0.11841613054275513, 0.07949136942625046, -0.03175819665193558]} +{"t": 22.6345, "q": [-0.36184561252593994, -0.008542569354176521, 0.006977177690714598, 0.6089221835136414, -0.28314441442489624, 0.003378306282684207, -0.3596554398536682, 0.012851350009441376, -0.00254446011967957, 0.6325199007987976, -0.33225560188293457, -0.011906590312719345, -0.016070274636149406, 0.0500040128827095, -0.038512300699949265, -3.0314457416534424, 2.2468864917755127, 1.8822543621063232, 0.4256197512149811, -0.13470269739627838, -0.08992962539196014, 0.020085562020540237, 0.08714928478002548, -0.6552374958992004, -0.1779058277606964, 1.0909479856491089, -0.11842811107635498, 0.07974303513765335, -0.031746212393045425]} +{"t": 22.6514, "q": [-0.36184561252593994, -0.008619267493486404, 0.007003961596637964, 0.6091267466545105, -0.2831445336341858, 0.0033494222443550825, -0.3597576916217804, 0.0128172617405653, -0.0024775005877017975, 0.6328011751174927, -0.3322555720806122, -0.0119211096316576, -0.016083667054772377, 0.050254929810762405, -0.038661811500787735, -3.032428503036499, 2.2468745708465576, 1.8822903633117676, 0.42595532536506653, -0.13469070196151733, -0.08991764485836029, 0.02009754627943039, 0.08713730424642563, -0.6549019813537598, -0.1779058277606964, 1.0879160165786743, -0.11840414255857468, 0.08018644899129868, -0.03173422813415527]} +{"t": 22.6682, "q": [-0.3618285655975342, -0.008661878295242786, 0.007070920895785093, 0.609390914440155, -0.2831278443336487, 0.00336396973580122, -0.3598514497280121, 0.01269795186817646, -0.002356973709538579, 0.6331335306167603, -0.3322104215621948, -0.011885198764503002, -0.01612384244799614, 0.050483059138059616, -0.03880578652024269, -3.0331594944000244, 2.2468745708465576, 1.8823503255844116, 0.4261949956417084, -0.13467872142791748, -0.0899416133761406, 0.020085562020540237, 0.08719722181558609, -0.6545664072036743, -0.17792978882789612, 1.0837215185165405, -0.11842811107635498, 0.08054597675800323, -0.03169827535748482]} +{"t": 22.6849, "q": [-0.36183708906173706, -0.008678922429680824, 0.007124488707631826, 0.6096550822257996, -0.2831527888774872, 0.003363811643794179, -0.35997074842453003, 0.01236558984965086, -0.0022230546455830336, 0.6335085034370422, -0.3322104811668396, -0.011856140568852425, -0.016204193234443665, 0.05061228573322296, -0.03887327015399933, -3.0336029529571533, 2.2468745708465576, 1.8824820518493652, 0.42660245299339294, -0.13470269739627838, -0.08995359390974045, 0.020073577761650085, 0.087269127368927, -0.6543986201286316, -0.1779058277606964, 1.0789158344268799, -0.11842811107635498, 0.08080963045358658, -0.03171025961637497]} +{"t": 22.7017, "q": [-0.36184561252593994, -0.008695967495441437, 0.007164664100855589, 0.6098766922950745, -0.28315284848213196, 0.0033493696246296167, -0.3600730299949646, 0.012135492637753487, -0.0021828790195286274, 0.6339175701141357, -0.3322104811668396, -0.011856140568852425, -0.01628454588353634, 0.050695985555648804, -0.03893951699137688, -3.0340702533721924, 2.2468624114990234, 1.8824820518493652, 0.4274653196334839, -0.13466674089431763, -0.0899895504117012, 0.020085562020540237, 0.0872451588511467, -0.6540271043777466, -0.17791780829429626, 1.0757399797439575, -0.11842811107635498, 0.08085756748914719, -0.03171025961637497]} +{"t": 22.7185, "q": [-0.36184561252593994, -0.008695967495441437, 0.007231623865664005, 0.6101323366165161, -0.28330346941947937, 0.003088374389335513, -0.3602605164051056, 0.01206731516867876, -0.0020623519085347652, 0.6343181133270264, -0.3322186768054962, -0.011870604939758778, -0.01631132885813713, 0.05074165388941765, -0.03898012638092041, -3.034705400466919, 2.2468745708465576, 1.8826138973236084, 0.42851993441581726, -0.13464276492595673, -0.0899895504117012, 0.020061593502759933, 0.08719722181558609, -0.6537154912948608, -0.1778818517923355, 1.0735108852386475, -0.11841613054275513, 0.08100137859582901, -0.03171025961637497]} +{"t": 22.7352, "q": [-0.3619564175605774, -0.008704489096999168, 0.007164664100855589, 0.6103624105453491, -0.283496230840683, 0.0026826595421880484, -0.3604394793510437, 0.011862784624099731, -0.0021025275345891714, 0.6345908045768738, -0.33224326372146606, -0.011899422854185104, -0.016271153464913368, 0.050734080374240875, -0.03898484632372856, -3.0357000827789307, 2.2468624114990234, 1.8827697038650513, 0.42964646220207214, -0.13464276492595673, -0.0899895504117012, 0.020085562020540237, 0.08713730424642563, -0.6534638404846191, -0.17789383232593536, 1.0707186460494995, -0.11842811107635498, 0.08128900080919266, -0.03169827535748482]} +{"t": 22.7519, "q": [-0.36197346448898315, -0.0087130106985569, 0.007137880194932222, 0.6104987859725952, -0.2834340035915375, 0.0026469319127500057, -0.3604991137981415, 0.011590076610445976, -0.0021159194875508547, 0.6348379254341125, -0.3322269022464752, -0.011870531365275383, -0.016217585653066635, 0.05075686424970627, -0.038990382105112076, -3.0367066860198975, 2.2468385696411133, 1.883021354675293, 0.430856853723526, -0.13461880385875702, -0.0899895504117012, 0.020073577761650085, 0.08720920979976654, -0.6531882286071777, -0.17789383232593536, 1.0682858228683472, -0.11842811107635498, 0.08143281191587448, -0.03171025961637497]} +{"t": 22.7686, "q": [-0.3619649410247803, -0.008738577365875244, 0.00709770480170846, 0.6105584502220154, -0.28363245725631714, 0.0029490564484149218, -0.3606184422969818, 0.011291802860796452, -0.002156095113605261, 0.6349828243255615, -0.3322760760784149, -0.011942705139517784, -0.01612384244799614, 0.0507645420730114, -0.039015211164951324, -3.0380969047546387, 2.246814489364624, 1.8831052780151367, 0.4322470426559448, -0.13460682332515717, -0.08995359390974045, 0.020073577761650085, 0.08717325329780579, -0.6530563831329346, -0.1779058277606964, 1.0663443803787231, -0.11842811107635498, 0.08164852857589722, -0.031686291098594666]} +{"t": 22.7854, "q": [-0.36203309893608093, -0.008823798969388008, 0.0070307450369000435, 0.6107118129730225, -0.2836574912071228, 0.002919996390119195, -0.36068660020828247, 0.01071229949593544, -0.0021828790195286274, 0.6352299451828003, -0.3322760760784149, -0.011942705139517784, -0.01598992384970188, 0.050833024084568024, -0.039071206003427505, -3.0399065017700195, 2.2468385696411133, 1.8831292390823364, 0.433433473110199, -0.13461880385875702, -0.08991764485836029, 0.02004960924386978, 0.08723317831754684, -0.6529964804649353, -0.1779058277606964, 1.0644389390945435, -0.11842811107635498, 0.0818522572517395, -0.031686291098594666]} +{"t": 22.8023, "q": [-0.362101286649704, -0.00889197550714016, 0.006923609878867865, 0.6108055710792542, -0.28414639830589294, 0.0035093321930617094, -0.36073774099349976, 0.008897088468074799, -0.0022096626926213503, 0.6354004144668579, -0.3322802186012268, -0.011935408227145672, -0.015882788226008415, 0.0508938729763031, -0.03911224752664566, -3.0416922569274902, 2.2468504905700684, 1.8831532001495361, 0.43416452407836914, -0.13464276492595673, -0.08992962539196014, 0.020073577761650085, 0.08728111535310745, -0.6529005765914917, -0.1779058277606964, 1.0623416900634766, -0.11842811107635498, 0.08206797391176224, -0.031674306839704514]} +{"t": 22.819, "q": [-0.3621864914894104, -0.009122072719037533, 0.006816474720835686, 0.6108567118644714, -0.28439629077911377, 0.003941721748560667, -0.36092522740364075, 0.008402805775403976, -0.002464108867570758, 0.6357412934303284, -0.33229249715805054, -0.011957095004618168, -0.015909571200609207, 0.05093953758478165, -0.03915293514728546, -3.0428547859191895, 2.2468504905700684, 1.883524775505066, 0.43451204895973206, -0.13464276492595673, -0.08991764485836029, 0.020061593502759933, 0.0872211903333664, -0.6529005765914917, -0.17794176936149597, 1.0595372915267944, -0.11844009906053543, 0.08240353316068649, -0.031674306839704514]} +{"t": 22.8357, "q": [-0.3622376322746277, -0.009283993393182755, 0.0068030827678740025, 0.6109078526496887, -0.2848294675350189, 0.0046767606399953365, -0.3611809015274048, 0.008377239108085632, -0.0024373249616473913, 0.6360992193222046, -0.33229658007621765, -0.01197883766144514, -0.01596313901245594, 0.050992704927921295, -0.039169199764728546, -3.0439813137054443, 2.2468504905700684, 1.8837285041809082, 0.4347277581691742, -0.13460682332515717, -0.08992962539196014, 0.020073577761650085, 0.08728111535310745, -0.6529005765914917, -0.17794176936149597, 1.0557023286819458, -0.11844009906053543, 0.08261924982070923, -0.03166232258081436]} +{"t": 22.8525, "q": [-0.3623143434524536, -0.009301036596298218, 0.006870042532682419, 0.611027181148529, -0.2856874465942383, 0.006161333527415991, -0.3613598644733429, 0.008385761640965939, -0.0023435817565768957, 0.6362441182136536, -0.33228838443756104, -0.01196439191699028, -0.01594974845647812, 0.05105351284146309, -0.03920045495033264, -3.0452516078948975, 2.2468624114990234, 1.8837285041809082, 0.43476372957229614, -0.13460682332515717, -0.08995359390974045, 0.02004960924386978, 0.08719722181558609, -0.6529005765914917, -0.17796574532985687, 1.0525864362716675, -0.11844009906053543, 0.08266718685626984, -0.031674306839704514]} +{"t": 22.8692, "q": [-0.3624165952205658, -0.009309559129178524, 0.0068030827678740025, 0.6112998723983765, -0.2857833206653595, 0.006269263569265604, -0.3614962100982666, 0.008377239108085632, -0.002316797850653529, 0.6364315748214722, -0.33228012919425964, -0.011978985741734505, -0.015896180644631386, 0.0510840006172657, -0.039240725338459015, -3.047600507736206, 2.2468385696411133, 1.8837285041809082, 0.4348236322402954, -0.13464276492595673, -0.0899416133761406, 0.02004960924386978, 0.08725714683532715, -0.652876615524292, -0.17796574532985687, 1.0486197471618652, -0.11842811107635498, 0.0827750414609909, -0.03166232258081436]} +{"t": 22.8859, "q": [-0.3625614643096924, -0.009292514994740486, 0.006615596357733011, 0.6115469932556152, -0.28577494621276855, 0.006283758208155632, -0.36157292127609253, 0.008343150839209557, -0.002397149335592985, 0.6365935206413269, -0.33228012919425964, -0.011978985741734505, -0.01578904502093792, 0.05108403414487839, -0.03925057873129845, -3.050213098526001, 2.2468504905700684, 1.8838003873825073, 0.4348955452442169, -0.13459482789039612, -0.0899416133761406, 0.020061593502759933, 0.08743690699338913, -0.6528646349906921, -0.17798970639705658, 1.0453120470046997, -0.11845207959413528, 0.08279900997877121, -0.03166232258081436]} +{"t": 22.9027, "q": [-0.3626040816307068, -0.009309559129178524, 0.006535245105624199, 0.6117430329322815, -0.28577911853790283, 0.006276510655879974, -0.36156439781188965, 0.008360194973647594, -0.0024507169146090746, 0.6367127895355225, -0.33228418231010437, -0.012000728398561478, -0.01578904502093792, 0.05106896162033081, -0.03927972540259361, -3.051591157913208, 2.2468385696411133, 1.884507417678833, 0.4348955452442169, -0.13464276492595673, -0.0899416133761406, 0.020073577761650085, 0.08742492645978928, -0.6528406739234924, -0.17800170183181763, 1.0421961545944214, -0.11842811107635498, 0.08284694701433182, -0.03163835406303406]} +{"t": 22.9194, "q": [-0.36276599764823914, -0.009301036596298218, 0.006521853152662516, 0.6119304895401001, -0.285849928855896, 0.0063990214839577675, -0.36180299520492554, 0.008334629237651825, -0.0024105412885546684, 0.6368406414985657, -0.3322964310646057, -0.012036916799843311, -0.015869395807385445, 0.05103128403425217, -0.03935258835554123, -3.0521903038024902, 2.2468504905700684, 1.885478138923645, 0.43485960364341736, -0.13458284735679626, -0.0899655818939209, 0.020073577761650085, 0.08746087551116943, -0.652792751789093, -0.17798970639705658, 1.0384570360183716, -0.11842811107635498, 0.08288290351629257, -0.031626369804143906]} +{"t": 22.9361, "q": [-0.3628768026828766, -0.009292514994740486, 0.006535245105624199, 0.6121180057525635, -0.28587907552719116, 0.006463922094553709, -0.3618967533111572, 0.008343150839209557, -0.002397149335592985, 0.6369770169258118, -0.33229637145996094, -0.012051455676555634, -0.015896180644631386, 0.051031313836574554, -0.03936244174838066, -3.052406072616577, 2.2468385696411133, 1.8867005109786987, 0.43476372957229614, -0.13460682332515717, -0.0899655818939209, 0.020073577761650085, 0.08750881254673004, -0.6527807712554932, -0.17798970639705658, 1.0353171825408936, -0.11844009906053543, 0.08287091553211212, -0.031614385545253754]} +{"t": 22.9528, "q": [-0.36311542987823486, -0.009275470860302448, 0.006521853152662516, 0.6122884154319763, -0.285912424325943, 0.0064926715567708015, -0.3621268570423126, 0.008334629237651825, -0.002383757382631302, 0.6371048092842102, -0.33225542306900024, -0.011979207396507263, -0.015896180644631386, 0.05101614072918892, -0.039362020790576935, -3.0523462295532227, 2.2468385696411133, 1.888773798942566, 0.4347037971019745, -0.13463078439235687, -0.08997756242752075, 0.02004960924386978, 0.08752080053091049, -0.6526129841804504, -0.17798970639705658, 1.0333278179168701, -0.11844009906053543, 0.08287091553211212, -0.03165033832192421]} +{"t": 22.9697, "q": [-0.3633881211280823, -0.009283993393182755, 0.00646828580647707, 0.6124588847160339, -0.2859625518321991, 0.006463492289185524, -0.362356960773468, 0.008326106704771519, -0.002397149335592985, 0.6371644735336304, -0.33225539326667786, -0.011993727646768093, -0.01578904502093792, 0.051008570939302444, -0.03936673700809479, -3.052382230758667, 2.2468385696411133, 1.8907033205032349, 0.4347037971019745, -0.13460682332515717, -0.0899895504117012, 0.020073577761650085, 0.08753278106451035, -0.6517381072044373, -0.17794176936149597, 1.032500982284546, -0.11844009906053543, 0.08288290351629257, -0.031626369804143906]} +{"t": 22.9865, "q": [-0.3636437952518463, -0.009292514994740486, 0.006441501900553703, 0.6126633882522583, -0.2859624922275543, 0.006506865378469229, -0.36256998777389526, 0.008274974301457405, -0.002397149335592985, 0.6372411847114563, -0.332230806350708, -0.011950389482080936, -0.015614950098097324, 0.05101614072918892, -0.039362020790576935, -3.0523102283477783, 2.2468385696411133, 1.8926687240600586, 0.4347277581691742, -0.13458284735679626, -0.09000153094530106, 0.020085562020540237, 0.08772452920675278, -0.6503479480743408, -0.17795376479625702, 1.0317339897155762, -0.11842811107635498, 0.08290687203407288, -0.03163835406303406]} +{"t": 23.0032, "q": [-0.36386537551879883, -0.00937773659825325, 0.006495069246739149, 0.6126889586448669, -0.28598752617836, 0.00652118818834424, -0.362774521112442, 0.008198275230824947, -0.002397149335592985, 0.6373093724250793, -0.3322103023529053, -0.011928776279091835, -0.015440856106579304, 0.05103124678134918, -0.0393427312374115, -3.052262306213379, 2.246814489364624, 1.8939390182495117, 0.4347277581691742, -0.13460682332515717, -0.0900135189294815, 0.020073577761650085, 0.08822786808013916, -0.6488139629364014, -0.1779058277606964, 1.0311347246170044, -0.11844009906053543, 0.08290687203407288, -0.031626369804143906]} +{"t": 23.0201, "q": [-0.3639164865016937, -0.009565223008394241, 0.00646828580647707, 0.6127060055732727, -0.2859708368778229, 0.006521274335682392, -0.36289384961128235, 0.008070443756878376, -0.002356973709538579, 0.6373434662818909, -0.3321816325187683, -0.011878197081387043, -0.015320328995585442, 0.051061566919088364, -0.03933372348546982, -3.0521304607391357, 2.2468504905700684, 1.8952453136444092, 0.43478769063949585, -0.13459482789039612, -0.0899655818939209, 0.020073577761650085, 0.0887431874871254, -0.6473039388656616, -0.17789383232593536, 1.0307751893997192, -0.11842811107635498, 0.08294282108545303, -0.031614385545253754]} +{"t": 23.0368, "q": [-0.3639846742153168, -0.009693054482340813, 0.006495069246739149, 0.6126804351806641, -0.2858749032020569, 0.006456717383116484, -0.362919420003891, 0.00800226628780365, -0.0023435817565768957, 0.6373775601387024, -0.3321857154369354, -0.01188542041927576, -0.015213193371891975, 0.05103881657123566, -0.039338015019893646, -3.051950693130493, 2.2468504905700684, 1.896767258644104, 0.43478769063949585, -0.1345708668231964, -0.0899655818939209, 0.02004960924386978, 0.08935438096523285, -0.6460456252098083, -0.17786987125873566, 1.0305235385894775, -0.11842811107635498, 0.08293084055185318, -0.031626369804143906]} +{"t": 23.0535, "q": [-0.3640613555908203, -0.009778276085853577, 0.006495069246739149, 0.6126889586448669, -0.2858998775482178, 0.0064999619498848915, -0.36298757791519165, 0.00791704561561346, -0.0023435817565768957, 0.6373860836029053, -0.3321816325187683, -0.011878197081387043, -0.015159625560045242, 0.05103881657123566, -0.039338015019893646, -3.0517590045928955, 2.2468504905700684, 1.8985528945922852, 0.43478769063949585, -0.13460682332515717, -0.08997756242752075, 0.020061593502759933, 0.0902891531586647, -0.644727349281311, -0.17789383232593536, 1.0302718877792358, -0.11842811107635498, 0.08294282108545303, -0.031626369804143906]} +{"t": 23.0703, "q": [-0.36417216062545776, -0.009872019290924072, 0.006521853152662516, 0.6126889586448669, -0.28588318824768066, 0.006514499429613352, -0.36307281255722046, 0.007891478948295116, -0.002356973709538579, 0.6373519897460938, -0.3321939706802368, -0.011870826594531536, -0.01505249086767435, 0.0510084331035614, -0.039327315986156464, -3.0516390800476074, 2.2468385696411133, 1.8998112678527832, 0.43478769063949585, -0.13463078439235687, -0.08997756242752075, 0.02004960924386978, 0.09128384292125702, -0.6434569954872131, -0.17786987125873566, 1.0300202369689941, -0.11842811107635498, 0.08297877758741379, -0.031614385545253754]} +{"t": 23.087, "q": [-0.3642999827861786, -0.009948717430233955, 0.006521853152662516, 0.6126889586448669, -0.28584983944892883, 0.006471298169344664, -0.3631835877895355, 0.007840346544981003, -0.002383757382631302, 0.6373519897460938, -0.33217760920524597, -0.011841935105621815, -0.01505249086767435, 0.05098565295338631, -0.03932175412774086, -3.0516390800476074, 2.2468385696411133, 1.9003626108169556, 0.4348236322402954, -0.13463078439235687, -0.0899895504117012, 0.02004960924386978, 0.09218265861272812, -0.6422585844993591, -0.17786987125873566, 1.029600739479065, -0.11844009906053543, 0.08299075812101364, -0.031614385545253754]} +{"t": 23.1037, "q": [-0.3644448518753052, -0.01003393903374672, 0.006508461199700832, 0.6126974821090698, -0.2858290374279022, 0.0064208065159618855, -0.3633710741996765, 0.007755124941468239, -0.002356973709538579, 0.6373519897460938, -0.33217355608940125, -0.01182017382234335, -0.015106058679521084, 0.050970472395420074, -0.039321329444646835, -3.051687002182007, 2.2468504905700684, 1.9005663394927979, 0.43485960364341736, -0.13463078439235687, -0.09000153094530106, 0.020061593502759933, 0.09321330487728119, -0.6412878632545471, -0.17789383232593536, 1.028701901435852, -0.11844009906053543, 0.0830267146229744, -0.03159041702747345]} +{"t": 23.1206, "q": [-0.3645130395889282, -0.010136204771697521, 0.006615596357733011, 0.6127145290374756, -0.2854458689689636, 0.005757804494351149, -0.3634733557701111, 0.007772169075906277, -0.0023034061305224895, 0.6373264193534851, -0.3321325480937958, -0.011762445792555809, -0.01511945016682148, 0.05097044259309769, -0.039311476051807404, -3.0516512393951416, 2.2468385696411133, 1.9005903005599976, 0.4348476231098175, -0.13463078439235687, -0.0900135189294815, 0.020061593502759933, 0.09413608908653259, -0.6403771042823792, -0.17789383232593536, 1.0277072191238403, -0.11844009906053543, 0.08303869515657425, -0.03159041702747345]} +{"t": 23.1374, "q": [-0.3645556569099426, -0.01022142544388771, 0.006736123468726873, 0.6127145290374756, -0.28537464141845703, 0.005938870832324028, -0.3635500371456146, 0.007814779877662659, -0.0022632302716374397, 0.637334942817688, -0.3321284353733063, -0.011755223385989666, -0.015173017978668213, 0.05095519497990608, -0.03929134085774422, -3.0515551567077637, 2.2468624114990234, 1.9005663394927979, 0.4348476231098175, -0.13464276492595673, -0.0899895504117012, 0.02004960924386978, 0.09484315663576126, -0.6398018598556519, -0.1778818517923355, 1.027275800704956, -0.11842811107635498, 0.0830267146229744, -0.03159041702747345]} +{"t": 23.1541, "q": [-0.36464938521385193, -0.01034073531627655, 0.006776299327611923, 0.6127400994300842, -0.28536638617515564, 0.00588108878582716, -0.3636523187160492, 0.007797735743224621, -0.0022632302716374397, 0.6373519897460938, -0.33212849497795105, -0.011740685440599918, -0.015253368765115738, 0.05095519497990608, -0.03929134085774422, -3.051495313644409, 2.2468624114990234, 1.9005663394927979, 0.4348715841770172, -0.13459482789039612, -0.0899895504117012, 0.020073577761650085, 0.09551427513360977, -0.6392146348953247, -0.17789383232593536, 1.0271559953689575, -0.11845207959413528, 0.0830506831407547, -0.03159041702747345]} +{"t": 23.1711, "q": [-0.36463233828544617, -0.010425956919789314, 0.006843258626759052, 0.6127315759658813, -0.28530389070510864, 0.0057874564081430435, -0.36368638277053833, 0.007797735743224621, -0.0022632302716374397, 0.6373519897460938, -0.33212438225746155, -0.0117334621027112, -0.015253368765115738, 0.05093998834490776, -0.03928106278181076, -3.0514473915100098, 2.2468624114990234, 1.900482416152954, 0.4348715841770172, -0.13465476036071777, -0.0900135189294815, 0.020061593502759933, 0.09606555104255676, -0.6386153697967529, -0.17789383232593536, 1.0270960330963135, -0.11844009906053543, 0.083074651658535, -0.03159041702747345]} +{"t": 23.1878, "q": [-0.36467495560646057, -0.010468566790223122, 0.006910218391567469, 0.6127486228942871, -0.28492480516433716, 0.0051894658245146275, -0.3636949062347412, 0.00780625781044364, -0.0022900141775608063, 0.6373519897460938, -0.33207523822784424, -0.01164676807820797, -0.015280152671039104, 0.0509323813021183, -0.03927592188119888, -3.0513994693756104, 2.2468504905700684, 1.9005303382873535, 0.4349195063114166, -0.13461880385875702, -0.09000153094530106, 0.020061593502759933, 0.09642507880926132, -0.6379802227020264, -0.17789383232593536, 1.0268923044204712, -0.11842811107635498, 0.08308663219213486, -0.03159041702747345]} +{"t": 23.2046, "q": [-0.36464938521385193, -0.010485611855983734, 0.007003961596637964, 0.6127656698226929, -0.2837630808353424, 0.0035983012057840824, -0.3636949062347412, 0.00780625781044364, -0.0022900141775608063, 0.6373519897460938, -0.33207938075065613, -0.011639471165835857, -0.015306936576962471, 0.050902027636766434, -0.03927507996559143, -3.051375389099121, 2.2468385696411133, 1.9004703760147095, 0.4349434971809387, -0.13459482789039612, -0.0899895504117012, 0.02004960924386978, 0.096580870449543, -0.6373810172080994, -0.1778818517923355, 1.0268323421478271, -0.11842811107635498, 0.08309862017631531, -0.03159041702747345]} +{"t": 23.2214, "q": [-0.36464086174964905, -0.010502655059099197, 0.007044136989861727, 0.6128168106079102, -0.28314751386642456, 0.0025404179468750954, -0.3637034296989441, 0.00780625781044364, -0.002276622224599123, 0.6373519897460938, -0.33208751678466797, -0.011668437160551548, -0.015333720482885838, 0.05090956762433052, -0.03926050662994385, -3.051351547241211, 2.2468504905700684, 1.900482416152954, 0.43493151664733887, -0.13459482789039612, -0.0900135189294815, 0.020061593502759933, 0.09664079546928406, -0.6367937922477722, -0.17789383232593536, 1.0267964601516724, -0.11842811107635498, 0.08311060070991516, -0.0316024012863636]} +{"t": 23.2381, "q": [-0.3647090494632721, -0.010502655059099197, 0.007070920895785093, 0.6128423810005188, -0.2830401062965393, 0.0023533033672720194, -0.36372047662734985, 0.00780625781044364, -0.0022632302716374397, 0.6373605132102966, -0.3320874869823456, -0.011682975105941296, -0.015347111970186234, 0.05090195685625076, -0.03925536572933197, -3.051351547241211, 2.2468624114990234, 1.9004344940185547, 0.4348955452442169, -0.13463078439235687, -0.0899895504117012, 0.02004960924386978, 0.09664079546928406, -0.6359549164772034, -0.1778818517923355, 1.0267964601516724, -0.11844009906053543, 0.08313456922769547, -0.03159041702747345]} +{"t": 23.2548, "q": [-0.36473461985588074, -0.010502655059099197, 0.007044136989861727, 0.6128423810005188, -0.2833367884159088, 0.001954150153324008, -0.3638227581977844, 0.007772169075906277, -0.0022632302716374397, 0.6373690366744995, -0.332095742225647, -0.011668363586068153, -0.015333720482885838, 0.05090195685625076, -0.03925536572933197, -3.0514113903045654, 2.2468385696411133, 1.900482416152954, 0.4348955452442169, -0.13461880385875702, -0.09000153094530106, 0.020061593502759933, 0.09664079546928406, -0.6349722146987915, -0.17784589529037476, 1.0268083810806274, -0.11842811107635498, 0.08313456922769547, -0.0316024012863636]} +{"t": 23.2716, "q": [-0.3647601902484894, -0.010502655059099197, 0.007003961596637964, 0.6128423810005188, -0.28323689103126526, 0.0019836670253425837, -0.36384832859039307, 0.007797735743224621, -0.0023034061305224895, 0.6373690366744995, -0.33208751678466797, -0.011668437160551548, -0.015333720482885838, 0.05087157338857651, -0.03924468532204628, -3.0513875484466553, 2.2468385696411133, 1.9005303382873535, 0.43488356471061707, -0.13461880385875702, -0.09002549946308136, 0.02004960924386978, 0.0966048389673233, -0.6340254545211792, -0.17784589529037476, 1.0268083810806274, -0.11842811107635498, 0.08314655721187592, -0.03159041702747345]} +{"t": 23.2883, "q": [-0.364785760641098, -0.010485611855983734, 0.006937001831829548, 0.6128509044647217, -0.28327417373657227, 0.002019534818828106, -0.3638909161090851, 0.00780625781044364, -0.0023435817565768957, 0.6373775601387024, -0.3321080505847931, -0.011690032668411732, -0.015293545089662075, 0.05085635930299759, -0.03923441842198372, -3.0513875484466553, 2.2468624114990234, 1.9004703760147095, 0.4348476231098175, -0.13463078439235687, -0.09000153094530106, 0.020061593502759933, 0.0965569019317627, -0.6328989267349243, -0.1778578907251358, 1.0267964601516724, -0.11842811107635498, 0.08314655721187592, -0.03159041702747345]} +{"t": 23.305, "q": [-0.36481982469558716, -0.010485611855983734, 0.006870042532682419, 0.6128509044647217, -0.2832657992839813, 0.002034047618508339, -0.3639164865016937, 0.00780625781044364, -0.0023435817565768957, 0.6373946070671082, -0.3321244418621063, -0.01171894185245037, -0.015280152671039104, 0.05087914317846298, -0.03923996165394783, -3.051351547241211, 2.2468624114990234, 1.9003984928131104, 0.4347996711730957, -0.13464276492595673, -0.0899895504117012, 0.02004960924386978, 0.096580870449543, -0.6319641470909119, -0.1777859777212143, 1.0267964601516724, -0.11844009906053543, 0.08315853774547577, -0.03159041702747345]} +{"t": 23.3219, "q": [-0.3648880124092102, -0.010468566790223122, 0.006843258626759052, 0.6128423810005188, -0.2832823395729065, 0.0020628441125154495, -0.3640528619289398, 0.007797735743224621, -0.0023703654296696186, 0.6373946070671082, -0.3321613371372223, -0.011769447475671768, -0.015266761183738708, 0.05087150260806084, -0.03922497481107712, -3.0513155460357666, 2.2468624114990234, 1.900254726409912, 0.434775710105896, -0.13463078439235687, -0.0900135189294815, 0.02004960924386978, 0.096580870449543, -0.6308735609054565, -0.1777620166540146, 1.0268083810806274, -0.11842811107635498, 0.08315853774547577, -0.0315784327685833]} +{"t": 23.3386, "q": [-0.36496472358703613, -0.010434478521347046, 0.006776299327611923, 0.6128423810005188, -0.2832823395729065, 0.0020628441125154495, -0.3641465902328491, 0.00780625781044364, -0.0023301898036152124, 0.637420117855072, -0.332173615694046, -0.011791115626692772, -0.015239977277815342, 0.05087907612323761, -0.03922025114297867, -3.051267623901367, 2.2468864917755127, 1.9002426862716675, 0.4347996711730957, -0.13470269739627838, -0.0900135189294815, 0.020073577761650085, 0.0965569019317627, -0.630094587802887, -0.17775003612041473, 1.0267724990844727, -0.11842811107635498, 0.08317052572965622, -0.0316024012863636]} +{"t": 23.3554, "q": [-0.36505845189094543, -0.010425956919789314, 0.006749515421688557, 0.612825334072113, -0.2832740545272827, 0.0020484367851167917, -0.36426588892936707, 0.007763647008687258, -0.0023435817565768957, 0.637420117855072, -0.33218589425086975, -0.011812803335487843, -0.015213193371891975, 0.05087150260806084, -0.03922497481107712, -3.051267623901367, 2.2468504905700684, 1.9002187252044678, 0.4347996711730957, -0.13465476036071777, -0.0900135189294815, 0.020061593502759933, 0.09653293341398239, -0.6294474601745605, -0.17771407961845398, 1.0267844200134277, -0.11842811107635498, 0.08315853774547577, -0.031566448509693146]} +{"t": 23.3721, "q": [-0.3651181161403656, -0.010408911854028702, 0.006682556122541428, 0.6128168106079102, -0.28328239917755127, 0.0020484020933508873, -0.36431702971458435, 0.007780691608786583, -0.0023703654296696186, 0.6374456882476807, -0.3322063386440277, -0.011863437481224537, -0.015226585790514946, 0.05089428648352623, -0.03923051804304123, -3.051255702972412, 2.2468504905700684, 1.9002666473388672, 0.4347996711730957, -0.13464276492595673, -0.0900135189294815, 0.020061593502759933, 0.09656888991594315, -0.6289440989494324, -0.17763018608093262, 1.0267844200134277, -0.11842811107635498, 0.08317052572965622, -0.031566448509693146]} +{"t": 23.3888, "q": [-0.36519479751586914, -0.010391868650913239, 0.006682556122541428, 0.612825334072113, -0.28320732712745667, 0.002106644678860903, -0.3643852174282074, 0.007789213676005602, -0.002356973709538579, 0.6374286413192749, -0.3322145938873291, -0.011848843656480312, -0.015226585790514946, 0.050894249230623245, -0.0392206609249115, -3.051267623901367, 2.2468984127044678, 1.9002187252044678, 0.4347996711730957, -0.13466674089431763, -0.0900135189294815, 0.02004960924386978, 0.09664079546928406, -0.6286325454711914, -0.1776062250137329, 1.0268323421478271, -0.11842811107635498, 0.08317052572965622, -0.031566448509693146]} +{"t": 23.4057, "q": [-0.3652544617652893, -0.010374823585152626, 0.006695947609841824, 0.6127912402153015, -0.28320297598838806, 0.002157235983759165, -0.36445337533950806, 0.007814779877662659, -0.0023435817565768957, 0.6374456882476807, -0.3322186768054962, -0.011870604939758778, -0.015239977277815342, 0.05090181902050972, -0.039215944707393646, -3.051267623901367, 2.2468984127044678, 1.9001349210739136, 0.43478769063949585, -0.13464276492595673, -0.0900135189294815, 0.020061593502759933, 0.09672468155622482, -0.628440797328949, -0.17754629254341125, 1.0269043445587158, -0.11842811107635498, 0.08317052572965622, -0.031554464250802994]} +{"t": 23.4224, "q": [-0.3653056025505066, -0.010383346118032932, 0.006682556122541428, 0.6128082871437073, -0.28316158056259155, 0.0021141557954251766, -0.364530086517334, 0.00780625781044364, -0.0023703654296696186, 0.6374286413192749, -0.3322269320487976, -0.011856011115014553, -0.015239977277815342, 0.05088657885789871, -0.039195816963911057, -3.0512197017669678, 2.2468984127044678, 1.9001708030700684, 0.434775710105896, -0.13466674089431763, -0.0900135189294815, 0.02004960924386978, 0.0968565046787262, -0.6282610297203064, -0.1774863749742508, 1.0270001888275146, -0.11842811107635498, 0.08318250626325607, -0.03154247999191284]} +{"t": 23.4391, "q": [-0.36545899510383606, -0.010391868650913239, 0.006695947609841824, 0.6127997636795044, -0.283198744058609, 0.0021789255551993847, -0.36463233828544617, 0.00780625781044364, -0.002383757382631302, 0.6374456882476807, -0.3322310149669647, -0.01186323445290327, -0.015226585790514946, 0.05088654160499573, -0.039185959845781326, -3.051147699356079, 2.246922492980957, 1.900122880935669, 0.4348236322402954, -0.13466674089431763, -0.0899895504117012, 0.020061593502759933, 0.0971800833940506, -0.628213107585907, -0.17743843793869019, 1.0270001888275146, -0.11842811107635498, 0.08318250626325607, -0.03154247999191284]} +{"t": 23.4559, "q": [-0.3654930889606476, -0.010383346118032932, 0.006709339562803507, 0.6127827167510986, -0.2830483913421631, 0.002367692533880472, -0.3646579086780548, 0.007831824012100697, -0.0024105412885546684, 0.6374456882476807, -0.3322310149669647, -0.01186323445290327, -0.015213193371891975, 0.05088643729686737, -0.039156392216682434, -3.0510997772216797, 2.246934413909912, 1.9001588821411133, 0.4348236322402954, -0.13467872142791748, -0.09000153094530106, 0.020061593502759933, 0.09751564264297485, -0.6281172037124634, -0.17742645740509033, 1.0270121097564697, -0.11842811107635498, 0.08318250626325607, -0.03153049573302269]} +{"t": 23.4726, "q": [-0.36554422974586487, -0.010383346118032932, 0.006709339562803507, 0.6127827167510986, -0.2830483317375183, 0.0023821345530450344, -0.36469200253486633, 0.007848868146538734, -0.002397149335592985, 0.6374371647834778, -0.33223509788513184, -0.011884977109730244, -0.015132841654121876, 0.05086348205804825, -0.03910156711935997, -3.0510518550872803, 2.246946334838867, 1.900122880935669, 0.4348236322402954, -0.13463078439235687, -0.09000153094530106, 0.020061593502759933, 0.0981268361210823, -0.6280453205108643, -0.17727066576480865, 1.027143955230713, -0.11840414255857468, 0.08318250626325607, -0.03151851147413254]} +{"t": 23.4893, "q": [-0.3656123876571655, -0.010383346118032932, 0.006709339562803507, 0.6127827167510986, -0.2830565869808197, 0.002396523952484131, -0.3647516667842865, 0.00785739067941904, -0.002423933008685708, 0.6374456882476807, -0.33225974440574646, -0.011899293400347233, -0.01503909844905138, 0.05086344853043556, -0.03909171745181084, -3.0509321689605713, 2.246934413909912, 1.9000749588012695, 0.4347996711730957, -0.13464276492595673, -0.0900135189294815, 0.02004960924386978, 0.09898970276117325, -0.6279613971710205, -0.17709089815616608, 1.0272637605667114, -0.11839216202497482, 0.08318250626325607, -0.03153049573302269]} +{"t": 23.506, "q": [-0.36564648151397705, -0.010391868650913239, 0.006682556122541428, 0.6127827167510986, -0.2830565869808197, 0.002396523952484131, -0.36477723717689514, 0.00788295641541481, -0.0024775005877017975, 0.6374371647834778, -0.33225974440574646, -0.011899293400347233, -0.014958747662603855, 0.05082534998655319, -0.039046380668878555, -3.0508601665496826, 2.2469823360443115, 1.8998831510543823, 0.4347996711730957, -0.13463078439235687, -0.09002549946308136, 0.020061593502759933, 0.10002034157514572, -0.6278655529022217, -0.17675533890724182, 1.027443528175354, -0.11838017404079437, 0.08318250626325607, -0.03151851147413254]} +{"t": 23.5228, "q": [-0.365723192691803, -0.010391868650913239, 0.006655772216618061, 0.6127827167510986, -0.2830483317375183, 0.0023821345530450344, -0.3648368716239929, 0.00791704561561346, -0.0024908925406634808, 0.6374456882476807, -0.3322761654853821, -0.011913665570318699, -0.01471769344061613, 0.05081003159284592, -0.039006590843200684, -3.0507402420043945, 2.2469942569732666, 1.8999310731887817, 0.4348236322402954, -0.13466674089431763, -0.0900135189294815, 0.02004960924386978, 0.10126670449972153, -0.6277816295623779, -0.1763598620891571, 1.0275514125823975, -0.11834422498941422, 0.08318250626325607, -0.03153049573302269]} +{"t": 23.5395, "q": [-0.36574023962020874, -0.010391868650913239, 0.006588812451809645, 0.6127741932868958, -0.2830525040626526, 0.0023748872336000204, -0.3648880124092102, 0.00791704561561346, -0.00258463597856462, 0.6374456882476807, -0.3322884142398834, -0.011949853971600533, -0.014476639218628407, 0.0508023165166378, -0.03897193819284439, -3.050764322280884, 2.2469823360443115, 1.8999191522598267, 0.43481165170669556, -0.13470269739627838, -0.09000153094530106, 0.020073577761650085, 0.10272877663373947, -0.6276618242263794, -0.17613215744495392, 1.0275394916534424, -0.11834422498941422, 0.08318250626325607, -0.03151851147413254]} +{"t": 23.5562, "q": [-0.3657572567462921, -0.010391868650913239, 0.0065620290115475655, 0.6127486228942871, -0.28304001688957214, 0.002382187405601144, -0.36492210626602173, 0.007908523082733154, -0.0025980276986956596, 0.6374627351760864, -0.3323170840740204, -0.012000433169305325, -0.014235584996640682, 0.0508173406124115, -0.038932982832193375, -3.050800323486328, 2.2469582557678223, 1.8999791145324707, 0.4347996711730957, -0.13464276492595673, -0.09002549946308136, 0.020061593502759933, 0.10440657287836075, -0.6275179982185364, -0.17607223987579346, 1.0275874137878418, -0.11833223700523376, 0.08314655721187592, -0.03151851147413254]} +{"t": 23.5729, "q": [-0.3657743036746979, -0.010391868650913239, 0.006548637058585882, 0.6127230525016785, -0.28300637006759644, 0.002483510412275791, -0.3649391531944275, 0.007891478948295116, -0.0026649872306734324, 0.6374712586402893, -0.33233755826950073, -0.012036565691232681, -0.014088273979723454, 0.05081726610660553, -0.0389133021235466, -3.0507524013519287, 2.2469582557678223, 1.8999431133270264, 0.43481165170669556, -0.13464276492595673, -0.0900135189294815, 0.02004960924386978, 0.10574880242347717, -0.6273981332778931, -0.17595238983631134, 1.0278750658035278, -0.11834422498941422, 0.08318250626325607, -0.03151851147413254]} +{"t": 23.5897, "q": [-0.3657743036746979, -0.010383346118032932, 0.006521853152662516, 0.6127315759658813, -0.2829481065273285, 0.0024983214680105448, -0.3649391531944275, 0.00791704561561346, -0.002691771136596799, 0.6375223994255066, -0.33235394954681396, -0.012065458111464977, -0.013967746868729591, 0.050817228853702545, -0.038903459906578064, -3.0507164001464844, 2.246922492980957, 1.899967074394226, 0.4348715841770172, -0.13464276492595673, -0.0900135189294815, 0.020061593502759933, 0.10748651623725891, -0.6273502111434937, -0.17589247226715088, 1.0288697481155396, -0.11833223700523376, 0.08321846276521683, -0.031506527215242386]} +{"t": 23.6064, "q": [-0.3657572567462921, -0.010391868650913239, 0.006521853152662516, 0.6127315759658813, -0.2828729450702667, 0.0025854839477688074, -0.36494767665863037, 0.007951133884489536, -0.0026783791836351156, 0.6375735402107239, -0.33235394954681396, -0.012065458111464977, -0.013807044364511967, 0.050847429782152176, -0.038864921778440475, -3.0507164001464844, 2.246946334838867, 1.8998831510543823, 0.4348955452442169, -0.13464276492595673, -0.0899895504117012, 0.02004960924386978, 0.10916430503129959, -0.6273022890090942, -0.17580857872962952, 1.029373049736023, -0.11832025647163391, 0.08324243128299713, -0.03151851147413254]} +{"t": 23.6234, "q": [-0.3657743036746979, -0.010366301983594894, 0.006548637058585882, 0.6127060055732727, -0.28274333477020264, 0.0027813403867185116, -0.3649391531944275, 0.007985222153365612, -0.0027051628567278385, 0.6376246809959412, -0.3323580324649811, -0.012072698213160038, -0.01379365287721157, 0.0508548840880394, -0.03883068263530731, -3.05065655708313, 2.246922492980957, 1.8997993469238281, 0.4349195063114166, -0.13465476036071777, -0.09000153094530106, 0.020061593502759933, 0.11059042811393738, -0.6272543668746948, -0.17580857872962952, 1.029768466949463, -0.11832025647163391, 0.08323044329881668, -0.031506527215242386]} +{"t": 23.6402, "q": [-0.3657487630844116, -0.010357779450714588, 0.006495069246739149, 0.6126889586448669, -0.28273916244506836, 0.0027885877061635256, -0.3649391531944275, 0.00800226628780365, -0.002691771136596799, 0.6376417279243469, -0.3323580026626587, -0.012087218463420868, -0.01379365287721157, 0.050832103937864304, -0.0388251394033432, -3.0506443977355957, 2.246946334838867, 1.8997633457183838, 0.43488356471061707, -0.13463078439235687, -0.09000153094530106, 0.020061593502759933, 0.11210044473409653, -0.6271704435348511, -0.17577263712882996, 1.0303198099136353, -0.11829628795385361, 0.08323044329881668, -0.031506527215242386]} +{"t": 23.6569, "q": [-0.36574023962020874, -0.010357779450714588, 0.006495069246739149, 0.6127060055732727, -0.2827349901199341, 0.0027958350256085396, -0.3649306297302246, 0.00800226628780365, -0.002758730435743928, 0.6377440094947815, -0.33238673210144043, -0.012108739465475082, -0.013726692646741867, 0.05082450062036514, -0.03882001340389252, -3.0507044792175293, 2.2469823360443115, 1.899835228919983, 0.43483564257621765, -0.13466674089431763, -0.0900135189294815, 0.02004960924386978, 0.11367037892341614, -0.6270146369934082, -0.17561683058738708, 1.0313384532928467, -0.1182723194360733, 0.08323044329881668, -0.031506527215242386]} +{"t": 23.6736, "q": [-0.365765780210495, -0.01034073531627655, 0.006495069246739149, 0.6127060055732727, -0.2827349901199341, 0.0027958350256085396, -0.3649391531944275, 0.008010788820683956, -0.0028122980147600174, 0.637863278388977, -0.33239081501960754, -0.012130482122302055, -0.013726692646741867, 0.05083207041025162, -0.03881530091166496, -3.0507402420043945, 2.2469823360443115, 1.8999191522598267, 0.43483564257621765, -0.13463078439235687, -0.0900135189294815, 0.020061593502759933, 0.11521634459495544, -0.6268948316574097, -0.17547301948070526, 1.0323091745376587, -0.11826033145189285, 0.08323044329881668, -0.03151851147413254]} +{"t": 23.6903, "q": [-0.36573171615600586, -0.01034073531627655, 0.006495069246739149, 0.6126974821090698, -0.2827349901199341, 0.0027958350256085396, -0.36492210626602173, 0.007993744686245918, -0.0028122980147600174, 0.6379058957099915, -0.3324030935764313, -0.012152169831097126, -0.013726692646741867, 0.05083956569433212, -0.038790903985500336, -3.050800323486328, 2.2469582557678223, 1.8998472690582275, 0.43483564257621765, -0.13465476036071777, -0.09002549946308136, 0.020061593502759933, 0.11665444821119308, -0.6266671419143677, -0.17531722784042358, 1.0333278179168701, -0.11826033145189285, 0.08321846276521683, -0.03151851147413254]} +{"t": 23.7071, "q": [-0.3657061457633972, -0.01034073531627655, 0.006495069246739149, 0.6127145290374756, -0.2827349901199341, 0.0027958350256085396, -0.36492210626602173, 0.008027832955121994, -0.0027989062946289778, 0.6379826068878174, -0.3324195146560669, -0.012166541069746017, -0.013713301159441471, 0.050869911909103394, -0.038791730999946594, -3.0508241653442383, 2.2469582557678223, 1.899907112121582, 0.43483564257621765, -0.13469070196151733, -0.09000153094530106, 0.020061593502759933, 0.11790081113576889, -0.6263195872306824, -0.17525731027126312, 1.0343225002288818, -0.11826033145189285, 0.08323044329881668, -0.031506527215242386]} +{"t": 23.7239, "q": [-0.3657146692276001, -0.010349256917834282, 0.006535245105624199, 0.6126889586448669, -0.2827267348766327, 0.002781445859000087, -0.36492210626602173, 0.008096009492874146, -0.0027989062946289778, 0.6380252242088318, -0.3324359059333801, -0.012195451185107231, -0.013740085065364838, 0.05088505148887634, -0.03878230229020119, -3.050776243209839, 2.2469582557678223, 1.899907112121582, 0.43485960364341736, -0.13465476036071777, -0.09000153094530106, 0.02004960924386978, 0.11927899718284607, -0.6259840130805969, -0.17520937323570251, 1.0348857641220093, -0.11826033145189285, 0.08321846276521683, -0.031506527215242386]} +{"t": 23.7406, "q": [-0.3657061457633972, -0.01034073531627655, 0.006521853152662516, 0.6126719117164612, -0.28279784321784973, 0.0026582046411931515, -0.3649306297302246, 0.008096009492874146, -0.0027855143416672945, 0.6380593180656433, -0.33245640993118286, -0.012217046692967415, -0.013753476552665234, 0.050884976983070374, -0.03876262158155441, -3.050764322280884, 2.2469823360443115, 1.8998831510543823, 0.43481165170669556, -0.13469070196151733, -0.09000153094530106, 0.02003762498497963, 0.12098075449466705, -0.6255645751953125, -0.174909770488739, 1.0350415706634521, -0.118248350918293, 0.08321846276521683, -0.031506527215242386]} +{"t": 23.7573, "q": [-0.365723192691803, -0.010332213714718819, 0.006495069246739149, 0.6126633882522583, -0.28281018137931824, 0.0026942305266857147, -0.3649902939796448, 0.008078965358436108, -0.0028256899677217007, 0.6380593180656433, -0.33252203464508057, -0.012303592637181282, -0.013713301159441471, 0.050884976983070374, -0.03876262158155441, -3.050800323486328, 2.246946334838867, 1.899907112121582, 0.4347996711730957, -0.13466674089431763, -0.09000153094530106, 0.020061593502759933, 0.12289822846651077, -0.6250731945037842, -0.17477793991565704, 1.0351015329360962, -0.1182243824005127, 0.08320647478103638, -0.031506527215242386]} +{"t": 23.7742, "q": [-0.36574023962020874, -0.010349256917834282, 0.006495069246739149, 0.6126378178596497, -0.28286013007164, 0.002679472090676427, -0.36501583456993103, 0.008078965358436108, -0.002852473873645067, 0.6380593180656433, -0.3325916528701782, -0.01242641918361187, -0.013673125766217709, 0.05089254677295685, -0.03875790908932686, -3.050776243209839, 2.2469582557678223, 1.899895191192627, 0.43478769063949585, -0.13467872142791748, -0.0900135189294815, 0.02004960924386978, 0.1248636394739151, -0.6244739890098572, -0.17462214827537537, 1.0352692604064941, -0.1182243824005127, 0.08321846276521683, -0.031506527215242386]} +{"t": 23.7909, "q": [-0.36574023962020874, -0.01034073531627655, 0.006495069246739149, 0.6126207709312439, -0.28286439180374146, 0.0026577827520668507, -0.36510106921195984, 0.008078965358436108, -0.002852473873645067, 0.6380593180656433, -0.33260396122932434, -0.012433568015694618, -0.013619557954370975, 0.05089254677295685, -0.03875790908932686, -3.0508241653442383, 2.2469582557678223, 1.8998831510543823, 0.43478769063949585, -0.13469070196151733, -0.0900135189294815, 0.02004960924386978, 0.12654143571853638, -0.6237189769744873, -0.17452627420425415, 1.0356168746948242, -0.11818842589855194, 0.08320647478103638, -0.03151851147413254]} +{"t": 23.8076, "q": [-0.365765780210495, -0.01034073531627655, 0.006495069246739149, 0.6125611066818237, -0.28286856412887573, 0.0026505354326218367, -0.36517778038978577, 0.008087487891316414, -0.0028256899677217007, 0.6380763649940491, -0.3326285779476166, -0.012462403625249863, -0.013659733347594738, 0.050900112837553024, -0.038753196597099304, -3.0508241653442383, 2.2469823360443115, 1.8999310731887817, 0.4347996711730957, -0.13465476036071777, -0.09000153094530106, 0.020061593502759933, 0.12802748382091522, -0.622604489326477, -0.1744663566350937, 1.0361560583114624, -0.11817644536495209, 0.08321846276521683, -0.031506527215242386]} +{"t": 23.8243, "q": [-0.36578282713890076, -0.01034073531627655, 0.006495069246739149, 0.6125100255012512, -0.2828643321990967, 0.002672224771231413, -0.3653056025505066, 0.008070443756878376, -0.002865865593776107, 0.6380763649940491, -0.33266136050224304, -0.012520206160843372, -0.013659733347594738, 0.0509076826274395, -0.03874848783016205, -3.050812244415283, 2.2469823360443115, 1.899895191192627, 0.43478769063949585, -0.13465476036071777, -0.09000153094530106, 0.020061593502759933, 0.12952551245689392, -0.6211064457893372, -0.1744423806667328, 1.0364197492599487, -0.11821239441633224, 0.08321846276521683, -0.03151851147413254]} +{"t": 23.8411, "q": [-0.3658083975315094, -0.010306647047400475, 0.006495069246739149, 0.6125015020370483, -0.28287267684936523, 0.002657730132341385, -0.3654419481754303, 0.008078965358436108, -0.002852473873645067, 0.638084888458252, -0.33269003033638, -0.01257078442722559, -0.013713301159441471, 0.050884902477264404, -0.03874293714761734, -3.0508241653442383, 2.2469942569732666, 1.8997873067855835, 0.43473976850509644, -0.13466674089431763, -0.08997756242752075, 0.020061593502759933, 0.13105948269367218, -0.6192488670349121, -0.17434650659561157, 1.0364317893981934, -0.11815247684717178, 0.08321846276521683, -0.03151851147413254]} +{"t": 23.8579, "q": [-0.3657998740673065, -0.010264036245644093, 0.006441501900553703, 0.6124844551086426, -0.2828225791454315, 0.0027158143930137157, -0.36565500497817993, 0.008078965358436108, -0.00287925754673779, 0.6381189823150635, -0.3327310383319855, -0.01262851245701313, -0.013713301159441471, 0.050884902477264404, -0.03874293714761734, -3.050800323486328, 2.247042179107666, 1.8998233079910278, 0.43469181656837463, -0.13467872142791748, -0.09000153094530106, 0.02004960924386978, 0.13271330296993256, -0.6168999671936035, -0.17429856956005096, 1.036455750465393, -0.11816445738077164, 0.08321846276521683, -0.03151851147413254]} +{"t": 23.8747, "q": [-0.3657743036746979, -0.010255513712763786, 0.006374542135745287, 0.6124588847160339, -0.2827185094356537, 0.0027525965124368668, -0.36583396792411804, 0.008113053627312183, -0.0029328251257538795, 0.6381956338882446, -0.33275970816612244, -0.012679091654717922, -0.013646341860294342, 0.05086208134889603, -0.03872755542397499, -3.050800323486328, 2.2470662593841553, 1.8998712301254272, 0.43469181656837463, -0.13465476036071777, -0.0899895504117012, 0.020061593502759933, 0.13431920111179352, -0.6144552230834961, -0.17427460849285126, 1.0364317893981934, -0.11816445738077164, 0.08321846276521683, -0.03153049573302269]} +{"t": 23.8914, "q": [-0.3658083975315094, -0.010246992111206055, 0.006294190883636475, 0.6124674081802368, -0.28273093700408936, 0.002759738592430949, -0.36602145433425903, 0.00812157616019249, -0.0029997846577316523, 0.6382297277450562, -0.33276379108428955, -0.01268631499260664, -0.013632949441671371, 0.05084679648280144, -0.03869761526584625, -3.050800323486328, 2.2470901012420654, 1.899835228919983, 0.4346199035644531, -0.13465476036071777, -0.0900135189294815, 0.020061593502759933, 0.1356973797082901, -0.6113033294677734, -0.1741907149553299, 1.0364676713943481, -0.11815247684717178, 0.08323044329881668, -0.03151851147413254]} +{"t": 23.9082, "q": [-0.36579135060310364, -0.010212903842329979, 0.006280798930674791, 0.6124929785728455, -0.2827308475971222, 0.002788640558719635, -0.36624303460121155, 0.008147141896188259, -0.0030399602837860584, 0.6382212042808533, -0.33276379108428955, -0.01268631499260664, -0.013646341860294342, 0.050869427621364594, -0.03866378962993622, -3.0507524013519287, 2.247150182723999, 1.8997633457183838, 0.434548020362854, -0.13469070196151733, -0.09000153094530106, 0.02004960924386978, 0.13672801852226257, -0.608343243598938, -0.17413079738616943, 1.0365875959396362, -0.11815247684717178, 0.08323044329881668, -0.03153049573302269]} +{"t": 23.9249, "q": [-0.36565500497817993, -0.01022142544388771, 0.006334366742521524, 0.6124844551086426, -0.2826642692089081, 0.0028035042341798544, -0.3663708567619324, 0.00818123109638691, -0.0030131766106933355, 0.6384257674217224, -0.3327596187591553, -0.012708131223917007, -0.013646341860294342, 0.050876814872026443, -0.03860987350344658, -3.0507044792175293, 2.2471261024475098, 1.8996914625167847, 0.43448808789253235, -0.13465476036071777, -0.09002549946308136, 0.02004960924386978, 0.137794628739357, -0.6055868864059448, -0.17408286035060883, 1.0367313623428345, -0.11811652034521103, 0.08321846276521683, -0.03151851147413254]} +{"t": 23.9416, "q": [-0.36564648151397705, -0.010238470509648323, 0.006374542135745287, 0.6125015020370483, -0.28262677788734436, 0.0028254047501832247, -0.3664390444755554, 0.008215319365262985, -0.003026568330824375, 0.6385706067085266, -0.3327554762363434, -0.01272994838654995, -0.013592774048447609, 0.05094481259584427, -0.03853795677423477, -3.0507044792175293, 2.247162103652954, 1.8995596170425415, 0.4344521462917328, -0.13466674089431763, -0.0900135189294815, 0.02004960924386978, 0.13890916109085083, -0.6025189161300659, -0.1732918918132782, 1.036851167678833, -0.11806859076023102, 0.08321846276521683, -0.03147057443857193]} +{"t": 23.9584, "q": [-0.36565500497817993, -0.010229947976768017, 0.006374542135745287, 0.6124844551086426, -0.2826143205165863, 0.0028182626701891422, -0.3664475679397583, 0.008300540037453175, -0.003026568330824375, 0.6385961771011353, -0.3327349126338959, -0.012722890824079514, -0.013606165535748005, 0.05099767819046974, -0.03847547620534897, -3.050692319869995, 2.247174024581909, 1.8995835781097412, 0.434404194355011, -0.13471467792987823, -0.09002549946308136, 0.02004960924386978, 0.1396401971578598, -0.5992711782455444, -0.1732918918132782, 1.0370908975601196, -0.11808057129383087, 0.08321846276521683, -0.03147057443857193]} +{"t": 23.9751, "q": [-0.36564648151397705, -0.010229947976768017, 0.006414717994630337, 0.6124759316444397, -0.282601922750473, 0.002796678803861141, -0.36642199754714966, 0.00848802737891674, -0.0030399602837860584, 0.6386728882789612, -0.3327431380748749, -0.012722817249596119, -0.013539206236600876, 0.05101277679204941, -0.03845621645450592, -3.0507164001464844, 2.2471022605895996, 1.8995596170425415, 0.43446412682533264, -0.13469070196151733, -0.0900135189294815, 0.02004960924386978, 0.14020344614982605, -0.595568060874939, -0.17342372238636017, 1.0371267795562744, -0.11809255182743073, 0.08323044329881668, -0.03148255869746208]} +{"t": 23.9918, "q": [-0.3656294345855713, -0.01022142544388771, 0.006441501900553703, 0.6124844551086426, -0.28258100152015686, 0.002832933561876416, -0.3663538098335266, 0.008743690326809883, -0.0030801359098404646, 0.6387410759925842, -0.3327307105064392, -0.012759227305650711, -0.013472246937453747, 0.05098235607147217, -0.0384356826543808, -3.0507283210754395, 2.2471022605895996, 1.8995596170425415, 0.4345240294933319, -0.1347266584634781, -0.0899895504117012, 0.02004960924386978, 0.1404910683631897, -0.59175705909729, -0.1733398288488388, 1.0371267795562744, -0.11809255182743073, 0.08323044329881668, -0.031494542956352234]} +{"t": 24.0086, "q": [-0.365578293800354, -0.010212903842329979, 0.006441501900553703, 0.6125015020370483, -0.28258100152015686, 0.002832933561876416, -0.3661833703517914, 0.00908457487821579, -0.003066744189709425, 0.6387922167778015, -0.3327265679836273, -0.012766524218022823, -0.01344546303153038, 0.05094429478049278, -0.03840017691254616, -3.050764322280884, 2.247150182723999, 1.8995716571807861, 0.4344521462917328, -0.13469070196151733, -0.09000153094530106, 0.020061593502759933, 0.14065885543823242, -0.5879580974578857, -0.17332784831523895, 1.0371627807617188, -0.11809255182743073, 0.08321846276521683, -0.031494542956352234]} +{"t": 24.0253, "q": [-0.36560386419296265, -0.01022142544388771, 0.006521853152662516, 0.6125100255012512, -0.2825518250465393, 0.002854781225323677, -0.36605554819107056, 0.009152752347290516, -0.0031203117687255144, 0.638903021812439, -0.3327183723449707, -0.012752078473567963, -0.013365112245082855, 0.05094422027468681, -0.038380492478609085, -3.050764322280884, 2.247162103652954, 1.8995596170425415, 0.4343682527542114, -0.13469070196151733, -0.0900135189294815, 0.020073577761650085, 0.1408386081457138, -0.5843268632888794, -0.17319601774215698, 1.0372107028961182, -0.11809255182743073, 0.08321846276521683, -0.03145859017968178]} +{"t": 24.0422, "q": [-0.3655868172645569, -0.010246992111206055, 0.006642380263656378, 0.6125355958938599, -0.28253525495529175, 0.0028404267504811287, -0.36591067910194397, 0.009229451417922974, -0.003106919815763831, 0.6390478610992432, -0.33267703652381897, -0.01283960323780775, -0.013391895219683647, 0.05095178633928299, -0.03837578743696213, -3.050776243209839, 2.247174024581909, 1.8995956182479858, 0.43426039814949036, -0.1347266584634781, -0.0900135189294815, 0.02004960924386978, 0.14105433225631714, -0.5810192227363586, -0.17307618260383606, 1.0371867418289185, -0.11810453981161118, 0.08325441181659698, -0.03145859017968178]} +{"t": 24.0589, "q": [-0.3654930889606476, -0.010264036245644093, 0.006870042532682419, 0.6125355958938599, -0.282460480928421, 0.002826459240168333, -0.36551013588905334, 0.0093317162245512, -0.0031604873947799206, 0.6392949819564819, -0.3326483368873596, -0.012803544290363789, -0.013351719826459885, 0.050944145768880844, -0.03836081176996231, -3.050776243209839, 2.247174024581909, 1.8996195793151855, 0.43423640727996826, -0.13471467792987823, -0.09002549946308136, 0.020061593502759933, 0.1411861628293991, -0.5776276588439941, -0.17310014367103577, 1.0371867418289185, -0.11810453981161118, 0.08323044329881668, -0.03145859017968178]} +{"t": 24.0757, "q": [-0.36556127667427063, -0.010272558778524399, 0.007070920895785093, 0.6125525832176208, -0.282460480928421, 0.002826459240168333, -0.36487096548080444, 0.009442503564059734, -0.0034283252898603678, 0.6394824981689453, -0.33255746960639954, -0.012949592433869839, -0.013338328339159489, 0.05096647888422012, -0.038248270750045776, -3.050812244415283, 2.247174024581909, 1.8996315002441406, 0.4342483878135681, -0.13469070196151733, -0.0900135189294815, 0.02004960924386978, 0.14125806093215942, -0.5740324258804321, -0.17310014367103577, 1.0371748208999634, -0.11812850832939148, 0.08323044329881668, -0.03147057443857193]} +{"t": 24.0926, "q": [-0.3655271828174591, -0.010289601981639862, 0.007137880194932222, 0.6125441193580627, -0.28244808316230774, 0.0028048751410096884, -0.3648453950881958, 0.009612945839762688, -0.0035354604478925467, 0.6395506858825684, -0.33254945278167725, -0.012862528674304485, -0.013284760527312756, 0.0509735643863678, -0.03811562433838844, -3.050776243209839, 2.247162103652954, 1.8995716571807861, 0.43421244621276855, -0.1347266584634781, -0.09002549946308136, 0.020061593502759933, 0.1413659155368805, -0.5705450177192688, -0.17314808070659637, 1.0371627807617188, -0.11811652034521103, 0.08323044329881668, -0.03147057443857193]} +{"t": 24.1093, "q": [-0.36550161242485046, -0.010289601981639862, 0.007204839959740639, 0.6125355958938599, -0.28244391083717346, 0.002812122693285346, -0.364785760641098, 0.009817477315664291, -0.0036425956059247255, 0.6395677328109741, -0.33254945278167725, -0.012862528674304485, -0.01327136904001236, 0.05098113417625427, -0.03811091557145119, -3.0507402420043945, 2.247150182723999, 1.8995236158370972, 0.4342723786830902, -0.13471467792987823, -0.0900135189294815, 0.02004960924386978, 0.1414857655763626, -0.5671654343605042, -0.17316007614135742, 1.0371508598327637, -0.11811652034521103, 0.08323044329881668, -0.03147057443857193]} +{"t": 24.126, "q": [-0.36542490124702454, -0.010315168648958206, 0.007245015352964401, 0.6125185489654541, -0.28244391083717346, 0.002812122693285346, -0.3646664321422577, 0.010260626673698425, -0.0037899063900113106, 0.6396018266677856, -0.33254948258399963, -0.01284800935536623, -0.013164233416318893, 0.05100387707352638, -0.038106635212898254, -3.0507283210754395, 2.2470781803131104, 1.8994637727737427, 0.4342963397502899, -0.1347266584634781, -0.09000153094530106, 0.02004960924386978, 0.14156965911388397, -0.5638697743415833, -0.17313610017299652, 1.0371267795562744, -0.11812850832939148, 0.08321846276521683, -0.03145859017968178]} +{"t": 24.1428, "q": [-0.365348219871521, -0.010289601981639862, 0.007338759023696184, 0.612527072429657, -0.282460480928421, 0.002826459240168333, -0.3645641803741455, 0.01124919205904007, -0.003696163184940815, 0.6395933032035828, -0.3325659930706024, -0.012833323329687119, -0.013057098723948002, 0.05103418231010437, -0.03809764236211777, -3.050692319869995, 2.2470901012420654, 1.8994637727737427, 0.4343203008174896, -0.1347266584634781, -0.09002549946308136, 0.02004960924386978, 0.14161759614944458, -0.5609456300735474, -0.17313610017299652, 1.0371508598327637, -0.11811652034521103, 0.08321846276521683, -0.03145859017968178]} +{"t": 24.1595, "q": [-0.3652970790863037, -0.010289601981639862, 0.00739232636988163, 0.6125355958938599, -0.282460480928421, 0.002826459240168333, -0.3644278347492218, 0.012374111451208591, -0.0035086767747998238, 0.639576256275177, -0.3325825035572052, -0.01280413568019867, -0.012896395288407803, 0.05110233277082443, -0.0380651094019413, -3.050692319869995, 2.2471022605895996, 1.899511694908142, 0.4342723786830902, -0.13470269739627838, -0.0900135189294815, 0.02004960924386978, 0.1416415572166443, -0.5579975247383118, -0.17312411963939667, 1.0371267795562744, -0.11811652034521103, 0.08320647478103638, -0.03145859017968178]} +{"t": 24.1762, "q": [-0.36532264947891235, -0.010272558778524399, 0.00743250222876668, 0.612527072429657, -0.28248128294944763, 0.002819106448441744, -0.3643937408924103, 0.01236558984965086, -0.003481892868876457, 0.6395592093467712, -0.3325783610343933, -0.012811432592570782, -0.012708908878266811, 0.05115531012415886, -0.03803214803338051, -3.0507044792175293, 2.2471022605895996, 1.899439811706543, 0.4342483878135681, -0.13469070196151733, -0.0900135189294815, 0.02004960924386978, 0.14165353775024414, -0.554629921913147, -0.17320801317691803, 1.0371508598327637, -0.11815247684717178, 0.08320647478103638, -0.03148255869746208]} +{"t": 24.193, "q": [-0.36528855562210083, -0.010255513712763786, 0.007365542463958263, 0.6125185489654541, -0.28248128294944763, 0.002819106448441744, -0.3643511235713959, 0.012374111451208591, -0.0034551091957837343, 0.6395592093467712, -0.3326031565666199, -0.01276763342320919, -0.012628557160496712, 0.05115531012415886, -0.03803214803338051, -3.0507164001464844, 2.2470901012420654, 1.8994637727737427, 0.4342483878135681, -0.1347266584634781, -0.0900135189294815, 0.02004960924386978, 0.14167751371860504, -0.5513342618942261, -0.17314808070659637, 1.0371627807617188, -0.11811652034521103, 0.08323044329881668, -0.03147057443857193]} +{"t": 24.2097, "q": [-0.36528003215789795, -0.010238470509648323, 0.007311975117772818, 0.6125355958938599, -0.28248128294944763, 0.002819106448441744, -0.3642914593219757, 0.012399678118526936, -0.0034283252898603678, 0.639576256275177, -0.33261147141456604, -0.012738519348204136, -0.012494638562202454, 0.05116291344165802, -0.03803728148341179, -3.0507164001464844, 2.2470901012420654, 1.899451732635498, 0.4342723786830902, -0.13471467792987823, -0.0900135189294815, 0.020061593502759933, 0.1417134702205658, -0.5478468537330627, -0.17313610017299652, 1.0371748208999634, -0.11809255182743073, 0.08321846276521683, -0.03148255869746208]} +{"t": 24.2264, "q": [-0.3653056025505066, -0.010238470509648323, 0.0072584073059260845, 0.6124674081802368, -0.28248128294944763, 0.002819106448441744, -0.3642999827861786, 0.012382633984088898, -0.0034015413839370012, 0.6395592093467712, -0.33261141180992126, -0.012753039598464966, -0.012360719963908195, 0.05120835825800896, -0.03801887109875679, -3.050692319869995, 2.2471022605895996, 1.8993918895721436, 0.4342723786830902, -0.13473863899707794, -0.0900135189294815, 0.020061593502759933, 0.14174941182136536, -0.5441557168960571, -0.17310014367103577, 1.0371867418289185, -0.11811652034521103, 0.08321846276521683, -0.03148255869746208]} +{"t": 24.2432, "q": [-0.36528003215789795, -0.010204381309449673, 0.007204839959740639, 0.6124162673950195, -0.2824980318546295, 0.002790099009871483, -0.36430850625038147, 0.01239115558564663, -0.0034149333368986845, 0.6395506858825684, -0.3326403498649597, -0.012701943516731262, -0.012173233553767204, 0.0512612946331501, -0.03797607123851776, -3.0506443977355957, 2.2471022605895996, 1.8992840051651, 0.434176504611969, -0.13473863899707794, -0.0900135189294815, 0.02004960924386978, 0.1417134702205658, -0.5402249097824097, -0.17305220663547516, 1.0372107028961182, -0.11809255182743073, 0.08321846276521683, -0.03148255869746208]} +{"t": 24.2599, "q": [-0.36528003215789795, -0.01022142544388771, 0.007151272147893906, 0.6123395562171936, -0.2824981212615967, 0.0027612149715423584, -0.36431702971458435, 0.012416722252964973, -0.003468500915914774, 0.6395251154899597, -0.3326403498649597, -0.012701943516731262, -0.011892003007233143, 0.051382455974817276, -0.03792041912674904, -3.050536632537842, 2.2471022605895996, 1.8992000818252563, 0.434176504611969, -0.13471467792987823, -0.0900135189294815, 0.02004960924386978, 0.141809344291687, -0.5357188582420349, -0.17290839552879333, 1.0372346639633179, -0.11809255182743073, 0.08321846276521683, -0.031506527215242386]} +{"t": 24.2768, "q": [-0.3653141260147095, -0.010212903842329979, 0.007124488707631826, 0.6122969388961792, -0.2824980318546295, 0.002790099009871483, -0.36431702971458435, 0.012433766387403011, -0.0034283252898603678, 0.6395336389541626, -0.3326526880264282, -0.01269457209855318, -0.011503638699650764, 0.05157165229320526, -0.03780270740389824, -3.0504767894744873, 2.2471261024475098, 1.8990323543548584, 0.434176504611969, -0.13470269739627838, -0.0900135189294815, 0.02004960924386978, 0.14207299053668976, -0.5309850573539734, -0.17288443446159363, 1.0372346639633179, -0.11805660277605057, 0.08323044329881668, -0.031494542956352234]} +{"t": 24.2935, "q": [-0.3652544617652893, -0.010212903842329979, 0.007137880194932222, 0.6122457981109619, -0.28250637650489807, 0.002775604138150811, -0.3643511235713959, 0.012425243854522705, -0.0034015413839370012, 0.639508068561554, -0.3326609134674072, -0.012694498524069786, -0.010887610726058483, 0.0517609603703022, -0.03771451860666275, -3.0504047870635986, 2.2471022605895996, 1.8990442752838135, 0.4342004656791687, -0.13473863899707794, -0.0900135189294815, 0.02004960924386978, 0.1425643414258957, -0.5257479548454285, -0.1727166473865509, 1.0372467041015625, -0.11803263425827026, 0.08321846276521683, -0.031506527215242386]} +{"t": 24.3102, "q": [-0.3652459383010864, -0.01022142544388771, 0.0071914480067789555, 0.6121435761451721, -0.28250226378440857, 0.002768409438431263, -0.36435964703559875, 0.012433766387403011, -0.0034283252898603678, 0.6395165920257568, -0.3326568305492401, -0.012687275186181068, -0.010057313367724419, 0.052078887820243835, -0.03753644600510597, -3.0503928661346436, 2.2471022605895996, 1.8988884687423706, 0.43414053320884705, -0.13478657603263855, -0.09002549946308136, 0.02004960924386978, 0.14330735802650452, -0.52001953125, -0.172464981675148, 1.0372706651687622, -0.11805660277605057, 0.08323044329881668, -0.031506527215242386]} +{"t": 24.327, "q": [-0.36528003215789795, -0.01022142544388771, 0.007231623865664005, 0.612083911895752, -0.2825022041797638, 0.002782851457595825, -0.36436817049980164, 0.012374111451208591, -0.0034149333368986845, 0.6394824981689453, -0.3326898217201233, -0.01265794038772583, -0.00933415163308382, 0.05243472754955292, -0.03735451400279999, -3.050344944000244, 2.2471022605895996, 1.898864507675171, 0.43414053320884705, -0.1347266584634781, -0.0900135189294815, 0.02004960924386978, 0.14396649599075317, -0.5145307183265686, -0.17233316600322723, 1.0375343561172485, -0.11804462224245071, 0.08321846276521683, -0.031506527215242386]} +{"t": 24.3437, "q": [-0.3653567433357239, -0.010229947976768017, 0.007231623865664005, 0.6120157241821289, -0.2825062870979309, 0.0028044881764799356, -0.3643766939640045, 0.012357067316770554, -0.003347973804920912, 0.6394398808479309, -0.3326939046382904, -0.012665162794291973, -0.00847707036882639, 0.052888669073581696, -0.037082526832818985, -3.0501890182495117, 2.2471022605895996, 1.898768663406372, 0.434176504611969, -0.1347266584634781, -0.09002549946308136, 0.020061593502759933, 0.14442190527915955, -0.5088262557983398, -0.17220133543014526, 1.0380616188049316, -0.11802065372467041, 0.08323044329881668, -0.031506527215242386]} +{"t": 24.3604, "q": [-0.3653056025505066, -0.01022142544388771, 0.007245015352964401, 0.6119304895401001, -0.2825189530849457, 0.002753862179815769, -0.3643766939640045, 0.01236558984965086, -0.003361365757882595, 0.639431357383728, -0.3326980471611023, -0.01265786588191986, -0.007633380591869354, 0.053251758217811584, -0.036857180297374725, -3.050081253051758, 2.2471022605895996, 1.8986728191375732, 0.43414053320884705, -0.13478657603263855, -0.09000153094530106, 0.02004960924386978, 0.14486531913280487, -0.5031576752662659, -0.1720695048570633, 1.03855299949646, -0.1179966852068901, 0.08321846276521683, -0.031494542956352234]} +{"t": 24.3772, "q": [-0.3652970790863037, -0.010229947976768017, 0.007231623865664005, 0.6118367314338684, -0.28252720832824707, 0.002768251346424222, -0.36441078782081604, 0.012374111451208591, -0.0033747577108442783, 0.6394057869911194, -0.3327309787273407, -0.01264303270727396, -0.006829866673797369, 0.053561896085739136, -0.0366646982729435, -3.0500333309173584, 2.2471261024475098, 1.8984930515289307, 0.4337570369243622, -0.13473863899707794, -0.09002549946308136, 0.02004960924386978, 0.1452368199825287, -0.49753710627555847, -0.17210546135902405, 1.0387446880340576, -0.1179966852068901, 0.08323044329881668, -0.031506527215242386]} +{"t": 24.3939, "q": [-0.36533117294311523, -0.01022142544388771, 0.0071914480067789555, 0.6118111610412598, -0.28252720832824707, 0.002768251346424222, -0.3644363582134247, 0.012382633984088898, -0.003334582084789872, 0.6393716931343079, -0.3327473998069763, -0.012657404877245426, -0.006320974789559841, 0.05386438965797424, -0.036457255482673645, -3.049877405166626, 2.247162103652954, 1.8983012437820435, 0.43356528878211975, -0.134750634431839, -0.09002549946308136, 0.02003762498497963, 0.1455603986978531, -0.49172475934028625, -0.17200958728790283, 1.038780689239502, -0.1179966852068901, 0.08323044329881668, -0.031494542956352234]} +{"t": 24.4109, "q": [-0.36537379026412964, -0.010212903842329979, 0.00709770480170846, 0.6117941737174988, -0.28253135085105896, 0.0027754639741033316, -0.3644448518753052, 0.01236558984965086, -0.003321190131828189, 0.639363169670105, -0.33275970816612244, -0.012679091654717922, -0.005892434157431126, 0.05422748997807503, -0.03623182326555252, -3.049769639968872, 2.247174024581909, 1.8980616331100464, 0.43356528878211975, -0.1347266584634781, -0.09002549946308136, 0.020061593502759933, 0.14569222927093506, -0.48651161789894104, -0.17193767428398132, 1.0388286113739014, -0.1179966852068901, 0.08323044329881668, -0.031494542956352234]} +{"t": 24.4276, "q": [-0.365390807390213, -0.010229947976768017, 0.0070173535495996475, 0.611777126789093, -0.28253138065338135, 0.002761004026979208, -0.3644704222679138, 0.012374111451208591, -0.0032944062259048223, 0.6393375992774963, -0.33278438448905945, -0.012678869999945164, -0.005504068918526173, 0.05460570007562637, -0.03598697483539581, -3.049625873565674, 2.2471859455108643, 1.8977739810943604, 0.43354132771492004, -0.1347985714673996, -0.0900135189294815, 0.020061593502759933, 0.14578810334205627, -0.48061537742614746, -0.17190173268318176, 1.0388765335083008, -0.1179966852068901, 0.08321846276521683, -0.031506527215242386]} +{"t": 24.4443, "q": [-0.3652629852294922, -0.010204381309449673, 0.0070173535495996475, 0.6117430329322815, -0.282514750957489, 0.002761109499260783, -0.36449599266052246, 0.012382633984088898, -0.0033077981788665056, 0.6393205523490906, -0.33277198672294617, -0.0127007607370615, -0.005115704145282507, 0.05490822345018387, -0.03580932691693306, -3.049553871154785, 2.2471859455108643, 1.8976061344146729, 0.43356528878211975, -0.1347985714673996, -0.09002549946308136, 0.02004960924386978, 0.14587199687957764, -0.47420379519462585, -0.1718418002128601, 1.0389244556427002, -0.11798469722270966, 0.08321846276521683, -0.03151851147413254]} +{"t": 24.4611, "q": [-0.36532264947891235, -0.010187337175011635, 0.0070173535495996475, 0.6117345094680786, -0.2825064957141876, 0.0027467200998216867, -0.3645556569099426, 0.012399678118526936, -0.0032944062259048223, 0.6393375992774963, -0.3327678442001343, -0.012708057649433613, -0.004646987654268742, 0.05532406270503998, -0.035551875829696655, -3.0495657920837402, 2.2472100257873535, 1.8975223302841187, 0.43351736664772034, -0.13476261496543884, -0.0900135189294815, 0.02004960924386978, 0.1459079384803772, -0.46811583638191223, -0.17150624096393585, 1.0392600297927856, -0.11798469722270966, 0.08321846276521683, -0.03151851147413254]} +{"t": 24.4778, "q": [-0.3653056025505066, -0.010204381309449673, 0.007044136989861727, 0.6116918921470642, -0.28249409794807434, 0.0027251362334936857, -0.36458122730255127, 0.012425243854522705, -0.0033077981788665056, 0.6393375992774963, -0.3327678442001343, -0.012708057649433613, -0.004057744517922401, 0.05572473257780075, -0.03529396653175354, -3.0495898723602295, 2.2472100257873535, 1.8973904848098755, 0.433433473110199, -0.1348465085029602, -0.0900135189294815, 0.02003762498497963, 0.1459319144487381, -0.4623394310474396, -0.17141036689281464, 1.0397993326187134, -0.1179966852068901, 0.08320647478103638, -0.031506527215242386]} +{"t": 24.4945, "q": [-0.3653056025505066, -0.010187337175011635, 0.007070920895785093, 0.611632227897644, -0.28247323632240295, 0.002746913116425276, -0.3646238446235657, 0.012433766387403011, -0.0032944062259048223, 0.6393461227416992, -0.3327596187591553, -0.012708131223917007, -0.0024373249616473913, 0.0561329685151577, -0.03503137826919556, -3.0495779514312744, 2.247246026992798, 1.8973784446716309, 0.433433473110199, -0.1347745954990387, -0.0900135189294815, 0.02004960924386978, 0.1459319144487381, -0.4560237526893616, -0.17138640582561493, 1.0408419370651245, -0.11798469722270966, 0.08321846276521683, -0.03153049573302269]} +{"t": 24.5115, "q": [-0.36528855562210083, -0.010144727304577827, 0.0071914480067789555, 0.6116492748260498, -0.2824815511703491, 0.0027468781918287277, -0.36467495560646057, 0.012553076259791851, -0.0032676225528120995, 0.639363169670105, -0.3327513635158539, -0.012722725048661232, -0.0002410541201243177, 0.05649585649371147, -0.03479670733213425, -3.0497934818267822, 2.247269868850708, 1.8973544836044312, 0.4333495795726776, -0.13481055200099945, -0.09000153094530106, 0.02004960924386978, 0.1462315171957016, -0.4498039186000824, -0.1709190160036087, 1.0418965816497803, -0.11796072870492935, 0.08319449424743652, -0.03153049573302269]} +{"t": 24.5282, "q": [-0.3652544617652893, -0.010110638104379177, 0.00739232636988163, 0.611632227897644, -0.28247323632240295, 0.002746913116425276, -0.364785760641098, 0.012706474401056767, -0.003334582084789872, 0.6393546462059021, -0.3327431380748749, -0.012722817249596119, 0.0011383111122995615, 0.05673765018582344, -0.0346074253320694, -3.049973249435425, 2.2473537921905518, 1.8974504470825195, 0.43296608328819275, -0.13478657603263855, -0.09002549946308136, 0.02004960924386978, 0.1468067616224289, -0.44389569759368896, -0.17045164108276367, 1.0433106422424316, -0.11796072870492935, 0.08319449424743652, -0.03154247999191284]} +{"t": 24.5449, "q": [-0.3652970790863037, -0.01009359396994114, 0.0074860695749521255, 0.6115299463272095, -0.28247737884521484, 0.0027541257441043854, -0.36481982469558716, 0.012706474401056767, -0.0033077981788665056, 0.6393716931343079, -0.332747220993042, -0.012730039656162262, 0.002048959955573082, 0.05697949230670929, -0.03444797173142433, -3.049997329711914, 2.2473299503326416, 1.8974264860153198, 0.4325466454029083, -0.13478657603263855, -0.09006145596504211, 0.020061593502759933, 0.14711834490299225, -0.43713659048080444, -0.1702478975057602, 1.0452641248703003, -0.1179727166891098, 0.08319449424743652, -0.031554464250802994]} +{"t": 24.5617, "q": [-0.36527150869369507, -0.01010211557149887, 0.007512853480875492, 0.6114788055419922, -0.28248143196105957, 0.002775780390948057, -0.36481982469558716, 0.012723518535494804, -0.003321190131828189, 0.6393802165985107, -0.3327348828315735, -0.012737411074340343, 0.002464108867570758, 0.05719112977385521, -0.034327104687690735, -3.0499134063720703, 2.2473299503326416, 1.8974024057388306, 0.43248671293258667, -0.1348225325345993, -0.09004946798086166, 0.02003762498497963, 0.1474059671163559, -0.430629163980484, -0.16978052258491516, 1.0473613739013672, -0.11796072870492935, 0.08321846276521683, -0.031566448509693146]} +{"t": 24.5784, "q": [-0.36527150869369507, -0.010110638104379177, 0.007553029339760542, 0.6114788055419922, -0.28248563408851624, 0.002768514910712838, -0.3648368716239929, 0.012706474401056767, -0.0033881496638059616, 0.6393716931343079, -0.3327431082725525, -0.012737336568534374, 0.00287925754673779, 0.057485803961753845, -0.034135278314352036, -3.0498414039611816, 2.2473537921905518, 1.8973065614700317, 0.43248671293258667, -0.1347985714673996, -0.09002549946308136, 0.02004960924386978, 0.1474778801202774, -0.42402586340904236, -0.16793495416641235, 1.0498300790786743, -0.11796072870492935, 0.08321846276521683, -0.031554464250802994]} +{"t": 24.5951, "q": [-0.3653056025505066, -0.010110638104379177, 0.007526245433837175, 0.6114702820777893, -0.28247737884521484, 0.0027541257441043854, -0.36481133103370667, 0.012706474401056767, -0.0033747577108442783, 0.6393716931343079, -0.33271417021751404, -0.012788433581590652, 0.0030399602837860584, 0.05768200382590294, -0.03395506739616394, -3.049757719039917, 2.247365713119507, 1.897222638130188, 0.4324507713317871, -0.13478657603263855, -0.09002549946308136, 0.02004960924386978, 0.14786137640476227, -0.4169311821460724, -0.16656874120235443, 1.0517116785049438, -0.11796072870492935, 0.08320647478103638, -0.031566448509693146]} +{"t": 24.6118, "q": [-0.3653056025505066, -0.010127682238817215, 0.007526245433837175, 0.6114788055419922, -0.2824690043926239, 0.0027686383109539747, -0.36481133103370667, 0.012749084271490574, -0.003481892868876457, 0.6393716931343079, -0.33270999789237976, -0.01281024981290102, 0.003133703488856554, 0.05781765282154083, -0.03379257395863533, -3.049625873565674, 2.2474136352539062, 1.8971507549285889, 0.4324268102645874, -0.13478657603263855, -0.0900135189294815, 0.02004960924386978, 0.14787335693836212, -0.41010019183158875, -0.16549016535282135, 1.0541443824768066, -0.11796072870492935, 0.08319449424743652, -0.031566448509693146]} +{"t": 24.6286, "q": [-0.3652970790863037, -0.010136204771697521, 0.007512853480875492, 0.6114788055419922, -0.28248143196105957, 0.002775780390948057, -0.3648028075695038, 0.012766129337251186, -0.0034283252898603678, 0.6393887400627136, -0.33270591497421265, -0.012803027406334877, 0.0032274469267576933, 0.057900216430425644, -0.033623505383729935, -3.049661636352539, 2.24747371673584, 1.8970309495925903, 0.4322110712528229, -0.13478657603263855, -0.0900135189294815, 0.020061593502759933, 0.14783740043640137, -0.403017520904541, -0.16467523574829102, 1.057020664215088, -0.1179727166891098, 0.08319449424743652, -0.031554464250802994]} +{"t": 24.6454, "q": [-0.3653056025505066, -0.010119160637259483, 0.007566420827060938, 0.6114702820777893, -0.282464861869812, 0.002761425916105509, -0.364785760641098, 0.01275760680437088, -0.0034952848218381405, 0.6394057869911194, -0.33270183205604553, -0.01279580406844616, 0.0032676225528120995, 0.05799071490764618, -0.03352821618318558, -3.049637794494629, 2.2474377155303955, 1.8969590663909912, 0.4319594204425812, -0.13483451306819916, -0.09002549946308136, 0.020061593502759933, 0.1480291485786438, -0.39576706290245056, -0.16471119225025177, 1.0592018365859985, -0.1179727166891098, 0.08318250626325607, -0.03159041702747345]} +{"t": 24.6621, "q": [-0.36527150869369507, -0.010127682238817215, 0.007619988638907671, 0.6114788055419922, -0.2824690341949463, 0.002754178596660495, -0.364785760641098, 0.012766129337251186, -0.0034952848218381405, 0.6393887400627136, -0.33268943428993225, -0.012817694805562496, 0.00321405497379601, 0.058028098195791245, -0.03341645747423172, -3.049661636352539, 2.2474496364593506, 1.8968751430511475, 0.4319833815097809, -0.1347985714673996, -0.09002549946308136, 0.02003762498497963, 0.14812502264976501, -0.3888881206512451, -0.16468721628189087, 1.0612510442733765, -0.1179727166891098, 0.08321846276521683, -0.03159041702747345]} +{"t": 24.6788, "q": [-0.3652629852294922, -0.010119160637259483, 0.007780691608786583, 0.6114788055419922, -0.2824690043926239, 0.0027686383109539747, -0.36476871371269226, 0.012766129337251186, -0.0034952848218381405, 0.6394057869911194, -0.33269768953323364, -0.012803100980818272, 0.003133703488856554, 0.05813349410891533, -0.033262643963098526, -3.0497336387634277, 2.2474377155303955, 1.8968632221221924, 0.4319594204425812, -0.1347745954990387, -0.09002549946308136, 0.02003762498497963, 0.14804112911224365, -0.3820211589336395, -0.1646272987127304, 1.0639235973358154, -0.11793676018714905, 0.08319449424743652, -0.03159041702747345]} +{"t": 24.6956, "q": [-0.3652118444442749, -0.010136204771697521, 0.00798156950622797, 0.6114788055419922, -0.28248143196105957, 0.002775780390948057, -0.36476871371269226, 0.012749084271490574, -0.0035354604478925467, 0.6394398808479309, -0.33270591497421265, -0.012803027406334877, 0.0030131766106933355, 0.0582316517829895, -0.033182259649038315, -3.049853563308716, 2.2474377155303955, 1.8968991041183472, 0.4318994879722595, -0.1347985714673996, -0.09002549946308136, 0.020061593502759933, 0.1480291485786438, -0.3753219544887543, -0.16466325521469116, 1.0666320323944092, -0.11793676018714905, 0.08317052572965622, -0.03165033832192421]} +{"t": 24.7123, "q": [-0.3652118444442749, -0.010136204771697521, 0.008128880523145199, 0.6114702820777893, -0.2824814021587372, 0.0027902224101126194, -0.3647516667842865, 0.012766129337251186, -0.0034952848218381405, 0.6394484043121338, -0.3326853811740875, -0.012795952148735523, 0.002959609031677246, 0.05829944461584091, -0.03309109807014465, -3.0499253273010254, 2.2474377155303955, 1.8969230651855469, 0.4318994879722595, -0.13481055200099945, -0.09002549946308136, 0.020013656467199326, 0.14793327450752258, -0.3686707317829132, -0.16461531817913055, 1.0697718858718872, -0.11796072870492935, 0.08320647478103638, -0.031626369804143906]} +{"t": 24.7291, "q": [-0.36522889137268066, -0.010136204771697521, 0.00832975935190916, 0.6114702820777893, -0.28248557448387146, 0.0027829750906676054, -0.364717572927475, 0.012766129337251186, -0.0034283252898603678, 0.639431357383728, -0.3326895534992218, -0.012759597040712833, 0.0029060414526611567, 0.05838234722614288, -0.03299058973789215, -3.0500452518463135, 2.2474136352539062, 1.8969470262527466, 0.4318755269050598, -0.13478657603263855, -0.09003748744726181, 0.02004960924386978, 0.1480051875114441, -0.3622112274169922, -0.16459134221076965, 1.0726720094680786, -0.11796072870492935, 0.08321846276521683, -0.031626369804143906]} +{"t": 24.7458, "q": [-0.3652544617652893, -0.010127682238817215, 0.008530637249350548, 0.6114276647567749, -0.28249382972717285, 0.002797364257276058, -0.36469200253486633, 0.012749084271490574, -0.0034149333368986845, 0.6394484043121338, -0.3326854407787323, -0.012766893953084946, 0.002758730435743928, 0.058404795825481415, -0.032927464693784714, -3.050021171569824, 2.2474136352539062, 1.8969470262527466, 0.4318515658378601, -0.13476261496543884, -0.09003748744726181, 0.02003762498497963, 0.14804112911224365, -0.3557756841182709, -0.16463927924633026, 1.0754643678665161, -0.11793676018714905, 0.08321846276521683, -0.031674306839704514]} +{"t": 24.7625, "q": [-0.3652203679084778, -0.010127682238817215, 0.008704732172191143, 0.6114276647567749, -0.2824896574020386, 0.002804611576721072, -0.36467495560646057, 0.012749084271490574, -0.0034015413839370012, 0.639431357383728, -0.33267316222190857, -0.012745224870741367, 0.0027453387156128883, 0.05841958895325661, -0.03284936398267746, -3.050021171569824, 2.2474377155303955, 1.8969470262527466, 0.43181559443473816, -0.13473863899707794, -0.09002549946308136, 0.02004960924386978, 0.1480051875114441, -0.34916040301322937, -0.16463927924633026, 1.0787240266799927, -0.1179247796535492, 0.08323044329881668, -0.03166232258081436]} +{"t": 24.7794, "q": [-0.36523741483688354, -0.010136204771697521, 0.008825259283185005, 0.6114361882209778, -0.28250208497047424, 0.0028117536567151546, -0.36467495560646057, 0.012723518535494804, -0.0033747577108442783, 0.639431357383728, -0.33267736434936523, -0.012708870694041252, 0.0026649872306734324, 0.05835089460015297, -0.032744091004133224, -3.0500571727752686, 2.2474377155303955, 1.8969470262527466, 0.43181559443473816, -0.13476261496543884, -0.09002549946308136, 0.02004960924386978, 0.14817295968532562, -0.34242525696754456, -0.16461531817913055, 1.0810489654541016, -0.1179487481713295, 0.08321846276521683, -0.03172224387526512]} +{"t": 24.7962, "q": [-0.3652544617652893, -0.010144727304577827, 0.008878827095031738, 0.6114361882209778, -0.28250622749328613, 0.0028189660515636206, -0.36468347907066345, 0.012706474401056767, -0.003347973804920912, 0.639431357383728, -0.33268558979034424, -0.012708796188235283, 0.002611419651657343, 0.058342862874269485, -0.03265060484409332, -3.0500333309173584, 2.2474377155303955, 1.8969111442565918, 0.4318036139011383, -0.13476261496543884, -0.0900135189294815, 0.020061593502759933, 0.14822089672088623, -0.33624139428138733, -0.16471119225025177, 1.0829185247421265, -0.11796072870492935, 0.08321846276521683, -0.03172224387526512]} +{"t": 24.8129, "q": [-0.3652459383010864, -0.010144727304577827, 0.008945786394178867, 0.611419141292572, -0.28250205516815186, 0.0028262136038392782, -0.36467495560646057, 0.012680907733738422, -0.0032944062259048223, 0.6394057869911194, -0.3326815366744995, -0.01268705353140831, 0.002624811604619026, 0.05831166356801987, -0.03247307986021042, -3.0500571727752686, 2.2474377155303955, 1.8969230651855469, 0.43176767230033875, -0.13476261496543884, -0.09002549946308136, 0.02004960924386978, 0.14814899861812592, -0.32984182238578796, -0.16471119225025177, 1.0847041606903076, -0.1179487481713295, 0.08321846276521683, -0.03175819665193558]} +{"t": 24.8297, "q": [-0.3652629852294922, -0.010153248906135559, 0.0089993542060256, 0.6114361882209778, -0.2825144827365875, 0.002833355451002717, -0.36467495560646057, 0.012714996002614498, -0.0032810145057737827, 0.6394143104553223, -0.3326733112335205, -0.01268712803721428, 0.0025980276986956596, 0.058257997035980225, -0.032348763197660446, -3.050081253051758, 2.2474136352539062, 1.8969230651855469, 0.43171972036361694, -0.13483451306819916, -0.09003748744726181, 0.020073577761650085, 0.14814899861812592, -0.3236100375652313, -0.16475912928581238, 1.086010456085205, -0.1179487481713295, 0.08320647478103638, -0.03178216516971588]} +{"t": 24.8464, "q": [-0.36523741483688354, -0.010170293040573597, 0.008959177881479263, 0.6114361882209778, -0.2825144827365875, 0.002833355451002717, -0.36468347907066345, 0.012706474401056767, -0.0032944062259048223, 0.6393802165985107, -0.3326691687107086, -0.012694424018263817, 0.002624811604619026, 0.0581970289349556, -0.0322781465947628, -3.050081253051758, 2.2474257946014404, 1.896887183189392, 0.4316238462924957, -0.1347745954990387, -0.09002549946308136, 0.02004960924386978, 0.14812502264976501, -0.3166831433773041, -0.16473515331745148, 1.0872927904129028, -0.11793676018714905, 0.08321846276521683, -0.03175819665193558]} +{"t": 24.8631, "q": [-0.36523741483688354, -0.010153248906135559, 0.008959177881479263, 0.6114361882209778, -0.2825227975845337, 0.0028332846704870462, -0.36468347907066345, 0.012706474401056767, -0.0032944062259048223, 0.6393716931343079, -0.3326815664768219, -0.012672534212470055, 0.0026783791836351156, 0.058174069970846176, -0.03223327547311783, -3.0500333309173584, 2.2474377155303955, 1.8968991041183472, 0.4314081370830536, -0.13478657603263855, -0.09002549946308136, 0.02004960924386978, 0.1479812115430832, -0.30992403626441956, -0.16471119225025177, 1.0886350870132446, -0.11796072870492935, 0.08324243128299713, -0.03179414942860603]} +{"t": 24.88, "q": [-0.36523741483688354, -0.010178815573453903, 0.008972570300102234, 0.6114361882209778, -0.28251442313194275, 0.0028477974701672792, -0.36467495560646057, 0.012689430266618729, -0.003321190131828189, 0.6393716931343079, -0.33267742395401, -0.012679831124842167, 0.002758730435743928, 0.058151211589574814, -0.03220801800489426, -3.050009250640869, 2.2474496364593506, 1.8969470262527466, 0.43104860186576843, -0.13473863899707794, -0.0900135189294815, 0.020073577761650085, 0.14776550233364105, -0.3031769394874573, -0.16469921171665192, 1.0902409553527832, -0.11793676018714905, 0.08319449424743652, -0.03179414942860603]} +{"t": 24.8967, "q": [-0.3652118444442749, -0.010195858776569366, 0.008959177881479263, 0.6114361882209778, -0.28251442313194275, 0.0028477974701672792, -0.36467495560646057, 0.012663863599300385, -0.003361365757882595, 0.6393375992774963, -0.3326691687107086, -0.012694424018263817, 0.002852473873645067, 0.058151114732027054, -0.032188404351472855, -3.0500333309173584, 2.2474496364593506, 1.8968991041183472, 0.43059322237968445, -0.13476261496543884, -0.09002549946308136, 0.02004960924386978, 0.14739398658275604, -0.2960582971572876, -0.16461531817913055, 1.0924100875854492, -0.11798469722270966, 0.08321846276521683, -0.031806133687496185]} +{"t": 24.9135, "q": [-0.36518630385398865, -0.01022142544388771, 0.008972570300102234, 0.6114447116851807, -0.28251442313194275, 0.0028477974701672792, -0.36467495560646057, 0.012655341066420078, -0.0033077981788665056, 0.6393205523490906, -0.3326733112335205, -0.01268712803721428, 0.003026568330824375, 0.058151062577962875, -0.032178595662117004, -3.050021171569824, 2.2474496364593506, 1.8968511819839478, 0.42994606494903564, -0.13478657603263855, -0.09002549946308136, 0.02004960924386978, 0.14716628193855286, -0.2893231511116028, -0.1646512746810913, 1.0945552587509155, -0.1179966852068901, 0.08323044329881668, -0.03181811794638634]} +{"t": 24.9302, "q": [-0.3651181161403656, -0.010255513712763786, 0.00898596178740263, 0.6114361882209778, -0.28251025080680847, 0.0028550447896122932, -0.36467495560646057, 0.01263829693198204, -0.003321190131828189, 0.6393290758132935, -0.3326610028743744, -0.012665440328419209, 0.0030533522367477417, 0.0581660233438015, -0.032139852643013, -3.050009250640869, 2.2474377155303955, 1.8967432975769043, 0.4293588399887085, -0.13476261496543884, -0.0900135189294815, 0.02004960924386978, 0.14698652923107147, -0.28283968567848206, -0.16468721628189087, 1.0968801975250244, -0.11798469722270966, 0.08321846276521683, -0.03185407072305679]} +{"t": 24.9469, "q": [-0.3651095926761627, -0.010238470509648323, 0.008972570300102234, 0.6114276647567749, -0.2825060784816742, 0.0028622921090573072, -0.36464086174964905, 0.012646819464862347, -0.003347973804920912, 0.6393375992774963, -0.3326610028743744, -0.012665440328419209, 0.003026568330824375, 0.05810520052909851, -0.03209865838289261, -3.0499253273010254, 2.24747371673584, 1.896467685699463, 0.42881953716278076, -0.13476261496543884, -0.09002549946308136, 0.02004960924386978, 0.14672286808490753, -0.27585288882255554, -0.16472317278385162, 1.1001039743423462, -0.1179487481713295, 0.08319449424743652, -0.03193796053528786]} +{"t": 24.9636, "q": [-0.3651522099971771, -0.010246992111206055, 0.00898596178740263, 0.6114361882209778, -0.2825019359588623, 0.0028550976421684027, -0.3646579086780548, 0.012646819464862347, -0.003361365757882595, 0.6393120288848877, -0.33267340064048767, -0.012643549591302872, 0.003093527862802148, 0.0580214187502861, -0.03201259300112724, -3.0498414039611816, 2.247509717941284, 1.8961920738220215, 0.42780089378356934, -0.13478657603263855, -0.09002549946308136, 0.02004960924386978, 0.1462075412273407, -0.26898592710494995, -0.16473515331745148, 1.103279709815979, -0.11796072870492935, 0.08320647478103638, -0.031985897570848465]} +{"t": 24.9804, "q": [-0.3651095926761627, -0.010264036245644093, 0.008972570300102234, 0.6114532351493835, -0.2825019359588623, 0.0028550976421684027, -0.36464086174964905, 0.012655341066420078, -0.0034015413839370012, 0.6393035054206848, -0.3326775133609772, -0.012636253610253334, 0.0032274469267576933, 0.05796819552779198, -0.031976547092199326, -3.049769639968872, 2.24749755859375, 1.8957725763320923, 0.4263627827167511, -0.1348225325345993, -0.0899655818939209, 0.02004960924386978, 0.14529675245285034, -0.2619631886482239, -0.16473515331745148, 1.1048976182937622, -0.1179487481713295, 0.08319449424743652, -0.03202185034751892]} +{"t": 24.9971, "q": [-0.36505845189094543, -0.010264036245644093, 0.008932393975555897, 0.6114532351493835, -0.2825019359588623, 0.0028550976421684027, -0.36459827423095703, 0.01263829693198204, -0.0034551091957837343, 0.6393035054206848, -0.33266928791999817, -0.012636327184736729, 0.0033747577108442783, 0.05791472643613815, -0.031891461461782455, -3.0497217178344727, 2.247509717941284, 1.894897699356079, 0.4240737855434418, -0.1348465085029602, -0.0899416133761406, 0.020073577761650085, 0.14439792931079865, -0.25446105003356934, -0.16468721628189087, 1.1070069074630737, -0.11796072870492935, 0.08319449424743652, -0.03206978738307953]} +{"t": 25.0138, "q": [-0.36505845189094543, -0.010272558778524399, 0.00898596178740263, 0.6114447116851807, -0.2825060784816742, 0.0028622921090573072, -0.36459827423095703, 0.012612731195986271, -0.0034149333368986845, 0.6393120288848877, -0.3326775133609772, -0.012636253610253334, 0.0035086767747998238, 0.05787661671638489, -0.031846120953559875, -3.0497097969055176, 2.247593402862549, 1.8934836387634277, 0.4216170310974121, -0.13483451306819916, -0.0899416133761406, 0.02004960924386978, 0.14375078678131104, -0.24764202535152435, -0.16466325521469116, 1.1088883876800537, -0.1179487481713295, 0.08320647478103638, -0.032045818865299225]} +{"t": 25.0306, "q": [-0.36505845189094543, -0.01028108038008213, 0.008959177881479263, 0.6114447116851807, -0.2825143337249756, 0.0028766815084964037, -0.3645641803741455, 0.012612731195986271, -0.003468500915914774, 0.6392694711685181, -0.33268582820892334, -0.012607120908796787, 0.003575636073946953, 0.05780059099197388, -0.03179468959569931, -3.049625873565674, 2.247593402862549, 1.8916500806808472, 0.41759032011032104, -0.13485848903656006, -0.08989367634057999, 0.020061593502759933, 0.14330735802650452, -0.2400919646024704, -0.16466325521469116, 1.1106740236282349, -0.1179966852068901, 0.08320647478103638, -0.03208177164196968]} +{"t": 25.0473, "q": [-0.3650414049625397, -0.010289601981639862, 0.008959177881479263, 0.6114447116851807, -0.2825060784816742, 0.0028622921090573072, -0.36450451612472534, 0.012612731195986271, -0.0034551091957837343, 0.6392268538475037, -0.33268579840660095, -0.01262165978550911, 0.003575636073946953, 0.05766374245285988, -0.03170211240649223, -3.049553871154785, 2.247617483139038, 1.889744520187378, 0.4124131500720978, -0.1348465085029602, -0.08989367634057999, 0.02004960924386978, 0.14304371178150177, -0.23270969092845917, -0.16466325521469116, 1.1126514673233032, -0.11800866574048996, 0.08318250626325607, -0.03208177164196968]} +{"t": 25.0641, "q": [-0.3650754988193512, -0.010298124514520168, 0.008959177881479263, 0.6114702820777893, -0.2825060784816742, 0.0028622921090573072, -0.36449599266052246, 0.012587164528667927, -0.003441717242822051, 0.6392268538475037, -0.33268997073173523, -0.01259982492774725, 0.0037497307639569044, 0.05752689763903618, -0.031609535217285156, -3.0494818687438965, 2.2476413249969482, 1.8879948854446411, 0.40697231888771057, -0.13473863899707794, -0.08991764485836029, 0.02004960924386978, 0.1428639441728592, -0.22608241438865662, -0.16468721628189087, 1.1148205995559692, -0.1179727166891098, 0.08319449424743652, -0.03206978738307953]} +{"t": 25.0808, "q": [-0.3650669753551483, -0.010332213714718819, 0.008892218582332134, 0.6114532351493835, -0.282493531703949, 0.002884034300222993, -0.3644448518753052, 0.012544553726911545, -0.00354885240085423, 0.6391586661338806, -0.3326858580112457, -0.012592601589858532, 0.004419325385242701, 0.0573597252368927, -0.03151607885956764, -3.049422025680542, 2.2476413249969482, 1.885825753211975, 0.40086033940315247, -0.13470269739627838, -0.08992962539196014, 0.02004960924386978, 0.14281600713729858, -0.21925139427185059, -0.16466325521469116, 1.1166541576385498, -0.11798469722270966, 0.08320647478103638, -0.03208177164196968]} +{"t": 25.0975, "q": [-0.3650840222835541, -0.010349256917834282, 0.008838650770485401, 0.6114788055419922, -0.282493531703949, 0.002884034300222993, -0.36441078782081604, 0.012518987990915775, -0.003669379511848092, 0.639133095741272, -0.3326982259750366, -0.012585231103003025, 0.005021960940212011, 0.05723046883940697, -0.0314287394285202, -3.0494940280914307, 2.247617483139038, 1.8817989826202393, 0.39392149448394775, -0.13467872142791748, -0.08984573930501938, 0.020061593502759933, 0.14252838492393494, -0.21281586587429047, -0.1645793616771698, 1.1189072132110596, -0.11796072870492935, 0.08320647478103638, -0.03209375590085983]} +{"t": 25.1143, "q": [-0.3650414049625397, -0.010357779450714588, 0.008865434676408768, 0.6114447116851807, -0.2825101315975189, 0.0028839288279414177, -0.3643766939640045, 0.012501942925155163, -0.0036024199798703194, 0.6390649080276489, -0.3327023386955261, -0.012577934190630913, 0.005383542273193598, 0.0571393258869648, -0.03138669207692146, -3.0491225719451904, 2.2476894855499268, 1.8785033226013184, 0.38733017444610596, -0.13460682332515717, -0.0899416133761406, 0.02003762498497963, 0.14153370261192322, -0.20767463743686676, -0.1645793616771698, 1.1215916872024536, -0.11796072870492935, 0.08319449424743652, -0.03200986608862877]} +{"t": 25.131, "q": [-0.3650754988193512, -0.010391868650913239, 0.008798475377261639, 0.6114788055419922, -0.28250178694725037, 0.0028984236996620893, -0.36435964703559875, 0.01245081052184105, -0.003669379511848092, 0.639056384563446, -0.3327147960662842, -0.012541505508124828, 0.00575851509347558, 0.057025227695703506, -0.03129982203245163, -3.0481996536254883, 2.247701406478882, 1.8766098022460938, 0.3804751932621002, -0.1345468908548355, -0.09000153094530106, 0.01998968794941902, 0.14073075354099274, -0.20265324413776398, -0.16469921171665192, 1.123053789138794, -0.11796072870492935, 0.08320647478103638, -0.03206978738307953]} +{"t": 25.1477, "q": [-0.3651181161403656, -0.010366301983594894, 0.008637772873044014, 0.6114788055419922, -0.28251421451568604, 0.002905565546825528, -0.36436817049980164, 0.012433766387403011, -0.003669379511848092, 0.6390137672424316, -0.3327808976173401, -0.012424718588590622, 0.006079920567572117, 0.05686565861105919, -0.03121153637766838, -3.047924041748047, 2.2476534843444824, 1.8751477003097534, 0.37372806668281555, -0.13451094925403595, -0.08980978280305862, 0.020025640726089478, 0.14037123322486877, -0.19814717769622803, -0.16479508578777313, 1.1239285469055176, -0.11796072870492935, 0.08320647478103638, -0.03206978738307953]} +{"t": 25.1645, "q": [-0.36510106921195984, -0.010374823585152626, 0.008624380454421043, 0.6114788055419922, -0.2825101315975189, 0.0028839288279414177, -0.36435964703559875, 0.012408199720084667, -0.0037095551379024982, 0.6390137672424316, -0.3327890634536743, -0.012439164333045483, 0.006307582836598158, 0.056728895753622055, -0.03113866038620472, -3.0477442741394043, 2.2476894855499268, 1.8734699487686157, 0.3667532503604889, -0.13451094925403595, -0.08988168835639954, 0.02003762498497963, 0.13995178043842316, -0.193760946393013, -0.1648550033569336, 1.1244319677352905, -0.11793676018714905, 0.08319449424743652, -0.03209375590085983]} +{"t": 25.1813, "q": [-0.36509254574775696, -0.010374823585152626, 0.008570813573896885, 0.611495852470398, -0.2825101315975189, 0.0028839288279414177, -0.36435964703559875, 0.012408199720084667, -0.003669379511848092, 0.6390137672424316, -0.3327890634536743, -0.012439164333045483, 0.006307582836598158, 0.05666046217083931, -0.031092418357729912, -3.047720193862915, 2.247701406478882, 1.8711330890655518, 0.360054075717926, -0.13451094925403595, -0.0900135189294815, 0.020025640726089478, 0.13970011472702026, -0.190117746591568, -0.1648310273885727, 1.1246356964111328, -0.11796072870492935, 0.08318250626325607, -0.03208177164196968]} +{"t": 25.1981, "q": [-0.36509254574775696, -0.010366301983594894, 0.008597597479820251, 0.6115214228630066, -0.2825101315975189, 0.0028839288279414177, -0.36435964703559875, 0.012416722252964973, -0.003669379511848092, 0.6390222907066345, -0.3327808380126953, -0.01243925653398037, 0.006213839631527662, 0.05664530768990517, -0.031091947108507156, -3.047492504119873, 2.2476773262023926, 1.8688321113586426, 0.3527796268463135, -0.13453491032123566, -0.09000153094530106, 0.020025640726089478, 0.1395922601222992, -0.18676216900348663, -0.1648550033569336, 1.124719500541687, -0.11796072870492935, 0.08318250626325607, -0.03211772441864014]} +{"t": 25.2148, "q": [-0.36510106921195984, -0.010366301983594894, 0.00866455677896738, 0.6115214228630066, -0.282522588968277, 0.0028910709079355, -0.3643852174282074, 0.01239115558564663, -0.0036158119328320026, 0.6390222907066345, -0.332793265581131, -0.012402827851474285, 0.006106704473495483, 0.05664530768990517, -0.031091947108507156, -3.0474445819854736, 2.2476773262023926, 1.8665670156478882, 0.3464040160179138, -0.13453491032123566, -0.0899655818939209, 0.02004960924386978, 0.13962820172309875, -0.18361032009124756, -0.16493889689445496, 1.1248873472213745, -0.11793676018714905, 0.08318250626325607, -0.03209375590085983]} +{"t": 25.2316, "q": [-0.3651266396045685, -0.010374823585152626, 0.008637772873044014, 0.6115299463272095, -0.282522588968277, 0.0028910709079355, -0.36436817049980164, 0.01239115558564663, -0.0035220684949308634, 0.6390137672424316, -0.33280155062675476, -0.01238823402673006, 0.005946001503616571, 0.056637752801179886, -0.03109661117196083, -3.047720193862915, 2.247629404067993, 1.8635350465774536, 0.34122684597969055, -0.13451094925403595, -0.09009740501642227, 0.02004960924386978, 0.13965217769145966, -0.1810816377401352, -0.16493889689445496, 1.1253187656402588, -0.1179487481713295, 0.08318250626325607, -0.03209375590085983]} +{"t": 25.2483, "q": [-0.3651181161403656, -0.010374823585152626, 0.008691340684890747, 0.6115299463272095, -0.28252673149108887, 0.002898283302783966, -0.3643852174282074, 0.01239115558564663, -0.0034551091957837343, 0.6390478610992432, -0.33279332518577576, -0.01238830853253603, 0.005624596029520035, 0.05657722055912018, -0.03111431933939457, -3.0480797290802, 2.247593402862549, 1.8593645095825195, 0.3359537720680237, -0.1345229297876358, -0.08995359390974045, 0.020013656467199326, 0.13965217769145966, -0.17887654900550842, -0.1649029403924942, 1.125846028327942, -0.1179487481713295, 0.08319449424743652, -0.03211772441864014]} +{"t": 25.265, "q": [-0.3651181161403656, -0.010374823585152626, 0.008798475377261639, 0.6115299463272095, -0.28255173563957214, 0.0028836652636528015, -0.3643852174282074, 0.012382633984088898, -0.0033747577108442783, 0.6390137672424316, -0.3327893614768982, -0.012322969734668732, 0.005356758367270231, 0.056547004729509354, -0.031132977455854416, -3.047924041748047, 2.247617483139038, 1.856332540512085, 0.33122003078460693, -0.1344989538192749, -0.08997756242752075, 0.01998968794941902, 0.13967613875865936, -0.17719875276088715, -0.16489095985889435, 1.126205563545227, -0.1179487481713295, 0.08318250626325607, -0.03209375590085983]} +{"t": 25.2817, "q": [-0.36513516306877136, -0.010374823585152626, 0.008798475377261639, 0.6115555167198181, -0.28255167603492737, 0.002898125210776925, -0.3643766939640045, 0.012374111451208591, -0.0033747577108442783, 0.6390052437782288, -0.33279356360435486, -0.012286633253097534, 0.005316582508385181, 0.056432951241731644, -0.031055908650159836, -3.0478880405426025, 2.2475576400756836, 1.8542232513427734, 0.32652220129966736, -0.13451094925403595, -0.08988168835639954, 0.020013656467199326, 0.13973607122898102, -0.17614413797855377, -0.16489095985889435, 1.1266010999679565, -0.11793676018714905, 0.08319449424743652, -0.03208177164196968]} +{"t": 25.2985, "q": [-0.36513516306877136, -0.010443000122904778, 0.008785083889961243, 0.611564040184021, -0.28255584836006165, 0.002890859730541706, -0.3643766939640045, 0.01233150064945221, -0.0033881496638059616, 0.6389711499214172, -0.33278539776802063, -0.012257667258381844, 0.005356758367270231, 0.05631178617477417, -0.031071724370121956, -3.047924041748047, 2.2475814819335938, 1.8525575399398804, 0.3220880329608917, -0.13455888628959656, -0.08989367634057999, 0.02003762498497963, 0.13976003229618073, -0.17555691301822662, -0.16491492092609406, 1.1273560523986816, -0.1179487481713295, 0.08319449424743652, -0.03209375590085983]} +{"t": 25.3153, "q": [-0.3651266396045685, -0.010468566790223122, 0.008798475377261639, 0.6116151809692383, -0.28255584836006165, 0.002890859730541706, -0.3643852174282074, 0.01230593491345644, -0.003347973804920912, 0.638988196849823, -0.3327771723270416, -0.01225772313773632, 0.005396933760493994, 0.05613705888390541, -0.030982961878180504, -3.047935962677002, 2.247593402862549, 1.8509515523910522, 0.31806135177612305, -0.13455888628959656, -0.08992962539196014, 0.02004960924386978, 0.13978400826454163, -0.17542508244514465, -0.1649269014596939, 1.1282309293746948, -0.11791279166936874, 0.08320647478103638, -0.032105740159749985]} +{"t": 25.332, "q": [-0.3651266396045685, -0.01051970012485981, 0.008785083889961243, 0.6115981340408325, -0.28255993127822876, 0.0029125146102160215, -0.3643766939640045, 0.012220713309943676, -0.003347973804920912, 0.6389541029930115, -0.3327772319316864, -0.012228683568537235, 0.00546389352530241, 0.0558258593082428, -0.03088013455271721, -3.047935962677002, 2.2475814819335938, 1.8493456840515137, 0.3145259916782379, -0.13458284735679626, -0.0899416133761406, 0.020013656467199326, 0.13977201282978058, -0.1754370778799057, -0.16497483849525452, 1.1290098428726196, -0.1179727166891098, 0.08324243128299713, -0.03212970867753029]} +{"t": 25.3488, "q": [-0.36510106921195984, -0.010553788393735886, 0.00873151607811451, 0.6115810871124268, -0.282530814409256, 0.0029199200216680765, -0.3643852174282074, 0.012229235842823982, -0.0033881496638059616, 0.6389796733856201, -0.33274438977241516, -0.012214459478855133, 0.005517460871487856, 0.055430587381124496, -0.03063257969915867, -3.047924041748047, 2.2475695610046387, 1.8482191562652588, 0.31241676211357117, -0.13461880385875702, -0.08997756242752075, 0.020013656467199326, 0.13971209526062012, -0.17564080655574799, -0.16499881446361542, 1.1294053792953491, -0.11796072870492935, 0.08319449424743652, -0.03212970867753029]} +{"t": 25.3657, "q": [-0.36514368653297424, -0.010553788393735886, 0.008637772873044014, 0.6115981340408325, -0.282530814409256, 0.0029199200216680765, -0.3643766939640045, 0.012229235842823982, -0.0033747577108442783, 0.638988196849823, -0.33274438977241516, -0.012199921533465385, 0.005651379935443401, 0.05495171621441841, -0.03033888339996338, -3.047924041748047, 2.247509717941284, 1.847500205039978, 0.31072700023651123, -0.13459482789039612, -0.08990565687417984, 0.020025640726089478, 0.13962820172309875, -0.17589247226715088, -0.16503477096557617, 1.1296809911727905, -0.11796072870492935, 0.08319449424743652, -0.03215367719531059]} +{"t": 25.3824, "q": [-0.36513516306877136, -0.010536743327975273, 0.008597597479820251, 0.6116066575050354, -0.2825225591659546, 0.00290553062222898, -0.3643766939640045, 0.012229235842823982, -0.0034283252898603678, 0.638988196849823, -0.33274027705192566, -0.012207218445837498, 0.005704947747290134, 0.054442282766103745, -0.02999543957412243, -3.047924041748047, 2.24749755859375, 1.8470447063446045, 0.30937278270721436, -0.13458284735679626, -0.08986970782279968, 0.02003762498497963, 0.13955630362033844, -0.17620407044887543, -0.16507071256637573, 1.1297409534454346, -0.1179487481713295, 0.08318250626325607, -0.0321776457130909]} +{"t": 25.3991, "q": [-0.3651095926761627, -0.01054526586085558, 0.008463677950203419, 0.6115981340408325, -0.28251421451568604, 0.002905565546825528, -0.3643937408924103, 0.012237757444381714, -0.003468500915914774, 0.6389796733856201, -0.33274027705192566, -0.012207218445837498, 0.00571833923459053, 0.05398602411150932, -0.029678087681531906, -3.047948122024536, 2.2474496364593506, 1.846313714981079, 0.30785077810287476, -0.13465476036071777, -0.08980978280305862, 0.020025640726089478, 0.13940051198005676, -0.17659954726696014, -0.16508270800113678, 1.1297409534454346, -0.1179727166891098, 0.08319449424743652, -0.0321776457130909]} +{"t": 25.4159, "q": [-0.3651266396045685, -0.01051970012485981, 0.008410110138356686, 0.6116066575050354, -0.28250595927238464, 0.0028911761473864317, -0.3644363582134247, 0.012263324111700058, -0.0034283252898603678, 0.6389711499214172, -0.33274024724960327, -0.012221756391227245, 0.00571833923459053, 0.05368178337812424, -0.029453465715050697, -3.048043966293335, 2.24747371673584, 1.8451752662658691, 0.3066883087158203, -0.13464276492595673, -0.08979780226945877, 0.020025640726089478, 0.1392926573753357, -0.1767074018716812, -0.16509468853473663, 1.1297528743743896, -0.11793676018714905, 0.08318250626325607, -0.03224955126643181]} +{"t": 25.4326, "q": [-0.36510106921195984, -0.010502655059099197, 0.008463677950203419, 0.6116066575050354, -0.28250178694725037, 0.0028984236996620893, -0.3644448518753052, 0.012297412380576134, -0.003468500915914774, 0.6389711499214172, -0.3327195942401886, -0.012258258648216724, 0.005624596029520035, 0.05340035259723663, -0.02924422174692154, -3.0481276512145996, 2.2474496364593506, 1.8438210487365723, 0.3058973550796509, -0.13466674089431763, -0.08983375132083893, 0.020025640726089478, 0.13916082680225372, -0.17692311108112335, -0.16509468853473663, 1.1297768354415894, -0.1179487481713295, 0.08319449424743652, -0.03226153552532196]} +{"t": 25.4493, "q": [-0.36514368653297424, -0.010502655059099197, 0.00847707036882639, 0.6116066575050354, -0.2825142741203308, 0.002891123527660966, -0.3644363582134247, 0.012322979047894478, -0.003441717242822051, 0.6389626264572144, -0.3327278196811676, -0.01225818507373333, 0.005504068918526173, 0.05317986011505127, -0.029095526784658432, -3.0482237339019775, 2.2474496364593506, 1.8422390222549438, 0.3054659068584442, -0.13464276492595673, -0.08988168835639954, 0.020001672208309174, 0.1390409767627716, -0.17701898515224457, -0.16511864960193634, 1.129788875579834, -0.1179966852068901, 0.08319449424743652, -0.032297488301992416]} +{"t": 25.4665, "q": [-0.3651181161403656, -0.010502655059099197, 0.00847707036882639, 0.6115981340408325, -0.282530814409256, 0.0029199200216680765, -0.3644448518753052, 0.012340023182332516, -0.0034952848218381405, 0.6389285326004028, -0.3327154517173767, -0.012265555560588837, 0.00542371766641736, 0.05302770063281059, -0.028973529115319252, -3.048379421234131, 2.2474377155303955, 1.8407530784606934, 0.3054179847240448, -0.13458284735679626, -0.08985771983861923, 0.020061593502759933, 0.1389451026916504, -0.1771627962589264, -0.16511864960193634, 1.129800796508789, -0.1179727166891098, 0.08318250626325607, -0.032297488301992416]} +{"t": 25.4834, "q": [-0.36510106921195984, -0.010502655059099197, 0.008544029667973518, 0.6115896105766296, -0.28251418471336365, 0.0029200254939496517, -0.36440226435661316, 0.012357067316770554, -0.0035354604478925467, 0.6389200091362, -0.3327030539512634, -0.012287446297705173, 0.0053701503202319145, 0.0529058538377285, -0.028852544724941254, -3.0484392642974854, 2.2474496364593506, 1.839806318283081, 0.3054659068584442, -0.13460682332515717, -0.08983375132083893, 0.020025640726089478, 0.13882526755332947, -0.1774624139070511, -0.16509468853473663, 1.1298367977142334, -0.1179727166891098, 0.08318250626325607, -0.03232145681977272]} +{"t": 25.5003, "q": [-0.3651181161403656, -0.010502655059099197, 0.008624380454421043, 0.6115896105766296, -0.28250986337661743, 0.0029561747796833515, -0.36440226435661316, 0.012357067316770554, -0.0035220684949308634, 0.638903021812439, -0.3327030539512634, -0.012287446297705173, 0.005343366414308548, 0.05282187834382057, -0.028727762401103973, -3.048643112182617, 2.2474257946014404, 1.8388954401016235, 0.30542996525764465, -0.13464276492595673, -0.08983375132083893, 0.020025640726089478, 0.13875335454940796, -0.17821741104125977, -0.16507071256637573, 1.1298367977142334, -0.11796072870492935, 0.08319449424743652, -0.032345425337553024]} +{"t": 25.517, "q": [-0.36510106921195984, -0.010511177591979504, 0.00866455677896738, 0.6116066575050354, -0.28249743580818176, 0.0029490329325199127, -0.3643937408924103, 0.01236558984965086, -0.0035220684949308634, 0.6388944983482361, -0.33270716667175293, -0.012294668704271317, 0.005329974461346865, 0.052760954946279526, -0.0286672692745924, -3.0488109588623047, 2.2474377155303955, 1.8381524085998535, 0.3054419457912445, -0.13460682332515717, -0.08983375132083893, 0.020025640726089478, 0.13872939348220825, -0.17892448604106903, -0.16504675149917603, 1.1299207210540771, -0.11798469722270966, 0.08319449424743652, -0.032345425337553024]} +{"t": 25.5337, "q": [-0.36505845189094543, -0.010502655059099197, 0.008718123659491539, 0.611564040184021, -0.28250569105148315, 0.002963422331959009, -0.3643340766429901, 0.01239115558564663, -0.003589028026908636, 0.6388944983482361, -0.33261629939079285, -0.012440735474228859, 0.005289798602461815, 0.05273020640015602, -0.028578288853168488, -3.048942804336548, 2.2474496364593506, 1.837361454963684, 0.30535805225372314, -0.13463078439235687, -0.08984573930501938, 0.02004960924386978, 0.13870541751384735, -0.17914019525051117, -0.16508270800113678, 1.1299686431884766, -0.11800866574048996, 0.08318250626325607, -0.032357409596443176]} +{"t": 25.5505, "q": [-0.36504992842674255, -0.01051970012485981, 0.008771691471338272, 0.6115981340408325, -0.2824891209602356, 0.002949067857116461, -0.3642999827861786, 0.012399678118526936, -0.0036024199798703194, 0.6388859748840332, -0.33261218667030334, -0.012448032386600971, 0.005249623209238052, 0.052661772817373276, -0.028532259166240692, -3.0489907264709473, 2.2474496364593506, 1.836618423461914, 0.3053460717201233, -0.13469070196151733, -0.08984573930501938, 0.020025640726089478, 0.13870541751384735, -0.17917615175247192, -0.16507071256637573, 1.1300045251846313, -0.11796072870492935, 0.08319449424743652, -0.03236939385533333]} +{"t": 25.5672, "q": [-0.3650328814983368, -0.010502655059099197, 0.008798475377261639, 0.6115810871124268, -0.2824932932853699, 0.002941820304840803, -0.3642999827861786, 0.012416722252964973, -0.003575636073946953, 0.6388774514198303, -0.33260393142700195, -0.012448088265955448, 0.005263015162199736, 0.052570536732673645, -0.02847089059650898, -3.049062490463257, 2.2474257946014404, 1.8359713554382324, 0.30528613924980164, -0.13465476036071777, -0.08984573930501938, 0.020025640726089478, 0.13863351941108704, -0.17927202582359314, -0.16511864960193634, 1.1300525665283203, -0.11793676018714905, 0.08318250626325607, -0.03239336237311363]} +{"t": 25.5839, "q": [-0.3650328814983368, -0.010511177591979504, 0.008798475377261639, 0.6115896105766296, -0.28250986337661743, 0.0029561747796833515, -0.3642914593219757, 0.012416722252964973, -0.0036158119328320026, 0.6388774514198303, -0.3326410949230194, -0.012396935373544693, 0.005249623209238052, 0.052426066249608994, -0.02837371826171875, -3.049062490463257, 2.2474496364593506, 1.8356118202209473, 0.30526217818260193, -0.13467872142791748, -0.08980978280305862, 0.02004960924386978, 0.13858558237552643, -0.17931996285915375, -0.16508270800113678, 1.1300644874572754, -0.11796072870492935, 0.08318250626325607, -0.03242931514978409]} +{"t": 25.6007, "q": [-0.3650243580341339, -0.010502655059099197, 0.008798475377261639, 0.6115896105766296, -0.28250986337661743, 0.0029561747796833515, -0.3642829358577728, 0.012425243854522705, -0.0036425956059247255, 0.6388604044914246, -0.3326493501663208, -0.012382341548800468, 0.005263015162199736, 0.052311867475509644, -0.02826763689517975, -3.049062490463257, 2.2474496364593506, 1.8353841304779053, 0.3052382171154022, -0.13469070196151733, -0.08982177078723907, 0.020025640726089478, 0.13856160640716553, -0.17934392392635345, -0.16504675149917603, 1.130184292793274, -0.11798469722270966, 0.08318250626325607, -0.03244129940867424]} +{"t": 25.6174, "q": [-0.3650328814983368, -0.010502655059099197, 0.008798475377261639, 0.611564040184021, -0.28250569105148315, 0.002963422331959009, -0.36426588892936707, 0.012433766387403011, -0.0036827712319791317, 0.6388433575630188, -0.3326658308506012, -0.01236767414957285, 0.005249623209238052, 0.05219747871160507, -0.028122397139668465, -3.049062490463257, 2.2474496364593506, 1.835192322731018, 0.30520227551460266, -0.13465476036071777, -0.08978581428527832, 0.02003762498497963, 0.13847772777080536, -0.17931996285915375, -0.16507071256637573, 1.1302682161331177, -0.11796072870492935, 0.08318250626325607, -0.03242931514978409]} +{"t": 25.6341, "q": [-0.3650328814983368, -0.010502655059099197, 0.008798475377261639, 0.6115896105766296, -0.28250569105148315, 0.002963422331959009, -0.3642488718032837, 0.012425243854522705, -0.003669379511848092, 0.6388177871704102, -0.33270716667175293, -0.012294668704271317, 0.005276407115161419, 0.0521060936152935, -0.028031660243868828, -3.049086570739746, 2.24747371673584, 1.8350365161895752, 0.3050704300403595, -0.13464276492595673, -0.08982177078723907, 0.02003762498497963, 0.1384177953004837, -0.179056316614151, -0.16507071256637573, 1.1304360628128052, -0.11796072870492935, 0.08317052572965622, -0.03242931514978409]} +{"t": 25.6508, "q": [-0.3650414049625397, -0.010502655059099197, 0.008758299984037876, 0.6115810871124268, -0.28250160813331604, 0.0029417856130748987, -0.3642573654651642, 0.012442288920283318, -0.003669379511848092, 0.6387751698493958, -0.33270716667175293, -0.012294668704271317, 0.005303190555423498, 0.05204526707530022, -0.02799074538052082, -3.0491225719451904, 2.24747371673584, 1.8348567485809326, 0.30457907915115356, -0.13465476036071777, -0.08977383375167847, 0.020025640726089478, 0.1383219212293625, -0.17864884436130524, -0.16508270800113678, 1.1307835578918457, -0.1179727166891098, 0.08318250626325607, -0.03244129940867424]} +{"t": 25.6676, "q": [-0.3650328814983368, -0.010494133457541466, 0.00873151607811451, 0.611564040184021, -0.2825181782245636, 0.0029561221599578857, -0.36423182487487793, 0.012442288920283318, -0.0036827712319791317, 0.6387325525283813, -0.33270716667175293, -0.012294668704271317, 0.005289798602461815, 0.052014853805303574, -0.027970287948846817, -3.0491464138031006, 2.24747371673584, 1.8347489833831787, 0.30395591259002686, -0.13466674089431763, -0.08977383375167847, 0.02003762498497963, 0.13817811012268066, -0.1784331351518631, -0.16502277553081512, 1.1315505504608154, -0.11796072870492935, 0.08318250626325607, -0.03244129940867424]} +{"t": 25.6844, "q": [-0.3650243580341339, -0.010502655059099197, 0.00873151607811451, 0.6115469932556152, -0.28250986337661743, 0.0029561747796833515, -0.3641892075538635, 0.012425243854522705, -0.003655987558886409, 0.6386899352073669, -0.3327071964740753, -0.012280149385333061, 0.005356758367270231, 0.051999740302562714, -0.027979638427495956, -3.049182415008545, 2.24747371673584, 1.8345931768417358, 0.30318892002105713, -0.13467872142791748, -0.08980978280305862, 0.020025640726089478, 0.138022318482399, -0.17826534807682037, -0.16503477096557617, 1.1327729225158691, -0.11796072870492935, 0.08318250626325607, -0.03245328366756439]} +{"t": 25.7011, "q": [-0.36499881744384766, -0.010511177591979504, 0.00873151607811451, 0.6115555167198181, -0.2825140058994293, 0.0029633694794028997, -0.36418068408966064, 0.012399678118526936, -0.0036425956059247255, 0.6386473178863525, -0.3327154517173767, -0.012265555560588837, 0.005329974461346865, 0.051999740302562714, -0.027979638427495956, -3.049182415008545, 2.2474496364593506, 1.834449291229248, 0.3023500144481659, -0.13466674089431763, -0.08980978280305862, 0.02003762498497963, 0.137794628739357, -0.17824138700962067, -0.16504675149917603, 1.1343908309936523, -0.11796072870492935, 0.08319449424743652, -0.03244129940867424]} +{"t": 25.7178, "q": [-0.36495620012283325, -0.010502655059099197, 0.008758299984037876, 0.6115555167198181, -0.2825140058994293, 0.0029633694794028997, -0.3641636371612549, 0.01239115558564663, -0.0036292036529630423, 0.6386473178863525, -0.3327195942401886, -0.012258258648216724, 0.0053701503202319145, 0.051999740302562714, -0.027979638427495956, -3.049182415008545, 2.24747371673584, 1.8343415260314941, 0.3013193607330322, -0.13466674089431763, -0.08977383375167847, 0.02003762498497963, 0.13743509352207184, -0.17822939157485962, -0.16507071256637573, 1.1363801956176758, -0.11796072870492935, 0.08318250626325607, -0.03245328366756439]} +{"t": 25.7346, "q": [-0.3649306297302246, -0.010511177591979504, 0.00873151607811451, 0.6115725636482239, -0.2825264632701874, 0.002970511559396982, -0.3641465902328491, 0.01239115558564663, -0.0036158119328320026, 0.6385791301727295, -0.3327154517173767, -0.012265555560588837, 0.005329974461346865, 0.052007343620061874, -0.027984751388430595, -3.049206256866455, 2.2474617958068848, 1.8342695236206055, 0.30006101727485657, -0.13466674089431763, -0.08976184576749802, 0.020013656467199326, 0.1372193843126297, -0.17825336754322052, -0.1651066690683365, 1.1381418704986572, -0.11793676018714905, 0.08319449424743652, -0.03245328366756439]} +{"t": 25.7513, "q": [-0.3649391531944275, -0.010511177591979504, 0.008744907565414906, 0.611564040184021, -0.28253063559532166, 0.002963246079161763, -0.36412954330444336, 0.01239115558564663, -0.0036158119328320026, 0.6385620832443237, -0.3327237069606781, -0.012250961735844612, 0.005356758367270231, 0.051999740302562714, -0.027979638427495956, -3.0492303371429443, 2.2474617958068848, 1.8341617584228516, 0.29856300354003906, -0.13471467792987823, -0.08977383375167847, 0.02004960924386978, 0.13697969913482666, -0.17827732861042023, -0.1651066690683365, 1.140394926071167, -0.11796072870492935, 0.08319449424743652, -0.03244129940867424]} +{"t": 25.768, "q": [-0.3649391531944275, -0.010511177591979504, 0.008771691471338272, 0.6115725636482239, -0.2825305759906769, 0.0029777060262858868, -0.36412954330444336, 0.01239115558564663, -0.0036158119328320026, 0.638528048992157, -0.3327154517173767, -0.012265555560588837, 0.005356758367270231, 0.05197697877883911, -0.0279740858823061, -3.0492541790008545, 2.247485637664795, 1.8340299129486084, 0.2974604666233063, -0.13470269739627838, -0.08984573930501938, 0.02004960924386978, 0.13646437227725983, -0.17826534807682037, -0.16504675149917603, 1.1434987783432007, -0.1179727166891098, 0.08318250626325607, -0.032501220703125]} +{"t": 25.7848, "q": [-0.36495620012283325, -0.010494133457541466, 0.00873151607811451, 0.611564040184021, -0.2825264632701874, 0.002970511559396982, -0.36412954330444336, 0.01236558984965086, -0.003655987558886409, 0.6385024785995483, -0.3328021764755249, -0.012126804329454899, 0.005356758367270231, 0.05197692662477493, -0.027964293956756592, -3.0492541790008545, 2.247485637664795, 1.8338741064071655, 0.2965017259120941, -0.13471467792987823, -0.08984573930501938, 0.020025640726089478, 0.13614079356193542, -0.17821741104125977, -0.16505873203277588, 1.145763874053955, -0.11798469722270966, 0.08319449424743652, -0.03248923644423485]} +{"t": 25.8017, "q": [-0.3649817705154419, -0.01051970012485981, 0.008624380454421043, 0.6115469932556152, -0.2825264632701874, 0.002970511559396982, -0.36412954330444336, 0.01236558984965086, -0.0036024199798703194, 0.6384342908859253, -0.3327897787094116, -0.012148695066571236, 0.005383542273193598, 0.05196171998977661, -0.027954066172242165, -3.0492663383483887, 2.247509717941284, 1.833766222000122, 0.29609423875808716, -0.13470269739627838, -0.08983375132083893, 0.02003762498497963, 0.13614079356193542, -0.1781574934720993, -0.16505873203277588, 1.14728581905365, -0.1179966852068901, 0.08321846276521683, -0.03248923644423485]} +{"t": 25.8186, "q": [-0.36496472358703613, -0.010528221726417542, 0.008610988967120647, 0.6115384697914124, -0.2825264632701874, 0.002970511559396982, -0.36412954330444336, 0.012357067316770554, -0.0036158119328320026, 0.6384342908859253, -0.3327939212322235, -0.012141398154199123, 0.005383542273193598, 0.05193895846605301, -0.027948511764407158, -3.0492422580718994, 2.247509717941284, 1.8335504531860352, 0.2960103750228882, -0.13471467792987823, -0.08984573930501938, 0.02003762498497963, 0.13612881302833557, -0.1780616194009781, -0.16509468853473663, 1.1484123468399048, -0.11796072870492935, 0.08319449424743652, -0.032477252185344696]} +{"t": 25.8353, "q": [-0.36499881744384766, -0.010502655059099197, 0.008584205061197281, 0.6115043759346008, -0.2825305163860321, 0.002992148045450449, -0.36412954330444336, 0.01236558984965086, -0.0036158119328320026, 0.6384257674217224, -0.3327815532684326, -0.012148769572377205, 0.0053701503202319145, 0.05194651335477829, -0.027943836525082588, -3.0491943359375, 2.247509717941284, 1.8333708047866821, 0.29599836468696594, -0.13470269739627838, -0.08984573930501938, 0.020025640726089478, 0.13611683249473572, -0.17807359993457794, -0.16509468853473663, 1.149574875831604, -0.11798469722270966, 0.08319449424743652, -0.032477252185344696]} +{"t": 25.852, "q": [-0.36495620012283325, -0.010502655059099197, 0.008570813573896885, 0.6114788055419922, -0.2825264632701874, 0.002970511559396982, -0.36413806676864624, 0.01236558984965086, -0.0036024199798703194, 0.6384172439575195, -0.3327856957912445, -0.012141472660005093, 0.005356758367270231, 0.05193891376256943, -0.0279387254267931, -3.049182415008545, 2.247485637664795, 1.833250880241394, 0.29602235555648804, -0.13466674089431763, -0.08983375132083893, 0.020025640726089478, 0.13611683249473572, -0.17804963886737823, -0.16508270800113678, 1.150545597076416, -0.11798469722270966, 0.08318250626325607, -0.03248923644423485]} +{"t": 25.8688, "q": [-0.36495620012283325, -0.010502655059099197, 0.008570813573896885, 0.6114788055419922, -0.2825264632701874, 0.002970511559396982, -0.3641210198402405, 0.01236558984965086, -0.00354885240085423, 0.638383150100708, -0.3327856659889221, -0.012155991978943348, 0.005356758367270231, 0.05193895846605301, -0.027948511764407158, -3.0491943359375, 2.247485637664795, 1.8331550359725952, 0.29602235555648804, -0.13466674089431763, -0.08982177078723907, 0.020025640726089478, 0.13609285652637482, -0.17804963886737823, -0.16502277553081512, 1.1515402793884277, -0.11798469722270966, 0.08319449424743652, -0.032477252185344696]} +{"t": 25.8855, "q": [-0.36496472358703613, -0.010502655059099197, 0.008570813573896885, 0.6114702820777893, -0.2825222611427307, 0.002977758878841996, -0.3641210198402405, 0.01236558984965086, -0.003562244353815913, 0.638383150100708, -0.3327856957912445, -0.012141472660005093, 0.005383542273193598, 0.05194651335477829, -0.027943836525082588, -3.0491943359375, 2.24747371673584, 1.8330591917037964, 0.2960822582244873, -0.13465476036071777, -0.08979780226945877, 0.02004960924386978, 0.13600897789001465, -0.1780616194009781, -0.16509468853473663, 1.1524989604949951, -0.11798469722270966, 0.08318250626325607, -0.03248923644423485]} +{"t": 25.9024, "q": [-0.3649306297302246, -0.010502655059099197, 0.008570813573896885, 0.6114702820777893, -0.2825264632701874, 0.002970511559396982, -0.3641210198402405, 0.012374111451208591, -0.0036024199798703194, 0.638383150100708, -0.3327815532684326, -0.012148769572377205, 0.005356758367270231, 0.05194651335477829, -0.027943836525082588, -3.049182415008545, 2.247485637664795, 1.8329752683639526, 0.29609423875808716, -0.13470269739627838, -0.08978581428527832, 0.02004960924386978, 0.13591310381889343, -0.17804963886737823, -0.16514262557029724, 1.1534696817398071, -0.1179727166891098, 0.08318250626325607, -0.032513201236724854]} +{"t": 25.9191, "q": [-0.36496472358703613, -0.010502655059099197, 0.008570813573896885, 0.6114532351493835, -0.2825222611427307, 0.002977758878841996, -0.3641210198402405, 0.012357067316770554, -0.0036024199798703194, 0.6383575797080994, -0.3327856957912445, -0.012141472660005093, 0.005343366414308548, 0.05194651335477829, -0.027943836525082588, -3.049182415008545, 2.247485637664795, 1.8328434228897095, 0.29607027769088745, -0.13467872142791748, -0.08980978280305862, 0.02004960924386978, 0.13579325377941132, -0.17804963886737823, -0.16509468853473663, 1.154656171798706, -0.11796072870492935, 0.08318250626325607, -0.03253716975450516]} +{"t": 25.9358, "q": [-0.36495620012283325, -0.010502655059099197, 0.008570813573896885, 0.6114788055419922, -0.28253889083862305, 0.0029776354786008596, -0.3641124963760376, 0.012348544783890247, -0.003562244353815913, 0.6382979154586792, -0.3327815532684326, -0.012148769572377205, 0.005343366414308548, 0.05193895846605301, -0.027948511764407158, -3.049206256866455, 2.24749755859375, 1.8327715396881104, 0.29604631662368774, -0.13467872142791748, -0.08984573930501938, 0.02003762498497963, 0.13561348617076874, -0.1780376434326172, -0.16508270800113678, 1.1558665037155151, -0.11796072870492935, 0.08318250626325607, -0.03253716975450516]} +{"t": 25.9526, "q": [-0.3649306297302246, -0.010502655059099197, 0.008570813573896885, 0.6114617586135864, -0.2825264632701874, 0.002970511559396982, -0.36409544944763184, 0.01236558984965086, -0.00354885240085423, 0.6382893919944763, -0.3327815532684326, -0.012148769572377205, 0.005356758367270231, 0.05193895846605301, -0.027948511764407158, -3.0491943359375, 2.247485637664795, 1.8326756954193115, 0.2960822582244873, -0.13471467792987823, -0.08985771983861923, 0.020025640726089478, 0.13552960753440857, -0.17802566289901733, -0.16507071256637573, 1.1572926044464111, -0.1179247796535492, 0.08318250626325607, -0.032513201236724854]} +{"t": 25.9693, "q": [-0.3648965358734131, -0.010494133457541466, 0.008597597479820251, 0.6114532351493835, -0.2825264036655426, 0.0029849535785615444, -0.3640613555908203, 0.012314456515014172, -0.0035220684949308634, 0.6382723450660706, -0.3327856659889221, -0.012155991978943348, 0.005356758367270231, 0.05193895846605301, -0.027948511764407158, -3.0491943359375, 2.24747371673584, 1.8326038122177124, 0.29614219069480896, -0.13469070196151733, -0.08983375132083893, 0.02004960924386978, 0.13550563156604767, -0.1780376434326172, -0.16504675149917603, 1.1586109399795532, -0.1179487481713295, 0.08318250626325607, -0.03253716975450516]} +{"t": 25.986, "q": [-0.3649306297302246, -0.010502655059099197, 0.008610988967120647, 0.6114788055419922, -0.2825264036655426, 0.0029849535785615444, -0.3640272915363312, 0.01233150064945221, -0.0035220684949308634, 0.6382126808166504, -0.3327815532684326, -0.012148769572377205, 0.0053701503202319145, 0.05194651335477829, -0.027943836525082588, -3.049206256866455, 2.24747371673584, 1.8325318098068237, 0.29616615176200867, -0.13473863899707794, -0.08980978280305862, 0.02003762498497963, 0.13556554913520813, -0.17802566289901733, -0.1651066690683365, 1.159773349761963, -0.1179487481713295, 0.08319449424743652, -0.03253716975450516]} +{"t": 26.0028, "q": [-0.36492210626602173, -0.010528221726417542, 0.008584205061197281, 0.6114447116851807, -0.2825263440608978, 0.0029993955977261066, -0.36399319767951965, 0.012280368246138096, -0.003468500915914774, 0.6381445527076721, -0.332789808511734, -0.01213417574763298, 0.005356758367270231, 0.05193135514855385, -0.027943400666117668, -3.049182415008545, 2.247485637664795, 1.8323161602020264, 0.2961781322956085, -0.13470269739627838, -0.08978581428527832, 0.020025640726089478, 0.13558952510356903, -0.1780376434326172, -0.1651066690683365, 1.1612474918365479, -0.11796072870492935, 0.08318250626325607, -0.03253716975450516]} +{"t": 26.0195, "q": [-0.36487096548080444, -0.010502655059099197, 0.008584205061197281, 0.6114532351493835, -0.2825264036655426, 0.0029849535785615444, -0.363967627286911, 0.012297412380576134, -0.003481892868876457, 0.6381275057792664, -0.3327856957912445, -0.012141472660005093, 0.005356758367270231, 0.05192380025982857, -0.027948075905442238, -3.04917049407959, 2.24749755859375, 1.832208275794983, 0.29614219069480896, -0.1347266584634781, -0.08982177078723907, 0.02003762498497963, 0.13552960753440857, -0.17802566289901733, -0.1651066690683365, 1.1632847785949707, -0.11798469722270966, 0.08318250626325607, -0.03253716975450516]} +{"t": 26.0364, "q": [-0.36491358280181885, -0.010502655059099197, 0.008597597479820251, 0.6114447116851807, -0.2825305163860321, 0.002992148045450449, -0.363967627286911, 0.012280368246138096, -0.0034952848218381405, 0.6380763649940491, -0.3327856957912445, -0.012141472660005093, 0.00542371766641736, 0.05193140357732773, -0.027953187003731728, -3.049182415008545, 2.247485637664795, 1.832112431526184, 0.29616615176200867, -0.13471467792987823, -0.08980978280305862, 0.020025640726089478, 0.13550563156604767, -0.17802566289901733, -0.16509468853473663, 1.164974570274353, -0.11796072870492935, 0.08318250626325607, -0.032525185495615005]} +{"t": 26.0531, "q": [-0.3648965358734131, -0.010502655059099197, 0.008544029667973518, 0.6114532351493835, -0.2825305759906769, 0.0029777060262858868, -0.3639250099658966, 0.012271846644580364, -0.003468500915914774, 0.6380167007446289, -0.3327857255935669, -0.012126934714615345, 0.005450501572340727, 0.05192375183105469, -0.02793828397989273, -3.0491583347320557, 2.247485637664795, 1.8319566249847412, 0.2961541712284088, -0.13470269739627838, -0.08982177078723907, 0.02004960924386978, 0.13561348617076874, -0.1780376434326172, -0.1651066690683365, 1.1659932136535645, -0.11793676018714905, 0.08318250626325607, -0.03254915401339531]} +{"t": 26.0698, "q": [-0.3648880124092102, -0.010502655059099197, 0.008544029667973518, 0.6114532351493835, -0.28253889083862305, 0.0029776354786008596, -0.36390796303749084, 0.012263324111700058, -0.0034551091957837343, 0.6379911303520203, -0.3327815532684326, -0.012148769572377205, 0.00542371766641736, 0.05193135514855385, -0.027943400666117668, -3.0491583347320557, 2.247485637664795, 1.8317768573760986, 0.29616615176200867, -0.13471467792987823, -0.08984573930501938, 0.02003762498497963, 0.1356494426727295, -0.17802566289901733, -0.16509468853473663, 1.166844129562378, -0.1179487481713295, 0.08318250626325607, -0.032525185495615005]} +{"t": 26.0866, "q": [-0.36490505933761597, -0.010502655059099197, 0.008544029667973518, 0.6114361882209778, -0.28253471851348877, 0.002984900726005435, -0.36390796303749084, 0.012254801578819752, -0.0034283252898603678, 0.6379655599594116, -0.332789808511734, -0.01213417574763298, 0.005396933760493994, 0.05192375183105469, -0.02793828397989273, -3.04917049407959, 2.247485637664795, 1.8316810131072998, 0.2961781322956085, -0.1347745954990387, -0.08979780226945877, 0.02003762498497963, 0.13573333621025085, -0.17804963886737823, -0.1651066690683365, 1.1670238971710205, -0.11793676018714905, 0.08320647478103638, -0.03253716975450516]} +{"t": 26.1033, "q": [-0.36492210626602173, -0.010502655059099197, 0.008517245762050152, 0.6114276647567749, -0.28253886103630066, 0.0029921133536845446, -0.36389943957328796, 0.012254801578819752, -0.0034283252898603678, 0.6379144191741943, -0.332781583070755, -0.012134231626987457, 0.0053701503202319145, 0.05190863832831383, -0.02794763445854187, -3.0491464138031006, 2.24749755859375, 1.8315610885620117, 0.29621410369873047, -0.13471467792987823, -0.08980978280305862, 0.02003762498497963, 0.13575729727745056, -0.17807359993457794, -0.1651066690683365, 1.167083740234375, -0.1179487481713295, 0.08319449424743652, -0.03253716975450516]} +{"t": 26.12, "q": [-0.3649306297302246, -0.010502655059099197, 0.008490461856126785, 0.611419141292572, -0.28253889083862305, 0.0029776354786008596, -0.36389943957328796, 0.012254801578819752, -0.0033747577108442783, 0.6378718018531799, -0.33281049132347107, -0.012097672559320927, 0.005356758367270231, 0.05193135514855385, -0.027943400666117668, -3.0491344928741455, 2.24749755859375, 1.8314772844314575, 0.2961901128292084, -0.13471467792987823, -0.08980978280305862, 0.02003762498497963, 0.13570936024188995, -0.17807359993457794, -0.16507071256637573, 1.1671197414398193, -0.1179487481713295, 0.08318250626325607, -0.03256113827228546]} +{"t": 26.1368, "q": [-0.3649306297302246, -0.010502655059099197, 0.00847707036882639, 0.6113936305046082, -0.2825305759906769, 0.0029777060262858868, -0.3638823926448822, 0.012263324111700058, -0.0034015413839370012, 0.6378291845321655, -0.33281049132347107, -0.012083134613931179, 0.005356758367270231, 0.05191619321703911, -0.0279429592192173, -3.0491464138031006, 2.247485637664795, 1.8313933610916138, 0.2962021231651306, -0.13470269739627838, -0.08982177078723907, 0.02003762498497963, 0.1356494426727295, -0.17807359993457794, -0.16509468853473663, 1.1671197414398193, -0.11798469722270966, 0.08318250626325607, -0.03254915401339531]} +{"t": 26.1535, "q": [-0.36490505933761597, -0.010494133457541466, 0.00847707036882639, 0.6113765835762024, -0.28254303336143494, 0.0029848478734493256, -0.36389943957328796, 0.012254801578819752, -0.0034015413839370012, 0.637795090675354, -0.33281460404396057, -0.012090375646948814, 0.0053701503202319145, 0.05193895846605301, -0.027948511764407158, -3.049182415008545, 2.247485637664795, 1.8313933610916138, 0.2962021231651306, -0.13471467792987823, -0.08982177078723907, 0.02003762498497963, 0.13558952510356903, -0.1780616194009781, -0.16511864960193634, 1.1670957803726196, -0.1179487481713295, 0.08315853774547577, -0.03254915401339531]} +{"t": 26.1703, "q": [-0.3649306297302246, -0.010511177591979504, 0.008503853343427181, 0.611333966255188, -0.28254303336143494, 0.0029848478734493256, -0.3638823926448822, 0.01224627997726202, -0.0033881496638059616, 0.6377354860305786, -0.33281460404396057, -0.012090375646948814, 0.005383542273193598, 0.05191624537110329, -0.02795274928212166, -3.04917049407959, 2.24747371673584, 1.8313933610916138, 0.2962380647659302, -0.1347266584634781, -0.08982177078723907, 0.020025640726089478, 0.13556554913520813, -0.17804963886737823, -0.1651066690683365, 1.167083740234375, -0.11796072870492935, 0.08318250626325607, -0.03254915401339531]} +{"t": 26.187, "q": [-0.3649306297302246, -0.010502655059099197, 0.008463677950203419, 0.6113254427909851, -0.28253886103630066, 0.0029921133536845446, -0.3638738691806793, 0.012229235842823982, -0.0034149333368986845, 0.6377013921737671, -0.33281463384628296, -0.012075837701559067, 0.005410325713455677, 0.05193895846605301, -0.027948511764407158, -3.04917049407959, 2.24747371673584, 1.8313813209533691, 0.2962260842323303, -0.13471467792987823, -0.08982177078723907, 0.02003762498497963, 0.13555356860160828, -0.17804963886737823, -0.16508270800113678, 1.167083740234375, -0.1179487481713295, 0.08318250626325607, -0.03254915401339531]} +{"t": 26.2037, "q": [-0.3648880124092102, -0.010511177591979504, 0.00847707036882639, 0.6112743020057678, -0.282555490732193, 0.002991989953443408, -0.36385685205459595, 0.012229235842823982, -0.0033881496638059616, 0.6376417279243469, -0.33282285928726196, -0.01207578182220459, 0.005356758367270231, 0.05191624537110329, -0.02795274928212166, -3.0491583347320557, 2.247485637664795, 1.8312615156173706, 0.2961781322956085, -0.13471467792987823, -0.08980978280305862, 0.02003762498497963, 0.13556554913520813, -0.1780376434326172, -0.1651066690683365, 1.1671197414398193, -0.11793676018714905, 0.08318250626325607, -0.03253716975450516]} +{"t": 26.2205, "q": [-0.36492210626602173, -0.010502655059099197, 0.008436894044280052, 0.6112402081489563, -0.28255128860473633, 0.002999237272888422, -0.3638312816619873, 0.012237757444381714, -0.0033747577108442783, 0.6375394463539124, -0.33282285928726196, -0.01207578182220459, 0.005410325713455677, 0.05191624537110329, -0.02795274928212166, -3.0491344928741455, 2.247485637664795, 1.8312015533447266, 0.2962260842323303, -0.13471467792987823, -0.08980978280305862, 0.02003762498497963, 0.13558952510356903, -0.17804963886737823, -0.16509468853473663, 1.1670957803726196, -0.11796072870492935, 0.08318250626325607, -0.03256113827228546]} +{"t": 26.2372, "q": [-0.3649306297302246, -0.010502655059099197, 0.00839671865105629, 0.6112402081489563, -0.2825678586959839, 0.003013573819771409, -0.3638227581977844, 0.012229235842823982, -0.0033747577108442783, 0.6374286413192749, -0.33281874656677246, -0.012083078734576702, 0.005396933760493994, 0.05192384496331215, -0.027957862243056297, -3.049098491668701, 2.24747371673584, 1.831141710281372, 0.2961781322956085, -0.1347266584634781, -0.08982177078723907, 0.020025640726089478, 0.13561348617076874, -0.17804963886737823, -0.16509468853473663, 1.1671556234359741, -0.11796072870492935, 0.08318250626325607, -0.03256113827228546]} +{"t": 26.254, "q": [-0.3648965358734131, -0.010511177591979504, 0.008343150839209557, 0.6112231612205505, -0.2825636863708496, 0.003020821139216423, -0.3637545704841614, 0.012220713309943676, -0.0033747577108442783, 0.6373775601387024, -0.33281877636909485, -0.012068540789186954, 0.005410325713455677, 0.05192375183105469, -0.02793828397989273, -3.049098491668701, 2.24749755859375, 1.8310937881469727, 0.2962380647659302, -0.13478657603263855, -0.08978581428527832, 0.02003762498497963, 0.13561348617076874, -0.1780376434326172, -0.16514262557029724, 1.1671316623687744, -0.1179727166891098, 0.08318250626325607, -0.03254915401339531]} +{"t": 26.2708, "q": [-0.3648965358734131, -0.01051970012485981, 0.008369934745132923, 0.6111975908279419, -0.2825596034526825, 0.0029991844203323126, -0.3637545704841614, 0.012203669175505638, -0.0034015413839370012, 0.6373775601387024, -0.33281874656677246, -0.012083078734576702, 0.005396933760493994, 0.05191624537110329, -0.02795274928212166, -3.0491225719451904, 2.247485637664795, 1.831069827079773, 0.29627400636672974, -0.13471467792987823, -0.08980978280305862, 0.02003762498497963, 0.13562548160552979, -0.1780376434326172, -0.16504675149917603, 1.1671676635742188, -0.1179487481713295, 0.08317052572965622, -0.03257312253117561]} +{"t": 26.2876, "q": [-0.3648794889450073, -0.010502655059099197, 0.00839671865105629, 0.6111379265785217, -0.2825596034526825, 0.0029991844203323126, -0.3637460470199585, 0.0121866250410676, -0.0034015413839370012, 0.637334942817688, -0.33281877636909485, -0.012068540789186954, 0.0053701503202319145, 0.05190863832831383, -0.02794763445854187, -3.0491464138031006, 2.247485637664795, 1.8310338258743286, 0.2962380647659302, -0.13471467792987823, -0.08979780226945877, 0.02003762498497963, 0.13561348617076874, -0.17801368236541748, -0.16509468853473663, 1.1671556234359741, -0.11793676018714905, 0.08318250626325607, -0.03257312253117561]} +{"t": 26.3043, "q": [-0.3648794889450073, -0.010511177591979504, 0.00839671865105629, 0.611120879650116, -0.2825596034526825, 0.0029991844203323126, -0.3637375235557556, 0.012229235842823982, -0.0034015413839370012, 0.6372838020324707, -0.33282285928726196, -0.01207578182220459, 0.005410325713455677, 0.05193895846605301, -0.027948511764407158, -3.0491344928741455, 2.24747371673584, 1.8310338258743286, 0.29621410369873047, -0.13470269739627838, -0.08980978280305862, 0.020061593502759933, 0.13560150563716888, -0.17795376479625702, -0.16508270800113678, 1.1671556234359741, -0.11793676018714905, 0.08317052572965622, -0.032585106790065765]} +{"t": 26.321, "q": [-0.3648965358734131, -0.01051970012485981, 0.008383326232433319, 0.6110782623291016, -0.2825678586959839, 0.003013573819771409, -0.3637460470199585, 0.012203669175505638, -0.0034015413839370012, 0.6371985673904419, -0.33281874656677246, -0.012083078734576702, 0.005383542273193598, 0.05190863832831383, -0.02794763445854187, -3.0491464138031006, 2.247485637664795, 1.8309978246688843, 0.2962380647659302, -0.13470269739627838, -0.08979780226945877, 0.02003762498497963, 0.13558952510356903, -0.17786987125873566, -0.16508270800113678, 1.167203664779663, -0.1179487481713295, 0.08315853774547577, -0.03257312253117561]} +{"t": 26.3378, "q": [-0.3648965358734131, -0.010511177591979504, 0.008423502556979656, 0.6110612154006958, -0.2825678586959839, 0.003013573819771409, -0.3637460470199585, 0.012229235842823982, -0.003334582084789872, 0.6371644735336304, -0.33281877636909485, -0.012068540789186954, 0.005329974461346865, 0.05190863832831383, -0.02794763445854187, -3.0491464138031006, 2.247485637664795, 1.8309859037399292, 0.29621410369873047, -0.13471467792987823, -0.08980978280305862, 0.020025640726089478, 0.13562548160552979, -0.1778339147567749, -0.16509468853473663, 1.167203664779663, -0.1179487481713295, 0.08317052572965622, -0.03256113827228546]} +{"t": 26.3545, "q": [-0.3648794889450073, -0.01051970012485981, 0.008410110138356686, 0.6110357046127319, -0.2825678586959839, 0.003013573819771409, -0.3637375235557556, 0.012220713309943676, -0.0033747577108442783, 0.6371474266052246, -0.33281877636909485, -0.012068540789186954, 0.005329974461346865, 0.05192384496331215, -0.027957862243056297, -3.0491583347320557, 2.247485637664795, 1.831009864807129, 0.29621410369873047, -0.13470269739627838, -0.08980978280305862, 0.02003762498497963, 0.13562548160552979, -0.17779795825481415, -0.16505873203277588, 1.1672276258468628, -0.11793676018714905, 0.08319449424743652, -0.03257312253117561]} +{"t": 26.3712, "q": [-0.3648794889450073, -0.010511177591979504, 0.008410110138356686, 0.6110101342201233, -0.2825596034526825, 0.0029991844203323126, -0.363711953163147, 0.012212191708385944, -0.0034149333368986845, 0.6371303796768188, -0.33281874656677246, -0.012083078734576702, 0.005356758367270231, 0.05191624537110329, -0.02795274928212166, -3.04917049407959, 2.247485637664795, 1.8309738636016846, 0.29621410369873047, -0.13471467792987823, -0.08980978280305862, 0.02003762498497963, 0.13562548160552979, -0.1778099536895752, -0.16508270800113678, 1.1672635078430176, -0.11793676018714905, 0.08318250626325607, -0.032585106790065765]} +{"t": 26.3879, "q": [-0.36487096548080444, -0.01051970012485981, 0.00839671865105629, 0.6110101342201233, -0.2825678586959839, 0.003013573819771409, -0.36368638277053833, 0.012212191708385944, -0.0033747577108442783, 0.6371133327484131, -0.33281877636909485, -0.012068540789186954, 0.005303190555423498, 0.05191624537110329, -0.02795274928212166, -3.049182415008545, 2.247485637664795, 1.8309619426727295, 0.2961901128292084, -0.1347266584634781, -0.08980978280305862, 0.02003762498497963, 0.1356494426727295, -0.17779795825481415, -0.16507071256637573, 1.1672635078430176, -0.11796072870492935, 0.08318250626325607, -0.03257312253117561]} +{"t": 26.4048, "q": [-0.3648794889450073, -0.010511177591979504, 0.008369934745132923, 0.6109760403633118, -0.2825678586959839, 0.003013573819771409, -0.36363527178764343, 0.012203669175505638, -0.0034015413839370012, 0.6370962858200073, -0.33281460404396057, -0.012090375646948814, 0.005329974461346865, 0.05192375183105469, -0.02793828397989273, -3.049182415008545, 2.24749755859375, 1.8309619426727295, 0.29621410369873047, -0.13471467792987823, -0.08982177078723907, 0.02003762498497963, 0.13566142320632935, -0.1777859777212143, -0.1651066690683365, 1.167311429977417, -0.11796072870492935, 0.08318250626325607, -0.03257312253117561]} +{"t": 26.4215, "q": [-0.3648368716239929, -0.010502655059099197, 0.008369934745132923, 0.6109675168991089, -0.2825596034526825, 0.0029991844203323126, -0.36361822485923767, 0.012212191708385944, -0.0033747577108442783, 0.6370707154273987, -0.33281460404396057, -0.012090375646948814, 0.005289798602461815, 0.05190863832831383, -0.02794763445854187, -3.049182415008545, 2.24747371673584, 1.8309499025344849, 0.2962021231651306, -0.13473863899707794, -0.08982177078723907, 0.020025640726089478, 0.13570936024188995, -0.17772606015205383, -0.16511864960193634, 1.1673234701156616, -0.1179487481713295, 0.08318250626325607, -0.032585106790065765]} +{"t": 26.4383, "q": [-0.3647942841053009, -0.010502655059099197, 0.008369934745132923, 0.6109248995780945, -0.2825554311275482, 0.0030064319726079702, -0.3634307384490967, 0.012229235842823982, -0.0033747577108442783, 0.6370280981063843, -0.33279818296432495, -0.01207598578184843, 0.005276407115161419, 0.05192375183105469, -0.02793828397989273, -3.0491583347320557, 2.247485637664795, 1.8309499025344849, 0.2962021231651306, -0.1347266584634781, -0.08980978280305862, 0.020025640726089478, 0.13570936024188995, -0.17769010365009308, -0.16511864960193634, 1.167359471321106, -0.11790081113576889, 0.08318250626325607, -0.032585106790065765]} +{"t": 26.455, "q": [-0.36476871371269226, -0.010494133457541466, 0.008369934745132923, 0.6109248995780945, -0.2825596034526825, 0.0029991844203323126, -0.36340516805648804, 0.012212191708385944, -0.0033747577108442783, 0.6369770169258118, -0.3328022360801697, -0.012097728438675404, 0.005303190555423498, 0.05192375183105469, -0.02793828397989273, -3.0491583347320557, 2.247485637664795, 1.8309379816055298, 0.2961781322956085, -0.13471467792987823, -0.08983375132083893, 0.02003762498497963, 0.13570936024188995, -0.1776062250137329, -0.16501079499721527, 1.167359471321106, -0.1179487481713295, 0.08315853774547577, -0.03257312253117561]} +{"t": 26.4717, "q": [-0.36472609639167786, -0.010502655059099197, 0.008369934745132923, 0.6109163761138916, -0.2825637459754944, 0.003006379120051861, -0.36331140995025635, 0.012237757444381714, -0.0034015413839370012, 0.6369429230690002, -0.33280640840530396, -0.012075912207365036, 0.005329974461346865, 0.051908545196056366, -0.027928056195378304, -3.0491583347320557, 2.247485637664795, 1.8309379816055298, 0.2961781322956085, -0.134750634431839, -0.08982177078723907, 0.02003762498497963, 0.13570936024188995, -0.17754629254341125, -0.16509468853473663, 1.167371392250061, -0.11793676018714905, 0.08319449424743652, -0.03259709104895592]} +{"t": 26.4886, "q": [-0.3647090494632721, -0.010502655059099197, 0.008343150839209557, 0.6109163761138916, -0.2825554311275482, 0.0030064319726079702, -0.36326029896736145, 0.012229235842823982, -0.0034015413839370012, 0.6369258761405945, -0.33280640840530396, -0.012075912207365036, 0.005276407115161419, 0.051900941878557205, -0.027922943234443665, -3.049182415008545, 2.247485637664795, 1.8309019804000854, 0.29616615176200867, -0.13469070196151733, -0.08983375132083893, 0.02003762498497963, 0.13570936024188995, -0.17749835550785065, -0.16508270800113678, 1.1673834323883057, -0.1179247796535492, 0.08317052572965622, -0.032585106790065765]} +{"t": 26.5055, "q": [-0.3646579086780548, -0.01051970012485981, 0.008343150839209557, 0.610890805721283, -0.2825554311275482, 0.0030064319726079702, -0.36311542987823486, 0.012237757444381714, -0.0034015413839370012, 0.6368747353553772, -0.33279404044151306, -0.012083282694220543, 0.005289798602461815, 0.051885779947042465, -0.027922501787543297, -3.049206256866455, 2.247509717941284, 1.8308900594711304, 0.2961541712284088, -0.13469070196151733, -0.08982177078723907, 0.02003762498497963, 0.1356494426727295, -0.17743843793869019, -0.16508270800113678, 1.1673834323883057, -0.11793676018714905, 0.08318250626325607, -0.03259709104895592]} +{"t": 26.5222, "q": [-0.3646664321422577, -0.010502655059099197, 0.008343150839209557, 0.6108822822570801, -0.282555490732193, 0.002991989953443408, -0.362962007522583, 0.01224627997726202, -0.0034015413839370012, 0.6368065476417542, -0.33280640840530396, -0.012075912207365036, 0.005276407115161419, 0.0518781803548336, -0.027917388826608658, -3.04917049407959, 2.247485637664795, 1.8308660984039307, 0.29614219069480896, -0.13473863899707794, -0.08982177078723907, 0.02003762498497963, 0.13566142320632935, -0.17734256386756897, -0.1651066690683365, 1.1673953533172607, -0.11793676018714905, 0.08318250626325607, -0.032585106790065765]} +{"t": 26.539, "q": [-0.36468347907066345, -0.010502655059099197, 0.00832975935190916, 0.6108567118644714, -0.2825678586959839, 0.003013573819771409, -0.3628597557544708, 0.01224627997726202, -0.0034283252898603678, 0.6367298364639282, -0.33280640840530396, -0.012075912207365036, 0.005263015162199736, 0.051885735243558884, -0.027912713587284088, -3.049182415008545, 2.247509717941284, 1.8308420181274414, 0.29611822962760925, -0.134750634431839, -0.08979780226945877, 0.02003762498497963, 0.13568539917469025, -0.1772347092628479, -0.16509468853473663, 1.1674672365188599, -0.11793676018714905, 0.08321846276521683, -0.032585106790065765]} +{"t": 26.556, "q": [-0.3646579086780548, -0.010502655059099197, 0.008302975445985794, 0.6108652353286743, -0.28257614374160767, 0.0030279632192105055, -0.3626466989517212, 0.012237757444381714, -0.0034149333368986845, 0.6366786956787109, -0.33280232548713684, -0.012068688869476318, 0.005316582508385181, 0.05187062546610832, -0.027922064065933228, -3.049182415008545, 2.247509717941284, 1.8308300971984863, 0.2960822582244873, -0.13476261496543884, -0.08983375132083893, 0.020025640726089478, 0.13570936024188995, -0.17707891762256622, -0.16511864960193634, 1.1675032377243042, -0.11793676018714905, 0.08315853774547577, -0.032585106790065765]} +{"t": 26.5727, "q": [-0.3646579086780548, -0.010494133457541466, 0.008262800052762032, 0.6108567118644714, -0.2825678586959839, 0.003013573819771409, -0.3625018298625946, 0.012229235842823982, -0.0034283252898603678, 0.636584997177124, -0.33281058073043823, -0.012054095044732094, 0.005289798602461815, 0.05184020847082138, -0.027901608496904373, -3.0491583347320557, 2.247509717941284, 1.830782175064087, 0.29609423875808716, -0.134750634431839, -0.08982177078723907, 0.020025640726089478, 0.13570936024188995, -0.1769351065158844, -0.1651066690683365, 1.167527198791504, -0.11796072870492935, 0.08318250626325607, -0.032585106790065765]} +{"t": 26.5895, "q": [-0.36463233828544617, -0.010485611855983734, 0.008249407634139061, 0.6108226180076599, -0.2825844883918762, 0.003013468347489834, -0.36243364214897156, 0.012220713309943676, -0.0034015413839370012, 0.636516809463501, -0.33281058073043823, -0.012054095044732094, 0.005289798602461815, 0.05183260515332222, -0.027896491810679436, -3.04917049407959, 2.247509717941284, 1.8307461738586426, 0.2961062490940094, -0.1347745954990387, -0.08984573930501938, 0.02004960924386978, 0.13570936024188995, -0.17673136293888092, -0.16509468853473663, 1.167539119720459, -0.1179487481713295, 0.08318250626325607, -0.032585106790065765]} +{"t": 26.6063, "q": [-0.3646664321422577, -0.010502655059099197, 0.008236016146838665, 0.6107800006866455, -0.2825886309146881, 0.0030206809751689434, -0.362356960773468, 0.012220713309943676, -0.0034015413839370012, 0.6364315748214722, -0.33281058073043823, -0.012054095044732094, 0.005316582508385181, 0.05174906179308891, -0.02785981446504593, -3.0491583347320557, 2.2475335597991943, 1.830686330795288, 0.29609423875808716, -0.134750634431839, -0.08983375132083893, 0.02003762498497963, 0.1357453167438507, -0.1765875518321991, -0.16511864960193634, 1.167659044265747, -0.11793676018714905, 0.08318250626325607, -0.032585106790065765]} +{"t": 26.623, "q": [-0.36468347907066345, -0.010485611855983734, 0.008195839822292328, 0.6107714772224426, -0.2825968563556671, 0.0030495121609419584, -0.36225467920303345, 0.012203669175505638, -0.0034015413839370012, 0.6363633871078491, -0.3328229784965515, -0.01203218661248684, 0.005329974461346865, 0.051673173904418945, -0.02783804200589657, -3.0491464138031006, 2.2475335597991943, 1.8306503295898438, 0.2961062490940094, -0.13471467792987823, -0.08982177078723907, 0.02003762498497963, 0.13570936024188995, -0.17645573616027832, -0.16504675149917603, 1.1677188873291016, -0.11796072870492935, 0.08315853774547577, -0.032585106790065765]} +{"t": 26.6398, "q": [-0.36467495560646057, -0.010494133457541466, 0.008115489035844803, 0.6107629537582397, -0.28259265422821045, 0.003056759713217616, -0.3621950149536133, 0.012195147573947906, -0.0033747577108442783, 0.6362441182136536, -0.3328188359737396, -0.01203950121998787, 0.005329974461346865, 0.051589485257864, -0.027771996334195137, -3.0491104125976562, 2.2475335597991943, 1.8306382894515991, 0.29611822962760925, -0.1347745954990387, -0.08982177078723907, 0.02003762498497963, 0.13573333621025085, -0.17632390558719635, -0.16509468853473663, 1.1677188873291016, -0.1179487481713295, 0.08318250626325607, -0.03262105956673622]} +{"t": 26.6567, "q": [-0.3646664321422577, -0.010502655059099197, 0.008048529736697674, 0.6107373833656311, -0.28262168169021606, 0.0030782560352236032, -0.3621353805065155, 0.012178102508187294, -0.0033747577108442783, 0.6361759305000305, -0.33286014199256897, -0.011966496706008911, 0.005329974461346865, 0.05142999812960625, -0.027703752741217613, -3.0491225719451904, 2.2475335597991943, 1.8305903673171997, 0.29611822962760925, -0.1348225325345993, -0.08982177078723907, 0.020025640726089478, 0.13573333621025085, -0.17622803151607513, -0.16504675149917603, 1.167754888534546, -0.11798469722270966, 0.08318250626325607, -0.03260907530784607]} +{"t": 26.6734, "q": [-0.36467495560646057, -0.010502655059099197, 0.008035137318074703, 0.6107544302940369, -0.28263434767723083, 0.0030275939498096704, -0.3621353805065155, 0.012169580906629562, -0.0033747577108442783, 0.6361247897148132, -0.33286428451538086, -0.011959199793636799, 0.005316582508385181, 0.05127802491188049, -0.02762104570865631, -3.0491225719451904, 2.2475335597991943, 1.8305424451828003, 0.2961062490940094, -0.1347745954990387, -0.08982177078723907, 0.02003762498497963, 0.13575729727745056, -0.17612017691135406, -0.16504675149917603, 1.167754888534546, -0.11793676018714905, 0.08317052572965622, -0.032585106790065765]} +{"t": 26.6901, "q": [-0.3646664321422577, -0.010494133457541466, 0.008035137318074703, 0.6107203364372253, -0.2826426029205322, 0.0030420012772083282, -0.3621268570423126, 0.012178102508187294, -0.003361365757882595, 0.6360395550727844, -0.33286428451538086, -0.011959199793636799, 0.005276407115161419, 0.05116397142410278, -0.027544334530830383, -3.0491104125976562, 2.247509717941284, 1.8304945230484009, 0.29611822962760925, -0.13476261496543884, -0.08982177078723907, 0.02003762498497963, 0.13575729727745056, -0.1760602593421936, -0.16503477096557617, 1.1678028106689453, -0.1179727166891098, 0.08318250626325607, -0.032585106790065765]} +{"t": 26.707, "q": [-0.3647005259990692, -0.010494133457541466, 0.008008353412151337, 0.6106777191162109, -0.2826467454433441, 0.0030491959769278765, -0.3621353805065155, 0.012144014239311218, -0.0033747577108442783, 0.6360054612159729, -0.33286428451538086, -0.011959199793636799, 0.005316582508385181, 0.05101965367794037, -0.027476567775011063, -3.0491344928741455, 2.2475335597991943, 1.8304345607757568, 0.29611822962760925, -0.13478657603263855, -0.08983375132083893, 0.02004960924386978, 0.13582921028137207, -0.176012322306633, -0.1651066690683365, 1.1677908897399902, -0.11796072870492935, 0.08318250626325607, -0.032585106790065765]} +{"t": 26.7237, "q": [-0.364717572927475, -0.010494133457541466, 0.008008353412151337, 0.6106522083282471, -0.2826591432094574, 0.0030707798432558775, -0.3621353805065155, 0.012144014239311218, -0.0032810145057737827, 0.6359457969665527, -0.33286842703819275, -0.011951902881264687, 0.005222839303314686, 0.05092841759324074, -0.02741527371108532, -3.0491344928741455, 2.247509717941284, 1.830398678779602, 0.29614219069480896, -0.1347745954990387, -0.08980978280305862, 0.02003762498497963, 0.13582921028137207, -0.17602430284023285, -0.16508270800113678, 1.1678986549377441, -0.11798469722270966, 0.08318250626325607, -0.03259709104895592]} +{"t": 26.7404, "q": [-0.3647005259990692, -0.010502655059099197, 0.008008353412151337, 0.6106436848640442, -0.2826673984527588, 0.0030851690098643303, -0.3621353805065155, 0.01212697010487318, -0.0032944062259048223, 0.6358776688575745, -0.33286023139953613, -0.011937456205487251, 0.005196055397391319, 0.05086750164628029, -0.02735484391450882, -3.0491225719451904, 2.247509717941284, 1.8303747177124023, 0.29611822962760925, -0.13476261496543884, -0.08979780226945877, 0.02003762498497963, 0.13586516678333282, -0.17602430284023285, -0.16504675149917603, 1.1679346561431885, -0.1179727166891098, 0.08318250626325607, -0.03259709104895592]} +{"t": 26.7574, "q": [-0.3647005259990692, -0.010502655059099197, 0.008021745830774307, 0.6106010675430298, -0.2826632559299469, 0.0030779745429754257, -0.3621439039707184, 0.012118448503315449, -0.0032944062259048223, 0.6358350515365601, -0.3328684866428375, -0.011922863312065601, 0.005182663444429636, 0.0507611483335495, -0.02730296179652214, -3.0491344928741455, 2.247509717941284, 1.8303747177124023, 0.2961541712284088, -0.1347745954990387, -0.08980978280305862, 0.020025640726089478, 0.135949045419693, -0.1760362833738327, -0.16504675149917603, 1.167946696281433, -0.11796072870492935, 0.08318250626325607, -0.032585106790065765]} +{"t": 26.7741, "q": [-0.36467495560646057, -0.010494133457541466, 0.00806192122399807, 0.610584020614624, -0.2826673984527588, 0.0030851690098643303, -0.3621439039707184, 0.01212697010487318, -0.0032944062259048223, 0.6357839107513428, -0.33286023139953613, -0.011937456205487251, 0.0051424880512058735, 0.05065460503101349, -0.027211962267756462, -3.0491464138031006, 2.247509717941284, 1.8303626775741577, 0.29621410369873047, -0.134750634431839, -0.08980978280305862, 0.020025640726089478, 0.1359730213880539, -0.17597636580467224, -0.1651066690683365, 1.1680305004119873, -0.1179727166891098, 0.08314655721187592, -0.03259709104895592]} +{"t": 26.7908, "q": [-0.36464938521385193, -0.010511177591979504, 0.008075312711298466, 0.6105584502220154, -0.28265905380249023, 0.003085239790380001, -0.3621268570423126, 0.01212697010487318, -0.003254230599850416, 0.6357839107513428, -0.3328602612018585, -0.011922936886548996, 0.0051424880512058735, 0.050510093569755554, -0.027105234563350677, -3.0491583347320557, 2.247509717941284, 1.8303626775741577, 0.29627400636672974, -0.13478657603263855, -0.08983375132083893, 0.02003762498497963, 0.1359730213880539, -0.1759643852710724, -0.16508270800113678, 1.1680904626846313, -0.1179727166891098, 0.08318250626325607, -0.03256113827228546]} +{"t": 26.8077, "q": [-0.36459827423095703, -0.010502655059099197, 0.008102096617221832, 0.6105328798294067, -0.2826591432094574, 0.0030707798432558775, -0.3621268570423126, 0.012135492637753487, -0.003347973804920912, 0.6357753872871399, -0.3328438103199005, -0.01192308496683836, 0.005155880004167557, 0.0503883920609951, -0.027013815939426422, -3.0491464138031006, 2.24749755859375, 1.8303747177124023, 0.29627400636672974, -0.134750634431839, -0.08980978280305862, 0.02003762498497963, 0.1359730213880539, -0.1759404093027115, -0.16509468853473663, 1.1681504249572754, -0.11796072870492935, 0.08318250626325607, -0.03257312253117561]} +{"t": 26.8244, "q": [-0.3646153211593628, -0.010502655059099197, 0.008102096617221832, 0.6105328798294067, -0.28264233469963074, 0.0031142293009907007, -0.36211833357810974, 0.012118448503315449, -0.003347973804920912, 0.6357412934303284, -0.3328397274017334, -0.011901323683559895, 0.005115704145282507, 0.050213467329740524, -0.026886677369475365, -3.049182415008545, 2.247509717941284, 1.830326795578003, 0.2962620258331299, -0.13476261496543884, -0.08980978280305862, 0.020025640726089478, 0.1359730213880539, -0.17590445280075073, -0.16509468853473663, 1.1681623458862305, -0.11796072870492935, 0.08317052572965622, -0.032585106790065765]} +{"t": 26.8412, "q": [-0.3646067976951599, -0.010502655059099197, 0.008075312711298466, 0.6104987859725952, -0.2826423943042755, 0.0030997872818261385, -0.36211833357810974, 0.012144014239311218, -0.003347973804920912, 0.6356901526451111, -0.3328397274017334, -0.011901323683559895, 0.00512909609824419, 0.050008174031972885, -0.026748916134238243, -3.049182415008545, 2.247509717941284, 1.830338716506958, 0.2962260842323303, -0.13478657603263855, -0.08980978280305862, 0.02003762498497963, 0.13591310381889343, -0.17583255469799042, -0.16505873203277588, 1.168174386024475, -0.11798469722270966, 0.08317052572965622, -0.03259709104895592]} +{"t": 26.8579, "q": [-0.36458122730255127, -0.010494133457541466, 0.008102096617221832, 0.6104561686515808, -0.2826548218727112, 0.0031069291289895773, -0.36211833357810974, 0.012152536772191525, -0.003347973804920912, 0.6356645822525024, -0.3328438997268677, -0.011879507452249527, 0.005155880004167557, 0.04975725710391998, -0.026580536738038063, -3.0492184162139893, 2.247509717941284, 1.830338716506958, 0.2962260842323303, -0.13473863899707794, -0.08982177078723907, 0.02003762498497963, 0.13585317134857178, -0.1757846176624298, -0.16507071256637573, 1.1681983470916748, -0.1179727166891098, 0.08318250626325607, -0.032585106790065765]} +{"t": 26.8746, "q": [-0.36458975076675415, -0.010502655059099197, 0.008102096617221832, 0.6104561686515808, -0.2826382517814636, 0.0030925925821065903, -0.3620586693286896, 0.012152536772191525, -0.0033747577108442783, 0.6356390118598938, -0.3328191936016083, -0.01189424842596054, 0.005115704145282507, 0.04950625076889992, -0.02639259397983551, -3.0492541790008545, 2.247509717941284, 1.8303626775741577, 0.2962260842323303, -0.13471467792987823, -0.08982177078723907, 0.02003762498497963, 0.13575729727745056, -0.17574866116046906, -0.16508270800113678, 1.1682102680206299, -0.11796072870492935, 0.08318250626325607, -0.03259709104895592]} +{"t": 26.8914, "q": [-0.36453860998153687, -0.010502655059099197, 0.008115489035844803, 0.6103965044021606, -0.282646507024765, 0.0031069819815456867, -0.36197346448898315, 0.012161058373749256, -0.0033747577108442783, 0.635621964931488, -0.33282333612442017, -0.011886951513588428, 0.005155880004167557, 0.049179114401340485, -0.026134062558412552, -3.0492541790008545, 2.247509717941284, 1.8303626775741577, 0.2962260842323303, -0.13476261496543884, -0.08980978280305862, 0.02003762498497963, 0.1357453167438507, -0.17565278708934784, -0.16509468853473663, 1.1682102680206299, -0.11796072870492935, 0.08315853774547577, -0.03259709104895592]} +{"t": 26.9081, "q": [-0.364530086517334, -0.010502655059099197, 0.008075312711298466, 0.610370934009552, -0.2826507091522217, 0.0030997346621006727, -0.3619052767753601, 0.012178102508187294, -0.0033881496638059616, 0.6355708241462708, -0.3328191637992859, -0.01190876867622137, 0.00512909609824419, 0.048882581293582916, -0.025935109704732895, -3.0492663383483887, 2.247509717941284, 1.8303507566452026, 0.2961901128292084, -0.13473863899707794, -0.08978581428527832, 0.02003762498497963, 0.13573333621025085, -0.17555691301822662, -0.16507071256637573, 1.1682462692260742, -0.11793676018714905, 0.08318250626325607, -0.03259709104895592]} +{"t": 26.9248, "q": [-0.3644874691963196, -0.010494133457541466, 0.00806192122399807, 0.6103283166885376, -0.28263407945632935, 0.0030998399015516043, -0.36170926690101624, 0.012203669175505638, -0.003468500915914774, 0.6355282068252563, -0.332806795835495, -0.01191615778952837, 0.00516927195712924, 0.04855566471815109, -0.025716040283441544, -3.0492782592773438, 2.247509717941284, 1.830338716506958, 0.29614219069480896, -0.13471467792987823, -0.08980978280305862, 0.020025640726089478, 0.13570936024188995, -0.1754850149154663, -0.16508270800113678, 1.1682462692260742, -0.11793676018714905, 0.08315853774547577, -0.03259709104895592]} +{"t": 26.9415, "q": [-0.36450451612472534, -0.010477089323103428, 0.008048529736697674, 0.6102772355079651, -0.2826423943042755, 0.0030997872818261385, -0.36165812611579895, 0.012195147573947906, -0.003468500915914774, 0.6354430317878723, -0.3328191637992859, -0.01190876867622137, 0.00512909609824419, 0.04828199744224548, -0.025542564690113068, -3.0492663383483887, 2.247485637664795, 1.830338716506958, 0.2961302101612091, -0.13473863899707794, -0.08978581428527832, 0.02003762498497963, 0.13575729727745056, -0.17542508244514465, -0.16511864960193634, 1.1683061122894287, -0.11796072870492935, 0.08318250626325607, -0.032585106790065765]} +{"t": 26.9583, "q": [-0.36445337533950806, -0.010485611855983734, 0.008021745830774307, 0.6102687120437622, -0.282646507024765, 0.0031069819815456867, -0.3614110052585602, 0.012220713309943676, -0.003481892868876457, 0.6353492736816406, -0.3328191936016083, -0.01189424842596054, 0.00512909609824419, 0.04797035828232765, -0.025353411212563515, -3.0492303371429443, 2.247509717941284, 1.830338716506958, 0.29614219069480896, -0.13473863899707794, -0.08980978280305862, 0.02003762498497963, 0.13581722974777222, -0.17540112137794495, -0.16509468853473663, 1.1683781147003174, -0.11793676018714905, 0.08315853774547577, -0.032585106790065765]} +{"t": 26.975, "q": [-0.3644704222679138, -0.010468566790223122, 0.00798156950622797, 0.6102431416511536, -0.2826589047908783, 0.003128583775833249, -0.3611723780632019, 0.012195147573947906, -0.0034551091957837343, 0.6352299451828003, -0.33284392952919006, -0.011864987201988697, 0.00512909609824419, 0.04760530963540077, -0.02508951909840107, -3.0492541790008545, 2.247509717941284, 1.8303147554397583, 0.2961541712284088, -0.1347745954990387, -0.08980978280305862, 0.02003762498497963, 0.13579325377941132, -0.1754131019115448, -0.16507071256637573, 1.1683900356292725, -0.1179247796535492, 0.08317052572965622, -0.03259709104895592]} +{"t": 26.9918, "q": [-0.3644789457321167, -0.010468566790223122, 0.007954785600304604, 0.610209047794342, -0.2826506495475769, 0.003114176681265235, -0.36093375086784363, 0.012203669175505638, -0.003441717242822051, 0.6350510120391846, -0.33283984661102295, -0.01185776386409998, 0.005115704145282507, 0.0473012775182724, -0.024905459955334663, -3.0492422580718994, 2.2475335597991943, 1.8302788734436035, 0.29614219069480896, -0.1347266584634781, -0.08979780226945877, 0.02004960924386978, 0.13586516678333282, -0.17537714540958405, -0.16511864960193634, 1.1683781147003174, -0.11793676018714905, 0.08317052572965622, -0.03259709104895592]} +{"t": 27.0085, "q": [-0.3644704222679138, -0.010468566790223122, 0.007874434813857079, 0.6101664304733276, -0.28266721963882446, 0.0031285311561077833, -0.360533207654953, 0.012195147573947906, -0.0034283252898603678, 0.6348720192909241, -0.33283576369285583, -0.011850541457533836, 0.00508892023935914, 0.046943921595811844, -0.024666210636496544, -3.0492541790008545, 2.247509717941284, 1.8302547931671143, 0.2961302101612091, -0.13471467792987823, -0.08980978280305862, 0.020025640726089478, 0.13586516678333282, -0.17537714540958405, -0.1651066690683365, 1.1684260368347168, -0.11796072870492935, 0.08318250626325607, -0.03259709104895592]} +{"t": 27.0253, "q": [-0.3644874691963196, -0.010451522655785084, 0.007713731843978167, 0.6101238131523132, -0.28268781304359436, 0.003178946441039443, -0.3602605164051056, 0.0121866250410676, -0.0034149333368986845, 0.6345908045768738, -0.33283981680870056, -0.01187228411436081, 0.00512909609824419, 0.046769142150878906, -0.02456868626177311, -3.0492422580718994, 2.247509717941284, 1.8302308320999146, 0.2961302101612091, -0.1347266584634781, -0.08980978280305862, 0.02003762498497963, 0.13591310381889343, -0.1753651648759842, -0.16507071256637573, 1.1684619188308716, -0.11796072870492935, 0.08317052572965622, -0.03260907530784607]} +{"t": 27.042, "q": [-0.3644704222679138, -0.010451522655785084, 0.007660164497792721, 0.6101067662239075, -0.28273746371269226, 0.0032508759759366512, -0.3598940670490265, 0.012169580906629562, -0.0034015413839370012, 0.634343683719635, -0.33284807205200195, -0.011857690289616585, 0.005115704145282507, 0.046586718410253525, -0.024456430226564407, -3.0492663383483887, 2.247509717941284, 1.8302308320999146, 0.2961781322956085, -0.13476261496543884, -0.08980978280305862, 0.020025640726089478, 0.13593706488609314, -0.17535318434238434, -0.16511864960193634, 1.168497920036316, -0.11796072870492935, 0.08317052572965622, -0.03260907530784607]} +{"t": 27.0587, "q": [-0.3644874691963196, -0.010451522655785084, 0.007579812780022621, 0.6100811958312988, -0.2827746868133545, 0.003301203716546297, -0.3596554398536682, 0.012152536772191525, -0.0034015413839370012, 0.6341561675071716, -0.33283984661102295, -0.01185776386409998, 0.004995177034288645, 0.04640447720885277, -0.02438337169587612, -3.0492422580718994, 2.247509717941284, 1.8302547931671143, 0.2961541712284088, -0.13476261496543884, -0.08979780226945877, 0.020025640726089478, 0.1359730213880539, -0.1753891408443451, -0.1651306450366974, 1.1685339212417603, -0.1179487481713295, 0.08317052572965622, -0.03259709104895592]} +{"t": 27.0754, "q": [-0.3644874691963196, -0.010434478521347046, 0.007579812780022621, 0.6100641489028931, -0.28280365467071533, 0.0033371243625879288, -0.3594253361225128, 0.012144014239311218, -0.003361365757882595, 0.6339601874351501, -0.3328440189361572, -0.01183592900633812, 0.005035352893173695, 0.04632863402366638, -0.024371646344661713, -3.0492663383483887, 2.247509717941284, 1.8302308320999146, 0.2961901128292084, -0.13476261496543884, -0.08980978280305862, 0.02003762498497963, 0.1359969824552536, -0.17537714540958405, -0.16514262557029724, 1.1685339212417603, -0.11796072870492935, 0.08318250626325607, -0.032585106790065765]} +{"t": 27.0922, "q": [-0.3644789457321167, -0.010443000122904778, 0.007579812780022621, 0.6100300550460815, -0.2828284204006195, 0.003380310023203492, -0.35928046703338623, 0.012118448503315449, -0.0033747577108442783, 0.6337897181510925, -0.332835853099823, -0.011806945316493511, 0.005021960940212011, 0.046252697706222534, -0.024340393021702766, -3.049206256866455, 2.2475335597991943, 1.8302068710327148, 0.2961901128292084, -0.134750634431839, -0.08979780226945877, 0.020061593502759933, 0.1360209584236145, -0.1753891408443451, -0.16511864960193634, 1.1685458421707153, -0.11796072870492935, 0.08319449424743652, -0.03259709104895592]} +{"t": 27.1089, "q": [-0.3644704222679138, -0.010451522655785084, 0.007579812780022621, 0.6099533438682556, -0.28286972641944885, 0.0034522744826972485, -0.35926342010498047, 0.012135492637753487, -0.003334582084789872, 0.6336193084716797, -0.3328072130680084, -0.011741846799850464, 0.005048744846135378, 0.046252697706222534, -0.024340393021702766, -3.0491943359375, 2.24749755859375, 1.8301949501037598, 0.29621410369873047, -0.1347266584634781, -0.08979780226945877, 0.020025640726089478, 0.13603293895721436, -0.17537714540958405, -0.16505873203277588, 1.16855788230896, -0.11796072870492935, 0.08315853774547577, -0.03260907530784607]} +{"t": 27.1258, "q": [-0.3644789457321167, -0.010451522655785084, 0.007579812780022621, 0.6099192500114441, -0.2828614115715027, 0.003452327335253358, -0.35917818546295166, 0.01212697010487318, -0.003347973804920912, 0.6334744095802307, -0.33277449011802673, -0.011669524945318699, 0.004995177034288645, 0.04623749107122421, -0.02433023601770401, -3.049206256866455, 2.247509717941284, 1.8301949501037598, 0.2962021231651306, -0.13478657603263855, -0.08982177078723907, 0.020025640726089478, 0.1360209584236145, -0.1753651648759842, -0.16507071256637573, 1.168569803237915, -0.1179247796535492, 0.08318250626325607, -0.03260907530784607]} +{"t": 27.1425, "q": [-0.36449599266052246, -0.010443000122904778, 0.007606596685945988, 0.6098511219024658, -0.2828655540943146, 0.0034595218021422625, -0.3591526448726654, 0.012135492637753487, -0.003347973804920912, 0.6333550810813904, -0.3327457904815674, -0.011633483693003654, 0.005035352893173695, 0.04624504968523979, -0.024325549602508545, -3.049206256866455, 2.247509717941284, 1.8301949501037598, 0.29627400636672974, -0.13473863899707794, -0.08984573930501938, 0.020025640726089478, 0.13600897789001465, -0.17525731027126312, -0.16511864960193634, 1.1686416864395142, -0.1179966852068901, 0.08318250626325607, -0.03259709104895592]} +{"t": 27.1593, "q": [-0.3644874691963196, -0.010451522655785084, 0.007619988638907671, 0.6098085045814514, -0.28286147117614746, 0.0034378853160887957, -0.35913559794425964, 0.01212697010487318, -0.0033747577108442783, 0.6332272887229919, -0.33272117376327515, -0.01160464808344841, 0.004995177034288645, 0.04625265300273895, -0.024330629035830498, -3.049206256866455, 2.247509717941284, 1.8302189111709595, 0.2962859869003296, -0.134750634431839, -0.08982177078723907, 0.020025640726089478, 0.13608087599277496, -0.17519739270210266, -0.16503477096557617, 1.1686416864395142, -0.1179966852068901, 0.08318250626325607, -0.03259709104895592]} +{"t": 27.176, "q": [-0.3644704222679138, -0.010451522655785084, 0.007606596685945988, 0.6097914576530457, -0.28286972641944885, 0.0034522744826972485, -0.3590759336948395, 0.012135492637753487, -0.003361365757882595, 0.6331761479377747, -0.3327212333679199, -0.011575608514249325, 0.0049817850813269615, 0.04625265300273895, -0.024330629035830498, -3.0491943359375, 2.247485637664795, 1.8302189111709595, 0.29627400636672974, -0.1347266584634781, -0.08978581428527832, 0.02003762498497963, 0.13603293895721436, -0.1751134991645813, -0.16503477096557617, 1.1687016487121582, -0.11798469722270966, 0.08317052572965622, -0.03259709104895592]} +{"t": 27.1927, "q": [-0.36445337533950806, -0.010434478521347046, 0.007606596685945988, 0.6097403168678284, -0.28285717964172363, 0.003474016673862934, -0.3590333163738251, 0.01212697010487318, -0.0033747577108442783, 0.6331164836883545, -0.3327089548110962, -0.011553921736776829, 0.005062136333435774, 0.04625260457396507, -0.02432086318731308, -3.0491943359375, 2.24747371673584, 1.8302068710327148, 0.2962859869003296, -0.13471467792987823, -0.08980978280305862, 0.020025640726089478, 0.13609285652637482, -0.17499366402626038, -0.1651066690683365, 1.1687735319137573, -0.1179487481713295, 0.08317052572965622, -0.03259709104895592]} +{"t": 27.2096, "q": [-0.3644704222679138, -0.010443000122904778, 0.007593204732984304, 0.6097147464752197, -0.28285717964172363, 0.003474016673862934, -0.3589736819267273, 0.01212697010487318, -0.0034015413839370012, 0.6330142021179199, -0.3327006995677948, -0.011568515561521053, 0.005062136333435774, 0.04625260457396507, -0.02432086318731308, -3.049206256866455, 2.24749755859375, 1.8302068710327148, 0.2962859869003296, -0.1347985714673996, -0.08979780226945877, 0.020025640726089478, 0.13609285652637482, -0.1748618334531784, -0.16504675149917603, 1.168785572052002, -0.11796072870492935, 0.08317052572965622, -0.03259709104895592]} +{"t": 27.2263, "q": [-0.3644448518753052, -0.010443000122904778, 0.007566420827060938, 0.6096806526184082, -0.28285717964172363, 0.003474016673862934, -0.3589736819267273, 0.012144014239311218, -0.0034283252898603678, 0.6329545378684998, -0.3327130079269409, -0.01157568208873272, 0.005021960940212011, 0.04625260457396507, -0.02432086318731308, -3.049206256866455, 2.247485637664795, 1.8301949501037598, 0.2962859869003296, -0.13471467792987823, -0.08979780226945877, 0.020025640726089478, 0.1360688954591751, -0.17467008531093597, -0.16508270800113678, 1.1688334941864014, -0.11796072870492935, 0.08318250626325607, -0.03259709104895592]} +{"t": 27.2431, "q": [-0.3644363582134247, -0.010434478521347046, 0.007579812780022621, 0.6096380352973938, -0.28285717964172363, 0.003474016673862934, -0.35889697074890137, 0.012135492637753487, -0.0034551091957837343, 0.6329119205474854, -0.3326801061630249, -0.011575978249311447, 0.00508892023935914, 0.04624495655298233, -0.024306021630764008, -3.049206256866455, 2.24749755859375, 1.8301949501037598, 0.29632195830345154, -0.134750634431839, -0.08979780226945877, 0.02003762498497963, 0.13611683249473572, -0.17450229823589325, -0.16507071256637573, 1.1688693761825562, -0.1179487481713295, 0.08318250626325607, -0.03259709104895592]} +{"t": 27.2598, "q": [-0.36440226435661316, -0.010443000122904778, 0.007539637386798859, 0.6096124649047852, -0.2828530967235565, 0.0034523799549788237, -0.35889697074890137, 0.012152536772191525, -0.0035220684949308634, 0.63285231590271, -0.3326759934425354, -0.01156875491142273, 0.005048744846135378, 0.04623739793896675, -0.024310708045959473, -3.049206256866455, 2.247485637664795, 1.8302068710327148, 0.2963099777698517, -0.13478657603263855, -0.08979780226945877, 0.02003762498497963, 0.13617675006389618, -0.17433452606201172, -0.1651066690683365, 1.1689532995224, -0.1179487481713295, 0.08318250626325607, -0.03259709104895592]} +{"t": 27.2765, "q": [-0.3643511235713959, -0.010425956919789314, 0.007526245433837175, 0.6095868945121765, -0.28284892439842224, 0.0034596272744238377, -0.35886287689208984, 0.012178102508187294, -0.0034952848218381405, 0.6328437924385071, -0.332684189081192, -0.01158320065587759, 0.005021960940212011, 0.04622974991798401, -0.02429586462676525, -3.0492184162139893, 2.247485637664795, 1.8302068710327148, 0.2963339388370514, -0.13476261496543884, -0.08979780226945877, 0.02003762498497963, 0.13614079356193542, -0.17413079738616943, -0.16508270800113678, 1.1689772605895996, -0.11796072870492935, 0.08318250626325607, -0.03259709104895592]} +{"t": 27.2932, "q": [-0.364342600107193, -0.010434478521347046, 0.007512853480875492, 0.6095954179763794, -0.2828530967235565, 0.0034523799549788237, -0.3588458299636841, 0.012161058373749256, -0.0034952848218381405, 0.6328437924385071, -0.3326800763607025, -0.011590497568249702, 0.005062136333435774, 0.04625247046351433, -0.024291571229696274, -3.0492184162139893, 2.247485637664795, 1.8301829099655151, 0.29632195830345154, -0.1347745954990387, -0.08978581428527832, 0.02003762498497963, 0.13611683249473572, -0.1739630103111267, -0.16509468853473663, 1.1689893007278442, -0.11793676018714905, 0.08317052572965622, -0.032585106790065765]} +{"t": 27.31, "q": [-0.3643511235713959, -0.010451522655785084, 0.007512853480875492, 0.6095868945121765, -0.28284892439842224, 0.0034596272744238377, -0.3587861955165863, 0.012169580906629562, -0.0035220684949308634, 0.6328437924385071, -0.3326759934425354, -0.01156875491142273, 0.005048744846135378, 0.046222150325775146, -0.024290787056088448, -3.049206256866455, 2.247485637664795, 1.8302068710327148, 0.2962859869003296, -0.1347745954990387, -0.08978581428527832, 0.02003762498497963, 0.13609285652637482, -0.17375928163528442, -0.16505873203277588, 1.1690012216567993, -0.11796072870492935, 0.08318250626325607, -0.032585106790065765]} +{"t": 27.3267, "q": [-0.364342600107193, -0.010425956919789314, 0.007499461527913809, 0.6095613241195679, -0.28284481167793274, 0.0034524325747042894, -0.35871800780296326, 0.012169580906629562, -0.003481892868876457, 0.6328437924385071, -0.3326636254787445, -0.011590645648539066, 0.005075528286397457, 0.046222150325775146, -0.024290787056088448, -3.0492184162139893, 2.247485637664795, 1.8301829099655151, 0.29629799723625183, -0.1347985714673996, -0.08977383375167847, 0.02003762498497963, 0.13605691492557526, -0.173567533493042, -0.1651066690683365, 1.1689893007278442, -0.11796072870492935, 0.08319449424743652, -0.03259709104895592]} +{"t": 27.3435, "q": [-0.36436817049980164, -0.010425956919789314, 0.0074860695749521255, 0.6095698475837708, -0.28284892439842224, 0.0034596272744238377, -0.35868391394615173, 0.0121866250410676, -0.0035086767747998238, 0.6328267455101013, -0.332675963640213, -0.01158327516168356, 0.005048744846135378, 0.046222150325775146, -0.024290787056088448, -3.0492422580718994, 2.2474617958068848, 1.8302189111709595, 0.29625004529953003, -0.13478657603263855, -0.08978581428527832, 0.020025640726089478, 0.1359969824552536, -0.1733638048171997, -0.16509468853473663, 1.1689532995224, -0.1179966852068901, 0.08318250626325607, -0.03260907530784607]} +{"t": 27.3602, "q": [-0.36432555317878723, -0.010417434386909008, 0.007512853480875492, 0.6095698475837708, -0.2828572392463684, 0.003459574654698372, -0.35859018564224243, 0.0121866250410676, -0.003468500915914774, 0.6328437924385071, -0.3326554000377655, -0.011590719223022461, 0.005048744846135378, 0.04624486342072487, -0.02428649179637432, -3.0492782592773438, 2.24747371673584, 1.8302189111709595, 0.29627400636672974, -0.1347745954990387, -0.08979780226945877, 0.02003762498497963, 0.13591310381889343, -0.17317205667495728, -0.16509468853473663, 1.1689893007278442, -0.11793676018714905, 0.08318250626325607, -0.03257312253117561]} +{"t": 27.3769, "q": [-0.36430850625038147, -0.010425956919789314, 0.007512853480875492, 0.6095698475837708, -0.28285717964172363, 0.003474016673862934, -0.35853904485702515, 0.012195147573947906, -0.003468500915914774, 0.6327841281890869, -0.3326718807220459, -0.011576051823794842, 0.005035352893173695, 0.04623730853199959, -0.024291178211569786, -3.0492782592773438, 2.24747371673584, 1.8302189111709595, 0.2962859869003296, -0.1347266584634781, -0.08978581428527832, 0.02003762498497963, 0.13586516678333282, -0.1729922890663147, -0.16509468853473663, 1.1689772605895996, -0.1179487481713295, 0.08318250626325607, -0.032585106790065765]} +{"t": 27.3938, "q": [-0.36435964703559875, -0.010425956919789314, 0.007539637386798859, 0.6095442771911621, -0.2828530967235565, 0.0034523799549788237, -0.3585219979286194, 0.0121866250410676, -0.0035220684949308634, 0.632775604724884, -0.3326718807220459, -0.011576051823794842, 0.004995177034288645, 0.04626007005572319, -0.024296648800373077, -3.049290180206299, 2.24747371673584, 1.8302189111709595, 0.29625004529953003, -0.13476261496543884, -0.08978581428527832, 0.02004960924386978, 0.13582921028137207, -0.17281252145767212, -0.16509468853473663, 1.1690012216567993, -0.11796072870492935, 0.08318250626325607, -0.03257312253117561]} +{"t": 27.4105, "q": [-0.364342600107193, -0.010425956919789314, 0.007566420827060938, 0.6095102429389954, -0.2828655540943146, 0.0034595218021422625, -0.35853052139282227, 0.012169580906629562, -0.003468500915914774, 0.632775604724884, -0.3326718807220459, -0.011576051823794842, 0.005021960940212011, 0.04624495655298233, -0.024306021630764008, -3.0492663383483887, 2.24747371673584, 1.8302189111709595, 0.29625004529953003, -0.13473863899707794, -0.08978581428527832, 0.020013656467199326, 0.13586516678333282, -0.17263276875019073, -0.16509468853473663, 1.1689893007278442, -0.11793676018714905, 0.08317052572965622, -0.03259709104895592]} +{"t": 27.4273, "q": [-0.36436817049980164, -0.010425956919789314, 0.007566420827060938, 0.6095017194747925, -0.28286969661712646, 0.003466734429821372, -0.35853052139282227, 0.012161058373749256, -0.003468500915914774, 0.6327585577964783, -0.3326965868473053, -0.011561292223632336, 0.005021960940212011, 0.04625247046351433, -0.024291571229696274, -3.0492663383483887, 2.24747371673584, 1.8302068710327148, 0.2962260842323303, -0.13483451306819916, -0.08979780226945877, 0.020025640726089478, 0.13591310381889343, -0.1724410206079483, -0.16509468853473663, 1.1689893007278442, -0.11793676018714905, 0.08318250626325607, -0.032585106790065765]} +{"t": 27.4441, "q": [-0.3643852174282074, -0.010434478521347046, 0.007539637386798859, 0.6094846725463867, -0.28286972641944885, 0.0034522744826972485, -0.3585219979286194, 0.012178102508187294, -0.0034551091957837343, 0.6327585577964783, -0.3326924741268158, -0.011568589136004448, 0.004995177034288645, 0.04624495655298233, -0.024306021630764008, -3.0492541790008545, 2.24747371673584, 1.8301949501037598, 0.2962260842323303, -0.13478657603263855, -0.08978581428527832, 0.02003762498497963, 0.1359730213880539, -0.17223729193210602, -0.16507071256637573, 1.169013261795044, -0.11796072870492935, 0.08317052572965622, -0.03259709104895592]} +{"t": 27.4608, "q": [-0.3643852174282074, -0.010417434386909008, 0.007539637386798859, 0.609467625617981, -0.28287795186042786, 0.0034811238292604685, -0.35853904485702515, 0.0121866250410676, -0.0034952848218381405, 0.6327500343322754, -0.3326883614063263, -0.01156136579811573, 0.005021960940212011, 0.04624495655298233, -0.024306021630764008, -3.0492303371429443, 2.24747371673584, 1.8302068710327148, 0.29621410369873047, -0.1347745954990387, -0.08978581428527832, 0.02004960924386978, 0.1359969824552536, -0.17202156782150269, -0.16509468853473663, 1.1690731048583984, -0.1179727166891098, 0.08318250626325607, -0.03259709104895592]} +{"t": 27.4776, "q": [-0.36435964703559875, -0.010408911854028702, 0.007526245433837175, 0.6094335317611694, -0.28287380933761597, 0.0034739291295409203, -0.3585219979286194, 0.012178102508187294, -0.0035220684949308634, 0.6327159404754639, -0.3326842784881592, -0.011554143391549587, 0.004995177034288645, 0.04625255987048149, -0.02431110106408596, -3.0492184162139893, 2.24747371673584, 1.8302068710327148, 0.2962260842323303, -0.13478657603263855, -0.08979780226945877, 0.02003762498497963, 0.13603293895721436, -0.17178188264369965, -0.1651066690683365, 1.1690970659255981, -0.1179966852068901, 0.08318250626325607, -0.03259709104895592]} +{"t": 27.4943, "q": [-0.36435964703559875, -0.010425956919789314, 0.007526245433837175, 0.6094335317611694, -0.28288212418556213, 0.003473876276984811, -0.3585219979286194, 0.012178102508187294, -0.0034283252898603678, 0.632707417011261, -0.3326965868473053, -0.011561292223632336, 0.005048744846135378, 0.04626007005572319, -0.024296648800373077, -3.0492422580718994, 2.24747371673584, 1.8302189111709595, 0.29621410369873047, -0.13478657603263855, -0.08983375132083893, 0.020025640726089478, 0.13603293895721436, -0.1715421974658966, -0.16504675149917603, 1.1690731048583984, -0.1179727166891098, 0.08315853774547577, -0.03259709104895592]} +{"t": 27.511, "q": [-0.36436817049980164, -0.010425956919789314, 0.007539637386798859, 0.6093482971191406, -0.28287801146507263, 0.0034666818100959063, -0.3585219979286194, 0.012169580906629562, -0.0034283252898603678, 0.6326818466186523, -0.3326925039291382, -0.011554068885743618, 0.005008568987250328, 0.04626007005572319, -0.024296648800373077, -3.0492184162139893, 2.24747371673584, 1.8302189111709595, 0.2962260842323303, -0.1347745954990387, -0.08980978280305862, 0.020025640726089478, 0.13605691492557526, -0.1712425947189331, -0.16504675149917603, 1.169145107269287, -0.11798469722270966, 0.08318250626325607, -0.03260907530784607]} +{"t": 27.5277, "q": [-0.3643766939640045, -0.010434478521347046, 0.007526245433837175, 0.6093056797981262, -0.28287380933761597, 0.0034739291295409203, -0.35853052139282227, 0.012178102508187294, -0.0034283252898603678, 0.6326647996902466, -0.33269253373146057, -0.011539549566805363, 0.00508892023935914, 0.04626011848449707, -0.024306414648890495, -3.0492422580718994, 2.247485637664795, 1.8301949501037598, 0.2962260842323303, -0.13478657603263855, -0.08978581428527832, 0.02004960924386978, 0.13600897789001465, -0.17093101143836975, -0.16507071256637573, 1.169180989265442, -0.11796072870492935, 0.08318250626325607, -0.03259709104895592]} +{"t": 27.5445, "q": [-0.36436817049980164, -0.010425956919789314, 0.007526245433837175, 0.6092801094055176, -0.28287380933761597, 0.0034739291295409203, -0.35853904485702515, 0.012169580906629562, -0.0034015413839370012, 0.6326307058334351, -0.3327048420906067, -0.011546698398888111, 0.00508892023935914, 0.04624495655298233, -0.024306021630764008, -3.0492184162139893, 2.247485637664795, 1.8301949501037598, 0.2962380647659302, -0.134750634431839, -0.08978581428527832, 0.02003762498497963, 0.13603293895721436, -0.17067933082580566, -0.16507071256637573, 1.1691690683364868, -0.11798469722270966, 0.08319449424743652, -0.032585106790065765]} +{"t": 27.5612, "q": [-0.3643852174282074, -0.010417434386909008, 0.007512853480875492, 0.6092119216918945, -0.28287380933761597, 0.0034739291295409203, -0.35853052139282227, 0.012161058373749256, -0.0034015413839370012, 0.632562518119812, -0.3326966166496277, -0.011546771973371506, 0.004995177034288645, 0.04626016318798065, -0.024316176772117615, -3.0492663383483887, 2.247485637664795, 1.8301949501037598, 0.2961781322956085, -0.13478657603263855, -0.08980978280305862, 0.020025640726089478, 0.13600897789001465, -0.17037972807884216, -0.16509468853473663, 1.1691930294036865, -0.11796072870492935, 0.08317052572965622, -0.032585106790065765]} +{"t": 27.5779, "q": [-0.3643852174282074, -0.010408911854028702, 0.0074860695749521255, 0.6091523170471191, -0.28286969661712646, 0.003466734429821372, -0.3585219979286194, 0.012169580906629562, -0.0034149333368986845, 0.6324432492256165, -0.3327007293701172, -0.011553995311260223, 0.005062136333435774, 0.04625255987048149, -0.02431110106408596, -3.0492422580718994, 2.24749755859375, 1.8301949501037598, 0.2961781322956085, -0.13478657603263855, -0.08982177078723907, 0.020025640726089478, 0.13605691492557526, -0.17015202343463898, -0.16511864960193634, 1.1692169904708862, -0.11796072870492935, 0.08318250626325607, -0.03259709104895592]} +{"t": 27.5946, "q": [-0.36436817049980164, -0.010408911854028702, 0.007472677621990442, 0.6091437935829163, -0.28286969661712646, 0.003466734429821372, -0.35853904485702515, 0.012169580906629562, -0.0033747577108442783, 0.6324091553688049, -0.3326965868473053, -0.011561292223632336, 0.005048744846135378, 0.04625255987048149, -0.02431110106408596, -3.0492422580718994, 2.247485637664795, 1.8301949501037598, 0.29616615176200867, -0.1347745954990387, -0.08978581428527832, 0.02003762498497963, 0.13608087599277496, -0.16990035772323608, -0.16509468853473663, 1.169240951538086, -0.1179487481713295, 0.08318250626325607, -0.03259709104895592]} +{"t": 27.6114, "q": [-0.36436817049980164, -0.01040039025247097, 0.007472677621990442, 0.6090585589408875, -0.28287380933761597, 0.0034739291295409203, -0.358547568321228, 0.012169580906629562, -0.0034015413839370012, 0.6323580145835876, -0.3327089548110962, -0.011553921736776829, 0.005021960940212011, 0.04626007005572319, -0.024296648800373077, -3.0492663383483887, 2.247485637664795, 1.8301829099655151, 0.2961781322956085, -0.13478657603263855, -0.08977383375167847, 0.02003762498497963, 0.13605691492557526, -0.16962473094463348, -0.16505873203277588, 1.169252872467041, -0.11798469722270966, 0.08318250626325607, -0.03259709104895592]} +{"t": 27.6281, "q": [-0.3643852174282074, -0.010408911854028702, 0.0074860695749521255, 0.6090244650840759, -0.2828655242919922, 0.003473981749266386, -0.3585219979286194, 0.0121866250410676, -0.0034015413839370012, 0.6323494911193848, -0.3326965868473053, -0.011561292223632336, 0.005035352893173695, 0.04625247046351433, -0.024291571229696274, -3.0492422580718994, 2.247485637664795, 1.83017098903656, 0.2961541712284088, -0.13478657603263855, -0.08980978280305862, 0.02004960924386978, 0.1360688954591751, -0.1693970263004303, -0.16508270800113678, 1.169252872467041, -0.11796072870492935, 0.08315853774547577, -0.03260907530784607]} +{"t": 27.6448, "q": [-0.3643852174282074, -0.010391868650913239, 0.0074860695749521255, 0.6090500354766846, -0.2828613817691803, 0.00346676935441792, -0.35853052139282227, 0.012178102508187294, -0.003441717242822051, 0.6323239207267761, -0.3327007293701172, -0.011553995311260223, 0.005048744846135378, 0.04625247046351433, -0.024291571229696274, -3.0492422580718994, 2.24749755859375, 1.8302068710327148, 0.29616615176200867, -0.13476261496543884, -0.08980978280305862, 0.02003762498497963, 0.13609285652637482, -0.1691453605890274, -0.16508270800113678, 1.1692768335342407, -0.1179727166891098, 0.08318250626325607, -0.03259709104895592]} +{"t": 27.6615, "q": [-0.36436817049980164, -0.010408911854028702, 0.007499461527913809, 0.6090074181556702, -0.2828655540943146, 0.0034595218021422625, -0.35853052139282227, 0.012169580906629562, -0.0034149333368986845, 0.632264256477356, -0.332684189081192, -0.01158320065587759, 0.005062136333435774, 0.04625255987048149, -0.02431110106408596, -3.0492184162139893, 2.24749755859375, 1.8301829099655151, 0.29616615176200867, -0.134750634431839, -0.08982177078723907, 0.02003762498497963, 0.1360688954591751, -0.16888169944286346, -0.16508270800113678, 1.16930091381073, -0.11796072870492935, 0.08318250626325607, -0.03260907530784607]} +{"t": 27.6783, "q": [-0.364342600107193, -0.010391868650913239, 0.007472677621990442, 0.6089988946914673, -0.2828613817691803, 0.00346676935441792, -0.3585219979286194, 0.012178102508187294, -0.0034283252898603678, 0.6322386860847473, -0.3326842784881592, -0.011554143391549587, 0.005021960940212011, 0.04624491184949875, -0.02429625764489174, -3.049206256866455, 2.247509717941284, 1.8301829099655151, 0.29616615176200867, -0.13473863899707794, -0.08980978280305862, 0.02003762498497963, 0.1360688954591751, -0.1685701161623001, -0.16504675149917603, 1.1693248748779297, -0.11798469722270966, 0.08318250626325607, -0.03260907530784607]} +{"t": 27.695, "q": [-0.36435964703559875, -0.010408911854028702, 0.0074860695749521255, 0.6089903712272644, -0.2828613817691803, 0.00346676935441792, -0.35853904485702515, 0.012178102508187294, -0.0034551091957837343, 0.6322216391563416, -0.3326801061630249, -0.011575978249311447, 0.005008568987250328, 0.04625247046351433, -0.024291571229696274, -3.0492422580718994, 2.247485637664795, 1.8301949501037598, 0.29616615176200867, -0.13481055200099945, -0.08980978280305862, 0.02003762498497963, 0.1360688954591751, -0.1681986004114151, -0.1651066690683365, 1.1693367958068848, -0.11796072870492935, 0.08317052572965622, -0.03259709104895592]} +{"t": 27.7117, "q": [-0.36430850625038147, -0.010408911854028702, 0.007512853480875492, 0.6089903712272644, -0.2828530967235565, 0.0034523799549788237, -0.35853052139282227, 0.012203669175505638, -0.003481892868876457, 0.6322131156921387, -0.33266356587409973, -0.011605165898799896, 0.005048744846135378, 0.04625247046351433, -0.024291571229696274, -3.0492184162139893, 2.247485637664795, 1.8301829099655151, 0.29616615176200867, -0.1347985714673996, -0.08979780226945877, 0.02004960924386978, 0.13605691492557526, -0.16788701713085175, -0.16507071256637573, 1.1693607568740845, -0.1179487481713295, 0.08318250626325607, -0.03259709104895592]} +{"t": 27.7285, "q": [-0.3642999827861786, -0.010417434386909008, 0.007512853480875492, 0.6089903712272644, -0.2828655242919922, 0.003473981749266386, -0.3585219979286194, 0.012212191708385944, -0.003575636073946953, 0.6322301626205444, -0.33266356587409973, -0.011605165898799896, 0.005021960940212011, 0.04624491184949875, -0.02429625764489174, -3.0492422580718994, 2.247485637664795, 1.8301949501037598, 0.29616615176200867, -0.13478657603263855, -0.08979780226945877, 0.02004960924386978, 0.13600897789001465, -0.1675274819135666, -0.1651066690683365, 1.1693607568740845, -0.11793676018714905, 0.08318250626325607, -0.03260907530784607]} +{"t": 27.7454, "q": [-0.3642999827861786, -0.010408911854028702, 0.007499461527913809, 0.6089818477630615, -0.2828364372253418, 0.003466927446424961, -0.35844528675079346, 0.012203669175505638, -0.0035354604478925467, 0.6322216391563416, -0.3326306641101837, -0.011605478823184967, 0.005048744846135378, 0.04625247046351433, -0.024291571229696274, -3.0492422580718994, 2.247485637664795, 1.8301949501037598, 0.2961541712284088, -0.13478657603263855, -0.08980978280305862, 0.020025640726089478, 0.13593706488609314, -0.16712002456188202, -0.16505873203277588, 1.1693607568740845, -0.1179487481713295, 0.08318250626325607, -0.03260907530784607]} +{"t": 27.7621, "q": [-0.36427441239356995, -0.010408911854028702, 0.007526245433837175, 0.6089988946914673, -0.28284481167793274, 0.0034524325747042894, -0.3584112226963043, 0.012203669175505638, -0.0036425956059247255, 0.6322386860847473, -0.33261823654174805, -0.011641889810562134, 0.005048744846135378, 0.04624491184949875, -0.02429625764489174, -3.0492422580718994, 2.247485637664795, 1.8302068710327148, 0.2960582971572876, -0.13476261496543884, -0.08979780226945877, 0.02004960924386978, 0.1359250843524933, -0.16660469770431519, -0.16509468853473663, 1.1693847179412842, -0.11796072870492935, 0.08318250626325607, -0.032645028084516525]} +{"t": 27.7788, "q": [-0.3642914593219757, -0.01040039025247097, 0.007512853480875492, 0.6089903712272644, -0.28284892439842224, 0.0034596272744238377, -0.3583430349826813, 0.012229235842823982, -0.0036024199798703194, 0.6322216391563416, -0.3326388895511627, -0.011605405248701572, 0.005035352893173695, 0.04624486342072487, -0.02428649179637432, -3.0492422580718994, 2.247509717941284, 1.8301949501037598, 0.2960582971572876, -0.1347985714673996, -0.08978581428527832, 0.02003762498497963, 0.13586516678333282, -0.16594555974006653, -0.16504675149917603, 1.1693967580795288, -0.1179727166891098, 0.08317052572965622, -0.032645028084516525]} +{"t": 27.7958, "q": [-0.36430850625038147, -0.010408911854028702, 0.007512853480875492, 0.6089818477630615, -0.28284475207328796, 0.0034668745938688517, -0.35830894112586975, 0.012203669175505638, -0.003575636073946953, 0.6322301626205444, -0.3326430320739746, -0.011598090641200542, 0.005102312192320824, 0.04624491184949875, -0.02429625764489174, -3.0492184162139893, 2.247509717941284, 1.8302068710327148, 0.2960582971572876, -0.134750634431839, -0.08980978280305862, 0.02003762498497963, 0.13580523431301117, -0.16526246070861816, -0.16514262557029724, 1.169372797012329, -0.11796072870492935, 0.08317052572965622, -0.03268098086118698]} +{"t": 27.8125, "q": [-0.36427441239356995, -0.010391868650913239, 0.007499461527913809, 0.6089903712272644, -0.2828364372253418, 0.003466927446424961, -0.3581896424293518, 0.012203669175505638, -0.0036024199798703194, 0.6322301626205444, -0.33262237906455994, -0.011634592898190022, 0.00512909609824419, 0.04625247046351433, -0.024291571229696274, -3.0492184162139893, 2.24747371673584, 1.8301949501037598, 0.2960582971572876, -0.13476261496543884, -0.08982177078723907, 0.020025640726089478, 0.13570936024188995, -0.16445952653884888, -0.16509468853473663, 1.1693847179412842, -0.1179727166891098, 0.08317052572965622, -0.03265701234340668]} +{"t": 27.8292, "q": [-0.36426588892936707, -0.010391868650913239, 0.007459285669028759, 0.6089903712272644, -0.28284481167793274, 0.0034524325747042894, -0.35816407203674316, 0.012212191708385944, -0.003575636073946953, 0.6322472095489502, -0.3326141834259033, -0.01162014715373516, 0.00516927195712924, 0.04625247046351433, -0.024291571229696274, -3.049206256866455, 2.247485637664795, 1.83017098903656, 0.2960343360900879, -0.13478657603263855, -0.08979780226945877, 0.020025640726089478, 0.13570936024188995, -0.16341689229011536, -0.16509468853473663, 1.1694086790084839, -0.1179966852068901, 0.08315853774547577, -0.03268098086118698]} +{"t": 27.8461, "q": [-0.36427441239356995, -0.010391868650913239, 0.007445894181728363, 0.6089733242988586, -0.2828364968299866, 0.003452485427260399, -0.35812145471572876, 0.012220713309943676, -0.0036425956059247255, 0.6322557330131531, -0.3326347768306732, -0.011612702161073685, 0.005222839303314686, 0.04625247046351433, -0.024291571229696274, -3.0491943359375, 2.247509717941284, 1.83017098903656, 0.29604631662368774, -0.1347745954990387, -0.08979780226945877, 0.02003762498497963, 0.1356734186410904, -0.16231434047222137, -0.16507071256637573, 1.1693967580795288, -0.1179727166891098, 0.08315853774547577, -0.03268098086118698]} +{"t": 27.863, "q": [-0.3642914593219757, -0.010383346118032932, 0.007338759023696184, 0.6089988946914673, -0.28284066915512085, 0.003445238107815385, -0.3580958843231201, 0.012229235842823982, -0.0036292036529630423, 0.6322557330131531, -0.3326347768306732, -0.011612702161073685, 0.005249623209238052, 0.04624491184949875, -0.02429625764489174, -3.049182415008545, 2.247509717941284, 1.8301589488983154, 0.29602235555648804, -0.13478657603263855, -0.08982177078723907, 0.02003762498497963, 0.1356734186410904, -0.16092418134212494, -0.16509468853473663, 1.1693967580795288, -0.11796072870492935, 0.08317052572965622, -0.03266899660229683]} +{"t": 27.8797, "q": [-0.36430850625038147, -0.010383346118032932, 0.0072584073059260845, 0.6089988946914673, -0.2828406095504761, 0.0034596798941493034, -0.3581129312515259, 0.012229235842823982, -0.003669379511848092, 0.6322386860847473, -0.3326471745967865, -0.01159079372882843, 0.005222839303314686, 0.04625247046351433, -0.024291571229696274, -3.049182415008545, 2.247509717941284, 1.8301589488983154, 0.29602235555648804, -0.13478657603263855, -0.08980978280305862, 0.02003762498497963, 0.13570936024188995, -0.15947408974170685, -0.16509468853473663, 1.1693967580795288, -0.11796072870492935, 0.08317052572965622, -0.032704949378967285]} +{"t": 27.8965, "q": [-0.36431702971458435, -0.010391868650913239, 0.007245015352964401, 0.6089733242988586, -0.28284066915512085, 0.003445238107815385, -0.3581129312515259, 0.012237757444381714, -0.0036158119328320026, 0.6322386860847473, -0.3326430320739746, -0.011598090641200542, 0.005249623209238052, 0.04625247046351433, -0.024291571229696274, -3.0491464138031006, 2.247485637664795, 1.830111026763916, 0.2960103750228882, -0.13481055200099945, -0.08979780226945877, 0.02003762498497963, 0.13575729727745056, -0.1580120027065277, -0.16508270800113678, 1.1694086790084839, -0.11796072870492935, 0.08315853774547577, -0.032704949378967285]} +{"t": 27.9134, "q": [-0.3642914593219757, -0.010383346118032932, 0.007178056053817272, 0.6089903712272644, -0.28283652663230896, 0.0034380434080958366, -0.358104407787323, 0.012220713309943676, -0.0036024199798703194, 0.6322472095489502, -0.332651287317276, -0.011583496816456318, 0.005196055397391319, 0.04625247046351433, -0.024291571229696274, -3.0491583347320557, 2.247485637664795, 1.8300631046295166, 0.29602235555648804, -0.13473863899707794, -0.08980978280305862, 0.02003762498497963, 0.13585317134857178, -0.15631024539470673, -0.16508270800113678, 1.1694446802139282, -0.11796072870492935, 0.08319449424743652, -0.03269296512007713]} +{"t": 27.9302, "q": [-0.364342600107193, -0.010391868650913239, 0.007164664100855589, 0.6089818477630615, -0.28284066915512085, 0.003445238107815385, -0.35812145471572876, 0.012229235842823982, -0.003562244353815913, 0.6322557330131531, -0.3326719403266907, -0.011547012254595757, 0.005155880004167557, 0.04626007005572319, -0.024296648800373077, -3.0491464138031006, 2.24749755859375, 1.830039143562317, 0.2960103750228882, -0.134750634431839, -0.08982177078723907, 0.02003762498497963, 0.1359250843524933, -0.15477627515792847, -0.16508270800113678, 1.169468641281128, -0.11796072870492935, 0.08315853774547577, -0.032704949378967285]} +{"t": 27.9469, "q": [-0.3643511235713959, -0.010383346118032932, 0.007164664100855589, 0.6089988946914673, -0.2828531563282013, 0.0034379379358142614, -0.35812145471572876, 0.012203669175505638, -0.00354885240085423, 0.6322301626205444, -0.33266782760620117, -0.011554309166967869, 0.00508892023935914, 0.04626011848449707, -0.024306414648890495, -3.049182415008545, 2.247485637664795, 1.8300271034240723, 0.29602235555648804, -0.134750634431839, -0.08982177078723907, 0.02003762498497963, 0.1359730213880539, -0.15331418812274933, -0.1651066690683365, 1.1695046424865723, -0.11796072870492935, 0.08317052572965622, -0.03268098086118698]} +{"t": 27.9637, "q": [-0.3643511235713959, -0.010391868650913239, 0.007151272147893906, 0.6089818477630615, -0.28284481167793274, 0.0034524325747042894, -0.35812145471572876, 0.012203669175505638, -0.003562244353815913, 0.6322216391563416, -0.3326719105243683, -0.011561531573534012, 0.00512909609824419, 0.04627527669072151, -0.024306805804371834, -3.0491583347320557, 2.247485637664795, 1.830039143562317, 0.2960343360900879, -0.13478657603263855, -0.08982177078723907, 0.020013656467199326, 0.13593706488609314, -0.15191203355789185, -0.16509468853473663, 1.169528603553772, -0.11793676018714905, 0.08315853774547577, -0.03269296512007713]} +{"t": 27.9804, "q": [-0.36435964703559875, -0.010383346118032932, 0.007151272147893906, 0.6089903712272644, -0.2828530967235565, 0.0034523799549788237, -0.35812145471572876, 0.012220713309943676, -0.0035220684949308634, 0.6322216391563416, -0.3326883912086487, -0.011546846479177475, 0.00508892023935914, 0.04626016318798065, -0.024316176772117615, -3.049182415008545, 2.247485637664795, 1.8300271034240723, 0.29604631662368774, -0.13476261496543884, -0.08980978280305862, 0.020061593502759933, 0.1359969824552536, -0.15071362257003784, -0.16507071256637573, 1.169540524482727, -0.1179487481713295, 0.08318250626325607, -0.03269296512007713]} +{"t": 27.9971, "q": [-0.3643511235713959, -0.010408911854028702, 0.007164664100855589, 0.6089818477630615, -0.28284481167793274, 0.0034524325747042894, -0.3581129312515259, 0.012195147573947906, -0.003481892868876457, 0.6322045922279358, -0.33267608284950256, -0.011539696715772152, 0.00508892023935914, 0.04625255987048149, -0.02431110106408596, -3.0491943359375, 2.247485637664795, 1.830039143562317, 0.29602235555648804, -0.1347266584634781, -0.08982177078723907, 0.02003762498497963, 0.13600897789001465, -0.1495271772146225, -0.16504675149917603, 1.169600486755371, -0.11791279166936874, 0.08317052572965622, -0.03269296512007713]} +{"t": 28.0138, "q": [-0.36436817049980164, -0.010374823585152626, 0.007178056053817272, 0.6089733242988586, -0.2828614115715027, 0.003452327335253358, -0.3581385016441345, 0.012203669175505638, -0.003481892868876457, 0.6322045922279358, -0.33267608284950256, -0.011539696715772152, 0.00512909609824419, 0.04624495655298233, -0.024306021630764008, -3.0491583347320557, 2.247485637664795, 1.8300151824951172, 0.2960103750228882, -0.134750634431839, -0.08984573930501938, 0.02003762498497963, 0.13603293895721436, -0.14844860136508942, -0.1651066690683365, 1.1696484088897705, -0.11796072870492935, 0.08317052572965622, -0.03268098086118698]} +{"t": 28.0306, "q": [-0.36436817049980164, -0.010391868650913239, 0.0071914480067789555, 0.6089903712272644, -0.2828572988510132, 0.0034451326355338097, -0.3581470251083374, 0.012195147573947906, -0.0035220684949308634, 0.63218754529953, -0.33268019556999207, -0.01154692005366087, 0.0051424880512058735, 0.04625255987048149, -0.02431110106408596, -3.049182415008545, 2.24749755859375, 1.8300151824951172, 0.2960103750228882, -0.13478657603263855, -0.08980978280305862, 0.02003762498497963, 0.1360688954591751, -0.1474299430847168, -0.16508270800113678, 1.1696844100952148, -0.11798469722270966, 0.08318250626325607, -0.03269296512007713]} +{"t": 28.0475, "q": [-0.36436817049980164, -0.010391868650913239, 0.0071914480067789555, 0.6089903712272644, -0.2828572988510132, 0.0034451326355338097, -0.3581385016441345, 0.012178102508187294, -0.0034952848218381405, 0.6321704983711243, -0.33268022537231445, -0.01153239980340004, 0.005182663444429636, 0.04626767709851265, -0.02430172823369503, -3.0491464138031006, 2.24749755859375, 1.8300151824951172, 0.29599836468696594, -0.13478657603263855, -0.08980978280305862, 0.02003762498497963, 0.1360688954591751, -0.14654310047626495, -0.16509468853473663, 1.16969633102417, -0.11802065372467041, 0.08318250626325607, -0.03269296512007713]} +{"t": 28.0643, "q": [-0.36435964703559875, -0.010391868650913239, 0.0071914480067789555, 0.6089818477630615, -0.28286969661712646, 0.003466734429821372, -0.35817259550094604, 0.012178102508187294, -0.00354885240085423, 0.6321449279785156, -0.3326883912086487, -0.011546846479177475, 0.005182663444429636, 0.04624495655298233, -0.024306021630764008, -3.04917049407959, 2.247509717941284, 1.8300031423568726, 0.29602235555648804, -0.13471467792987823, -0.08979780226945877, 0.020025640726089478, 0.13609285652637482, -0.14569222927093506, -0.1651066690683365, 1.1697202920913696, -0.11798469722270966, 0.08315853774547577, -0.03269296512007713]} +{"t": 28.081, "q": [-0.3643766939640045, -0.010391868650913239, 0.0071914480067789555, 0.6089818477630615, -0.2828613817691803, 0.00346676935441792, -0.3581470251083374, 0.012161058373749256, -0.0035220684949308634, 0.6321364045143127, -0.33268845081329346, -0.011532326228916645, 0.00516927195712924, 0.04624495655298233, -0.024306021630764008, -3.0491464138031006, 2.24749755859375, 1.8300151824951172, 0.29604631662368774, -0.1347745954990387, -0.08980978280305862, 0.02003762498497963, 0.1360688954591751, -0.14488928020000458, -0.1651066690683365, 1.1698042154312134, -0.11796072870492935, 0.08315853774547577, -0.03269296512007713]} +{"t": 28.098, "q": [-0.3643766939640045, -0.01040039025247097, 0.007204839959740639, 0.6089903712272644, -0.2828613817691803, 0.00346676935441792, -0.35816407203674316, 0.012161058373749256, -0.0035086767747998238, 0.6321279406547546, -0.33268022537231445, -0.01153239980340004, 0.00516927195712924, 0.04624495655298233, -0.024306021630764008, -3.04917049407959, 2.247485637664795, 1.8299912214279175, 0.2960343360900879, -0.13476261496543884, -0.08979780226945877, 0.02004960924386978, 0.1360688954591751, -0.1441342830657959, -0.16511864960193634, 1.1698161363601685, -0.1179727166891098, 0.08314655721187592, -0.032704949378967285]} +{"t": 28.1147, "q": [-0.3643340766429901, -0.01040039025247097, 0.007204839959740639, 0.6089903712272644, -0.2828406095504761, 0.0034596798941493034, -0.3581555485725403, 0.012161058373749256, -0.0035220684949308634, 0.6321364045143127, -0.3326719403266907, -0.011547012254595757, 0.005155880004167557, 0.04624491184949875, -0.02429625764489174, -3.0491344928741455, 2.247485637664795, 1.8299791812896729, 0.2960582971572876, -0.13476261496543884, -0.08978581428527832, 0.02003762498497963, 0.13605691492557526, -0.1435350626707077, -0.16508270800113678, 1.1698521375656128, -0.11798469722270966, 0.08315853774547577, -0.032704949378967285]} +{"t": 28.1314, "q": [-0.3643340766429901, -0.010383346118032932, 0.007218231912702322, 0.6089818477630615, -0.28284481167793274, 0.0034524325747042894, -0.3581555485725403, 0.012178102508187294, -0.0035354604478925467, 0.6321534514427185, -0.3326636850833893, -0.011561606079339981, 0.005115704145282507, 0.04625247046351433, -0.024291571229696274, -3.0491464138031006, 2.247485637664795, 1.8299912214279175, 0.2960343360900879, -0.1347745954990387, -0.08980978280305862, 0.020025640726089478, 0.1360688954591751, -0.14311562478542328, -0.1651066690683365, 1.1698881387710571, -0.11798469722270966, 0.08317052572965622, -0.03268098086118698]} +{"t": 28.1482, "q": [-0.36431702971458435, -0.010391868650913239, 0.007218231912702322, 0.6089903712272644, -0.28284892439842224, 0.0034596272744238377, -0.3581470251083374, 0.012169580906629562, -0.00354885240085423, 0.6321534514427185, -0.3326595425605774, -0.011568902991712093, 0.00508892023935914, 0.04624495655298233, -0.024306021630764008, -3.0491344928741455, 2.247509717941284, 1.8299791812896729, 0.29602235555648804, -0.13476261496543884, -0.08980978280305862, 0.020025640726089478, 0.13611683249473572, -0.14278006553649902, -0.16514262557029724, 1.1699600219726562, -0.11798469722270966, 0.08317052572965622, -0.03268098086118698]} +{"t": 28.1651, "q": [-0.3642914593219757, -0.010391868650913239, 0.007245015352964401, 0.6089733242988586, -0.28284066915512085, 0.003445238107815385, -0.3581385016441345, 0.012178102508187294, -0.00354885240085423, 0.6321790218353271, -0.3326513171195984, -0.011568976566195488, 0.005062136333435774, 0.04623735696077347, -0.024300944060087204, -3.0491583347320557, 2.247485637664795, 1.8300031423568726, 0.2960582971572876, -0.1347266584634781, -0.08979780226945877, 0.02004960924386978, 0.13609285652637482, -0.14252838492393494, -0.16511864960193634, 1.1700079441070557, -0.1179966852068901, 0.08318250626325607, -0.03268098086118698]} +{"t": 28.1818, "q": [-0.3642914593219757, -0.010408911854028702, 0.0072584073059260845, 0.6089733242988586, -0.28282812237739563, 0.003466980066150427, -0.35812145471572876, 0.012203669175505638, -0.003575636073946953, 0.6321960687637329, -0.3326388895511627, -0.011605405248701572, 0.005021960940212011, 0.04623735696077347, -0.024300944060087204, -3.0491583347320557, 2.247485637664795, 1.8299912214279175, 0.29604631662368774, -0.13473863899707794, -0.08978581428527832, 0.02003762498497963, 0.13605691492557526, -0.14242053031921387, -0.16511864960193634, 1.1700438261032104, -0.1179727166891098, 0.08318250626325607, -0.032704949378967285]} +{"t": 28.1985, "q": [-0.3642829358577728, -0.010391868650913239, 0.007285191211849451, 0.6089903712272644, -0.28282812237739563, 0.003466980066150427, -0.358104407787323, 0.012220713309943676, -0.003575636073946953, 0.6322216391563416, -0.33260592818260193, -0.011634740978479385, 0.005048744846135378, 0.04625247046351433, -0.024291571229696274, -3.0491583347320557, 2.247485637664795, 1.8299791812896729, 0.2960343360900879, -0.13473863899707794, -0.08978581428527832, 0.020025640726089478, 0.1360688954591751, -0.142408549785614, -0.16508270800113678, 1.1701877117156982, -0.11796072870492935, 0.08315853774547577, -0.03269296512007713]} +{"t": 28.2152, "q": [-0.3642914593219757, -0.01040039025247097, 0.007285191211849451, 0.6089818477630615, -0.28282397985458374, 0.0034597853664308786, -0.358104407787323, 0.012237757444381714, -0.003655987558886409, 0.6322216391563416, -0.3326183259487152, -0.011612850241363049, 0.005021960940212011, 0.04625247046351433, -0.024291571229696274, -3.049182415008545, 2.247485637664795, 1.8299791812896729, 0.29604631662368774, -0.1348225325345993, -0.08977383375167847, 0.02003762498497963, 0.13609285652637482, -0.1423606127500534, -0.16507071256637573, 1.17043936252594, -0.11798469722270966, 0.08317052572965622, -0.03269296512007713]} +{"t": 28.232, "q": [-0.36430850625038147, -0.010391868650913239, 0.007271799258887768, 0.6089903712272644, -0.28283652663230896, 0.0034380434080958366, -0.3580532670021057, 0.01224627997726202, -0.003669379511848092, 0.6322301626205444, -0.3326265811920166, -0.011598256416618824, 0.005021960940212011, 0.04626758396625519, -0.024282200261950493, -3.049182415008545, 2.247485637664795, 1.8299791812896729, 0.29602235555648804, -0.1347266584634781, -0.08979780226945877, 0.02003762498497963, 0.13609285652637482, -0.14237259328365326, -0.16509468853473663, 1.1712303161621094, -0.11796072870492935, 0.08317052572965622, -0.03271693363785744]} +{"t": 28.2488, "q": [-0.3642914593219757, -0.010391868650913239, 0.007245015352964401, 0.6089903712272644, -0.2828323543071747, 0.0034452907275408506, -0.35799363255500793, 0.01224627997726202, -0.0036292036529630423, 0.6322301626205444, -0.3326265811920166, -0.011598256416618824, 0.0049817850813269615, 0.04623730853199959, -0.024291178211569786, -3.04917049407959, 2.247509717941284, 1.8299552202224731, 0.29602235555648804, -0.1347266584634781, -0.08980978280305862, 0.02003762498497963, 0.13611683249473572, -0.14234863221645355, -0.16507071256637573, 1.172165036201477, -0.11793676018714905, 0.08317052572965622, -0.03271693363785744]} +{"t": 28.2655, "q": [-0.3642914593219757, -0.010374823585152626, 0.0072584073059260845, 0.6089903712272644, -0.2828282415866852, 0.0034380960278213024, -0.35798510909080505, 0.01224627997726202, -0.0036425956059247255, 0.6322557330131531, -0.3326224684715271, -0.011591015383601189, 0.005021960940212011, 0.04623735696077347, -0.024300944060087204, -3.0491943359375, 2.247509717941284, 1.8300031423568726, 0.2960103750228882, -0.1347745954990387, -0.08980978280305862, 0.02003762498497963, 0.13611683249473572, -0.14237259328365326, -0.16509468853473663, 1.1729919910430908, -0.1179966852068901, 0.08315853774547577, -0.032704949378967285]} +{"t": 28.2823, "q": [-0.36430850625038147, -0.010374823585152626, 0.007245015352964401, 0.6089733242988586, -0.2828322947025299, 0.003459732746705413, -0.35794249176979065, 0.012288890779018402, -0.0036425956059247255, 0.6322301626205444, -0.3326306939125061, -0.011590959504246712, 0.005021960940212011, 0.04625247046351433, -0.024291571229696274, -3.04917049407959, 2.247485637664795, 1.8299912214279175, 0.2960582971572876, -0.1347266584634781, -0.08982177078723907, 0.020025640726089478, 0.13609285652637482, -0.14239656925201416, -0.16508270800113678, 1.1740226745605469, -0.11796072870492935, 0.08318250626325607, -0.03271693363785744]} +{"t": 28.2992, "q": [-0.364342600107193, -0.010357779450714588, 0.007231623865664005, 0.6089903712272644, -0.2828281819820404, 0.0034525380469858646, -0.35793396830558777, 0.012280368246138096, -0.0036292036529630423, 0.6322472095489502, -0.3326306939125061, -0.011590959504246712, 0.004995177034288645, 0.04625247046351433, -0.024291571229696274, -3.049182415008545, 2.247485637664795, 1.8299912214279175, 0.29604631662368774, -0.134750634431839, -0.08980978280305862, 0.02003762498497963, 0.13609285652637482, -0.14242053031921387, -0.1651066690683365, 1.1752090454101562, -0.1179966852068901, 0.08317052572965622, -0.03272891789674759]} +{"t": 28.3159, "q": [-0.36432555317878723, -0.010374823585152626, 0.007218231912702322, 0.6089988946914673, -0.2828323543071747, 0.0034452907275408506, -0.35795101523399353, 0.012263324111700058, -0.0036024199798703194, 0.6322472095489502, -0.3326389789581299, -0.011576347053050995, 0.005021960940212011, 0.04623735696077347, -0.024300944060087204, -3.049206256866455, 2.247509717941284, 1.8299912214279175, 0.29604631662368774, -0.1347266584634781, -0.08984573930501938, 0.02003762498497963, 0.13609285652637482, -0.14250442385673523, -0.1651066690683365, 1.1769108772277832, -0.11798469722270966, 0.08314655721187592, -0.03272891789674759]} +{"t": 28.3327, "q": [-0.36430850625038147, -0.010374823585152626, 0.007218231912702322, 0.6089818477630615, -0.2828407287597656, 0.0034307960886508226, -0.35795101523399353, 0.012280368246138096, -0.003575636073946953, 0.6322216391563416, -0.332634836435318, -0.011583643965423107, 0.005048744846135378, 0.04625247046351433, -0.024291571229696274, -3.049182415008545, 2.24749755859375, 1.8299791812896729, 0.29604631662368774, -0.1347266584634781, -0.08982177078723907, 0.020013656467199326, 0.1360688954591751, -0.1426362544298172, -0.1651066690683365, 1.179391622543335, -0.1179487481713295, 0.08315853774547577, -0.03271693363785744]} +{"t": 28.3495, "q": [-0.3643511235713959, -0.010357779450714588, 0.007231623865664005, 0.6089818477630615, -0.28284066915512085, 0.003445238107815385, -0.35795101523399353, 0.012263324111700058, -0.003575636073946953, 0.6322216391563416, -0.33265548944473267, -0.01154716033488512, 0.005048744846135378, 0.04623735696077347, -0.024300944060087204, -3.0491943359375, 2.247485637664795, 1.8299791812896729, 0.2960582971572876, -0.13476261496543884, -0.08980978280305862, 0.020013656467199326, 0.1360688954591751, -0.1426602154970169, -0.16514262557029724, 1.1816205978393555, -0.11796072870492935, 0.08313456922769547, -0.032704949378967285]} +{"t": 28.3662, "q": [-0.36435964703559875, -0.010374823585152626, 0.007218231912702322, 0.6089818477630615, -0.2828531563282013, 0.0034379379358142614, -0.35794249176979065, 0.012254801578819752, -0.003575636073946953, 0.6322216391563416, -0.33265548944473267, -0.01154716033488512, 0.005048744846135378, 0.04623735696077347, -0.024300944060087204, -3.049182415008545, 2.24747371673584, 1.8299791812896729, 0.29604631662368774, -0.13478657603263855, -0.08980978280305862, 0.02004960924386978, 0.135949045419693, -0.14262425899505615, -0.16509468853473663, 1.1838736534118652, -0.1179727166891098, 0.08315853774547577, -0.03274090215563774]} +{"t": 28.383, "q": [-0.364342600107193, -0.010366301983594894, 0.007204839959740639, 0.6089903712272644, -0.28284481167793274, 0.0034524325747042894, -0.35795101523399353, 0.012254801578819752, -0.003562244353815913, 0.6322045922279358, -0.3326636850833893, -0.011561606079339981, 0.005021960940212011, 0.04623735696077347, -0.024300944060087204, -3.0492184162139893, 2.24747371673584, 1.8299672603607178, 0.29604631662368774, -0.13476261496543884, -0.08980978280305862, 0.02003762498497963, 0.13579325377941132, -0.1426122784614563, -0.16509468853473663, 1.1861627101898193, -0.1179487481713295, 0.08313456922769547, -0.03271693363785744]} +{"t": 28.3997, "q": [-0.3643340766429901, -0.010366301983594894, 0.007245015352964401, 0.6089903712272644, -0.2828572392463684, 0.003459574654698372, -0.35794249176979065, 0.01224627997726202, -0.00354885240085423, 0.6321960687637329, -0.33265963196754456, -0.011539863422513008, 0.005035352893173695, 0.04624495655298233, -0.024306021630764008, -3.0492422580718994, 2.24749755859375, 1.8299912214279175, 0.29607027769088745, -0.13476261496543884, -0.08980978280305862, 0.02003762498497963, 0.13581722974777222, -0.14262425899505615, -0.1651546061038971, 1.187852382659912, -0.11796072870492935, 0.08314655721187592, -0.03272891789674759]} +{"t": 28.4164, "q": [-0.36432555317878723, -0.010374823585152626, 0.007218231912702322, 0.6090074181556702, -0.28284481167793274, 0.0034524325747042894, -0.35795101523399353, 0.01224627997726202, -0.0035220684949308634, 0.6322045922279358, -0.3326636850833893, -0.011561606079339981, 0.005182663444429636, 0.04623735696077347, -0.024300944060087204, -3.049182415008545, 2.247485637664795, 1.8299672603607178, 0.29607027769088745, -0.13481055200099945, -0.08978581428527832, 0.02003762498497963, 0.1359250843524933, -0.14260029792785645, -0.16514262557029724, 1.1889909505844116, -0.11798469722270966, 0.08315853774547577, -0.03272891789674759]} +{"t": 28.4332, "q": [-0.36436817049980164, -0.010374823585152626, 0.007218231912702322, 0.6089818477630615, -0.28284481167793274, 0.0034524325747042894, -0.35795101523399353, 0.0121866250410676, -0.0035354604478925467, 0.6321704983711243, -0.3326719403266907, -0.011547012254595757, 0.005182663444429636, 0.04625247046351433, -0.024291571229696274, -3.049074411392212, 2.247485637664795, 1.8299193382263184, 0.2961062490940094, -0.13478657603263855, -0.08978581428527832, 0.020025640726089478, 0.13600897789001465, -0.14262425899505615, -0.1651546061038971, 1.1897938251495361, -0.11796072870492935, 0.08317052572965622, -0.03271693363785744]} +{"t": 28.4499, "q": [-0.364342600107193, -0.010357779450714588, 0.0071914480067789555, 0.6089903712272644, -0.28284481167793274, 0.0034524325747042894, -0.3579680621623993, 0.012212191708385944, -0.0035220684949308634, 0.6321790218353271, -0.33265963196754456, -0.011539863422513008, 0.0051424880512058735, 0.04623735696077347, -0.024300944060087204, -3.0490145683288574, 2.24749755859375, 1.8298354148864746, 0.29607027769088745, -0.13476261496543884, -0.08978581428527832, 0.02003762498497963, 0.13600897789001465, -0.14260029792785645, -0.16508270800113678, 1.1905128955841064, -0.1179966852068901, 0.08314655721187592, -0.032704949378967285]} +{"t": 28.4667, "q": [-0.36432555317878723, -0.010374823585152626, 0.007164664100855589, 0.6089903712272644, -0.2828448414802551, 0.003437990555539727, -0.3579765856266022, 0.012212191708385944, -0.0035220684949308634, 0.6321790218353271, -0.33265548944473267, -0.01154716033488512, 0.005155880004167557, 0.04623735696077347, -0.024300944060087204, -3.0490505695343018, 2.247509717941284, 1.829811453819275, 0.2961062490940094, -0.134750634431839, -0.08977383375167847, 0.020013656467199326, 0.13603293895721436, -0.1425883173942566, -0.1651306450366974, 1.1910642385482788, -0.1179727166891098, 0.08314655721187592, -0.03271693363785744]} +{"t": 28.4835, "q": [-0.36436817049980164, -0.010374823585152626, 0.0071914480067789555, 0.6089903712272644, -0.2828364968299866, 0.003452485427260399, -0.3579595386981964, 0.012220713309943676, -0.0035354604478925467, 0.6321790218353271, -0.3326595425605774, -0.011568902991712093, 0.00512909609824419, 0.04622974991798401, -0.02429586462676525, -3.0490386486053467, 2.247509717941284, 1.8297874927520752, 0.2961062490940094, -0.13476261496543884, -0.08980978280305862, 0.02004960924386978, 0.1360688954591751, -0.1425883173942566, -0.1651066690683365, 1.191136121749878, -0.1179727166891098, 0.08315853774547577, -0.03271693363785744]} +{"t": 28.5003, "q": [-0.3643511235713959, -0.010366301983594894, 0.007164664100855589, 0.6089818477630615, -0.28284481167793274, 0.0034524325747042894, -0.3579595386981964, 0.012203669175505638, -0.003468500915914774, 0.6321790218353271, -0.33265963196754456, -0.011539863422513008, 0.00508892023935914, 0.04625247046351433, -0.024291571229696274, -3.0490505695343018, 2.24749755859375, 1.8297395706176758, 0.2961062490940094, -0.13478657603263855, -0.08979780226945877, 0.020025640726089478, 0.1360688954591751, -0.1425883173942566, -0.16511864960193634, 1.1911840438842773, -0.11802065372467041, 0.08315853774547577, -0.03271693363785744]} +{"t": 28.517, "q": [-0.36430850625038147, -0.010374823585152626, 0.007204839959740639, 0.6089988946914673, -0.28284481167793274, 0.0034524325747042894, -0.3579595386981964, 0.012212191708385944, -0.0034952848218381405, 0.6321790218353271, -0.3326430916786194, -0.011569050140678883, 0.00508892023935914, 0.04622974991798401, -0.02429586462676525, -3.049062490463257, 2.247509717941284, 1.8297035694122314, 0.29609423875808716, -0.1347745954990387, -0.08982177078723907, 0.02003762498497963, 0.13605691492557526, -0.1426122784614563, -0.1651306450366974, 1.1912919282913208, -0.1179727166891098, 0.08314655721187592, -0.03272891789674759]} +{"t": 28.5338, "q": [-0.3643340766429901, -0.010374823585152626, 0.007204839959740639, 0.6089988946914673, -0.28284066915512085, 0.003445238107815385, -0.3579680621623993, 0.012212191708385944, -0.0035086767747998238, 0.6321790218353271, -0.3326472342014313, -0.01156175322830677, 0.005021960940212011, 0.046222150325775146, -0.024290787056088448, -3.049086570739746, 2.247509717941284, 1.8297035694122314, 0.29609423875808716, -0.13478657603263855, -0.08979780226945877, 0.02004960924386978, 0.13605691492557526, -0.1426122784614563, -0.16511864960193634, 1.1913158893585205, -0.1179727166891098, 0.08314655721187592, -0.03271693363785744]} +{"t": 28.5506, "q": [-0.3642829358577728, -0.010366301983594894, 0.007218231912702322, 0.6089903712272644, -0.2828364968299866, 0.003452485427260399, -0.3579595386981964, 0.012229235842823982, -0.003589028026908636, 0.6322472095489502, -0.3326430916786194, -0.011569050140678883, 0.005048744846135378, 0.04622979834675789, -0.02430563047528267, -3.049086570739746, 2.247509717941284, 1.8296796083450317, 0.2961062490940094, -0.13481055200099945, -0.08979780226945877, 0.02003762498497963, 0.13603293895721436, -0.1425883173942566, -0.16516658663749695, 1.1913518905639648, -0.11798469722270966, 0.08315853774547577, -0.03271693363785744]} +{"t": 28.5673, "q": [-0.36431702971458435, -0.010374823585152626, 0.007245015352964401, 0.6089988946914673, -0.2828322947025299, 0.003459732746705413, -0.3579595386981964, 0.012237757444381714, -0.003562244353815913, 0.6322301626205444, -0.3326389789581299, -0.011576347053050995, 0.00508892023935914, 0.04623735696077347, -0.024300944060087204, -3.0491225719451904, 2.247509717941284, 1.829655647277832, 0.2961062490940094, -0.1347745954990387, -0.08979780226945877, 0.02003762498497963, 0.13603293895721436, -0.14254038035869598, -0.1651306450366974, 1.1913877725601196, -0.11796072870492935, 0.08312258869409561, -0.03272891789674759]} +{"t": 28.5842, "q": [-0.36432555317878723, -0.010383346118032932, 0.0072584073059260845, 0.6089988946914673, -0.28283652663230896, 0.0034380434080958366, -0.3579595386981964, 0.01224627997726202, -0.0036024199798703194, 0.6322216391563416, -0.33263900876045227, -0.011561809107661247, 0.005021960940212011, 0.04623735696077347, -0.024300944060087204, -3.0491104125976562, 2.247509717941284, 1.8296436071395874, 0.29609423875808716, -0.13471467792987823, -0.08980978280305862, 0.02003762498497963, 0.13605691492557526, -0.14254038035869598, -0.1651306450366974, 1.191423773765564, -0.11798469722270966, 0.08314655721187592, -0.03272891789674759]} +{"t": 28.6009, "q": [-0.3643340766429901, -0.010374823585152626, 0.007231623865664005, 0.6090074181556702, -0.28284066915512085, 0.003445238107815385, -0.3579595386981964, 0.01224627997726202, -0.003575636073946953, 0.6322301626205444, -0.3326307535171509, -0.011576402932405472, 0.004995177034288645, 0.04623735696077347, -0.024300944060087204, -3.0491225719451904, 2.247509717941284, 1.8296436071395874, 0.2961062490940094, -0.1347745954990387, -0.08979780226945877, 0.02004960924386978, 0.13605691492557526, -0.14246846735477448, -0.1651306450366974, 1.191435694694519, -0.11798469722270966, 0.08315853774547577, -0.032704949378967285]} +{"t": 28.6176, "q": [-0.36431702971458435, -0.010374823585152626, 0.007245015352964401, 0.6089988946914673, -0.28284066915512085, 0.003445238107815385, -0.35794249176979065, 0.012254801578819752, -0.003575636073946953, 0.6322386860847473, -0.3326389789581299, -0.011576347053050995, 0.005048744846135378, 0.04622979834675789, -0.02430563047528267, -3.0491225719451904, 2.247509717941284, 1.8296196460723877, 0.2960822582244873, -0.1347745954990387, -0.08983375132083893, 0.02004960924386978, 0.1360688954591751, -0.142408549785614, -0.16511864960193634, 1.1914596557617188, -0.1179966852068901, 0.08314655721187592, -0.03271693363785744]} +{"t": 28.6344, "q": [-0.3642914593219757, -0.010374823585152626, 0.0072584073059260845, 0.609015941619873, -0.2828364968299866, 0.003452485427260399, -0.35795101523399353, 0.012237757444381714, -0.003575636073946953, 0.6322301626205444, -0.3326389789581299, -0.011576347053050995, 0.0049817850813269615, 0.04622974991798401, -0.02429586462676525, -3.0491344928741455, 2.247509717941284, 1.8296196460723877, 0.2960822582244873, -0.13476261496543884, -0.08980978280305862, 0.02003762498497963, 0.13605691492557526, -0.1423126757144928, -0.16509468853473663, 1.1915075778961182, -0.1179966852068901, 0.08314655721187592, -0.03274090215563774]} +{"t": 28.6511, "q": [-0.3642999827861786, -0.010374823585152626, 0.007285191211849451, 0.6090074181556702, -0.2828364968299866, 0.003452485427260399, -0.35794249176979065, 0.012254801578819752, -0.0036292036529630423, 0.6322301626205444, -0.3326389789581299, -0.011576347053050995, 0.005048744846135378, 0.04622979834675789, -0.02430563047528267, -3.0491344928741455, 2.247509717941284, 1.8296196460723877, 0.2960582971572876, -0.1347985714673996, -0.08979780226945877, 0.02003762498497963, 0.13609285652637482, -0.14219282567501068, -0.16511864960193634, 1.1915675401687622, -0.1179966852068901, 0.08317052572965622, -0.03272891789674759]} +{"t": 28.668, "q": [-0.36430850625038147, -0.010374823585152626, 0.007285191211849451, 0.6089988946914673, -0.28284066915512085, 0.003445238107815385, -0.3579595386981964, 0.012229235842823982, -0.0036024199798703194, 0.6322301626205444, -0.3326348662376404, -0.01156910602003336, 0.005048744846135378, 0.04622979834675789, -0.02430563047528267, -3.0491344928741455, 2.247509717941284, 1.8296077251434326, 0.2960582971572876, -0.1347985714673996, -0.08982177078723907, 0.02004960924386978, 0.1360688954591751, -0.1420130729675293, -0.1651066690683365, 1.191591501235962, -0.1179966852068901, 0.08314655721187592, -0.03274090215563774]} +{"t": 28.6847, "q": [-0.3643340766429901, -0.010374823585152626, 0.007285191211849451, 0.6089988946914673, -0.28284066915512085, 0.003445238107815385, -0.35794249176979065, 0.012254801578819752, -0.003575636073946953, 0.6322216391563416, -0.3326266407966614, -0.011569180525839329, 0.00508892023935914, 0.04622979834675789, -0.02430563047528267, -3.0491464138031006, 2.247509717941284, 1.829595685005188, 0.2960582971572876, -0.1347745954990387, -0.08980978280305862, 0.02003762498497963, 0.13603293895721436, -0.14172545075416565, -0.16508270800113678, 1.1917352676391602, -0.11796072870492935, 0.08314655721187592, -0.03275288641452789]} +{"t": 28.7014, "q": [-0.364342600107193, -0.010391868650913239, 0.007271799258887768, 0.6089988946914673, -0.28284066915512085, 0.003445238107815385, -0.3579254448413849, 0.012229235842823982, -0.00354885240085423, 0.6322216391563416, -0.3326389789581299, -0.011576347053050995, 0.005021960940212011, 0.04622979834675789, -0.02430563047528267, -3.0491344928741455, 2.247485637664795, 1.8295717239379883, 0.2960582971572876, -0.1347985714673996, -0.08980978280305862, 0.02003762498497963, 0.13603293895721436, -0.14144980907440186, -0.16514262557029724, 1.1920349597930908, -0.1179727166891098, 0.08315853774547577, -0.03274090215563774]} +{"t": 28.7182, "q": [-0.36432555317878723, -0.010374823585152626, 0.007298583164811134, 0.6090244650840759, -0.2828448414802551, 0.003437990555539727, -0.35795101523399353, 0.01224627997726202, -0.00354885240085423, 0.6322386860847473, -0.33263900876045227, -0.011561809107661247, 0.005008568987250328, 0.046207036823034286, -0.024300159886479378, -3.0491344928741455, 2.247509717941284, 1.8295598030090332, 0.29607027769088745, -0.1347266584634781, -0.08982177078723907, 0.02003762498497963, 0.13603293895721436, -0.1411142498254776, -0.1651306450366974, 1.1927180290222168, -0.11798469722270966, 0.08314655721187592, -0.03274090215563774]} +{"t": 28.7349, "q": [-0.36432555317878723, -0.010366301983594894, 0.007311975117772818, 0.6090244650840759, -0.28284481167793274, 0.0034524325747042894, -0.35794249176979065, 0.012229235842823982, -0.003575636073946953, 0.6322131156921387, -0.3326348662376404, -0.01156910602003336, 0.005021960940212011, 0.046206943690776825, -0.02428063191473484, -3.0491225719451904, 2.247509717941284, 1.8295358419418335, 0.29604631662368774, -0.1347266584634781, -0.08980978280305862, 0.020025640726089478, 0.13603293895721436, -0.14080266654491425, -0.1651306450366974, 1.19359290599823, -0.1179727166891098, 0.08313456922769547, -0.03274090215563774]} +{"t": 28.7516, "q": [-0.36430850625038147, -0.010374823585152626, 0.007285191211849451, 0.6090074181556702, -0.282848984003067, 0.0034451852552592754, -0.35794249176979065, 0.012237757444381714, -0.003575636073946953, 0.6322216391563416, -0.3326348662376404, -0.01156910602003336, 0.005021960940212011, 0.046206943690776825, -0.02428063191473484, -3.0491344928741455, 2.247509717941284, 1.8295358419418335, 0.2960343360900879, -0.1347745954990387, -0.08980978280305862, 0.02003762498497963, 0.13588912785053253, -0.14037123322486877, -0.16511864960193634, 1.1940842866897583, -0.1179487481713295, 0.08314655721187592, -0.03275288641452789]} +{"t": 28.7685, "q": [-0.3642914593219757, -0.010357779450714588, 0.007285191211849451, 0.609015941619873, -0.28284066915512085, 0.003445238107815385, -0.35794249176979065, 0.012237757444381714, -0.003589028026908636, 0.6322216391563416, -0.3326348662376404, -0.01156910602003336, 0.005155880004167557, 0.046199340373277664, -0.02427555061876774, -3.0491225719451904, 2.247509717941284, 1.8295358419418335, 0.2960343360900879, -0.13478657603263855, -0.08980978280305862, 0.02003762498497963, 0.1357692927122116, -0.14001169800758362, -0.1651066690683365, 1.194108247756958, -0.11796072870492935, 0.08313456922769547, -0.03274090215563774]} +{"t": 28.7853, "q": [-0.3642914593219757, -0.010383346118032932, 0.0072584073059260845, 0.6090244650840759, -0.2828364968299866, 0.003452485427260399, -0.35794249176979065, 0.01224627997726202, -0.0036425956059247255, 0.6322045922279358, -0.3326472342014313, -0.01156175322830677, 0.005222839303314686, 0.046199340373277664, -0.02427555061876774, -3.049098491668701, 2.247509717941284, 1.8294998407363892, 0.29602235555648804, -0.13481055200099945, -0.08980978280305862, 0.020025640726089478, 0.13568539917469025, -0.13962820172309875, -0.16511864960193634, 1.1941322088241577, -0.11796072870492935, 0.08313456922769547, -0.03275288641452789]} +{"t": 28.802, "q": [-0.3642914593219757, -0.010374823585152626, 0.007231623865664005, 0.609015941619873, -0.28283652663230896, 0.0034380434080958366, -0.35794249176979065, 0.012254801578819752, -0.0036292036529630423, 0.6322216391563416, -0.3326307535171509, -0.011576402932405472, 0.005263015162199736, 0.046199340373277664, -0.02427555061876774, -3.0491104125976562, 2.247509717941284, 1.82942795753479, 0.29602235555648804, -0.13481055200099945, -0.08979780226945877, 0.02004960924386978, 0.13558952510356903, -0.13912487030029297, -0.1651066690683365, 1.1941561698913574, -0.11793676018714905, 0.08313456922769547, -0.03274090215563774]} +{"t": 28.8189, "q": [-0.3642999827861786, -0.010383346118032932, 0.007204839959740639, 0.6089988946914673, -0.28284066915512085, 0.003445238107815385, -0.35793396830558777, 0.01224627997726202, -0.003669379511848092, 0.6322045922279358, -0.3326307535171509, -0.011576402932405472, 0.005356758367270231, 0.0461917370557785, -0.024270474910736084, -3.0491104125976562, 2.247509717941284, 1.8293440341949463, 0.29599836468696594, -0.13478657603263855, -0.08978581428527832, 0.02003762498497963, 0.13554158806800842, -0.13868145644664764, -0.16504675149917603, 1.1942399740219116, -0.1179727166891098, 0.08314655721187592, -0.03274090215563774]} +{"t": 28.8356, "q": [-0.3642914593219757, -0.010374823585152626, 0.0071914480067789555, 0.6090074181556702, -0.2828448414802551, 0.003437990555539727, -0.35795101523399353, 0.012263324111700058, -0.0037229470908641815, 0.6321960687637329, -0.3326306939125061, -0.011590959504246712, 0.005383542273193598, 0.04618413373827934, -0.024265393614768982, -3.0491104125976562, 2.2475216388702393, 1.8292361497879028, 0.29597440361976624, -0.134750634431839, -0.08979780226945877, 0.02003762498497963, 0.13550563156604767, -0.1380942314863205, -0.16508270800113678, 1.194275975227356, -0.1179487481713295, 0.08313456922769547, -0.03274090215563774]} +{"t": 28.8523, "q": [-0.36426588892936707, -0.010374823585152626, 0.0071914480067789555, 0.6089988946914673, -0.2828323543071747, 0.0034452907275408506, -0.35794249176979065, 0.012271846644580364, -0.0037229470908641815, 0.6322216391563416, -0.332626610994339, -0.011583718471229076, 0.005356758367270231, 0.04615376889705658, -0.024254847317934036, -3.049074411392212, 2.2475335597991943, 1.8291882276535034, 0.2959264814853668, -0.13476261496543884, -0.08982177078723907, 0.02003762498497963, 0.13550563156604767, -0.13739913702011108, -0.16507071256637573, 1.1942999362945557, -0.1179487481713295, 0.08314655721187592, -0.03274090215563774]} +{"t": 28.8691, "q": [-0.36430850625038147, -0.010391868650913239, 0.007164664100855589, 0.609015941619873, -0.28283247351646423, 0.003416406689211726, -0.35795101523399353, 0.012263324111700058, -0.0037899063900113106, 0.6322131156921387, -0.332634836435318, -0.011583643965423107, 0.005383542273193598, 0.046130914241075516, -0.024229848757386208, -3.049074411392212, 2.2475335597991943, 1.8291163444519043, 0.2959384620189667, -0.1347266584634781, -0.08982177078723907, 0.02003762498497963, 0.13555356860160828, -0.13675199449062347, -0.16508270800113678, 1.1943838596343994, -0.11793676018714905, 0.08315853774547577, -0.03272891789674759]} +{"t": 28.8858, "q": [-0.3642573654651642, -0.010349256917834282, 0.007164664100855589, 0.6090074181556702, -0.2828406095504761, 0.0034596798941493034, -0.35795101523399353, 0.012254801578819752, -0.0037631227169185877, 0.6321960687637329, -0.3326306939125061, -0.011590959504246712, 0.005383542273193598, 0.04610059782862663, -0.02422906458377838, -3.049062490463257, 2.247509717941284, 1.8290084600448608, 0.29591450095176697, -0.13476261496543884, -0.08980978280305862, 0.020013656467199326, 0.13562548160552979, -0.13593706488609314, -0.16511864960193634, 1.1944557428359985, -0.11798469722270966, 0.08313456922769547, -0.03274090215563774]} +{"t": 28.9025, "q": [-0.36426588892936707, -0.010383346118032932, 0.007204839959740639, 0.609015941619873, -0.28284481167793274, 0.0034524325747042894, -0.35794249176979065, 0.012254801578819752, -0.0037631227169185877, 0.6322131156921387, -0.3326430916786194, -0.011569050140678883, 0.005356758367270231, 0.04609294608235359, -0.02421422116458416, -3.049062490463257, 2.2475335597991943, 1.8288646936416626, 0.2959024906158447, -0.1347745954990387, -0.08979780226945877, 0.02004960924386978, 0.13570936024188995, -0.1348944455385208, -0.16514262557029724, 1.194563627243042, -0.1179966852068901, 0.08314655721187592, -0.032764870673418045]} +{"t": 28.9193, "q": [-0.3642914593219757, -0.010383346118032932, 0.007204839959740639, 0.6090329885482788, -0.2828406095504761, 0.0034596798941493034, -0.3579595386981964, 0.012229235842823982, -0.0036827712319791317, 0.6322216391563416, -0.3326348662376404, -0.01156910602003336, 0.005289798602461815, 0.04608539119362831, -0.024218907579779625, -3.049062490463257, 2.2475335597991943, 1.8286609649658203, 0.295878529548645, -0.134750634431839, -0.08980978280305862, 0.02004960924386978, 0.1357692927122116, -0.13371998071670532, -0.16509468853473663, 1.1947553157806396, -0.1179966852068901, 0.08314655721187592, -0.032764870673418045]} +{"t": 28.936, "q": [-0.364342600107193, -0.010391868650913239, 0.007271799258887768, 0.609015941619873, -0.282848984003067, 0.0034451852552592754, -0.35794249176979065, 0.012220713309943676, -0.003736338810995221, 0.6322045922279358, -0.33263903856277466, -0.011547289788722992, 0.005276407115161419, 0.04607778415083885, -0.024213826283812523, -3.049062490463257, 2.2475335597991943, 1.8284931182861328, 0.29586654901504517, -0.13473863899707794, -0.08982177078723907, 0.02003762498497963, 0.1357692927122116, -0.13223394751548767, -0.16505873203277588, 1.1952227354049683, -0.1179966852068901, 0.08314655721187592, -0.0328008234500885]} +{"t": 28.9529, "q": [-0.36435964703559875, -0.01040039025247097, 0.007285191211849451, 0.6090074181556702, -0.28284886479377747, 0.0034740692935884, -0.35794249176979065, 0.012195147573947906, -0.0036827712319791317, 0.6322131156921387, -0.33263078331947327, -0.011561883613467216, 0.005222839303314686, 0.04607778415083885, -0.024213826283812523, -3.049062490463257, 2.2475335597991943, 1.828397274017334, 0.29581862688064575, -0.134750634431839, -0.08979780226945877, 0.02003762498497963, 0.13585317134857178, -0.13031646609306335, -0.16511864960193634, 1.1957380771636963, -0.11796072870492935, 0.08313456922769547, -0.03281280770897865]} +{"t": 28.9696, "q": [-0.364342600107193, -0.010443000122904778, 0.007298583164811134, 0.609015941619873, -0.2828655242919922, 0.003473981749266386, -0.35794249176979065, 0.012169580906629562, -0.003696163184940815, 0.6321790218353271, -0.3326391279697418, -0.011503729969263077, 0.005196055397391319, 0.04607778415083885, -0.024213826283812523, -3.049086570739746, 2.247509717941284, 1.828229546546936, 0.2957826554775238, -0.13476261496543884, -0.08980978280305862, 0.020013656467199326, 0.13582921028137207, -0.1282312124967575, -0.16511864960193634, 1.1962534189224243, -0.1179727166891098, 0.08315853774547577, -0.03283677622675896]} +{"t": 28.9863, "q": [-0.3643511235713959, -0.010443000122904778, 0.007325367070734501, 0.6089988946914673, -0.2828655242919922, 0.003473981749266386, -0.35795101523399353, 0.012144014239311218, -0.003655987558886409, 0.6321619749069214, -0.3326432704925537, -0.011496433056890965, 0.005182663444429636, 0.04607778415083885, -0.024213826283812523, -3.049086570739746, 2.2475335597991943, 1.8281216621398926, 0.2958066463470459, -0.1347266584634781, -0.08979780226945877, 0.02003762498497963, 0.13586516678333282, -0.12567856907844543, -0.16507071256637573, 1.1970683336257935, -0.1179966852068901, 0.08314655721187592, -0.03284876048564911]} +{"t": 29.0031, "q": [-0.36436817049980164, -0.010443000122904778, 0.007338759023696184, 0.609015941619873, -0.2828654646873474, 0.0034884237684309483, -0.3579595386981964, 0.012152536772191525, -0.0036024199798703194, 0.6321704983711243, -0.3326432704925537, -0.011496433056890965, 0.005155880004167557, 0.04607783257961273, -0.02422359399497509, -3.049074411392212, 2.247509717941284, 1.828001856803894, 0.2957826554775238, -0.1347266584634781, -0.08980978280305862, 0.02004960924386978, 0.13586516678333282, -0.12293418496847153, -0.16507071256637573, 1.1982067823410034, -0.1179966852068901, 0.08314655721187592, -0.03284876048564911]} +{"t": 29.0199, "q": [-0.36436817049980164, -0.01046004518866539, 0.007338759023696184, 0.6090074181556702, -0.2828613817691803, 0.00346676935441792, -0.3579680621623993, 0.012144014239311218, -0.0036292036529630423, 0.6321449279785156, -0.3326474130153656, -0.011489118449389935, 0.005182663444429636, 0.04605511575937271, -0.024227885529398918, -3.049086570739746, 2.247509717941284, 1.8278939723968506, 0.29577067494392395, -0.13473863899707794, -0.08977383375167847, 0.02003762498497963, 0.13586516678333282, -0.11987820267677307, -0.16505873203277588, 1.1992614269256592, -0.1179966852068901, 0.08314655721187592, -0.03286074474453926]} +{"t": 29.0366, "q": [-0.36436817049980164, -0.010468566790223122, 0.00735215051099658, 0.6090329885482788, -0.28288620710372925, 0.0034955129958689213, -0.35799363255500793, 0.01212697010487318, -0.0036292036529630423, 0.6321534514427185, -0.3326474130153656, -0.011489118449389935, 0.005155880004167557, 0.04607783257961273, -0.02422359399497509, -3.0491104125976562, 2.2475335597991943, 1.827774167060852, 0.29577067494392395, -0.13478657603263855, -0.08980978280305862, 0.02003762498497963, 0.13582921028137207, -0.11666643619537354, -0.16509468853473663, 1.200783371925354, -0.11798469722270966, 0.08314655721187592, -0.032884713262319565]} +{"t": 29.0534, "q": [-0.3643511235713959, -0.010443000122904778, 0.00735215051099658, 0.609015941619873, -0.28289034962654114, 0.0035027076955884695, -0.3580192029476166, 0.012118448503315449, -0.0036158119328320026, 0.6321534514427185, -0.3326639235019684, -0.011459930799901485, 0.005182663444429636, 0.04606271907687187, -0.02423296496272087, -3.0491104125976562, 2.247509717941284, 1.8276782035827637, 0.29574671387672424, -0.1347745954990387, -0.08979780226945877, 0.02003762498497963, 0.13579325377941132, -0.11363442242145538, -0.16508270800113678, 1.202269434928894, -0.11796072870492935, 0.08314655721187592, -0.03287272900342941]} +{"t": 29.0701, "q": [-0.3643766939640045, -0.010477089323103428, 0.00735215051099658, 0.6090244650840759, -0.28289446234703064, 0.0035099023953080177, -0.3580617904663086, 0.012084359303116798, -0.0036024199798703194, 0.6321364045143127, -0.3326721787452698, -0.011445336975157261, 0.005222839303314686, 0.04607783257961273, -0.02422359399497509, -3.0491464138031006, 2.2475335597991943, 1.8275704383850098, 0.29574671387672424, -0.13476261496543884, -0.08980978280305862, 0.020025640726089478, 0.13580523431301117, -0.11005114018917084, -0.16503477096557617, 1.2033120393753052, -0.1179966852068901, 0.08313456922769547, -0.03289669752120972]} +{"t": 29.0868, "q": [-0.364342600107193, -0.010485611855983734, 0.007338759023696184, 0.6090244650840759, -0.2828904092311859, 0.0034882656764239073, -0.3581129312515259, 0.01206731516867876, -0.003589028026908636, 0.6321108937263489, -0.3326803743839264, -0.011459782719612122, 0.005249623209238052, 0.04607783257961273, -0.02422359399497509, -3.0491104125976562, 2.247509717941284, 1.8275104761123657, 0.2957347333431244, -0.1347266584634781, -0.08982177078723907, 0.02003762498497963, 0.13579325377941132, -0.10635999590158463, -0.16505873203277588, 1.2043187618255615, -0.1179966852068901, 0.08315853774547577, -0.03292066603899002]} +{"t": 29.1036, "q": [-0.364342600107193, -0.010485611855983734, 0.007311975117772818, 0.6090329885482788, -0.2828904092311859, 0.0034882656764239073, -0.3581129312515259, 0.012075837701559067, -0.0036024199798703194, 0.6320767998695374, -0.3326762914657593, -0.011452560313045979, 0.005316582508385181, 0.04607783257961273, -0.02422359399497509, -3.049098491668701, 2.247509717941284, 1.8274625539779663, 0.2957107722759247, -0.134750634431839, -0.08980978280305862, 0.02003762498497963, 0.13570936024188995, -0.10276473313570023, -0.16504675149917603, 1.2054932117462158, -0.11798469722270966, 0.08314655721187592, -0.03289669752120972]} +{"t": 29.1203, "q": [-0.36436817049980164, -0.010477089323103428, 0.007285191211849451, 0.6090074181556702, -0.28288620710372925, 0.0034955129958689213, -0.3581129312515259, 0.01206731516867876, -0.0035220684949308634, 0.6320512294769287, -0.3326721489429474, -0.01145985722541809, 0.005356758367270231, 0.04607783257961273, -0.02422359399497509, -3.049098491668701, 2.2475335597991943, 1.8273906707763672, 0.295650839805603, -0.13476261496543884, -0.08982177078723907, 0.020025640726089478, 0.13562548160552979, -0.09916946291923523, -0.16503477096557617, 1.2066916227340698, -0.1179727166891098, 0.08315853774547577, -0.032884713262319565]} +{"t": 29.1371, "q": [-0.36435964703559875, -0.010502655059099197, 0.007298583164811134, 0.609015941619873, -0.28288203477859497, 0.0035027603153139353, -0.3581129312515259, 0.01206731516867876, -0.0035220684949308634, 0.6320171356201172, -0.3326721787452698, -0.011445336975157261, 0.005356758367270231, 0.04607783257961273, -0.02422359399497509, -3.049098491668701, 2.2475335597991943, 1.8272947072982788, 0.29556694626808167, -0.1347745954990387, -0.08980978280305862, 0.02003762498497963, 0.13555356860160828, -0.09593372046947479, -0.16503477096557617, 1.2078421115875244, -0.1179966852068901, 0.08315853774547577, -0.032884713262319565]} +{"t": 29.1538, "q": [-0.3643766939640045, -0.010502655059099197, 0.007298583164811134, 0.6090244650840759, -0.2828778326511383, 0.003510007867589593, -0.3581129312515259, 0.01206731516867876, -0.003575636073946953, 0.6320171356201172, -0.3326556980609894, -0.01146000437438488, 0.005383542273193598, 0.04607022926211357, -0.024218512699007988, -3.049074411392212, 2.247509717941284, 1.8272348642349243, 0.2955789268016815, -0.13476261496543884, -0.08977383375167847, 0.02003762498497963, 0.13550563156604767, -0.09317734837532043, -0.16503477096557617, 1.20854914188385, -0.11798469722270966, 0.08314655721187592, -0.03289669752120972]} +{"t": 29.1706, "q": [-0.36436817049980164, -0.010511177591979504, 0.007298583164811134, 0.6089988946914673, -0.2828778326511383, 0.003510007867589593, -0.3581129312515259, 0.01206731516867876, -0.003562244353815913, 0.6320171356201172, -0.33264338970184326, -0.011452855542302132, 0.005437109619379044, 0.04605502262711525, -0.02420835755765438, -3.049086570739746, 2.2475335597991943, 1.8270670175552368, 0.29554298520088196, -0.1347985714673996, -0.08978581428527832, 0.020025640726089478, 0.13552960753440857, -0.09013336151838303, -0.16504675149917603, 1.2088488340377808, -0.11798469722270966, 0.08314655721187592, -0.03290868178009987]} +{"t": 29.1875, "q": [-0.3643511235713959, -0.01057935506105423, 0.007285191211849451, 0.609015941619873, -0.2828778326511383, 0.003510007867589593, -0.3580958843231201, 0.011965050362050533, -0.003589028026908636, 0.6320171356201172, -0.33265161514282227, -0.011452781967818737, 0.005383542273193598, 0.04597890377044678, -0.02413804456591606, -3.049086570739746, 2.2475335597991943, 1.8270071744918823, 0.2955310046672821, -0.1347745954990387, -0.08979780226945877, 0.02003762498497963, 0.13558952510356903, -0.08686166256666183, -0.1651066690683365, 1.2088009119033813, -0.11800866574048996, 0.08317052572965622, -0.032357409596443176]} +{"t": 29.2042, "q": [-0.36432555317878723, -0.010707186535000801, 0.007325367070734501, 0.6090244650840759, -0.28287366032600403, 0.003517255187034607, -0.35807883739471436, 0.011845740489661694, -0.003575636073946953, 0.6320597529411316, -0.3326474726200104, -0.01146007888019085, 0.005249623209238052, 0.04584965482354164, -0.024051714688539505, -3.0490505695343018, 2.2475335597991943, 1.8268393278121948, 0.29514750838279724, -0.13478657603263855, -0.08982177078723907, 0.02003762498497963, 0.1357453167438507, -0.0860467404127121, -0.1654542088508606, 1.2089207172393799, -0.11796072870492935, 0.08312258869409561, -0.03248923644423485]} +{"t": 29.2209, "q": [-0.3642829358577728, -0.010724230669438839, 0.007459285669028759, 0.6090415120124817, -0.2828778028488159, 0.003524449886754155, -0.3580617904663086, 0.01187982875853777, -0.003669379511848092, 0.6320597529411316, -0.33261460065841675, -0.011445854790508747, 0.005316582508385181, 0.045728012919425964, -0.023970462381839752, -3.049086570739746, 2.2475335597991943, 1.8267195224761963, 0.2947160601615906, -0.1347745954990387, -0.08979780226945877, 0.02004960924386978, 0.13582921028137207, -0.0854475274682045, -0.16534635424613953, 1.2090286016464233, -0.1179247796535492, 0.08314655721187592, -0.0327768549323082]} +{"t": 29.2377, "q": [-0.364342600107193, -0.010732753202319145, 0.007526245433837175, 0.609092652797699, -0.2828569710254669, 0.0035318026784807444, -0.3580532670021057, 0.01187982875853777, -0.0036827712319791317, 0.6320682764053345, -0.3325614333152771, -0.011322861537337303, 0.005289798602461815, 0.04546191543340683, -0.023792723193764687, -3.049086570739746, 2.247509717941284, 1.8266355991363525, 0.29442843794822693, -0.1347745954990387, -0.08978581428527832, 0.02003762498497963, 0.1357692927122116, -0.08521982282400131, -0.16533437371253967, 1.2090644836425781, -0.11793676018714905, 0.08315853774547577, -0.03286074474453926]} +{"t": 29.2544, "q": [-0.36430850625038147, -0.010732753202319145, 0.007566420827060938, 0.6091096997261047, -0.282869428396225, 0.003538944525644183, -0.35804474353790283, 0.011871307156980038, -0.0038434739690274, 0.632102370262146, -0.332495778799057, -0.011250853538513184, 0.005222839303314686, 0.045188210904598236, -0.02360990270972252, -3.0491104125976562, 2.247509717941284, 1.8265876770019531, 0.29415279626846313, -0.13476261496543884, -0.08978581428527832, 0.020025640726089478, 0.135721355676651, -0.08509998023509979, -0.16529841721057892, 1.2090644836425781, -0.11793676018714905, 0.08312258869409561, -0.032884713262319565]} +{"t": 29.2711, "q": [-0.3642914593219757, -0.010741274803876877, 0.007606596685945988, 0.6091182231903076, -0.2828652858734131, 0.003531749825924635, -0.35798510909080505, 0.011888351291418076, -0.003964001312851906, 0.632102370262146, -0.33245885372161865, -0.01121486909687519, 0.005249623209238052, 0.04477784037590027, -0.023374732583761215, -3.0491225719451904, 2.2475335597991943, 1.8265516757965088, 0.2937573194503784, -0.13473863899707794, -0.08978581428527832, 0.02003762498497963, 0.13568539917469025, -0.08501609414815903, -0.16531039774417877, 1.2090644836425781, -0.1179487481713295, 0.08313456922769547, -0.03298058733344078]} +{"t": 29.2878, "q": [-0.3642914593219757, -0.010741274803876877, 0.007633380591869354, 0.6091352701187134, -0.2828611135482788, 0.003538997145369649, -0.35794249176979065, 0.011896872892975807, -0.004030960611999035, 0.6321279406547546, -0.33243420720100403, -0.011200552806258202, 0.005222839303314686, 0.044329334050416946, -0.023084787651896477, -3.0491464138031006, 2.247509717941284, 1.8264439105987549, 0.2935296297073364, -0.13473863899707794, -0.08976184576749802, 0.02003762498497963, 0.1356734186410904, -0.08489625155925751, -0.16526246070861816, 1.2091004848480225, -0.11790081113576889, 0.08314655721187592, -0.033004555851221085]} +{"t": 29.3046, "q": [-0.3642914593219757, -0.010724230669438839, 0.0076467725448310375, 0.6091523170471191, -0.2828569710254669, 0.0035318026784807444, -0.3578146696090698, 0.01187982875853777, -0.004097919911146164, 0.6321619749069214, -0.33243831992149353, -0.01119325589388609, 0.005155880004167557, 0.04372885078191757, -0.022703997790813446, -3.0491225719451904, 2.247509717941284, 1.8263239860534668, 0.29332590103149414, -0.1347266584634781, -0.08976184576749802, 0.020025640726089478, 0.13558952510356903, -0.08483633399009705, -0.16531039774417877, 1.2091124057769775, -0.11790081113576889, 0.08313456922769547, -0.03301654011011124]} +{"t": 29.3214, "q": [-0.36430850625038147, -0.010707186535000801, 0.0076467725448310375, 0.6091693043708801, -0.2828652858734131, 0.003531749825924635, -0.3577464818954468, 0.01193948369473219, -0.004178271628916264, 0.6321790218353271, -0.33243831992149353, -0.01119325589388609, 0.005115704145282507, 0.0431969128549099, -0.02239818684756756, -3.0491225719451904, 2.247509717941284, 1.8261202573776245, 0.29321804642677307, -0.134750634431839, -0.08978581428527832, 0.02003762498497963, 0.13548167049884796, -0.08466855436563492, -0.16529841721057892, 1.2090884447097778, -0.11791279166936874, 0.08312258869409561, -0.03304050862789154]} +{"t": 29.3382, "q": [-0.36430850625038147, -0.010707186535000801, 0.007633380591869354, 0.6091693043708801, -0.282848596572876, 0.0035463152453303337, -0.3576868176460266, 0.01193948369473219, -0.004218447022140026, 0.6321704983711243, -0.33244651556015015, -0.01120770163834095, 0.005062136333435774, 0.04268035292625427, -0.022141559049487114, -3.049182415008545, 2.2475216388702393, 1.8260483741760254, 0.29307422041893005, -0.1347745954990387, -0.08979780226945877, 0.02003762498497963, 0.13546967506408691, -0.08448878675699234, -0.16528643667697906, 1.2090884447097778, -0.1179247796535492, 0.08314655721187592, -0.033064477145671844]} +{"t": 29.3549, "q": [-0.36432555317878723, -0.010707186535000801, 0.0076467725448310375, 0.6091863512992859, -0.2828570306301117, 0.003517360659316182, -0.3576527535915375, 0.011956527829170227, -0.0041916631162166595, 0.6321704983711243, -0.3324466049671173, -0.011178662069141865, 0.00512909609824419, 0.04221661388874054, -0.021832525730133057, -3.0492541790008545, 2.247509717941284, 1.8259644508361816, 0.29282256960868835, -0.1347745954990387, -0.08979780226945877, 0.02003762498497963, 0.13546967506408691, -0.08415322750806808, -0.16531039774417877, 1.2090884447097778, -0.11793676018714905, 0.08314655721187592, -0.033076461404561996]} +{"t": 29.3716, "q": [-0.36432555317878723, -0.010715708136558533, 0.007619988638907671, 0.6091948747634888, -0.2828570306301117, 0.003517360659316182, -0.35766124725341797, 0.011956527829170227, -0.0041247038170695305, 0.63218754529953, -0.3324424922466278, -0.011171438731253147, 0.005062136333435774, 0.04172249138355255, -0.02150368131697178, -3.0492422580718994, 2.247509717941284, 1.8259285688400269, 0.2924869954586029, -0.13476261496543884, -0.08976184576749802, 0.02003762498497963, 0.13548167049884796, -0.08396147936582565, -0.16528643667697906, 1.2090884447097778, -0.1179247796535492, 0.08313456922769547, -0.0331004299223423]} +{"t": 29.3884, "q": [-0.3642999827861786, -0.010707186535000801, 0.0076467725448310375, 0.6091948747634888, -0.2828611731529236, 0.0035245551262050867, -0.3576527535915375, 0.011956527829170227, -0.004097919911146164, 0.6321960687637329, -0.3324260711669922, -0.011157066561281681, 0.005048744846135378, 0.041380375623703, -0.021266499534249306, -3.0492422580718994, 2.247509717941284, 1.8258566856384277, 0.291995644569397, -0.1347985714673996, -0.08977383375167847, 0.02003762498497963, 0.13550563156604767, -0.08376973122358322, -0.16533437371253967, 1.2090884447097778, -0.11796072870492935, 0.08314655721187592, -0.03308844566345215]} +{"t": 29.4051, "q": [-0.36430850625038147, -0.010724230669438839, 0.0076467725448310375, 0.6092119216918945, -0.2828652858734131, 0.003531749825924635, -0.35766124725341797, 0.011948006227612495, -0.004138095770031214, 0.6321790218353271, -0.33244675397872925, -0.011120564304292202, 0.00508892023935914, 0.04096237197518349, -0.021008050069212914, -3.049206256866455, 2.247509717941284, 1.8257367610931396, 0.2912406325340271, -0.13478657603263855, -0.08976184576749802, 0.02003762498497963, 0.13556554913520813, -0.08355402201414108, -0.16528643667697906, 1.2091004848480225, -0.11798469722270966, 0.08313456922769547, -0.0331004299223423]} +{"t": 29.4218, "q": [-0.3642914593219757, -0.010707186535000801, 0.007619988638907671, 0.6092204451560974, -0.2828652858734131, 0.003531749825924635, -0.35766977071762085, 0.011948006227612495, -0.004138095770031214, 0.6321704983711243, -0.33245086669921875, -0.01111326739192009, 0.00512909609824419, 0.04066590592265129, -0.020810948684811592, -3.049206256866455, 2.247509717941284, 1.8256169557571411, 0.29010215401649475, -0.13478657603263855, -0.08973787724971771, 0.02003762498497963, 0.13561348617076874, -0.0833742544054985, -0.16528643667697906, 1.2091124057769775, -0.11793676018714905, 0.08313456922769547, -0.0331004299223423]} +{"t": 29.4386, "q": [-0.3642914593219757, -0.010707186535000801, 0.007606596685945988, 0.6092204451560974, -0.2828735113143921, 0.0035605812445282936, -0.35766124725341797, 0.011913917027413845, -0.004057744517922401, 0.6321449279785156, -0.33244678378105164, -0.011106044054031372, 0.005236231256276369, 0.04035415127873421, -0.02058422565460205, -3.049206256866455, 2.247485637664795, 1.8253653049468994, 0.2885441780090332, -0.1347266584634781, -0.08972589671611786, 0.02003762498497963, 0.13558952510356903, -0.08324243128299713, -0.16531039774417877, 1.2091004848480225, -0.11798469722270966, 0.08314655721187592, -0.03311241418123245]} +{"t": 29.4554, "q": [-0.36427441239356995, -0.010724230669438839, 0.007593204732984304, 0.6092545390129089, -0.2828652858734131, 0.003531749825924635, -0.35766977071762085, 0.011930961161851883, -0.004097919911146164, 0.6321194171905518, -0.33244264125823975, -0.011113340966403484, 0.005249623209238052, 0.040126148611307144, -0.02044236660003662, -3.049182415008545, 2.247509717941284, 1.8248978853225708, 0.2865787744522095, -0.134750634431839, -0.08971390873193741, 0.020025640726089478, 0.13556554913520813, -0.08315853774547577, -0.16531039774417877, 1.2091244459152222, -0.1179727166891098, 0.08314655721187592, -0.0331004299223423]} +{"t": 29.4721, "q": [-0.3642914593219757, -0.010715708136558533, 0.007606596685945988, 0.6092545390129089, -0.2828652560710907, 0.003546191845089197, -0.35766977071762085, 0.011905395425856113, -0.004057744517922401, 0.632102370262146, -0.3324178457260132, -0.01115714106708765, 0.005263015162199736, 0.039905741810798645, -0.020305560901761055, -3.049206256866455, 2.2475335597991943, 1.8239152431488037, 0.2849968671798706, -0.1347745954990387, -0.08977383375167847, 0.020025640726089478, 0.13550563156604767, -0.083074651658535, -0.16529841721057892, 1.2091363668441772, -0.1179487481713295, 0.08314655721187592, -0.0331004299223423]} +{"t": 29.4888, "q": [-0.3642829358577728, -0.010715708136558533, 0.0076467725448310375, 0.6092801094055176, -0.2828652560710907, 0.003546191845089197, -0.35766977071762085, 0.011922439560294151, -0.004057744517922401, 0.632102370262146, -0.3324178457260132, -0.01115714106708765, 0.005155880004167557, 0.03958665952086449, -0.0201326422393322, -3.0491943359375, 2.2475335597991943, 1.8227766752243042, 0.2835707366466522, -0.1348225325345993, -0.08984573930501938, 0.020025640726089478, 0.1353738009929657, -0.08296678960323334, -0.1652504801750183, 1.2091363668441772, -0.1179727166891098, 0.08313456922769547, -0.03308844566345215]} +{"t": 29.5057, "q": [-0.3642829358577728, -0.010724230669438839, 0.007673555985093117, 0.6092801094055176, -0.2828735113143921, 0.0035605812445282936, -0.3576442301273346, 0.011922439560294151, -0.004138095770031214, 0.6321108937263489, -0.33241787552833557, -0.011142603121697903, 0.005048744846135378, 0.03924508020281792, -0.020022939890623093, -3.049206256866455, 2.247509717941284, 1.8217101097106934, 0.28191691637039185, -0.1348225325345993, -0.08973787724971771, 0.02004960924386978, 0.13527794182300568, -0.08283496648073196, -0.16528643667697906, 1.2091244459152222, -0.11796072870492935, 0.08313456922769547, -0.0331004299223423]} +{"t": 29.5224, "q": [-0.3642829358577728, -0.010724230669438839, 0.00772712379693985, 0.6093312501907349, -0.28286105394363403, 0.003553457325324416, -0.3576442301273346, 0.011922439560294151, -0.004218447022140026, 0.632102370262146, -0.3323933780193329, -0.011070207692682743, 0.00508892023935914, 0.03888046741485596, -0.019839530810713768, -3.049206256866455, 2.2474617958068848, 1.8210389614105225, 0.2801552414894104, -0.1347745954990387, -0.08970192819833755, 0.02003762498497963, 0.13523000478744507, -0.08265519887208939, -0.16526246070861816, 1.2091244459152222, -0.11796072870492935, 0.08313456922769547, -0.0331004299223423]} +{"t": 29.5392, "q": [-0.36426588892936707, -0.010741274803876877, 0.007780691608786583, 0.6094505786895752, -0.28285685181617737, 0.00356070464476943, -0.35761013627052307, 0.011913917027413845, -0.0041916631162166595, 0.632102370262146, -0.33230316638946533, -0.010954825207591057, 0.005115704145282507, 0.03850061818957329, -0.01963627152144909, -3.0492663383483887, 2.247509717941284, 1.820631504058838, 0.27799805998802185, -0.1347745954990387, -0.08970192819833755, 0.02003762498497963, 0.13519404828548431, -0.08246345072984695, -0.16528643667697906, 1.2091604471206665, -0.11793676018714905, 0.08313456922769547, -0.03308844566345215]} +{"t": 29.5559, "q": [-0.3642829358577728, -0.010758318938314915, 0.007834259420633316, 0.6095868945121765, -0.2828609347343445, 0.0035823413636535406, -0.3576016128063202, 0.01187982875853777, -0.004205055069178343, 0.6321194171905518, -0.33221715688705444, -0.010803106240928173, 0.005115704145282507, 0.03810533881187439, -0.01936434768140316, -3.0492782592773438, 2.2475216388702393, 1.8202000856399536, 0.27622440457344055, -0.13476261496543884, -0.08980978280305862, 0.020025640726089478, 0.1351461112499237, -0.08230765908956528, -0.1652504801750183, 1.2091723680496216, -0.11796072870492935, 0.08313456922769547, -0.0331004299223423]} +{"t": 29.5726, "q": [-0.3642573654651642, -0.010749796405434608, 0.00798156950622797, 0.6096806526184082, -0.2828609347343445, 0.0035823413636535406, -0.3576016128063202, 0.011862784624099731, -0.004245230928063393, 0.6321194171905518, -0.33211469650268555, -0.010651517659425735, 0.0051424880512058735, 0.0376492477953434, -0.019052091985940933, -3.049302339553833, 2.2475454807281494, 1.8196847438812256, 0.27544543147087097, -0.1347985714673996, -0.08990565687417984, 0.020025640726089478, 0.13503825664520264, -0.08203202486038208, -0.16523849964141846, 1.2091844081878662, -0.11796072870492935, 0.08313456922769547, -0.03308844566345215]} +{"t": 29.5894, "q": [-0.36427441239356995, -0.010775363072752953, 0.008102096617221832, 0.6097232699394226, -0.2828526794910431, 0.003567951964214444, -0.3575930893421173, 0.011854262091219425, -0.004218447022140026, 0.6321108937263489, -0.33202460408210754, -0.010478038340806961, 0.00508892023935914, 0.03726162388920784, -0.018795184791088104, -3.0492663383483887, 2.247509717941284, 1.8192893266677856, 0.2754094898700714, -0.13476261496543884, -0.08989367634057999, 0.020025640726089478, 0.13497832417488098, -0.0818043202161789, -0.16529841721057892, 1.2091963291168213, -0.11793676018714905, 0.08314655721187592, -0.03308844566345215]} +{"t": 29.6061, "q": [-0.3642914593219757, -0.010775363072752953, 0.008182448334991932, 0.6097232699394226, -0.28287339210510254, 0.0035895011387765408, -0.35758456587791443, 0.011862784624099731, -0.004218447022140026, 0.6320767998695374, -0.331942617893219, -0.01036258228123188, 0.0051424880512058735, 0.036965299397706985, -0.018618552014231682, -3.049302339553833, 2.247509717941284, 1.8189177513122559, 0.27557724714279175, -0.1347985714673996, -0.08972589671611786, 0.02004960924386978, 0.13493038713932037, -0.08162456005811691, -0.1652025431394577, 1.2091963291168213, -0.1179247796535492, 0.08313456922769547, -0.0331004299223423]} +{"t": 29.6228, "q": [-0.3642914593219757, -0.010783884674310684, 0.008276191540062428, 0.6097744107246399, -0.28286507725715637, 0.0035895537585020065, -0.3576016128063202, 0.011854262091219425, -0.00416487967595458, 0.6320853233337402, -0.33187296986579895, -0.010239738039672375, 0.005021960940212011, 0.03688151389360428, -0.018514474853873253, -3.049326181411743, 2.247509717941284, 1.8186540603637695, 0.27572107315063477, -0.1347985714673996, -0.0896899402141571, 0.02004960924386978, 0.13491840660572052, -0.081552654504776, -0.1652744561433792, 1.209220290184021, -0.11793676018714905, 0.08312258869409561, -0.0331004299223423]} +{"t": 29.6397, "q": [-0.3642573654651642, -0.010835018008947372, 0.008343150839209557, 0.6097999811172485, -0.28286507725715637, 0.0035895537585020065, -0.3575930893421173, 0.011803129687905312, -0.004138095770031214, 0.6320938467979431, -0.3318156898021698, -0.010124078020453453, 0.004995177034288645, 0.03689667955040932, -0.018514782190322876, -3.049314260482788, 2.247509717941284, 1.8183904886245728, 0.27567312121391296, -0.13478657603263855, -0.08971390873193741, 0.02003762498497963, 0.13500230014324188, -0.08151669800281525, -0.16526246070861816, 1.2092562913894653, -0.1179966852068901, 0.08313456922769547, -0.033124398440122604]} +{"t": 29.6564, "q": [-0.3642573654651642, -0.01088615134358406, 0.008436894044280052, 0.6097744107246399, -0.2828609049320221, 0.003596801310777664, -0.3576016128063202, 0.01179460808634758, -0.004071136470884085, 0.632102370262146, -0.3317951560020447, -0.010102464817464352, 0.005075528286397457, 0.03689667955040932, -0.018514782190322876, -3.049314260482788, 2.2474617958068848, 1.818006992340088, 0.2757090926170349, -0.13476261496543884, -0.08970192819833755, 0.02004960924386978, 0.13499031960964203, -0.08149272948503494, -0.1652744561433792, 1.209280252456665, -0.1179966852068901, 0.08312258869409561, -0.03311241418123245]} +{"t": 29.6732, "q": [-0.3642573654651642, -0.01088615134358406, 0.008436894044280052, 0.6097744107246399, -0.2828567624092102, 0.0035895886830985546, -0.35753342509269714, 0.01179460808634758, -0.004071136470884085, 0.6320767998695374, -0.33179518580436707, -0.010087945498526096, 0.00508892023935914, 0.03694220259785652, -0.01852545328438282, -3.0493381023406982, 2.2474496364593506, 1.8175036907196045, 0.27592480182647705, -0.1347985714673996, -0.0896899402141571, 0.02003762498497963, 0.13497832417488098, -0.08154066652059555, -0.16526246070861816, 1.2093400955200195, -0.1179727166891098, 0.08311060070991516, -0.03311241418123245]} +{"t": 29.69, "q": [-0.36427441239356995, -0.010869106277823448, 0.008383326232433319, 0.609765887260437, -0.2828609347343445, 0.0035823413636535406, -0.3574056029319763, 0.01179460808634758, -0.004111311864107847, 0.6320853233337402, -0.3318157494068146, -0.01009502075612545, 0.005062136333435774, 0.03695743903517723, -0.01854526251554489, -3.0493621826171875, 2.2474377155303955, 1.8167126178741455, 0.2760086953639984, -0.13478657603263855, -0.0896659716963768, 0.02003762498497963, 0.13490642607212067, -0.08154066652059555, -0.16531039774417877, 1.2093641757965088, -0.1179966852068901, 0.08314655721187592, -0.0331004299223423]} +{"t": 29.7067, "q": [-0.3642403483390808, -0.010835018008947372, 0.008369934745132923, 0.6097744107246399, -0.2828567624092102, 0.0035895886830985546, -0.35735446214675903, 0.01182017382234335, -0.004111311864107847, 0.6320938467979431, -0.33183225989341736, -0.010065833106637001, 0.005048744846135378, 0.036995477974414825, -0.018580159172415733, -3.0495779514312744, 2.24747371673584, 1.815454363822937, 0.276044636964798, -0.13476261496543884, -0.0896899402141571, 0.02003762498497963, 0.13483451306819916, -0.0815286859869957, -0.16526246070861816, 1.2093641757965088, -0.11796072870492935, 0.08314655721187592, -0.0331004299223423]} +{"t": 29.7235, "q": [-0.36422330141067505, -0.01082649640738964, 0.00832975935190916, 0.609765887260437, -0.2828609347343445, 0.0035823413636535406, -0.357286274433136, 0.011845740489661694, -0.004097919911146164, 0.632102370262146, -0.33181992173194885, -0.010058684274554253, 0.005008568987250328, 0.037010639905929565, -0.018580466508865356, -3.049625873565674, 2.2474496364593506, 1.814207911491394, 0.2759847342967987, -0.13478657603263855, -0.08971390873193741, 0.02004960924386978, 0.13466674089431763, -0.08154066652059555, -0.1652744561433792, 1.2093641757965088, -0.11793676018714905, 0.08314655721187592, -0.033124398440122604]} +{"t": 29.7404, "q": [-0.36421477794647217, -0.010817973874509335, 0.00831636693328619, 0.6097573637962341, -0.2828609347343445, 0.0035823413636535406, -0.35724368691444397, 0.011854262091219425, -0.004057744517922401, 0.6321279406547546, -0.33183223009109497, -0.010080352425575256, 0.004995177034288645, 0.037041038274765015, -0.01860058307647705, -3.0495657920837402, 2.24747371673584, 1.8133331537246704, 0.2759607434272766, -0.1347985714673996, -0.08972589671611786, 0.02003762498497963, 0.13451094925403595, -0.081552654504776, -0.16528643667697906, 1.2093760967254639, -0.1179727166891098, 0.08313456922769547, -0.033124398440122604]} +{"t": 29.7571, "q": [-0.3642062544822693, -0.010758318938314915, 0.008276191540062428, 0.6097573637962341, -0.2828609347343445, 0.0035823413636535406, -0.35726073384284973, 0.011913917027413845, -0.004057744517922401, 0.6321449279785156, -0.33183225989341736, -0.010065833106637001, 0.004928217735141516, 0.03707140311598778, -0.01861094869673252, -3.0494940280914307, 2.24747371673584, 1.8129256963729858, 0.2759367823600769, -0.13473863899707794, -0.08971390873193741, 0.02004960924386978, 0.13441507518291473, -0.081552654504776, -0.16529841721057892, 1.2093760967254639, -0.11798469722270966, 0.08313456922769547, -0.033124398440122604]} +{"t": 29.7738, "q": [-0.36417216062545776, -0.010707186535000801, 0.008222623728215694, 0.6097403168678284, -0.28285273909568787, 0.003553509945049882, -0.3572692573070526, 0.011956527829170227, -0.004017568659037352, 0.6321534514427185, -0.33182400465011597, -0.010080426931381226, 0.00483447453007102, 0.037079039961099625, -0.01862572878599167, -3.049517869949341, 2.2474617958068848, 1.8126620054244995, 0.27599671483039856, -0.13476261496543884, -0.08971390873193741, 0.02003762498497963, 0.13433118164539337, -0.08154066652059555, -0.1652744561433792, 1.2093760967254639, -0.11796072870492935, 0.08313456922769547, -0.033124398440122604]} +{"t": 29.7908, "q": [-0.36417216062545776, -0.010664575733244419, 0.008155664429068565, 0.6097488403320312, -0.2828485667705536, 0.003560757264494896, -0.35724368691444397, 0.012075837701559067, -0.004017568659037352, 0.6321534514427185, -0.33183223009109497, -0.010080352425575256, 0.004646987654268742, 0.03710940107703209, -0.01863609440624714, -3.0496017932891846, 2.2474617958068848, 1.8125780820846558, 0.27592480182647705, -0.1347266584634781, -0.08971390873193741, 0.02003762498497963, 0.134247288107872, -0.08154066652059555, -0.16523849964141846, 1.2093760967254639, -0.11793676018714905, 0.08313456922769547, -0.033124398440122604]} +{"t": 29.8075, "q": [-0.3641636371612549, -0.010621964931488037, 0.008102096617221832, 0.6097488403320312, -0.2828485667705536, 0.003560757264494896, -0.35724368691444397, 0.012075837701559067, -0.003964001312851906, 0.6321704983711243, -0.33182811737060547, -0.010073130019009113, 0.004539852496236563, 0.03713979944586754, -0.018656210973858833, -3.049649715423584, 2.2474617958068848, 1.8124701976776123, 0.27597272396087646, -0.13473863899707794, -0.08973787724971771, 0.02003762498497963, 0.1341753900051117, -0.08154066652059555, -0.16528643667697906, 1.2093881368637085, -0.1179487481713295, 0.08313456922769547, -0.033124398440122604]} +{"t": 29.8242, "q": [-0.3641465902328491, -0.01057935506105423, 0.008075312711298466, 0.6097488403320312, -0.2828402817249298, 0.003546368097886443, -0.3571925461292267, 0.012084359303116798, -0.0038970415480434895, 0.6321534514427185, -0.3318198621273041, -0.010087723843753338, 0.004405933897942305, 0.037170201539993286, -0.018676327541470528, -3.049757719039917, 2.24747371673584, 1.8122905492782593, 0.27594876289367676, -0.1347745954990387, -0.08973787724971771, 0.020025640726089478, 0.13409149646759033, -0.08151669800281525, -0.1652265191078186, 1.2093881368637085, -0.11796072870492935, 0.08313456922769547, -0.033124398440122604]} +{"t": 29.8413, "q": [-0.3641636371612549, -0.010562309995293617, 0.008021745830774307, 0.6097232699394226, -0.2828402817249298, 0.003546368097886443, -0.3571840226650238, 0.01206731516867876, -0.0038568659219890833, 0.6321619749069214, -0.33182811737060547, -0.010073130019009113, 0.004245230928063393, 0.037170201539993286, -0.018676327541470528, -3.049781560897827, 2.2474617958068848, 1.8121826648712158, 0.27594876289367676, -0.13481055200099945, -0.08974986523389816, 0.02003762498497963, 0.13404355943202972, -0.08151669800281525, -0.16528643667697906, 1.2093881368637085, -0.11793676018714905, 0.08314655721187592, -0.033124398440122604]} +{"t": 29.8581, "q": [-0.3641124963760376, -0.01057935506105423, 0.008021745830774307, 0.6097147464752197, -0.282848596572876, 0.0035463152453303337, -0.35716697573661804, 0.012075837701559067, -0.0038434739690274, 0.6321704983711243, -0.33183225989341736, -0.010065833106637001, 0.004071136470884085, 0.03720063716173172, -0.018706195056438446, -3.0498056411743164, 2.2474617958068848, 1.8121466636657715, 0.27594876289367676, -0.13478657603263855, -0.08971390873193741, 0.02003762498497963, 0.13395966589450836, -0.08151669800281525, -0.16532239317893982, 1.2094240188598633, -0.1179487481713295, 0.08313456922769547, -0.03314836695790291]} +{"t": 29.8748, "q": [-0.36412954330444336, -0.01057935506105423, 0.008021745830774307, 0.6097062230110168, -0.282848596572876, 0.0035463152453303337, -0.35716697573661804, 0.012050271034240723, -0.0037095551379024982, 0.6321619749069214, -0.33182811737060547, -0.010073130019009113, 0.003990784753113985, 0.03724619746208191, -0.018726618960499763, -3.049865484237671, 2.2474496364593506, 1.8121107816696167, 0.27597272396087646, -0.13476261496543884, -0.08972589671611786, 0.020025640726089478, 0.1338997483253479, -0.081552654504776, -0.16528643667697906, 1.2094600200653076, -0.1179487481713295, 0.08313456922769547, -0.03311241418123245]} +{"t": 29.8916, "q": [-0.3641039729118347, -0.010596398264169693, 0.008035137318074703, 0.6097062230110168, -0.28285279870033264, 0.0035390679258853197, -0.3571499288082123, 0.012058793567121029, -0.003696163184940815, 0.6321449279785156, -0.33183225989341736, -0.010065833106637001, 0.003937217406928539, 0.037284236401319504, -0.018761515617370605, -3.049853563308716, 2.24747371673584, 1.8120508193969727, 0.2759847342967987, -0.134750634431839, -0.08972589671611786, 0.02003762498497963, 0.1338518112897873, -0.08154066652059555, -0.16528643667697906, 1.209519863128662, -0.11796072870492935, 0.08314655721187592, -0.03314836695790291]} +{"t": 29.9083, "q": [-0.3641124963760376, -0.01057935506105423, 0.008035137318074703, 0.6097317934036255, -0.2828402817249298, 0.003546368097886443, -0.3571073114871979, 0.012050271034240723, -0.003669379511848092, 0.6321449279785156, -0.33183225989341736, -0.010065833106637001, 0.0038702578749507666, 0.03732987120747566, -0.01880144141614437, -3.0498175621032715, 2.2474496364593506, 1.8119908571243286, 0.2759607434272766, -0.13471467792987823, -0.08971390873193741, 0.02003762498497963, 0.13377991318702698, -0.081552654504776, -0.16526246070861816, 1.2095319032669067, -0.11796072870492935, 0.08315853774547577, -0.033124398440122604]} +{"t": 29.925, "q": [-0.36408692598342896, -0.01057935506105423, 0.00806192122399807, 0.6097232699394226, -0.28285691142082214, 0.003546262625604868, -0.3570902943611145, 0.012024705298244953, -0.003669379511848092, 0.6321364045143127, -0.33183228969573975, -0.010051295161247253, 0.0038434739690274, 0.03732983395457268, -0.018791690468788147, -3.0498175621032715, 2.2474496364593506, 1.8119310140609741, 0.27594876289367676, -0.13473863899707794, -0.08970192819833755, 0.02003762498497963, 0.13376791775226593, -0.0815286859869957, -0.16526246070861816, 1.2095918655395508, -0.1179727166891098, 0.08313456922769547, -0.03316035121679306]} +{"t": 29.9417, "q": [-0.36409544944763184, -0.010613443329930305, 0.00806192122399807, 0.6097317934036255, -0.2828569710254669, 0.0035318026784807444, -0.357098788022995, 0.011973571963608265, -0.0036425956059247255, 0.6321194171905518, -0.33182406425476074, -0.01005138736218214, 0.0038702578749507666, 0.03732983395457268, -0.018791690468788147, -3.049853563308716, 2.2474496364593506, 1.8119189739227295, 0.27592480182647705, -0.13473863899707794, -0.08972589671611786, 0.02004960924386978, 0.13374395668506622, -0.08156463503837585, -0.16529841721057892, 1.2096877098083496, -0.11796072870492935, 0.08313456922769547, -0.03314836695790291]} +{"t": 29.9585, "q": [-0.3641124963760376, -0.010621964931488037, 0.008048529736697674, 0.6097232699394226, -0.28285691142082214, 0.003546262625604868, -0.3570817708969116, 0.011913917027413845, -0.0036292036529630423, 0.6321108937263489, -0.3318076431751251, -0.010037015192210674, 0.003964001312851906, 0.03732987120747566, -0.01880144141614437, -3.049865484237671, 2.2474617958068848, 1.8118950128555298, 0.2759607434272766, -0.1347745954990387, -0.08974986523389816, 0.02003762498497963, 0.13373197615146637, -0.08156463503837585, -0.1652744561433792, 1.2097235918045044, -0.11793676018714905, 0.08314655721187592, -0.03314836695790291]} +{"t": 29.9752, "q": [-0.3641124963760376, -0.010647531598806381, 0.00806192122399807, 0.6097232699394226, -0.28285691142082214, 0.003546262625604868, -0.3570817708969116, 0.011888351291418076, -0.0036425956059247255, 0.6320853233337402, -0.3318159282207489, -0.010022402741014957, 0.004044352564960718, 0.03731467202305794, -0.018791383132338524, -3.0498175621032715, 2.24747371673584, 1.8118470907211304, 0.2759847342967987, -0.13478657603263855, -0.08971390873193741, 0.02003762498497963, 0.13370800018310547, -0.08154066652059555, -0.16526246070861816, 1.209735631942749, -0.11793676018714905, 0.08313456922769547, -0.03314836695790291]} +{"t": 29.9919, "q": [-0.36413806676864624, -0.010664575733244419, 0.008048529736697674, 0.6097062230110168, -0.2828611135482788, 0.003538997145369649, -0.3570902943611145, 0.01187982875853777, -0.003669379511848092, 0.6320767998695374, -0.3318076729774475, -0.010022494941949844, 0.004111311864107847, 0.03731467202305794, -0.018791383132338524, -3.049781560897827, 2.2474617958068848, 1.8118470907211304, 0.2759847342967987, -0.13476261496543884, -0.08971390873193741, 0.02004960924386978, 0.13371998071670532, -0.08154066652059555, -0.1652504801750183, 1.2098435163497925, -0.11791279166936874, 0.08313456922769547, -0.033136382699012756]} diff --git a/Data/G1/hands_up.jsonl b/Data/G1/hands_up.jsonl new file mode 100644 index 0000000..22a2de2 --- /dev/null +++ b/Data/G1/hands_up.jsonl @@ -0,0 +1,1791 @@ +{"meta": {"hz": 60.0, "motors": 29}} +{"t": 0.0, "q": [-0.3542864918708801, -0.01213890127837658, 0.006200447678565979, 0.6289406418800354, -0.31679531931877136, 0.01657370664179325, -0.38978111743927, 0.0003834952076431364, -0.003562244353815913, 0.5997183322906494, -0.2803696393966675, 0.0017758174799382687, 0.002691771136596799, 0.006646494846791029, -0.04372045770287514, 0.28913143277168274, 0.21614748239517212, -0.005476790945976973, 0.9795066714286804, 0.14820891618728638, 0.06180264800786972, -0.06199439615011215, 0.2926907241344452, -0.22233134508132935, 0.023033680394291878, 0.9837371110916138, -0.19342540204524994, 0.061119548976421356, 0.023141538724303246]} +{"t": 0.0167, "q": [-0.35432910919189453, -0.012121858075261116, 0.006200447678565979, 0.6289150714874268, -0.31678298115730286, 0.016566531732678413, -0.38978111743927, 0.0004261057765688747, -0.003575636073946953, 0.599675714969635, -0.2803696393966675, 0.0017758174799382687, 0.0034015413839370012, 0.00703462166711688, -0.04434983804821968, 0.2880648076534271, 0.21409818530082703, -0.00523710623383522, 0.9805972576141357, 0.14820891618728638, 0.06223408132791519, -0.06232995539903641, 0.2919357120990753, -0.22103704512119293, 0.0231774915009737, 0.9850194454193115, -0.19359317421913147, 0.061407171189785004, 0.023201460018754005]} +{"t": 0.0335, "q": [-0.3543887734413147, -0.012155946344137192, 0.006200447678565979, 0.6289406418800354, -0.31679943203926086, 0.016580931842327118, -0.3897896409034729, 0.0004005394293926656, -0.003589028026908636, 0.5996501445770264, -0.2803612947463989, 0.0017613227246329188, 0.0037095551379024982, 0.007164048030972481, -0.0446818508207798, 0.28726187348365784, 0.21274396777153015, -0.005057343281805515, 0.9820712804794312, 0.14822089672088623, 0.06276138871908188, -0.06250971555709839, 0.29137247800827026, -0.21991053223609924, 0.02328534983098507, 0.9865893721580505, -0.19365309178829193, 0.06158693507313728, 0.023189475759863853]} +{"t": 0.0502, "q": [-0.3543461561203003, -0.012147423811256886, 0.0061736637726426125, 0.6289150714874268, -0.31679531931877136, 0.01657370664179325, -0.38978111743927, 0.00037497308221645653, -0.003562244353815913, 0.599675714969635, -0.2803696393966675, 0.0017758174799382687, 0.0038702578749507666, 0.007582480553537607, -0.04503482207655907, 0.28650686144828796, 0.21052688360214233, -0.005165201146155596, 0.9828502535820007, 0.14822089672088623, 0.0628812313079834, -0.06270146369934082, 0.2907732427120209, -0.21776536107063293, 0.023632891476154327, 0.9879196286201477, -0.193760946393013, 0.06162288784980774, 0.02329733408987522]} +{"t": 0.0669, "q": [-0.354295015335083, -0.012164467945694923, 0.006146880332380533, 0.6288724541664124, -0.31678706407546997, 0.01657375693321228, -0.38980668783187866, 0.0003834952076431364, -0.003481892868876457, 0.5996671915054321, -0.2803822159767151, 0.0017975595546886325, 0.0038434739690274, 0.007947690784931183, -0.04543212056159973, 0.2860274910926819, 0.20775853097438812, -0.005261074751615524, 0.983197808265686, 0.14813700318336487, 0.062929168343544, -0.06282130628824234, 0.2903657853603363, -0.21529661118984222, 0.024040356278419495, 0.9888543486595154, -0.19370102882385254, 0.06162288784980774, 0.02334527112543583]} +{"t": 0.0837, "q": [-0.354252427816391, -0.012147423811256886, 0.006200447678565979, 0.6288809776306152, -0.31680768728256226, 0.016580883413553238, -0.38977259397506714, 0.0004005394293926656, -0.0034551091957837343, 0.5996671915054321, -0.2803822159767151, 0.0017975595546886325, 0.003910433501005173, 0.008449803106486797, -0.04583985358476639, 0.285643994808197, 0.20460668206214905, -0.005404885392636061, 0.9834974408149719, 0.14820891618728638, 0.06294114887714386, -0.06286924332380295, 0.2898145318031311, -0.2128038853406906, 0.024459803476929665, 0.989549458026886, -0.19379690289497375, 0.06161090359091759, 0.02340519241988659]} +{"t": 0.1005, "q": [-0.35426944494247437, -0.012155946344137192, 0.00613348837941885, 0.6288724541664124, -0.3168242275714874, 0.01653728261590004, -0.3897896409034729, 0.0004005394293926656, -0.0034283252898603678, 0.5996501445770264, -0.2803822159767151, 0.0017975595546886325, 0.00388364982791245, 0.00883031077682972, -0.04627726972103119, 0.2853923439979553, 0.20198212563991547, -0.0055007594637572765, 0.983569324016571, 0.14816097915172577, 0.06295313686132431, -0.06296511739492416, 0.2894430160522461, -0.21092236042022705, 0.025047030299901962, 0.9898970127105713, -0.193760946393013, 0.061598919332027435, 0.023513050749897957]} +{"t": 0.1172, "q": [-0.3542864918708801, -0.012155946344137192, 0.00613348837941885, 0.6288724541664124, -0.31680768728256226, 0.016580883413553238, -0.3897981643676758, 0.0003664509567897767, -0.0033881496638059616, 0.5996671915054321, -0.2803821563720703, 0.0017831175355240703, 0.00388364982791245, 0.009104359894990921, -0.04675402119755745, 0.28514066338539124, 0.19905798137187958, -0.0055007594637572765, 0.9836412668228149, 0.14820891618728638, 0.06295313686132431, -0.06297710537910461, 0.2890954613685608, -0.20937639474868774, 0.025562351569533348, 0.9901965856552124, -0.193760946393013, 0.061598919332027435, 0.023489082232117653]} +{"t": 0.1339, "q": [-0.35426944494247437, -0.012172989547252655, 0.00613348837941885, 0.6288639307022095, -0.31682008504867554, 0.0165590588003397, -0.3898237347602844, 0.0003579288604669273, -0.0034283252898603678, 0.5996671915054321, -0.2803780138492584, 0.0017903122352436185, 0.00388364982791245, 0.00934034213423729, -0.04716622456908226, 0.2849729061126709, 0.19642144441604614, -0.0055007594637572765, 0.9836652278900146, 0.14820891618728638, 0.06294114887714386, -0.06297710537910461, 0.28883180022239685, -0.20824988186359406, 0.025718146935105324, 0.9902805089950562, -0.19372500479221344, 0.06161090359091759, 0.023513050749897957]} +{"t": 0.1506, "q": [-0.35426095128059387, -0.012181512080132961, 0.006120096426457167, 0.6288639307022095, -0.3168324828147888, 0.016537215560674667, -0.3898322582244873, 0.0003920173039659858, -0.003361365757882595, 0.599675714969635, -0.28039056062698364, 0.0018120543099939823, 0.0038434739690274, 0.009446959011256695, -0.04744407534599304, 0.284817099571228, 0.1944320648908615, -0.005584648810327053, 0.9837011694908142, 0.14820891618728638, 0.06295313686132431, -0.06300107389688492, 0.28867602348327637, -0.2073630541563034, 0.02588592655956745, 0.9903164505958557, -0.1937849223613739, 0.06161090359091759, 0.0234770979732275]} +{"t": 0.1674, "q": [-0.35426944494247437, -0.012164467945694923, 0.00605313666164875, 0.6288724541664124, -0.3168407380580902, 0.016537165269255638, -0.38981521129608154, 0.0003579288604669273, -0.003361365757882595, 0.5996586680412292, -0.28039470314979553, 0.001804859610274434, 0.00388364982791245, 0.009447057731449604, -0.04764214903116226, 0.28475716710090637, 0.1929580122232437, -0.005632585845887661, 0.9837371110916138, 0.14820891618728638, 0.06291718035936356, -0.06310892850160599, 0.28858014941215515, -0.2064642310142517, 0.02600576914846897, 0.9903284311294556, -0.193760946393013, 0.061598919332027435, 0.0234770979732275]} +{"t": 0.1841, "q": [-0.3542864918708801, -0.012164467945694923, 0.006079920567572117, 0.6288724541664124, -0.31686556339263916, 0.016478998586535454, -0.3898237347602844, 0.0003920173039659858, -0.0034015413839370012, 0.5996671915054321, -0.28039470314979553, 0.001804859610274434, 0.0038434739690274, 0.009371076710522175, -0.047790322452783585, 0.28468528389930725, 0.1922149956226349, -0.005656554363667965, 0.9837610721588135, 0.14817295968532562, 0.06294114887714386, -0.06314488500356674, 0.28858014941215515, -0.20557740330696106, 0.026041721925139427, 0.9903284311294556, -0.19368904829025269, 0.06161090359091759, 0.0234770979732275]} +{"t": 0.2008, "q": [-0.35431206226348877, -0.012147423811256886, 0.00605313666164875, 0.6288724541664124, -0.31686556339263916, 0.016478998586535454, -0.38981521129608154, 0.0003664509567897767, -0.0034149333368986845, 0.5996671915054321, -0.2803947627544403, 0.0018193196738138795, 0.003923825453966856, 0.009325486607849598, -0.04787922278046608, 0.284673273563385, 0.19199927151203156, -0.005668538622558117, 0.9837730526924133, 0.14817295968532562, 0.06294114887714386, -0.06314488500356674, 0.28860411047935486, -0.2048223912715912, 0.02611362747848034, 0.9903883337974548, -0.19372500479221344, 0.061598919332027435, 0.02346511371433735]} +{"t": 0.2175, "q": [-0.35431206226348877, -0.012147423811256886, 0.006026353221386671, 0.6288724541664124, -0.31685730814933777, 0.016479065641760826, -0.38981521129608154, 0.0003664509567897767, -0.0033747577108442783, 0.5996671915054321, -0.28039050102233887, 0.00179761229082942, 0.0038434739690274, 0.0094319898635149, -0.0479193814098835, 0.28468528389930725, 0.19202324748039246, -0.005632585845887661, 0.9838569760322571, 0.14816097915172577, 0.06295313686132431, -0.06316885352134705, 0.2886160910129547, -0.20412731170654297, 0.026137595996260643, 0.9904722571372986, -0.19372500479221344, 0.06162288784980774, 0.023441145196557045]} +{"t": 0.2345, "q": [-0.35427796840667725, -0.012130379676818848, 0.006026353221386671, 0.6288468837738037, -0.31686559319496155, 0.01646449789404869, -0.3898748457431793, 0.0003834952076431364, -0.0034015413839370012, 0.599675714969635, -0.28038638830184937, 0.0018048069905489683, 0.003910433501005173, 0.009515668265521526, -0.04795446991920471, 0.2846972644329071, 0.19205918908119202, -0.0055486964993178844, 0.9839288592338562, 0.14818494021892548, 0.06298908591270447, -0.06312091648578644, 0.28860411047935486, -0.20358802378177643, 0.026197517290711403, 0.9905800819396973, -0.1937130093574524, 0.06163487210869789, 0.0234770979732275]} +{"t": 0.2512, "q": [-0.354295015335083, -0.012130379676818848, 0.006039745174348354, 0.6287957429885864, -0.31686562299728394, 0.016449997201561928, -0.3899259865283966, 0.0003664509567897767, -0.0034149333368986845, 0.599675714969635, -0.28039050102233887, 0.00179761229082942, 0.0038300822488963604, 0.009568956680595875, -0.04804884269833565, 0.28470924496650696, 0.19208316504955292, -0.0055367122404277325, 0.9839528203010559, 0.14818494021892548, 0.06301305443048477, -0.06312091648578644, 0.2886160910129547, -0.2031206339597702, 0.02635331079363823, 0.9907119274139404, -0.193760946393013, 0.06164685636758804, 0.02346511371433735]} +{"t": 0.2679, "q": [-0.354295015335083, -0.012121858075261116, 0.006039745174348354, 0.6287957429885864, -0.31686148047447205, 0.016457272693514824, -0.38996008038520813, 0.0003920173039659858, -0.0033881496638059616, 0.5996671915054321, -0.28039470314979553, 0.001804859610274434, 0.0038970415480434895, 0.009667834267020226, -0.04804443567991257, 0.2847212255001068, 0.19208316504955292, -0.0055007594637572765, 0.9839887619018555, 0.14818494021892548, 0.06301305443048477, -0.06312091648578644, 0.28862807154655457, -0.20265324413776398, 0.02642521634697914, 0.9907838106155396, -0.19379690289497375, 0.06161090359091759, 0.023489082232117653]} +{"t": 0.2847, "q": [-0.35431206226348877, -0.012087768875062466, 0.00605313666164875, 0.6287872195243835, -0.31687384843826294, 0.016449948772788048, -0.38995155692100525, 0.0003664509567897767, -0.003361365757882595, 0.5997012853622437, -0.2803822457790375, 0.0018120015738531947, 0.003910433501005173, 0.009675449691712856, -0.04805934429168701, 0.28470924496650696, 0.19205918908119202, -0.0055247279815375805, 0.9840127229690552, 0.14823287725448608, 0.06302504241466522, -0.06312091648578644, 0.28862807154655457, -0.2022457867860794, 0.026497121900320053, 0.9909276366233826, -0.19372500479221344, 0.061658840626478195, 0.0234770979732275]} +{"t": 0.3015, "q": [-0.35436320304870605, -0.012104813009500504, 0.006012961268424988, 0.6288042664527893, -0.31687384843826294, 0.01646444760262966, -0.3900623321533203, 0.0004005394293926656, -0.0033747577108442783, 0.599675714969635, -0.28039470314979553, 0.001804859610274434, 0.0038702578749507666, 0.009675472974777222, -0.048098985105752945, 0.28470924496650696, 0.19204720854759216, -0.0055486964993178844, 0.9840487241744995, 0.14822089672088623, 0.06301305443048477, -0.06313289701938629, 0.28862807154655457, -0.2019701451063156, 0.02666490152478218, 0.9910115599632263, -0.1937369853258133, 0.06164685636758804, 0.023489082232117653]} +{"t": 0.3182, "q": [-0.35436320304870605, -0.01211333554238081, 0.006026353221386671, 0.6288042664527893, -0.31687384843826294, 0.01646444760262966, -0.39003679156303406, 0.0003920173039659858, -0.0033881496638059616, 0.5996842384338379, -0.28038638830184937, 0.0018048069905489683, 0.00388364982791245, 0.00960703194141388, -0.04812338575720787, 0.2846972644329071, 0.19205918908119202, -0.0055247279815375805, 0.9840726852416992, 0.14817295968532562, 0.06302504241466522, -0.06314488500356674, 0.2886160910129547, -0.20181435346603394, 0.026880616322159767, 0.9910475015640259, -0.193760946393013, 0.061658840626478195, 0.0234770979732275]} +{"t": 0.335, "q": [-0.3543802499771118, -0.012104813009500504, 0.006039745174348354, 0.6287957429885864, -0.31686970591545105, 0.016471723094582558, -0.3900793790817261, 0.0003920173039659858, -0.003361365757882595, 0.5996927618980408, -0.28039050102233887, 0.00179761229082942, 0.0038702578749507666, 0.009622250683605671, -0.048133380711078644, 0.2846972644329071, 0.19205918908119202, -0.0055247279815375805, 0.9840726852416992, 0.14820891618728638, 0.06302504241466522, -0.06314488500356674, 0.28860411047935486, -0.20180237293243408, 0.0270723644644022, 0.9910594820976257, -0.193760946393013, 0.06163487210869789, 0.02346511371433735]} +{"t": 0.3517, "q": [-0.3543802499771118, -0.01211333554238081, 0.00605313666164875, 0.6287872195243835, -0.31686967611312866, 0.01648622192442417, -0.3901049494743347, 0.0003920173039659858, -0.003334582084789872, 0.599675714969635, -0.28039470314979553, 0.001804859610274434, 0.0038702578749507666, 0.00963746476918459, -0.04813346639275551, 0.2846972644329071, 0.19205918908119202, -0.0055367122404277325, 0.9840726852416992, 0.14818494021892548, 0.06301305443048477, -0.06314488500356674, 0.28860411047935486, -0.20180237293243408, 0.02725212834775448, 0.9910834431648254, -0.1937369853258133, 0.06163487210869789, 0.0234770979732275]} +{"t": 0.3685, "q": [-0.35437172651290894, -0.012121858075261116, 0.006026353221386671, 0.6287872195243835, -0.31687378883361816, 0.01649344712495804, -0.39008790254592896, 0.00037497308221645653, -0.003321190131828189, 0.5996501445770264, -0.2803947627544403, 0.0018193196738138795, 0.0038434739690274, 0.009683084674179554, -0.04810398444533348, 0.2846972644329071, 0.19205918908119202, -0.0055367122404277325, 0.9840846657752991, 0.14820891618728638, 0.06302504241466522, -0.06314488500356674, 0.28855618834495544, -0.20175443589687347, 0.02744387648999691, 0.9910954236984253, -0.1937369853258133, 0.06163487210869789, 0.023429160937666893]} +{"t": 0.3852, "q": [-0.3543972969055176, -0.012130379676818848, 0.006066528614610434, 0.6287616491317749, -0.31687378883361816, 0.01649344712495804, -0.3901219964027405, 0.0003920173039659858, -0.0032810145057737827, 0.5996671915054321, -0.2803989052772522, 0.001812125090509653, 0.0038702578749507666, 0.009675461798906326, -0.04807916656136513, 0.28468528389930725, 0.19205918908119202, -0.0055247279815375805, 0.9840846657752991, 0.14816097915172577, 0.06303702294826508, -0.06314488500356674, 0.28853219747543335, -0.20171847939491272, 0.027659591287374496, 0.991119384765625, -0.19372500479221344, 0.06163487210869789, 0.0234770979732275]} +{"t": 0.4019, "q": [-0.35440582036972046, -0.012147423811256886, 0.006066528614610434, 0.6287616491317749, -0.31686967611312866, 0.01648622192442417, -0.3901219964027405, 0.0003920173039659858, -0.0032810145057737827, 0.5996671915054321, -0.2804030179977417, 0.0018049303907901049, 0.003910433501005173, 0.009660255163908005, -0.04808899015188217, 0.28468528389930725, 0.19208316504955292, -0.0055367122404277325, 0.9840966463088989, 0.14820891618728638, 0.06301305443048477, -0.0631568655371666, 0.28850823640823364, -0.2016465812921524, 0.027815386652946472, 0.991119384765625, -0.193760946393013, 0.06164685636758804, 0.023453129455447197]} +{"t": 0.4187, "q": [-0.3544313907623291, -0.012155946344137192, 0.006039745174348354, 0.6287616491317749, -0.31687790155410767, 0.016500672325491905, -0.3901049494743347, 0.0003579288604669273, -0.0032944062259048223, 0.5996330976486206, -0.28040724992752075, 0.001826619845815003, 0.00388364982791245, 0.009637441486120224, -0.04809382185339928, 0.28466129302978516, 0.19205918908119202, -0.0055367122404277325, 0.9840846657752991, 0.14817295968532562, 0.06303702294826508, -0.06314488500356674, 0.2884962558746338, -0.20158664882183075, 0.027971182018518448, 0.9911074042320251, -0.19374896585941315, 0.06164685636758804, 0.0234770979732275]} +{"t": 0.4354, "q": [-0.3544313907623291, -0.012155946344137192, 0.00605313666164875, 0.6287616491317749, -0.31688204407691956, 0.01649339869618416, -0.3901049494743347, 0.0003579288604669273, -0.0032810145057737827, 0.5996245741844177, -0.2804155647754669, 0.0018266724655404687, 0.0038702578749507666, 0.009614611975848675, -0.04807882755994797, 0.284673273563385, 0.19205918908119202, -0.0055367122404277325, 0.9840846657752991, 0.14819693565368652, 0.06303702294826508, -0.06314488500356674, 0.28848427534103394, -0.2015507072210312, 0.02805507183074951, 0.9911074042320251, -0.193760946393013, 0.06163487210869789, 0.0234770979732275]} +{"t": 0.4522, "q": [-0.3544313907623291, -0.012172989547252655, 0.00613348837941885, 0.628753125667572, -0.31688201427459717, 0.016507916152477264, -0.3901049494743347, 0.0003579288604669273, -0.0032944062259048223, 0.5996416211128235, -0.2804114520549774, 0.001833867165260017, 0.003910433501005173, 0.009622222743928432, -0.0480838268995285, 0.28466129302978516, 0.19205918908119202, -0.0055247279815375805, 0.9840846657752991, 0.14823287725448608, 0.06301305443048477, -0.06313289701938629, 0.28843632340431213, -0.20150277018547058, 0.028186898678541183, 0.9911074042320251, -0.193760946393013, 0.061658840626478195, 0.023501066491007805]} +{"t": 0.4689, "q": [-0.3544313907623291, -0.012164467945694923, 0.006106704473495483, 0.628753125667572, -0.31688204407691956, 0.01649339869618416, -0.3901049494743347, 0.0003834952076431364, -0.0032676225528120995, 0.5996245741844177, -0.2804197669029236, 0.0018339199014008045, 0.0038702578749507666, 0.009645032696425915, -0.04806908592581749, 0.28466129302978516, 0.19205918908119202, -0.0055247279815375805, 0.9840846657752991, 0.14822089672088623, 0.06303702294826508, -0.06314488500356674, 0.28837642073631287, -0.20147879421710968, 0.028354676440358162, 0.991119384765625, -0.193760946393013, 0.06163487210869789, 0.0234770979732275]} +{"t": 0.4857, "q": [-0.3544313907623291, -0.012172989547252655, 0.0060933125205338, 0.628736138343811, -0.31688201427459717, 0.016507916152477264, -0.3901049494743347, 0.0003664509567897767, -0.0032810145057737827, 0.5995990037918091, -0.28041979670524597, 0.0018483619205653667, 0.003923825453966856, 0.009660239331424236, -0.048059262335300446, 0.2846493124961853, 0.19205918908119202, -0.0055127437226474285, 0.9840846657752991, 0.14820891618728638, 0.06304901093244553, -0.0631568655371666, 0.2883164882659912, -0.20143085718154907, 0.028354676440358162, 0.991119384765625, -0.19372500479221344, 0.06164685636758804, 0.023489082232117653]} +{"t": 0.5024, "q": [-0.3544228672981262, -0.012164467945694923, 0.006160271819680929, 0.6287446022033691, -0.31687378883361816, 0.01649344712495804, -0.3901049494743347, 0.0003579288604669273, -0.0032810145057737827, 0.5995990037918091, -0.2804156243801117, 0.001841114484705031, 0.003923825453966856, 0.009629826061427593, -0.04807891324162483, 0.2846493124961853, 0.19207118451595306, -0.0055007594637572765, 0.9840846657752991, 0.14822089672088623, 0.06302504241466522, -0.0631568655371666, 0.28828054666519165, -0.20138292014598846, 0.028414597734808922, 0.9911313652992249, -0.19372500479221344, 0.06164685636758804, 0.0234770979732275]} +{"t": 0.5191, "q": [-0.35440582036972046, -0.012172989547252655, 0.006160271819680929, 0.6287276148796082, -0.31687793135643005, 0.01648617349565029, -0.39008790254592896, 0.0003664509567897767, -0.003334582084789872, 0.5995990037918091, -0.2804114818572998, 0.0018483091844245791, 0.00388364982791245, 0.009637429378926754, -0.04807399958372116, 0.2846493124961853, 0.19205918908119202, -0.0055127437226474285, 0.9840846657752991, 0.14820891618728638, 0.06302504241466522, -0.0631568655371666, 0.2882445752620697, -0.20135895907878876, 0.028414597734808922, 0.991119384765625, -0.1937369853258133, 0.06162288784980774, 0.023489082232117653]} +{"t": 0.5359, "q": [-0.3543972969055176, -0.012164467945694923, 0.0061736637726426125, 0.628736138343811, -0.3168531656265259, 0.016500839963555336, -0.3900708556175232, 0.0003834952076431364, -0.003361365757882595, 0.5996416211128235, -0.2804114520549774, 0.001833867165260017, 0.00388364982791245, 0.009629829786717892, -0.04808882251381874, 0.28463733196258545, 0.19207118451595306, -0.0055247279815375805, 0.9840846657752991, 0.14822089672088623, 0.06304901093244553, -0.06314488500356674, 0.2881966531276703, -0.20133498311042786, 0.02853444032371044, 0.9911673069000244, -0.193760946393013, 0.06164685636758804, 0.023513050749897957]} +{"t": 0.5526, "q": [-0.3543802499771118, -0.012147423811256886, 0.0061736637726426125, 0.628753125667572, -0.3168448805809021, 0.016529889777302742, -0.3900197446346283, 0.0003834952076431364, -0.003361365757882595, 0.5996245741844177, -0.2804073095321655, 0.0018410617485642433, 0.0038702578749507666, 0.009652636013925076, -0.04806417599320412, 0.28463733196258545, 0.19205918908119202, -0.0055247279815375805, 0.9840966463088989, 0.14817295968532562, 0.06302504241466522, -0.06316885352134705, 0.28820863366127014, -0.20133498311042786, 0.02852245606482029, 0.9911913275718689, -0.193760946393013, 0.06164685636758804, 0.0234770979732275]} +{"t": 0.5693, "q": [-0.35437172651290894, -0.012172989547252655, 0.006187055725604296, 0.6287701725959778, -0.31681594252586365, 0.016566332429647446, -0.38996008038520813, 0.0004005394293926656, -0.0034283252898603678, 0.5996245741844177, -0.2803948223590851, 0.0018337616929784417, 0.00388364982791245, 0.009667858481407166, -0.0480840802192688, 0.2846493124961853, 0.19205918908119202, -0.0054887752048671246, 0.9840846657752991, 0.14813700318336487, 0.06306099146604538, -0.0631568655371666, 0.2881247401237488, -0.20133498311042786, 0.028546424582600594, 0.9912152886390686, -0.193760946393013, 0.061658840626478195, 0.023489082232117653]} +{"t": 0.5861, "q": [-0.3543461561203003, -0.012172989547252655, 0.0062272315844893456, 0.628753125667572, -0.31681180000305176, 0.016573607921600342, -0.38996008038520813, 0.0004005394293926656, -0.003441717242822051, 0.599675714969635, -0.2803948223590851, 0.0018337616929784417, 0.00388364982791245, 0.009660255163908005, -0.04808899015188217, 0.2846493124961853, 0.19205918908119202, -0.0055127437226474285, 0.9840966463088989, 0.14812502264976501, 0.06304901093244553, -0.06316885352134705, 0.28813672065734863, -0.201323002576828, 0.028558408841490746, 0.9912033081054688, -0.1937369853258133, 0.06164685636758804, 0.023489082232117653]} +{"t": 0.6029, "q": [-0.35432910919189453, -0.012164467945694923, 0.006320974789559841, 0.6287786960601807, -0.31681594252586365, 0.016566332429647446, -0.3899259865283966, 0.0003834952076431364, -0.003441717242822051, 0.5996927618980408, -0.2803947627544403, 0.0018193196738138795, 0.003910433501005173, 0.009629850275814533, -0.048118557780981064, 0.2846493124961853, 0.19205918908119202, -0.0055007594637572765, 0.9840966463088989, 0.14812502264976501, 0.06302504241466522, -0.0631568655371666, 0.28805282711982727, -0.20131102204322815, 0.02852245606482029, 0.9912272691726685, -0.1937130093574524, 0.06163487210869789, 0.023489082232117653]} +{"t": 0.6196, "q": [-0.354295015335083, -0.012181512080132961, 0.006347758695483208, 0.6287786960601807, -0.31679949164390564, 0.01655193231999874, -0.3898833692073822, 0.0004005394293926656, -0.0034952848218381405, 0.5996927618980408, -0.2803906202316284, 0.0018265143735334277, 0.0038970415480434895, 0.009645060636103153, -0.04811863973736763, 0.2846493124961853, 0.19205918908119202, -0.0055367122404277325, 0.9840966463088989, 0.14820891618728638, 0.06303702294826508, -0.0631568655371666, 0.2880408465862274, -0.20133498311042786, 0.028570393100380898, 0.991263210773468, -0.19370102882385254, 0.061658840626478195, 0.023489082232117653]} +{"t": 0.6364, "q": [-0.35426944494247437, -0.012181512080132961, 0.006374542135745287, 0.6287872195243835, -0.31678298115730286, 0.016552014276385307, -0.3898237347602844, 0.00037497308221645653, -0.0034551091957837343, 0.5996927618980408, -0.28038644790649414, 0.0018192490097135305, 0.0038702578749507666, 0.009660267271101475, -0.04810881242156029, 0.2846253514289856, 0.19205918908119202, -0.0055247279815375805, 0.9840846657752991, 0.14820891618728638, 0.06306099146604538, -0.0631808340549469, 0.28802886605262756, -0.201323002576828, 0.02858237735927105, 0.9912871718406677, -0.19372500479221344, 0.06164685636758804, 0.0234770979732275]} +{"t": 0.6532, "q": [-0.35427796840667725, -0.012198556214571, 0.0064013260416686535, 0.6287957429885864, -0.31679534912109375, 0.016559207811951637, -0.38981521129608154, 0.0003834952076431364, -0.003468500915914774, 0.5997012853622437, -0.28039056062698364, 0.0018120543099939823, 0.0038568659219890833, 0.009667881764471531, -0.04812372103333473, 0.2846493124961853, 0.19205918908119202, -0.0055007594637572765, 0.9840966463088989, 0.14822089672088623, 0.06306099146604538, -0.0631568655371666, 0.2880648076534271, -0.2012990266084671, 0.0285943616181612, 0.9912871718406677, -0.19374896585941315, 0.06163487210869789, 0.02346511371433735]} +{"t": 0.6699, "q": [-0.3542439043521881, -0.012207078747451305, 0.00638793408870697, 0.6287957429885864, -0.31679534912109375, 0.016559207811951637, -0.38980668783187866, 0.0004090615548193455, -0.003468500915914774, 0.5997098088264465, -0.28038644790649414, 0.0018192490097135305, 0.00388364982791245, 0.009675485081970692, -0.04811880737543106, 0.28466129302978516, 0.19208316504955292, -0.0055007594637572765, 0.9840966463088989, 0.14817295968532562, 0.06308495998382568, -0.06314488500356674, 0.28805282711982727, -0.2012990266084671, 0.02864229865372181, 0.9913231134414673, -0.1938328593969345, 0.06167082488536835, 0.0234770979732275]} +{"t": 0.6867, "q": [-0.3542439043521881, -0.012198556214571, 0.006414717994630337, 0.6288042664527893, -0.3168160021305084, 0.016522832214832306, -0.38980668783187866, 0.0003834952076431364, -0.0035086767747998238, 0.5997012853622437, -0.28038644790649414, 0.0018192490097135305, 0.0038970415480434895, 0.00964508019387722, -0.04814837500452995, 0.28466129302978516, 0.19205918908119202, -0.0055127437226474285, 0.9840966463088989, 0.14819693565368652, 0.06307297945022583, -0.06316885352134705, 0.28805282711982727, -0.2012990266084671, 0.028678251430392265, 0.9913231134414673, -0.19374896585941315, 0.061658840626478195, 0.02346511371433735]} +{"t": 0.7034, "q": [-0.35422685742378235, -0.012207078747451305, 0.006454893853515387, 0.6288127899169922, -0.3168160021305084, 0.016522832214832306, -0.38978111743927, 0.0003920173039659858, -0.003481892868876457, 0.5997098088264465, -0.28038230538368225, 0.001826443593017757, 0.00388364982791245, 0.009683096781373024, -0.0481238067150116, 0.28466129302978516, 0.19205918908119202, -0.0055247279815375805, 0.9840846657752991, 0.14820891618728638, 0.06306099146604538, -0.06316885352134705, 0.28807681798934937, -0.20128704607486725, 0.028666267171502113, 0.991347074508667, -0.1937849223613739, 0.06163487210869789, 0.02346511371433735]} +{"t": 0.7201, "q": [-0.3542098104953766, -0.012198556214571, 0.006508461199700832, 0.6288042664527893, -0.3168366849422455, 0.01648643985390663, -0.38978111743927, 0.0004005394293926656, -0.0034952848218381405, 0.5997268557548523, -0.28038638830184937, 0.0018048069905489683, 0.003910433501005173, 0.009705918841063976, -0.0481288880109787, 0.2846493124961853, 0.19205918908119202, -0.0055007594637572765, 0.9840846657752991, 0.14820891618728638, 0.06306099146604538, -0.06316885352134705, 0.2880408465862274, -0.2012750655412674, 0.028678251430392265, 0.9913350939750671, -0.19382087886333466, 0.06164685636758804, 0.023489082232117653]} +{"t": 0.737, "q": [-0.35422685742378235, -0.012215601280331612, 0.006481677293777466, 0.6287957429885864, -0.3168202042579651, 0.016486521810293198, -0.38978111743927, 0.0003834952076431364, -0.0035086767747998238, 0.5997353792190552, -0.2803947627544403, 0.0018193196738138795, 0.0038702578749507666, 0.00968312006443739, -0.04816345125436783, 0.28466129302978516, 0.19205918908119202, -0.0055247279815375805, 0.9840966463088989, 0.14822089672088623, 0.06306099146604538, -0.06316885352134705, 0.28805282711982727, -0.2012750655412674, 0.028750156983733177, 0.9913710355758667, -0.19379690289497375, 0.06167082488536835, 0.023489082232117653]} +{"t": 0.7537, "q": [-0.35422685742378235, -0.012207078747451305, 0.00646828580647707, 0.6288213133811951, -0.316832572221756, 0.016493715345859528, -0.3898237347602844, 0.00037497308221645653, -0.0034551091957837343, 0.5997438430786133, -0.2803947627544403, 0.0018193196738138795, 0.0039506093598902225, 0.009660286828875542, -0.04813854768872261, 0.28466129302978516, 0.19205918908119202, -0.0055127437226474285, 0.9840846657752991, 0.14817295968532562, 0.06304901093244553, -0.06316885352134705, 0.28802886605262756, -0.20126308500766754, 0.02877412550151348, 0.9913830757141113, -0.193760946393013, 0.06167082488536835, 0.0234770979732275]} +{"t": 0.7704, "q": [-0.35422685742378235, -0.012215601280331612, 0.00642810994759202, 0.6287957429885864, -0.3168408274650574, 0.016479166224598885, -0.38981521129608154, 0.0003834952076431364, -0.0034551091957837343, 0.5997268557548523, -0.2803947627544403, 0.0018193196738138795, 0.0038970415480434895, 0.009698326699435711, -0.048153623938560486, 0.28466129302978516, 0.19209514558315277, -0.0055007594637572765, 0.9840966463088989, 0.14822089672088623, 0.06306099146604538, -0.06316885352134705, 0.28802886605262756, -0.2012750655412674, 0.028846031054854393, 0.9913950562477112, -0.19374896585941315, 0.06167082488536835, 0.02346511371433735]} +{"t": 0.7872, "q": [-0.354252427816391, -0.012215601280331612, 0.006414717994630337, 0.6288127899169922, -0.3168366551399231, 0.016515439376235008, -0.3898237347602844, 0.0003664509567897767, -0.0034283252898603678, 0.5997268557548523, -0.2803906202316284, 0.0018265143735334277, 0.003937217406928539, 0.009683112613856792, -0.04815353825688362, 0.28466129302978516, 0.19207118451595306, -0.0055007594637572765, 0.9840846657752991, 0.14814899861812592, 0.06306099146604538, -0.06316885352134705, 0.28802886605262756, -0.2012510895729065, 0.028858013451099396, 0.991407036781311, -0.1937849223613739, 0.061658840626478195, 0.023489082232117653]} +{"t": 0.8039, "q": [-0.354252427816391, -0.012215601280331612, 0.006441501900553703, 0.6287872195243835, -0.3168531656265259, 0.016500839963555336, -0.38985782861709595, 0.0003664509567897767, -0.0034283252898603678, 0.5997438430786133, -0.2803989350795746, 0.0018265671096742153, 0.003964001312851906, 0.009698315523564816, -0.04813380166888237, 0.28466129302978516, 0.19207118451595306, -0.0055127437226474285, 0.9840966463088989, 0.14819693565368652, 0.06306099146604538, -0.06316885352134705, 0.28802886605262756, -0.20123910903930664, 0.028905950486660004, 0.9914429783821106, -0.19382087886333466, 0.0616828091442585, 0.023489082232117653]} +{"t": 0.8206, "q": [-0.35427796840667725, -0.012198556214571, 0.00638793408870697, 0.6287872195243835, -0.3168449103832245, 0.016500890254974365, -0.3898748457431793, 0.00037497308221645653, -0.0033881496638059616, 0.5997353792190552, -0.2803989350795746, 0.0018265671096742153, 0.003923825453966856, 0.009721125476062298, -0.048119064420461655, 0.28463733196258545, 0.19207118451595306, -0.0055007594637572765, 0.9840966463088989, 0.14820891618728638, 0.06308495998382568, -0.06316885352134705, 0.2880408465862274, -0.20123910903930664, 0.028905950486660004, 0.9914429783821106, -0.19379690289497375, 0.06171875819563866, 0.023489082232117653]} +{"t": 0.8374, "q": [-0.354295015335083, -0.012224122881889343, 0.00638793408870697, 0.6287786960601807, -0.3168449103832245, 0.016500890254974365, -0.3898918926715851, 0.0003664509567897767, -0.003361365757882595, 0.5997012853622437, -0.28040724992752075, 0.001826619845815003, 0.00388364982791245, 0.009683100506663322, -0.048133715987205505, 0.2846493124961853, 0.19207118451595306, -0.0054887752048671246, 0.9840966463088989, 0.14819693565368652, 0.06304901093244553, -0.06316885352134705, 0.28800490498542786, -0.2012271285057068, 0.028917934745550156, 0.9914549589157104, -0.193760946393013, 0.0616828091442585, 0.023489082232117653]} +{"t": 0.8541, "q": [-0.3543035387992859, -0.012224122881889343, 0.006414717994630337, 0.6287786960601807, -0.31685319542884827, 0.016486341133713722, -0.38990893959999084, 0.00037497308221645653, -0.0034015413839370012, 0.5997268557548523, -0.28040724992752075, 0.001826619845815003, 0.003977392800152302, 0.009721125476062298, -0.048119064420461655, 0.2846493124961853, 0.19208316504955292, -0.0055007594637572765, 0.9840726852416992, 0.14819693565368652, 0.06306099146604538, -0.0631808340549469, 0.28802886605262756, -0.20121514797210693, 0.02895388752222061, 0.9914789199829102, -0.19379690289497375, 0.0616828091442585, 0.023489082232117653]} +{"t": 0.8708, "q": [-0.3543035387992859, -0.012215601280331612, 0.006374542135745287, 0.6287872195243835, -0.316849023103714, 0.016508115455508232, -0.3899259865283966, 0.0003664509567897767, -0.0033881496638059616, 0.5997353792190552, -0.28040313720703125, 0.0018338144291192293, 0.003910433501005173, 0.009660286828875542, -0.04813854768872261, 0.2846493124961853, 0.19205918908119202, -0.0055127437226474285, 0.9840966463088989, 0.14820891618728638, 0.06306099146604538, -0.0631808340549469, 0.28802886605262756, -0.20121514797210693, 0.028929919004440308, 0.99149090051651, -0.1937849223613739, 0.0616828091442585, 0.0234770979732275]} +{"t": 0.8875, "q": [-0.354295015335083, -0.012215601280331612, 0.00638793408870697, 0.6287701725959778, -0.316849023103714, 0.016508115455508232, -0.3899345099925995, 0.0003920173039659858, -0.0033747577108442783, 0.5997353792190552, -0.2804155647754669, 0.0018266724655404687, 0.003910433501005173, 0.009629861451685429, -0.04813838005065918, 0.28463733196258545, 0.19205918908119202, -0.0055127437226474285, 0.9840726852416992, 0.14817295968532562, 0.06307297945022583, -0.0631808340549469, 0.2880168855190277, -0.20123910903930664, 0.028929919004440308, 0.99149090051651, -0.1938328593969345, 0.061658840626478195, 0.023489082232117653]} +{"t": 0.9043, "q": [-0.35431206226348877, -0.012215601280331612, 0.0064013260416686535, 0.6287701725959778, -0.3168407678604126, 0.016522664576768875, -0.3899345099925995, 0.0003664509567897767, -0.0033747577108442783, 0.5997183322906494, -0.28040724992752075, 0.001826619845815003, 0.003923825453966856, 0.009622261859476566, -0.04815320298075676, 0.28463733196258545, 0.19205918908119202, -0.0055247279815375805, 0.9841086268424988, 0.14814899861812592, 0.06306099146604538, -0.0631808340549469, 0.28802886605262756, -0.20121514797210693, 0.02894190326333046, 0.9914789199829102, -0.193760946393013, 0.06169478967785835, 0.023489082232117653]} +{"t": 0.921, "q": [-0.3543035387992859, -0.012215601280331612, 0.0064013260416686535, 0.6287701725959778, -0.3168366551399231, 0.016515439376235008, -0.3899259865283966, 0.0003664509567897767, -0.0034149333368986845, 0.5997183322906494, -0.2803947627544403, 0.0018193196738138795, 0.0038970415480434895, 0.009569027461111546, -0.048167772591114044, 0.28463733196258545, 0.19205918908119202, -0.0055127437226474285, 0.9840966463088989, 0.14819693565368652, 0.06306099146604538, -0.0631808340549469, 0.2880168855190277, -0.20121514797210693, 0.02894190326333046, 0.9915148615837097, -0.193760946393013, 0.061658840626478195, 0.0234770979732275]} +{"t": 0.9378, "q": [-0.35432058572769165, -0.012215601280331612, 0.00638793408870697, 0.6287786960601807, -0.3168366253376007, 0.01652994006872177, -0.3899345099925995, 0.00037497308221645653, -0.0033881496638059616, 0.5997353792190552, -0.28040724992752075, 0.001826619845815003, 0.003910433501005173, 0.009599440731108189, -0.04814812168478966, 0.28466129302978516, 0.19207118451595306, -0.0054887752048671246, 0.9840966463088989, 0.14820891618728638, 0.06304901093244553, -0.06316885352134705, 0.28795695304870605, -0.2012031525373459, 0.02894190326333046, 0.9915388226509094, -0.19379690289497375, 0.0616828091442585, 0.02346511371433735]} +{"t": 0.9545, "q": [-0.3543035387992859, -0.012224122881889343, 0.0064013260416686535, 0.6287786960601807, -0.3168324828147888, 0.016537215560674667, -0.3899259865283966, 0.0003664509567897767, -0.0034149333368986845, 0.5997183322906494, -0.280407190322876, 0.0018121778266504407, 0.00388364982791245, 0.009614658541977406, -0.04815811663866043, 0.28463733196258545, 0.19208316504955292, -0.0055247279815375805, 0.9840966463088989, 0.14816097915172577, 0.06303702294826508, -0.06316885352134705, 0.2879449725151062, -0.2012031525373459, 0.02894190326333046, 0.9915388226509094, -0.19377294182777405, 0.06167082488536835, 0.023453129455447197]} +{"t": 0.9712, "q": [-0.3543035387992859, -0.012232644483447075, 0.00642810994759202, 0.6287872195243835, -0.3168325126171112, 0.016522714868187904, -0.3899345099925995, 0.0003834952076431364, -0.0034283252898603678, 0.5997438430786133, -0.2803989350795746, 0.0018265671096742153, 0.0038702578749507666, 0.009591844864189625, -0.04816294461488724, 0.2846253514289856, 0.19207118451595306, -0.0055367122404277325, 0.9840966463088989, 0.14816097915172577, 0.06308495998382568, -0.0631808340549469, 0.28793299198150635, -0.2012031525373459, 0.028965871781110764, 0.9915868043899536, -0.1938088834285736, 0.0616828091442585, 0.023489082232117653]} +{"t": 0.988, "q": [-0.354295015335083, -0.012207078747451305, 0.00642810994759202, 0.6288127899169922, -0.3168242871761322, 0.01650826446712017, -0.38995155692100525, 0.00037497308221645653, -0.0034283252898603678, 0.5997353792190552, -0.2803947627544403, 0.0018193196738138795, 0.003937217406928539, 0.009607055224478245, -0.048163026571273804, 0.2846253514289856, 0.19205918908119202, -0.0055127437226474285, 0.9840966463088989, 0.14814899861812592, 0.06306099146604538, -0.06319282203912735, 0.28790903091430664, -0.2012031525373459, 0.028977856040000916, 0.9915748238563538, -0.19377294182777405, 0.061658840626478195, 0.02346511371433735]} +{"t": 1.0051, "q": [-0.35431206226348877, -0.012215601280331612, 0.006441501900553703, 0.6287957429885864, -0.3168283998966217, 0.016515489667654037, -0.3899174630641937, 0.0003920173039659858, -0.0034283252898603678, 0.5997438430786133, -0.28041133284568787, 0.0018049831269308925, 0.003910433501005173, 0.00966029055416584, -0.04814845696091652, 0.28463733196258545, 0.19205918908119202, -0.0055127437226474285, 0.9840966463088989, 0.14814899861812592, 0.06304901093244553, -0.06319282203912735, 0.28790903091430664, -0.2012031525373459, 0.028977856040000916, 0.9915748238563538, -0.19379690289497375, 0.06167082488536835, 0.0234770979732275]} +{"t": 1.0219, "q": [-0.3542864918708801, -0.012224122881889343, 0.006414717994630337, 0.6288042664527893, -0.31680360436439514, 0.016559157520532608, -0.3898748457431793, 0.0004005394293926656, -0.003441717242822051, 0.5997268557548523, -0.2803948223590851, 0.0018337616929784417, 0.0038568659219890833, 0.00963747687637806, -0.048153288662433624, 0.2846253514289856, 0.19205918908119202, -0.0055127437226474285, 0.9840966463088989, 0.14813700318336487, 0.06307297945022583, -0.0631568655371666, 0.28788506984710693, -0.2012031525373459, 0.02895388752222061, 0.9916107654571533, -0.19379690289497375, 0.0616828091442585, 0.0234770979732275]} +{"t": 1.0386, "q": [-0.35427796840667725, -0.012215601280331612, 0.006414717994630337, 0.6288127899169922, -0.31680771708488464, 0.016551882028579712, -0.38986632227897644, 0.0003834952076431364, -0.0034283252898603678, 0.5997438430786133, -0.2803947627544403, 0.0018193196738138795, 0.0038970415480434895, 0.009675493463873863, -0.04812872037291527, 0.28463733196258545, 0.19208316504955292, -0.0055127437226474285, 0.9840966463088989, 0.14818494021892548, 0.06303702294826508, -0.0631808340549469, 0.28788506984710693, -0.2012031525373459, 0.028965871781110764, 0.9915868043899536, -0.19377294182777405, 0.0616828091442585, 0.023489082232117653]} +{"t": 1.0554, "q": [-0.35426944494247437, -0.012232644483447075, 0.0064013260416686535, 0.6287957429885864, -0.3168160021305084, 0.016522832214832306, -0.3898748457431793, 0.0003920173039659858, -0.0034283252898603678, 0.5997438430786133, -0.2803906202316284, 0.0018265143735334277, 0.0038568659219890833, 0.00968312006443739, -0.04816345125436783, 0.28463733196258545, 0.19205918908119202, -0.0055007594637572765, 0.9840846657752991, 0.14819693565368652, 0.06306099146604538, -0.06316885352134705, 0.28790903091430664, -0.20119117200374603, 0.02894190326333046, 0.9915868043899536, -0.19377294182777405, 0.06167082488536835, 0.0234770979732275]} +{"t": 1.0721, "q": [-0.35426095128059387, -0.012232644483447075, 0.006441501900553703, 0.6288127899169922, -0.31678706407546997, 0.01657375693321228, -0.3898748457431793, 0.0003920173039659858, -0.0034283252898603678, 0.5997864603996277, -0.2803989052772522, 0.001812125090509653, 0.003910433501005173, 0.009667890146374702, -0.04813363403081894, 0.2846253514289856, 0.19205918908119202, -0.0055247279815375805, 0.9840846657752991, 0.14820891618728638, 0.06304901093244553, -0.0631808340549469, 0.2878970503807068, -0.20119117200374603, 0.028977856040000916, 0.9915868043899536, -0.19377294182777405, 0.0616828091442585, 0.0234770979732275]} +{"t": 1.0889, "q": [-0.35426095128059387, -0.012207078747451305, 0.00642810994759202, 0.6288127899169922, -0.3168242573738098, 0.016522765159606934, -0.38986632227897644, 0.0003834952076431364, -0.003441717242822051, 0.5997779369354248, -0.2803906202316284, 0.0018265143735334277, 0.003910433501005173, 0.009683112613856792, -0.04815353825688362, 0.2846013903617859, 0.19205918908119202, -0.0055127437226474285, 0.9840846657752991, 0.14820891618728638, 0.06306099146604538, -0.0631568655371666, 0.28790903091430664, -0.20119117200374603, 0.028965871781110764, 0.9916107654571533, -0.19382087886333466, 0.0616828091442585, 0.023489082232117653]} +{"t": 1.1057, "q": [-0.35426944494247437, -0.012215601280331612, 0.006441501900553703, 0.6288127899169922, -0.3168160021305084, 0.016522832214832306, -0.38986632227897644, 0.0003834952076431364, -0.0034551091957837343, 0.5997949838638306, -0.2804030179977417, 0.0018049303907901049, 0.003937217406928539, 0.009667902253568172, -0.048153456300497055, 0.28461337089538574, 0.19207118451595306, -0.0055247279815375805, 0.9840966463088989, 0.14820891618728638, 0.06306099146604538, -0.06316885352134705, 0.28790903091430664, -0.20117919147014618, 0.02900182455778122, 0.9915868043899536, -0.19379690289497375, 0.06169478967785835, 0.02346511371433735]} +{"t": 1.1224, "q": [-0.35426944494247437, -0.012232644483447075, 0.00642810994759202, 0.6288213133811951, -0.3168449103832245, 0.016500890254974365, -0.38986632227897644, 0.0003834952076431364, -0.003468500915914774, 0.5997779369354248, -0.2803989052772522, 0.001812125090509653, 0.003910433501005173, 0.009675516746938229, -0.0481683649122715, 0.2846253514289856, 0.19205918908119202, -0.0055007594637572765, 0.9841086268424988, 0.14819693565368652, 0.06307297945022583, -0.0631808340549469, 0.2878970503807068, -0.20117919147014618, 0.028989840298891068, 0.9915987849235535, -0.19382087886333466, 0.0616828091442585, 0.0234770979732275]} +{"t": 1.1391, "q": [-0.35427796840667725, -0.012232644483447075, 0.006441501900553703, 0.628829836845398, -0.3168284296989441, 0.016500990837812424, -0.3898748457431793, 0.00037497308221645653, -0.003468500915914774, 0.5997949838638306, -0.2804030776023865, 0.001819372409954667, 0.00388364982791245, 0.009660313837230206, -0.04818810150027275, 0.2846253514289856, 0.19208316504955292, -0.0055247279815375805, 0.9840966463088989, 0.14820891618728638, 0.06307297945022583, -0.0631808340549469, 0.2878970503807068, -0.20117919147014618, 0.029025793075561523, 0.9916107654571533, -0.19377294182777405, 0.06169478967785835, 0.0234770979732275]} +{"t": 1.1558, "q": [-0.3542864918708801, -0.012224122881889343, 0.00642810994759202, 0.6288127899169922, -0.3168366849422455, 0.01648643985390663, -0.38990041613578796, 0.00037497308221645653, -0.003468500915914774, 0.5997779369354248, -0.2804030776023865, 0.001819372409954667, 0.0038970415480434895, 0.009607079438865185, -0.048202671110630035, 0.28463733196258545, 0.19207118451595306, -0.0055247279815375805, 0.9840966463088989, 0.14822089672088623, 0.06307297945022583, -0.06319282203912735, 0.2878970503807068, -0.20119117200374603, 0.029037777334451675, 0.9916107654571533, -0.19384483993053436, 0.0616828091442585, 0.02346511371433735]} +{"t": 1.1726, "q": [-0.35427796840667725, -0.012215601280331612, 0.006414717994630337, 0.6288127899169922, -0.3168366551399231, 0.016500940546393394, -0.3898918926715851, 0.0003834952076431364, -0.0034551091957837343, 0.5998120307922363, -0.2803989052772522, 0.001812125090509653, 0.003910433501005173, 0.009667913429439068, -0.04817327857017517, 0.2846253514289856, 0.19207118451595306, -0.0055007594637572765, 0.9840966463088989, 0.14817295968532562, 0.06307297945022583, -0.06319282203912735, 0.28790903091430664, -0.20117919147014618, 0.02901380881667137, 0.9916107654571533, -0.1938088834285736, 0.0616828091442585, 0.023489082232117653]} +{"t": 1.1893, "q": [-0.354295015335083, -0.012232644483447075, 0.00642810994759202, 0.6288127899169922, -0.3168407678604126, 0.01650816574692726, -0.38990893959999084, 0.00037497308221645653, -0.0034283252898603678, 0.5998035073280334, -0.28040313720703125, 0.0018338144291192293, 0.0039506093598902225, 0.009652706794440746, -0.04818310588598251, 0.28461337089538574, 0.19205918908119202, -0.0055127437226474285, 0.9840966463088989, 0.14819693565368652, 0.06308495998382568, -0.06319282203912735, 0.28788506984710693, -0.20117919147014618, 0.02900182455778122, 0.9916227459907532, -0.19379690289497375, 0.0616828091442585, 0.02346511371433735]} +{"t": 1.2062, "q": [-0.35427796840667725, -0.012232644483447075, 0.006374542135745287, 0.6288042664527893, -0.3168407678604126, 0.01650816574692726, -0.3899174630641937, 0.0003834952076431364, -0.0034149333368986845, 0.5997864603996277, -0.28040724992752075, 0.001826619845815003, 0.0038970415480434895, 0.009637503884732723, -0.048202838748693466, 0.2846253514289856, 0.19207118451595306, -0.0055247279815375805, 0.9840966463088989, 0.14816097915172577, 0.06308495998382568, -0.06316885352134705, 0.28788506984710693, -0.20117919147014618, 0.029025793075561523, 0.9915868043899536, -0.1937849223613739, 0.061658840626478195, 0.0234770979732275]} +{"t": 1.223, "q": [-0.354295015335083, -0.012232644483447075, 0.0064013260416686535, 0.6288127899169922, -0.3168366849422455, 0.01648643985390663, -0.3899174630641937, 0.0003834952076431364, -0.0034551091957837343, 0.5998035073280334, -0.28040313720703125, 0.0018338144291192293, 0.003910433501005173, 0.009645096026360989, -0.04817810654640198, 0.28461337089538574, 0.19205918908119202, -0.0055127437226474285, 0.9840966463088989, 0.14819693565368652, 0.06306099146604538, -0.06316885352134705, 0.28786107897758484, -0.20117919147014618, 0.02900182455778122, 0.9916107654571533, -0.19377294182777405, 0.0616828091442585, 0.0234770979732275]} +{"t": 1.2397, "q": [-0.35431206226348877, -0.012207078747451305, 0.006414717994630337, 0.6288127899169922, -0.3168449103832245, 0.016500890254974365, -0.3899345099925995, 0.00037497308221645653, -0.0034551091957837343, 0.5997779369354248, -0.2803947627544403, 0.0018193196738138795, 0.003923825453966856, 0.009607075713574886, -0.04819276183843613, 0.2846253514289856, 0.19207118451595306, -0.0055127437226474285, 0.9840846657752991, 0.14820891618728638, 0.06308495998382568, -0.0631808340549469, 0.2878251373767853, -0.20117919147014618, 0.02900182455778122, 0.9916107654571533, -0.193760946393013, 0.061658840626478195, 0.023501066491007805]} +{"t": 1.2564, "q": [-0.35431206226348877, -0.012215601280331612, 0.0064013260416686535, 0.6288042664527893, -0.3168449103832245, 0.016500890254974365, -0.3899259865283966, 0.0003834952076431364, -0.003441717242822051, 0.5997864603996277, -0.2803989052772522, 0.001812125090509653, 0.00388364982791245, 0.009652706794440746, -0.04818310588598251, 0.2846253514289856, 0.19205918908119202, -0.0055127437226474285, 0.9840966463088989, 0.14822089672088623, 0.06307297945022583, -0.06316885352134705, 0.28780117630958557, -0.20117919147014618, 0.029037777334451675, 0.9915987849235535, -0.1937369853258133, 0.0616828091442585, 0.0234770979732275]} +{"t": 1.2732, "q": [-0.3543035387992859, -0.012215601280331612, 0.00638793408870697, 0.6288042664527893, -0.3168366551399231, 0.016515439376235008, -0.3899259865283966, 0.00037497308221645653, -0.003441717242822051, 0.5997864603996277, -0.2804114520549774, 0.001833867165260017, 0.00388364982791245, 0.009622286073863506, -0.04819284379482269, 0.2846253514289856, 0.19207118451595306, -0.0055127437226474285, 0.9840966463088989, 0.14814899861812592, 0.06308495998382568, -0.0632048025727272, 0.28777721524238586, -0.20117919147014618, 0.02901380881667137, 0.9915987849235535, -0.19377294182777405, 0.0616828091442585, 0.023489082232117653]} +{"t": 1.2899, "q": [-0.3543035387992859, -0.012224122881889343, 0.00638793408870697, 0.6288127899169922, -0.3168366253376007, 0.01652994006872177, -0.3899259865283966, 0.00037497308221645653, -0.003441717242822051, 0.5997779369354248, -0.28039899468421936, 0.0018410091288387775, 0.0038434739690274, 0.009622282348573208, -0.048182934522628784, 0.2846253514289856, 0.19208316504955292, -0.0055127437226474285, 0.9840846657752991, 0.14819693565368652, 0.06307297945022583, -0.0631808340549469, 0.28772926330566406, -0.20116721093654633, 0.029025793075561523, 0.9915987849235535, -0.19379690289497375, 0.061658840626478195, 0.0234770979732275]} +{"t": 1.3066, "q": [-0.35431206226348877, -0.012232644483447075, 0.00638793408870697, 0.6288213133811951, -0.3168283998966217, 0.016515489667654037, -0.3899345099925995, 0.0003664509567897767, -0.003441717242822051, 0.5997779369354248, -0.2803989350795746, 0.0018265671096742153, 0.003964001312851906, 0.00965269934386015, -0.048173192888498306, 0.28461337089538574, 0.19208316504955292, -0.0055127437226474285, 0.9840846657752991, 0.14817295968532562, 0.06307297945022583, -0.06316885352134705, 0.28772926330566406, -0.20116721093654633, 0.029025793075561523, 0.9916107654571533, -0.1937369853258133, 0.0616828091442585, 0.023489082232117653]} +{"t": 1.3234, "q": [-0.35431206226348877, -0.012232644483447075, 0.0064013260416686535, 0.628829836845398, -0.31680768728256226, 0.016566382721066475, -0.3899174630641937, 0.0003664509567897767, -0.0034551091957837343, 0.5997949838638306, -0.2803947627544403, 0.0018193196738138795, 0.003910433501005173, 0.009629885666072369, -0.04817802086472511, 0.2846013903617859, 0.19207118451595306, -0.0055127437226474285, 0.9840966463088989, 0.14820891618728638, 0.06307297945022583, -0.06316885352134705, 0.28772926330566406, -0.20117919147014618, 0.02900182455778122, 0.9915987849235535, -0.19374896585941315, 0.061658840626478195, 0.023489082232117653]} +{"t": 1.3401, "q": [-0.3543035387992859, -0.012232644483447075, 0.00646828580647707, 0.6288213133811951, -0.31679946184158325, 0.016566433012485504, -0.3899259865283966, 0.0003664509567897767, -0.0034952848218381405, 0.5998120307922363, -0.2803989350795746, 0.0018265671096742153, 0.0038434739690274, 0.009591860696673393, -0.04819267615675926, 0.2846013903617859, 0.19208316504955292, -0.0055007594637572765, 0.9840966463088989, 0.14819693565368652, 0.06306099146604538, -0.0631808340549469, 0.28768134117126465, -0.20117919147014618, 0.029025793075561523, 0.9915868043899536, -0.19377294182777405, 0.0616828091442585, 0.0234770979732275]} +{"t": 1.3568, "q": [-0.3543035387992859, -0.012215601280331612, 0.00646828580647707, 0.6288127899169922, -0.31680357456207275, 0.01657365821301937, -0.3899259865283966, 0.00037497308221645653, -0.0034551091957837343, 0.5998035073280334, -0.2803989350795746, 0.0018265671096742153, 0.003910433501005173, 0.009576650336384773, -0.048192594200372696, 0.28461337089538574, 0.19207118451595306, -0.0055247279815375805, 0.9840966463088989, 0.14817295968532562, 0.06306099146604538, -0.06319282203912735, 0.2876933217048645, -0.20116721093654633, 0.029025793075561523, 0.9915987849235535, -0.19377294182777405, 0.0616828091442585, 0.023501066491007805]} +{"t": 1.3736, "q": [-0.3543035387992859, -0.012232644483447075, 0.006495069246739149, 0.6288213133811951, -0.31680357456207275, 0.01657365821301937, -0.3899174630641937, 0.0003664509567897767, -0.0034283252898603678, 0.5998035073280334, -0.2803989052772522, 0.001812125090509653, 0.0038568659219890833, 0.009652683511376381, -0.04814346134662628, 0.2846013903617859, 0.19208316504955292, -0.0055247279815375805, 0.9840846657752991, 0.14822089672088623, 0.06307297945022583, -0.0631808340549469, 0.2876933217048645, -0.20116721093654633, 0.029025793075561523, 0.9916107654571533, -0.19382087886333466, 0.06167082488536835, 0.02346511371433735]} +{"t": 1.3903, "q": [-0.3543035387992859, -0.012232644483447075, 0.006495069246739149, 0.628829836845398, -0.3168242573738098, 0.016522765159606934, -0.3899259865283966, 0.0003579288604669273, -0.003468500915914774, 0.5998290777206421, -0.2804030776023865, 0.001819372409954667, 0.0038568659219890833, 0.009645083919167519, -0.04815828427672386, 0.2846013903617859, 0.19205918908119202, -0.0055127437226474285, 0.9840726852416992, 0.14820891618728638, 0.06306099146604538, -0.06319282203912735, 0.2876693308353424, -0.20116721093654633, 0.028989840298891068, 0.9916227459907532, -0.19379690289497375, 0.06167082488536835, 0.023489082232117653]} +{"t": 1.407, "q": [-0.354295015335083, -0.012232644483447075, 0.006481677293777466, 0.6288383603096008, -0.31679120659828186, 0.016566483303904533, -0.3899259865283966, 0.0003834952076431364, -0.0034551091957837343, 0.599837601184845, -0.2803947627544403, 0.0018193196738138795, 0.0039506093598902225, 0.009584265761077404, -0.04820750281214714, 0.2846013903617859, 0.19208316504955292, -0.0055127437226474285, 0.9840966463088989, 0.14820891618728638, 0.06308495998382568, -0.0632048025727272, 0.28765735030174255, -0.20115521550178528, 0.02901380881667137, 0.9916107654571533, -0.1937849223613739, 0.061658840626478195, 0.02346511371433735]} +{"t": 1.424, "q": [-0.354295015335083, -0.012241167016327381, 0.006495069246739149, 0.6288383603096008, -0.31679946184158325, 0.016566433012485504, -0.38990893959999084, 0.00037497308221645653, -0.003468500915914774, 0.5998631715774536, -0.28038644790649414, 0.0018192490097135305, 0.003910433501005173, 0.009576650336384773, -0.048192594200372696, 0.28461337089538574, 0.19208316504955292, -0.0055007594637572765, 0.9840846657752991, 0.14822089672088623, 0.06308495998382568, -0.06316885352134705, 0.28763338923454285, -0.20115521550178528, 0.028989840298891068, 0.9916107654571533, -0.1938088834285736, 0.06167082488536835, 0.02346511371433735]} +{"t": 1.4408, "q": [-0.354295015335083, -0.012207078747451305, 0.006481677293777466, 0.6288468837738037, -0.3168077766895294, 0.016522882506251335, -0.3899174630641937, 0.0003579288604669273, -0.003481892868876457, 0.5998802185058594, -0.2803906202316284, 0.0018265143735334277, 0.00388364982791245, 0.00965269934386015, -0.048173192888498306, 0.28461337089538574, 0.19205918908119202, -0.0055127437226474285, 0.9840966463088989, 0.14822089672088623, 0.06307297945022583, -0.0631808340549469, 0.28763338923454285, -0.20115521550178528, 0.029025793075561523, 0.9916227459907532, -0.19377294182777405, 0.061658840626478195, 0.0234770979732275]} +{"t": 1.4575, "q": [-0.354295015335083, -0.012241167016327381, 0.00646828580647707, 0.6288468837738037, -0.3168201446533203, 0.016515539959073067, -0.3899174630641937, 0.00037497308221645653, -0.003468500915914774, 0.5998887419700623, -0.2803947627544403, 0.0018193196738138795, 0.0038702578749507666, 0.009622282348573208, -0.048182934522628784, 0.2846253514289856, 0.19208316504955292, -0.0055127437226474285, 0.9840966463088989, 0.14820891618728638, 0.06309694796800613, -0.06316885352134705, 0.2875974476337433, -0.20116721093654633, 0.02901380881667137, 0.9916107654571533, -0.1937849223613739, 0.0616828091442585, 0.0234770979732275]} +{"t": 1.4742, "q": [-0.35427796840667725, -0.012224122881889343, 0.006441501900553703, 0.6288468837738037, -0.3168160021305084, 0.016522832214832306, -0.38990893959999084, 0.0003664509567897767, -0.0034551091957837343, 0.5998887419700623, -0.2803989350795746, 0.0018265671096742153, 0.003937217406928539, 0.009622297249734402, -0.04821266606450081, 0.28461337089538574, 0.19208316504955292, -0.0055127437226474285, 0.9840966463088989, 0.14823287725448608, 0.06308495998382568, -0.06316885352134705, 0.28760942816734314, -0.20115521550178528, 0.02901380881667137, 0.9916107654571533, -0.19377294182777405, 0.0616828091442585, 0.0234770979732275]} +{"t": 1.4909, "q": [-0.354295015335083, -0.012224122881889343, 0.006441501900553703, 0.6288639307022095, -0.3168325424194336, 0.01650821603834629, -0.3899174630641937, 0.0003664509567897767, -0.003468500915914774, 0.5999143123626709, -0.2803989052772522, 0.001812125090509653, 0.003910433501005173, 0.00959948729723692, -0.04822740703821182, 0.2846013903617859, 0.19205918908119202, -0.0055127437226474285, 0.9840966463088989, 0.14820891618728638, 0.06308495998382568, -0.06319282203912735, 0.28756147623062134, -0.20115521550178528, 0.02901380881667137, 0.9915868043899536, -0.19377294182777405, 0.06169478967785835, 0.0234770979732275]} +{"t": 1.5076, "q": [-0.3542864918708801, -0.012241167016327381, 0.006441501900553703, 0.6288639307022095, -0.3168407678604126, 0.01650816574692726, -0.3899259865283966, 0.0003664509567897767, -0.003481892868876457, 0.599905788898468, -0.2803947627544403, 0.0018193196738138795, 0.003816690295934677, 0.009660334326326847, -0.048217833042144775, 0.28461337089538574, 0.19205918908119202, -0.0055127437226474285, 0.9840966463088989, 0.14819693565368652, 0.06308495998382568, -0.0631808340549469, 0.2875734567642212, -0.20115521550178528, 0.029037777334451675, 0.9916107654571533, -0.193760946393013, 0.0616828091442585, 0.02346511371433735]} +{"t": 1.5244, "q": [-0.3542864918708801, -0.012241167016327381, 0.006454893853515387, 0.6288724541664124, -0.3168201446533203, 0.016515539959073067, -0.38990893959999084, 0.00037497308221645653, -0.0034551091957837343, 0.5999313592910767, -0.2804030179977417, 0.0018049303907901049, 0.0038702578749507666, 0.009614706039428711, -0.048237401992082596, 0.28461337089538574, 0.19208316504955292, -0.0055127437226474285, 0.9840966463088989, 0.14819693565368652, 0.06310892850160599, -0.0631808340549469, 0.2875255346298218, -0.20115521550178528, 0.029025793075561523, 0.9916107654571533, -0.19377294182777405, 0.06169478967785835, 0.0234770979732275]} +{"t": 1.5411, "q": [-0.35426944494247437, -0.012241167016327381, 0.006454893853515387, 0.6288809776306152, -0.3168201148509979, 0.016530057415366173, -0.3899345099925995, 0.00037497308221645653, -0.0034551091957837343, 0.5999569296836853, -0.2804030776023865, 0.001819372409954667, 0.0038702578749507666, 0.009645119309425354, -0.04821774736046791, 0.2846013903617859, 0.19208316504955292, -0.0055007594637572765, 0.9840846657752991, 0.14819693565368652, 0.06308495998382568, -0.0631568655371666, 0.2874895930290222, -0.20115521550178528, 0.029025793075561523, 0.9916107654571533, -0.19384483993053436, 0.06167082488536835, 0.0234770979732275]} +{"t": 1.5579, "q": [-0.35427796840667725, -0.012249689549207687, 0.006414717994630337, 0.6288809776306152, -0.3168283998966217, 0.016515489667654037, -0.3899345099925995, 0.0003920173039659858, -0.0034551091957837343, 0.5999569296836853, -0.2803947627544403, 0.0018193196738138795, 0.003803298342972994, 0.009637503884732723, -0.048202838748693466, 0.28461337089538574, 0.19208316504955292, -0.0055007594637572765, 0.9840846657752991, 0.14822089672088623, 0.06308495998382568, -0.0631568655371666, 0.28742966055870056, -0.20115521550178528, 0.029037777334451675, 0.9915868043899536, -0.1937369853258133, 0.0616828091442585, 0.0234770979732275]} +{"t": 1.5746, "q": [-0.354295015335083, -0.012241167016327381, 0.006441501900553703, 0.6289065480232239, -0.3168283700942993, 0.0165299903601408, -0.3899259865283966, 0.0003664509567897767, -0.0034551091957837343, 0.5999569296836853, -0.2803947627544403, 0.0018193196738138795, 0.003923825453966856, 0.009645115584135056, -0.048207838088274, 0.2846253514289856, 0.19207118451595306, -0.0055127437226474285, 0.9840966463088989, 0.14808906614780426, 0.06308495998382568, -0.06316885352134705, 0.28742966055870056, -0.20115521550178528, 0.029037777334451675, 0.9915868043899536, -0.19377294182777405, 0.06167082488536835, 0.02346511371433735]} +{"t": 1.5913, "q": [-0.3542864918708801, -0.012241167016327381, 0.00646828580647707, 0.628898024559021, -0.3168242573738098, 0.016522765159606934, -0.3899345099925995, 0.00037497308221645653, -0.0034551091957837343, 0.599982500076294, -0.280407190322876, 0.0018121778266504407, 0.00388364982791245, 0.009637503884732723, -0.048202838748693466, 0.2846013903617859, 0.19209514558315277, -0.0055127437226474285, 0.9840966463088989, 0.14820891618728638, 0.06308495998382568, -0.0631808340549469, 0.28740569949150085, -0.20115521550178528, 0.029049761593341827, 0.9916107654571533, -0.19377294182777405, 0.0616828091442585, 0.0234770979732275]} +{"t": 1.6081, "q": [-0.3542864918708801, -0.012232644483447075, 0.00646828580647707, 0.6289065480232239, -0.3168160021305084, 0.016522832214832306, -0.3899345099925995, 0.0003834952076431364, -0.0034551091957837343, 0.5999398827552795, -0.280407190322876, 0.0018121778266504407, 0.0038434739690274, 0.009614702314138412, -0.04822749271988869, 0.2846253514289856, 0.19207118451595306, -0.0055127437226474285, 0.9840966463088989, 0.14820891618728638, 0.06307297945022583, -0.0631808340549469, 0.2874176800251007, -0.20115521550178528, 0.029049761593341827, 0.9915987849235535, -0.193760946393013, 0.06167082488536835, 0.0234770979732275]} +{"t": 1.6248, "q": [-0.3543035387992859, -0.012249689549207687, 0.006508461199700832, 0.6289065480232239, -0.31680768728256226, 0.016580883413553238, -0.3899259865283966, 0.00037497308221645653, -0.0034551091957837343, 0.5999739766120911, -0.2803989052772522, 0.001812125090509653, 0.00388364982791245, 0.00968313217163086, -0.048183273524045944, 0.28461337089538574, 0.19208316504955292, -0.0055127437226474285, 0.9840966463088989, 0.14820891618728638, 0.06308495998382568, -0.0631808340549469, 0.287393718957901, -0.20114323496818542, 0.029037777334451675, 0.9916107654571533, -0.193760946393013, 0.0616828091442585, 0.0234770979732275]} +{"t": 1.6416, "q": [-0.354295015335083, -0.012258211150765419, 0.006495069246739149, 0.6289235949516296, -0.31681597232818604, 0.016551833599805832, -0.38994303345680237, 0.0003664509567897767, -0.003441717242822051, 0.5999739766120911, -0.2803948223590851, 0.0018337616929784417, 0.003910433501005173, 0.009667913429439068, -0.04817327857017517, 0.28461337089538574, 0.19208316504955292, -0.0055127437226474285, 0.9840966463088989, 0.14820891618728638, 0.06310892850160599, -0.06316885352134705, 0.287393718957901, -0.20115521550178528, 0.029037777334451675, 0.9915987849235535, -0.193760946393013, 0.06167082488536835, 0.0234770979732275]} +{"t": 1.6583, "q": [-0.35432058572769165, -0.012275256216526031, 0.00646828580647707, 0.6289235949516296, -0.3168242275714874, 0.01653728261590004, -0.38995155692100525, 0.0003664509567897767, -0.0034283252898603678, 0.5999569296836853, -0.2804030179977417, 0.0018049303907901049, 0.0038702578749507666, 0.00960709061473608, -0.04822249338030815, 0.2846253514289856, 0.19208316504955292, -0.0055247279815375805, 0.9840726852416992, 0.14822089672088623, 0.06309694796800613, -0.0631808340549469, 0.28740569949150085, -0.20114323496818542, 0.029037777334451675, 0.9915987849235535, -0.193760946393013, 0.0616828091442585, 0.0234770979732275]} +{"t": 1.675, "q": [-0.35431206226348877, -0.01226673275232315, 0.006481677293777466, 0.6289321184158325, -0.31680357456207275, 0.01657365821301937, -0.38994303345680237, 0.0003579288604669273, -0.0034551091957837343, 0.5999654531478882, -0.2803906202316284, 0.0018265143735334277, 0.003910433501005173, 0.009637500159442425, -0.04819292947649956, 0.2846013903617859, 0.19205918908119202, -0.0055247279815375805, 0.9840846657752991, 0.14819693565368652, 0.06310892850160599, -0.0631568655371666, 0.287393718957901, -0.20114323496818542, 0.029025793075561523, 0.9916107654571533, -0.19377294182777405, 0.06167082488536835, 0.023489082232117653]} +{"t": 1.6918, "q": [-0.35432058572769165, -0.012275256216526031, 0.006548637058585882, 0.6289321184158325, -0.31679534912109375, 0.016559207811951637, -0.3899259865283966, 0.0003664509567897767, -0.0034551091957837343, 0.599982500076294, -0.2803989350795746, 0.0018265671096742153, 0.003910433501005173, 0.009629900567233562, -0.04820775240659714, 0.28461337089538574, 0.19208316504955292, -0.0055007594637572765, 0.9840966463088989, 0.14818494021892548, 0.06307297945022583, -0.0631808340549469, 0.28738170862197876, -0.20114323496818542, 0.02906174585223198, 0.9915987849235535, -0.1937849223613739, 0.06167082488536835, 0.023501066491007805]} +{"t": 1.7085, "q": [-0.3543035387992859, -0.012283777818083763, 0.006588812451809645, 0.6289406418800354, -0.31679946184158325, 0.016566433012485504, -0.3899345099925995, 0.00037497308221645653, -0.0034551091957837343, 0.5999910235404968, -0.28039056062698364, 0.0018120543099939823, 0.003923825453966856, 0.009645107202231884, -0.048197925090789795, 0.2846013903617859, 0.19205918908119202, -0.0055127437226474285, 0.9840846657752991, 0.14822089672088623, 0.06310892850160599, -0.06316885352134705, 0.28735774755477905, -0.20114323496818542, 0.02906174585223198, 0.9915987849235535, -0.19377294182777405, 0.0616828091442585, 0.023453129455447197]} +{"t": 1.7252, "q": [-0.3543035387992859, -0.012283777818083763, 0.006602204404771328, 0.6289406418800354, -0.316795289516449, 0.016588207334280014, -0.3899259865283966, 0.0003664509567897767, -0.003468500915914774, 0.5999995470046997, -0.28039056062698364, 0.0018120543099939823, 0.0038702578749507666, 0.009629900567233562, -0.04820775240659714, 0.2846013903617859, 0.19205918908119202, -0.0055367122404277325, 0.9840846657752991, 0.14820891618728638, 0.06308495998382568, -0.06316885352134705, 0.28740569949150085, -0.20114323496818542, 0.029049761593341827, 0.9916107654571533, -0.19379690289497375, 0.0616828091442585, 0.0234770979732275]} +{"t": 1.7419, "q": [-0.3543035387992859, -0.012275256216526031, 0.0066289883106946945, 0.6289406418800354, -0.31679531931877136, 0.01657370664179325, -0.3899345099925995, 0.0003664509567897767, -0.003441717242822051, 0.6000165939331055, -0.28039056062698364, 0.0018120543099939823, 0.003937217406928539, 0.009614690206944942, -0.04820767045021057, 0.2846013903617859, 0.19208316504955292, -0.0055367122404277325, 0.9840966463088989, 0.14822089672088623, 0.06308495998382568, -0.0631808340549469, 0.2873697280883789, -0.20114323496818542, 0.02906174585223198, 0.9915987849235535, -0.19377294182777405, 0.06167082488536835, 0.02346511371433735]} +{"t": 1.7587, "q": [-0.3543035387992859, -0.012309344485402107, 0.006602204404771328, 0.6289576888084412, -0.31679534912109375, 0.016559207811951637, -0.3899174630641937, 0.0003579288604669273, -0.0034551091957837343, 0.6000165939331055, -0.2803906202316284, 0.0018265143735334277, 0.00388364982791245, 0.009591872803866863, -0.04821249842643738, 0.2846013903617859, 0.19205918908119202, -0.0055127437226474285, 0.9840846657752991, 0.14820891618728638, 0.06308495998382568, -0.0631808340549469, 0.2873697280883789, -0.20114323496818542, 0.029049761593341827, 0.9916227459907532, -0.1937849223613739, 0.06167082488536835, 0.0234770979732275]} +{"t": 1.7754, "q": [-0.354295015335083, -0.012283777818083763, 0.006602204404771328, 0.628966212272644, -0.31678709387779236, 0.016559258103370667, -0.3899174630641937, 0.00037497308221645653, -0.0034551091957837343, 0.6000421643257141, -0.2803865075111389, 0.001833709073252976, 0.0038970415480434895, 0.009637500159442425, -0.04819292947649956, 0.2846013903617859, 0.19205918908119202, -0.0055127437226474285, 0.9840966463088989, 0.14820891618728638, 0.06309694796800613, -0.0631808340549469, 0.2873697280883789, -0.20113125443458557, 0.02906174585223198, 0.9916107654571533, -0.1937369853258133, 0.0616828091442585, 0.023489082232117653]} +{"t": 1.7921, "q": [-0.35427796840667725, -0.012292299419641495, 0.0066289883106946945, 0.6289576888084412, -0.31679534912109375, 0.016559207811951637, -0.38990893959999084, 0.0003664509567897767, -0.0034551091957837343, 0.6000421643257141, -0.28039056062698364, 0.0018120543099939823, 0.00388364982791245, 0.009652695618569851, -0.0481632836163044, 0.2846253514289856, 0.19208316504955292, -0.0055127437226474285, 0.9840966463088989, 0.14812502264976501, 0.06310892850160599, -0.06321679055690765, 0.28738170862197876, -0.20114323496818542, 0.02906174585223198, 0.9915987849235535, -0.19379690289497375, 0.0616828091442585, 0.023489082232117653]} +{"t": 1.8089, "q": [-0.354295015335083, -0.012300821952521801, 0.0066289883106946945, 0.6289747357368469, -0.31679123640060425, 0.01655198261141777, -0.3899174630641937, 0.00037497308221645653, -0.003481892868876457, 0.6000592112541199, -0.2803947627544403, 0.0018193196738138795, 0.00388364982791245, 0.00966030266135931, -0.048168279230594635, 0.2846253514289856, 0.19207118451595306, -0.0055127437226474285, 0.9840966463088989, 0.14822089672088623, 0.06306099146604538, -0.06319282203912735, 0.2873697280883789, -0.20114323496818542, 0.02906174585223198, 0.9915987849235535, -0.19382087886333466, 0.061658840626478195, 0.0234770979732275]} +{"t": 1.8256, "q": [-0.35426095128059387, -0.012292299419641495, 0.006615596357733011, 0.6289747357368469, -0.31678298115730286, 0.016566531732678413, -0.38990041613578796, 0.0003664509567897767, -0.003481892868876457, 0.6000762581825256, -0.28038644790649414, 0.0018192490097135305, 0.003964001312851906, 0.009637492708861828, -0.04818301647901535, 0.2846253514289856, 0.19208316504955292, -0.0055127437226474285, 0.9840846657752991, 0.14820891618728638, 0.06308495998382568, -0.0632048025727272, 0.2873697280883789, -0.20113125443458557, 0.02906174585223198, 0.9915987849235535, -0.193760946393013, 0.061658840626478195, 0.023489082232117653]} +{"t": 1.8423, "q": [-0.35426944494247437, -0.012292299419641495, 0.006615596357733011, 0.6289917826652527, -0.31679120659828186, 0.016566483303904533, -0.38990041613578796, 0.00037497308221645653, -0.003481892868876457, 0.600135862827301, -0.2803947627544403, 0.0018193196738138795, 0.003910433501005173, 0.009667917154729366, -0.04818318784236908, 0.28461337089538574, 0.19205918908119202, -0.0055127437226474285, 0.9840846657752991, 0.14819693565368652, 0.06307297945022583, -0.06319282203912735, 0.28733378648757935, -0.20111927390098572, 0.029049761593341827, 0.9916107654571533, -0.193760946393013, 0.06167082488536835, 0.0234770979732275]} +{"t": 1.8591, "q": [-0.35426944494247437, -0.012309344485402107, 0.006615596357733011, 0.6290173530578613, -0.31678706407546997, 0.01657375693321228, -0.3899174630641937, 0.0003579288604669273, -0.0034952848218381405, 0.6001443862915039, -0.28038644790649414, 0.0018192490097135305, 0.00388364982791245, 0.009675520472228527, -0.04817827418446541, 0.28461337089538574, 0.19205918908119202, -0.0055247279815375805, 0.9840846657752991, 0.14820891618728638, 0.06308495998382568, -0.06319282203912735, 0.2873457670211792, -0.20113125443458557, 0.029037777334451675, 0.9916227459907532, -0.19379690289497375, 0.0616828091442585, 0.0234770979732275]} +{"t": 1.8758, "q": [-0.35426944494247437, -0.012300821952521801, 0.006602204404771328, 0.6290173530578613, -0.31678709387779236, 0.016559258103370667, -0.3899174630641937, 0.0003664509567897767, -0.003481892868876457, 0.6001699566841125, -0.28039056062698364, 0.0018120543099939823, 0.00388364982791245, 0.009675520472228527, -0.04817827418446541, 0.2846013903617859, 0.19205918908119202, -0.0055127437226474285, 0.9840966463088989, 0.14820891618728638, 0.06308495998382568, -0.06322877109050751, 0.2873457670211792, -0.20113125443458557, 0.029049761593341827, 0.9916107654571533, -0.193760946393013, 0.0616828091442585, 0.023453129455447197]} +{"t": 1.8925, "q": [-0.35426944494247437, -0.012292299419641495, 0.006602204404771328, 0.6290173530578613, -0.3168118894100189, 0.016530107706785202, -0.3899259865283966, 0.0003664509567897767, -0.0035086767747998238, 0.6001529097557068, -0.2803947627544403, 0.0018193196738138795, 0.0038434739690274, 0.009645115584135056, -0.048207838088274, 0.2846013903617859, 0.19205918908119202, -0.0055127437226474285, 0.9840846657752991, 0.14816097915172577, 0.06308495998382568, -0.0632048025727272, 0.28733378648757935, -0.20111927390098572, 0.02906174585223198, 0.9916107654571533, -0.19384483993053436, 0.0616828091442585, 0.0234770979732275]} +{"t": 1.9093, "q": [-0.35426944494247437, -0.012309344485402107, 0.006588812451809645, 0.6290258765220642, -0.31678298115730286, 0.016566531732678413, -0.3899174630641937, 0.0003664509567897767, -0.003481892868876457, 0.6001870036125183, -0.28039056062698364, 0.0018120543099939823, 0.00388364982791245, 0.009645119309425354, -0.04821774736046791, 0.2846013903617859, 0.19205918908119202, -0.0055127437226474285, 0.9840846657752991, 0.14820891618728638, 0.06308495998382568, -0.06319282203912735, 0.2873457670211792, -0.20111927390098572, 0.02906174585223198, 0.9915987849235535, -0.19389277696609497, 0.06167082488536835, 0.023489082232117653]} +{"t": 1.926, "q": [-0.35427796840667725, -0.012292299419641495, 0.006588812451809645, 0.6290173530578613, -0.31686145067214966, 0.016471773386001587, -0.38994303345680237, 0.00034940673504024744, -0.003481892868876457, 0.600212574005127, -0.2803947627544403, 0.0018193196738138795, 0.003910433501005173, 0.009645119309425354, -0.04821774736046791, 0.28461337089538574, 0.19208316504955292, -0.0055007594637572765, 0.9840846657752991, 0.14820891618728638, 0.06308495998382568, -0.0632048025727272, 0.2873457670211792, -0.20111927390098572, 0.02906174585223198, 0.9916107654571533, -0.19384483993053436, 0.0616828091442585, 0.023489082232117653]} +{"t": 1.9427, "q": [-0.3542864918708801, -0.012300821952521801, 0.006575420964509249, 0.6290258765220642, -0.3168366849422455, 0.01648643985390663, -0.38996008038520813, 0.0003664509567897767, -0.003481892868876457, 0.6001955270767212, -0.2803947627544403, 0.0018193196738138795, 0.003910433501005173, 0.009622317738831043, -0.04824240133166313, 0.28461337089538574, 0.19208316504955292, -0.0055007594637572765, 0.9840846657752991, 0.14820891618728638, 0.06309694796800613, -0.06319282203912735, 0.2873457670211792, -0.20113125443458557, 0.02906174585223198, 0.9916227459907532, -0.19384483993053436, 0.0616828091442585, 0.023489082232117653]} +{"t": 1.9595, "q": [-0.3542864918708801, -0.012300821952521801, 0.006575420964509249, 0.6290258765220642, -0.3168366849422455, 0.01648643985390663, -0.38995155692100525, 0.00034940673504024744, -0.003481892868876457, 0.6001955270767212, -0.2803989052772522, 0.001812125090509653, 0.003977392800152302, 0.009675544686615467, -0.04821791499853134, 0.28461337089538574, 0.19207118451595306, -0.0055007594637572765, 0.9840846657752991, 0.14820891618728638, 0.06309694796800613, -0.0631808340549469, 0.2873457670211792, -0.20113125443458557, 0.02906174585223198, 0.9916107654571533, -0.1938088834285736, 0.0616828091442585, 0.023501066491007805]} +{"t": 1.9762, "q": [-0.3543035387992859, -0.012300821952521801, 0.0065620290115475655, 0.6290258765220642, -0.3168449401855469, 0.016486389562487602, -0.3899771273136139, 0.0003664509567897767, -0.0034551091957837343, 0.6002210974693298, -0.2804030776023865, 0.001819372409954667, 0.00388364982791245, 0.009705965407192707, -0.04820817708969116, 0.28461337089538574, 0.19208316504955292, -0.0055007594637572765, 0.9840966463088989, 0.14819693565368652, 0.06308495998382568, -0.06319282203912735, 0.2873457670211792, -0.20111927390098572, 0.02907373011112213, 0.9916107654571533, -0.19382087886333466, 0.0616828091442585, 0.023489082232117653]} +{"t": 1.9929, "q": [-0.35431206226348877, -0.012309344485402107, 0.006535245105624199, 0.6290258765220642, -0.3168366551399231, 0.016515439376235008, -0.3900197446346283, 0.00034940673504024744, -0.003441717242822051, 0.600212574005127, -0.28040724992752075, 0.001826619845815003, 0.003937217406928539, 0.009713561274111271, -0.048193350434303284, 0.2846253514289856, 0.19208316504955292, -0.0055007594637572765, 0.9840966463088989, 0.14820891618728638, 0.06308495998382568, -0.0632048025727272, 0.2873457670211792, -0.20111927390098572, 0.02906174585223198, 0.9916107654571533, -0.19385682046413422, 0.0616828091442585, 0.02346511371433735]} +{"t": 2.0098, "q": [-0.35432910919189453, -0.012300821952521801, 0.006535245105624199, 0.6290343999862671, -0.3168449103832245, 0.016500890254974365, -0.39004531502723694, 0.00034940673504024744, -0.0034149333368986845, 0.6002210974693298, -0.280407190322876, 0.0018121778266504407, 0.0039506093598902225, 0.009690762497484684, -0.048227909952402115, 0.28461337089538574, 0.19208316504955292, -0.0055007594637572765, 0.9840966463088989, 0.14822089672088623, 0.06308495998382568, -0.06316885352134705, 0.2873457670211792, -0.20111927390098572, 0.02907373011112213, 0.9915987849235535, -0.19385682046413422, 0.0616828091442585, 0.02346511371433735]} +{"t": 2.0266, "q": [-0.3543376326560974, -0.012300821952521801, 0.006481677293777466, 0.6290343999862671, -0.316849023103714, 0.016508115455508232, -0.3900708556175232, 0.0003408846096135676, -0.0034283252898603678, 0.600212574005127, -0.2804155647754669, 0.0018266724655404687, 0.0038702578749507666, 0.009667941369116306, -0.04822282865643501, 0.2846013903617859, 0.19208316504955292, -0.0055127437226474285, 0.9840846657752991, 0.14822089672088623, 0.06307297945022583, -0.06319282203912735, 0.2873457670211792, -0.20111927390098572, 0.029085714370012283, 0.9916107654571533, -0.1938328593969345, 0.061706773936748505, 0.023489082232117653]} +{"t": 2.0433, "q": [-0.3543461561203003, -0.012283777818083763, 0.00646828580647707, 0.6290258765220642, -0.3168449103832245, 0.016500890254974365, -0.3900793790817261, 0.0003579288604669273, -0.0034015413839370012, 0.6001870036125183, -0.2804030776023865, 0.001819372409954667, 0.003910433501005173, 0.009652722626924515, -0.04821283370256424, 0.2846013903617859, 0.19207118451595306, -0.0055007594637572765, 0.9840846657752991, 0.14822089672088623, 0.06308495998382568, -0.0632048025727272, 0.28735774755477905, -0.20111927390098572, 0.02906174585223198, 0.9916107654571533, -0.19382087886333466, 0.0616828091442585, 0.023501066491007805]} +{"t": 2.06, "q": [-0.3543376326560974, -0.012283777818083763, 0.00646828580647707, 0.6290343999862671, -0.3168407678604126, 0.01650816574692726, -0.39009642601013184, 0.00034940673504024744, -0.0034015413839370012, 0.6002040505409241, -0.28041139245033264, 0.0018194251460954547, 0.003910433501005173, 0.009660334326326847, -0.048217833042144775, 0.2846013903617859, 0.19208316504955292, -0.0055247279815375805, 0.9840846657752991, 0.14822089672088623, 0.06309694796800613, -0.06319282203912735, 0.2873457670211792, -0.20111927390098572, 0.02907373011112213, 0.9916107654571533, -0.1938088834285736, 0.06167082488536835, 0.0234770979732275]} +{"t": 2.0768, "q": [-0.35432910919189453, -0.012292299419641495, 0.006454893853515387, 0.6290343999862671, -0.31680357456207275, 0.01657365821301937, -0.3900708556175232, 0.0003664509567897767, -0.0034015413839370012, 0.600212574005127, -0.280407190322876, 0.0018121778266504407, 0.0038702578749507666, 0.00968314427882433, -0.04820309579372406, 0.2846013903617859, 0.19207118451595306, -0.0055367122404277325, 0.9840846657752991, 0.14820891618728638, 0.06309694796800613, -0.0632048025727272, 0.28735774755477905, -0.20111927390098572, 0.02906174585223198, 0.9915987849235535, -0.19385682046413422, 0.0616828091442585, 0.02346511371433735]} +{"t": 2.0936, "q": [-0.3543461561203003, -0.012283777818083763, 0.00646828580647707, 0.6290258765220642, -0.31680357456207275, 0.01657365821301937, -0.39008790254592896, 0.00034940673504024744, -0.0034283252898603678, 0.6001784801483154, -0.2804030776023865, 0.001819372409954667, 0.003923825453966856, 0.009652731008827686, -0.04822274670004845, 0.2846013903617859, 0.19208316504955292, -0.0055247279815375805, 0.9840846657752991, 0.14820891618728638, 0.06310892850160599, -0.06321679055690765, 0.2873218059539795, -0.20111927390098572, 0.029097698628902435, 0.9916227459907532, -0.19385682046413422, 0.0616828091442585, 0.0234770979732275]} +{"t": 2.1103, "q": [-0.3543461561203003, -0.012283777818083763, 0.00646828580647707, 0.62904292345047, -0.31680357456207275, 0.01657365821301937, -0.39009642601013184, 0.00034940673504024744, -0.0034015413839370012, 0.6001955270767212, -0.2804030179977417, 0.0018049303907901049, 0.003910433501005173, 0.00969074759632349, -0.04819818213582039, 0.2846013903617859, 0.19207118451595306, -0.0055247279815375805, 0.9840846657752991, 0.14820891618728638, 0.06309694796800613, -0.0632048025727272, 0.28733378648757935, -0.20110727846622467, 0.029085714370012283, 0.9916227459907532, -0.1938088834285736, 0.06167082488536835, 0.0234770979732275]} +{"t": 2.1271, "q": [-0.3543461561203003, -0.012300821952521801, 0.006454893853515387, 0.6290343999862671, -0.31680768728256226, 0.016580883413553238, -0.39009642601013184, 0.00034940673504024744, -0.0034283252898603678, 0.600212574005127, -0.2803947627544403, 0.0018193196738138795, 0.003937217406928539, 0.00969074759632349, -0.04819818213582039, 0.2846013903617859, 0.19208316504955292, -0.0055127437226474285, 0.9840966463088989, 0.14814899861812592, 0.06308495998382568, -0.06319282203912735, 0.2873457670211792, -0.20110727846622467, 0.029097698628902435, 0.9916107654571533, -0.19385682046413422, 0.0616828091442585, 0.0234770979732275]} +{"t": 2.1438, "q": [-0.3543461561203003, -0.012292299419641495, 0.00646828580647707, 0.6290343999862671, -0.31680357456207275, 0.01657365821301937, -0.3900793790817261, 0.00034940673504024744, -0.0034283252898603678, 0.600212574005127, -0.2804030776023865, 0.001819372409954667, 0.003910433501005173, 0.009728764183819294, -0.04817361384630203, 0.28461337089538574, 0.19208316504955292, -0.0055127437226474285, 0.9840966463088989, 0.14818494021892548, 0.06308495998382568, -0.0631808340549469, 0.28733378648757935, -0.20111927390098572, 0.029097698628902435, 0.9916107654571533, -0.19388079643249512, 0.0616828091442585, 0.0234770979732275]} +{"t": 2.1605, "q": [-0.35432910919189453, -0.012300821952521801, 0.006521853152662516, 0.6290258765220642, -0.31680357456207275, 0.01657365821301937, -0.3900793790817261, 0.0003579288604669273, -0.0034283252898603678, 0.600212574005127, -0.280407190322876, 0.0018121778266504407, 0.00388364982791245, 0.009667925536632538, -0.04819310083985329, 0.2846013903617859, 0.19207118451595306, -0.0055247279815375805, 0.9840846657752991, 0.14820891618728638, 0.06309694796800613, -0.06316885352134705, 0.28733378648757935, -0.20111927390098572, 0.02912166714668274, 0.9916107654571533, -0.19385682046413422, 0.0616828091442585, 0.023489082232117653]} +{"t": 2.1773, "q": [-0.35432910919189453, -0.012300821952521801, 0.006535245105624199, 0.62904292345047, -0.31678706407546997, 0.01657375693321228, -0.3900708556175232, 0.0003408846096135676, -0.0034283252898603678, 0.600212574005127, -0.280407190322876, 0.0018121778266504407, 0.00388364982791245, 0.009622305631637573, -0.048222579061985016, 0.2846013903617859, 0.19205918908119202, -0.0055127437226474285, 0.9840846657752991, 0.14817295968532562, 0.06309694796800613, -0.0631808340549469, 0.2873457670211792, -0.20111927390098572, 0.029097698628902435, 0.9916107654571533, -0.19382087886333466, 0.06167082488536835, 0.023489082232117653]} +{"t": 2.194, "q": [-0.3543376326560974, -0.012309344485402107, 0.006588812451809645, 0.6290343999862671, -0.31679946184158325, 0.016566433012485504, -0.3900793790817261, 0.00034940673504024744, -0.0034283252898603678, 0.6002040505409241, -0.2804030179977417, 0.0018049303907901049, 0.003910433501005173, 0.009660313837230206, -0.04818810150027275, 0.2846013903617859, 0.19207118451595306, -0.0055127437226474285, 0.9840846657752991, 0.14820891618728638, 0.06309694796800613, -0.06319282203912735, 0.2873457670211792, -0.20111927390098572, 0.029097698628902435, 0.9915987849235535, -0.19379690289497375, 0.0616828091442585, 0.023489082232117653]} +{"t": 2.2107, "q": [-0.3543376326560974, -0.012300821952521801, 0.006588812451809645, 0.6290343999862671, -0.31679120659828186, 0.016566483303904533, -0.3900708556175232, 0.00034940673504024744, -0.0034283252898603678, 0.6002210974693298, -0.2803989052772522, 0.001812125090509653, 0.00388364982791245, 0.009690739214420319, -0.04818826913833618, 0.2846013903617859, 0.19208316504955292, -0.0055007594637572765, 0.9840966463088989, 0.14820891618728638, 0.06308495998382568, -0.0631808340549469, 0.2873457670211792, -0.20111927390098572, 0.029085714370012283, 0.9916227459907532, -0.19385682046413422, 0.0616828091442585, 0.0234770979732275]} +{"t": 2.2275, "q": [-0.35432910919189453, -0.012317866086959839, 0.0065620290115475655, 0.62904292345047, -0.3168160021305084, 0.016522832214832306, -0.3900708556175232, 0.0003579288604669273, -0.0034551091957837343, 0.6002210974693298, -0.2804030776023865, 0.001819372409954667, 0.003910433501005173, 0.009690739214420319, -0.04818826913833618, 0.2846013903617859, 0.19208316504955292, -0.0055127437226474285, 0.9840846657752991, 0.14822089672088623, 0.06309694796800613, -0.0631808340549469, 0.2873457670211792, -0.20111927390098572, 0.029085714370012283, 0.9916107654571533, -0.19384483993053436, 0.06167082488536835, 0.023489082232117653]} +{"t": 2.2442, "q": [-0.3543461561203003, -0.012300821952521801, 0.006548637058585882, 0.6290514469146729, -0.3168160021305084, 0.016522832214832306, -0.3900708556175232, 0.00034940673504024744, -0.003468500915914774, 0.6002296209335327, -0.2803989052772522, 0.001812125090509653, 0.003910433501005173, 0.00968314427882433, -0.04820309579372406, 0.2846013903617859, 0.19208316504955292, -0.0055127437226474285, 0.9840846657752991, 0.14819693565368652, 0.06309694796800613, -0.0632048025727272, 0.2873457670211792, -0.20110727846622467, 0.029097698628902435, 0.9916107654571533, -0.19382087886333466, 0.06169478967785835, 0.023489082232117653]} +{"t": 2.2609, "q": [-0.3543461561203003, -0.012300821952521801, 0.006588812451809645, 0.6290855407714844, -0.31679946184158325, 0.016566433012485504, -0.3900708556175232, 0.0003664509567897767, -0.0034283252898603678, 0.600212574005127, -0.2804030776023865, 0.001819372409954667, 0.003910433501005173, 0.00970595795661211, -0.048198264092206955, 0.2846013903617859, 0.19207118451595306, -0.0055127437226474285, 0.9840966463088989, 0.14817295968532562, 0.06310892850160599, -0.06319282203912735, 0.2873457670211792, -0.20110727846622467, 0.029109682887792587, 0.9916227459907532, -0.19379690289497375, 0.0616828091442585, 0.023489082232117653]} +{"t": 2.2778, "q": [-0.3543461561203003, -0.012292299419641495, 0.006602204404771328, 0.6290684938430786, -0.3167911767959595, 0.016580982133746147, -0.3900708556175232, 0.0003408846096135676, -0.0034551091957837343, 0.6002210974693298, -0.2804030776023865, 0.001819372409954667, 0.003923825453966856, 0.009667948819696903, -0.04823274165391922, 0.28461337089538574, 0.19207118451595306, -0.0055127437226474285, 0.9840966463088989, 0.14820891618728638, 0.06312091648578644, -0.06319282203912735, 0.2873457670211792, -0.20111927390098572, 0.029109682887792587, 0.9916107654571533, -0.19388079643249512, 0.0616828091442585, 0.0234770979732275]} +{"t": 2.2945, "q": [-0.35432910919189453, -0.012300821952521801, 0.006575420964509249, 0.6290940642356873, -0.31679946184158325, 0.016566433012485504, -0.39004531502723694, 0.0003664509567897767, -0.0034551091957837343, 0.6002210974693298, -0.2804030776023865, 0.001819372409954667, 0.00388364982791245, 0.009683148004114628, -0.04821300506591797, 0.2846013903617859, 0.19208316504955292, -0.0055007594637572765, 0.9840966463088989, 0.14822089672088623, 0.06310892850160599, -0.06319282203912735, 0.2873218059539795, -0.20110727846622467, 0.029097698628902435, 0.9916107654571533, -0.19385682046413422, 0.06169478967785835, 0.023489082232117653]} +{"t": 2.3112, "q": [-0.3543461561203003, -0.012300821952521801, 0.006588812451809645, 0.6291025876998901, -0.3168160021305084, 0.016522832214832306, -0.3900708556175232, 0.0003408846096135676, -0.0034551091957837343, 0.6002210974693298, -0.28039470314979553, 0.001804859610274434, 0.003910433501005173, 0.009660334326326847, -0.048217833042144775, 0.2846013903617859, 0.19207118451595306, -0.0054887752048671246, 0.9840966463088989, 0.14820891618728638, 0.06310892850160599, -0.0632048025727272, 0.28733378648757935, -0.20111927390098572, 0.029109682887792587, 0.9916107654571533, -0.19379690289497375, 0.061658840626478195, 0.0234770979732275]} +{"t": 2.3279, "q": [-0.3543376326560974, -0.012317866086959839, 0.006548637058585882, 0.6291025876998901, -0.31681597232818604, 0.016551833599805832, -0.3900623321533203, 0.0003664509567897767, -0.0034551091957837343, 0.6002466678619385, -0.2803947627544403, 0.0018193196738138795, 0.003910433501005173, 0.009698362089693546, -0.04821309074759483, 0.2846253514289856, 0.19208316504955292, -0.0055127437226474285, 0.9840846657752991, 0.14814899861812592, 0.06310892850160599, -0.0632048025727272, 0.2873218059539795, -0.20110727846622467, 0.029085714370012283, 0.9915987849235535, -0.19379690289497375, 0.06169478967785835, 0.0234770979732275]} +{"t": 2.3446, "q": [-0.3543376326560974, -0.012309344485402107, 0.006508461199700832, 0.6291025876998901, -0.3168242275714874, 0.01653728261590004, -0.39004531502723694, 0.0003408846096135676, -0.0034551091957837343, 0.6002381443977356, -0.28039056062698364, 0.0018120543099939823, 0.003923825453966856, 0.009690751321613789, -0.0482080914080143, 0.28461337089538574, 0.19209514558315277, -0.0055007594637572765, 0.9840846657752991, 0.14817295968532562, 0.06309694796800613, -0.06319282203912735, 0.28733378648757935, -0.20111927390098572, 0.02912166714668274, 0.9915987849235535, -0.19385682046413422, 0.06167082488536835, 0.02346511371433735]} +{"t": 2.3614, "q": [-0.3543376326560974, -0.012309344485402107, 0.006535245105624199, 0.6291195750236511, -0.3167911767959595, 0.016580982133746147, -0.39004531502723694, 0.0003579288604669273, -0.003441717242822051, 0.6002551913261414, -0.2803989052772522, 0.001812125090509653, 0.003910433501005173, 0.009698362089693546, -0.04821309074759483, 0.28461337089538574, 0.19207118451595306, -0.0055127437226474285, 0.9840846657752991, 0.14822089672088623, 0.06310892850160599, -0.0632048025727272, 0.2873218059539795, -0.20110727846622467, 0.029097698628902435, 0.9916107654571533, -0.1938328593969345, 0.06169478967785835, 0.023489082232117653]} +{"t": 2.3781, "q": [-0.3543461561203003, -0.01232638768851757, 0.0065620290115475655, 0.629128098487854, -0.31680357456207275, 0.01657365821301937, -0.3900197446346283, 0.00034940673504024744, -0.0034551091957837343, 0.6002722382545471, -0.2803989052772522, 0.001812125090509653, 0.0038434739690274, 0.009667941369116306, -0.04822282865643501, 0.2846253514289856, 0.19208316504955292, -0.0055127437226474285, 0.9840846657752991, 0.14820891618728638, 0.06310892850160599, -0.0631808340549469, 0.2873457670211792, -0.20110727846622467, 0.02913365140557289, 0.9915987849235535, -0.19388079643249512, 0.06169478967785835, 0.023489082232117653]} +{"t": 2.3949, "q": [-0.35432910919189453, -0.012309344485402107, 0.006588812451809645, 0.6291366219520569, -0.31679531931877136, 0.01657370664179325, -0.39003679156303406, 0.0003579288604669273, -0.003468500915914774, 0.60028076171875, -0.2804030179977417, 0.0018049303907901049, 0.003937217406928539, 0.009736382402479649, -0.048198431730270386, 0.28461337089538574, 0.19208316504955292, -0.0055007594637572765, 0.9840846657752991, 0.14822089672088623, 0.06310892850160599, -0.06319282203912735, 0.28733378648757935, -0.20110727846622467, 0.029157619923353195, 0.9915868043899536, -0.19385682046413422, 0.06169478967785835, 0.0234770979732275]} +{"t": 2.4118, "q": [-0.35431206226348877, -0.012317866086959839, 0.006588812451809645, 0.6291536688804626, -0.31679534912109375, 0.016559207811951637, -0.3900623321533203, 0.0003408846096135676, -0.003441717242822051, 0.6003148555755615, -0.2803947627544403, 0.0018193196738138795, 0.0038568659219890833, 0.009675540961325169, -0.04820800572633743, 0.28461337089538574, 0.19208316504955292, -0.0055007594637572765, 0.9840966463088989, 0.14812502264976501, 0.06308495998382568, -0.0631808340549469, 0.2873218059539795, -0.20111927390098572, 0.029109682887792587, 0.9916107654571533, -0.19385682046413422, 0.06169478967785835, 0.023489082232117653]} +{"t": 2.4285, "q": [-0.3543376326560974, -0.012317866086959839, 0.0065620290115475655, 0.6291536688804626, -0.31679946184158325, 0.016566433012485504, -0.39005380868911743, 0.00034940673504024744, -0.0034551091957837343, 0.6003063321113586, -0.28039470314979553, 0.001804859610274434, 0.003910433501005173, 0.009645127691328526, -0.04822766035795212, 0.2846013903617859, 0.19207118451595306, -0.0055127437226474285, 0.9840846657752991, 0.14822089672088623, 0.06308495998382568, -0.0632048025727272, 0.2873457670211792, -0.20111927390098572, 0.029109682887792587, 0.9916107654571533, -0.19389277696609497, 0.0616828091442585, 0.02346511371433735]} +{"t": 2.4452, "q": [-0.3543461561203003, -0.012317866086959839, 0.006575420964509249, 0.6291536688804626, -0.31679120659828186, 0.016566483303904533, -0.39003679156303406, 0.00034940673504024744, -0.003481892868876457, 0.6003063321113586, -0.28039470314979553, 0.001804859610274434, 0.0038702578749507666, 0.009667941369116306, -0.04822282865643501, 0.2846013903617859, 0.19208316504955292, -0.0055247279815375805, 0.9840966463088989, 0.14820891618728638, 0.06307297945022583, -0.06319282203912735, 0.2873218059539795, -0.20110727846622467, 0.029145635664463043, 0.9916107654571533, -0.19388079643249512, 0.06169478967785835, 0.02346511371433735]} +{"t": 2.4619, "q": [-0.35432910919189453, -0.012317866086959839, 0.006602204404771328, 0.6291536688804626, -0.3167911767959595, 0.016580982133746147, -0.39005380868911743, 0.0003408846096135676, -0.003468500915914774, 0.6003319025039673, -0.2803989052772522, 0.001812125090509653, 0.003937217406928539, 0.00969074759632349, -0.04819818213582039, 0.2846013903617859, 0.19208316504955292, -0.0055127437226474285, 0.9840846657752991, 0.14818494021892548, 0.06312091648578644, -0.06319282203912735, 0.28733378648757935, -0.20111927390098572, 0.029157619923353195, 0.9916107654571533, -0.19385682046413422, 0.0616828091442585, 0.0234770979732275]} +{"t": 2.4786, "q": [-0.3543376326560974, -0.012309344485402107, 0.0066289883106946945, 0.6291707158088684, -0.31679531931877136, 0.01657370664179325, -0.39005380868911743, 0.0003579288604669273, -0.003468500915914774, 0.6003148555755615, -0.2803989052772522, 0.001812125090509653, 0.003910433501005173, 0.009675540961325169, -0.04820800572633743, 0.2846013903617859, 0.19208316504955292, -0.0055007594637572765, 0.9840846657752991, 0.1481010615825653, 0.06309694796800613, -0.06316885352134705, 0.28733378648757935, -0.20109529793262482, 0.029145635664463043, 0.9916107654571533, -0.1938328593969345, 0.06169478967785835, 0.02346511371433735]} +{"t": 2.4954, "q": [-0.3543376326560974, -0.012317866086959839, 0.006602204404771328, 0.6291621923446655, -0.316795289516449, 0.016588207334280014, -0.39004531502723694, 0.00034940673504024744, -0.003441717242822051, 0.6003319025039673, -0.2803947627544403, 0.0018193196738138795, 0.0038702578749507666, 0.00969835463911295, -0.048203177750110626, 0.2846013903617859, 0.19207118451595306, -0.0055127437226474285, 0.9840846657752991, 0.1481010615825653, 0.06310892850160599, -0.0631808340549469, 0.28733378648757935, -0.20110727846622467, 0.029217541217803955, 0.9916107654571533, -0.19388079643249512, 0.06167082488536835, 0.023489082232117653]} +{"t": 2.5122, "q": [-0.3543461561203003, -0.012317866086959839, 0.0066289883106946945, 0.6291707158088684, -0.31678706407546997, 0.01657375693321228, -0.39005380868911743, 0.0003323625132907182, -0.0034551091957837343, 0.6003574728965759, -0.2804030179977417, 0.0018049303907901049, 0.0038568659219890833, 0.009728766977787018, -0.04818352311849594, 0.2846013903617859, 0.19208316504955292, -0.0055127437226474285, 0.9840846657752991, 0.14818494021892548, 0.06310892850160599, -0.06319282203912735, 0.2873218059539795, -0.20111927390098572, 0.02919357270002365, 0.9916107654571533, -0.19384483993053436, 0.06169478967785835, 0.0234770979732275]} +{"t": 2.5289, "q": [-0.3543376326560974, -0.012309344485402107, 0.006642380263656378, 0.6291792392730713, -0.31679534912109375, 0.016559207811951637, -0.3900623321533203, 0.00034940673504024744, -0.0034551091957837343, 0.600348949432373, -0.2803989052772522, 0.001812125090509653, 0.0038970415480434895, 0.009743981994688511, -0.048183608800172806, 0.2846013903617859, 0.19207118451595306, -0.0055127437226474285, 0.9840846657752991, 0.14811304211616516, 0.06309694796800613, -0.06319282203912735, 0.28733378648757935, -0.20110727846622467, 0.029157619923353195, 0.9916107654571533, -0.19384483993053436, 0.0616828091442585, 0.02346511371433735]} +{"t": 2.5458, "q": [-0.3543376326560974, -0.012317866086959839, 0.006642380263656378, 0.6291792392730713, -0.3167911767959595, 0.016580982133746147, -0.3900623321533203, 0.0003408846096135676, -0.0034551091957837343, 0.6003404259681702, -0.280407190322876, 0.0018121778266504407, 0.0039506093598902225, 0.009698350913822651, -0.04819326847791672, 0.28458940982818604, 0.19207118451595306, -0.0055127437226474285, 0.9840846657752991, 0.14820891618728638, 0.06310892850160599, -0.06319282203912735, 0.28733378648757935, -0.20111927390098572, 0.0291815884411335, 0.9916107654571533, -0.19382087886333466, 0.0616828091442585, 0.02346511371433735]} +{"t": 2.5625, "q": [-0.35432910919189453, -0.012309344485402107, 0.006615596357733011, 0.629196286201477, -0.31679946184158325, 0.016566433012485504, -0.3900623321533203, 0.00034940673504024744, -0.003468500915914774, 0.6003659963607788, -0.28039470314979553, 0.001804859610274434, 0.003910433501005173, 0.00968314427882433, -0.04820309579372406, 0.2846013903617859, 0.19208316504955292, -0.0055127437226474285, 0.9840846657752991, 0.14822089672088623, 0.06310892850160599, -0.06319282203912735, 0.2873457670211792, -0.20111927390098572, 0.0291815884411335, 0.9916107654571533, -0.19385682046413422, 0.0616828091442585, 0.0234770979732275]} +{"t": 2.5792, "q": [-0.35432058572769165, -0.012317866086959839, 0.0066289883106946945, 0.6291877627372742, -0.31678298115730286, 0.016566531732678413, -0.3900623321533203, 0.0003579288604669273, -0.003468500915914774, 0.6003659963607788, -0.2804030179977417, 0.0018049303907901049, 0.003910433501005173, 0.009667929261922836, -0.048203010112047195, 0.2846013903617859, 0.19207118451595306, -0.0055127437226474285, 0.9840846657752991, 0.14820891618728638, 0.06310892850160599, -0.06316885352134705, 0.2873457670211792, -0.20111927390098572, 0.0291815884411335, 0.9915987849235535, -0.1937849223613739, 0.06169478967785835, 0.0234770979732275]} +{"t": 2.596, "q": [-0.3543376326560974, -0.012317866086959839, 0.0066289883106946945, 0.6291877627372742, -0.3168201148509979, 0.016530057415366173, -0.3900623321533203, 0.0003579288604669273, -0.0034283252898603678, 0.6003574728965759, -0.2803989052772522, 0.001812125090509653, 0.0038434739690274, 0.009675544686615467, -0.04821791499853134, 0.2846253514289856, 0.19208316504955292, -0.0055007594637572765, 0.9840846657752991, 0.14819693565368652, 0.06309694796800613, -0.06319282203912735, 0.2873218059539795, -0.20111927390098572, 0.0291815884411335, 0.9916107654571533, -0.19384483993053436, 0.061706773936748505, 0.02346511371433735]} +{"t": 2.6128, "q": [-0.35432058572769165, -0.01232638768851757, 0.0066289883106946945, 0.629196286201477, -0.3168160021305084, 0.016522832214832306, -0.3900623321533203, 0.00034940673504024744, -0.0034283252898603678, 0.6003830432891846, -0.28039056062698364, 0.0018120543099939823, 0.003910433501005173, 0.009736367501318455, -0.04816870018839836, 0.2846253514289856, 0.19207118451595306, -0.0055007594637572765, 0.9840846657752991, 0.14814899861812592, 0.06309694796800613, -0.0631808340549469, 0.2873457670211792, -0.20111927390098572, 0.029169604182243347, 0.9916107654571533, -0.19384483993053436, 0.06169478967785835, 0.02346511371433735]} +{"t": 2.6295, "q": [-0.35431206226348877, -0.012317866086959839, 0.0066289883106946945, 0.6291877627372742, -0.31679949164390564, 0.01655193231999874, -0.3900708556175232, 0.0003579288604669273, -0.0034149333368986845, 0.6003830432891846, -0.2803989052772522, 0.001812125090509653, 0.003910433501005173, 0.009728764183819294, -0.04817361384630203, 0.28461337089538574, 0.19208316504955292, -0.0055007594637572765, 0.9840846657752991, 0.14823287725448608, 0.06313289701938629, -0.06319282203912735, 0.2873457670211792, -0.20111927390098572, 0.02919357270002365, 0.9916227459907532, -0.19385682046413422, 0.0616828091442585, 0.02346511371433735]} +{"t": 2.6462, "q": [-0.35431206226348877, -0.01232638768851757, 0.006615596357733011, 0.629196286201477, -0.3167911767959595, 0.016580982133746147, -0.3900708556175232, 0.00034940673504024744, -0.0034283252898603678, 0.6004171371459961, -0.2803989052772522, 0.001812125090509653, 0.00388364982791245, 0.009698350913822651, -0.04819326847791672, 0.2846253514289856, 0.19207118451595306, -0.0055007594637572765, 0.9840846657752991, 0.14811304211616516, 0.06310892850160599, -0.0631808340549469, 0.2873457670211792, -0.20111927390098572, 0.02919357270002365, 0.9915987849235535, -0.19389277696609497, 0.06169478967785835, 0.0234770979732275]} +{"t": 2.6629, "q": [-0.35432910919189453, -0.012317866086959839, 0.006615596357733011, 0.629196286201477, -0.3168118894100189, 0.01651560701429844, -0.3900793790817261, 0.0003664509567897767, -0.003441717242822051, 0.6004341840744019, -0.2803989052772522, 0.001812125090509653, 0.003977392800152302, 0.009652731008827686, -0.04822274670004845, 0.2846013903617859, 0.19208316504955292, -0.0055007594637572765, 0.9841086268424988, 0.14816097915172577, 0.06309694796800613, -0.0632048025727272, 0.2873457670211792, -0.20110727846622467, 0.029205556958913803, 0.9916227459907532, -0.19384483993053436, 0.0616828091442585, 0.0234770979732275]} +{"t": 2.6796, "q": [-0.35432910919189453, -0.012317866086959839, 0.006575420964509249, 0.6292133331298828, -0.3168160021305084, 0.016522832214832306, -0.39008790254592896, 0.0003579288604669273, -0.0034283252898603678, 0.6004341840744019, -0.2803947627544403, 0.0018193196738138795, 0.003910433501005173, 0.009660325944423676, -0.04820792004466057, 0.28461337089538574, 0.19208316504955292, -0.0055007594637572765, 0.9840846657752991, 0.14817295968532562, 0.06309694796800613, -0.0632048025727272, 0.2873457670211792, -0.20109529793262482, 0.02919357270002365, 0.9916107654571533, -0.19382087886333466, 0.06167082488536835, 0.0234770979732275]} +{"t": 2.6964, "q": [-0.35431206226348877, -0.01232638768851757, 0.0065620290115475655, 0.6292133331298828, -0.3168160021305084, 0.016522832214832306, -0.3900793790817261, 0.0003664509567897767, -0.0034551091957837343, 0.6004427075386047, -0.2803947627544403, 0.0018193196738138795, 0.003937217406928539, 0.009645127691328526, -0.04822766035795212, 0.2846253514289856, 0.19208316504955292, -0.0055007594637572765, 0.9840846657752991, 0.14817295968532562, 0.06309694796800613, -0.06319282203912735, 0.2873457670211792, -0.20110727846622467, 0.029217541217803955, 0.9915868043899536, -0.19379690289497375, 0.0616828091442585, 0.023453129455447197]} +{"t": 2.7131, "q": [-0.35432058572769165, -0.012334910221397877, 0.006588812451809645, 0.6292133331298828, -0.31678706407546997, 0.01657375693321228, -0.3900793790817261, 0.0003408846096135676, -0.0034283252898603678, 0.6004341840744019, -0.2803989052772522, 0.001812125090509653, 0.003910433501005173, 0.00968314427882433, -0.04820309579372406, 0.28461337089538574, 0.19209514558315277, -0.0055007594637572765, 0.9840966463088989, 0.1481010615825653, 0.06310892850160599, -0.06319282203912735, 0.28733378648757935, -0.20111927390098572, 0.029169604182243347, 0.9916107654571533, -0.19382087886333466, 0.06169478967785835, 0.023501066491007805]} +{"t": 2.7298, "q": [-0.35432910919189453, -0.012317866086959839, 0.006575420964509249, 0.6292303800582886, -0.31679120659828186, 0.016566483303904533, -0.3900793790817261, 0.0003579288604669273, -0.003468500915914774, 0.6004427075386047, -0.2803906202316284, 0.0018265143735334277, 0.0038568659219890833, 0.009705954231321812, -0.048188354820013046, 0.2846253514289856, 0.19208316504955292, -0.0054887752048671246, 0.9840966463088989, 0.14817295968532562, 0.06309694796800613, -0.06319282203912735, 0.28733378648757935, -0.20111927390098572, 0.02919357270002365, 0.991634726524353, -0.19388079643249512, 0.0616828091442585, 0.023441145196557045]} +{"t": 2.7465, "q": [-0.35432910919189453, -0.012309344485402107, 0.006588812451809645, 0.6292303800582886, -0.31678706407546997, 0.01657375693321228, -0.3900708556175232, 0.0003408846096135676, -0.003481892868876457, 0.6004341840744019, -0.2803989052772522, 0.001812125090509653, 0.0038568659219890833, 0.009713557548820972, -0.048183441162109375, 0.28461337089538574, 0.19207118451595306, -0.0055007594637572765, 0.9840966463088989, 0.1481010615825653, 0.06310892850160599, -0.06319282203912735, 0.2873457670211792, -0.20110727846622467, 0.02919357270002365, 0.9916227459907532, -0.19385682046413422, 0.061706773936748505, 0.0234770979732275]} +{"t": 2.7633, "q": [-0.3543376326560974, -0.01232638768851757, 0.006602204404771328, 0.6292474269866943, -0.3168201148509979, 0.016530057415366173, -0.3900793790817261, 0.0003408846096135676, -0.0034551091957837343, 0.6004427075386047, -0.2803947627544403, 0.0018193196738138795, 0.0039506093598902225, 0.009721164591610432, -0.04818843677639961, 0.28461337089538574, 0.19208316504955292, -0.0055127437226474285, 0.9840846657752991, 0.14819693565368652, 0.06310892850160599, -0.0631808340549469, 0.2873457670211792, -0.20110727846622467, 0.02919357270002365, 0.9916107654571533, -0.19385682046413422, 0.061706773936748505, 0.02346511371433735]} +{"t": 2.78, "q": [-0.3543376326560974, -0.012317866086959839, 0.006588812451809645, 0.6292303800582886, -0.3168201148509979, 0.016530057415366173, -0.39009642601013184, 0.00034940673504024744, -0.0034551091957837343, 0.6004512310028076, -0.2804030179977417, 0.0018049303907901049, 0.0038970415480434895, 0.00969074759632349, -0.04819818213582039, 0.2846013903617859, 0.19208316504955292, -0.0055127437226474285, 0.9840846657752991, 0.14820891618728638, 0.06307297945022583, -0.06319282203912735, 0.28733378648757935, -0.20109529793262482, 0.029169604182243347, 0.9916227459907532, -0.19388079643249512, 0.0616828091442585, 0.023453129455447197]} +{"t": 2.7967, "q": [-0.3543376326560974, -0.01232638768851757, 0.006615596357733011, 0.6292303800582886, -0.3168242275714874, 0.01653728261590004, -0.3901134729385376, 0.0003579288604669273, -0.003441717242822051, 0.6004597544670105, -0.2803989052772522, 0.001812125090509653, 0.00388364982791245, 0.009698350913822651, -0.04819326847791672, 0.28461337089538574, 0.19207118451595306, -0.0055007594637572765, 0.9840966463088989, 0.14817295968532562, 0.06309694796800613, -0.06319282203912735, 0.2873218059539795, -0.20111927390098572, 0.029169604182243347, 0.9916107654571533, -0.19384483993053436, 0.0616828091442585, 0.0234770979732275]} +{"t": 2.8135, "q": [-0.3543461561203003, -0.01232638768851757, 0.0065620290115475655, 0.6292303800582886, -0.3168201148509979, 0.016530057415366173, -0.3901134729385376, 0.0003664509567897767, -0.003441717242822051, 0.6004512310028076, -0.2804030179977417, 0.0018049303907901049, 0.0038702578749507666, 0.009698350913822651, -0.04819326847791672, 0.2846253514289856, 0.19208316504955292, -0.0055367122404277325, 0.9840846657752991, 0.14822089672088623, 0.06308495998382568, -0.06319282203912735, 0.28733378648757935, -0.20111927390098572, 0.0291815884411335, 0.9916227459907532, -0.19382087886333466, 0.06169478967785835, 0.02346511371433735]} +{"t": 2.8302, "q": [-0.3543546795845032, -0.012317866086959839, 0.0065620290115475655, 0.6292389035224915, -0.3168160021305084, 0.016522832214832306, -0.3901049494743347, 0.00034940673504024744, -0.003468500915914774, 0.6004597544670105, -0.2803947627544403, 0.0018193196738138795, 0.003910433501005173, 0.009705954231321812, -0.048188354820013046, 0.28461337089538574, 0.19208316504955292, -0.0055127437226474285, 0.9841086268424988, 0.14811304211616516, 0.06309694796800613, -0.0632048025727272, 0.2873218059539795, -0.20109529793262482, 0.0291815884411335, 0.9916107654571533, -0.19379690289497375, 0.06169478967785835, 0.02346511371433735]} +{"t": 2.8469, "q": [-0.3543546795845032, -0.01232638768851757, 0.006588812451809645, 0.6292389035224915, -0.3168201148509979, 0.016530057415366173, -0.3901049494743347, 0.0003323625132907182, -0.0034551091957837343, 0.6004682779312134, -0.2803989052772522, 0.001812125090509653, 0.003937217406928539, 0.009713561274111271, -0.048193350434303284, 0.28461337089538574, 0.19208316504955292, -0.0055127437226474285, 0.9840846657752991, 0.14812502264976501, 0.06308495998382568, -0.0631808340549469, 0.2873218059539795, -0.20110727846622467, 0.02919357270002365, 0.9916107654571533, -0.19377294182777405, 0.061706773936748505, 0.0234770979732275]} +{"t": 2.8636, "q": [-0.3543461561203003, -0.012317866086959839, 0.0065620290115475655, 0.6292559504508972, -0.3167994022369385, 0.01659543253481388, -0.3901219964027405, 0.0003579288604669273, -0.0034283252898603678, 0.6004512310028076, -0.2803947627544403, 0.0018193196738138795, 0.00388364982791245, 0.009713557548820972, -0.048183441162109375, 0.28461337089538574, 0.19205918908119202, -0.0055367122404277325, 0.9840966463088989, 0.14819693565368652, 0.06310892850160599, -0.0632048025727272, 0.2873457670211792, -0.20110727846622467, 0.029205556958913803, 0.9916227459907532, -0.19382087886333466, 0.0616828091442585, 0.023489082232117653]} +{"t": 2.8804, "q": [-0.3543461561203003, -0.012317866086959839, 0.006521853152662516, 0.6292474269866943, -0.3168160021305084, 0.016522832214832306, -0.3901646137237549, 0.0003579288604669273, -0.0034283252898603678, 0.6004682779312134, -0.280407190322876, 0.0018121778266504407, 0.003937217406928539, 0.009736367501318455, -0.04816870018839836, 0.28461337089538574, 0.19208316504955292, -0.0055127437226474285, 0.9840966463088989, 0.14814899861812592, 0.06310892850160599, -0.06319282203912735, 0.28733378648757935, -0.20109529793262482, 0.02919357270002365, 0.991634726524353, -0.19384483993053436, 0.06167082488536835, 0.023441145196557045]} +{"t": 2.8971, "q": [-0.3543546795845032, -0.012317866086959839, 0.006508461199700832, 0.6292474269866943, -0.3168160021305084, 0.01653733290731907, -0.3901646137237549, 0.0003408846096135676, -0.0034551091957837343, 0.6004768013954163, -0.2804030776023865, 0.001819372409954667, 0.003937217406928539, 0.009705954231321812, -0.048188354820013046, 0.2846013903617859, 0.19205918908119202, -0.0055127437226474285, 0.9840846657752991, 0.14820891618728638, 0.06309694796800613, -0.06319282203912735, 0.2873457670211792, -0.20110727846622467, 0.02919357270002365, 0.9916227459907532, -0.19382087886333466, 0.0616828091442585, 0.02346511371433735]} +{"t": 2.9139, "q": [-0.35436320304870605, -0.012317866086959839, 0.006508461199700832, 0.6292474269866943, -0.3168284296989441, 0.016500990837812424, -0.3901987075805664, 0.00034940673504024744, -0.003441717242822051, 0.6004853248596191, -0.280407190322876, 0.0018121778266504407, 0.003910433501005173, 0.00969073548913002, -0.04817835986614227, 0.28461337089538574, 0.19208316504955292, -0.0055127437226474285, 0.9840846657752991, 0.14812502264976501, 0.06314488500356674, -0.06319282203912735, 0.2873457670211792, -0.20111927390098572, 0.0291815884411335, 0.9916227459907532, -0.19382087886333466, 0.061706773936748505, 0.023441145196557045]} +{"t": 2.9306, "q": [-0.3543802499771118, -0.012317866086959839, 0.006495069246739149, 0.6292559504508972, -0.3168242871761322, 0.01650826446712017, -0.3901987075805664, 0.0003408846096135676, -0.0034283252898603678, 0.600493848323822, -0.2803989052772522, 0.001812125090509653, 0.0038970415480434895, 0.00968314427882433, -0.04820309579372406, 0.2846013903617859, 0.19207118451595306, -0.0055127437226474285, 0.9840966463088989, 0.14816097915172577, 0.06312091648578644, -0.06319282203912735, 0.2873218059539795, -0.20109529793262482, 0.02919357270002365, 0.991634726524353, -0.19377294182777405, 0.06169478967785835, 0.0234770979732275]} +{"t": 2.9475, "q": [-0.3543887734413147, -0.012334910221397877, 0.006508461199700832, 0.6292559504508972, -0.3168160021305084, 0.016522832214832306, -0.3902072310447693, 0.0003408846096135676, -0.0034283252898603678, 0.600510835647583, -0.2804030179977417, 0.0018049303907901049, 0.0039506093598902225, 0.009698362089693546, -0.04821309074759483, 0.2846013903617859, 0.19208316504955292, -0.0055247279815375805, 0.9840846657752991, 0.14820891618728638, 0.06312091648578644, -0.06319282203912735, 0.2873218059539795, -0.20110727846622467, 0.029205556958913803, 0.9916227459907532, -0.19377294182777405, 0.061706773936748505, 0.02346511371433735]} +{"t": 2.9642, "q": [-0.35437172651290894, -0.012309344485402107, 0.006508461199700832, 0.6292474269866943, -0.31680357456207275, 0.01657365821301937, -0.3901987075805664, 0.00034940673504024744, -0.0034283252898603678, 0.6005278825759888, -0.2804030179977417, 0.0018049303907901049, 0.00388364982791245, 0.009698350913822651, -0.04819326847791672, 0.28461337089538574, 0.19208316504955292, -0.0055247279815375805, 0.9840846657752991, 0.14814899861812592, 0.06312091648578644, -0.0631808340549469, 0.2873218059539795, -0.20110727846622467, 0.029205556958913803, 0.9916107654571533, -0.1937849223613739, 0.061706773936748505, 0.0234770979732275]} +{"t": 2.9809, "q": [-0.3543887734413147, -0.01232638768851757, 0.006521853152662516, 0.6292900443077087, -0.31679943203926086, 0.016580931842327118, -0.39017313718795776, 0.0003579288604669273, -0.0034283252898603678, 0.6005193591117859, -0.2803989350795746, 0.0018265671096742153, 0.003937217406928539, 0.00969834253191948, -0.04818335548043251, 0.28461337089538574, 0.19208316504955292, -0.0055486964993178844, 0.9840846657752991, 0.14819693565368652, 0.06308495998382568, -0.0632048025727272, 0.2873218059539795, -0.20109529793262482, 0.029205556958913803, 0.9916107654571533, -0.19374896585941315, 0.061706773936748505, 0.023501066491007805]} +{"t": 2.9976, "q": [-0.3543802499771118, -0.01232638768851757, 0.006535245105624199, 0.6292815208435059, -0.31679531931877136, 0.01657370664179325, -0.39017313718795776, 0.00034940673504024744, -0.0034551091957837343, 0.6005364060401917, -0.2804030179977417, 0.0018049303907901049, 0.0039506093598902225, 0.009690739214420319, -0.04818826913833618, 0.28461337089538574, 0.19207118451595306, -0.0055367122404277325, 0.9840846657752991, 0.14813700318336487, 0.06310892850160599, -0.0631808340549469, 0.28733378648757935, -0.20110727846622467, 0.029205556958913803, 0.9916227459907532, -0.1937849223613739, 0.06169478967785835, 0.0234770979732275]} +{"t": 3.0144, "q": [-0.3543802499771118, -0.01232638768851757, 0.006588812451809645, 0.6293070912361145, -0.316795289516449, 0.016588207334280014, -0.39017313718795776, 0.0003408846096135676, -0.0034283252898603678, 0.6005449295043945, -0.2803989052772522, 0.001812125090509653, 0.003937217406928539, 0.009713545441627502, -0.04816361889243126, 0.2846013903617859, 0.19208316504955292, -0.0055367122404277325, 0.9841086268424988, 0.14820891618728638, 0.06309694796800613, -0.06319282203912735, 0.28733378648757935, -0.20109529793262482, 0.0291815884411335, 0.9916227459907532, -0.19377294182777405, 0.06169478967785835, 0.0234770979732275]} +{"t": 3.0311, "q": [-0.3543546795845032, -0.012317866086959839, 0.0066289883106946945, 0.6293241381645203, -0.31678706407546997, 0.01657375693321228, -0.39013051986694336, 0.0003408846096135676, -0.003441717242822051, 0.6005534529685974, -0.28039470314979553, 0.001804859610274434, 0.00388364982791245, 0.00968313217163086, -0.048183273524045944, 0.28431376814842224, 0.18993797898292542, -0.004889564123004675, 0.9847437739372253, 0.14818494021892548, 0.06325273960828781, -0.06328869611024857, 0.28653085231781006, -0.19960924983024597, 0.029768815264105797, 0.9930248856544495, -0.1938328593969345, 0.06173074245452881, 0.023441145196557045]} +{"t": 3.0478, "q": [-0.3543546795845032, -0.01232638768851757, 0.006749515421688557, 0.6294008493423462, -0.3167788088321686, 0.016588324680924416, -0.3900793790817261, 0.00034940673504024744, -0.0034551091957837343, 0.6005875468254089, -0.28039470314979553, 0.001804859610274434, 0.003910433501005173, 0.009652695618569851, -0.0481632836163044, 0.283702552318573, 0.18722954392433167, -0.00447011599317193, 0.986038088798523, 0.14823287725448608, 0.06357631832361221, -0.06331266462802887, 0.28533241152763367, -0.19751201570034027, 0.030176280066370964, 0.9952539801597595, -0.19382087886333466, 0.061826616525650024, 0.023321302607655525]} +{"t": 3.0645, "q": [-0.3543376326560974, -0.012317866086959839, 0.006736123468726873, 0.6294264197349548, -0.3167705833911896, 0.01657385751605034, -0.3901049494743347, 0.00034940673504024744, -0.0034283252898603678, 0.6007068753242493, -0.28038644790649414, 0.0018192490097135305, 0.00388364982791245, 0.00966029055416584, -0.04814845696091652, 0.28316327929496765, 0.18422150611877441, -0.004386226646602154, 0.9873683452606201, 0.14819693565368652, 0.06363623589277267, -0.06331266462802887, 0.28403812646865845, -0.19492343068122864, 0.030356042087078094, 0.9973991513252258, -0.19384483993053436, 0.06181463226675987, 0.023321302607655525]} +{"t": 3.0813, "q": [-0.35431206226348877, -0.012351954355835915, 0.0068030827678740025, 0.6294349431991577, -0.3167664706707001, 0.016566632315516472, -0.3901049494743347, 0.0003408846096135676, -0.0034015413839370012, 0.6007580161094666, -0.28039056062698364, 0.0018120543099939823, 0.003964001312851906, 0.009683123789727688, -0.04817336052656174, 0.2825760543346405, 0.18130934238433838, -0.004841627087444067, 0.9885188341140747, 0.14820891618728638, 0.06370814144611359, -0.06338457018136978, 0.28271985054016113, -0.19178356230258942, 0.031087080016732216, 0.9993405938148499, -0.1938088834285736, 0.06186256930232048, 0.02340519241988659]} +{"t": 3.0982, "q": [-0.35431206226348877, -0.012420130893588066, 0.006816474720835686, 0.6294605135917664, -0.3167664706707001, 0.016566632315516472, -0.3901049494743347, 0.00032384038786403835, -0.003441717242822051, 0.6007750630378723, -0.2803780734539032, 0.0018047542544081807, 0.003923825453966856, 0.009675520472228527, -0.04817827418446541, 0.28191691637039185, 0.1760362833738327, -0.004649879410862923, 0.9901247024536133, 0.14820891618728638, 0.06372012197971344, -0.06344448775053024, 0.2816053330898285, -0.18778082728385925, 0.031434621661901474, 1.0012940168380737, -0.19385682046413422, 0.06180264800786972, 0.02341717667877674]} +{"t": 3.1151, "q": [-0.35426944494247437, -0.012462742626667023, 0.006896826438605785, 0.6294775605201721, -0.3167746961116791, 0.01658109948039055, -0.39009642601013184, 0.0002897519152611494, -0.0033881496638059616, 0.6008772850036621, -0.2803780734539032, 0.0018047542544081807, 0.003990784753113985, 0.009698362089693546, -0.04821309074759483, 0.28069451451301575, 0.16986440122127533, -0.004817658569663763, 0.9928211569786072, 0.14820891618728638, 0.06374409049749374, -0.06354036182165146, 0.28051474690437317, -0.18243585526943207, 0.031506527215242386, 1.0036789178848267, -0.19388079643249512, 0.061826616525650024, 0.023453129455447197]} +{"t": 3.1318, "q": [-0.35426095128059387, -0.012454220093786716, 0.0068566505797207355, 0.6294946074485779, -0.3167705833911896, 0.01657385751605034, -0.3900623321533203, 0.0002897519152611494, -0.0034015413839370012, 0.6009028553962708, -0.2803863286972046, 0.001790364971384406, 0.003923825453966856, 0.009766804054379463, -0.04818869009613991, 0.2794841229915619, 0.1622544229030609, -0.004769721534103155, 0.9956494569778442, 0.14822089672088623, 0.06376805901527405, -0.06355234980583191, 0.2794841229915619, -0.17669542133808136, 0.03175819665193558, 1.0062075853347778, -0.19385682046413422, 0.061826616525650024, 0.023441145196557045]} +{"t": 3.1485, "q": [-0.35426095128059387, -0.012462742626667023, 0.006870042532682419, 0.6295201182365417, -0.3167705833911896, 0.01657385751605034, -0.3900708556175232, 0.0002641855680849403, -0.0033747577108442783, 0.6008943319320679, -0.2803822457790375, 0.0018120015738531947, 0.00388364982791245, 0.00974399782717228, -0.04821334034204483, 0.27827370166778564, 0.1552676260471344, -0.004805674310773611, 0.9981061816215515, 0.14822089672088623, 0.0638040155172348, -0.06364822387695312, 0.2790287137031555, -0.17120663821697235, 0.03214169293642044, 1.007993221282959, -0.19382087886333466, 0.06180264800786972, 0.023489082232117653]} +{"t": 3.1653, "q": [-0.35426944494247437, -0.012513874098658562, 0.006816474720835686, 0.6295201182365417, -0.3167705833911896, 0.01657385751605034, -0.3900708556175232, 0.00023861923546064645, -0.003347973804920912, 0.6009199023246765, -0.28039470314979553, 0.001804859610274434, 0.004017568659037352, 0.009743994101881981, -0.04820343106985092, 0.2772071063518524, 0.14760969579219818, -0.0049135321751236916, 1.0006828308105469, 0.14822089672088623, 0.06381599605083466, -0.06369615346193314, 0.27850142121315, -0.1655740588903427, 0.032165661454200745, 1.0101263523101807, -0.1937849223613739, 0.06181463226675987, 0.023501066491007805]} +{"t": 3.182, "q": [-0.35427796840667725, -0.012471264228224754, 0.006816474720835686, 0.6295371651649475, -0.3167705237865448, 0.016602875664830208, -0.39008790254592896, 0.00022157499915920198, -0.0033747577108442783, 0.6009113788604736, -0.2803863286972046, 0.001790364971384406, 0.003964001312851906, 0.00969835463911295, -0.048203177750110626, 0.2763442397117615, 0.1399397999048233, -0.0049734534695744514, 1.0030077695846558, 0.14818494021892548, 0.0638279840350151, -0.06372012197971344, 0.2780579924583435, -0.15997742116451263, 0.032045818865299225, 1.0121396780014038, -0.1938088834285736, 0.061826616525650024, 0.023453129455447197]} +{"t": 3.1988, "q": [-0.3543035387992859, -0.012471264228224754, 0.006816474720835686, 0.6295371651649475, -0.31680363416671753, 0.01653015799820423, -0.39008790254592896, 0.00022157499915920198, -0.0034149333368986845, 0.6009199023246765, -0.28038638830184937, 0.0018048069905489683, 0.003964001312851906, 0.009667929261922836, -0.048203010112047195, 0.2758888602256775, 0.1324256956577301, -0.005081311333924532, 1.0047694444656372, 0.14820891618728638, 0.06383996456861496, -0.0637560784816742, 0.2777344286441803, -0.15392538905143738, 0.03203383460640907, 1.0136257410049438, -0.19382087886333466, 0.061838600784540176, 0.023453129455447197]} +{"t": 3.2155, "q": [-0.35431206226348877, -0.012471264228224754, 0.006749515421688557, 0.6295286417007446, -0.316799521446228, 0.016522914171218872, -0.3901049494743347, 0.00023861923546064645, -0.0034551091957837343, 0.6009113788604736, -0.2804030179977417, 0.0018049303907901049, 0.003923825453966856, 0.009614714421331882, -0.0482473149895668, 0.2757689952850342, 0.12434832006692886, -0.004997421987354755, 1.0060876607894897, 0.14819693565368652, 0.06388790160417557, -0.06374409049749374, 0.27737489342689514, -0.14734604954719543, 0.03209375590085983, 1.0149080753326416, -0.19385682046413422, 0.061838600784540176, 0.023453129455447197]} +{"t": 3.2323, "q": [-0.3543035387992859, -0.012462742626667023, 0.006749515421688557, 0.6295286417007446, -0.31680363416671753, 0.01653015799820423, -0.3901049494743347, 0.00024714134633541107, -0.0034015413839370012, 0.6009113788604736, -0.2804030179977417, 0.0018049303907901049, 0.003937217406928539, 0.009667948819696903, -0.04823274165391922, 0.2757330536842346, 0.11666643619537354, -0.0049135321751236916, 1.007094383239746, 0.14825685322284698, 0.06389988958835602, -0.06370814144611359, 0.2771112322807312, -0.1413659155368805, 0.03215367719531059, 1.0158908367156982, -0.19379690289497375, 0.061838600784540176, 0.023489082232117653]} +{"t": 3.249, "q": [-0.3542864918708801, -0.012462742626667023, 0.00672273151576519, 0.6295286417007446, -0.31680363416671753, 0.01653015799820423, -0.3901219964027405, 0.00029827404068782926, -0.0033747577108442783, 0.6009454727172852, -0.28039470314979553, 0.001804859610274434, 0.003910433501005173, 0.009698374196887016, -0.04823290929198265, 0.2755652666091919, 0.10948788374662399, -0.004518053028732538, 1.0084725618362427, 0.14820891618728638, 0.06399576365947723, -0.06240186095237732, 0.2768355906009674, -0.13523000478744507, 0.03212970867753029, 1.016957402229309, -0.1937849223613739, 0.06185058504343033, 0.0234770979732275]} +{"t": 3.2658, "q": [-0.3542864918708801, -0.012411609292030334, 0.006682556122541428, 0.6295201182365417, -0.31677883863449097, 0.016559289768338203, -0.3901646137237549, 0.00037497308221645653, -0.0033881496638059616, 0.600953996181488, -0.2804071605205536, 0.0017977358074858785, 0.004044352564960718, 0.00975160114467144, -0.04820842668414116, 0.2750619351863861, 0.10397513955831528, -0.0034274884965270758, 1.0105817317962646, 0.14812502264976501, 0.06423544883728027, -0.060927800834178925, 0.27661988139152527, -0.12889033555984497, 0.03208177164196968, 1.0181318521499634, -0.19384483993053436, 0.06187455356121063, 0.023321302607655525]} +{"t": 3.2825, "q": [-0.3543035387992859, -0.012368999421596527, 0.006495069246739149, 0.6295201182365417, -0.31677478551864624, 0.01652306504547596, -0.3901475667953491, 0.0004090615548193455, -0.003575636073946953, 0.6009795665740967, -0.2804194986820221, 0.0017616738332435489, 0.004097919911146164, 0.009751620702445507, -0.04823816195130348, 0.27460652589797974, 0.10162623226642609, -0.002121207769960165, 1.0131343603134155, 0.14816097915172577, 0.06434330344200134, -0.05968144163489342, 0.2763082981109619, -0.12299410253763199, 0.03185407072305679, 1.0197616815567017, -0.19384483993053436, 0.06199439615011215, 0.02225470542907715]} +{"t": 3.2993, "q": [-0.3543035387992859, -0.012317866086959839, 0.0064013260416686535, 0.629503071308136, -0.31675419211387634, 0.016515938565135002, -0.3901475667953491, 0.00044314999831840396, -0.0036292036529630423, 0.601030707359314, -0.28045666217803955, 0.0016969040734693408, 0.004097919911146164, 0.009789661504328251, -0.04825323820114136, 0.27447471022605896, 0.10053566843271255, -7.190534961409867e-05, 1.0153874158859253, 0.14819693565368652, 0.0644032284617424, -0.058758657425642014, 0.27567312121391296, -0.11844009906053543, 0.03153049573302269, 1.0217151641845703, -0.1938328593969345, 0.062126222997903824, 0.02171541564166546]} +{"t": 3.3162, "q": [-0.3543035387992859, -0.012283777818083763, 0.006414717994630337, 0.629503071308136, -0.31675010919570923, 0.016479695215821266, -0.390156090259552, 0.00046871634549461305, -0.0036024199798703194, 0.6010392308235168, -0.28047317266464233, 0.0016681255074217916, 0.004017568659037352, 0.009804883040487766, -0.04827314242720604, 0.2742230296134949, 0.10011621564626694, 0.001797633827663958, 1.0181437730789185, 0.14814899861812592, 0.0643552914261818, -0.05850698798894882, 0.27460652589797974, -0.11606722325086594, 0.03105112724006176, 1.0244475603103638, -0.19384483993053436, 0.06222209706902504, 0.020732710137963295]} +{"t": 3.3329, "q": [-0.3543035387992859, -0.01226673275232315, 0.006495069246739149, 0.629503071308136, -0.31674185395240784, 0.01649424619972706, -0.39017313718795776, 0.0004772384709212929, -0.0036024199798703194, 0.6010562777519226, -0.28046905994415283, 0.001675320090726018, 0.003977392800152302, 0.009766866452991962, -0.0482977069914341, 0.27377963066101074, 0.09997240453958511, 0.003451456781476736, 1.02139151096344, 0.14820891618728638, 0.0643552914261818, -0.05842309817671776, 0.2729407250881195, -0.1149526908993721, 0.03093128465116024, 1.0280787944793701, -0.19384483993053436, 0.06238987669348717, 0.019450398162007332]} +{"t": 3.3497, "q": [-0.35431206226348877, -0.012292299419641495, 0.006535245105624199, 0.6294946074485779, -0.31674185395240784, 0.01649424619972706, -0.39017313718795776, 0.0004516721237450838, -0.003562244353815913, 0.6010818481445312, -0.28046491742134094, 0.0016825147904455662, 0.004071136470884085, 0.009820077568292618, -0.04824349284172058, 0.2736477851867676, 0.09993645548820496, 0.0041944789700210094, 1.0232610702514648, 0.14818494021892548, 0.06431933492422104, -0.058399129658937454, 0.2715745270252228, -0.11476094275712967, 0.030799459666013718, 1.031026840209961, -0.19384483993053436, 0.06250971555709839, 0.017916416749358177]} +{"t": 3.3665, "q": [-0.35432058572769165, -0.012334910221397877, 0.0065620290115475655, 0.629503071308136, -0.31674596667289734, 0.016501471400260925, -0.3901987075805664, 0.0004261057765688747, -0.003468500915914774, 0.6010648012161255, -0.28046905994415283, 0.001675320090726018, 0.004017568659037352, 0.009820077568292618, -0.04824349284172058, 0.2736477851867676, 0.09984058141708374, 0.00441019469872117, 1.0239441394805908, 0.14813700318336487, 0.06429536640644073, -0.0583871454000473, 0.2698248326778412, -0.11474895477294922, 0.030775491148233414, 1.0344183444976807, -0.19379690289497375, 0.062557652592659, 0.0168618056923151]} +{"t": 3.3833, "q": [-0.35431206226348877, -0.012394565157592297, 0.006682556122541428, 0.6295115947723389, -0.31675007939338684, 0.016508713364601135, -0.3902072310447693, 0.00037497308221645653, -0.0034149333368986845, 0.6010733246803284, -0.28046080470085144, 0.0016897094901651144, 0.003977392800152302, 0.00978205818682909, -0.04825815185904503, 0.273384153842926, 0.09978065639734268, 0.004506068769842386, 1.0242317914962769, 0.14814899861812592, 0.06425941735506058, -0.058363176882267, 0.2685664892196655, -0.11472498625516891, 0.030775491148233414, 1.036971092224121, -0.1937849223613739, 0.06262955814599991, 0.016214657574892044]} +{"t": 3.4, "q": [-0.35431206226348877, -0.012428653426468372, 0.00672273151576519, 0.6295115947723389, -0.31675007939338684, 0.016508713364601135, -0.3901901841163635, 0.0003323625132907182, -0.0034015413839370012, 0.6010392308235168, -0.28046080470085144, 0.0016897094901651144, 0.004004176706075668, 0.009789676405489445, -0.04828296974301338, 0.2726890742778778, 0.09978065639734268, 0.00453003728762269, 1.0245434045791626, 0.1480770856142044, 0.06425941735506058, -0.05824333429336548, 0.2674040198326111, -0.1146051436662674, 0.030775491148233414, 1.0386128425598145, -0.19379690289497375, 0.06262955814599991, 0.015867114067077637]} +{"t": 3.417, "q": [-0.35431206226348877, -0.012471264228224754, 0.00672273151576519, 0.6295542120933533, -0.3167707026004791, 0.01650133915245533, -0.39017313718795776, 0.0002897519152611494, -0.003361365757882595, 0.6010392308235168, -0.2804608643054962, 0.001704169437289238, 0.003990784753113985, 0.009812494739890099, -0.048278141766786575, 0.27161046862602234, 0.09975668787956238, 0.004542021546512842, 1.0251785516738892, 0.14813700318336487, 0.06427139788866043, -0.05812349170446396, 0.26576218008995056, -0.11459316313266754, 0.03081144392490387, 1.0403026342391968, -0.1937849223613739, 0.06267749518156052, 0.015543540008366108]} +{"t": 3.4337, "q": [-0.35432058572769165, -0.012513874098658562, 0.006776299327611923, 0.6295456886291504, -0.3167789578437805, 0.016486790031194687, -0.39018166065216064, 0.00024714134633541107, -0.003347973804920912, 0.6010477542877197, -0.28044426441192627, 0.0017184880562126637, 0.003977392800152302, 0.00982009805738926, -0.048273228108882904, 0.27016037702560425, 0.09972073882818222, 0.004589958116412163, 1.026233196258545, 0.14818494021892548, 0.06430735439062119, -0.05802761763334274, 0.2640604078769684, -0.11459316313266754, 0.030775491148233414, 1.042208194732666, -0.19379690289497375, 0.06270146369934082, 0.01510012336075306]} +{"t": 3.4505, "q": [-0.35432910919189453, -0.012556485831737518, 0.00676290737465024, 0.6295286417007446, -0.31677892804145813, 0.0165012888610363, -0.39018166065216064, 0.0002556634717620909, -0.003254230599850416, 0.6010392308235168, -0.28043606877326965, 0.001747355330735445, 0.003937217406928539, 0.009812494739890099, -0.048278141766786575, 0.26845863461494446, 0.09967280179262161, 0.004565989598631859, 1.027443528175354, 0.14814899861812592, 0.06436727195978165, -0.05799166485667229, 0.2623586654663086, -0.11458117514848709, 0.03081144392490387, 1.0439938306808472, -0.19384483993053436, 0.06274940073490143, 0.014524880796670914]} +{"t": 3.4673, "q": [-0.35431206226348877, -0.01256500743329525, 0.00676290737465024, 0.6295542120933533, -0.31676656007766724, 0.016508614644408226, -0.3901901841163635, 0.0002300971100339666, -0.0032274469267576933, 0.6010477542877197, -0.2804277539253235, 0.0017472845502197742, 0.0039506093598902225, 0.009789684787392616, -0.04829287901520729, 0.2668048143386841, 0.09967280179262161, 0.004613926634192467, 1.0285820960998535, 0.14819693565368652, 0.0644271969795227, -0.05793174356222153, 0.26084864139556885, -0.11448530107736588, 0.03082342818379402, 1.0460431575775146, -0.19379690289497375, 0.06277336925268173, 0.014117416925728321]} +{"t": 3.484, "q": [-0.3543035387992859, -0.012573529034852982, 0.006682556122541428, 0.629571259021759, -0.31677892804145813, 0.0165012888610363, -0.39017313718795776, 0.00021305288828443736, -0.0032274469267576933, 0.601030707359314, -0.28041937947273254, 0.0017327897949144244, 0.003990784753113985, 0.009858141653239727, -0.04829821363091469, 0.26541462540626526, 0.099624864757061, 0.004565989598631859, 1.029768466949463, 0.14824487268924713, 0.06445116549730301, -0.05789579078555107, 0.2598419785499573, -0.11443736404180527, 0.030799459666013718, 1.047972559928894, -0.19379690289497375, 0.06278535723686218, 0.013757891021668911]} +{"t": 3.5007, "q": [-0.3542864918708801, -0.012582051567733288, 0.006655772216618061, 0.6295797824859619, -0.31676653027534485, 0.016537614166736603, -0.39013904333114624, 0.00021305288828443736, -0.003240838646888733, 0.6010392308235168, -0.280431866645813, 0.001740089850500226, 0.004004176706075668, 0.009850570000708103, -0.0483526811003685, 0.2641323208808899, 0.099624864757061, 0.004565989598631859, 1.0314463376998901, 0.14822089672088623, 0.06445116549730301, -0.057859838008880615, 0.2590869665145874, -0.1143774464726448, 0.030775491148233414, 1.0497581958770752, -0.19384483993053436, 0.06282130628824234, 0.013290505856275558]} +{"t": 3.5176, "q": [-0.3542864918708801, -0.012573529034852982, 0.006695947609841824, 0.6295968294143677, -0.31676235795021057, 0.016544906422495842, -0.39013051986694336, 0.00020453077740967274, -0.003254230599850416, 0.6010562777519226, -0.2804277539253235, 0.0017472845502197742, 0.003964001312851906, 0.009888575412333012, -0.048308294266462326, 0.26324549317359924, 0.09964883327484131, 0.004565989598631859, 1.0329563617706299, 0.1482808142900467, 0.06445116549730301, -0.0577879324555397, 0.2585596740245819, -0.11425760388374329, 0.030799459666013718, 1.0511723756790161, -0.19382087886333466, 0.06278535723686218, 0.01290701050311327]} +{"t": 3.5343, "q": [-0.35431206226348877, -0.01256500743329525, 0.006709339562803507, 0.6295968294143677, -0.31675413250923157, 0.01654495671391487, -0.39013904333114624, 0.00023861923546064645, -0.0032810145057737827, 0.601030707359314, -0.2804235517978668, 0.0017400372307747602, 0.003977392800152302, 0.009835316799581051, -0.04828322306275368, 0.26227477192878723, 0.09963684529066086, 0.004565989598631859, 1.0348018407821655, 0.14822089672088623, 0.06446314603090286, -0.057692062109708786, 0.2581162452697754, -0.11420966684818268, 0.030799459666013718, 1.052814245223999, -0.1938088834285736, 0.06279733777046204, 0.01251153089106083]} +{"t": 3.551, "q": [-0.3543461561203003, -0.012573529034852982, 0.0068030827678740025, 0.6295797824859619, -0.3167499601840973, 0.01656673103570938, -0.39017313718795776, 0.00023861923546064645, -0.0033077981788665056, 0.6010392308235168, -0.280431866645813, 0.001740089850500226, 0.004004176706075668, 0.009721211157739162, -0.04826772212982178, 0.26119619607925415, 0.09963684529066086, 0.004589958116412163, 1.0365276336669922, 0.14819693565368652, 0.06447513401508331, -0.05759618803858757, 0.2573612332344055, -0.1140299066901207, 0.03081144392490387, 1.055091142654419, -0.19382087886333466, 0.06280932575464249, 0.012044146656990051]} +{"t": 3.5678, "q": [-0.3543376326560974, -0.012530919164419174, 0.006843258626759052, 0.6295968294143677, -0.31675001978874207, 0.016537731513381004, -0.3901646137237549, 0.00024714134633541107, -0.003321190131828189, 0.6010221838951111, -0.2804235517978668, 0.0017400372307747602, 0.004004176706075668, 0.009713557548820972, -0.048183441162109375, 0.2596861720085144, 0.09958890825510025, 0.004589958116412163, 1.0389244556427002, 0.14814899861812592, 0.06443917751312256, -0.05741642415523529, 0.2567859888076782, -0.11394601315259933, 0.030799459666013718, 1.0569367408752441, -0.1937849223613739, 0.06280932575464249, 0.011600730009377003]} +{"t": 3.5845, "q": [-0.35432910919189453, -0.012530919164419174, 0.006843258626759052, 0.6295797824859619, -0.3167417645454407, 0.016552282497286797, -0.39017313718795776, 0.00022157499915920198, -0.003347973804920912, 0.6010392308235168, -0.2804235517978668, 0.0017400372307747602, 0.004004176706075668, 0.00968313217163086, -0.048183273524045944, 0.25760093331336975, 0.09954097121953964, 0.004637895151972771, 1.0422919988632202, 0.14819693565368652, 0.06446314603090286, -0.05717673897743225, 0.25617480278015137, -0.11385013908147812, 0.03081144392490387, 1.0588183403015137, -0.1938088834285736, 0.06279733777046204, 0.011061440221965313]} +{"t": 3.6013, "q": [-0.3543461561203003, -0.012496830895543098, 0.006829866673797369, 0.629571259021759, -0.3167417645454407, 0.016537781804800034, -0.39017313718795776, 0.0002812298189383, -0.0034015413839370012, 0.6010477542877197, -0.2804276943206787, 0.001732842531055212, 0.004017568659037352, 0.00969833042472601, -0.048163533210754395, 0.25635457038879395, 0.09954097121953964, 0.004613926634192467, 1.0437061786651611, 0.14816097915172577, 0.06448711454868317, -0.05692506954073906, 0.25529995560646057, -0.1137063279747963, 0.030835412442684174, 1.0605919361114502, -0.19384483993053436, 0.06283329427242279, 0.01047421246767044]} +{"t": 3.618, "q": [-0.3543376326560974, -0.012496830895543098, 0.006816474720835686, 0.629571259021759, -0.3167417645454407, 0.016537781804800034, -0.39017313718795776, 0.0003323625132907182, -0.0034283252898603678, 0.6010392308235168, -0.2804360091686249, 0.0017328952671959996, 0.004057744517922401, 0.009721140377223492, -0.04814879223704338, 0.25525200366973877, 0.09948105365037918, 0.004589958116412163, 1.0448685884475708, 0.14818494021892548, 0.06447513401508331, -0.056469667702913284, 0.25425732135772705, -0.11359847337007523, 0.030835412442684174, 1.0624135732650757, -0.19382087886333466, 0.06284527480602264, 0.00980309583246708]} +{"t": 3.6348, "q": [-0.3543376326560974, -0.012471264228224754, 0.006776299327611923, 0.6295627355575562, -0.31675001978874207, 0.016537731513381004, -0.3901646137237549, 0.0003323625132907182, -0.003441717242822051, 0.6010562777519226, -0.28044021129608154, 0.0017401606310158968, 0.004017568659037352, 0.009728743694722652, -0.04814387857913971, 0.2541015148162842, 0.09944510459899902, 0.004577973857522011, 1.045863389968872, 0.14819693565368652, 0.06451108306646347, -0.05560680478811264, 0.2528671622276306, -0.11353854835033417, 0.030847394838929176, 1.0645946264266968, -0.193760946393013, 0.06284527480602264, 0.00911999586969614]} +{"t": 3.6515, "q": [-0.35432910919189453, -0.012471264228224754, 0.0067896912805736065, 0.6295797824859619, -0.31674590706825256, 0.016530506312847137, -0.390156090259552, 0.00032384038786403835, -0.0034283252898603678, 0.6010392308235168, -0.2804360091686249, 0.0017328952671959996, 0.004017568659037352, 0.009713549166917801, -0.04817352816462517, 0.2528431713581085, 0.09945708513259888, 0.004589958116412163, 1.0469778776168823, 0.14824487268924713, 0.06454703956842422, -0.054132744669914246, 0.2514170706272125, -0.11338275671005249, 0.03087136335670948, 1.0668597221374512, -0.19382087886333466, 0.06284527480602264, 0.008436894975602627]} +{"t": 3.6683, "q": [-0.35432058572769165, -0.012471264228224754, 0.006816474720835686, 0.6295883059501648, -0.31675001978874207, 0.016537731513381004, -0.39017313718795776, 0.0003408846096135676, -0.0034283252898603678, 0.6010477542877197, -0.2804359495639801, 0.0017184532480314374, 0.004084527958184481, 0.009660322219133377, -0.04819801077246666, 0.251201331615448, 0.09945708513259888, 0.004565989598631859, 1.0490272045135498, 0.14819693565368652, 0.06459497660398483, -0.05219130218029022, 0.2502426207065582, -0.11327489465475082, 0.03087136335670948, 1.0692805051803589, -0.19385682046413422, 0.06284527480602264, 0.007969509810209274]} +{"t": 3.6851, "q": [-0.35432910919189453, -0.012479785829782486, 0.006709339562803507, 0.6295797824859619, -0.31673768162727356, 0.01651603914797306, -0.3901646137237549, 0.0003323625132907182, -0.003468500915914774, 0.6010392308235168, -0.2804360091686249, 0.0017328952671959996, 0.004205055069178343, 0.009652731008827686, -0.04822274670004845, 0.24939173460006714, 0.09938517957925797, 0.004565989598631859, 1.0516517162322998, 0.14819693565368652, 0.06464291363954544, -0.050465572625398636, 0.24873259663581848, -0.11316704005002975, 0.03087136335670948, 1.0721447467803955, -0.19385682046413422, 0.06284527480602264, 0.007574030198156834]} +{"t": 3.7019, "q": [-0.3543461561203003, -0.012479785829782486, 0.006749515421688557, 0.6295797824859619, -0.31674590706825256, 0.016530506312847137, -0.3901646137237549, 0.00032384038786403835, -0.0034283252898603678, 0.6010733246803284, -0.2804360091686249, 0.0017328952671959996, 0.004218447022140026, 0.009645107202231884, -0.048197925090789795, 0.24794164299964905, 0.09944510459899902, 0.004542021546512842, 1.0540366172790527, 0.14813700318336487, 0.06471481919288635, -0.0493510402739048, 0.24734242260456085, -0.11307116597890854, 0.03087136335670948, 1.0745775699615479, -0.19384483993053436, 0.06284527480602264, 0.0070706927217543125]} +{"t": 3.7187, "q": [-0.3543461561203003, -0.012479785829782486, 0.006776299327611923, 0.629571259021759, -0.3167458772659302, 0.0165450070053339, -0.3901646137237549, 0.0003067961661145091, -0.0034015413839370012, 0.6010221838951111, -0.280431866645813, 0.001740089850500226, 0.004071136470884085, 0.009629900567233562, -0.04820775240659714, 0.24699488282203674, 0.09943311661481857, 0.004565989598631859, 1.0559180974960327, 0.1481010615825653, 0.06471481919288635, -0.048763811588287354, 0.24561668932437897, -0.11293933540582657, 0.03087136335670948, 1.0774418115615845, -0.19384483993053436, 0.06283329427242279, 0.006507434416562319]} +{"t": 3.7354, "q": [-0.3543461561203003, -0.012496830895543098, 0.006749515421688557, 0.629571259021759, -0.31675001978874207, 0.016537731513381004, -0.39018166065216064, 0.0003153182624373585, -0.0033747577108442783, 0.6010477542877197, -0.2804360091686249, 0.0017328952671959996, 0.004084527958184481, 0.009728779084980488, -0.04820334538817406, 0.24586836993694305, 0.09940914809703827, 0.004565989598631859, 1.058578610420227, 0.14816097915172577, 0.0647028312087059, -0.04820055514574051, 0.24402280151844025, -0.11274759471416473, 0.03087136335670948, 1.0797547101974487, -0.19382087886333466, 0.0628572627902031, 0.005932191386818886]} +{"t": 3.7522, "q": [-0.35432910919189453, -0.012513874098658562, 0.00676290737465024, 0.6295627355575562, -0.31674590706825256, 0.016530506312847137, -0.3901646137237549, 0.0003067961661145091, -0.003361365757882595, 0.6010392308235168, -0.2804360091686249, 0.0017328952671959996, 0.004017568659037352, 0.009713604114949703, -0.04826272651553154, 0.24482573568820953, 0.09936121106147766, 0.004565989598631859, 1.0616345405578613, 0.14817295968532562, 0.06466688215732574, -0.04790094867348671, 0.2430640608072281, -0.11273560672998428, 0.03087136335670948, 1.081504464149475, -0.19382087886333466, 0.06286924332380295, 0.005309011787176132]} +{"t": 3.7689, "q": [-0.35432910919189453, -0.012496830895543098, 0.006776299327611923, 0.6295627355575562, -0.31675827503204346, 0.016537681221961975, -0.39017313718795776, 0.0003153182624373585, -0.0033881496638059616, 0.601030707359314, -0.28044021129608154, 0.0017401606310158968, 0.004071136470884085, 0.009728803299367428, -0.04824298992753029, 0.24429842829704285, 0.09937319904565811, 0.004565989598631859, 1.0633363723754883, 0.14812502264976501, 0.06469085067510605, -0.047685232013463974, 0.24233302474021912, -0.11263973265886307, 0.030895331874489784, 1.0826908349990845, -0.19382087886333466, 0.0628572627902031, 0.004577973857522011]} +{"t": 3.7857, "q": [-0.3543376326560974, -0.012496830895543098, 0.00672273151576519, 0.6295627355575562, -0.31675413250923157, 0.01654495671391487, -0.39017313718795776, 0.0002897519152611494, -0.0033747577108442783, 0.6010221838951111, -0.2804360091686249, 0.0017328952671959996, 0.004071136470884085, 0.009744029492139816, -0.04826289415359497, 0.24417859315872192, 0.09936121106147766, 0.004542021546512842, 1.0638036727905273, 0.14818494021892548, 0.06463092565536499, -0.047577373683452606, 0.24204540252685547, -0.112531878054142, 0.030895331874489784, 1.0837934017181396, -0.19384483993053436, 0.06284527480602264, 0.0037270940374583006]} +{"t": 3.8024, "q": [-0.3543802499771118, -0.012479785829782486, 0.00676290737465024, 0.6295627355575562, -0.31675001978874207, 0.016537731513381004, -0.390156090259552, 0.0002897519152611494, -0.0034015413839370012, 0.6009880900382996, -0.28044021129608154, 0.0017401606310158968, 0.004138095770031214, 0.009683183394372463, -0.04827246814966202, 0.24391493201255798, 0.09939716756343842, 0.004565989598631859, 1.0643070936203003, 0.14817295968532562, 0.06461894512176514, -0.047517452389001846, 0.24185365438461304, -0.11231616139411926, 0.030895331874489784, 1.0849798917770386, -0.1938088834285736, 0.06284527480602264, 0.0028162929229438305]} +{"t": 3.8192, "q": [-0.3543802499771118, -0.012496830895543098, 0.0067896912805736065, 0.6295797824859619, -0.31675413250923157, 0.01654495671391487, -0.39018166065216064, 0.0002897519152611494, -0.0033881496638059616, 0.6009966135025024, -0.2804443836212158, 0.0017474079504609108, 0.004218447022140026, 0.009675580076873302, -0.04827738180756569, 0.243687242269516, 0.09937319904565811, 0.004565989598631859, 1.0645827054977417, 0.14817295968532562, 0.06459497660398483, -0.04748149961233139, 0.24175778031349182, -0.11198060214519501, 0.030907316133379936, 1.0860704183578491, -0.19382087886333466, 0.0628572627902031, 0.0020852552261203527]} +{"t": 3.8359, "q": [-0.3543802499771118, -0.012513874098658562, 0.006816474720835686, 0.6295627355575562, -0.31675827503204346, 0.016537681221961975, -0.39018166065216064, 0.00023861923546064645, -0.0033747577108442783, 0.6009966135025024, -0.28043606877326965, 0.001747355330735445, 0.004379149992018938, 0.009652754291892052, -0.04826239123940468, 0.24355541169643402, 0.0993252620100975, 0.004565989598631859, 1.0647025108337402, 0.14813700318336487, 0.06459497660398483, -0.04739760980010033, 0.24164991080760956, -0.11170496046543121, 0.03093128465116024, 1.0871250629425049, -0.19384483993053436, 0.06283329427242279, 0.0016058861510828137]} +{"t": 3.8527, "q": [-0.3543887734413147, -0.012522397562861443, 0.006776299327611923, 0.6295627355575562, -0.31675824522972107, 0.016552181914448738, -0.3901901841163635, 0.0002641855680849403, -0.0034015413839370012, 0.6009880900382996, -0.2804360091686249, 0.0017328952671959996, 0.004379149992018938, 0.009667960926890373, -0.048252563923597336, 0.24351945519447327, 0.09931327402591705, 0.004565989598631859, 1.0648224353790283, 0.14819693565368652, 0.06458298861980438, -0.04731371998786926, 0.24147015810012817, -0.11138138920068741, 0.030907316133379936, 1.0883114337921143, -0.1938088834285736, 0.06283329427242279, 0.001330249011516571]} +{"t": 3.8694, "q": [-0.3543802499771118, -0.012513874098658562, 0.006776299327611923, 0.629571259021759, -0.31675824522972107, 0.016552181914448738, -0.3901901841163635, 0.0002556634717620909, -0.0033881496638059616, 0.6009880900382996, -0.2804443836212158, 0.0017474079504609108, 0.0043523660860955715, 0.009705989621579647, -0.048247817903757095, 0.2434595376253128, 0.0993252620100975, 0.004565989598631859, 1.0649422407150269, 0.14818494021892548, 0.06458298861980438, -0.0472537986934185, 0.24125443398952484, -0.11098591238260269, 0.030919300392270088, 1.0896416902542114, -0.193760946393013, 0.06283329427242279, 0.0011744541116058826]} +{"t": 3.8863, "q": [-0.35437172651290894, -0.012522397562861443, 0.00676290737465024, 0.629571259021759, -0.31675824522972107, 0.016552181914448738, -0.39018166065216064, 0.00027270769351162016, -0.0033881496638059616, 0.6010051369667053, -0.2804443836212158, 0.0017474079504609108, 0.0042854067869484425, 0.00972879957407713, -0.04823308065533638, 0.24332770705223083, 0.09936121106147766, 0.004565989598631859, 1.0650501251220703, 0.14818494021892548, 0.06458298861980438, -0.0472298301756382, 0.24111062288284302, -0.11063836514949799, 0.030907316133379936, 1.0909360647201538, -0.1938088834285736, 0.06283329427242279, 0.0010785802733153105]} +{"t": 3.9031, "q": [-0.3543972969055176, -0.012513874098658562, 0.006776299327611923, 0.6295627355575562, -0.3167541027069092, 0.016559457406401634, -0.39017313718795776, 0.00024714134633541107, -0.0034149333368986845, 0.6009710431098938, -0.28044021129608154, 0.0017401606310158968, 0.0042854067869484425, 0.009721199981868267, -0.04824789986014366, 0.24314793944358826, 0.09936121106147766, 0.004565989598631859, 1.065241813659668, 0.14824487268924713, 0.06459497660398483, -0.04721784591674805, 0.24091887474060059, -0.11029082536697388, 0.03093128465116024, 1.0925538539886475, -0.19388079643249512, 0.06283329427242279, 0.0009587380336597562]} +{"t": 3.9198, "q": [-0.3543802499771118, -0.012513874098658562, 0.006776299327611923, 0.6295627355575562, -0.31675413250923157, 0.01654495671391487, -0.3901901841163635, 0.00027270769351162016, -0.0034015413839370012, 0.6010051369667053, -0.2804443836212158, 0.0017474079504609108, 0.004325582180172205, 0.009736406616866589, -0.04823807626962662, 0.24295619130134583, 0.09934923052787781, 0.004565989598631859, 1.0653376579284668, 0.14819693565368652, 0.06458298861980438, -0.047145940363407135, 0.24081102013587952, -0.10991931706666946, 0.030943268910050392, 1.0939559936523438, -0.19382087886333466, 0.0628572627902031, 0.0009227853151969612]} +{"t": 3.9366, "q": [-0.3543887734413147, -0.012522397562861443, 0.00676290737465024, 0.6295627355575562, -0.31675413250923157, 0.01654495671391487, -0.3901987075805664, 0.0002812298189383, -0.0034015413839370012, 0.6009966135025024, -0.2804485559463501, 0.0017546553863212466, 0.0042854067869484425, 0.00973640289157629, -0.04822816699743271, 0.2428603172302246, 0.0993252620100975, 0.004565989598631859, 1.0654815435409546, 0.14819693565368652, 0.06458298861980438, -0.04713395610451698, 0.24072712659835815, -0.10954780131578445, 0.030955253168940544, 1.0953822135925293, -0.19382087886333466, 0.06283329427242279, 0.000862864195369184]} +{"t": 3.9533, "q": [-0.3543887734413147, -0.012488308362662792, 0.0067896912805736065, 0.6295542120933533, -0.31675001978874207, 0.016537731513381004, -0.3901987075805664, 0.0002897519152611494, -0.0033881496638059616, 0.6010051369667053, -0.2804444432258606, 0.001761849969625473, 0.004272014833986759, 0.009728791192173958, -0.04822316765785217, 0.24272850155830383, 0.09931327402591705, 0.004554005805402994, 1.0655055046081543, 0.14818494021892548, 0.06459497660398483, -0.04710998758673668, 0.24057133495807648, -0.10914033651351929, 0.030919300392270088, 1.0972756147384644, -0.19382087886333466, 0.06282130628824234, 0.0008029430755414069]} +{"t": 3.9703, "q": [-0.3543887734413147, -0.012479785829782486, 0.00672273151576519, 0.6295542120933533, -0.31678307056427, 0.016494015231728554, -0.3902072310447693, 0.00027270769351162016, -0.0033881496638059616, 0.6009795665740967, -0.2804443836212158, 0.0017474079504609108, 0.004245230928063393, 0.00974400993436575, -0.048233162611722946, 0.24264460802078247, 0.0993252620100975, 0.004565989598631859, 1.0656253099441528, 0.14818494021892548, 0.06459497660398483, -0.04710998758673668, 0.24030768871307373, -0.10873287916183472, 0.030943268910050392, 1.0996125936508179, -0.19382087886333466, 0.06282130628824234, 0.0008149273344315588]} +{"t": 3.9871, "q": [-0.3543887734413147, -0.012479785829782486, 0.006695947609841824, 0.6295542120933533, -0.3167872428894043, 0.016472239047288895, -0.39021575450897217, 0.0002812298189383, -0.0034015413839370012, 0.6009795665740967, -0.28044846653938293, 0.0017257534200325608, 0.0043523660860955715, 0.009804868139326572, -0.048243410885334015, 0.24239294230937958, 0.09936121106147766, 0.004565989598631859, 1.065769076347351, 0.14814899861812592, 0.06459497660398483, -0.04706205427646637, 0.2401638776063919, -0.10814564675092697, 0.030943268910050392, 1.1023210287094116, -0.1937849223613739, 0.06280932575464249, 0.0008149273344315588]} +{"t": 4.0039, "q": [-0.3543972969055176, -0.012479785829782486, 0.006655772216618061, 0.629571259021759, -0.3167954385280609, 0.01648668944835663, -0.3902498185634613, 0.0002897519152611494, -0.0034149333368986845, 0.6009795665740967, -0.2804526388645172, 0.0017330008558928967, 0.0043523660860955715, 0.009751636534929276, -0.04826789349317551, 0.24224913120269775, 0.0993252620100975, 0.004565989598631859, 1.0660208463668823, 0.14819693565368652, 0.06461894512176514, -0.04707403853535652, 0.24012792110443115, -0.10749849677085876, 0.030979221686720848, 1.1043463945388794, -0.19382087886333466, 0.06283329427242279, 0.000850879994686693]} +{"t": 4.0206, "q": [-0.3544313907623291, -0.012488308362662792, 0.0066289883106946945, 0.6295542120933533, -0.3167954981327057, 0.01645767129957676, -0.3902924358844757, 0.00027270769351162016, -0.0034149333368986845, 0.6009795665740967, -0.2804568409919739, 0.0017402481753379107, 0.004272014833986759, 0.009713607840240002, -0.04827263578772545, 0.2421892136335373, 0.09933724254369736, 0.004565989598631859, 1.066152572631836, 0.14816097915172577, 0.06459497660398483, -0.04705007001757622, 0.24005602300167084, -0.10685135424137115, 0.030991205945611, 1.1062638759613037, -0.1937849223613739, 0.06280932575464249, 0.0008149273344315588]} +{"t": 4.0374, "q": [-0.3544228672981262, -0.012479785829782486, 0.006642380263656378, 0.6295371651649475, -0.3168037235736847, 0.016472121700644493, -0.3902924358844757, 0.0002812298189383, -0.0034149333368986845, 0.6009880900382996, -0.2804443836212158, 0.0017474079504609108, 0.004325582180172205, 0.009766831062734127, -0.04823824390769005, 0.24197348952293396, 0.09933724254369736, 0.004565989598631859, 1.0664043426513672, 0.14817295968532562, 0.06461894512176514, -0.04705007001757622, 0.24002006649971008, -0.10613229870796204, 0.031015174463391304, 1.1082532405853271, -0.1938088834285736, 0.06283329427242279, 0.0008149273344315588]} +{"t": 4.0541, "q": [-0.35445696115493774, -0.012462742626667023, 0.0066289883106946945, 0.6295456886291504, -0.3168037235736847, 0.016472121700644493, -0.390343576669693, 0.0002897519152611494, -0.0034015413839370012, 0.6010051369667053, -0.2804526388645172, 0.0017330008558928967, 0.004312190227210522, 0.009728826582431793, -0.04828263074159622, 0.24169784784317017, 0.09934923052787781, 0.004542021546512842, 1.0667638778686523, 0.14820891618728638, 0.06461894512176514, -0.04701411724090576, 0.23997212946414948, -0.10542523115873337, 0.03105112724006176, 1.110350489616394, -0.19379690289497375, 0.06284527480602264, 0.0008269115351140499]} +{"t": 4.0708, "q": [-0.3544910252094269, -0.012454220093786716, 0.0065620290115475655, 0.6295456886291504, -0.3168078362941742, 0.01647934690117836, -0.39045435190200806, 0.0002897519152611494, -0.0033747577108442783, 0.6009880900382996, -0.28045687079429626, 0.0017547081224620342, 0.004325582180172205, 0.009797264821827412, -0.048248324543237686, 0.24142222106456757, 0.09933724254369736, 0.004565989598631859, 1.0671473741531372, 0.14816097915172577, 0.06461894512176514, -0.04700213298201561, 0.2398642748594284, -0.10482601821422577, 0.031123032793402672, 1.1126394271850586, -0.1938328593969345, 0.06283329427242279, 0.000862864195369184]} +{"t": 4.0877, "q": [-0.3545336425304413, -0.012462742626667023, 0.006548637058585882, 0.6295456886291504, -0.3168119788169861, 0.016472071409225464, -0.39049696922302246, 0.00027270769351162016, -0.0033747577108442783, 0.6009880900382996, -0.28046101331710815, 0.0017474954947829247, 0.004365758039057255, 0.009782061912119389, -0.04826806113123894, 0.24097880721092224, 0.09933724254369736, 0.004565989598631859, 1.067530870437622, 0.14817295968532562, 0.06461894512176514, -0.046978164464235306, 0.23980434238910675, -0.10429871082305908, 0.031147001311182976, 1.114916443824768, -0.19384483993053436, 0.06282130628824234, 0.0008388957940042019]} +{"t": 4.1044, "q": [-0.35455068945884705, -0.012462742626667023, 0.0065620290115475655, 0.6295456886291504, -0.3168036937713623, 0.016486622393131256, -0.3905225396156311, 0.0002897519152611494, -0.003361365757882595, 0.6009880900382996, -0.28045687079429626, 0.0017547081224620342, 0.0043523660860955715, 0.009766851551830769, -0.04826797917485237, 0.24063125252723694, 0.0993252620100975, 0.004565989598631859, 1.0678184032440186, 0.14818494021892548, 0.06461894512176514, -0.046966180205345154, 0.23972046375274658, -0.10390323400497437, 0.031158985570073128, 1.116857886314392, -0.19382087886333466, 0.06282130628824234, 0.000898816913831979]} +{"t": 4.1212, "q": [-0.35459330677986145, -0.012462742626667023, 0.0065620290115475655, 0.6295542120933533, -0.3168078362941742, 0.01647934690117836, -0.3905566334724426, 0.00027270769351162016, -0.003347973804920912, 0.6009795665740967, -0.28045687079429626, 0.0017547081224620342, 0.004392541944980621, 0.00977444276213646, -0.048243243247270584, 0.24021181464195251, 0.0993252620100975, 0.004542021546512842, 1.0681660175323486, 0.14819693565368652, 0.06461894512176514, -0.046966180205345154, 0.23961259424686432, -0.10353171825408936, 0.03118295408785343, 1.119027018547058, -0.1938088834285736, 0.06280932575464249, 0.0009227853151969612]} +{"t": 4.1379, "q": [-0.35460183024406433, -0.012462742626667023, 0.006508461199700832, 0.6295371651649475, -0.3168160617351532, 0.016493797302246094, -0.39059925079345703, 0.00027270769351162016, -0.003321190131828189, 0.6009710431098938, -0.28045275807380676, 0.0017619027057662606, 0.004379149992018938, 0.009736429899930954, -0.04827771708369255, 0.23980434238910675, 0.09933724254369736, 0.004565989598631859, 1.0689330101013184, 0.14816097915172577, 0.06464291363954544, -0.046954195946455, 0.23930101096630096, -0.10318417847156525, 0.031194938346743584, 1.121651530265808, -0.1937849223613739, 0.06280932575464249, 0.0009946906939148903]} +{"t": 4.1547, "q": [-0.35464444756507874, -0.012471264228224754, 0.006508461199700832, 0.6295542120933533, -0.3168243169784546, 0.0164792463183403, -0.3907526433467865, 0.00027270769351162016, -0.0033077981788665056, 0.6009710431098938, -0.28046518564224243, 0.0017547429306432605, 0.004392541944980621, 0.009751648642122746, -0.048287712037563324, 0.2391452193260193, 0.09933724254369736, 0.004565989598631859, 1.0701193809509277, 0.14819693565368652, 0.06463092565536499, -0.04694221168756485, 0.23918116092681885, -0.10284861922264099, 0.031218906864523888, 1.1235690116882324, -0.19379690289497375, 0.06280932575464249, 0.0010785802733153105]} +{"t": 4.1714, "q": [-0.3546614646911621, -0.012454220093786716, 0.006481677293777466, 0.6295542120933533, -0.3168077766895294, 0.01650836504995823, -0.390718549489975, 0.00027270769351162016, -0.0032810145057737827, 0.6009710431098938, -0.28046101331710815, 0.0017474954947829247, 0.004325582180172205, 0.009766855277121067, -0.04827788844704628, 0.23862989246845245, 0.09933724254369736, 0.004565989598631859, 1.0712339878082275, 0.14820891618728638, 0.06461894512176514, -0.046906258910894394, 0.23908528685569763, -0.10241718590259552, 0.03124287538230419, 1.1249831914901733, -0.1938328593969345, 0.06277336925268173, 0.0011744541116058826]} +{"t": 4.1881, "q": [-0.35469555854797363, -0.012454220093786716, 0.006481677293777466, 0.6295371651649475, -0.3168077766895294, 0.01650836504995823, -0.390786737203598, 0.0002641855680849403, -0.0032676225528120995, 0.6009710431098938, -0.28045693039894104, 0.0017691501416265965, 0.0042854067869484425, 0.009736406616866589, -0.04823807626962662, 0.23828235268592834, 0.0993252620100975, 0.004565989598631859, 1.0718331336975098, 0.14819693565368652, 0.06461894512176514, -0.046906258910894394, 0.23904934525489807, -0.10193782299757004, 0.031326763331890106, 1.1257861852645874, -0.19379690289497375, 0.06277336925268173, 0.0011984225129708648]} +{"t": 4.2049, "q": [-0.35477226972579956, -0.012462742626667023, 0.006481677293777466, 0.6295371651649475, -0.31677889823913574, 0.016530290246009827, -0.3908378481864929, 0.00027270769351162016, -0.0032810145057737827, 0.6009710431098938, -0.28045275807380676, 0.0017619027057662606, 0.004231838975101709, 0.00974400993436575, -0.048233162611722946, 0.2380906045436859, 0.09934923052787781, 0.004565989598631859, 1.0721566677093506, 0.14818494021892548, 0.06460695713758469, -0.04689427465200424, 0.2389414757490158, -0.10149440169334412, 0.03129081055521965, 1.126660943031311, -0.193760946393013, 0.06278535723686218, 0.0012104067718610168]} +{"t": 4.2217, "q": [-0.35478079319000244, -0.012454220093786716, 0.006495069246739149, 0.6295371651649475, -0.31678301095962524, 0.016537513583898544, -0.39082932472229004, 0.00027270769351162016, -0.0032274469267576933, 0.6009710431098938, -0.28046107292175293, 0.0017619554419070482, 0.004218447022140026, 0.009705993346869946, -0.048257727175951004, 0.2379467934370041, 0.0993252620100975, 0.004542021546512842, 1.072324514389038, 0.14819693565368652, 0.06461894512176514, -0.04689427465200424, 0.23880966007709503, -0.10113487392663956, 0.03129081055521965, 1.1273441314697266, -0.1938088834285736, 0.06278535723686218, 0.0012104067718610168]} +{"t": 4.2385, "q": [-0.35478079319000244, -0.012471264228224754, 0.006495069246739149, 0.6295371651649475, -0.316791296005249, 0.01650846377015114, -0.3908548951148987, 0.00027270769351162016, -0.003240838646888733, 0.6009454727172852, -0.28046518564224243, 0.0017547429306432605, 0.004258622881025076, 0.00977444276213646, -0.048243243247270584, 0.23782694339752197, 0.09928930550813675, 0.004565989598631859, 1.072420358657837, 0.14819693565368652, 0.06461894512176514, -0.04688229039311409, 0.23868981003761292, -0.10093114525079727, 0.031266842037439346, 1.1278953552246094, -0.1937849223613739, 0.06274940073490143, 0.0011984225129708648]} +{"t": 4.2552, "q": [-0.35473817586898804, -0.012454220093786716, 0.006521853152662516, 0.6295286417007446, -0.31677061319351196, 0.01654483936727047, -0.3907952606678009, 0.0002812298189383, -0.003240838646888733, 0.6009454727172852, -0.28045687079429626, 0.0017547081224620342, 0.004245230928063393, 0.009713596664369106, -0.04825281351804733, 0.23773106932640076, 0.09934923052787781, 0.004565989598631859, 1.0726361274719238, 0.14820891618728638, 0.06460695713758469, -0.04688229039311409, 0.23848608136177063, -0.10093114525079727, 0.0313027948141098, 1.1283388137817383, -0.1937849223613739, 0.06278535723686218, 0.0012104067718610168]} +{"t": 4.2721, "q": [-0.35472965240478516, -0.012471264228224754, 0.0065620290115475655, 0.6295542120933533, -0.31677472591400146, 0.016552064567804337, -0.3907611668109894, 0.0002556634717620909, -0.0032810145057737827, 0.6009710431098938, -0.28045275807380676, 0.0017619027057662606, 0.004272014833986759, 0.009736406616866589, -0.04823807626962662, 0.23765917122364044, 0.0993252620100975, 0.004565989598631859, 1.0728398561477661, 0.14819693565368652, 0.06463092565536499, -0.04688229039311409, 0.2382943332195282, -0.10093114525079727, 0.031266842037439346, 1.1286983489990234, -0.1938088834285736, 0.06277336925268173, 0.0012104067718610168]} +{"t": 4.2891, "q": [-0.3547552227973938, -0.012471264228224754, 0.0065620290115475655, 0.6295542120933533, -0.31677061319351196, 0.01654483936727047, -0.39073559641838074, 0.0002641855680849403, -0.0033077981788665056, 0.6009454727172852, -0.28045275807380676, 0.0017619027057662606, 0.004312190227210522, 0.009713592939078808, -0.048242904245853424, 0.23756329715251923, 0.0993252620100975, 0.004565989598631859, 1.072935700416565, 0.14819693565368652, 0.06460695713758469, -0.04687030613422394, 0.2380906045436859, -0.10091915726661682, 0.031266842037439346, 1.1289619207382202, -0.19382087886333466, 0.06278535723686218, 0.0012104067718610168]} +{"t": 4.3058, "q": [-0.3547552227973938, -0.012488308362662792, 0.006588812451809645, 0.6295542120933533, -0.31677061319351196, 0.01654483936727047, -0.3907441198825836, 0.00023861923546064645, -0.0032944062259048223, 0.6009625196456909, -0.2804443836212158, 0.0017474079504609108, 0.004298798739910126, 0.009736406616866589, -0.04823807626962662, 0.23755131661891937, 0.09936121106147766, 0.004565989598631859, 1.073103427886963, 0.14820891618728638, 0.06460695713758469, -0.046846337616443634, 0.23789885640144348, -0.10090717673301697, 0.031266842037439346, 1.1292256116867065, -0.1938088834285736, 0.06278535723686218, 0.0011984225129708648]} +{"t": 4.3225, "q": [-0.35472965240478516, -0.012479785829782486, 0.006642380263656378, 0.6295542120933533, -0.31677061319351196, 0.01654483936727047, -0.3907441198825836, 0.00024714134633541107, -0.0032944062259048223, 0.6009454727172852, -0.280452698469162, 0.0017474606866016984, 0.004312190227210522, 0.00975161325186491, -0.048228248953819275, 0.23752734065055847, 0.0993012934923172, 0.004554005805402994, 1.0732712745666504, 0.14813700318336487, 0.06463092565536499, -0.04682236909866333, 0.2377670258283615, -0.10093114525079727, 0.03123089112341404, 1.1293214559555054, -0.19385682046413422, 0.06279733777046204, 0.0011984225129708648]} +{"t": 4.3393, "q": [-0.35473817586898804, -0.012488308362662792, 0.0066289883106946945, 0.6295542120933533, -0.31677886843681335, 0.01654478907585144, -0.39073559641838074, 0.0002641855680849403, -0.0032944062259048223, 0.600953996181488, -0.2804484963417053, 0.0017402133671566844, 0.004312190227210522, 0.009744006209075451, -0.04822325333952904, 0.23753932118415833, 0.09925335645675659, 0.004565989598631859, 1.073618769645691, 0.14817295968532562, 0.06460695713758469, -0.046786416321992874, 0.23770710825920105, -0.10091915726661682, 0.03124287538230419, 1.1294772624969482, -0.19382087886333466, 0.06277336925268173, 0.0011984225129708648]} +{"t": 4.356, "q": [-0.3547040820121765, -0.012479785829782486, 0.006588812451809645, 0.6295542120933533, -0.31677472591400146, 0.016552064567804337, -0.390718549489975, 0.0002641855680849403, -0.003347973804920912, 0.6009625196456909, -0.28044432401657104, 0.0017329659312963486, 0.004312190227210522, 0.009675567969679832, -0.04825755953788757, 0.23755131661891937, 0.09915748238563538, 0.004565989598631859, 1.0739184617996216, 0.14817295968532562, 0.06454703956842422, -0.04675046354532242, 0.23757527768611908, -0.10090717673301697, 0.0312788262963295, 1.1296210289001465, -0.19382087886333466, 0.06277336925268173, 0.0012104067718610168]} +{"t": 4.3727, "q": [-0.3547040820121765, -0.012471264228224754, 0.006615596357733011, 0.6295456886291504, -0.31677061319351196, 0.01654483936727047, -0.3907100260257721, 0.00027270769351162016, -0.003347973804920912, 0.6009795665740967, -0.2804360091686249, 0.0017328952671959996, 0.004312190227210522, 0.009698390029370785, -0.048262640833854675, 0.23753932118415833, 0.09907358884811401, 0.004565989598631859, 1.0743019580841064, 0.14812502264976501, 0.06457100808620453, -0.04670252650976181, 0.2374434620141983, -0.10091915726661682, 0.0312788262963295, 1.129788875579834, -0.19385682046413422, 0.06277336925268173, 0.0012223910307511687]} +{"t": 4.3895, "q": [-0.3547040820121765, -0.01250535249710083, 0.006642380263656378, 0.6295627355575562, -0.31676241755485535, 0.016530388966202736, -0.3906674087047577, 0.0002556634717620909, -0.0034015413839370012, 0.6009966135025024, -0.28044021129608154, 0.0017401606310158968, 0.004325582180172205, 0.009759227745234966, -0.04824315756559372, 0.23753932118415833, 0.0989537462592125, 0.004565989598631859, 1.074661374092102, 0.14812502264976501, 0.06457100808620453, -0.04664260521531105, 0.23733559250831604, -0.10093114525079727, 0.0312788262963295, 1.130088448524475, -0.19386881589889526, 0.06278535723686218, 0.0012223910307511687]} +{"t": 4.4062, "q": [-0.35468703508377075, -0.012488308362662792, 0.0066289883106946945, 0.6295542120933533, -0.3167871832847595, 0.01650124043226242, -0.39065036177635193, 0.00027270769351162016, -0.0034015413839370012, 0.6010221838951111, -0.2804443836212158, 0.0017474079504609108, 0.0043523660860955715, 0.009812463074922562, -0.048228584229946136, 0.23757527768611908, 0.09890580922365189, 0.004565989598631859, 1.0749250650405884, 0.14816097915172577, 0.06455902010202408, -0.046618636697530746, 0.2371198832988739, -0.10093114525079727, 0.031254857778549194, 1.1304360628128052, -0.1937849223613739, 0.06278535723686218, 0.0012223910307511687]} +{"t": 4.423, "q": [-0.354669988155365, -0.012479785829782486, 0.006602204404771328, 0.6295456886291504, -0.3167954385280609, 0.01648668944835663, -0.39063331484794617, 0.00027270769351162016, -0.003441717242822051, 0.6010136604309082, -0.28044021129608154, 0.0017401606310158968, 0.0043523660860955715, 0.009721231646835804, -0.0482974573969841, 0.23758725821971893, 0.09882192313671112, 0.004565989598631859, 1.0750808715820312, 0.14816097915172577, 0.06454703956842422, -0.04659466817975044, 0.23683226108551025, -0.10093114525079727, 0.0312788262963295, 1.130927324295044, -0.19385682046413422, 0.06278535723686218, 0.0012223910307511687]} +{"t": 4.4397, "q": [-0.3546614646911621, -0.012471264228224754, 0.006588812451809645, 0.6295542120933533, -0.3167872428894043, 0.016472239047288895, -0.39063331484794617, 0.00027270769351162016, -0.0034551091957837343, 0.6010221838951111, -0.2804443836212158, 0.0017474079504609108, 0.004338974133133888, 0.009789661504328251, -0.04825323820114136, 0.23758725821971893, 0.09883390367031097, 0.004565989598631859, 1.07517671585083, 0.14812502264976501, 0.06455902010202408, -0.046546731144189835, 0.2361970990896225, -0.10093114525079727, 0.03124287538230419, 1.1320778131484985, -0.1938328593969345, 0.06278535723686218, 0.0012223910307511687]} +{"t": 4.4565, "q": [-0.3546614646911621, -0.012462742626667023, 0.006575420964509249, 0.6295542120933533, -0.3167954385280609, 0.01648668944835663, -0.3906247913837433, 0.0002812298189383, -0.0034551091957837343, 0.6010051369667053, -0.28044021129608154, 0.0017401606310158968, 0.004312190227210522, 0.009759251959621906, -0.04828279837965965, 0.23757527768611908, 0.09877398610115051, 0.004565989598631859, 1.0753206014633179, 0.14814899861812592, 0.06453505158424377, -0.04653474688529968, 0.23540613055229187, -0.10094312578439713, 0.031206922605633736, 1.13344407081604, -0.19382087886333466, 0.06278535723686218, 0.0012223910307511687]} +{"t": 4.4735, "q": [-0.3546614646911621, -0.012454220093786716, 0.0065620290115475655, 0.6295542120933533, -0.3168037235736847, 0.016472121700644493, -0.39064183831214905, 0.0002897519152611494, -0.003441717242822051, 0.601030707359314, -0.2804401218891144, 0.0017257005674764514, 0.004205055069178343, 0.009766886942088604, -0.04832744225859642, 0.23757527768611908, 0.0987020805478096, 0.004565989598631859, 1.0754164457321167, 0.14813700318336487, 0.06453505158424377, -0.04647482559084892, 0.2344474047422409, -0.10093114525079727, 0.031158985570073128, 1.1352057456970215, -0.19382087886333466, 0.06277336925268173, 0.0012223910307511687]} +{"t": 4.4903, "q": [-0.3546614646911621, -0.012462742626667023, 0.006521853152662516, 0.6295542120933533, -0.3167954981327057, 0.016472171992063522, -0.3906674087047577, 0.0002812298189383, -0.0034149333368986845, 0.6010221838951111, -0.2804443836212158, 0.0017474079504609108, 0.004205055069178343, 0.009842931292951107, -0.04829813167452812, 0.23756329715251923, 0.09866612404584885, 0.004565989598631859, 1.0755243301391602, 0.14812502264976501, 0.06453505158424377, -0.04645085707306862, 0.23339278995990753, -0.10095511376857758, 0.03117096982896328, 1.137099266052246, -0.19382087886333466, 0.06278535723686218, 0.0012223910307511687]} +{"t": 4.5071, "q": [-0.35465294122695923, -0.01244569756090641, 0.006535245105624199, 0.6295542120933533, -0.3167996108531952, 0.016464896500110626, -0.3907100260257721, 0.00027270769351162016, -0.0034015413839370012, 0.6010136604309082, -0.2804443836212158, 0.0017474079504609108, 0.004205055069178343, 0.009835331700742245, -0.0483129546046257, 0.23755131661891937, 0.09864215552806854, 0.004565989598631859, 1.075632095336914, 0.14812502264976501, 0.06453505158424377, -0.04637895151972771, 0.232350155711174, -0.10095511376857758, 0.031147001311182976, 1.1386691331863403, -0.19382087886333466, 0.06277336925268173, 0.0012223910307511687]} +{"t": 4.5239, "q": [-0.3546614646911621, -0.012454220093786716, 0.00646828580647707, 0.6295542120933533, -0.3168119788169861, 0.016472071409225464, -0.390718549489975, 0.0002641855680849403, -0.0033747577108442783, 0.601030707359314, -0.2804484963417053, 0.0017402133671566844, 0.004151487722992897, 0.009820133447647095, -0.04833269119262695, 0.23749138414859772, 0.09861818701028824, 0.004577973857522011, 1.0757520198822021, 0.14814899861812592, 0.06453505158424377, -0.04634299874305725, 0.23121166229248047, -0.10096709430217743, 0.031147001311182976, 1.1408143043518066, -0.1937849223613739, 0.06276138871908188, 0.0012223910307511687]} +{"t": 4.5406, "q": [-0.3546614646911621, -0.012471264228224754, 0.00646828580647707, 0.6295456886291504, -0.3168078660964966, 0.016464846208691597, -0.39073559641838074, 0.00027270769351162016, -0.0033881496638059616, 0.6010136604309082, -0.2804526388645172, 0.0017330008558928967, 0.004218447022140026, 0.009835327975451946, -0.04830304533243179, 0.23749138414859772, 0.09864215552806854, 0.004577973857522011, 1.0759317874908447, 0.14813700318336487, 0.06453505158424377, -0.04629506170749664, 0.22967767715454102, -0.10097908228635788, 0.031135017052292824, 1.1438703536987305, -0.1938088834285736, 0.06277336925268173, 0.0012343751732259989]} +{"t": 4.5573, "q": [-0.35468703508377075, -0.012471264228224754, 0.0064013260416686535, 0.6295542120933533, -0.3168078362941742, 0.01647934690117836, -0.39076969027519226, 0.0002641855680849403, -0.0032810145057737827, 0.6010136604309082, -0.28044432401657104, 0.0017329659312963486, 0.004205055069178343, 0.009858126752078533, -0.048268482089042664, 0.23738352954387665, 0.09866612404584885, 0.004577973857522011, 1.0761115550994873, 0.1481010615825653, 0.06449910253286362, -0.046307045966386795, 0.22809575498104095, -0.10105098783969879, 0.031147001311182976, 1.1460394859313965, -0.19382087886333466, 0.06278535723686218, 0.001270327833481133]} +{"t": 4.574, "q": [-0.35468703508377075, -0.012488308362662792, 0.006414717994630337, 0.6295542120933533, -0.3168202042579651, 0.016472022980451584, -0.390786737203598, 0.00023861923546064645, -0.003254230599850416, 0.6010136604309082, -0.2804444432258606, 0.001761849969625473, 0.004178271628916264, 0.009804903529584408, -0.048302873969078064, 0.23731163144111633, 0.0987020805478096, 0.004565989598631859, 1.0763392448425293, 0.14804112911224365, 0.06454703956842422, -0.046307045966386795, 0.22629812359809875, -0.1010989248752594, 0.031147001311182976, 1.147933006286621, -0.19385682046413422, 0.06280932575464249, 0.001306280493736267]} +{"t": 4.5908, "q": [-0.3547211289405823, -0.012488308362662792, 0.0064013260416686535, 0.6295542120933533, -0.3168160915374756, 0.01647929660975933, -0.3908122777938843, 0.0002300971100339666, -0.0032274469267576933, 0.6009966135025024, -0.2804485559463501, 0.0017546553863212466, 0.004151487722992897, 0.00982009805738926, -0.048273228108882904, 0.23723971843719482, 0.09873802959918976, 0.004565989598631859, 1.0767946243286133, 0.1480770856142044, 0.06452307105064392, -0.04625910893082619, 0.22489596903324127, -0.10113487392663956, 0.031194938346743584, 1.1497066020965576, -0.19382087886333466, 0.06280932575464249, 0.001318264752626419]} +{"t": 4.6075, "q": [-0.35472965240478516, -0.012496830895543098, 0.006414717994630337, 0.6295542120933533, -0.3168202042579651, 0.016486521810293198, -0.3908378481864929, 0.0002300971100339666, -0.0032006630208343267, 0.6009710431098938, -0.28045275807380676, 0.0017619027057662606, 0.004205055069178343, 0.009782073087990284, -0.04828788340091705, 0.23698805272579193, 0.09873802959918976, 0.004565989598631859, 1.0776455402374268, 0.14812502264976501, 0.06449910253286362, -0.04625910893082619, 0.22332604229450226, -0.10119479894638062, 0.031194938346743584, 1.1515642404556274, -0.1937849223613739, 0.06280932575464249, 0.001330249011516571]} +{"t": 4.6242, "q": [-0.35473817586898804, -0.012496830895543098, 0.006441501900553703, 0.6295456886291504, -0.3168366551399231, 0.016500940546393394, -0.3908463716506958, 0.0002300971100339666, -0.00321405497379601, 0.6009454727172852, -0.28045275807380676, 0.0017619027057662606, 0.0041916631162166595, 0.009804883040487766, -0.04827314242720604, 0.23646074533462524, 0.09875001758337021, 0.004577973857522011, 1.0787720680236816, 0.14806510508060455, 0.06448711454868317, -0.04622315615415573, 0.22215157747268677, -0.10121876746416092, 0.03117096982896328, 1.1532540321350098, -0.19385682046413422, 0.06279733777046204, 0.001318264752626419]} +{"t": 4.641, "q": [-0.3547466993331909, -0.012496830895543098, 0.0064013260416686535, 0.6295371651649475, -0.3168448805809021, 0.016515390947461128, -0.39087194204330444, 0.0002300971100339666, -0.003173879347741604, 0.6009369492530823, -0.28045693039894104, 0.0017691501416265965, 0.004138095770031214, 0.009751668199896812, -0.04831744730472565, 0.23574168980121613, 0.09877398610115051, 0.004613926634192467, 1.0799105167388916, 0.14806510508060455, 0.06445116549730301, -0.04619918763637543, 0.2211688756942749, -0.10125471651554108, 0.031206922605633736, 1.1551954746246338, -0.19384483993053436, 0.06278535723686218, 0.0013542174128815532]} +{"t": 4.6577, "q": [-0.3547978401184082, -0.012488308362662792, 0.006414717994630337, 0.6295371651649475, -0.3168325126171112, 0.016522714868187904, -0.3908804655075073, 0.0002300971100339666, -0.0032006630208343267, 0.6009028553962708, -0.28045693039894104, 0.0017691501416265965, 0.004245230928063393, 0.009782073087990284, -0.04828788340091705, 0.23489081859588623, 0.09877398610115051, 0.004601942375302315, 1.0809770822525024, 0.14806510508060455, 0.06445116549730301, -0.04617521911859512, 0.22047379612922668, -0.10125471651554108, 0.031158985570073128, 1.1569331884384155, -0.19384483993053436, 0.06276138871908188, 0.0013542174128815532]} +{"t": 4.6745, "q": [-0.35481488704681396, -0.012488308362662792, 0.0064013260416686535, 0.6295201182365417, -0.316849023103714, 0.016508115455508232, -0.3908804655075073, 0.00022157499915920198, -0.003173879347741604, 0.6008772850036621, -0.2804611027240753, 0.0017763974610716105, 0.004151487722992897, 0.009766866452991962, -0.0482977069914341, 0.23368041217327118, 0.09873802959918976, 0.004625910893082619, 1.0823073387145996, 0.14813700318336487, 0.0644271969795227, -0.04610331356525421, 0.21980267763137817, -0.10130265355110168, 0.031147001311182976, 1.158646821975708, -0.19382087886333466, 0.06276138871908188, 0.0013662016717717052]} +{"t": 4.6912, "q": [-0.35486599802970886, -0.012488308362662792, 0.006441501900553703, 0.6295201182365417, -0.3168366253376007, 0.01652994006872177, -0.39096570014953613, 0.00023861923546064645, -0.0031872710678726435, 0.6008602976799011, -0.2804652452468872, 0.0017692027613520622, 0.0041916631162166595, 0.009728822857141495, -0.04827272146940231, 0.23213444650173187, 0.0987020805478096, 0.004613926634192467, 1.0836975574493408, 0.14814899861812592, 0.06445116549730301, -0.04609132930636406, 0.21933528780937195, -0.10135059058666229, 0.03117096982896328, 1.1599291563034058, -0.19384483993053436, 0.06277336925268173, 0.0013901700731366873]} +{"t": 4.708, "q": [-0.35495123267173767, -0.012513874098658562, 0.006454893853515387, 0.6295201182365417, -0.3168366253376007, 0.01652994006872177, -0.3909401297569275, 0.0002300971100339666, -0.0032810145057737827, 0.6008432507514954, -0.2804735600948334, 0.0017692375695332885, 0.0044996771030128, 0.009637512266635895, -0.04821275174617767, 0.23092404007911682, 0.0986781120300293, 0.004601942375302315, 1.0845004320144653, 0.14817295968532562, 0.06446314603090286, -0.046055376529693604, 0.21873608231544495, -0.10141051560640335, 0.03118295408785343, 1.161391258239746, -0.1938328593969345, 0.06276138871908188, 0.0014021543320268393]} +{"t": 4.7247, "q": [-0.35511314868927, -0.01250535249710083, 0.006481677293777466, 0.6295371651649475, -0.3168325126171112, 0.016522714868187904, -0.39096570014953613, 0.00020453077740967274, -0.0033747577108442783, 0.6008432507514954, -0.2804693877696991, 0.0017619902500882745, 0.004539852496236563, 0.009576639160513878, -0.04817277193069458, 0.2301570475101471, 0.0987020805478096, 0.004613926634192467, 1.0849199295043945, 0.14818494021892548, 0.06449910253286362, -0.04604339227080345, 0.21756163239479065, -0.10143448412418365, 0.031147001311182976, 1.1635724306106567, -0.1938088834285736, 0.06276138871908188, 0.0014021543320268393]} +{"t": 4.7415, "q": [-0.3551216721534729, -0.01250535249710083, 0.006495069246739149, 0.6295286417007446, -0.3168325126171112, 0.016522714868187904, -0.39096570014953613, 0.0002300971100339666, -0.0034015413839370012, 0.6008347272872925, -0.2804652452468872, 0.0017692027613520622, 0.0045264605432748795, 0.009492943063378334, -0.048127710819244385, 0.22964172065258026, 0.09873802959918976, 0.004577973857522011, 1.085327386856079, 0.14817295968532562, 0.06447513401508331, -0.04597148671746254, 0.21633923053741455, -0.10145845264196396, 0.03118295408785343, 1.1656336784362793, -0.19384483993053436, 0.06276138871908188, 0.0014021543320268393]} +{"t": 4.7583, "q": [-0.35511314868927, -0.012479785829782486, 0.006508461199700832, 0.6295286417007446, -0.31680357456207275, 0.01657365821301937, -0.39096570014953613, 0.00024714134633541107, -0.0034283252898603678, 0.6008176803588867, -0.2804611027240753, 0.0017763974610716105, 0.004472893197089434, 0.009492931887507439, -0.04810788854956627, 0.22917434573173523, 0.09871406108140945, 0.004613926634192467, 1.0856629610061646, 0.1481010615825653, 0.06452307105064392, -0.045935533940792084, 0.21533255279064178, -0.10149440169334412, 0.031158985570073128, 1.1668680906295776, -0.19384483993053436, 0.06277336925268173, 0.0013901700731366873]} +{"t": 4.775, "q": [-0.3550875782966614, -0.012479785829782486, 0.006535245105624199, 0.6295371651649475, -0.31679534912109375, 0.016559207811951637, -0.3909316062927246, 0.00023861923546064645, -0.0034283252898603678, 0.6008432507514954, -0.2804693877696991, 0.0017619902500882745, 0.004446109291166067, 0.009462506510317326, -0.04810772091150284, 0.22867099940776825, 0.0986781120300293, 0.004589958116412163, 1.0860224962234497, 0.14813700318336487, 0.06454703956842422, -0.045887596905231476, 0.21451763808727264, -0.10155432671308517, 0.03117096982896328, 1.1678388118743896, -0.19382087886333466, 0.06278535723686218, 0.0013901700731366873]} +{"t": 4.7918, "q": [-0.3550790548324585, -0.012471264228224754, 0.0065620290115475655, 0.6295286417007446, -0.31679946184158325, 0.016566433012485504, -0.39095717668533325, 0.0002300971100339666, -0.003441717242822051, 0.6008432507514954, -0.28048181533813477, 0.0017548482865095139, 0.004446109291166067, 0.009485302492976189, -0.0480632558465004, 0.2280118763446808, 0.09865414351224899, 0.004565989598631859, 1.0865018367767334, 0.14813700318336487, 0.06460695713758469, -0.04580370709300041, 0.21373865008354187, -0.10166218131780624, 0.031158985570073128, 1.168629765510559, -0.1938088834285736, 0.06278535723686218, 0.0013781859306618571]} +{"t": 4.8086, "q": [-0.3550790548324585, -0.012462742626667023, 0.0065620290115475655, 0.6295115947723389, -0.31679534912109375, 0.016559207811951637, -0.39095717668533325, 0.0002641855680849403, -0.0034283252898603678, 0.6008517742156982, -0.2804776430130005, 0.0017476009670644999, 0.004392541944980621, 0.009454889222979546, -0.04808291047811508, 0.22731678187847137, 0.09864215552806854, 0.004565989598631859, 1.0868374109268188, 0.14826883375644684, 0.06461894512176514, -0.04577973857522011, 0.2131034880876541, -0.1016741693019867, 0.03118295408785343, 1.1689653396606445, -0.1938088834285736, 0.06278535723686218, 0.0014021543320268393]} +{"t": 4.8253, "q": [-0.3550790548324585, -0.01244569756090641, 0.006548637058585882, 0.6295201182365417, -0.31679123640060425, 0.01655198261141777, -0.39094865322113037, 0.00029827404068782926, -0.0034952848218381405, 0.6008347272872925, -0.2804817855358124, 0.0017404062673449516, 0.004325582180172205, 0.009454862214624882, -0.04803339019417763, 0.22642995417118073, 0.09871406108140945, 0.004565989598631859, 1.0872448682785034, 0.14823287725448608, 0.06466688215732574, -0.0457318052649498, 0.21254023909568787, -0.10173408687114716, 0.03117096982896328, 1.1690012216567993, -0.1937849223613739, 0.06282130628824234, 0.0013781859306618571]} +{"t": 4.8421, "q": [-0.35509610176086426, -0.012428653426468372, 0.0065620290115475655, 0.6295201182365417, -0.31679534912109375, 0.016559207811951637, -0.39094865322113037, 0.00029827404068782926, -0.003481892868876457, 0.6008517742156982, -0.28049004077911377, 0.001726016984321177, 0.004312190227210522, 0.00949290581047535, -0.048058345913887024, 0.22542327642440796, 0.0987020805478096, 0.004542021546512842, 1.0877960920333862, 0.14823287725448608, 0.0646788626909256, -0.04571982100605965, 0.21200095117092133, -0.10177004337310791, 0.03118295408785343, 1.1690491437911987, -0.19382087886333466, 0.06280932575464249, 0.0013901700731366873]} +{"t": 4.8588, "q": [-0.3550705313682556, -0.012437175959348679, 0.0065620290115475655, 0.629503071308136, -0.3168283998966217, 0.016515489667654037, -0.39092308282852173, 0.0002897519152611494, -0.003468500915914774, 0.600868821144104, -0.28049421310424805, 0.0017332644201815128, 0.0042854067869484425, 0.009470097720623016, -0.04808298498392105, 0.22404509782791138, 0.09879795461893082, 0.004506068769842386, 1.0888867378234863, 0.14826883375644684, 0.0647267997264862, -0.04571982100605965, 0.2114856243133545, -0.10186591744422913, 0.031206922605633736, 1.1691211462020874, -0.1938328593969345, 0.06283329427242279, 0.0013901700731366873]} +{"t": 4.8756, "q": [-0.35505348443984985, -0.012420130893588066, 0.006602204404771328, 0.6295201182365417, -0.3168201446533203, 0.016515539959073067, -0.39092308282852173, 0.00029827404068782926, -0.0034283252898603678, 0.600868821144104, -0.28049421310424805, 0.0017332644201815128, 0.004312190227210522, 0.009508130140602589, -0.04808814823627472, 0.22213959693908691, 0.09879795461893082, 0.004446147475391626, 1.0899893045425415, 0.14825685322284698, 0.06490656733512878, -0.0457318052649498, 0.21062275767326355, -0.10196179151535034, 0.031254857778549194, 1.1691690683364868, -0.19384483993053436, 0.06283329427242279, 0.0013901700731366873]} +{"t": 4.8923, "q": [-0.35506200790405273, -0.012462742626667023, 0.0066289883106946945, 0.6295201182365417, -0.3168283998966217, 0.016515489667654037, -0.39092308282852173, 0.0003067961661145091, -0.0033747577108442783, 0.600868821144104, -0.28049421310424805, 0.0017332644201815128, 0.0043523660860955715, 0.009523320943117142, -0.04804859310388565, 0.21915552020072937, 0.09879795461893082, 0.004422178957611322, 1.0914992094039917, 0.14829280972480774, 0.06506235897541046, -0.04577973857522011, 0.20944830775260925, -0.1020217090845108, 0.03123089112341404, 1.1692169904708862, -0.19382087886333466, 0.06286924332380295, 0.0014261228498071432]} +{"t": 4.9091, "q": [-0.355044960975647, -0.012454220093786716, 0.006602204404771328, 0.6295201182365417, -0.3168366551399231, 0.016515439376235008, -0.39092308282852173, 0.0002641855680849403, -0.003361365757882595, 0.600868821144104, -0.28049421310424805, 0.0017332644201815128, 0.004338974133133888, 0.00949290581047535, -0.048058345913887024, 0.2157040685415268, 0.09885787218809128, 0.00436225812882185, 1.0929133892059326, 0.1483047902584076, 0.06539791822433472, -0.04577973857522011, 0.20775853097438812, -0.10221345722675323, 0.031314779072999954, 1.169240951538086, -0.19384483993053436, 0.06294114887714386, 0.0014021543320268393]} +{"t": 4.9258, "q": [-0.35506200790405273, -0.012462742626667023, 0.006535245105624199, 0.6295201182365417, -0.316849023103714, 0.016508115455508232, -0.3909316062927246, 0.0002641855680849403, -0.003321190131828189, 0.6008517742156982, -0.28048595786094666, 0.0017476537032052875, 0.004312190227210522, 0.009462474845349789, -0.04804828390479088, 0.21196499466896057, 0.09885787218809128, 0.00430233683437109, 1.0940039157867432, 0.1483527272939682, 0.06572148948907852, -0.04577973857522011, 0.20511001348495483, -0.10265687108039856, 0.03129081055521965, 1.1692169904708862, -0.19385682046413422, 0.06309694796800613, 0.0014261228498071432]} +{"t": 4.9425, "q": [-0.35509610176086426, -0.012479785829782486, 0.006535245105624199, 0.6295371651649475, -0.316849023103714, 0.016508115455508232, -0.3909316062927246, 0.00027270769351162016, -0.0032810145057737827, 0.6008432507514954, -0.28049007058143616, 0.0017404590034857392, 0.0042854067869484425, 0.009477688930928707, -0.048048362135887146, 0.2084655910730362, 0.09884589165449142, 0.00430233683437109, 1.0949627161026, 0.14836470782756805, 0.06600911170244217, -0.04579172283411026, 0.2024495154619217, -0.10302838683128357, 0.03133874759078026, 1.169180989265442, -0.19390475749969482, 0.06326472759246826, 0.0014381069922819734]} +{"t": 4.9593, "q": [-0.3550875782966614, -0.012462742626667023, 0.006535245105624199, 0.6295201182365417, -0.3168572783470154, 0.01649356633424759, -0.39092308282852173, 0.00023861923546064645, -0.0032810145057737827, 0.600800633430481, -0.28050675988197327, 0.0017550245393067598, 0.004245230928063393, 0.009530951268970966, -0.04809323325753212, 0.20533771812915802, 0.09891779720783234, 0.004290352575480938, 1.0952743291854858, 0.1483527272939682, 0.06604506820440292, -0.04579172283411026, 0.19951337575912476, -0.10359164327383041, 0.03135073184967041, 1.1690970659255981, -0.19392873346805573, 0.06362425535917282, 0.0014500912511721253]} +{"t": 4.976, "q": [-0.3550194203853607, -0.012488308362662792, 0.0065620290115475655, 0.629503071308136, -0.3168572187423706, 0.016551584005355835, -0.3908378481864929, 0.0002556634717620909, -0.0033077981788665056, 0.6007665395736694, -0.28058210015296936, 0.0018855130765587091, 0.0042854067869484425, 0.009629885666072369, -0.04817802086472511, 0.20218586921691895, 0.09896573424339294, 0.004266384057700634, 1.095513939857483, 0.14834074676036835, 0.06605704873800278, -0.04579172283411026, 0.1970805823802948, -0.10419085621833801, 0.03133874759078026, 1.1690372228622437, -0.19397667050361633, 0.06412758678197861, 0.0014740596525371075]} +{"t": 4.9929, "q": [-0.3550279140472412, -0.012522397562861443, 0.006508461199700832, 0.629503071308136, -0.3168613314628601, 0.01654430851340294, -0.39082080125808716, 0.0002641855680849403, -0.003347973804920912, 0.6007153987884521, -0.2806820869445801, 0.0019439319148659706, 0.004245230928063393, 0.009645107202231884, -0.048197925090789795, 0.1985306739807129, 0.09909755736589432, 0.004278368316590786, 1.095741629600525, 0.14842462539672852, 0.06603308022022247, -0.04579172283411026, 0.1943122297525406, -0.10440657287836075, 0.03133874759078026, 1.1690012216567993, -0.19396468997001648, 0.0647267997264862, 0.0014261228498071432]} +{"t": 5.0096, "q": [-0.355044960975647, -0.012488308362662792, 0.006535245105624199, 0.6294775605201721, -0.31684887409210205, 0.016595151275396347, -0.3908037543296814, 0.00027270769351162016, -0.0033747577108442783, 0.6006727814674377, -0.28075289726257324, 0.00198048516176641, 0.004258622881025076, 0.009667913429439068, -0.04817327857017517, 0.19482755661010742, 0.09922938793897629, 0.004278368316590786, 1.0957896709442139, 0.14838868379592896, 0.06597316265106201, -0.04577973857522011, 0.19124425947666168, -0.1044185534119606, 0.031314779072999954, 1.1689413785934448, -0.19390475749969482, 0.06538593024015427, 0.0013781859306618571]} +{"t": 5.0264, "q": [-0.35505348443984985, -0.012522397562861443, 0.006548637058585882, 0.6294605135917664, -0.31684064865112305, 0.016595201566815376, -0.3908037543296814, 0.0002556634717620909, -0.0034015413839370012, 0.6006642580032349, -0.28085675835609436, 0.0019594812765717506, 0.004298798739910126, 0.009576641954481602, -0.04818268120288849, 0.19087275862693787, 0.09938517957925797, 0.004290352575480938, 1.0958255529403687, 0.14844860136508942, 0.06585332006216049, -0.045767758041620255, 0.18781678378582, -0.1044185534119606, 0.03136271610856056, 1.1689772605895996, -0.19389277696609497, 0.06634467095136642, 0.001330249011516571]} +{"t": 5.0431, "q": [-0.355044960975647, -0.012496830895543098, 0.006602204404771328, 0.6293923258781433, -0.31685301661491394, 0.01658787578344345, -0.3908122777938843, 0.00027270769351162016, -0.0034283252898603678, 0.6006642580032349, -0.28096047043800354, 0.0018951332895085216, 0.004245230928063393, 0.009523372165858746, -0.048137787729501724, 0.18658240139484406, 0.09954097121953964, 0.004278368316590786, 1.0957057476043701, 0.14847256243228912, 0.0656256154179573, -0.0457557737827301, 0.1837780922651291, -0.10447847843170166, 0.03141065314412117, 1.1689532995224, -0.19396468997001648, 0.06798651069402695, 0.001306280493736267]} +{"t": 5.0598, "q": [-0.35501089692115784, -0.012488308362662792, 0.0066289883106946945, 0.6292474269866943, -0.31682825088500977, 0.016617026180028915, -0.3907952606678009, 0.00027270769351162016, -0.003441717242822051, 0.6006642580032349, -0.28103506565093994, 0.001837821677327156, 0.004205055069178343, 0.009515753015875816, -0.04811296984553337, 0.18224410712718964, 0.09975668787956238, 0.004278368316590786, 1.0950825214385986, 0.14849653840065002, 0.06491854786872864, -0.04577973857522011, 0.18003901839256287, -0.10450244694948196, 0.031446605920791626, 1.168497920036316, -0.1940126270055771, 0.07091066241264343, 0.0012463594321161509]} +{"t": 5.0767, "q": [-0.35495975613594055, -0.012513874098658562, 0.006575420964509249, 0.6292303800582886, -0.3166339099407196, 0.01695905439555645, -0.3907100260257721, 0.0002897519152611494, -0.0035086767747998238, 0.600655734539032, -0.2811475396156311, 0.0018890806240960956, 0.004231838975101709, 0.009530959650874138, -0.04810314252972603, 0.17641977965831757, 0.09997240453958511, 0.004266384057700634, 1.0949987173080444, 0.1485804319381714, 0.0644032284617424, -0.04577973857522011, 0.17711485922336578, -0.10520951449871063, 0.031374700367450714, 1.1682102680206299, -0.1940126270055771, 0.0748894214630127, 0.0010426276130601764]} +{"t": 5.0935, "q": [-0.35495123267173767, -0.01250535249710083, 0.0065620290115475655, 0.6292048096656799, -0.3165842890739441, 0.0170463714748621, -0.3906674087047577, 0.0003067961661145091, -0.0036024199798703194, 0.6006898283958435, -0.2812388837337494, 0.001860776566900313, 0.004298798739910126, 0.009508130140602589, -0.04808814823627472, 0.17055949568748474, 0.10003232955932617, 0.004314321093261242, 1.0948668718338013, 0.14852049946784973, 0.06404370069503784, -0.0457557737827301, 0.17427460849285126, -0.10596451908349991, 0.031374700367450714, 1.166916012763977, -0.1940605640411377, 0.07717841118574142, 0.000874848454259336]} +{"t": 5.1103, "q": [-0.35495975613594055, -0.012513874098658562, 0.006508461199700832, 0.6291195750236511, -0.31647682189941406, 0.017206555232405663, -0.39059072732925415, 0.0002812298189383, -0.003696163184940815, 0.6006642580032349, -0.28128862380981445, 0.0018177669262513518, 0.004566636402159929, 0.009515765123069286, -0.04813279211521149, 0.1658257246017456, 0.10023605823516846, 0.004338289611041546, 1.0938961505889893, 0.14850851893424988, 0.0637800469994545, -0.045767758041620255, 0.16998425126075745, -0.10704310238361359, 0.03141065314412117, 1.1655378341674805, -0.19422833621501923, 0.07958724349737167, 0.0008149273344315588]} +{"t": 5.127, "q": [-0.3548404276371002, -0.012513874098658562, 0.00646828580647707, 0.6290855407714844, -0.3162865936756134, 0.01754130981862545, -0.39041176438331604, 0.0003153182624373585, -0.0037497307639569044, 0.6006301641464233, -0.2813299298286438, 0.001745784655213356, 0.004539852496236563, 0.009569011628627777, -0.04813804104924202, 0.16224244236946106, 0.10065551102161407, 0.00436225812882185, 1.0909000635147095, 0.1484006643295288, 0.06284527480602264, -0.0457557737827301, 0.16429173946380615, -0.10788199305534363, 0.031374700367450714, 1.164459228515625, -0.1943841278553009, 0.08270313590765, 0.0008149273344315588]} +{"t": 5.1437, "q": [-0.354627400636673, -0.01250535249710083, 0.00646828580647707, 0.6289406418800354, -0.31574076414108276, 0.01851642318069935, -0.3902924358844757, 0.0003153182624373585, -0.0037631227169185877, 0.6005875468254089, -0.28134649991989136, 0.0017314479919150472, 0.004821082577109337, 0.009652722626924515, -0.04821283370256424, 0.15660984814167023, 0.10130265355110168, 0.00441019469872117, 1.0879758596420288, 0.14843662083148956, 0.06193447485566139, -0.045767758041620255, 0.15834756195545197, -0.10849319398403168, 0.031374700367450714, 1.1630091667175293, -0.19467175006866455, 0.0851239487528801, 0.000850879994686693]} +{"t": 5.1605, "q": [-0.35431206226348877, -0.012522397562861443, 0.0064013260416686535, 0.6289235949516296, -0.3146739900112152, 0.02037939243018627, -0.3898237347602844, 0.00032384038786403835, -0.0038434739690274, 0.6006045937538147, -0.28140026330947876, 0.001652341685257852, 0.004740730859339237, 0.009462612681090832, -0.048286113888025284, 0.1504020243883133, 0.10208163410425186, 0.004446147475391626, 1.0844645500183105, 0.14836470782756805, 0.061299312859773636, -0.04579172283411026, 0.1503780633211136, -0.10910438746213913, 0.031326763331890106, 1.1614631414413452, -0.19497136771678925, 0.08753278106451035, 0.0009108011145144701]} +{"t": 5.1772, "q": [-0.3541927635669708, -0.012547963298857212, 0.006200447678565979, 0.6288639307022095, -0.314690500497818, 0.020364811643958092, -0.3897044062614441, 0.0003408846096135676, -0.004030960611999035, 0.6006216406822205, -0.28152015805244446, 0.0014725092332810163, 0.00479429867118597, 0.008702199906110764, -0.04872826486825943, 0.1444578468799591, 0.10284861922264099, 0.004494084510952234, 1.0813246965408325, 0.14836470782756805, 0.06081994250416756, -0.04577973857522011, 0.1416894942522049, -0.10970360040664673, 0.03136271610856056, 1.1602288484573364, -0.19548667967319489, 0.0905408188700676, 0.0009347695740871131]} +{"t": 5.1939, "q": [-0.3540819585323334, -0.012530919164419174, 0.005972785409539938, 0.628829836845398, -0.3147069811820984, 0.020364711061120033, -0.3893890976905823, 0.0003323625132907182, -0.0042854067869484425, 0.6006216406822205, -0.2816237509250641, 0.0013792772078886628, 0.004995177034288645, 0.007721152622252703, -0.049304213374853134, 0.13650032877922058, 0.10395117104053497, 0.004482100252062082, 1.0790956020355225, 0.1484006643295288, 0.06071208417415619, -0.04580370709300041, 0.13246163725852966, -0.11080614477396011, 0.03139866888523102, 1.158419132232666, -0.1962536722421646, 0.095430389046669, 0.0010426276130601764]} +{"t": 5.2107, "q": [-0.35380926728248596, -0.012547963298857212, 0.005637987982481718, 0.6288213133811951, -0.3147400915622711, 0.020291993394494057, -0.3890056014060974, 0.0003067961661145091, -0.004646987654268742, 0.6006216406822205, -0.2818482518196106, 0.0013807008508592844, 0.005812082905322313, 0.006633547600358725, -0.049701444804668427, 0.12825517356395721, 0.10507768392562866, 0.004494084510952234, 1.0765548944473267, 0.1483766883611679, 0.06065216287970543, -0.045815691351890564, 0.12382101267576218, -0.11211242526769638, 0.031314779072999954, 1.1566694974899292, -0.19626565277576447, 0.09970875084400177, 0.0009467537747696042]} +{"t": 5.2275, "q": [-0.35373255610466003, -0.012539440765976906, 0.0055442447774112225, 0.628753125667572, -0.31471940875053406, 0.020342867821455002, -0.3889203667640686, 0.0002556634717620909, -0.00483447453007102, 0.6006216406822205, -0.2819480001926422, 0.0013668916653841734, 0.006146880332380533, 0.005363318603485823, -0.05042693391442299, 0.12165187299251556, 0.10657571256160736, 0.004494084510952234, 1.070778489112854, 0.14834074676036835, 0.06019676476716995, -0.045827675610780716, 0.11387410759925842, -0.11422164738178253, 0.031099064275622368, 1.1533857583999634, -0.19621771574020386, 0.10159027576446533, 0.0010426276130601764]} +{"t": 5.2443, "q": [-0.35334905982017517, -0.012522397562861443, 0.005678163841366768, 0.6285997629165649, -0.3147524893283844, 0.02028465084731579, -0.38875845074653625, 0.0003408846096135676, -0.004687163513153791, 0.6006216406822205, -0.2819645404815674, 0.0013380951713770628, 0.00605313666164875, 0.004321274347603321, -0.05109361931681633, 0.11531221866607666, 0.10808572918176651, 0.004542021546512842, 1.0650501251220703, 0.1483047902584076, 0.05968144163489342, -0.045947518199682236, 0.10329204052686691, -0.1161511093378067, 0.031063111498951912, 1.1481367349624634, -0.196205735206604, 0.1026209220290184, 0.0012343751732259989]} +{"t": 5.261, "q": [-0.3528377413749695, -0.012462742626667023, 0.0058388663455843925, 0.6284122467041016, -0.31479790806770325, 0.020233608782291412, -0.3884942829608917, 0.0003664509567897767, -0.004539852496236563, 0.6006131172180176, -0.2819809913635254, 0.0012948744697496295, 0.00575851509347558, 0.0032030045986175537, -0.05180136486887932, 0.10754643380641937, 0.10943994671106339, 0.004565989598631859, 1.060520052909851, 0.1482808142900467, 0.05891445279121399, -0.046187203377485275, 0.09195496141910553, -0.11787684261798859, 0.03105112724006176, 1.141365647315979, -0.19619375467300415, 0.10283663868904114, 0.001342233270406723]} +{"t": 5.2777, "q": [-0.35252243280410767, -0.012462742626667023, 0.005972785409539938, 0.6281566023826599, -0.314806193113327, 0.02021905966103077, -0.38835790753364563, 0.0003664509567897767, -0.004419325385242701, 0.6005960702896118, -0.28202658891677856, 0.0012590414844453335, 0.0055978125892579556, 0.0020238570868968964, -0.05259871855378151, 0.09903763979673386, 0.11036273092031479, 0.004601942375302315, 1.0577995777130127, 0.14825685322284698, 0.05843508243560791, -0.046366967260837555, 0.08027034252882004, -0.11918312311172485, 0.031087080016732216, 1.1349660158157349, -0.19616977870464325, 0.10302838683128357, 0.0014381069922819734]} +{"t": 5.2944, "q": [-0.3518065810203552, -0.012496830895543098, 0.006012961268424988, 0.6281139850616455, -0.3148515820503235, 0.020197035744786263, -0.3877187669277191, 0.00034940673504024744, -0.004405933897942305, 0.6005960702896118, -0.2821265459060669, 0.001303018187172711, 0.005571028683334589, 0.0011108408216387033, -0.05329376086592674, 0.08989367634057999, 0.1110338494181633, 0.004589958116412163, 1.0544201135635376, 0.14823287725448608, 0.05811150744557381, -0.046666573733091354, 0.06700380146503448, -0.12033360451459885, 0.031087080016732216, 1.12784743309021, -0.1961577981710434, 0.10308830440044403, 0.0014381069922819734]} +{"t": 5.3112, "q": [-0.3510395884513855, -0.01250535249710083, 0.006039745174348354, 0.6279946565628052, -0.31499186158180237, 0.020123669877648354, -0.387164831161499, 0.0003153182624373585, -0.0043523660860955715, 0.6005364060401917, -0.282334566116333, 0.001347662415355444, 0.005637987982481718, 0.00034238153602927923, -0.05383480712771416, 0.08132494986057281, 0.11147726327180862, 0.004565989598631859, 1.0494346618652344, 0.14819693565368652, 0.05722467601299286, -0.04689427465200424, 0.05463608354330063, -0.12104067206382751, 0.03111104853451252, 1.1193865537643433, -0.19619375467300415, 0.10307632386684418, 0.0014740596525371075]} +{"t": 5.3279, "q": [-0.3504345118999481, -0.012547963298857212, 0.0061736637726426125, 0.6278157234191895, -0.3151237368583679, 0.020166371017694473, -0.38666200637817383, 0.0002556634717620909, -0.004151487722992897, 0.6004768013954163, -0.2824760377407074, 0.001377460896037519, 0.005624596029520035, -0.0007533268071711063, -0.054630156606435776, 0.07258845120668411, 0.11177686601877213, 0.004565989598631859, 1.043418526649475, 0.14813700318336487, 0.05603823810815811, -0.0472537986934185, 0.040350887924432755, -0.12146012485027313, 0.03118295408785343, 1.1106140613555908, -0.1961817741394043, 0.10306433588266373, 0.0015100124292075634]} +{"t": 5.3446, "q": [-0.3496589958667755, -0.012530919164419174, 0.0061736637726426125, 0.627849817276001, -0.3153999447822571, 0.020215468481183052, -0.3858098089694977, 0.0002556634717620909, -0.004138095770031214, 0.600348949432373, -0.2826218605041504, 0.001457850681617856, 0.005584420636296272, -0.0014534095535054803, -0.05533650889992714, 0.06278535723686218, 0.11196861416101456, 0.00453003728762269, 1.0381814241409302, 0.14796923100948334, 0.054072823375463486, -0.047565389424562454, 0.025059014558792114, -0.12172377854585648, 0.0312788262963295, 1.1023210287094116, -0.196205735206604, 0.10305235534906387, 0.0016777915880084038]} +{"t": 5.3613, "q": [-0.34905391931533813, -0.012522397562861443, 0.0062272315844893456, 0.627849817276001, -0.31579169631004333, 0.02019134908914566, -0.385716050863266, 0.0002300971100339666, -0.004084527958184481, 0.600348949432373, -0.28291308879852295, 0.0015174641739577055, 0.00571833923459053, -0.0017654142575338483, -0.05619718134403229, 0.05277852714061737, 0.11211242526769638, 0.00453003728762269, 1.034166693687439, 0.14778946340084076, 0.05183177441358566, -0.047817058861255646, 0.010641992092132568, -0.121843621134758, 0.031266842037439346, 1.093692421913147, -0.19621771574020386, 0.10295648127794266, 0.0016538230702280998]} +{"t": 5.3781, "q": [-0.3486022651195526, -0.012522397562861443, 0.006200447678565979, 0.627918004989624, -0.3162909746170044, 0.019949009642004967, -0.38578423857688904, 0.0001704423048067838, -0.004097919911146164, 0.6003233790397644, -0.28335434198379517, 0.0016647148877382278, 0.005852258298546076, -0.0018111485987901688, -0.0570831224322319, 0.04277170076966286, 0.11235211044549942, 0.004482100252062082, 1.0281267166137695, 0.14766962826251984, 0.04784102737903595, -0.0481526181101799, -0.0049614692106842995, -0.12180766463279724, 0.031266842037439346, 1.0837574005126953, -0.19621771574020386, 0.10284861922264099, 0.0016658073291182518]} +{"t": 5.3948, "q": [-0.3483380675315857, -0.012547963298857212, 0.006079920567572117, 0.6279265284538269, -0.31790703535079956, 0.01755327731370926, -0.3858865201473236, 0.00011078749957960099, -0.004084527958184481, 0.6003148555755615, -0.2837038040161133, 0.0017247333889827132, 0.00579869095236063, -0.0017427230486646295, -0.05786444991827011, 0.03371162712574005, 0.1125079095363617, 0.004494084510952234, 1.021223783493042, 0.1476576328277588, 0.04289154335856438, -0.04820055514574051, -0.020061593502759933, -0.12174774706363678, 0.0313027948141098, 1.0736308097839355, -0.1962297111749649, 0.10282465070486069, 0.001701759989373386]} +{"t": 5.4116, "q": [-0.348244309425354, -0.012547963298857212, 0.006012961268424988, 0.627918004989624, -0.3184565603733063, 0.01683199591934681, -0.3859291076660156, 9.374327055411413e-05, -0.0041247038170695305, 0.6002466678619385, -0.283791184425354, 0.0017469500890001655, 0.005919218063354492, -0.001826473861001432, -0.058646127581596375, 0.02281796559691429, 0.11277155578136444, 0.004458131734281778, 1.0153634548187256, 0.14758573472499847, 0.03899667039513588, -0.048296429216861725, -0.03568902239203453, -0.12172377854585648, 0.03133874759078026, 1.06284499168396, -0.19619375467300415, 0.10265687108039856, 0.001725728390738368]} +{"t": 5.4283, "q": [-0.3480483293533325, -0.012539440765976906, 0.005852258298546076, 0.627918004989624, -0.31860923767089844, 0.016765804961323738, -0.38595467805862427, 8.52211524033919e-05, -0.004258622881025076, 0.6001955270767212, -0.2839988172054291, 0.0016760402359068394, 0.0061736637726426125, -0.0018264761893078685, -0.05887527018785477, 0.011121360585093498, 0.11289139837026596, 0.004434163216501474, 1.0093833208084106, 0.14751382172107697, 0.037223003804683685, -0.048356350511312485, -0.05158010497689247, -0.12174774706363678, 0.03129081055521965, 1.0520951747894287, -0.19621771574020386, 0.10258496552705765, 0.00173771264962852]} +{"t": 5.4451, "q": [-0.3481164872646332, -0.012479785829782486, 0.005691555794328451, 0.6279009580612183, -0.3187370300292969, 0.016786782070994377, -0.3861336410045624, 7.669904152862728e-05, -0.004325582180172205, 0.60011887550354, -0.284193754196167, 0.0015544863417744637, 0.00613348837941885, -0.0018264887621626258, -0.05905478820204735, 0.00035952674807049334, 0.11244798451662064, 0.004374242387712002, 1.001054286956787, 0.1474299430847168, 0.03468234837055206, -0.048356350511312485, -0.06699182093143463, -0.12174774706363678, 0.031266842037439346, 1.0411295890808105, -0.1961817741394043, 0.10247711092233658, 0.00173771264962852]} +{"t": 5.4618, "q": [-0.34816762804985046, -0.012428653426468372, 0.005571028683334589, 0.6278839111328125, -0.31874099373817444, 0.01688104309141636, -0.3861336410045624, 9.374327055411413e-05, -0.0042854067869484425, 0.6000762581825256, -0.28433457016944885, 0.0014109265757724643, 0.006160271819680929, -0.0018264894606545568, -0.05906476452946663, -0.009839048609137535, 0.11194464564323425, 0.0043982104398310184, 0.9938997626304626, 0.1472022384405136, 0.03076350688934326, -0.04838031902909279, -0.08108526468276978, -0.1218915581703186, 0.031254857778549194, 1.0301400423049927, -0.19619375467300415, 0.10234528034925461, 0.0017736653098836541]} +{"t": 5.4785, "q": [-0.348201721906662, -0.01232638768851757, 0.0055442447774112225, 0.627849817276001, -0.3187490701675415, 0.01698252744972706, -0.3861165940761566, 0.00021305288828443736, -0.004178271628916264, 0.6000847816467285, -0.28449997305870056, 0.001166377100162208, 0.005959393456578255, -0.0018264887621626258, -0.05905478820204735, -0.020660804584622383, 0.11176488548517227, 0.00441019469872117, 0.9863017201423645, 0.1470824033021927, 0.02582600526511669, -0.04840428754687309, -0.09601761400699615, -0.12211925536394119, 0.031218906864523888, 1.020768404006958, -0.196205735206604, 0.10228536278009415, 0.001749696908518672]} +{"t": 5.4953, "q": [-0.348389208316803, -0.012215601280331612, 0.005437109619379044, 0.6278327703475952, -0.3187737762928009, 0.017011361196637154, -0.38609954714775085, 0.00034940673504024744, -0.0041916631162166595, 0.6000847816467285, -0.28464460372924805, 0.0009289346635341644, 0.006187055725604296, -0.001811266760341823, -0.05904479697346687, -0.03147057443857193, 0.11159710586071014, 0.004434163216501474, 0.9786078929901123, 0.1468546986579895, 0.020720725879073143, -0.04839230328798294, -0.10930811613798141, -0.12237092107534409, 0.03118295408785343, 1.0105218887329102, -0.1961577981710434, 0.10223742574453354, 0.001785649568773806]} +{"t": 5.512, "q": [-0.3483295440673828, -0.01207924634218216, 0.005276407115161419, 0.6276537775993347, -0.3187447786331177, 0.017105838283896446, -0.3861165940761566, 0.0003920173039659858, -0.004272014833986759, 0.6000592112541199, -0.28488463163375854, 0.0006270916201174259, 0.006066528614610434, -0.0018036580877378583, -0.059039805084466934, -0.04310726001858711, 0.11154916882514954, 0.004446147475391626, 0.9693201184272766, 0.14643524587154388, 0.017233315855264664, -0.04839230328798294, -0.12275441735982895, -0.12270648032426834, 0.03111104853451252, 0.999184787273407, -0.1961817741394043, 0.10228536278009415, 0.001797633827663958]} +{"t": 5.5288, "q": [-0.34832102060317993, -0.011951414868235588, 0.0051424880512058735, 0.6275089383125305, -0.3186245560646057, 0.01750541850924492, -0.38609954714775085, 0.0005539375124499202, -0.004258622881025076, 0.6001018285751343, -0.28516149520874023, 0.00017379078781232238, 0.005704947747290134, -0.0017884374829009175, -0.059049759060144424, -0.054851800203323364, 0.11171694844961166, 0.00453003728762269, 0.9593851566314697, 0.14614762365818024, 0.015351792797446251, -0.0484282523393631, -0.13563746213912964, -0.12322180718183517, 0.031123032793402672, 0.9878836274147034, -0.1961577981710434, 0.10221345722675323, 0.0019174760673195124]} +{"t": 5.5455, "q": [-0.3481931984424591, -0.011772450059652328, 0.00512909609824419, 0.6274407505989075, -0.31859123706817627, 0.017708688974380493, -0.3859376311302185, 0.000818123109638691, -0.004312190227210522, 0.60011887550354, -0.28542202711105347, -0.00020738737657666206, 0.005691555794328451, -0.0017960467375814915, -0.05906473100185394, -0.06678808480501175, 0.11207647621631622, 0.004613926634192467, 0.9509602785110474, 0.1456323117017746, 0.012799152173101902, -0.0484282523393631, -0.14844860136508942, -0.1242884024977684, 0.031135017052292824, 0.9782723188400269, -0.1961817741394043, 0.10220146924257278, 0.0019893813878297806]} +{"t": 5.5623, "q": [-0.3481164872646332, -0.01160200871527195, 0.00508892023935914, 0.6274492740631104, -0.3181775212287903, 0.018566951155662537, -0.38573309779167175, 0.0010567422723397613, -0.004365758039057255, 0.6001614332199097, -0.28560832142829895, -0.0004156641662120819, 0.005651379935443401, -0.0017732195556163788, -0.05909961089491844, -0.0797310471534729, 0.11244798451662064, 0.004841627087444067, 0.9404860734939575, 0.14479340612888336, 0.009239837527275085, -0.04839230328798294, -0.16239823400974274, -0.12582238018512726, 0.03111104853451252, 0.9672228693962097, -0.1961817741394043, 0.10218948870897293, 0.002037318190559745]} +{"t": 5.579, "q": [-0.34813353419303894, -0.011593486182391644, 0.005075528286397457, 0.6273810863494873, -0.3182518184185028, 0.018537484109401703, -0.3855370879173279, 0.0012783173006027937, -0.0043523660860955715, 0.6002722382545471, -0.2857532501220703, -0.0006965755601413548, 0.005329974461346865, -0.0017732195556163788, -0.05909961089491844, -0.09145162254571915, 0.11284346133470535, 0.004865595605224371, 0.9308027625083923, 0.14425411820411682, 0.004482100252062082, -0.0484282523393631, -0.17544905841350555, -0.12754811346530914, 0.031099064275622368, 0.9582586288452148, -0.19619375467300415, 0.10211758315563202, 0.002061286708340049]} +{"t": 5.5957, "q": [-0.34803980588912964, -0.011627575382590294, 0.005115704145282507, 0.6271936297416687, -0.31833845376968384, 0.01848619244992733, -0.38505133986473083, 0.0014146711910143495, -0.004660379607230425, 0.6003574728965759, -0.28566092252731323, -0.0010439986363053322, 0.005222839303314686, -0.001818881486542523, -0.059069741517305374, -0.1044425219297409, 0.11380220204591751, 0.00490154791623354, 0.9210596084594727, 0.1441582441329956, -0.0015939020086079836, -0.0484282523393631, -0.18797257542610168, -0.12982511520385742, 0.03105112724006176, 0.9477724432945251, -0.19616977870464325, 0.10215353965759277, 0.002061286708340049]} +{"t": 5.6125, "q": [-0.34803980588912964, -0.01166166365146637, 0.00508892023935914, 0.6268697381019592, -0.318354994058609, 0.01845707558095455, -0.3850342929363251, 0.0014743260107934475, -0.00479429867118597, 0.6004171371459961, -0.28547748923301697, -0.0009437946719117463, 0.005075528286397457, -0.0018417059909552336, -0.058994971215724945, -0.11703794449567795, 0.11494070291519165, 0.0049255164340138435, 0.909746527671814, 0.14402641355991364, -0.0047217849642038345, -0.04840428754687309, -0.20090354979038239, -0.1323537826538086, 0.030979221686720848, 0.9395992159843445, -0.1961577981710434, 0.10211758315563202, 0.002061286708340049]} +{"t": 5.6292, "q": [-0.3478182256221771, -0.011678706854581833, 0.00512909609824419, 0.6264862418174744, -0.3183715343475342, 0.018427975475788116, -0.384966105222702, 0.0015765913994982839, -0.0051424880512058735, 0.6005193591117859, -0.2835536599159241, 0.0015937702264636755, 0.0049817850813269615, -0.0018569224048405886, -0.05892517417669296, -0.12889033555984497, 0.11637881398200989, 0.005021390505135059, 0.8990445733070374, 0.14393053948879242, -0.007322361692786217, -0.0484282523393631, -0.21355889737606049, -0.1348704695701599, 0.031015174463391304, 0.9319892525672913, -0.19614581763744354, 0.10208163410425186, 0.002121207769960165]} +{"t": 5.6459, "q": [-0.34752845764160156, -0.01178097352385521, 0.005222839303314686, 0.6261112689971924, -0.3184170424938202, 0.01833341456949711, -0.38485532999038696, 0.0016277240356430411, -0.005383542273193598, 0.6005960702896118, -0.28282639384269714, 0.0016830655513331294, 0.004928217735141516, -0.0018493130337446928, -0.05891020596027374, -0.142037034034729, 0.11766112595796585, 0.005201153922826052, 0.8891575932502747, 0.14393053948879242, -0.009827064350247383, -0.0484282523393631, -0.22472819685935974, -0.13833391666412354, 0.031063111498951912, 0.9209397435188293, -0.19612184166908264, 0.10210560262203217, 0.0021092237439006567]} +{"t": 5.6627, "q": [-0.3471023738384247, -0.011925848200917244, 0.005343366414308548, 0.6257362961769104, -0.318479061126709, 0.01823875494301319, -0.38458263874053955, 0.0016192019684240222, -0.005396933760493994, 0.6006813049316406, -0.2827005088329315, 0.0013644425198435783, 0.004955001175403595, -0.0018645240925252438, -0.05883043631911278, -0.1546204686164856, 0.11929097771644592, 0.00601608119904995, 0.8802892565727234, 0.14389459788799286, -0.012020178139209747, -0.0484282523393631, -0.2355739176273346, -0.1419651359319687, 0.031099064275622368, 0.911088764667511, -0.1961338371038437, 0.10210560262203217, 0.0021092237439006567]} +{"t": 5.6794, "q": [-0.3464972972869873, -0.011900282464921474, 0.0053701503202319145, 0.6252505779266357, -0.31857821345329285, 0.018107639625668526, -0.38417357206344604, 0.0016277240356430411, -0.0053701503202319145, 0.6007324457168579, -0.28272920846939087, 0.0012562579941004515, 0.004633595701307058, -0.0018797487718984485, -0.058810506016016006, -0.1672758162021637, 0.1209687665104866, 0.0070826769806444645, 0.8697431683540344, 0.14382268488407135, -0.014057496562600136, -0.048416271805763245, -0.2470068633556366, -0.1459079384803772, 0.03117096982896328, 0.9012497067451477, -0.19614581763744354, 0.10205766558647156, 0.0021092237439006567]} +{"t": 5.6961, "q": [-0.34588369727134705, -0.012036636471748352, 0.005530852824449539, 0.624645471572876, -0.3186856806278229, 0.01794743724167347, -0.38380712270736694, 0.0016532903537154198, -0.005236231256276369, 0.6007068753242493, -0.28277871012687683, 0.0011554623488336802, 0.004446109291166067, -0.0019330186769366264, -0.05877566337585449, -0.18051838874816895, 0.12208329886198044, 0.00814927276223898, 0.8606112003326416, 0.1438107043504715, -0.017832526937127113, -0.04840428754687309, -0.2575889229774475, -0.1495751142501831, 0.031063111498951912, 0.8910031914710999, -0.19614581763744354, 0.10205766558647156, 0.0020972394850105047]} +{"t": 5.7128, "q": [-0.34538090229034424, -0.012190034613013268, 0.0055978125892579556, 0.6242023706436157, -0.31877654790878296, 0.017859870567917824, -0.38349178433418274, 0.0016106797847896814, -0.005222839303314686, 0.6006727814674377, -0.2829158306121826, 0.0011346513638272882, 0.00416487967595458, -0.0020167299080640078, -0.0587209090590477, -0.19262245297431946, 0.12228703498840332, 0.00980309583246708, 0.8526776432991028, 0.14375078678131104, -0.020624851807951927, -0.04840428754687309, -0.2666490077972412, -0.1527749001979828, 0.030979221686720848, 0.8798099160194397, -0.1961338371038437, 0.10205766558647156, 0.002121207769960165]} +{"t": 5.7296, "q": [-0.3445627689361572, -0.012283777818083763, 0.005825474392622709, 0.6235631704330444, -0.318830281496048, 0.01777976006269455, -0.3830145597457886, 0.0015851134667173028, -0.005062136333435774, 0.6006642580032349, -0.2830403745174408, 0.0010776742128655314, 0.0035086767747998238, -0.002146107843145728, -0.05863628163933754, -0.2055174857378006, 0.12232298403978348, 0.012727247551083565, 0.8432700037956238, 0.1435590386390686, -0.023021696135401726, -0.0484282523393631, -0.2765120267868042, -0.1559387445449829, 0.030955253168940544, 0.8680413961410522, -0.1961338371038437, 0.10214155167341232, 0.002133192028850317]} +{"t": 5.7463, "q": [-0.34364238381385803, -0.01238604262471199, 0.006160271819680929, 0.6228984594345093, -0.31885501742362976, 0.017765112221240997, -0.382307231426239, 0.0015936355339363217, -0.00483447453007102, 0.6005704998970032, -0.28311920166015625, 0.001042052055709064, 0.002691771136596799, -0.0022678656969219446, -0.05853680521249771, -0.21820877492427826, 0.12235894054174423, 0.015843145549297333, 0.8356121182441711, 0.14337927103042603, -0.024447819218039513, -0.04844023659825325, -0.28573986887931824, -0.15839549899101257, 0.030943268910050392, 0.8566683530807495, -0.1961817741394043, 0.10234528034925461, 0.002133192028850317]} +{"t": 5.763, "q": [-0.3425089418888092, -0.012488308362662792, 0.006481677293777466, 0.6223104596138, -0.3188839852809906, 0.01771416887640953, -0.3814550042152405, 0.0015936355339363217, -0.004660379607230425, 0.6004853248596191, -0.2832433581352234, 0.0008839270449243486, 0.0018614735454320908, -0.0024048341438174248, -0.058427516371011734, -0.23143935203552246, 0.1224667951464653, 0.01792840100824833, 0.8267917037010193, 0.1429598182439804, -0.025142904371023178, -0.04840428754687309, -0.2947879731655121, -0.16097211837768555, 0.030895331874489784, 0.8436415195465088, -0.19616977870464325, 0.10263290256261826, 0.002205097349360585]} +{"t": 5.7798, "q": [-0.34139254689216614, -0.012462742626667023, 0.006602204404771328, 0.6220547556877136, -0.3189624547958374, 0.017619408667087555, -0.38041532039642334, 0.0016447682864964008, -0.0045800283551216125, 0.600348949432373, -0.28342607617378235, 0.0008273010025732219, 0.0009642164804972708, -0.0026407467667013407, -0.05843299999833107, -0.24506542086601257, 0.12257465720176697, 0.019450398162007332, 0.8187382817268372, 0.14172545075416565, -0.026137595996260643, -0.0484282523393631, -0.30298519134521484, -0.16374047100543976, 0.03082342818379402, 0.8301592469215393, -0.19614581763744354, 0.10276473313570023, 0.002253034384921193]} +{"t": 5.7965, "q": [-0.3403613567352295, -0.012488308362662792, 0.006655772216618061, 0.6220121383666992, -0.3192019760608673, 0.017400391399860382, -0.3794778883457184, 0.0017129451734945178, -0.0045130690559744835, 0.600348949432373, -0.2836163640022278, 0.0005684855859726667, 0.00018748654110822827, -0.0031049989629536867, -0.058608461171388626, -0.25840386748313904, 0.12222710996866226, 0.021319936960935593, 0.8116316795349121, 0.14035925269126892, -0.02659299597144127, -0.0484282523393631, -0.31094270944595337, -0.166748508810997, 0.03082342818379402, 0.8180432319641113, -0.19614581763744354, 0.10308830440044403, 0.0022889869287610054]} +{"t": 5.8132, "q": [-0.33919385075569153, -0.012488308362662792, 0.006695947609841824, 0.6220632791519165, -0.3194620609283447, 0.017203016206622124, -0.3783188760280609, 0.001883387565612793, -0.004486285150051117, 0.6003915667533875, -0.28381139039993286, 0.0004613736819010228, -0.00040175687172450125, -0.003378994530066848, -0.05880820378661156, -0.2721497714519501, 0.12168782204389572, 0.023369239643216133, 0.8023439049720764, 0.13912487030029297, -0.026928553357720375, -0.04844023659825325, -0.31983500719070435, -0.1703198105096817, 0.03087136335670948, 0.8052680492401123, -0.1961338371038437, 0.10329204052686691, 0.0023129554465413094]} +{"t": 5.83, "q": [-0.33813709020614624, -0.012471264228224754, 0.0068566505797207355, 0.6220888495445251, -0.31960219144821167, 0.017231186851859093, -0.3771769106388092, 0.0020879183430224657, -0.004379149992018938, 0.6003830432891846, -0.28399789333343506, 0.00031086496892385185, -0.0009240407962352037, -0.0038280475419014692, -0.05913279950618744, -0.2849729061126709, 0.12166385352611542, 0.024567661806941032, 0.7934635877609253, 0.13825002312660217, -0.027707528322935104, -0.04851214215159416, -0.32905086874961853, -0.1736154705286026, 0.030835412442684174, 0.7930681109428406, -0.19603796303272247, 0.10399910807609558, 0.0023249397054314613]} +{"t": 5.8467, "q": [-0.33697807788848877, -0.012394565157592297, 0.006883434485644102, 0.6220803260803223, -0.31980034708976746, 0.017084935680031776, -0.37625652551651, 0.0020793962758034468, -0.004258622881025076, 0.6003830432891846, -0.28431299328804016, 6.7282555392012e-05, -0.001191878691315651, -0.004581540357321501, -0.05964725837111473, -0.2983832359313965, 0.12177171558141708, 0.025118935853242874, 0.7835885882377625, 0.13817811012268066, -0.028798094019293785, -0.04851214215159416, -0.3387700915336609, -0.17745041847229004, 0.030847394838929176, 0.7809041142463684, -0.19599002599716187, 0.10432267934083939, 0.0023249397054314613]} +{"t": 5.8635, "q": [-0.33597248792648315, -0.012275256216526031, 0.006736123468726873, 0.6221570372581482, -0.3199405074119568, 0.017098605632781982, -0.37527647614479065, 0.0020623519085347652, -0.004298798739910126, 0.6003574728965759, -0.284925639629364, -0.0006511319661512971, -0.0011784868547692895, -0.005304621532559395, -0.06012260913848877, -0.31197336316108704, 0.12181965261697769, 0.025226794183254242, 0.7746843099594116, 0.1381181925535202, -0.030044453218579292, -0.04854809492826462, -0.3490285873413086, -0.18166887760162354, 0.030835412442684174, 0.76808100938797, -0.1958821564912796, 0.1049937978386879, 0.0023608924821019173]} +{"t": 5.8802, "q": [-0.3354526162147522, -0.012198556214571, 0.006642380263656378, 0.6222252249717712, -0.32000645995140076, 0.017127206549048424, -0.37477368116378784, 0.0020453077740967274, -0.004298798739910126, 0.6003745198249817, -0.28770509362220764, -0.004293057136237621, -0.0011784868547692895, -0.0064007071778178215, -0.060923442244529724, -0.32329845428466797, 0.12198743224143982, 0.02540655806660652, 0.7649890780448914, 0.1381661295890808, -0.03184208646416664, -0.048524126410484314, -0.35890358686447144, -0.18521620333194733, 0.030727554112672806, 0.7560248374938965, -0.19573834538459778, 0.10573682188987732, 0.0023489082232117653]} +{"t": 5.8969, "q": [-0.3349412977695465, -0.01213890127837658, 0.00672273151576519, 0.6223956346511841, -0.32011768221855164, 0.017191801220178604, -0.3744412958621979, 0.0019686087034642696, -0.0041916631162166595, 0.600425660610199, -0.28856366872787476, -0.004584836773574352, -0.0011383111122995615, -0.007253273390233517, -0.06171437352895737, -0.3351987898349762, 0.12213123589754105, 0.025538384914398193, 0.7554136514663696, 0.13815414905548096, -0.03423893079161644, -0.04851214215159416, -0.37105557322502136, -0.18867963552474976, 0.03069160133600235, 0.7440406084060669, -0.19557057321071625, 0.10659968107938766, 0.0023489082232117653]} +{"t": 5.9136, "q": [-0.3347538113594055, -0.012087768875062466, 0.006655772216618061, 0.6225149631500244, -0.32014647126197815, 0.017227893695235252, -0.3744753897190094, 0.0019089538836851716, -0.004205055069178343, 0.6004427075386047, -0.2900230884552002, -0.0020285265054553747, -0.0009106489014811814, -0.007953760214149952, -0.06308438628911972, -0.34694331884384155, 0.1215679794549942, 0.025490447878837585, 0.7463535666465759, 0.13826200366020203, -0.03741475194692612, -0.048584047704935074, -0.3831596374511719, -0.19205918908119202, 0.030583743005990982, 0.7317088842391968, -0.19541478157043457, 0.10761833935976028, 0.0023968450259417295]} +{"t": 5.9304, "q": [-0.3345748484134674, -0.01193437073379755, 0.00646828580647707, 0.622617244720459, -0.32015469670295715, 0.017242344096302986, -0.37464582920074463, 0.0018663433147594333, -0.004245230928063393, 0.6004512310028076, -0.2906607389450073, -0.0009823058499023318, -0.0007499461644329131, -0.00817478820681572, -0.06453832983970642, -0.35745349526405334, 0.12089686095714569, 0.025418542325496674, 0.7376410365104675, 0.1383219212293625, -0.0412377193570137, -0.04862000048160553, -0.39664191007614136, -0.1952829509973526, 0.030296120792627335, 0.720192015171051, -0.1952829509973526, 0.10818160325288773, 0.0023848607670515776]} +{"t": 5.9471, "q": [-0.33432769775390625, -0.011746884323656559, 0.006079920567572117, 0.6229069828987122, -0.32018348574638367, 0.017292937263846397, -0.3753872513771057, 0.0018663433147594333, -0.0043523660860955715, 0.6004427075386047, -0.29071906208992004, -0.0009963667253032327, -0.0006160272168926895, -0.008319681510329247, -0.06592264026403427, -0.36738839745521545, 0.12001003324985504, 0.025370605289936066, 0.7285090684890747, 0.13821406662464142, -0.04465322196483612, -0.04867992177605629, -0.41114282608032227, -0.1989261507987976, 0.0297927837818861, 0.7086871862411499, -0.19515112042427063, 0.10854113101959229, 0.0024088292848318815]} +{"t": 5.9639, "q": [-0.33418282866477966, -0.011474177241325378, 0.0057719070464372635, 0.623145580291748, -0.32029038667678833, 0.017480842769145966, -0.37606051564216614, 0.001823732745833695, -0.004298798739910126, 0.6004086136817932, -0.2907937467098236, -0.001082675065845251, -0.00012052706006215885, -0.00851020310074091, -0.06727854907512665, -0.37755101919174194, 0.11938685178756714, 0.025286715477705002, 0.7199044227600098, 0.13821406662464142, -0.04671451076865196, -0.0487518273293972, -0.42455315589904785, -0.20280905067920685, 0.028929919004440308, 0.6977934837341309, -0.1950312852859497, 0.10862501710653305, 0.0023608924821019173]} +{"t": 5.9806, "q": [-0.3341231644153595, -0.011209990829229355, 0.005249623209238052, 0.623435378074646, -0.3204962909221649, 0.017639147117733955, -0.37669113278388977, 0.0017896442441269755, -0.004272014833986759, 0.6003574728965759, -0.291059672832489, -0.0012978787999600172, 0.0003883649769704789, -0.00865509919822216, -0.06891472637653351, -0.387521892786026, 0.1191471666097641, 0.025358621031045914, 0.7087710499763489, 0.13822604715824127, -0.047876980155706406, -0.04881174862384796, -0.43865859508514404, -0.2066919356584549, 0.0276835598051548, 0.6858572363853455, -0.19497136771678925, 0.10880477726459503, 0.0023489082232117653]} +{"t": 5.9973, "q": [-0.3341743052005768, -0.01111624762415886, 0.004847866017371416, 0.6235802173614502, -0.3205950856208801, 0.01765291951596737, -0.37674227356910706, 0.0017811221769079566, -0.004097919911146164, 0.6003233790397644, -0.29114705324172974, -0.001333453576080501, 0.0007767299539409578, -0.008769563399255276, -0.07117405533790588, -0.3976605534553528, 0.11909922957420349, 0.02533465251326561, 0.6982009410858154, 0.13821406662464142, -0.04854809492826462, -0.048895638436079025, -0.45313555002212524, -0.2112099826335907, 0.02695252187550068, 0.6746280193328857, -0.19531890749931335, 0.10875684767961502, 0.0023369239643216133]} +{"t": 6.0143, "q": [-0.33422544598579407, -0.011090680956840515, 0.004432717338204384, 0.6238699555397034, -0.32069382071495056, 0.01772475615143776, -0.376631498336792, 0.0017896442441269755, -0.0038300822488963604, 0.6002210974693298, -0.2912929356098175, -0.0013396752765402198, 0.0014061490073800087, -0.008655580691993237, -0.0733039379119873, -0.407990962266922, 0.11913518607616425, 0.02552640065550804, 0.6873672008514404, 0.1381181925535202, -0.048655953258275986, -0.04891960695385933, -0.465707004070282, -0.2163032740354538, 0.02683268114924431, 0.6629912853240967, -0.19542676210403442, 0.10874485969543457, 0.0023848607670515776]} +{"t": 6.031, "q": [-0.3342595398426056, -0.010945805348455906, 0.0038434739690274, 0.6243301630020142, -0.3210190236568451, 0.017787640914320946, -0.37646105885505676, 0.0017896442441269755, -0.0038702578749507666, 0.6002210974693298, -0.29158487915992737, -0.00129423919133842, 0.002008784329518676, -0.008663312532007694, -0.07525560259819031, -0.4207421839237213, 0.11925502866506577, 0.025742115452885628, 0.676341712474823, 0.13796240091323853, -0.048655953258275986, -0.04891960695385933, -0.47879377007484436, -0.2216961830854416, 0.026700854301452637, 0.6517740488052368, -0.19540278613567352, 0.10886470228433609, 0.0023608924821019173]} +{"t": 6.0477, "q": [-0.33437883853912354, -0.010783884674310684, 0.003334582084789872, 0.624858558177948, -0.32197871804237366, 0.017047399654984474, -0.376444011926651, 0.0018152105621993542, -0.004044352564960718, 0.6002296209335327, -0.2918221652507782, -0.001372170285321772, 0.0023301898036152124, -0.008381716907024384, -0.0771576464176178, -0.4340206980705261, 0.12014185637235641, 0.02690458483994007, 0.6619486808776855, 0.13778263330459595, -0.0490274652838707, -0.04893159121274948, -0.491485059261322, -0.22675353288650513, 0.026389263570308685, 0.6397179365158081, -0.19537882506847382, 0.10916430503129959, 0.0023608924821019173]} +{"t": 6.0645, "q": [-0.3344299793243408, -0.010596398264169693, 0.0031872710678726435, 0.6253868937492371, -0.3241502642631531, 0.014135160483419895, -0.3763502538204193, 0.001823732745833695, -0.004084527958184481, 0.6002210974693298, -0.29187241196632385, -0.001313944230787456, 0.0028122980147600174, -0.008138107135891914, -0.07881589233875275, -0.4475868344306946, 0.12140019983053207, 0.02822284959256649, 0.6482746601104736, 0.1375669240951538, -0.04900349676609039, -0.04891960695385933, -0.5041044354438782, -0.23184682428836823, 0.026161564514040947, 0.6289560794830322, -0.19546271860599518, 0.10924819856882095, 0.0023728765081614256]} +{"t": 6.0812, "q": [-0.334489643573761, -0.010425956919789314, 0.002865865593776107, 0.6263243556022644, -0.3253650963306427, 0.013581712730228901, -0.3761286735534668, 0.0018152105621993542, -0.0041916631162166595, 0.6002637147903442, -0.2919476628303528, -0.0012555448338389397, 0.0034015413839370012, -0.008054345846176147, -0.08037949353456497, -0.463130384683609, 0.12233497202396393, 0.030056437477469444, 0.6348283886909485, 0.13723136484622955, -0.04908738657832146, -0.04893159121274948, -0.5170833468437195, -0.23839020729064941, 0.026041721925139427, 0.6173433661460876, -0.19559453427791595, 0.10973954945802689, 0.0023968450259417295]} +{"t": 6.098, "q": [-0.3346259891986847, -0.010178815573453903, 0.0028256899677217007, 0.6270743012428284, -0.32579734921455383, 0.013585731387138367, -0.3760349452495575, 0.0018322548130527139, -0.004298798739910126, 0.6002637147903442, -0.2919725775718689, -0.0012843201402574778, 0.003575636073946953, -0.007993370294570923, -0.08208046108484268, -0.47757136821746826, 0.12330569326877594, 0.033004555851221085, 0.6194525957107544, 0.13683588802814484, -0.049255166202783585, -0.04888365417718887, -0.5316442251205444, -0.24416659772396088, 0.025358621031045914, 0.6065815687179565, -0.1956304907798767, 0.11029082536697388, 0.0024807346053421497]} +{"t": 6.1149, "q": [-0.33470267057418823, -0.010085072368383408, 0.0027989062946289778, 0.6275515556335449, -0.32627493143081665, 0.013480537571012974, -0.3759411871433258, 0.001883387565612793, -0.0042854067869484425, 0.60028076171875, -0.2919684946537018, -0.001262633129954338, 0.0036158119328320026, -0.007978036068379879, -0.08395420759916306, -0.4917966425418854, 0.1236412525177002, 0.03616839274764061, 0.6055149435997009, 0.13670405745506287, -0.04918326064944267, -0.04887166991829872, -0.545881450176239, -0.2491520494222641, 0.024088293313980103, 0.5949808359146118, -0.19561851024627686, 0.11067432165145874, 0.0024687503464519978]} +{"t": 6.1316, "q": [-0.33474528789520264, -0.009991329163312912, 0.0027051628567278385, 0.628224790096283, -0.3267199695110321, 0.013462617062032223, -0.37564292550086975, 0.0019174759509041905, -0.004446109291166067, 0.6003063321113586, -0.29197263717651367, -0.0012698548380285501, 0.0036024199798703194, -0.008122475817799568, -0.08577480167150497, -0.5069686770439148, 0.12438427656888962, 0.039559926837682724, 0.5904867649078369, 0.13642841577529907, -0.04891960695385933, -0.04887166991829872, -0.562923014163971, -0.2549643814563751, 0.023081617429852486, 0.5841470956802368, -0.19557057321071625, 0.11086606979370117, 0.0024687503464519978]} +{"t": 6.1483, "q": [-0.33486461639404297, -0.00952261220663786, 0.0026783791836351156, 0.6287786960601807, -0.32732582092285156, 0.013247484341263771, -0.3756088316440582, 0.0019259981345385313, -0.004472893197089434, 0.6003404259681702, -0.29197263717651367, -0.0012698548380285501, 0.003589028026908636, -0.008068956434726715, -0.0877174511551857, -0.5223923921585083, 0.12507936358451843, 0.04295146465301514, 0.5753147006034851, 0.13616476953029633, -0.04941096156835556, -0.04887166991829872, -0.5792815089225769, -0.26149579882621765, 0.022650185972452164, 0.5718992352485657, -0.1955825537443161, 0.11108178645372391, 0.0024687503464519978]} +{"t": 6.1651, "q": [-0.33495834469795227, -0.009343648329377174, 0.002731946762651205, 0.6292133331298828, -0.32814595103263855, 0.013495177961885929, -0.37554916739463806, 0.002002697205170989, -0.004392541944980621, 0.6003659963607788, -0.2919518053531647, -0.0012627486139535904, 0.0035354604478925467, -0.008083893917500973, -0.08970720320940018, -0.5371449589729309, 0.12614595890045166, 0.04659466817975044, 0.5613051652908325, 0.1360209584236145, -0.04936302453279495, -0.04881174862384796, -0.5949089527130127, -0.26691266894340515, 0.022122880443930626, 0.5604662895202637, -0.1957862824201584, 0.11141734570264816, 0.0023848607670515776]} +{"t": 6.1818, "q": [-0.335162878036499, -0.009283993393182755, 0.002758730435743928, 0.6297417283058167, -0.32898232340812683, 0.013198375701904297, -0.37559178471565247, 0.0019856528379023075, -0.004298798739910126, 0.6004171371459961, -0.2919519245624542, -0.0012338178930804133, 0.0031470954418182373, -0.007946447469294071, -0.09198162704706192, -0.5517057776451111, 0.12862668931484222, 0.04903944954276085, 0.5457856059074402, 0.13578127324581146, -0.04945889860391617, -0.048775795847177505, -0.6113272905349731, -0.2718741297721863, 0.02208692766726017, 0.5487576723098755, -0.19603796303272247, 0.11147726327180862, 0.0024567660875618458]} +{"t": 6.1987, "q": [-0.33515435457229614, -0.009232860058546066, 0.0028926494996994734, 0.6299888491630554, -0.3292444944381714, 0.013239859603345394, -0.3755747377872467, 0.0019856528379023075, -0.004097919911146164, 0.6004000902175903, -0.29193115234375, -0.0012122462503612041, 0.002865865593776107, -0.008166694082319736, -0.0941632091999054, -0.565835177898407, 0.13047225773334503, 0.051112718880176544, 0.5310689806938171, 0.135721355676651, -0.049686599522829056, -0.0487518273293972, -0.6256244778633118, -0.277530699968338, 0.021991053596138954, 0.5380198359489441, -0.1962297111749649, 0.11148924380540848, 0.0024807346053421497]} +{"t": 6.2156, "q": [-0.33515435457229614, -0.009266948327422142, 0.002959609031677246, 0.6304149627685547, -0.3294411301612854, 0.013456045649945736, -0.3755236268043518, 0.0019686087034642696, -0.004030960611999035, 0.6004086136817932, -0.2919146716594696, -0.0011689657112583518, 0.002839081920683384, -0.008691297844052315, -0.09620673209428787, -0.58055180311203, 0.1315268725156784, 0.05390504375100136, 0.5159688591957092, 0.1356734186410904, -0.04996223375201225, -0.048703890293836594, -0.6402812004089355, -0.28454145789146423, 0.02177533693611622, 0.5268145799636841, -0.1964334398508072, 0.11147726327180862, 0.00256462418474257]} +{"t": 6.2324, "q": [-0.33515435457229614, -0.009275470860302448, 0.002839081920683384, 0.6306279897689819, -0.32960906624794006, 0.013679728843271732, -0.3755662143230438, 0.002002697205170989, -0.004030960611999035, 0.6004171371459961, -0.2918773591518402, -0.0011185788316652179, 0.002611419651657343, -0.009170178323984146, -0.09808867424726486, -0.5947291851043701, 0.13308481872081757, 0.056301891803741455, 0.5007129311561584, 0.13566142320632935, -0.05074121057987213, -0.04866793751716614, -0.6543267369270325, -0.29237914085388184, 0.02142779529094696, 0.5167238116264343, -0.1964574009180069, 0.11147726327180862, 0.00256462418474257]} +{"t": 6.2491, "q": [-0.33529070019721985, -0.009249905124306679, 0.002758730435743928, 0.6307899355888367, -0.32987940311431885, 0.014040473848581314, -0.3757537007331848, 0.0019259981345385313, -0.0039506093598902225, 0.6004171371459961, -0.29187747836112976, -0.0010896481107920408, 0.002691771136596799, -0.00969452504068613, -0.10005474090576172, -0.609829306602478, 0.13490642607212067, 0.05793174356222153, 0.4864996373653412, 0.1356494426727295, -0.0517718531191349, -0.048655953258275986, -0.6684920787811279, -0.3018706440925598, 0.0213678739964962, 0.5068607926368713, -0.19642144441604614, 0.11139337718486786, 0.002612560987472534]} +{"t": 6.2661, "q": [-0.3354952335357666, -0.009292514994740486, 0.002731946762651205, 0.63113933801651, -0.33025214076042175, 0.014610867947340012, -0.375813364982605, 0.0019004317000508308, -0.003990784753113985, 0.6004000902175903, -0.291860967874527, -0.0010463496437296271, 0.002624811604619026, -0.010325264185667038, -0.10190042108297348, -0.6228801012039185, 0.13705159723758698, 0.06001700088381767, 0.47208261489868164, 0.1356494426727295, -0.05225122347474098, -0.048655953258275986, -0.6829210519790649, -0.3100798428058624, 0.02058889903128147, 0.49961036443710327, -0.19638550281524658, 0.11144131422042847, 0.002576608443632722]} +{"t": 6.2829, "q": [-0.33557194471359253, -0.009241382591426373, 0.0027721223887056112, 0.6315313577651978, -0.3304077982902527, 0.014856411144137383, -0.3758389353752136, 0.0019174759509041905, -0.003937217406928539, 0.6003915667533875, -0.29186537861824036, -0.0009811905911192298, 0.0025176764465868473, -0.010484226979315281, -0.10370529443025589, -0.6361586451530457, 0.13875335454940796, 0.06279733777046204, 0.4581928849220276, 0.1356494426727295, -0.05422861874103546, -0.04862000048160553, -0.6962834596633911, -0.31861260533332825, 0.019726034253835678, 0.4908618927001953, -0.19632558524608612, 0.11145329475402832, 0.002540655666962266]} +{"t": 6.2996, "q": [-0.33559751510620117, -0.009249905124306679, 0.0027989062946289778, 0.6319745182991028, -0.3307764530181885, 0.015419582836329937, -0.37583041191101074, 0.0019004317000508308, -0.0038702578749507666, 0.6003745198249817, -0.2918906807899475, -0.0009086724603548646, 0.00258463597856462, -0.010787725448608398, -0.10528235882520676, -0.6490896344184875, 0.14022742211818695, 0.06537394970655441, 0.4446866512298584, 0.13566142320632935, -0.05619403347373009, -0.04856007918715477, -0.7086631655693054, -0.3271094262599945, 0.019222697243094444, 0.48273658752441406, -0.19632558524608612, 0.11139337718486786, 0.0025166873820126057]} +{"t": 6.3165, "q": [-0.33579352498054504, -0.009249905124306679, 0.0029194331727921963, 0.6326307058334351, -0.3310713768005371, 0.015838194638490677, -0.3758474588394165, 0.0018748653819784522, -0.003803298342972994, 0.6003745198249817, -0.29190343618392944, -0.0008434916962869465, 0.0023301898036152124, -0.010771919041872025, -0.10641186684370041, -0.6607023477554321, 0.14144980907440186, 0.06755507737398148, 0.4316478371620178, 0.1356973797082901, -0.05787182226777077, -0.0484282523393631, -0.7207432985305786, -0.3349471092224121, 0.018863171339035034, 0.47682836651802063, -0.19632558524608612, 0.11139337718486786, 0.002540655666962266]} +{"t": 6.3333, "q": [-0.33621108531951904, -0.009283993393182755, 0.0029730007518082857, 0.6332272887229919, -0.33132120966911316, 0.016235392540693283, -0.37600937485694885, 0.0018748653819784522, -0.003736338810995221, 0.6003319025039673, -0.2919076979160309, -0.000821746711153537, 0.0023301898036152124, -0.010664884932339191, -0.10735805332660675, -0.6741965413093567, 0.14219282567501068, 0.06899318099021912, 0.41928011178970337, 0.1356973797082901, -0.061059627681970596, -0.0484282523393631, -0.7324638366699219, -0.34404313564300537, 0.018743328750133514, 0.46913447976112366, -0.1962536722421646, 0.11142932623624802, 0.0025286716409027576]} +{"t": 6.3501, "q": [-0.33673095703125, -0.009335125796496868, 0.003026568330824375, 0.6338067650794983, -0.33155471086502075, 0.01664724573493004, -0.3762991428375244, 0.0019004317000508308, -0.0037229470908641815, 0.6003319025039673, -0.2919119894504547, -0.0007855364819988608, 0.0021962709724903107, -0.010428821668028831, -0.1077895388007164, -0.6856894493103027, 0.1428879201412201, 0.06995192170143127, 0.4079430401325226, 0.135721355676651, -0.06328869611024857, -0.04844023659825325, -0.7433335781097412, -0.35155725479125977, 0.018275942653417587, 0.46359777450561523, -0.1961817741394043, 0.11146527528762817, 0.002540655666962266]} +{"t": 6.3668, "q": [-0.3374297618865967, -0.009266948327422142, 0.0030533522367477417, 0.6344799995422363, -0.3318127393722534, 0.0169863048940897, -0.37665706872940063, 0.0019089538836851716, -0.0037095551379024982, 0.600348949432373, -0.2919040024280548, -0.0006987840170040727, 0.0021159194875508547, -0.010405988432466984, -0.10782505571842194, -0.6980571746826172, 0.14329537749290466, 0.0706949457526207, 0.39746880531311035, 0.13580523431301117, -0.06567355245351791, -0.0484522208571434, -0.7547065615653992, -0.35945484042167664, 0.017772605642676353, 0.4588879644870758, -0.19603796303272247, 0.11157313734292984, 0.00256462418474257]} +{"t": 6.3838, "q": [-0.33858025074005127, -0.009249905124306679, 0.003066744189709425, 0.6350083947181702, -0.3319889008998871, 0.017151830717921257, -0.37766265869140625, 0.0019004317000508308, -0.003736338810995221, 0.600348949432373, -0.2918916940689087, -0.0006482239114120603, 0.0017677302239462733, -0.010276569053530693, -0.10802296549081802, -0.709585964679718, 0.14359498023986816, 0.07140201330184937, 0.3860478401184082, 0.1357692927122116, -0.06784269958734512, -0.048476189374923706, -0.7665829658508301, -0.3664776086807251, 0.017137441784143448, 0.4558679461479187, -0.1959061324596405, 0.1116570234298706, 0.002636529505252838]} +{"t": 6.4005, "q": [-0.3398074209690094, -0.009173205122351646, 0.0029194331727921963, 0.6357839107513428, -0.3321691155433655, 0.017295576632022858, -0.3784722685813904, 0.0019345202017575502, -0.0038300822488963604, 0.6003063321113586, -0.2918626666069031, -0.0006122447084635496, 0.0016204193234443665, -0.010337378829717636, -0.10810472816228867, -0.722732663154602, 0.14333133399486542, 0.07154582440853119, 0.3741954565048218, 0.13578127324581146, -0.06883738934993744, -0.04850015789270401, -0.7792981863021851, -0.37469878792762756, 0.015375761315226555, 0.45200902223587036, -0.19572636485099792, 0.11175289750099182, 0.0027084348257631063]} +{"t": 6.4172, "q": [-0.3416482210159302, -0.008917542174458504, 0.002504284493625164, 0.6371474266052246, -0.33270344138145447, 0.017218345776200294, -0.3796994388103485, 0.0019686087034642696, -0.0038434739690274, 0.6002381443977356, -0.29183366894721985, -0.0005618001450784504, 0.0015400679549202323, -0.010314565151929855, -0.10808934271335602, -0.7366223931312561, 0.14313958585262299, 0.07149788737297058, 0.3622351884841919, 0.13575729727745056, -0.06946057081222534, -0.04854809492826462, -0.7915101647377014, -0.3832795023918152, 0.01143295131623745, 0.44686779379844666, -0.1956304907798767, 0.11177686601877213, 0.0028762139845639467]} +{"t": 6.434, "q": [-0.3434378504753113, -0.008619267493486404, 0.0022096626926213503, 0.6386302709579468, -0.3334442973136902, 0.017037400975823402, -0.38101184368133545, 0.0020964404102414846, -0.003937217406928539, 0.6002210974693298, -0.29180896282196045, -0.0004896286409348249, 0.001191878691315651, -0.010284160263836384, -0.10805864632129669, -0.749637246131897, 0.14315156638622284, 0.07165367901325226, 0.3495319187641144, 0.1357453167438507, -0.0698440670967102, -0.048524126410484314, -0.8039258122444153, -0.39041009545326233, 0.006495450157672167, 0.4431886374950409, -0.19554659724235535, 0.11183679103851318, 0.0028162929229438305]} +{"t": 6.4507, "q": [-0.3447587788105011, -0.0080482866615057, 0.0023034061305224895, 0.6395421624183655, -0.3341977596282959, 0.01676194742321968, -0.38219642639160156, 0.0021134845446795225, -0.004111311864107847, 0.6002296209335327, -0.29173052310943604, -0.0002948409819509834, 0.0012052706442773342, -0.01028415560722351, -0.1080484613776207, -0.7638745307922363, 0.1431875228881836, 0.07162971794605255, 0.3375716507434845, 0.13570936024188995, -0.0701436698436737, -0.048584047704935074, -0.81552654504776, -0.39724111557006836, -0.0006471481756307185, 0.43914994597435, -0.19548667967319489, 0.11192067712545395, 0.0029001825023442507]} +{"t": 6.4675, "q": [-0.3454916775226593, -0.007545481435954571, 0.0024775005877017975, 0.6403347253799438, -0.3352334201335907, 0.016180360689759254, -0.3829463720321655, 0.0022498385515064, -0.004097919911146164, 0.6002210974693298, -0.29168951511383057, -0.00012149158283136785, 0.0010311759542673826, -0.010322215966880322, -0.10800279676914215, -0.7781477570533752, 0.14363093674182892, 0.07207313179969788, 0.32547956705093384, 0.13573333621025085, -0.07008375227451324, -0.048596031963825226, -0.8265759944915771, -0.40336504578590393, -0.006028065457940102, 0.43553072214126587, -0.19537882506847382, 0.11226822435855865, 0.0025047031231224537]} +{"t": 6.4842, "q": [-0.3458069860935211, -0.007417649962007999, 0.00254446011967957, 0.6407948732376099, -0.336609423160553, 0.015051648952066898, -0.38361963629722595, 0.0025651566684246063, -0.0036158119328320026, 0.600212574005127, -0.2916484475135803, 3.739257954293862e-05, 0.0007499461644329131, -0.01031461451202631, -0.10799767076969147, -0.791546106338501, 0.14412228763103485, 0.07290004193782806, 0.31411853432655334, 0.13573333621025085, -0.07008375227451324, -0.04862000048160553, -0.836534857749939, -0.4077153205871582, -0.010186591185629368, 0.43248671293258667, -0.19524699449539185, 0.11337076872587204, 0.002612560987472534]} +{"t": 6.501, "q": [-0.34584107995033264, -0.007383561227470636, 0.0027721223887056112, 0.6411954164505005, -0.33751749992370605, 0.01473979838192463, -0.3839605152606964, 0.003451456781476736, -0.003093527862802148, 0.6002040505409241, -0.291707843542099, 0.0002982455480378121, 0.0008035137434490025, -0.010291824117302895, -0.10794156789779663, -0.8057833313941956, 0.14403840899467468, 0.07306782156229019, 0.3040398061275482, 0.135721355676651, -0.06993994116783142, -0.048655953258275986, -0.8456308841705322, -0.41242513060569763, -0.012835104949772358, 0.42810049653053284, -0.1952829509973526, 0.11553991585969925, 0.00256462418474257]} +{"t": 6.5179, "q": [-0.3460456132888794, -0.007375039160251617, 0.002986392704769969, 0.6413658857345581, -0.33763211965560913, 0.014942341484129429, -0.3840542435646057, 0.005428587552160025, -0.0030399602837860584, 0.6001443862915039, -0.2917371690273285, 0.0003346291487105191, 0.0005892434273846447, -0.010375557467341423, -0.10782490670681, -0.8208115696907043, 0.14377474784851074, 0.07301988452672958, 0.2944404184818268, 0.13575729727745056, -0.06971223652362823, -0.04878778010606766, -0.8544992208480835, -0.4179019331932068, -0.01396162249147892, 0.42335474491119385, -0.19564247131347656, 0.11811652034521103, 0.002576608443632722]} +{"t": 6.5346, "q": [-0.3460456132888794, -0.007392083294689655, 0.0031872710678726435, 0.6413403153419495, -0.33769360184669495, 0.015050860121846199, -0.3840031325817108, 0.006732471287250519, -0.002865865593776107, 0.5999739766120911, -0.29218536615371704, 0.0008947983733378351, 0.00040175687172450125, -0.010307149961590767, -0.10773804783821106, -0.8345335125923157, 0.1438107043504715, 0.07303186506032944, 0.28533241152763367, 0.13582921028137207, -0.0694725513458252, -0.048763811588287354, -0.8629840612411499, -0.42287537455558777, -0.01521996594965458, 0.4199512302875519, -0.1961098611354828, 0.12001003324985504, 0.002624545246362686]} +{"t": 6.5514, "q": [-0.3458496034145355, -0.007724445778876543, 0.003575636073946953, 0.6412124633789062, -0.3377057611942291, 0.015377629548311234, -0.3838752806186676, 0.006613161414861679, -0.0028122980147600174, 0.5999995470046997, -0.29239344596862793, 0.0011132892686873674, 0.0004553244507405907, -0.010231218300759792, -0.10750354826450348, -0.84839928150177, 0.14366689324378967, 0.07303186506032944, 0.27482226490974426, 0.13588912785053253, -0.06964033097028732, -0.048763811588287354, -0.8724995255470276, -0.4282083511352539, -0.016586167737841606, 0.4178300201892853, -0.1962536722421646, 0.12180766463279724, 0.0028282771818339825]} +{"t": 6.5681, "q": [-0.3458666503429413, -0.007835233584046364, 0.0041247038170695305, 0.6411954164505005, -0.3376888334751129, 0.016481833532452583, -0.3837474584579468, 0.006613161414861679, -0.003026568330824375, 0.6000677347183228, -0.29137465357780457, 0.0003682975366245955, 0.0006695947959087789, -0.01006404310464859, -0.1072075292468071, -0.8617616891860962, 0.1432354599237442, 0.07295996695756912, 0.26598986983299255, 0.13587714731693268, -0.06965231895446777, -0.048775795847177505, -0.8817034363746643, -0.43478769063949585, -0.018024275079369545, 0.41646382212638855, -0.19616977870464325, 0.12324577569961548, 0.002972087822854519]} +{"t": 6.5848, "q": [-0.3456706404685974, -0.00832099374383688, 0.005196055397391319, 0.641067624092102, -0.3375856876373291, 0.01781182922422886, -0.38325318694114685, 0.006689860485494137, -0.003361365757882595, 0.6002551913261414, -0.28861650824546814, 0.002808985533192754, 0.000709770480170846, -0.01001094188541174, -0.10696805268526077, -0.8747645616531372, 0.14309164881706238, 0.07329551875591278, 0.25495240092277527, 0.13582921028137207, -0.06968826800584793, -0.048763811588287354, -0.8919858932495117, -0.44170260429382324, -0.02052897773683071, 0.4156009554862976, -0.1959540694952011, 0.12492356449365616, 0.0029361352790147066]} +{"t": 6.6016, "q": [-0.3453553318977356, -0.009181727655231953, 0.005329974461346865, 0.640999436378479, -0.3379996716976166, 0.018339121714234352, -0.38083288073539734, 0.006902913562953472, -0.0038434739690274, 0.6004171371459961, -0.28904634714126587, 0.00293493433855474, 0.001084743533283472, -0.010033879429101944, -0.10675948113203049, -0.8880670666694641, 0.14289990067481995, 0.07390671968460083, 0.24511335790157318, 0.1356973797082901, -0.06978414207696915, -0.048763811588287354, -0.9019687175750732, -0.4484497010707855, -0.022494390606880188, 0.4145223796367645, -0.19567842781543732, 0.12710469961166382, 0.0028162929229438305]} +{"t": 6.6185, "q": [-0.34373611211776733, -0.009897585958242416, 0.0049817850813269615, 0.6410164833068848, -0.3389061689376831, 0.018136536702513695, -0.37623095512390137, 0.007286408916115761, -0.004606812261044979, 0.6002637147903442, -0.2893794775009155, 0.0028504531364887953, 0.0012454462703317404, -0.009989016689360142, -0.10514137893915176, -0.900338888168335, 0.1429118812084198, 0.0746137872338295, 0.2356218546628952, 0.13531388342380524, -0.06968826800584793, -0.0487278588116169, -0.911999523639679, -0.45472943782806396, -0.022770028561353683, 0.4131561517715454, -0.19557057321071625, 0.12893827259540558, 0.0028043086640536785]} +{"t": 6.6353, "q": [-0.34207430481910706, -0.00985497422516346, 0.004700555466115475, 0.6404454708099365, -0.3394067883491516, 0.017595453187823296, -0.3745094835758209, 0.007542072329670191, -0.0049817850813269615, 0.600493848323822, -0.2892458140850067, 0.0027771659661084414, 0.0011650949018076062, -0.01040787436068058, -0.10422350466251373, -0.9128983616828918, 0.14285196363925934, 0.07499728351831436, 0.22687336802482605, 0.13513413071632385, -0.06941263377666473, -0.04878778010606766, -0.9213232398033142, -0.45907971262931824, -0.02281796559691429, 0.41030392050743103, -0.1955825537443161, 0.1303284466266632, 0.0028402614407241344]} +{"t": 6.652, "q": [-0.3407278060913086, -0.009556700475513935, 0.004620204214006662, 0.6401216387748718, -0.33996066451072693, 0.017191991209983826, -0.37306925654411316, 0.007908523082733154, -0.005316582508385181, 0.6005875468254089, -0.2892831265926361, 0.0027267790865153074, 0.0007365542696788907, -0.010681836865842342, -0.10406234115362167, -0.9253259897232056, 0.14292387664318085, 0.07498529553413391, 0.21956299245357513, 0.1350262612104416, -0.06869357824325562, -0.04887166991829872, -0.9298800230026245, -0.46177616715431213, -0.02280598133802414, 0.4047432243824005, -0.19582223892211914, 0.13091567158699036, 0.0028282771818339825]} +{"t": 6.6689, "q": [-0.33950063586235046, -0.009411824867129326, 0.004807690624147654, 0.6396188735961914, -0.34058237075805664, 0.016562240198254585, -0.37198692560195923, 0.008334629237651825, -0.005236231256276369, 0.600723922252655, -0.28939110040664673, 0.002626254456117749, 0.0005490677431225777, -0.010887331329286098, -0.10389557480812073, -0.936267614364624, 0.1428879201412201, 0.07500926405191422, 0.21336714923381805, 0.13495436310768127, -0.06808238476514816, -0.04912333935499191, -0.938808262348175, -0.46396929025650024, -0.022770028561353683, 0.39938628673553467, -0.19570240378379822, 0.1309276670217514, 0.002960103563964367]} +{"t": 6.6856, "q": [-0.3377962112426758, -0.00925842672586441, 0.00512909609824419, 0.6388518810272217, -0.34103551506996155, 0.016028007492423058, -0.37073418498039246, 0.008777778595685959, -0.004928217735141516, 0.6006983518600464, -0.2894822359085083, 0.0024821823462843895, 0.00037497308221645653, -0.010925634764134884, -0.10339226573705673, -0.9476046562194824, 0.1429837942123413, 0.07503323256969452, 0.20713534951210022, 0.13495436310768127, -0.06787864863872528, -0.04941096156835556, -0.9495221376419067, -0.46613842248916626, -0.02280598133802414, 0.39622244238853455, -0.19567842781543732, 0.13096360862255096, 0.002972087822854519]} +{"t": 6.7024, "q": [-0.33528217673301697, -0.009173205122351646, 0.005530852824449539, 0.6378206610679626, -0.34134578704833984, 0.015618512406945229, -0.3690553307533264, 0.008956743404269218, -0.004606812261044979, 0.6006472110748291, -0.2896358072757721, 0.002316845580935478, 0.00016070275160018355, -0.010926376096904278, -0.10184776037931442, -0.9587979316711426, 0.14301975071430206, 0.07500926405191422, 0.20057997107505798, 0.13434316217899323, -0.06773483753204346, -0.04951881989836693, -0.9615423083305359, -0.4688708186149597, -0.023093601688742638, 0.3945087194442749, -0.1955825537443161, 0.13123925030231476, 0.002984072081744671]} +{"t": 6.7192, "q": [-0.3328874707221985, -0.009207293391227722, 0.005892434157431126, 0.6363974809646606, -0.3413947820663452, 0.015545430593192577, -0.367214560508728, 0.008948220871388912, -0.004365758039057255, 0.6005875468254089, -0.29001370072364807, 0.0019504812080413103, 9.374327055411413e-05, -0.01098027266561985, -0.10046201944351196, -0.9689605832099915, 0.14289990067481995, 0.07504522055387497, 0.1955346167087555, 0.1324017196893692, -0.06705173850059509, -0.04953080415725708, -0.9729033708572388, -0.4724421203136444, -0.023489082232117653, 0.39242345094680786, -0.19458787143230438, 0.1314309984445572, 0.003055977402254939]} +{"t": 6.736, "q": [-0.33075693249702454, -0.009249905124306679, 0.005919218063354492, 0.635246992111206, -0.34148460626602173, 0.015413916669785976, -0.36541637778282166, 0.008956743404269218, -0.004338974133133888, 0.6003063321113586, -0.2905465066432953, 0.0017660928424447775, -2.6783791327034123e-05, -0.010706725530326366, -0.09959744662046432, -0.9787037372589111, 0.14094647765159607, 0.07482950389385223, 0.19142402708530426, 0.13013669848442078, -0.06657236814498901, -0.04954278841614723, -0.9845280647277832, -0.4757857322692871, -0.025106951594352722, 0.39094939827919006, -0.1929340362548828, 0.1314309984445572, 0.0028881982434540987]} +{"t": 6.7527, "q": [-0.328438937664032, -0.009445913136005402, 0.005946001503616571, 0.6344629526138306, -0.34155401587486267, 0.015275302343070507, -0.36399319767951965, 0.00888004433363676, -0.004258622881025076, 0.6003574728965759, -0.2912420332431793, 0.0016189763555303216, -8.035137580009177e-05, -0.010493963025510311, -0.09878502041101456, -0.9878596663475037, 0.13887320458889008, 0.0746377557516098, 0.18671423196792603, 0.12837502360343933, -0.06690792739391327, -0.049626678228378296, -0.9957692623138428, -0.4769601821899414, -0.027060380205512047, 0.3903621733188629, -0.19130419194698334, 0.13149091601371765, 0.002636529505252838]} +{"t": 6.7696, "q": [-0.32731401920318604, -0.009539656341075897, 0.005865650251507759, 0.6339772343635559, -0.3416478931903839, 0.01525267492979765, -0.36316654086112976, 0.008760734461247921, -0.0041916631162166595, 0.6004000902175903, -0.29221707582473755, 0.0015678555937483907, 1.3391895663517062e-05, -0.01034947857260704, -0.0985257625579834, -0.9970036745071411, 0.13671603798866272, 0.07406251132488251, 0.18328674137592316, 0.12646952271461487, -0.0659012570977211, -0.049674615263938904, -1.0042061805725098, -0.4767923951148987, -0.028354676440358162, 0.38988280296325684, -0.18905115127563477, 0.1315028965473175, 0.0024927188642323017]} +{"t": 6.7863, "q": [-0.3267430365085602, -0.009531134739518166, 0.005490677431225777, 0.6339346170425415, -0.341651976108551, 0.015230854973196983, -0.36261260509490967, 0.008743690326809883, -0.0045264605432748795, 0.6006642580032349, -0.29313138127326965, 0.0012052194215357304, 0.0002544460294302553, -0.010288618505001068, -0.09848489612340927, -1.0060997009277344, 0.13425926864147186, 0.07377488911151886, 0.17989520728588104, 0.1251632422208786, -0.06418751180171967, -0.0499262809753418, -1.0111570358276367, -0.4763849377632141, -0.029205556958913803, 0.3891637325286865, -0.1856476366519928, 0.13153885304927826, 0.002996056340634823]} +{"t": 6.803, "q": [-0.3267259895801544, -0.009445913136005402, 0.005196055397391319, 0.6340113282203674, -0.3417009711265564, 0.015143250115215778, -0.362587034702301, 0.008726646192371845, -0.004861257970333099, 0.6009454727172852, -0.2939583361148834, 0.0007624197169207036, 0.0004151487664785236, -0.010334284044802189, -0.09847500175237656, -1.0140931606292725, 0.1324736326932907, 0.07267234474420547, 0.1756887435913086, 0.12203536927700043, -0.06261757761240005, -0.050333745777606964, -1.0174607038497925, -0.47772717475891113, -0.029744846746325493, 0.3883967697620392, -0.18396984040737152, 0.1315268725156784, 0.002960103563964367]} +{"t": 6.8198, "q": [-0.32671746611595154, -0.009360691532492638, 0.004995177034288645, 0.6340965032577515, -0.34168875217437744, 0.01513607893139124, -0.3625614643096924, 0.008726646192371845, -0.00516927195712924, 0.6010818481445312, -0.294379860162735, 0.00047595627256669104, 0.0005758515326306224, -0.010303840972483158, -0.09847483783960342, -1.021679162979126, 0.12934574484825134, 0.07111439108848572, 0.1720934808254242, 0.11743342131376266, -0.06095176935195923, -0.05110073462128639, -1.0235366821289062, -0.4767564535140991, -0.03179414942860603, 0.3881690502166748, -0.18206435441970825, 0.13167068362236023, 0.0028642297256737947]} +{"t": 6.8366, "q": [-0.32680267095565796, -0.009283993393182755, 0.004941609688103199, 0.6341561675071716, -0.341672420501709, 0.015121699310839176, -0.3627489507198334, 0.008743690326809883, -0.005196055397391319, 0.6012011766433716, -0.29528218507766724, 0.00023624335881322622, 0.0009776083752512932, -0.010227769613265991, -0.09842375665903091, -1.0290495157241821, 0.12524713575839996, 0.07038335502147675, 0.16926519572734833, 0.11417371034622192, -0.05872270464897156, -0.05132843554019928, -1.0295528173446655, -0.47574976086616516, -0.03266899660229683, 0.3877376317977905, -0.18066219985485077, 0.13169464468955994, 0.0028642297256737947]} +{"t": 6.8533, "q": [-0.3269731104373932, -0.009164683520793915, 0.004847866017371416, 0.6342584490776062, -0.34166017174720764, 0.015129086561501026, -0.3629534840583801, 0.008777778595685959, -0.00516927195712924, 0.601243793964386, -0.2958216667175293, 0.0004425517108757049, 0.0012052706442773342, -0.01002237107604742, -0.09827568382024765, -1.0361441373825073, 0.12071710079908371, 0.06938866525888443, 0.16666461527347565, 0.11139337718486786, -0.05709284916520119, -0.05153216794133186, -1.0357846021652222, -0.47540223598480225, -0.03301654011011124, 0.3874020576477051, -0.1792600452899933, 0.13176655769348145, 0.0028162929229438305]} +{"t": 6.87, "q": [-0.32707539200782776, -0.009062417782843113, 0.004700555466115475, 0.6343863010406494, -0.3416560888290405, 0.015136383473873138, -0.36320915818214417, 0.008794822730123997, -0.005222839303314686, 0.6013630628585815, -0.29596608877182007, 0.0002916360681410879, 0.0018212978029623628, -0.009931115433573723, -0.09811298549175262, -1.0434545278549194, 0.11673834174871445, 0.06916096061468124, 0.16449548304080963, 0.11009907722473145, -0.05655355751514435, -0.05143629387021065, -1.0404105186462402, -0.47530636191368103, -0.033184319734573364, 0.38580816984176636, -0.17887654900550842, 0.13174258172512054, 0.0032716935966163874]} +{"t": 6.8868, "q": [-0.3271946907043457, -0.008934586308896542, 0.004553244449198246, 0.6346589922904968, -0.3416560888290405, 0.015121860429644585, -0.36334550380706787, 0.008837433531880379, -0.0053701503202319145, 0.6014994382858276, -0.29606106877326965, 0.0002127020707121119, 0.001794514013454318, -0.009938780218362808, -0.09799634665250778, -1.0503095388412476, 0.11477292329072952, 0.06890929490327835, 0.16140355169773102, 0.10903248190879822, -0.05516338720917702, -0.05131645128130913, -1.0446889400482178, -0.47525840997695923, -0.033304162323474884, 0.3845018744468689, -0.17887654900550842, 0.1317785382270813, 0.0032597093377262354]} +{"t": 6.9035, "q": [-0.32707539200782776, -0.008798232302069664, 0.0045800283551216125, 0.6347612738609314, -0.34169691801071167, 0.015063391998410225, -0.3633795976638794, 0.008931176736950874, -0.005249623209238052, 0.6015079617500305, -0.29614365100860596, 0.0001409325486747548, 0.0014998923288658261, -0.009961578994989395, -0.0980522632598877, -1.0562776327133179, 0.11446133255958557, 0.06876548379659653, 0.15640611946582794, 0.10872089117765427, -0.05403687059879303, -0.05126851424574852, -1.0480564832687378, -0.4751865267753601, -0.033843450248241425, 0.38308775424957275, -0.17833726108074188, 0.1318264752626419, 0.003187804017215967]} +{"t": 6.9202, "q": [-0.3270242512226105, -0.00877266563475132, 0.004646987654268742, 0.6351021528244019, -0.3417050838470459, 0.015063302591443062, -0.3633795976638794, 0.00896526500582695, -0.00516927195712924, 0.6015250086784363, -0.29623448848724365, 5.475516081787646e-05, 0.0014731085393577814, -0.009938716888427734, -0.09813839197158813, -1.0622577667236328, 0.11474895477294922, 0.06881342083215714, 0.1507735401391983, 0.10874485969543457, -0.05283844843506813, -0.051292482763528824, -1.050525188446045, -0.4745393693447113, -0.035065844655036926, 0.3820091784000397, -0.17740248143672943, 0.13181449472904205, 0.003175819758325815]} +{"t": 6.9369, "q": [-0.32711800932884216, -0.008755622431635857, 0.0045800283551216125, 0.6355793476104736, -0.3417132496833801, 0.01507775392383337, -0.36336255073547363, 0.008948220871388912, -0.005155880004167557, 0.6015164852142334, -0.29645124077796936, 0.00038906215922906995, 0.0015266761183738708, -0.009938707575201988, -0.09814853221178055, -1.06918466091156, 0.11473697423934937, 0.06878945231437683, 0.14452975988388062, 0.10862501710653305, -0.05113668739795685, -0.05126851424574852, -1.0517475605010986, -0.47445547580718994, -0.036264266818761826, 0.38142192363739014, -0.176240012049675, 0.13179051876068115, 0.0031997880432754755]} +{"t": 6.9536, "q": [-0.3272884488105774, -0.008815276436507702, 0.004472893197089434, 0.6362526416778564, -0.3418111801147461, 0.01506238803267479, -0.36334550380706787, 0.008871521800756454, -0.005222839303314686, 0.6015250086784363, -0.2968931794166565, 0.0010866464581340551, 0.0014998923288658261, -0.009893035516142845, -0.09819898009300232, -1.0753804445266724, 0.11466506868600845, 0.06880144029855728, 0.13801033794879913, 0.10814564675092697, -0.04884770140051842, -0.05120859295129776, -1.051843523979187, -0.47443151473999023, -0.03742673620581627, 0.38114631175994873, -0.17588049173355103, 0.13176655769348145, 0.0031398669816553593]} +{"t": 6.9704, "q": [-0.32772305607795715, -0.008840843103826046, 0.004405933897942305, 0.6374627351760864, -0.3419416844844818, 0.015148395672440529, -0.3636949062347412, 0.008837433531880379, -0.005155880004167557, 0.6016442775726318, -0.29731646180152893, 0.0012487533967942, 0.0014731085393577814, -0.00986261386424303, -0.09816840291023254, -1.0813605785369873, 0.11482086032629013, 0.06959239393472672, 0.1326054483652115, 0.10760635882616043, -0.046618636697530746, -0.05102883279323578, -1.0510884523391724, -0.4740719795227051, -0.037930071353912354, 0.3805590867996216, -0.1754850149154663, 0.13170664012432098, 0.003020024858415127]} +{"t": 6.9871, "q": [-0.32806396484375, -0.008840843103826046, 0.004379149992018938, 0.6384939551353455, -0.3423294723033905, 0.014832654036581516, -0.3647431433200836, 0.008845956064760685, -0.00508892023935914, 0.601635754108429, -0.29869818687438965, 0.0005791028379462659, 0.0011115273227915168, -0.009855003096163273, -0.09815315902233124, -1.086010456085205, 0.11600729823112488, 0.07059907168149948, 0.1290341466665268, 0.1076902449131012, -0.045096639543771744, -0.050885021686553955, -1.0504652261734009, -0.47265782952308655, -0.03783419728279114, 0.3796003460884094, -0.17528127133846283, 0.1317306011915207, 0.0029241510201245546]} +{"t": 7.0038, "q": [-0.3284304141998291, -0.00883232057094574, 0.004539852496236563, 0.6394228339195251, -0.3436889052391052, 0.01269032433629036, -0.3657743036746979, 0.008845956064760685, -0.004941609688103199, 0.6015931963920593, -0.3014184832572937, -0.0007624817662872374, 0.0007767299539409578, -0.009885445237159729, -0.09814318269491196, -1.089150309562683, 0.11673834174871445, 0.07062304019927979, 0.12628977000713348, 0.10830144584178925, -0.0445094108581543, -0.050885021686553955, -1.0489553213119507, -0.47051265835762024, -0.03783419728279114, 0.3795883357524872, -0.17522135376930237, 0.13171862065792084, 0.0028522456996142864]} +{"t": 7.0205, "q": [-0.3293934166431427, -0.008943108841776848, 0.004553244449198246, 0.6405392289161682, -0.34375694394111633, 0.013278363272547722, -0.36752986907958984, 0.008726646192371845, -0.004767514765262604, 0.6016442775726318, -0.30127039551734924, -0.0003578648320399225, 0.0009910003282129765, -0.009931087493896484, -0.09818397462368011, -1.0917030572891235, 0.11721770465373993, 0.0709705799818039, 0.1227424368262291, 0.10872089117765427, -0.044437509030103683, -0.05093295872211456, -1.0476490259170532, -0.4688708186149597, -0.03781023249030113, 0.37962430715560913, -0.17510151863098145, 0.13161076605319977, 0.0029241510201245546]} +{"t": 7.0373, "q": [-0.3308592140674591, -0.009147639386355877, 0.0045264605432748795, 0.6417579054832458, -0.34426021575927734, 0.013498730957508087, -0.36820313334465027, 0.008411328308284283, -0.00479429867118597, 0.6018062233924866, -0.3012172281742096, -9.018470882438123e-05, 0.0018212978029623628, -0.009893004782497883, -0.09828007221221924, -1.09421968460083, 0.11893144994974136, 0.0713420957326889, 0.11881160736083984, 0.10874485969543457, -0.044437509030103683, -0.050825100392103195, -1.0466183423995972, -0.4679720103740692, -0.037762295454740524, 0.3793606460094452, -0.1751134991645813, 0.1312512308359146, 0.003043993143364787]} +{"t": 7.054, "q": [-0.3329641819000244, -0.009309559129178524, 0.004004176706075668, 0.6435304880142212, -0.3448702394962311, 0.013630801811814308, -0.3690297603607178, 0.00812157616019249, -0.00516927195712924, 0.6019340753555298, -0.3011114001274109, 0.00041617071838118136, 0.00287925754673779, -0.009824476204812527, -0.09839628636837006, -1.0970839262008667, 0.11885954439640045, 0.07143796980381012, 0.11486879736185074, 0.10890065133571625, -0.04436560347676277, -0.05069327354431152, -1.0456955432891846, -0.4675525724887848, -0.03781023249030113, 0.37879738211631775, -0.175137460231781, 0.1306280493736267, 0.0031158984638750553]} +{"t": 7.0708, "q": [-0.3348134756088257, -0.009403303265571594, 0.0034149333368986845, 0.6453286409378052, -0.34583720564842224, 0.013563120737671852, -0.37004390358924866, 0.007823302410542965, -0.0055978125892579556, 0.6023431420326233, -0.3008654713630676, 0.0008490196196362376, 0.0033747577108442783, -0.009771205484867096, -0.09840106964111328, -1.0988816022872925, 0.11900335550308228, 0.07112637907266617, 0.11012304574251175, 0.10949986428022385, -0.044389571994543076, -0.05069327354431152, -1.0447487831115723, -0.4663541316986084, -0.03804991394281387, 0.37822213768959045, -0.1750655621290207, 0.13017265498638153, 0.003091930178925395]} +{"t": 7.0875, "q": [-0.33653494715690613, -0.009454434737563133, 0.003441717242822051, 0.6466155052185059, -0.3464890122413635, 0.014109591022133827, -0.37124550342559814, 0.007661381736397743, -0.005490677431225777, 0.602735161781311, -0.30043917894363403, 0.001599306589923799, 0.0036024199798703194, -0.009771185927093029, -0.09845174849033356, -1.099912166595459, 0.11923106014728546, 0.07091066241264343, 0.10719889402389526, 0.11025486886501312, -0.04496481269598007, -0.05074121057987213, -1.0460550785064697, -0.465707004070282, -0.03838547319173813, 0.37674808502197266, -0.17512547969818115, 0.1297532021999359, 0.003020024858415127]} +{"t": 7.1042, "q": [-0.33827343583106995, -0.009335125796496868, 0.0034149333368986845, 0.647212028503418, -0.3466024398803711, 0.014312171377241611, -0.3726516664028168, 0.00743128452450037, -0.005263015162199736, 0.6027862429618835, -0.3001023828983307, 0.0020749454852193594, 0.0036827712319791317, -0.009892751462757587, -0.09894929826259613, -1.1007630825042725, 0.12010590732097626, 0.07075486332178116, 0.1061922162771225, 0.11087805032730103, -0.04533632472157478, -0.05096891149878502, -1.0488953590393066, -0.4649519920349121, -0.03837348893284798, 0.37342846393585205, -0.175137460231781, 0.12936970591545105, 0.003043993143364787]} +{"t": 7.1209, "q": [-0.3396795988082886, -0.009224338456988335, 0.0032810145057737827, 0.6476466655731201, -0.3465982675552368, 0.014348553493618965, -0.37390440702438354, 0.007141532842069864, -0.005062136333435774, 0.6025902628898621, -0.2994329631328583, 0.0029607333708554506, 0.0036827712319791317, -0.010075308382511139, -0.09914297610521317, -1.1010866165161133, 0.12179568409919739, 0.07272028177976608, 0.10221345722675323, 0.11094995588064194, -0.045528072863817215, -0.050573430955410004, -1.0519872903823853, -0.4637775421142578, -0.03834952041506767, 0.3692699372768402, -0.17512547969818115, 0.12856677174568176, 0.003032008884474635]} +{"t": 7.1378, "q": [-0.34102609753608704, -0.009130595251917839, 0.003093527862802148, 0.6482091546058655, -0.34660205245018005, 0.014442977495491505, -0.37485888600349426, 0.006851780693978071, -0.005035352893173695, 0.6024624109268188, -0.2986408770084381, 0.003946118522435427, 0.0038568659219890833, -0.010265521705150604, -0.09920977801084518, -1.101685881614685, 0.12264656275510788, 0.07270829379558563, 0.09438775479793549, 0.11060241609811783, -0.04773316904902458, -0.05004612356424332, -1.0536410808563232, -0.462531179189682, -0.03864912688732147, 0.3638770282268524, -0.17505358159542084, 0.1278357356786728, 0.0027803401462733746]} +{"t": 7.1546, "q": [-0.34226179122924805, -0.008977197110652924, 0.0028256899677217007, 0.6489761471748352, -0.34665462374687195, 0.014566117897629738, -0.3755236268043518, 0.006280798930674791, -0.005155880004167557, 0.6024112701416016, -0.2983543276786804, 0.004421654623001814, 0.0041247038170695305, -0.010478561744093895, -0.09926143288612366, -1.103327751159668, 0.12235894054174423, 0.0725165456533432, 0.08451275527477264, 0.11069829016923904, -0.049327071756124496, -0.05004612356424332, -1.0537968873977661, -0.45954710245132446, -0.0388169065117836, 0.35807666182518005, -0.17495770752429962, 0.1267331838607788, 0.0024447820615023375]} +{"t": 7.1717, "q": [-0.34298616647720337, -0.009087984450161457, 0.002758730435743928, 0.6496152877807617, -0.3469058573246002, 0.014985592104494572, -0.375881552696228, 0.005607551895081997, -0.005182663444429636, 0.6024112701416016, -0.2980791926383972, 0.004904481582343578, 0.004446109291166067, -0.010448165237903595, -0.09914970397949219, -1.1054129600524902, 0.1221671923995018, 0.07218098640441895, 0.076435387134552, 0.11092598736286163, -0.05036969855427742, -0.05001017078757286, -1.0526344776153564, -0.4539744257926941, -0.03900865465402603, 0.3539420962333679, -0.17535318434238434, 0.12469586730003357, 0.0018695391481742263]} +{"t": 7.1886, "q": [-0.3436935245990753, -0.009445913136005402, 0.002865865593776107, 0.6499220728874207, -0.3472541272640228, 0.015622313134372234, -0.3761712908744812, 0.004832039587199688, -0.005075528286397457, 0.6024112701416016, -0.2978612780570984, 0.0053153736516833305, 0.005329974461346865, -0.010242754593491554, -0.09903204441070557, -1.1083970069885254, 0.12180766463279724, 0.07029946893453598, 0.07015565782785416, 0.11187274008989334, -0.05080113187432289, -0.05005810782313347, -1.0515198707580566, -0.45191314816474915, -0.038960717618465424, 0.34916040301322937, -0.17588049173355103, 0.12401276081800461, 0.0018935075495392084]} +{"t": 7.2054, "q": [-0.3439747393131256, -0.010059505701065063, 0.003093527862802148, 0.6500073075294495, -0.3473432958126068, 0.015752380713820457, -0.3763502538204193, 0.003971305675804615, -0.004847866017371416, 0.6023346185684204, -0.29767608642578125, 0.005639658309519291, 0.005651379935443401, -0.009854749776422977, -0.09881207346916199, -1.11142897605896, 0.12191552668809891, 0.06913699209690094, 0.06344448775053024, 0.11357450485229492, -0.051663994789123535, -0.05002215504646301, -1.0488234758377075, -0.4496840834617615, -0.03880492225289345, 0.34369558095932007, -0.1751614362001419, 0.12163988500833511, 0.0019414444686844945]} +{"t": 7.2222, "q": [-0.3442985713481903, -0.010690141469240189, 0.0032274469267576933, 0.6500243544578552, -0.34742432832717896, 0.015897102653980255, -0.37669965624809265, 0.0031872710678726435, -0.004673771560192108, 0.6023346185684204, -0.29750335216522217, 0.005956791806966066, 0.00571833923459053, -0.00921563245356083, -0.09863677620887756, -1.115084171295166, 0.12234695255756378, 0.06912501156330109, 0.05692506954073906, 0.11544404178857803, -0.0526467002928257, -0.04990231245756149, -1.04454505443573, -0.4460408687591553, -0.038840875029563904, 0.33481529355049133, -0.17507754266262054, 0.1194228008389473, 0.0019534286111593246]} +{"t": 7.2389, "q": [-0.3443070948123932, -0.010877628810703754, 0.003240838646888733, 0.6501692533493042, -0.3475132882595062, 0.01609986647963524, -0.37679341435432434, 0.0028549085836857557, -0.0041247038170695305, 0.6023346185684204, -0.297384113073349, 0.006180275231599808, 0.005383542273193598, -0.008135088719427586, -0.09866268932819366, -1.120321273803711, 0.12383300065994263, 0.0692448541522026, 0.050405651330947876, 0.11838017404079437, -0.053593456745147705, -0.04977048560976982, -1.0398712158203125, -0.4407438635826111, -0.03928428888320923, 0.32066190242767334, -0.17501762509346008, 0.11757723242044449, 0.0010546118719503284]} +{"t": 7.2556, "q": [-0.34413665533065796, -0.010877628810703754, 0.0031203117687255144, 0.6502033472061157, -0.3477567136287689, 0.01638856530189514, -0.37697237730026245, 0.002752643311396241, -0.0033881496638059616, 0.6023175716400146, -0.2973100244998932, 0.00630998145788908, 0.004995177034288645, -0.007434902712702751, -0.09896451979875565, -1.1246836185455322, 0.12722453474998474, 0.07328353822231293, 0.04508465528488159, 0.12082495540380478, -0.054132744669914246, -0.049135323613882065, -1.0364078283309937, -0.4329541027545929, -0.03922436758875847, 0.3072395920753479, -0.17489778995513916, 0.11586348712444305, 0.00013182648399379104]} +{"t": 7.2724, "q": [-0.3439832627773285, -0.010945805348455906, 0.0032810145057737827, 0.6505016088485718, -0.3478822708129883, 0.016612842679023743, -0.37687861919403076, 0.0027441212441772223, -0.0028926494996994734, 0.6022067666053772, -0.2971082925796509, 0.006648584268987179, 0.004874649923294783, -0.0067651234567165375, -0.09940843284130096, -1.1299446821212769, 0.13248561322689056, 0.0767349973320961, 0.0403149351477623, 0.1227903738617897, -0.05424060299992561, -0.04891960695385933, -1.0310149192810059, -0.4238940179347992, -0.03831356763839722, 0.2934097945690155, -0.17467008531093597, 0.11382617056369781, -0.0009227853151969612]} +{"t": 7.2893, "q": [-0.3441196084022522, -0.01099693775177002, 0.003321190131828189, 0.6510128974914551, -0.34800785779953003, 0.016837121918797493, -0.3768104612827301, 0.0027270768769085407, -0.002839081920683384, 0.6021215319633484, -0.29700523614883423, 0.006799777504056692, 0.004821082577109337, -0.0065063475631177425, -0.09954959899187088, -1.1354213953018188, 0.13822604715824127, 0.07848469167947769, 0.03681553900241852, 0.12533102929592133, -0.05436044558882713, -0.04893159121274948, -1.0254422426223755, -0.41319212317466736, -0.03733086213469505, 0.282504141330719, -0.1746101677417755, 0.10966764390468597, -0.0018575548892840743]} +{"t": 7.306, "q": [-0.3444690406322479, -0.011022504419088364, 0.003254230599850416, 0.6515412926673889, -0.34809696674346924, 0.01699630729854107, -0.3768104612827301, 0.0026929883752018213, -0.0029328251257538795, 0.6020874381065369, -0.2969515323638916, 0.006864488124847412, 0.004888041876256466, -0.006338940467685461, -0.0995086282491684, -1.14092218875885, 0.1417614072561264, 0.0794074758887291, 0.03435877338051796, 0.12838700413703918, -0.05442036688327789, -0.04899151250720024, -1.020420789718628, -0.40533047914505005, -0.03743872046470642, 0.2735878825187683, -0.17467008531093597, 0.10584467649459839, -0.0032477250788360834]} +{"t": 7.3228, "q": [-0.34491217136383057, -0.011175902560353279, 0.0030131766106933355, 0.6519674062728882, -0.3481212556362152, 0.017039692029356956, -0.3767252266407013, 0.0024799355305731297, -0.0032676225528120995, 0.6019681692123413, -0.2969021499156952, 0.0069509707391262054, 0.006588812451809645, -0.006163943093270063, -0.09937118738889694, -1.1454641819000244, 0.14433801174163818, 0.08048605918884277, 0.02961301989853382, 0.130975604057312, -0.05452822521328926, -0.04900349676609039, -1.0159986019134521, -0.3976605534553528, -0.037642452865839005, 0.2649592459201813, -0.17512547969818115, 0.1026448905467987, -0.003906857222318649]} +{"t": 7.3396, "q": [-0.34527862071990967, -0.011286689899861813, 0.0029730007518082857, 0.6523253321647644, -0.3481172025203705, 0.01703246496617794, -0.3764013946056366, 0.002130528911948204, -0.00388364982791245, 0.6019340753555298, -0.29680660367012024, 0.0069718677550554276, 0.007928002625703812, -0.0059661115519702435, -0.09924893081188202, -1.1486520767211914, 0.14696255326271057, 0.0821278989315033, 0.023860592395067215, 0.13201822340488434, -0.05500759556889534, -0.04899151250720024, -1.013242244720459, -0.39067375659942627, -0.040638506412506104, 0.2566182017326355, -0.1753651648759842, 0.1004997119307518, -0.004745753016322851]} +{"t": 7.3564, "q": [-0.3456194996833801, -0.011312256567180157, 0.003133703488856554, 0.652580976486206, -0.34813347458839417, 0.017046846449375153, -0.37632468342781067, 0.0018663433147594333, -0.0043523660860955715, 0.6019425988197327, -0.2968192994594574, 0.007008173502981663, 0.008584205061197281, -0.005707413889467716, -0.09908593446016312, -1.1515642404556274, 0.14999456703662872, 0.08483633399009705, 0.018515627831220627, 0.13201822340488434, -0.05619403347373009, -0.04885968565940857, -1.0114326477050781, -0.38638341426849365, -0.0424361415207386, 0.24644361436367035, -0.17530524730682373, 0.09920541942119598, -0.005033374764025211]} +{"t": 7.3731, "q": [-0.3457132577896118, -0.011261124163866043, 0.0031604873947799206, 0.652725875377655, -0.3481577932834625, 0.01709020882844925, -0.37623947858810425, 0.0018322548130527139, -0.004553244449198246, 0.601917028427124, -0.29683181643486023, 0.007015520241111517, 0.008570813573896885, -0.005707411095499992, -0.09907577931880951, -1.1544404029846191, 0.15382951498031616, 0.08972589671611786, 0.015195997431874275, 0.1318504512310028, -0.05698499083518982, -0.04885968565940857, -1.0114686489105225, -0.3816256821155548, -0.04200470820069313, 0.23628097772598267, -0.175137460231781, 0.09809088706970215, -0.005045359022915363]} +{"t": 7.3898, "q": [-0.3456876873970032, -0.011133292689919472, 0.0031203117687255144, 0.6527599692344666, -0.34818631410598755, 0.01709725521504879, -0.3761798143386841, 0.002070873975753784, -0.004553244449198246, 0.6017636060714722, -0.29678189754486084, 0.0070151095278561115, 0.008490461856126785, -0.005852011032402515, -0.09902031719684601, -1.157280683517456, 0.15795208513736725, 0.09463942795991898, 0.013170663267374039, 0.1314549595117569, -0.057572219520807266, -0.04887166991829872, -1.0117442607879639, -0.37520211935043335, -0.04201669245958328, 0.22585470974445343, -0.17501762509346008, 0.09781524538993835, -0.004613926634192467]} +{"t": 7.4066, "q": [-0.34569621086120605, -0.011082159355282784, 0.0031604873947799206, 0.6528707146644592, -0.34821072220802307, 0.017111564055085182, -0.376069039106369, 0.0023094932548701763, -0.004633595701307058, 0.6016272306442261, -0.2967693507671356, 0.007007744628936052, 0.008490461856126785, -0.0061945002526044846, -0.09886427968740463, -1.159833312034607, 0.1612357646226883, 0.09786318242549896, 0.011672635562717915, 0.13141901791095734, -0.05820738151669502, -0.04891960695385933, -1.0142608880996704, -0.37001296877861023, -0.04198073968291283, 0.216902494430542, -0.17484985291957855, 0.09769540280103683, -0.004014715552330017]} +{"t": 7.4233, "q": [-0.3457303047180176, -0.011090680956840515, 0.0031604873947799206, 0.6528621912002563, -0.3482147753238678, 0.0171187911182642, -0.3757196366786957, 0.0023435817565768957, -0.005021960940212011, 0.6013801097869873, -0.2967693507671356, 0.007007744628936052, 0.008610988967120647, -0.006955571472644806, -0.09854230284690857, -1.1631768941879272, 0.1633569747209549, 0.1025969535112381, 0.010006828233599663, 0.13149091601371765, -0.05903429538011551, -0.04881174862384796, -1.0190426111221313, -0.3651593327522278, -0.042388204485177994, 0.20792630314826965, -0.1746101677417755, 0.09768342226743698, -0.0027683561202138662]} +{"t": 7.4401, "q": [-0.34593483805656433, -0.011065115220844746, 0.0031872710678726435, 0.6528707146644592, -0.34820258617401123, 0.01709710992872715, -0.3755832612514496, 0.0022498385515064, -0.0055442447774112225, 0.6012693047523499, -0.2967900335788727, 0.006986204534769058, 0.008597597479820251, -0.007488307077437639, -0.09837165474891663, -1.1654778718948364, 0.1654542088508606, 0.10922423005104065, 0.008017446845769882, 0.1315508335828781, -0.06054430454969406, -0.047805074602365494, -1.025717854499817, -0.3619835376739502, -0.046486809849739075, 0.20079569518566132, -0.1745142936706543, 0.09765945374965668, -0.002061286708340049]} +{"t": 7.4568, "q": [-0.3459518849849701, -0.011065115220844746, 0.0031604873947799206, 0.6528707146644592, -0.34819847345352173, 0.01711893454194069, -0.3754469156265259, 0.002258360618725419, -0.005745123140513897, 0.6011244654655457, -0.29637327790260315, 0.006236747372895479, 0.008624380454421043, -0.007792705204337835, -0.09840302914381027, -1.166172981262207, 0.16769526898860931, 0.1170738935470581, 0.004589958116412163, 0.13162274658679962, -0.06193447485566139, -0.04671451076865196, -1.0345981121063232, -0.3601858913898468, -0.04971056804060936, 0.19449199736118317, -0.17445436120033264, 0.09765945374965668, -0.0007789746159687638]} +{"t": 7.4736, "q": [-0.34591779112815857, -0.011005460284650326, 0.0031604873947799206, 0.6528451442718506, -0.3482106029987335, 0.01715514250099659, -0.3753531873226166, 0.0023009711876511574, -0.005785298999398947, 0.6010903716087341, -0.29623833298683167, 0.005960424430668354, 0.009106488898396492, -0.008157988078892231, -0.09839405119419098, -1.1658014059066772, 0.16987639665603638, 0.12409665435552597, -0.00037151097785681486, 0.13169464468955994, -0.06428338587284088, -0.046007439494132996, -1.0451562404632568, -0.3593589663505554, -0.05462409928441048, 0.18648652732372284, -0.17422667145729065, 0.0975036546587944, 0.00044341632747091353]} +{"t": 7.4903, "q": [-0.34588369727134705, -0.010962849482893944, 0.0030533522367477417, 0.6528366804122925, -0.34820619225502014, 0.017307762056589127, -0.3750719428062439, 0.0023094932548701763, -0.006160271819680929, 0.6011074185371399, -0.29615727066993713, 0.005648332182317972, 0.009615381248295307, -0.008584177121520042, -0.09827376157045364, -1.1654059886932373, 0.17166204750537872, 0.13216203451156616, -0.0033316146582365036, 0.13137108087539673, -0.06676411628723145, -0.045815691351890564, -1.0563015937805176, -0.35844817757606506, -0.059909142553806305, 0.17904432117938995, -0.174166738986969, 0.09665277600288391, 0.0011864382540807128]} +{"t": 7.507, "q": [-0.34578144550323486, -0.010928761214017868, 0.0029194331727921963, 0.652802586555481, -0.34818151593208313, 0.01740970090031624, -0.3747395873069763, 0.0023180153220891953, -0.006481677293777466, 0.6011415123939514, -0.29551300406455994, 0.004144593141973019, 0.009749299846589565, -0.009002789855003357, -0.09801680594682693, -1.1637521982192993, 0.17519739270210266, 0.13912487030029297, -0.00601608119904995, 0.13129916787147522, -0.0677228569984436, -0.04574378952383995, -1.0689209699630737, -0.3593589663505554, -0.06494251638650894, 0.1712665557861328, -0.17410682141780853, 0.09607753157615662, 0.0023489082232117653]} +{"t": 7.5237, "q": [-0.3456876873970032, -0.01082649640738964, 0.0027989062946289778, 0.6528111100196838, -0.34828296303749084, 0.017575886100530624, -0.37450096011161804, 0.0023350596893578768, -0.006709339562803507, 0.6012097001075745, -0.2957940697669983, 0.00397289264947176, 0.010057313367724419, -0.009923798963427544, -0.09737741947174072, -1.156238079071045, 0.1771867722272873, 0.14732207357883453, -0.00959936436265707, 0.1306520253419876, -0.0688973143696785, -0.04597148671746254, -1.0825231075286865, -0.3629542589187622, -0.07418235391378403, 0.16471119225025177, -0.173939049243927, 0.09571800380945206, 0.003020024858415127]} +{"t": 7.5405, "q": [-0.34555134177207947, -0.010800929740071297, 0.0024775005877017975, 0.6527855396270752, -0.34759989380836487, 0.01880979724228382, -0.374057799577713, 0.0024288028944283724, -0.007084312848746777, 0.6013119220733643, -0.29594022035598755, 0.004241619259119034, 0.010606381110846996, -0.01126346830278635, -0.09647167474031448, -1.148160696029663, 0.17730660736560822, 0.15293069183826447, -0.014153369702398777, 0.13114337623119354, -0.07051517814397812, -0.04622315615415573, -1.0961731672286987, -0.36720865964889526, -0.08596284687519073, 0.16104401648044586, -0.17372332513332367, 0.0956580862402916, 0.0032956618815660477]} +{"t": 7.5572, "q": [-0.3456706404685974, -0.010732753202319145, 0.002169487066566944, 0.6526662111282349, -0.3472154140472412, 0.019496170803904533, -0.37366577982902527, 0.002633333671838045, -0.0076467725448310375, 0.6013801097869873, -0.2958877980709076, 0.004509111866354942, 0.010807259939610958, -0.012793449684977531, -0.09548261016607285, -1.1428756713867188, 0.1781574934720993, 0.15398530662059784, -0.028150945901870728, 0.13133512437343597, -0.07599197328090668, -0.04694221168756485, -1.1125675439834595, -0.3732606768608093, -0.09708420932292938, 0.15991750359535217, -0.173567533493042, 0.09564609825611115, 0.0033196303993463516]} +{"t": 7.5742, "q": [-0.34566211700439453, -0.010698664002120495, 0.002008784329518676, 0.652350902557373, -0.3469250202178955, 0.020014602690935135, -0.3732908070087433, 0.0029145635198801756, -0.00799496192485094, 0.6013630628585815, -0.29555073380470276, 0.005157948471605778, 0.011530422605574131, -0.013919899240136147, -0.09503419697284698, -1.142108678817749, 0.17831328511238098, 0.15417705476284027, -0.04117779806256294, 0.13161076605319977, -0.08161257207393646, -0.04743356257677078, -1.1279432773590088, -0.37994787096977234, -0.10518554598093033, 0.1597137749195099, -0.17337578535079956, 0.09567006677389145, 0.0032716935966163874]} +{"t": 7.5909, "q": [-0.34539794921875, -0.010673098266124725, 0.001941824913956225, 0.6515583395957947, -0.3466387391090393, 0.02052571438252926, -0.3724641799926758, 0.0031531827989965677, -0.008128880523145199, 0.6013119220733643, -0.29366251826286316, 0.008566964417696, 0.012414286844432354, -0.015160249546170235, -0.0950586274266243, -1.142575979232788, 0.17858892679214478, 0.1574127972126007, -0.0520714595913887, 0.13156282901763916, -0.08809603750705719, -0.04707403853535652, -1.1456080675125122, -0.38553252816200256, -0.11446133255958557, 0.1594381332397461, -0.17302824556827545, 0.0956820547580719, 0.0037031255196779966]} +{"t": 7.6076, "q": [-0.34491217136383057, -0.010724230669438839, 0.0018882573349401355, 0.650714635848999, -0.3463006615638733, 0.02105947770178318, -0.370768278837204, 0.003315103007480502, -0.008343150839209557, 0.6013119220733643, -0.2938068211078644, 0.008358193561434746, 0.013298152014613152, -0.016606148332357407, -0.09489714354276657, -1.1424801349639893, 0.17946377396583557, 0.16117584705352783, -0.06427139788866043, 0.13131116330623627, -0.09218265861272812, -0.046966180205345154, -1.1641836166381836, -0.38945135474205017, -0.12517523765563965, 0.15868312120437622, -0.17191371321678162, 0.09569403529167175, 0.0037390782963484526]} +{"t": 7.6244, "q": [-0.3435656726360321, -0.010894672945141792, 0.0018480815924704075, 0.6499561667442322, -0.34605565667152405, 0.021482912823557854, -0.368825227022171, 0.00364746549166739, -0.008490461856126785, 0.601243793964386, -0.29390987753868103, 0.008206999860703945, 0.014235584996640682, -0.017793625593185425, -0.09409730136394501, -1.1403828859329224, 0.1799071878194809, 0.16290158033370972, -0.07566839456558228, 0.1312752068042755, -0.09501093626022339, -0.04671451076865196, -1.1817405223846436, -0.3928428888320923, -0.1342712640762329, 0.1569933444261551, -0.1700441688299179, 0.0956820547580719, 0.0036671729758381844]} +{"t": 7.6411, "q": [-0.3423640727996826, -0.01091171707957983, 0.001901649171486497, 0.6493255496025085, -0.34599849581718445, 0.021526986733078957, -0.367964506149292, 0.00392869533970952, -0.008557421155273914, 0.6012693047523499, -0.293880432844162, 0.00815605465322733, 0.014824828132987022, -0.018813781440258026, -0.09313423186540604, -1.1354933977127075, 0.1793319433927536, 0.16269783675670624, -0.08507601171731949, 0.131203293800354, -0.09907358884811401, -0.046546731144189835, -1.2004718780517578, -0.39529967308044434, -0.14161759614944458, 0.15610651671886444, -0.16719192266464233, 0.09580189734697342, 0.003463441040366888]} +{"t": 7.6579, "q": [-0.341776043176651, -0.011082159355282784, 0.0019953923765569925, 0.648780107498169, -0.34594544768333435, 0.02159280702471733, -0.36758953332901, 0.00444002216681838, -0.008570813573896885, 0.6012863516807556, -0.2938593029975891, 0.008105197921395302, 0.01511945016682148, -0.019613098353147507, -0.09242904186248779, -1.1305917501449585, 0.17879265546798706, 0.16263791918754578, -0.0936087816953659, 0.1312272697687149, -0.10348378121852875, -0.0463549830019474, -1.2173935174942017, -0.3968815803527832, -0.14760969579219818, 0.1552915871143341, -0.16359665989875793, 0.09584983438253403, 0.0036072516813874245]} +{"t": 7.6746, "q": [-0.34115391969680786, -0.011150335893034935, 0.0019953923765569925, 0.6483369469642639, -0.3459291160106659, 0.021534772589802742, -0.3671037554740906, 0.005087703000754118, -0.008704732172191143, 0.6013374924659729, -0.2937878668308258, 0.007995959371328354, 0.015213193371891975, -0.020054802298545837, -0.09173519164323807, -1.1274758577346802, 0.17625200748443604, 0.16266189515590668, -0.10010423511266708, 0.13119131326675415, -0.11002717167139053, -0.04617521911859512, -1.235381841659546, -0.39802008867263794, -0.15574699640274048, 0.15500396490097046, -0.1616072803735733, 0.09593372046947479, 0.0036791572347283363]} +{"t": 7.6914, "q": [-0.3399523198604584, -0.011073637753725052, 0.002156095113605261, 0.6475955247879028, -0.3459455072879791, 0.021403826773166656, -0.3661237359046936, 0.005692773032933474, -0.008624380454421043, 0.6012863516807556, -0.2937832176685333, 0.007872932590544224, 0.014972139149904251, -0.019712893292307854, -0.09071523696184158, -1.126888632774353, 0.17410682141780853, 0.16447150707244873, -0.10582070797681808, 0.1311793327331543, -0.11611516028642654, -0.04607934504747391, -1.2521837949752808, -0.3989308774471283, -0.1642797589302063, 0.1547163426876068, -0.1607324331998825, 0.09590975195169449, 0.0032237565610557795]} +{"t": 7.7082, "q": [-0.33823084831237793, -0.010707186535000801, 0.0022632302716374397, 0.6469222903251648, -0.3462109863758087, 0.020842166617512703, -0.3649817705154419, 0.00628932099789381, -0.008544029667973518, 0.6012352705001831, -0.29394346475601196, 0.007534010335803032, 0.013833828270435333, -0.019888758659362793, -0.08858074992895126, -1.1270085573196411, 0.17409484088420868, 0.16606540977954865, -0.11120162904262543, 0.13119131326675415, -0.1224188581109047, -0.04647482559084892, -1.2661693096160889, -0.40104010701179504, -0.17173394560813904, 0.15430888533592224, -0.16026504337787628, 0.09587380290031433, 0.003067961661145091]} +{"t": 7.7249, "q": [-0.3364156186580658, -0.010178815573453903, 0.002316797850653529, 0.6466155052185059, -0.34675827622413635, 0.01990712247788906, -0.3637971878051758, 0.007047789636999369, -0.008356543257832527, 0.6011329889297485, -0.29435500502586365, 0.006813384592533112, 0.011021530255675316, -0.020924750715494156, -0.08536195009946823, -1.1306037902832031, 0.17739050090312958, 0.16901353001594543, -0.11653460562229156, 0.131203293800354, -0.13022059202194214, -0.04701411724090576, -1.2777700424194336, -0.4039402902126312, -0.17671938240528107, 0.1516244113445282, -0.16019314527511597, 0.09537046402692795, 0.0028162929229438305]} +{"t": 7.7417, "q": [-0.3349924385547638, -0.009863496758043766, 0.0024775005877017975, 0.6461212038993835, -0.3472571074962616, 0.019088957458734512, -0.36290237307548523, 0.0075846826657652855, -0.007968178018927574, 0.601098895072937, -0.2947543263435364, 0.006157802417874336, 0.008410110138356686, -0.021762317046523094, -0.08349603414535522, -1.137998104095459, 0.18144117295742035, 0.17354357242584229, -0.12141218781471252, 0.1311313956975937, -0.13676397502422333, -0.047038085758686066, -1.2883402109146118, -0.40807485580444336, -0.17659954726696014, 0.14433801174163818, -0.15974971652030945, 0.0938604548573494, 0.0023728765081614256]} +{"t": 7.7584, "q": [-0.3332880139350891, -0.009658966213464737, 0.002758730435743928, 0.6454309225082397, -0.3476247787475586, 0.018620697781443596, -0.3614450693130493, 0.00788295641541481, -0.00772712379693985, 0.6009454727172852, -0.2952241599559784, 0.005495497025549412, 0.006682556122541428, -0.02232559397816658, -0.08259613811969757, -1.1458957195281982, 0.18555176258087158, 0.17737852036952972, -0.12678112089633942, 0.13038836419582367, -0.14071877300739288, -0.046978164464235306, -1.2997491359710693, -0.41184988617897034, -0.17645573616027832, 0.13713549077510834, -0.15942615270614624, 0.09292568266391754, 0.002672482281923294]} +{"t": 7.7751, "q": [-0.3314046263694763, -0.009590789675712585, 0.002731946762651205, 0.6447321176528931, -0.34816813468933105, 0.017925646156072617, -0.35981735587120056, 0.008078965358436108, -0.007673555985093117, 0.6005023121833801, -0.29583534598350525, 0.004762125201523304, 0.005021960940212011, -0.02257680334150791, -0.08196989446878433, -1.1546441316604614, 0.18838003277778625, 0.18075807392597198, -0.13071194291114807, 0.1294056624174118, -0.1451050043106079, -0.046966180205345154, -1.311961054801941, -0.41593649983406067, -0.17704296112060547, 0.13586516678333282, -0.15847939252853394, 0.09278187155723572, 0.0024807346053421497]} +{"t": 7.7919, "q": [-0.3293422758579254, -0.009676010347902775, 0.0029328251257538795, 0.6439310312271118, -0.3485763967037201, 0.0175151489675045, -0.35845381021499634, 0.008147141896188259, -0.007285191211849451, 0.6002722382545471, -0.2961914837360382, 0.004490002058446407, 0.003441717242822051, -0.0229116752743721, -0.08179225772619247, -1.1658494472503662, 0.18948258459568024, 0.1837780922651291, -0.13411545753479004, 0.1281113624572754, -0.1504499614238739, -0.046966180205345154, -1.3238015174865723, -0.42167696356773376, -0.17931996285915375, 0.135949045419693, -0.15758058428764343, 0.09281782805919647, 0.0022889869287610054]} +{"t": 7.8088, "q": [-0.32791054248809814, -0.009744187816977501, 0.0034283252898603678, 0.6428828239440918, -0.34882107377052307, 0.01739674247801304, -0.3576527535915375, 0.00818123109638691, -0.006749515421688557, 0.5998802185058594, -0.2965317666530609, 0.0043480852618813515, 0.002624811604619026, -0.022942116484045982, -0.08176237344741821, -1.1775699853897095, 0.19070497155189514, 0.18820028007030487, -0.1371474713087082, 0.1269848495721817, -0.15602262318134308, -0.046954195946455, -1.3359894752502441, -0.4276331067085266, -0.182699516415596, 0.13596104085445404, -0.15692144632339478, 0.09284179657697678, 0.0024567660875618458]} +{"t": 7.8255, "q": [-0.32694756984710693, -0.009999850764870644, 0.003937217406928539, 0.6416897177696228, -0.349053293466568, 0.01738741062581539, -0.35738855600357056, 0.008070443756878376, -0.006280798930674791, 0.5997694134712219, -0.2969186007976532, 0.004315193276852369, 0.00254446011967957, -0.022835567593574524, -0.08184178918600082, -1.1898897886276245, 0.19220300018787384, 0.19294603168964386, -0.13955630362033844, 0.12656539678573608, -0.15880297124385834, -0.046858321875333786, -1.3483092784881592, -0.4331817924976349, -0.1862228810787201, 0.13650032877922058, -0.15613049268722534, 0.09290171414613724, 0.0028043086640536785]} +{"t": 7.8422, "q": [-0.32665780186653137, -0.010170293040573597, 0.00416487967595458, 0.6408119201660156, -0.34903284907341003, 0.017423925921320915, -0.3572351634502411, 0.007925567217171192, -0.006187055725604296, 0.5995904803276062, -0.29699769616127014, 0.004323111847043037, 0.0027453387156128883, -0.022706186398863792, -0.0818856954574585, -1.204882025718689, 0.1946118324995041, 0.1979314684867859, -0.14087456464767456, 0.12645754218101501, -0.16127172112464905, -0.04671451076865196, -1.361635684967041, -0.4388503432273865, -0.19047728180885315, 0.13648834824562073, -0.1555672287940979, 0.09290171414613724, 0.00355931487865746]} +{"t": 7.859, "q": [-0.32640212774276733, -0.010298124514520168, 0.004151487722992897, 0.640019416809082, -0.3489919900894165, 0.01746785081923008, -0.35706472396850586, 0.007831824012100697, -0.006374542135745287, 0.5994881987571716, -0.29704737663269043, 0.004280102904886007, 0.002986392704769969, -0.022546395659446716, -0.08178824931383133, -1.220269799232483, 0.19676899909973145, 0.20318055152893066, -0.14159362018108368, 0.1263377070426941, -0.16336895525455475, -0.046486809849739075, -1.3757890462875366, -0.443668007850647, -0.19571438431739807, 0.13653628528118134, -0.1552436500787735, 0.09291369467973709, 0.004985437728464603]} +{"t": 7.8757, "q": [-0.326052725315094, -0.01034073531627655, 0.004044352564960718, 0.6392865180969238, -0.348947137594223, 0.01749005727469921, -0.3567749559879303, 0.007865912280976772, -0.0066289883106946945, 0.5993092656135559, -0.29704296588897705, 0.0042438507080078125, 0.003441717242822051, -0.022470327094197273, -0.08160610496997833, -1.2372874021530151, 0.19863852858543396, 0.20972393453121185, -0.14185728132724762, 0.12642158567905426, -0.16511864960193634, -0.0463310144841671, -1.391296625137329, -0.44949233531951904, -0.20056799054145813, 0.13743509352207184, -0.15463246405124664, 0.09312941133975983, 0.006435528863221407]} +{"t": 7.8925, "q": [-0.3257715106010437, -0.010332213714718819, 0.003977392800152302, 0.6387240290641785, -0.34893491864204407, 0.017482902854681015, -0.3565874695777893, 0.007874434813857079, -0.006843258626759052, 0.5992666482925415, -0.29705119132995605, 0.004229442682117224, 0.0037229470908641815, -0.022523637861013412, -0.0813901275396347, -1.2533222436904907, 0.2001725137233734, 0.21617145836353302, -0.14172545075416565, 0.12658937275409698, -0.16611334681510925, -0.04615125060081482, -1.405186414718628, -0.4565630257129669, -0.20386365056037903, 0.13847772777080536, -0.15440475940704346, 0.09329719096422195, 0.008281099610030651]} +{"t": 7.9093, "q": [-0.32491928339004517, -0.010332213714718819, 0.003910433501005173, 0.6379314661026001, -0.3489064872264862, 0.017461366951465607, -0.35614433884620667, 0.00788295641541481, -0.006990569643676281, 0.5991984605789185, -0.2970468997955322, 0.004207687918096781, 0.003964001312851906, -0.022576933726668358, -0.08123458176851273, -1.271658182144165, 0.20403143763542175, 0.2228946089744568, -0.14154568314552307, 0.12685301899909973, -0.1661013662815094, -0.04601942375302315, -1.4224796295166016, -0.4622555375099182, -0.20750686526298523, 0.13938851654529572, -0.1540931612253189, 0.0932852104306221, 0.01065397635102272]} +{"t": 7.926, "q": [-0.3237006366252899, -0.010323691181838512, 0.003977392800152302, 0.6372497081756592, -0.3488861918449402, 0.01742519624531269, -0.35519838333129883, 0.007908523082733154, -0.007003961596637964, 0.5993177890777588, -0.29708412289619446, 0.004171793349087238, 0.004392541944980621, -0.022554177790880203, -0.08073590695858002, -1.2889633178710938, 0.21016736328601837, 0.22931815683841705, -0.14131797850131989, 0.1273323893547058, -0.16581374406814575, -0.04579172283411026, -1.43941330909729, -0.46798399090766907, -0.2106347382068634, 0.14209695160388947, -0.15390141308307648, 0.09370465576648712, 0.013685985468327999]} +{"t": 7.9429, "q": [-0.3222859501838684, -0.01034073531627655, 0.003977392800152302, 0.6358691453933716, -0.3488333821296692, 0.017360297963023186, -0.35426944494247437, 0.007925567217171192, -0.007070920895785093, 0.5993348360061646, -0.2970922589302063, 0.004142888356000185, 0.005651379935443401, -0.02250094525516033, -0.08042841404676437, -1.3052020072937012, 0.2172500342130661, 0.235525980591774, -0.13815414905548096, 0.12745223939418793, -0.1639082431793213, -0.04580370709300041, -1.4554721117019653, -0.47392818331718445, -0.21285182237625122, 0.14387062191963196, -0.15358982980251312, 0.09442371129989624, 0.016981646418571472]} +{"t": 7.9596, "q": [-0.3191327750682831, -0.01057935506105423, 0.004111311864107847, 0.633457362651825, -0.3487480580806732, 0.017266619950532913, -0.3526417315006256, 0.00780625781044364, -0.006923609878867865, 0.5993859171867371, -0.29711273312568665, 0.00409238925203681, 0.006695947609841824, -0.022752096876502037, -0.07986313104629517, -1.322243571281433, 0.2251356542110443, 0.2425367534160614, -0.1338757872581482, 0.1276080310344696, -0.16019314527511597, -0.045827675610780716, -1.4723340272903442, -0.47916528582572937, -0.21473334729671478, 0.14614762365818024, -0.15330220758914948, 0.09653293341398239, 0.020612867549061775]} +{"t": 7.9764, "q": [-0.3150933086872101, -0.010707186535000801, 0.004446109291166067, 0.6307387948036194, -0.3486749529838562, 0.017165550962090492, -0.3490794897079468, 0.007729558739811182, -0.006669164169579744, 0.5988661050796509, -0.2972734272480011, 0.003840305143967271, 0.007271799258887768, -0.022835848852992058, -0.07848160713911057, -1.3388895988464355, 0.2343754917383194, 0.2497512549161911, -0.1300288438796997, 0.1276559680700302, -0.1543208658695221, -0.04579172283411026, -1.4886565208435059, -0.4828324615955353, -0.2163272500038147, 0.14896391332149506, -0.15305054187774658, 0.09845040738582611, 0.024687504395842552]} +{"t": 7.9933, "q": [-0.3112327754497528, -0.010613443329930305, 0.004365758039057255, 0.6292815208435059, -0.34868723154067993, 0.017143653705716133, -0.34615641832351685, 0.007738080807030201, -0.00676290737465024, 0.5978434681892395, -0.2978028655052185, 0.003337959758937359, 0.007914610207080841, -0.022546686232089996, -0.07810630649328232, -1.3549485206604004, 0.24240492284297943, 0.2565463185310364, -0.1236891895532608, 0.12769192457199097, -0.15033012628555298, -0.045827675610780716, -1.5037806034088135, -0.48670336604118347, -0.21666280925273895, 0.15308649837970734, -0.1528468132019043, 0.10045177489519119, 0.027911260724067688]} +{"t": 8.01, "q": [-0.3094346225261688, -0.010613443329930305, 0.004084527958184481, 0.628966212272644, -0.34873613715171814, 0.01712867245078087, -0.34364238381385803, 0.007755124941468239, -0.0070307450369000435, 0.597596287727356, -0.29909929633140564, 0.0031824077013880014, 0.008155664429068565, -0.022257497534155846, -0.07838453352451324, -1.3720738887786865, 0.25158482789993286, 0.2638327181339264, -0.11533618718385696, 0.12771588563919067, -0.1443619728088379, -0.045935533940792084, -1.5194079875946045, -0.4918326139450073, -0.21713019907474518, 0.1598575860261917, -0.15276291966438293, 0.10307632386684418, 0.031925976276397705]} +{"t": 8.0268, "q": [-0.3076534867286682, -0.010621964931488037, 0.0036827712319791317, 0.6291792392730713, -0.34874022006988525, 0.017121372744441032, -0.3410090506076813, 0.007610248867422342, -0.007539637386798859, 0.5975877642631531, -0.3004681169986725, 0.0030123572796583176, 0.008169055916368961, -0.02209767885506153, -0.07850844413042068, -1.3906015157699585, 0.2624545395374298, 0.2698248326778412, -0.10729476809501648, 0.12766794860363007, -0.13490642607212067, -0.04622315615415573, -1.5364255905151367, -0.49889132380485535, -0.21716614067554474, 0.16709604859352112, -0.15275093913078308, 0.10622817277908325, 0.03567703813314438]} +{"t": 8.0436, "q": [-0.30716773867607117, -0.010681619867682457, 0.003361365757882595, 0.628966212272644, -0.3488055467605591, 0.017062650993466377, -0.3404465913772583, 0.0072778863832354546, -0.008035137318074703, 0.5974599719047546, -0.30153602361679077, 0.0029334656428545713, 0.008276191540062428, -0.022478168830275536, -0.07887468487024307, -1.4089614152908325, 0.273611843585968, 0.27437883615493774, -0.09815080463886261, 0.12757207453250885, -0.1269848495721817, -0.04652276262640953, -1.5536948442459106, -0.5043201446533203, -0.21838854253292084, 0.17407086491584778, -0.15265506505966187, 0.10970360040664673, 0.03935619443655014]} +{"t": 8.0603, "q": [-0.30692058801651, -0.010690141469240189, 0.003093527862802148, 0.628966212272644, -0.34879744052886963, 0.017048196867108345, -0.34009718894958496, 0.00723527604714036, -0.008343150839209557, 0.5975792407989502, -0.30157727003097534, 0.0029047869611531496, 0.008343150839209557, -0.02266841195523739, -0.07916340231895447, -1.4267460107803345, 0.28394225239753723, 0.2795320451259613, -0.08822786808013916, 0.1273563653230667, -0.12027368694543839, -0.0469302274286747, -1.5711919069290161, -0.5092816352844238, -0.21943116188049316, 0.18126140534877777, -0.15264306962490082, 0.112531878054142, 0.04327503591775894]} +{"t": 8.077, "q": [-0.30657970905303955, -0.010707186535000801, 0.0031872710678726435, 0.6289065480232239, -0.3487933874130249, 0.01704096980392933, -0.33996081352233887, 0.007201187312602997, -0.008236016146838665, 0.597664475440979, -0.30158546566963196, 0.0028903628699481487, 0.008450286462903023, -0.02254664897918701, -0.07923239469528198, -1.4463881254196167, 0.29491978883743286, 0.2854522466659546, -0.07743007689714432, 0.12709270417690277, -0.11033876240253448, -0.046906258910894394, -1.5906661748886108, -0.5140633583068848, -0.21986259520053864, 0.18936274945735931, -0.15255919098854065, 0.11793676018714905, 0.046918243169784546]} +{"t": 8.0939, "q": [-0.30657118558883667, -0.010741274803876877, 0.003254230599850416, 0.6288042664527893, -0.348789244890213, 0.01706281304359436, -0.3400290012359619, 0.007201187312602997, -0.008182448334991932, 0.5976133346557617, -0.3015730082988739, 0.002883025910705328, 0.008423502556979656, -0.022462936118245125, -0.07928673923015594, -1.464831829071045, 0.3048906624317169, 0.2902219891548157, -0.065601646900177, 0.12706874310970306, -0.10130265355110168, -0.046906258910894394, -1.6080793142318726, -0.5187012553215027, -0.2198985517024994, 0.1967809796333313, -0.1525232344865799, 0.1230420395731926, 0.04972255229949951]} +{"t": 8.1106, "q": [-0.3063410818576813, -0.010775363072752953, 0.0034551091957837343, 0.6289491653442383, -0.3487893044948578, 0.017033742740750313, -0.34002047777175903, 0.007167099043726921, -0.007928002625703812, 0.5979797840118408, -0.3015980124473572, 0.0029122047126293182, 0.008302975445985794, -0.021915001794695854, -0.07959236204624176, -1.484689712524414, 0.31511321663856506, 0.29415279626846313, -0.052502889186143875, 0.126960888504982, -0.0890667587518692, -0.046846337616443634, -1.6268585920333862, -0.5236027836799622, -0.2199944257736206, 0.20714733004570007, -0.1524992734193802, 0.12787167727947235, 0.0535455197095871]} +{"t": 8.1274, "q": [-0.3061535954475403, -0.01079240720719099, 0.003575636073946953, 0.6289917826652527, -0.3487893044948578, 0.017033742740750313, -0.34000343084335327, 0.007141532842069864, -0.007780691608786583, 0.5980735421180725, -0.3016063868999481, 0.0029267538338899612, 0.008262800052762032, -0.021115897223353386, -0.08013194054365158, -1.5043678283691406, 0.3237658143043518, 0.29803571105003357, -0.03651593253016472, 0.1269129514694214, -0.07871238887310028, -0.046954195946455, -1.6444634199142456, -0.5292473435401917, -0.2202460914850235, 0.2169983685016632, -0.15243934094905853, 0.13223394751548767, 0.05632586032152176]} +{"t": 8.1443, "q": [-0.3059746325016022, -0.010817973874509335, 0.0036024199798703194, 0.6291536688804626, -0.34877708554267883, 0.01704113371670246, -0.3399011790752411, 0.007107444107532501, -0.0076467725448310375, 0.5982609987258911, -0.3015981912612915, 0.002941177925094962, 0.008236016146838665, -0.020149311050772667, -0.08078107237815857, -1.5247050523757935, 0.3313997685909271, 0.30240994691848755, -0.021799305453896523, 0.12687699496746063, -0.0661768913269043, -0.04706205427646637, -1.6627752780914307, -0.5351555943489075, -0.2202700525522232, 0.2285871058702469, -0.15209180116653442, 0.13563746213912964, 0.059130165725946426]} +{"t": 8.161, "q": [-0.3059234917163849, -0.010894672945141792, 0.0036425956059247255, 0.6292985677719116, -0.3487771451473236, 0.017012061551213264, -0.33990970253944397, 0.007047789636999369, -0.007472677621990442, 0.5984399914741516, -0.30161893367767334, 0.0029485775157809258, 0.008222623728215694, -0.019197916612029076, -0.08149123191833496, -1.5431727170944214, 0.3395730257034302, 0.30688005685806274, -0.006974819116294384, 0.12681707739830017, -0.05531918257474899, -0.04712197184562683, -1.6804161071777344, -0.5405964255332947, -0.22040188312530518, 0.23963657021522522, -0.15188807249069214, 0.14162957668304443, 0.06259360909461975]} +{"t": 8.1778, "q": [-0.3056508004665375, -0.010954327881336212, 0.0036425956059247255, 0.629503071308136, -0.3487730920314789, 0.01700483448803425, -0.33973926305770874, 0.006996656768023968, -0.007365542463958263, 0.5986956357955933, -0.30161893367767334, 0.0029485775157809258, 0.008236016146838665, -0.01815512590110302, -0.08227210491895676, -1.5641690492630005, 0.34751856327056885, 0.3113022446632385, 0.00938364863395691, 0.1267092078924179, -0.04262788966298103, -0.04734967276453972, -1.6992912292480469, -0.546109139919281, -0.22078537940979004, 0.25198033452033997, -0.1516483873128891, 0.14679478108882904, 0.06639260798692703]} +{"t": 8.1945, "q": [-0.30539512634277344, -0.011005460284650326, 0.0036827712319791317, 0.6296053528785706, -0.34875279664993286, 0.016968663781881332, -0.3397051692008972, 0.006911435630172491, -0.007231623865664005, 0.5988831520080566, -0.3016355037689209, 0.0029487023130059242, 0.008222623728215694, -0.017234068363904953, -0.08322567492723465, -1.585033655166626, 0.35690221190452576, 0.31474170088768005, 0.026401247829198837, 0.1266852468252182, -0.03123089112341404, -0.04749348387122154, -1.7177948951721191, -0.5512264370918274, -0.22136062383651733, 0.2637368440628052, -0.15140870213508606, 0.15218767523765564, 0.06878945231437683]} +{"t": 8.2113, "q": [-0.30506277084350586, -0.010988416150212288, 0.0037229470908641815, 0.6298865675926208, -0.3487447202205658, 0.016939682886004448, -0.33950915932655334, 0.006911435630172491, -0.007164664100855589, 0.5992155075073242, -0.3016480505466461, 0.0029705441556870937, 0.008302975445985794, -0.016724009066820145, -0.08394201844930649, -1.6054067611694336, 0.3648597300052643, 0.3177018165588379, 0.04313122481107712, 0.12658937275409698, -0.01937849260866642, -0.04772118479013443, -1.735974907875061, -0.5568829774856567, -0.22162427008152008, 0.27504995465278625, -0.15128885209560394, 0.15514777600765228, 0.07089867442846298]} +{"t": 8.228, "q": [-0.30484119057655334, -0.010988416150212288, 0.0037229470908641815, 0.6299888491630554, -0.3487285077571869, 0.016910774633288383, -0.33946654200553894, 0.00691995769739151, -0.007124488707631826, 0.5993092656135559, -0.3016646206378937, 0.002970669185742736, 0.00831636693328619, -0.016061678528785706, -0.08483880758285522, -1.6275776624679565, 0.3727932870388031, 0.32135701179504395, 0.06070009991526604, 0.12651745975017548, -0.007370298728346825, -0.047876980155706406, -1.7555092573165894, -0.562695324420929, -0.22178007662296295, 0.2873218059539795, -0.1510971188545227, 0.15954598784446716, 0.07327155023813248]} +{"t": 8.2448, "q": [-0.30461961030960083, -0.01097137201577425, 0.003669379511848092, 0.6300826072692871, -0.3487164080142975, 0.01686004176735878, -0.33937281370162964, 0.006877347361296415, -0.007111096754670143, 0.5993348360061646, -0.3016979992389679, 0.003014378948137164, 0.008302975445985794, -0.01563526690006256, -0.08568280190229416, -1.648837685585022, 0.37988796830177307, 0.3245088458061218, 0.07806524634361267, 0.12642158567905426, 0.003990747034549713, -0.047996822744607925, -1.7743124961853027, -0.5685316324234009, -0.22180403769016266, 0.2985030710697174, -0.15078552067279816, 0.1646512746810913, 0.07508116960525513]} +{"t": 8.2615, "q": [-0.30433839559555054, -0.010962849482893944, 0.0037229470908641815, 0.6302019357681274, -0.34870827198028564, 0.016845587641000748, -0.3394921123981476, 0.006877347361296415, -0.007003961596637964, 0.5993944406509399, -0.3017062842845917, 0.003014441579580307, 0.008302975445985794, -0.014972892589867115, -0.08655072748661041, -1.670517086982727, 0.38762977719306946, 0.327780544757843, 0.09606555104255676, 0.12628977000713348, 0.016466325148940086, -0.04828444495797157, -1.794302225112915, -0.5746555924415588, -0.22185197472572327, 0.31112247705459595, -0.14994663000106812, 0.16926519572734833, 0.07600395381450653]} +{"t": 8.2783, "q": [-0.3040315806865692, -0.010945805348455906, 0.0037229470908641815, 0.6303126811981201, -0.34871646761894226, 0.016830988228321075, -0.3396710753440857, 0.006877347361296415, -0.006910218391567469, 0.599462628364563, -0.30172303318977356, 0.0030435577500611544, 0.008169055916368961, -0.014409421943128109, -0.08763638883829117, -1.691729187965393, 0.3944607675075531, 0.33087247610092163, 0.11472498625516891, 0.12588229775428772, 0.02883404679596424, -0.04832039773464203, -1.8143997192382812, -0.5806117653846741, -0.22180403769016266, 0.32462868094444275, -0.1492035984992981, 0.17272864282131195, 0.07683087140321732]} +{"t": 8.295, "q": [-0.30356287956237793, -0.01091171707957983, 0.0037229470908641815, 0.6303467750549316, -0.3487001657485962, 0.01683109812438488, -0.33990970253944397, 0.006885869428515434, -0.006883434485644102, 0.5994285345077515, -0.30174776911735535, 0.0030292586889117956, 0.008075312711298466, -0.014142819680273533, -0.08857838064432144, -1.711910605430603, 0.40021321177482605, 0.3326341509819031, 0.13218601047992706, 0.1257384866476059, 0.040890175849199295, -0.04827246069908142, -1.8327475786209106, -0.5865439176559448, -0.22182801365852356, 0.33760762214660645, -0.1487002670764923, 0.1753891408443451, 0.0776577815413475]} +{"t": 8.3118, "q": [-0.3028896152973175, -0.010877628810703754, 0.0036425956059247255, 0.6304234862327576, -0.34872865676879883, 0.01683814264833927, -0.340395450592041, 0.006911435630172491, -0.006883434485644102, 0.5994285345077515, -0.30180156230926514, 0.0030224218498915434, 0.007700339891016483, -0.013838169164955616, -0.08933363109827042, -1.7336140871047974, 0.40720000863075256, 0.33288583159446716, 0.15182815492153168, 0.1255107969045639, 0.05171193182468414, -0.04828444495797157, -1.8536839485168457, -0.5925000905990601, -0.2218160182237625, 0.35091009736061096, -0.14854447543621063, 0.17834924161434174, 0.07874834537506104]} +{"t": 8.3285, "q": [-0.3024635314941406, -0.010800929740071297, 0.003696163184940815, 0.6304746270179749, -0.34875720739364624, 0.016830606386065483, -0.3411368727684021, 0.006902913562953472, -0.006816474720835686, 0.5994200110435486, -0.30200546979904175, 0.0031905854120850563, 0.007338759023696184, -0.013533533550798893, -0.08999853581190109, -1.753304123878479, 0.41406697034835815, 0.3326821029186249, 0.1694689244031906, 0.12499547004699707, 0.06368417292833328, -0.04830841347575188, -1.87167227268219, -0.5977132320404053, -0.22152841091156006, 0.364799827337265, -0.14846058189868927, 0.182699516415596, 0.08080963045358658]} +{"t": 8.3453, "q": [-0.30236124992370605, -0.010809451341629028, 0.0037229470908641815, 0.6305598616600037, -0.34878578782081604, 0.01679401844739914, -0.34106871485710144, 0.00691995769739151, -0.006682556122541428, 0.5993773937225342, -0.30205053091049194, 0.0031112348660826683, 0.006923609878867865, -0.01320598553866148, -0.09094157069921494, -1.7732099294662476, 0.4200471043586731, 0.33253827691078186, 0.18996195495128632, 0.12436030805110931, 0.07383481413125992, -0.04836833477020264, -1.8919975757598877, -0.6035016179084778, -0.220545694231987, 0.37944453954696655, -0.14848455786705017, 0.1870977282524109, 0.0839494988322258]} +{"t": 8.362, "q": [-0.3024805784225464, -0.010800929740071297, 0.0037899063900113106, 0.6307132244110107, -0.34880203008651733, 0.016822926700115204, -0.3412647247314453, 0.00691995769739151, -0.0065620290115475655, 0.5993944406509399, -0.302092045545578, 0.003126051975414157, 0.0066289883106946945, -0.012893743813037872, -0.09157147258520126, -1.7966750860214233, 0.42711779475212097, 0.33184319734573364, 0.20999957621097565, 0.12255068868398666, 0.08538760244846344, -0.0487518273293972, -1.9129101037979126, -0.6110996007919312, -0.2182207554578781, 0.3947843611240387, -0.1486523300409317, 0.1914360076189041, 0.08746087551116943]} +{"t": 8.3789, "q": [-0.3026169240474701, -0.01079240720719099, 0.003923825453966856, 0.6307558417320251, -0.34880197048187256, 0.016837453469634056, -0.3415118455886841, 0.00691995769739151, -0.006454893853515387, 0.5993604063987732, -0.30208784341812134, 0.0031187774147838354, 0.0061736637726426125, -0.012680429965257645, -0.09228839725255966, -1.8166288137435913, 0.4331458508968353, 0.33138778805732727, 0.2295578271150589, 0.12056130915880203, 0.09507086127996445, -0.04891960695385933, -1.9307785034179688, -0.6189612746238708, -0.21552430093288422, 0.40947699546813965, -0.1488800346851349, 0.1944320648908615, 0.09060074388980865]} +{"t": 8.3956, "q": [-0.30286404490470886, -0.010809451341629028, 0.003990784753113985, 0.6308581233024597, -0.3488222360610962, 0.016888169571757317, -0.3416993319988251, 0.00691995769739151, -0.006361150648444891, 0.5993773937225342, -0.30209195613861084, 0.003111547324806452, 0.005825474392622709, -0.012330089695751667, -0.09308548271656036, -1.8406810760498047, 0.4381672441959381, 0.33156755566596985, 0.24953553080558777, 0.1191711351275444, 0.10710301995277405, -0.04903944954276085, -1.9513673782348633, -0.6249653697013855, -0.2123364955186844, 0.42445728182792664, -0.1492755115032196, 0.19721241295337677, 0.09399227797985077]} +{"t": 8.4124, "q": [-0.30322200059890747, -0.010817973874509335, 0.0039506093598902225, 0.6309177875518799, -0.34883031249046326, 0.0169171504676342, -0.3419550061225891, 0.00691995769739151, -0.006414717994630337, 0.5991899371147156, -0.3020712733268738, 0.0031186342239379883, 0.005557636730372906, -0.012032848782837391, -0.09426289051771164, -1.8639425039291382, 0.4439795911312103, 0.3312559723854065, 0.27028024196624756, 0.1182243824005127, 0.11627095192670822, -0.04926715046167374, -1.971177339553833, -0.6311731934547424, -0.20866933465003967, 0.43950948119163513, -0.14970694482326508, 0.2000766396522522, 0.09719206392765045]} +{"t": 8.4291, "q": [-0.3033157289028168, -0.010809451341629028, 0.004030960611999035, 0.6310541033744812, -0.34884658455848694, 0.016931531950831413, -0.3420061469078064, 0.006928479764610529, -0.006347758695483208, 0.5992069840431213, -0.30208784341812134, 0.0031187774147838354, 0.004821082577109337, -0.011728234589099884, -0.09482865035533905, -1.8856579065322876, 0.450127512216568, 0.3309084177017212, 0.289790540933609, 0.11740945279598236, 0.12614595890045166, -0.049626678228378296, -1.9902682304382324, -0.635463535785675, -0.20587700605392456, 0.45398640632629395, -0.15059377253055573, 0.20502611994743347, 0.10081130266189575]} +{"t": 8.4458, "q": [-0.30336686968803406, -0.01079240720719099, 0.004365758039057255, 0.6310455799102783, -0.34886279702186584, 0.01696043834090233, -0.3420061469078064, 0.006962568499147892, -0.0061736637726426125, 0.5991899371147156, -0.3020796477794647, 0.0031332015059888363, 0.003468500915914774, -0.011530197225511074, -0.09533414989709854, -1.9094586372375488, 0.45622748136520386, 0.3307286500930786, 0.3110385835170746, 0.1164746880531311, 0.13621270656585693, -0.050393667072057724, -2.0106654167175293, -0.6399216651916504, -0.2028449922800064, 0.46938616037368774, -0.1531943529844284, 0.2091606855392456, 0.1059165820479393]} +{"t": 8.4626, "q": [-0.3034350275993347, -0.010766841471195221, 0.00483447453007102, 0.6310541033744812, -0.3488627076148987, 0.017004018649458885, -0.34189534187316895, 0.007047789636999369, -0.005812082905322313, 0.5992069840431213, -0.30205038189888, 0.0030822616536170244, 0.0024105412885546684, -0.011438711546361446, -0.09582973271608353, -1.9332473278045654, 0.46169227361679077, 0.33027327060699463, 0.3317353427410126, 0.11549197882413864, 0.14757375419139862, -0.05122057721018791, -2.031721591949463, -0.6453385353088379, -0.19821909070014954, 0.48469001054763794, -0.15514777600765228, 0.21202491223812103, 0.11142932623624802]} +{"t": 8.4793, "q": [-0.30356287956237793, -0.010758318938314915, 0.005356758367270231, 0.6309859752655029, -0.3488463759422302, 0.017018690705299377, -0.34142664074897766, 0.007107444107532501, -0.005410325713455677, 0.5994029641151428, -0.30202534794807434, 0.003053082851693034, 0.0017543383873999119, -0.011522308923304081, -0.09617945551872253, -1.9563767910003662, 0.4661983549594879, 0.32929056882858276, 0.3526478111743927, 0.11434148997068405, 0.15664580464363098, -0.05241899937391281, -2.051591396331787, -0.6517740488052368, -0.19277824461460114, 0.4987594783306122, -0.15645405650138855, 0.21421802043914795, 0.11524031311273575]} +{"t": 8.496, "q": [-0.30374184250831604, -0.01082649640738964, 0.005785298999398947, 0.6310114860534668, -0.3488463759422302, 0.017018690705299377, -0.3409067690372467, 0.007133010774850845, -0.005075528286397457, 0.5995649099349976, -0.3019093871116638, 0.0030522076413035393, 0.0013257976388558745, -0.01136243436485529, -0.09636589884757996, -1.9804052114486694, 0.47102800011634827, 0.3284876048564911, 0.3735722601413727, 0.11314307153224945, 0.1655500829219818, -0.0535694882273674, -2.073354959487915, -0.6571789383888245, -0.1885717809200287, 0.5140033960342407, -0.157616525888443, 0.21666280925273895, 0.11851200461387634]} +{"t": 8.5129, "q": [-0.303861141204834, -0.010869106277823448, 0.006307582836598158, 0.6310285329818726, -0.34884220361709595, 0.01705506071448326, -0.3406681716442108, 0.007124488707631826, -0.004687163513153791, 0.599837601184845, -0.30186817049980164, 0.0030808683950453997, 0.0011383111122995615, -0.011293933726847172, -0.09638071805238724, -2.004122018814087, 0.474335640668869, 0.3288111984729767, 0.3951079249382019, 0.11194464564323425, 0.1756887435913086, -0.05466005206108093, -2.0940635204315186, -0.6630752086639404, -0.18259166181087494, 0.5284084677696228, -0.15816780924797058, 0.2190956026315689, 0.12148409336805344]} +{"t": 8.5297, "q": [-0.30396342277526855, -0.010954327881336212, 0.00672273151576519, 0.6311052441596985, -0.3488381505012512, 0.017047833651304245, -0.3404039740562439, 0.007098922040313482, -0.004379149992018938, 0.6000421643257141, -0.3018227517604828, 0.0031022725161165, 0.0009910003282129765, -0.011141705326735973, -0.09645077586174011, -2.0265445709228516, 0.47794288396835327, 0.3287632465362549, 0.4162960350513458, 0.11023090034723282, 0.18425746262073517, -0.05633784458041191, -2.113286256790161, -0.668635904788971, -0.17639581859111786, 0.5434126853942871, -0.1582636833190918, 0.22133666276931763, 0.12467189878225327]} +{"t": 8.5464, "q": [-0.3039889931678772, -0.011005460284650326, 0.007178056053817272, 0.6311478614807129, -0.3488217890262604, 0.01707703247666359, -0.3403102457523346, 0.007090399973094463, -0.004097919911146164, 0.600212574005127, -0.3017275333404541, 0.003108796663582325, 0.0005490677431225777, -0.010966673493385315, -0.0964549109339714, -2.0501534938812256, 0.4817059338092804, 0.32849958539009094, 0.4382990598678589, 0.1091882735490799, 0.1943361908197403, -0.05999303236603737, -2.13388729095459, -0.673944890499115, -0.17010408639907837, 0.5595315098762512, -0.1583355814218521, 0.22440461814403534, 0.12909407913684845]} +{"t": 8.5631, "q": [-0.3038952350616455, -0.011013982817530632, 0.007593204732984304, 0.6311052441596985, -0.34881776571273804, 0.01705527864396572, -0.34029319882392883, 0.007107444107532501, -0.0038434739690274, 0.6002381443977356, -0.30167391896247864, 0.003144624875858426, 0.00010713516530813649, -0.010814436711370945, -0.0965554490685463, -2.070957899093628, 0.48453420400619507, 0.3284636437892914, 0.45919954776763916, 0.10897255688905716, 0.20163458585739136, -0.0638040155172348, -2.152259111404419, -0.6777439117431641, -0.16486698389053345, 0.5737447738647461, -0.1586351841688156, 0.2292102873325348, 0.1330249011516571]} +{"t": 8.5798, "q": [-0.30374184250831604, -0.01099693775177002, 0.007954785600304604, 0.6311222910881042, -0.3488096296787262, 0.01705535128712654, -0.3402591049671173, 0.00711596617475152, -0.0036425956059247255, 0.6003830432891846, -0.3016738295555115, 0.003130138386040926, -0.0005758515326306224, -0.010677430778741837, -0.09659542143344879, -2.091163396835327, 0.48863282799720764, 0.3273850679397583, 0.4807591736316681, 0.1089126393198967, 0.21025124192237854, -0.06784269958734512, -2.1709184646606445, -0.6805481910705566, -0.15995346009731293, 0.5894321203231812, -0.15915051102638245, 0.23213444650173187, 0.13554158806800842]} +{"t": 8.5966, "q": [-0.3037077486515045, -0.011022504419088364, 0.008276191540062428, 0.63113933801651, -0.3488096594810486, 0.01704082451760769, -0.34029319882392883, 0.007133010774850845, -0.0033747577108442783, 0.6005534529685974, -0.3016655445098877, 0.0031300578266382217, -0.0008704732172191143, -0.010548057034611702, -0.09662022441625595, -2.1110212802886963, 0.49147307872772217, 0.3272652328014374, 0.5028581023216248, 0.10876882821321487, 0.2199704498052597, -0.07127019017934799, -2.188655138015747, -0.6836760640144348, -0.154344841837883, 0.6061980724334717, -0.1599894016981125, 0.2346271574497223, 0.1387174129486084]} +{"t": 8.6133, "q": [-0.3037162721157074, -0.011013982817530632, 0.008195839822292328, 0.63113933801651, -0.3488055467605591, 0.017062650993466377, -0.3402591049671173, 0.007158576976507902, -0.003441717242822051, 0.6005193591117859, -0.301620215177536, 0.003165948437526822, -0.001044567907229066, -0.010563269257545471, -0.09663043171167374, -2.130016326904297, 0.4933066666126251, 0.3273371160030365, 0.523015558719635, 0.10872089117765427, 0.2274366319179535, -0.07317567616701126, -2.205073356628418, -0.686720073223114, -0.1488800346851349, 0.6203154921531677, -0.16088822484016418, 0.23710790276527405, 0.14250442385673523]} +{"t": 8.63, "q": [-0.3037674129009247, -0.011005460284650326, 0.008102096617221832, 0.6311563849449158, -0.3488096296787262, 0.01705535128712654, -0.3402676284313202, 0.007167099043726921, -0.0035354604478925467, 0.6005534529685974, -0.30162420868873596, 0.0031442497856914997, -0.0009106489014811814, -0.010624164715409279, -0.09660027176141739, -2.149286985397339, 0.4945410490036011, 0.3272891938686371, 0.5430891513824463, 0.10874485969543457, 0.23668844997882843, -0.07544069737195969, -2.222510576248169, -0.6909385323524475, -0.14045512676239014, 0.6360747218132019, -0.16242220997810364, 0.23998410999774933, 0.14673484861850739]} +{"t": 8.6467, "q": [-0.3038100004196167, -0.011013982817530632, 0.007847650907933712, 0.6311734318733215, -0.3488137125968933, 0.017048051580786705, -0.34019944071769714, 0.007192665245383978, -0.0036425956059247255, 0.6004341840744019, -0.30160772800445557, 0.0031586114782840014, -0.0009106489014811814, -0.010685032233595848, -0.09663094580173492, -2.1670236587524414, 0.4961349368095398, 0.3272891938686371, 0.5615088939666748, 0.10874485969543457, 0.24369922280311584, -0.07778960466384888, -2.238569498062134, -0.69449782371521, -0.13181449472904205, 0.6500003933906555, -0.1636326164007187, 0.24220119416713715, 0.15191203355789185]} +{"t": 8.6635, "q": [-0.3037162721157074, -0.01097137201577425, 0.007847650907933712, 0.631284236907959, -0.34880560636520386, 0.017033597454428673, -0.3401823937892914, 0.007150054909288883, -0.003575636073946953, 0.6005364060401917, -0.3015994727611542, 0.003158549079671502, -0.0009240407962352037, -0.010669812560081482, -0.09663088619709015, -2.1858866214752197, 0.49901115894317627, 0.3272053003311157, 0.5803720355033875, 0.10878081619739532, 0.2509017288684845, -0.08161257207393646, -2.2556469440460205, -0.695528507232666, -0.12524713575839996, 0.6645732522010803, -0.16473515331745148, 0.24519725143909454, 0.1555192917585373]} +{"t": 8.6802, "q": [-0.30369070172309875, -0.010979894548654556, 0.007874434813857079, 0.6313694715499878, -0.34880557656288147, 0.017048124223947525, -0.34015682339668274, 0.007133010774850845, -0.0035086767747998238, 0.6004768013954163, -0.30161193013191223, 0.003165886038914323, -0.0009374326909892261, -0.010669810697436333, -0.09665116667747498, -2.2042465209960938, 0.5023547410964966, 0.3272532522678375, 0.5986599922180176, 0.10886470228433609, 0.2599138915538788, -0.0860227718949318, -2.2725446224212646, -0.6954925060272217, -0.11911121755838394, 0.6789183616638184, -0.16511864960193634, 0.24999094009399414, 0.15792812407016754]} +{"t": 8.6971, "q": [-0.30360549688339233, -0.010988416150212288, 0.0077672996558249, 0.6314290761947632, -0.34880557656288147, 0.017048124223947525, -0.33997786045074463, 0.007133010774850845, -0.0036024199798703194, 0.6004341840744019, -0.301620215177536, 0.003165948437526822, -0.0008035137434490025, -0.010700243525207043, -0.09666143357753754, -2.221959352493286, 0.5056024789810181, 0.3274809420108795, 0.6167681813240051, 0.10890065133571625, 0.26628947257995605, -0.08921056985855103, -2.28855562210083, -0.6953007578849792, -0.11489276587963104, 0.6929518580436707, -0.1651306450366974, 0.2525915205478668, 0.16131965816020966]} +{"t": 8.7139, "q": [-0.30377593636512756, -0.010988416150212288, 0.007405718322843313, 0.631659209728241, -0.34880557656288147, 0.017048124223947525, -0.3399863839149475, 0.007133010774850845, -0.0037631227169185877, 0.6004000902175903, -0.3016079068183899, 0.0031875846907496452, -0.0005088920588605106, -0.01075351145118475, -0.09666673094034195, -2.239863634109497, 0.5097730159759521, 0.32744500041007996, 0.6359429359436035, 0.10880477726459503, 0.2720898389816284, -0.09157146513462067, -2.3050458431243896, -0.6950251460075378, -0.11074622720479965, 0.7086631655693054, -0.16516658663749695, 0.2548205852508545, 0.1639801561832428]} +{"t": 8.7306, "q": [-0.3037588894367218, -0.011005460284650326, 0.0071914480067789555, 0.6317188739776611, -0.3488137125968933, 0.017048051580786705, -0.3399863839149475, 0.007133010774850845, -0.0038702578749507666, 0.600212574005127, -0.3015832304954529, 0.003216388402506709, 9.374327055411413e-05, -0.010898087173700333, -0.09675345569849014, -2.2573487758636475, 0.5130566954612732, 0.3282599151134491, 0.6521455645561218, 0.10878081619739532, 0.27926841378211975, -0.09280584007501602, -2.321392297744751, -0.6949292421340942, -0.10455038398504257, 0.7242546677589417, -0.16516658663749695, 0.2578885555267334, 0.16661667823791504]} +{"t": 8.7473, "q": [-0.30406567454338074, -0.01099693775177002, 0.006937001831829548, 0.6320938467979431, -0.3488137125968933, 0.017048051580786705, -0.3401142358779907, 0.00711596617475152, -0.004004176706075668, 0.600212574005127, -0.30158740282058716, 0.0032236629631370306, 0.0005758515326306224, -0.011225265450775623, -0.09685152024030685, -2.27397084236145, 0.5163882970809937, 0.32901492714881897, 0.6682883501052856, 0.10881676524877548, 0.2857998013496399, -0.09368068724870682, -2.3368759155273438, -0.6949292421340942, -0.09816279262304306, 0.7389113903045654, -0.165178582072258, 0.2602853775024414, 0.1697685420513153]} +{"t": 8.764, "q": [-0.30415090918540955, -0.011005460284650326, 0.006695947609841824, 0.6321619749069214, -0.3488055467605591, 0.017062650993466377, -0.34010571241378784, 0.007090399973094463, -0.004097919911146164, 0.6000080704689026, -0.30153387784957886, 0.003273977665230632, 0.0010311759542673826, -0.011552378535270691, -0.09707139432430267, -2.290161371231079, 0.520474910736084, 0.32891905307769775, 0.6843352317810059, 0.10875684767961502, 0.29267874360084534, -0.09491506218910217, -2.352539300918579, -0.6948094367980957, -0.09408815205097198, 0.7539875507354736, -0.1651066690683365, 0.26117223501205444, 0.17300426959991455]} +{"t": 8.7808, "q": [-0.3042105436325073, -0.011039548553526402, 0.006602204404771328, 0.6322813034057617, -0.3488096296787262, 0.01705535128712654, -0.34025058150291443, 0.007056311704218388, -0.004138095770031214, 0.599905788898468, -0.30150535702705383, 0.003353453241288662, 0.0014597165863960981, -0.011978480964899063, -0.09715500473976135, -2.3071670532226562, 0.5237226486206055, 0.3289310336112976, 0.7013887763023376, 0.10878081619739532, 0.3012474775314331, -0.09592173993587494, -2.36849045753479, -0.6947734951972961, -0.09194297343492508, 0.7686561942100525, -0.1649269014596939, 0.2624305784702301, 0.17494572699069977]} +{"t": 8.7975, "q": [-0.30447474122047424, -0.011065115220844746, 0.006521853152662516, 0.632477343082428, -0.34881776571273804, 0.01705527864396572, -0.34029319882392883, 0.0070222229696810246, -0.004231838975101709, 0.599675714969635, -0.3014027178287506, 0.0035048353020101786, 0.0020355682354420424, -0.01225992850959301, -0.09739485383033752, -2.3226985931396484, 0.526982307434082, 0.3288351595401764, 0.7166926264762878, 0.10881676524877548, 0.30729949474334717, -0.09662880748510361, -2.383087158203125, -0.6947015523910522, -0.08955811709165573, 0.7829294204711914, -0.16478309035301208, 0.26391661167144775, 0.17579659819602966]} +{"t": 8.8142, "q": [-0.30452588200569153, -0.011209990829229355, 0.0064013260416686535, 0.6325966119766235, -0.34881776571273804, 0.01705527864396572, -0.34032729268074036, 0.00691995769739151, -0.004258622881025076, 0.5995649099349976, -0.3013453185558319, 0.003605840029194951, 0.0024105412885546684, -0.012404516339302063, -0.09740083664655685, -2.338853359222412, 0.530565619468689, 0.3286913335323334, 0.7320683598518372, 0.1089126393198967, 0.311230331659317, -0.09709618985652924, -2.3988823890686035, -0.6946895718574524, -0.08676578849554062, 0.7981254458427429, -0.16463927924633026, 0.2660737633705139, 0.17637184262275696]} +{"t": 8.831, "q": [-0.3050457239151001, -0.011269645765423775, 0.006347758695483208, 0.6328437924385071, -0.34881365299224854, 0.01707710511982441, -0.3405317962169647, 0.006826214492321014, -0.004325582180172205, 0.5994455814361572, -0.30125924944877625, 0.003757328959181905, 0.002423933008685708, -0.012617546133697033, -0.09748323261737823, -2.3563144207000732, 0.53459233045578, 0.32861945033073425, 0.7480553388595581, 0.10905645042657852, 0.31541281938552856, -0.09733587503433228, -2.414306163787842, -0.6946536302566528, -0.0851239487528801, 0.8119552135467529, -0.1645793616771698, 0.27028024196624756, 0.17715081572532654]} +{"t": 8.8477, "q": [-0.30543774366378784, -0.011329300701618195, 0.006374542135745287, 0.6330397725105286, -0.3488095998764038, 0.017069878056645393, -0.34051477909088135, 0.006783603690564632, -0.0042854067869484425, 0.5993433594703674, -0.3010537028312683, 0.004016614984720945, 0.002464108867570758, -0.012724028900265694, -0.09760547429323196, -2.372349262237549, 0.538559079170227, 0.3283318281173706, 0.7611421346664429, 0.10930811613798141, 0.320122629404068, -0.09786318242549896, -2.4290826320648193, -0.694413959980011, -0.08380568772554398, 0.8253535628318787, -0.16456738114356995, 0.2734680473804474, 0.17830130457878113]} +{"t": 8.8645, "q": [-0.30611950159072876, -0.011380434036254883, 0.006307582836598158, 0.6334744095802307, -0.348821759223938, 0.01709155924618244, -0.34060850739479065, 0.006689860485494137, -0.004312190227210522, 0.599300742149353, -0.3009633719921112, 0.004146343097090721, 0.002423933008685708, -0.0129143251106143, -0.09748005867004395, -2.389343023300171, 0.5424779653549194, 0.3280801475048065, 0.7761223912239075, 0.10966764390468597, 0.3261387050151825, -0.09834255278110504, -2.4455368518829346, -0.6940783858299255, -0.08206797391176224, 0.8408731818199158, -0.16445952653884888, 0.2765359878540039, 0.18031466007232666]} +{"t": 8.8812, "q": [-0.3070313632488251, -0.011380434036254883, 0.006039745174348354, 0.6338749527931213, -0.3488054573535919, 0.017091721296310425, -0.3408982753753662, 0.006706904619932175, -0.004646987654268742, 0.5990279912948608, -0.30060961842536926, 0.004534828010946512, 0.002624811604619026, -0.013043667189776897, -0.09752646088600159, -2.4058570861816406, 0.5463248491287231, 0.3276367485523224, 0.7916060090065002, 0.10977550595998764, 0.33044102787971497, -0.09909755736589432, -2.460157632827759, -0.694042444229126, -0.0803302600979805, 0.8547029495239258, -0.16418388485908508, 0.28016722202301025, 0.18255570530891418]} +{"t": 8.8979, "q": [-0.30754271149635315, -0.011491220444440842, 0.00579869095236063, 0.6340368390083313, -0.3488014042377472, 0.01708449423313141, -0.3410005271434784, 0.00666429428383708, -0.004807690624147654, 0.5987979173660278, -0.300400048494339, 0.004757531452924013, 0.003066744189709425, -0.013279647566378117, -0.09734056890010834, -2.423246383666992, 0.5499321222305298, 0.32727721333503723, 0.8068739175796509, 0.11000320315361023, 0.33513885736465454, -0.10042780637741089, -2.475353717803955, -0.6939825415611267, -0.07836484909057617, 0.8689162731170654, -0.1640041172504425, 0.28251612186431885, 0.18464095890522003]} +{"t": 8.9147, "q": [-0.30796879529953003, -0.011593486182391644, 0.005745123140513897, 0.634275496006012, -0.3488014042377472, 0.01708449423313141, -0.3410942554473877, 0.006544984877109528, -0.004941609688103199, 0.5986530184745789, -0.30024823546409607, 0.004951782524585724, 0.003441717242822051, -0.013523227535188198, -0.09715977311134338, -2.4389455318450928, 0.5532277822494507, 0.32649824023246765, 0.8206677436828613, 0.11024288833141327, 0.33950111269950867, -0.1028965562582016, -2.4896867275238037, -0.6937428116798401, -0.07711848616600037, 0.883668839931488, -0.16374047100543976, 0.2845174968242645, 0.18700185418128967]} +{"t": 8.9314, "q": [-0.30809664726257324, -0.011670185253024101, 0.005745123140513897, 0.6342499256134033, -0.3488014042377472, 0.01708449423313141, -0.341145396232605, 0.006451241206377745, -0.004968393128365278, 0.5983462333679199, -0.30006808042526245, 0.005239923484623432, 0.0036292036529630423, -0.01371352095156908, -0.0970546156167984, -2.4551961421966553, 0.5562717914581299, 0.32555148005485535, 0.8353124856948853, 0.11057844758033752, 0.3448580801486969, -0.1067914292216301, -2.503732442855835, -0.6935390830039978, -0.07655522972345352, 0.8983015418052673, -0.16358467936515808, 0.2860395014286041, 0.19135212898254395]} +{"t": 8.9481, "q": [-0.3082500398159027, -0.011772450059652328, 0.0057719070464372635, 0.6342669725418091, -0.3488014042377472, 0.01708449423313141, -0.34111982583999634, 0.006323409732431173, -0.0049817850813269615, 0.5982184410095215, -0.2999493479728699, 0.0054344357922673225, 0.0037631227169185877, -0.014010372571647167, -0.09684883803129196, -2.472046136856079, 0.559483528137207, 0.32414931058883667, 0.8510957360267639, 0.11128551512956619, 0.34848928451538086, -0.1095358207821846, -2.518808603286743, -0.6934192776679993, -0.0764593556523323, 0.9138091802597046, -0.1634288728237152, 0.28756147623062134, 0.19584621489048004]} +{"t": 8.965, "q": [-0.30851420760154724, -0.011857671663165092, 0.005745123140513897, 0.6342328786849976, -0.34879735112190247, 0.017077267169952393, -0.34111130237579346, 0.006246710661798716, -0.005062136333435774, 0.5978775024414062, -0.29985925555229187, 0.005578497424721718, 0.004486285150051117, -0.014215896837413311, -0.09670326113700867, -2.4868345260620117, 0.5621799826622009, 0.3215487599372864, 0.8663276433944702, 0.11222028732299805, 0.3507063686847687, -0.11176488548517227, -2.533033847808838, -0.6931555867195129, -0.07639943808317184, 0.9295803904533386, -0.16320118308067322, 0.2895987927913666, 0.20023243129253387]} +{"t": 8.9817, "q": [-0.30878692865371704, -0.01202811487019062, 0.005571028683334589, 0.634198784828186, -0.34878918528556824, 0.017091866582632065, -0.3410942554473877, 0.006110356654971838, -0.005303190555423498, 0.5976048111915588, -0.29983070492744446, 0.005643427837640047, 0.005102312192320824, -0.014406239613890648, -0.09648648649454117, -2.500688314437866, 0.564552903175354, 0.31764188408851624, 0.8792226910591125, 0.11388609558343887, 0.3531990945339203, -0.1140778437256813, -2.5448381900787354, -0.6926522850990295, -0.07635150104761124, 0.9426791667938232, -0.16302141547203064, 0.29090508818626404, 0.20405539870262146]} +{"t": 8.9985, "q": [-0.3090340793132782, -0.012121858075261116, 0.00546389352530241, 0.6341561675071716, -0.34879329800605774, 0.017070040106773376, -0.3411368727684021, 0.005982525181025267, -0.005410325713455677, 0.5973576903343201, -0.29981833696365356, 0.005650580860674381, 0.005477285478264093, -0.014490052126348019, -0.09624872356653214, -2.514458179473877, 0.5669377446174622, 0.3118774890899658, 0.893016517162323, 0.11547999083995819, 0.3546491861343384, -0.11606722325086594, -2.557098150253296, -0.6918852925300598, -0.07633951306343079, 0.9564729928970337, -0.16251808404922485, 0.2914923131465912, 0.20892100036144257]} +{"t": 9.0152, "q": [-0.3092045187950134, -0.012198556214571, 0.005396933760493994, 0.6340794563293457, -0.34879735112190247, 0.017077267169952393, -0.34106871485710144, 0.005922870244830847, -0.005504068918526173, 0.5970423817634583, -0.29977697134017944, 0.005650232080370188, 0.006374542135745287, -0.014512983150780201, -0.09602073580026627, -2.528024435043335, 0.5686514973640442, 0.3064366281032562, 0.9052164554595947, 0.11756525188684464, 0.3553442656993866, -0.11770906299352646, -2.568423271179199, -0.6916096210479736, -0.07632753252983093, 0.9682295322418213, -0.16221846640110016, 0.29205557703971863, 0.2136307954788208]} +{"t": 9.0319, "q": [-0.30942609906196594, -0.012249689549207687, 0.005276407115161419, 0.6338834762573242, -0.34879735112190247, 0.017077267169952393, -0.3411027789115906, 0.005803560372442007, -0.00575851509347558, 0.5967696309089661, -0.29978108406066895, 0.005643027368932962, 0.007365542463958263, -0.01460438221693039, -0.09583919495344162, -2.541614532470703, 0.5694065093994141, 0.3012474775314331, 0.9179916381835938, 0.1206691637635231, 0.35597941279411316, -0.11893144994974136, -2.5792927742004395, -0.6915856599807739, -0.07662713527679443, 0.9776251316070557, -0.16161926090717316, 0.2924869954586029, 0.21829266846179962]} +{"t": 9.0486, "q": [-0.30956244468688965, -0.01232638768851757, 0.005062136333435774, 0.6336618661880493, -0.34879329800605774, 0.017070040106773376, -0.3410942554473877, 0.0057098171673715115, -0.00605313666164875, 0.5964798927307129, -0.29977697134017944, 0.005650232080370188, 0.008249407634139061, -0.01459682360291481, -0.09574297070503235, -2.554257869720459, 0.5705209970474243, 0.29539915919303894, 0.9304912090301514, 0.12379704415798187, 0.35650673508644104, -0.1197463795542717, -2.5919482707977295, -0.6914178729057312, -0.0770585685968399, 0.988578736782074, -0.15955796837806702, 0.2927626371383667, 0.22173213958740234]} +{"t": 9.0654, "q": [-0.30955392122268677, -0.01232638768851757, 0.005075528286397457, 0.6333380341529846, -0.348789244890213, 0.01706281304359436, -0.34106871485710144, 0.005650162696838379, -0.006200447678565979, 0.5962327718734741, -0.29978108406066895, 0.005643027368932962, 0.009039529599249363, -0.014497931115329266, -0.09567643702030182, -2.567056894302368, 0.5718632340431213, 0.2863990068435669, 0.9429427981376648, 0.12796755135059357, 0.35690221190452576, -0.12005797028541565, -2.6039085388183594, -0.6907827258110046, -0.07725031673908234, 0.9986335039138794, -0.157017320394516, 0.29300233721733093, 0.22412897646427155]} +{"t": 9.0821, "q": [-0.3095880150794983, -0.012343432754278183, 0.005021960940212011, 0.6328863501548767, -0.348789244890213, 0.01706281304359436, -0.3410772383213043, 0.005667206831276417, -0.006320974789559841, 0.5959600806236267, -0.2997894287109375, 0.005657576490193605, 0.009548421949148178, -0.014368641190230846, -0.09549830853939056, -2.5811984539031982, 0.5720669627189636, 0.28044286370277405, 0.95599365234375, 0.13139504194259644, 0.3571658730506897, -0.12040551006793976, -2.616060495376587, -0.6899558305740356, -0.07826897501945496, 1.007190227508545, -0.1549680233001709, 0.2929424047470093, 0.22702915966510773]} +{"t": 9.0989, "q": [-0.3095880150794983, -0.01232638768851757, 0.004968393128365278, 0.6323665380477905, -0.34878113865852356, 0.017048360779881477, -0.34106871485710144, 0.005658684764057398, -0.00646828580647707, 0.5955169200897217, -0.2997894287109375, 0.005657576490193605, 0.009976962581276894, -0.014056690037250519, -0.09540993720293045, -2.5933263301849365, 0.5723186731338501, 0.27490612864494324, 0.9675943851470947, 0.13382785022258759, 0.35715389251708984, -0.12086091190576553, -2.6282124519348145, -0.6895723342895508, -0.07953930646181107, 1.014500617980957, -0.15306252241134644, 0.29245105385780334, 0.22916235029697418]} +{"t": 9.1156, "q": [-0.309536874294281, -0.012343432754278183, 0.004955001175403595, 0.6319659948348999, -0.34877708554267883, 0.01704113371670246, -0.3410516679286957, 0.005650162696838379, -0.0065620290115475655, 0.5953464508056641, -0.29978108406066895, 0.005643027368932962, 0.010298367589712143, -0.013470914214849472, -0.09505622088909149, -2.6052627563476562, 0.5731934905052185, 0.268266886472702, 0.979314923286438, 0.13773469626903534, 0.35690221190452576, -0.12093281745910645, -2.640795946121216, -0.6887813806533813, -0.08205599337816238, 1.020708441734314, -0.151300847530365, 0.29219937324523926, 0.2301330715417862]} +{"t": 9.1324, "q": [-0.30956244468688965, -0.01232638768851757, 0.004995177034288645, 0.6317359209060669, -0.34875670075416565, 0.017048576846718788, -0.34097495675086975, 0.005667206831276417, -0.006655772216618061, 0.595278263092041, -0.29977279901504517, 0.005642957519739866, 0.010392110794782639, -0.012504681013524532, -0.09429613500833511, -2.6172947883605957, 0.5741522312164307, 0.2640364468097687, 0.9903284311294556, 0.14009559154510498, 0.3563868999481201, -0.12093281745910645, -2.6545298099517822, -0.6876189112663269, -0.08650213479995728, 1.0280307531356812, -0.14781343936920166, 0.2912406325340271, 0.23058848083019257]} +{"t": 9.1492, "q": [-0.30955392122268677, -0.012292299419641495, 0.005062136333435774, 0.6315057873725891, -0.34873631596565247, 0.017056021839380264, -0.3409920036792755, 0.005684250965714455, -0.006695947609841824, 0.5952867865562439, -0.29978516697883606, 0.005635822657495737, 0.01033854391425848, -0.011173199862241745, -0.09330151975154877, -2.6287996768951416, 0.5753147006034851, 0.2601296007633209, 1.0018572807312012, 0.1414138525724411, 0.35505664348602295, -0.1209447979927063, -2.6677603721618652, -0.68626469373703, -0.08991764485836029, 1.0347899198532104, -0.1429118812084198, 0.29035380482673645, 0.2308041900396347]} +{"t": 9.166, "q": [-0.30955392122268677, -0.012292299419641495, 0.00516927195712924, 0.6312416195869446, -0.3487159311771393, 0.017048923298716545, -0.34088975191116333, 0.0057012951001524925, -0.006736123468726873, 0.5951760411262512, -0.29976850748062134, 0.005621185526251793, 0.01033854391425848, -0.009552390314638615, -0.09212490916252136, -2.6388425827026367, 0.5766329765319824, 0.25672608613967896, 1.0128707885742188, 0.14402641355991364, 0.35333091020584106, -0.12089686095714569, -2.6820456981658936, -0.6842752695083618, -0.09260211139917374, 1.0404704809188843, -0.13785454630851746, 0.2892872095108032, 0.23098395764827728]} +{"t": 9.1827, "q": [-0.30951130390167236, -0.012309344485402107, 0.005222839303314686, 0.6310029625892639, -0.34870368242263794, 0.017070820555090904, -0.3408471345901489, 0.00571833923459053, -0.006816474720835686, 0.5952441692352295, -0.29976850748062134, 0.005621185526251793, 0.010164448991417885, -0.007665060460567474, -0.09073155373334885, -2.6495323181152344, 0.5786823034286499, 0.25223198533058167, 1.0234768390655518, 0.14725017547607422, 0.35061049461364746, -0.12093281745910645, -2.6953840255737305, -0.6814590096473694, -0.09561014920473099, 1.0451083183288574, -0.13463078439235687, 0.2882445752620697, 0.23104387521743774]} +{"t": 9.1995, "q": [-0.30947721004486084, -0.012275256216526031, 0.00542371766641736, 0.630841076374054, -0.3486955761909485, 0.017056366428732872, -0.3408045172691345, 0.005726861767470837, -0.006776299327611923, 0.5954572558403015, -0.2997644245624542, 0.005628390237689018, 0.009722515940666199, -0.005891692359000444, -0.08954862505197525, -2.6591796875, 0.5804080367088318, 0.24879251420497894, 1.0326207876205444, 0.1492035984992981, 0.34901657700538635, -0.12088488042354584, -2.708650588989258, -0.6781873106956482, -0.09787517040967941, 1.0500218868255615, -0.13289307057857513, 0.2875255346298218, 0.2308761030435562]} +{"t": 9.2162, "q": [-0.30937495827674866, -0.012275256216526031, 0.0057719070464372635, 0.6305683851242065, -0.3486793339252472, 0.017027458176016808, -0.34069374203681946, 0.0057439059019088745, -0.006736123468726873, 0.5958833694458008, -0.29976850748062134, 0.005621185526251793, 0.009454678744077682, -0.0037528385873883963, -0.0882047787308693, -2.668755054473877, 0.582493245601654, 0.24513733386993408, 1.0415610074996948, 0.14979083836078644, 0.34696727991104126, -0.12088488042354584, -2.722923755645752, -0.673944890499115, -0.09994843602180481, 1.0564574003219604, -0.12999288737773895, 0.28723791241645813, 0.2307083159685135]} +{"t": 9.2331, "q": [-0.30918747186660767, -0.012249689549207687, 0.006120096426457167, 0.6302189826965332, -0.3486548960208893, 0.017027676105499268, -0.34047216176986694, 0.005760950036346912, -0.006669164169579744, 0.596684455871582, -0.29976850748062134, 0.005621185526251793, 0.009280583821237087, -0.001788915367797017, -0.08708155155181885, -2.6769044399261475, 0.5842669606208801, 0.24178174138069153, 1.049111008644104, 0.1501024216413498, 0.34604451060295105, -0.12090884894132614, -2.734992027282715, -0.6695107221603394, -0.10131464153528214, 1.0621978044509888, -0.12499547004699707, 0.28705814480781555, 0.2305525243282318]} +{"t": 9.2498, "q": [-0.3091363310813904, -0.012258211150765419, 0.006307582836598158, 0.629861056804657, -0.34864675998687744, 0.017027748748660088, -0.34042102098464966, 0.0057439059019088745, -0.006615596357733011, 0.5971360802650452, -0.29977262020111084, 0.0056139808148145676, 0.009026138111948967, 8.374192839255556e-05, -0.08599045872688293, -2.6861801147460938, 0.5857290029525757, 0.24010396003723145, 1.0574281215667725, 0.15033012628555298, 0.34516966342926025, -0.12093281745910645, -2.748342275619507, -0.6647529602050781, -0.1023213118314743, 1.0687053203582764, -0.11871573328971863, 0.28645893931388855, 0.23042069375514984]} +{"t": 9.2665, "q": [-0.3090766668319702, -0.012275256216526031, 0.0065620290115475655, 0.6297502517700195, -0.34863054752349854, 0.016998840495944023, -0.34029319882392883, 0.0057439059019088745, -0.0065620290115475655, 0.5973576903343201, -0.2997601628303528, 0.00560663640499115, 0.008691340684890747, 0.0022685786243528128, -0.0844941958785057, -2.696702241897583, 0.5866997241973877, 0.23906132578849792, 1.0662604570388794, 0.15039004385471344, 0.3448820412158966, -0.1209687665104866, -2.761453151702881, -0.6595758199691772, -0.10399910807609558, 1.075835943222046, -0.11484482884407043, 0.2861473560333252, 0.22980950772762299]} +{"t": 9.2834, "q": [-0.30901703238487244, -0.012275256216526031, 0.006642380263656378, 0.6295883059501648, -0.34861019253730774, 0.01697721518576145, -0.3402676284313202, 0.0057524279691278934, -0.006535245105624199, 0.5974940061569214, -0.2997560501098633, 0.005613841116428375, 0.00832975935190916, 0.0038672855589538813, -0.08322668820619583, -2.705379009246826, 0.5871551036834717, 0.2383183091878891, 1.072648048400879, 0.15055781602859497, 0.34417495131492615, -0.12093281745910645, -2.7725744247436523, -0.6542068719863892, -0.10645586997270584, 1.0817081928253174, -0.11371831595897675, 0.28588369488716125, 0.2289346605539322]} +{"t": 9.3001, "q": [-0.308906227350235, -0.012275256216526031, 0.006776299327611923, 0.6294093728065491, -0.34861019253730774, 0.01697721518576145, -0.34025058150291443, 0.005760950036346912, -0.006508461199700832, 0.5977070927619934, -0.2997684180736542, 0.005606706254184246, 0.007874434813857079, 0.005275669973343611, -0.08208701759576797, -2.714043617248535, 0.5872150659561157, 0.23758725821971893, 1.078760027885437, 0.15058179199695587, 0.3434079885482788, -0.1209447979927063, -2.782904863357544, -0.648993730545044, -0.10821755230426788, 1.0874606370925903, -0.11290338635444641, 0.28560805320739746, 0.2280837744474411]} +{"t": 9.3168, "q": [-0.3087272644042969, -0.01226673275232315, 0.006923609878867865, 0.6291792392730713, -0.3485817313194275, 0.016955679282546043, -0.34019091725349426, 0.005760950036346912, -0.006454893853515387, 0.598039448261261, -0.29975178837776184, 0.005592087283730507, 0.00743250222876668, 0.006288193166255951, -0.08092696964740753, -2.7228758335113525, 0.5870233178138733, 0.2362929731607437, 1.0855790376663208, 0.15061774849891663, 0.3423413634300232, -0.1209927350282669, -2.7927558422088623, -0.644583523273468, -0.10994328558444977, 1.0938841104507446, -0.11207647621631622, 0.2853443920612335, 0.22714900970458984]} +{"t": 9.3338, "q": [-0.30865058302879333, -0.012275256216526031, 0.007070920895785093, 0.6290003061294556, -0.34857362508773804, 0.01694122515618801, -0.3402164876461029, 0.0057524279691278934, -0.006347758695483208, 0.5982013940811157, -0.2997477054595947, 0.005599291995167732, 0.007111096754670143, 0.006706927437335253, -0.07974575459957123, -2.7314565181732178, 0.5867956280708313, 0.23443540930747986, 1.0915831327438354, 0.15061774849891663, 0.34155040979385376, -0.12105266004800797, -2.802762746810913, -0.6410122513771057, -0.1122322678565979, 1.101398229598999, -0.11177686601877213, 0.2849729061126709, 0.22610637545585632]} +{"t": 9.3505, "q": [-0.30845457315444946, -0.012300821952521801, 0.0071914480067789555, 0.6288468837738037, -0.34854117035865784, 0.016883373260498047, -0.34023353457450867, 0.005760950036346912, -0.006267406977713108, 0.5984485149383545, -0.29975587129592896, 0.0055848825722932816, 0.006655772216618061, 0.007384474389255047, -0.07837504148483276, -2.740384817123413, 0.5867356657981873, 0.2325778603553772, 1.0976351499557495, 0.15068964660167694, 0.3404358923435211, -0.12136425077915192, -2.8120265007019043, -0.6374169588088989, -0.1155518963932991, 1.1082651615142822, -0.11175289750099182, 0.2845294773578644, 0.2245364487171173]} +{"t": 9.3672, "q": [-0.30808812379837036, -0.01232638768851757, 0.007472677621990442, 0.6286935210227966, -0.34852495789527893, 0.016854465007781982, -0.34015682339668274, 0.0057524279691278934, -0.006012961268424988, 0.5987382531166077, -0.29974350333213806, 0.005592017434537411, 0.006160271819680929, 0.008084827102720737, -0.07731228321790695, -2.74845027923584, 0.5868315696716309, 0.23128356039524078, 1.1033636331558228, 0.15053385496139526, 0.33783531188964844, -0.12197544425725937, -2.8198401927948, -0.6341812014579773, -0.11812850832939148, 1.1138378381729126, -0.11175289750099182, 0.28411003947257996, 0.22160030901432037]} +{"t": 9.3839, "q": [-0.3077983558177948, -0.012343432754278183, 0.007834259420633316, 0.628667950630188, -0.3485167920589447, 0.016854537650942802, -0.34014829993247986, 0.005726861767470837, -0.005812082905322313, 0.5990365147590637, -0.29974761605262756, 0.005584812723100185, 0.005905826110392809, 0.008701418526470661, -0.07642579823732376, -2.756120204925537, 0.5871551036834717, 0.23076824843883514, 1.1084569692611694, 0.1504739373922348, 0.3346475064754486, -0.12341354787349701, -2.827725887298584, -0.6313170194625854, -0.12051337212324142, 1.1200097799301147, -0.11175289750099182, 0.2837744653224945, 0.2190956026315689]} +{"t": 9.4006, "q": [-0.3075767755508423, -0.01236047688871622, 0.007968178018927574, 0.6285400986671448, -0.3485005795955658, 0.016825629398226738, -0.34014829993247986, 0.00571833923459053, -0.005664771888405085, 0.5991899371147156, -0.29974350333213806, 0.005592017434537411, 0.005678163841366768, 0.009219040162861347, -0.07567492127418518, -2.7625436782836914, 0.5873948335647583, 0.23058848083019257, 1.1126633882522583, 0.15036606788635254, 0.331327885389328, -0.12600214779376984, -2.8354437351226807, -0.6296152472496033, -0.122442826628685, 1.1260737180709839, -0.11175289750099182, 0.283474862575531, 0.21760955452919006]} +{"t": 9.4174, "q": [-0.30750009417533875, -0.012368999421596527, 0.007968178018927574, 0.6285145282745361, -0.3484761714935303, 0.016811320558190346, -0.3401312828063965, 0.0057098171673715115, -0.005624596029520035, 0.599300742149353, -0.29973942041397095, 0.005599222145974636, 0.005637987982481718, 0.009333197958767414, -0.07491721212863922, -2.7698421478271484, 0.5872270464897156, 0.23039673268795013, 1.1185356378555298, 0.1501503586769104, 0.3278164863586426, -0.1288064569234848, -2.8431496620178223, -0.6283448934555054, -0.12588229775428772, 1.1311910152435303, -0.11171694844961166, 0.2831992208957672, 0.21546438336372375]} +{"t": 9.4342, "q": [-0.30749157071113586, -0.01238604262471199, 0.007941394113004208, 0.6284719109535217, -0.3484477400779724, 0.01677522249519825, -0.34024205803871155, 0.0057098171673715115, -0.005584420636296272, 0.5993177890777588, -0.29973942041397095, 0.005599222145974636, 0.005450501572340727, 0.00915044266730547, -0.07412359863519669, -2.7772603034973145, 0.5868435502052307, 0.2302289456129074, 1.1248992681503296, 0.15004250407218933, 0.3251440227031708, -0.13048423826694489, -2.850675582885742, -0.6274580955505371, -0.12872256338596344, 1.136296272277832, -0.11170496046543121, 0.2828996181488037, 0.2127799242734909]} +{"t": 9.4509, "q": [-0.3074404299259186, -0.01238604262471199, 0.007941394113004208, 0.6284804344177246, -0.34840717911720276, 0.01670295186340809, -0.3403017222881317, 0.0057012951001524925, -0.005490677431225777, 0.5993604063987732, -0.2997268736362457, 0.005577380303293467, 0.0052094473503530025, 0.009424439631402493, -0.07356325536966324, -2.7831923961639404, 0.586448073387146, 0.22994132339954376, 1.1310232877731323, 0.15004250407218933, 0.3231905996799469, -0.1318025141954422, -2.858153820037842, -0.6264634132385254, -0.1308317929506302, 1.1436666250228882, -0.11169297993183136, 0.2824801802635193, 0.21015536785125732]} +{"t": 9.4677, "q": [-0.30726146697998047, -0.012437175959348679, 0.008008353412151337, 0.6284378170967102, -0.34833410382270813, 0.016601888462901115, -0.34034430980682373, 0.00564164062961936, -0.005276407115161419, 0.5992751717567444, -0.2997268736362457, 0.005577380303293467, 0.004941609688103199, 0.009706077165901661, -0.07337906211614609, -2.788153886795044, 0.5858608484268188, 0.2296057641506195, 1.1367636919021606, 0.14986273646354675, 0.32218390703201294, -0.13371998071670532, -2.8639183044433594, -0.6251690983772278, -0.13249759376049042, 1.1495028734207153, -0.11162107437849045, 0.2821565866470337, 0.2076147198677063]} +{"t": 9.4845, "q": [-0.3069802522659302, -0.012582051567733288, 0.008276191540062428, 0.6285827159881592, -0.34828945994377136, 0.016551360487937927, -0.34047216176986694, 0.0054882424883544445, -0.005048744846135378, 0.5991728901863098, -0.29973524808883667, 0.005591947585344315, 0.004740730859339237, 0.0099572679027915, -0.07311448454856873, -2.793403148651123, 0.5844946503639221, 0.22942601144313812, 1.1432112455368042, 0.1496230512857437, 0.32078176736831665, -0.13600897789001465, -2.8701980113983154, -0.6231317520141602, -0.1341753900051117, 1.1555548906326294, -0.11151321232318878, 0.28182104229927063, 0.20501413941383362]} +{"t": 9.5012, "q": [-0.30691206455230713, -0.012726927176117897, 0.008624380454421043, 0.6286594271659851, -0.34824076294898987, 0.016493597999215126, -0.3408982753753662, 0.005258145276457071, -0.004740730859339237, 0.598712682723999, -0.29973104596138, 0.005584654863923788, 0.004767514765262604, 0.010246512480080128, -0.07289522886276245, -2.7981607913970947, 0.582936704158783, 0.2293540984392166, 1.1490355730056763, 0.14908376336097717, 0.3184927701950073, -0.13780660927295685, -2.87731671333313, -0.6201357245445251, -0.13550563156604767, 1.1624338626861572, -0.11114170402288437, 0.28154540061950684, 0.2019701451063156]} +{"t": 9.5181, "q": [-0.30691206455230713, -0.012846237048506737, 0.008691340684890747, 0.6287701725959778, -0.3481557071208954, 0.01634168066084385, -0.3409408628940582, 0.005062136333435774, -0.004673771560192108, 0.598712682723999, -0.299751877784729, 0.005606566555798054, 0.004767514765262604, 0.010695607401430607, -0.07265184819698334, -2.802510976791382, 0.5811870098114014, 0.22934211790561676, 1.1548718214035034, 0.148856058716774, 0.3162277638912201, -0.13913685083389282, -2.883368730545044, -0.6168400645256042, -0.1368958055973053, 1.168497920036316, -0.11051852256059647, 0.28136563301086426, 0.19848273694515228]} +{"t": 9.5349, "q": [-0.3069717288017273, -0.012922936119139194, 0.008691340684890747, 0.6287446022033691, -0.3479733467102051, 0.016059745103120804, -0.3412221074104309, 0.004866127856075764, -0.004566636402159929, 0.5987638235092163, -0.2997477948665619, 0.005613771267235279, 0.004767514765262604, 0.011175120249390602, -0.0723687931895256, -2.8080477714538574, 0.5790777802467346, 0.2293540984392166, 1.1622540950775146, 0.14879614114761353, 0.3140586018562317, -0.1402154415845871, -2.8886895179748535, -0.6128612756729126, -0.13821406662464142, 1.1729559898376465, -0.10970360040664673, 0.28124579787254333, 0.19542676210403442]} +{"t": 9.5516, "q": [-0.3070739805698395, -0.012982591055333614, 0.008758299984037876, 0.6287872195243835, -0.34776657819747925, 0.015763459727168083, -0.3414181172847748, 0.004823517519980669, -0.004446109291166067, 0.5988661050796509, -0.29973104596138, 0.005584654863923788, 0.004687163513153791, 0.011791624128818512, -0.07192645967006683, -2.813944101333618, 0.5769685506820679, 0.22940203547477722, 1.170151710510254, 0.14848455786705017, 0.3118055760860443, -0.141437828540802, -2.894430160522461, -0.608942449092865, -0.13884922862052917, 1.1780613660812378, -0.10930811613798141, 0.2810061275959015, 0.19305388629436493]} +{"t": 9.5684, "q": [-0.3072103261947632, -0.012965546920895576, 0.008758299984037876, 0.6287276148796082, -0.34748274087905884, 0.015373317524790764, -0.3416993319988251, 0.004806472919881344, -0.004365758039057255, 0.5988064408302307, -0.29964348673820496, 0.005475309211760759, 0.004620204214006662, 0.012217852286994457, -0.07159824669361115, -2.818617820739746, 0.5750390887260437, 0.22965370118618011, 1.1780972480773926, 0.14811304211616516, 0.3081144392490387, -0.14267219603061676, -2.9005661010742188, -0.6049996614456177, -0.1392926573753357, 1.1852997541427612, -0.1089126393198967, 0.2807304859161377, 0.1910645067691803]} +{"t": 9.5851, "q": [-0.30722737312316895, -0.01299111358821392, 0.008758299984037876, 0.6286168098449707, -0.347166508436203, 0.014910748228430748, -0.3417334258556366, 0.004797950852662325, -0.004245230928063393, 0.5987979173660278, -0.2995058000087738, 0.005293112248182297, 0.004432717338204384, 0.012377691455185413, -0.07153405249118805, -2.82167387008667, 0.5732774138450623, 0.23037275671958923, 1.183741807937622, 0.14775350689888, 0.3042195439338684, -0.14458967745304108, -2.90495228767395, -0.601020872592926, -0.14001169800758362, 1.1900455951690674, -0.1086130365729332, 0.2804788053035736, 0.1895904392004013]} +{"t": 9.6018, "q": [-0.3072870373725891, -0.012982591055333614, 0.00866455677896738, 0.6286935210227966, -0.3470449149608612, 0.014737335033714771, -0.3418697714805603, 0.004797950852662325, -0.0042854067869484425, 0.5989342927932739, -0.29943934082984924, 0.005249097477644682, 0.004218447022140026, 0.012811514548957348, -0.07123115658760071, -2.825340986251831, 0.5719830989837646, 0.23069633543491364, 1.1890268325805664, 0.14754977822303772, 0.3019185960292816, -0.14719025790691376, -2.9096739292144775, -0.5964308977127075, -0.14200107753276825, 1.1948271989822388, -0.10840930044651031, 0.28046682476997375, 0.18797257542610168]} +{"t": 9.6185, "q": [-0.3074233829975128, -0.012965546920895576, 0.008704732172191143, 0.6288724541664124, -0.34697994589805603, 0.014679726213216782, -0.342151015996933, 0.004823517519980669, -0.004245230928063393, 0.5991302728652954, -0.2994351387023926, 0.00524182291701436, 0.0037631227169185877, 0.013283364474773407, -0.07092402130365372, -2.8287925720214844, 0.5710483193397522, 0.23079220950603485, 1.1943598985671997, 0.14759771525859833, 0.3007800877094269, -0.14933542907238007, -2.9145994186401367, -0.5916012525558472, -0.14369085431098938, 1.1996688842773438, -0.1082894578576088, 0.28034698963165283, 0.18573153018951416]} +{"t": 9.6353, "q": [-0.30759382247924805, -0.012939980253577232, 0.008758299984037876, 0.6290173530578613, -0.3469473421573639, 0.014694525860249996, -0.34249189496040344, 0.004823517519980669, -0.004178271628916264, 0.5993348360061646, -0.2994226813316345, 0.005234478507190943, 0.003468500915914774, 0.013770435936748981, -0.07063701748847961, -2.8322439193725586, 0.5704131722450256, 0.23104387521743774, 1.1992493867874146, 0.14759771525859833, 0.3000490367412567, -0.15035408735275269, -2.9197168350219727, -0.5869393944740295, -0.14484134316444397, 1.20443856716156, -0.10818160325288773, 0.2802031636238098, 0.1835503876209259]} +{"t": 9.652, "q": [-0.3077472448348999, -0.0129314586520195, 0.008798475377261639, 0.6291366219520569, -0.3468455970287323, 0.014688098803162575, -0.34280720353126526, 0.004832039587199688, -0.004097919911146164, 0.5996330976486206, -0.2994060516357422, 0.005219841841608286, 0.0031604873947799206, 0.014204239472746849, -0.07037467509508133, -2.8352160453796387, 0.569718062877655, 0.231750950217247, 1.203012466430664, 0.147525817155838, 0.29942587018013, -0.15088139474391937, -2.9237914085388184, -0.5827689170837402, -0.14591993391513824, 1.2079260349273682, -0.1080138236284256, 0.2801552414894104, 0.18184863030910492]} +{"t": 9.6688, "q": [-0.3077983558177948, -0.012922936119139194, 0.008825259283185005, 0.6292815208435059, -0.3468455970287323, 0.014688098803162575, -0.34303730726242065, 0.0048916940577328205, -0.004030960611999035, 0.6000080704689026, -0.29940176010131836, 0.0051980880089104176, 0.0029060414526611567, 0.014409706927835941, -0.07016072422266006, -2.8373491764068604, 0.5687713027000427, 0.2322303205728531, 1.2052055597305298, 0.14746588468551636, 0.29798775911331177, -0.15113306045532227, -2.927602529525757, -0.5796889662742615, -0.1468546986579895, 1.2105865478515625, -0.10778611898422241, 0.2800114154815674, 0.18041053414344788]} +{"t": 9.6855, "q": [-0.3080710768699646, -0.012905891984701157, 0.008852043189108372, 0.6295627355575562, -0.3468170464038849, 0.014710132032632828, -0.3434293270111084, 0.0049257827922701836, -0.004071136470884085, 0.6004341840744019, -0.29938921332359314, 0.005176264327019453, 0.002865865593776107, 0.014417290687561035, -0.06998541206121445, -2.8393986225128174, 0.5680762529373169, 0.23309318721294403, 1.2078421115875244, 0.1470584273338318, 0.2962620258331299, -0.15138472616672516, -2.931029796600342, -0.5771722793579102, -0.14842462539672852, 1.2121564149856567, -0.10757040232419968, 0.27986761927604675, 0.17814551293849945]} +{"t": 9.7023, "q": [-0.30818185210227966, -0.012888847850263119, 0.008865434676408768, 0.6299206614494324, -0.3468169569969177, 0.01473921351134777, -0.3436509072780609, 0.004993959795683622, -0.004084527958184481, 0.6009369492530823, -0.2993890345096588, 0.005147305782884359, 0.002852473873645067, 0.014226933941245079, -0.06960835307836533, -2.8417954444885254, 0.5677646398544312, 0.23390810191631317, 1.211377501487732, 0.1469026356935501, 0.29502764344215393, -0.15143266320228577, -2.9346132278442383, -0.5749431848526001, -0.15086941421031952, 1.2135345935821533, -0.10751048475503922, 0.27986761927604675, 0.1754131019115448]} +{"t": 9.7191, "q": [-0.30842047929763794, -0.012888847850263119, 0.0089993542060256, 0.6302700638771057, -0.3468088209629059, 0.014739280566573143, -0.34400883316993713, 0.005002481862902641, -0.004071136470884085, 0.6013886332511902, -0.29937678575515747, 0.005168919917196035, 0.0028256899677217007, 0.014082234352827072, -0.06920168548822403, -2.8440005779266357, 0.5677526593208313, 0.23493875563144684, 1.2146611213684082, 0.14689065515995026, 0.2944404184818268, -0.15145663917064667, -2.938016653060913, -0.5731335878372192, -0.1540212631225586, 1.2149608135223389, -0.10746254771947861, 0.2798795998096466, 0.17351959645748138]} +{"t": 9.7358, "q": [-0.3087102174758911, -0.012888847850263119, 0.009240408428013325, 0.6304746270179749, -0.34677615761756897, 0.01478316355496645, -0.34451162815093994, 0.005002481862902641, -0.003937217406928539, 0.6018062233924866, -0.2993517518043518, 0.005139733664691448, 0.002758730435743928, 0.013891895301640034, -0.06895504146814346, -2.8461456298828125, 0.5679324269294739, 0.23595741391181946, 1.2183043956756592, 0.14673484861850739, 0.29376929998397827, -0.15145663917064667, -2.940761089324951, -0.5719112157821655, -0.15675365924835205, 1.2164467573165894, -0.10736667364835739, 0.27991554141044617, 0.1718418002128601]} +{"t": 9.7527, "q": [-0.3088039755821228, -0.012905891984701157, 0.009628772735595703, 0.6307047009468079, -0.3467680513858795, 0.014768698252737522, -0.3447928726673126, 0.00501100393012166, -0.0036827712319791317, 0.6023260951042175, -0.29932695627212524, 0.005139524582773447, 0.002758730435743928, 0.013648245483636856, -0.06861291825771332, -2.8470804691314697, 0.568004310131073, 0.2371198832988739, 1.219814419746399, 0.1461596041917801, 0.2926667630672455, -0.15148060023784637, -2.9427504539489746, -0.5712640285491943, -0.1585632860660553, 1.2180886268615723, -0.10717492550611496, 0.2798795998096466, 0.17060743272304535]} +{"t": 9.7694, "q": [-0.3088039755821228, -0.012914413586258888, 0.009950178675353527, 0.631071150302887, -0.34677210450172424, 0.014775930903851986, -0.3449377417564392, 0.005019525997340679, -0.003468500915914774, 0.6028544306755066, -0.29931876063346863, 0.005153952166438103, 0.0027721223887056112, 0.013358864933252335, -0.06800071895122528, -2.8477516174316406, 0.5678845047950745, 0.23895347118377686, 1.220569372177124, 0.14520087838172913, 0.29125261306762695, -0.15158846974372864, -2.9446918964385986, -0.5707007646560669, -0.16113989055156708, 1.2200300693511963, -0.10691127181053162, 0.27989158034324646, 0.1696486920118332]} +{"t": 9.7861, "q": [-0.3088039755821228, -0.0129314586520195, 0.010191232897341251, 0.631514310836792, -0.34676802158355713, 0.014783230610191822, -0.3449974060058594, 0.004985437728464603, -0.0033077981788665056, 0.6033061146736145, -0.29929402470588684, 0.005168203730136156, 0.0027453387156128883, 0.013023740611970425, -0.06709835678339005, -2.848350763320923, 0.5675010085105896, 0.24058331549167633, 1.2216119766235352, 0.14432603120803833, 0.2893950641155243, -0.1516963243484497, -2.9470648765563965, -0.5699577927589417, -0.1655261218547821, 1.2231100797653198, -0.10667158663272858, 0.2799395024776459, 0.16871392726898193]} +{"t": 9.8029, "q": [-0.3087954521179199, -0.012965546920895576, 0.010378719307482243, 0.6317614316940308, -0.3467639684677124, 0.014775997959077358, -0.345022976398468, 0.00495134899392724, -0.0032006630208343267, 0.6036384701728821, -0.29924476146698, 0.005225720349699259, 0.002758730435743928, 0.012741955928504467, -0.06646142154932022, -2.8486504554748535, 0.5670096278190613, 0.24167388677597046, 1.222726583480835, 0.14414626359939575, 0.28753751516342163, -0.1516963243484497, -2.9487786293029785, -0.5697540640830994, -0.16738367080688477, 1.2254709005355835, -0.10638396441936493, 0.279927521944046, 0.1673716902732849]} +{"t": 9.8196, "q": [-0.30878692865371704, -0.013033723458647728, 0.01057959720492363, 0.632034182548523, -0.3467599153518677, 0.014768765307962894, -0.345022976398468, 0.004917260725051165, -0.003026568330824375, 0.6040049195289612, -0.2991824746131897, 0.0051889983005821705, 0.0027989062946289778, 0.012330797500908375, -0.06581912189722061, -2.848698377609253, 0.5668898224830627, 0.24227309226989746, 1.22422456741333, 0.1440623700618744, 0.28551217913627625, -0.1516963243484497, -2.9501566886901855, -0.5696821212768555, -0.16880980134010315, 1.2277839183807373, -0.1061922162771225, 0.2799035608768463, 0.16523849964141846]} +{"t": 9.8363, "q": [-0.3088039755821228, -0.013076335191726685, 0.010726908221840858, 0.6322813034057617, -0.3467599153518677, 0.014768765307962894, -0.3450740873813629, 0.004874649923294783, -0.0029060414526611567, 0.6042606234550476, -0.2991248369216919, 0.005231947638094425, 0.002865865593776107, 0.011927258223295212, -0.06523197144269943, -2.848722219467163, 0.566865861415863, 0.24247683584690094, 1.225638747215271, 0.14396649599075317, 0.2837984263896942, -0.1516963243484497, -2.9516189098358154, -0.5696821212768555, -0.1705954521894455, 1.2303484678268433, -0.10596451908349991, 0.2799035608768463, 0.16224244236946106]} +{"t": 9.8532, "q": [-0.30882954597473145, -0.013127466663718224, 0.010981354862451553, 0.6325539946556091, -0.34675586223602295, 0.01476153265684843, -0.34528714418411255, 0.004797950852662325, -0.0026783791836351156, 0.6046355962753296, -0.29910844564437866, 0.005260784644633532, 0.002946217078715563, 0.011417168192565441, -0.06464417278766632, -2.849033832550049, 0.566949725151062, 0.24293223023414612, 1.2272565364837646, 0.143511101603508, 0.28249216079711914, -0.1516723483800888, -2.9537758827209473, -0.5696821212768555, -0.17375928163528442, 1.2324817180633545, -0.10567689687013626, 0.28026309609413147, 0.15952202677726746]} +{"t": 9.8699, "q": [-0.30905964970588684, -0.0131615549325943, 0.011209016665816307, 0.63285231590271, -0.34675586223602295, 0.01476153265684843, -0.3456706404685974, 0.004738296382129192, -0.0024507169146090746, 0.6050786972045898, -0.2991085648536682, 0.005275282077491283, 0.0030533522367477417, 0.011150648817420006, -0.06418812274932861, -2.849752902984619, 0.567177414894104, 0.24351945519447327, 1.2288025617599487, 0.1422407627105713, 0.28196483850479126, -0.1516244113445282, -2.9557533264160156, -0.5699697732925415, -0.1754370778799057, 1.2349743843078613, -0.10550911724567413, 0.28108999133110046, 0.15608255565166473]} +{"t": 9.8866, "q": [-0.3093579113483429, -0.013255298137664795, 0.011704516597092152, 0.6330738663673401, -0.3467599153518677, 0.014768765307962894, -0.3463609218597412, 0.004559331573545933, -0.0021828790195286274, 0.6056156158447266, -0.29912519454956055, 0.005289901047945023, 0.0031872710678726435, 0.010929848067462444, -0.06388246268033981, -2.850519895553589, 0.5675728917121887, 0.24415461719036102, 1.2301088571548462, 0.1402873396873474, 0.28177309036254883, -0.15144465863704681, -2.9568560123443604, -0.570317268371582, -0.17677929997444153, 1.2370716333389282, -0.10500577837228775, 0.28126975893974304, 0.15270300209522247]} +{"t": 9.9035, "q": [-0.30988627672195435, -0.01334904134273529, 0.0121062733232975, 0.6331591010093689, -0.3467599153518677, 0.014768765307962894, -0.3473239243030548, 0.0043803672306239605, -0.0017811221769079566, 0.6062718033790588, -0.29912111163139343, 0.005297105759382248, 0.003334582084789872, 0.010891726240515709, -0.0636676549911499, -2.851694345474243, 0.5679084658622742, 0.24478977918624878, 1.2313791513442993, 0.1384177953004837, 0.28177309036254883, -0.15116901695728302, -2.9578146934509277, -0.5707607269287109, -0.17763018608093262, 1.2389172315597534, -0.10490990430116653, 0.2814854681491852, 0.1506536900997162]} +{"t": 9.9203, "q": [-0.3102186322212219, -0.013570617884397507, 0.01252142246812582, 0.633380651473999, -0.34675586223602295, 0.01476153265684843, -0.34816762804985046, 0.004218447022140026, -0.0012454462703317404, 0.6072177886962891, -0.29913774132728577, 0.005311724729835987, 0.0034149333368986845, 0.010686147026717663, -0.06338208168745041, -2.8528926372528076, 0.5682080984115601, 0.24577249586582184, 1.232589602470398, 0.1366441398859024, 0.2818330228328705, -0.15091735124588013, -2.958617687225342, -0.571132242679596, -0.17839717864990234, 1.2413140535354614, -0.10477808117866516, 0.2820607125759125, 0.14811304211616516]} +{"t": 9.937, "q": [-0.3103209137916565, -0.01364731602370739, 0.012735692784190178, 0.6336448192596436, -0.34676802158355713, 0.014783230610191822, -0.3486022651195526, 0.004133225884288549, -0.0008838651119731367, 0.6078057885169983, -0.2991543114185333, 0.005311882589012384, 0.0032944062259048223, 0.010389200411736965, -0.06295628100633621, -2.8538875579833984, 0.5683878064155579, 0.24753417074680328, 1.2335363626480103, 0.13533785939216614, 0.2818090617656708, -0.15060575306415558, -2.9591689109802246, -0.5713479518890381, -0.17904432117938995, 1.2439026832580566, -0.10459832102060318, 0.2829235792160034, 0.1447574496269226]} +{"t": 9.9537, "q": [-0.3103123903274536, -0.013689925894141197, 0.012829435989260674, 0.6337215304374695, -0.34677204489707947, 0.014790463261306286, -0.34872156381607056, 0.004150270018726587, -0.0007231623749248683, 0.6079165935516357, -0.2991461157798767, 0.005326292011886835, 0.003240838646888733, 0.010488070547580719, -0.06272225081920624, -2.8547861576080322, 0.568519651889801, 0.24961942434310913, 1.2346748113632202, 0.13411545753479004, 0.2817251682281494, -0.15029416978359222, -2.9592647552490234, -0.571132242679596, -0.18051838874816895, 1.2461796998977661, -0.10393918305635452, 0.28420591354370117, 0.14037123322486877]} +{"t": 9.9704, "q": [-0.31028681993484497, -0.013749580830335617, 0.012816044501960278, 0.6337215304374695, -0.34676802158355713, 0.014783230610191822, -0.3487130403518677, 0.0040735709480941296, -0.0006963785854168236, 0.6079251170158386, -0.2991461157798767, 0.005326292011886835, 0.003321190131828189, 0.010640260763466358, -0.06264321506023407, -2.855577230453491, 0.568519651889801, 0.2516447603702545, 1.2366881370544434, 0.13165870308876038, 0.2817012071609497, -0.1498986929655075, -2.959240674972534, -0.5706288814544678, -0.18374213576316833, 1.2484686374664307, -0.10301639884710312, 0.28597956895828247, 0.13552960753440857]} +{"t": 9.9874, "q": [-0.31030386686325073, -0.013741059228777885, 0.012762476690113544, 0.6337215304374695, -0.3467557728290558, 0.01479059737175703, -0.34867894649505615, 0.004048004746437073, -0.0007633380591869354, 0.607967734336853, -0.29913774132728577, 0.005311724729835987, 0.003589028026908636, 0.010716352611780167, -0.0625937208533287, -2.855888843536377, 0.5681720972061157, 0.25347834825515747, 1.237778663635254, 0.12922589480876923, 0.28168922662734985, -0.149599090218544, -2.9593725204467773, -0.5701974630355835, -0.18756510317325592, 1.2519440650939941, -0.1017221063375473, 0.28813672065734863, 0.13074789941310883]} +{"t": 10.0041, "q": [-0.31028681993484497, -0.013732537627220154, 0.012682124972343445, 0.6337215304374695, -0.3467476963996887, 0.014776132069528103, -0.34864485263824463, 0.004039482679218054, -0.0008436894277110696, 0.6079592108726501, -0.2991418242454529, 0.005304520018398762, 0.0037229470908641815, 0.010807663202285767, -0.06253432482481003, -2.856260299682617, 0.5677286982536316, 0.2559950351715088, 1.2383179664611816, 0.12706874310970306, 0.28164127469062805, -0.14921559393405914, -2.9593846797943115, -0.5700296759605408, -0.19112442433834076, 1.2553595304489136, -0.09847437590360641, 0.2915162742137909, 0.12770390510559082]} +{"t": 10.0209, "q": [-0.3102186322212219, -0.013724016025662422, 0.012668733485043049, 0.6337215304374695, -0.34676802158355713, 0.014783230610191822, -0.34863632917404175, 0.004090615548193455, -0.0008169056382030249, 0.6080188751220703, -0.2991418242454529, 0.005304520018398762, 0.0036292036529630423, 0.010838106274604797, -0.06253448873758316, -2.85715913772583, 0.5672972798347473, 0.25972214341163635, 1.2385576963424683, 0.12554673850536346, 0.2816532552242279, -0.14886803925037384, -2.9592885971069336, -0.569262683391571, -0.19704462587833405, 1.2587870359420776, -0.09634118527173996, 0.2944044768810272, 0.1243123710155487]} +{"t": 10.0377, "q": [-0.3101845681667328, -0.01370697095990181, 0.012641949579119682, 0.6337215304374695, -0.3467599153518677, 0.014768765307962894, -0.34863632917404175, 0.0040735709480941296, -0.0008035137434490025, 0.6080358624458313, -0.2991500198841095, 0.005290092434734106, 0.003575636073946953, 0.010822894051671028, -0.06256435066461563, -2.857938051223755, 0.567093551158905, 0.2629818320274353, 1.2386895418167114, 0.12367720156908035, 0.2816772162914276, -0.14826883375644684, -2.9593966007232666, -0.5688073039054871, -0.19962124526500702, 1.2626100778579712, -0.09555022418498993, 0.29669347405433655, 0.12018979340791702]} +{"t": 10.0544, "q": [-0.31015047430992126, -0.013681404292583466, 0.012628557160496712, 0.6337044835090637, -0.346743643283844, 0.014768899418413639, -0.34863632917404175, 0.004082093480974436, -0.0008302975329570472, 0.6081040501594543, -0.2991459369659424, 0.005297315306961536, 0.0034551091957837343, 0.010784853249788284, -0.0625990778207779, -2.858501434326172, 0.5671534538269043, 0.2653067708015442, 1.2387974262237549, 0.11973439157009125, 0.2817012071609497, -0.1477295458316803, -2.959540367126465, -0.5683638453483582, -0.2034921497106552, 1.266301155090332, -0.09533451497554779, 0.2985749840736389, 0.1158275380730629]} +{"t": 10.0712, "q": [-0.310099333524704, -0.013672882691025734, 0.012641949579119682, 0.6337130069732666, -0.3467314541339874, 0.014747166074812412, -0.34862780570983887, 0.0040735709480941296, -0.0008169056382030249, 0.6082063317298889, -0.2991418242454529, 0.005304520018398762, 0.0034149333368986845, 0.010746799409389496, -0.06260386854410172, -2.8588008880615234, 0.5673691630363464, 0.2671763300895691, 1.2388572692871094, 0.11754128336906433, 0.2816532552242279, -0.14704644680023193, -2.9597082138061523, -0.5681361556053162, -0.20810607075691223, 1.2693212032318115, -0.09522665292024612, 0.29996514320373535, 0.11097392439842224]} +{"t": 10.0881, "q": [-0.3100822865962982, -0.013681404292583466, 0.012615165673196316, 0.6337130069732666, -0.3467152714729309, 0.014718236401677132, -0.3486193120479584, 0.0040735709480941296, -0.0007901218486949801, 0.6082915663719177, -0.2991376519203186, 0.00529724545776844, 0.0034015413839370012, 0.010701144114136696, -0.06263356655836105, -2.8590047359466553, 0.5675609111785889, 0.2693215012550354, 1.2388453483581543, 0.11564777046442032, 0.281533420085907, -0.14569222927093506, -2.9597442150115967, -0.568375825881958, -0.21052688360214233, 1.2716940641403198, -0.09515474736690521, 0.30084002017974854, 0.10807374119758606]} +{"t": 10.1048, "q": [-0.3100567162036896, -0.013689925894141197, 0.012628557160496712, 0.6337215304374695, -0.3467112183570862, 0.014711003750562668, -0.3486193120479584, 0.004065048880875111, -0.0007767299539409578, 0.6084619760513306, -0.2991376519203186, 0.00529724545776844, 0.0034283252898603678, 0.010693537071347237, -0.06263851374387741, -2.859100580215454, 0.5678005814552307, 0.2712149918079376, 1.2389172315597534, 0.11351457983255386, 0.28156936168670654, -0.14377474784851074, -2.9598159790039062, -0.568747341632843, -0.21281586587429047, 1.2741388082504272, -0.0950828418135643, 0.30113962292671204, 0.10523348301649094]} +{"t": 10.1216, "q": [-0.3099885582923889, -0.013698449358344078, 0.012628557160496712, 0.6337215304374695, -0.3466990888118744, 0.014689306728541851, -0.3486107885837555, 0.004022438544780016, -0.0007365542696788907, 0.6085898280143738, -0.2991418242454529, 0.005304520018398762, 0.003468500915914774, 0.010708753950893879, -0.06263859570026398, -2.8590645790100098, 0.5679324269294739, 0.27258118987083435, 1.2390011548995972, 0.1115851178765297, 0.28159335255622864, -0.14047908782958984, -2.9598278999328613, -0.5690589547157288, -0.21514080464839935, 1.2753971815109253, -0.09498696774244308, 0.30113962292671204, 0.1025729849934578]} +{"t": 10.1383, "q": [-0.31001412868499756, -0.01370697095990181, 0.012628557160496712, 0.6337215304374695, -0.3466868996620178, 0.01468214113265276, -0.3486193120479584, 0.003988349810242653, -0.0007365542696788907, 0.6086580157279968, -0.2991459369659424, 0.005297315306961536, 0.003589028026908636, 0.010716356337070465, -0.06260370463132858, -2.8589928150177, 0.5680163502693176, 0.27419906854629517, 1.2392288446426392, 0.10990732908248901, 0.28161731362342834, -0.136919766664505, -2.959911823272705, -0.5695502758026123, -0.21653097867965698, 1.2760802507400513, -0.09496299922466278, 0.3010796904563904, 0.09944510459899902]} +{"t": 10.1551, "q": [-0.3100056052207947, -0.01370697095990181, 0.01260177418589592, 0.633687436580658, -0.3466707468032837, 0.014638679102063179, -0.34862780570983887, 0.003979827743023634, -0.0007767299539409578, 0.6087432503700256, -0.2991376519203186, 0.00529724545776844, 0.0036425956059247255, 0.010777217335999012, -0.06252418458461761, -2.858872890472412, 0.5680762529373169, 0.276416152715683, 1.2392886877059937, 0.10899652540683746, 0.28159335255622864, -0.13470269739627838, -2.960103750228882, -0.5699697732925415, -0.2174777388572693, 1.2761282920837402, -0.09492705017328262, 0.300995796918869, 0.09544236958026886]} +{"t": 10.1718, "q": [-0.3099970817565918, -0.013698449358344078, 0.01252142246812582, 0.6336448192596436, -0.346622109413147, 0.014551853761076927, -0.34863632917404175, 0.004005394410341978, -0.0008169056382030249, 0.6088113784790039, -0.2991418242454529, 0.005304520018398762, 0.003669379511848092, 0.010777214542031288, -0.06251420080661774, -2.8587050437927246, 0.5680522918701172, 0.27966389060020447, 1.2394086122512817, 0.10884073376655579, 0.28154540061950684, -0.132677361369133, -2.9603073596954346, -0.5704251527786255, -0.2181967943906784, 1.2760083675384521, -0.09491506218910217, 0.3008520007133484, 0.09155947715044022]} +{"t": 10.1887, "q": [-0.3099629878997803, -0.013689925894141197, 0.012414286844432354, 0.6336107850074768, -0.34658971428871155, 0.014493958093225956, -0.3486533761024475, 0.004022438544780016, -0.0009106489014811814, 0.6089221835136414, -0.2991622984409332, 0.00526847830042243, 0.0037095551379024982, 0.010739167220890522, -0.06252896785736084, -2.858525276184082, 0.5680882334709167, 0.2814495265483856, 1.2394684553146362, 0.10881676524877548, 0.28152143955230713, -0.13024455308914185, -2.9608347415924072, -0.5704850554466248, -0.21859227120876312, 1.2759604454040527, -0.09487911313772202, 0.3007441461086273, 0.08832374215126038]} +{"t": 10.2054, "q": [-0.3099544644355774, -0.013579139485955238, 0.012347327545285225, 0.6335681676864624, -0.3465816080570221, 0.014479493722319603, -0.3486618995666504, 0.0040735709480941296, -0.0009508245857432485, 0.6089648008346558, -0.29919520020484924, 0.005239798687398434, 0.003696163184940815, 0.010754384100437164, -0.0625290498137474, -2.8582377433776855, 0.5681601166725159, 0.28341493010520935, 1.2395044565200806, 0.10879279673099518, 0.28154540061950684, -0.12802748382091522, -2.9614098072052, -0.5703412890434265, -0.2188199758529663, 1.2759485244750977, -0.09485514461994171, 0.3007201552391052, 0.08627443760633469]} +{"t": 10.2222, "q": [-0.309911847114563, -0.013536527752876282, 0.0122669767588377, 0.6335170269012451, -0.34656137228012085, 0.014443331398069859, -0.3486533761024475, 0.004141747951507568, -0.001004392164759338, 0.6090244650840759, -0.2992115616798401, 0.005210979841649532, 0.0037229470908641815, 0.010754385963082314, -0.06251906603574753, -2.8579981327056885, 0.568148136138916, 0.28541630506515503, 1.239540457725525, 0.10884073376655579, 0.2815813422203064, -0.12688897550106049, -2.9619133472442627, -0.5699217915534973, -0.21896377205848694, 1.275996446609497, -0.09483117610216141, 0.30068421363830566, 0.08460862934589386]} +{"t": 10.239, "q": [-0.30992889404296875, -0.013493917882442474, 0.012133057229220867, 0.633457362651825, -0.3465411365032196, 0.014407169073820114, -0.34867894649505615, 0.004192880820482969, -0.0010981354862451553, 0.6090585589408875, -0.29922401905059814, 0.00521832425147295, 0.003776514669880271, 0.01071631908416748, -0.062483929097652435, -2.8577823638916016, 0.5681361556053162, 0.28720197081565857, 1.23955237865448, 0.10885271430015564, 0.2815573811531067, -0.12630175054073334, -2.9620931148529053, -0.56934654712677, -0.21901170909404755, 1.2761043310165405, -0.09485514461994171, 0.3006961941719055, 0.08303869515657425]} +{"t": 10.2558, "q": [-0.3099033236503601, -0.013485396280884743, 0.012052706442773342, 0.6333721280097961, -0.3465087115764618, 0.014349273405969143, -0.34868746995925903, 0.004252535756677389, -0.0011249192757532, 0.6090329885482788, -0.29923221468925476, 0.005203896667808294, 0.0037631227169185877, 0.010663014836609364, -0.062378834933042526, -2.8574109077453613, 0.5681361556053162, 0.28798094391822815, 1.2395763397216797, 0.108936607837677, 0.281533420085907, -0.12589429318904877, -2.9622128009796143, -0.568663477897644, -0.21897576749324799, 1.2763439416885376, -0.09485514461994171, 0.3007201552391052, 0.08194813132286072]} +{"t": 10.2725, "q": [-0.309911847114563, -0.013459829613566399, 0.011958963237702847, 0.6332783699035645, -0.3464682102203369, 0.014276912435889244, -0.34868746995925903, 0.004252535756677389, -0.0011784868547692895, 0.6090329885482788, -0.2992197573184967, 0.005196570418775082, 0.0038702578749507666, 0.01051076129078865, -0.062268223613500595, -2.857243061065674, 0.5681720972061157, 0.28823259472846985, 1.2395644187927246, 0.10899652540683746, 0.2814255654811859, -0.12542690336704254, -2.9622249603271484, -0.5679324269294739, -0.21898774802684784, 1.2766555547714233, -0.09485514461994171, 0.3007321357727051, 0.08103732764720917]} +{"t": 10.2893, "q": [-0.30992037057876587, -0.013485396280884743, 0.011838436126708984, 0.6332272887229919, -0.3464398682117462, 0.014226285740733147, -0.34868746995925903, 0.004269579891115427, -0.0012588382232934237, 0.609015941619873, -0.29923203587532043, 0.005174938123673201, 0.003910433501005173, 0.010358497500419617, -0.06210770085453987, -2.8570992946624756, 0.5682680010795593, 0.28830450773239136, 1.2395284175872803, 0.10899652540683746, 0.2813776135444641, -0.1252111792564392, -2.9623327255249023, -0.5671893954277039, -0.2189997285604477, 1.2769192457199097, -0.09485514461994171, 0.3007201552391052, 0.08015049993991852]} +{"t": 10.306, "q": [-0.30992037057876587, -0.013451308012008667, 0.011811652220785618, 0.6331761479377747, -0.3464358150959015, 0.014219053089618683, -0.3486959934234619, 0.004269579891115427, -0.0012990138493478298, 0.6090074181556702, -0.29923611879348755, 0.005167733412235975, 0.003937217406928539, 0.01034320518374443, -0.06185818463563919, -2.856919527053833, 0.5682680010795593, 0.2883404493331909, 1.2395284175872803, 0.10905645042657852, 0.28126975893974304, -0.12500745058059692, -2.9623208045959473, -0.5666500926017761, -0.21897576749324799, 1.2771708965301514, -0.09485514461994171, 0.300768107175827, 0.07921572774648666]} +{"t": 10.3228, "q": [-0.30993741750717163, -0.013476874679327011, 0.01177147589623928, 0.6330909132957458, -0.34642770886421204, 0.014204587787389755, -0.3487130403518677, 0.004286624025553465, -0.001312405802309513, 0.6090074181556702, -0.2992526590824127, 0.00516787264496088, 0.004004176706075668, 0.010229021310806274, -0.061752889305353165, -2.856799602508545, 0.5682680010795593, 0.28835242986679077, 1.2394444942474365, 0.10910438746213913, 0.28099411725997925, -0.12480372190475464, -2.9623327255249023, -0.5660749077796936, -0.21893981099128723, 1.2774944305419922, -0.09483117610216141, 0.3007321357727051, 0.07770571857690811]} +{"t": 10.3395, "q": [-0.30992037057876587, -0.013451308012008667, 0.011798259802162647, 0.6330227255821228, -0.34642770886421204, 0.014204587787389755, -0.3487045168876648, 0.004286624025553465, -0.0012990138493478298, 0.6089903712272644, -0.2992526590824127, 0.00516787264496088, 0.004044352564960718, 0.010160502977669239, -0.06165779381990433, -2.8566677570343018, 0.5682680010795593, 0.2883404493331909, 1.2393486499786377, 0.10915232449769974, 0.2806346118450165, -0.12470784783363342, -2.9623208045959473, -0.5656434297561646, -0.21892783045768738, 1.2775543928146362, -0.09485514461994171, 0.30070817470550537, 0.07560847699642181]} +{"t": 10.3562, "q": [-0.30992037057876587, -0.01346835121512413, 0.011798259802162647, 0.6329289674758911, -0.34642770886421204, 0.014204587787389755, -0.3487130403518677, 0.004278101958334446, -0.0012990138493478298, 0.6089392304420471, -0.2992442846298218, 0.005153323523700237, 0.004030960611999035, 0.010175684466958046, -0.06150824949145317, -2.856487989425659, 0.5682080984115601, 0.28830450773239136, 1.239324688911438, 0.1092122420668602, 0.28032299876213074, -0.1245880052447319, -2.9624884128570557, -0.5652479529380798, -0.21891583502292633, 1.277590274810791, -0.09485514461994171, 0.3006722331047058, 0.07382282614707947]} +{"t": 10.3731, "q": [-0.30992037057876587, -0.013476874679327011, 0.011811652220785618, 0.6328437924385071, -0.3464196026325226, 0.014190123416483402, -0.34868746995925903, 0.004278101958334446, -0.0012990138493478298, 0.6089392304420471, -0.2992483973503113, 0.005146118812263012, 0.003977392800152302, 0.010122384876012802, -0.061423201113939285, -2.8563082218170166, 0.5681960582733154, 0.2882445752620697, 1.2393726110458374, 0.10928414762020111, 0.2802271246910095, -0.12448015064001083, -2.9626803398132324, -0.5648285150527954, -0.21889187395572662, 1.2776741981506348, -0.09485514461994171, 0.3006961941719055, 0.07285210490226746]} +{"t": 10.3899, "q": [-0.3098521828651428, -0.013502439484000206, 0.011838436126708984, 0.6327415108680725, -0.3464196026325226, 0.014190123416483402, -0.34867894649505615, 0.004286624025553465, -0.0012856220128014684, 0.6089392304420471, -0.2992442846298218, 0.005153323523700237, 0.003937217406928539, 0.010069096460938454, -0.06135810166597366, -2.856104612350464, 0.5682200789451599, 0.28816068172454834, 1.239336609840393, 0.10947589576244354, 0.2802031636238098, -0.12436030805110931, -2.9629199504852295, -0.5643011927604675, -0.21887989342212677, 1.2776981592178345, -0.09485514461994171, 0.3006961941719055, 0.0719413012266159]} +{"t": 10.4067, "q": [-0.3098181188106537, -0.01352800615131855, 0.011865219101309776, 0.6326392292976379, -0.34641554951667786, 0.014182890765368938, -0.34867042303085327, 0.004278101958334446, -0.0012588382232934237, 0.6089392304420471, -0.2992442846298218, 0.005153323523700237, 0.0039506093598902225, 0.009977753274142742, -0.06129780411720276, -2.8558290004730225, 0.5682560205459595, 0.28807681798934937, 1.2392886877059937, 0.10958375781774521, 0.28009530901908875, -0.1242404654622078, -2.9631476402282715, -0.563953697681427, -0.21884393692016602, 1.2776981592178345, -0.09485514461994171, 0.3006961941719055, 0.07111439108848572]} +{"t": 10.4234, "q": [-0.3097584545612335, -0.013519484549760818, 0.011865219101309776, 0.632562518119812, -0.34639519453048706, 0.01419032458215952, -0.34867042303085327, 0.004286624025553465, -0.001232054433785379, 0.60894775390625, -0.29924848675727844, 0.005160598084330559, 0.003910433501005173, 0.00978744588792324, -0.06114225834608078, -2.8554694652557373, 0.5683279037475586, 0.2880408465862274, 1.2391928434371948, 0.10970360040664673, 0.2799395024776459, -0.12409665435552597, -2.9634711742401123, -0.5635582208633423, -0.2187480628490448, 1.277710199356079, -0.09485514461994171, 0.30070817470550537, 0.0701436698436737]} +{"t": 10.4402, "q": [-0.30970731377601624, -0.013545051217079163, 0.01191878691315651, 0.632477343082428, -0.3463992476463318, 0.014197557233273983, -0.34864485263824463, 0.004286624025553465, -0.001232054433785379, 0.60894775390625, -0.2992442846298218, 0.005153323523700237, 0.00388364982791245, 0.009505798108875751, -0.060916442424058914, -2.855217695236206, 0.5684597492218018, 0.28795695304870605, 1.2392048835754395, 0.10984741151332855, 0.2798076868057251, -0.123964823782444, -2.963686943054199, -0.5632705688476562, -0.21867616474628448, 1.2776981592178345, -0.09485514461994171, 0.3007201552391052, 0.06886135786771774]} +{"t": 10.4569, "q": [-0.3095794916152954, -0.01352800615131855, 0.011958963237702847, 0.6324262022972107, -0.346378892660141, 0.014190440997481346, -0.3486107885837555, 0.004286624025553465, -0.001232054433785379, 0.6090074181556702, -0.29924020171165466, 0.00516052870079875, 0.003937217406928539, 0.009071898646652699, -0.060540251433849335, -2.8549420833587646, 0.5685795545578003, 0.28786107897758484, 1.2391688823699951, 0.10997923463582993, 0.2797118127346039, -0.12386894971132278, -2.963914632797241, -0.563066840171814, -0.21865218877792358, 1.2776981592178345, -0.09486712515354156, 0.3007561266422272, 0.06741126626729965]} +{"t": 10.4737, "q": [-0.3094516694545746, -0.013536527752876282, 0.011958963237702847, 0.6323580145835876, -0.34637078642845154, 0.014175975695252419, -0.3485596477985382, 0.004303668159991503, -0.001232054433785379, 0.609092652797699, -0.2992524802684784, 0.005138914100825787, 0.0038434739690274, 0.008394427597522736, -0.05999387055635452, -2.8548221588134766, 0.568663477897644, 0.2878730893135071, 1.2391928434371948, 0.11007510870695114, 0.2796878516674042, -0.12372513860464096, -2.9640824794769287, -0.5629469752311707, -0.218472421169281, 1.277710199356079, -0.09489109367132187, 0.3007201552391052, 0.06654839962720871]} +{"t": 10.4905, "q": [-0.30941757559776306, -0.01352800615131855, 0.011945570819079876, 0.6322727799415588, -0.34634649753570557, 0.014132581651210785, -0.34854260087013245, 0.004312190227210522, -0.001232054433785379, 0.6091096997261047, -0.2992524802684784, 0.005138914100825787, 0.0038970415480434895, 0.007777902763336897, -0.059607766568660736, -2.8547143936157227, 0.568747341632843, 0.28780117630958557, 1.2391809225082397, 0.1101350262761116, 0.27966389060020447, -0.12355735898017883, -2.9641542434692383, -0.5628750920295715, -0.21834060549736023, 1.2777341604232788, -0.09489109367132187, 0.3007201552391052, 0.06614094227552414]} +{"t": 10.5072, "q": [-0.30933234095573425, -0.01352800615131855, 0.011945570819079876, 0.6322472095489502, -0.3462817072868347, 0.014016825705766678, -0.3485255539417267, 0.004329234827309847, -0.001232054433785379, 0.6091693043708801, -0.2992524802684784, 0.005138914100825787, 0.0038970415480434895, 0.007085258606821299, -0.059151601046323776, -2.854618549346924, 0.5687713027000427, 0.28772926330566406, 1.2392048835754395, 0.11019495129585266, 0.2796758711338043, -0.12342553585767746, -2.964094400405884, -0.5627912282943726, -0.2179211527109146, 1.2777820825576782, -0.09491506218910217, 0.30068421363830566, 0.06600911170244217]} +{"t": 10.5241, "q": [-0.3093067705631256, -0.013502439484000206, 0.01193217933177948, 0.63218754529953, -0.3462127447128296, 0.013922901824116707, -0.3485255539417267, 0.004320712294429541, -0.001272230059839785, 0.609246015548706, -0.2992442846298218, 0.005153323523700237, 0.0038702578749507666, 0.006377397105097771, -0.05870558321475983, -2.85453462600708, 0.5688192844390869, 0.2877172827720642, 1.2391688823699951, 0.11027883738279343, 0.2795799970626831, -0.12340156733989716, -2.9639506340026855, -0.5627192854881287, -0.21746575832366943, 1.2777940034866333, -0.09501093626022339, 0.3006961941719055, 0.06599713116884232]} +{"t": 10.5408, "q": [-0.3092556595802307, -0.013519484549760818, 0.01191878691315651, 0.6320853233337402, -0.34611931443214417, 0.01377111952751875, -0.3485255539417267, 0.004337756894528866, -0.001232054433785379, 0.609246015548706, -0.29924002289772034, 0.005131551995873451, 0.0038434739690274, 0.005753294099122286, -0.05830548703670502, -2.8544626235961914, 0.5687833428382874, 0.2876453697681427, 1.2391688823699951, 0.11030280590057373, 0.2794002294540405, -0.1233895793557167, -2.963890552520752, -0.5626474022865295, -0.21698638796806335, 1.2779139280319214, -0.0951068103313446, 0.3006961941719055, 0.06600911170244217]} +{"t": 10.5576, "q": [-0.3091704249382019, -0.013510962948203087, 0.01191878691315651, 0.6319404244422913, -0.34603774547576904, 0.013626535423099995, -0.3485255539417267, 0.004337756894528866, -0.0012454462703317404, 0.609246015548706, -0.29924002289772034, 0.005131551995873451, 0.0038702578749507666, 0.005075917113572359, -0.0578405037522316, -2.8544986248016357, 0.5685555934906006, 0.2876453697681427, 1.2391809225082397, 0.11029082536697388, 0.279328316450119, -0.12337759882211685, -2.963770866394043, -0.562323808670044, -0.21661487221717834, 1.2779977321624756, -0.09515474736690521, 0.30070817470550537, 0.06602109968662262]} +{"t": 10.5745, "q": [-0.30914485454559326, -0.013502439484000206, 0.011892003007233143, 0.6317699551582336, -0.3459521532058716, 0.013474761508405209, -0.3485255539417267, 0.004337756894528866, -0.0012052706442773342, 0.6092033982276917, -0.29924002289772034, 0.005131551995873451, 0.0038434739690274, 0.004565993789583445, -0.05756522715091705, -2.854402780532837, 0.5681840777397156, 0.2875135540962219, 1.2392288446426392, 0.11031479388475418, 0.27934029698371887, -0.12337759882211685, -2.9637467861175537, -0.5619403123855591, -0.21611154079437256, 1.2781176567077637, -0.09523864090442657, 0.3007201552391052, 0.06604506820440292]} +{"t": 10.5912, "q": [-0.3091192841529846, -0.013502439484000206, 0.011878611519932747, 0.6316080689430237, -0.34589099884033203, 0.013366341590881348, -0.34853407740592957, 0.004329234827309847, -0.001191878691315651, 0.6091523170471191, -0.29924410581588745, 0.005124346818774939, 0.003816690295934677, 0.0040636793710291386, -0.057255446910858154, -2.85418701171875, 0.5676568150520325, 0.28730982542037964, 1.239324688911438, 0.11039867997169495, 0.27936428785324097, -0.123365618288517, -2.9636149406433105, -0.5611972808837891, -0.2157759815454483, 1.278261423110962, -0.0954064205288887, 0.3007321357727051, 0.06604506820440292]} +{"t": 10.608, "q": [-0.3090681731700897, -0.013502439484000206, 0.011892003007233143, 0.6314290761947632, -0.34585022926330566, 0.013294068165123463, -0.3485255539417267, 0.004303668159991503, -0.0011784868547692895, 0.6091182231903076, -0.29924410581588745, 0.005124346818774939, 0.003776514669880271, 0.0035614031367003918, -0.0569162555038929, -2.8537914752960205, 0.5672013759613037, 0.2871659994125366, 1.2394444942474365, 0.110458604991436, 0.27936428785324097, -0.1233895793557167, -2.9636149406433105, -0.5602745413780212, -0.21554827690124512, 1.2782853841781616, -0.09544236958026886, 0.3007561266422272, 0.06604506820440292]} +{"t": 10.6247, "q": [-0.30900850892066956, -0.013510962948203087, 0.011865219101309776, 0.6312160491943359, -0.34580132365226746, 0.013207342475652695, -0.34854260087013245, 0.004312190227210522, -0.001191878691315651, 0.6090244650840759, -0.29923173785209656, 0.005131482146680355, 0.0037095551379024982, 0.003066729288548231, -0.05651237443089485, -2.8534440994262695, 0.5669257640838623, 0.2870701253414154, 1.2395044565200806, 0.11048257350921631, 0.27936428785324097, -0.12342553585767746, -2.9636270999908447, -0.5590880513191223, -0.2154524028301239, 1.278333306312561, -0.09550229460000992, 0.3007441461086273, 0.06604506820440292]} +{"t": 10.6415, "q": [-0.30893179774284363, -0.013510962948203087, 0.011865219101309776, 0.6309859752655029, -0.345756471157074, 0.01312782522290945, -0.34853407740592957, 0.004312190227210522, -0.0011383111122995615, 0.6089307069778442, -0.29924002289772034, 0.005131551995873451, 0.003589028026908636, 0.0026557522360235453, -0.05599415302276611, -2.853168487548828, 0.566805899143219, 0.2868424355983734, 1.2396363019943237, 0.11063836514949799, 0.2793762683868408, -0.12346148490905762, -2.963531017303467, -0.5574702024459839, -0.21526065468788147, 1.278393268585205, -0.09567006677389145, 0.3007441461086273, 0.06612895429134369]} +{"t": 10.6582, "q": [-0.3088977038860321, -0.013510962948203087, 0.01185182761400938, 0.6307814121246338, -0.3457157015800476, 0.013055550865828991, -0.34854260087013245, 0.004312190227210522, -0.0011383111122995615, 0.608802855014801, -0.29924818873405457, 0.0051171244122087955, 0.003589028026908636, 0.0025719504337757826, -0.05540217459201813, -2.8527848720550537, 0.5666021704673767, 0.28641098737716675, 1.239840030670166, 0.11099789291620255, 0.2795560359954834, -0.12359331548213959, -2.963555097579956, -0.5554688572883606, -0.21470938622951508, 1.278489112854004, -0.09596967697143555, 0.3007561266422272, 0.0662248283624649]} +{"t": 10.675, "q": [-0.3088977038860321, -0.013510962948203087, 0.011838436126708984, 0.6306279897689819, -0.34570348262786865, 0.013033874332904816, -0.3485596477985382, 0.004303668159991503, -0.0011249192757532, 0.6087262034416199, -0.29924002289772034, 0.005131551995873451, 0.0036158119328320026, 0.0026175575330853462, -0.05491518974304199, -2.852257490158081, 0.566266655921936, 0.2855960726737976, 1.240127682685852, 0.11198060214519501, 0.27984365820884705, -0.12384498119354248, -2.9636390209198, -0.5534195303916931, -0.2145056426525116, 1.2785130739212036, -0.09619737416505814, 0.300768107175827, 0.06639260798692703]} +{"t": 10.6917, "q": [-0.3088891804218292, -0.013519484549760818, 0.011811652220785618, 0.6304831504821777, -0.3456870913505554, 0.013034017756581306, -0.3485511243343353, 0.004286624025553465, -0.0011383111122995615, 0.6085898280143738, -0.29924410581588745, 0.005124346818774939, 0.003816690295934677, 0.002716430462896824, -0.05448295921087265, -2.851334810256958, 0.5657153725624084, 0.2845055162906647, 1.240463137626648, 0.11353854835033417, 0.27996349334716797, -0.12400078028440475, -2.9635190963745117, -0.5509268045425415, -0.21394239366054535, 1.2785011529922485, -0.09631721675395966, 0.3007561266422272, 0.06640458852052689]} +{"t": 10.7085, "q": [-0.30887216329574585, -0.01352800615131855, 0.01177147589623928, 0.6302956342697144, -0.3456788957118988, 0.013034098781645298, -0.3485681712627411, 0.004303668159991503, -0.001191878691315651, 0.6084619760513306, -0.299260675907135, 0.005124486517161131, 0.0038970415480434895, 0.00288379262201488, -0.05411543697118759, -2.850196361541748, 0.565008282661438, 0.2828037440776825, 1.2407149076461792, 0.11509650200605392, 0.2799754738807678, -0.12436030805110931, -2.9635190963745117, -0.5485898852348328, -0.21349897980690002, 1.2785130739212036, -0.09640111029148102, 0.3007321357727051, 0.06640458852052689]} +{"t": 10.7252, "q": [-0.3088465929031372, -0.013519484549760818, 0.011717909015715122, 0.6301337480545044, -0.3456093966960907, 0.012983922846615314, -0.34854260087013245, 0.004312190227210522, -0.0012052706442773342, 0.6083938479423523, -0.2992686331272125, 0.0050811003893613815, 0.0038970415480434895, 0.0029674589168280363, -0.05380246043205261, -2.8492376804351807, 0.5640974640846252, 0.28108999133110046, 1.2407867908477783, 0.1170259565114975, 0.2798556387424469, -0.12495951354503632, -2.96398663520813, -0.5466843843460083, -0.21294769644737244, 1.2783572673797607, -0.09642507880926132, 0.30068421363830566, 0.06641657650470734]} +{"t": 10.742, "q": [-0.30882954597473145, -0.013493917882442474, 0.011610773392021656, 0.629946231842041, -0.3455645442008972, 0.01290440559387207, -0.3485511243343353, 0.004329234827309847, -0.0012856220128014684, 0.6083256602287292, -0.29927682876586914, 0.005066690966486931, 0.0038568659219890833, 0.003203307744115591, -0.05346982926130295, -2.848278760910034, 0.5631267428398132, 0.27887290716171265, 1.24069082736969, 0.11950669437646866, 0.2795320451259613, -0.12618190050125122, -2.964561700820923, -0.5448148846626282, -0.21209682524204254, 1.278105616569519, -0.09649698436260223, 0.3005763590335846, 0.06644054502248764]} +{"t": 10.7587, "q": [-0.3087528347969055, -0.013434262946248055, 0.011570597998797894, 0.629784345626831, -0.34542980790138245, 0.012738584540784359, -0.34854260087013245, 0.0044229780323803425, -0.0013257976388558745, 0.6081807613372803, -0.29926854372024536, 0.005066621117293835, 0.003816690295934677, 0.0034086608793586493, -0.053097739815711975, -2.8474040031433105, 0.5620002150535583, 0.27742281556129456, 1.2404512166976929, 0.12141218781471252, 0.27912458777427673, -0.12744024395942688, -2.9652090072631836, -0.543196976184845, -0.21119800209999084, 1.2780576944351196, -0.09653293341398239, 0.3004325330257416, 0.0664764940738678]} +{"t": 10.7755, "q": [-0.30868467688560486, -0.013425741344690323, 0.011476854793727398, 0.6295456886291504, -0.34512388706207275, 0.012254630215466022, -0.3485255539417267, 0.004567853640764952, -0.0012990138493478298, 0.6080529093742371, -0.29926854372024536, 0.005066621117293835, 0.0038434739690274, 0.0034390545915812254, -0.05288921669125557, -2.846409320831299, 0.5603703856468201, 0.2754693925380707, 1.2399358749389648, 0.12372513860464096, 0.2784654498100281, -0.12841098010540009, -2.965808153152466, -0.5418068170547485, -0.21025124192237854, 1.277937889099121, -0.09656888991594315, 0.30045652389526367, 0.0664764940738678]} +{"t": 10.7922, "q": [-0.3086164891719818, -0.013383129611611366, 0.01132954377681017, 0.6292048096656799, -0.3450586497783661, 0.012138985097408295, -0.3485255539417267, 0.004661597311496735, -0.0013659733813256025, 0.6078824996948242, -0.2992726266384125, 0.005059416405856609, 0.0038434739690274, 0.0034770751371979713, -0.0527949295938015, -2.8457021713256836, 0.5586805939674377, 0.27048397064208984, 1.2397561073303223, 0.1275840550661087, 0.27754268050193787, -0.12909407913684845, -2.9663593769073486, -0.5407402515411377, -0.20914870500564575, 1.2778899669647217, -0.096580870449543, 0.3003726303577423, 0.06648848205804825]} +{"t": 10.8091, "q": [-0.3085227310657501, -0.01334904134273529, 0.011128664948046207, 0.6289832592010498, -0.34502601623535156, 0.012095693498849869, -0.34839773178100586, 0.004746818449348211, -0.0014998923288658261, 0.6077716946601868, -0.2992684543132782, 0.005052141845226288, 0.0038300822488963604, 0.003461844054982066, -0.05272537097334862, -2.8453786373138428, 0.5571585893630981, 0.26608574390411377, 1.2397441864013672, 0.13042432069778442, 0.27661988139152527, -0.12946557998657227, -2.966946601867676, -0.5398653745651245, -0.20809409022331238, 1.2778539657592773, -0.09668873250484467, 0.3003486394882202, 0.06651245057582855]} +{"t": 10.8259, "q": [-0.3084375262260437, -0.013331998139619827, 0.011008137837052345, 0.6288724541664124, -0.344997376203537, 0.012074196711182594, -0.34830397367477417, 0.004823517519980669, -0.0016338112764060497, 0.6077376008033752, -0.2992600202560425, 0.005023095291107893, 0.0038702578749507666, 0.003515081712976098, -0.05263111740350723, -2.845270872116089, 0.5558523535728455, 0.26167556643486023, 1.2395883798599243, 0.13259346783161163, 0.27542147040367126, -0.12994495034217834, -2.9673540592193604, -0.539002537727356, -0.20750686526298523, 1.2777460813522339, -0.09673666954040527, 0.30031269788742065, 0.06648848205804825]} +{"t": 10.8426, "q": [-0.3082500398159027, -0.013323476538062096, 0.010967962443828583, 0.6286849975585938, -0.34498515725135803, 0.012052501551806927, -0.34816762804985046, 0.004832039587199688, -0.0016605950659140944, 0.6077290773391724, -0.29926827549934387, 0.005023165140300989, 0.0038970415480434895, 0.0034922435879707336, -0.05255657806992531, -2.8451030254364014, 0.5546779036521912, 0.2578166425228119, 1.2395284175872803, 0.1360449194908142, 0.2743428945541382, -0.13042432069778442, -2.967653751373291, -0.5381036996841431, -0.20707543194293976, 1.2776622772216797, -0.09683254361152649, 0.3002767562866211, 0.06648848205804825]} +{"t": 10.8594, "q": [-0.30808812379837036, -0.013323476538062096, 0.010941178537905216, 0.6284889578819275, -0.3449524939060211, 0.012009210884571075, -0.34809091687202454, 0.004840561654418707, -0.0016873788554221392, 0.6077205538749695, -0.29927247762680054, 0.005030439700931311, 0.003977392800152302, 0.003499842481687665, -0.05252182483673096, -2.8451030254364014, 0.5536352396011353, 0.25377795100212097, 1.2394325733184814, 0.13983194530010223, 0.27280890941619873, -0.13093964755535126, -2.9679412841796875, -0.537132978439331, -0.2066919356584549, 1.2775423526763916, -0.09684452414512634, 0.3002288043498993, 0.06648848205804825]} +{"t": 10.8761, "q": [-0.30785802006721497, -0.013323476538062096, 0.010954570956528187, 0.6283441185951233, -0.34493619203567505, 0.011980308219790459, -0.34790343046188354, 0.004832039587199688, -0.0016605950659140944, 0.6077290773391724, -0.29927656054496765, 0.005023234989494085, 0.0039506093598902225, 0.0035530903842300177, -0.05246730148792267, -2.8451268672943115, 0.5527724027633667, 0.24886442720890045, 1.2394565343856812, 0.14327141642570496, 0.2707476019859314, -0.1315508335828781, -2.9680371284484863, -0.5365098118782043, -0.2063923329114914, 1.277518391609192, -0.09683254361152649, 0.30024078488349915, 0.0665244311094284]} +{"t": 10.8929, "q": [-0.3075767755508423, -0.013331998139619827, 0.010967962443828583, 0.6282759308815002, -0.3449240028858185, 0.011944081634283066, -0.3477074205875397, 0.004840561654418707, -0.001673986902460456, 0.6077205538749695, -0.29927656054496765, 0.005023234989494085, 0.004044352564960718, 0.0035606897436082363, -0.052422620356082916, -2.8451030254364014, 0.5517417192459106, 0.24390295147895813, 1.2394086122512817, 0.14641128480434418, 0.26734408736228943, -0.13268934190273285, -2.9680252075195312, -0.5358986258506775, -0.20600883662700653, 1.2775064706802368, -0.09684452414512634, 0.30024078488349915, 0.06654839962720871]} +{"t": 10.9096, "q": [-0.3073467016220093, -0.013340519741177559, 0.01099474634975195, 0.6281566023826599, -0.3448954224586487, 0.011908034794032574, -0.3475966453552246, 0.004840561654418707, -0.0016204193234443665, 0.6077887415885925, -0.29926827549934387, 0.005023165140300989, 0.004004176706075668, 0.0035682895686477423, -0.052368007600307465, -2.8451030254364014, 0.5507230758666992, 0.24033164978027344, 1.239384651184082, 0.14886803925037384, 0.2636769115924835, -0.13421133160591125, -2.968001127243042, -0.5354911088943481, -0.20560136437416077, 1.2775423526763916, -0.09689246118068695, 0.30021682381629944, 0.06656038761138916]} +{"t": 10.9263, "q": [-0.3073296546936035, -0.013331998139619827, 0.010981354862451553, 0.6281310319900513, -0.34484243392944336, 0.011814065277576447, -0.3475199341773987, 0.004823517519980669, -0.0016204193234443665, 0.607754647731781, -0.29926836490631104, 0.005037644412368536, 0.004030960611999035, 0.0035911118611693382, -0.0523531511425972, -2.845078945159912, 0.5495246648788452, 0.23782694339752197, 1.2394086122512817, 0.1498747169971466, 0.2603932321071625, -0.13579325377941132, -2.9679293632507324, -0.5347481369972229, -0.20511001348495483, 1.2775423526763916, -0.0969044417142868, 0.30019286274909973, 0.06657236814498901]} +{"t": 10.9432, "q": [-0.3072870373725891, -0.013383129611611366, 0.010967962443828583, 0.6280628442764282, -0.3447975814342499, 0.01173456571996212, -0.34749436378479004, 0.004797950852662325, -0.001607027486898005, 0.6077972650527954, -0.29927656054496765, 0.005023234989494085, 0.004084527958184481, 0.0035987107548862696, -0.052318401634693146, -2.8451030254364014, 0.5483981370925903, 0.23485486209392548, 1.239336609840393, 0.15088139474391937, 0.25857165455818176, -0.13715945184230804, -2.9677376747131348, -0.5338972210884094, -0.20465461909770966, 1.2775543928146362, -0.09691642969846725, 0.3001689016819, 0.06660832464694977]} +{"t": 10.9601, "q": [-0.3072103261947632, -0.013383129611611366, 0.010981354862451553, 0.6279946565628052, -0.34474867582321167, 0.011647823266685009, -0.34749436378479004, 0.004780906718224287, -0.001566851744428277, 0.6078143119812012, -0.29927247762680054, 0.005030439700931311, 0.004084527958184481, 0.0036215330474078655, -0.05230354890227318, -2.8450911045074463, 0.547079861164093, 0.2316550761461258, 1.2392048835754395, 0.1519719660282135, 0.25745710730552673, -0.13828597962856293, -2.967533826828003, -0.5328665971755981, -0.20418722927570343, 1.2776023149490356, -0.09698833525180817, 0.30010896921157837, 0.06666824221611023]} +{"t": 10.9768, "q": [-0.3071592152118683, -0.013400174677371979, 0.01099474634975195, 0.627918004989624, -0.34468334913253784, 0.011561241000890732, -0.34748587012290955, 0.004772384651005268, -0.0015266761183738708, 0.6078143119812012, -0.29926827549934387, 0.005023165140300989, 0.004044352564960718, 0.0036063101142644882, -0.052273720502853394, -2.8451149463653564, 0.5455938577651978, 0.22888672351837158, 1.2392407655715942, 0.1533980816602707, 0.2569178342819214, -0.13930463790893555, -2.9670305252075195, -0.5316322445869446, -0.20395952463150024, 1.2779018878936768, -0.09702428430318832, 0.30008500814437866, 0.06678808480501175]} +{"t": 10.9935, "q": [-0.3070739805698395, -0.013391653075814247, 0.01099474634975195, 0.6278412938117981, -0.34462636709213257, 0.011430982500314713, -0.3474688231945038, 0.00475534051656723, -0.0015266761183738708, 0.6078910231590271, -0.29927656054496765, 0.005023234989494085, 0.004071136470884085, 0.0035606578458100557, -0.05225376412272453, -2.845186948776245, 0.544227659702301, 0.22577081620693207, 1.2392407655715942, 0.15494404733181, 0.25635457038879395, -0.14015550911426544, -2.966946601867676, -0.53048175573349, -0.2034921497106552, 1.2779018878936768, -0.09704825282096863, 0.30010896921157837, 0.06697983294725418]} +{"t": 11.0102, "q": [-0.3070654571056366, -0.013383129611611366, 0.01099474634975195, 0.6277560591697693, -0.34456512331962585, 0.01135164499282837, -0.34747734665870667, 0.004746818449348211, -0.0015534599078819156, 0.6078484058380127, -0.29927656054496765, 0.005023234989494085, 0.004030960611999035, 0.0035834757145494223, -0.05222897604107857, -2.845162868499756, 0.5430172085762024, 0.22126474976539612, 1.2392407655715942, 0.15732890367507935, 0.25580328702926636, -0.14099441468715668, -2.9668867588043213, -0.5293192863464355, -0.20259332656860352, 1.2778899669647217, -0.09708420932292938, 0.30008500814437866, 0.06718356907367706]} +{"t": 11.027, "q": [-0.30691206455230713, -0.013391653075814247, 0.010954570956528187, 0.6275771260261536, -0.34448763728141785, 0.011228853836655617, -0.34747734665870667, 0.004746818449348211, -0.0015266761183738708, 0.6078910231590271, -0.29927247762680054, 0.005030439700931311, 0.004084527958184481, 0.003591083223000169, -0.05222402513027191, -2.845186948776245, 0.5412195920944214, 0.21884393692016602, 1.2392168045043945, 0.1588389277458191, 0.25518012046813965, -0.142037034034729, -2.966718912124634, -0.5279890298843384, -0.20103538036346436, 1.277937889099121, -0.0971561148762703, 0.30008500814437866, 0.06755507737398148]} +{"t": 11.0437, "q": [-0.30690354108810425, -0.013383129611611366, 0.010887610726058483, 0.6274322271347046, -0.3444264531135559, 0.011134966276586056, -0.34747734665870667, 0.004772384651005268, -0.0015534599078819156, 0.6078569293022156, -0.2992723882198334, 0.005015960428863764, 0.004084527958184481, 0.003575872629880905, -0.05224386230111122, -2.8451988697052, 0.5393260717391968, 0.21680662035942078, 1.2391809225082397, 0.15966583788394928, 0.2545689046382904, -0.1439065784215927, -2.9664552211761475, -0.5265149474143982, -0.1991298794746399, 1.2779018878936768, -0.09734786301851273, 0.30008500814437866, 0.06791460514068604]} +{"t": 11.0605, "q": [-0.30680128931999207, -0.013374608010053635, 0.010834043845534325, 0.6272361874580383, -0.34434083104133606, 0.010983174666762352, -0.3474688231945038, 0.004772384651005268, -0.0015534599078819156, 0.6078313589096069, -0.29927247762680054, 0.005030439700931311, 0.004004176706075668, 0.0036291247233748436, -0.05220920220017433, -2.8452107906341553, 0.5378999710083008, 0.21384651958942413, 1.2391928434371948, 0.160061314702034, 0.25395771861076355, -0.14696255326271057, -2.965808153152466, -0.5250169038772583, -0.19718843698501587, 1.2779139280319214, -0.0974557176232338, 0.30003705620765686, 0.0682741329073906]} +{"t": 11.0772, "q": [-0.3067075312137604, -0.013374608010053635, 0.010834043845534325, 0.6270657777786255, -0.3442796766757965, 0.010874754749238491, -0.3474688231945038, 0.004763862583786249, -0.0015266761183738708, 0.6078143119812012, -0.2992681860923767, 0.005008685868233442, 0.0038702578749507666, 0.0036443350836634636, -0.05218936875462532, -2.845270872116089, 0.5365217924118042, 0.21166539192199707, 1.2392168045043945, 0.1604088544845581, 0.2533704936504364, -0.15004250407218933, -2.965268850326538, -0.5233031511306763, -0.19569040834903717, 1.2780097723007202, -0.09757556021213531, 0.3000730276107788, 0.0685977041721344]} +{"t": 11.094, "q": [-0.3066138029098511, -0.013383129611611366, 0.010834043845534325, 0.6269123554229736, -0.3442184031009674, 0.01080996636301279, -0.34747734665870667, 0.004772384651005268, -0.0014998923288658261, 0.6078313589096069, -0.2992764711380005, 0.0050087557174265385, 0.0038568659219890833, 0.0036443350836634636, -0.05218936875462532, -2.845294713973999, 0.5351795554161072, 0.21055085957050323, 1.2389532327651978, 0.16072043776512146, 0.2525675594806671, -0.1519719660282135, -2.964453935623169, -0.5214695930480957, -0.1949593722820282, 1.2780097723007202, -0.09786318242549896, 0.3000730276107788, 0.06904111802577972]} +{"t": 11.1107, "q": [-0.30644333362579346, -0.01340869627892971, 0.010834043845534325, 0.626656711101532, -0.3441286087036133, 0.010694563388824463, -0.34749436378479004, 0.004780906718224287, -0.0014731085393577814, 0.6078313589096069, -0.29928046464920044, 0.004987071733921766, 0.003803298342972994, 0.0036062942817807198, -0.0521843284368515, -2.8454384803771973, 0.5338972210884094, 0.20967599749565125, 1.2389651536941528, 0.16111592948436737, 0.2515249252319336, -0.15408118069171906, -2.9637348651885986, -0.5195640921592712, -0.19457587599754333, 1.2780816555023193, -0.09803096204996109, 0.3000730276107788, 0.0697721615433693]} +{"t": 11.1274, "q": [-0.30631551146507263, -0.013400174677371979, 0.010834043845534325, 0.6264095902442932, -0.34404298663139343, 0.010542771779000759, -0.3475028872489929, 0.004780906718224287, -0.0014463247498497367, 0.6077887415885925, -0.2993010878562927, 0.004979988560080528, 0.0038702578749507666, 0.003659545909613371, -0.05215959995985031, -2.8455464839935303, 0.532794713973999, 0.20926854014396667, 1.2388932704925537, 0.16136759519577026, 0.25021862983703613, -0.15625032782554626, -2.9630038738250732, -0.5177784562110901, -0.19421635568141937, 1.2781895399093628, -0.09821072220802307, 0.3000730276107788, 0.07095859944820404]} +{"t": 11.1444, "q": [-0.30617064237594604, -0.013391653075814247, 0.010834043845534325, 0.6261028051376343, -0.3439735770225525, 0.01046349573880434, -0.34748587012290955, 0.004797950852662325, -0.001419540960341692, 0.6077802181243896, -0.2993214428424835, 0.004929485265165567, 0.0038568659219890833, 0.003659542417153716, -0.052129801362752914, -2.8455944061279297, 0.5319198369979858, 0.20902885496616364, 1.2389891147613525, 0.1615114063024521, 0.2485288679599762, -0.15802399814128876, -2.9622128009796143, -0.5164122581481934, -0.1940126270055771, 1.2783693075180054, -0.09846239537000656, 0.30006101727485657, 0.07242067158222198]} +{"t": 11.1611, "q": [-0.3059746325016022, -0.013391653075814247, 0.010834043845534325, 0.6257107853889465, -0.3438798487186432, 0.010282721370458603, -0.3475114107131958, 0.004806472919881344, -0.001419540960341692, 0.6077376008033752, -0.29934200644493103, 0.0049079228192567825, 0.003803298342972994, 0.003728013252839446, -0.05210510641336441, -2.8455703258514404, 0.5312367081642151, 0.20880115032196045, 1.2390011548995972, 0.16169117391109467, 0.2461320161819458, -0.15906661748886108, -2.961146354675293, -0.5150340795516968, -0.19391675293445587, 1.2784172296524048, -0.09855826944112778, 0.30001309514045715, 0.07383481413125992]} +{"t": 11.1779, "q": [-0.305684894323349, -0.013400174677371979, 0.01084743533283472, 0.6252676248550415, -0.34374913573265076, 0.010138657875359058, -0.34747734665870667, 0.004814994987100363, -0.0013525814283639193, 0.6077035069465637, -0.29937055706977844, 0.004842992406338453, 0.003803298342972994, 0.0037508271634578705, -0.05206045135855675, -2.8455944061279297, 0.5309251546859741, 0.20862139761447906, 1.2389651536941528, 0.1619068831205368, 0.24363930523395538, -0.15958194434642792, -2.959768056869507, -0.5138356685638428, -0.19377294182777405, 1.2784532308578491, -0.09861818701028824, 0.30001309514045715, 0.07487744092941284]} +{"t": 11.1947, "q": [-0.3053695559501648, -0.013391653075814247, 0.01091439463198185, 0.6248244643211365, -0.3436349034309387, 0.009965350851416588, -0.3474262058734894, 0.004823517519980669, -0.0012990138493478298, 0.6076608896255493, -0.2994072735309601, 0.004763652104884386, 0.003816690295934677, 0.0038269059732556343, -0.05202087387442589, -2.845630407333374, 0.5308532118797302, 0.2084895670413971, 1.2389891147613525, 0.1621825248003006, 0.24111062288284302, -0.15979765355587006, -2.9584858417510986, -0.5124214887619019, -0.1937130093574524, 1.278549075126648, -0.0987260490655899, 0.30003705620765686, 0.07568038254976273]} +{"t": 11.2114, "q": [-0.3050883412361145, -0.01340869627892971, 0.010954570956528187, 0.6243813037872314, -0.34352073073387146, 0.009777512401342392, -0.3474262058734894, 0.004823517519980669, -0.0012186624808236957, 0.6076608896255493, -0.2994113564491272, 0.004756447393447161, 0.0038702578749507666, 0.00377364968881011, -0.05203566700220108, -2.845654249191284, 0.5309011936187744, 0.20842964947223663, 1.2389651536941528, 0.1625060886144638, 0.23873774707317352, -0.15984559059143066, -2.9575510025024414, -0.5113788843154907, -0.19368904829025269, 1.278944492340088, -0.09886986017227173, 0.30003705620765686, 0.07620768994092941]} +{"t": 11.2281, "q": [-0.30479004979133606, -0.013417219743132591, 0.010981354862451553, 0.6239637136459351, -0.34330832958221436, 0.009547010995447636, -0.34730687737464905, 0.004823517519980669, -0.0012052706442773342, 0.6076268553733826, -0.29944008588790894, 0.004720475524663925, 0.00388364982791245, 0.0037888565566390753, -0.05198603495955467, -2.845654249191284, 0.5310929417610168, 0.20845361053943634, 1.2390011548995972, 0.16287760436534882, 0.23751536011695862, -0.1598575860261917, -2.957035779953003, -0.5103961825370789, -0.19361715018749237, 1.2800230979919434, -0.09903763979673386, 0.3000490367412567, 0.07680690288543701]} +{"t": 11.2449, "q": [-0.30442360043525696, -0.013434262946248055, 0.010981354862451553, 0.6235461235046387, -0.34320226311683655, 0.009388172999024391, -0.3471449613571167, 0.004849083721637726, -0.0012052706442773342, 0.6076353788375854, -0.2994768023490906, 0.004641135223209858, 0.003910433501005173, 0.0037432119715958834, -0.052015744149684906, -2.845630407333374, 0.5310929417610168, 0.20847758650779724, 1.2389891147613525, 0.16324912011623383, 0.23719178140163422, -0.1598575860261917, -2.956820011138916, -0.509784996509552, -0.1934613436460495, 1.2812215089797974, -0.09926533699035645, 0.3000969886779785, 0.0776098445057869]} +{"t": 11.2616, "q": [-0.30383557081222534, -0.01340869627892971, 0.011008137837052345, 0.622915506362915, -0.3430430293083191, 0.009193493984639645, -0.34688079357147217, 0.004840561654418707, -0.0011115273227915168, 0.6075842380523682, -0.299521803855896, 0.004561864770948887, 0.003816690295934677, 0.0038573150523006916, -0.051911674439907074, -2.845654249191284, 0.5311887860298157, 0.2084416300058365, 1.2390011548995972, 0.1637284904718399, 0.23701202869415283, -0.1598575860261917, -2.956472396850586, -0.5093654990196228, -0.19326959550380707, 1.2823600769042969, -0.09961287677288055, 0.3002048432826996, 0.07876032590866089]} +{"t": 11.2784, "q": [-0.30300894379615784, -0.013400174677371979, 0.011168841272592545, 0.622242271900177, -0.3428104519844055, 0.008854204788804054, -0.3464546799659729, 0.004823517519980669, -0.0009910003282129765, 0.6074393391609192, -0.29956698417663574, 0.004511535167694092, 0.003776514669880271, 0.003978989087045193, -0.05158418416976929, -2.8455944061279297, 0.5314284563064575, 0.20845361053943634, 1.2389651536941528, 0.16433967649936676, 0.23695209622383118, -0.15986956655979156, -2.9560649394989014, -0.5091617703437805, -0.1932336539030075, 1.2833787202835083, -0.10006827861070633, 0.3003246784210205, 0.08022240549325943]} +{"t": 11.2951, "q": [-0.3023442029953003, -0.013400174677371979, 0.011168841272592545, 0.6216883063316345, -0.3426308035850525, 0.008637930266559124, -0.34602004289627075, 0.004874649923294783, -0.0009776083752512932, 0.6072773933410645, -0.2995833456516266, 0.00448271632194519, 0.0037899063900113106, 0.004100692458450794, -0.05133622884750366, -2.8456661701202393, 0.5315483212471008, 0.2084655910730362, 1.2390849590301514, 0.1654542088508606, 0.23690415918827057, -0.1598575860261917, -2.955801248550415, -0.5091018676757812, -0.19319769740104675, 1.2845171689987183, -0.1004757434129715, 0.30045652389526367, 0.08210393041372299]} +{"t": 11.3119, "q": [-0.3017306327819824, -0.013400174677371979, 0.01118223275989294, 0.6211088299751282, -0.34247180819511414, 0.008356042206287384, -0.34561097621917725, 0.004883171990513802, -0.0009240407962352037, 0.6072092652320862, -0.2997428774833679, 0.0042016408406198025, 0.0037229470908641815, 0.004260433837771416, -0.051172781735658646, -2.8457021713256836, 0.5316202044487, 0.20845361053943634, 1.2389532327651978, 0.16624517738819122, 0.23683226108551025, -0.1598575860261917, -2.955777406692505, -0.5090060234069824, -0.193161740899086, 1.28585946559906, -0.10089518874883652, 0.30058833956718445, 0.08402140438556671]} +{"t": 11.3288, "q": [-0.3012789487838745, -0.013383129611611366, 0.011209016665816307, 0.6206486225128174, -0.3423738479614258, 0.008226186968386173, -0.3452700972557068, 0.004883171990513802, -0.0009240407962352037, 0.6071410775184631, -0.29990652203559875, 0.003913360647857189, 0.003655987558886409, 0.00432128831744194, -0.05115309730172157, -2.845510482788086, 0.5321475267410278, 0.2085614651441574, 1.2389291524887085, 0.16666461527347565, 0.23673638701438904, -0.15984559059143066, -2.9558372497558594, -0.5089340806007385, -0.193161740899086, 1.2870339155197144, -0.10125471651554108, 0.3007441461086273, 0.08566324412822723]} +{"t": 11.3455, "q": [-0.3007420599460602, -0.013383129611611366, 0.011209016665816307, 0.6201457977294922, -0.34223082661628723, 0.008089493028819561, -0.34497183561325073, 0.004874649923294783, -0.0009240407962352037, 0.6070899367332458, -0.3000786006450653, 0.003654108615592122, 0.0034551091957837343, 0.004374536219984293, -0.05114826560020447, -2.8453547954559326, 0.5325789451599121, 0.20860940217971802, 1.2390730381011963, 0.1670001745223999, 0.23671241104602814, -0.1598575860261917, -2.9559929370880127, -0.5088741779327393, -0.193161740899086, 1.2882921695709229, -0.10192583501338959, 0.3008999228477478, 0.08743690699338913]} +{"t": 11.3622, "q": [-0.30011141300201416, -0.013366086408495903, 0.011209016665816307, 0.6194725632667542, -0.3420880138874054, 0.007880139164626598, -0.34455424547195435, 0.004900216590613127, -0.0009508245857432485, 0.6069535613059998, -0.3001931607723236, 0.0034377439878880978, 0.003361365757882595, 0.004404965788125992, -0.05113842338323593, -2.845294713973999, 0.532878577709198, 0.2085854411125183, 1.2390251159667969, 0.16708406805992126, 0.23672440648078918, -0.15984559059143066, -2.956112861633301, -0.5088262557983398, -0.193161740899086, 1.2894067764282227, -0.10386727750301361, 0.3010796904563904, 0.08886303007602692]} +{"t": 11.3789, "q": [-0.2991398870944977, -0.013357564806938171, 0.011195625178515911, 0.6186800003051758, -0.3419206738471985, 0.007656477391719818, -0.34373611211776733, 0.0048916940577328205, -0.0009508245857432485, 0.6066893935203552, -0.3003039062023163, 0.0032574511133134365, 0.003334582084789872, 0.00442776782438159, -0.051064129918813705, -2.845186948776245, 0.5330583453178406, 0.20862139761447906, 1.239096999168396, 0.16719192266464233, 0.2367483675479889, -0.1598575860261917, -2.9561607837677, -0.5087063908576965, -0.1931377798318863, 1.2903414964675903, -0.10628809034824371, 0.3012714385986328, 0.08957009762525558]} +{"t": 11.3957, "q": [-0.29790419340133667, -0.013314953073859215, 0.011115273460745811, 0.6178618669509888, -0.3417778015136719, 0.007476187311112881, -0.34252598881721497, 0.0049257827922701836, -0.0010177841177210212, 0.6061695218086243, -0.3003901541233063, 0.0031349353957921267, 0.003334582084789872, 0.00467113871127367, -0.05079704895615578, -2.8451149463653564, 0.533250093460083, 0.20870527625083923, 1.2390609979629517, 0.1672278791666031, 0.23678432404994965, -0.15984559059143066, -2.9561607837677, -0.5086584687232971, -0.193161740899086, 1.2914321422576904, -0.10821755230426788, 0.3014032542705536, 0.09008542448282242]} +{"t": 11.4124, "q": [-0.296387255191803, -0.013238254934549332, 0.011115273460745811, 0.6168818473815918, -0.3416840732097626, 0.007339011412113905, -0.3412221074104309, 0.005002481862902641, -0.0010311759542673826, 0.6054025292396545, -0.30053362250328064, 0.0028824417386204004, 0.003347973804920912, 0.004929731134325266, -0.05054982751607895, -2.845078945159912, 0.5333698987960815, 0.20872925221920013, 1.239096999168396, 0.16726383566856384, 0.23683226108551025, -0.15984559059143066, -2.9561607837677, -0.5084906816482544, -0.193161740899086, 1.2930619716644287, -0.11060241609811783, 0.301595002412796, 0.09039700776338577]} +{"t": 11.4291, "q": [-0.29567140340805054, -0.013187121599912643, 0.010981354862451553, 0.6161574721336365, -0.34159499406814575, 0.00719444639980793, -0.34065964818000793, 0.005121791269630194, -0.0010713516967371106, 0.6047207713127136, -0.30058690905570984, 0.00278864917345345, 0.0033747577108442783, 0.005059045273810625, -0.05050552263855934, -2.8450310230255127, 0.5333579182624817, 0.20872925221920013, 1.2390730381011963, 0.16728779673576355, 0.23685622215270996, -0.1598575860261917, -2.95613694190979, -0.5083468556404114, -0.19317372143268585, 1.2953509092330933, -0.11319100856781006, 0.3017747700214386, 0.09074455499649048]} +{"t": 11.4459, "q": [-0.29556912183761597, -0.012999635189771652, 0.010834043845534325, 0.6158762574195862, -0.3415089547634125, 0.007260684389621019, -0.34046363830566406, 0.005317800212651491, -0.001191878691315651, 0.6042776107788086, -0.30059894919395447, 0.0027235171291977167, 0.0033881496638059616, 0.005203560926020145, -0.05041169002652168, -2.8451030254364014, 0.5331661701202393, 0.20877718925476074, 1.2390490770339966, 0.16728779673576355, 0.236868217587471, -0.1598575860261917, -2.9560890197753906, -0.5081191658973694, -0.193161740899086, 1.2978556156158447, -0.11558785289525986, 0.3020264506340027, 0.09108011424541473]} +{"t": 11.4628, "q": [-0.29543277621269226, -0.012837715446949005, 0.010726908221840858, 0.6157995462417603, -0.3415171802043915, 0.007246071472764015, -0.3403187692165375, 0.0054882424883544445, -0.0013391895918175578, 0.6040304899215698, -0.30064812302589417, 0.00263695465400815, 0.0034015413839370012, 0.00543176056817174, -0.0503230094909668, -2.8452467918395996, 0.5329025387763977, 0.2087891697883606, 1.2390490770339966, 0.16719192266464233, 0.23690415918827057, -0.15982162952423096, -2.9560890197753906, -0.5079513788223267, -0.193161740899086, 1.2996532917022705, -0.1167742908000946, 0.30215826630592346, 0.0915115475654602]} +{"t": 11.4795, "q": [-0.2953731119632721, -0.01280362717807293, 0.010606381110846996, 0.6158080697059631, -0.3415047526359558, 0.007282526232302189, -0.34027615189552307, 0.005573463626205921, -0.0014061490073800087, 0.6040475368499756, -0.3007095456123352, 0.0025142512749880552, 0.0034283252898603678, 0.005469786934554577, -0.05026857554912567, -2.845426559448242, 0.532794713973999, 0.2088610827922821, 1.2389891147613525, 0.16719192266464233, 0.23688019812107086, -0.15984559059143066, -2.9560890197753906, -0.5077716112136841, -0.193161740899086, 1.300899624824524, -0.11761318892240524, 0.30223017930984497, 0.09189503639936447]} +{"t": 11.4963, "q": [-0.29535606503486633, -0.012786582112312317, 0.01057959720492363, 0.6158080697059631, -0.34150072932243347, 0.007275296840816736, -0.34025058150291443, 0.00558198569342494, -0.0014329327968880534, 0.6040560603141785, -0.3007342219352722, 0.0024854475632309914, 0.003441717242822051, 0.0055002071894705296, -0.050228994339704514, -2.8455464839935303, 0.5326389074325562, 0.20892100036144257, 1.2389891147613525, 0.16716796159744263, 0.23690415918827057, -0.1598336100578308, -2.9561607837677, -0.5076637864112854, -0.193161740899086, 1.3021938800811768, -0.11802065372467041, 0.30226612091064453, 0.09237440675497055]} +{"t": 11.513, "q": [-0.295381635427475, -0.012786582112312317, 0.010606381110846996, 0.6158592104911804, -0.3414965867996216, 0.007282621692866087, -0.34025058150291443, 0.005573463626205921, -0.0014731085393577814, 0.6040986776351929, -0.30073830485343933, 0.0024782356340438128, 0.003468500915914774, 0.005621892865747213, -0.050090499222278595, -2.845534324645996, 0.5326628684997559, 0.20894496142864227, 1.2390130758285522, 0.16713200509548187, 0.23691615462303162, -0.15984559059143066, -2.9561607837677, -0.5075798630714417, -0.193161740899086, 1.3032366037368774, -0.11816445738077164, 0.30226612091064453, 0.09288972616195679]} +{"t": 11.5297, "q": [-0.29539015889167786, -0.01280362717807293, 0.01065994892269373, 0.6159955263137817, -0.3414883613586426, 0.007297234144061804, -0.3402591049671173, 0.00558198569342494, -0.001419540960341692, 0.6041924357414246, -0.3007342219352722, 0.0024854475632309914, 0.0034149333368986845, 0.005667530000209808, -0.05007077753543854, -2.845534324645996, 0.5327227711677551, 0.20901687443256378, 1.2389891147613525, 0.16713200509548187, 0.23689217865467072, -0.1598336100578308, -2.956112861633301, -0.507472038269043, -0.193161740899086, 1.3040634393692017, -0.11823636293411255, 0.30226612091064453, 0.09344100207090378]} +{"t": 11.5464, "q": [-0.29544129967689514, -0.012854759581387043, 0.010713516734540462, 0.6161830425262451, -0.3414801359176636, 0.007311847060918808, -0.34024205803871155, 0.005539374891668558, -0.0014061490073800087, 0.6043628454208374, -0.3007217347621918, 0.002478128531947732, 0.003481892868876457, 0.005720768589526415, -0.0500163808465004, -2.845522403717041, 0.5327706933021545, 0.20919664204120636, 1.2390011548995972, 0.16710804402828217, 0.236868217587471, -0.15984559059143066, -2.956112861633301, -0.5074120759963989, -0.193161740899086, 1.3047945499420166, -0.11826033145189285, 0.3022541403770447, 0.09402823448181152]} +{"t": 11.5634, "q": [-0.29547539353370667, -0.012871803715825081, 0.010767084546387196, 0.616353452205658, -0.3414720296859741, 0.007297388277947903, -0.34025058150291443, 0.005530852824449539, -0.001379365217871964, 0.6044906973838806, -0.3007342219352722, 0.0024854475632309914, 0.0035086767747998238, 0.005751198157668114, -0.05000654235482216, -2.8455944061279297, 0.5329025387763977, 0.20926854014396667, 1.239037036895752, 0.16710804402828217, 0.23689217865467072, -0.15984559059143066, -2.956017017364502, -0.5074000954627991, -0.193161740899086, 1.3053457736968994, -0.11826033145189285, 0.3022541403770447, 0.09444767981767654]} +{"t": 11.5801, "q": [-0.29551801085472107, -0.012914413586258888, 0.010793867520987988, 0.61656653881073, -0.3414801359176636, 0.007311847060918808, -0.34025058150291443, 0.005513808690011501, -0.0013659733813256025, 0.6045844554901123, -0.30072593688964844, 0.0024854030925780535, 0.003575636073946953, 0.0057740164920687675, -0.050001636147499084, -2.8456063270568848, 0.5328665971755981, 0.20928052067756653, 1.239037036895752, 0.16703613102436066, 0.23685622215270996, -0.1598575860261917, -2.955921173095703, -0.5073042511940002, -0.193161740899086, 1.3059329986572266, -0.11829628795385361, 0.3022541403770447, 0.09490308165550232]} +{"t": 11.5968, "q": [-0.29557764530181885, -0.012914413586258888, 0.010807259939610958, 0.6167199015617371, -0.3414841890335083, 0.007319076452404261, -0.3402676284313202, 0.005505286622792482, -0.0013257976388558745, 0.6047037243843079, -0.3007258474826813, 0.0024708984419703484, 0.0035220684949308634, 0.005812042858451605, -0.049957115203142166, -2.8454864025115967, 0.5328306555747986, 0.20929251611232758, 1.2390011548995972, 0.16706010699272156, 0.23680828511714935, -0.1598336100578308, -2.955921173095703, -0.5073042511940002, -0.193161740899086, 1.3069636821746826, -0.11835620552301407, 0.3022421598434448, 0.09541840106248856]} +{"t": 11.6137, "q": [-0.2956032156944275, -0.012914413586258888, 0.010860827751457691, 0.6168307065963745, -0.3414883017539978, 0.007311770226806402, -0.3402676284313202, 0.005479720421135426, -0.0012990138493478298, 0.6047463417053223, -0.3007301092147827, 0.002492677653208375, 0.003334582084789872, 0.005850073881447315, -0.04992251098155975, -2.845402717590332, 0.532794713973999, 0.20947226881980896, 1.239037036895752, 0.16701216995716095, 0.23680828511714935, -0.15984559059143066, -2.955921173095703, -0.5072683095932007, -0.19317372143268585, 1.3078025579452515, -0.11835620552301407, 0.30223017930984497, 0.0957060232758522]} +{"t": 11.6305, "q": [-0.29557764530181885, -0.012914413586258888, 0.010967962443828583, 0.6169074177742004, -0.34149226546287537, 0.007333553396165371, -0.34027615189552307, 0.0054882424883544445, -0.0012052706442773342, 0.6048145294189453, -0.3007342219352722, 0.0024854475632309914, 0.003240838646888733, 0.005842467769980431, -0.049927450716495514, -2.8453307151794434, 0.5328186750411987, 0.2096879929304123, 1.2390490770339966, 0.1669522374868393, 0.2367963045835495, -0.15984559059143066, -2.9560530185699463, -0.5074840188026428, -0.19317372143268585, 1.308893084526062, -0.11839216202497482, 0.3022181987762451, 0.09590975195169449]} +{"t": 11.6472, "q": [-0.29557764530181885, -0.012922936119139194, 0.011021530255675316, 0.6169926524162292, -0.34149226546287537, 0.007333553396165371, -0.3403102457523346, 0.0054882424883544445, -0.0011517030652612448, 0.6049253344535828, -0.3007301092147827, 0.002492677653208375, 0.0031604873947799206, 0.005918529815971851, -0.04988795146346092, -2.8452348709106445, 0.5328306555747986, 0.20979584753513336, 1.2390609979629517, 0.16686835885047913, 0.23680828511714935, -0.1598336100578308, -2.9563286304473877, -0.5075918436050415, -0.193161740899086, 1.3099596500396729, -0.11839216202497482, 0.3021942377090454, 0.09607753157615662]} +{"t": 11.664, "q": [-0.2955605983734131, -0.012914413586258888, 0.011021530255675316, 0.6170608401298523, -0.34149226546287537, 0.007333553396165371, -0.34032729268074036, 0.0054626758210361, -0.0011784868547692895, 0.6050105690956116, -0.300734281539917, 0.0024999522138386965, 0.0030801359098404646, 0.006002196576446295, -0.04982364550232887, -2.8452107906341553, 0.5328186750411987, 0.21016736328601837, 1.239096999168396, 0.16689231991767883, 0.23680828511714935, -0.1598336100578308, -2.956484317779541, -0.5076637864112854, -0.19317372143268585, 1.3105828762054443, -0.11839216202497482, 0.3021942377090454, 0.09614943712949753]} +{"t": 11.6807, "q": [-0.2955520749092102, -0.0129314586520195, 0.011021530255675316, 0.6171460151672363, -0.3415044844150543, 0.0073407054878771305, -0.34033578634262085, 0.0054541537538170815, -0.0011650949018076062, 0.6051213145256042, -0.3007383942604065, 0.002492722123861313, 0.0030801359098404646, 0.006146719679236412, -0.04974955692887306, -2.845162868499756, 0.5327826738357544, 0.2104070484638214, 1.2389891147613525, 0.16685636341571808, 0.2367963045835495, -0.15984559059143066, -2.9565322399139404, -0.5076518058776855, -0.193161740899086, 1.3109184503555298, -0.11841613054275513, 0.30218222737312317, 0.09619737416505814]} +{"t": 11.6974, "q": [-0.29558616876602173, -0.012905891984701157, 0.010981354862451553, 0.6173676252365112, -0.3415003716945648, 0.007348012179136276, -0.3403528332710266, 0.005479720421135426, -0.0011784868547692895, 0.6053599715232849, -0.300734281539917, 0.0024999522138386965, 0.0030801359098404646, 0.006199959199875593, -0.049695100635290146, -2.8451030254364014, 0.5327706933021545, 0.2108864188194275, 1.2390251159667969, 0.16684438288211823, 0.23680828511714935, -0.1598336100578308, -2.956616163253784, -0.5075918436050415, -0.193161740899086, 1.3110023736953735, -0.11841613054275513, 0.3021942377090454, 0.09626927971839905]} +{"t": 11.7141, "q": [-0.29567140340805054, -0.012880325317382812, 0.010967962443828583, 0.617682933807373, -0.3415003716945648, 0.007348012179136276, -0.34038692712783813, 0.0054626758210361, -0.0012052706442773342, 0.6055900454521179, -0.30075496435165405, 0.00249286531470716, 0.0031470954418182373, 0.006283615715801716, -0.049620963633060455, -2.8450911045074463, 0.5327467322349548, 0.21137776970863342, 1.2390609979629517, 0.16678446531295776, 0.2367963045835495, -0.1598336100578308, -2.9566521644592285, -0.507472038269043, -0.19317372143268585, 1.3110263347625732, -0.11841613054275513, 0.30220621824264526, 0.09631721675395966]} +{"t": 11.7309, "q": [-0.29572251439094543, -0.012880325317382812, 0.010941178537905216, 0.6180067658424377, -0.34151265025138855, 0.007340628653764725, -0.3404465913772583, 0.0054626758210361, -0.0012454462703317404, 0.6059224009513855, -0.30076315999031067, 0.002478441223502159, 0.0031604873947799206, 0.006412883289158344, -0.04949759691953659, -2.8450310230255127, 0.5327587127685547, 0.21171332895755768, 1.2390251159667969, 0.16678446531295776, 0.2367963045835495, -0.1598336100578308, -2.9566640853881836, -0.5073521733283997, -0.19317372143268585, 1.311050295829773, -0.11841613054275513, 0.3021702468395233, 0.09637714177370071]} +{"t": 11.7477, "q": [-0.29582479596138, -0.012871803715825081, 0.01092778705060482, 0.618432879447937, -0.34151265025138855, 0.007340628653764725, -0.340582937002182, 0.005479720421135426, -0.0012454462703317404, 0.6063058972358704, -0.30084529519081116, 0.002363137435168028, 0.003133703488856554, 0.00661061005666852, -0.04937942698597908, -2.8449952602386475, 0.5327467322349548, 0.211785227060318, 1.2390490770339966, 0.166748508810997, 0.23678432404994965, -0.1598336100578308, -2.9566283226013184, -0.5072922706604004, -0.193161740899086, 1.3110263347625732, -0.11842811107635498, 0.3021462857723236, 0.09644904732704163]} +{"t": 11.7645, "q": [-0.29593557119369507, -0.012871803715825081, 0.01092778705060482, 0.6188675165176392, -0.34151265025138855, 0.007340628653764725, -0.3406426012516022, 0.005479720421135426, -0.0012454462703317404, 0.6066979169845581, -0.300902783870697, 0.002276619430631399, 0.003173879347741604, 0.00693761371076107, -0.049157705157995224, -2.844923257827759, 0.532734751701355, 0.2119050770998001, 1.2389891147613525, 0.16671255230903625, 0.23678432404994965, -0.1598336100578308, -2.9566283226013184, -0.5072683095932007, -0.19317372143268585, 1.3110382556915283, -0.11841613054275513, 0.30213430523872375, 0.09650896489620209]} +{"t": 11.7812, "q": [-0.2960463762283325, -0.012854759581387043, 0.010901003144681454, 0.6193788051605225, -0.34153300523757935, 0.007347704377025366, -0.3407278060913086, 0.005479720421135426, -0.0012186624808236957, 0.6070899367332458, -0.3010263442993164, 0.0021616281010210514, 0.0031604873947799206, 0.007180954795330763, -0.04897035285830498, -2.844839334487915, 0.5328186750411987, 0.21197697520256042, 1.2389411926269531, 0.16671255230903625, 0.23678432404994965, -0.15982162952423096, -2.956616163253784, -0.5072563290596008, -0.19317372143268585, 1.3110742568969727, -0.11841613054275513, 0.30211034417152405, 0.09653293341398239]} +{"t": 11.7981, "q": [-0.29640430212020874, -0.012837715446949005, 0.010834043845534325, 0.6199924349784851, -0.3415411114692688, 0.007362180855125189, -0.34088122844696045, 0.0054882424883544445, -0.0012990138493478298, 0.6074137687683105, -0.3010878264904022, 0.0020534114446491003, 0.0031604873947799206, 0.0074318996630609035, -0.048768170177936554, -2.844611644744873, 0.5328186750411987, 0.21204888820648193, 1.239037036895752, 0.16671255230903625, 0.2367963045835495, -0.15982162952423096, -2.956592321395874, -0.5071364641189575, -0.19319769740104675, 1.3110982179641724, -0.11839216202497482, 0.30211034417152405, 0.096580870449543]} +{"t": 11.8148, "q": [-0.29680484533309937, -0.012761015444993973, 0.010700124315917492, 0.6205463409423828, -0.3415493369102478, 0.00734754977747798, -0.34106871485710144, 0.005471197888255119, -0.0013525814283639193, 0.6076012849807739, -0.30113735795021057, 0.0020247953943908215, 0.003173879347741604, 0.007454675156623125, -0.04865433648228645, -2.8444080352783203, 0.5328905582427979, 0.21216872334480286, 1.2390609979629517, 0.1666766107082367, 0.23678432404994965, -0.1598336100578308, -2.956604242324829, -0.5070525407791138, -0.19319769740104675, 1.3110861778259277, -0.11842811107635498, 0.30211034417152405, 0.09661682695150375]} +{"t": 11.8316, "q": [-0.2972394526004791, -0.012709883973002434, 0.0105126379057765, 0.6212536692619324, -0.341561496257782, 0.007369238417595625, -0.3412221074104309, 0.005505286622792482, -0.0014597165863960981, 0.6078569293022156, -0.3011621832847595, 0.002025000983849168, 0.0031604873947799206, 0.007439421024173498, -0.048535414040088654, -2.8442041873931885, 0.5328905582427979, 0.2122046798467636, 1.2389891147613525, 0.1666766107082367, 0.2367963045835495, -0.1598336100578308, -2.9566402435302734, -0.5070285797119141, -0.19319769740104675, 1.311050295829773, -0.11839216202497482, 0.3020983636379242, 0.09664079546928406]} +{"t": 11.8483, "q": [-0.2976570427417755, -0.012658750638365746, 0.01025819219648838, 0.6219865679740906, -0.34159407019615173, 0.007383483927696943, -0.3413669764995575, 0.005547896958887577, -0.0015802436973899603, 0.6080443859100342, -0.3012160658836365, 0.0020326324738562107, 0.003133703488856554, 0.007408972829580307, -0.04847586899995804, -2.843904495239258, 0.5329025387763977, 0.2123604714870453, 1.2390011548995972, 0.1666286736726761, 0.23678432404994965, -0.1598336100578308, -2.9566402435302734, -0.5070645809173584, -0.1932096779346466, 1.311050295829773, -0.11839216202497482, 0.3020983636379242, 0.09670071303844452]} +{"t": 11.8651, "q": [-0.29813429713249207, -0.01256500743329525, 0.01000374648720026, 0.6227279901504517, -0.341614305973053, 0.0074196308851242065, -0.3415374159812927, 0.005590507760643959, -0.0017543383873999119, 0.6082830429077148, -0.30122846364974976, 0.0020255008712410927, 0.0030801359098404646, 0.0074926414526999, -0.04847121238708496, -2.8436288833618164, 0.5329025387763977, 0.2124563455581665, 1.2390251159667969, 0.16661667823791504, 0.2367963045835495, -0.15982162952423096, -2.9566283226013184, -0.5072442889213562, -0.19319769740104675, 1.3110982179641724, -0.11841613054275513, 0.3020983636379242, 0.09674865007400513]} +{"t": 11.8818, "q": [-0.2983558475971222, -0.012633183971047401, 0.00991000235080719, 0.6231626272201538, -0.34162652492523193, 0.007426801603287458, -0.3416311740875244, 0.005556419026106596, -0.0017543383873999119, 0.6086068749427795, -0.3012368083000183, 0.0020400499925017357, 0.003093527862802148, 0.007492626551538706, -0.04842162877321243, -2.8434131145477295, 0.5329145193099976, 0.21246832609176636, 1.239096999168396, 0.16660469770431519, 0.23680828511714935, -0.1598336100578308, -2.9566283226013184, -0.5074120759963989, -0.19322165846824646, 1.3110861778259277, -0.11840414255857468, 0.30208635330200195, 0.09676063805818558]} +{"t": 11.8985, "q": [-0.29873934388160706, -0.012607618235051632, 0.009816259145736694, 0.6236739754676819, -0.34162643551826477, 0.0074413372203707695, -0.34179309010505676, 0.005556419026106596, -0.0018079059664160013, 0.6087091565132141, -0.3012368083000183, 0.0020400499925017357, 0.003106919815763831, 0.007523046340793371, -0.04840190336108208, -2.8431615829467773, 0.5329264998435974, 0.21255221962928772, 1.2389891147613525, 0.1666286736726761, 0.23680828511714935, -0.15982162952423096, -2.956616163253784, -0.5074360370635986, -0.19322165846824646, 1.3111581802368164, -0.11841613054275513, 0.3020983636379242, 0.09676063805818558]} +{"t": 11.9152, "q": [-0.29910579323768616, -0.012616140767931938, 0.009722515940666199, 0.6244494915008545, -0.3416345417499542, 0.007455796003341675, -0.34193795919418335, 0.005556419026106596, -0.001834689755924046, 0.6089903712272644, -0.3012368083000183, 0.0020400499925017357, 0.003106919815763831, 0.007576302159577608, -0.04843679815530777, -2.8429458141326904, 0.5329384803771973, 0.21255221962928772, 1.2390251159667969, 0.16656874120235443, 0.23680828511714935, -0.15982162952423096, -2.95658016204834, -0.5074000954627991, -0.1932336539030075, 1.3111342191696167, -0.11840414255857468, 0.3020983636379242, 0.09677261859178543]} +{"t": 11.932, "q": [-0.29978758096694946, -0.012607618235051632, 0.009427894838154316, 0.6254721283912659, -0.3416793644428253, 0.007520771119743586, -0.3422788381576538, 0.005573463626205921, -0.002022176282480359, 0.6093653440475464, -0.3012577295303345, 0.002076422795653343, 0.0030801359098404646, 0.007599110249429941, -0.048402171581983566, -2.842538356781006, 0.5330463647842407, 0.21258817613124847, 1.2389651536941528, 0.16650882363319397, 0.23683226108551025, -0.15982162952423096, -2.9565563201904297, -0.5073521733283997, -0.1932336539030075, 1.3111701011657715, -0.11839216202497482, 0.3020983636379242, 0.09678460657596588]} +{"t": 11.9487, "q": [-0.3007420599460602, -0.012573529034852982, 0.009039529599249363, 0.6265629529953003, -0.34170788526535034, 0.007571368478238583, -0.342781662940979, 0.005564941558986902, -0.0023435817565768957, 0.6096806526184082, -0.3012619912624359, 0.00209820200689137, 0.0030533522367477417, 0.007629542611539364, -0.04841219633817673, -2.8421428203582764, 0.5329504609107971, 0.21261213719844818, 1.2389771938323975, 0.1664489060640335, 0.23678432404994965, -0.15982162952423096, -2.9565563201904297, -0.5072683095932007, -0.1932336539030075, 1.3111581802368164, -0.11839216202497482, 0.30208635330200195, 0.09678460657596588]} +{"t": 11.9654, "q": [-0.30167949199676514, -0.01256500743329525, 0.008825259283185005, 0.6274322271347046, -0.34171605110168457, 0.007585819344967604, -0.3434293270111084, 0.005556419026106596, -0.0024908925406634808, 0.6102175712585449, -0.3012577295303345, 0.002076422795653343, 0.003093527862802148, 0.007629542611539364, -0.04841219633817673, -2.8417115211486816, 0.5328186750411987, 0.21260015666484833, 1.2390490770339966, 0.16647286713123322, 0.23676034808158875, -0.15982162952423096, -2.956592321395874, -0.5071843862533569, -0.19325761497020721, 1.3111581802368164, -0.11839216202497482, 0.30208635330200195, 0.09682055562734604]} +{"t": 11.9822, "q": [-0.3024209141731262, -0.012616140767931938, 0.008825259283185005, 0.628079891204834, -0.3417201638221741, 0.007578513119369745, -0.34422188997268677, 0.0054626758210361, -0.0025176764465868473, 0.6108055710792542, -0.30125361680984497, 0.0020836349576711655, 0.0032006630208343267, 0.007629542611539364, -0.04841219633817673, -2.8414838314056396, 0.5327706933021545, 0.21262411773204803, 1.239037036895752, 0.16647286713123322, 0.23678432404994965, -0.15982162952423096, -2.956604242324829, -0.5071364641189575, -0.1932336539030075, 1.3111101388931274, -0.11839216202497482, 0.3020983636379242, 0.09683254361152649]} +{"t": 11.999, "q": [-0.30337539315223694, -0.012658750638365746, 0.008905611000955105, 0.6287276148796082, -0.34171199798583984, 0.007564061786979437, -0.34543201327323914, 0.0054626758210361, -0.0024105412885546684, 0.6115299463272095, -0.30124542117118835, 0.0020980590488761663, 0.0032944062259048223, 0.007621931843459606, -0.04840720817446709, -2.841279983520508, 0.532650887966156, 0.21263611316680908, 1.2390609979629517, 0.1664489060640335, 0.2367483675479889, -0.15982162952423096, -2.9565083980560303, -0.5070765614509583, -0.1932336539030075, 1.3111581802368164, -0.11839216202497482, 0.30206239223480225, 0.09684452414512634]} +{"t": 12.0158, "q": [-0.3047304153442383, -0.01268431730568409, 0.009133272804319859, 0.629417896270752, -0.3417038023471832, 0.007564142812043428, -0.347196102142334, 0.005403021350502968, -0.002236446598544717, 0.6122628450393677, -0.3012412488460541, 0.002090784488245845, 0.003254230599850416, 0.007599110249429941, -0.048402171581983566, -2.8410162925720215, 0.5326868295669556, 0.2126600742340088, 1.2390490770339966, 0.166376993060112, 0.23676034808158875, -0.15982162952423096, -2.9564244747161865, -0.5069926381111145, -0.19326959550380707, 1.3112061023712158, -0.11839216202497482, 0.3020504117012024, 0.09686849266290665]} +{"t": 12.0325, "q": [-0.30695468187332153, -0.012692838907241821, 0.009307367727160454, 0.630159318447113, -0.34167924523353577, 0.0075643849559128284, -0.34923288226127625, 0.005385976750403643, -0.0021025275345891714, 0.613132119178772, -0.3012245297431946, 0.002061686245724559, 0.0032274469267576933, 0.0076371473260223866, -0.048407264053821564, -2.8408966064453125, 0.5326988101005554, 0.2126600742340088, 1.2389651536941528, 0.1663290560245514, 0.2367483675479889, -0.1598096489906311, -2.956484317779541, -0.5069447159767151, -0.19330555200576782, 1.3111821413040161, -0.11836819350719452, 0.30203843116760254, 0.0968804731965065]} +{"t": 12.0492, "q": [-0.308343768119812, -0.01268431730568409, 0.009293975308537483, 0.6308751702308655, -0.3416425287723541, 0.007513868622481823, -0.35041746497154236, 0.005420065484941006, -0.0021427033934742212, 0.61380535364151, -0.30119967460632324, 0.002061498584225774, 0.003026568330824375, 0.007599110249429941, -0.048402171581983566, -2.8408126831054688, 0.5326868295669556, 0.21267205476760864, 1.2389411926269531, 0.166376993060112, 0.23671241104602814, -0.15982162952423096, -2.9568798542022705, -0.5068607926368713, -0.19330555200576782, 1.3111581802368164, -0.11836819350719452, 0.30203843116760254, 0.09692841023206711]} +{"t": 12.066, "q": [-0.3083522915840149, -0.012667272239923477, 0.009280583821237087, 0.6311137676239014, -0.34162622690200806, 0.00748494453728199, -0.35051119327545166, 0.005411543417721987, -0.0021427033934742212, 0.6140695214271545, -0.30120787024497986, 0.0020470565650612116, 0.003026568330824375, 0.007614326663315296, -0.04841214045882225, -2.8407886028289795, 0.5325789451599121, 0.21269603073596954, 1.2385936975479126, 0.16634105145931244, 0.23664051294326782, -0.1598096489906311, -2.957059621810913, -0.5067529678344727, -0.19332952797412872, 1.3111581802368164, -0.11835620552301407, 0.30201447010040283, 0.09692841023206711]} +{"t": 12.0827, "q": [-0.30874431133270264, -0.012658750638365746, 0.009267191402614117, 0.6311137676239014, -0.34162217378616333, 0.007477715145796537, -0.3508946895599365, 0.005428587552160025, -0.0021828790195286274, 0.6140525341033936, -0.30119967460632324, 0.002061498584225774, 0.00321405497379601, 0.007667581085115671, -0.04842720553278923, -2.840501070022583, 0.5325190424919128, 0.21271999180316925, 1.238521695137024, 0.16630509495735168, 0.23661653697490692, -0.1598096489906311, -2.9568560123443604, -0.5065612196922302, -0.19329357147216797, 1.3111461400985718, -0.11836819350719452, 0.302002489566803, 0.09692841023206711]} +{"t": 12.0995, "q": [-0.3088380694389343, -0.012650229036808014, 0.009160056710243225, 0.6311052441596985, -0.34161004424095154, 0.0074560269713401794, -0.35092025995254517, 0.005420065484941006, -0.002276622224599123, 0.6140525341033936, -0.3011994957923889, 0.0020325074438005686, 0.0032676225528120995, 0.007629542611539364, -0.04841219633817673, -2.8403093814849854, 0.5323752164840698, 0.21271999180316925, 1.238581657409668, 0.16630509495735168, 0.23662853240966797, -0.1598096489906311, -2.9570116996765137, -0.5061657428741455, -0.19332952797412872, 1.3111342191696167, -0.11833223700523376, 0.302002489566803, 0.09692841023206711]} +{"t": 12.1165, "q": [-0.3088891804218292, -0.012582051567733288, 0.00906631350517273, 0.6311137676239014, -0.3415939211845398, 0.007412555627524853, -0.35097140073776245, 0.0054456316865980625, -0.002316797850653529, 0.6140609979629517, -0.3011953830718994, 0.002039737533777952, 0.0032810145057737827, 0.007606714963912964, -0.0483972392976284, -2.83960223197937, 0.5322194695472717, 0.21276792883872986, 1.238569736480713, 0.16629311442375183, 0.23659257590770721, -0.15979765355587006, -2.9569876194000244, -0.5055186152458191, -0.19332952797412872, 1.311122179031372, -0.11832025647163391, 0.3019784986972809, 0.09692841023206711]} +{"t": 12.1332, "q": [-0.308906227350235, -0.012513874098658562, 0.008905611000955105, 0.631071150302887, -0.341581791639328, 0.007390867453068495, -0.35097992420196533, 0.005513808690011501, -0.0023703654296696186, 0.6139928698539734, -0.30118703842163086, 0.002025188412517309, 0.0032944062259048223, 0.007621931843459606, -0.04840720817446709, -2.8387274742126465, 0.5321954488754272, 0.21279190480709076, 1.238425850868225, 0.16626913845539093, 0.2365206629037857, -0.15979765355587006, -2.9570116996765137, -0.5050392150878906, -0.19332952797412872, 1.3111701011657715, -0.11832025647163391, 0.3019545376300812, 0.09696436673402786]} +{"t": 12.15, "q": [-0.3088891804218292, -0.012437175959348679, 0.008798475377261639, 0.6310200095176697, -0.341590017080307, 0.007376254536211491, -0.3510395884513855, 0.005547896958887577, -0.002423933008685708, 0.6139928698539734, -0.3011953830718994, 0.002039737533777952, 0.003240838646888733, 0.007652364205569029, -0.048417236655950546, -2.837876558303833, 0.5318359732627869, 0.21276792883872986, 1.2382820844650269, 0.16622120141983032, 0.236496701836586, -0.15977369248867035, -2.9569876194000244, -0.5047516226768494, -0.19334150850772858, 1.3111342191696167, -0.11829628795385361, 0.30196651816368103, 0.09695237874984741]} +{"t": 12.1667, "q": [-0.308906227350235, -0.012343432754278183, 0.008771691471338272, 0.6309433579444885, -0.341581791639328, 0.007390867453068495, -0.35105663537979126, 0.005573463626205921, -0.0024507169146090746, 0.6139161586761475, -0.3012077808380127, 0.002032569842413068, 0.0032274469267576933, 0.007629542611539364, -0.04841219633817673, -2.83697772026062, 0.5315722823143005, 0.2128038853406906, 1.2382700443267822, 0.16622120141983032, 0.23648472130298615, -0.1597617119550705, -2.9569997787475586, -0.5044400095939636, -0.19336546957492828, 1.311122179031372, -0.11829628795385361, 0.3019425570964813, 0.09695237874984741]} +{"t": 12.1835, "q": [-0.3088891804218292, -0.012258211150765419, 0.00873151607811451, 0.6308751702308655, -0.34159407019615173, 0.007383483927696943, -0.35105663537979126, 0.005624596029520035, -0.0024775005877017975, 0.61380535364151, -0.3012160658836365, 0.0020326324738562107, 0.0032274469267576933, 0.007576295640319586, -0.04841696470975876, -2.8361268043518066, 0.5314404964447021, 0.21283984184265137, 1.2382581233978271, 0.16620922088623047, 0.23643678426742554, -0.1597137749195099, -2.9569997787475586, -0.5042003393173218, -0.19338944554328918, 1.3111342191696167, -0.11829628795385361, 0.3019545376300812, 0.09694039821624756]} +{"t": 12.2002, "q": [-0.30888068675994873, -0.012224122881889343, 0.00873151607811451, 0.6307899355888367, -0.341590017080307, 0.007376254536211491, -0.3510395884513855, 0.005633118096739054, -0.0024775005877017975, 0.6137456893920898, -0.3012283444404602, 0.0020109962206333876, 0.0032274469267576933, 0.007583907339721918, -0.048431865870952606, -2.835503578186035, 0.5314764380455017, 0.21293571591377258, 1.238186240196228, 0.16618524491786957, 0.23640082776546478, -0.15967781841754913, -2.957047700881958, -0.5040085911750793, -0.19340142607688904, 1.3111581802368164, -0.11826033145189285, 0.30193057656288147, 0.09692841023206711]} +{"t": 12.2169, "q": [-0.3088891804218292, -0.012224122881889343, 0.00866455677896738, 0.6307047009468079, -0.34159818291664124, 0.007376177702099085, -0.3510481119155884, 0.00564164062961936, -0.0024373249616473913, 0.6135838031768799, -0.30122435092926025, 0.002032713033258915, 0.00321405497379601, 0.007568696513772011, -0.04843181371688843, -2.835275888442993, 0.5315842628479004, 0.21294769644737244, 1.2381621599197388, 0.16619724035263062, 0.23637685179710388, -0.15964186191558838, -2.9571914672851562, -0.5037809014320374, -0.1934373825788498, 1.3111342191696167, -0.11823636293411255, 0.3019425570964813, 0.09691642969846725]} +{"t": 12.2337, "q": [-0.308906227350235, -0.012224122881889343, 0.008677948266267776, 0.6306620836257935, -0.34159407019615173, 0.007383483927696943, -0.35102254152297974, 0.005650162696838379, -0.0024373249616473913, 0.6134218573570251, -0.3012200891971588, 0.0020109338220208883, 0.00321405497379601, 0.007576308213174343, -0.048446714878082275, -2.835132122039795, 0.5315722823143005, 0.2129596769809723, 1.2380543947219849, 0.16618524491786957, 0.23634091019630432, -0.15959392488002777, -2.9573233127593994, -0.5035291910171509, -0.1934613436460495, 1.3111342191696167, -0.11826033145189285, 0.30190661549568176, 0.09691642969846725]} +{"t": 12.2504, "q": [-0.308906227350235, -0.012241167016327381, 0.008704732172191143, 0.6306024789810181, -0.34159407019615173, 0.007383483927696943, -0.3510310649871826, 0.005633118096739054, -0.002423933008685708, 0.6133366227149963, -0.3012201488018036, 0.0020254203118383884, 0.00321405497379601, 0.0075991228222846985, -0.04843192175030708, -2.83514404296875, 0.5316681861877441, 0.21301960945129395, 1.237910509109497, 0.16618524491786957, 0.23625701665878296, -0.15958194434642792, -2.9573593139648438, -0.5032296180725098, -0.1934853196144104, 1.3111461400985718, -0.11826033145189285, 0.3018706440925598, 0.09692841023206711]} +{"t": 12.2671, "q": [-0.3088891804218292, -0.012241167016327381, 0.008744907565414906, 0.6305854320526123, -0.34159407019615173, 0.007383483927696943, -0.3509969711303711, 0.005607551895081997, -0.002423933008685708, 0.6132258772850037, -0.3012201488018036, 0.0020254203118383884, 0.003254230599850416, 0.007637141738086939, -0.04839734733104706, -2.8350841999053955, 0.5315842628479004, 0.21304357051849365, 1.2377067804336548, 0.16616128385066986, 0.2361731231212616, -0.1595340073108673, -2.9574432373046875, -0.5029898881912231, -0.19349730014801025, 1.3110861778259277, -0.11823636293411255, 0.3018706440925598, 0.09692841023206711]} +{"t": 12.2839, "q": [-0.30891475081443787, -0.01226673275232315, 0.00873151607811451, 0.6305257678031921, -0.3416021466255188, 0.007397942710667849, -0.35097140073776245, 0.005590507760643959, -0.002423933008685708, 0.6130980253219604, -0.30121180415153503, 0.0020108711905777454, 0.003240838646888733, 0.007629536557942629, -0.04840227961540222, -2.8350841999053955, 0.531680166721344, 0.2130795270204544, 1.2376469373703003, 0.16618524491786957, 0.23616114258766174, -0.15952202677726746, -2.957395315170288, -0.5027621984481812, -0.19347333908081055, 1.3110742568969727, -0.11826033145189285, 0.3018466830253601, 0.0969044417142868]} +{"t": 12.3007, "q": [-0.30891475081443787, -0.012249689549207687, 0.008758299984037876, 0.6304320096969604, -0.3416021466255188, 0.007397942710667849, -0.35097140073776245, 0.005590507760643959, -0.0024105412885546684, 0.6130468845367432, -0.3012160658836365, 0.0020326324738562107, 0.0032676225528120995, 0.007614326663315296, -0.04841214045882225, -2.83512020111084, 0.5316322445869446, 0.2130315899848938, 1.2375630140304565, 0.16617326438426971, 0.2361491620540619, -0.1594620943069458, -2.9575629234313965, -0.5025105476379395, -0.1934853196144104, 1.310990333557129, -0.11826033145189285, 0.30183470249176025, 0.0969044417142868]} +{"t": 12.3174, "q": [-0.30891475081443787, -0.012283777818083763, 0.008718123659491539, 0.630389392375946, -0.3416021466255188, 0.007397942710667849, -0.35092025995254517, 0.005590507760643959, -0.0024507169146090746, 0.6128594279289246, -0.3012160658836365, 0.0020326324738562107, 0.00321405497379601, 0.007682798895984888, -0.04844709113240242, -2.835036277770996, 0.5316921472549438, 0.21306754648685455, 1.2375150918960571, 0.16618524491786957, 0.23616114258766174, -0.15945011377334595, -2.957730770111084, -0.502234935760498, -0.19347333908081055, 1.310990333557129, -0.11823636293411255, 0.30183470249176025, 0.09689246118068695]} +{"t": 12.3341, "q": [-0.30891475081443787, -0.012275256216526031, 0.008718123659491539, 0.6302785873413086, -0.3416021466255188, 0.007397942710667849, -0.35092025995254517, 0.005607551895081997, -0.0024507169146090746, 0.6127400994300842, -0.30120769143104553, 0.0020180833525955677, 0.0032274469267576933, 0.007637161295861006, -0.048446930944919586, -2.835048198699951, 0.5315603017807007, 0.21304357051849365, 1.2374790906906128, 0.16618524491786957, 0.23611320555210114, -0.1594141572713852, -2.9579224586486816, -0.5019113421440125, -0.19349730014801025, 1.3109544515609741, -0.11826033145189285, 0.3018227219581604, 0.0969044417142868]} +{"t": 12.3508, "q": [-0.308906227350235, -0.012258211150765419, 0.00873151607811451, 0.6302445530891418, -0.3416021466255188, 0.007397942710667849, -0.3508606255054474, 0.005599029827862978, -0.0024507169146090746, 0.6126633882522583, -0.30120769143104553, 0.0020180833525955677, 0.0031872710678726435, 0.0076447660103440285, -0.04844199866056442, -2.8350002765655518, 0.5316202044487, 0.2131034880876541, 1.237443208694458, 0.16617326438426971, 0.23608924448490143, -0.1594141572713852, -2.958186149597168, -0.5016356706619263, -0.19349730014801025, 1.3109303712844849, -0.11823636293411255, 0.30181074142456055, 0.0969044417142868]} +{"t": 12.3676, "q": [-0.30892327427864075, -0.012249689549207687, 0.008704732172191143, 0.6301848888397217, -0.3416021466255188, 0.007397942710667849, -0.35082653164863586, 0.005607551895081997, -0.0024908925406634808, 0.6125525832176208, -0.3012036085128784, 0.00202529551461339, 0.00321405497379601, 0.007675199769437313, -0.04846194013953209, -2.8350002765655518, 0.5316322445869446, 0.2130315899848938, 1.237383246421814, 0.16616128385066986, 0.23608924448490143, -0.15936622023582458, -2.9582459926605225, -0.501348078250885, -0.1934853196144104, 1.3109064102172852, -0.11823636293411255, 0.3017987310886383, 0.0969044417142868]} +{"t": 12.3843, "q": [-0.30891475081443787, -0.012241167016327381, 0.00866455677896738, 0.6301252245903015, -0.3416021466255188, 0.007397942710667849, -0.3508094847202301, 0.005624596029520035, -0.002504284493625164, 0.6125015020370483, -0.3012036085128784, 0.00202529551461339, 0.003240838646888733, 0.007659983821213245, -0.04846188426017761, -2.835012197494507, 0.5315842628479004, 0.21306754648685455, 1.2373712062835693, 0.16620922088623047, 0.23605328798294067, -0.15936622023582458, -2.95841383934021, -0.5010005235671997, -0.19354523718357086, 1.3108584880828857, -0.11823636293411255, 0.3017747700214386, 0.0969044417142868]} +{"t": 12.401, "q": [-0.30891475081443787, -0.012241167016327381, 0.008624380454421043, 0.6300655603408813, -0.3416021466255188, 0.007397942710667849, -0.3508009612560272, 0.005624596029520035, -0.002531068166717887, 0.6124674081802368, -0.30121180415153503, 0.0020108711905777454, 0.00321405497379601, 0.007675193715840578, -0.048452023416757584, -2.8349883556365967, 0.5314404964447021, 0.21304357051849365, 1.2372993230819702, 0.16622120141983032, 0.23601733148097992, -0.15936622023582458, -2.9584858417510986, -0.5006529688835144, -0.19355721771717072, 1.3108465671539307, -0.11823636293411255, 0.30176278948783875, 0.0969044417142868]} +{"t": 12.4177, "q": [-0.3088551163673401, -0.012224122881889343, 0.008637772873044014, 0.6300570368766785, -0.34159407019615173, 0.007383483927696943, -0.35060495138168335, 0.005633118096739054, -0.0025578520726412535, 0.6123651266098022, -0.3011951446533203, 0.001996259670704603, 0.0032274469267576933, 0.007675200700759888, -0.048471856862306595, -2.8350002765655518, 0.5314284563064575, 0.2130315899848938, 1.2372634410858154, 0.16620922088623047, 0.2359693944454193, -0.15936622023582458, -2.9585816860198975, -0.5003653764724731, -0.19355721771717072, 1.3108465671539307, -0.11823636293411255, 0.30176278948783875, 0.0968804731965065]} +{"t": 12.4347, "q": [-0.3088465929031372, -0.012215601280331612, 0.008597597479820251, 0.6299973726272583, -0.34159407019615173, 0.007383483927696943, -0.35055381059646606, 0.00564164062961936, -0.00258463597856462, 0.6121776103973389, -0.3011868894100189, 0.001996197272092104, 0.0032274469267576933, 0.007667594589293003, -0.04846687242388725, -2.8349883556365967, 0.5314164757728577, 0.2130315899848938, 1.2371914386749268, 0.16623318195343018, 0.235897496342659, -0.15935423970222473, -2.958665609359741, -0.5000657439231873, -0.19355721771717072, 1.310834527015686, -0.11823636293411255, 0.3017508089542389, 0.0968804731965065]} +{"t": 12.4514, "q": [-0.30877840518951416, -0.012198556214571, 0.008570813573896885, 0.6299206614494324, -0.34159407019615173, 0.007383483927696943, -0.3504345118999481, 0.00564164062961936, -0.0026382035575807095, 0.6120327711105347, -0.30118268728256226, 0.0019889227114617825, 0.003254230599850416, 0.00772085739299655, -0.04851164296269417, -2.8349764347076416, 0.5314284563064575, 0.21301960945129395, 1.237167477607727, 0.16620922088623047, 0.23588550090789795, -0.15935423970222473, -2.958653450012207, -0.4992987811565399, -0.19354523718357086, 1.310834527015686, -0.11821239441633224, 0.3017268478870392, 0.0968804731965065]} +{"t": 12.4682, "q": [-0.30873578786849976, -0.012215601280331612, 0.008503853343427181, 0.6299121379852295, -0.34159407019615173, 0.007383483927696943, -0.35027259588241577, 0.005675728898495436, -0.002691771136596799, 0.6119475364685059, -0.30118268728256226, 0.0019889227114617825, 0.0032676225528120995, 0.007781718857586384, -0.04854157567024231, -2.8350002765655518, 0.5314644575119019, 0.2130795270204544, 1.2371315956115723, 0.16619724035263062, 0.235897496342659, -0.15933027863502502, -2.958629608154297, -0.4982801079750061, -0.19354523718357086, 1.3108465671539307, -0.11817644536495209, 0.3017028570175171, 0.0968804731965065]} +{"t": 12.4849, "q": [-0.30870169401168823, -0.012207078747451305, 0.00832975935190916, 0.6298950910568237, -0.34159407019615173, 0.007383483927696943, -0.3500851094722748, 0.005675728898495436, -0.0028122980147600174, 0.6117600798606873, -0.30118680000305176, 0.00198171054944396, 0.0032676225528120995, 0.007842586375772953, -0.04858141392469406, -2.835048198699951, 0.5313565731048584, 0.2130795270204544, 1.2370237112045288, 0.16623318195343018, 0.2358735203742981, -0.15931828320026398, -2.95876145362854, -0.4974532127380371, -0.19355721771717072, 1.3108105659484863, -0.11814048886299133, 0.3017268478870392, 0.0968804731965065]} +{"t": 12.5016, "q": [-0.30859944224357605, -0.012190034613013268, 0.008249407634139061, 0.6298440098762512, -0.34159407019615173, 0.007383483927696943, -0.34990614652633667, 0.005675728898495436, -0.0029060414526611567, 0.611564040184021, -0.30117037892341614, 0.0020105766598135233, 0.003334582084789872, 0.007880630902945995, -0.04860631376504898, -2.835024356842041, 0.5312367081642151, 0.2130795270204544, 1.236999750137329, 0.16622120141983032, 0.2358735203742981, -0.15933027863502502, -2.9587013721466064, -0.4969139099121094, -0.19358119368553162, 1.3108705282211304, -0.11808057129383087, 0.30171486735343933, 0.09686849266290665]} +{"t": 12.5184, "q": [-0.3085738718509674, -0.012190034613013268, 0.008075312711298466, 0.6297672986984253, -0.341590017080307, 0.007376254536211491, -0.3498038649559021, 0.005684250965714455, -0.002946217078715563, 0.6113510131835938, -0.3011704683303833, 0.002025063382461667, 0.003347973804920912, 0.007964320480823517, -0.048651184886693954, -2.8350722789764404, 0.5310090184211731, 0.21309150755405426, 1.2370116710662842, 0.16622120141983032, 0.23583756387233734, -0.15933027863502502, -2.9586775302886963, -0.4965543746948242, -0.19361715018749237, 1.3108465671539307, -0.11806859076023102, 0.3016788959503174, 0.0968804731965065]} +{"t": 12.5353, "q": [-0.3085823953151703, -0.012172989547252655, 0.008008353412151337, 0.6296905875205994, -0.341590017080307, 0.007376254536211491, -0.3496760427951813, 0.005684250965714455, -0.0029997846577316523, 0.6111549735069275, -0.301166296005249, 0.0020177888218313456, 0.003441717242822051, 0.007971934042870998, -0.04867597296833992, -2.83514404296875, 0.5308172702789307, 0.2130315899848938, 1.2369039058685303, 0.16620922088623047, 0.23583756387233734, -0.15933027863502502, -2.9586894512176514, -0.4963266849517822, -0.19361715018749237, 1.3108705282211304, -0.11805660277605057, 0.30166691541671753, 0.09686849266290665]} +{"t": 12.5521, "q": [-0.3085653483867645, -0.012130379676818848, 0.007847650907933712, 0.6296053528785706, -0.341590017080307, 0.007376254536211491, -0.3495652377605438, 0.0057012951001524925, -0.003066744189709425, 0.6109334230422974, -0.301166296005249, 0.0020177888218313456, 0.0034283252898603678, 0.007994755171239376, -0.04868100956082344, -2.835156202316284, 0.5306375026702881, 0.21301960945129395, 1.2369158267974854, 0.16619724035263062, 0.23583756387233734, -0.15931828320026398, -2.958653450012207, -0.4962068498134613, -0.1937130093574524, 1.3108105659484863, -0.11802065372467041, 0.3016549348831177, 0.09686849266290665]} +{"t": 12.5688, "q": [-0.30854830145835876, -0.012121858075261116, 0.007740515749901533, 0.6294946074485779, -0.3415941298007965, 0.007368948310613632, -0.3495311737060547, 0.0057439059019088745, -0.003106919815763831, 0.6107118129730225, -0.3011581003665924, 0.0020322129130363464, 0.0034952848218381405, 0.008063234388828278, -0.048725828528404236, -2.8352160453796387, 0.5306735038757324, 0.21301960945129395, 1.236867904663086, 0.16617326438426971, 0.23581360280513763, -0.15933027863502502, -2.9587013721466064, -0.496230810880661, -0.1937130093574524, 1.3107746839523315, -0.11804462224245071, 0.3016429543495178, 0.09686849266290665]} +{"t": 12.5856, "q": [-0.3085227310657501, -0.012070724740624428, 0.007740515749901533, 0.6294434666633606, -0.341598242521286, 0.0073616416193544865, -0.34945446252822876, 0.005760950036346912, -0.0031203117687255144, 0.6105328798294067, -0.3011581003665924, 0.0020322129130363464, 0.0035220684949308634, 0.008169738575816154, -0.04876582697033882, -2.835239887237549, 0.530709445476532, 0.21304357051849365, 1.2368799448013306, 0.16616128385066986, 0.23581360280513763, -0.15933027863502502, -2.9587135314941406, -0.4963027238845825, -0.1938088834285736, 1.3107507228851318, -0.11804462224245071, 0.3016069829463959, 0.0968565046787262]} +{"t": 12.6023, "q": [-0.308531254529953, -0.01201959140598774, 0.0076467725448310375, 0.629341185092926, -0.34158605337142944, 0.007354471366852522, -0.34937775135040283, 0.005786516238003969, -0.003173879347741604, 0.6101323366165161, -0.30114561319351196, 0.0020248577930033207, 0.0034952848218381405, 0.008283868432044983, -0.04884052276611328, -2.8352279663085938, 0.5308652520179749, 0.2130795270204544, 1.2368559837341309, 0.16614930331707, 0.23578962683677673, -0.15930630266666412, -2.958773374557495, -0.496458500623703, -0.19384483993053436, 1.3106787204742432, -0.11800866574048996, 0.3015710413455963, 0.09686849266290665]} +{"t": 12.6191, "q": [-0.30854830145835876, -0.011883238330483437, 0.0074860695749521255, 0.6292474269866943, -0.34158605337142944, 0.007354471366852522, -0.3491562008857727, 0.005888781975954771, -0.003240838646888733, 0.6095442771911621, -0.30109167098999023, 0.002002721419557929, 0.0034952848218381405, 0.008428442291915417, -0.048935357481241226, -2.8352041244506836, 0.5309131741523743, 0.2130795270204544, 1.2367960214614868, 0.16614930331707, 0.23575368523597717, -0.15928234159946442, -2.95878529548645, -0.4965543746948242, -0.19385682046413422, 1.3106787204742432, -0.11798469722270966, 0.30151110887527466, 0.09683254361152649]} +{"t": 12.6359, "q": [-0.30854830145835876, -0.011815061792731285, 0.007378934416919947, 0.6290940642356873, -0.34159427881240845, 0.007339858915656805, -0.34900277853012085, 0.0059995693154633045, -0.0033077981788665056, 0.6089903712272644, -0.3010541796684265, 0.001966223819181323, 0.0035220684949308634, 0.008542586117982864, -0.04902015998959541, -2.8352041244506836, 0.5309491157531738, 0.2131034880876541, 1.236772060394287, 0.16616128385066986, 0.23578962683677673, -0.15925836563110352, -2.9588332176208496, -0.49665024876594543, -0.19390475749969482, 1.3106428384780884, -0.11796072870492935, 0.30146318674087524, 0.09686849266290665]} +{"t": 12.6526, "q": [-0.3085397779941559, -0.011755406856536865, 0.007311975117772818, 0.6289321184158325, -0.3415902256965637, 0.007332629524171352, -0.34896019101142883, 0.006050701718777418, -0.003321190131828189, 0.6086239218711853, -0.3010167181491852, 0.0019297079415991902, 0.003562244353815913, 0.008611076511442661, -0.049084924161434174, -2.8351919651031494, 0.5309491157531738, 0.2130795270204544, 1.2367839813232422, 0.16616128385066986, 0.23577764630317688, -0.1592344045639038, -2.9588093757629395, -0.4967101812362671, -0.19390475749969482, 1.3106307983398438, -0.1179487481713295, 0.30146318674087524, 0.0968565046787262]} +{"t": 12.6694, "q": [-0.30859091877937317, -0.011670185253024101, 0.007285191211849451, 0.6288809776306152, -0.3415902256965637, 0.007332629524171352, -0.34890905022621155, 0.006110356654971838, -0.003361365757882595, 0.6083171367645264, -0.30096256732940674, 0.0018785804277285933, 0.003562244353815913, 0.008671942166984081, -0.049105025827884674, -2.8352160453796387, 0.5309730768203735, 0.21311548352241516, 1.2367360591888428, 0.16616128385066986, 0.23576566576957703, -0.1592344045639038, -2.9589171409606934, -0.49672216176986694, -0.19390475749969482, 1.3106307983398438, -0.1179487481713295, 0.30143922567367554, 0.0968565046787262]} +{"t": 12.6862, "q": [-0.3086164891719818, -0.01166166365146637, 0.007285191211849451, 0.6287872195243835, -0.3415902256965637, 0.007332629524171352, -0.3488834798336029, 0.006135923322290182, -0.0033747577108442783, 0.6080784797668457, -0.3009336292743683, 0.0018856049282476306, 0.0035354604478925467, 0.008694772608578205, -0.04912000149488449, -2.8351919651031494, 0.5309970378875732, 0.21316342055797577, 1.2367241382598877, 0.16613730788230896, 0.23575368523597717, -0.1592104285955429, -2.9589171409606934, -0.49667423963546753, -0.19390475749969482, 1.310666799545288, -0.1179487481713295, 0.30141523480415344, 0.09684452414512634]} +{"t": 12.703, "q": [-0.3086164891719818, -0.011670185253024101, 0.007218231912702322, 0.6286423802375793, -0.34159427881240845, 0.007339858915656805, -0.34885790944099426, 0.006118878722190857, -0.0033747577108442783, 0.6078910231590271, -0.30092117190361023, 0.0018782679690048099, 0.003468500915914774, 0.008763251826167107, -0.049155011773109436, -2.835156202316284, 0.530937135219574, 0.2130795270204544, 1.2367241382598877, 0.16617326438426971, 0.23575368523597717, -0.15919844806194305, -2.9588332176208496, -0.4966143071651459, -0.19391675293445587, 1.3106188774108887, -0.1179727166891098, 0.30141523480415344, 0.09684452414512634]} +{"t": 12.7197, "q": [-0.30865058302879333, -0.011636096984148026, 0.007218231912702322, 0.6285656690597534, -0.34159427881240845, 0.007339858915656805, -0.3487897515296936, 0.006144445389509201, -0.0034149333368986845, 0.6077035069465637, -0.30090460181236267, 0.001878160866908729, 0.0034952848218381405, 0.008770865388214588, -0.04916992411017418, -2.83514404296875, 0.5307693481445312, 0.2130555510520935, 1.2367241382598877, 0.16614930331707, 0.23576566576957703, -0.1591864675283432, -2.958857297897339, -0.49649447202682495, -0.19388079643249512, 1.3106307983398438, -0.11796072870492935, 0.3013792932033539, 0.0968565046787262]} +{"t": 12.7365, "q": [-0.3086676299571991, -0.011627575382590294, 0.007231623865664005, 0.6285145282745361, -0.34159427881240845, 0.007339858915656805, -0.3487045168876648, 0.006178533658385277, -0.003441717242822051, 0.6075671911239624, -0.3008839190006256, 0.0018852298380807042, 0.0034952848218381405, 0.008755647577345371, -0.0491599403321743, -2.835156202316284, 0.5305776000022888, 0.21311548352241516, 1.2367360591888428, 0.16616128385066986, 0.23575368523597717, -0.1591864675283432, -2.958893299102783, -0.49639859795570374, -0.19390475749969482, 1.3106307983398438, -0.1179487481713295, 0.3013553321361542, 0.09684452414512634]} +{"t": 12.7532, "q": [-0.3086591064929962, -0.011644618585705757, 0.007218231912702322, 0.6284378170967102, -0.34159427881240845, 0.007339858915656805, -0.3487045168876648, 0.006178533658385277, -0.003441717242822051, 0.6074478626251221, -0.3008675277233124, 0.001914078020490706, 0.003468500915914774, 0.008763251826167107, -0.049155011773109436, -2.8351082801818848, 0.5304337739944458, 0.21309150755405426, 1.236712098121643, 0.1661253273487091, 0.23575368523597717, -0.1591864675283432, -2.959096908569336, -0.49619486927986145, -0.19388079643249512, 1.3105469942092896, -0.11791279166936874, 0.3013553321361542, 0.09683254361152649]} +{"t": 12.77, "q": [-0.3086591064929962, -0.01166166365146637, 0.007271799258887768, 0.6283866763114929, -0.3416023552417755, 0.007354335393756628, -0.3486618995666504, 0.006195577792823315, -0.0034015413839370012, 0.6073541045188904, -0.30087172985076904, 0.0019213525811210275, 0.0033881496638059616, 0.008755647577345371, -0.0491599403321743, -2.8351082801818848, 0.5302900075912476, 0.2130315899848938, 1.236700177192688, 0.16613730788230896, 0.23575368523597717, -0.15919844806194305, -2.9591448307037354, -0.4959551692008972, -0.19390475749969482, 1.310534954071045, -0.1179247796535492, 0.3013553321361542, 0.09684452414512634]} +{"t": 12.7867, "q": [-0.30865058302879333, -0.011670185253024101, 0.007271799258887768, 0.6283355951309204, -0.34159427881240845, 0.007339858915656805, -0.34864485263824463, 0.006195577792823315, -0.0034015413839370012, 0.6072433590888977, -0.3008716404438019, 0.0019068659748882055, 0.003361365757882595, 0.008748042397201061, -0.04916486516594887, -2.835048198699951, 0.5302540063858032, 0.2130795270204544, 1.236700177192688, 0.16614930331707, 0.23574168980121613, -0.1591864675283432, -2.959228754043579, -0.4957274794578552, -0.19386881589889526, 1.3105109930038452, -0.11791279166936874, 0.3013073801994324, 0.09684452414512634]} +{"t": 12.8035, "q": [-0.30865058302879333, -0.011678706854581833, 0.007285191211849451, 0.6283185482025146, -0.34158605337142944, 0.007354471366852522, -0.3486022651195526, 0.006238188594579697, -0.0034149333368986845, 0.6071410775184631, -0.30086761713027954, 0.0019285825546830893, 0.003361365757882595, 0.008725211955606937, -0.04914988577365875, -2.8350841999053955, 0.5301581621170044, 0.2130555510520935, 1.2366881370544434, 0.16616128385066986, 0.23574168980121613, -0.1591864675283432, -2.9593605995178223, -0.49559566378593445, -0.19388079643249512, 1.310439109802246, -0.11791279166936874, 0.3013073801994324, 0.09684452414512634]} +{"t": 12.8203, "q": [-0.30864205956459045, -0.011670185253024101, 0.007298583164811134, 0.6282588839530945, -0.34159016609191895, 0.0073471651412546635, -0.34857669472694397, 0.006238188594579697, -0.0034015413839370012, 0.6070643663406372, -0.3008551597595215, 0.0019212455954402685, 0.003361365757882595, 0.008709991350769997, -0.04912998527288437, -2.835024356842041, 0.530194103717804, 0.21306754648685455, 1.2366881370544434, 0.16614930331707, 0.23572970926761627, -0.1591624915599823, -2.9594805240631104, -0.4954398572444916, -0.19388079643249512, 1.3104270696640015, -0.11791279166936874, 0.3013073801994324, 0.09684452414512634]} +{"t": 12.8371, "q": [-0.30864205956459045, -0.01166166365146637, 0.007298583164811134, 0.6282333135604858, -0.34159427881240845, 0.007339858915656805, -0.34854260087013245, 0.006238188594579697, -0.0034149333368986845, 0.6070302724838257, -0.3008427023887634, 0.001913908519782126, 0.003347973804920912, 0.008709993213415146, -0.049139901995658875, -2.835024356842041, 0.5301581621170044, 0.21306754648685455, 1.236700177192688, 0.16613730788230896, 0.23571772873401642, -0.1591624915599823, -2.9594805240631104, -0.4953919053077698, -0.19388079643249512, 1.3104151487350464, -0.11788882315158844, 0.3012953996658325, 0.09683254361152649]} +{"t": 12.8539, "q": [-0.30865058302879333, -0.011678706854581833, 0.007298583164811134, 0.6282077431678772, -0.3416023552417755, 0.007354335393756628, -0.34845736622810364, 0.006238188594579697, -0.0034283252898603678, 0.607004702091217, -0.30084285140037537, 0.0019428817322477698, 0.003361365757882595, 0.008702377788722515, -0.049115076661109924, -2.8350002765655518, 0.5302060842514038, 0.21304357051849365, 1.236640214920044, 0.16616128385066986, 0.23571772873401642, -0.15915051102638245, -2.9593846797943115, -0.4953919053077698, -0.19390475749969482, 1.3104270696640015, -0.11786485463380814, 0.30128341913223267, 0.09683254361152649]} +{"t": 12.8707, "q": [-0.30864205956459045, -0.011678706854581833, 0.007285191211849451, 0.6281736493110657, -0.3415941298007965, 0.007368948310613632, -0.348431795835495, 0.0062552327290177345, -0.0034283252898603678, 0.6069450378417969, -0.3008385896682739, 0.0019211205653846264, 0.0034283252898603678, 0.008725191466510296, -0.049100298434495926, -2.835024356842041, 0.5303139686584473, 0.21306754648685455, 1.2366522550582886, 0.16617326438426971, 0.23570574820041656, -0.15915051102638245, -2.959336757659912, -0.4953919053077698, -0.19388079643249512, 1.3104270696640015, -0.11788882315158844, 0.3012714385986328, 0.09682055562734604]} +{"t": 12.8874, "q": [-0.30865058302879333, -0.011687229387462139, 0.007271799258887768, 0.6281736493110657, -0.34159427881240845, 0.007339858915656805, -0.3484233021736145, 0.006246710661798716, -0.003441717242822051, 0.6069109439849854, -0.3008263111114502, 0.0019427567021921277, 0.003468500915914774, 0.008687160909175873, -0.04911500960588455, -2.8349764347076416, 0.530421793460846, 0.21311548352241516, 1.236640214920044, 0.16617326438426971, 0.23570574820041656, -0.1591385304927826, -2.9593007564544678, -0.4953919053077698, -0.19394071400165558, 1.3104151487350464, -0.11786485463380814, 0.30125945806503296, 0.09683254361152649]} +{"t": 12.9041, "q": [-0.3086591064929962, -0.011678706854581833, 0.007271799258887768, 0.6281736493110657, -0.34159427881240845, 0.007339858915656805, -0.348389208316803, 0.006246710661798716, -0.0034551091957837343, 0.6069194674491882, -0.3008263111114502, 0.0019427567021921277, 0.003562244353815913, 0.008694756776094437, -0.049090247601270676, -2.8349883556365967, 0.5305057168006897, 0.21309150755405426, 1.2366522550582886, 0.16620922088623047, 0.23572970926761627, -0.15915051102638245, -2.959204912185669, -0.4953919053077698, -0.19400063157081604, 1.3104151487350464, -0.11785287410020828, 0.30128341913223267, 0.09680857509374619]} +{"t": 12.921, "q": [-0.3086164891719818, -0.011678706854581833, 0.0072584073059260845, 0.6281310319900513, -0.3415861129760742, 0.007339935749769211, -0.3483721613883972, 0.006246710661798716, -0.0034952848218381405, 0.6069024205207825, -0.30081382393836975, 0.001935419742949307, 0.003589028026908636, 0.008679553866386414, -0.04911001771688461, -2.8349404335021973, 0.5305057168006897, 0.21312746405601501, 1.2366522550582886, 0.16620922088623047, 0.23570574820041656, -0.1591385304927826, -2.9591927528381348, -0.4953919053077698, -0.19400063157081604, 1.310439109802246, -0.11785287410020828, 0.3012474775314331, 0.09680857509374619]} +{"t": 12.9378, "q": [-0.3085823953151703, -0.011670185253024101, 0.0072584073059260845, 0.6280969381332397, -0.34158605337142944, 0.007354471366852522, -0.34832102060317993, 0.0062637547962367535, -0.0034952848218381405, 0.6068939566612244, -0.3008221983909607, 0.0019499687477946281, 0.003562244353815913, 0.008656732738018036, -0.04911487549543381, -2.8349642753601074, 0.5305416584014893, 0.2131034880876541, 1.2366162538528442, 0.16620922088623047, 0.23571772873401642, -0.1591385304927826, -2.9591329097747803, -0.4953919053077698, -0.1939886510372162, 1.310439109802246, -0.11782890558242798, 0.3012714385986328, 0.09682055562734604]} +{"t": 12.9546, "q": [-0.308531254529953, -0.011678706854581833, 0.007231623865664005, 0.6281139850616455, -0.3415861129760742, 0.007339935749769211, -0.34826987981796265, 0.006238188594579697, -0.0035220684949308634, 0.6069279909133911, -0.30081382393836975, 0.001935419742949307, 0.0035354604478925467, 0.008687159046530724, -0.049105092883110046, -2.8350002765655518, 0.5305057168006897, 0.21312746405601501, 1.236640214920044, 0.16618524491786957, 0.23570574820041656, -0.15912654995918274, -2.9591448307037354, -0.4953320026397705, -0.19400063157081604, 1.3104749917984009, -0.11782890558242798, 0.30128341913223267, 0.09683254361152649]} +{"t": 12.9715, "q": [-0.3085227310657501, -0.011678706854581833, 0.007204839959740639, 0.6280713677406311, -0.3415820598602295, 0.007332706358283758, -0.3482528328895569, 0.006246710661798716, -0.0035220684949308634, 0.6068939566612244, -0.30080562829971313, 0.0019498617621138692, 0.003589028026908636, 0.008656732738018036, -0.04911487549543381, -2.8349404335021973, 0.5305057168006897, 0.21306754648685455, 1.2366281747817993, 0.16618524491786957, 0.23571772873401642, -0.1591145545244217, -2.9591689109802246, -0.49527207016944885, -0.19400063157081604, 1.3104510307312012, -0.11781691759824753, 0.3012714385986328, 0.09682055562734604]} +{"t": 12.9883, "q": [-0.30850571393966675, -0.011678706854581833, 0.007204839959740639, 0.6280884146690369, -0.3415820002555847, 0.007347241975367069, -0.3482358157634735, 0.006246710661798716, -0.0035220684949308634, 0.6068854331970215, -0.300813764333725, 0.001920933136716485, 0.0036425956059247255, 0.008656739257276058, -0.04912479594349861, -2.8349523544311523, 0.5304457545280457, 0.2131034880876541, 1.236640214920044, 0.16617326438426971, 0.23570574820041656, -0.15907861292362213, -2.9591329097747803, -0.4952121675014496, -0.1940126270055771, 1.3104749917984009, -0.11782890558242798, 0.3012714385986328, 0.09680857509374619]} +{"t": 13.005, "q": [-0.3084801435470581, -0.01166166365146637, 0.007218231912702322, 0.6280713677406311, -0.34158211946487427, 0.00731817027553916, -0.3481420576572418, 0.006246710661798716, -0.0035220684949308634, 0.6068939566612244, -0.30080553889274597, 0.0019353751558810472, 0.0036024199798703194, 0.008664353750646114, -0.049139704555273056, -2.834916353225708, 0.5304457545280457, 0.21311548352241516, 1.2366762161254883, 0.16618524491786957, 0.23571772873401642, -0.15907861292362213, -2.959120988845825, -0.49515223503112793, -0.1940126270055771, 1.3104749917984009, -0.11780493706464767, 0.30125945806503296, 0.09680857509374619]} +{"t": 13.0217, "q": [-0.30837786197662354, -0.011670185253024101, 0.007231623865664005, 0.628079891204834, -0.3415820002555847, 0.007347241975367069, -0.34809091687202454, 0.006238188594579697, -0.0035086767747998238, 0.6068939566612244, -0.30080145597457886, 0.0019425872014835477, 0.003562244353815913, 0.008694772608578205, -0.04912000149488449, -2.8348803520202637, 0.530421793460846, 0.2131034880876541, 1.2366281747817993, 0.16617326438426971, 0.23570574820041656, -0.15906661748886108, -2.9591808319091797, -0.49515223503112793, -0.19407254457473755, 1.3104510307312012, -0.11782890558242798, 0.30123549699783325, 0.09678460657596588]} +{"t": 13.0385, "q": [-0.308343768119812, -0.011670185253024101, 0.007231623865664005, 0.6280713677406311, -0.34157794713974, 0.007340012583881617, -0.348056823015213, 0.006238188594579697, -0.0035220684949308634, 0.6068683862686157, -0.3007889688014984, 0.001935232081450522, 0.0035354604478925467, 0.008709991350769997, -0.04912998527288437, -2.8348445892333984, 0.5303978323936462, 0.2131034880876541, 1.236640214920044, 0.16616128385066986, 0.23571772873401642, -0.15905463695526123, -2.9591689109802246, -0.4951402544975281, -0.1940365880727768, 1.3104749917984009, -0.11779294908046722, 0.30125945806503296, 0.09678460657596588]} +{"t": 13.0552, "q": [-0.30826708674430847, -0.011670185253024101, 0.007271799258887768, 0.6280628442764282, -0.34157794713974, 0.007340012583881617, -0.348014235496521, 0.006238188594579697, -0.0035086767747998238, 0.6068598628044128, -0.3007889688014984, 0.001935232081450522, 0.003575636073946953, 0.00870238896459341, -0.04914483055472374, -2.8347606658935547, 0.5304098129272461, 0.2131034880876541, 1.2366641759872437, 0.16617326438426971, 0.23571772873401642, -0.15905463695526123, -2.9591569900512695, -0.4951402544975281, -0.19407254457473755, 1.3105109930038452, -0.11778096854686737, 0.30123549699783325, 0.09678460657596588]} +{"t": 13.072, "q": [-0.30826708674430847, -0.011687229387462139, 0.007271799258887768, 0.6280543208122253, -0.34157794713974, 0.007340012583881617, -0.348014235496521, 0.006246710661798716, -0.0034952848218381405, 0.6068683862686157, -0.30077651143074036, 0.0019278950057923794, 0.00354885240085423, 0.008702379651367664, -0.04912499338388443, -2.834784507751465, 0.530421793460846, 0.21306754648685455, 1.2366522550582886, 0.16616128385066986, 0.23571772873401642, -0.15904265642166138, -2.959216833114624, -0.4951402544975281, -0.1940845251083374, 1.3104989528656006, -0.11776898056268692, 0.3012474775314331, 0.09678460657596588]} +{"t": 13.0889, "q": [-0.3082500398159027, -0.011678706854581833, 0.007271799258887768, 0.6280117034912109, -0.3415820598602295, 0.007332706358283758, -0.34799718856811523, 0.0062637547962367535, -0.0034952848218381405, 0.6068428158760071, -0.3007848858833313, 0.0019424441270530224, 0.003562244353815913, 0.008679565042257309, -0.04913977161049843, -2.8347725868225098, 0.5304457545280457, 0.2131034880876541, 1.2366641759872437, 0.16617326438426971, 0.23572970926761627, -0.15904265642166138, -2.9591808319091797, -0.4951402544975281, -0.19409650564193726, 1.3105229139328003, -0.11774501204490662, 0.3012714385986328, 0.09677261859178543]} +{"t": 13.1057, "q": [-0.30824151635169983, -0.011678706854581833, 0.007271799258887768, 0.6279435753822327, -0.3415861129760742, 0.007339935749769211, -0.34799718856811523, 0.006229666527360678, -0.0034952848218381405, 0.606774628162384, -0.30077242851257324, 0.0019351070513948798, 0.003575636073946953, 0.008717595599591732, -0.0491250604391098, -2.8347725868225098, 0.5305057168006897, 0.2131034880876541, 1.2366281747817993, 0.16617326438426971, 0.23570574820041656, -0.15904265642166138, -2.959108829498291, -0.4951402544975281, -0.1940845251083374, 1.3105109930038452, -0.11778096854686737, 0.30125945806503296, 0.09676063805818558]} +{"t": 13.1224, "q": [-0.30819037556648254, -0.011670185253024101, 0.0072584073059260845, 0.6279009580612183, -0.34157800674438477, 0.0073254769667983055, -0.3479801416397095, 0.006238188594579697, -0.003481892868876457, 0.6067320108413696, -0.30076831579208374, 0.0019423190969973803, 0.003562244353815913, 0.008740430697798729, -0.04915987327694893, -2.834784507751465, 0.5305176973342896, 0.21311548352241516, 1.2366162538528442, 0.1661013662815094, 0.23570574820041656, -0.15905463695526123, -2.9591689109802246, -0.49515223503112793, -0.19414444267749786, 1.3105109930038452, -0.11775700002908707, 0.30128341913223267, 0.09676063805818558]} +{"t": 13.1392, "q": [-0.30819037556648254, -0.011678706854581833, 0.007271799258887768, 0.6278839111328125, -0.3415820598602295, 0.007332706358283758, -0.3479716181755066, 0.006246710661798716, -0.003481892868876457, 0.6066808700561523, -0.30076003074645996, 0.0019422565819695592, 0.003589028026908636, 0.00872521847486496, -0.049159806221723557, -2.8347606658935547, 0.53048175573349, 0.21311548352241516, 1.2366162538528442, 0.16604143381118774, 0.23570574820041656, -0.15904265642166138, -2.9591448307037354, -0.4951642155647278, -0.19414444267749786, 1.3104870319366455, -0.11776898056268692, 0.3012474775314331, 0.09676063805818558]} +{"t": 13.1559, "q": [-0.3081988990306854, -0.011678706854581833, 0.007245015352964401, 0.6278583407402039, -0.34158211946487427, 0.00731817027553916, -0.34795457124710083, 0.006221144460141659, -0.0034952848218381405, 0.6066126823425293, -0.30074355006217957, 0.0019566360861063004, 0.0036158119328320026, 0.008732817135751247, -0.049144960939884186, -2.8347487449645996, 0.53048175573349, 0.21313944458961487, 1.2366162538528442, 0.1661013662815094, 0.23571772873401642, -0.15904265642166138, -2.9591329097747803, -0.49515223503112793, -0.19414444267749786, 1.3105109930038452, -0.11774501204490662, 0.30125945806503296, 0.09673666954040527]} +{"t": 13.1726, "q": [-0.30818185210227966, -0.011678706854581833, 0.007245015352964401, 0.6278242468833923, -0.34157389402389526, 0.007332783192396164, -0.3479119539260864, 0.006238188594579697, -0.0035086767747998238, 0.6065359711647034, -0.30074355006217957, 0.0019566360861063004, 0.0036024199798703194, 0.008732832968235016, -0.0491747185587883, -2.834808588027954, 0.5303858518600464, 0.2130555510520935, 1.2366281747817993, 0.1661253273487091, 0.23570574820041656, -0.15905463695526123, -2.959120988845825, -0.4951402544975281, -0.19414444267749786, 1.3105229139328003, -0.11774501204490662, 0.30123549699783325, 0.09672468155622482]} +{"t": 13.1893, "q": [-0.3081733286380768, -0.01166166365146637, 0.0071914480067789555, 0.6277816295623779, -0.34158211946487427, 0.00731817027553916, -0.34784379601478577, 0.006246710661798716, -0.0035354604478925467, 0.6064252257347107, -0.30072280764579773, 0.0019492185674607754, 0.0036158119328320026, 0.00874042883515358, -0.04914995655417442, -2.834808588027954, 0.5303499102592468, 0.2130315899848938, 1.2366281747817993, 0.1661013662815094, 0.23569375276565552, -0.15904265642166138, -2.9591689109802246, -0.4951402544975281, -0.19418039917945862, 1.3104630708694458, -0.11776898056268692, 0.3012474775314331, 0.09674865007400513]} +{"t": 13.2061, "q": [-0.308113694190979, -0.01166166365146637, 0.0071914480067789555, 0.6276537775993347, -0.3415699303150177, 0.0073110181838274, -0.3478352725505829, 0.006229666527360678, -0.0035354604478925467, 0.6063570380210876, -0.30069780349731445, 0.0019200579263269901, 0.003562244353815913, 0.008748042397201061, -0.04916486516594887, -2.834784507751465, 0.5303019881248474, 0.2130315899848938, 1.2366162538528442, 0.16613730788230896, 0.23571772873401642, -0.15901868045330048, -2.9591569900512695, -0.4950803220272064, -0.194132462143898, 1.3105109930038452, -0.11774501204490662, 0.3012474775314331, 0.09673666954040527]} +{"t": 13.2228, "q": [-0.3080710768699646, -0.01166166365146637, 0.007178056053817272, 0.6276196837425232, -0.34156593680381775, 0.0072892350144684315, -0.3477074205875397, 0.006246710661798716, -0.003562244353815913, 0.6062036156654358, -0.3006812334060669, 0.001919932896271348, 0.003575636073946953, 0.008748042397201061, -0.04916486516594887, -2.834808588027954, 0.5303019881248474, 0.21306754648685455, 1.2366162538528442, 0.16613730788230896, 0.23571772873401642, -0.15903067588806152, -2.9590609073638916, -0.49502041935920715, -0.194132462143898, 1.3104749917984009, -0.11776898056268692, 0.30123549699783325, 0.09673666954040527]} +{"t": 13.2396, "q": [-0.30800288915634155, -0.01166166365146637, 0.0071914480067789555, 0.627543032169342, -0.34156593680381775, 0.0072892350144684315, -0.34763073921203613, 0.006246710661798716, -0.00354885240085423, 0.6060843467712402, -0.30065637826919556, 0.001919745234772563, 0.003575636073946953, 0.008748051710426807, -0.04918470233678818, -2.8348565101623535, 0.5302900075912476, 0.21304357051849365, 1.2365683317184448, 0.1661013662815094, 0.23570574820041656, -0.15903067588806152, -2.959120988845825, -0.4949844479560852, -0.19416841864585876, 1.3104989528656006, -0.11772104352712631, 0.301223486661911, 0.09672468155622482]} +{"t": 13.2565, "q": [-0.3079858422279358, -0.011670185253024101, 0.007164664100855589, 0.627474844455719, -0.3415577709674835, 0.007289311848580837, -0.3475455045700073, 0.006238188594579697, -0.003589028026908636, 0.605956494808197, -0.300639808177948, 0.0019196202047169209, 0.0036292036529630423, 0.008755655959248543, -0.04917977750301361, -2.8348324298858643, 0.5302900075912476, 0.2130555510520935, 1.2365204095840454, 0.16613730788230896, 0.23569375276565552, -0.15903067588806152, -2.959108829498291, -0.49494850635528564, -0.19416841864585876, 1.3104989528656006, -0.11772104352712631, 0.3012474775314331, 0.09670071303844452]} +{"t": 13.2732, "q": [-0.307926207780838, -0.011644618585705757, 0.007124488707631826, 0.6274407505989075, -0.341553658246994, 0.007296618074178696, -0.3474262058734894, 0.006280798930674791, -0.0036292036529630423, 0.6057519912719727, -0.3005901873111725, 0.0019337317207828164, 0.003575636073946953, 0.008763263002038002, -0.04918476566672325, -2.8348684310913086, 0.5302659869194031, 0.21311548352241516, 1.2365083694458008, 0.16613730788230896, 0.23569375276565552, -0.15901868045330048, -2.9591329097747803, -0.49492454528808594, -0.19414444267749786, 1.3104989528656006, -0.11773303151130676, 0.3012474775314331, 0.09671270102262497]} +{"t": 13.2899, "q": [-0.3077983558177948, -0.011644618585705757, 0.007124488707631826, 0.6272873282432556, -0.3415495455265045, 0.007303924765437841, -0.3472898602485657, 0.00628932099789381, -0.003655987558886409, 0.6055389046669006, -0.3005155920982361, 0.0019186825957149267, 0.0036158119328320026, 0.008732832968235016, -0.0491747185587883, -2.8349404335021973, 0.5301581621170044, 0.21306754648685455, 1.2364364862442017, 0.1661013662815094, 0.23568177223205566, -0.15901868045330048, -2.959108829498291, -0.49492454528808594, -0.19416841864585876, 1.3104870319366455, -0.11772104352712631, 0.30123549699783325, 0.09670071303844452]} +{"t": 13.3067, "q": [-0.3076620101928711, -0.011619052849709988, 0.007084312848746777, 0.6271595358848572, -0.34154969453811646, 0.007274853065609932, -0.3470597565174103, 0.006331931799650192, -0.0036827712319791317, 0.6052747368812561, -0.30046170949935913, 0.001911032828502357, 0.00354885240085423, 0.008748051710426807, -0.04918470233678818, -2.8349404335021973, 0.5301342010498047, 0.21301960945129395, 1.2364364862442017, 0.16611334681510925, 0.2356697916984558, -0.15903067588806152, -2.959108829498291, -0.49490055441856384, -0.19416841864585876, 1.3104870319366455, -0.11773303151130676, 0.30123549699783325, 0.09671270102262497]} +{"t": 13.3234, "q": [-0.307483047246933, -0.01160200871527195, 0.00705752894282341, 0.6269890666007996, -0.34154558181762695, 0.00728215929120779, -0.34680408239364624, 0.006374542135745287, -0.0037095551379024982, 0.6049679517745972, -0.30039969086647034, 0.001932293875142932, 0.003562244353815913, 0.008763263002038002, -0.04918476566672325, -2.834904432296753, 0.5300622582435608, 0.2130795270204544, 1.236412525177002, 0.1661013662815094, 0.23568177223205566, -0.15903067588806152, -2.959108829498291, -0.494888573884964, -0.19418039917945862, 1.3104749917984009, -0.11774501204490662, 0.3012474775314331, 0.09667674452066422]} +{"t": 13.3402, "q": [-0.3072103261947632, -0.011576442047953606, 0.0070307450369000435, 0.6267930865287781, -0.34154969453811646, 0.007274853065609932, -0.3464546799659729, 0.006442719139158726, -0.0037497307639569044, 0.6045247912406921, -0.3002835810184479, 0.0019024275243282318, 0.003589028026908636, 0.008763261139392853, -0.049174848943948746, -2.834904432296753, 0.5300143361091614, 0.2130555510520935, 1.236424446105957, 0.1661013662815094, 0.2356697916984558, -0.15903067588806152, -2.959084987640381, -0.4949125349521637, -0.19418039917945862, 1.3104870319366455, -0.11775700002908707, 0.3012474775314331, 0.09664079546928406]} +{"t": 13.3569, "q": [-0.3070569336414337, -0.011491220444440842, 0.006910218391567469, 0.6266652345657349, -0.34154969453811646, 0.007274853065609932, -0.34606266021728516, 0.0065194182097911835, -0.0038568659219890833, 0.603945255279541, -0.30011340975761414, 0.00183593831025064, 0.003562244353815913, 0.008793700486421585, -0.04920473322272301, -2.834892511367798, 0.5299903750419617, 0.21304357051849365, 1.2364004850387573, 0.16606540977954865, 0.2356697916984558, -0.15904265642166138, -2.959108829498291, -0.494888573884964, -0.19414444267749786, 1.3104870319366455, -0.11774501204490662, 0.30123549699783325, 0.09662880748510361]} +{"t": 13.3737, "q": [-0.3069291114807129, -0.011346344836056232, 0.006749515421688557, 0.626579999923706, -0.3415415287017822, 0.007274929899722338, -0.34566211700439453, 0.006672816351056099, -0.003977392800152302, 0.6033572554588318, -0.2999228537082672, 0.0018200138583779335, 0.00354885240085423, 0.00886217039078474, -0.04921991005539894, -2.8348565101623535, 0.529966413974762, 0.21306754648685455, 1.236412525177002, 0.16608937084674835, 0.2356458157300949, -0.15903067588806152, -2.959120988845825, -0.49490055441856384, -0.19416841864585876, 1.3105109930038452, -0.11775700002908707, 0.3012474775314331, 0.09661682695150375]} +{"t": 13.3904, "q": [-0.3066904842853546, -0.011312256567180157, 0.006669164169579744, 0.6263925433158875, -0.34153756499290466, 0.007253164891153574, -0.34529566764831543, 0.006732471287250519, -0.004057744517922401, 0.6029055714607239, -0.299765408039093, 0.0018043395830318332, 0.0035220684949308634, 0.00886217039078474, -0.04921991005539894, -2.8348445892333984, 0.529966413974762, 0.21312746405601501, 1.2364004850387573, 0.1660773903131485, 0.23563383519649506, -0.15903067588806152, -2.9591927528381348, -0.49490055441856384, -0.19418039917945862, 1.3104749917984009, -0.11774501204490662, 0.30123549699783325, 0.09662880748510361]} +{"t": 13.4073, "q": [-0.30652856826782227, -0.011278167366981506, 0.006642380263656378, 0.626213550567627, -0.34153756499290466, 0.007253164891153574, -0.3450911343097687, 0.006758037488907576, -0.004071136470884085, 0.6026158332824707, -0.29971152544021606, 0.0017966899322345853, 0.0034952848218381405, 0.008854566141963005, -0.04922483488917351, -2.8348445892333984, 0.5299184918403625, 0.21312746405601501, 1.2364004850387573, 0.1660534292459488, 0.23563383519649506, -0.15903067588806152, -2.959108829498291, -0.4949125349521637, -0.19416841864585876, 1.3104749917984009, -0.11774501204490662, 0.301223486661911, 0.09661682695150375]} +{"t": 13.424, "q": [-0.30629846453666687, -0.011261124163866043, 0.006615596357733011, 0.6261028051376343, -0.3415415287017822, 0.007274929899722338, -0.34478434920310974, 0.0067665595561265945, -0.004097919911146164, 0.6023856997489929, -0.2997032403945923, 0.0017966274172067642, 0.0034952848218381405, 0.008839347399771214, -0.04921485111117363, -2.8348445892333984, 0.5299304723739624, 0.21311548352241516, 1.2363885641098022, 0.1660294532775879, 0.2356458157300949, -0.15901868045330048, -2.9591808319091797, -0.4948646128177643, -0.19416841864585876, 1.3104630708694458, -0.11774501204490662, 0.301223486661911, 0.09661682695150375]} +{"t": 13.4407, "q": [-0.3060513436794281, -0.011286689899861813, 0.006602204404771328, 0.6259579062461853, -0.34154564142227173, 0.007267623674124479, -0.3444775342941284, 0.006749515421688557, -0.004084527958184481, 0.6022749543190002, -0.2997073531150818, 0.0017894153716042638, 0.0034551091957837343, 0.008846952579915524, -0.04920992627739906, -2.834820508956909, 0.5299065113067627, 0.2131034880876541, 1.2363646030426025, 0.1660534292459488, 0.23560987412929535, -0.15903067588806152, -2.959204912185669, -0.4948046803474426, -0.19414444267749786, 1.3104510307312012, -0.11776898056268692, 0.3011995255947113, 0.09661682695150375]} +{"t": 13.4576, "q": [-0.3056422770023346, -0.011278167366981506, 0.0066289883106946945, 0.6258044838905334, -0.34153345227241516, 0.007260471116751432, -0.34400883316993713, 0.0067750816233456135, -0.004071136470884085, 0.6021130084991455, -0.2997032403945923, 0.0017966274172067642, 0.003481892868876457, 0.008801305666565895, -0.04919980838894844, -2.8347606658935547, 0.5299184918403625, 0.21311548352241516, 1.2363765239715576, 0.16608937084674835, 0.23560987412929535, -0.15904265642166138, -2.959204912185669, -0.49467286467552185, -0.19418039917945862, 1.3104510307312012, -0.11774501204490662, 0.301223486661911, 0.09661682695150375]} +{"t": 13.4743, "q": [-0.30498605966567993, -0.011295212432742119, 0.006642380263656378, 0.6255999803543091, -0.3415415287017822, 0.007274929899722338, -0.34326741099357605, 0.006758037488907576, -0.004084527958184481, 0.6018658876419067, -0.29971152544021606, 0.0017966899322345853, 0.0035086767747998238, 0.008679547347128391, -0.04910009726881981, -2.834700584411621, 0.5299783945083618, 0.2131034880876541, 1.2363765239715576, 0.16606540977954865, 0.23560987412929535, -0.15903067588806152, -2.9592528343200684, -0.4945050776004791, -0.19416841864585876, 1.3104510307312012, -0.11774501204490662, 0.30118754506111145, 0.09661682695150375]} +{"t": 13.491, "q": [-0.30400601029396057, -0.01136338897049427, 0.00672273151576519, 0.6251142024993896, -0.34154969453811646, 0.007274853065609932, -0.3423811197280884, 0.006715427152812481, -0.003964001312851906, 0.6016613245010376, -0.29971569776535034, 0.0018039644928649068, 0.0035220684949308634, 0.008519764989614487, -0.04902501776814461, -2.834460973739624, 0.5299903750419617, 0.21306754648685455, 1.2364004850387573, 0.16606540977954865, 0.23560987412929535, -0.15904265642166138, -2.9591569900512695, -0.49434930086135864, -0.194132462143898, 1.310439109802246, -0.11774501204490662, 0.3011995255947113, 0.09661682695150375]} +{"t": 13.5078, "q": [-0.3026595413684845, -0.011354867368936539, 0.006829866673797369, 0.6245432496070862, -0.34154975414276123, 0.007260317448526621, -0.3410772383213043, 0.006715427152812481, -0.0038702578749507666, 0.6013460159301758, -0.2997199594974518, 0.0018257256597280502, 0.0034952848218381405, 0.008321922272443771, -0.0488952212035656, -2.8341615200042725, 0.5300263166427612, 0.2130795270204544, 1.2364604473114014, 0.16604143381118774, 0.2356218546628952, -0.15903067588806152, -2.9591927528381348, -0.49419349431991577, -0.19414444267749786, 1.3104510307312012, -0.11772104352712631, 0.30121150612831116, 0.09661682695150375]} +{"t": 13.5245, "q": [-0.3017050623893738, -0.011448610574007034, 0.00709770480170846, 0.623895525932312, -0.34155380725860596, 0.0072675468400120735, -0.34050625562667847, 0.006672816351056099, -0.0036024199798703194, 0.6010903716087341, -0.2997449040412903, 0.0018404177390038967, 0.0035086767747998238, 0.008359971456229687, -0.04892018437385559, -2.8333704471588135, 0.5301342010498047, 0.21309150755405426, 1.2365562915802002, 0.16604143381118774, 0.23563383519649506, -0.15903067588806152, -2.9591569900512695, -0.4939897656440735, -0.19416841864585876, 1.3104630708694458, -0.11772104352712631, 0.3012474775314331, 0.0966048389673233]} +{"t": 13.5414, "q": [-0.30117666721343994, -0.011448610574007034, 0.007365542463958263, 0.6236398816108704, -0.341561883687973, 0.007282005622982979, -0.3401738703250885, 0.006655772216618061, -0.003441717242822051, 0.6010733246803284, -0.29975730180740356, 0.001833250280469656, 0.003468500915914774, 0.008649119175970554, -0.04909996688365936, -2.8328311443328857, 0.530194103717804, 0.21309150755405426, 1.2365802526474, 0.16606540977954865, 0.23563383519649506, -0.15903067588806152, -2.9591329097747803, -0.4939058721065521, -0.19416841864585876, 1.3105109930038452, -0.11773303151130676, 0.301223486661911, 0.09661682695150375]} +{"t": 13.5583, "q": [-0.3008272647857666, -0.011457132175564766, 0.0074191102758049965, 0.6236398816108704, -0.34156593680381775, 0.0072892350144684315, -0.33986708521842957, 0.006638728082180023, -0.003441717242822051, 0.6010903716087341, -0.2997613847255707, 0.0018260382348671556, 0.003441717242822051, 0.0086643286049366, -0.04909011349081993, -2.8326873779296875, 0.5302300453186035, 0.21311548352241516, 1.2365204095840454, 0.16606540977954865, 0.2356218546628952, -0.15901868045330048, -2.9590609073638916, -0.49389389157295227, -0.19418039917945862, 1.3104989528656006, -0.11774501204490662, 0.301223486661911, 0.0966048389673233]} +{"t": 13.575, "q": [-0.30080169439315796, -0.011465654708445072, 0.0074191102758049965, 0.6236569285392761, -0.341553658246994, 0.007296618074178696, -0.33983299136161804, 0.006638728082180023, -0.0034551091957837343, 0.6011329889297485, -0.29976555705070496, 0.001833312795497477, 0.0034551091957837343, 0.008694772608578205, -0.04912000149488449, -2.8326992988586426, 0.5302060842514038, 0.21312746405601501, 1.2365083694458008, 0.1660534292459488, 0.2356218546628952, -0.15903067588806152, -2.959108829498291, -0.49386993050575256, -0.19416841864585876, 1.3105229139328003, -0.11775700002908707, 0.30121150612831116, 0.09661682695150375]} +{"t": 13.5917, "q": [-0.3008357882499695, -0.011474177241325378, 0.007378934416919947, 0.6236910223960876, -0.3415577709674835, 0.007289311848580837, -0.3398500382900238, 0.006630206014961004, -0.0034952848218381405, 0.6011926531791687, -0.29975712299346924, 0.001804277068004012, 0.0036024199798703194, 0.008656712248921394, -0.04906528815627098, -2.8327832221984863, 0.530194103717804, 0.21313944458961487, 1.236484408378601, 0.16606540977954865, 0.2356218546628952, -0.15904265642166138, -2.9591329097747803, -0.49386993050575256, -0.19416841864585876, 1.3104989528656006, -0.11775700002908707, 0.301223486661911, 0.0966048389673233]} +{"t": 13.6085, "q": [-0.3008357882499695, -0.011457132175564766, 0.007378934416919947, 0.6236995458602905, -0.34155380725860596, 0.0072675468400120735, -0.33991822600364685, 0.006638728082180023, -0.0035086767747998238, 0.6012182235717773, -0.2997612953186035, 0.0018115516286343336, 0.003669379511848092, 0.00860346294939518, -0.04907001182436943, -2.832747220993042, 0.5301581621170044, 0.21312746405601501, 1.2364004850387573, 0.1660534292459488, 0.23560987412929535, -0.15906661748886108, -2.9591329097747803, -0.4938099980354309, -0.194132462143898, 1.3104749917984009, -0.11775700002908707, 0.30121150612831116, 0.0966048389673233]} +{"t": 13.6252, "q": [-0.300869882106781, -0.011448610574007034, 0.007338759023696184, 0.6238273978233337, -0.34154558181762695, 0.00728215929120779, -0.33991822600364685, 0.006630206014961004, -0.00354885240085423, 0.6012693047523499, -0.29975295066833496, 0.0017970025073736906, 0.003575636073946953, 0.008588260039687157, -0.049089785665273666, -2.832723379135132, 0.5300622582435608, 0.21311548352241516, 1.236484408378601, 0.16606540977954865, 0.23560987412929535, -0.15903067588806152, -2.959096908569336, -0.49377405643463135, -0.19414444267749786, 1.3104989528656006, -0.11776898056268692, 0.3011995255947113, 0.0966048389673233]} +{"t": 13.642, "q": [-0.30084431171417236, -0.011448610574007034, 0.007338759023696184, 0.6238784790039062, -0.34154969453811646, 0.007274853065609932, -0.33996933698654175, 0.006638728082180023, -0.0035086767747998238, 0.6013971567153931, -0.29975301027297974, 0.0018114891136065125, 0.0035086767747998238, 0.008618688210844994, -0.04908991605043411, -2.8325674533843994, 0.5300023555755615, 0.21311548352241516, 1.2364485263824463, 0.1660534292459488, 0.2356218546628952, -0.15903067588806152, -2.9590609073638916, -0.49379801750183105, -0.19414444267749786, 1.3105229139328003, -0.11774501204490662, 0.30121150612831116, 0.09659285843372345]} +{"t": 13.6587, "q": [-0.30084431171417236, -0.011440088041126728, 0.007311975117772818, 0.6239466667175293, -0.34155380725860596, 0.0072675468400120735, -0.34000343084335327, 0.006647250149399042, -0.0035220684949308634, 0.6014397740364075, -0.2997613847255707, 0.0018260382348671556, 0.003441717242822051, 0.008649109862744808, -0.04908012971282005, -2.8324596881866455, 0.529966413974762, 0.21311548352241516, 1.2365083694458008, 0.16608937084674835, 0.23560987412929535, -0.15903067588806152, -2.959108829498291, -0.49377405643463135, -0.19414444267749786, 1.3104989528656006, -0.11773303151130676, 0.3012474775314331, 0.096580870449543]} +{"t": 13.6755, "q": [-0.300869882106781, -0.011414522305130959, 0.007285191211849451, 0.6240489482879639, -0.34154969453811646, 0.007274853065609932, -0.3399863839149475, 0.006655772216618061, -0.0035354604478925467, 0.6015250086784363, -0.2997613847255707, 0.0018260382348671556, 0.0034551091957837343, 0.008641504682600498, -0.04908505454659462, -2.8324477672576904, 0.5299544334411621, 0.21315142512321472, 1.2365083694458008, 0.16604143381118774, 0.23560987412929535, -0.15903067588806152, -2.959108829498291, -0.49379801750183105, -0.19414444267749786, 1.3104989528656006, -0.11774501204490662, 0.301223486661911, 0.09659285843372345]} +{"t": 13.6922, "q": [-0.30089545249938965, -0.011405999772250652, 0.0072584073059260845, 0.6241512298583984, -0.34155380725860596, 0.0072675468400120735, -0.34002047777175903, 0.006655772216618061, -0.00354885240085423, 0.601618766784668, -0.29975301027297974, 0.0018114891136065125, 0.003468500915914774, 0.008687159046530724, -0.049105092883110046, -2.8324356079101562, 0.529966413974762, 0.21309150755405426, 1.236484408378601, 0.16608937084674835, 0.2356218546628952, -0.15904265642166138, -2.959108829498291, -0.49379801750183105, -0.19416841864585876, 1.3105109930038452, -0.11773303151130676, 0.301223486661911, 0.096580870449543]} +{"t": 13.7089, "q": [-0.3009636402130127, -0.011414522305130959, 0.007204839959740639, 0.6243727803230286, -0.34154969453811646, 0.007274853065609932, -0.3400290012359619, 0.006689860485494137, -0.003562244353815913, 0.601703941822052, -0.2997612953186035, 0.0018115516286343336, 0.0035220684949308634, 0.008694772608578205, -0.04912000149488449, -2.8323516845703125, 0.5299783945083618, 0.21312746405601501, 1.2364604473114014, 0.16606540977954865, 0.23560987412929535, -0.15904265642166138, -2.959120988845825, -0.49379801750183105, -0.19418039917945862, 1.3104989528656006, -0.11775700002908707, 0.30121150612831116, 0.09659285843372345]} +{"t": 13.7257, "q": [-0.3009721636772156, -0.011414522305130959, 0.007218231912702322, 0.6245347261428833, -0.34154969453811646, 0.007274853065609932, -0.34006309509277344, 0.006689860485494137, -0.003575636073946953, 0.601772129535675, -0.29975301027297974, 0.0018114891136065125, 0.0035220684949308634, 0.008717606775462627, -0.04915481433272362, -2.8323638439178467, 0.5299903750419617, 0.21313944458961487, 1.2364964485168457, 0.16606540977954865, 0.23560987412929535, -0.15903067588806152, -2.959108829498291, -0.49379801750183105, -0.19418039917945862, 1.3104630708694458, -0.11774501204490662, 0.30121150612831116, 0.09656888991594315]} +{"t": 13.7424, "q": [-0.3010147511959076, -0.011397477239370346, 0.007164664100855589, 0.6247221827507019, -0.34154969453811646, 0.007274853065609932, -0.3400716185569763, 0.006681338418275118, -0.0036024199798703194, 0.6018914580345154, -0.29975301027297974, 0.0018114891136065125, 0.0035220684949308634, 0.008755647577345371, -0.0491599403321743, -2.8323638439178467, 0.5299903750419617, 0.2131034880876541, 1.236484408378601, 0.16606540977954865, 0.23560987412929535, -0.15903067588806152, -2.9591808319091797, -0.4938099980354309, -0.19416841864585876, 1.3104989528656006, -0.11774501204490662, 0.3011995255947113, 0.096580870449543]} +{"t": 13.7592, "q": [-0.3010658919811249, -0.011397477239370346, 0.007204839959740639, 0.6249778270721436, -0.341553658246994, 0.007296618074178696, -0.3400801420211792, 0.006672816351056099, -0.0036292036529630423, 0.6020022630691528, -0.29975712299346924, 0.001804277068004012, 0.003481892868876457, 0.008740437217056751, -0.049169789999723434, -2.8323278427124023, 0.5299783945083618, 0.21309150755405426, 1.236472487449646, 0.1660773903131485, 0.2355978786945343, -0.15903067588806152, -2.959108829498291, -0.4938099980354309, -0.19416841864585876, 1.3104989528656006, -0.11774501204490662, 0.30121150612831116, 0.09654492139816284]} +{"t": 13.7761, "q": [-0.30115965008735657, -0.011397477239370346, 0.007151272147893906, 0.6252420544624329, -0.3415577709674835, 0.007289311848580837, -0.3400886654853821, 0.006681338418275118, -0.0036292036529630423, 0.6020959615707397, -0.29975712299346924, 0.001804277068004012, 0.003481892868876457, 0.008763263002038002, -0.04918476566672325, -2.8323757648468018, 0.5299903750419617, 0.21311548352241516, 1.236412525177002, 0.16606540977954865, 0.2355978786945343, -0.15903067588806152, -2.959096908569336, -0.4938339591026306, -0.19418039917945862, 1.3104989528656006, -0.11773303151130676, 0.301223486661911, 0.09656888991594315]} +{"t": 13.793, "q": [-0.3013215661048889, -0.011388955637812614, 0.007084312848746777, 0.6256255507469177, -0.3415699899196625, 0.007296482101082802, -0.3400886654853821, 0.006681338418275118, -0.003669379511848092, 0.6022408604621887, -0.2997489273548126, 0.001818701159209013, 0.0035220684949308634, 0.008770876564085484, -0.049199678003787994, -2.8323516845703125, 0.5299783945083618, 0.21312746405601501, 1.2364364862442017, 0.1660534292459488, 0.23558589816093445, -0.15901868045330048, -2.959084987640381, -0.4938339591026306, -0.19416841864585876, 1.3104989528656006, -0.11772104352712631, 0.30121150612831116, 0.0965569019317627]} +{"t": 13.8098, "q": [-0.3014749586582184, -0.011397477239370346, 0.00705752894282341, 0.6259579062461853, -0.3415740430355072, 0.0073037114925682545, -0.3401653468608856, 0.006681338418275118, -0.0037095551379024982, 0.6023942232131958, -0.29975301027297974, 0.0018114891136065125, 0.0035220684949308634, 0.008755658753216267, -0.04918969050049782, -2.8323638439178467, 0.5299783945083618, 0.21309150755405426, 1.2364485263824463, 0.1660294532775879, 0.2355978786945343, -0.15903067588806152, -2.959108829498291, -0.4938099980354309, -0.19418039917945862, 1.3104989528656006, -0.11773303151130676, 0.30121150612831116, 0.09654492139816284]} +{"t": 13.8265, "q": [-0.30154314637184143, -0.011405999772250652, 0.0070307450369000435, 0.6263073086738586, -0.3415699303150177, 0.0073110181838274, -0.3401823937892914, 0.006698382552713156, -0.0037095551379024982, 0.602666974067688, -0.2997405529022217, 0.0018041521543636918, 0.00354885240085423, 0.008755647577345371, -0.0491599403321743, -2.8323397636413574, 0.5299304723739624, 0.21309150755405426, 1.236472487449646, 0.1660534292459488, 0.2356218546628952, -0.15903067588806152, -2.959108829498291, -0.4938099980354309, -0.19420437514781952, 1.3104989528656006, -0.11772104352712631, 0.30123549699783325, 0.0965569019317627]} +{"t": 13.8432, "q": [-0.3016453981399536, -0.011405999772250652, 0.00705752894282341, 0.6266481876373291, -0.34157800674438477, 0.0073254769667983055, -0.3402079641819, 0.006681338418275118, -0.003736338810995221, 0.6028885245323181, -0.29974475502967834, 0.0018114265985786915, 0.0034952848218381405, 0.008725211955606937, -0.04914988577365875, -2.832291841506958, 0.5299184918403625, 0.21306754648685455, 1.236472487449646, 0.16606540977954865, 0.23560987412929535, -0.15901868045330048, -2.9590609073638916, -0.4938099980354309, -0.19420437514781952, 1.3104989528656006, -0.11773303151130676, 0.30121150612831116, 0.09654492139816284]} +{"t": 13.86, "q": [-0.30171358585357666, -0.01142304390668869, 0.00705752894282341, 0.6269123554229736, -0.3415820598602295, 0.007332706358283758, -0.34024205803871155, 0.006681338418275118, -0.003736338810995221, 0.6030589938163757, -0.2997322678565979, 0.001804089406505227, 0.0034551091957837343, 0.008694774471223354, -0.049129918217659, -2.832184076309204, 0.5298705101013184, 0.2130555510520935, 1.236472487449646, 0.16606540977954865, 0.23560987412929535, -0.15903067588806152, -2.9591689109802246, -0.49382197856903076, -0.19418039917945862, 1.3104989528656006, -0.11773303151130676, 0.30121150612831116, 0.09653293341398239]} +{"t": 13.8768, "q": [-0.3018414080142975, -0.011397477239370346, 0.0070307450369000435, 0.6271851062774658, -0.3415820598602295, 0.007332706358283758, -0.3402676284313202, 0.006681338418275118, -0.003736338810995221, 0.6031697392463684, -0.29972824454307556, 0.0018258062191307545, 0.0034015413839370012, 0.008671967312693596, -0.0491546168923378, -2.832064151763916, 0.5298585295677185, 0.21306754648685455, 1.2365204095840454, 0.1660773903131485, 0.2355978786945343, -0.15901868045330048, -2.959012985229492, -0.4938099980354309, -0.19420437514781952, 1.3105229139328003, -0.11773303151130676, 0.3011995255947113, 0.09653293341398239]} +{"t": 13.8935, "q": [-0.3019351363182068, -0.01142304390668869, 0.0070307450369000435, 0.6274237036705017, -0.34159016609191895, 0.0073471651412546635, -0.34032729268074036, 0.006689860485494137, -0.0037497307639569044, 0.6033231616020203, -0.29972416162490845, 0.001833018264733255, 0.0034283252898603678, 0.008687176741659641, -0.04914476349949837, -2.8319203853607178, 0.5298824906349182, 0.21306754648685455, 1.2365083694458008, 0.1660773903131485, 0.23560987412929535, -0.15903067588806152, -2.9591329097747803, -0.4938099980354309, -0.19422833621501923, 1.3104989528656006, -0.11772104352712631, 0.30118754506111145, 0.09649698436260223]} +{"t": 13.9103, "q": [-0.30203741788864136, -0.011414522305130959, 0.006977177690714598, 0.6277390122413635, -0.34160640835762024, 0.007361564785242081, -0.34034430980682373, 0.006689860485494137, -0.0037497307639569044, 0.6034936308860779, -0.29971176385879517, 0.0018401497509330511, 0.0034551091957837343, 0.008694772608578205, -0.04912000149488449, -2.831812620162964, 0.5299065113067627, 0.21313944458961487, 1.2365204095840454, 0.1660534292459488, 0.23560987412929535, -0.15899471938610077, -2.959012985229492, -0.4938099980354309, -0.19421635568141937, 1.3105109930038452, -0.11769707500934601, 0.30118754506111145, 0.09650896489620209]} +{"t": 13.9271, "q": [-0.3021567165851593, -0.011431565508246422, 0.006963785737752914, 0.6279946565628052, -0.3416023552417755, 0.007354335393756628, -0.3404039740562439, 0.006689860485494137, -0.0037497307639569044, 0.603715181350708, -0.2997035086154938, 0.00184008723590523, 0.0034551091957837343, 0.008702386170625687, -0.049134913831949234, -2.8316566944122314, 0.5299065113067627, 0.21312746405601501, 1.2365323305130005, 0.16606540977954865, 0.2356218546628952, -0.15901868045330048, -2.9590370655059814, -0.49377405643463135, -0.19424031674861908, 1.3104989528656006, -0.11770906299352646, 0.30121150612831116, 0.09649698436260223]} +{"t": 13.9438, "q": [-0.30223342776298523, -0.011405999772250652, 0.006937001831829548, 0.6282418370246887, -0.3416227400302887, 0.007361392490565777, -0.3404551148414612, 0.006672816351056099, -0.0037497307639569044, 0.6038174629211426, -0.29970768094062805, 0.0018473617965355515, 0.003468500915914774, 0.008717598393559456, -0.04913497716188431, -2.8315846920013428, 0.5299184918403625, 0.21311548352241516, 1.2365204095840454, 0.16606540977954865, 0.23560987412929535, -0.15901868045330048, -2.959084987640381, -0.49377405643463135, -0.19420437514781952, 1.3104989528656006, -0.11770906299352646, 0.3011755645275116, 0.09648499637842178]} +{"t": 13.9606, "q": [-0.30231010913848877, -0.011388955637812614, 0.006910218391567469, 0.6284122467041016, -0.3416227400302887, 0.007361392490565777, -0.34046363830566406, 0.006681338418275118, -0.0037497307639569044, 0.6039196848869324, -0.29966625571250916, 0.0018470672657713294, 0.0035086767747998238, 0.008740421384572983, -0.04914003610610962, -2.8314170837402344, 0.5299304723739624, 0.2130795270204544, 1.2365562915802002, 0.1660773903131485, 0.2356218546628952, -0.15903067588806152, -2.9590489864349365, -0.49377405643463135, -0.19424031674861908, 1.3105109930038452, -0.11772104352712631, 0.301223486661911, 0.09647301584482193]} +{"t": 13.9773, "q": [-0.30236977338790894, -0.011397477239370346, 0.006843258626759052, 0.6285997629165649, -0.3416227400302887, 0.007361392490565777, -0.34050625562667847, 0.00666429428383708, -0.0037497307639569044, 0.6040560603141785, -0.29966217279434204, 0.0018542793113738298, 0.003481892868876457, 0.00872521847486496, -0.049159806221723557, -2.8313450813293457, 0.5299065113067627, 0.2130795270204544, 1.2365204095840454, 0.16606540977954865, 0.23560987412929535, -0.15903067588806152, -2.959096908569336, -0.49377405643463135, -0.19424031674861908, 1.3105229139328003, -0.11769707500934601, 0.30121150612831116, 0.09648499637842178]} +{"t": 13.9941, "q": [-0.3024720549583435, -0.011414522305130959, 0.006816474720835686, 0.6288895010948181, -0.3416227400302887, 0.007361392490565777, -0.34055736660957336, 0.006672816351056099, -0.0037497307639569044, 0.604235053062439, -0.29965800046920776, 0.0018470047507435083, 0.003481892868876457, 0.008763253688812256, -0.04916492849588394, -2.831165313720703, 0.5299065113067627, 0.2131034880876541, 1.2365204095840454, 0.16608937084674835, 0.2356218546628952, -0.15903067588806152, -2.959120988845825, -0.49375006556510925, -0.19426429271697998, 1.3105109930038452, -0.11770906299352646, 0.301223486661911, 0.09647301584482193]} +{"t": 14.0108, "q": [-0.3026595413684845, -0.011405999772250652, 0.006776299327611923, 0.6291366219520569, -0.3416267931461334, 0.007368622347712517, -0.34070226550102234, 0.006655772216618061, -0.003776514669880271, 0.6044139862060547, -0.29965388774871826, 0.0018542167963460088, 0.0035086767747998238, 0.008816521614789963, -0.04919987544417381, -2.8309974670410156, 0.5299424529075623, 0.21309150755405426, 1.2365562915802002, 0.16608937084674835, 0.2356218546628952, -0.15901868045330048, -2.9590609073638916, -0.4937380850315094, -0.19424031674861908, 1.3105109930038452, -0.11769707500934601, 0.30123549699783325, 0.09647301584482193]} +{"t": 14.0277, "q": [-0.3027958869934082, -0.011397477239370346, 0.006709339562803507, 0.6293582320213318, -0.3416267931461334, 0.007368622347712517, -0.3408045172691345, 0.006638728082180023, -0.0037497307639569044, 0.6045674085617065, -0.2996455132961273, 0.0018396496307104826, 0.003481892868876457, 0.008846960961818695, -0.04922976344823837, -2.8309855461120605, 0.5299184918403625, 0.2131034880876541, 1.2365323305130005, 0.16606540977954865, 0.23563383519649506, -0.15901868045330048, -2.959084987640381, -0.49375006556510925, -0.19426429271697998, 1.3105229139328003, -0.11768509447574615, 0.301223486661911, 0.09643705934286118]} +{"t": 14.0444, "q": [-0.30296632647514343, -0.011431565508246422, 0.00672273151576519, 0.629571259021759, -0.34163495898246765, 0.007368545047938824, -0.340957909822464, 0.006638728082180023, -0.0037497307639569044, 0.6048060059547424, -0.29964134097099304, 0.001832375070080161, 0.0035220684949308634, 0.008877389132976532, -0.049229905009269714, -2.830949544906616, 0.5299184918403625, 0.21313944458961487, 1.2365562915802002, 0.16611334681510925, 0.23560987412929535, -0.15901868045330048, -2.959084987640381, -0.4937380850315094, -0.19427627325057983, 1.3105109930038452, -0.11768509447574615, 0.30121150612831116, 0.09642507880926132]} +{"t": 14.0611, "q": [-0.3031708598136902, -0.011440088041126728, 0.006736123468726873, 0.6298269629478455, -0.34163898229599, 0.007375774439424276, -0.341213583946228, 0.006570551078766584, -0.0037229470908641815, 0.605070173740387, -0.2996537983417511, 0.0018397301901131868, 0.0035086767747998238, 0.00887740682810545, -0.049269575625658035, -2.830925703048706, 0.5299304723739624, 0.21312746405601501, 1.2365204095840454, 0.16608937084674835, 0.2356218546628952, -0.15903067588806152, -2.959120988845825, -0.4937141239643097, -0.19427627325057983, 1.3105229139328003, -0.11768509447574615, 0.301223486661911, 0.09641309082508087]} +{"t": 14.0779, "q": [-0.3033924400806427, -0.011457132175564766, 0.006695947609841824, 0.6300570368766785, -0.34164708852767944, 0.007390251383185387, -0.34142664074897766, 0.006570551078766584, -0.003736338810995221, 0.6052917838096619, -0.2996496260166168, 0.0018324375851079822, 0.0035220684949308634, 0.0089230602607131, -0.04928964376449585, -2.830913782119751, 0.5299065113067627, 0.21311548352241516, 1.2365323305130005, 0.16608937084674835, 0.2356218546628952, -0.15903067588806152, -2.9590609073638916, -0.49367818236351013, -0.19426429271697998, 1.3104989528656006, -0.11768509447574615, 0.3012474775314331, 0.09640111029148102]} +{"t": 14.0947, "q": [-0.303486168384552, -0.011491220444440842, 0.006749515421688557, 0.6301934123039246, -0.34163898229599, 0.007375774439424276, -0.34158855676651, 0.0065108961425721645, -0.0037095551379024982, 0.6056326627731323, -0.29965370893478394, 0.0018252255395054817, 0.003562244353815913, 0.008953488431870937, -0.049289800226688385, -2.830913782119751, 0.5298465490341187, 0.21312746405601501, 1.2364964485168457, 0.16606540977954865, 0.23563383519649506, -0.15901868045330048, -2.959073066711426, -0.4936662018299103, -0.19427627325057983, 1.3105229139328003, -0.11768509447574615, 0.3012474775314331, 0.09636515378952026]} +{"t": 14.1115, "q": [-0.3036310374736786, -0.011516787111759186, 0.00676290737465024, 0.630466103553772, -0.34163898229599, 0.007375774439424276, -0.3417334258556366, 0.006502374075353146, -0.0037229470908641815, 0.6059309244155884, -0.2996455132961273, 0.0018396496307104826, 0.00354885240085423, 0.008938279002904892, -0.04929963871836662, -2.8308658599853516, 0.5298585295677185, 0.21315142512321472, 1.2365083694458008, 0.1660773903131485, 0.2356218546628952, -0.15903067588806152, -2.9590489864349365, -0.4936062693595886, -0.19427627325057983, 1.3104989528656006, -0.11768509447574615, 0.301223486661911, 0.09635317325592041]} +{"t": 14.1283, "q": [-0.3037674129009247, -0.011516787111759186, 0.006829866673797369, 0.6306279897689819, -0.34164708852767944, 0.007390251383185387, -0.3420061469078064, 0.00646828580647707, -0.0036292036529630423, 0.6062718033790588, -0.29965800046920776, 0.0018470047507435083, 0.00354885240085423, 0.008953490294516087, -0.04929971694946289, -2.8308417797088623, 0.5298824906349182, 0.2130555510520935, 1.2365204095840454, 0.1660534292459488, 0.2356218546628952, -0.15904265642166138, -2.9591808319091797, -0.49357032775878906, -0.19426429271697998, 1.3105109930038452, -0.11768509447574615, 0.30121150612831116, 0.09634118527173996]} +{"t": 14.145, "q": [-0.30392932891845703, -0.011550875380635262, 0.006843258626759052, 0.6308155059814453, -0.34164708852767944, 0.007390251383185387, -0.34230440855026245, 0.00646828580647707, -0.0036024199798703194, 0.6065871119499207, -0.2996579110622406, 0.0018325181445106864, 0.0034952848218381405, 0.008961103856563568, -0.04931463301181793, -2.830793857574463, 0.5298345685005188, 0.21306754648685455, 1.236484408378601, 0.16611334681510925, 0.23563383519649506, -0.15903067588806152, -2.9591448307037354, -0.4934864342212677, -0.19426429271697998, 1.3104989528656006, -0.11768509447574615, 0.30121150612831116, 0.0963292047381401]} +{"t": 14.1618, "q": [-0.30420202016830444, -0.011576442047953606, 0.006896826438605785, 0.6311478614807129, -0.34164708852767944, 0.007390251383185387, -0.3426538109779358, 0.006425675004720688, -0.0036024199798703194, 0.6070217490196228, -0.2996661961078644, 0.0018325806595385075, 0.0034952848218381405, 0.00896871741861105, -0.049329545348882675, -2.830817699432373, 0.529822587966919, 0.21306754648685455, 1.236484408378601, 0.16606540977954865, 0.2355978786945343, -0.15904265642166138, -2.9590609073638916, -0.49342650175094604, -0.19427627325057983, 1.3105229139328003, -0.11768509447574615, 0.301223486661911, 0.0963052362203598]} +{"t": 14.1787, "q": [-0.3045003116130829, -0.01154235377907753, 0.006870042532682419, 0.6315569281578064, -0.34164708852767944, 0.007390251383185387, -0.34295210242271423, 0.006434197071939707, -0.003589028026908636, 0.6074052453041077, -0.29967445135116577, 0.0018326431745663285, 0.00354885240085423, 0.008961103856563568, -0.04931463301181793, -2.8308658599853516, 0.529822587966919, 0.2130315899848938, 1.236472487449646, 0.16606540977954865, 0.2355978786945343, -0.15903067588806152, -2.959108829498291, -0.49327072501182556, -0.19427627325057983, 1.3105229139328003, -0.11768509447574615, 0.3012474775314331, 0.0963052362203598]} +{"t": 14.1954, "q": [-0.3049179017543793, -0.011559397913515568, 0.006843258626759052, 0.6318296194076538, -0.34164297580718994, 0.007397557608783245, -0.34344637393951416, 0.006434197071939707, -0.0036292036529630423, 0.6077290773391724, -0.2996784746646881, 0.0018109265947714448, 0.003562244353815913, 0.009014361537992954, -0.04932978004217148, -2.8308658599853516, 0.5297507047653198, 0.21309150755405426, 1.2364604473114014, 0.16608937084674835, 0.23558589816093445, -0.15903067588806152, -2.959228754043579, -0.49322277307510376, -0.19427627325057983, 1.3105109930038452, -0.1176491379737854, 0.30121150612831116, 0.0962812677025795]} +{"t": 14.2122, "q": [-0.3053269386291504, -0.011533831246197224, 0.0068566505797207355, 0.6321449279785156, -0.3416348695755005, 0.007383081130683422, -0.3439321219921112, 0.006442719139158726, -0.0036292036529630423, 0.6081722378730774, -0.29969078302383423, 0.0017892903415486217, 0.0035220684949308634, 0.009044800885021687, -0.04935968667268753, -2.8308658599853516, 0.5296787619590759, 0.2130555510520935, 1.2364604473114014, 0.16608937084674835, 0.23560987412929535, -0.15905463695526123, -2.959312677383423, -0.49319881200790405, -0.19427627325057983, 1.310439109802246, -0.1176731064915657, 0.30123549699783325, 0.0962572991847992]} +{"t": 14.229, "q": [-0.30625584721565247, -0.011525308713316917, 0.006896826438605785, 0.6326051354408264, -0.3416348695755005, 0.007383081130683422, -0.345210462808609, 0.006434197071939707, -0.0036024199798703194, 0.6088113784790039, -0.29969486594200134, 0.0017820782959461212, 0.0035220684949308634, 0.009219816885888577, -0.04948454722762108, -2.8308658599853516, 0.5295349955558777, 0.2130315899848938, 1.236424446105957, 0.16608937084674835, 0.2355978786945343, -0.15905463695526123, -2.9594805240631104, -0.4931149184703827, -0.19427627325057983, 1.3104151487350464, -0.1176491379737854, 0.301223486661911, 0.09624531120061874]} +{"t": 14.2457, "q": [-0.30808812379837036, -0.011550875380635262, 0.007124488707631826, 0.6332783699035645, -0.34161853790283203, 0.007383252959698439, -0.34734097123146057, 0.006442719139158726, -0.0034551091957837343, 0.6098255515098572, -0.29969486594200134, 0.0017820782959461212, 0.0034952848218381405, 0.00993509404361248, -0.04998406395316124, -2.8308658599853516, 0.5294870138168335, 0.21297167241573334, 1.2364364862442017, 0.16606540977954865, 0.2355978786945343, -0.15904265642166138, -2.9594805240631104, -0.4930430054664612, -0.19430024921894073, 1.3104151487350464, -0.11763715744018555, 0.301223486661911, 0.09624531120061874]} +{"t": 14.2625, "q": [-0.30969879031181335, -0.011567920446395874, 0.007499461527913809, 0.6342840194702148, -0.34161847829818726, 0.007397789042443037, -0.34899428486824036, 0.006417152937501669, -0.0032274469267576933, 0.6113765835762024, -0.29968222975730896, 0.0017457499634474516, 0.003589028026908636, 0.010140558704733849, -0.05015866830945015, -2.831357002258301, 0.5294151306152344, 0.21301960945129395, 1.2363406419754028, 0.1660294532775879, 0.23558589816093445, -0.15904265642166138, -2.9598278999328613, -0.49287521839141846, -0.19427627325057983, 1.310367226600647, -0.1176251694560051, 0.3011995255947113, 0.09624531120061874]} +{"t": 14.2792, "q": [-0.3099629878997803, -0.01160200871527195, 0.0076467725448310375, 0.6350765824317932, -0.34161442518234253, 0.007390559650957584, -0.3493862748146057, 0.006340453866869211, -0.0031470954418182373, 0.6123395562171936, -0.29971128702163696, 0.0017532121855765581, 0.0036158119328320026, 0.009623129852116108, -0.04980892315506935, -2.8316807746887207, 0.5294151306152344, 0.21297167241573334, 1.2360050678253174, 0.16608937084674835, 0.23558589816093445, -0.15903067588806152, -2.9602115154266357, -0.4922879934310913, -0.19427627325057983, 1.3102353811264038, -0.1176491379737854, 0.3011995255947113, 0.09623333066701889]} +{"t": 14.2959, "q": [-0.31030386686325073, -0.011704273521900177, 0.00772712379693985, 0.6351617574691772, -0.34161853790283203, 0.007383252959698439, -0.350068062543869, 0.006204099860042334, -0.0030801359098404646, 0.6127997636795044, -0.299702912569046, 0.001738645019941032, 0.003562244353815913, 0.009569843299686909, -0.04972434788942337, -2.831285238265991, 0.5294630527496338, 0.2130076140165329, 1.2359331846237183, 0.16611334681510925, 0.2355499416589737, -0.15903067588806152, -2.9599719047546387, -0.49150902032852173, -0.19422833621501923, 1.3102353811264038, -0.1176491379737854, 0.30121150612831116, 0.09623333066701889]} +{"t": 14.3128, "q": [-0.31024420261383057, -0.011798016726970673, 0.007834259420633316, 0.635178804397583, -0.34160640835762024, 0.007361564785242081, -0.3500424921512604, 0.006161489523947239, -0.0029997846577316523, 0.6129957437515259, -0.2996904253959656, 0.0017313258722424507, 0.0035086767747998238, 0.009554633870720863, -0.04973419010639191, -2.8306620121002197, 0.5294271111488342, 0.21306754648685455, 1.2360769510269165, 0.16611334681510925, 0.23558589816093445, -0.15901868045330048, -2.959696054458618, -0.4908618927001953, -0.19426429271697998, 1.310307264328003, -0.1176251694560051, 0.3012474775314331, 0.09620936214923859]} +{"t": 14.3295, "q": [-0.31026124954223633, -0.011789495125412941, 0.007807475049048662, 0.6351958513259888, -0.3416145145893097, 0.007376023568212986, -0.3502129316329956, 0.006110356654971838, -0.002986392704769969, 0.6131491661071777, -0.29968634247779846, 0.0017385379178449512, 0.00354885240085423, 0.009569852612912655, -0.04974418506026268, -2.8298590183258057, 0.5292952656745911, 0.2129836529493332, 1.2361608743667603, 0.16611334681510925, 0.2355978786945343, -0.15903067588806152, -2.9595043659210205, -0.49038252234458923, -0.1943122297525406, 1.3103312253952026, -0.11761318892240524, 0.30123549699783325, 0.09617340564727783]} +{"t": 14.3463, "q": [-0.31026124954223633, -0.011755406856536865, 0.007713731843978167, 0.6351447105407715, -0.3416227400302887, 0.007361392490565777, -0.3502129316329956, 0.006127400789409876, -0.0030131766106933355, 0.6131491661071777, -0.29966944456100464, 0.0016804304905235767, 0.0035354604478925467, 0.009691597893834114, -0.04981422796845436, -2.8289601802825928, 0.5290795564651489, 0.2129596769809723, 1.23618483543396, 0.1661253273487091, 0.23558589816093445, -0.15905463695526123, -2.959432601928711, -0.48992711305618286, -0.1943361908197403, 1.310367226600647, -0.11760120093822479, 0.3012474775314331, 0.09613745659589767]} +{"t": 14.363, "q": [-0.31026124954223633, -0.01172131858766079, 0.007553029339760542, 0.6351362466812134, -0.3416392207145691, 0.007332167122513056, -0.3502640724182129, 0.006144445389509201, -0.003066744189709425, 0.6131491661071777, -0.2996731996536255, 0.0016152720199897885, 0.003562244353815913, 0.009858992882072926, -0.04991425201296806, -2.82806134223938, 0.5288279056549072, 0.2129596769809723, 1.2361129522323608, 0.1660773903131485, 0.2355739176273346, -0.15904265642166138, -2.9594204425811768, -0.48953163623809814, -0.19439612329006195, 1.3104031085968018, -0.11757723242044449, 0.3012474775314331, 0.09611348807811737]} +{"t": 14.3797, "q": [-0.3102697730064392, -0.011678706854581833, 0.00739232636988163, 0.635093629360199, -0.3416474461555481, 0.007317554205656052, -0.35033223032951355, 0.006110356654971838, -0.0031203117687255144, 0.6130980253219604, -0.2996981143951416, 0.0016299460548907518, 0.003589028026908636, 0.009973172098398209, -0.05007848143577576, -2.8273303508758545, 0.5286002159118652, 0.21306754648685455, 1.2361129522323608, 0.1661013662815094, 0.23556193709373474, -0.15905463695526123, -2.9594085216522217, -0.4892200529575348, -0.19439612329006195, 1.3103911876678467, -0.11761318892240524, 0.3012474775314331, 0.09607753157615662]} +{"t": 14.3965, "q": [-0.31030386686325073, -0.011678706854581833, 0.0072584073059260845, 0.6350254416465759, -0.3416556715965271, 0.00730292359367013, -0.35042598843574524, 0.006118878722190857, -0.0031872710678726435, 0.6130724549293518, -0.2996940314769745, 0.0016371581004932523, 0.0036024199798703194, 0.01023185160011053, -0.05017896741628647, -2.8267431259155273, 0.5283365249633789, 0.21299563348293304, 1.2360769510269165, 0.16611334681510925, 0.23556193709373474, -0.15905463695526123, -2.9593605995178223, -0.488944411277771, -0.19437214732170105, 1.310439109802246, -0.11761318892240524, 0.3012474775314331, 0.09602959454059601]} +{"t": 14.4133, "q": [-0.31028681993484497, -0.011559397913515568, 0.0071914480067789555, 0.6349998712539673, -0.3416680097579956, 0.007281004451215267, -0.35046008229255676, 0.006127400789409876, -0.0032006630208343267, 0.6130298376083374, -0.2997719943523407, 0.0015145799843594432, 0.003589028026908636, 0.010338387452065945, -0.050258852541446686, -2.8264315128326416, 0.5281568169593811, 0.2131034880876541, 1.2360409498214722, 0.16608937084674835, 0.2355499416589737, -0.15904265642166138, -2.959348678588867, -0.4886448085308075, -0.19437214732170105, 1.3104270696640015, -0.11760120093822479, 0.3012474775314331, 0.09604158252477646]} +{"t": 14.4301, "q": [-0.3103720545768738, -0.011550875380635262, 0.0070307450369000435, 0.6349316835403442, -0.34165993332862854, 0.007266545668244362, -0.35070720314979553, 0.006101834587752819, -0.0032006630208343267, 0.6129701733589172, -0.2998587489128113, 0.0014790197601541877, 0.0035354604478925467, 0.010490567423403263, -0.050348907709121704, -2.826251745223999, 0.5280010104179382, 0.21301960945129395, 1.2360050678253174, 0.1660773903131485, 0.235525980591774, -0.15903067588806152, -2.959432601928711, -0.48830923438072205, -0.19437214732170105, 1.3104031085968018, -0.11761318892240524, 0.3012714385986328, 0.09601761400699615]} +{"t": 14.4468, "q": [-0.3104061186313629, -0.011508265510201454, 0.007003961596637964, 0.6348294019699097, -0.34164777398109436, 0.007244839332997799, -0.350818008184433, 0.006144445389509201, -0.0031872710678726435, 0.6129190921783447, -0.30005118250846863, 0.001813739538192749, 0.003589028026908636, 0.010574283078312874, -0.05041388049721718, -2.82613205909729, 0.5278931260108948, 0.2129836529493332, 1.235957145690918, 0.16608937084674835, 0.23553796112537384, -0.15903067588806152, -2.9593966007232666, -0.48793771862983704, -0.19434818625450134, 1.3104510307312012, -0.11763715744018555, 0.30125945806503296, 0.09601761400699615]} +{"t": 14.4638, "q": [-0.3104998767375946, -0.011414522305130959, 0.006977177690714598, 0.6347953081130981, -0.34166836738586426, 0.007208289112895727, -0.35096287727355957, 0.006144445389509201, -0.003173879347741604, 0.6128679513931274, -0.3007369935512543, 0.002963649807497859, 0.0036425956059247255, 0.01062756683677435, -0.05046876147389412, -2.826024055480957, 0.5278332233428955, 0.21306754648685455, 1.2359211444854736, 0.1660773903131485, 0.235525980591774, -0.15904265642166138, -2.9593846797943115, -0.48757821321487427, -0.1943601667881012, 1.310439109802246, -0.1176491379737854, 0.3012474775314331, 0.09601761400699615]} +{"t": 14.4805, "q": [-0.31071293354034424, -0.011388955637812614, 0.006883434485644102, 0.634718656539917, -0.3416602909564972, 0.007193830329924822, -0.35130375623703003, 0.006161489523947239, -0.0031470954418182373, 0.6127230525016785, -0.3021414279937744, 0.0052057914435863495, 0.0036292036529630423, 0.01085586380213499, -0.050618890672922134, -2.825928211212158, 0.5278092622756958, 0.21299563348293304, 1.2359331846237183, 0.16608937084674835, 0.23551400005817413, -0.15904265642166138, -2.959444522857666, -0.4871947169303894, -0.1943361908197403, 1.310439109802246, -0.11761318892240524, 0.30125945806503296, 0.0960056260228157]} +{"t": 14.4972, "q": [-0.31079813838005066, -0.011346344836056232, 0.006896826438605785, 0.6346248984336853, -0.3416602909564972, 0.007193830329924822, -0.351678729057312, 0.006195577792823315, -0.003093527862802148, 0.612612247467041, -0.3022289276123047, 0.005300628952682018, 0.003655987558886409, 0.010954828932881355, -0.050743501633405685, -2.825796365737915, 0.527797281742096, 0.2130315899848938, 1.2359211444854736, 0.1660773903131485, 0.23551400005817413, -0.15905463695526123, -2.9594085216522217, -0.4869430363178253, -0.19437214732170105, 1.310439109802246, -0.1176491379737854, 0.30125945806503296, 0.09602959454059601]} +{"t": 14.514, "q": [-0.31093451380729675, -0.01130373403429985, 0.006896826438605785, 0.6345481872558594, -0.3416602909564972, 0.007193830329924822, -0.3530678451061249, 0.006221144460141659, -0.0030533522367477417, 0.6124929785728455, -0.30223730206489563, 0.005315178073942661, 0.003655987558886409, 0.011175527237355709, -0.05090854689478874, -2.8257246017456055, 0.5278092622756958, 0.21301960945129395, 1.235897183418274, 0.1660773903131485, 0.23550200462341309, -0.15904265642166138, -2.9595882892608643, -0.4868951141834259, -0.1943601667881012, 1.3104151487350464, -0.11761318892240524, 0.3012474775314331, 0.09602959454059601]} +{"t": 14.5307, "q": [-0.3110623359680176, -0.011235557496547699, 0.006896826438605785, 0.6344032883644104, -0.3416602909564972, 0.007193830329924822, -0.3557608425617218, 0.006229666527360678, -0.0030131766106933355, 0.6122628450393677, -0.3024793863296509, 0.004933019168674946, 0.0035354604478925467, 0.01136582251638174, -0.05112311616539955, -2.825652599334717, 0.5278452038764954, 0.21299563348293304, 1.2358253002166748, 0.1660773903131485, 0.23549002408981323, -0.15904265642166138, -2.959792137145996, -0.4867752492427826, -0.1943361908197403, 1.310367226600647, -0.1176491379737854, 0.30123549699783325, 0.09601761400699615]} +{"t": 14.5475, "q": [-0.31116458773612976, -0.011201469227671623, 0.006896826438605785, 0.6342499256134033, -0.34166836738586426, 0.007208289112895727, -0.35565856099128723, 0.006221144460141659, -0.0029997846577316523, 0.6118963956832886, -0.3025453984737396, 0.004890041425824165, 0.0034952848218381405, 0.011784475296735764, -0.05159715190529823, -2.8255088329315186, 0.5278452038764954, 0.2130076140165329, 1.2357773780822754, 0.16611334681510925, 0.23549002408981323, -0.15905463695526123, -2.9598400592803955, -0.48663145303726196, -0.1943361908197403, 1.310307264328003, -0.1176491379737854, 0.30125945806503296, 0.09601761400699615]} +{"t": 14.5642, "q": [-0.3112753927707672, -0.011133292689919472, 0.006829866673797369, 0.6340794563293457, -0.34169307351112366, 0.007164450827986002, -0.3556244671344757, 0.006297843065112829, -0.0030801359098404646, 0.6112998723983765, -0.30272576212882996, 0.004572603385895491, 0.003481892868876457, 0.012172706425189972, -0.0520908497273922, -2.825472831726074, 0.5278691649436951, 0.2130076140165329, 1.2357174158096313, 0.16606540977954865, 0.23549002408981323, -0.15903067588806152, -2.9598159790039062, -0.4864756464958191, -0.1943122297525406, 1.3103312253952026, -0.11768509447574615, 0.3012474775314331, 0.09601761400699615]} +{"t": 14.5809, "q": [-0.3113861680030823, -0.011107726022601128, 0.006642380263656378, 0.6337300539016724, -0.34169307351112366, 0.007164450827986002, -0.3555903732776642, 0.006314887665212154, -0.0031203117687255144, 0.6105243563652039, -0.30384066700935364, 0.0026103320997208357, 0.003575636073946953, 0.012614364735782146, -0.052779071033000946, -2.825329065322876, 0.5278931260108948, 0.2130315899848938, 1.2357174158096313, 0.1660773903131485, 0.23547804355621338, -0.15905463695526123, -2.9598159790039062, -0.4861760437488556, -0.1943361908197403, 1.3103312253952026, -0.1176731064915657, 0.30125945806503296, 0.09605356305837631]} +{"t": 14.5978, "q": [-0.3115140199661255, -0.011073637753725052, 0.00646828580647707, 0.6333891749382019, -0.3417011797428131, 0.007178927771747112, -0.35547107458114624, 0.006366020068526268, -0.0032274469267576933, 0.6094761490821838, -0.30482006072998047, 0.0008426530403085053, 0.0035220684949308634, 0.013147259131073952, -0.05337852984666824, -2.825089454650879, 0.5279051065444946, 0.2130315899848938, 1.235729455947876, 0.16606540977954865, 0.23549002408981323, -0.15903067588806152, -2.959792137145996, -0.4859004020690918, -0.1943361908197403, 1.3103312253952026, -0.11768509447574615, 0.3012474775314331, 0.0960056260228157]} +{"t": 14.6145, "q": [-0.3116929829120636, -0.011005460284650326, 0.006334366742521524, 0.6331335306167603, -0.34170520305633545, 0.007186157163232565, -0.3553517758846283, 0.006442719139158726, -0.0032944062259048223, 0.6086921095848083, -0.30481988191604614, 0.0008136798278428614, 0.00354885240085423, 0.01367256697267294, -0.0540228933095932, -2.8250415325164795, 0.5279410481452942, 0.2129836529493332, 1.235741376876831, 0.16606540977954865, 0.23549002408981323, -0.15903067588806152, -2.9598278999328613, -0.4855768382549286, -0.19434818625450134, 1.3103312253952026, -0.11769707500934601, 0.3012474775314331, 0.09601761400699615]} +{"t": 14.6312, "q": [-0.3117355704307556, -0.011048071086406708, 0.006294190883636475, 0.6328096985816956, -0.34170520305633545, 0.007186157163232565, -0.3552494943141937, 0.006442719139158726, -0.0032676225528120995, 0.608129620552063, -0.30465951561927795, 0.0010080840438604355, 0.003562244353815913, 0.01407611183822155, -0.054527927190065384, -2.8249216079711914, 0.5279410481452942, 0.2129836529493332, 1.2357534170150757, 0.16606540977954865, 0.23546606302261353, -0.15903067588806152, -2.9598159790039062, -0.4853491485118866, -0.1943361908197403, 1.310367226600647, -0.11768509447574615, 0.30125945806503296, 0.09601761400699615]} +{"t": 14.6479, "q": [-0.3117355704307556, -0.01105659268796444, 0.006347758695483208, 0.6325795650482178, -0.3417091965675354, 0.007207922171801329, -0.3552069067955017, 0.006442719139158726, -0.0032274469267576933, 0.607754647731781, -0.3046432137489319, 0.0010514188325032592, 0.003481892868876457, 0.01443387009203434, -0.05482390895485878, -2.824777841567993, 0.5279051065444946, 0.2130555510520935, 1.2356574535369873, 0.16608937084674835, 0.23545406758785248, -0.15901868045330048, -2.9599239826202393, -0.4851454198360443, -0.1943361908197403, 1.3103431463241577, -0.11768509447574615, 0.3012474775314331, 0.0960056260228157]} +{"t": 14.6646, "q": [-0.31172704696655273, -0.011099203489720821, 0.006441501900553703, 0.6323665380477905, -0.34171321988105774, 0.007215151563286781, -0.35513871908187866, 0.006451241206377745, -0.00321405497379601, 0.6074904799461365, -0.3045073449611664, 0.0011880461825057864, 0.00354885240085423, 0.014715527184307575, -0.055079542100429535, -2.824537992477417, 0.5278811454772949, 0.21306754648685455, 1.2356455326080322, 0.16606540977954865, 0.23547804355621338, -0.15904265642166138, -2.9599597454071045, -0.485025554895401, -0.19434818625450134, 1.310307264328003, -0.11768509447574615, 0.30125945806503296, 0.0960056260228157]} +{"t": 14.6814, "q": [-0.31172704696655273, -0.011150335893034935, 0.006495069246739149, 0.6322386860847473, -0.34170499444007874, 0.0072297644801437855, -0.35511314868927, 0.006442719139158726, -0.0031604873947799206, 0.6072433590888977, -0.303490549325943, 0.002933732233941555, 0.003481892868876457, 0.014928607270121574, -0.05517065152525902, -2.8244543075561523, 0.5278571844100952, 0.21304357051849365, 1.235573649406433, 0.1660773903131485, 0.23546606302261353, -0.15903067588806152, -2.9599838256835938, -0.4849536716938019, -0.19434818625450134, 1.3102833032608032, -0.11768509447574615, 0.3012474775314331, 0.09599364548921585]} +{"t": 14.6983, "q": [-0.31171852350234985, -0.01111624762415886, 0.006508461199700832, 0.6321279406547546, -0.3417211174964905, 0.007273235823959112, -0.3550705313682556, 0.006442719139158726, -0.003173879347741604, 0.607081413269043, -0.3027406334877014, 0.004282923880964518, 0.0034952848218381405, 0.015088406391441822, -0.055226560682058334, -2.8244781494140625, 0.527797281742096, 0.2129836529493332, 1.2352739572525024, 0.16606540977954865, 0.23543010652065277, -0.15903067588806152, -2.960031747817993, -0.4847739040851593, -0.1943601667881012, 1.3102833032608032, -0.11768509447574615, 0.30125945806503296, 0.09596967697143555]} +{"t": 14.715, "q": [-0.3117355704307556, -0.011201469227671623, 0.0065620290115475655, 0.6319915652275085, -0.34172523021698, 0.007265929598361254, -0.35491713881492615, 0.006459763273596764, -0.0031604873947799206, 0.6070387959480286, -0.3015638589859009, 0.005578193347901106, 0.0035354604478925467, 0.015179743990302086, -0.05529684200882912, -2.8244543075561523, 0.5277613401412964, 0.2130315899848938, 1.2346508502960205, 0.1660773903131485, 0.23538216948509216, -0.15903067588806152, -2.960007667541504, -0.48453420400619507, -0.1943361908197403, 1.3102593421936035, -0.11769707500934601, 0.3012474775314331, 0.09596967697143555]} +{"t": 14.7319, "q": [-0.3117440938949585, -0.01118442416191101, 0.006588812451809645, 0.6318807601928711, -0.34172523021698, 0.007265929598361254, -0.3547040820121765, 0.006451241206377745, -0.0032006630208343267, 0.6070217490196228, -0.3013302683830261, 0.005286620929837227, 0.00354885240085423, 0.015179743990302086, -0.05529684200882912, -2.824406147003174, 0.5276893973350525, 0.21301960945129395, 1.2337040901184082, 0.16606540977954865, 0.23538216948509216, -0.15904265642166138, -2.960007667541504, -0.48418667912483215, -0.1943361908197403, 1.3102593421936035, -0.11770906299352646, 0.3012474775314331, 0.09596967697143555]} +{"t": 14.7486, "q": [-0.3117355704307556, -0.011209990829229355, 0.0066289883106946945, 0.6317784786224365, -0.34171706438064575, 0.0072660064324736595, -0.3544228672981262, 0.006485329940915108, -0.00321405497379601, 0.6070387959480286, -0.300502210855484, 0.0038892857264727354, 0.0036158119328320026, 0.015156926587224007, -0.05530163645744324, -2.824286460876465, 0.5275815725326538, 0.2130076140165329, 1.2318226099014282, 0.16608937084674835, 0.23538216948509216, -0.15903067588806152, -2.9599838256835938, -0.4836234152317047, -0.1943361908197403, 1.3102593421936035, -0.11769707500934601, 0.30125945806503296, 0.0959816575050354]} +{"t": 14.7653, "q": [-0.31180375814437866, -0.011209990829229355, 0.00672273151576519, 0.6316933035850525, -0.34171706438064575, 0.0072660064324736595, -0.3541671931743622, 0.006502374075353146, -0.0032274469267576933, 0.6071325540542603, -0.2991008758544922, 0.0014660385204479098, 0.0036024199798703194, 0.015149295330047607, -0.055266790091991425, -2.824094772338867, 0.5275935530662537, 0.2129836529493332, 1.2299649715423584, 0.1661013662815094, 0.2353701889514923, -0.15903067588806152, -2.9599478244781494, -0.4828204810619354, -0.1943361908197403, 1.3102353811264038, -0.11769707500934601, 0.30123549699783325, 0.09594570845365524]} +{"t": 14.7821, "q": [-0.31195715069770813, -0.01118442416191101, 0.006870042532682419, 0.6316251158714294, -0.3417007327079773, 0.007266142405569553, -0.3537836968898773, 0.006570551078766584, -0.0032274469267576933, 0.6071836948394775, -0.2989923655986786, 0.0013203057460486889, 0.0036024199798703194, 0.015149268321692944, -0.05522703751921654, -2.824082612991333, 0.5276774168014526, 0.21301960945129395, 1.2277239561080933, 0.1660773903131485, 0.2353701889514923, -0.15904265642166138, -2.959768056869507, -0.48174187541007996, -0.1943361908197403, 1.3102593421936035, -0.11769707500934601, 0.301223486661911, 0.09593372046947479]} +{"t": 14.7988, "q": [-0.31209349632263184, -0.011167380958795547, 0.006963785737752914, 0.6315739750862122, -0.34169259667396545, 0.007266219239681959, -0.35290592908859253, 0.00660463934764266, -0.003173879347741604, 0.6073711514472961, -0.29899653792381287, 0.0013275803066790104, 0.00354885240085423, 0.015057948417961597, -0.055186569690704346, -2.8240346908569336, 0.527797281742096, 0.2129836529493332, 1.225866436958313, 0.1661013662815094, 0.2353701889514923, -0.15903067588806152, -2.9597201347351074, -0.4803277552127838, -0.1943361908197403, 1.3102593421936035, -0.11769707500934601, 0.3012474775314331, 0.09589777141809464]} +{"t": 14.8155, "q": [-0.31199976801872253, -0.011158858425915241, 0.007070920895785093, 0.631582498550415, -0.34166815876960754, 0.007251932751387358, -0.35151681303977966, 0.006681338418275118, -0.0031872710678726435, 0.607524573802948, -0.2989508807659149, 0.0013055246090516448, 0.0036024199798703194, 0.014867682941257954, -0.055080726742744446, -2.8239269256591797, 0.5279890298843384, 0.21297167241573334, 1.2236253023147583, 0.16613730788230896, 0.2353701889514923, -0.15903067588806152, -2.9596242904663086, -0.4786619544029236, -0.19434818625450134, 1.3102833032608032, -0.11770906299352646, 0.30123549699783325, 0.09592173993587494]} +{"t": 14.8325, "q": [-0.31159070134162903, -0.011150335893034935, 0.006910218391567469, 0.6315654516220093, -0.34166815876960754, 0.007251932751387358, -0.35097140073776245, 0.006732471287250519, -0.003334582084789872, 0.6074649095535278, -0.29892149567604065, 0.001240098150447011, 0.0036158119328320026, 0.01468497235327959, -0.0548904687166214, -2.823974847793579, 0.5282287001609802, 0.21301960945129395, 1.2208449840545654, 0.1661013662815094, 0.23538216948509216, -0.15901868045330048, -2.9594924449920654, -0.47692424058914185, -0.1943601667881012, 1.310307264328003, -0.11769707500934601, 0.3012474775314331, 0.09592173993587494]} +{"t": 14.8492, "q": [-0.3113776445388794, -0.011158858425915241, 0.006776299327611923, 0.631582498550415, -0.34165602922439575, 0.007230226416140795, -0.350630521774292, 0.0067239492200315, -0.003441717242822051, 0.6074990034103394, -0.2989256680011749, 0.0012473727110773325, 0.0036827712319791317, 0.014776268973946571, -0.0549011193215847, -2.8230161666870117, 0.5284923315048218, 0.2130315899848938, 1.2185560464859009, 0.16613730788230896, 0.23538216948509216, -0.15903067588806152, -2.959432601928711, -0.4750906527042389, -0.1943361908197403, 1.310307264328003, -0.11770906299352646, 0.3012474775314331, 0.09593372046947479]} +{"t": 14.866, "q": [-0.3111560642719269, -0.011150335893034935, 0.006776299327611923, 0.6315739750862122, -0.34165602922439575, 0.007230226416140795, -0.35033223032951355, 0.006732471287250519, -0.0035086767747998238, 0.6075160503387451, -0.2989215850830078, 0.001254584756679833, 0.003669379511848092, 0.014859904535114765, -0.05482723191380501, -2.821925401687622, 0.5285882353782654, 0.2130555510520935, 1.2178488969802856, 0.1661253273487091, 0.23540613055229187, -0.15904265642166138, -2.959432601928711, -0.4734368324279785, -0.1943361908197403, 1.310307264328003, -0.11768509447574615, 0.30125945806503296, 0.09592173993587494]} +{"t": 14.8828, "q": [-0.31111347675323486, -0.011133292689919472, 0.006776299327611923, 0.6315654516220093, -0.341651976108551, 0.007222997024655342, -0.35032370686531067, 0.0067665595561265945, -0.0034952848218381405, 0.6075416207313538, -0.2989257574081421, 0.0012618593173101544, 0.003589028026908636, 0.014905606396496296, -0.05490709841251373, -2.8209068775177, 0.5286601185798645, 0.21306754648685455, 1.2174055576324463, 0.16614930331707, 0.23543010652065277, -0.15899471938610077, -2.9593846797943115, -0.4721904695034027, -0.1943122297525406, 1.310319185256958, -0.11770906299352646, 0.3012714385986328, 0.09592173993587494]} +{"t": 14.8996, "q": [-0.3110879063606262, -0.011133292689919472, 0.006829866673797369, 0.631582498550415, -0.341651976108551, 0.007222997024655342, -0.35028111934661865, 0.006749515421688557, -0.0034952848218381405, 0.6076268553733826, -0.2989215850830078, 0.001254584756679833, 0.0036024199798703194, 0.014890397898852825, -0.05491691827774048, -2.8199360370635986, 0.5285882353782654, 0.2131034880876541, 1.2172976732254028, 0.16614930331707, 0.23543010652065277, -0.15901868045330048, -2.959432601928711, -0.47125568985939026, -0.1943361908197403, 1.310367226600647, -0.11769707500934601, 0.3012474775314331, 0.09590975195169449]} +{"t": 14.9163, "q": [-0.31102824211120605, -0.011124770157039165, 0.006816474720835686, 0.631582498550415, -0.3416438698768616, 0.007208538241684437, -0.35024702548980713, 0.006758037488907576, -0.0034952848218381405, 0.6076779365539551, -0.29893413186073303, 0.0012764083221554756, 0.003589028026908636, 0.014989335089921951, -0.05497235432267189, -2.8188095092773438, 0.5284563899040222, 0.2130315899848938, 1.217081904411316, 0.16614930331707, 0.23541812598705292, -0.15901868045330048, -2.959348678588867, -0.4705965518951416, -0.19427627325057983, 1.3103431463241577, -0.11773303151130676, 0.30125945806503296, 0.09593372046947479]} +{"t": 14.9332, "q": [-0.3110111951828003, -0.011150335893034935, 0.0068030827678740025, 0.6315910220146179, -0.3416438698768616, 0.007208538241684437, -0.3502214550971985, 0.006758037488907576, -0.003468500915914774, 0.6076523661613464, -0.298942506313324, 0.0012909574434161186, 0.0036425956059247255, 0.015073081478476524, -0.05506742373108864, -2.817718982696533, 0.5283605456352234, 0.21301960945129395, 1.2170220613479614, 0.16611334681510925, 0.23541812598705292, -0.15901868045330048, -2.959228754043579, -0.4702729880809784, -0.19430024921894073, 1.3103911876678467, -0.11772104352712631, 0.3013073801994324, 0.09592173993587494]} +{"t": 14.95, "q": [-0.3110026717185974, -0.011158858425915241, 0.006829866673797369, 0.6315739750862122, -0.3416438698768616, 0.007208538241684437, -0.3502129316329956, 0.006732471287250519, -0.003468500915914774, 0.6076523661613464, -0.29893413186073303, 0.0012764083221554756, 0.003655987558886409, 0.015095957554876804, -0.05514214187860489, -2.8165924549102783, 0.5282886028289795, 0.2130076140165329, 1.2169620990753174, 0.1661253273487091, 0.23541812598705292, -0.15901868045330048, -2.959096908569336, -0.47008123993873596, -0.1943361908197403, 1.3104510307312012, -0.11770906299352646, 0.3013073801994324, 0.09587380290031433]} +{"t": 14.9668, "q": [-0.3110111951828003, -0.01118442416191101, 0.0067896912805736065, 0.6315739750862122, -0.34164801239967346, 0.007201232016086578, -0.3502214550971985, 0.006698382552713156, -0.0034283252898603678, 0.6076694130897522, -0.298942506313324, 0.0012909574434161186, 0.003669379511848092, 0.01516446378082037, -0.0551973395049572, -2.815777540206909, 0.5282766222953796, 0.2130076140165329, 1.2168902158737183, 0.1661253273487091, 0.23540613055229187, -0.15903067588806152, -2.9589650630950928, -0.470045268535614, -0.1943122297525406, 1.3104510307312012, -0.11770906299352646, 0.3012953996658325, 0.09583784639835358]} +{"t": 14.9835, "q": [-0.31099414825439453, -0.01118442416191101, 0.0068030827678740025, 0.6315654516220093, -0.34164801239967346, 0.007201232016086578, -0.35024702548980713, 0.006681338418275118, -0.0034015413839370012, 0.6076268553733826, -0.2989465892314911, 0.0012837453978136182, 0.0036425956059247255, 0.015217739157378674, -0.055232539772987366, -2.815166473388672, 0.5283845067024231, 0.2130315899848938, 1.2168662548065186, 0.16613730788230896, 0.23544208705425262, -0.15901868045330048, -2.9589531421661377, -0.47008123993873596, -0.19430024921894073, 1.3104870319366455, -0.11774501204490662, 0.3013073801994324, 0.09578990936279297]} +{"t": 15.0002, "q": [-0.31098562479019165, -0.01118442416191101, 0.006829866673797369, 0.6315739750862122, -0.3416520357131958, 0.007208461407572031, -0.35024702548980713, 0.006681338418275118, -0.0033881496638059616, 0.6076012849807739, -0.2989218235015869, 0.0012980445753782988, 0.0035354604478925467, 0.015263374894857407, -0.055213019251823425, -2.8147828578948975, 0.5285522937774658, 0.21306754648685455, 1.2168781757354736, 0.16613730788230896, 0.23547804355621338, -0.15899471938610077, -2.958989143371582, -0.4701651334762573, -0.1943361908197403, 1.3105229139328003, -0.11772104352712631, 0.3013073801994324, 0.09577792882919312]} +{"t": 15.0169, "q": [-0.31102824211120605, -0.011201469227671623, 0.0068030827678740025, 0.6315654516220093, -0.3416602909564972, 0.007193830329924822, -0.3502981662750244, 0.006647250149399042, -0.0033881496638059616, 0.6075330972671509, -0.2989383935928345, 0.001298169489018619, 0.003481892868876457, 0.0153090450912714, -0.055253129452466965, -2.8145792484283447, 0.5287320613861084, 0.21304357051849365, 1.2168781757354736, 0.16617326438426971, 0.23546606302261353, -0.15899471938610077, -2.958989143371582, -0.4702969491481781, -0.19434818625450134, 1.310534954071045, -0.11772104352712631, 0.3012953996658325, 0.09571800380945206]} +{"t": 15.0338, "q": [-0.31102824211120605, -0.011201469227671623, 0.006816474720835686, 0.6315313577651978, -0.3416685163974762, 0.007179217878729105, -0.3503663241863251, 0.006647250149399042, -0.003347973804920912, 0.6075160503387451, -0.29894667863845825, 0.0012982320040464401, 0.0035086767747998238, 0.015331885777413845, -0.05527815222740173, -2.8143393993377686, 0.5288878083229065, 0.2130555510520935, 1.2168781757354736, 0.1661253273487091, 0.23546606302261353, -0.15895876288414001, -2.959096908569336, -0.4704767167568207, -0.19437214732170105, 1.3104749917984009, -0.11773303151130676, 0.3013073801994324, 0.0956580862402916]} +{"t": 15.0505, "q": [-0.31103676557540894, -0.011201469227671623, 0.0067896912805736065, 0.6315057873725891, -0.3416725695133209, 0.007186447270214558, -0.3503918945789337, 0.006638728082180023, -0.0033747577108442783, 0.6074990034103394, -0.2989673316478729, 0.001291163032874465, 0.0035086767747998238, 0.015347125008702278, -0.05531802400946617, -2.814255714416504, 0.529139518737793, 0.21306754648685455, 1.2168662548065186, 0.16611334681510925, 0.23546606302261353, -0.15897074341773987, -2.959204912185669, -0.4705725908279419, -0.1943601667881012, 1.3104510307312012, -0.11773303151130676, 0.3012953996658325, 0.09563411772251129]} +{"t": 15.0673, "q": [-0.31102824211120605, -0.01118442416191101, 0.006749515421688557, 0.6314375996589661, -0.3416643440723419, 0.0072010597214102745, -0.35041746497154236, 0.006638728082180023, -0.0034015413839370012, 0.607456386089325, -0.2989714443683624, 0.0012839330593124032, 0.003562244353815913, 0.015392813831567764, -0.0553780160844326, -2.8142316341400146, 0.5292473435401917, 0.21311548352241516, 1.2168422937393188, 0.1661253273487091, 0.23547804355621338, -0.1589108258485794, -2.9592528343200684, -0.47060853242874146, -0.1943601667881012, 1.3104151487350464, -0.11778096854686737, 0.3013073801994324, 0.09556221216917038]} +{"t": 15.0841, "q": [-0.31107938289642334, -0.01118442416191101, 0.006736123468726873, 0.6313864588737488, -0.3416602909564972, 0.007193830329924822, -0.35046008229255676, 0.006647250149399042, -0.0033881496638059616, 0.6074222922325134, -0.29898801445961, 0.0012840579729527235, 0.0036024199798703194, 0.015362396836280823, -0.05539765581488609, -2.814279556274414, 0.5294750332832336, 0.2130555510520935, 1.2167823314666748, 0.16613730788230896, 0.23549002408981323, -0.15889884531497955, -2.9592528343200684, -0.4705725908279419, -0.1943601667881012, 1.310439109802246, -0.11774501204490662, 0.3013073801994324, 0.09553824365139008]} +{"t": 15.1009, "q": [-0.31111347675323486, -0.011175902560353279, 0.00672273151576519, 0.6313183307647705, -0.34167659282684326, 0.00719367666170001, -0.3504941761493683, 0.006655772216618061, -0.0034015413839370012, 0.6073541045188904, -0.29899218678474426, 0.001291332533583045, 0.0036158119328320026, 0.015377623029053211, -0.05541764944791794, -2.814375400543213, 0.5295469760894775, 0.21306754648685455, 1.2166625261306763, 0.1661253273487091, 0.23547804355621338, -0.15889884531497955, -2.959240674972534, -0.47048869729042053, -0.1943601667881012, 1.3104510307312012, -0.11775700002908707, 0.3012953996658325, 0.09555022418498993]} +{"t": 15.1176, "q": [-0.3111560642719269, -0.01118442416191101, 0.006695947609841824, 0.6313098073005676, -0.34167659282684326, 0.00719367666170001, -0.35051971673965454, 0.006647250149399042, -0.0034149333368986845, 0.607311487197876, -0.2990002930164337, 0.0012624218361452222, 0.0036425956059247255, 0.015392853878438473, -0.05543764680624008, -2.814387321472168, 0.5295349955558777, 0.21311548352241516, 1.216470718383789, 0.1661253273487091, 0.23547804355621338, -0.15887486934661865, -2.959228754043579, -0.47045275568962097, -0.1943601667881012, 1.310439109802246, -0.11775700002908707, 0.3012714385986328, 0.09557419270277023]} +{"t": 15.1345, "q": [-0.31116458773612976, -0.01118442416191101, 0.006695947609841824, 0.6313098073005676, -0.34166836738586426, 0.007208289112895727, -0.3505452871322632, 0.006647250149399042, -0.0034015413839370012, 0.6072859168052673, -0.2990044951438904, 0.0012696963967755437, 0.0036425956059247255, 0.015392853878438473, -0.05543764680624008, -2.814375400543213, 0.529594898223877, 0.2131034880876541, 1.216171145439148, 0.1661253273487091, 0.23546606302261353, -0.1588628888130188, -2.9591689109802246, -0.47045275568962097, -0.1943601667881012, 1.3104151487350464, -0.11778096854686737, 0.3013073801994324, 0.09556221216917038]} +{"t": 15.1513, "q": [-0.31117311120033264, -0.01118442416191101, 0.00672273151576519, 0.6312757134437561, -0.34167659282684326, 0.00719367666170001, -0.3505367636680603, 0.006647250149399042, -0.0034015413839370012, 0.6072859168052673, -0.2989962100982666, 0.0012696338817477226, 0.0036292036529630423, 0.015370028093457222, -0.05543249845504761, -2.814375400543213, 0.5296308398246765, 0.2131034880876541, 1.2160992622375488, 0.16617326438426971, 0.23547804355621338, -0.1588628888130188, -2.959204912185669, -0.47045275568962097, -0.19437214732170105, 1.3104151487350464, -0.11778096854686737, 0.3012714385986328, 0.09553824365139008]} +{"t": 15.168, "q": [-0.31116458773612976, -0.011201469227671623, 0.006736123468726873, 0.6312586665153503, -0.34166836738586426, 0.007208289112895727, -0.3505367636680603, 0.006630206014961004, -0.0034015413839370012, 0.6072859168052673, -0.2990003824234009, 0.0012769084423780441, 0.0036024199798703194, 0.015370028093457222, -0.05543249845504761, -2.814363479614258, 0.5296907424926758, 0.2130795270204544, 1.2160632610321045, 0.16616128385066986, 0.23547804355621338, -0.1588389277458191, -2.9592528343200684, -0.47051265835762024, -0.1943601667881012, 1.3104031085968018, -0.11778096854686737, 0.3012714385986328, 0.09550229460000992]} +{"t": 15.1847, "q": [-0.31117311120033264, -0.011218513362109661, 0.00676290737465024, 0.6312671899795532, -0.34166425466537476, 0.007215595804154873, -0.35051971673965454, 0.006647250149399042, -0.003361365757882595, 0.6073029637336731, -0.29898375272750854, 0.0012622969225049019, 0.003562244353815913, 0.015385241247713566, -0.05543261766433716, -2.814279556274414, 0.5297147631645203, 0.21313944458961487, 1.216015338897705, 0.16616128385066986, 0.23547804355621338, -0.15882693231105804, -2.9591927528381348, -0.47063252329826355, -0.19434818625450134, 1.3104151487350464, -0.11779294908046722, 0.30128341913223267, 0.09546633809804916]} +{"t": 15.2014, "q": [-0.3111816346645355, -0.011235557496547699, 0.0067896912805736065, 0.6312671899795532, -0.34166014194488525, 0.007222920190542936, -0.3505367636680603, 0.006638728082180023, -0.003347973804920912, 0.6073029637336731, -0.29897964000701904, 0.0012695089681074023, 0.003562244353815913, 0.015392845496535301, -0.055427707731723785, -2.8142197132110596, 0.5297626852989197, 0.21315142512321472, 1.2159794569015503, 0.1661253273487091, 0.23547804355621338, -0.15882693231105804, -2.9591927528381348, -0.47070440649986267, -0.19434818625450134, 1.3104151487350464, -0.11778096854686737, 0.3012714385986328, 0.09545435756444931]} +{"t": 15.2182, "q": [-0.31116458773612976, -0.011209990829229355, 0.0068030827678740025, 0.6312757134437561, -0.34166425466537476, 0.007215595804154873, -0.3505367636680603, 0.006655772216618061, -0.003347973804920912, 0.6073285341262817, -0.29897964000701904, 0.0012695089681074023, 0.003562244353815913, 0.015408040955662727, -0.05539800971746445, -2.8141837120056152, 0.5297507047653198, 0.21306754648685455, 1.2160273790359497, 0.16613730788230896, 0.23546606302261353, -0.15880297124385834, -2.9591808319091797, -0.4708002805709839, -0.19439612329006195, 1.3103911876678467, -0.11778096854686737, 0.3012714385986328, 0.0954064205288887]} +{"t": 15.235, "q": [-0.31117311120033264, -0.011227035894989967, 0.0068030827678740025, 0.6312671899795532, -0.34166014194488525, 0.007222920190542936, -0.3505452871322632, 0.006647250149399042, -0.003361365757882595, 0.6073370575904846, -0.29897555708885193, 0.0012767210137099028, 0.003589028026908636, 0.015408040955662727, -0.05539800971746445, -2.8141238689422607, 0.5298345685005188, 0.2131034880876541, 1.21600341796875, 0.16613730788230896, 0.23550200462341309, -0.15880297124385834, -2.9591927528381348, -0.470824271440506, -0.1944081038236618, 1.3103911876678467, -0.11778096854686737, 0.3012714385986328, 0.0953584834933281]} +{"t": 15.2518, "q": [-0.31116458773612976, -0.011235557496547699, 0.006816474720835686, 0.6312671899795532, -0.34166020154953003, 0.00720836641266942, -0.35051971673965454, 0.006647250149399042, -0.0033747577108442783, 0.6073711514472961, -0.29897135496139526, 0.0012694464530795813, 0.003575636073946953, 0.015400422737002373, -0.05538304150104523, -2.8139920234680176, 0.5299304723739624, 0.21312746405601501, 1.21600341796875, 0.16616128385066986, 0.23550200462341309, -0.15879099071025848, -2.9593007564544678, -0.47086021304130554, -0.1944081038236618, 1.3103911876678467, -0.11778096854686737, 0.3012714385986328, 0.09525062143802643]} +{"t": 15.2685, "q": [-0.3111560642719269, -0.011227035894989967, 0.0068030827678740025, 0.6312501430511475, -0.34166425466537476, 0.007215595804154873, -0.3505282402038574, 0.006638728082180023, -0.003361365757882595, 0.6074308156967163, -0.29897555708885193, 0.0012767210137099028, 0.003575636073946953, 0.015408026985824108, -0.055378131568431854, -2.8138840198516846, 0.5299065113067627, 0.21312746405601501, 1.21600341796875, 0.1660773903131485, 0.23550200462341309, -0.15879099071025848, -2.959228754043579, -0.47086021304130554, -0.19439612329006195, 1.3103911876678467, -0.11776898056268692, 0.3012953996658325, 0.09514276683330536]} +{"t": 15.2852, "q": [-0.31116458773612976, -0.011218513362109661, 0.0068030827678740025, 0.6312671899795532, -0.3416561782360077, 0.007201137021183968, -0.3505282402038574, 0.006655772216618061, -0.0034015413839370012, 0.6074478626251221, -0.29897555708885193, 0.0012767210137099028, 0.003562244353815913, 0.015392818488180637, -0.0553879514336586, -2.813812255859375, 0.5300622582435608, 0.21313944458961487, 1.2160392999649048, 0.1661253273487091, 0.23550200462341309, -0.15876701474189758, -2.9592528343200684, -0.47090813517570496, -0.1944081038236618, 1.3103551864624023, -0.11778096854686737, 0.30128341913223267, 0.0950828418135643]} +{"t": 15.3019, "q": [-0.3111475706100464, -0.011227035894989967, 0.0068030827678740025, 0.6312586665153503, -0.3416520357131958, 0.007208461407572031, -0.35051971673965454, 0.00666429428383708, -0.0034015413839370012, 0.607456386089325, -0.29897135496139526, 0.0012694464530795813, 0.003562244353815913, 0.015423236414790154, -0.05536831170320511, -2.8137881755828857, 0.5301342010498047, 0.21311548352241516, 1.2160513401031494, 0.16611334681510925, 0.23551400005817413, -0.15876701474189758, -2.9591808319091797, -0.4709201455116272, -0.19446802139282227, 1.3103911876678467, -0.11780493706464767, 0.3012714385986328, 0.09504689276218414]} +{"t": 15.3187, "q": [-0.3111560642719269, -0.011218513362109661, 0.006816474720835686, 0.6312671899795532, -0.3416561782360077, 0.007201137021183968, -0.35055381059646606, 0.006672816351056099, -0.0034015413839370012, 0.6075075268745422, -0.29897964000701904, 0.0012695089681074023, 0.0035354604478925467, 0.015400419011712074, -0.05537310615181923, -2.8136444091796875, 0.5302780270576477, 0.21311548352241516, 1.2160392999649048, 0.16611334681510925, 0.235525980591774, -0.15875503420829773, -2.959240674972534, -0.47090813517570496, -0.19444406032562256, 1.3103911876678467, -0.11779294908046722, 0.3013193607330322, 0.09499895572662354]} +{"t": 15.3354, "q": [-0.3111560642719269, -0.011227035894989967, 0.0068030827678740025, 0.6312671899795532, -0.34166020154953003, 0.00720836641266942, -0.3505452871322632, 0.00666429428383708, -0.0034015413839370012, 0.6075160503387451, -0.29897964000701904, 0.0012695089681074023, 0.003562244353815913, 0.015400422737002373, -0.05538304150104523, -2.8135485649108887, 0.530194103717804, 0.21311548352241516, 1.2160513401031494, 0.1661253273487091, 0.23553796112537384, -0.15874305367469788, -2.9592885971069336, -0.4709441065788269, -0.19446802139282227, 1.3103911876678467, -0.11778096854686737, 0.30125945806503296, 0.09496299922466278]} +{"t": 15.3521, "q": [-0.31117311120033264, -0.011209990829229355, 0.0068030827678740025, 0.6312586665153503, -0.3416643440723419, 0.0072010597214102745, -0.3505708575248718, 0.006681338418275118, -0.0034015413839370012, 0.6075075268745422, -0.29898801445961, 0.0012840579729527235, 0.0035220684949308634, 0.015408026985824108, -0.055378131568431854, -2.8135006427764893, 0.5302540063858032, 0.2131034880876541, 1.2160992622375488, 0.16613730788230896, 0.23556193709373474, -0.15874305367469788, -2.959204912185669, -0.4709201455116272, -0.19449199736118317, 1.3103911876678467, -0.11779294908046722, 0.3012714385986328, 0.09487911313772202]} +{"t": 15.3689, "q": [-0.31116458773612976, -0.011209990829229355, 0.0068030827678740025, 0.6312757134437561, -0.3416643440723419, 0.0072010597214102745, -0.35059642791748047, 0.006672816351056099, -0.0034015413839370012, 0.6075160503387451, -0.2989838421344757, 0.0012767835287377238, 0.0035086767747998238, 0.015415627509355545, -0.055363286286592484, -2.8134286403656006, 0.5302540063858032, 0.21313944458961487, 1.2160992622375488, 0.16613730788230896, 0.23556193709373474, -0.15875503420829773, -2.9591927528381348, -0.47093212604522705, -0.19448000192642212, 1.3104031085968018, -0.11778096854686737, 0.3012714385986328, 0.09485514461994171]} +{"t": 15.3856, "q": [-0.31117311120033264, -0.011209990829229355, 0.0067896912805736065, 0.6312586665153503, -0.34166836738586426, 0.007208289112895727, -0.3506219983100891, 0.006681338418275118, -0.0033881496638059616, 0.6075075268745422, -0.29899218678474426, 0.001291332533583045, 0.003562244353815913, 0.015392813831567764, -0.0553780160844326, -2.8132967948913574, 0.5302420258522034, 0.21312746405601501, 1.216111183166504, 0.16614930331707, 0.2355739176273346, -0.15874305367469788, -2.9592885971069336, -0.4709441065788269, -0.19449199736118317, 1.3103911876678467, -0.11780493706464767, 0.3012714385986328, 0.09481918811798096]} +{"t": 15.4024, "q": [-0.3111986815929413, -0.011209990829229355, 0.0068030827678740025, 0.6312671899795532, -0.34166836738586426, 0.007208289112895727, -0.3506219983100891, 0.006672816351056099, -0.0033747577108442783, 0.6075075268745422, -0.29899218678474426, 0.001291332533583045, 0.0034952848218381405, 0.015415632165968418, -0.05537322163581848, -2.813236951828003, 0.5301342010498047, 0.21313944458961487, 1.216111183166504, 0.1661013662815094, 0.23556193709373474, -0.15874305367469788, -2.9591808319091797, -0.4711957573890686, -0.19449199736118317, 1.3103911876678467, -0.11778096854686737, 0.30125945806503296, 0.0947592705488205]} +{"t": 15.4192, "q": [-0.31120720505714417, -0.011209990829229355, 0.0068030827678740025, 0.6312586665153503, -0.34166425466537476, 0.007215595804154873, -0.35064756870269775, 0.006672816351056099, -0.0033747577108442783, 0.6074990034103394, -0.2989920973777771, 0.001276845927350223, 0.0035220684949308634, 0.015415627509355545, -0.055363286286592484, -2.8132009506225586, 0.5302180647850037, 0.21319936215877533, 1.2161471843719482, 0.1661253273487091, 0.23556193709373474, -0.15871907770633698, -2.9591808319091797, -0.47148337960243225, -0.19450397789478302, 1.3103911876678467, -0.11778096854686737, 0.30128341913223267, 0.09474728256464005]} +{"t": 15.4359, "q": [-0.3112242519855499, -0.011209990829229355, 0.006829866673797369, 0.6312586665153503, -0.34166836738586426, 0.007208289112895727, -0.35065609216690063, 0.006655772216618061, -0.003347973804920912, 0.6074990034103394, -0.2989920377731323, 0.0012623593211174011, 0.0034551091957837343, 0.015400405041873455, -0.055353228002786636, -2.8131649494171143, 0.5302060842514038, 0.21319936215877533, 1.2161471843719482, 0.1661013662815094, 0.23558589816093445, -0.15871907770633698, -2.9592647552490234, -0.47180697321891785, -0.19459985196590424, 1.3103911876678467, -0.11780493706464767, 0.3012714385986328, 0.09469934552907944]} +{"t": 15.4526, "q": [-0.3112412989139557, -0.011218513362109661, 0.006829866673797369, 0.6312586665153503, -0.34166836738586426, 0.007208289112895727, -0.35069867968559265, 0.00666429428383708, -0.003347973804920912, 0.6075075268745422, -0.29899218678474426, 0.001291332533583045, 0.0034551091957837343, 0.0154156144708395, -0.05534340813755989, -2.8130571842193604, 0.5302420258522034, 0.21319936215877533, 1.2161352634429932, 0.16608937084674835, 0.2355499416589737, -0.15871907770633698, -2.959216833114624, -0.4721904695034027, -0.19459985196590424, 1.3104151487350464, -0.11776898056268692, 0.3012714385986328, 0.09467537701129913]} +{"t": 15.4694, "q": [-0.31126686930656433, -0.011209990829229355, 0.0068566505797207355, 0.6312671899795532, -0.34166836738586426, 0.007208289112895727, -0.35074129700660706, 0.006655772216618061, -0.003347973804920912, 0.6074990034103394, -0.2989920973777771, 0.001276845927350223, 0.0035220684949308634, 0.015415600501000881, -0.0553235299885273, -2.8129732608795166, 0.5303139686584473, 0.21319936215877533, 1.2161471843719482, 0.16611334681510925, 0.23556193709373474, -0.15870709717273712, -2.9591927528381348, -0.4725979268550873, -0.1946118324995041, 1.3104151487350464, -0.11776898056268692, 0.3012953996658325, 0.09463942795991898]} +{"t": 15.4861, "q": [-0.3113180100917816, -0.011218513362109661, 0.0068566505797207355, 0.6312586665153503, -0.34166836738586426, 0.007208289112895727, -0.3508009612560272, 0.00666429428383708, -0.003334582084789872, 0.6074990034103394, -0.29898801445961, 0.0012840579729527235, 0.00354885240085423, 0.015377542935311794, -0.05529838427901268, -2.8129494190216064, 0.5303139686584473, 0.21323531866073608, 1.2161471843719482, 0.16608937084674835, 0.23558589816093445, -0.15871907770633698, -2.9589650630950928, -0.472849577665329, -0.1946597695350647, 1.3104031085968018, -0.11778096854686737, 0.3012714385986328, 0.09460347145795822]} +{"t": 15.5029, "q": [-0.3113776445388794, -0.011227035894989967, 0.006816474720835686, 0.6312671899795532, -0.34166836738586426, 0.007208289112895727, -0.35082653164863586, 0.006647250149399042, -0.003347973804920912, 0.6075160503387451, -0.2990003824234009, 0.0012769084423780441, 0.0036024199798703194, 0.01540793851017952, -0.0552389919757843, -2.812889337539673, 0.5303019881248474, 0.21321135759353638, 1.2161471843719482, 0.16611334681510925, 0.23558589816093445, -0.15869511663913727, -2.9589412212371826, -0.472993403673172, -0.19462381303310394, 1.3104270696640015, -0.11776898056268692, 0.30125945806503296, 0.09460347145795822]} +{"t": 15.5196, "q": [-0.3113861680030823, -0.011227035894989967, 0.006829866673797369, 0.6312586665153503, -0.3416764736175537, 0.0072227660566568375, -0.3508435785770416, 0.006647250149399042, -0.003347973804920912, 0.6074904799461365, -0.29899629950523376, 0.0012841204879805446, 0.0036425956059247255, 0.015385045669972897, -0.05513446033000946, -2.812889337539673, 0.5303738713264465, 0.21321135759353638, 1.2161352634429932, 0.1660773903131485, 0.2355739176273346, -0.15868312120437622, -2.958893299102783, -0.47307729721069336, -0.19462381303310394, 1.3104270696640015, -0.11778096854686737, 0.3012953996658325, 0.09457950294017792]} +{"t": 15.5364, "q": [-0.3114543557167053, -0.01124407909810543, 0.006816474720835686, 0.6312586665153503, -0.3416764736175537, 0.0072227660566568375, -0.3509117364883423, 0.006647250149399042, -0.0033747577108442783, 0.6075075268745422, -0.29900866746902466, 0.0012769709574058652, 0.0036292036529630423, 0.015430616214871407, -0.05502549186348915, -2.8128535747528076, 0.5303499102592468, 0.21319936215877533, 1.2161352634429932, 0.1661253273487091, 0.23558589816093445, -0.15869511663913727, -2.9588332176208496, -0.47314921021461487, -0.1946597695350647, 1.3104510307312012, -0.11779294908046722, 0.3013073801994324, 0.09457950294017792]} +{"t": 15.5532, "q": [-0.3114628791809082, -0.011235557496547699, 0.006829866673797369, 0.6312501430511475, -0.34166836738586426, 0.007208289112895727, -0.35097140073776245, 0.006655772216618061, -0.003361365757882595, 0.6075330972671509, -0.2990044951438904, 0.0012696963967755437, 0.0036158119328320026, 0.015445784665644169, -0.05495603755116463, -2.812793493270874, 0.5303139686584473, 0.21322333812713623, 1.2161352634429932, 0.1661013662815094, 0.23558589816093445, -0.15869511663913727, -2.9588093757629395, -0.47318515181541443, -0.1946597695350647, 1.3104749917984009, -0.11776898056268692, 0.30128341913223267, 0.09456752240657806]} +{"t": 15.5699, "q": [-0.3115054965019226, -0.01124407909810543, 0.006829866673797369, 0.6312586665153503, -0.3416723608970642, 0.007230072282254696, -0.3509969711303711, 0.006655772216618061, -0.003361365757882595, 0.6075330972671509, -0.29901278018951416, 0.0012697589118033648, 0.003589028026908636, 0.015506553463637829, -0.05481737107038498, -2.8127217292785645, 0.5302900075912476, 0.21318738162517548, 1.2161352634429932, 0.16613730788230896, 0.2355978786945343, -0.15868312120437622, -2.9587974548339844, -0.4731731712818146, -0.19467175006866455, 1.3104510307312012, -0.11776898056268692, 0.30128341913223267, 0.09457950294017792]} +{"t": 15.5866, "q": [-0.3115140199661255, -0.011235557496547699, 0.006829866673797369, 0.6312416195869446, -0.34167227149009705, 0.007244626525789499, -0.35101401805877686, 0.00666429428383708, -0.003361365757882595, 0.6075501441955566, -0.2990168035030365, 0.001248042332008481, 0.003575636073946953, 0.015536903403699398, -0.054698362946510315, -2.8126256465911865, 0.5302659869194031, 0.21319936215877533, 1.2161592245101929, 0.1661253273487091, 0.23560987412929535, -0.15867114067077637, -2.95878529548645, -0.47314921021461487, -0.1946597695350647, 1.3104630708694458, -0.11776898056268692, 0.30128341913223267, 0.09455553442239761]} +{"t": 15.6034, "q": [-0.31152254343032837, -0.011235557496547699, 0.006829866673797369, 0.6312416195869446, -0.3416764736175537, 0.0072227660566568375, -0.35101401805877686, 0.006655772216618061, -0.003361365757882595, 0.6075501441955566, -0.2990168631076813, 0.0012625468662008643, 0.0036158119328320026, 0.015605274587869644, -0.054554834961891174, -2.8125178813934326, 0.5302900075912476, 0.21319936215877533, 1.216171145439148, 0.16611334681510925, 0.2355978786945343, -0.15868312120437622, -2.9588093757629395, -0.47310125827789307, -0.19467175006866455, 1.3104989528656006, -0.11778096854686737, 0.30125945806503296, 0.09456752240657806]} +{"t": 15.6201, "q": [-0.31153956055641174, -0.011235557496547699, 0.0068566505797207355, 0.6312416195869446, -0.3416682481765747, 0.007237397134304047, -0.35102254152297974, 0.006672816351056099, -0.003361365757882595, 0.6076012849807739, -0.29902514815330505, 0.001262591453269124, 0.0036425956059247255, 0.015620393678545952, -0.05441581830382347, -2.8123860359191895, 0.5302659869194031, 0.21321135759353638, 1.216231107711792, 0.16611334681510925, 0.2356218546628952, -0.15867114067077637, -2.9588093757629395, -0.47307729721069336, -0.19469572603702545, 1.3104749917984009, -0.11778096854686737, 0.3012714385986328, 0.09456752240657806]} +{"t": 15.6368, "q": [-0.31153956055641174, -0.011235557496547699, 0.0068566505797207355, 0.6312416195869446, -0.3416682481765747, 0.007237397134304047, -0.3510395884513855, 0.00666429428383708, -0.003361365757882595, 0.6076268553733826, -0.2990208864212036, 0.0012408302864059806, 0.0036425956059247255, 0.015612718649208546, -0.054311398416757584, -2.8121702671051025, 0.5302659869194031, 0.21318738162517548, 1.216243028640747, 0.1661253273487091, 0.23560987412929535, -0.15867114067077637, -2.9587974548339844, -0.47305333614349365, -0.1947077065706253, 1.3105229139328003, -0.11778096854686737, 0.3012714385986328, 0.09456752240657806]} +{"t": 15.6535, "q": [-0.31158217787742615, -0.01124407909810543, 0.006870042532682419, 0.6312416195869446, -0.3416723608970642, 0.007230072282254696, -0.35105663537979126, 0.006655772216618061, -0.003361365757882595, 0.6076353788375854, -0.2990208864212036, 0.0012408302864059806, 0.003589028026908636, 0.01565067656338215, -0.05419742688536644, -2.8119547367095947, 0.5302780270576477, 0.21322333812713623, 1.2162909507751465, 0.1661253273487091, 0.2356458157300949, -0.1586591601371765, -2.95876145362854, -0.4730892777442932, -0.1947077065706253, 1.3104989528656006, -0.11775700002908707, 0.3012714385986328, 0.09455553442239761]} +{"t": 15.6703, "q": [-0.31161627173423767, -0.01124407909810543, 0.006883434485644102, 0.6312416195869446, -0.3416723608970642, 0.007230072282254696, -0.3510906994342804, 0.006681338418275118, -0.0033747577108442783, 0.6076439023017883, -0.2990250587463379, 0.001248104847036302, 0.003562244353815913, 0.01567341573536396, -0.05407338961958885, -2.811750888824463, 0.5303139686584473, 0.21316342055797577, 1.2163269519805908, 0.1661253273487091, 0.2356458157300949, -0.15867114067077637, -2.958749532699585, -0.4730892777442932, -0.1947556436061859, 1.3104989528656006, -0.11776898056268692, 0.3013073801994324, 0.09456752240657806]} +{"t": 15.687, "q": [-0.31158217787742615, -0.011252601630985737, 0.006883434485644102, 0.6312416195869446, -0.3416723608970642, 0.007230072282254696, -0.35110774636268616, 0.006672816351056099, -0.0033747577108442783, 0.6076608896255493, -0.2990332543849945, 0.0012336806394159794, 0.003589028026908636, 0.015718989074230194, -0.05396445095539093, -2.811511278152466, 0.5302780270576477, 0.21318738162517548, 1.2162909507751465, 0.1661013662815094, 0.2356697916984558, -0.1586351841688156, -2.9587135314941406, -0.4730653166770935, -0.19479160010814667, 1.3104989528656006, -0.11776898056268692, 0.3012953996658325, 0.09455553442239761]} +{"t": 15.7038, "q": [-0.31163331866264343, -0.011235557496547699, 0.006883434485644102, 0.6312245726585388, -0.3416764736175537, 0.0072227660566568375, -0.3511333167552948, 0.006681338418275118, -0.0033747577108442783, 0.607686460018158, -0.29903727769851685, 0.001211981987580657, 0.003562244353815913, 0.0157493744045496, -0.053895141929388046, -2.811187744140625, 0.5302659869194031, 0.21316342055797577, 1.2163150310516357, 0.1661253273487091, 0.23565781116485596, -0.1586591601371765, -2.958737373352051, -0.4730892777442932, -0.19476762413978577, 1.3104989528656006, -0.11775700002908707, 0.30128341913223267, 0.09456752240657806]} +{"t": 15.7205, "q": [-0.3116418421268463, -0.011235557496547699, 0.006896826438605785, 0.6312160491943359, -0.3416723608970642, 0.007230072282254696, -0.3511333167552948, 0.006672816351056099, -0.0033747577108442783, 0.6077120304107666, -0.2990456521511078, 0.0012265311088413, 0.0036292036529630423, 0.015764541923999786, -0.053825702518224716, -2.8109121322631836, 0.5303139686584473, 0.21322333812713623, 1.2163150310516357, 0.1661013662815094, 0.23565781116485596, -0.15864717960357666, -2.9587254524230957, -0.47307729721069336, -0.19479160010814667, 1.3105229139328003, -0.11774501204490662, 0.30128341913223267, 0.09455553442239761]} +{"t": 15.7373, "q": [-0.31167593598365784, -0.01124407909810543, 0.006937001831829548, 0.6312245726585388, -0.34167227149009705, 0.007244626525789499, -0.35120150446891785, 0.006672816351056099, -0.003361365757882595, 0.6077376008033752, -0.29904982447624207, 0.0012338056694716215, 0.0036024199798703194, 0.015749311074614525, -0.05380569398403168, -2.8105883598327637, 0.5303139686584473, 0.21317540109157562, 1.2162909507751465, 0.1661253273487091, 0.23565781116485596, -0.1586591601371765, -2.9587135314941406, -0.4730653166770935, -0.19480358064174652, 1.3105109930038452, -0.11774501204490662, 0.30125945806503296, 0.09455553442239761]} +{"t": 15.754, "q": [-0.3116844594478607, -0.01124407909810543, 0.006937001831829548, 0.6312160491943359, -0.3416723608970642, 0.007230072282254696, -0.3512270748615265, 0.006681338418275118, -0.0033747577108442783, 0.6077631711959839, -0.2990580201148987, 0.0012193815782666206, 0.003589028026908636, 0.015772106125950813, -0.05376116558909416, -2.810372829437256, 0.5303019881248474, 0.21323531866073608, 1.2162909507751465, 0.1660773903131485, 0.23563383519649506, -0.1586351841688156, -2.9587013721466064, -0.47305333614349365, -0.19480358064174652, 1.3105109930038452, -0.11773303151130676, 0.3012714385986328, 0.09455553442239761]} +{"t": 15.7707, "q": [-0.3116844594478607, -0.011252601630985737, 0.006937001831829548, 0.6311990022659302, -0.3416723608970642, 0.007230072282254696, -0.3512185513973236, 0.006672816351056099, -0.003361365757882595, 0.6077887415885925, -0.2990662157535553, 0.0012049395591020584, 0.003669379511848092, 0.015779701992869377, -0.05374632030725479, -2.810157060623169, 0.5303259491920471, 0.21319936215877533, 1.2162669897079468, 0.16611334681510925, 0.2356458157300949, -0.1586351841688156, -2.9586775302886963, -0.47302934527397156, -0.19480358064174652, 1.3105229139328003, -0.11773303151130676, 0.3012714385986328, 0.09457950294017792]} +{"t": 15.7874, "q": [-0.3116844594478607, -0.01124407909810543, 0.006923609878867865, 0.6311819553375244, -0.3416723608970642, 0.007230072282254696, -0.3512185513973236, 0.006681338418275118, -0.0033747577108442783, 0.6077802181243896, -0.29907041788101196, 0.001212232164107263, 0.0036292036529630423, 0.015779701992869377, -0.05374632030725479, -2.809941291809082, 0.5303019881248474, 0.21318738162517548, 1.216231107711792, 0.16611334681510925, 0.2356218546628952, -0.1586351841688156, -2.9586775302886963, -0.4730413258075714, -0.19480358064174652, 1.3105229139328003, -0.11775700002908707, 0.30128341913223267, 0.09457950294017792]} +{"t": 15.8043, "q": [-0.3116844594478607, -0.011235557496547699, 0.006910218391567469, 0.6311819553375244, -0.3416682481765747, 0.007237397134304047, -0.35123559832572937, 0.006681338418275118, -0.0033747577108442783, 0.6078398823738098, -0.2990786135196686, 0.0011978080729022622, 0.0036425956059247255, 0.015810132026672363, -0.053746577352285385, -2.809833526611328, 0.5302780270576477, 0.21318738162517548, 1.216231107711792, 0.16611334681510925, 0.2356218546628952, -0.1586351841688156, -2.9585697650909424, -0.4729694426059723, -0.19479160010814667, 1.3104989528656006, -0.11774501204490662, 0.3012714385986328, 0.09456752240657806]} +{"t": 15.8211, "q": [-0.31166741251945496, -0.01124407909810543, 0.006950393784791231, 0.6311734318733215, -0.34167227149009705, 0.007244626525789499, -0.35123559832572937, 0.006681338418275118, -0.0033747577108442783, 0.6078398823738098, -0.29908278584480286, 0.0012050826335325837, 0.003669379511848092, 0.015787320211529732, -0.05376129224896431, -2.8096537590026855, 0.5302780270576477, 0.21318738162517548, 1.2162190675735474, 0.16608937084674835, 0.23563383519649506, -0.1586351841688156, -2.9585697650909424, -0.4730413258075714, -0.19480358064174652, 1.3104749917984009, -0.11773303151130676, 0.30125945806503296, 0.09456752240657806]} +{"t": 15.8378, "q": [-0.31167593598365784, -0.011278167366981506, 0.006950393784791231, 0.6311734318733215, -0.3416764736175537, 0.0072227660566568375, -0.35123559832572937, 0.006672816351056099, -0.003334582084789872, 0.60789954662323, -0.29908689856529236, 0.0011978705879300833, 0.003669379511848092, 0.015794923529028893, -0.053756386041641235, -2.8095219135284424, 0.5302900075912476, 0.21317540109157562, 1.2162190675735474, 0.16611334681510925, 0.2356458157300949, -0.1586351841688156, -2.9586055278778076, -0.47300538420677185, -0.19479160010814667, 1.3105109930038452, -0.11774501204490662, 0.3012714385986328, 0.09459149092435837]} +{"t": 15.8545, "q": [-0.31167593598365784, -0.011261124163866043, 0.006937001831829548, 0.6311819553375244, -0.3416682481765747, 0.007237397134304047, -0.35123559832572937, 0.006681338418275118, -0.0033747577108442783, 0.607967734336853, -0.2990909814834595, 0.0011906585423275828, 0.0036292036529630423, 0.015794923529028893, -0.053756386041641235, -2.8094260692596436, 0.5302540063858032, 0.21317540109157562, 1.216171145439148, 0.16608937084674835, 0.23560987412929535, -0.15864717960357666, -2.9586055278778076, -0.472993403673172, -0.19479160010814667, 1.3104989528656006, -0.11773303151130676, 0.3012714385986328, 0.09459149092435837]} +{"t": 15.8712, "q": [-0.3116588890552521, -0.011252601630985737, 0.006963785737752914, 0.6311734318733215, -0.34166425466537476, 0.007215595804154873, -0.35125264525413513, 0.006681338418275118, -0.003347973804920912, 0.6079933047294617, -0.29908689856529236, 0.0011978705879300833, 0.003655987558886409, 0.015787320211529732, -0.05376129224896431, -2.8093299865722656, 0.5302900075912476, 0.21319936215877533, 1.216171145439148, 0.1661253273487091, 0.2356218546628952, -0.15862320363521576, -2.9585936069488525, -0.4729454517364502, -0.19483953714370728, 1.3104989528656006, -0.11775700002908707, 0.30125945806503296, 0.09459149092435837]} +{"t": 15.888, "q": [-0.3116588890552521, -0.011261124163866043, 0.006977177690714598, 0.6311734318733215, -0.34166425466537476, 0.007215595804154873, -0.35132932662963867, 0.006681338418275118, -0.003334582084789872, 0.6080870032310486, -0.2990909814834595, 0.0011906585423275828, 0.0036827712319791317, 0.01577211171388626, -0.05377110093832016, -2.809258222579956, 0.5302540063858032, 0.21322333812713623, 1.216171145439148, 0.1661253273487091, 0.23560987412929535, -0.1586351841688156, -2.958509683609009, -0.47295746207237244, -0.19482755661010742, 1.3105229139328003, -0.11773303151130676, 0.3012474775314331, 0.09459149092435837]} +{"t": 15.9047, "q": [-0.3116418421268463, -0.011278167366981506, 0.0070307450369000435, 0.6311819553375244, -0.3416682481765747, 0.007237397134304047, -0.35134637355804443, 0.00666429428383708, -0.0032676225528120995, 0.608129620552063, -0.299095094203949, 0.0011834463803097606, 0.0036827712319791317, 0.015787333250045776, -0.0537811703979969, -2.8091862201690674, 0.5302780270576477, 0.21318738162517548, 1.216171145439148, 0.1661013662815094, 0.23560987412929535, -0.1586351841688156, -2.9584617614746094, -0.47295746207237244, -0.19482755661010742, 1.3104989528656006, -0.11773303151130676, 0.3012714385986328, 0.09457950294017792]} +{"t": 15.9214, "q": [-0.3116418421268463, -0.011261124163866043, 0.00705752894282341, 0.6311734318733215, -0.34166425466537476, 0.007215595804154873, -0.35138046741485596, 0.006647250149399042, -0.0032810145057737827, 0.6081892848014832, -0.2990909814834595, 0.0011906585423275828, 0.0036827712319791317, 0.015772121027112007, -0.053781040012836456, -2.809114456176758, 0.5302780270576477, 0.21321135759353638, 1.216171145439148, 0.1661013662815094, 0.2356218546628952, -0.1586112231016159, -2.9584617614746094, -0.4729454517364502, -0.19483953714370728, 1.3105828762054443, -0.11772104352712631, 0.3012714385986328, 0.09459149092435837]} +{"t": 15.9381, "q": [-0.3116588890552521, -0.011286689899861813, 0.00705752894282341, 0.6311819553375244, -0.34166014194488525, 0.007222920190542936, -0.3513975143432617, 0.006630206014961004, -0.003240838646888733, 0.6082148551940918, -0.299095094203949, 0.0011834463803097606, 0.003736338810995221, 0.015779737383127213, -0.05379601567983627, -2.8090784549713135, 0.5302659869194031, 0.21321135759353638, 1.2161951065063477, 0.1661013662815094, 0.23560987412929535, -0.1586351841688156, -2.958425760269165, -0.47295746207237244, -0.19482755661010742, 1.3105589151382446, -0.11774501204490662, 0.30128341913223267, 0.09457950294017792]} +{"t": 15.9549, "q": [-0.31163331866264343, -0.011320779100060463, 0.007111096754670143, 0.6311819553375244, -0.34166014194488525, 0.007222920190542936, -0.3514656722545624, 0.006613161414861679, -0.003240838646888733, 0.6083256602287292, -0.2990909814834595, 0.0011906585423275828, 0.0037229470908641815, 0.015772134065628052, -0.05380091816186905, -2.809018611907959, 0.5302780270576477, 0.21317540109157562, 1.2161951065063477, 0.16611334681510925, 0.2356218546628952, -0.15862320363521576, -2.9584498405456543, -0.47295746207237244, -0.19480358064174652, 1.3105709552764893, -0.11772104352712631, 0.3012714385986328, 0.09457950294017792]} +{"t": 15.9716, "q": [-0.31163331866264343, -0.011337822303175926, 0.00709770480170846, 0.6311904788017273, -0.34165602922439575, 0.007230226416140795, -0.3515509068965912, 0.006587595213204622, -0.0032274469267576933, 0.608427882194519, -0.299095094203949, 0.0011834463803097606, 0.0037497307639569044, 0.015764528885483742, -0.05380582436919212, -2.8089346885681152, 0.5302780270576477, 0.21319936215877533, 1.216171145439148, 0.1661013662815094, 0.23560987412929535, -0.1586351841688156, -2.958425760269165, -0.47300538420677185, -0.19479160010814667, 1.310606837272644, -0.11772104352712631, 0.3012714385986328, 0.09459149092435837]} +{"t": 15.9884, "q": [-0.31163331866264343, -0.011337822303175926, 0.007178056053817272, 0.6311990022659302, -0.34165602922439575, 0.007230226416140795, -0.3516957759857178, 0.006613161414861679, -0.003173879347741604, 0.6085216403007507, -0.2990908920764923, 0.001176171936094761, 0.0037631227169185877, 0.01579497754573822, -0.05383589491248131, -2.808814764022827, 0.5302540063858032, 0.21319936215877533, 1.2161471843719482, 0.16611334681510925, 0.2356218546628952, -0.1586351841688156, -2.958401918411255, -0.4729454517364502, -0.19480358064174652, 1.3105709552764893, -0.11770906299352646, 0.30125945806503296, 0.09459149092435837]} +{"t": 16.0051, "q": [-0.3116588890552521, -0.011337822303175926, 0.007271799258887768, 0.6311990022659302, -0.3416682481765747, 0.007237397134304047, -0.35184916853904724, 0.006596117280423641, -0.003106919815763831, 0.6085983514785767, -0.299095094203949, 0.0011834463803097606, 0.003776514669880271, 0.015794986858963966, -0.0538458377122879, -2.8087668418884277, 0.5302540063858032, 0.21319936215877533, 1.2161352634429932, 0.16608937084674835, 0.2356218546628952, -0.15864717960357666, -2.9583539962768555, -0.4729454517364502, -0.19480358064174652, 1.3105469942092896, -0.11770906299352646, 0.30125945806503296, 0.09457950294017792]} +{"t": 16.0218, "q": [-0.3117015063762665, -0.011337822303175926, 0.007378934416919947, 0.6311990022659302, -0.34166014194488525, 0.007222920190542936, -0.3519940674304962, 0.006579073145985603, -0.0030533522367477417, 0.6086835861206055, -0.2991074025630951, 0.001161792315542698, 0.0037899063900113106, 0.015779778361320496, -0.05385564640164375, -2.8087549209594727, 0.5302900075912476, 0.21321135759353638, 1.2161471843719482, 0.1661013662815094, 0.2356218546628952, -0.15862320363521576, -2.9583539962768555, -0.4729214906692505, -0.19479160010814667, 1.3105709552764893, -0.11770906299352646, 0.3012474775314331, 0.09457950294017792]} +{"t": 16.0385, "q": [-0.31181228160858154, -0.011337822303175926, 0.00743250222876668, 0.6311990022659302, -0.34166425466537476, 0.007215595804154873, -0.352241188287735, 0.006579073145985603, -0.0029730007518082857, 0.6087602972984314, -0.2991156578063965, 0.001161854830570519, 0.0037631227169185877, 0.0157873947173357, -0.05387061834335327, -2.8087549209594727, 0.5302659869194031, 0.21317540109157562, 1.2161352634429932, 0.16611334681510925, 0.2356458157300949, -0.1586351841688156, -2.9583418369293213, -0.4729454517364502, -0.19479160010814667, 1.3105709552764893, -0.11770906299352646, 0.30125945806503296, 0.09457950294017792]} +{"t": 16.0553, "q": [-0.31194010376930237, -0.011346344836056232, 0.007539637386798859, 0.6311990022659302, -0.34165602922439575, 0.007230226416140795, -0.3524712920188904, 0.006579073145985603, -0.0029060414526611567, 0.6088625192642212, -0.2991321384906769, 0.0011474932543933392, 0.003776514669880271, 0.015795022249221802, -0.053905464708805084, -2.8087308406829834, 0.5301701426506042, 0.21317540109157562, 1.216111183166504, 0.1660773903131485, 0.2356218546628952, -0.1586351841688156, -2.958401918411255, -0.47295746207237244, -0.19483953714370728, 1.3105589151382446, -0.11772104352712631, 0.30125945806503296, 0.09459149092435837]} +{"t": 16.0722, "q": [-0.3120594322681427, -0.011346344836056232, 0.007579812780022621, 0.6311990022659302, -0.34166014194488525, 0.007222920190542936, -0.35257357358932495, 0.0065535069443285465, -0.002865865593776107, 0.60894775390625, -0.299144446849823, 0.001125857001170516, 0.0037631227169185877, 0.015795016661286354, -0.053895529359579086, -2.8087549209594727, 0.5302060842514038, 0.21316342055797577, 1.2160992622375488, 0.1661013662815094, 0.23563383519649506, -0.1586351841688156, -2.95841383934021, -0.47290951013565063, -0.19483953714370728, 1.3105469942092896, -0.11770906299352646, 0.30128341913223267, 0.09459149092435837]} +{"t": 16.0889, "q": [-0.31213611364364624, -0.011337822303175926, 0.007619988638907671, 0.6311990022659302, -0.34166014194488525, 0.007222920190542936, -0.35268434882164, 0.006544984877109528, -0.0028256899677217007, 0.6089818477630615, -0.299144446849823, 0.001125857001170516, 0.003776514669880271, 0.01581023819744587, -0.05390559509396553, -2.8087668418884277, 0.5301821231842041, 0.21315142512321472, 1.2160872220993042, 0.1661013662815094, 0.2356218546628952, -0.1586351841688156, -2.9583899974823, -0.47290951013565063, -0.19485151767730713, 1.3105709552764893, -0.11770906299352646, 0.3012714385986328, 0.09456752240657806]} +{"t": 16.1056, "q": [-0.3121446371078491, -0.011337822303175926, 0.0076467725448310375, 0.6312160491943359, -0.34166014194488525, 0.007222920190542936, -0.35284626483917236, 0.006544984877109528, -0.0027855143416672945, 0.6090841293334961, -0.29916495084762573, 0.0010897788451984525, 0.003816690295934677, 0.015848277136683464, -0.053910888731479645, -2.808790922164917, 0.530110239982605, 0.21317540109157562, 1.2160753011703491, 0.16611334681510925, 0.23560987412929535, -0.15862320363521576, -2.9583899974823, -0.47293347120285034, -0.19482755661010742, 1.3105469942092896, -0.11769707500934601, 0.30128341913223267, 0.09457950294017792]} +{"t": 16.1223, "q": [-0.31227248907089233, -0.011346344836056232, 0.0076869479380548, 0.6312160491943359, -0.34166014194488525, 0.007222920190542936, -0.35299113392829895, 0.006544984877109528, -0.0027855143416672945, 0.6091437935829163, -0.29918134212493896, 0.0010609126184135675, 0.003816690295934677, 0.015924399718642235, -0.05398110672831535, -2.8088388442993164, 0.5300143361091614, 0.21312746405601501, 1.216015338897705, 0.1660773903131485, 0.23560987412929535, -0.1586351841688156, -2.9583659172058105, -0.47290951013565063, -0.19483953714370728, 1.3105709552764893, -0.11770906299352646, 0.3013073801994324, 0.09456752240657806]} +{"t": 16.1391, "q": [-0.312340646982193, -0.011346344836056232, 0.007660164497792721, 0.6312160491943359, -0.3416560888290405, 0.007215690799057484, -0.353059321641922, 0.006536462344229221, -0.0027855143416672945, 0.6091693043708801, -0.29919371008872986, 0.0010537630878388882, 0.0038434739690274, 0.015985259786248207, -0.05398162454366684, -2.808910608291626, 0.5299424529075623, 0.21312746405601501, 1.2159794569015503, 0.1661013662815094, 0.23560987412929535, -0.15862320363521576, -2.9583418369293213, -0.4729454517364502, -0.19480358064174652, 1.3105709552764893, -0.11770906299352646, 0.3012953996658325, 0.09456752240657806]} +{"t": 16.1558, "q": [-0.31235769391059875, -0.01136338897049427, 0.0076869479380548, 0.6311990022659302, -0.3416560888290405, 0.007215690799057484, -0.3531615734100342, 0.006544984877109528, -0.0027855143416672945, 0.609246015548706, -0.2992018163204193, 0.0010248523904010653, 0.0038434739690274, 0.016114594414830208, -0.053987693041563034, -2.8089466094970703, 0.5299424529075623, 0.21311548352241516, 1.2159674167633057, 0.16611334681510925, 0.2356218546628952, -0.1586351841688156, -2.958281993865967, -0.47295746207237244, -0.19483953714370728, 1.3105469942092896, -0.11772104352712631, 0.3013193607330322, 0.09456752240657806]} +{"t": 16.1725, "q": [-0.31244292855262756, -0.011346344836056232, 0.0076869479380548, 0.6312160491943359, -0.3416520357131958, 0.007208461407572031, -0.3532979488372803, 0.006536462344229221, -0.002758730435743928, 0.6093568205833435, -0.29921838641166687, 0.0010249774204567075, 0.0038702578749507666, 0.016190677881240845, -0.05399828031659126, -2.8089346885681152, 0.5299184918403625, 0.21311548352241516, 1.2158955335617065, 0.1660773903131485, 0.23560987412929535, -0.1586351841688156, -2.9582340717315674, -0.47293347120285034, -0.19486349821090698, 1.3105828762054443, -0.11770906299352646, 0.30128341913223267, 0.09455553442239761]} +{"t": 16.1892, "q": [-0.3125707507133484, -0.01136338897049427, 0.007713731843978167, 0.6312160491943359, -0.3416560888290405, 0.007215690799057484, -0.3534769117832184, 0.0065194182097911835, -0.0027453387156128883, 0.6094335317611694, -0.2992428243160248, 0.0009527138900011778, 0.0038568659219890833, 0.01632765121757984, -0.05405907332897186, -2.8089346885681152, 0.5299184918403625, 0.21311548352241516, 1.2158955335617065, 0.16611334681510925, 0.2356218546628952, -0.15862320363521576, -2.958186149597168, -0.4729454517364502, -0.19483953714370728, 1.3106307983398438, -0.11773303151130676, 0.3013073801994324, 0.09455553442239761]} +{"t": 16.2062, "q": [-0.31263893842697144, -0.011371911503374577, 0.007713731843978167, 0.6312160491943359, -0.3416561782360077, 0.007201137021183968, -0.3535110056400299, 0.0065194182097911835, -0.0027453387156128883, 0.6095187664031982, -0.29925110936164856, 0.0009527584770694375, 0.003910433501005173, 0.016449354588985443, -0.054030291736125946, -2.808886766433716, 0.5298824906349182, 0.21311548352241516, 1.2158955335617065, 0.1660773903131485, 0.2356218546628952, -0.1586351841688156, -2.9581263065338135, -0.4730653166770935, -0.19480358064174652, 1.310606837272644, -0.11772104352712631, 0.3013073801994324, 0.09454355388879776]} +{"t": 16.2229, "q": [-0.3127923309803009, -0.011371911503374577, 0.007713731843978167, 0.6312160491943359, -0.3416479229927063, 0.0072157676331698895, -0.35373255610466003, 0.006527940277010202, -0.0027453387156128883, 0.6096380352973938, -0.29929620027542114, 0.0008734079310670495, 0.0038970415480434895, 0.016586286947131157, -0.054031457751989365, -2.8088507652282715, 0.5299424529075623, 0.21312746405601501, 1.2159315347671509, 0.1661253273487091, 0.23563383519649506, -0.15862320363521576, -2.958090305328369, -0.47330498695373535, -0.19482755661010742, 1.3105589151382446, -0.11770906299352646, 0.3013073801994324, 0.094507597386837]} +{"t": 16.2396, "q": [-0.31286048889160156, -0.011346344836056232, 0.007740515749901533, 0.6312160491943359, -0.3416479229927063, 0.0072157676331698895, -0.35385188460350037, 0.006527940277010202, -0.002731946762651205, 0.6098766922950745, -0.29932916164398193, 0.0008446667343378067, 0.0038568659219890833, 0.01674601621925831, -0.05398809164762497, -2.808802843093872, 0.5299304723739624, 0.2131034880876541, 1.2159194946289062, 0.1661253273487091, 0.23565781116485596, -0.15862320363521576, -2.958078384399414, -0.47358062863349915, -0.19486349821090698, 1.3105828762054443, -0.11769707500934601, 0.30128341913223267, 0.0944836288690567]} +{"t": 16.2564, "q": [-0.31292015314102173, -0.01136338897049427, 0.007753907702863216, 0.6312160491943359, -0.34164801239967346, 0.007201232016086578, -0.3539711833000183, 0.0065194182097911835, -0.002691771136596799, 0.6100130081176758, -0.29937833547592163, 0.0007581041427329183, 0.0038702578749507666, 0.016890505328774452, -0.05390484258532524, -2.808694839477539, 0.5299544334411621, 0.21312746405601501, 1.2159194946289062, 0.1661253273487091, 0.2356697916984558, -0.1586351841688156, -2.958078384399414, -0.4737963378429413, -0.19489945471286774, 1.3105828762054443, -0.11770906299352646, 0.3012953996658325, 0.09439974278211594]} +{"t": 16.2731, "q": [-0.31296277046203613, -0.011346344836056232, 0.007753907702863216, 0.6311990022659302, -0.3416438698768616, 0.007208538241684437, -0.35404789447784424, 0.0065108961425721645, -0.002731946762651205, 0.6101238131523132, -0.2994111180305481, 0.0007003897335380316, 0.0038702578749507666, 0.017095845192670822, -0.05383213981986046, -2.8085272312164307, 0.5300263166427612, 0.21312746405601501, 1.2159194946289062, 0.16613730788230896, 0.23569375276565552, -0.1586351841688156, -2.958078384399414, -0.4739161729812622, -0.1949593722820282, 1.310606837272644, -0.11769707500934601, 0.3012953996658325, 0.09432783722877502]} +{"t": 16.2898, "q": [-0.31299686431884766, -0.011354867368936539, 0.007740515749901533, 0.6311990022659302, -0.34164801239967346, 0.007201232016086578, -0.3540819585323334, 0.006527940277010202, -0.002718554809689522, 0.6102516651153564, -0.29945629835128784, 0.0006355257937684655, 0.0038568659219890833, 0.017255516722798347, -0.05374925956130028, -2.8083832263946533, 0.5300862789154053, 0.2131034880876541, 1.2159315347671509, 0.16613730788230896, 0.23571772873401642, -0.15862320363521576, -2.958078384399414, -0.4740360379219055, -0.1949354112148285, 1.3105828762054443, -0.11769707500934601, 0.3013193607330322, 0.0941600576043129]} +{"t": 16.3066, "q": [-0.312971293926239, -0.011337822303175926, 0.007740515749901533, 0.6312160491943359, -0.3416357934474945, 0.0071940794587135315, -0.3541245758533478, 0.0065108961425721645, -0.0027453387156128883, 0.6103453636169434, -0.29946041107177734, 0.0006282958202064037, 0.00388364982791245, 0.017430409789085388, -0.05367645248770714, -2.80820369720459, 0.5300982594490051, 0.21311548352241516, 1.215943455696106, 0.16614930331707, 0.23574168980121613, -0.1586112231016159, -2.958054304122925, -0.4740959405899048, -0.1949593722820282, 1.3105828762054443, -0.11772104352712631, 0.3013193607330322, 0.09410014003515244]} +{"t": 16.3233, "q": [-0.312971293926239, -0.011346344836056232, 0.007753907702863216, 0.6312160491943359, -0.3416438698768616, 0.007208538241684437, -0.3541501462459564, 0.0065108961425721645, -0.0027721223887056112, 0.6104135513305664, -0.29948917031288147, 0.0005923161515966058, 0.0038300822488963604, 0.01770417019724846, -0.053579751402139664, -2.8079757690429688, 0.5302060842514038, 0.21311548352241516, 1.2159794569015503, 0.16614930331707, 0.23577764630317688, -0.1586112231016159, -2.9580063819885254, -0.47425174713134766, -0.19499532878398895, 1.310606837272644, -0.11770906299352646, 0.3013193607330322, 0.09404021501541138]} +{"t": 16.3401, "q": [-0.3129798173904419, -0.011329300701618195, 0.0077672996558249, 0.6312075257301331, -0.3416357934474945, 0.0071940794587135315, -0.3541671931743622, 0.0065108961425721645, -0.0027453387156128883, 0.6104732155799866, -0.29950565099716187, 0.0005779365892522037, 0.0038568659219890833, 0.017977885901927948, -0.05343341827392578, -2.807772159576416, 0.5302540063858032, 0.21313944458961487, 1.2159554958343506, 0.16616128385066986, 0.23580162227153778, -0.158587247133255, -2.957958459854126, -0.4743596017360687, -0.19501930475234985, 1.3105828762054443, -0.11770906299352646, 0.3013193607330322, 0.09401624649763107]} +{"t": 16.3568, "q": [-0.3129798173904419, -0.011312256567180157, 0.007780691608786583, 0.6311990022659302, -0.3416357934474945, 0.0071940794587135315, -0.3542098104953766, 0.006527940277010202, -0.002758730435743928, 0.6105414032936096, -0.2995220422744751, 0.000549088348634541, 0.0038970415480434895, 0.018160395324230194, -0.053375568240880966, -2.8075084686279297, 0.5302180647850037, 0.21315142512321472, 1.2159554958343506, 0.16617326438426971, 0.23578962683677673, -0.15857526659965515, -2.9579105377197266, -0.47447943687438965, -0.19497136771678925, 1.310606837272644, -0.11770906299352646, 0.3013073801994324, 0.09395632892847061]} +{"t": 16.3736, "q": [-0.3129798173904419, -0.011329300701618195, 0.007753907702863216, 0.6312075257301331, -0.3416357934474945, 0.0071940794587135315, -0.35422685742378235, 0.006527940277010202, -0.002758730435743928, 0.6105925440788269, -0.29952606558799744, 0.0005273896967992187, 0.0038434739690274, 0.018411342054605484, -0.05328362062573433, -2.8073766231536865, 0.5302659869194031, 0.21313944458961487, 1.2159194946289062, 0.16619724035263062, 0.23577764630317688, -0.15857526659965515, -2.9578146934509277, -0.47470715641975403, -0.1950073093175888, 1.310606837272644, -0.11772104352712631, 0.3012953996658325, 0.09395632892847061]} +{"t": 16.3904, "q": [-0.3129883408546448, -0.011320779100060463, 0.007740515749901533, 0.6311990022659302, -0.3416357934474945, 0.0071940794587135315, -0.3542439043521881, 0.006527940277010202, -0.0027721223887056112, 0.6105925440788269, -0.2995384633541107, 0.000520222180057317, 0.00388364982791245, 0.018571041524410248, -0.053240444511175156, -2.807328701019287, 0.5302540063858032, 0.21312746405601501, 1.2158955335617065, 0.16616128385066986, 0.23575368523597717, -0.1585393100976944, -2.9577066898345947, -0.4749108850955963, -0.1950073093175888, 1.3106307983398438, -0.11770906299352646, 0.30133137106895447, 0.09390839189291]} +{"t": 16.4072, "q": [-0.31300538778305054, -0.011320779100060463, 0.007740515749901533, 0.6311990022659302, -0.3416438698768616, 0.007208538241684437, -0.3542439043521881, 0.0065108961425721645, -0.0027721223887056112, 0.6106181144714355, -0.29954665899276733, 0.0005057980888523161, 0.003923825453966856, 0.01875356398522854, -0.05319251865148544, -2.8073766231536865, 0.5301581621170044, 0.21311548352241516, 1.2159074544906616, 0.16614930331707, 0.23575368523597717, -0.1585632860660553, -2.957610845565796, -0.4750666618347168, -0.1950312852859497, 1.3106188774108887, -0.11772104352712631, 0.3013433516025543, 0.0938844233751297]} +{"t": 16.4239, "q": [-0.3129883408546448, -0.011337822303175926, 0.007780691608786583, 0.6312160491943359, -0.3416438698768616, 0.007208538241684437, -0.35423538088798523, 0.006527940277010202, -0.0027721223887056112, 0.61066073179245, -0.2995590269565582, 0.0004986485582776368, 0.003964001312851906, 0.018958939239382744, -0.0531894750893116, -2.8073527812957764, 0.5300263166427612, 0.21311548352241516, 1.2158595323562622, 0.1661013662815094, 0.23575368523597717, -0.1585632860660553, -2.9575390815734863, -0.47510263323783875, -0.1950312852859497, 1.3106428384780884, -0.11772104352712631, 0.3013433516025543, 0.09384846687316895]} +{"t": 16.4408, "q": [-0.312971293926239, -0.011329300701618195, 0.007780691608786583, 0.6311990022659302, -0.3416438698768616, 0.007208538241684437, -0.35422685742378235, 0.006536462344229221, -0.002758730435743928, 0.6106691956520081, -0.2995714843273163, 0.0005059855757281184, 0.003990784753113985, 0.01914150081574917, -0.053191181272268295, -2.8073766231536865, 0.5299184918403625, 0.21311548352241516, 1.2158476114273071, 0.16613730788230896, 0.23574168980121613, -0.15855130553245544, -2.9574432373046875, -0.4750666618347168, -0.19501930475234985, 1.3106547594070435, -0.11772104352712631, 0.30133137106895447, 0.09387243539094925]} +{"t": 16.4575, "q": [-0.3129883408546448, -0.011329300701618195, 0.007780691608786583, 0.6311990022659302, -0.341639906167984, 0.007186773233115673, -0.35423538088798523, 0.0065108961425721645, -0.0027453387156128883, 0.6106436848640442, -0.29958394169807434, 0.0005133225931786001, 0.003964001312851906, 0.01937730610370636, -0.053188424557447433, -2.8073885440826416, 0.5298106074333191, 0.21312746405601501, 1.2158236503601074, 0.16616128385066986, 0.23575368523597717, -0.1585632860660553, -2.957383155822754, -0.4750666618347168, -0.1950312852859497, 1.3106907606124878, -0.11772104352712631, 0.30133137106895447, 0.09384846687316895]} +{"t": 16.4743, "q": [-0.31300538778305054, -0.011337822303175926, 0.007740515749901533, 0.6311990022659302, -0.341639906167984, 0.007186773233115673, -0.3542439043521881, 0.0065108961425721645, -0.0027721223887056112, 0.6106691956520081, -0.29958394169807434, 0.0005133225931786001, 0.004017568659037352, 0.019582683220505714, -0.05318544805049896, -2.8073766231536865, 0.5298345685005188, 0.21309150755405426, 1.2157996892929077, 0.16614930331707, 0.23574168980121613, -0.1585632860660553, -2.9573352336883545, -0.47505468130111694, -0.19501930475234985, 1.3106787204742432, -0.11774501204490662, 0.30133137106895447, 0.0938604548573494]} +{"t": 16.4913, "q": [-0.31299686431884766, -0.011337822303175926, 0.007780691608786583, 0.6311819553375244, -0.3416440188884735, 0.00717944884672761, -0.354252427816391, 0.0065108961425721645, -0.0027721223887056112, 0.61066073179245, -0.29959625005722046, 0.0004916685284115374, 0.004004176706075668, 0.019750038161873817, -0.05318714305758476, -2.807340621948242, 0.5299065113067627, 0.21313944458961487, 1.215787649154663, 0.1661253273487091, 0.23575368523597717, -0.1585632860660553, -2.9573471546173096, -0.4750187397003174, -0.1950312852859497, 1.310762643814087, -0.11773303151130676, 0.30133137106895447, 0.0938604548573494]} +{"t": 16.508, "q": [-0.3129798173904419, -0.011337822303175926, 0.007753907702863216, 0.6311904788017273, -0.3416438698768616, 0.007208538241684437, -0.35423538088798523, 0.006527940277010202, -0.0027721223887056112, 0.6106947660446167, -0.2995879650115967, 0.0004916060133837163, 0.004057744517922401, 0.01986417919397354, -0.05323302000761032, -2.807328701019287, 0.5299065113067627, 0.21306754648685455, 1.215787649154663, 0.16614930331707, 0.23574168980121613, -0.15855130553245544, -2.9573113918304443, -0.47505468130111694, -0.19497136771678925, 1.3107386827468872, -0.11773303151130676, 0.30133137106895447, 0.09387243539094925]} +{"t": 16.5248, "q": [-0.3129883408546448, -0.011337822303175926, 0.007740515749901533, 0.6311819553375244, -0.341639906167984, 0.007186773233115673, -0.35423538088798523, 0.006527940277010202, -0.0028122980147600174, 0.6106777191162109, -0.2995879650115967, 0.0004916060133837163, 0.003990784753113985, 0.019955478608608246, -0.05325382947921753, -2.8072447776794434, 0.5300143361091614, 0.21312746405601501, 1.215787649154663, 0.16611334681510925, 0.23574168980121613, -0.15855130553245544, -2.9573593139648438, -0.4750427007675171, -0.19497136771678925, 1.3107386827468872, -0.11774501204490662, 0.30133137106895447, 0.0938604548573494]} +{"t": 16.5415, "q": [-0.3129798173904419, -0.011320779100060463, 0.007780691608786583, 0.6311990022659302, -0.3416357934474945, 0.0071940794587135315, -0.35423538088798523, 0.006527940277010202, -0.0027721223887056112, 0.6106691956520081, -0.2995920777320862, 0.0004843939677812159, 0.003923825453966856, 0.020039180293679237, -0.053289514034986496, -2.80708909034729, 0.5300502777099609, 0.2131034880876541, 1.2157996892929077, 0.16614930331707, 0.23575368523597717, -0.1585393100976944, -2.9573593139648438, -0.4750666618347168, -0.19505524635314941, 1.3106907606124878, -0.11772104352712631, 0.3012953996658325, 0.09383648633956909]} +{"t": 16.5582, "q": [-0.3129798173904419, -0.011329300701618195, 0.00772712379693985, 0.6311904788017273, -0.34164801239967346, 0.007201232016086578, -0.35422685742378235, 0.006527940277010202, -0.0027721223887056112, 0.6106522083282471, -0.2995920777320862, 0.0004843939677812159, 0.003964001312851906, 0.02009245753288269, -0.053324874490499496, -2.806993246078491, 0.5301821231842041, 0.2131034880876541, 1.2158236503601074, 0.16617326438426971, 0.23575368523597717, -0.1585393100976944, -2.957371234893799, -0.4750666618347168, -0.19499532878398895, 1.3106787204742432, -0.11772104352712631, 0.3013193607330322, 0.09384846687316895]} +{"t": 16.5749, "q": [-0.3129798173904419, -0.011320779100060463, 0.007753907702863216, 0.6311904788017273, -0.341639906167984, 0.007186773233115673, -0.354252427816391, 0.006527940277010202, -0.002758730435743928, 0.6106691956520081, -0.29959625005722046, 0.0004916685284115374, 0.0039506093598902225, 0.020138118416070938, -0.053355179727077484, -2.806861400604248, 0.5301342010498047, 0.21309150755405426, 1.2158355712890625, 0.16614930331707, 0.23576566576957703, -0.1585153490304947, -2.957371234893799, -0.4750666618347168, -0.1950312852859497, 1.3107147216796875, -0.11772104352712631, 0.30133137106895447, 0.09384846687316895]} +{"t": 16.5918, "q": [-0.312971293926239, -0.011337822303175926, 0.007740515749901533, 0.6311819553375244, -0.341639906167984, 0.007186773233115673, -0.35422685742378235, 0.0065194182097911835, -0.0027453387156128883, 0.61066073179245, -0.2995838522911072, 0.0004988359869457781, 0.0039506093598902225, 0.020145738497376442, -0.053370170295238495, -2.8066935539245605, 0.530110239982605, 0.2131034880876541, 1.2157996892929077, 0.16617326438426971, 0.23575368523597717, -0.15852732956409454, -2.957383155822754, -0.4750906527042389, -0.19505524635314941, 1.3106787204742432, -0.11772104352712631, 0.30133137106895447, 0.09382449835538864]} +{"t": 16.6085, "q": [-0.31296277046203613, -0.011329300701618195, 0.007780691608786583, 0.6311819553375244, -0.3416440188884735, 0.00717944884672761, -0.35422685742378235, 0.0065194182097911835, -0.002758730435743928, 0.6106691956520081, -0.2995920777320862, 0.0004843939677812159, 0.004004176706075668, 0.0201609767973423, -0.05340014770627022, -2.806525707244873, 0.5301461815834045, 0.21312746405601501, 1.2157996892929077, 0.16614930331707, 0.23575368523597717, -0.15850336849689484, -2.9573593139648438, -0.4750906527042389, -0.19506722688674927, 1.3106907606124878, -0.11775700002908707, 0.30133137106895447, 0.09383648633956909]} +{"t": 16.6253, "q": [-0.31295424699783325, -0.011337822303175926, 0.007794083096086979, 0.6311904788017273, -0.3416357934474945, 0.0071940794587135315, -0.35422685742378235, 0.0065108961425721645, -0.0027453387156128883, 0.6106522083282471, -0.2995879650115967, 0.0004916060133837163, 0.003977392800152302, 0.020168613642454147, -0.05343501269817352, -2.80639386177063, 0.5301461815834045, 0.21309150755405426, 1.2157996892929077, 0.16620922088623047, 0.23575368523597717, -0.1585393100976944, -2.957407236099243, -0.4750666618347168, -0.19506722688674927, 1.310666799545288, -0.11772104352712631, 0.3013193607330322, 0.09384846687316895]} +{"t": 16.642, "q": [-0.31295424699783325, -0.011337822303175926, 0.0077672996558249, 0.6311734318733215, -0.3416440188884735, 0.00717944884672761, -0.35422685742378235, 0.0065108961425721645, -0.0027453387156128883, 0.6106266379356384, -0.29959625005722046, 0.0004916685284115374, 0.003923825453966856, 0.020168641582131386, -0.05346482992172241, -2.806298017501831, 0.5301581621170044, 0.21311548352241516, 1.215787649154663, 0.16613730788230896, 0.23575368523597717, -0.15852732956409454, -2.9574551582336426, -0.4749947786331177, -0.19505524635314941, 1.3106787204742432, -0.11770906299352646, 0.30133137106895447, 0.09384846687316895]} +{"t": 16.6587, "q": [-0.31290310621261597, -0.011337822303175926, 0.007780691608786583, 0.6311904788017273, -0.3416357934474945, 0.0071940794587135315, -0.3542098104953766, 0.0065108961425721645, -0.002731946762651205, 0.6106010675430298, -0.2995920777320862, 0.0004843939677812159, 0.003910433501005173, 0.02016107365489006, -0.05350946635007858, -2.8062500953674316, 0.5301821231842041, 0.21311548352241516, 1.2157397270202637, 0.16618524491786957, 0.23575368523597717, -0.1585153490304947, -2.9575629234313965, -0.4747430980205536, -0.1950312852859497, 1.3106428384780884, -0.11774501204490662, 0.3013193607330322, 0.09387243539094925]} +{"t": 16.6755, "q": [-0.31292015314102173, -0.011329300701618195, 0.007820867002010345, 0.6311819553375244, -0.3416438698768616, 0.007208538241684437, -0.3541927635669708, 0.006502374075353146, -0.002718554809689522, 0.6105925440788269, -0.2995920777320862, 0.0004843939677812159, 0.003964001312851906, 0.020130688324570656, -0.0535588264465332, -2.8062262535095215, 0.530110239982605, 0.2131034880876541, 1.215727686882019, 0.16614930331707, 0.23572970926761627, -0.1585153490304947, -2.957742691040039, -0.4745393693447113, -0.1950073093175888, 1.3106307983398438, -0.11773303151130676, 0.3013073801994324, 0.09384846687316895]} +{"t": 16.6922, "q": [-0.31291162967681885, -0.011346344836056232, 0.007834259420633316, 0.6311819553375244, -0.341639906167984, 0.007186773233115673, -0.3541927635669708, 0.006502374075353146, -0.0027051628567278385, 0.610584020614624, -0.2995879650115967, 0.0004916060133837163, 0.003937217406928539, 0.020176399499177933, -0.053638823330402374, -2.8062262535095215, 0.5301581621170044, 0.2131034880876541, 1.2156797647476196, 0.16620922088623047, 0.23574168980121613, -0.1585153490304947, -2.957862615585327, -0.47443151473999023, -0.19499532878398895, 1.3105469942092896, -0.11772104352712631, 0.3012953996658325, 0.0938604548573494]} +{"t": 16.7089, "q": [-0.3128775358200073, -0.01136338897049427, 0.007847650907933712, 0.6311649084091187, -0.3416357934474945, 0.0071940794587135315, -0.3541501462459564, 0.006476807873696089, -0.0026649872306734324, 0.6106010675430298, -0.2995837926864624, 0.0004843314818572253, 0.003923825453966856, 0.02015366032719612, -0.053732987493276596, -2.8062262535095215, 0.5300982594490051, 0.21309150755405426, 1.2156438827514648, 0.16620922088623047, 0.23571772873401642, -0.15852732956409454, -2.957958459854126, -0.4743715822696686, -0.19499532878398895, 1.3105229139328003, -0.11770906299352646, 0.3013073801994324, 0.0938604548573494]} +{"t": 16.7256, "q": [-0.3128434419631958, -0.011380434036254883, 0.007861042395234108, 0.6311819553375244, -0.3416440188884735, 0.00717944884672761, -0.3541501462459564, 0.006434197071939707, -0.002691771136596799, 0.6105925440788269, -0.29957976937294006, 0.0005060480907559395, 0.003964001312851906, 0.02021460235118866, -0.053833022713661194, -2.8061423301696777, 0.5301581621170044, 0.21315142512321472, 1.2155959606170654, 0.16617326438426971, 0.23574168980121613, -0.1585153490304947, -2.95806622505188, -0.47429966926574707, -0.1950073093175888, 1.3104989528656006, -0.11769707500934601, 0.3013193607330322, 0.09384846687316895]} +{"t": 16.7424, "q": [-0.31286048889160156, -0.011397477239370346, 0.007928002625703812, 0.6311819553375244, -0.3416438698768616, 0.007208538241684437, -0.3541245758533478, 0.006442719139158726, -0.0026382035575807095, 0.6106010675430298, -0.2995796799659729, 0.0004915614845231175, 0.003923825453966856, 0.020229864865541458, -0.05389281362295151, -2.8061182498931885, 0.5301821231842041, 0.2131034880876541, 1.2155839204788208, 0.16620922088623047, 0.23575368523597717, -0.15850336849689484, -2.958078384399414, -0.47427570819854736, -0.19497136771678925, 1.3105229139328003, -0.11769707500934601, 0.30128341913223267, 0.09384846687316895]} +{"t": 16.7591, "q": [-0.3128264248371124, -0.011397477239370346, 0.007954785600304604, 0.6311819553375244, -0.3416357934474945, 0.0071940794587135315, -0.3541160523891449, 0.006417152937501669, -0.0026649872306734324, 0.6106010675430298, -0.2995713949203491, 0.0004914989694952965, 0.003937217406928539, 0.020245131105184555, -0.05395260825753212, -2.8060343265533447, 0.5301821231842041, 0.21309150755405426, 1.2155839204788208, 0.16620922088623047, 0.23574168980121613, -0.1584913730621338, -2.95806622505188, -0.47417983412742615, -0.19499532878398895, 1.3104989528656006, -0.11769707500934601, 0.3013433516025543, 0.09387243539094925]} +{"t": 16.7758, "q": [-0.31281790137290955, -0.011405999772250652, 0.00798156950622797, 0.6311819553375244, -0.3416357934474945, 0.0071940794587135315, -0.3541160523891449, 0.006400108803063631, -0.0026382035575807095, 0.6106010675430298, -0.2995631992816925, 0.0005059230607002974, 0.0039506093598902225, 0.02019955776631832, -0.0540316142141819, -2.8059744834899902, 0.5302180647850037, 0.21311548352241516, 1.2156078815460205, 0.16619724035263062, 0.23574168980121613, -0.1585153490304947, -2.958054304122925, -0.4740120470523834, -0.19499532878398895, 1.3105109930038452, -0.11769707500934601, 0.30128341913223267, 0.0938604548573494]} +{"t": 16.7926, "q": [-0.31280937790870667, -0.011405999772250652, 0.007954785600304604, 0.6311990022659302, -0.3416357934474945, 0.0071940794587135315, -0.3541160523891449, 0.00640863087028265, -0.0026382035575807095, 0.6105925440788269, -0.2995591163635254, 0.0005131351063027978, 0.003937217406928539, 0.020207222551107407, -0.054096296429634094, -2.805854558944702, 0.5301821231842041, 0.2130795270204544, 1.215559959411621, 0.16623318195343018, 0.23575368523597717, -0.1584913730621338, -2.9580063819885254, -0.47325706481933594, -0.19497136771678925, 1.3105109930038452, -0.11768509447574615, 0.3012953996658325, 0.09387243539094925]} +{"t": 16.8096, "q": [-0.31280937790870667, -0.011431565508246422, 0.007928002625703812, 0.6311819553375244, -0.34162768721580505, 0.0071796029806137085, -0.3541160523891449, 0.006400108803063631, -0.0026382035575807095, 0.6105925440788269, -0.2995631992816925, 0.0005059230607002974, 0.003990784753113985, 0.020184433087706566, -0.054130829870700836, -2.8058066368103027, 0.5301461815834045, 0.2130795270204544, 1.2155839204788208, 0.16620922088623047, 0.23575368523597717, -0.1584913730621338, -2.9579825401306152, -0.4726698398590088, -0.19492343068122864, 1.3105229139328003, -0.11768509447574615, 0.3013073801994324, 0.09389640390872955]} +{"t": 16.8263, "q": [-0.3128264248371124, -0.011414522305130959, 0.007914610207080841, 0.6311819553375244, -0.34163179993629456, 0.007172296289354563, -0.3541160523891449, 0.006391586735844612, -0.002624811604619026, 0.610584020614624, -0.2995550036430359, 0.0005203472101129591, 0.003923825453966856, 0.020184455439448357, -0.05416064336895943, -2.805734872817993, 0.530110239982605, 0.21311548352241516, 1.215559959411621, 0.16613730788230896, 0.23575368523597717, -0.1584913730621338, -2.9580183029174805, -0.47208261489868164, -0.1949354112148285, 1.3105229139328003, -0.11769707500934601, 0.3012953996658325, 0.09390839189291]} +{"t": 16.843, "q": [-0.3127923309803009, -0.011440088041126728, 0.007887826301157475, 0.6311990022659302, -0.3416357934474945, 0.0071940794587135315, -0.35409048199653625, 0.006391586735844612, -0.0026382035575807095, 0.6105754971504211, -0.2995550036430359, 0.0005203472101129591, 0.003964001312851906, 0.020222501829266548, -0.0541759617626667, -2.8056747913360596, 0.530110239982605, 0.21309150755405426, 1.215559959411621, 0.16623318195343018, 0.23575368523597717, -0.1584913730621338, -2.958054304122925, -0.47160324454307556, -0.1949593722820282, 1.3105229139328003, -0.11768509447574615, 0.3012953996658325, 0.09390839189291]} +{"t": 16.8598, "q": [-0.3128008544445038, -0.011440088041126728, 0.007887826301157475, 0.6311990022659302, -0.3416357934474945, 0.0071940794587135315, -0.35409048199653625, 0.006391586735844612, -0.0026382035575807095, 0.6105925440788269, -0.2995591163635254, 0.0005131351063027978, 0.003977392800152302, 0.020184552296996117, -0.05426996201276779, -2.80562686920166, 0.530110239982605, 0.2130795270204544, 1.215548038482666, 0.16623318195343018, 0.23575368523597717, -0.15850336849689484, -2.958174228668213, -0.47125568985939026, -0.19497136771678925, 1.3105229139328003, -0.11768509447574615, 0.30128341913223267, 0.09389640390872955]} +{"t": 16.8765, "q": [-0.312783807516098, -0.011431565508246422, 0.007887826301157475, 0.6311819553375244, -0.34163984656333923, 0.007201308850198984, -0.3540819585323334, 0.006383064668625593, -0.0026382035575807095, 0.6105414032936096, -0.2995467483997345, 0.0005202846950851381, 0.0039506093598902225, 0.020215030759572983, -0.054329920560121536, -2.8055670261383057, 0.5300862789154053, 0.21306754648685455, 1.215548038482666, 0.16623318195343018, 0.23575368523597717, -0.15847939252853394, -2.9582102298736572, -0.471051961183548, -0.1949593722820282, 1.3104989528656006, -0.11768509447574615, 0.3012714385986328, 0.09387243539094925]} +{"t": 16.8932, "q": [-0.31277528405189514, -0.011440088041126728, 0.007887826301157475, 0.6311990022659302, -0.34162768721580505, 0.0071796029806137085, -0.35409048199653625, 0.006374542135745287, -0.0026382035575807095, 0.610515832901001, -0.2995509207248688, 0.0005275592557154596, 0.003910433501005173, 0.020192282274365425, -0.05441414192318916, -2.8055670261383057, 0.5301342010498047, 0.21313944458961487, 1.215548038482666, 0.16622120141983032, 0.23575368523597717, -0.1584913730621338, -2.9583778381347656, -0.47090813517570496, -0.1949593722820282, 1.3104989528656006, -0.11768509447574615, 0.30128341913223267, 0.09389640390872955]} +{"t": 16.9101, "q": [-0.31276676058769226, -0.011448610574007034, 0.007941394113004208, 0.6311819553375244, -0.3416357934474945, 0.0071940794587135315, -0.3540564179420471, 0.006366020068526268, -0.002624811604619026, 0.6105073094367981, -0.29954272508621216, 0.0005419833469204605, 0.0039506093598902225, 0.02020750381052494, -0.05442424491047859, -2.8055551052093506, 0.5300982594490051, 0.2131034880876541, 1.215548038482666, 0.16620922088623047, 0.23576566576957703, -0.1584913730621338, -2.9584617614746094, -0.4708482325077057, -0.19497136771678925, 1.3104749917984009, -0.11769707500934601, 0.3013073801994324, 0.0938844233751297]} +{"t": 16.9268, "q": [-0.31276676058769226, -0.011440088041126728, 0.007954785600304604, 0.6311904788017273, -0.3416357934474945, 0.0071940794587135315, -0.3540819585323334, 0.006357498001307249, -0.0026382035575807095, 0.6105328798294067, -0.2995468080043793, 0.00053477130131796, 0.0038702578749507666, 0.02019992470741272, -0.054458942264318466, -2.8054471015930176, 0.5300742387771606, 0.2130795270204544, 1.215548038482666, 0.16619724035263062, 0.23576566576957703, -0.1584913730621338, -2.958557605743408, -0.47086021304130554, -0.19497136771678925, 1.3104510307312012, -0.11768509447574615, 0.3012953996658325, 0.09387243539094925]} +{"t": 16.9435, "q": [-0.31277528405189514, -0.011457132175564766, 0.007914610207080841, 0.6311819553375244, -0.3416357934474945, 0.0071940794587135315, -0.3540819585323334, 0.006357498001307249, -0.002611419651657343, 0.6104987859725952, -0.29954272508621216, 0.0005419833469204605, 0.0038568659219890833, 0.020199958235025406, -0.05449869483709335, -2.8053393363952637, 0.5300382971763611, 0.2130795270204544, 1.215548038482666, 0.16625715792179108, 0.23577764630317688, -0.1584913730621338, -2.9586055278778076, -0.47088417410850525, -0.19497136771678925, 1.3104510307312012, -0.11768509447574615, 0.30128341913223267, 0.0938604548573494]} +{"t": 16.9603, "q": [-0.3127582371234894, -0.011457132175564766, 0.007901218719780445, 0.6311819553375244, -0.3416357934474945, 0.0071940794587135315, -0.35406494140625, 0.006357498001307249, -0.0025980276986956596, 0.6104987859725952, -0.299542635679245, 0.0005274967406876385, 0.00388364982791245, 0.020222777500748634, -0.0544939748942852, -2.8051116466522217, 0.5300143361091614, 0.21309150755405426, 1.2155719995498657, 0.16624517738819122, 0.23577764630317688, -0.15847939252853394, -2.9587013721466064, -0.47093212604522705, -0.1949593722820282, 1.3104270696640015, -0.11768509447574615, 0.3013073801994324, 0.0938604548573494]} +{"t": 16.977, "q": [-0.312783807516098, -0.011440088041126728, 0.007901218719780445, 0.6311734318733215, -0.34162768721580505, 0.0071796029806137085, -0.35403937101364136, 0.006357498001307249, -0.002624811604619026, 0.6104902625083923, -0.2995550036430359, 0.0005203472101129591, 0.003910433501005173, 0.020207572728395462, -0.054503750056028366, -2.804931879043579, 0.5300023555755615, 0.2130555510520935, 1.215559959411621, 0.16623318195343018, 0.23578962683677673, -0.1584913730621338, -2.9587013721466064, -0.4709441065788269, -0.19499532878398895, 1.310439109802246, -0.11768509447574615, 0.3012714385986328, 0.0938844233751297]} +{"t": 16.9937, "q": [-0.3127582371234894, -0.011431565508246422, 0.007941394113004208, 0.6311819553375244, -0.3416317403316498, 0.007186850067228079, -0.3540308475494385, 0.006357498001307249, -0.002624811604619026, 0.6104987859725952, -0.2995468080043793, 0.00053477130131796, 0.003923825453966856, 0.020222777500748634, -0.0544939748942852, -2.8046443462371826, 0.5299903750419617, 0.2130795270204544, 1.215559959411621, 0.16620922088623047, 0.23578962683677673, -0.1584913730621338, -2.958653450012207, -0.47093212604522705, -0.19499532878398895, 1.3104510307312012, -0.11769707500934601, 0.30128341913223267, 0.09384846687316895]} +{"t": 17.0105, "q": [-0.3127497136592865, -0.011448610574007034, 0.007914610207080841, 0.6311819553375244, -0.3416317403316498, 0.007186850067228079, -0.35404789447784424, 0.006374542135745287, -0.0026382035575807095, 0.6105073094367981, -0.2995550036430359, 0.0005203472101129591, 0.003910433501005173, 0.020237982273101807, -0.054484203457832336, -2.8044044971466064, 0.529966413974762, 0.21311548352241516, 1.215559959411621, 0.16624517738819122, 0.23580162227153778, -0.1584913730621338, -2.9585816860198975, -0.47093212604522705, -0.19499532878398895, 1.3104510307312012, -0.11769707500934601, 0.3012953996658325, 0.0938604548573494]} +{"t": 17.0272, "q": [-0.3127497136592865, -0.011457132175564766, 0.007887826301157475, 0.6311819553375244, -0.34162768721580505, 0.0071796029806137085, -0.3540138006210327, 0.006366020068526268, -0.0026649872306734324, 0.6105243563652039, -0.2995468080043793, 0.00053477130131796, 0.003910433501005173, 0.020237987861037254, -0.054494138807058334, -2.804128885269165, 0.5298705101013184, 0.2131034880876541, 1.2155839204788208, 0.16623318195343018, 0.2358255833387375, -0.1584913730621338, -2.958545684814453, -0.4709441065788269, -0.19499532878398895, 1.3104270696640015, -0.11769707500934601, 0.3012953996658325, 0.0938604548573494]} +{"t": 17.0439, "q": [-0.3127411901950836, -0.01142304390668869, 0.007901218719780445, 0.6311819553375244, -0.3416236340999603, 0.007172373589128256, -0.3540138006210327, 0.006366020068526268, -0.002651595277711749, 0.610515832901001, -0.2995343506336212, 0.0005274342838674784, 0.003937217406928539, 0.020245583727955818, -0.054479315876960754, -2.803805351257324, 0.529822587966919, 0.21306754648685455, 1.2155959606170654, 0.16623318195343018, 0.23583756387233734, -0.1584913730621338, -2.958533763885498, -0.47093212604522705, -0.1949593722820282, 1.3104989528656006, -0.11768509447574615, 0.30128341913223267, 0.09384846687316895]} +{"t": 17.0606, "q": [-0.3127497136592865, -0.011431565508246422, 0.007887826301157475, 0.6311734318733215, -0.34161555767059326, 0.0071579148061573505, -0.3540138006210327, 0.006374542135745287, -0.002624811604619026, 0.6105243563652039, -0.29952606558799744, 0.0005273896967992187, 0.0039506093598902225, 0.020245583727955818, -0.054479315876960754, -2.8034098148345947, 0.5297626852989197, 0.2131034880876541, 1.2155959606170654, 0.16622120141983032, 0.23583756387233734, -0.1584913730621338, -2.9584977626800537, -0.47088417410850525, -0.19497136771678925, 1.3104989528656006, -0.1176731064915657, 0.3013073801994324, 0.0938604548573494]} +{"t": 17.0774, "q": [-0.3127411901950836, -0.01142304390668869, 0.007887826301157475, 0.6311734318733215, -0.3416236340999603, 0.007172373589128256, -0.35400527715682983, 0.006374542135745287, -0.0026783791836351156, 0.6105243563652039, -0.2995385527610779, 0.000534708786290139, 0.003937217406928539, 0.020237982273101807, -0.054484203457832336, -2.80300235748291, 0.5297746658325195, 0.21304357051849365, 1.2156078815460205, 0.16623318195343018, 0.23583756387233734, -0.15847939252853394, -2.95841383934021, -0.47088417410850525, -0.19499532878398895, 1.3105229139328003, -0.1176491379737854, 0.3012953996658325, 0.09384846687316895]} +{"t": 17.0941, "q": [-0.31273266673088074, -0.011414522305130959, 0.007874434813857079, 0.6311649084091187, -0.34161555767059326, 0.0071579148061573505, -0.35399675369262695, 0.006374542135745287, -0.002691771136596799, 0.6104902625083923, -0.2995508313179016, 0.0005130726494826376, 0.003964001312851906, 0.020237982273101807, -0.054484203457832336, -2.802546977996826, 0.5297626852989197, 0.21311548352241516, 1.2155959606170654, 0.16624517738819122, 0.23583756387233734, -0.1584913730621338, -2.9583539962768555, -0.47088417410850525, -0.19499532878398895, 1.3104989528656006, -0.11763715744018555, 0.3013073801994324, 0.09387243539094925]} +{"t": 17.1108, "q": [-0.31272414326667786, -0.011440088041126728, 0.007901218719780445, 0.6311308145523071, -0.34161555767059326, 0.0071579148061573505, -0.3539711833000183, 0.006366020068526268, -0.002651595277711749, 0.6104732155799866, -0.2995384633541107, 0.000520222180057317, 0.003937217406928539, 0.020237982273101807, -0.054484203457832336, -2.8020317554473877, 0.5297027826309204, 0.21309150755405426, 1.2155839204788208, 0.16623318195343018, 0.2358495593070984, -0.1584913730621338, -2.9583659172058105, -0.47086021304130554, -0.1950073093175888, 1.3104989528656006, -0.11763715744018555, 0.3013073801994324, 0.0938604548573494]} +{"t": 17.1278, "q": [-0.31272414326667786, -0.011431565508246422, 0.007901218719780445, 0.6310881972312927, -0.3416236340999603, 0.007172373589128256, -0.3539797067642212, 0.006357498001307249, -0.002651595277711749, 0.6104135513305664, -0.2995385527610779, 0.000534708786290139, 0.003990784753113985, 0.020245583727955818, -0.054479315876960754, -2.80149245262146, 0.5296068787574768, 0.2130555510520935, 1.215559959411621, 0.16623318195343018, 0.23586153984069824, -0.1584913730621338, -2.9583539962768555, -0.4708721935749054, -0.19499532878398895, 1.3104989528656006, -0.1176491379737854, 0.3012953996658325, 0.0938604548573494]} +{"t": 17.1446, "q": [-0.31273266673088074, -0.01142304390668869, 0.007901218719780445, 0.6310200095176697, -0.3416277766227722, 0.00716506689786911, -0.3539711833000183, 0.006366020068526268, -0.002651595277711749, 0.6103283166885376, -0.29954272508621216, 0.0005419833469204605, 0.003977392800152302, 0.020253192633390427, -0.05448436364531517, -2.800905227661133, 0.5295469760894775, 0.2130315899848938, 1.2155839204788208, 0.16624517738819122, 0.23583756387233734, -0.1584913730621338, -2.95841383934021, -0.47086021304130554, -0.19499532878398895, 1.3104870319366455, -0.11761318892240524, 0.30128341913223267, 0.0938604548573494]} +{"t": 17.1613, "q": [-0.31273266673088074, -0.011448610574007034, 0.007847650907933712, 0.6310114860534668, -0.3416277766227722, 0.00716506689786911, -0.3539711833000183, 0.006374542135745287, -0.0026649872306734324, 0.6102772355079651, -0.2995384633541107, 0.000520222180057317, 0.004030960611999035, 0.020230378955602646, -0.05448908731341362, -2.800222158432007, 0.5294870138168335, 0.21306754648685455, 1.215559959411621, 0.16625715792179108, 0.23583756387233734, -0.1584913730621338, -2.9584736824035645, -0.47086021304130554, -0.19497136771678925, 1.3104870319366455, -0.11763715744018555, 0.3012953996658325, 0.09384846687316895]} +{"t": 17.1783, "q": [-0.312715619802475, -0.011440088041126728, 0.007847650907933712, 0.6309689283370972, -0.3416236340999603, 0.007172373589128256, -0.3539711833000183, 0.006357498001307249, -0.0026649872306734324, 0.6102516651153564, -0.2995468080043793, 0.00053477130131796, 0.004044352564960718, 0.020222794264554977, -0.054513849318027496, -2.799347162246704, 0.5294989943504333, 0.2130555510520935, 1.215499997138977, 0.16617326438426971, 0.23583756387233734, -0.1584913730621338, -2.9584617614746094, -0.4708482325077057, -0.1950073093175888, 1.3104749917984009, -0.11761318892240524, 0.3012953996658325, 0.0938844233751297]} +{"t": 17.1951, "q": [-0.312715619802475, -0.011414522305130959, 0.007820867002010345, 0.6309348344802856, -0.3416277766227722, 0.00716506689786911, -0.35396265983581543, 0.006357498001307249, -0.002691771136596799, 0.6101920008659363, -0.2995509207248688, 0.0005275592557154596, 0.004071136470884085, 0.020230453461408615, -0.05457852780818939, -2.798184871673584, 0.5294510722160339, 0.2130555510520935, 1.215488076210022, 0.16617326438426971, 0.23581360280513763, -0.15850336849689484, -2.9584498405456543, -0.4707643389701843, -0.19499532878398895, 1.3104749917984009, -0.1176491379737854, 0.3013073801994324, 0.09389640390872955]} +{"t": 17.2118, "q": [-0.31263893842697144, -0.01142304390668869, 0.007807475049048662, 0.6308751702308655, -0.3416277766227722, 0.00716506689786911, -0.3539285659790039, 0.006366020068526268, -0.0026783791836351156, 0.6101152896881104, -0.29954272508621216, 0.0005419833469204605, 0.003977392800152302, 0.020245738327503204, -0.0546581968665123, -2.7971181869506836, 0.5294151306152344, 0.21301960945129395, 1.2154161930084229, 0.16624517738819122, 0.23581360280513763, -0.1584913730621338, -2.958425760269165, -0.4706684648990631, -0.1950073093175888, 1.3104870319366455, -0.11760120093822479, 0.30128341913223267, 0.0938844233751297]} +{"t": 17.2286, "q": [-0.3126474618911743, -0.011405999772250652, 0.0077672996558249, 0.6308581233024597, -0.3416236340999603, 0.007172373589128256, -0.35390299558639526, 0.006366020068526268, -0.0027051628567278385, 0.6100811958312988, -0.2995468080043793, 0.00053477130131796, 0.004084527958184481, 0.020260965451598167, -0.054678235203027725, -2.7961833477020264, 0.5293791890144348, 0.21301960945129395, 1.2153083086013794, 0.16623318195343018, 0.23577764630317688, -0.1584913730621338, -2.9584736824035645, -0.4705246388912201, -0.19499532878398895, 1.3104989528656006, -0.11761318892240524, 0.30128341913223267, 0.09389640390872955]} +{"t": 17.2455, "q": [-0.31263041496276855, -0.01142304390668869, 0.007780691608786583, 0.630841076374054, -0.3416236340999603, 0.007172373589128256, -0.3538944721221924, 0.006366020068526268, -0.002691771136596799, 0.610072672367096, -0.2995384633541107, 0.000520222180057317, 0.004097919911146164, 0.020238175988197327, -0.054712772369384766, -2.795332431793213, 0.5293432474136353, 0.2130076140165329, 1.2152483463287354, 0.16622120141983032, 0.23578962683677673, -0.1584913730621338, -2.958521604537964, -0.47033289074897766, -0.1950073093175888, 1.3104989528656006, -0.11761318892240524, 0.30128341913223267, 0.0938844233751297]} +{"t": 17.2622, "q": [-0.31263041496276855, -0.01142304390668869, 0.007807475049048662, 0.6308240294456482, -0.3416236340999603, 0.007172373589128256, -0.35390299558639526, 0.006374542135745287, -0.0026783791836351156, 0.6100556254386902, -0.2995385527610779, 0.000534708786290139, 0.004084527958184481, 0.020215380936861038, -0.05473737046122551, -2.794649362564087, 0.5293192863464355, 0.2130076140165329, 1.2152483463287354, 0.16614930331707, 0.23576566576957703, -0.1584913730621338, -2.9585697650909424, -0.4701171815395355, -0.19499532878398895, 1.3104749917984009, -0.11760120093822479, 0.3012953996658325, 0.09390839189291]} +{"t": 17.2789, "q": [-0.3126133680343628, -0.011414522305130959, 0.007834259420633316, 0.6308240294456482, -0.3416236340999603, 0.007172373589128256, -0.3538859784603119, 0.006366020068526268, -0.0026783791836351156, 0.6100641489028931, -0.2995468080043793, 0.00053477130131796, 0.003990784753113985, 0.020238187164068222, -0.05472271144390106, -2.7941341400146484, 0.5292832851409912, 0.21297167241573334, 1.2152483463287354, 0.16622120141983032, 0.23575368523597717, -0.15850336849689484, -2.958509683609009, -0.46993741393089294, -0.19497136771678925, 1.3104989528656006, -0.11761318892240524, 0.30128341913223267, 0.0938844233751297]} +{"t": 17.2957, "q": [-0.3125707507133484, -0.011431565508246422, 0.007820867002010345, 0.6308240294456482, -0.34161555767059326, 0.0071579148061573505, -0.35386040806770325, 0.006366020068526268, -0.0026783791836351156, 0.610072672367096, -0.2995343506336212, 0.0005274342838674784, 0.003937217406928539, 0.020238187164068222, -0.05472271144390106, -2.7936906814575195, 0.5292233824729919, 0.21299563348293304, 1.21526038646698, 0.16623318195343018, 0.23575368523597717, -0.15850336849689484, -2.958521604537964, -0.4696977436542511, -0.19499532878398895, 1.3104749917984009, -0.11758922040462494, 0.3013073801994324, 0.0938844233751297]} +{"t": 17.3124, "q": [-0.31254518032073975, -0.011405999772250652, 0.007847650907933712, 0.6307899355888367, -0.3416236340999603, 0.007172373589128256, -0.35386040806770325, 0.006374542135745287, -0.0026649872306734324, 0.6100130081176758, -0.2995344400405884, 0.0005419388180598617, 0.0039506093598902225, 0.02024579606950283, -0.054727762937545776, -2.7934389114379883, 0.5292233824729919, 0.21301960945129395, 1.2152483463287354, 0.16624517738819122, 0.23575368523597717, -0.15850336849689484, -2.958509683609009, -0.4694940149784088, -0.1950312852859497, 1.3104870319366455, -0.11760120093822479, 0.3013073801994324, 0.09389640390872955]} +{"t": 17.3291, "q": [-0.31254518032073975, -0.011440088041126728, 0.007847650907933712, 0.630764365196228, -0.34161555767059326, 0.0071579148061573505, -0.35386040806770325, 0.006374542135745287, -0.002651595277711749, 0.6100130081176758, -0.2995343506336212, 0.0005274342838674784, 0.0039506093598902225, 0.020261012017726898, -0.05472792685031891, -2.7933192253112793, 0.5292233824729919, 0.2129836529493332, 1.2152124643325806, 0.16624517738819122, 0.23575368523597717, -0.15850336849689484, -2.958521604537964, -0.4693262279033661, -0.1950312852859497, 1.3104749917984009, -0.11763715744018555, 0.3012953996658325, 0.0938844233751297]} +{"t": 17.3458, "q": [-0.3125707507133484, -0.011405999772250652, 0.007847650907933712, 0.6307387948036194, -0.34161555767059326, 0.0071579148061573505, -0.35385188460350037, 0.006366020068526268, -0.0026649872306734324, 0.6100130081176758, -0.2995384633541107, 0.000520222180057317, 0.004004176706075668, 0.020268620923161507, -0.05473297834396362, -2.793307304382324, 0.5292233824729919, 0.2130076140165329, 1.215200424194336, 0.16624517738819122, 0.23572970926761627, -0.1584913730621338, -2.958521604537964, -0.46911051869392395, -0.19499532878398895, 1.3105229139328003, -0.1176731064915657, 0.3013193607330322, 0.09390839189291]} +{"t": 17.3626, "q": [-0.3125110864639282, -0.011414522305130959, 0.007861042395234108, 0.6306876540184021, -0.34161555767059326, 0.0071579148061573505, -0.3538007438182831, 0.006374542135745287, -0.0026649872306734324, 0.609927773475647, -0.2995220422744751, 0.000549088348634541, 0.003990784753113985, 0.020238220691680908, -0.05476246401667595, -2.7933192253112793, 0.5292713046073914, 0.2130076140165329, 1.2150566577911377, 0.16620922088623047, 0.23571772873401642, -0.15847939252853394, -2.9584736824035645, -0.46884685754776, -0.19499532878398895, 1.3104989528656006, -0.11768509447574615, 0.3013073801994324, 0.09389640390872955]} +{"t": 17.3795, "q": [-0.3124684691429138, -0.01142304390668869, 0.007834259420633316, 0.6306365132331848, -0.34161150455474854, 0.007150685414671898, -0.35373255610466003, 0.006374542135745287, -0.002691771136596799, 0.6099022626876831, -0.2995343506336212, 0.0005274342838674784, 0.004030960611999035, 0.02024582400918007, -0.05475757643580437, -2.7933430671691895, 0.5293192863464355, 0.21306754648685455, 1.2147929668426514, 0.16623318195343018, 0.2356697916984558, -0.1584913730621338, -2.958437919616699, -0.46863114833831787, -0.19499532878398895, 1.310534954071045, -0.1176251694560051, 0.3012953996658325, 0.0938844233751297]} +{"t": 17.3963, "q": [-0.3124344050884247, -0.01142304390668869, 0.007780691608786583, 0.6305769085884094, -0.34161555767059326, 0.0071579148061573505, -0.3536984920501709, 0.006374542135745287, -0.002731946762651205, 0.6098511219024658, -0.2995343506336212, 0.0005274342838674784, 0.004071136470884085, 0.020245864987373352, -0.05480726435780525, -2.793390989303589, 0.5293432474136353, 0.2130315899848938, 1.2144933938980103, 0.16614930331707, 0.2356697916984558, -0.1584913730621338, -2.9583539962768555, -0.4683555066585541, -0.19501930475234985, 1.3105109930038452, -0.11768509447574615, 0.3013073801994324, 0.09387243539094925]} +{"t": 17.413, "q": [-0.31240031123161316, -0.011405999772250652, 0.007807475049048662, 0.630534291267395, -0.34161150455474854, 0.007150685414671898, -0.353689968585968, 0.006383064668625593, -0.002731946762651205, 0.6097829341888428, -0.2995344400405884, 0.0005419388180598617, 0.004097919911146164, 0.020276324823498726, -0.054847344756126404, -2.793498992919922, 0.5294271111488342, 0.2130315899848938, 1.214229702949524, 0.16617326438426971, 0.2356218546628952, -0.1584913730621338, -2.9583539962768555, -0.4679959714412689, -0.19499532878398895, 1.3105589151382446, -0.11763715744018555, 0.3012953996658325, 0.0938844233751297]} +{"t": 17.4298, "q": [-0.31235769391059875, -0.011397477239370346, 0.007807475049048662, 0.6304831504821777, -0.34161555767059326, 0.0071579148061573505, -0.35358768701553345, 0.006383064668625593, -0.0027453387156128883, 0.6097147464752197, -0.2995343506336212, 0.0005274342838674784, 0.004071136470884085, 0.020268751308321953, -0.05488204583525658, -2.79364275932312, 0.5294510722160339, 0.21301960945129395, 1.2139540910720825, 0.16616128385066986, 0.23560987412929535, -0.15847939252853394, -2.958306074142456, -0.467648446559906, -0.19499532878398895, 1.310534954071045, -0.11763715744018555, 0.3013073801994324, 0.0938844233751297]} +{"t": 17.4465, "q": [-0.3122895061969757, -0.01142304390668869, 0.007780691608786583, 0.6304234862327576, -0.34161150455474854, 0.007150685414671898, -0.35354506969451904, 0.006417152937501669, -0.002758730435743928, 0.6096806526184082, -0.2995343506336212, 0.0005274342838674784, 0.004178271628916264, 0.020283978432416916, -0.0549020878970623, -2.7936906814575195, 0.5294989943504333, 0.2130315899848938, 1.2134987115859985, 0.16622120141983032, 0.2355739176273346, -0.15847939252853394, -2.9582700729370117, -0.46719303727149963, -0.19501930475234985, 1.3105709552764893, -0.1176491379737854, 0.3013193607330322, 0.0938844233751297]} +{"t": 17.4632, "q": [-0.3121872544288635, -0.011405999772250652, 0.0077672996558249, 0.6303638219833374, -0.34161150455474854, 0.007150685414671898, -0.3534598648548126, 0.006383064668625593, -0.0027453387156128883, 0.6095954179763794, -0.2995302379131317, 0.0005346642574295402, 0.004111311864107847, 0.020314404740929604, -0.054902415722608566, -2.793750524520874, 0.5294989943504333, 0.21301960945129395, 1.212875485420227, 0.16620922088623047, 0.23558589816093445, -0.15847939252853394, -2.958198070526123, -0.46680954098701477, -0.19499532878398895, 1.3105589151382446, -0.1176251694560051, 0.3012953996658325, 0.0938844233751297]} +{"t": 17.4801, "q": [-0.31213611364364624, -0.011388955637812614, 0.00772712379693985, 0.6303297281265259, -0.34161555767059326, 0.0071579148061573505, -0.35336610674858093, 0.006383064668625593, -0.0027855143416672945, 0.6095187664031982, -0.2995343506336212, 0.0005274342838674784, 0.004138095770031214, 0.020299235358834267, -0.05495193973183632, -2.793738603591919, 0.5294870138168335, 0.2130555510520935, 1.211904764175415, 0.16623318195343018, 0.2355739176273346, -0.15846741199493408, -2.958174228668213, -0.4663781225681305, -0.19499532878398895, 1.3105709552764893, -0.1176491379737854, 0.3013073801994324, 0.0938844233751297]} +{"t": 17.497, "q": [-0.31212759017944336, -0.011440088041126728, 0.00772712379693985, 0.6303041577339172, -0.34161150455474854, 0.007150685414671898, -0.35334905982017517, 0.006383064668625593, -0.0027721223887056112, 0.6094420552253723, -0.2995343506336212, 0.0005274342838674784, 0.004178271628916264, 0.02031444013118744, -0.05494216829538345, -2.793630838394165, 0.5294390916824341, 0.21306754648685455, 1.2104905843734741, 0.16619724035263062, 0.23556193709373474, -0.15846741199493408, -2.958162307739258, -0.4659586548805237, -0.19499532878398895, 1.3105828762054443, -0.1176251694560051, 0.3013193607330322, 0.0938844233751297]} +{"t": 17.5138, "q": [-0.3121446371078491, -0.011405999772250652, 0.007740515749901533, 0.6302530169487, -0.34161150455474854, 0.007150685414671898, -0.35334905982017517, 0.006400108803063631, -0.0027453387156128883, 0.6094250082969666, -0.29952606558799744, 0.0005273896967992187, 0.0041247038170695305, 0.020337257534265518, -0.0549374483525753, -2.793618679046631, 0.5294151306152344, 0.2130315899848938, 1.2092442512512207, 0.16620922088623047, 0.23556193709373474, -0.15847939252853394, -2.958162307739258, -0.4656590521335602, -0.19501930475234985, 1.3105709552764893, -0.1176491379737854, 0.3013073801994324, 0.0938844233751297]} +{"t": 17.5305, "q": [-0.31213611364364624, -0.011405999772250652, 0.007740515749901533, 0.6302275061607361, -0.34161150455474854, 0.007150685414671898, -0.3533320128917694, 0.006374542135745287, -0.0027721223887056112, 0.6093653440475464, -0.2995303273200989, 0.0005491508636623621, 0.0041247038170695305, 0.020344866439700127, -0.05494249612092972, -2.793654680252075, 0.5294510722160339, 0.2130555510520935, 1.208249568939209, 0.16622120141983032, 0.23556193709373474, -0.15846741199493408, -2.9581141471862793, -0.4653235077857971, -0.1950073093175888, 1.3105828762054443, -0.11763715744018555, 0.3012953996658325, 0.0938844233751297]} +{"t": 17.5473, "q": [-0.31212759017944336, -0.011397477239370346, 0.00772712379693985, 0.6301763653755188, -0.34161555767059326, 0.0071579148061573505, -0.3533320128917694, 0.006374542135745287, -0.0027989062946289778, 0.6092715859413147, -0.2995302379131317, 0.0005346642574295402, 0.004111311864107847, 0.02033727429807186, -0.054957322776317596, -2.7937026023864746, 0.5294870138168335, 0.2130315899848938, 1.207266926765442, 0.16622120141983032, 0.23556193709373474, -0.15847939252853394, -2.95806622505188, -0.46509578824043274, -0.19499532878398895, 1.310606837272644, -0.1176491379737854, 0.3013073801994324, 0.09390839189291]} +{"t": 17.5641, "q": [-0.31212759017944336, -0.011405999772250652, 0.007713731843978167, 0.6301252245903015, -0.34161150455474854, 0.007150685414671898, -0.35331499576568604, 0.006383064668625593, -0.0027989062946289778, 0.609246015548706, -0.2995303273200989, 0.0005491508636623621, 0.004151487722992897, 0.02035248652100563, -0.05495748668909073, -2.7936787605285645, 0.5294870138168335, 0.21301960945129395, 1.2058767080307007, 0.16620922088623047, 0.23556193709373474, -0.15847939252853394, -2.9580423831939697, -0.46482014656066895, -0.1950073093175888, 1.310606837272644, -0.1176731064915657, 0.3013193607330322, 0.0938844233751297]} +{"t": 17.5808, "q": [-0.3121190667152405, -0.011397477239370346, 0.007700339891016483, 0.6300570368766785, -0.34161150455474854, 0.007150685414671898, -0.3533320128917694, 0.006383064668625593, -0.0027989062946289778, 0.6091948747634888, -0.2995261549949646, 0.0005418763030320406, 0.004138095770031214, 0.020352479070425034, -0.05494755133986473, -2.793618679046631, 0.5294151306152344, 0.21306754648685455, 1.2041029930114746, 0.16620922088623047, 0.23558589816093445, -0.15847939252853394, -2.95806622505188, -0.4646044373512268, -0.1950073093175888, 1.3105828762054443, -0.1176731064915657, 0.3013073801994324, 0.09389640390872955]} +{"t": 17.5976, "q": [-0.3121105432510376, -0.011405999772250652, 0.00772712379693985, 0.6299973726272583, -0.34160342812538147, 0.007136226631700993, -0.3533320128917694, 0.006383064668625593, -0.0027721223887056112, 0.6091693043708801, -0.2995261549949646, 0.0005418763030320406, 0.004084527958184481, 0.020382896065711975, -0.0549379400908947, -2.793522834777832, 0.529367208480835, 0.2130795270204544, 1.202041745185852, 0.16617326438426971, 0.2355499416589737, -0.15847939252853394, -2.9581141471862793, -0.46434077620506287, -0.19497136771678925, 1.3105828762054443, -0.11766112595796585, 0.3012953996658325, 0.09392037242650986]} +{"t": 17.6143, "q": [-0.3121190667152405, -0.011397477239370346, 0.007713731843978167, 0.629946231842041, -0.34161561727523804, 0.007143378723412752, -0.3533235192298889, 0.006374542135745287, -0.0027721223887056112, 0.6090841293334961, -0.2995261549949646, 0.0005418763030320406, 0.004097919911146164, 0.02039049193263054, -0.05492311716079712, -2.7934749126434326, 0.5294151306152344, 0.21304357051849365, 1.2001721858978271, 0.16620922088623047, 0.2355739176273346, -0.15846741199493408, -2.958090305328369, -0.4640531837940216, -0.19499532878398895, 1.3105828762054443, -0.1176491379737854, 0.3012953996658325, 0.09389640390872955]} +{"t": 17.631, "q": [-0.31212759017944336, -0.011405999772250652, 0.007713731843978167, 0.6298695802688599, -0.34160342812538147, 0.007136226631700993, -0.35330647230148315, 0.006391586735844612, -0.0027855143416672945, 0.6090670824050903, -0.2995261549949646, 0.0005418763030320406, 0.004084527958184481, 0.02039809338748455, -0.05491822957992554, -2.7934510707855225, 0.5294390916824341, 0.21304357051849365, 1.19844651222229, 0.16623318195343018, 0.2355739176273346, -0.15846741199493408, -2.9581382274627686, -0.463729590177536, -0.19497136771678925, 1.3105589151382446, -0.11768509447574615, 0.3012953996658325, 0.09389640390872955]} +{"t": 17.6477, "q": [-0.3121105432510376, -0.01142304390668869, 0.00772712379693985, 0.6298440098762512, -0.34161150455474854, 0.007150685414671898, -0.3532809019088745, 0.006417152937501669, -0.0028122980147600174, 0.6090585589408875, -0.2995303273200989, 0.0005491508636623621, 0.004111311864107847, 0.020413298159837723, -0.05490845814347267, -2.7934389114379883, 0.5295349955558777, 0.2130315899848938, 1.1968646049499512, 0.16623318195343018, 0.2355739176273346, -0.15847939252853394, -2.9581501483917236, -0.4633341133594513, -0.19497136771678925, 1.3105828762054443, -0.11766112595796585, 0.3013193607330322, 0.09389640390872955]} +{"t": 17.6645, "q": [-0.3121105432510376, -0.011431565508246422, 0.007700339891016483, 0.6298013925552368, -0.3416197597980499, 0.007136054337024689, -0.3532894253730774, 0.006400108803063631, -0.0027989062946289778, 0.6090074181556702, -0.2995344400405884, 0.0005419388180598617, 0.004138095770031214, 0.02041330561041832, -0.05491839349269867, -2.7934510707855225, 0.529594898223877, 0.21304357051849365, 1.1955941915512085, 0.16622120141983032, 0.23558589816093445, -0.15846741199493408, -2.9581263065338135, -0.4629625976085663, -0.19499532878398895, 1.3105828762054443, -0.1176491379737854, 0.30128341913223267, 0.09390839189291]} +{"t": 17.6812, "q": [-0.3121105432510376, -0.011397477239370346, 0.007700339891016483, 0.6297332048416138, -0.34161150455474854, 0.007150685414671898, -0.3532809019088745, 0.00640863087028265, -0.0028256899677217007, 0.6089818477630615, -0.2995343506336212, 0.0005274342838674784, 0.004138095770031214, 0.020398100838065147, -0.054928164929151535, -2.7934629917144775, 0.5296787619590759, 0.21301960945129395, 1.194347858428955, 0.16620922088623047, 0.2355739176273346, -0.15846741199493408, -2.9581263065338135, -0.4627109467983246, -0.19497136771678925, 1.310606837272644, -0.11768509447574615, 0.3013073801994324, 0.09389640390872955]} +{"t": 17.6979, "q": [-0.3121020197868347, -0.011397477239370346, 0.0076869479380548, 0.6296735405921936, -0.34160342812538147, 0.007136226631700993, -0.3532809019088745, 0.00640863087028265, -0.002852473873645067, 0.6089136600494385, -0.2995220422744751, 0.000549088348634541, 0.004111311864107847, 0.02039809338748455, -0.05491822957992554, -2.7933552265167236, 0.5296907424926758, 0.2130555510520935, 1.1928259134292603, 0.16624517738819122, 0.23558589816093445, -0.15846741199493408, -2.9581141471862793, -0.4623394310474396, -0.19499532878398895, 1.3105828762054443, -0.1176731064915657, 0.3012953996658325, 0.09389640390872955]} +{"t": 17.7147, "q": [-0.3121020197868347, -0.011405999772250652, 0.0076869479380548, 0.6296564936637878, -0.34161150455474854, 0.007150685414671898, -0.3532979488372803, 0.006391586735844612, -0.0028122980147600174, 0.6088113784790039, -0.2995344400405884, 0.0005419388180598617, 0.004138095770031214, 0.020405685529112816, -0.05490340292453766, -2.7933311462402344, 0.5297746658325195, 0.21306754648685455, 1.191663384437561, 0.16624517738819122, 0.2355739176273346, -0.15845543146133423, -2.9581263065338135, -0.4620518088340759, -0.19501930475234985, 1.3105589151382446, -0.1176251694560051, 0.3012953996658325, 0.09389640390872955]} +{"t": 17.7315, "q": [-0.31209349632263184, -0.011405999772250652, 0.0076869479380548, 0.6295883059501648, -0.34160754084587097, 0.007128919940441847, -0.3532382845878601, 0.006417152937501669, -0.0028256899677217007, 0.6087432503700256, -0.2995220422744751, 0.000549088348634541, 0.0041247038170695305, 0.020413286983966827, -0.054898519068956375, -2.7933430671691895, 0.5297626852989197, 0.21306754648685455, 1.1905009746551514, 0.16620922088623047, 0.23558589816093445, -0.15846741199493408, -2.9581382274627686, -0.46166831254959106, -0.19501930475234985, 1.3105828762054443, -0.1176491379737854, 0.3013073801994324, 0.09390839189291]} +{"t": 17.7482, "q": [-0.3121190667152405, -0.011397477239370346, 0.0076869479380548, 0.6295456886291504, -0.34161150455474854, 0.007150685414671898, -0.35321271419525146, 0.006417152937501669, -0.002839081920683384, 0.6087006330490112, -0.2995219826698303, 0.0005346017424017191, 0.0041247038170695305, 0.020405679941177368, -0.05489346757531166, -2.7932591438293457, 0.529822587966919, 0.21306754648685455, 1.1892905235290527, 0.16622120141983032, 0.2355978786945343, -0.15846741199493408, -2.9581382274627686, -0.46127283573150635, -0.19499532878398895, 1.3105589151382446, -0.11763715744018555, 0.30133137106895447, 0.09390839189291]} +{"t": 17.7651, "q": [-0.3121190667152405, -0.011414522305130959, 0.0076869479380548, 0.6295201182365417, -0.34160342812538147, 0.007136226631700993, -0.35322123765945435, 0.006417152937501669, -0.0028256899677217007, 0.6086665391921997, -0.2995220422744751, 0.000549088348634541, 0.004111311864107847, 0.020390475168824196, -0.054903242737054825, -2.7932112216949463, 0.5298465490341187, 0.2130076140165329, 1.188068151473999, 0.16624517738819122, 0.2355978786945343, -0.15846741199493408, -2.958162307739258, -0.46090131998062134, -0.19499532878398895, 1.3105589151382446, -0.1176491379737854, 0.3013073801994324, 0.09390839189291]} +{"t": 17.7818, "q": [-0.31212759017944336, -0.011397477239370346, 0.0076869479380548, 0.6294946074485779, -0.34161561727523804, 0.007143378723412752, -0.35321271419525146, 0.00640863087028265, -0.0028256899677217007, 0.6086068749427795, -0.2995302379131317, 0.0005346642574295402, 0.004057744517922401, 0.020398082211613655, -0.05490829050540924, -2.793163299560547, 0.5299184918403625, 0.21311548352241516, 1.1871932744979858, 0.16623318195343018, 0.23560987412929535, -0.15846741199493408, -2.9581263065338135, -0.46055376529693604, -0.19499532878398895, 1.3105469942092896, -0.1176491379737854, 0.3013193607330322, 0.09390839189291]} +{"t": 17.7986, "q": [-0.3121190667152405, -0.011405999772250652, 0.0076467725448310375, 0.6294605135917664, -0.34161150455474854, 0.007150685414671898, -0.3531956672668457, 0.006417152937501669, -0.002865865593776107, 0.608504593372345, -0.2995303273200989, 0.0005491508636623621, 0.004097919911146164, 0.020398082211613655, -0.05490829050540924, -2.7931034564971924, 0.529966413974762, 0.2131034880876541, 1.186126708984375, 0.16624517738819122, 0.23560987412929535, -0.15845543146133423, -2.958162307739258, -0.46025416254997253, -0.19501930475234985, 1.310534954071045, -0.1176491379737854, 0.3013073801994324, 0.09389640390872955]} +{"t": 17.8154, "q": [-0.31212759017944336, -0.011431565508246422, 0.0076467725448310375, 0.629417896270752, -0.34161150455474854, 0.007150685414671898, -0.3532041907310486, 0.00640863087028265, -0.002839081920683384, 0.6084619760513306, -0.2995303273200989, 0.0005491508636623621, 0.004111311864107847, 0.020390475168824196, -0.054903242737054825, -2.792971611022949, 0.5299544334411621, 0.2130315899848938, 1.1847845315933228, 0.16625715792179108, 0.2356458157300949, -0.15846741199493408, -2.958162307739258, -0.45997852087020874, -0.1950073093175888, 1.3105469942092896, -0.1176491379737854, 0.3012953996658325, 0.09390839189291]} +{"t": 17.8321, "q": [-0.31213611364364624, -0.011405999772250652, 0.007633380591869354, 0.6294008493423462, -0.34161150455474854, 0.007150685414671898, -0.3532041907310486, 0.00640863087028265, -0.002839081920683384, 0.6083938479423523, -0.29952624440193176, 0.0005563629092648625, 0.004097919911146164, 0.02038286067545414, -0.05489818751811981, -2.7925403118133545, 0.5299903750419617, 0.2130555510520935, 1.1826152801513672, 0.16629311442375183, 0.2356697916984558, -0.15846741199493408, -2.958186149597168, -0.4595590829849243, -0.1950312852859497, 1.3105469942092896, -0.1176251694560051, 0.3012953996658325, 0.09389640390872955]} +{"t": 17.8488, "q": [-0.312153160572052, -0.011414522305130959, 0.007700339891016483, 0.6293752789497375, -0.34161555767059326, 0.0071579148061573505, -0.3532041907310486, 0.00640863087028265, -0.0028122980147600174, 0.6083853244781494, -0.29952624440193176, 0.0005563629092648625, 0.004084527958184481, 0.020413270220160484, -0.05487864091992378, -2.792264461517334, 0.529966413974762, 0.21309150755405426, 1.1804102659225464, 0.16629311442375183, 0.23571772873401642, -0.15845543146133423, -2.9582221508026123, -0.4592355191707611, -0.19499532878398895, 1.3105469942092896, -0.1176251694560051, 0.3013073801994324, 0.09389640390872955]} +{"t": 17.8656, "q": [-0.31213611364364624, -0.011405999772250652, 0.0076869479380548, 0.6293582320213318, -0.34161555767059326, 0.0071579148061573505, -0.3531956672668457, 0.006400108803063631, -0.0028122980147600174, 0.6083938479423523, -0.2995261549949646, 0.0005418763030320406, 0.004111311864107847, 0.02039804868400097, -0.054868537932634354, -2.7920846939086914, 0.5299783945083618, 0.21304357051849365, 1.178876280784607, 0.16624517738819122, 0.23570574820041656, -0.15847939252853394, -2.9582581520080566, -0.45901980996131897, -0.19499532878398895, 1.310534954071045, -0.1176251694560051, 0.3012953996658325, 0.09389640390872955]} +{"t": 17.8823, "q": [-0.31213611364364624, -0.011414522305130959, 0.007660164497792721, 0.629341185092926, -0.3416197597980499, 0.007136054337024689, -0.3531871438026428, 0.00640863087028265, -0.0028256899677217007, 0.6083171367645264, -0.2995261549949646, 0.0005418763030320406, 0.004111311864107847, 0.020398065447807312, -0.054888416081666946, -2.7920968532562256, 0.5300263166427612, 0.2130315899848938, 1.1780853271484375, 0.16626913845539093, 0.23570574820041656, -0.15845543146133423, -2.958281993865967, -0.4587201774120331, -0.19501930475234985, 1.3105229139328003, -0.11763715744018555, 0.30128341913223267, 0.09387243539094925]} +{"t": 17.899, "q": [-0.31212759017944336, -0.011414522305130959, 0.0076467725448310375, 0.6293326616287231, -0.34161561727523804, 0.007143378723412752, -0.35317009687423706, 0.00640863087028265, -0.002865865593776107, 0.6083171367645264, -0.2995220422744751, 0.000549088348634541, 0.004111311864107847, 0.02036004699766636, -0.05490291118621826, -2.792048931121826, 0.5300263166427612, 0.2130076140165329, 1.1773422956466675, 0.16624517738819122, 0.23570574820041656, -0.15845543146133423, -2.958293914794922, -0.4585164487361908, -0.1950073093175888, 1.3105229139328003, -0.11761318892240524, 0.3012953996658325, 0.09389640390872955]} +{"t": 17.9157, "q": [-0.3121190667152405, -0.01142304390668869, 0.0076467725448310375, 0.6293241381645203, -0.3416074514389038, 0.007143456023186445, -0.3531530499458313, 0.00640863087028265, -0.002865865593776107, 0.6083000898361206, -0.2995263338088989, 0.0005708495154976845, 0.004071136470884085, 0.02036765031516552, -0.05489802360534668, -2.792024850845337, 0.5300143361091614, 0.2131034880876541, 1.1766351461410522, 0.16626913845539093, 0.23571772873401642, -0.15845543146133423, -2.958329916000366, -0.4582168459892273, -0.19497136771678925, 1.3105229139328003, -0.11763715744018555, 0.3012953996658325, 0.09389640390872955]} +{"t": 17.9325, "q": [-0.3121446371078491, -0.011414522305130959, 0.0076467725448310375, 0.6292985677719116, -0.34161150455474854, 0.007150685414671898, -0.3531445264816284, 0.006400108803063631, -0.00287925754673779, 0.6082659959793091, -0.2995220422744751, 0.000549088348634541, 0.004097919911146164, 0.020390447229146957, -0.054873425513505936, -2.79180908203125, 0.5299544334411621, 0.21304357051849365, 1.1756885051727295, 0.16626913845539093, 0.23575368523597717, -0.15845543146133423, -2.958329916000366, -0.4579172432422638, -0.19499532878398895, 1.3104870319366455, -0.11763715744018555, 0.3012953996658325, 0.09389640390872955]} +{"t": 17.9492, "q": [-0.31213611364364624, -0.011414522305130959, 0.0076869479380548, 0.6293070912361145, -0.34161561727523804, 0.007143378723412752, -0.3531445264816284, 0.00640863087028265, -0.0028256899677217007, 0.6082915663719177, -0.29950976371765137, 0.0005707245436497033, 0.004111311864107847, 0.02039043977856636, -0.05486349016427994, -2.791473627090454, 0.5299065113067627, 0.21304357051849365, 1.1748255491256714, 0.16624517738819122, 0.23575368523597717, -0.15845543146133423, -2.9583539962768555, -0.4575697183609009, -0.19499532878398895, 1.3105229139328003, -0.11761318892240524, 0.3012953996658325, 0.09390839189291]} +{"t": 17.9659, "q": [-0.31213611364364624, -0.011405999772250652, 0.007713731843978167, 0.6293156147003174, -0.34161150455474854, 0.007150685414671898, -0.3531530499458313, 0.00640863087028265, -0.002865865593776107, 0.608274519443512, -0.29950565099716187, 0.0005779365892522037, 0.004138095770031214, 0.020405644550919533, -0.054853715002536774, -2.7909581661224365, 0.5297986268997192, 0.2130555510520935, 1.173651099205017, 0.16626913845539093, 0.23578962683677673, -0.15845543146133423, -2.958281993865967, -0.4572461247444153, -0.19499532878398895, 1.3105109930038452, -0.11763715744018555, 0.30128341913223267, 0.0938844233751297]} +{"t": 17.9827, "q": [-0.3121190667152405, -0.011405999772250652, 0.007700339891016483, 0.6293070912361145, -0.34161150455474854, 0.007150685414671898, -0.35312750935554504, 0.006391586735844612, -0.002852473873645067, 0.6082659959793091, -0.29949745535850525, 0.0005923786084167659, 0.00416487967595458, 0.02039804309606552, -0.054858602583408356, -2.790107488632202, 0.5297507047653198, 0.2130315899848938, 1.172153115272522, 0.16625715792179108, 0.2358255833387375, -0.15844343602657318, -2.958186149597168, -0.4568865895271301, -0.19499532878398895, 1.3105469942092896, -0.11761318892240524, 0.3012953996658325, 0.09389640390872955]} +{"t": 17.9994, "q": [-0.3121190667152405, -0.011431565508246422, 0.0076869479380548, 0.6293070912361145, -0.34161150455474854, 0.007150685414671898, -0.3531360328197479, 0.00640863087028265, -0.002852473873645067, 0.6082659959793091, -0.29949745535850525, 0.0005923786084167659, 0.004138095770031214, 0.02039043977856636, -0.05486349016427994, -2.7891366481781006, 0.5296787619590759, 0.21304357051849365, 1.1708828210830688, 0.16628111898899078, 0.23580162227153778, -0.15844343602657318, -2.958174228668213, -0.4566349387168884, -0.19497136771678925, 1.3105709552764893, -0.11763715744018555, 0.3013073801994324, 0.09389640390872955]} +{"t": 18.0162, "q": [-0.31212759017944336, -0.011405999772250652, 0.0076869479380548, 0.6293070912361145, -0.34161555767059326, 0.0071579148061573505, -0.3531360328197479, 0.00640863087028265, -0.00287925754673779, 0.608274519443512, -0.29950565099716187, 0.0005779365892522037, 0.0041247038170695305, 0.02039804868400097, -0.054868537932634354, -2.788166046142578, 0.5295349955558777, 0.21301960945129395, 1.1700198650360107, 0.16628111898899078, 0.23578962683677673, -0.15844343602657318, -2.9581263065338135, -0.4563952386379242, -0.19499532878398895, 1.3105709552764893, -0.1176491379737854, 0.3013073801994324, 0.0938844233751297]} +{"t": 18.033, "q": [-0.3121190667152405, -0.011431565508246422, 0.007660164497792721, 0.6292900443077087, -0.34161150455474854, 0.007150685414671898, -0.3531104624271393, 0.00640863087028265, -0.002865865593776107, 0.6082830429077148, -0.29949328303337097, 0.0005851041059941053, 0.004111311864107847, 0.020367639139294624, -0.05488808453083038, -2.7872791290283203, 0.5293911695480347, 0.2129836529493332, 1.169480562210083, 0.16624517738819122, 0.23577764630317688, -0.15845543146133423, -2.9581263065338135, -0.45627540349960327, -0.1950073093175888, 1.3105709552764893, -0.1176251694560051, 0.3013073801994324, 0.09390839189291]} +{"t": 18.0497, "q": [-0.3121190667152405, -0.011397477239370346, 0.0076467725448310375, 0.6292985677719116, -0.34161555767059326, 0.0071579148061573505, -0.3530934154987335, 0.00640863087028265, -0.00287925754673779, 0.608274519443512, -0.29949745535850525, 0.0005923786084167659, 0.004205055069178343, 0.02038286067545414, -0.05489818751811981, -2.7866439819335938, 0.5293432474136353, 0.2129836529493332, 1.1694207191467285, 0.16624517738819122, 0.23576566576957703, -0.15846741199493408, -2.9581263065338135, -0.45617952942848206, -0.1950073093175888, 1.3105709552764893, -0.1176491379737854, 0.3013073801994324, 0.09390839189291]} +{"t": 18.0665, "q": [-0.31209349632263184, -0.011414522305130959, 0.007660164497792721, 0.6292900443077087, -0.34161150455474854, 0.007150685414671898, -0.3530934154987335, 0.006417152937501669, -0.0028926494996994734, 0.6083000898361206, -0.29950985312461853, 0.0005852111498825252, 0.00416487967595458, 0.020382855087518692, -0.054888252168893814, -2.7860326766967773, 0.5292832851409912, 0.21297167241573334, 1.1693248748779297, 0.16625715792179108, 0.23575368523597717, -0.15845543146133423, -2.958198070526123, -0.4561915099620819, -0.1950073093175888, 1.3105828762054443, -0.11761318892240524, 0.3012953996658325, 0.0938844233751297]} +{"t": 18.0833, "q": [-0.3121020197868347, -0.011414522305130959, 0.0076467725448310375, 0.6293070912361145, -0.34160754084587097, 0.007128919940441847, -0.35308489203453064, 0.00640863087028265, -0.00287925754673779, 0.6083000898361206, -0.2995016276836395, 0.0005996531690470874, 0.00416487967595458, 0.020398059859871864, -0.05487847700715065, -2.785541296005249, 0.5292593240737915, 0.21301960945129395, 1.1692888736724854, 0.16619724035263062, 0.23578962683677673, -0.15846741199493408, -2.9582459926605225, -0.4561915099620819, -0.19499532878398895, 1.3105469942092896, -0.11761318892240524, 0.30128341913223267, 0.09390839189291]} +{"t": 18.1001, "q": [-0.3120594322681427, -0.011405999772250652, 0.007660164497792721, 0.6293070912361145, -0.34161150455474854, 0.007150685414671898, -0.3530934154987335, 0.00640863087028265, -0.0029194331727921963, 0.6083171367645264, -0.29949328303337097, 0.0005851041059941053, 0.004138095770031214, 0.020420866087079048, -0.0548638179898262, -2.7851099967956543, 0.5292713046073914, 0.2129836529493332, 1.16930091381073, 0.16624517738819122, 0.23576566576957703, -0.15845543146133423, -2.958186149597168, -0.45620349049568176, -0.19501930475234985, 1.310534954071045, -0.1176251694560051, 0.30128341913223267, 0.09389640390872955]} +{"t": 18.1168, "q": [-0.3120594322681427, -0.011405999772250652, 0.007660164497792721, 0.6292985677719116, -0.34160342812538147, 0.007136226631700993, -0.3531104624271393, 0.006417152937501669, -0.0028926494996994734, 0.6083512306213379, -0.2995014786720276, 0.0005706620286218822, 0.004138095770031214, 0.020413270220160484, -0.05487864091992378, -2.784750461578369, 0.5292233824729919, 0.2130076140165329, 1.1692649126052856, 0.16624517738819122, 0.23577764630317688, -0.15845543146133423, -2.958198070526123, -0.456215500831604, -0.19501930475234985, 1.3105469942092896, -0.1176491379737854, 0.3013073801994324, 0.09387243539094925]} +{"t": 18.1338, "q": [-0.31204238533973694, -0.011405999772250652, 0.0076467725448310375, 0.6293070912361145, -0.34160342812538147, 0.007136226631700993, -0.3530934154987335, 0.006417152937501669, -0.00287925754673779, 0.608342707157135, -0.2995016276836395, 0.0005996531690470874, 0.004138095770031214, 0.020428486168384552, -0.05487880855798721, -2.7844748497009277, 0.5292114019393921, 0.2130076140165329, 1.1692649126052856, 0.16626913845539093, 0.23577764630317688, -0.15846741199493408, -2.958186149597168, -0.4561915099620819, -0.19499532878398895, 1.310534954071045, -0.11763715744018555, 0.3012953996658325, 0.0938844233751297]} +{"t": 18.1505, "q": [-0.31203386187553406, -0.011397477239370346, 0.007633380591869354, 0.6293070912361145, -0.34160342812538147, 0.007136226631700993, -0.3530934154987335, 0.006434197071939707, -0.0029194331727921963, 0.6083682775497437, -0.29949328303337097, 0.0005851041059941053, 0.004084527958184481, 0.020443696528673172, -0.054878972470760345, -2.784259080886841, 0.5292233824729919, 0.21304357051849365, 1.1692169904708862, 0.16623318195343018, 0.23575368523597717, -0.15845543146133423, -2.9582221508026123, -0.456215500831604, -0.19499532878398895, 1.3105589151382446, -0.11761318892240524, 0.3013073801994324, 0.09389640390872955]} +{"t": 18.1672, "q": [-0.31199124455451965, -0.011388955637812614, 0.0076467725448310375, 0.6292900443077087, -0.34160342812538147, 0.007136226631700993, -0.353059321641922, 0.006434197071939707, -0.0028926494996994734, 0.6084193587303162, -0.2994890809059143, 0.0005778114427812397, 0.004084527958184481, 0.020443696528673172, -0.054878972470760345, -2.784043312072754, 0.5291874408721924, 0.21297167241573334, 1.169240951538086, 0.16625715792179108, 0.23575368523597717, -0.15846741199493408, -2.958186149597168, -0.4561915099620819, -0.19499532878398895, 1.3105709552764893, -0.11761318892240524, 0.3013073801994324, 0.09390839189291]} +{"t": 18.1841, "q": [-0.31194010376930237, -0.011405999772250652, 0.0076467725448310375, 0.6293070912361145, -0.34160342812538147, 0.007136226631700993, -0.3530167043209076, 0.006442719139158726, -0.0029060414526611567, 0.6084364056587219, -0.2994931936264038, 0.000570581469219178, 0.004097919911146164, 0.02045891247689724, -0.05487913638353348, -2.7837677001953125, 0.5291634798049927, 0.21299563348293304, 1.1691930294036865, 0.16623318195343018, 0.23576566576957703, -0.15846741199493408, -2.9581382274627686, -0.45620349049568176, -0.19499532878398895, 1.3105589151382446, -0.1176251694560051, 0.3013193607330322, 0.0938844233751297]} +{"t": 18.2011, "q": [-0.3119315803050995, -0.011388955637812614, 0.007633380591869354, 0.6292985677719116, -0.34159931540489197, 0.007143532857298851, -0.3529655635356903, 0.006442719139158726, -0.0029328251257538795, 0.6084193587303162, -0.2994931936264038, 0.000570581469219178, 0.004084527958184481, 0.020481720566749573, -0.05486447736620903, -2.783504009246826, 0.5291155576705933, 0.21293571591377258, 1.1691570281982422, 0.16622120141983032, 0.23575368523597717, -0.15846741199493408, -2.9581263065338135, -0.4561915099620819, -0.19499532878398895, 1.310606837272644, -0.11760120093822479, 0.30133137106895447, 0.09389640390872955]} +{"t": 18.2179, "q": [-0.31190600991249084, -0.011397477239370346, 0.0076467725448310375, 0.6292985677719116, -0.341595321893692, 0.007121749687939882, -0.3529740869998932, 0.006434197071939707, -0.0029328251257538795, 0.608427882194519, -0.2994890809059143, 0.0005778114427812397, 0.0041247038170695305, 0.020474106073379517, -0.054859425872564316, -2.783348321914673, 0.5290555953979492, 0.21294769644737244, 1.1691330671310425, 0.16623318195343018, 0.23575368523597717, -0.15847939252853394, -2.9581263065338135, -0.4561915099620819, -0.19499532878398895, 1.3105828762054443, -0.11761318892240524, 0.3012953996658325, 0.09389640390872955]} +{"t": 18.2346, "q": [-0.3119145333766937, -0.011388955637812614, 0.007619988638907671, 0.6292985677719116, -0.341595321893692, 0.007121749687939882, -0.3529655635356903, 0.006442719139158726, -0.0029328251257538795, 0.6084108352661133, -0.2994890809059143, 0.0005778114427812397, 0.00416487967595458, 0.020496930927038193, -0.05486464127898216, -2.7832045555114746, 0.5290555953979492, 0.2129596769809723, 1.1691211462020874, 0.16626913845539093, 0.23575368523597717, -0.15846741199493408, -2.958090305328369, -0.45620349049568176, -0.19501930475234985, 1.310606837272644, -0.11763715744018555, 0.3013073801994324, 0.09389640390872955]} +{"t": 18.2515, "q": [-0.31189751625061035, -0.011388955637812614, 0.0076467725448310375, 0.6293070912361145, -0.34159937500953674, 0.00712899724021554, -0.3529655635356903, 0.006442719139158726, -0.0029328251257538795, 0.6084449291229248, -0.2994890809059143, 0.0005778114427812397, 0.004245230928063393, 0.020512135699391365, -0.054854866117239, -2.7830965518951416, 0.5289717316627502, 0.2130076140165329, 1.1689893007278442, 0.16622120141983032, 0.23575368523597717, -0.15845543146133423, -2.958054304122925, -0.45617952942848206, -0.1950073093175888, 1.3106307983398438, -0.11760120093822479, 0.3013193607330322, 0.09389640390872955]} +{"t": 18.2682, "q": [-0.31188899278640747, -0.011380434036254883, 0.0076467725448310375, 0.6292900443077087, -0.34159937500953674, 0.00712899724021554, -0.3529655635356903, 0.006442719139158726, -0.0029194331727921963, 0.6084619760513306, -0.2994931936264038, 0.000570581469219178, 0.004205055069178343, 0.02053494192659855, -0.05484020709991455, -2.782904863357544, 0.5289717316627502, 0.21293571591377258, 1.1689053773880005, 0.16626913845539093, 0.23574168980121613, -0.15843145549297333, -2.9580304622650146, -0.4561915099620819, -0.1950073093175888, 1.310606837272644, -0.11761318892240524, 0.3013073801994324, 0.0938844233751297]} +{"t": 18.2849, "q": [-0.31190600991249084, -0.011405999772250652, 0.007633380591869354, 0.6293070912361145, -0.341595321893692, 0.007121749687939882, -0.35294854640960693, 0.006451241206377745, -0.0029328251257538795, 0.6084790229797363, -0.29948490858078003, 0.0005705368821509182, 0.004258622881025076, 0.020519737154245377, -0.054849982261657715, -2.782784938812256, 0.5289117693901062, 0.21293571591377258, 1.1689053773880005, 0.16624517738819122, 0.23575368523597717, -0.15845543146133423, -2.9579825401306152, -0.45617952942848206, -0.19499532878398895, 1.310606837272644, -0.11761318892240524, 0.3013073801994324, 0.09389640390872955]} +{"t": 18.3017, "q": [-0.3118804693222046, -0.011397477239370346, 0.0076467725448310375, 0.6293070912361145, -0.3415912687778473, 0.00711452029645443, -0.35290592908859253, 0.006425675004720688, -0.0029328251257538795, 0.6084875464439392, -0.29948902130126953, 0.0005633069085888565, 0.004272014833986759, 0.02052733302116394, -0.054835159331560135, -2.7826292514801025, 0.5289117693901062, 0.2129596769809723, 1.1688454151153564, 0.16626913845539093, 0.23575368523597717, -0.15846741199493408, -2.9580063819885254, -0.45620349049568176, -0.19497136771678925, 1.3106307983398438, -0.11761318892240524, 0.30133137106895447, 0.09389640390872955]} +{"t": 18.3184, "q": [-0.31184637546539307, -0.011388955637812614, 0.007660164497792721, 0.6293156147003174, -0.341595321893692, 0.007121749687939882, -0.35289740562438965, 0.006451241206377745, -0.0029328251257538795, 0.6084875464439392, -0.2994931936264038, 0.000570581469219178, 0.004245230928063393, 0.020527340471744537, -0.05484509468078613, -2.7824134826660156, 0.5288997888565063, 0.2129836529493332, 1.1688095331192017, 0.16625715792179108, 0.23575368523597717, -0.15845543146133423, -2.957946538925171, -0.45620349049568176, -0.19499532878398895, 1.3106307983398438, -0.1176491379737854, 0.30133137106895447, 0.09389640390872955]} +{"t": 18.3351, "q": [-0.31181228160858154, -0.011414522305130959, 0.0076869479380548, 0.6293070912361145, -0.3415830433368683, 0.007129133213311434, -0.3528633117675781, 0.006451241206377745, -0.0029194331727921963, 0.6085472106933594, -0.29948917031288147, 0.0005923161515966058, 0.004231838975101709, 0.02055014669895172, -0.054830435663461685, -2.7821738719940186, 0.5288997888565063, 0.21297167241573334, 1.1687735319137573, 0.16622120141983032, 0.23576566576957703, -0.15845543146133423, -2.9578864574432373, -0.45622748136520386, -0.19499532878398895, 1.3106307983398438, -0.1176491379737854, 0.30133137106895447, 0.0938844233751297]} +{"t": 18.3518, "q": [-0.31176966428756714, -0.011397477239370346, 0.007700339891016483, 0.6293070912361145, -0.3415831923484802, 0.007100061513483524, -0.3528377413749695, 0.006451241206377745, -0.0029328251257538795, 0.6085813045501709, -0.2994849979877472, 0.0005850234883837402, 0.0042854067869484425, 0.020565345883369446, -0.05481072515249252, -2.7819342613220215, 0.5289117693901062, 0.2129596769809723, 1.1686058044433594, 0.16623318195343018, 0.23575368523597717, -0.15845543146133423, -2.957862615585327, -0.45620349049568176, -0.19501930475234985, 1.3106547594070435, -0.1176491379737854, 0.30133137106895447, 0.09387243539094925]} +{"t": 18.3686, "q": [-0.3117526173591614, -0.011405999772250652, 0.007740515749901533, 0.6293070912361145, -0.3415831923484802, 0.007100061513483524, -0.3528377413749695, 0.006451241206377745, -0.0029060414526611567, 0.6085983514785767, -0.2994768023490906, 0.0005994475795887411, 0.004258622881025076, 0.02058815211057663, -0.054796066135168076, -2.781646490097046, 0.5289238095283508, 0.21294769644737244, 1.1684499979019165, 0.16624517738819122, 0.23575368523597717, -0.15845543146133423, -2.957838535308838, -0.456215500831604, -0.1950312852859497, 1.3106787204742432, -0.11761318892240524, 0.30133137106895447, 0.09389640390872955]} +{"t": 18.3855, "q": [-0.3117440938949585, -0.011388955637812614, 0.007713731843978167, 0.6293070912361145, -0.341575026512146, 0.00710013834759593, -0.3528377413749695, 0.006451241206377745, -0.0029194331727921963, 0.6086068749427795, -0.2994726002216339, 0.0005921730771660805, 0.0042854067869484425, 0.020626164972782135, -0.054771631956100464, -2.7812390327453613, 0.5288758277893066, 0.2129596769809723, 1.1681263446807861, 0.16622120141983032, 0.23575368523597717, -0.15845543146133423, -2.9578146934509277, -0.45620349049568176, -0.1950073093175888, 1.3107147216796875, -0.11761318892240524, 0.3013553321361542, 0.09390839189291]} +{"t": 18.4023, "q": [-0.31171852350234985, -0.011388955637812614, 0.007713731843978167, 0.6293070912361145, -0.34156686067581177, 0.007100215647369623, -0.35281217098236084, 0.006459763273596764, -0.0029194331727921963, 0.6086068749427795, -0.2994767129421234, 0.0005849609733559191, 0.004298798739910126, 0.020656580105423927, -0.05476202443242073, -2.7803401947021484, 0.5288997888565063, 0.21306754648685455, 1.16707181930542, 0.16620922088623047, 0.23575368523597717, -0.15846741199493408, -2.9577906131744385, -0.456215500831604, -0.1950073093175888, 1.3107386827468872, -0.1176251694560051, 0.3013193607330322, 0.09389640390872955]} +{"t": 18.419, "q": [-0.3116929829120636, -0.011397477239370346, 0.007713731843978167, 0.6293070912361145, -0.3415791392326355, 0.007092832121998072, -0.3527951240539551, 0.006451241206377745, -0.0029194331727921963, 0.608572781085968, -0.2994849979877472, 0.0005850234883837402, 0.0043523660860955715, 0.020694609731435776, -0.05475746467709541, -2.7792856693267822, 0.5288638472557068, 0.2130076140165329, 1.1655018329620361, 0.16623318195343018, 0.23575368523597717, -0.15845543146133423, -2.957718849182129, -0.45622748136520386, -0.19499532878398895, 1.3107266426086426, -0.11760120093822479, 0.30133137106895447, 0.0938844233751297]} +{"t": 18.4359, "q": [-0.3116929829120636, -0.011397477239370346, 0.007700339891016483, 0.6293070912361145, -0.3415709137916565, 0.007107445038855076, -0.3527951240539551, 0.006442719139158726, -0.0029194331727921963, 0.6085898280143738, -0.2994849979877472, 0.0005850234883837402, 0.004338974133133888, 0.020702222362160683, -0.054762519896030426, -2.778111219406128, 0.5288398861885071, 0.21294769644737244, 1.1635005474090576, 0.16624517738819122, 0.23576566576957703, -0.15846741199493408, -2.9576947689056396, -0.456215500831604, -0.19499532878398895, 1.3107386827468872, -0.1176491379737854, 0.3013193607330322, 0.0938844233751297]} +{"t": 18.4526, "q": [-0.3116929829120636, -0.011414522305130959, 0.0076869479380548, 0.6293070912361145, -0.3415791392326355, 0.007092832121998072, -0.35280364751815796, 0.006451241206377745, -0.0029194331727921963, 0.6086409687995911, -0.2994807958602905, 0.0005777489277534187, 0.004298798739910126, 0.020763063803315163, -0.05475323647260666, -2.776732921600342, 0.5287799835205078, 0.2130076140165329, 1.1607680320739746, 0.16622120141983032, 0.23575368523597717, -0.15846741199493408, -2.9577066898345947, -0.456215500831604, -0.19501930475234985, 1.3107147216796875, -0.11766112595796585, 0.30133137106895447, 0.09389640390872955]} +{"t": 18.4694, "q": [-0.3116844594478607, -0.011405999772250652, 0.0076869479380548, 0.629272997379303, -0.3415791392326355, 0.007092832121998072, -0.35280364751815796, 0.006442719139158726, -0.0029194331727921963, 0.6085813045501709, -0.29948508739471436, 0.0005995281971991062, 0.004272014833986759, 0.020793484523892403, -0.054743632674217224, -2.7757503986358643, 0.5287799835205078, 0.2129836529493332, 1.15847909450531, 0.16623318195343018, 0.23574168980121613, -0.15846741199493408, -2.957730770111084, -0.456215500831604, -0.19501930475234985, 1.3106907606124878, -0.11763715744018555, 0.3013193607330322, 0.0938844233751297]} +{"t": 18.4863, "q": [-0.31167593598365784, -0.011397477239370346, 0.007660164497792721, 0.6292815208435059, -0.3415791392326355, 0.007092832121998072, -0.35281217098236084, 0.006451241206377745, -0.0029328251257538795, 0.6085813045501709, -0.29949328303337097, 0.0005851041059941053, 0.004245230928063393, 0.02077827975153923, -0.05475340411067009, -2.7751030921936035, 0.5288159251213074, 0.21299563348293304, 1.1568971872329712, 0.16623318195343018, 0.23572970926761627, -0.15843145549297333, -2.9576828479766846, -0.45620349049568176, -0.19499532878398895, 1.310666799545288, -0.11761318892240524, 0.3013073801994324, 0.0938604548573494]} +{"t": 18.5031, "q": [-0.3116844594478607, -0.011397477239370346, 0.0076467725448310375, 0.6292644739151001, -0.3415791392326355, 0.007092832121998072, -0.3528292179107666, 0.006442719139158726, -0.0029194331727921963, 0.608572781085968, -0.29949328303337097, 0.0005851041059941053, 0.004218447022140026, 0.02081630937755108, -0.05474884808063507, -2.7747316360473633, 0.5288638472557068, 0.2129596769809723, 1.155351161956787, 0.16623318195343018, 0.23575368523597717, -0.15846741199493408, -2.9577066898345947, -0.456215500831604, -0.19501930475234985, 1.310666799545288, -0.11760120093822479, 0.30128341913223267, 0.0938604548573494]} +{"t": 18.5198, "q": [-0.31167593598365784, -0.011380434036254883, 0.0076869479380548, 0.6292644739151001, -0.3415831923484802, 0.007100061513483524, -0.3528206944465637, 0.006442719139158726, -0.0029194331727921963, 0.608572781085968, -0.29949328303337097, 0.0005851041059941053, 0.004258622881025076, 0.02083151414990425, -0.05473907291889191, -2.774156332015991, 0.5288398861885071, 0.2130076140165329, 1.1530022621154785, 0.16624517738819122, 0.23578962683677673, -0.15845543146133423, -2.9577667713165283, -0.456215500831604, -0.19499532878398895, 1.3106547594070435, -0.1176251694560051, 0.3013073801994324, 0.09389640390872955]} +{"t": 18.5366, "q": [-0.31172704696655273, -0.011397477239370346, 0.007633380591869354, 0.6292389035224915, -0.34157508611679077, 0.007085602730512619, -0.3528377413749695, 0.006442719139158726, -0.0028926494996994734, 0.6085216403007507, -0.29949328303337097, 0.0005851041059941053, 0.004245230928063393, 0.020846707746386528, -0.054719362407922745, -2.773796796798706, 0.5288398861885071, 0.21297167241573334, 1.1506773233413696, 0.16624517738819122, 0.23578962683677673, -0.15846741199493408, -2.9578146934509277, -0.456215500831604, -0.19501930475234985, 1.3106307983398438, -0.1176491379737854, 0.3013073801994324, 0.09389640390872955]} +{"t": 18.5534, "q": [-0.31171852350234985, -0.011388955637812614, 0.007673555985093117, 0.6292133331298828, -0.3415791392326355, 0.007092832121998072, -0.3528377413749695, 0.006434197071939707, -0.00287925754673779, 0.608504593372345, -0.29949328303337097, 0.0005851041059941053, 0.004258622881025076, 0.02084670029580593, -0.05470942333340645, -2.7737250328063965, 0.5288279056549072, 0.2130315899848938, 1.1491433382034302, 0.16623318195343018, 0.23577764630317688, -0.15846741199493408, -2.9578027725219727, -0.45620349049568176, -0.1950312852859497, 1.3106188774108887, -0.11763715744018555, 0.3012953996658325, 0.09387243539094925]} +{"t": 18.5702, "q": [-0.31171002984046936, -0.011397477239370346, 0.0076869479380548, 0.6292048096656799, -0.34158721566200256, 0.007107290904968977, -0.3528633117675781, 0.006434197071939707, -0.002852473873645067, 0.6084790229797363, -0.29949328303337097, 0.0005851041059941053, 0.004205055069178343, 0.020846707746386528, -0.054719362407922745, -2.7737250328063965, 0.5288398861885071, 0.21301960945129395, 1.147873044013977, 0.16626913845539093, 0.23577764630317688, -0.15845543146133423, -2.9577906131744385, -0.45622748136520386, -0.19501930475234985, 1.3106307983398438, -0.11761318892240524, 0.30133137106895447, 0.0938604548573494]} +{"t": 18.5869, "q": [-0.31171002984046936, -0.011405999772250652, 0.007700339891016483, 0.6291877627372742, -0.3415831923484802, 0.007100061513483524, -0.3528377413749695, 0.006434197071939707, -0.0028926494996994734, 0.6084534525871277, -0.29949745535850525, 0.0005923786084167659, 0.004218447022140026, 0.02084670029580593, -0.05470942333340645, -2.773653030395508, 0.5288997888565063, 0.2129836529493332, 1.1465787887573242, 0.16626913845539093, 0.23578962683677673, -0.15846741199493408, -2.9577667713165283, -0.45622748136520386, -0.19499532878398895, 1.3106307983398438, -0.11763715744018555, 0.3013073801994324, 0.09389640390872955]} +{"t": 18.6036, "q": [-0.31172704696655273, -0.011405999772250652, 0.0076869479380548, 0.6291877627372742, -0.3415831923484802, 0.007100061513483524, -0.35284626483917236, 0.006417152937501669, -0.00287925754673779, 0.6084108352661133, -0.2995140254497528, 0.0005924856523051858, 0.004272014833986759, 0.02085430920124054, -0.05471447482705116, -2.7733893394470215, 0.5288398861885071, 0.2129836529493332, 1.144517421722412, 0.16622120141983032, 0.23586153984069824, -0.15846741199493408, -2.9578146934509277, -0.4561915099620819, -0.1949593722820282, 1.3106547594070435, -0.1176731064915657, 0.3013193607330322, 0.09387243539094925]} +{"t": 18.6204, "q": [-0.31176966428756714, -0.011405999772250652, 0.007700339891016483, 0.6291621923446655, -0.3415912687778473, 0.00711452029645443, -0.3528633117675781, 0.006425675004720688, -0.002865865593776107, 0.6084023714065552, -0.2995016276836395, 0.0005996531690470874, 0.004245230928063393, 0.02087709866464138, -0.05467993766069412, -2.7730538845062256, 0.5288159251213074, 0.2130076140165329, 1.142120599746704, 0.16623318195343018, 0.23586153984069824, -0.15846741199493408, -2.957850694656372, -0.45620349049568176, -0.19497136771678925, 1.3106428384780884, -0.1176491379737854, 0.3013073801994324, 0.09387243539094925]} +{"t": 18.6373, "q": [-0.3117952346801758, -0.011440088041126728, 0.007753907702863216, 0.6291536688804626, -0.3415912687778473, 0.00711452029645443, -0.35289740562438965, 0.006425675004720688, -0.0028122980147600174, 0.6083768010139465, -0.29950156807899475, 0.0005851486348547041, 0.004245230928063393, 0.020869480445981026, -0.05466495081782341, -2.7727901935577393, 0.5288159251213074, 0.21294769644737244, 1.140107274055481, 0.16623318195343018, 0.23588550090789795, -0.15845543146133423, -2.9578146934509277, -0.456215500831604, -0.19499532878398895, 1.310606837272644, -0.1176491379737854, 0.3012953996658325, 0.09387243539094925]} +{"t": 18.654, "q": [-0.31181228160858154, -0.011414522305130959, 0.007740515749901533, 0.6291621923446655, -0.3415912687778473, 0.00711452029645443, -0.35290592908859253, 0.00640863087028265, -0.0028256899677217007, 0.6083597540855408, -0.29949337244033813, 0.0005995907122269273, 0.004245230928063393, 0.020861860364675522, -0.0546499602496624, -2.7727303504943848, 0.5288638472557068, 0.2130076140165329, 1.1387890577316284, 0.16628111898899078, 0.2358735203742981, -0.15846741199493408, -2.9577786922454834, -0.45622748136520386, -0.19501930475234985, 1.3106188774108887, -0.1176491379737854, 0.30133137106895447, 0.0938604548573494]} +{"t": 18.6707, "q": [-0.31181228160858154, -0.011405999772250652, 0.007740515749901533, 0.6291536688804626, -0.3415830433368683, 0.007129133213311434, -0.35289740562438965, 0.006434197071939707, -0.0028256899677217007, 0.6083682775497437, -0.2995058298110962, 0.0006069277296774089, 0.004218447022140026, 0.02089228667318821, -0.05465029180049896, -2.772670269012451, 0.5289477705955505, 0.2130315899848938, 1.1376265287399292, 0.16626913845539093, 0.23590947687625885, -0.15846741199493408, -2.9578027725219727, -0.4562394618988037, -0.19501930475234985, 1.3106787204742432, -0.1176251694560051, 0.30133137106895447, 0.0938844233751297]} +{"t": 18.6876, "q": [-0.3118208050727844, -0.011431565508246422, 0.007740515749901533, 0.6291451454162598, -0.3415912687778473, 0.00711452029645443, -0.3529144525527954, 0.006417152937501669, -0.002839081920683384, 0.6083768010139465, -0.29950574040412903, 0.0005924231954850256, 0.0041916631162166595, 0.020899882540106773, -0.05463546887040138, -2.772538423538208, 0.5289477705955505, 0.21301960945129395, 1.1364880800247192, 0.16625715792179108, 0.235897496342659, -0.15846741199493408, -2.9577906131744385, -0.45620349049568176, -0.1950073093175888, 1.3106547594070435, -0.1176491379737854, 0.3013073801994324, 0.09387243539094925]} +{"t": 18.7043, "q": [-0.3118208050727844, -0.01142304390668869, 0.007740515749901533, 0.6291451454162598, -0.3415831923484802, 0.007100061513483524, -0.35289740562438965, 0.006425675004720688, -0.0028122980147600174, 0.6083853244781494, -0.29949337244033813, 0.0005995907122269273, 0.004245230928063393, 0.020892281085252762, -0.054640352725982666, -2.7723467350006104, 0.5289597511291504, 0.2130076140165329, 1.135445475578308, 0.16625715792179108, 0.2359214574098587, -0.15845543146133423, -2.957838535308838, -0.45620349049568176, -0.19501930475234985, 1.3106307983398438, -0.11763715744018555, 0.3013193607330322, 0.0938844233751297]} +{"t": 18.7211, "q": [-0.31181228160858154, -0.01142304390668869, 0.007740515749901533, 0.6291536688804626, -0.3415912687778473, 0.00711452029645443, -0.35290592908859253, 0.006425675004720688, -0.002852473873645067, 0.6083853244781494, -0.29949745535850525, 0.0005923786084167659, 0.004231838975101709, 0.020899873226881027, -0.054625529795885086, -2.7721190452575684, 0.5289238095283508, 0.2129836529493332, 1.1342710256576538, 0.16628111898899078, 0.23593343794345856, -0.15845543146133423, -2.957826614379883, -0.45622748136520386, -0.1950312852859497, 1.310666799545288, -0.1176251694560051, 0.3013193607330322, 0.09383648633956909]} +{"t": 18.7378, "q": [-0.31181228160858154, -0.01142304390668869, 0.007740515749901533, 0.6291451454162598, -0.3415831923484802, 0.007100061513483524, -0.35289740562438965, 0.006425675004720688, -0.002865865593776107, 0.6084023714065552, -0.2994973957538605, 0.0005778740742243826, 0.004258622881025076, 0.020915070548653603, -0.054605819284915924, -2.7716996669769287, 0.5288997888565063, 0.21301960945129395, 1.1324493885040283, 0.16628111898899078, 0.23600535094738007, -0.15845543146133423, -2.9578146934509277, -0.45622748136520386, -0.19501930475234985, 1.3106307983398438, -0.11761318892240524, 0.30133137106895447, 0.09384846687316895]} +{"t": 18.7545, "q": [-0.3118208050727844, -0.011431565508246422, 0.00772712379693985, 0.6291366219520569, -0.3415790796279907, 0.007107367739081383, -0.35289740562438965, 0.006442719139158726, -0.002865865593776107, 0.608427882194519, -0.2994973957538605, 0.0005778740742243826, 0.004231838975101709, 0.020945463329553604, -0.0545663982629776, -2.771411895751953, 0.5288638472557068, 0.21299563348293304, 1.1309033632278442, 0.16629311442375183, 0.23601733148097992, -0.15846741199493408, -2.9577786922454834, -0.456215500831604, -0.19499532878398895, 1.3106188774108887, -0.11763715744018555, 0.30133137106895447, 0.0938604548573494]} +{"t": 18.7713, "q": [-0.3118293285369873, -0.011405999772250652, 0.007740515749901533, 0.629128098487854, -0.3415831923484802, 0.007100061513483524, -0.35290592908859253, 0.006442719139158726, -0.00287925754673779, 0.608427882194519, -0.29948917031288147, 0.0005923161515966058, 0.004272014833986759, 0.02096065692603588, -0.05454668402671814, -2.7711963653564453, 0.5288758277893066, 0.2130315899848938, 1.1296690702438354, 0.16628111898899078, 0.23606526851654053, -0.15845543146133423, -2.9577906131744385, -0.456215500831604, -0.19501930475234985, 1.3106547594070435, -0.1176491379737854, 0.3013193607330322, 0.09384846687316895]} +{"t": 18.7881, "q": [-0.3118293285369873, -0.011397477239370346, 0.007740515749901533, 0.629128098487854, -0.3415912687778473, 0.00711452029645443, -0.35290592908859253, 0.006442719139158726, -0.0028926494996994734, 0.6084534525871277, -0.29949745535850525, 0.0005923786084167659, 0.004272014833986759, 0.02094544656574726, -0.05454652011394501, -2.7710165977478027, 0.5288997888565063, 0.2130555510520935, 1.1286383867263794, 0.16629311442375183, 0.23608924448490143, -0.15845543146133423, -2.9577667713165283, -0.4562394618988037, -0.19499532878398895, 1.3106428384780884, -0.1176251694560051, 0.30133137106895447, 0.09384846687316895]} +{"t": 18.8049, "q": [-0.3117952346801758, -0.011405999772250652, 0.007740515749901533, 0.6291366219520569, -0.3415831923484802, 0.007100061513483524, -0.35290592908859253, 0.006442719139158726, -0.0029060414526611567, 0.6084534525871277, -0.29948917031288147, 0.0005923161515966058, 0.004272014833986759, 0.02096065692603588, -0.05454668402671814, -2.770932674407959, 0.5289117693901062, 0.21299563348293304, 1.1278114318847656, 0.16629311442375183, 0.23608924448490143, -0.15845543146133423, -2.957754611968994, -0.4561915099620819, -0.19497136771678925, 1.3106307983398438, -0.11761318892240524, 0.30133137106895447, 0.09384846687316895]} +{"t": 18.8216, "q": [-0.31181228160858154, -0.011405999772250652, 0.007713731843978167, 0.629128098487854, -0.3415831923484802, 0.007100061513483524, -0.35288888216018677, 0.006451241206377745, -0.0029060414526611567, 0.6084704995155334, -0.29949337244033813, 0.0005995907122269273, 0.004245230928063393, 0.020937848836183548, -0.05456134304404259, -2.7708487510681152, 0.5288279056549072, 0.21299563348293304, 1.127392053604126, 0.16630509495735168, 0.23607724905014038, -0.15846741199493408, -2.9577786922454834, -0.456215500831604, -0.19499532878398895, 1.3106428384780884, -0.11763715744018555, 0.3012953996658325, 0.0938604548573494]} +{"t": 18.8385, "q": [-0.31180375814437866, -0.011414522305130959, 0.007713731843978167, 0.629128098487854, -0.3415912687778473, 0.00711452029645443, -0.35288888216018677, 0.006442719139158726, -0.0028926494996994734, 0.6084619760513306, -0.29949745535850525, 0.0005923786084167659, 0.004298798739910126, 0.020960673689842224, -0.054566558450460434, -2.7707889080047607, 0.5288279056549072, 0.21301960945129395, 1.1271164417266846, 0.16629311442375183, 0.23608924448490143, -0.15844343602657318, -2.957826614379883, -0.45622748136520386, -0.19497136771678925, 1.3106428384780884, -0.1176251694560051, 0.30133137106895447, 0.09387243539094925]} +{"t": 18.8552, "q": [-0.31180375814437866, -0.01142304390668869, 0.007740515749901533, 0.6291366219520569, -0.3415790796279907, 0.007107367739081383, -0.3528803586959839, 0.006442719139158726, -0.00287925754673779, 0.6084704995155334, -0.29949337244033813, 0.0005995907122269273, 0.004272014833986759, 0.020960673689842224, -0.054566558450460434, -2.7707409858703613, 0.5288279056549072, 0.2130315899848938, 1.126948595046997, 0.16630509495735168, 0.23608924448490143, -0.15845543146133423, -2.9578146934509277, -0.45620349049568176, -0.19499532878398895, 1.3106428384780884, -0.11763715744018555, 0.30133137106895447, 0.09384846687316895]} +{"t": 18.872, "q": [-0.31177818775177, -0.011405999772250652, 0.007740515749901533, 0.6291366219520569, -0.3415912687778473, 0.00711452029645443, -0.3528803586959839, 0.006442719139158726, -0.0028926494996994734, 0.6084534525871277, -0.29949328303337097, 0.0005851041059941053, 0.004258622881025076, 0.020991099998354912, -0.054566890001297, -2.770704984664917, 0.5288039445877075, 0.2130555510520935, 1.1268048286437988, 0.16630509495735168, 0.23605328798294067, -0.15847939252853394, -2.957838535308838, -0.456215500831604, -0.19501930475234985, 1.3106307983398438, -0.1176731064915657, 0.3013193607330322, 0.0938604548573494]} +{"t": 18.8887, "q": [-0.31177818775177, -0.011414522305130959, 0.007740515749901533, 0.629128098487854, -0.3415749669075012, 0.0071146744303405285, -0.352871835231781, 0.006442719139158726, -0.00287925754673779, 0.6084704995155334, -0.29949328303337097, 0.0005851041059941053, 0.004245230928063393, 0.02100631594657898, -0.05456705391407013, -2.7706329822540283, 0.5287799835205078, 0.21299563348293304, 1.1266130208969116, 0.16628111898899078, 0.23607724905014038, -0.15846741199493408, -2.9578146934509277, -0.45620349049568176, -0.1950312852859497, 1.310606837272644, -0.1176251694560051, 0.3013073801994324, 0.09384846687316895]} +{"t": 18.9054, "q": [-0.31176114082336426, -0.011405999772250652, 0.007740515749901533, 0.6291366219520569, -0.3415749669075012, 0.0071146744303405285, -0.352871835231781, 0.006451241206377745, -0.0028926494996994734, 0.6084704995155334, -0.29949745535850525, 0.0005923786084167659, 0.004245230928063393, 0.021006321534514427, -0.054576992988586426, -2.77048921585083, 0.5287560224533081, 0.21293571591377258, 1.126193642616272, 0.16626913845539093, 0.23611320555210114, -0.15844343602657318, -2.957850694656372, -0.45622748136520386, -0.1950312852859497, 1.3106307983398438, -0.11761318892240524, 0.3013073801994324, 0.0938604548573494]} +{"t": 18.9222, "q": [-0.3117440938949585, -0.011397477239370346, 0.007700339891016483, 0.629128098487854, -0.3415831923484802, 0.007100061513483524, -0.3528803586959839, 0.006425675004720688, -0.0028926494996994734, 0.6084875464439392, -0.29949328303337097, 0.0005851041059941053, 0.004205055069178343, 0.021044351160526276, -0.05457243323326111, -2.770273447036743, 0.5287080407142639, 0.21293571591377258, 1.1253306865692139, 0.16625715792179108, 0.2361731231212616, -0.15845543146133423, -2.957862615585327, -0.45620349049568176, -0.1950312852859497, 1.310606837272644, -0.1176251694560051, 0.3013073801994324, 0.0938844233751297]} +{"t": 18.9389, "q": [-0.31176114082336426, -0.01142304390668869, 0.007700339891016483, 0.6291366219520569, -0.3415831923484802, 0.007100061513483524, -0.35289740562438965, 0.006451241206377745, -0.0028926494996994734, 0.6084619760513306, -0.29950156807899475, 0.0005851486348547041, 0.0042854067869484425, 0.021036749705672264, -0.05457732081413269, -2.7699978351593018, 0.5286361575126648, 0.21293571591377258, 1.124024510383606, 0.16631707549095154, 0.2362450361251831, -0.15846741199493408, -2.957946538925171, -0.456215500831604, -0.1950073093175888, 1.310606837272644, -0.11763715744018555, 0.3012953996658325, 0.09387243539094925]} +{"t": 18.9557, "q": [-0.31176966428756714, -0.011405999772250652, 0.0076869479380548, 0.629128098487854, -0.3415831923484802, 0.007100061513483524, -0.35289740562438965, 0.006425675004720688, -0.0028926494996994734, 0.6084619760513306, -0.2995016276836395, 0.0005996531690470874, 0.004245230928063393, 0.021044351160526276, -0.05457243323326111, -2.769470453262329, 0.5285882353782654, 0.21301960945129395, 1.1222507953643799, 0.16624517738819122, 0.23635289072990417, -0.15845543146133423, -2.9580183029174805, -0.4561915099620819, -0.19499532878398895, 1.310606837272644, -0.1176251694560051, 0.30133137106895447, 0.0938844233751297]} +{"t": 18.9724, "q": [-0.31176966428756714, -0.011388955637812614, 0.007700339891016483, 0.629128098487854, -0.3415831923484802, 0.007100061513483524, -0.3529144525527954, 0.006417152937501669, -0.00287925754673779, 0.6084619760513306, -0.29949745535850525, 0.0005923786084167659, 0.0041916631162166595, 0.02104436233639717, -0.054582372307777405, -2.7690510749816895, 0.5285762548446655, 0.2130076140165329, 1.1208007335662842, 0.16625715792179108, 0.23632891476154327, -0.15846741199493408, -2.9580183029174805, -0.45622748136520386, -0.1950073093175888, 1.310606837272644, -0.1176491379737854, 0.30133137106895447, 0.0938604548573494]} +{"t": 18.9892, "q": [-0.31176966428756714, -0.011397477239370346, 0.0076869479380548, 0.629128098487854, -0.3415912687778473, 0.00711452029645443, -0.3529144525527954, 0.006417152937501669, -0.00287925754673779, 0.6084704995155334, -0.29949745535850525, 0.0005923786084167659, 0.004218447022140026, 0.02108241431415081, -0.05460762977600098, -2.768775463104248, 0.5286002159118652, 0.2130315899848938, 1.1195663213729858, 0.16626913845539093, 0.23634091019630432, -0.15846741199493408, -2.9580183029174805, -0.45622748136520386, -0.19499532878398895, 1.310594916343689, -0.1176251694560051, 0.30133137106895447, 0.09384846687316895]} +{"t": 19.0059, "q": [-0.31176966428756714, -0.011388955637812614, 0.00772712379693985, 0.6291195750236511, -0.3415873050689697, 0.007092755287885666, -0.35298261046409607, 0.006425675004720688, -0.002852473873645067, 0.6084619760513306, -0.29950574040412903, 0.0005924231954850256, 0.004205055069178343, 0.021090026944875717, -0.05461268126964569, -2.768308162689209, 0.5286121964454651, 0.21294769644737244, 1.1182481050491333, 0.16629311442375183, 0.23635289072990417, -0.15845543146133423, -2.958078384399414, -0.45622748136520386, -0.1950073093175888, 1.310606837272644, -0.11761318892240524, 0.30133137106895447, 0.09389640390872955]} +{"t": 19.0229, "q": [-0.31176966428756714, -0.011397477239370346, 0.0076869479380548, 0.6291195750236511, -0.3415831923484802, 0.007100061513483524, -0.35299113392829895, 0.006417152937501669, -0.0027989062946289778, 0.6084534525871277, -0.29950985312461853, 0.0005852111498825252, 0.004231838975101709, 0.021128062158823013, -0.05461806058883667, -2.767756700515747, 0.5285762548446655, 0.21291173994541168, 1.1170616149902344, 0.16628111898899078, 0.23635289072990417, -0.15844343602657318, -2.9581141471862793, -0.4562394618988037, -0.19501930475234985, 1.3105828762054443, -0.11761318892240524, 0.30133137106895447, 0.0938604548573494]} +{"t": 19.0397, "q": [-0.3117952346801758, -0.011388955637812614, 0.007673555985093117, 0.629111111164093, -0.3415831923484802, 0.007100061513483524, -0.35304227471351624, 0.006417152937501669, -0.002865865593776107, 0.6084449291229248, -0.2995181381702423, 0.0005852736067026854, 0.004272014833986759, 0.021150898188352585, -0.05463321506977081, -2.7668700218200684, 0.5285162925720215, 0.21297167241573334, 1.115359902381897, 0.16630509495735168, 0.23640082776546478, -0.15846741199493408, -2.958102226257324, -0.45622748136520386, -0.19499532878398895, 1.3105709552764893, -0.11766112595796585, 0.30133137106895447, 0.0938604548573494]} +{"t": 19.0564, "q": [-0.3118293285369873, -0.011405999772250652, 0.007700339891016483, 0.629128098487854, -0.3415953814983368, 0.007107214070856571, -0.35304227471351624, 0.00640863087028265, -0.0028256899677217007, 0.6084619760513306, -0.29952239990234375, 0.0006070347735658288, 0.0042854067869484425, 0.02118893340229988, -0.05463859438896179, -2.765803337097168, 0.5284444093704224, 0.21288777887821198, 1.1133464574813843, 0.16629311442375183, 0.23640082776546478, -0.15845543146133423, -2.95806622505188, -0.45620349049568176, -0.19499532878398895, 1.3105828762054443, -0.1176491379737854, 0.30133137106895447, 0.0938604548573494]} +{"t": 19.0731, "q": [-0.31185489892959595, -0.011397477239370346, 0.0076869479380548, 0.629111111164093, -0.3415912687778473, 0.00711452029645443, -0.353059321641922, 0.006417152937501669, -0.0028122980147600174, 0.6084449291229248, -0.29951411485671997, 0.0006069722585380077, 0.004245230928063393, 0.021295376121997833, -0.054580122232437134, -2.7649166584014893, 0.5283845067024231, 0.21293571591377258, 1.1114170551300049, 0.16625715792179108, 0.23643678426742554, -0.15846741199493408, -2.958090305328369, -0.456215500831604, -0.19499532878398895, 1.3105709552764893, -0.1176251694560051, 0.3013193607330322, 0.09389640390872955]} +{"t": 19.0899, "q": [-0.31185489892959595, -0.011405999772250652, 0.007713731843978167, 0.6291195750236511, -0.3415995240211487, 0.0070998892188072205, -0.35307636857032776, 0.00640863087028265, -0.0028256899677217007, 0.6084619760513306, -0.2995181381702423, 0.0005852736067026854, 0.004272014833986759, 0.021325767040252686, -0.05454070121049881, -2.7641375064849854, 0.5283485651016235, 0.21291173994541168, 1.1096553802490234, 0.16628111898899078, 0.2364727258682251, -0.15846741199493408, -2.958078384399414, -0.45620349049568176, -0.19501930475234985, 1.3105709552764893, -0.1176491379737854, 0.30133137106895447, 0.09389640390872955]} +{"t": 19.1066, "q": [-0.31190600991249084, -0.011397477239370346, 0.007740515749901533, 0.6291025876998901, -0.3415953814983368, 0.007107214070856571, -0.35317862033843994, 0.006417152937501669, -0.0027989062946289778, 0.6084534525871277, -0.29950985312461853, 0.0005852111498825252, 0.00416487967595458, 0.021340971812605858, -0.054530929774045944, -2.7633585929870605, 0.5282886028289795, 0.21291173994541168, 1.1080374717712402, 0.16626913845539093, 0.23650868237018585, -0.15846741199493408, -2.958054304122925, -0.45620349049568176, -0.19499532878398895, 1.3105828762054443, -0.1176491379737854, 0.3013433516025543, 0.09390839189291]} +{"t": 19.1234, "q": [-0.3119230568408966, -0.011397477239370346, 0.007740515749901533, 0.6291025876998901, -0.3415995240211487, 0.0070998892188072205, -0.3532041907310486, 0.00640863087028265, -0.0028122980147600174, 0.6084534525871277, -0.2995140254497528, 0.0005924856523051858, 0.0041247038170695305, 0.021394187584519386, -0.05449672415852547, -2.762495756149292, 0.5282406806945801, 0.21285182237625122, 1.1062278747558594, 0.16624517738819122, 0.23653265833854675, -0.15846741199493408, -2.9581263065338135, -0.45620349049568176, -0.1950073093175888, 1.3105828762054443, -0.11761318892240524, 0.3013193607330322, 0.09389640390872955]} +{"t": 19.1401, "q": [-0.3119230568408966, -0.011397477239370346, 0.007713731843978167, 0.629111111164093, -0.3415912687778473, 0.00711452029645443, -0.3531871438026428, 0.006417152937501669, -0.0027989062946289778, 0.6084619760513306, -0.29951000213623047, 0.0006142022903077304, 0.004138095770031214, 0.02143220603466034, -0.05448222532868385, -2.7615489959716797, 0.5281807780265808, 0.21287579834461212, 1.1044901609420776, 0.16628111898899078, 0.2365206629037857, -0.15846741199493408, -2.9581382274627686, -0.45620349049568176, -0.1950073093175888, 1.3105709552764893, -0.1176491379737854, 0.3013193607330322, 0.0938844233751297]} +{"t": 19.1569, "q": [-0.3119145333766937, -0.011414522305130959, 0.007713731843978167, 0.6290940642356873, -0.3415912687778473, 0.00711452029645443, -0.3531871438026428, 0.006417152937501669, -0.0028256899677217007, 0.6084449291229248, -0.2995181977748871, 0.0005997602129355073, 0.004178271628916264, 0.02148544043302536, -0.05446789786219597, -2.7602787017822266, 0.5281568169593811, 0.21281586587429047, 1.1026086807250977, 0.16626913845539093, 0.23653265833854675, -0.15846741199493408, -2.9581263065338135, -0.456215500831604, -0.19499532878398895, 1.3105709552764893, -0.11761318892240524, 0.3013193607330322, 0.0938844233751297]} +{"t": 19.1736, "q": [-0.3119230568408966, -0.011405999772250652, 0.007713731843978167, 0.629111111164093, -0.3415912687778473, 0.00711452029645443, -0.3531871438026428, 0.006417152937501669, -0.0028256899677217007, 0.6084364056587219, -0.29951411485671997, 0.0006069722585380077, 0.004218447022140026, 0.021553941071033478, -0.0545133613049984, -2.758624792098999, 0.5280728936195374, 0.2127799242734909, 1.1005833148956299, 0.16626913845539093, 0.23646074533462524, -0.15846741199493408, -2.9581382274627686, -0.45620349049568176, -0.19499532878398895, 1.310534954071045, -0.11763715744018555, 0.3013073801994324, 0.0938604548573494]} +{"t": 19.1903, "q": [-0.3119315803050995, -0.011397477239370346, 0.00772712379693985, 0.6291025876998901, -0.3415912687778473, 0.00711452029645443, -0.35317009687423706, 0.006417152937501669, -0.0028256899677217007, 0.6084449291229248, -0.2995181381702423, 0.0005852736067026854, 0.004272014833986759, 0.021599622443318367, -0.05456354469060898, -2.757006883621216, 0.5280249714851379, 0.21281586587429047, 1.0991451740264893, 0.16622120141983032, 0.23637685179710388, -0.15846741199493408, -2.9581382274627686, -0.45617952942848206, -0.19497136771678925, 1.3105828762054443, -0.1176251694560051, 0.3013433516025543, 0.0938844233751297]} +{"t": 19.2073, "q": [-0.3119230568408966, -0.011414522305130959, 0.007713731843978167, 0.629111111164093, -0.3415912687778473, 0.00711452029645443, -0.35317862033843994, 0.00640863087028265, -0.0028256899677217007, 0.6084449291229248, -0.2995181381702423, 0.0005852736067026854, 0.0042854067869484425, 0.02169852890074253, -0.05458945780992508, -2.7555928230285645, 0.5279530882835388, 0.21281586587429047, 1.0981744527816772, 0.16617326438426971, 0.23637685179710388, -0.15847939252853394, -2.9581141471862793, -0.4561435878276825, -0.19497136771678925, 1.3105709552764893, -0.1176491379737854, 0.3013193607330322, 0.09389640390872955]} +{"t": 19.224, "q": [-0.3119230568408966, -0.011414522305130959, 0.007740515749901533, 0.6291195750236511, -0.3415912687778473, 0.00711452029645443, -0.35317009687423706, 0.00640863087028265, -0.0028256899677217007, 0.6084704995155334, -0.2995181381702423, 0.0005852736067026854, 0.0042854067869484425, 0.02181258611381054, -0.05454597249627113, -2.7541308403015137, 0.5278571844100952, 0.2128278613090515, 1.0970360040664673, 0.16623318195343018, 0.23641280829906464, -0.15846741199493408, -2.958174228668213, -0.45610761642456055, -0.1949833482503891, 1.3105709552764893, -0.1176251694560051, 0.3013433516025543, 0.0938844233751297]} +{"t": 19.2407, "q": [-0.3119230568408966, -0.011405999772250652, 0.0077672996558249, 0.629128098487854, -0.3415831923484802, 0.007100061513483524, -0.35317009687423706, 0.00640863087028265, -0.0028256899677217007, 0.6084960699081421, -0.2995140254497528, 0.0005924856523051858, 0.004245230928063393, 0.021873440593481064, -0.05454663187265396, -2.752572774887085, 0.5277733206748962, 0.2128278613090515, 1.0957536697387695, 0.16624517738819122, 0.23641280829906464, -0.15847939252853394, -2.958162307739258, -0.4560477137565613, -0.1949593722820282, 1.3105589151382446, -0.1176491379737854, 0.30133137106895447, 0.09389640390872955]} +{"t": 19.2575, "q": [-0.3119230568408966, -0.01142304390668869, 0.007753907702863216, 0.6291451454162598, -0.3415831923484802, 0.007100061513483524, -0.3531615734100342, 0.006417152937501669, -0.0028256899677217007, 0.6085216403007507, -0.2995181381702423, 0.0005852736067026854, 0.004245230928063393, 0.02197992615401745, -0.054537881165742874, -2.750535488128662, 0.5276774168014526, 0.21276792883872986, 1.0937283039093018, 0.16625715792179108, 0.23643678426742554, -0.15847939252853394, -2.958162307739258, -0.4559997618198395, -0.19497136771678925, 1.3105709552764893, -0.11760120093822479, 0.30133137106895447, 0.09389640390872955]} +{"t": 19.2742, "q": [-0.31188899278640747, -0.01142304390668869, 0.0077672996558249, 0.6291621923446655, -0.3415912687778473, 0.00711452029645443, -0.35312750935554504, 0.00640863087028265, -0.0027989062946289778, 0.6085472106933594, -0.29950976371765137, 0.0005707245436497033, 0.004312190227210522, 0.02211694046854973, -0.05463887006044388, -2.748138666152954, 0.5275575518608093, 0.2128278613090515, 1.0914512872695923, 0.16623318195343018, 0.23641280829906464, -0.15846741199493408, -2.9581141471862793, -0.4559398591518402, -0.19497136771678925, 1.3105709552764893, -0.11761318892240524, 0.30133137106895447, 0.0938844233751297]} +{"t": 19.291, "q": [-0.3118804693222046, -0.011397477239370346, 0.0077672996558249, 0.6291877627372742, -0.3415831923484802, 0.007100061513483524, -0.3531360328197479, 0.006417152937501669, -0.0028256899677217007, 0.6085813045501709, -0.29950976371765137, 0.0005707245436497033, 0.004218447022140026, 0.022200673818588257, -0.05470447987318039, -2.746077299118042, 0.5274257659912109, 0.21281586587429047, 1.0894379615783691, 0.16625715792179108, 0.23635289072990417, -0.15846741199493408, -2.9581141471862793, -0.4559158682823181, -0.19499532878398895, 1.3105709552764893, -0.11760120093822479, 0.30133137106895447, 0.09389640390872955]} +{"t": 19.3077, "q": [-0.3118293285369873, -0.011405999772250652, 0.0077672996558249, 0.629196286201477, -0.3415831923484802, 0.007100061513483524, -0.3530934154987335, 0.006417152937501669, -0.0027989062946289778, 0.6086153984069824, -0.2994973957538605, 0.0005778740742243826, 0.004245230928063393, 0.022261550650000572, -0.05473503842949867, -2.7444114685058594, 0.5273059010505676, 0.2128038853406906, 1.087652325630188, 0.16626913845539093, 0.23634091019630432, -0.15847939252853394, -2.9581141471862793, -0.45587992668151855, -0.1949593722820282, 1.3105709552764893, -0.11761318892240524, 0.30136731266975403, 0.0938844233751297]} +{"t": 19.3245, "q": [-0.31184637546539307, -0.011414522305130959, 0.007753907702863216, 0.6292133331298828, -0.3415791392326355, 0.007092832121998072, -0.3530934154987335, 0.00640863087028265, -0.0027989062946289778, 0.6086409687995911, -0.29950565099716187, 0.0005779365892522037, 0.004272014833986759, 0.022322414442896843, -0.054745711386203766, -2.7428057193756104, 0.5272459983825684, 0.2128038853406906, 1.0854592323303223, 0.16624517738819122, 0.23638884723186493, -0.15846741199493408, -2.9582340717315674, -0.45587992668151855, -0.19497136771678925, 1.3105589151382446, -0.1176251694560051, 0.30133137106895447, 0.0938844233751297]} +{"t": 19.3412, "q": [-0.31184637546539307, -0.011431565508246422, 0.007807475049048662, 0.629196286201477, -0.3415749669075012, 0.0071146744303405285, -0.35311898589134216, 0.00640863087028265, -0.0027989062946289778, 0.608649492263794, -0.2994973957538605, 0.0005778740742243826, 0.004231838975101709, 0.022375652566552162, -0.054741375148296356, -2.7413196563720703, 0.5271740555763245, 0.2127799242734909, 1.0833020210266113, 0.16625715792179108, 0.23638884723186493, -0.15846741199493408, -2.958317995071411, -0.45585596561431885, -0.19501930475234985, 1.3105229139328003, -0.11760120093822479, 0.3013193607330322, 0.09389640390872955]} +{"t": 19.358, "q": [-0.31185489892959595, -0.011405999772250652, 0.007780691608786583, 0.6292218565940857, -0.3415791392326355, 0.007092832121998072, -0.3531445264816284, 0.006391586735844612, -0.0028122980147600174, 0.6086835861206055, -0.2995014786720276, 0.0005706620286218822, 0.004245230928063393, 0.022436486557126045, -0.05472221225500107, -2.7399773597717285, 0.5271740555763245, 0.21279190480709076, 1.0814924240112305, 0.16626913845539093, 0.23637685179710388, -0.15844343602657318, -2.9583418369293213, -0.455843985080719, -0.19497136771678925, 1.310534954071045, -0.11760120093822479, 0.3013433516025543, 0.09389640390872955]} +{"t": 19.3747, "q": [-0.31180375814437866, -0.011405999772250652, 0.007780691608786583, 0.6292133331298828, -0.3415709137916565, 0.007107445038855076, -0.3531104624271393, 0.006417152937501669, -0.0028122980147600174, 0.6087262034416199, -0.2994972765445709, 0.0005633693654090166, 0.004258622881025076, 0.022497404366731644, -0.054792553186416626, -2.7383716106414795, 0.5271500945091248, 0.2128038853406906, 1.0796349048614502, 0.16618524491786957, 0.23635289072990417, -0.15846741199493408, -2.958329916000366, -0.455843985080719, -0.19497136771678925, 1.3105469942092896, -0.11761318892240524, 0.3013193607330322, 0.09389640390872955]} +{"t": 19.3915, "q": [-0.3117952346801758, -0.011405999772250652, 0.007807475049048662, 0.6292133331298828, -0.3415791392326355, 0.007092832121998072, -0.3531019389629364, 0.006417152937501669, -0.0027989062946289778, 0.6087347269058228, -0.2995014786720276, 0.0005706620286218822, 0.004231838975101709, 0.02258874475955963, -0.054863255470991135, -2.736813545227051, 0.5270782113075256, 0.2128278613090515, 1.0779211521148682, 0.16623318195343018, 0.23631693422794342, -0.15846741199493408, -2.958317995071411, -0.4557720720767975, -0.19497136771678925, 1.3105709552764893, -0.11760120093822479, 0.30133137106895447, 0.09389640390872955]} +{"t": 19.4083, "q": [-0.31171852350234985, -0.011431565508246422, 0.007807475049048662, 0.6292389035224915, -0.3415791392326355, 0.007092832121998072, -0.35307636857032776, 0.00640863087028265, -0.0027989062946289778, 0.6087773442268372, -0.2994931936264038, 0.000570581469219178, 0.0041916631162166595, 0.022619187831878662, -0.05488350987434387, -2.735243558883667, 0.5269943475723267, 0.2128038853406906, 1.0758599042892456, 0.16623318195343018, 0.23634091019630432, -0.15846741199493408, -2.9583539962768555, -0.4557720720767975, -0.19499532878398895, 1.310534954071045, -0.11760120093822479, 0.3012953996658325, 0.09389640390872955]} +{"t": 19.425, "q": [-0.3117440938949585, -0.011414522305130959, 0.007847650907933712, 0.6292644739151001, -0.34156686067581177, 0.007100215647369623, -0.3531019389629364, 0.00640863087028265, -0.0027855143416672945, 0.6088369488716125, -0.2994931936264038, 0.000570581469219178, 0.004245230928063393, 0.02265721559524536, -0.05487899109721184, -2.7340331077575684, 0.5268145799636841, 0.2128038853406906, 1.073223352432251, 0.16622120141983032, 0.23636487126350403, -0.15847939252853394, -2.9584498405456543, -0.4557481110095978, -0.19497136771678925, 1.3105469942092896, -0.11760120093822479, 0.30133137106895447, 0.09389640390872955]} +{"t": 19.4419, "q": [-0.31176114082336426, -0.011440088041126728, 0.007874434813857079, 0.6292644739151001, -0.34156280755996704, 0.0070929862558841705, -0.35311898589134216, 0.006383064668625593, -0.002758730435743928, 0.6088369488716125, -0.2994890809059143, 0.0005778114427812397, 0.0041916631162166595, 0.022695226594805717, -0.054854586720466614, -2.732978582382202, 0.5266587734222412, 0.21285182237625122, 1.070838451385498, 0.16624517738819122, 0.23637685179710388, -0.15847939252853394, -2.958509683609009, -0.4557241201400757, -0.19497136771678925, 1.3105229139328003, -0.11760120093822479, 0.30133137106895447, 0.0938844233751297]} +{"t": 19.4586, "q": [-0.3117952346801758, -0.011414522305130959, 0.007901218719780445, 0.6292644739151001, -0.3415709137916565, 0.007107445038855076, -0.3531019389629364, 0.006391586735844612, -0.0027453387156128883, 0.6088369488716125, -0.29948481917381287, 0.000556032347958535, 0.004030960611999035, 0.022702811285853386, -0.05482981353998184, -2.732295513153076, 0.5265628695487976, 0.2128278613090515, 1.0689330101013184, 0.16624517738819122, 0.23640082776546478, -0.15846741199493408, -2.9584977626800537, -0.4557361304759979, -0.19497136771678925, 1.3105229139328003, -0.11761318892240524, 0.3013193607330322, 0.09389640390872955]} +{"t": 19.4753, "q": [-0.31176114082336426, -0.01142304390668869, 0.007901218719780445, 0.6292644739151001, -0.34156280755996704, 0.0070929862558841705, -0.35308489203453064, 0.006391586735844612, -0.0027453387156128883, 0.6088369488716125, -0.29948070645332336, 0.0005632623215205967, 0.003977392800152302, 0.022695207968354225, -0.054834697395563126, -2.7315523624420166, 0.5265149474143982, 0.21283984184265137, 1.066272497177124, 0.16623318195343018, 0.23643678426742554, -0.15846741199493408, -2.9584858417510986, -0.4557361304759979, -0.1949593722820282, 1.3105709552764893, -0.11760120093822479, 0.3013193607330322, 0.09390839189291]} +{"t": 19.4921, "q": [-0.3117440938949585, -0.011440088041126728, 0.007874434813857079, 0.6292644739151001, -0.3415709137916565, 0.007107445038855076, -0.3530934154987335, 0.006391586735844612, -0.002758730435743928, 0.6088369488716125, -0.29948490858078003, 0.0005705368821509182, 0.004071136470884085, 0.02269521914422512, -0.05484464019536972, -2.730461835861206, 0.5264191031455994, 0.2128038853406906, 1.0633124113082886, 0.16626913845539093, 0.2364247888326645, -0.15847939252853394, -2.958509683609009, -0.4556881785392761, -0.1949593722820282, 1.310534954071045, -0.11760120093822479, 0.3013073801994324, 0.09389640390872955]} +{"t": 19.5088, "q": [-0.31176114082336426, -0.011414522305130959, 0.007887826301157475, 0.6292474269866943, -0.3415791392326355, 0.007092832121998072, -0.35308489203453064, 0.006391586735844612, -0.0027721223887056112, 0.6088369488716125, -0.29949310421943665, 0.000556094862986356, 0.004111311864107847, 0.02268761768937111, -0.054849524050951004, -2.7298388481140137, 0.5263351798057556, 0.2128278613090515, 1.0613828897476196, 0.16618524491786957, 0.23634091019630432, -0.15846741199493408, -2.958629608154297, -0.4556881785392761, -0.1949593722820282, 1.3105229139328003, -0.1176251694560051, 0.3013193607330322, 0.09390839189291]} +{"t": 19.5256, "q": [-0.3117526173591614, -0.011440088041126728, 0.007874434813857079, 0.6292644739151001, -0.34156692028045654, 0.007085679564625025, -0.35308489203453064, 0.006391586735844612, -0.002731946762651205, 0.6088284254074097, -0.2994807958602905, 0.0005777489277534187, 0.004178271628916264, 0.02268761768937111, -0.054849524050951004, -2.729671001434326, 0.5263231992721558, 0.21283984184265137, 1.0605679750442505, 0.16619724035263062, 0.23630495369434357, -0.15847939252853394, -2.958617687225342, -0.45567619800567627, -0.1949354112148285, 1.3105109930038452, -0.11761318892240524, 0.3012953996658325, 0.09389640390872955]} +{"t": 19.5423, "q": [-0.3117526173591614, -0.011431565508246422, 0.007874434813857079, 0.6292644739151001, -0.34156280755996704, 0.0070929862558841705, -0.35307636857032776, 0.006400108803063631, -0.002758730435743928, 0.6088284254074097, -0.2994849979877472, 0.0005850234883837402, 0.004138095770031214, 0.022687625139951706, -0.0548594668507576, -2.7296109199523926, 0.526299238204956, 0.2128278613090515, 1.0601125955581665, 0.16617326438426971, 0.23631693422794342, -0.15846741199493408, -2.958521604537964, -0.45565223693847656, -0.1949354112148285, 1.3105229139328003, -0.11760120093822479, 0.30133137106895447, 0.09390839189291]} +{"t": 19.559, "q": [-0.31176966428756714, -0.011448610574007034, 0.007874434813857079, 0.6292815208435059, -0.3415791392326355, 0.007092832121998072, -0.35307636857032776, 0.006374542135745287, -0.002758730435743928, 0.608802855014801, -0.2994973957538605, 0.0005778740742243826, 0.0041916631162166595, 0.02269524522125721, -0.0548744723200798, -2.729527235031128, 0.526299238204956, 0.2128278613090515, 1.0597530603408813, 0.16623318195343018, 0.2362929731607437, -0.15847939252853394, -2.958509683609009, -0.4556402564048767, -0.1949354112148285, 1.3105229139328003, -0.11761318892240524, 0.3013193607330322, 0.09390839189291]} +{"t": 19.5759, "q": [-0.31176966428756714, -0.011431565508246422, 0.007874434813857079, 0.6292644739151001, -0.34157106280326843, 0.007078373339027166, -0.3530934154987335, 0.006383064668625593, -0.002731946762651205, 0.6087943315505981, -0.2994931936264038, 0.000570581469219178, 0.004205055069178343, 0.022695256397128105, -0.0548844188451767, -2.7294912338256836, 0.5262393355369568, 0.2128278613090515, 1.0595612525939941, 0.16624517738819122, 0.2362689971923828, -0.15846741199493408, -2.958533763885498, -0.45560428500175476, -0.19492343068122864, 1.3105229139328003, -0.11761318892240524, 0.3013073801994324, 0.09393236041069031]} +{"t": 19.5926, "q": [-0.31176966428756714, -0.011440088041126728, 0.007901218719780445, 0.6292815208435059, -0.3415709137916565, 0.007107445038855076, -0.3530934154987335, 0.006391586735844612, -0.0027453387156128883, 0.6087943315505981, -0.2994931936264038, 0.000570581469219178, 0.0041916631162166595, 0.022695261985063553, -0.05489436164498329, -2.7294793128967285, 0.5261434316635132, 0.2128278613090515, 1.0594534873962402, 0.16622120141983032, 0.2362929731607437, -0.15846741199493408, -2.9584498405456543, -0.4555923044681549, -0.19489945471286774, 1.3105469942092896, -0.11763715744018555, 0.3013073801994324, 0.09390839189291]} +{"t": 19.6093, "q": [-0.31176966428756714, -0.011440088041126728, 0.007887826301157475, 0.6292559504508972, -0.3415791392326355, 0.007092832121998072, -0.3530934154987335, 0.006357498001307249, -0.0027453387156128883, 0.6087943315505981, -0.29950156807899475, 0.0005851486348547041, 0.004231838975101709, 0.022748537361621857, -0.05492980405688286, -2.7294552326202393, 0.5260715484619141, 0.2128038853406906, 1.059261679649353, 0.16622120141983032, 0.23625701665878296, -0.15846741199493408, -2.958401918411255, -0.45558032393455505, -0.19492343068122864, 1.3105469942092896, -0.1176491379737854, 0.30133137106895447, 0.09390839189291]} +{"t": 19.6263, "q": [-0.31176966428756714, -0.011448610574007034, 0.007847650907933712, 0.6292644739151001, -0.3415791392326355, 0.007092832121998072, -0.3531019389629364, 0.006357498001307249, -0.0027453387156128883, 0.6087858080863953, -0.29950574040412903, 0.0005924231954850256, 0.004245230928063393, 0.022817039862275124, -0.05497537553310394, -2.7294671535491943, 0.5260475873947144, 0.21283984184265137, 1.0590699911117554, 0.16622120141983032, 0.23628097772598267, -0.15846741199493408, -2.9583539962768555, -0.45558032393455505, -0.1949354112148285, 1.3105709552764893, -0.11763715744018555, 0.30133137106895447, 0.09392037242650986]} +{"t": 19.643, "q": [-0.31176966428756714, -0.011457132175564766, 0.007847650907933712, 0.6292559504508972, -0.3415791392326355, 0.007092832121998072, -0.3531445264816284, 0.006340453866869211, -0.0027453387156128883, 0.6087773442268372, -0.2995181977748871, 0.0005997602129355073, 0.0042854067869484425, 0.022938786074519157, -0.055026549845933914, -2.7294793128967285, 0.5260835289955139, 0.21286380290985107, 1.058866262435913, 0.16617326438426971, 0.23630495369434357, -0.15845543146133423, -2.958306074142456, -0.45560428500175476, -0.1949354112148285, 1.310594916343689, -0.11761318892240524, 0.3013433516025543, 0.09392037242650986]} +{"t": 19.6597, "q": [-0.31176966428756714, -0.011448610574007034, 0.007807475049048662, 0.629272997379303, -0.3415831923484802, 0.007100061513483524, -0.3531530499458313, 0.006331931799650192, -0.0027453387156128883, 0.6087602972984314, -0.29952239990234375, 0.0006070347735658288, 0.004258622881025076, 0.02307576686143875, -0.0550977997481823, -2.729527235031128, 0.5261673927307129, 0.21289975941181183, 1.0583868026733398, 0.16617326438426971, 0.23635289072990417, -0.15845543146133423, -2.958281993865967, -0.45558032393455505, -0.1949593722820282, 1.3105828762054443, -0.11761318892240524, 0.3013433516025543, 0.09389640390872955]} +{"t": 19.6765, "q": [-0.31177818775177, -0.011465654708445072, 0.007820867002010345, 0.629272997379303, -0.341575026512146, 0.00710013834759593, -0.3531445264816284, 0.006323409732431173, -0.0027453387156128883, 0.6087347269058228, -0.29951417446136475, 0.0006214768509380519, 0.004312190227210522, 0.023243209347128868, -0.055209189653396606, -2.7295751571655273, 0.5262393355369568, 0.2129596769809723, 1.057763695716858, 0.16622120141983032, 0.236496701836586, -0.15844343602657318, -2.9582700729370117, -0.45558032393455505, -0.1949354112148285, 1.3105828762054443, -0.11761318892240524, 0.30133137106895447, 0.09389640390872955]} +{"t": 19.6932, "q": [-0.3117952346801758, -0.01148269884288311, 0.0077672996558249, 0.6292474269866943, -0.3415791392326355, 0.007092832121998072, -0.3531615734100342, 0.006297843065112829, -0.002731946762651205, 0.6087006330490112, -0.2995142638683319, 0.0006359634571708739, 0.004298798739910126, 0.02347150444984436, -0.055321305990219116, -2.7298388481140137, 0.5262513160705566, 0.21294769644737244, 1.0571644306182861, 0.16614930331707, 0.2367483675479889, -0.15841947495937347, -2.9582581520080566, -0.45555636286735535, -0.1949593722820282, 1.3106307983398438, -0.11763715744018555, 0.3012953996658325, 0.09389640390872955]} +{"t": 19.7099, "q": [-0.31180375814437866, -0.011508265510201454, 0.0077672996558249, 0.6292474269866943, -0.3415831923484802, 0.007100061513483524, -0.3531615734100342, 0.00628932099789381, -0.002718554809689522, 0.6087006330490112, -0.2995224893093109, 0.0006215213797986507, 0.004272014833986759, 0.023745417594909668, -0.05541408807039261, -2.7304859161376953, 0.5263711214065552, 0.21313944458961487, 1.0568169355392456, 0.1661253273487091, 0.237095907330513, -0.15825168788433075, -2.958162307739258, -0.4554964303970337, -0.1949354112148285, 1.310606837272644, -0.11763715744018555, 0.30133137106895447, 0.09389640390872955]} +{"t": 19.7268, "q": [-0.3117867112159729, -0.011508265510201454, 0.007807475049048662, 0.6292474269866943, -0.3415831923484802, 0.007100061513483524, -0.35317009687423706, 0.006280798930674791, -0.0027051628567278385, 0.6086665391921997, -0.29951417446136475, 0.0006214768509380519, 0.004205055069178343, 0.024057354778051376, -0.05551237240433693, -2.7316484451293945, 0.5268265604972839, 0.21321135759353638, 1.0567450523376465, 0.16614930331707, 0.2373236119747162, -0.1579640656709671, -2.9580423831939697, -0.45553237199783325, -0.1949354112148285, 1.3106307983398438, -0.11763715744018555, 0.3013433516025543, 0.09389640390872955]} +{"t": 19.7436, "q": [-0.31180375814437866, -0.011516787111759186, 0.007780691608786583, 0.6292303800582886, -0.34159141778945923, 0.007085430435836315, -0.35317862033843994, 0.006272276863455772, -0.0027051628567278385, 0.608649492263794, -0.2995266616344452, 0.0006287959404289722, 0.004218447022140026, 0.024490851908922195, -0.05549301207065582, -2.7332661151885986, 0.5273658037185669, 0.21336714923381805, 1.057092547416687, 0.16613730788230896, 0.23841418325901031, -0.15770041942596436, -2.9579944610595703, -0.4555203914642334, -0.19492343068122864, 1.3106787204742432, -0.1176491379737854, 0.30133137106895447, 0.09390839189291]} +{"t": 19.7603, "q": [-0.31180375814437866, -0.01154235377907753, 0.007807475049048662, 0.6292133331298828, -0.3415791392326355, 0.007092832121998072, -0.35317862033843994, 0.006238188594579697, -0.002691771136596799, 0.6086153984069824, -0.2995017170906067, 0.0006141397752799094, 0.0042854067869484425, 0.024878716096282005, -0.05548320710659027, -2.7347283363342285, 0.5280129909515381, 0.21345104277133942, 1.0574041604995728, 0.16611334681510925, 0.23908528685569763, -0.15744875371456146, -2.9580423831939697, -0.4554485082626343, -0.19489945471286774, 1.3106547594070435, -0.1176731064915657, 0.30133137106895447, 0.09390839189291]} +{"t": 19.7773, "q": [-0.31180375814437866, -0.011593486182391644, 0.007887826301157475, 0.6292048096656799, -0.3415709137916565, 0.007107445038855076, -0.35317862033843994, 0.006221144460141659, -0.0026783791836351156, 0.6086324453353882, -0.2994934320449829, 0.0006140773184597492, 0.004245230928063393, 0.025373084470629692, -0.05549486726522446, -2.7357468605041504, 0.5287919640541077, 0.21349897980690002, 1.058123230934143, 0.1661253273487091, 0.2398642748594284, -0.15713715553283691, -2.9581382274627686, -0.4552927017211914, -0.19488747417926788, 1.310666799545288, -0.11763715744018555, 0.3013193607330322, 0.09390839189291]} +{"t": 19.794, "q": [-0.3117952346801758, -0.011610530316829681, 0.007847650907933712, 0.6292048096656799, -0.3415791392326355, 0.007092832121998072, -0.3531530499458313, 0.006204099860042334, -0.002651595277711749, 0.6086750626564026, -0.2994934320449829, 0.0006140773184597492, 0.0042854067869484425, 0.02579905465245247, -0.05555037036538124, -2.7365379333496094, 0.5297027826309204, 0.2136307954788208, 1.059489369392395, 0.16616128385066986, 0.24079903960227966, -0.1568135917186737, -2.9581141471862793, -0.45513689517974854, -0.19492343068122864, 1.310666799545288, -0.11766112595796585, 0.3013193607330322, 0.09390839189291]} +{"t": 19.8109, "q": [-0.3117867112159729, -0.011627575382590294, 0.007834259420633316, 0.6292133331298828, -0.3415791392326355, 0.007092832121998072, -0.3531530499458313, 0.006187055725604296, -0.002691771136596799, 0.6086580157279968, -0.2994976341724396, 0.0006213518208824098, 0.004553244449198246, 0.026301130652427673, -0.05565661936998367, -2.737161159515381, 0.53048175573349, 0.21381056308746338, 1.0611672401428223, 0.16614930331707, 0.2418656349182129, -0.15647803246974945, -2.95806622505188, -0.45502904057502747, -0.19489945471286774, 1.3106907606124878, -0.1176491379737854, 0.30133137106895447, 0.09390839189291]} +{"t": 19.8277, "q": [-0.31176114082336426, -0.011695751920342445, 0.007780691608786583, 0.6292133331298828, -0.3415749669075012, 0.0071146744303405285, -0.35311898589134216, 0.006127400789409876, -0.0027453387156128883, 0.6086409687995911, -0.29948925971984863, 0.0006068027578294277, 0.00479429867118597, 0.026803217828273773, -0.055782902985811234, -2.7378323078155518, 0.5312007665634155, 0.21396635472774506, 1.0624494552612305, 0.16614930331707, 0.2437831163406372, -0.15613049268722534, -2.9578864574432373, -0.45502904057502747, -0.19489945471286774, 1.3107386827468872, -0.11763715744018555, 0.30133137106895447, 0.09390839189291]} +{"t": 19.8444, "q": [-0.3117952346801758, -0.011729840189218521, 0.007807475049048662, 0.6292133331298828, -0.341566801071167, 0.007114751264452934, -0.3531019389629364, 0.006076268386095762, -0.0027989062946289778, 0.6087091565132141, -0.299481064081192, 0.0006212268490344286, 0.005182663444429636, 0.02730528451502323, -0.055899448692798615, -2.7382516860961914, 0.5321475267410278, 0.21417008340358734, 1.0628329515457153, 0.16617326438426971, 0.24639567732810974, -0.155914768576622, -2.9576587677001953, -0.4550410211086273, -0.19489945471286774, 1.310822606086731, -0.11766112595796585, 0.3013433516025543, 0.09392037242650986]} +{"t": 19.8611, "q": [-0.3117952346801758, -0.011738361790776253, 0.007807475049048662, 0.6292218565940857, -0.34156280755996704, 0.0070929862558841705, -0.3531019389629364, 0.006042179651558399, -0.0027721223887056112, 0.6087006330490112, -0.299456387758255, 0.0006500305025838315, 0.005356758367270231, 0.027860531583428383, -0.05596206337213516, -2.7385032176971436, 0.5331541895866394, 0.214230015873909, 1.0629408359527588, 0.16619724035263062, 0.24941569566726685, -0.1557949334383011, -2.957491159439087, -0.45502904057502747, -0.19488747417926788, 1.310834527015686, -0.1176731064915657, 0.30133137106895447, 0.09390839189291]} +{"t": 19.8779, "q": [-0.3117867112159729, -0.011772450059652328, 0.007834259420633316, 0.6292218565940857, -0.3415587842464447, 0.007085756864398718, -0.3531019389629364, 0.00603365758433938, -0.002758730435743928, 0.608717679977417, -0.29943180084228516, 0.0006933028344064951, 0.005356758367270231, 0.028393005952239037, -0.05606909468770027, -2.7393901348114014, 0.5341848731040955, 0.2142060399055481, 1.0630847215652466, 0.16619724035263062, 0.2537659704685211, -0.15575897693634033, -2.9574310779571533, -0.4549451470375061, -0.19489945471286774, 1.3108584880828857, -0.11769707500934601, 0.3013433516025543, 0.09393236041069031]} +{"t": 19.8946, "q": [-0.3117867112159729, -0.01178097352385521, 0.007847650907933712, 0.6292303800582886, -0.3415547311306, 0.00707850931212306, -0.3531104624271393, 0.006025135517120361, -0.002731946762651205, 0.6087262034416199, -0.29942360520362854, 0.0007077449117787182, 0.005316582508385181, 0.028993910178542137, -0.05616256594657898, -2.7406005859375, 0.5350716710090637, 0.2143019139766693, 1.0632284879684448, 0.16617326438426971, 0.25914689898490906, -0.15569905936717987, -2.9574551582336426, -0.4547414183616638, -0.19486349821090698, 1.3109064102172852, -0.11769707500934601, 0.3013193607330322, 0.09394434094429016]} +{"t": 19.9113, "q": [-0.31176966428756714, -0.011832104995846748, 0.007874434813857079, 0.6292303800582886, -0.34155067801475525, 0.007071279920637608, -0.3530934154987335, 0.0060080913826823235, -0.0027051628567278385, 0.6087347269058228, -0.2994154095649719, 0.0007221690029837191, 0.005329974461346865, 0.029587192460894585, -0.056281331926584244, -2.741954803466797, 0.5357787609100342, 0.21433787047863007, 1.064043402671814, 0.16618524491786957, 0.2634012997150421, -0.15545937418937683, -2.9574432373046875, -0.4544178545475006, -0.19486349821090698, 1.3109064102172852, -0.11769707500934601, 0.30133137106895447, 0.09396830946207047]} +{"t": 19.928, "q": [-0.31176966428756714, -0.011891759932041168, 0.007847650907933712, 0.6292303800582886, -0.3415425717830658, 0.007056821137666702, -0.3531104624271393, 0.0059569585137069225, -0.002718554809689522, 0.6087602972984314, -0.29939499497413635, 0.0007727338233962655, 0.005329974461346865, 0.030165277421474457, -0.05642983689904213, -2.7433688640594482, 0.5362341403961182, 0.21433787047863007, 1.0648943185806274, 0.1663290560245514, 0.26709243655204773, -0.1549919843673706, -2.9574432373046875, -0.4540942907333374, -0.19486349821090698, 1.31089448928833, -0.11769707500934601, 0.30133137106895447, 0.09396830946207047]} +{"t": 19.9448, "q": [-0.31176114082336426, -0.01193437073379755, 0.007820867002010345, 0.6292474269866943, -0.34153854846954346, 0.00704959174618125, -0.3531360328197479, 0.005854693241417408, -0.002718554809689522, 0.6087688207626343, -0.29938268661499023, 0.0007943700184114277, 0.005450501572340727, 0.0308118537068367, -0.056624166667461395, -2.745022773742676, 0.5364738702774048, 0.21434985101222992, 1.0660806894302368, 0.16641294956207275, 0.27150261402130127, -0.15423697233200073, -2.9574310779571533, -0.4536508619785309, -0.19485151767730713, 1.3109064102172852, -0.11769707500934601, 0.30133137106895447, 0.09396830946207047]} +{"t": 19.9615, "q": [-0.31177818775177, -0.0119684599339962, 0.007807475049048662, 0.6292389035224915, -0.3415183126926422, 0.007013426627963781, -0.35317009687423706, 0.005820604972541332, -0.0027453387156128883, 0.6087688207626343, -0.29937031865119934, 0.0008015195489861071, 0.0056112040765583515, 0.031526871025562286, -0.05682457983493805, -2.746892213821411, 0.5368693470954895, 0.21437382698059082, 1.067183256149292, 0.1664489060640335, 0.27792617678642273, -0.15327824652194977, -2.957407236099243, -0.45313555002212524, -0.19480358064174652, 1.3109064102172852, -0.11768509447574615, 0.3013073801994324, 0.09399227797985077]} +{"t": 19.9782, "q": [-0.31176966428756714, -0.012002548202872276, 0.007834259420633316, 0.6292389035224915, -0.3415021300315857, 0.006984509062021971, -0.3531871438026428, 0.005786516238003969, -0.0027453387156128883, 0.6087943315505981, -0.2993704080581665, 0.000816006155218929, 0.005785298999398947, 0.03208991140127182, -0.057112421840429306, -2.7487497329711914, 0.537360668182373, 0.21443374454975128, 1.0684056282043457, 0.1664249300956726, 0.2836546301841736, -0.1525472104549408, -2.9573233127593994, -0.45260822772979736, -0.19482755661010742, 1.3109064102172852, -0.11768509447574615, 0.30133137106895447, 0.09398029744625092]} +{"t": 19.9949, "q": [-0.3117867112159729, -0.01202811487019062, 0.007753907702863216, 0.6292218565940857, -0.3414859175682068, 0.0069555738009512424, -0.3534172475337982, 0.0057439059019088745, -0.002718554809689522, 0.6087773442268372, -0.2993539869785309, 0.0008448723237961531, 0.005865650251507759, 0.03267577290534973, -0.057415857911109924, -2.7507033348083496, 0.538031816482544, 0.21443374454975128, 1.0703949928283691, 0.16636501252651215, 0.2876453697681427, -0.15204386413097382, -2.9572155475616455, -0.45198506116867065, -0.19482755661010742, 1.3111342191696167, -0.11768509447574615, 0.3013193607330322, 0.09398029744625092]} +{"t": 20.0118, "q": [-0.3117867112159729, -0.01205368060618639, 0.007794083096086979, 0.6292389035224915, -0.341473788022995, 0.0069338856264948845, -0.3535535931587219, 0.0057524279691278934, -0.002691771136596799, 0.6087943315505981, -0.2993541657924652, 0.000873845536261797, 0.005825474392622709, 0.03320832923054695, -0.057653721421957016, -2.7529563903808594, 0.5386789441108704, 0.2144816815853119, 1.0721087455749512, 0.1663530319929123, 0.29152825474739075, -0.15155251324176788, -2.9571914672851562, -0.4512779712677002, -0.19480358064174652, 1.3112061023712158, -0.11768509447574615, 0.3013193607330322, 0.09399227797985077]} +{"t": 20.0285, "q": [-0.3117952346801758, -0.012087768875062466, 0.007847650907933712, 0.6292389035224915, -0.3414576053619385, 0.006904968060553074, -0.35381779074668884, 0.00571833923459053, -0.002624811604619026, 0.6087943315505981, -0.29933810234069824, 0.0009606580715626478, 0.005785298999398947, 0.03379392623901367, -0.05776852369308472, -2.7559163570404053, 0.5392541885375977, 0.2144816815853119, 1.0733431577682495, 0.16629311442375183, 0.29803571105003357, -0.15073758363723755, -2.9572033882141113, -0.4505229890346527, -0.19482755661010742, 1.3111821413040161, -0.11766112595796585, 0.3013073801994324, 0.09399227797985077]} +{"t": 20.0452, "q": [-0.3117867112159729, -0.012104813009500504, 0.007847650907933712, 0.6292389035224915, -0.34145355224609375, 0.006897720508277416, -0.35406494140625, 0.005684250965714455, -0.00258463597856462, 0.6088199019432068, -0.299321711063385, 0.0009895242983475327, 0.0057719070464372635, 0.03440236300230026, -0.057908620685338974, -2.75894832611084, 0.5395417809486389, 0.21463747322559357, 1.0747452974319458, 0.166376993060112, 0.3050225079059601, -0.14965900778770447, -2.9572513103485107, -0.44986385107040405, -0.19479160010814667, 1.3111940622329712, -0.1176491379737854, 0.3013073801994324, 0.09399227797985077]} +{"t": 20.0619, "q": [-0.3117867112159729, -0.012147423811256886, 0.007794083096086979, 0.6292389035224915, -0.3414454758167267, 0.006883261725306511, -0.35413309931755066, 0.005616073962301016, -0.0026382035575807095, 0.608879566192627, -0.2993258833885193, 0.0009968169033527374, 0.005892434157431126, 0.0348893478512764, -0.058215927332639694, -2.760806083679199, 0.5397575497627258, 0.2147812843322754, 1.0761594772338867, 0.16631707549095154, 0.3090372085571289, -0.14919161796569824, -2.957167387008667, -0.4493485391139984, -0.19479160010814667, 1.3112540245056152, -0.1176491379737854, 0.3013193607330322, 0.09399227797985077]} +{"t": 20.0786, "q": [-0.31181228160858154, -0.012198556214571, 0.00772712379693985, 0.6292559504508972, -0.34143736958503723, 0.006868802942335606, -0.3543035387992859, 0.005556419026106596, -0.002718554809689522, 0.6089221835136414, -0.299342542886734, 0.0010114285396412015, 0.005986177362501621, 0.035345789045095444, -0.05841332674026489, -2.763550281524658, 0.5400331616401672, 0.21486517786979675, 1.078748106956482, 0.1663530319929123, 0.3129081130027771, -0.14913170039653778, -2.957059621810913, -0.44898900389671326, -0.19479160010814667, 1.3112540245056152, -0.1176491379737854, 0.3013193607330322, 0.09396830946207047]} +{"t": 20.0956, "q": [-0.3118208050727844, -0.012198556214571, 0.007740515749901533, 0.6292474269866943, -0.3414129614830017, 0.006854480132460594, -0.3544739782810211, 0.005539374891668558, -0.0027051628567278385, 0.6089307069778442, -0.2993798553943634, 0.0010189531603828073, 0.005972785409539938, 0.035642337054014206, -0.058443717658519745, -2.7675890922546387, 0.5404166579246521, 0.21523667871952057, 1.082355260848999, 0.16625715792179108, 0.3173542618751526, -0.14910772442817688, -2.957059621810913, -0.4486294686794281, -0.19476762413978577, 1.3112540245056152, -0.11766112595796585, 0.3013073801994324, 0.09395632892847061]} +{"t": 20.1123, "q": [-0.3119741976261139, -0.012207078747451305, 0.007820867002010345, 0.6292559504508972, -0.3414211869239807, 0.00683986721560359, -0.3545592129230499, 0.005539374891668558, -0.0025980276986956596, 0.6089221835136414, -0.29968926310539246, 0.0015284413238987327, 0.005852258298546076, 0.03592367470264435, -0.05847388878464699, -2.7721550464630127, 0.5408600568771362, 0.2160995453596115, 1.085543155670166, 0.16630509495735168, 0.3239216208457947, -0.1490238457918167, -2.957071542739868, -0.44831788539886475, -0.19476762413978577, 1.3113019466400146, -0.11768509447574615, 0.30128341913223267, 0.09392037242650986]} +{"t": 20.129, "q": [-0.312153160572052, -0.012207078747451305, 0.007887826301157475, 0.6292644739151001, -0.34141308069229126, 0.006825408432632685, -0.3545762598514557, 0.005530852824449539, -0.002531068166717887, 0.6089818477630615, -0.2997312545776367, 0.001630196231417358, 0.005731731187552214, 0.03625820577144623, -0.05848018079996109, -2.7763254642486572, 0.5411117672920227, 0.21746575832366943, 1.088095784187317, 0.16629311442375183, 0.3297100067138672, -0.14886803925037384, -2.957071542739868, -0.4479104280471802, -0.1947316825389862, 1.31128990650177, -0.11768509447574615, 0.3013073801994324, 0.0938604548573494]} +{"t": 20.1459, "q": [-0.31217020750045776, -0.012224122881889343, 0.007874434813857079, 0.629272997379303, -0.34141308069229126, 0.006825408432632685, -0.35455068945884705, 0.005530852824449539, -0.0025578520726412535, 0.6090329885482788, -0.2995806634426117, 0.0013682401040568948, 0.005892434157431126, 0.03670685738325119, -0.05855331942439079, -2.779261589050293, 0.5413873791694641, 0.21890385448932648, 1.0895698070526123, 0.1663290560245514, 0.3344797194004059, -0.14879614114761353, -2.9569756984710693, -0.4473831057548523, -0.1947556436061859, 1.311337947845459, -0.11768509447574615, 0.3013073801994324, 0.09380052983760834]} +{"t": 20.1626, "q": [-0.31213611364364624, -0.012283777818083763, 0.007807475049048662, 0.6292815208435059, -0.34141308069229126, 0.006825408432632685, -0.35458478331565857, 0.005471197888255119, -0.0026382035575807095, 0.6090329885482788, -0.2995721995830536, 0.0013391863321885467, 0.006066528614610434, 0.03707965463399887, -0.058764390647411346, -2.7812869548797607, 0.5416150689125061, 0.2202700525522232, 1.0906484127044678, 0.16629311442375183, 0.3388659656047821, -0.14880812168121338, -2.9567480087280273, -0.4467599391937256, -0.19476762413978577, 1.3114337921142578, -0.11769707500934601, 0.3012953996658325, 0.09376458078622818]} +{"t": 20.1793, "q": [-0.3121190667152405, -0.012334910221397877, 0.007807475049048662, 0.6292815208435059, -0.34141308069229126, 0.006825408432632685, -0.3547466993331909, 0.005411543417721987, -0.0026382035575807095, 0.6090415120124817, -0.2995803952217102, 0.001324762124568224, 0.006160271819680929, 0.037528492510318756, -0.058986846357584, -2.784151315689087, 0.5421184301376343, 0.22125276923179626, 1.0923621654510498, 0.16629311442375183, 0.3445344865322113, -0.14880812168121338, -2.9565563201904297, -0.445980966091156, -0.19476762413978577, 1.3114817142486572, -0.11768509447574615, 0.3012953996658325, 0.09372862428426743]} +{"t": 20.1961, "q": [-0.3121872544288635, -0.012351954355835915, 0.007914610207080841, 0.6292644739151001, -0.3414252996444702, 0.006832560990005732, -0.3549000918865204, 0.005403021350502968, -0.0025712440256029367, 0.6089988946914673, -0.2998940646648407, 0.0018560296157374978, 0.006066528614610434, 0.03806835785508156, -0.05909225717186928, -2.7870514392852783, 0.542741596698761, 0.22130070626735687, 1.0941238403320312, 0.16630509495735168, 0.3494839668273926, -0.14876018464565277, -2.9565083980560303, -0.44509413838386536, -0.19480358064174652, 1.3115416765213013, -0.11770906299352646, 0.3012953996658325, 0.09359680116176605]} +{"t": 20.2128, "q": [-0.31222987174987793, -0.012377521023154259, 0.008008353412151337, 0.6292815208435059, -0.3414211869239807, 0.00683986721560359, -0.3549000918865204, 0.005403021350502968, -0.0025176764465868473, 0.6090670824050903, -0.2998898923397064, 0.0018487550551071763, 0.006120096426457167, 0.03875264152884483, -0.05922582745552063, -2.789196491241455, 0.543340802192688, 0.22130070626735687, 1.0953222513198853, 0.1663290560245514, 0.3534747362136841, -0.14868828654289246, -2.956460475921631, -0.44400355219841003, -0.19482755661010742, 1.311505675315857, -0.11769707500934601, 0.3012953996658325, 0.09350092709064484]} +{"t": 20.2296, "q": [-0.31236621737480164, -0.012420130893588066, 0.008008353412151337, 0.6292900443077087, -0.3414211869239807, 0.00683986721560359, -0.35491713881492615, 0.005351888481527567, -0.002531068166717887, 0.6091437935829163, -0.29976028203964233, 0.0016376582207158208, 0.006079920567572117, 0.03955866023898125, -0.05944150313735008, -2.791593551635742, 0.5439999103546143, 0.22138459980487823, 1.0973715782165527, 0.16636501252651215, 0.3566385507583618, -0.14868828654289246, -2.9564363956451416, -0.4426853060722351, -0.19482755661010742, 1.3115416765213013, -0.11772104352712631, 0.3012953996658325, 0.09336909651756287]} +{"t": 20.2463, "q": [-0.31268152594566345, -0.012488308362662792, 0.008048529736697674, 0.6293241381645203, -0.3414211869239807, 0.00683986721560359, -0.3549000918865204, 0.005343366414308548, -0.0024908925406634808, 0.6092033982276917, -0.2996308505535126, 0.0014555527595803142, 0.006079920567572117, 0.04034977778792381, -0.059865765273571014, -2.793762683868408, 0.5448388457298279, 0.2213726043701172, 1.0995646715164185, 0.1663290560245514, 0.35922715067863464, -0.14872422814369202, -2.956460475921631, -0.44130709767341614, -0.19482755661010742, 1.3114936351776123, -0.11770906299352646, 0.30125945806503296, 0.09324925392866135]} +{"t": 20.2631, "q": [-0.31286901235580444, -0.012513874098658562, 0.008182448334991932, 0.6293070912361145, -0.3414170742034912, 0.006847173906862736, -0.35491713881492615, 0.005317800212651491, -0.0023301898036152124, 0.6092886328697205, -0.29944679141044617, 0.0011353821028023958, 0.006012961268424988, 0.041079822927713394, -0.06015025079250336, -2.7960636615753174, 0.5457856059074402, 0.22140856087207794, 1.101002812385559, 0.16636501252651215, 0.3621872663497925, -0.14877216517925262, -2.956484317779541, -0.4394855201244354, -0.19482755661010742, 1.3113858699798584, -0.11774501204490662, 0.3012474775314331, 0.09311743080615997]} +{"t": 20.2799, "q": [-0.31294572353363037, -0.01256500743329525, 0.008410110138356686, 0.6293326616287231, -0.34142524003982544, 0.006847114767879248, -0.3548830449581146, 0.005292233545333147, -0.0021962709724903107, 0.6095017194747925, -0.29942604899406433, 0.001127964467741549, 0.005905826110392809, 0.04196922853589058, -0.06027430295944214, -2.7981009483337402, 0.5466364622116089, 0.22136062383651733, 1.1014461517333984, 0.16636501252651215, 0.3654829263687134, -0.14878416061401367, -2.9565322399139404, -0.4374002516269684, -0.19482755661010742, 1.3114217519760132, -0.11772104352712631, 0.30121150612831116, 0.09299758821725845]} +{"t": 20.2967, "q": [-0.31291162967681885, -0.012582051567733288, 0.008758299984037876, 0.629341185092926, -0.34142106771469116, 0.006868956610560417, -0.35491713881492615, 0.005300755612552166, -0.001941824913956225, 0.6099192500114441, -0.2994091212749481, 0.001069874968379736, 0.005905826110392809, 0.042645592242479324, -0.06022430956363678, -2.7999465465545654, 0.547451376914978, 0.22131268680095673, 1.101613998413086, 0.16643692553043365, 0.36849096417427063, -0.14878416061401367, -2.956604242324829, -0.43531498312950134, -0.19482755661010742, 1.3114337921142578, -0.11774501204490662, 0.301223486661911, 0.09288972616195679]} +{"t": 20.3134, "q": [-0.31292015314102173, -0.012658750638365746, 0.009093097411096096, 0.6294008493423462, -0.3414250910282135, 0.006876186467707157, -0.35500237345695496, 0.00526666734367609, -0.0017275545978918672, 0.6104561686515808, -0.2994340658187866, 0.0010845671640709043, 0.005879042204469442, 0.04339767247438431, -0.05995677039027214, -2.8022713661193848, 0.5482543110847473, 0.22131268680095673, 1.1017817258834839, 0.16641294956207275, 0.3708159029483795, -0.14878416061401367, -2.956712007522583, -0.4333016574382782, -0.19480358064174652, 1.3113977909088135, -0.11773303151130676, 0.3011995255947113, 0.09278187155723572]} +{"t": 20.3302, "q": [-0.31291162967681885, -0.012709883973002434, 0.009307367727160454, 0.6294946074485779, -0.3414250910282135, 0.006876186467707157, -0.35524097084999084, 0.0052325790748000145, -0.0015936355339363217, 0.610890805721283, -0.29946309328079224, 0.0010920113418251276, 0.005812082905322313, 0.04411129280924797, -0.059535570442676544, -2.804788112640381, 0.5487217307090759, 0.22132466733455658, 1.1020333766937256, 0.16643692553043365, 0.37205028533935547, -0.14879614114761353, -2.956808090209961, -0.43156394362449646, -0.19479160010814667, 1.3113977909088135, -0.11772104352712631, 0.301223486661911, 0.09267401695251465]} +{"t": 20.3469, "q": [-0.31299686431884766, -0.012709883973002434, 0.009481461718678474, 0.6295286417007446, -0.3414250910282135, 0.006876186467707157, -0.3553943932056427, 0.005241101142019033, -0.0014998923288658261, 0.6111464500427246, -0.299471378326416, 0.0010920919012278318, 0.00571833923459053, 0.044710975140333176, -0.059146612882614136, -2.8071250915527344, 0.5491291880607605, 0.22130070626735687, 1.1022251844406128, 0.16643692553043365, 0.3725655972957611, -0.14879614114761353, -2.956939697265625, -0.4302336871623993, -0.19479160010814667, 1.3112419843673706, -0.11773303151130676, 0.3011755645275116, 0.09256615489721298]} +{"t": 20.3637, "q": [-0.31319287419319153, -0.012726927176117897, 0.009521638043224812, 0.6295456886291504, -0.34141701459884644, 0.0068617272190749645, -0.35565003752708435, 0.005241101142019033, -0.0014597165863960981, 0.611333966255188, -0.29947957396507263, 0.001077667810022831, 0.005651379935443401, 0.04514367878437042, -0.05886293202638626, -2.8095219135284424, 0.5495486259460449, 0.22127673029899597, 1.1024049520492554, 0.16650882363319397, 0.3726135194301605, -0.14882010221481323, -2.9575390815734863, -0.4292509853839874, -0.19474366307258606, 1.3110142946243286, -0.11774501204490662, 0.30111563205718994, 0.0924103632569313]} +{"t": 20.3805, "q": [-0.31322693824768066, -0.012726927176117897, 0.009642165154218674, 0.6295542120933533, -0.3414088487625122, 0.006861786358058453, -0.3558034300804138, 0.005258145276457071, -0.001419540960341692, 0.6115128993988037, -0.29947522282600403, 0.0010414018761366606, 0.005530852824449539, 0.04550045356154442, -0.05861728638410568, -2.8117988109588623, 0.5499441027641296, 0.2212407886981964, 1.1026805639266968, 0.16649684309959412, 0.3725416362285614, -0.14884407818317413, -2.957970380783081, -0.4286158084869385, -0.19476762413978577, 1.3109663724899292, -0.11773303151130676, 0.3010796904563904, 0.09237440675497055]} +{"t": 20.3972, "q": [-0.3133036494255066, -0.012709883973002434, 0.009722515940666199, 0.629571259021759, -0.3414088487625122, 0.006861786358058453, -0.3558460474014282, 0.005258145276457071, -0.001419540960341692, 0.6116918921470642, -0.2994997501373291, 0.0009836250683292747, 0.00542371766641736, 0.04580404609441757, -0.05842560902237892, -2.8137402534484863, 0.5503275990486145, 0.22127673029899597, 1.1027764081954956, 0.16653279960155487, 0.37245774269104004, -0.14884407818317413, -2.9582700729370117, -0.42817240953445435, -0.1947556436061859, 1.3109784126281738, -0.11773303151130676, 0.3010197579860687, 0.09224258363246918]} +{"t": 20.414, "q": [-0.31327807903289795, -0.012718405574560165, 0.009722515940666199, 0.6295627355575562, -0.34141701459884644, 0.0068617272190749645, -0.35587161779403687, 0.00526666734367609, -0.0014061490073800087, 0.6118878722190857, -0.2995203137397766, 0.0009620334021747112, 0.005236231256276369, 0.045963406562805176, -0.058325137943029404, -2.81531023979187, 0.5507590174674988, 0.22122879326343536, 1.1029082536697388, 0.16647286713123322, 0.37245774269104004, -0.148856058716774, -2.9584617614746094, -0.42787280678749084, -0.1947556436061859, 1.3109424114227295, -0.11774501204490662, 0.30088794231414795, 0.09195496141910553]} +{"t": 20.4308, "q": [-0.3132439851760864, -0.012726927176117897, 0.009816259145736694, 0.6295883059501648, -0.34141290187835693, 0.00686903391033411, -0.35591423511505127, 0.00526666734367609, -0.001379365217871964, 0.6120924353599548, -0.2995699346065521, 0.0009479398722760379, 0.005236231256276369, 0.046092450618743896, -0.05826367810368538, -2.8163769245147705, 0.5510107278823853, 0.2211928516626358, 1.1029082536697388, 0.16649684309959412, 0.3723978102207184, -0.148856058716774, -2.9584977626800537, -0.4278128743171692, -0.1947556436061859, 1.3107986450195312, -0.11775700002908707, 0.3005523979663849, 0.0917392447590828]} +{"t": 20.4476, "q": [-0.31319287419319153, -0.012726927176117897, 0.009936786256730556, 0.6296309232711792, -0.34141290187835693, 0.00686903391033411, -0.3559483289718628, 0.005258145276457071, -0.0013391895918175578, 0.6123395562171936, -0.29964011907577515, 0.0009122368064709008, 0.005410325713455677, 0.04616078361868858, -0.05824049189686775, -2.817131757736206, 0.5512144565582275, 0.22120483219623566, 1.102884292602539, 0.16650882363319397, 0.372313916683197, -0.1489039957523346, -2.9585697650909424, -0.42784881591796875, -0.19476762413978577, 1.3107386827468872, -0.11778096854686737, 0.3001808822154999, 0.09142765402793884]} +{"t": 20.4643, "q": [-0.31318435072898865, -0.012752493843436241, 0.009950178675353527, 0.6296905875205994, -0.34141290187835693, 0.00686903391033411, -0.35596534609794617, 0.0051984903402626514, -0.0013391895918175578, 0.6126889586448669, -0.2997186779975891, 0.0008911007316783071, 0.0055442447774112225, 0.04624425619840622, -0.05818786472082138, -2.8176472187042236, 0.5514421463012695, 0.2211688756942749, 1.1029082536697388, 0.16649684309959412, 0.37205028533935547, -0.1489279717206955, -2.9587254524230957, -0.4279087483882904, -0.19479160010814667, 1.3105828762054443, -0.11778096854686737, 0.29984530806541443, 0.09104415774345398]} +{"t": 20.4811, "q": [-0.3131502568721771, -0.01286328211426735, 0.010030529461801052, 0.6297417283058167, -0.3414005935192108, 0.006876417435705662, -0.3560335338115692, 0.005147357936948538, -0.001312405802309513, 0.6130042672157288, -0.29980552196502686, 0.0008700092439539731, 0.005490677431225777, 0.046327732503414154, -0.05813523381948471, -2.8178868293762207, 0.5516458749771118, 0.22118085622787476, 1.102884292602539, 0.16646088659763336, 0.3717386722564697, -0.14896391332149506, -2.9587013721466064, -0.42796868085861206, -0.19479160010814667, 1.3105709552764893, -0.11779294908046722, 0.2994977831840515, 0.09072058647871017]} +{"t": 20.4979, "q": [-0.31309059262275696, -0.012854759581387043, 0.010151056572794914, 0.6297587752342224, -0.3414005935192108, 0.006876417435705662, -0.3560931980609894, 0.005147357936948538, -0.0012588382232934237, 0.6132344007492065, -0.299822062253952, 0.0008701342158019543, 0.005410325713455677, 0.04641120508313179, -0.05808260664343834, -2.8179826736450195, 0.5519934296607971, 0.22122879326343536, 1.102884292602539, 0.16646088659763336, 0.37140312790870667, -0.14896391332149506, -2.958509683609009, -0.4280046224594116, -0.19476762413978577, 1.3105828762054443, -0.11780493706464767, 0.2992461025714874, 0.09027716517448425]} +{"t": 20.5146, "q": [-0.3130820691585541, -0.012854759581387043, 0.010271583683788776, 0.6297672986984253, -0.34139251708984375, 0.0068619586527347565, -0.35624659061431885, 0.005147357936948538, -0.0012052706442773342, 0.6133792400360107, -0.2998465895652771, 0.0008123573497869074, 0.005303190555423498, 0.0465022511780262, -0.058015257120132446, -2.818006753921509, 0.5522810220718384, 0.22122879326343536, 1.102884292602539, 0.1664489060640335, 0.37121137976646423, -0.14896391332149506, -2.958437919616699, -0.42812445759773254, -0.19479160010814667, 1.3106547594070435, -0.11781691759824753, 0.2991262674331665, 0.08978581428527832]} +{"t": 20.5315, "q": [-0.31309059262275696, -0.012837715446949005, 0.010392110794782639, 0.6297758221626282, -0.3414005935192108, 0.006876417435705662, -0.3563233017921448, 0.005147357936948538, -0.0011517030652612448, 0.6135241389274597, -0.2998465895652771, 0.0008123573497869074, 0.005316582508385181, 0.04664644971489906, -0.057934291660785675, -2.818018674850464, 0.5524248480796814, 0.2211928516626358, 1.1029082536697388, 0.1664249300956726, 0.3712233603000641, -0.1489759087562561, -2.958329916000366, -0.4281843900680542, -0.19480358064174652, 1.3107026815414429, -0.11781691759824753, 0.2990783154964447, 0.08933041244745255]} +{"t": 20.5482, "q": [-0.31309911608695984, -0.012837715446949005, 0.010472462512552738, 0.6298269629478455, -0.3414005935192108, 0.006876417435705662, -0.3564085066318512, 0.005147357936948538, -0.0010713516967371106, 0.6136519908905029, -0.2998671531677246, 0.0007907836697995663, 0.005303190555423498, 0.046752676367759705, -0.05785737186670303, -2.817946672439575, 0.5524727702140808, 0.22120483219623566, 1.102944254875183, 0.16648486256599426, 0.37123534083366394, -0.1489759087562561, -2.9582581520080566, -0.4282083511352539, -0.19479160010814667, 1.3107147216796875, -0.11779294908046722, 0.2990064322948456, 0.08893493562936783]} +{"t": 20.565, "q": [-0.3130820691585541, -0.012854759581387043, 0.010485853999853134, 0.6298099160194397, -0.34139251708984375, 0.0068619586527347565, -0.35647669434547424, 0.005155880004167557, -0.001044567907229066, 0.6137456893920898, -0.2998713552951813, 0.0007980582304298878, 0.005303190555423498, 0.046881698071956635, -0.05778597295284271, -2.817814826965332, 0.5524488091468811, 0.2211688756942749, 1.1029561758041382, 0.16648486256599426, 0.3712233603000641, -0.14898788928985596, -2.9582459926605225, -0.42826828360557556, -0.19482755661010742, 1.3107386827468872, -0.11785287410020828, 0.29899442195892334, 0.08853945881128311]} +{"t": 20.5819, "q": [-0.3130820691585541, -0.012854759581387043, 0.010539421811699867, 0.6298354864120483, -0.34139251708984375, 0.0068619586527347565, -0.35652783513069153, 0.005130313336849213, -0.0009642164804972708, 0.6138650178909302, -0.29988372325897217, 0.0007909086416475475, 0.005263015162199736, 0.04695756733417511, -0.05772819370031357, -2.8178749084472656, 0.5524967312812805, 0.22118085622787476, 1.1029561758041382, 0.16647286713123322, 0.3710675537586212, -0.14898788928985596, -2.9582340717315674, -0.4283881187438965, -0.19482755661010742, 1.310762643814087, -0.11784088611602783, 0.2989464998245239, 0.08823984861373901]} +{"t": 20.5986, "q": [-0.31309911608695984, -0.012846237048506737, 0.010606381110846996, 0.6298525333404541, -0.34139251708984375, 0.0068619586527347565, -0.35657042264938354, 0.005147357936948538, -0.0009508245857432485, 0.6139076352119446, -0.2998877465724945, 0.0007691920618526638, 0.005236231256276369, 0.04705622419714928, -0.05766594409942627, -2.817898750305176, 0.5525806546211243, 0.2211688756942749, 1.1029201745986938, 0.1664489060640335, 0.3710675537586212, -0.14898788928985596, -2.9582340717315674, -0.4286517798900604, -0.19483953714370728, 1.310762643814087, -0.11785287410020828, 0.2989225387573242, 0.08803611993789673]} +{"t": 20.6153, "q": [-0.31309059262275696, -0.012837715446949005, 0.010633165016770363, 0.6298354864120483, -0.34139251708984375, 0.0068619586527347565, -0.3566897511482239, 0.005130313336849213, -0.0009106489014811814, 0.6139332056045532, -0.2999456226825714, 0.0007551430608145893, 0.005182663444429636, 0.04710177332162857, -0.05764715373516083, -2.818018674850464, 0.5526165962219238, 0.2211449146270752, 1.1029082536697388, 0.16649684309959412, 0.37100765109062195, -0.14898788928985596, -2.958186149597168, -0.4289873242378235, -0.19482755661010742, 1.3107746839523315, -0.11786485463380814, 0.29891055822372437, 0.08778444677591324]} +{"t": 20.632, "q": [-0.3130735456943512, -0.012837715446949005, 0.010673340409994125, 0.6298440098762512, -0.34139251708984375, 0.0068619586527347565, -0.35670679807662964, 0.005104747135192156, -0.0008570813224650919, 0.6139928698539734, -0.29998260736465454, 0.0007047032122500241, 0.005182663444429636, 0.04712456092238426, -0.05764273181557655, -2.8181984424591064, 0.5526285767555237, 0.22113291919231415, 1.1028722524642944, 0.16650882363319397, 0.37093573808670044, -0.14898788928985596, -2.9581382274627686, -0.42941877245903015, -0.19479160010814667, 1.3108465671539307, -0.11787684261798859, 0.2989464998245239, 0.08753278106451035]} +{"t": 20.6488, "q": [-0.3130735456943512, -0.012854759581387043, 0.010686732828617096, 0.6298695802688599, -0.3414005935192108, 0.006876417435705662, -0.35675790905952454, 0.005096225067973137, -0.0008570813224650919, 0.6140354871749878, -0.30002009868621826, 0.000741219031624496, 0.005236231256276369, 0.04713214933872223, -0.05763794481754303, -2.818390130996704, 0.5526165962219238, 0.2211449146270752, 1.1028482913970947, 0.16649684309959412, 0.3708997964859009, -0.1489759087562561, -2.958078384399414, -0.42989811301231384, -0.19479160010814667, 1.3109303712844849, -0.11788882315158844, 0.2989225387573242, 0.0872211903333664]} +{"t": 20.6656, "q": [-0.31309911608695984, -0.012871803715825081, 0.010686732828617096, 0.629861056804657, -0.3414005935192108, 0.006876417435705662, -0.35684314370155334, 0.005079180933535099, -0.0008570813224650919, 0.6140950918197632, -0.30003246665000916, 0.0007340695010498166, 0.005276407115161419, 0.047154951840639114, -0.05764346942305565, -2.818593978881836, 0.5526285767555237, 0.2210969775915146, 1.1027884483337402, 0.16656874120235443, 0.3708758056163788, -0.14903582632541656, -2.9580183029174805, -0.43038949370384216, -0.1947556436061859, 1.3109784126281738, -0.11790081113576889, 0.2989225387573242, 0.08689761906862259]} +{"t": 20.6823, "q": [-0.3131161630153656, -0.012880325317382812, 0.010713516734540462, 0.6298865675926208, -0.34139251708984375, 0.0068619586527347565, -0.35689428448677063, 0.005062136333435774, -0.0008169056382030249, 0.614180326461792, -0.30004075169563293, 0.0007341320160776377, 0.005263015162199736, 0.04714732989668846, -0.057628363370895386, -2.8186657428741455, 0.5527963638305664, 0.2210730016231537, 1.102584719657898, 0.16660469770431519, 0.37073200941085815, -0.14904780685901642, -2.9579224586486816, -0.4307849705219269, -0.1947077065706253, 1.3110382556915283, -0.1179727166891098, 0.29891055822372437, 0.08653809130191803]} +{"t": 20.699, "q": [-0.3131161630153656, -0.012854759581387043, 0.010793867520987988, 0.6299206614494324, -0.3414005935192108, 0.006876417435705662, -0.35692834854125977, 0.005036570131778717, -0.0007365542696788907, 0.6142655611038208, -0.3000490367412567, 0.0007341944728977978, 0.0052094473503530025, 0.047139741480350494, -0.05763315409421921, -2.81870174407959, 0.5530719757080078, 0.22100110352039337, 1.1022731065750122, 0.1666286736726761, 0.370372474193573, -0.14905978739261627, -2.957862615585327, -0.4310246407985687, -0.1947077065706253, 1.3110982179641724, -0.11803263425827026, 0.2989225387573242, 0.0860467404127121]} +{"t": 20.7159, "q": [-0.3131076395511627, -0.012897370383143425, 0.010834043845534325, 0.6299377083778381, -0.3414005935192108, 0.006876417435705662, -0.3569539189338684, 0.00501100393012166, -0.0006963785854168236, 0.6143337488174438, -0.3000696897506714, 0.0007270894711837173, 0.00516927195712924, 0.04713213071227074, -0.05762799456715584, -2.8189175128936768, 0.5533236861228943, 0.22101308405399323, 1.1019254922866821, 0.16660469770431519, 0.3701208233833313, -0.14907178282737732, -2.957850694656372, -0.4312523305416107, -0.1946597695350647, 1.3111821413040161, -0.11806859076023102, 0.2989225387573242, 0.08553141355514526]} +{"t": 20.7327, "q": [-0.3131161630153656, -0.012905891984701157, 0.01084743533283472, 0.6299803256988525, -0.3414005935192108, 0.006876417435705662, -0.35702210664749146, 0.004976915195584297, -0.0006963785854168236, 0.6144104599952698, -0.3000616729259491, 0.0007705228053964674, 0.005155880004167557, 0.04713213071227074, -0.05762799456715584, -2.819157123565674, 0.5535873174667358, 0.22100110352039337, 1.1017457246780396, 0.16664065420627594, 0.3699650168418884, -0.14908376336097717, -2.957742691040039, -0.4312763214111328, -0.19457587599754333, 1.3111461400985718, -0.11812850832939148, 0.2989584803581238, 0.08498013764619827]} +{"t": 20.7494, "q": [-0.3131502568721771, -0.012939980253577232, 0.010887610726058483, 0.6300485134124756, -0.3414005935192108, 0.006876417435705662, -0.3570391535758972, 0.0049343048594892025, -0.0006963785854168236, 0.6144615411758423, -0.30007830262184143, 0.0007851344416849315, 0.005155880004167557, 0.047147344797849655, -0.05763830989599228, -2.8193728923797607, 0.5539588332176208, 0.22103704512119293, 1.101625919342041, 0.16664065420627594, 0.36988112330436707, -0.14910772442817688, -2.957610845565796, -0.4314320981502533, -0.19450397789478302, 1.3112061023712158, -0.11820041388273239, 0.2989345192909241, 0.08435696363449097]} +{"t": 20.7664, "q": [-0.31315878033638, -0.012974068522453308, 0.01092778705060482, 0.6301167011260986, -0.34140464663505554, 0.006883664987981319, -0.3570476770401001, 0.0049257827922701836, -0.0006294191116467118, 0.6145382523536682, -0.30007830262184143, 0.0007851344416849315, 0.00516927195712924, 0.04713213071227074, -0.05762799456715584, -2.819528579711914, 0.5542344450950623, 0.22100110352039337, 1.1015779972076416, 0.16664065420627594, 0.36976128816604614, -0.1491556614637375, -2.957515001296997, -0.43139615654945374, -0.19444406032562256, 1.311277985572815, -0.11823636293411255, 0.2989225387573242, 0.08390156179666519]} +{"t": 20.7831, "q": [-0.31315878033638, -0.013016680255532265, 0.01099474634975195, 0.6301848888397217, -0.34140464663505554, 0.006883664987981319, -0.35707324743270874, 0.004883171990513802, -0.0005892434273846447, 0.6146320104598999, -0.30009084939956665, 0.0008069580653682351, 0.005222839303314686, 0.047124527394771576, -0.05762283504009247, -2.8195645809173584, 0.554546058177948, 0.22101308405399323, 1.1015779972076416, 0.16658073663711548, 0.36962947249412537, -0.14916765689849854, -2.9574432373046875, -0.4313841760158539, -0.1943601667881012, 1.3113259077072144, -0.11826033145189285, 0.2988985478878021, 0.08353005349636078]} +{"t": 20.7999, "q": [-0.3131673038005829, -0.013059290125966072, 0.011061705648899078, 0.630236029624939, -0.34140464663505554, 0.006883664987981319, -0.3571073114871979, 0.004840561654418707, -0.0005356758483685553, 0.6147428154945374, -0.30011579394340515, 0.0008216323330998421, 0.005182663444429636, 0.047124527394771576, -0.05762283504009247, -2.8195886611938477, 0.5547977089881897, 0.22100110352039337, 1.1015419960021973, 0.16660469770431519, 0.3695695400238037, -0.1492035984992981, -2.957371234893799, -0.43179163336753845, -0.19437214732170105, 1.31128990650177, -0.11829628795385361, 0.29888656735420227, 0.08327838033437729]} +{"t": 20.8167, "q": [-0.31318435072898865, -0.01311042346060276, 0.011115273460745811, 0.6302700638771057, -0.34140464663505554, 0.006883664987981319, -0.35711583495140076, 0.004746818449348211, -0.000522283953614533, 0.6148024797439575, -0.30012014508247375, 0.0008578979759477079, 0.005196055397391319, 0.047124527394771576, -0.05762283504009247, -2.8196005821228027, 0.5549535155296326, 0.22106102108955383, 1.1014102697372437, 0.16661667823791504, 0.36955755949020386, -0.14923955500125885, -2.9573113918304443, -0.43227100372314453, -0.19437214732170105, 1.3112300634384155, -0.11832025647163391, 0.2988745868206024, 0.08295480906963348]} +{"t": 20.8334, "q": [-0.3131673038005829, -0.013135988265275955, 0.011235800571739674, 0.6303041577339172, -0.34140053391456604, 0.006890971213579178, -0.3571414053440094, 0.004687163513153791, -0.0004955001641064882, 0.6149387955665588, -0.30011603236198425, 0.0008651100797578692, 0.00516927195712924, 0.04714731127023697, -0.057618413120508194, -2.8195886611938477, 0.555145263671875, 0.22104904055595398, 1.101386308670044, 0.16661667823791504, 0.369545578956604, -0.14926353096961975, -2.957167387008667, -0.43246275186538696, -0.1943601667881012, 1.3112540245056152, -0.11832025647163391, 0.2988506257534027, 0.08281099796295166]} +{"t": 20.8501, "q": [-0.31317582726478577, -0.013144511729478836, 0.01124919205904007, 0.6303467750549316, -0.34140464663505554, 0.006883664987981319, -0.3571840226650238, 0.004653075244277716, -0.0004821082402486354, 0.6150922179222107, -0.30012834072113037, 0.0008434559567831457, 0.005196055397391319, 0.047139719128608704, -0.057623203843832016, -2.819636583328247, 0.5552531480789185, 0.22101308405399323, 1.101386308670044, 0.1666286736726761, 0.369545578956604, -0.14931146800518036, -2.9569997787475586, -0.432834267616272, -0.19426429271697998, 1.3112300634384155, -0.11836819350719452, 0.2988506257534027, 0.08264321833848953]} +{"t": 20.8669, "q": [-0.31315878033638, -0.013195643201470375, 0.011302759870886803, 0.630389392375946, -0.34140464663505554, 0.006883664987981319, -0.35726073384284973, 0.0046360306441783905, -0.0004821082402486354, 0.6152370572090149, -0.30012014508247375, 0.0008578979759477079, 0.005182663444429636, 0.047139719128608704, -0.057623203843832016, -2.8197083473205566, 0.5555047988891602, 0.22097712755203247, 1.1014221906661987, 0.16666461527347565, 0.3695695400238037, -0.14934740960597992, -2.956843852996826, -0.4330979287624359, -0.19424031674861908, 1.31128990650177, -0.11842811107635498, 0.2988506257534027, 0.0824514701962471]} +{"t": 20.8836, "q": [-0.3131502568721771, -0.013204166665673256, 0.011302759870886803, 0.6304149627685547, -0.3414005935192108, 0.006876417435705662, -0.35729479789733887, 0.0046445527113974094, -0.00044193255598656833, 0.6152881979942322, -0.30013254284858704, 0.0008507305174134672, 0.00516927195712924, 0.047147296369075775, -0.0576084665954113, -2.819720506668091, 0.5557923913002014, 0.22103704512119293, 1.101338267326355, 0.16671255230903625, 0.36958152055740356, -0.14938336610794067, -2.9566640853881836, -0.43331363797187805, -0.19419237971305847, 1.311277985572815, -0.11847604811191559, 0.29883864521980286, 0.08234360814094543]} +{"t": 20.9004, "q": [-0.31315878033638, -0.013178599998354912, 0.011316152289509773, 0.6304234862327576, -0.34139642119407654, 0.006898277439177036, -0.3573288917541504, 0.0046360306441783905, -0.00044193255598656833, 0.615441620349884, -0.30013254284858704, 0.0008507305174134672, 0.005196055397391319, 0.047154899686574936, -0.05761362612247467, -2.8197922706604004, 0.556199848651886, 0.22096514701843262, 1.1013742685317993, 0.16660469770431519, 0.36962947249412537, -0.14946725964546204, -2.9564244747161865, -0.43374505639076233, -0.1941085010766983, 1.3112419843673706, -0.11848803609609604, 0.29881468415260315, 0.08227170258760452]} +{"t": 20.9174, "q": [-0.31315878033638, -0.013187121599912643, 0.011302759870886803, 0.6304490566253662, -0.3413923680782318, 0.006891030352562666, -0.3573288917541504, 0.0046360306441783905, -0.00046871634549461305, 0.6155353784561157, -0.3001323640346527, 0.0008217573049478233, 0.005222839303314686, 0.047147296369075775, -0.0576084665954113, -2.8198041915893555, 0.5565354228019714, 0.22095316648483276, 1.1013503074645996, 0.1667005717754364, 0.3696414530277252, -0.14953915774822235, -2.9560890197753906, -0.43418848514556885, -0.19396468997001648, 1.311218023300171, -0.11858391016721725, 0.29876673221588135, 0.08228369057178497]} +{"t": 20.9341, "q": [-0.3131502568721771, -0.0131615549325943, 0.011289368383586407, 0.6304831504821777, -0.3413964807987213, 0.00688372366130352, -0.35735446214675903, 0.0046360306441783905, -0.0004955001641064882, 0.6156376004219055, -0.3001364469528198, 0.0008145452593453228, 0.005289798602461815, 0.047162506729364395, -0.05761878564953804, -2.8198163509368896, 0.5571826100349426, 0.2208452969789505, 1.101338267326355, 0.16673652827739716, 0.3696414530277252, -0.14973090589046478, -2.955897092819214, -0.4349195063114166, -0.19361715018749237, 1.3111101388931274, -0.11902732402086258, 0.29858696460723877, 0.08231963962316513]} +{"t": 20.9509, "q": [-0.3131673038005829, -0.013153033331036568, 0.01126258447766304, 0.6304831504821777, -0.34138429164886475, 0.006876571569591761, -0.35735446214675903, 0.004661597311496735, -0.0005356758483685553, 0.615748405456543, -0.30014875531196594, 0.0007929090643301606, 0.005276407115161419, 0.047147296369075775, -0.0576084665954113, -2.8198401927948, 0.5579615831375122, 0.22078537940979004, 1.1013143062591553, 0.16688033938407898, 0.3696654140949249, -0.1498747169971466, -2.955909252166748, -0.4358183443546295, -0.19326959550380707, 1.3110142946243286, -0.11971042305231094, 0.298227459192276, 0.08231963962316513]} +{"t": 20.9676, "q": [-0.3131246864795685, -0.013153033331036568, 0.011235800571739674, 0.6305087208747864, -0.34138840436935425, 0.006869264878332615, -0.3573629856109619, 0.0046701193787157536, -0.000522283953614533, 0.6158251166343689, -0.30016934871673584, 0.0007713174563832581, 0.005303190555423498, 0.04715491831302643, -0.057623572647571564, -2.819852352142334, 0.5588483810424805, 0.22077339887619019, 1.1013143062591553, 0.16708406805992126, 0.36976128816604614, -0.15005448460578918, -2.9560768604278564, -0.4367411136627197, -0.1931857168674469, 1.3109064102172852, -0.12053734064102173, 0.2978079915046692, 0.08241551369428635]} +{"t": 20.9844, "q": [-0.3130650222301483, -0.0131615549325943, 0.01124919205904007, 0.6305087208747864, -0.34137192368507385, 0.006898490712046623, -0.35735446214675903, 0.004661597311496735, -0.0005088920588605106, 0.6160381436347961, -0.3001898229122162, 0.0007352392422035336, 0.005276407115161419, 0.047139719128608704, -0.057623203843832016, -2.8199002742767334, 0.5599150061607361, 0.22071348130702972, 1.101338267326355, 0.1672039031982422, 0.369917094707489, -0.15027019381523132, -2.956256628036499, -0.43787962198257446, -0.19310182332992554, 1.310762643814087, -0.12143615633249283, 0.2973765730857849, 0.08264321833848953]} +{"t": 21.0011, "q": [-0.31300538778305054, -0.013153033331036568, 0.01126258447766304, 0.6305854320526123, -0.34137192368507385, 0.006898490712046623, -0.3573288917541504, 0.004653075244277716, -0.0005088920588605106, 0.6161574721336365, -0.30021440982818604, 0.0006919669103808701, 0.005249623209238052, 0.04714731127023697, -0.057618413120508194, -2.8199360370635986, 0.5612212419509888, 0.22064156830310822, 1.1013503074645996, 0.1672518402338028, 0.3699769973754883, -0.15061774849891663, -2.9565083980560303, -0.43910202383995056, -0.1928621381521225, 1.3106307983398438, -0.12250275164842606, 0.2970050573348999, 0.08309862017631531]} +{"t": 21.0179, "q": [-0.3129372000694275, -0.0131615549325943, 0.011275975964963436, 0.630611002445221, -0.3413638472557068, 0.006884031929075718, -0.3573288917541504, 0.0046701193787157536, -0.000522283953614533, 0.6162768006324768, -0.30023083090782166, 0.0006631007418036461, 0.005263015162199736, 0.04714732989668846, -0.057628363370895386, -2.819972038269043, 0.5627672076225281, 0.22046180069446564, 1.1014461517333984, 0.1672758162021637, 0.36998897790908813, -0.15115703642368317, -2.9566402435302734, -0.4403124153614044, -0.19190339744091034, 1.3105709552764893, -0.12400078028440475, 0.2968013286590576, 0.08380568772554398]} +{"t": 21.0346, "q": [-0.31290310621261597, -0.013178599998354912, 0.01132954377681017, 0.6306279897689819, -0.34136801958084106, 0.006862189620733261, -0.35734593868255615, 0.004653075244277716, -0.000522283953614533, 0.6163790225982666, -0.30023491382598877, 0.0006558886962011456, 0.0052094473503530025, 0.04716252163052559, -0.057628732174634933, -2.819960117340088, 0.564409077167511, 0.22030600905418396, 1.1014461517333984, 0.16735970973968506, 0.370000958442688, -0.1520199030637741, -2.9567360877990723, -0.4415348172187805, -0.19027353823184967, 1.3105589151382446, -0.12662532925605774, 0.2967054545879364, 0.08429703861474991]} +{"t": 21.0514, "q": [-0.3128434419631958, -0.013135988265275955, 0.011383111588656902, 0.6306535601615906, -0.3413395583629608, 0.006840637419372797, -0.3573288917541504, 0.004661597311496735, -0.00046871634549461305, 0.6164983510971069, -0.3002307415008545, 0.0006486141355708241, 0.005075528286397457, 0.047192931175231934, -0.05763942003250122, -2.819983959197998, 0.566206693649292, 0.22023411095142365, 1.1014821529388428, 0.16733573377132416, 0.37001296877861023, -0.15300260484218597, -2.956724166870117, -0.4428650736808777, -0.18625882267951965, 1.3105828762054443, -0.12832708656787872, 0.2967054545879364, 0.08523181080818176]} +{"t": 21.0683, "q": [-0.31281790137290955, -0.013135988265275955, 0.011396503075957298, 0.6307217478752136, -0.341327428817749, 0.006818949244916439, -0.35733741521835327, 0.004661597311496735, -0.00046871634549461305, 0.6165921092033386, -0.3002265691757202, 0.0006413396331481636, 0.005155880004167557, 0.04717773571610451, -0.057639047503471375, -2.8200080394744873, 0.5677047371864319, 0.22013823688030243, 1.1014461517333984, 0.16746756434440613, 0.37003692984580994, -0.15420103073120117, -2.956724166870117, -0.4441593587398529, -0.18326276540756226, 1.3107266426086426, -0.13109543919563293, 0.29671743512153625, 0.08623848110437393]} +{"t": 21.0851, "q": [-0.3127497136592865, -0.013135988265275955, 0.011369719170033932, 0.6308069825172424, -0.3413112461566925, 0.0067900135181844234, -0.35730332136154175, 0.0046701193787157536, -0.000522283953614533, 0.6166517734527588, -0.30023065209388733, 0.0006341275293380022, 0.005115704145282507, 0.04714737832546234, -0.057658206671476364, -2.8200080394744873, 0.5689990520477295, 0.22013823688030243, 1.101386308670044, 0.16750352084636688, 0.37003692984580994, -0.15573500096797943, -2.9566402435302734, -0.4456334114074707, -0.17777399718761444, 1.3109064102172852, -0.1351461112499237, 0.29676535725593567, 0.08772452920675278]} +{"t": 21.1018, "q": [-0.3127497136592865, -0.013118945062160492, 0.011289368383586407, 0.6308922171592712, -0.3413194715976715, 0.006775400601327419, -0.357286274433136, 0.004687163513153791, -0.0005356758483685553, 0.6166688203811646, -0.3002263903617859, 0.0006123664206825197, 0.0052094473503530025, 0.04713219776749611, -0.05766778811812401, -2.8201637268066406, 0.5701135396957397, 0.22009029984474182, 1.1014221906661987, 0.16753946244716644, 0.37006089091300964, -0.15710121393203735, -2.9565563201904297, -0.44693970680236816, -0.17332784831523895, 1.3110142946243286, -0.137794628739357, 0.2967533767223358, 0.08887501806020737]} +{"t": 21.1185, "q": [-0.3127411901950836, -0.01311042346060276, 0.01126258447766304, 0.6309944987297058, -0.3412990868091583, 0.0067683253437280655, -0.35726073384284973, 0.0046786414459347725, -0.0005892434273846447, 0.6166858673095703, -0.30023467540740967, 0.0006124288775026798, 0.005343366414308548, 0.04713219776749611, -0.05766778811812401, -2.8205113410949707, 0.5710003972053528, 0.22003038227558136, 1.1014940738677979, 0.1675514578819275, 0.37006089091300964, -0.15814383327960968, -2.9565083980560303, -0.4483059048652649, -0.17072726786136627, 1.310990333557129, -0.13972407579421997, 0.2967533767223358, 0.08967795968055725]} +{"t": 21.1353, "q": [-0.3127411901950836, -0.013135988265275955, 0.01124919205904007, 0.6310967206954956, -0.341295063495636, 0.006761095952242613, -0.35724368691444397, 0.004661597311496735, -0.0005624596378766, 0.6166943311691284, -0.30023467540740967, 0.0006124288775026798, 0.005410325713455677, 0.047117020934820175, -0.057677365839481354, -2.820894956588745, 0.5717793703079224, 0.2198745757341385, 1.1015180349349976, 0.1675514578819275, 0.3700489103794098, -0.15898273885250092, -2.956496477127075, -0.4502832889556885, -0.16646088659763336, 1.310990333557129, -0.14213290810585022, 0.2967054545879364, 0.0902651846408844]} +{"t": 21.152, "q": [-0.3127582371234894, -0.013127466663718224, 0.011222408153116703, 0.6311478614807129, -0.34128689765930176, 0.006761172786355019, -0.35724368691444397, 0.0046360306441783905, -0.000522283953614533, 0.6167028546333313, -0.30023056268692017, 0.0006196409231051803, 0.005396933760493994, 0.04712460935115814, -0.05767257511615753, -2.821350336074829, 0.5724984407424927, 0.21973076462745667, 1.1015419960021973, 0.16756343841552734, 0.3700489103794098, -0.15967781841754913, -2.9565203189849854, -0.45288386940956116, -0.1636326164007187, 1.3109303712844849, -0.14491325616836548, 0.29662156105041504, 0.09062471240758896]} +{"t": 21.1687, "q": [-0.3127497136592865, -0.013153033331036568, 0.01126258447766304, 0.6311734318733215, -0.34129101037979126, 0.00675386656075716, -0.35724368691444397, 0.0046360306441783905, -0.0004955001641064882, 0.6167028546333313, -0.3002181947231293, 0.0006267905118875206, 0.0053701503202319145, 0.047124627977609634, -0.057682525366544724, -2.82167387008667, 0.5731815099716187, 0.2195989489555359, 1.1015419960021973, 0.16758739948272705, 0.3700249493122101, -0.16026504337787628, -2.9566640853881836, -0.4547893702983856, -0.16236227750778198, 1.3107866048812866, -0.14692659676074982, 0.2963099777698517, 0.09062471240758896]} +{"t": 21.1855, "q": [-0.31276676058769226, -0.01317007839679718, 0.01126258447766304, 0.6312330961227417, -0.341295063495636, 0.006761095952242613, -0.3572351634502411, 0.004567853640764952, -0.0004955001641064882, 0.6167028546333313, -0.3002058267593384, 0.0006339400424621999, 0.005383542273193598, 0.047124627977609634, -0.057682525366544724, -2.821913480758667, 0.5739245414733887, 0.21951505541801453, 1.1014221906661987, 0.16756343841552734, 0.3696654140949249, -0.16099607944488525, -2.9569637775421143, -0.45580801367759705, -0.1607084572315216, 1.3106787204742432, -0.14938336610794067, 0.2957826554775238, 0.0905408188700676]} +{"t": 21.2023, "q": [-0.3127411901950836, -0.013187121599912643, 0.01126258447766304, 0.6312501430511475, -0.34128695726394653, 0.0067466371692717075, -0.3572181165218353, 0.0044996771030128, -0.0004955001641064882, 0.6166773438453674, -0.3002181947231293, 0.0006267905118875206, 0.005343366414308548, 0.047101862728595734, -0.05769689381122589, -2.822692394256592, 0.5747753977775574, 0.21928735077381134, 1.1014102697372437, 0.16756343841552734, 0.3694257140159607, -0.16196680068969727, -2.9573593139648438, -0.45601174235343933, -0.15876701474189758, 1.3104510307312012, -0.15179219841957092, 0.29484790563583374, 0.0905408188700676]} +{"t": 21.2191, "q": [-0.3127582371234894, -0.013212688267230988, 0.01126258447766304, 0.6312501430511475, -0.34128695726394653, 0.0067466371692717075, -0.35725221037864685, 0.004474110435694456, -0.000522283953614533, 0.6166517734527588, -0.3002265691757202, 0.0006413396331481636, 0.005437109619379044, 0.047101862728595734, -0.05769689381122589, -2.8235912322998047, 0.5755544304847717, 0.21923941373825073, 1.1014102697372437, 0.16756343841552734, 0.36916208267211914, -0.16347680985927582, -2.9577906131744385, -0.4560357332229614, -0.156418114900589, 1.3102233409881592, -0.1550399214029312, 0.29355359077453613, 0.09043296426534653]} +{"t": 21.2358, "q": [-0.31277528405189514, -0.013238254934549332, 0.01124919205904007, 0.6312501430511475, -0.341295063495636, 0.006761095952242613, -0.3572266399860382, 0.0044144559651613235, -0.0005088920588605106, 0.6166432499885559, -0.300226628780365, 0.0006558261811733246, 0.005504068918526173, 0.04707907512784004, -0.057701315730810165, -2.8243823051452637, 0.5763453841209412, 0.21915552020072937, 1.1013742685317993, 0.1675754189491272, 0.36893436312675476, -0.16594555974006653, -2.9582102298736572, -0.4574618339538574, -0.15542341768741608, 1.3097679615020752, -0.15690946578979492, 0.2918877899646759, 0.09031312167644501]} +{"t": 21.2527, "q": [-0.3127923309803009, -0.01328938640654087, 0.011235800571739674, 0.6312416195869446, -0.3412949740886688, 0.006775631569325924, -0.3572181165218353, 0.004354801028966904, -0.0005356758483685553, 0.6166262030601501, -0.3002307415008545, 0.0006486141355708241, 0.005691555794328451, 0.0470866821706295, -0.057706475257873535, -2.824993371963501, 0.5771722793579102, 0.21903568506240845, 1.1014102697372437, 0.16756343841552734, 0.36875462532043457, -0.16915734112262726, -2.958509683609009, -0.45907971262931824, -0.155315563082695, 1.309348464012146, -0.1577123999595642, 0.2903418242931366, 0.09002549946308136]} +{"t": 21.2694, "q": [-0.3128008544445038, -0.013323476538062096, 0.01118223275989294, 0.6312501430511475, -0.34129902720451355, 0.006782860960811377, -0.3572181165218353, 0.004312190227210522, -0.0005758515326306224, 0.616634726524353, -0.3002473711967468, 0.0006632257718592882, 0.005865650251507759, 0.04709427058696747, -0.05770168453454971, -2.8253889083862305, 0.5780470967292786, 0.21898774802684784, 1.1013503074645996, 0.1675514578819275, 0.36865875124931335, -0.17190173268318176, -2.9584977626800537, -0.4609133005142212, -0.1552196890115738, 1.3090009689331055, -0.15783224999904633, 0.2886640429496765, 0.08980978280305862]} +{"t": 21.2862, "q": [-0.3128434419631958, -0.013314953073859215, 0.011195625178515911, 0.6312501430511475, -0.34129902720451355, 0.006782860960811377, -0.3572351634502411, 0.004286624025553465, -0.0005758515326306224, 0.6166262030601501, -0.3002724051475525, 0.0006924045155756176, 0.005879042204469442, 0.047094251960515976, -0.05769173428416252, -2.825700521469116, 0.5786583423614502, 0.21897576749324799, 1.1013742685317993, 0.16750352084636688, 0.36849096417427063, -0.1736394464969635, -2.958773374557495, -0.4626629948616028, -0.15512381494045258, 1.3082818984985352, -0.15800002217292786, 0.2860994040966034, 0.0896899402141571]} +{"t": 21.303, "q": [-0.31286048889160156, -0.013331998139619827, 0.011235800571739674, 0.6312501430511475, -0.34129902720451355, 0.006782860960811377, -0.3572692573070526, 0.004312190227210522, -0.0005758515326306224, 0.6165921092033386, -0.30029740929603577, 0.0007215833174996078, 0.00575851509347558, 0.047101862728595734, -0.05769689381122589, -2.825772523880005, 0.579125702381134, 0.21898774802684784, 1.1013742685317993, 0.16751550137996674, 0.3683231770992279, -0.17537714540958405, -2.958977222442627, -0.46447262167930603, -0.1549680233001709, 1.3069636821746826, -0.15809589624404907, 0.28281572461128235, 0.08963002264499664]} +{"t": 21.3198, "q": [-0.31286901235580444, -0.013306431472301483, 0.011235800571739674, 0.6312330961227417, -0.3413112461566925, 0.0067900135181844234, -0.3572777807712555, 0.004329234827309847, -0.0005892434273846447, 0.6165921092033386, -0.30030152201652527, 0.0007143712718971074, 0.005624596029520035, 0.0471094511449337, -0.05769210681319237, -2.8257484436035156, 0.5794732570648193, 0.21898774802684784, 1.1013503074645996, 0.16751550137996674, 0.3681553900241852, -0.17712685465812683, -2.9593007564544678, -0.46643802523612976, -0.15480023622512817, 1.3049023151397705, -0.1582397073507309, 0.27929237484931946, 0.08947422355413437]} +{"t": 21.3365, "q": [-0.31292015314102173, -0.01328938640654087, 0.011235800571739674, 0.6312160491943359, -0.3413112461566925, 0.0067900135181844234, -0.357286274433136, 0.0043718451634049416, -0.0005758515326306224, 0.6165921092033386, -0.3003096282482147, 0.0006854425882920623, 0.005530852824449539, 0.0471094511449337, -0.05769210681319237, -2.825700521469116, 0.5796769857406616, 0.21898774802684784, 1.1013742685317993, 0.16750352084636688, 0.3680475354194641, -0.17869678139686584, -2.9595165252685547, -0.4683794677257538, -0.1546444445848465, 1.3023496866226196, -0.15840749442577362, 0.27672773599624634, 0.08945025503635406]} +{"t": 21.3533, "q": [-0.31290310621261597, -0.013297909870743752, 0.01126258447766304, 0.6312245726585388, -0.3413071036338806, 0.006797319743782282, -0.3572777807712555, 0.0043718451634049416, -0.0005892434273846447, 0.6166262030601501, -0.30032193660736084, 0.000663806451484561, 0.005504068918526173, 0.047124627977609634, -0.057682525366544724, -2.8256406784057617, 0.5796889662742615, 0.21893981099128723, 1.1013503074645996, 0.16749152541160583, 0.36791571974754333, -0.1796315461397171, -2.95989990234375, -0.4703688621520996, -0.1543688029050827, 1.3002524375915527, -0.15844343602657318, 0.2743428945541382, 0.08943827450275421]} +{"t": 21.37, "q": [-0.3128945827484131, -0.01328938640654087, 0.011275975964963436, 0.6312160491943359, -0.3413112461566925, 0.0067900135181844234, -0.3572692573070526, 0.004363323096185923, -0.0005624596378766, 0.6166262030601501, -0.300338476896286, 0.0006639314233325422, 0.00542371766641736, 0.047124627977609634, -0.057682525366544724, -2.8255927562713623, 0.5796410441398621, 0.21889187395572662, 1.1013023853302002, 0.16751550137996674, 0.367831826210022, -0.1801828294992447, -2.9599719047546387, -0.4721664786338806, -0.15396134555339813, 1.2982271909713745, -0.1585153490304947, 0.2721737325191498, 0.08963002264499664]} +{"t": 21.3867, "q": [-0.3128860592842102, -0.013280864804983139, 0.011289368383586407, 0.6312160491943359, -0.3413071036338806, 0.006797319743782282, -0.357286274433136, 0.004405933897942305, -0.0005892434273846447, 0.6166602969169617, -0.3003590703010559, 0.0006423398153856397, 0.005343366414308548, 0.0471322163939476, -0.0576777346432209, -2.8256406784057617, 0.5794852375984192, 0.21891583502292633, 1.1013143062591553, 0.16746756434440613, 0.36780786514282227, -0.18071013689041138, -2.9602115154266357, -0.47360458970069885, -0.15333816409111023, 1.2968369722366333, -0.158587247133255, 0.2703401446342468, 0.08976184576749802]} +{"t": 21.4036, "q": [-0.3128860592842102, -0.013272343203425407, 0.011316152289509773, 0.6312160491943359, -0.3413071036338806, 0.006797319743782282, -0.3572777807712555, 0.004431500099599361, -0.0005892434273846447, 0.6166432499885559, -0.3003590703010559, 0.0006423398153856397, 0.005249623209238052, 0.04713982343673706, -0.05768289417028427, -2.8256287574768066, 0.5793294310569763, 0.21884393692016602, 1.1012544631958008, 0.16747954487800598, 0.36775991320610046, -0.1811056137084961, -2.960355281829834, -0.47473111748695374, -0.1529187113046646, 1.295662522315979, -0.15862320363521576, 0.269501268863678, 0.09002549946308136]} +{"t": 21.4203, "q": [-0.3128775358200073, -0.013246776536107063, 0.01132954377681017, 0.6312160491943359, -0.34129902720451355, 0.006782860960811377, -0.3572777807712555, 0.004457066301256418, -0.0005624596378766, 0.6167369484901428, -0.30035489797592163, 0.0006350652547553182, 0.00516927195712924, 0.04714741185307503, -0.05767810344696045, -2.8256165981292725, 0.5791736245155334, 0.21864020824432373, 1.1013023853302002, 0.16739565134048462, 0.3677000105381012, -0.1814771294593811, -2.9604272842407227, -0.4753183424472809, -0.15223561227321625, 1.2951711416244507, -0.15877899527549744, 0.2687941789627075, 0.09013336151838303]} +{"t": 21.437, "q": [-0.3128519654273987, -0.013246776536107063, 0.01132954377681017, 0.6312160491943359, -0.3412949740886688, 0.006775631569325924, -0.35731184482574463, 0.004508199170231819, -0.0005758515326306224, 0.6168136596679688, -0.3003506362438202, 0.0006133040878921747, 0.005115704145282507, 0.04713980853557587, -0.05767294764518738, -2.8256165981292725, 0.5790297985076904, 0.21856829524040222, 1.1013023853302002, 0.16745558381080627, 0.3677000105381012, -0.181728795170784, -2.9602832794189453, -0.4753902554512024, -0.15175624191761017, 1.2950153350830078, -0.15892280638217926, 0.26859045028686523, 0.0902651846408844]} +{"t": 21.4538, "q": [-0.31280937790870667, -0.013212688267230988, 0.011356327682733536, 0.6312160491943359, -0.3413030803203583, 0.006790090352296829, -0.357286274433136, 0.004516721237450838, -0.0005758515326306224, 0.6168988943099976, -0.3003547191619873, 0.0006060920422896743, 0.005021960940212011, 0.04713980853557587, -0.05767294764518738, -2.8256287574768066, 0.5789579153060913, 0.2185203582048416, 1.1013143062591553, 0.16744358837604523, 0.36771199107170105, -0.18192054331302643, -2.9599719047546387, -0.47537827491760254, -0.15096528828144073, 1.2950153350830078, -0.15892280638217926, 0.2685545086860657, 0.09037303924560547]} +{"t": 21.4705, "q": [-0.31277528405189514, -0.013187121599912643, 0.01132954377681017, 0.6312160491943359, -0.34128689765930176, 0.006761172786355019, -0.357286274433136, 0.004550809506326914, -0.0005892434273846447, 0.617009699344635, -0.30035045742988586, 0.0005843128310516477, 0.005075528286397457, 0.047147396951913834, -0.057668156921863556, -2.825544834136963, 0.578981876373291, 0.2184484601020813, 1.1012903451919556, 0.16744358837604523, 0.3677000105381012, -0.1820763349533081, -2.959684133529663, -0.47525840997695923, -0.14923955500125885, 1.2950992584228516, -0.15905463695526123, 0.2685664892196655, 0.09052883833646774]} +{"t": 21.4873, "q": [-0.3127497136592865, -0.01317007839679718, 0.011342935264110565, 0.6312160491943359, -0.3412909507751465, 0.006768402177840471, -0.3573203682899475, 0.004567853640764952, -0.0005892434273846447, 0.617009699344635, -0.30037111043930054, 0.0005772258737124503, 0.005048744846135378, 0.0471549853682518, -0.057663366198539734, -2.825544834136963, 0.578981876373291, 0.21838854253292084, 1.1012784242630005, 0.16745558381080627, 0.3677239716053009, -0.18226808309555054, -2.9596123695373535, -0.4752344489097595, -0.14642326533794403, 1.2951112985610962, -0.15925836563110352, 0.2685545086860657, 0.09075653553009033]} +{"t": 21.5041, "q": [-0.312783807516098, -0.01317007839679718, 0.01132954377681017, 0.6312160491943359, -0.34127071499824524, 0.00673223752528429, -0.3573203682899475, 0.004567853640764952, -0.0006026353221386671, 0.6170352697372437, -0.3003585636615753, 0.0005553841474466026, 0.005048744846135378, 0.04713980853557587, -0.05767294764518738, -2.8254969120025635, 0.5790418386459351, 0.2183765470981598, 1.1012784242630005, 0.16745558381080627, 0.3677239716053009, -0.18244785070419312, -2.9596123695373535, -0.4752104878425598, -0.1423366367816925, 1.2951112985610962, -0.1595340073108673, 0.2685545086860657, 0.09093630313873291]} +{"t": 21.5208, "q": [-0.31277528405189514, -0.013153033331036568, 0.011289368383586407, 0.6312245726585388, -0.341262549161911, 0.006732314359396696, -0.3573288917541504, 0.004567853640764952, -0.0006294191116467118, 0.6170693039894104, -0.3003668487071991, 0.0005554466624744236, 0.005035352893173695, 0.047155000269412994, -0.05767331272363663, -2.825340986251831, 0.5791496634483337, 0.21835258603096008, 1.1013023853302002, 0.16744358837604523, 0.36773595213890076, -0.18255570530891418, -2.9595882892608643, -0.47525840997695923, -0.13840581476688385, 1.295147180557251, -0.15961790084838867, 0.26859045028686523, 0.09104415774345398]} +{"t": 21.5377, "q": [-0.3127582371234894, -0.013178599998354912, 0.011302759870886803, 0.6312501430511475, -0.3412626087665558, 0.006717778742313385, -0.3573288917541504, 0.004542287439107895, -0.0006026353221386671, 0.6171119213104248, -0.3003710210323334, 0.0005627212231047451, 0.005008568987250328, 0.04715501889586449, -0.05768326297402382, -2.8251492977142334, 0.5792575478553772, 0.21835258603096008, 1.1013143062591553, 0.16741962730884552, 0.36773595213890076, -0.1826036423444748, -2.9595165252685547, -0.4753662645816803, -0.13481055200099945, 1.2951232194900513, -0.15967781841754913, 0.26859045028686523, 0.09103217720985413]} +{"t": 21.5544, "q": [-0.3127582371234894, -0.0131615549325943, 0.011275975964963436, 0.6312671899795532, -0.3412666618824005, 0.006725008133798838, -0.3573288917541504, 0.004542287439107895, -0.0005892434273846447, 0.617094874382019, -0.3003709316253662, 0.0005482346168719232, 0.0051424880512058735, 0.04714741185307503, -0.05767810344696045, -2.824981451034546, 0.5793054699897766, 0.2183765470981598, 1.1012784242630005, 0.16744358837604523, 0.3678198456764221, -0.18261562287807465, -2.9593846797943115, -0.4754142165184021, -0.13266538083553314, 1.2951592206954956, -0.1597377359867096, 0.26861441135406494, 0.09102018922567368]} +{"t": 21.5711, "q": [-0.3127582371234894, -0.0131615549325943, 0.011302759870886803, 0.6312671899795532, -0.3412666618824005, 0.006725008133798838, -0.35733741521835327, 0.004508199170231819, -0.0006026353221386671, 0.6171033978462219, -0.3003668487071991, 0.0005554466624744236, 0.00512909609824419, 0.04713980853557587, -0.05767294764518738, -2.824777841567993, 0.5793773531913757, 0.21841250360012054, 1.1012424230575562, 0.16744358837604523, 0.367831826210022, -0.18261562287807465, -2.9592647552490234, -0.475534051656723, -0.1308557540178299, 1.295135259628296, -0.15972575545310974, 0.2686264216899872, 0.09097225219011307]} +{"t": 21.5878, "q": [-0.31276676058769226, -0.013187121599912643, 0.011316152289509773, 0.6312671899795532, -0.3412666618824005, 0.006725008133798838, -0.35734593868255615, 0.004508199170231819, -0.0005624596378766, 0.6171204447746277, -0.3003751337528229, 0.0005555091192945838, 0.005062136333435774, 0.0471549853682518, -0.057663366198539734, -2.8245980739593506, 0.5794492959976196, 0.2184244841337204, 1.1013023853302002, 0.16743160784244537, 0.36786776781082153, -0.1826276034116745, -2.9593007564544678, -0.4756898581981659, -0.12953749299049377, 1.295135259628296, -0.15972575545310974, 0.2686264216899872, 0.0909123346209526]} +{"t": 21.6046, "q": [-0.31277528405189514, -0.013195643201470375, 0.011289368383586407, 0.631284236907959, -0.3412666618824005, 0.006725008133798838, -0.3573715090751648, 0.004474110435694456, -0.0005758515326306224, 0.617094874382019, -0.30037930607795715, 0.0005628017825074494, 0.00508892023935914, 0.04713219776749611, -0.05766778811812401, -2.8244543075561523, 0.5795930624008179, 0.218472421169281, 1.1012784242630005, 0.16744358837604523, 0.3678557872772217, -0.1826276034116745, -2.9593966007232666, -0.47600144147872925, -0.12825517356395721, 1.2951232194900513, -0.1597137749195099, 0.2686264216899872, 0.09087637811899185]} +{"t": 21.6217, "q": [-0.312783807516098, -0.013212688267230988, 0.011289368383586407, 0.631284236907959, -0.34127071499824524, 0.00673223752528429, -0.35738855600357056, 0.004474110435694456, -0.0005356758483685553, 0.6170863509178162, -0.30037522315979004, 0.0005700138281099498, 0.005048744846135378, 0.0471549853682518, -0.057663366198539734, -2.8241426944732666, 0.5797009468078613, 0.218472421169281, 1.1013143062591553, 0.16744358837604523, 0.3678438067436218, -0.1826276034116745, -2.9593007564544678, -0.4764568507671356, -0.1273323893547058, 1.2951112985610962, -0.15970177948474884, 0.2686264216899872, 0.0908883661031723]} +{"t": 21.6385, "q": [-0.3128008544445038, -0.0132297333329916, 0.011289368383586407, 0.631284236907959, -0.34127071499824524, 0.00673223752528429, -0.3574056029319763, 0.0044229780323803425, -0.0005490677431225777, 0.6170693039894104, -0.3004205524921417, 0.0005341231008060277, 0.005035352893173695, 0.04713980853557587, -0.05767294764518738, -2.8239150047302246, 0.5798567533493042, 0.21855631470680237, 1.1012784242630005, 0.16745558381080627, 0.367831826210022, -0.1826276034116745, -2.9593007564544678, -0.47694820165634155, -0.12675714492797852, 1.2950873374938965, -0.15966583788394928, 0.26859045028686523, 0.09090034663677216]} +{"t": 21.6553, "q": [-0.3128349483013153, -0.01322120986878872, 0.01124919205904007, 0.6312927603721619, -0.3412747383117676, 0.006739466916769743, -0.35743117332458496, 0.004397411365061998, -0.0005624596378766, 0.6170437932014465, -0.3004330098628998, 0.0005414601764641702, 0.005289798602461815, 0.04714737832546234, -0.057658206671476364, -2.823831081390381, 0.5801323652267456, 0.21850837767124176, 1.1012784242630005, 0.16740764677524567, 0.3678198456764221, -0.18263959884643555, -2.959432601928711, -0.4776313006877899, -0.12656539678573608, 1.2950632572174072, -0.15967781841754913, 0.26861441135406494, 0.09087637811899185]} +{"t": 21.6721, "q": [-0.3128434419631958, -0.013238254934549332, 0.011235800571739674, 0.631284236907959, -0.3412787914276123, 0.006746696308255196, -0.3574482202529907, 0.0044144559651613235, -0.0005892434273846447, 0.6170267462730408, -0.300453782081604, 0.000548877811525017, 0.005316582508385181, 0.04713980853557587, -0.05767294764518738, -2.8237111568450928, 0.5804319977760315, 0.21854433417320251, 1.1012544631958008, 0.16740764677524567, 0.367831826210022, -0.1826515793800354, -2.9599478244781494, -0.4785420894622803, -0.12651745975017548, 1.2948836088180542, -0.15964186191558838, 0.26859045028686523, 0.0908883661031723]} +{"t": 21.6888, "q": [-0.3128434419631958, -0.01322120986878872, 0.01124919205904007, 0.6312757134437561, -0.34128695726394653, 0.0067466371692717075, -0.3574482202529907, 0.004397411365061998, -0.0005892434273846447, 0.6170011758804321, -0.30052393674850464, 0.0005131745128892362, 0.0052094473503530025, 0.04713980853557587, -0.05767294764518738, -2.8236992359161377, 0.5808035135269165, 0.21855631470680237, 1.1012544631958008, 0.16741962730884552, 0.3677958846092224, -0.1826276034116745, -2.9605231285095215, -0.4793570339679718, -0.12651745975017548, 1.2945839166641235, -0.15961790084838867, 0.2685185372829437, 0.090864397585392]} +{"t": 21.7055, "q": [-0.3128264248371124, -0.01322120986878872, 0.011235800571739674, 0.631284236907959, -0.34129101037979126, 0.00675386656075716, -0.3574482202529907, 0.004405933897942305, -0.0005758515326306224, 0.617009699344635, -0.3005569279193878, 0.00048445144784636796, 0.005115704145282507, 0.04713980853557587, -0.05767294764518738, -2.823615312576294, 0.5811270475387573, 0.21856829524040222, 1.101182460784912, 0.16740764677524567, 0.3678198456764221, -0.18268753588199615, -2.9610862731933594, -0.48010003566741943, -0.12650547921657562, 1.2943203449249268, -0.15960590541362762, 0.2685185372829437, 0.090864397585392]} +{"t": 21.7223, "q": [-0.3128434419631958, -0.013212688267230988, 0.011222408153116703, 0.631284236907959, -0.3412990868091583, 0.0067683253437280655, -0.3574567437171936, 0.0044229780323803425, -0.0005892434273846447, 0.617009699344635, -0.3006020784378052, 0.0004195875080768019, 0.005035352893173695, 0.04713980853557587, -0.05767294764518738, -2.8235673904418945, 0.5816783308982849, 0.21856829524040222, 1.1012065410614014, 0.16747954487800598, 0.3677718937397003, -0.18268753588199615, -2.961937189102173, -0.48081910610198975, -0.1264096051454544, 1.2940446138381958, -0.15961790084838867, 0.26850655674934387, 0.0908404290676117]} +{"t": 21.739, "q": [-0.31286901235580444, -0.01322120986878872, 0.011235800571739674, 0.631284236907959, -0.341303288936615, 0.006746483035385609, -0.3575163781642914, 0.0044229780323803425, -0.0005892434273846447, 0.6169926524162292, -0.3006061911582947, 0.0004123575345147401, 0.005075528286397457, 0.04713980853557587, -0.05767294764518738, -2.823603391647339, 0.5826011300086975, 0.21862822771072388, 1.1012184619903564, 0.16749152541160583, 0.3677718937397003, -0.18271149694919586, -2.962752103805542, -0.48156213760375977, -0.12639762461185455, 1.2938408851623535, -0.15966583788394928, 0.268494576215744, 0.0908404290676117]} +{"t": 21.7557, "q": [-0.3128775358200073, -0.01322120986878872, 0.011235800571739674, 0.6312757134437561, -0.3412990868091583, 0.0067683253437280655, -0.35756751894950867, 0.004431500099599361, -0.0005758515326306224, 0.6170352697372437, -0.3006061017513275, 0.00039787092828191817, 0.00512909609824419, 0.04714741185307503, -0.05767810344696045, -2.8235554695129395, 0.5836197733879089, 0.21855631470680237, 1.1012424230575562, 0.16745558381080627, 0.36773595213890076, -0.18274745345115662, -2.963423252105713, -0.4825088679790497, -0.12634968757629395, 1.2935413122177124, -0.15967781841754913, 0.268494576215744, 0.09090034663677216]} +{"t": 21.7724, "q": [-0.3128775358200073, -0.013204166665673256, 0.011209016665816307, 0.6312757134437561, -0.3412990868091583, 0.0067683253437280655, -0.35757604241371155, 0.004448544234037399, -0.0006026353221386671, 0.617009699344635, -0.30059781670570374, 0.00039779033977538347, 0.005062136333435774, 0.04714741185307503, -0.05767810344696045, -2.823495388031006, 0.5848422050476074, 0.21855631470680237, 1.1012424230575562, 0.16744358837604523, 0.3677000105381012, -0.18277141451835632, -2.964118242263794, -0.48381516337394714, -0.12628977000713348, 1.2931938171386719, -0.15962988138198853, 0.26848259568214417, 0.09082844108343124]} +{"t": 21.7892, "q": [-0.3128860592842102, -0.013195643201470375, 0.011209016665816307, 0.6312671899795532, -0.34128284454345703, 0.006753943394869566, -0.3575504720211029, 0.004474110435694456, -0.0006294191116467118, 0.6170523166656494, -0.3005976378917694, 0.0003688171273097396, 0.00508892023935914, 0.04713980853557587, -0.05767294764518738, -2.823375701904297, 0.5861244797706604, 0.21853235363960266, 1.1012544631958008, 0.16746756434440613, 0.3676520586013794, -0.18280737102031708, -2.964597702026367, -0.4855289161205292, -0.12612198293209076, 1.2927383184432983, -0.15964186191558838, 0.26843467354774475, 0.09082844108343124]} +{"t": 21.8059, "q": [-0.3128775358200073, -0.013178599998354912, 0.011209016665816307, 0.631284236907959, -0.34128695726394653, 0.0067466371692717075, -0.3575589954853058, 0.004516721237450838, -0.0006294191116467118, 0.6170523166656494, -0.300589382648468, 0.0003687546122819185, 0.005048744846135378, 0.04713219776749611, -0.05766778811812401, -2.82315993309021, 0.5875865817070007, 0.21861623227596283, 1.1012184619903564, 0.16744358837604523, 0.36766403913497925, -0.18284332752227783, -2.965029239654541, -0.4877220094203949, -0.12554673850536346, 1.2921271324157715, -0.15965384244918823, 0.2684466540813446, 0.09085240960121155]} +{"t": 21.8227, "q": [-0.31286048889160156, -0.013144511729478836, 0.011195625178515911, 0.6312757134437561, -0.3412829041481018, 0.00673938961699605, -0.3575589954853058, 0.004525243304669857, -0.0006294191116467118, 0.6170523166656494, -0.3005810081958771, 0.000354205520125106, 0.004968393128365278, 0.04711700603365898, -0.05766741931438446, -2.822932243347168, 0.5889407992362976, 0.21864020824432373, 1.1012544631958008, 0.16747954487800598, 0.36761611700057983, -0.1828792840242386, -2.9652209281921387, -0.49052631855010986, -0.12467189878225327, 1.2912163734436035, -0.159689798951149, 0.2684466540813446, 0.09087637811899185]} +{"t": 21.8394, "q": [-0.3128860592842102, -0.013118945062160492, 0.011209016665816307, 0.631284236907959, -0.34128695726394653, 0.0067466371692717075, -0.3575078547000885, 0.004567853640764952, -0.0006428110064007342, 0.6170608401298523, -0.3005809187889099, 0.00033971891389228404, 0.0047541228123009205, 0.04710177332162857, -0.05764715373516083, -2.822572708129883, 0.5900313258171082, 0.21884393692016602, 1.1012065410614014, 0.16751550137996674, 0.3676280975341797, -0.18289126455783844, -2.9653408527374268, -0.4942414462566376, -0.12323378771543503, 1.2899580001831055, -0.15974971652030945, 0.2684466540813446, 0.09087637811899185]} +{"t": 21.8562, "q": [-0.3128860592842102, -0.013118945062160492, 0.011235800571739674, 0.631284236907959, -0.3412829041481018, 0.00673938961699605, -0.3574993312358856, 0.004584898240864277, -0.0006294191116467118, 0.6170437932014465, -0.3005600869655609, 0.00031781470170244575, 0.00445950124412775, 0.047056205570697784, -0.05765599384903908, -2.8219854831695557, 0.5909900665283203, 0.21892783045768738, 1.1012663841247559, 0.16750352084636688, 0.36756816506385803, -0.18298713862895966, -2.965604305267334, -0.49811235070228577, -0.12204734981060028, 1.2886877059936523, -0.1597856730222702, 0.2684466540813446, 0.090864397585392]} +{"t": 21.8731, "q": [-0.3128775358200073, -0.013153033331036568, 0.011289368383586407, 0.631284236907959, -0.34128695726394653, 0.0067466371692717075, -0.35749080777168274, 0.004533765371888876, -0.0005758515326306224, 0.6170182228088379, -0.3005600869655609, 0.00031781470170244575, 0.004392541944980621, 0.04704102873802185, -0.05766557157039642, -2.821446180343628, 0.5921405553817749, 0.21891583502292633, 1.1012424230575562, 0.16751550137996674, 0.3675561845302582, -0.18311895430088043, -2.9659039974212646, -0.5015038847923279, -0.12083694338798523, 1.2875611782073975, -0.15982162952423096, 0.2684466540813446, 0.09087637811899185]} +{"t": 21.8898, "q": [-0.3128434419631958, -0.013238254934549332, 0.011463462375104427, 0.631284236907959, -0.34128689765930176, 0.006761172786355019, -0.3574652671813965, 0.00444002216681838, -0.00046871634549461305, 0.6170267462730408, -0.30055198073387146, 0.00034674335620366037, 0.004298798739910126, 0.047048650681972504, -0.057680681347846985, -2.8209187984466553, 0.5937584638595581, 0.21885591745376587, 1.1012424230575562, 0.16747954487800598, 0.3674722909927368, -0.18323880434036255, -2.966155767440796, -0.5045718550682068, -0.12003400176763535, 1.2861590385437012, -0.16002535820007324, 0.2684466540813446, 0.09087637811899185]} +{"t": 21.9066, "q": [-0.3128434419631958, -0.01328938640654087, 0.01158398948609829, 0.631284236907959, -0.34129101037979126, 0.00675386656075716, -0.35748228430747986, 0.0043718451634049416, -0.00033479739795438945, 0.6170608401298523, -0.3005604147911072, 0.0003757971280720085, 0.004151487722992897, 0.04713219776749611, -0.05766778811812401, -2.820571184158325, 0.5954961776733398, 0.21880798041820526, 1.1012424230575562, 0.16745558381080627, 0.36734047532081604, -0.1835024505853653, -2.9663474559783936, -0.5072083473205566, -0.11961454898118973, 1.284529209136963, -0.16024108231067657, 0.2684466540813446, 0.090864397585392]} +{"t": 21.9234, "q": [-0.3128349483013153, -0.013314953073859215, 0.011731300503015518, 0.6312757134437561, -0.34129101037979126, 0.00675386656075716, -0.3575078547000885, 0.004354801028966904, -0.0002544460294302553, 0.6170608401298523, -0.30055221915245056, 0.0003902212483808398, 0.003977392800152302, 0.04718537628650665, -0.05766410380601883, -2.820307731628418, 0.5967065691947937, 0.21876004338264465, 1.1012184619903564, 0.16743160784244537, 0.36716070771217346, -0.18380206823349, -2.966539144515991, -0.5096291899681091, -0.11938685178756714, 1.2828993797302246, -0.16042083501815796, 0.2684706151485443, 0.09087637811899185]} +{"t": 21.9401, "q": [-0.3128264248371124, -0.013323476538062096, 0.011744692921638489, 0.631284236907959, -0.341295063495636, 0.006761095952242613, -0.35752490162849426, 0.0043803672306239605, -0.0002812298189383, 0.6170863509178162, -0.3005480468273163, 0.0003829466877505183, 0.003910433501005173, 0.04720055311918259, -0.057654526084661484, -2.819888114929199, 0.5975454449653625, 0.21868814527988434, 1.101110577583313, 0.16740764677524567, 0.3670288920402527, -0.18413762748241425, -2.9665510654449463, -0.5119900703430176, -0.11921907216310501, 1.2813414335250854, -0.16088822484016418, 0.2684706151485443, 0.0908883661031723]} +{"t": 21.9568, "q": [-0.3128264248371124, -0.013255298137664795, 0.011664341203868389, 0.631284236907959, -0.34128689765930176, 0.006761172786355019, -0.3574993312358856, 0.0044144559651613235, -0.00033479739795438945, 0.6170863509178162, -0.3005438446998596, 0.0003756540536414832, 0.00388364982791245, 0.04720055311918259, -0.057654526084661484, -2.8195765018463135, 0.5980008840560913, 0.21868814527988434, 1.1011465787887573, 0.16740764677524567, 0.3668730854988098, -0.1844492107629776, -2.966539144515991, -0.5141472220420837, -0.11864382773637772, 1.2802268266677856, -0.16237427294254303, 0.26848259568214417, 0.09093630313873291]} +{"t": 21.9737, "q": [-0.3128264248371124, -0.0132297333329916, 0.011610773392021656, 0.6312671899795532, -0.341295063495636, 0.006761095952242613, -0.3574993312358856, 0.004465588368475437, -0.00040175687172450125, 0.6170693039894104, -0.3005479574203491, 0.00036844200803898275, 0.003937217406928539, 0.047177787870168686, -0.05766889452934265, -2.8193609714508057, 0.5982165932655334, 0.21861623227596283, 1.1011465787887573, 0.16738367080688477, 0.36681315302848816, -0.1847248524427414, -2.9665510654449463, -0.5158969163894653, -0.11776898056268692, 1.279747486114502, -0.16336895525455475, 0.26848259568214417, 0.09099622070789337]} +{"t": 21.9904, "q": [-0.3128264248371124, -0.013212688267230988, 0.011543814092874527, 0.6312757134437561, -0.34128695726394653, 0.0067466371692717075, -0.35749080777168274, 0.004474110435694456, -0.00042854066123254597, 0.6170693039894104, -0.30055615305900574, 0.0003540178877301514, 0.003910433501005173, 0.047147396951913834, -0.057668156921863556, -2.819157123565674, 0.5984323024749756, 0.21858029067516327, 1.101170539855957, 0.16740764677524567, 0.36678919196128845, -0.1850484162569046, -2.966515302658081, -0.5173829793930054, -0.11681023985147476, 1.2792800664901733, -0.16481904685497284, 0.268494576215744, 0.09111606329679489]} +{"t": 22.0071, "q": [-0.31281790137290955, -0.013204166665673256, 0.011530422605574131, 0.6312671899795532, -0.34128695726394653, 0.0067466371692717075, -0.35752490162849426, 0.004474110435694456, -0.00042854066123254597, 0.6171033978462219, -0.3005562424659729, 0.00036852259654551744, 0.003923825453966856, 0.04718537628650665, -0.05766410380601883, -2.81904935836792, 0.598707914352417, 0.21859227120876312, 1.1011465787887573, 0.16741962730884552, 0.36678919196128845, -0.1853240579366684, -2.9663712978363037, -0.5185454487800598, -0.11618706583976746, 1.2785370349884033, -0.1654302477836609, 0.2685185372829437, 0.09123590588569641]} +{"t": 22.0238, "q": [-0.3128349483013153, -0.013187121599912643, 0.011530422605574131, 0.631284236907959, -0.34128695726394653, 0.0067466371692717075, -0.3575589954853058, 0.004482632502913475, -0.0004151487664785236, 0.6171204447746277, -0.30056461691856384, 0.00038307168870233, 0.0038568659219890833, 0.047177754342556, -0.057648997753858566, -2.8188095092773438, 0.59885174036026, 0.21859227120876312, 1.101110577583313, 0.16740764677524567, 0.3667532503604889, -0.18552778661251068, -2.9662156105041504, -0.5196000337600708, -0.11600729823112488, 1.2779737710952759, -0.16586168110370636, 0.2685545086860657, 0.09135574847459793]} +{"t": 22.0406, "q": [-0.3128264248371124, -0.01317007839679718, 0.01151703018695116, 0.6312757134437561, -0.34128695726394653, 0.0067466371692717075, -0.3576016128063202, 0.004482632502913475, -0.0004151487664785236, 0.6171033978462219, -0.3005768358707428, 0.00034693098859861493, 0.0038970415480434895, 0.04718535766005516, -0.05765415355563164, -2.818485975265503, 0.598935604095459, 0.21859227120876312, 1.101098656654358, 0.16740764677524567, 0.3667532503604889, -0.18582738935947418, -2.966155767440796, -0.520846426486969, -0.11595936119556427, 1.2775543928146362, -0.1660534292459488, 0.26859045028686523, 0.09147559106349945]} +{"t": 22.0573, "q": [-0.3128349483013153, -0.01317007839679718, 0.011490246281027794, 0.6312757134437561, -0.34128695726394653, 0.0067466371692717075, -0.3576016128063202, 0.004491155035793781, -0.00042854066123254597, 0.6171119213104248, -0.30058929324150085, 0.00035426803515292704, 0.0038702578749507666, 0.04720815643668175, -0.057659681886434555, -2.8182222843170166, 0.5989716053009033, 0.21858029067516327, 1.1010507345199585, 0.16740764677524567, 0.36666935682296753, -0.18615096807479858, -2.966191530227661, -0.5222485661506653, -0.11586348712444305, 1.277362585067749, -0.16613730788230896, 0.26859045028686523, 0.09172725677490234]} +{"t": 22.074, "q": [-0.3128264248371124, -0.013153033331036568, 0.011476854793727398, 0.6312757134437561, -0.34128695726394653, 0.0067466371692717075, -0.3576442301273346, 0.004491155035793781, -0.0004151487664785236, 0.6171204447746277, -0.30059337615966797, 0.00034705596044659615, 0.0038434739690274, 0.04718535766005516, -0.05765415355563164, -2.818006753921509, 0.5990674495697021, 0.21855631470680237, 1.1010386943817139, 0.16743160784244537, 0.36663341522216797, -0.18651050329208374, -2.9662156105041504, -0.5237825512886047, -0.11583951860666275, 1.2771588563919067, -0.16614930331707, 0.2686264216899872, 0.09199091047048569]} +{"t": 22.0908, "q": [-0.3128349483013153, -0.013135988265275955, 0.01151703018695116, 0.631284236907959, -0.34129101037979126, 0.00675386656075716, -0.35762718319892883, 0.004516721237450838, -0.00042854066123254597, 0.6171204447746277, -0.3005892038345337, 0.0003397814289201051, 0.0038702578749507666, 0.047170162200927734, -0.05765378847718239, -2.8178508281707764, 0.5991753339767456, 0.21859227120876312, 1.1010386943817139, 0.16741962730884552, 0.3666094243526459, -0.18708573281764984, -2.9662156105041504, -0.5257120132446289, -0.11579158157110214, 1.27689528465271, -0.16618524491786957, 0.26859045028686523, 0.09237440675497055]} +{"t": 22.1075, "q": [-0.3128264248371124, -0.013135988265275955, 0.011490246281027794, 0.6312671899795532, -0.34128695726394653, 0.0067466371692717075, -0.3576442301273346, 0.004508199170231819, -0.00042854066123254597, 0.6171204447746277, -0.30059748888015747, 0.0003398439148440957, 0.0038970415480434895, 0.04718537628650665, -0.05766410380601883, -2.817671060562134, 0.5993551015853882, 0.21855631470680237, 1.1009668111801147, 0.16741962730884552, 0.3666094243526459, -0.18778082728385925, -2.966275453567505, -0.5278811454772949, -0.11576761305332184, 1.2765955924987793, -0.16619724035263062, 0.26859045028686523, 0.09279385954141617]} +{"t": 22.1243, "q": [-0.3128264248371124, -0.013135988265275955, 0.011476854793727398, 0.631284236907959, -0.34129101037979126, 0.00675386656075716, -0.3576442301273346, 0.004508199170231819, -0.0004151487664785236, 0.6171033978462219, -0.3006220757961273, 0.0002965536550618708, 0.003910433501005173, 0.04717017710208893, -0.05766373500227928, -2.817491292953491, 0.5996187329292297, 0.21856829524040222, 1.1009787321090698, 0.16745558381080627, 0.36656150221824646, -0.1885717809200287, -2.966311454772949, -0.5302900075912476, -0.11575563251972198, 1.276224136352539, -0.16622120141983032, 0.2686264216899872, 0.09320131689310074]} +{"t": 22.141, "q": [-0.31286048889160156, -0.013135988265275955, 0.011490246281027794, 0.6312757134437561, -0.34128695726394653, 0.0067466371692717075, -0.35766124725341797, 0.004491155035793781, -0.0003883649769704789, 0.6170863509178162, -0.30063045024871826, 0.00031110274721868336, 0.0038702578749507666, 0.04717017710208893, -0.05766373500227928, -2.8173835277557373, 0.5998943448066711, 0.21858029067516327, 1.100870966911316, 0.16744358837604523, 0.3664536476135254, -0.18983012437820435, -2.9663712978363037, -0.533022403717041, -0.11568372696638107, 1.2758406400680542, -0.16628111898899078, 0.26859045028686523, 0.09362076967954636]} +{"t": 22.1577, "q": [-0.3128434419631958, -0.0131615549325943, 0.011503638699650764, 0.6312757134437561, -0.341295063495636, 0.006761095952242613, -0.3576527535915375, 0.004482632502913475, -0.00037497308221645653, 0.6170863509178162, -0.3006345331668854, 0.00030389067251235247, 0.0038300822488963604, 0.04718537628650665, -0.05766410380601883, -2.817347526550293, 0.6002299189567566, 0.21859227120876312, 1.1007750034332275, 0.16749152541160583, 0.36641767621040344, -0.19125625491142273, -2.966503143310547, -0.535790741443634, -0.11563578993082047, 1.2754930257797241, -0.16626913845539093, 0.2686024308204651, 0.09394434094429016]} +{"t": 22.1745, "q": [-0.3128264248371124, -0.013195643201470375, 0.011570597998797894, 0.631284236907959, -0.341303288936615, 0.006746483035385609, -0.3576527535915375, 0.004457066301256418, -0.0003481892927084118, 0.6170693039894104, -0.3006345331668854, 0.00030389067251235247, 0.003816690295934677, 0.04717019945383072, -0.05767368525266647, -2.8171558380126953, 0.6006014347076416, 0.21860425174236298, 1.1007510423660278, 0.16746756434440613, 0.3664056956768036, -0.19292205572128296, -2.9666950702667236, -0.5389305949211121, -0.11562380194664001, 1.2751694917678833, -0.16629311442375183, 0.26859045028686523, 0.09425593167543411]} +{"t": 22.1913, "q": [-0.3128264248371124, -0.0132297333329916, 0.011557205580174923, 0.6312671899795532, -0.3412990868091583, 0.0067683253437280655, -0.3576527535915375, 0.004405933897942305, -0.0003214055032003671, 0.6170693039894104, -0.30063462257385254, 0.0003183772787451744, 0.0038434739690274, 0.04715501889586449, -0.05768326297402382, -2.816892147064209, 0.600877046585083, 0.21860425174236298, 1.1007391214370728, 0.16749152541160583, 0.36641767621040344, -0.19426429271697998, -2.966862678527832, -0.5418907403945923, -0.11564777046442032, 1.2747740745544434, -0.16629311442375183, 0.26859045028686523, 0.09455553442239761]} +{"t": 22.208, "q": [-0.3128264248371124, -0.013246776536107063, 0.011664341203868389, 0.631284236907959, -0.3412990868091583, 0.0067683253437280655, -0.3576442301273346, 0.0043718451634049416, -0.00026783792418427765, 0.6170778274536133, -0.3006387948989868, 0.0003256518393754959, 0.003816690295934677, 0.04714741185307503, -0.05767810344696045, -2.8167243003845215, 0.6014283299446106, 0.21860425174236298, 1.1007031202316284, 0.16746756434440613, 0.3664056956768036, -0.19540278613567352, -2.96698260307312, -0.5448508262634277, -0.11562380194664001, 1.2741748094558716, -0.16629311442375183, 0.2686024308204651, 0.09490308165550232]} +{"t": 22.2248, "q": [-0.3128264248371124, -0.013272343203425407, 0.011731300503015518, 0.6312671899795532, -0.3412990868091583, 0.0067683253437280655, -0.35766124725341797, 0.004286624025553465, -0.0002410541201243177, 0.6170693039894104, -0.30062225461006165, 0.00032552683842368424, 0.0038568659219890833, 0.04717782139778137, -0.057688791304826736, -2.8166284561157227, 0.601991593837738, 0.21860425174236298, 1.1006791591644287, 0.16746756434440613, 0.36641767621040344, -0.19644542038440704, -2.967198371887207, -0.5477270483970642, -0.11562380194664001, 1.2738033533096313, -0.16630509495735168, 0.2686024308204651, 0.09529855847358704]} +{"t": 22.2415, "q": [-0.3128264248371124, -0.013297909870743752, 0.011704516597092152, 0.6312671899795532, -0.3412990868091583, 0.0067683253437280655, -0.35766124725341797, 0.004286624025553465, -0.0002544460294302553, 0.6171119213104248, -0.30062633752822876, 0.0003183147928211838, 0.003910433501005173, 0.04720822721719742, -0.057699475437402725, -2.816688299179077, 0.6024949550628662, 0.21853235363960266, 1.1006791591644287, 0.16746756434440613, 0.3664056956768036, -0.1974520981311798, -2.9672462940216064, -0.5504235029220581, -0.11562380194664001, 1.2735036611557007, -0.16630509495735168, 0.2686024308204651, 0.0957060232758522]} +{"t": 22.2582, "q": [-0.31281790137290955, -0.013280864804983139, 0.011704516597092152, 0.6313012838363647, -0.3412990868091583, 0.0067683253437280655, -0.35766977071762085, 0.004295146092772484, -0.00026783792418427765, 0.6171289682388306, -0.30062633752822876, 0.0003183147928211838, 0.0038702578749507666, 0.047223471105098724, -0.057729676365852356, -2.8165805339813232, 0.6030701994895935, 0.21848441660404205, 1.1006791591644287, 0.16747954487800598, 0.36641767621040344, -0.19849471747875214, -2.967282295227051, -0.552976131439209, -0.11565975844860077, 1.2733838558197021, -0.16626913845539093, 0.26861441135406494, 0.09605356305837631]} +{"t": 22.2749, "q": [-0.3128008544445038, -0.013246776536107063, 0.011650948785245419, 0.6313012838363647, -0.34129101037979126, 0.00675386656075716, -0.3576527535915375, 0.004337756894528866, -0.00030801360844634473, 0.617171585559845, -0.3006179928779602, 0.00030376570066437125, 0.003816690295934677, 0.04723867028951645, -0.0577300488948822, -2.8164966106414795, 0.6037652492523193, 0.2184484601020813, 1.1006672382354736, 0.16747954487800598, 0.36641767621040344, -0.19958528876304626, -2.9672462940216064, -0.5548696517944336, -0.11564777046442032, 1.273323893547058, -0.16626913845539093, 0.2686503827571869, 0.09644904732704163]} +{"t": 22.2916, "q": [-0.3128008544445038, -0.013238254934549332, 0.01159738190472126, 0.6313012838363647, -0.34128695726394653, 0.0067466371692717075, -0.3576527535915375, 0.004337756894528866, -0.0003214055032003671, 0.6172056794166565, -0.30061790347099304, 0.0002892790944315493, 0.0038434739690274, 0.04723868519067764, -0.0577399842441082, -2.8163647651672363, 0.6045922040939331, 0.21841250360012054, 1.1007031202316284, 0.16749152541160583, 0.36641767621040344, -0.20036426186561584, -2.9671504497528076, -0.55625981092453, -0.11565975844860077, 1.2733359336853027, -0.16624517738819122, 0.2686743438243866, 0.09678460657596588]} +{"t": 22.3084, "q": [-0.3128008544445038, -0.013195643201470375, 0.011570597998797894, 0.6313098073005676, -0.3412788510322571, 0.006732160225510597, -0.3576868176460266, 0.0043718451634049416, -0.0003481892927084118, 0.6172482967376709, -0.30061379075050354, 0.00029649114003404975, 0.0038702578749507666, 0.04725386202335358, -0.05773041397333145, -2.8161849975585938, 0.6055509448051453, 0.21843647956848145, 1.1006791591644287, 0.16751550137996674, 0.36641767621040344, -0.20087958872318268, -2.9670424461364746, -0.5574702024459839, -0.11564777046442032, 1.2733838558197021, -0.16624517738819122, 0.2686983048915863, 0.09725198894739151]} +{"t": 22.3253, "q": [-0.3127923309803009, -0.01317007839679718, 0.011530422605574131, 0.6312927603721619, -0.34127482771873474, 0.006724930834025145, -0.35771238803863525, 0.0043803672306239605, -0.00040175687172450125, 0.6173250079154968, -0.3006178140640259, 0.00027479248819872737, 0.003923825453966856, 0.047269076108932495, -0.057740721851587296, -2.8159213066101074, 0.6065336465835571, 0.2184005230665207, 1.1006791591644287, 0.16756343841552734, 0.36641767621040344, -0.20119117200374603, -2.9668266773223877, -0.5585488080978394, -0.11564777046442032, 1.2734198570251465, -0.16625715792179108, 0.2687462568283081, 0.09779127687215805]} +{"t": 22.3422, "q": [-0.3128008544445038, -0.013135988265275955, 0.011463462375104427, 0.6313439011573792, -0.34127071499824524, 0.00673223752528429, -0.35772091150283813, 0.004448544234037399, -0.00040175687172450125, 0.6173505783081055, -0.300621896982193, 0.00026758044259622693, 0.0038970415480434895, 0.04723868519067764, -0.0577399842441082, -2.815777540206909, 0.607600212097168, 0.2184244841337204, 1.100715160369873, 0.16756343841552734, 0.3664296567440033, -0.20143085718154907, -2.9665632247924805, -0.5593757033348083, -0.11562380194664001, 1.2734198570251465, -0.16623318195343018, 0.2688061594963074, 0.09851033240556717]} +{"t": 22.3589, "q": [-0.31281790137290955, -0.01310189999639988, 0.01143667846918106, 0.6314120292663574, -0.34127482771873474, 0.006724930834025145, -0.35772091150283813, 0.004482632502913475, -0.0004553244507405907, 0.6173591017723083, -0.30060943961143494, 0.00026022529345937073, 0.003910433501005173, 0.04724627360701561, -0.057735200971364975, -2.8155739307403564, 0.6086068749427795, 0.21841250360012054, 1.100715160369873, 0.16756343841552734, 0.3664536476135254, -0.2016226053237915, -2.966491222381592, -0.5602385401725769, -0.11558785289525986, 1.273479700088501, -0.16625715792179108, 0.26886609196662903, 0.09972073882818222]} +{"t": 22.3756, "q": [-0.31281790137290955, -0.013084856793284416, 0.011423286981880665, 0.6314205527305603, -0.34127077460289, 0.006717701442539692, -0.35771238803863525, 0.004491155035793781, -0.00046871634549461305, 0.6173591017723083, -0.30062592029571533, 0.00024588179076090455, 0.003923825453966856, 0.04723105952143669, -0.05772489309310913, -2.8154540061950684, 0.6094937324523926, 0.2184244841337204, 1.100715160369873, 0.1675993949174881, 0.36646562814712524, -0.20175443589687347, -2.9663233757019043, -0.5611733198165894, -0.11559983342885971, 1.2734917402267456, -0.16624517738819122, 0.26889005303382874, 0.1019737720489502]} +{"t": 22.3925, "q": [-0.3128434419631958, -0.01310189999639988, 0.011396503075957298, 0.6314290761947632, -0.34127482771873474, 0.006724930834025145, -0.3577038645744324, 0.004491155035793781, -0.0004553244507405907, 0.6173335313796997, -0.3006342053413391, 0.00024594427668489516, 0.0039506093598902225, 0.0472462959587574, -0.05774514004588127, -2.81531023979187, 0.6101888418197632, 0.21843647956848145, 1.100715160369873, 0.1676712930202484, 0.36648958921432495, -0.20181435346603394, -2.96626353263855, -0.562012255191803, -0.11562380194664001, 1.2734917402267456, -0.16626913845539093, 0.26893800497055054, 0.10467022657394409]} +{"t": 22.4093, "q": [-0.3128434419631958, -0.013135988265275955, 0.011450070887804031, 0.6314546465873718, -0.3412706255912781, 0.006746773142367601, -0.3576953411102295, 0.004457066301256418, -0.00042854066123254597, 0.6173250079154968, -0.300621896982193, 0.00026758044259622693, 0.004097919911146164, 0.047215867787599564, -0.05772452428936958, -2.815094470977783, 0.6105602979660034, 0.21843647956848145, 1.100715160369873, 0.16771923005580902, 0.36651355028152466, -0.2018982470035553, -2.9662394523620605, -0.5628511309623718, -0.11563578993082047, 1.2735276222229004, -0.16619724035263062, 0.26896196603775024, 0.10694722831249237]} +{"t": 22.426, "q": [-0.31291162967681885, -0.013178599998354912, 0.011450070887804031, 0.6314802169799805, -0.3412829041481018, 0.00673938961699605, -0.3576953411102295, 0.0044144559651613235, -0.00042854066123254597, 0.6172994375228882, -0.3006260097026825, 0.00026036836788989604, 0.0041916631162166595, 0.047215867787599564, -0.05772452428936958, -2.8149266242980957, 0.6107880473136902, 0.21843647956848145, 1.1007391214370728, 0.16775518655776978, 0.3665255308151245, -0.20191022753715515, -2.966287612915039, -0.5638817548751831, -0.11563578993082047, 1.2735157012939453, -0.16616128385066986, 0.2689979076385498, 0.10965566337108612]} +{"t": 22.443, "q": [-0.3129372000694275, -0.013263821601867676, 0.011476854793727398, 0.6315057873725891, -0.34129101037979126, 0.00675386656075716, -0.3576953411102295, 0.004329234827309847, -0.00040175687172450125, 0.6172738671302795, -0.3006344437599182, 0.000289404095383361, 0.0041916631162166595, 0.047208260744810104, -0.05771937221288681, -2.8149027824401855, 0.6109318137168884, 0.2184005230665207, 1.1007391214370728, 0.16773121058940887, 0.36656150221824646, -0.20193418860435486, -2.966275453567505, -0.5645289421081543, -0.11564777046442032, 1.2735036611557007, -0.16608937084674835, 0.26903387904167175, 0.11146527528762817]} +{"t": 22.4597, "q": [-0.31296277046203613, -0.013331998139619827, 0.011557205580174923, 0.6314972639083862, -0.3412990868091583, 0.0067683253437280655, -0.35771238803863525, 0.004269579891115427, -0.00033479739795438945, 0.6172312498092651, -0.3006386458873749, 0.00029667862690985203, 0.0041916631162166595, 0.047208260744810104, -0.05771937221288681, -2.814818859100342, 0.6109318137168884, 0.2184244841337204, 1.1007630825042725, 0.16775518655776978, 0.36658546328544617, -0.2019461840391159, -2.966179609298706, -0.5652479529380798, -0.11567173898220062, 1.2735157012939453, -0.1660534292459488, 0.26908180117607117, 0.11237607896327972]} +{"t": 22.4765, "q": [-0.3129883408546448, -0.013340519741177559, 0.011664341203868389, 0.6314887404441833, -0.34130313992500305, 0.006775554735213518, -0.35771238803863525, 0.004201402887701988, -0.00026783792418427765, 0.6172227263450623, -0.3006387948989868, 0.0003256518393754959, 0.004151487722992897, 0.047208260744810104, -0.05771937221288681, -2.814854860305786, 0.610883891582489, 0.2184005230665207, 1.100715160369873, 0.16771923005580902, 0.36658546328544617, -0.20198212563991547, -2.966179609298706, -0.5661707520484924, -0.11567173898220062, 1.273539662361145, -0.1661013662815094, 0.26912975311279297, 0.11296330392360687]} +{"t": 22.4932, "q": [-0.3130309283733368, -0.013391653075814247, 0.011704516597092152, 0.6314972639083862, -0.3413112461566925, 0.0067900135181844234, -0.35772091150283813, 0.0041673146188259125, -0.0002544460294302553, 0.6171801090240479, -0.3006513714790344, 0.0003474935656413436, 0.004151487722992897, 0.047208260744810104, -0.05771937221288681, -2.814830780029297, 0.61080002784729, 0.21838854253292084, 1.100715160369873, 0.16773121058940887, 0.366597443819046, -0.20198212563991547, -2.9661436080932617, -0.5662546157836914, -0.11569570749998093, 1.2735636234283447, -0.16599349677562714, 0.2692016661167145, 0.11338275671005249]} +{"t": 22.51, "q": [-0.3130394518375397, -0.01340869627892971, 0.011691125109791756, 0.6315057873725891, -0.34131932258605957, 0.006804490461945534, -0.35771238803863525, 0.0041673146188259125, -0.0002544460294302553, 0.6171545386314392, -0.3006472587585449, 0.0003547056403476745, 0.004151487722992897, 0.04720822721719742, -0.057699475437402725, -2.814818859100342, 0.6107280850410461, 0.2184005230665207, 1.100715160369873, 0.16770724952220917, 0.366597443819046, -0.2019941210746765, -2.9662275314331055, -0.5660389065742493, -0.11568372696638107, 1.2735636234283447, -0.16595755517482758, 0.26926156878471375, 0.11362244188785553]} +{"t": 22.5267, "q": [-0.3130309283733368, -0.013425741344690323, 0.011704516597092152, 0.6314887404441833, -0.34131932258605957, 0.006804490461945534, -0.3577038645744324, 0.004150270018726587, -0.0002544460294302553, 0.6171545386314392, -0.30063897371292114, 0.0003546431544236839, 0.004138095770031214, 0.047170232981443405, -0.05769358202815056, -2.8148787021636963, 0.6106202602386475, 0.21838854253292084, 1.1007750034332275, 0.16768327355384827, 0.36658546328544617, -0.2019941210746765, -2.966155767440796, -0.5654277205467224, -0.11569570749998093, 1.2735636234283447, -0.16589762270450592, 0.26933348178863525, 0.11380220204591751]} +{"t": 22.5436, "q": [-0.3130650222301483, -0.013425741344690323, 0.011691125109791756, 0.6315057873725891, -0.34131526947021484, 0.006797242909669876, -0.35771238803863525, 0.0041587925516068935, -0.0002812298189383, 0.6171289682388306, -0.300655722618103, 0.000383741338737309, 0.004151487722992897, 0.04709423705935478, -0.05768178775906563, -2.8148908615112305, 0.6105003952980042, 0.2184244841337204, 1.1007750034332275, 0.1676473319530487, 0.366597443819046, -0.20200610160827637, -2.9661197662353516, -0.5646128058433533, -0.11570769548416138, 1.2736115455627441, -0.1658257246017456, 0.2693933844566345, 0.11379022151231766]} +{"t": 22.5603, "q": [-0.3130820691585541, -0.013400174677371979, 0.011664341203868389, 0.6314972639083862, -0.34132349491119385, 0.006782629992812872, -0.3577038645744324, 0.0041587925516068935, -0.00033479739795438945, 0.6171033978462219, -0.3006598949432373, 0.0003910158702638, 0.004151487722992897, 0.04699547961354256, -0.057684365659952164, -2.8148787021636963, 0.6104524731636047, 0.2184484601020813, 1.1007630825042725, 0.16756343841552734, 0.3666573762893677, -0.20203006267547607, -2.966191530227661, -0.5637739300727844, -0.11570769548416138, 1.2737194299697876, -0.16576580703258514, 0.2694533169269562, 0.11377823352813721]} +{"t": 22.577, "q": [-0.31309059262275696, -0.013383129611611366, 0.011664341203868389, 0.6314972639083862, -0.3413194715976715, 0.006775400601327419, -0.3576868176460266, 0.0041673146188259125, -0.00033479739795438945, 0.6170863509178162, -0.3006598949432373, 0.0003910158702638, 0.004218447022140026, 0.046858686953783035, -0.05766114592552185, -2.814854860305786, 0.6104404926300049, 0.2184244841337204, 1.1007510423660278, 0.1675993949174881, 0.3667052984237671, -0.20203006267547607, -2.9661078453063965, -0.5627672076225281, -0.11574364453554153, 1.2736834287643433, -0.16563397645950317, 0.269501268863678, 0.1134546622633934]} +{"t": 22.5938, "q": [-0.3131246864795685, -0.013417219743132591, 0.011650948785245419, 0.6314887404441833, -0.34132757782936096, 0.00678987754508853, -0.35771238803863525, 0.0041587925516068935, -0.00033479739795438945, 0.6170778274536133, -0.3006722033023834, 0.0003693797334562987, 0.0042854067869484425, 0.04667627811431885, -0.05761692672967911, -2.814854860305786, 0.6104045510292053, 0.21843647956848145, 1.1008349657058716, 0.1675993949174881, 0.3667532503604889, -0.20203006267547607, -2.9660956859588623, -0.5615448355674744, -0.11581555008888245, 1.273695468902588, -0.16553810238838196, 0.26960912346839905, 0.11281949281692505]} +{"t": 22.6105, "q": [-0.31318435072898865, -0.01340869627892971, 0.011650948785245419, 0.631514310836792, -0.34131526947021484, 0.006797242909669876, -0.35771238803863525, 0.0041673146188259125, -0.0003481892927084118, 0.6170693039894104, -0.3006640076637268, 0.0003838038246612996, 0.0042854067869484425, 0.046531811356544495, -0.05754875764250755, -2.8147709369659424, 0.610284686088562, 0.218472421169281, 1.1008349657058716, 0.1675754189491272, 0.36686110496520996, -0.20201808214187622, -2.9660956859588623, -0.5600348114967346, -0.11586348712444305, 1.2737194299697876, -0.16551414132118225, 0.2697888910770416, 0.11181282252073288]} +{"t": 22.6273, "q": [-0.31319287419319153, -0.013417219743132591, 0.011624165810644627, 0.631514310836792, -0.34132349491119385, 0.006782629992812872, -0.3576868176460266, 0.0041673146188259125, -0.00033479739795438945, 0.6170608401298523, -0.3006640672683716, 0.00039829043089412153, 0.004338974133133888, 0.04633421078324318, -0.05750417336821556, -2.8146870136260986, 0.6100090742111206, 0.218472421169281, 1.1008589267730713, 0.16751550137996674, 0.36708879470825195, -0.20203006267547607, -2.9660837650299072, -0.5586686134338379, -0.11588745564222336, 1.2737194299697876, -0.1654302477836609, 0.2698967456817627, 0.11121360957622528]} +{"t": 22.6441, "q": [-0.31319287419319153, -0.013434262946248055, 0.011610773392021656, 0.631514310836792, -0.34132349491119385, 0.006782629992812872, -0.3576953411102295, 0.004133225884288549, -0.00033479739795438945, 0.6170437932014465, -0.3006681799888611, 0.0003910783852916211, 0.004392541944980621, 0.04615945741534233, -0.057494957000017166, -2.814603090286255, 0.6097813248634338, 0.21853235363960266, 1.1008949279785156, 0.16749152541160583, 0.3673524558544159, -0.20203006267547607, -2.9661436080932617, -0.5569189190864563, -0.11597134917974472, 1.2737433910369873, -0.1654542088508606, 0.270100474357605, 0.11057844758033752]} +{"t": 22.6608, "q": [-0.31319287419319153, -0.013451308012008667, 0.011637557297945023, 0.631514310836792, -0.34131932258605957, 0.006804490461945534, -0.35767829418182373, 0.004107659682631493, -0.00030801360844634473, 0.617009699344635, -0.3006640076637268, 0.0003838038246612996, 0.004298798739910126, 0.04599231481552124, -0.05749090015888214, -2.8145313262939453, 0.6095895767211914, 0.21862822771072388, 1.1008949279785156, 0.16739565134048462, 0.3674483299255371, -0.20203006267547607, -2.9661197662353516, -0.5548816323280334, -0.11605523526668549, 1.2737553119659424, -0.16544222831726074, 0.2703761160373688, 0.1101110652089119]} +{"t": 22.6777, "q": [-0.3132099211215973, -0.013451308012008667, 0.011650948785245419, 0.6315228343009949, -0.341335654258728, 0.006804336328059435, -0.3576953411102295, 0.004099137615412474, -0.0002812298189383, 0.6169926524162292, -0.3006640672683716, 0.00039829043089412153, 0.0041916631162166595, 0.04592388868331909, -0.057464368641376495, -2.8144593238830566, 0.6094218492507935, 0.21873608231544495, 1.1009308099746704, 0.1672518402338028, 0.3674962520599365, -0.20200610160827637, -2.965928077697754, -0.5526165962219238, -0.11606722325086594, 1.2738512754440308, -0.16546620428562164, 0.27075961232185364, 0.10973954945802689]} +{"t": 22.6944, "q": [-0.31323546171188354, -0.013476874679327011, 0.011717909015715122, 0.6315313577651978, -0.341327428817749, 0.006818949244916439, -0.357729434967041, 0.004022438544780016, -0.0002544460294302553, 0.6169756054878235, -0.30065587162971497, 0.0004127324791625142, 0.004097919911146164, 0.045916251838207245, -0.05743931233882904, -2.814399480819702, 0.6092540621757507, 0.21880798041820526, 1.1009668111801147, 0.16723985970020294, 0.36750826239585876, -0.20200610160827637, -2.965820074081421, -0.5503275990486145, -0.11613912880420685, 1.2739231586456299, -0.16544222831726074, 0.27115508913993835, 0.10945192724466324]} +{"t": 22.7111, "q": [-0.31326955556869507, -0.013485396280884743, 0.011717909015715122, 0.6315313577651978, -0.34133148193359375, 0.006826178636401892, -0.3577464818954468, 0.004022438544780016, -0.00022766222537029535, 0.6169159412384033, -0.3006642460823059, 0.00042729967390187085, 0.004057744517922401, 0.045893434435129166, -0.05742383748292923, -2.814375400543213, 0.608942449092865, 0.21891583502292633, 1.1009668111801147, 0.16721589863300323, 0.3675202429294586, -0.20200610160827637, -2.965736150741577, -0.5479786992073059, -0.116175077855587, 1.2739590406417847, -0.1654302477836609, 0.27143073081970215, 0.10929613560438156]} +{"t": 22.728, "q": [-0.3133036494255066, -0.013545051217079163, 0.011717909015715122, 0.6315228343009949, -0.3413355052471161, 0.006833408027887344, -0.35775500535964966, 0.003996872343122959, -0.00022766222537029535, 0.6168988943099976, -0.30068081617355347, 0.0004274067177902907, 0.003990784753113985, 0.045885827392339706, -0.05741868168115616, -2.814399480819702, 0.6085948944091797, 0.2190716415643692, 1.100942850112915, 0.16713200509548187, 0.36760413646698, -0.20200610160827637, -2.9657483100891113, -0.5459653735160828, -0.11621103435754776, 1.2740070819854736, -0.1654062718153, 0.2715745270252228, 0.10924819856882095]} +{"t": 22.7448, "q": [-0.31328660249710083, -0.013553572818636894, 0.011731300503015518, 0.6315398812294006, -0.3413355052471161, 0.006833408027887344, -0.357729434967041, 0.003971305675804615, -0.0002544460294302553, 0.6169244647026062, -0.3006891906261444, 0.00044195580994710326, 0.004017568659037352, 0.04587822034955025, -0.05741351842880249, -2.814363479614258, 0.6082353591918945, 0.21910758316516876, 1.100942850112915, 0.16708406805992126, 0.3676520586013794, -0.20198212563991547, -2.965736150741577, -0.5438801050186157, -0.11625897139310837, 1.2741029262542725, -0.16539429128170013, 0.27177825570106506, 0.1092122420668602]} +{"t": 22.7615, "q": [-0.31328660249710083, -0.013553572818636894, 0.011717909015715122, 0.6315398812294006, -0.3413355052471161, 0.006833408027887344, -0.35775500535964966, 0.003954261541366577, -0.0002410541201243177, 0.6169244647026062, -0.3006850779056549, 0.0004491858126129955, 0.004057744517922401, 0.04586300998926163, -0.05740320309996605, -2.814387321472168, 0.6080915927886963, 0.21922743320465088, 1.1009668111801147, 0.1670481115579605, 0.3676760196685791, -0.20195816457271576, -2.9656882286071777, -0.541914701461792, -0.11636682599782944, 1.2740908861160278, -0.16537033021450043, 0.272041916847229, 0.10905645042657852]} +{"t": 22.7784, "q": [-0.3132951259613037, -0.013545051217079163, 0.011717909015715122, 0.6315228343009949, -0.3413355052471161, 0.006833408027887344, -0.3577464818954468, 0.003945739474147558, -0.0002410541201243177, 0.6168903708457947, -0.30068516731262207, 0.00046367241884581745, 0.004030960611999035, 0.04586300998926163, -0.05740320309996605, -2.8143393993377686, 0.6080196499824524, 0.2192993313074112, 1.1009668111801147, 0.1669522374868393, 0.3676760196685791, -0.2019461840391159, -2.965736150741577, -0.5403207540512085, -0.11636682599782944, 1.2741268873214722, -0.16538231074810028, 0.272413432598114, 0.1089126393198967]} +{"t": 22.7951, "q": [-0.3133121728897095, -0.013570617884397507, 0.011704516597092152, 0.6315398812294006, -0.3413355052471161, 0.006833408027887344, -0.3577805757522583, 0.003962783608585596, -0.00022766222537029535, 0.6168988943099976, -0.300693541765213, 0.0004782396135851741, 0.0039506093598902225, 0.045832619071006775, -0.057402465492486954, -2.814291477203369, 0.6079357862472534, 0.2193952053785324, 1.100942850112915, 0.16685636341571808, 0.36775991320610046, -0.20193418860435486, -2.965700149536133, -0.5389545559883118, -0.11637881398200989, 1.2741148471832275, -0.16537033021450043, 0.2727969288825989, 0.10875684767961502]} +{"t": 22.8118, "q": [-0.3133036494255066, -0.013553572818636894, 0.011731300503015518, 0.6315057873725891, -0.3413437306880951, 0.00681879511103034, -0.35779762268066406, 0.003937217406928539, -0.00020087843586225063, 0.6169074177742004, -0.3007018268108368, 0.0004783020995091647, 0.003977392800152302, 0.045855406671762466, -0.05739804729819298, -2.814291477203369, 0.6078638434410095, 0.21946711838245392, 1.1009068489074707, 0.16682042181491852, 0.3678198456764221, -0.20193418860435486, -2.9656283855438232, -0.5378280878067017, -0.11639079451560974, 1.2740789651870728, -0.16533437371253967, 0.2731204926967621, 0.10857708007097244]} +{"t": 22.8287, "q": [-0.31332069635391235, -0.013545051217079163, 0.011731300503015518, 0.631514310836792, -0.3413355052471161, 0.006833408027887344, -0.3577890992164612, 0.003954261541366577, -0.00021427033061627299, 0.6168988943099976, -0.30071017146110535, 0.0004928511916659772, 0.003923825453966856, 0.04586297646164894, -0.057383306324481964, -2.814255714416504, 0.6078638434410095, 0.2196948230266571, 1.1009787321090698, 0.16684438288211823, 0.3679277002811432, -0.20188625156879425, -2.965616464614868, -0.5370011329650879, -0.11635484546422958, 1.2741148471832275, -0.16533437371253967, 0.27337217330932617, 0.10843326896429062]} +{"t": 22.8454, "q": [-0.313346266746521, -0.013553572818636894, 0.011744692921638489, 0.6315313577651978, -0.3413355052471161, 0.006833408027887344, -0.35779762268066406, 0.003945739474147558, -0.00021427033061627299, 0.6168988943099976, -0.3007102608680725, 0.0005073377978987992, 0.003977392800152302, 0.04585536941885948, -0.05737815052270889, -2.8142077922821045, 0.6077919602394104, 0.2196708470582962, 1.1010746955871582, 0.16678446531295776, 0.3680235743522644, -0.20186229050159454, -2.9655325412750244, -0.5364019274711609, -0.11640278249979019, 1.2741148471832275, -0.16532239317893982, 0.27362382411956787, 0.10825350880622864]} +{"t": 22.8621, "q": [-0.31332921981811523, -0.013545051217079163, 0.011731300503015518, 0.6315313577651978, -0.3413355052471161, 0.006833408027887344, -0.3577890992164612, 0.003962783608585596, -0.0002410541201243177, 0.6169074177742004, -0.3007226586341858, 0.0005001702811568975, 0.0039506093598902225, 0.04584776237607002, -0.05737299099564552, -2.8140158653259277, 0.6077560186386108, 0.21973076462745667, 1.1010746955871582, 0.1667724847793579, 0.3682512640953064, -0.2018503099679947, -2.9654605388641357, -0.5360663533210754, -0.11639079451560974, 1.2741987705230713, -0.16534635424613953, 0.2739953398704529, 0.10792993009090424]} +{"t": 22.8789, "q": [-0.3133121728897095, -0.013553572818636894, 0.011731300503015518, 0.6315398812294006, -0.3413355052471161, 0.006833408027887344, -0.35779762268066406, 0.003971305675804615, -0.0002410541201243177, 0.6168988943099976, -0.30071428418159485, 0.00048562121810391545, 0.003937217406928539, 0.04580973461270332, -0.05734719708561897, -2.813944101333618, 0.607600212097168, 0.21982663869857788, 1.1011345386505127, 0.16666461527347565, 0.36840707063674927, -0.2018263339996338, -2.965161085128784, -0.5357068777084351, -0.1164507195353508, 1.2743545770645142, -0.1652504801750183, 0.2745586037635803, 0.10723485052585602]} +{"t": 22.8956, "q": [-0.31332921981811523, -0.013545051217079163, 0.011731300503015518, 0.6315398812294006, -0.3413355052471161, 0.006833408027887344, -0.3577890992164612, 0.003971305675804615, -0.00021427033061627299, 0.6168988943099976, -0.3006977140903473, 0.0004855141742154956, 0.003910433501005173, 0.04580209404230118, -0.05732214078307152, -2.8138961791992188, 0.6075283288955688, 0.21991053223609924, 1.101182460784912, 0.16671255230903625, 0.36858683824539185, -0.20180237293243408, -2.964801549911499, -0.53533536195755, -0.1164746880531311, 1.2743905782699585, -0.1652265191078186, 0.2751697897911072, 0.10620420426130295]} +{"t": 22.9124, "q": [-0.31332921981811523, -0.013545051217079163, 0.011744692921638489, 0.6315398812294006, -0.3413355052471161, 0.006833408027887344, -0.3577890992164612, 0.003971305675804615, -0.00021427033061627299, 0.6169074177742004, -0.30071017146110535, 0.0004928511916659772, 0.003923825453966856, 0.04579445719718933, -0.05729708820581436, -2.8137521743774414, 0.6073605418205261, 0.22007831931114197, 1.1012065410614014, 0.16673652827739716, 0.36883848905563354, -0.20175443589687347, -2.96435809135437, -0.5350357294082642, -0.1164746880531311, 1.2744024991989136, -0.16523849964141846, 0.27580496668815613, 0.10470617562532425]} +{"t": 22.9291, "q": [-0.31332069635391235, -0.013545051217079163, 0.011744692921638489, 0.6315313577651978, -0.34133148193359375, 0.006826178636401892, -0.3577805757522583, 0.003979827743023634, -0.00021427033061627299, 0.6169074177742004, -0.30070188641548157, 0.0004927887348458171, 0.003923825453966856, 0.04579445719718933, -0.05729708820581436, -2.8136444091796875, 0.6071927547454834, 0.2200183868408203, 1.1012184619903564, 0.16668859124183655, 0.3689942955970764, -0.20169450342655182, -2.964022397994995, -0.534676194190979, -0.11653460562229156, 1.2744024991989136, -0.16521452367305756, 0.27645209431648254, 0.10325608402490616]} +{"t": 22.9458, "q": [-0.31332921981811523, -0.013545051217079163, 0.011744692921638489, 0.6315398812294006, -0.34133148193359375, 0.006826178636401892, -0.35779762268066406, 0.003971305675804615, -0.00021427033061627299, 0.6169244647026062, -0.3007144331932068, 0.0005146123585291207, 0.003923825453966856, 0.04580964893102646, -0.05729745700955391, -2.8135366439819336, 0.6070848703384399, 0.22015021741390228, 1.1012663841247559, 0.16668859124183655, 0.369174063205719, -0.2015746682882309, -2.9638068675994873, -0.5343406796455383, -0.11654659360647202, 1.2744864225387573, -0.16514262557029724, 0.2772071063518524, 0.10166218131780624]} +{"t": 22.9626, "q": [-0.31336331367492676, -0.013536527752876282, 0.011744692921638489, 0.6315228343009949, -0.3413437306880951, 0.00681879511103034, -0.35780614614486694, 0.003971305675804615, -0.00022766222537029535, 0.6169159412384033, -0.3007144331932068, 0.0005146123585291207, 0.003923825453966856, 0.0458020456135273, -0.05729229748249054, -2.813464641571045, 0.6069890260696411, 0.2202221304178238, 1.1013023853302002, 0.1666766107082367, 0.3692459762096405, -0.20141887664794922, -2.96366286277771, -0.5340290665626526, -0.11663047969341278, 1.2745462656021118, -0.1651066690683365, 0.2780579924583435, 0.09946907311677933]} +{"t": 22.9793, "q": [-0.3133888840675354, -0.013545051217079163, 0.011731300503015518, 0.6315398812294006, -0.3413355052471161, 0.006833408027887344, -0.35784024000167847, 0.003979827743023634, -0.00022766222537029535, 0.6168988943099976, -0.3007226586341858, 0.0005001702811568975, 0.003910433501005173, 0.0458020456135273, -0.05729229748249054, -2.813356876373291, 0.606773316860199, 0.2202221304178238, 1.1012784242630005, 0.1666766107082367, 0.36930587887763977, -0.20133498311042786, -2.963555097579956, -0.5337533950805664, -0.11661849915981293, 1.2746182680130005, -0.16514262557029724, 0.27884894609451294, 0.09622134268283844]} +{"t": 22.996, "q": [-0.31340593099594116, -0.013536527752876282, 0.011704516597092152, 0.6315313577651978, -0.34133148193359375, 0.006826178636401892, -0.3578657805919647, 0.003988349810242653, -0.00022766222537029535, 0.6169074177742004, -0.3007350265979767, 0.0004930207505822182, 0.003910433501005173, 0.04578683152794838, -0.0572819821536541, -2.813344717025757, 0.6064976453781128, 0.22023411095142365, 1.1013023853302002, 0.16668859124183655, 0.369401752948761, -0.20126308500766754, -2.9635071754455566, -0.5334897637367249, -0.11666643619537354, 1.2748578786849976, -0.16509468853473663, 0.27931633591651917, 0.0932612419128418]} +{"t": 23.0128, "q": [-0.3134314715862274, -0.013553572818636894, 0.011717909015715122, 0.6315313577651978, -0.3413437306880951, 0.00681879511103034, -0.3578828275203705, 0.003979827743023634, -0.00022766222537029535, 0.6168988943099976, -0.3007309138774872, 0.0005002327961847186, 0.0038970415480434895, 0.045779190957546234, -0.057256925851106644, -2.8132729530334473, 0.6062340140342712, 0.22030600905418396, 1.1013143062591553, 0.16668859124183655, 0.36938977241516113, -0.20116721093654633, -2.9635071754455566, -0.5331182479858398, -0.11669040471315384, 1.2748818397521973, -0.16511864960193634, 0.2795560359954834, 0.09069661796092987]} +{"t": 23.0295, "q": [-0.3134485185146332, -0.013553572818636894, 0.011731300503015518, 0.6315398812294006, -0.3413355052471161, 0.006833408027887344, -0.3578828275203705, 0.003971305675804615, -0.0002410541201243177, 0.6168818473815918, -0.30073919892311096, 0.0005002953112125397, 0.003910433501005173, 0.045763980597257614, -0.057246606796979904, -2.813261032104492, 0.6058864593505859, 0.2203179895877838, 1.1013143062591553, 0.16668859124183655, 0.3693777918815613, -0.20098744332790375, -2.9636149406433105, -0.5327826738357544, -0.11678627133369446, 1.2748339176177979, -0.16508270800113678, 0.2797597646713257, 0.08817993104457855]} +{"t": 23.0464, "q": [-0.31346556544303894, -0.01352800615131855, 0.011704516597092152, 0.6315313577651978, -0.3413437306880951, 0.00681879511103034, -0.35793396830558777, 0.003988349810242653, -0.0002410541201243177, 0.6168733239173889, -0.3007434010505676, 0.0005075879162177444, 0.003910433501005173, 0.045763980597257614, -0.057246606796979904, -2.8132128715515137, 0.6055149435997009, 0.22035394608974457, 1.101338267326355, 0.16659271717071533, 0.3694257140159607, -0.20075973868370056, -2.963675022125244, -0.5324112176895142, -0.11683420836925507, 1.2748578786849976, -0.16514262557029724, 0.279927521944046, 0.08644221723079681]} +{"t": 23.0633, "q": [-0.3134740889072418, -0.01352800615131855, 0.011744692921638489, 0.6315313577651978, -0.3413395583629608, 0.006840637419372797, -0.3579595386981964, 0.003971305675804615, -0.00021427033061627299, 0.6168903708457947, -0.3007434010505676, 0.0005075879162177444, 0.003910433501005173, 0.04575641080737114, -0.05726134777069092, -2.8132009506225586, 0.6051074862480164, 0.22044982016086578, 1.1013023853302002, 0.16655676066875458, 0.36946168541908264, -0.20054402947425842, -2.96366286277771, -0.5321115851402283, -0.11681023985147476, 1.2747859954833984, -0.16514262557029724, 0.28007134795188904, 0.08470450341701508]} +{"t": 23.0801, "q": [-0.3134740889072418, -0.01352800615131855, 0.011744692921638489, 0.6315313577651978, -0.3413477838039398, 0.006826024502515793, -0.3579595386981964, 0.003971305675804615, -0.00021427033061627299, 0.6168903708457947, -0.3007434010505676, 0.0005075879162177444, 0.0038702578749507666, 0.04575641080737114, -0.05726134777069092, -2.8132009506225586, 0.6046640872955322, 0.22047379612922668, 1.1012544631958008, 0.16655676066875458, 0.3694736659526825, -0.20036426186561584, -2.9636988639831543, -0.5317400693893433, -0.11681023985147476, 1.2748339176177979, -0.16514262557029724, 0.28009530901908875, 0.08323044329881668]} +{"t": 23.0968, "q": [-0.31349965929985046, -0.013545051217079163, 0.011744692921638489, 0.6315228343009949, -0.3413477838039398, 0.006826024502515793, -0.3580106794834137, 0.003971305675804615, -0.00020087843586225063, 0.616864800453186, -0.30075594782829285, 0.0005294115981087089, 0.0037899063900113106, 0.04577158764004707, -0.057251766324043274, -2.813129186630249, 0.6041008234024048, 0.22044982016086578, 1.101338267326355, 0.16653279960155487, 0.3694976270198822, -0.20023243129253387, -2.9637107849121094, -0.5313805341720581, -0.1167742908000946, 1.2748099565505981, -0.165178582072258, 0.28011927008628845, 0.08203202486038208]} +{"t": 23.1136, "q": [-0.31349965929985046, -0.013545051217079163, 0.011744692921638489, 0.6314972639083862, -0.3413477838039398, 0.006826024502515793, -0.3580106794834137, 0.003971305675804615, -0.00021427033061627299, 0.616864800453186, -0.30074766278266907, 0.0005293490830808878, 0.0037631227169185877, 0.045763980597257614, -0.057246606796979904, -2.813021183013916, 0.6034057140350342, 0.22046180069446564, 1.1012784242630005, 0.16649684309959412, 0.36948564648628235, -0.20006465911865234, -2.9637107849121094, -0.5309610962867737, -0.116726353764534, 1.2748219966888428, -0.165178582072258, 0.28011927008628845, 0.08107328414916992]} +{"t": 23.1304, "q": [-0.313533753156662, -0.013519484549760818, 0.011744692921638489, 0.6315313577651978, -0.3413477838039398, 0.006826024502515793, -0.3580532670021057, 0.003979827743023634, -0.00020087843586225063, 0.6168392300605774, -0.3007601201534271, 0.0005366861587390304, 0.0037229470908641815, 0.045763980597257614, -0.057246606796979904, -2.8129732608795166, 0.6025069355964661, 0.22046180069446564, 1.1013023853302002, 0.16652080416679382, 0.36946168541908264, -0.19996878504753113, -2.963675022125244, -0.5304577350616455, -0.11679825931787491, 1.2748219966888428, -0.1651306450366974, 0.2801552414894104, 0.08011454343795776]} +{"t": 23.1471, "q": [-0.31355080008506775, -0.013510962948203087, 0.011731300503015518, 0.6315313577651978, -0.3413477838039398, 0.006826024502515793, -0.3580617904663086, 0.003971305675804615, -0.00021427033061627299, 0.616864800453186, -0.3007601201534271, 0.0005366861587390304, 0.0037229470908641815, 0.04578679800033569, -0.05726208537817001, -2.812997341156006, 0.6014043688774109, 0.22043783962726593, 1.1012663841247559, 0.16649684309959412, 0.36946168541908264, -0.1998009979724884, -2.9637467861175537, -0.5298106074333191, -0.11681023985147476, 1.2748339176177979, -0.16511864960193634, 0.28019118309020996, 0.07832889258861542]} +{"t": 23.164, "q": [-0.3135678470134735, -0.013502439484000206, 0.011731300503015518, 0.6315228343009949, -0.3413477838039398, 0.006826024502515793, -0.3580617904663086, 0.003971305675804615, -0.00021427033061627299, 0.6168477535247803, -0.3007601201534271, 0.0005366861587390304, 0.0037899063900113106, 0.045779190957546234, -0.057256925851106644, -2.813009262084961, 0.6000381708145142, 0.22044982016086578, 1.1012065410614014, 0.16646088659763336, 0.36946168541908264, -0.19969314336776733, -2.9637467861175537, -0.5290795564651489, -0.1167742908000946, 1.2748339176177979, -0.16509468853473663, 0.28021514415740967, 0.07558450847864151]} +{"t": 23.1807, "q": [-0.3135848939418793, -0.013510962948203087, 0.011717909015715122, 0.6315398812294006, -0.3413477838039398, 0.006826024502515793, -0.3580532670021057, 0.003979827743023634, -0.00022766222537029535, 0.6168477535247803, -0.3007643222808838, 0.000543960661161691, 0.0037899063900113106, 0.04577922448515892, -0.05727682262659073, -2.8130571842193604, 0.5984203219413757, 0.22038990259170532, 1.1011345386505127, 0.16647286713123322, 0.3692938983440399, -0.19958528876304626, -2.963794708251953, -0.5281088352203369, -0.11679825931787491, 1.274798035621643, -0.1651546061038971, 0.2802271246910095, 0.07331948727369308]} +{"t": 23.1974, "q": [-0.3135678470134735, -0.013510962948203087, 0.011744692921638489, 0.6315313577651978, -0.3413477838039398, 0.006826024502515793, -0.35807883739471436, 0.003971305675804615, -0.00021427033061627299, 0.6168477535247803, -0.3007601201534271, 0.0005366861587390304, 0.0037899063900113106, 0.04576403275132179, -0.05727645382285118, -2.8130931854248047, 0.5967544913291931, 0.22043783962726593, 1.1011465787887573, 0.16653279960155487, 0.3692938983440399, -0.1995013952255249, -2.963794708251953, -0.5270183086395264, -0.1167742908000946, 1.2747859954833984, -0.1651066690683365, 0.28023913502693176, 0.07179749011993408]} +{"t": 23.2143, "q": [-0.3135678470134735, -0.013510962948203087, 0.011744692921638489, 0.6315484046936035, -0.3413477838039398, 0.006826024502515793, -0.3580703139305115, 0.003954261541366577, -0.00021427033061627299, 0.6168562769889832, -0.3007601201534271, 0.0005366861587390304, 0.003776514669880271, 0.04577160254120827, -0.05726171284914017, -2.813129186630249, 0.5953164100646973, 0.22030600905418396, 1.1010746955871582, 0.16649684309959412, 0.36930587887763977, -0.1994294971227646, -2.963758707046509, -0.5257599353790283, -0.1167503222823143, 1.2747859954833984, -0.16511864960193634, 0.2803110182285309, 0.07017962634563446]} +{"t": 23.231, "q": [-0.3135678470134735, -0.01352800615131855, 0.011744692921638489, 0.6315228343009949, -0.3413477838039398, 0.006826024502515793, -0.3580617904663086, 0.003962783608585596, -0.00021427033061627299, 0.616864800453186, -0.3007601201534271, 0.0005366861587390304, 0.003816690295934677, 0.04577162116765976, -0.05727166309952736, -2.8132009506225586, 0.5942497849464417, 0.2202460914850235, 1.1010746955871582, 0.16656874120235443, 0.3693178594112396, -0.19936956465244293, -2.9637229442596436, -0.5244296789169312, -0.11678627133369446, 1.2747859954833984, -0.16514262557029724, 0.28032299876213074, 0.06796254217624664]} +{"t": 23.2477, "q": [-0.31355932354927063, -0.013510962948203087, 0.011731300503015518, 0.6315398812294006, -0.3413395583629608, 0.006840637419372797, -0.3580617904663086, 0.003962783608585596, -0.00022766222537029535, 0.616864800453186, -0.3007601201534271, 0.0005366861587390304, 0.0038568659219890833, 0.04578683152794838, -0.0572819821536541, -2.813248872756958, 0.5925360321998596, 0.2202700525522232, 1.1010746955871582, 0.16652080416679382, 0.3693658113479614, -0.19932162761688232, -2.963794708251953, -0.5228118300437927, -0.11682222783565521, 1.2747620344161987, -0.16511864960193634, 0.280335009098053, 0.0659252256155014]} +{"t": 23.2645, "q": [-0.31354227662086487, -0.013519484549760818, 0.011731300503015518, 0.6315313577651978, -0.3413355052471161, 0.006833408027887344, -0.3580617904663086, 0.003954261541366577, -0.00021427033061627299, 0.6168733239173889, -0.30075603723526, 0.0005438982043415308, 0.003910433501005173, 0.04579443484544754, -0.05728713795542717, -2.813248872756958, 0.5904628038406372, 0.22032998502254486, 1.1010746955871582, 0.16656874120235443, 0.3694257140159607, -0.19929766654968262, -2.963782787322998, -0.521301805973053, -0.11683420836925507, 1.2748099565505981, -0.16511864960193634, 0.28034698963165283, 0.06479870527982712]} +{"t": 23.2812, "q": [-0.31355932354927063, -0.013502439484000206, 0.011650948785245419, 0.6315313577651978, -0.3413437306880951, 0.00681879511103034, -0.35802772641181946, 0.003971305675804615, -0.0002544460294302553, 0.6168903708457947, -0.30075183510780334, 0.0005366236437112093, 0.003923825453966856, 0.0458020456135273, -0.05729229748249054, -2.813236951828003, 0.5884134769439697, 0.22034196555614471, 1.1011345386505127, 0.16664065420627594, 0.3694257140159607, -0.1992017924785614, -2.963770866394043, -0.5196959376335144, -0.11688214540481567, 1.2748099565505981, -0.16511864960193634, 0.28034698963165283, 0.0638040155172348]} +{"t": 23.298, "q": [-0.31355080008506775, -0.013476874679327011, 0.011677732691168785, 0.6315398812294006, -0.341327428817749, 0.006818949244916439, -0.3580532670021057, 0.003979827743023634, -0.0002812298189383, 0.6168988943099976, -0.3007558584213257, 0.0005149249918758869, 0.003910433501005173, 0.04578683152794838, -0.0572819821536541, -2.813225030899048, 0.5868076086044312, 0.2202700525522232, 1.101098656654358, 0.1666766107082367, 0.3694497048854828, -0.19910591840744019, -2.963686943054199, -0.5180540680885315, -0.11683420836925507, 1.274798035621643, -0.165178582072258, 0.280335009098053, 0.0629051998257637]} +{"t": 23.3147, "q": [-0.31355080008506775, -0.013459829613566399, 0.011650948785245419, 0.6315398812294006, -0.341335654258728, 0.006804336328059435, -0.35807883739471436, 0.003971305675804615, -0.00026783792418427765, 0.6168903708457947, -0.300747811794281, 0.000558340223506093, 0.0039506093598902225, 0.04581722244620323, -0.057282719761133194, -2.813225030899048, 0.5856451392173767, 0.2202700525522232, 1.101098656654358, 0.1666526347398758, 0.36946168541908264, -0.19903400540351868, -2.9633634090423584, -0.5164601802825928, -0.11679825931787491, 1.2748099565505981, -0.1651546061038971, 0.28029903769493103, 0.06199439615011215]} +{"t": 23.3314, "q": [-0.31354227662086487, -0.013476874679327011, 0.011650948785245419, 0.6315484046936035, -0.341335654258728, 0.006804336328059435, -0.3580958843231201, 0.003971305675804615, -0.00026783792418427765, 0.6169159412384033, -0.3007475733757019, 0.0005148624768480659, 0.003964001312851906, 0.045824792236089706, -0.05726797878742218, -2.8132009506225586, 0.5846863985061646, 0.22023411095142365, 1.101098656654358, 0.16666461527347565, 0.36948564648628235, -0.19906996190547943, -2.963351249694824, -0.5149022340774536, -0.11682222783565521, 1.2748339176177979, -0.16521452367305756, 0.28029903769493103, 0.061167486011981964]} +{"t": 23.3483, "q": [-0.31354227662086487, -0.013459829613566399, 0.011664341203868389, 0.6315398812294006, -0.341335654258728, 0.006804336328059435, -0.35812145471572876, 0.003996872343122959, -0.0002946217136923224, 0.6169500350952148, -0.3007601201534271, 0.0005366861587390304, 0.003977392800152302, 0.04585518315434456, -0.057268716394901276, -2.813129186630249, 0.5838354825973511, 0.22025807201862335, 1.101170539855957, 0.16658073663711548, 0.3695215880870819, -0.19904600083827972, -2.9633753299713135, -0.5137158036231995, -0.11679825931787491, 1.2748459577560425, -0.16521452367305756, 0.28029903769493103, 0.060388509184122086]} +{"t": 23.365, "q": [-0.313533753156662, -0.013400174677371979, 0.011650948785245419, 0.6315313577651978, -0.341327428817749, 0.006818949244916439, -0.3581470251083374, 0.004022438544780016, -0.0002812298189383, 0.616941511631012, -0.3007558584213257, 0.0005149249918758869, 0.003910433501005173, 0.045862793922424316, -0.057273875921964645, -2.8130931854248047, 0.5833441615104675, 0.22028204798698425, 1.1011465787887573, 0.16666461527347565, 0.36953359842300415, -0.19904600083827972, -2.963351249694824, -0.5129128694534302, -0.1167742908000946, 1.2748099565505981, -0.16521452367305756, 0.2803110182285309, 0.05964548885822296]} +{"t": 23.3819, "q": [-0.31355932354927063, -0.013400174677371979, 0.011650948785245419, 0.6315228343009949, -0.341327428817749, 0.006818949244916439, -0.3581981658935547, 0.004099137615412474, -0.0002812298189383, 0.616941511631012, -0.3007599711418152, 0.0005077129462733865, 0.003923825453966856, 0.04587036371231079, -0.05725913867354393, -2.8130571842193604, 0.5831284523010254, 0.2202700525522232, 1.1011345386505127, 0.16661667823791504, 0.3694976270198822, -0.19904600083827972, -2.963339328765869, -0.5124214887619019, -0.11679825931787491, 1.2746901512145996, -0.1652265191078186, 0.28026309609413147, 0.0586627833545208]} +{"t": 23.3986, "q": [-0.31359341740608215, -0.013374608010053635, 0.011610773392021656, 0.631514310836792, -0.341327428817749, 0.006818949244916439, -0.3582322299480438, 0.004133225884288549, -0.0002946217136923224, 0.616941511631012, -0.3007763624191284, 0.00047884677769616246, 0.003923825453966856, 0.04589312896132469, -0.05724477022886276, -2.8130452632904053, 0.5832362771034241, 0.2203179895877838, 1.101170539855957, 0.16661667823791504, 0.3694736659526825, -0.19904600083827972, -2.9634592533111572, -0.5121458768844604, -0.11678627133369446, 1.2744864225387573, -0.16526246070861816, 0.2802750766277313, 0.05728459730744362]} +{"t": 23.4153, "q": [-0.31360191106796265, -0.013374608010053635, 0.011557205580174923, 0.631514310836792, -0.341335654258728, 0.006804336328059435, -0.3582322299480438, 0.004150270018726587, -0.00033479739795438945, 0.6169585585594177, -0.30082160234451294, 0.0004284694150555879, 0.0038568659219890833, 0.04590073972940445, -0.05724992975592613, -2.812997341156006, 0.5833681225776672, 0.22035394608974457, 1.1011465787887573, 0.166748508810997, 0.3695215880870819, -0.19902202486991882, -2.9636030197143555, -0.5119780898094177, -0.11678627133369446, 1.2743545770645142, -0.16523849964141846, 0.2802511155605316, 0.05543902516365051]} +{"t": 23.432, "q": [-0.3135763704776764, -0.013357564806938171, 0.011557205580174923, 0.631514310836792, -0.341327428817749, 0.006818949244916439, -0.3582407534122467, 0.0041673146188259125, -0.0003481892927084118, 0.6169585585594177, -0.3008872866630554, 0.0003275272611062974, 0.00388364982791245, 0.04591591656208038, -0.05724034830927849, -2.812997341156006, 0.5835239291191101, 0.22035394608974457, 1.1011345386505127, 0.1667245477437973, 0.36948564648628235, -0.19903400540351868, -2.963650941848755, -0.5117623805999756, -0.11678627133369446, 1.2742587327957153, -0.16526246070861816, 0.28023913502693176, 0.053653378039598465]} +{"t": 23.4488, "q": [-0.31355932354927063, -0.013357564806938171, 0.01158398948609829, 0.631514310836792, -0.341327428817749, 0.006818949244916439, -0.35822370648384094, 0.0041673146188259125, -0.0003481892927084118, 0.6169585585594177, -0.30091187357902527, 0.00028425492928363383, 0.0038568659219890833, 0.045900702476501465, -0.05723003298044205, -2.8129732608795166, 0.5835958123207092, 0.22048577666282654, 1.1011345386505127, 0.1667005717754364, 0.3694976270198822, -0.19906996190547943, -2.9637229442596436, -0.5115346908569336, -0.1167742908000946, 1.2741987705230713, -0.16526246070861816, 0.2802271246910095, 0.05253884196281433]} +{"t": 23.4655, "q": [-0.3136104345321655, -0.013357564806938171, 0.011543814092874527, 0.631514310836792, -0.3413437306880951, 0.00681879511103034, -0.35822370648384094, 0.0041673146188259125, -0.00036158118746243417, 0.6169500350952148, -0.3009076714515686, 0.0002769803977571428, 0.00388364982791245, 0.0459158830344677, -0.0572204515337944, -2.812901496887207, 0.5837995409965515, 0.22053371369838715, 1.101098656654358, 0.16673652827739716, 0.36948564648628235, -0.19904600083827972, -2.9636988639831543, -0.5113788843154907, -0.11673834174871445, 1.2741508483886719, -0.1652504801750183, 0.28019118309020996, 0.05185574293136597]} +{"t": 23.4822, "q": [-0.31360191106796265, -0.013366086408495903, 0.011530422605574131, 0.6315057873725891, -0.341327428817749, 0.006818949244916439, -0.35821521282196045, 0.0041673146188259125, -0.00036158118746243417, 0.616941511631012, -0.3009161353111267, 0.00030601609614677727, 0.0038568659219890833, 0.04593105986714363, -0.05721087381243706, -2.8127574920654297, 0.5841950178146362, 0.22046180069446564, 1.1011345386505127, 0.16671255230903625, 0.36946168541908264, -0.19903400540351868, -2.9636988639831543, -0.5123496055603027, -0.11676230281591415, 1.274055004119873, -0.16526246070861816, 0.28019118309020996, 0.051424309611320496]} +{"t": 23.499, "q": [-0.3136189579963684, -0.013366086408495903, 0.01159738190472126, 0.6314972639083862, -0.3413355052471161, 0.006833408027887344, -0.35822370648384094, 0.004175836686044931, -0.00033479739795438945, 0.6169500350952148, -0.3009328842163086, 0.00033513238304294646, 0.0038568659219890833, 0.04597659781575203, -0.05718213692307472, -2.812565803527832, 0.5847463011741638, 0.22046180069446564, 1.101098656654358, 0.166748508810997, 0.36946168541908264, -0.19902202486991882, -2.9637107849121094, -0.5133922100067139, -0.1167742908000946, 1.2740310430526733, -0.16529841721057892, 0.28019118309020996, 0.05113668739795685]} +{"t": 23.5157, "q": [-0.3136104345321655, -0.013374608010053635, 0.011650948785245419, 0.631514310836792, -0.3413437306880951, 0.00681879511103034, -0.3582322299480438, 0.0041673146188259125, -0.0003214055032003671, 0.616941511631012, -0.30095788836479187, 0.0003643111849669367, 0.0038300822488963604, 0.04603730887174606, -0.05714381858706474, -2.8123741149902344, 0.5852856040000916, 0.22050973773002625, 1.101110577583313, 0.1667005717754364, 0.36943772435188293, -0.19905798137187958, -2.9637229442596436, -0.5143749117851257, -0.1167742908000946, 1.2740070819854736, -0.16528643667697906, 0.28016722202301025, 0.05096891149878502]} +{"t": 23.5326, "q": [-0.31360191106796265, -0.013400174677371979, 0.011650948785245419, 0.6314972639083862, -0.3413355052471161, 0.006833408027887344, -0.3582322299480438, 0.0041673146188259125, -0.00030801360844634473, 0.6169585585594177, -0.30097028613090515, 0.00035714366822503507, 0.0038300822488963604, 0.04608284309506416, -0.05711508169770241, -2.8122782707214355, 0.5858608484268188, 0.220545694231987, 1.1011345386505127, 0.1667005717754364, 0.3694497048854828, -0.19904600083827972, -2.963686943054199, -0.5151179432868958, -0.1167742908000946, 1.273935079574585, -0.1652504801750183, 0.28016722202301025, 0.0508730374276638]} +{"t": 23.5493, "q": [-0.31363600492477417, -0.013383129611611366, 0.011637557297945023, 0.6314887404441833, -0.3413437306880951, 0.00681879511103034, -0.35822370648384094, 0.0041673146188259125, -0.0003214055032003671, 0.6169585585594177, -0.30098700523376465, 0.00038624185253866017, 0.0038300822488963604, 0.046105626970529556, -0.057110659778118134, -2.812122344970703, 0.586220383644104, 0.2204977571964264, 1.1011465787887573, 0.166748508810997, 0.36943772435188293, -0.19903400540351868, -2.96366286277771, -0.5157411098480225, -0.11678627133369446, 1.2738871574401855, -0.1652744561433792, 0.2801552414894104, 0.05078914761543274]} +{"t": 23.5661, "q": [-0.31364452838897705, -0.013374608010053635, 0.011624165810644627, 0.6314972639083862, -0.3413437306880951, 0.00681879511103034, -0.3582407534122467, 0.0041587925516068935, -0.00033479739795438945, 0.6169670820236206, -0.3010076582431793, 0.0003791548078879714, 0.0038702578749507666, 0.04608284309506416, -0.05711508169770241, -2.81199049949646, 0.5864959955215454, 0.22047379612922668, 1.101110577583313, 0.1667005717754364, 0.3694497048854828, -0.19904600083827972, -2.9637107849121094, -0.5159088969230652, -0.11678627133369446, 1.2738752365112305, -0.1652744561433792, 0.2801552414894104, 0.050705257803201675]} +{"t": 23.5828, "q": [-0.31365305185317993, -0.013374608010053635, 0.01159738190472126, 0.6314972639083862, -0.3413437306880951, 0.00681879511103034, -0.3582322299480438, 0.0041673146188259125, -0.0003481892927084118, 0.6169500350952148, -0.3010076582431793, 0.0003791548078879714, 0.0038970415480434895, 0.04608284309506416, -0.05711508169770241, -2.8119547367095947, 0.5866637825965881, 0.2205217331647873, 1.101110577583313, 0.16666461527347565, 0.3694497048854828, -0.19905798137187958, -2.9636988639831543, -0.5157771110534668, -0.11676230281591415, 1.2738392353057861, -0.16521452367305756, 0.28016722202301025, 0.050585415214300156]} +{"t": 23.5995, "q": [-0.3136615753173828, -0.013383129611611366, 0.011610773392021656, 0.6315057873725891, -0.34133148193359375, 0.006826178636401892, -0.3582322299480438, 0.0041673146188259125, -0.00033479739795438945, 0.6169585585594177, -0.3010076582431793, 0.0003791548078879714, 0.00388364982791245, 0.04608284309506416, -0.05711508169770241, -2.8118107318878174, 0.586675763130188, 0.2205217331647873, 1.101098656654358, 0.16666461527347565, 0.3694497048854828, -0.19905798137187958, -2.9637229442596436, -0.5154415369033813, -0.11679825931787491, 1.273827314376831, -0.16516658663749695, 0.2801552414894104, 0.05042961984872818]} +{"t": 23.6164, "q": [-0.3136615753173828, -0.013383129611611366, 0.011610773392021656, 0.6314887404441833, -0.3413437306880951, 0.00681879511103034, -0.3582322299480438, 0.0041673146188259125, -0.00033479739795438945, 0.616941511631012, -0.3010530173778534, 0.00034328215406276286, 0.0038568659219890833, 0.04608284309506416, -0.05711508169770241, -2.8115711212158203, 0.5865678787231445, 0.2205696702003479, 1.1011345386505127, 0.16660469770431519, 0.3694497048854828, -0.19904600083827972, -2.9636988639831543, -0.5152737498283386, -0.1167742908000946, 1.2738033533096313, -0.1652265191078186, 0.2801552414894104, 0.0502498559653759]} +{"t": 23.6334, "q": [-0.31364452838897705, -0.013366086408495903, 0.011610773392021656, 0.6314972639083862, -0.341347873210907, 0.006811488885432482, -0.3582407534122467, 0.0041587925516068935, -0.0003214055032003671, 0.6169670820236206, -0.30106121301651, 0.000328858062857762, 0.0038568659219890833, 0.046090446412563324, -0.05712023749947548, -2.811439275741577, 0.5864241123199463, 0.2205696702003479, 1.101110577583313, 0.1666766107082367, 0.3694497048854828, -0.19906996190547943, -2.9637348651885986, -0.5151898860931396, -0.11678627133369446, 1.2738033533096313, -0.16519056260585785, 0.2801552414894104, 0.05010604485869408]} +{"t": 23.6501, "q": [-0.31365305185317993, -0.013374608010053635, 0.011610773392021656, 0.6314887404441833, -0.341347873210907, 0.006811488885432482, -0.3582407534122467, 0.0041587925516068935, -0.00033479739795438945, 0.6169500350952148, -0.3010653853416443, 0.000336132594384253, 0.0038568659219890833, 0.04608284309506416, -0.05711508169770241, -2.811211585998535, 0.586448073387146, 0.220545694231987, 1.101110577583313, 0.1666526347398758, 0.3694497048854828, -0.19905798137187958, -2.9637229442596436, -0.5149142146110535, -0.11671437323093414, 1.273779273033142, -0.165178582072258, 0.2801552414894104, 0.050034139305353165]} +{"t": 23.6668, "q": [-0.31364452838897705, -0.013374608010053635, 0.011610773392021656, 0.6314972639083862, -0.34134382009506226, 0.006804259493947029, -0.3582322299480438, 0.0041587925516068935, -0.00030801360844634473, 0.6169500350952148, -0.3010571002960205, 0.0003360701084602624, 0.00388364982791245, 0.04606766626238823, -0.05712465941905975, -2.8110318183898926, 0.5864360928535461, 0.22058165073394775, 1.1011345386505127, 0.16673652827739716, 0.36943772435188293, -0.19906996190547943, -2.9637229442596436, -0.5136678814888, -0.116726353764534, 1.2737913131713867, -0.1651546061038971, 0.28016722202301025, 0.049914296716451645]} +{"t": 23.6836, "q": [-0.3136615753173828, -0.013383129611611366, 0.01158398948609829, 0.6314972639083862, -0.3413519859313965, 0.006804182194173336, -0.3582407534122467, 0.004150270018726587, -0.0003214055032003671, 0.6169585585594177, -0.3010613024234772, 0.00034334463998675346, 0.00388364982791245, 0.04606766626238823, -0.05712465941905975, -2.8108160495758057, 0.5863881707191467, 0.2205936312675476, 1.1010507345199585, 0.1666286736726761, 0.36943772435188293, -0.19906996190547943, -2.9637107849121094, -0.5122177600860596, -0.1167503222823143, 1.2737913131713867, -0.16514262557029724, 0.28016722202301025, 0.04972255229949951]} +{"t": 23.7003, "q": [-0.31364452838897705, -0.013391653075814247, 0.01158398948609829, 0.6314972639083862, -0.3413437306880951, 0.00681879511103034, -0.3582322299480438, 0.004141747951507568, -0.00030801360844634473, 0.6169585585594177, -0.3010653853416443, 0.000336132594384253, 0.00388364982791245, 0.04607526957988739, -0.057129815220832825, -2.8106842041015625, 0.5863761305809021, 0.22060561180114746, 1.1010746955871582, 0.16668859124183655, 0.36943772435188293, -0.19908194243907928, -2.9637467861175537, -0.5106478333473206, -0.11673834174871445, 1.2737913131713867, -0.1651546061038971, 0.2801552414894104, 0.04954278841614723]} +{"t": 23.7171, "q": [-0.31365305185317993, -0.013400174677371979, 0.011624165810644627, 0.6314972639083862, -0.341347873210907, 0.006811488885432482, -0.35825780034065247, 0.0041161817498505116, -0.00026783792418427765, 0.616941511631012, -0.3010904788970947, 0.00037979797343723476, 0.00388364982791245, 0.04606766626238823, -0.05712465941905975, -2.8104686737060547, 0.5863641500473022, 0.22053371369838715, 1.101098656654358, 0.16668859124183655, 0.36943772435188293, -0.19906996190547943, -2.963758707046509, -0.509413480758667, -0.1167742908000946, 1.2738033533096313, -0.16514262557029724, 0.28016722202301025, 0.04942294582724571]} +{"t": 23.734, "q": [-0.31364452838897705, -0.01340869627892971, 0.011610773392021656, 0.6314887404441833, -0.34133976697921753, 0.0067970301024615765, -0.3582748472690582, 0.004107659682631493, -0.00026783792418427765, 0.6169329881668091, -0.30109885334968567, 0.00039434709469787776, 0.003816690295934677, 0.04606766626238823, -0.05712465941905975, -2.8103127479553223, 0.5863881707191467, 0.22060561180114746, 1.1010866165161133, 0.1666766107082367, 0.36941373348236084, -0.19910591840744019, -2.963675022125244, -0.5085625648498535, -0.116726353764534, 1.2738033533096313, -0.1651306450366974, 0.28014326095581055, 0.04933905601501465]} +{"t": 23.7507, "q": [-0.31364452838897705, -0.01340869627892971, 0.011610773392021656, 0.6314887404441833, -0.341347873210907, 0.006811488885432482, -0.3582833707332611, 0.004090615548193455, -0.00026783792418427765, 0.616941511631012, -0.30109065771102905, 0.00040877118590287864, 0.0038702578749507666, 0.04608287662267685, -0.05713497847318649, -2.810025215148926, 0.5864600539207458, 0.22058165073394775, 1.1010746955871582, 0.16671255230903625, 0.3693777918815613, -0.19908194243907928, -2.9636988639831543, -0.5079873204231262, -0.11671437323093414, 1.2737913131713867, -0.165178582072258, 0.28014326095581055, 0.04929111897945404]} +{"t": 23.7674, "q": [-0.31365305185317993, -0.01340869627892971, 0.011624165810644627, 0.6314802169799805, -0.3413437306880951, 0.00681879511103034, -0.3582833707332611, 0.004099137615412474, -0.0002410541201243177, 0.6169329881668091, -0.3011031150817871, 0.00041610823245719075, 0.0038300822488963604, 0.04608287662267685, -0.05713497847318649, -2.809821367263794, 0.586448073387146, 0.2205936312675476, 1.101098656654358, 0.16668859124183655, 0.36938977241516113, -0.19909393787384033, -2.963686943054199, -0.5076277852058411, -0.11671437323093414, 1.2737553119659424, -0.165178582072258, 0.2801552414894104, 0.04923119768500328]} +{"t": 23.7842, "q": [-0.3136700987815857, -0.013391653075814247, 0.011650948785245419, 0.6314972639083862, -0.3413518965244293, 0.006818718276917934, -0.358291894197464, 0.004090615548193455, -0.00026783792418427765, 0.6168818473815918, -0.3011365830898285, 0.0004743227327708155, 0.0038568659219890833, 0.04608287662267685, -0.05713497847318649, -2.809581756591797, 0.5864001512527466, 0.22055767476558685, 1.101110577583313, 0.1667005717754364, 0.3693777918815613, -0.19910591840744019, -2.9637229442596436, -0.5074240565299988, -0.11673834174871445, 1.2737433910369873, -0.1651546061038971, 0.2801552414894104, 0.04911135509610176]} +{"t": 23.8009, "q": [-0.31368714570999146, -0.01340869627892971, 0.011610773392021656, 0.6315057873725891, -0.3413518965244293, 0.006818718276917934, -0.3582748472690582, 0.004090615548193455, -0.00026783792418427765, 0.6169159412384033, -0.3011573255062103, 0.0004817222652491182, 0.0038568659219890833, 0.04606766626238823, -0.05712465941905975, -2.809390068054199, 0.5864241123199463, 0.22060561180114746, 1.1010746955871582, 0.1667245477437973, 0.3693658113479614, -0.19910591840744019, -2.963650941848755, -0.5073042511940002, -0.11676230281591415, 1.2737433910369873, -0.1651546061038971, 0.2801552414894104, 0.049015481024980545]} +{"t": 23.8177, "q": [-0.3136786222457886, -0.013400174677371979, 0.011624165810644627, 0.6314972639083862, -0.3413518965244293, 0.006818718276917934, -0.358291894197464, 0.004090615548193455, -0.0002812298189383, 0.6169159412384033, -0.3011489808559418, 0.00046717317309230566, 0.0038702578749507666, 0.04609805718064308, -0.05712539702653885, -2.809150218963623, 0.5865678787231445, 0.22058165073394775, 1.1010746955871582, 0.16668859124183655, 0.3693298399448395, -0.19910591840744019, -2.963686943054199, -0.5073162317276001, -0.1167742908000946, 1.273707389831543, -0.165178582072258, 0.28016722202301025, 0.04882373288273811]} +{"t": 23.8344, "q": [-0.3137041926383972, -0.013383129611611366, 0.01159738190472126, 0.6314972639083862, -0.3413518965244293, 0.006818718276917934, -0.358291894197464, 0.004090615548193455, -0.00030801360844634473, 0.6168988943099976, -0.3011530637741089, 0.00045996109838597476, 0.003910433501005173, 0.04607526957988739, -0.057129815220832825, -2.8088746070861816, 0.5866398215293884, 0.2206176072359085, 1.101110577583313, 0.16668859124183655, 0.3693777918815613, -0.19911789894104004, -2.9637107849121094, -0.5072683095932007, -0.11676230281591415, 1.273707389831543, -0.1651546061038971, 0.2801552414894104, 0.048536110669374466]} +{"t": 23.8512, "q": [-0.3137553334236145, -0.013374608010053635, 0.011557205580174923, 0.6314972639083862, -0.3413518965244293, 0.006818718276917934, -0.358291894197464, 0.004107659682631493, -0.0003214055032003671, 0.6169159412384033, -0.30116546154022217, 0.0004527936107479036, 0.003910433501005173, 0.04606005921959877, -0.057119499891996384, -2.8085150718688965, 0.586819589138031, 0.2206176072359085, 1.1010386943817139, 0.16668859124183655, 0.3693777918815613, -0.19910591840744019, -2.963675022125244, -0.5072442889213562, -0.11678627133369446, 1.2736715078353882, -0.16514262557029724, 0.28014326095581055, 0.04821253940463066]} +{"t": 23.8679, "q": [-0.3137638568878174, -0.013366086408495903, 0.011530422605574131, 0.6314887404441833, -0.3413477838039398, 0.006826024502515793, -0.35830041766166687, 0.0041161817498505116, -0.0003481892927084118, 0.6168903708457947, -0.30118194222450256, 0.00043843197636306286, 0.0038970415480434895, 0.04606766626238823, -0.05712465941905975, -2.808215618133545, 0.5869393944740295, 0.2205696702003479, 1.1011345386505127, 0.16668859124183655, 0.3693777918815613, -0.19910591840744019, -2.9637107849121094, -0.5071724057197571, -0.11684619635343552, 1.2736715078353882, -0.1651546061038971, 0.28014326095581055, 0.047697216272354126]} +{"t": 23.8846, "q": [-0.31378939747810364, -0.01340869627892971, 0.01151703018695116, 0.6314802169799805, -0.3413477838039398, 0.006826024502515793, -0.358291894197464, 0.004107659682631493, -0.00037497308221645653, 0.6169074177742004, -0.30118611454963684, 0.00044572463957592845, 0.003910433501005173, 0.04606766626238823, -0.05712465941905975, -2.8078320026397705, 0.5870352983474731, 0.2205936312675476, 1.101110577583313, 0.16664065420627594, 0.3693538308143616, -0.19910591840744019, -2.9637348651885986, -0.5070645809173584, -0.11683420836925507, 1.2735755443572998, -0.16511864960193634, 0.2801312506198883, 0.046954195946455]} +{"t": 23.9014, "q": [-0.31378090381622314, -0.013383129611611366, 0.011530422605574131, 0.6314887404441833, -0.3413518965244293, 0.006818718276917934, -0.358291894197464, 0.0041161817498505116, -0.00037497308221645653, 0.6169159412384033, -0.30120259523391724, 0.0004313630051910877, 0.0038702578749507666, 0.04606766626238823, -0.05712465941905975, -2.8073766231536865, 0.5870712399482727, 0.2205696702003479, 1.1010507345199585, 0.1666766107082367, 0.3693777918815613, -0.19910591840744019, -2.9638307094573975, -0.5069926381111145, -0.11682222783565521, 1.2735515832901, -0.1651066690683365, 0.2801072895526886, 0.04622315615415573]} +{"t": 23.9184, "q": [-0.31377238035202026, -0.013374608010053635, 0.011543814092874527, 0.6314887404441833, -0.3413560092449188, 0.006811411585658789, -0.3582833707332611, 0.0041161817498505116, -0.0003481892927084118, 0.6168903708457947, -0.30121079087257385, 0.00041692095692269504, 0.00388364982791245, 0.04606766626238823, -0.05712465941905975, -2.806969165802002, 0.5870352983474731, 0.22058165073394775, 1.1010147333145142, 0.16668859124183655, 0.3693298399448395, -0.19910591840744019, -2.96398663520813, -0.5069207549095154, -0.11683420836925507, 1.2735755443572998, -0.16511864960193634, 0.28009530901908875, 0.04567188397049904]} +{"t": 23.9351, "q": [-0.31377238035202026, -0.013374608010053635, 0.011543814092874527, 0.6314972639083862, -0.3413518965244293, 0.006818718276917934, -0.3582833707332611, 0.0041161817498505116, -0.0003481892927084118, 0.6169159412384033, -0.30121490359306335, 0.0004097089113201946, 0.0038568659219890833, 0.046075254678726196, -0.05711986869573593, -2.806513786315918, 0.5869393944740295, 0.2205936312675476, 1.1009668111801147, 0.16661667823791504, 0.36928191781044006, -0.19910591840744019, -2.9640464782714844, -0.5068967938423157, -0.11681023985147476, 1.273539662361145, -0.16507071256637573, 0.28009530901908875, 0.04537227749824524]} +{"t": 23.9519, "q": [-0.31377238035202026, -0.013400174677371979, 0.011557205580174923, 0.6314802169799805, -0.3413518965244293, 0.006818718276917934, -0.358291894197464, 0.0041161817498505116, -0.00037497308221645653, 0.6169244647026062, -0.30121079087257385, 0.00041692095692269504, 0.003910433501005173, 0.04606766626238823, -0.05712465941905975, -2.8061423301696777, 0.5868555307388306, 0.2205696702003479, 1.100942850112915, 0.16655676066875458, 0.3692938983440399, -0.19911789894104004, -2.9640583992004395, -0.5068368315696716, -0.11684619635343552, 1.2735515832901, -0.16505873203277588, 0.28009530901908875, 0.04525243490934372]} +{"t": 23.9686, "q": [-0.31378090381622314, -0.013374608010053635, 0.011530422605574131, 0.6314802169799805, -0.3413437306880951, 0.00681879511103034, -0.3582833707332611, 0.004133225884288549, -0.0003481892927084118, 0.616941511631012, -0.30121490359306335, 0.0004097089113201946, 0.003937217406928539, 0.04606766626238823, -0.05712465941905975, -2.805818796157837, 0.5868435502052307, 0.22058165073394775, 1.100942850112915, 0.16666461527347565, 0.36925795674324036, -0.19911789894104004, -2.9639506340026855, -0.5067769289016724, -0.11683420836925507, 1.2735515832901, -0.16499881446361542, 0.2801072895526886, 0.045156560838222504]} +{"t": 23.9853, "q": [-0.3137638568878174, -0.013391653075814247, 0.011543814092874527, 0.6314972639083862, -0.3413519859313965, 0.006804182194173336, -0.3582833707332611, 0.004133225884288549, -0.00036158118746243417, 0.6169585585594177, -0.30120253562927246, 0.00041685847099870443, 0.003923825453966856, 0.04608287662267685, -0.05713497847318649, -2.805591106414795, 0.5867956280708313, 0.2206176072359085, 1.1008949279785156, 0.1666286736726761, 0.3692459762096405, -0.1991298794746399, -2.9639625549316406, -0.5065612196922302, -0.11685817688703537, 1.2735515832901, -0.16503477096557617, 0.28009530901908875, 0.045096639543771744]} +{"t": 24.0021, "q": [-0.3137638568878174, -0.013366086408495903, 0.011543814092874527, 0.6314972639083862, -0.3413477838039398, 0.006826024502515793, -0.3582833707332611, 0.0041247038170695305, -0.00036158118746243417, 0.6169585585594177, -0.3012107312679291, 0.0004024343506898731, 0.003964001312851906, 0.04608287662267685, -0.05713497847318649, -2.8053393363952637, 0.5867356657981873, 0.22055767476558685, 1.1008949279785156, 0.1666526347398758, 0.36923396587371826, -0.19914187490940094, -2.9639506340026855, -0.5062376260757446, -0.11685817688703537, 1.2735515832901, -0.16498683393001556, 0.28007134795188904, 0.04508465528488159]} +{"t": 24.0188, "q": [-0.3137468099594116, -0.013374608010053635, 0.011530422605574131, 0.6314972639083862, -0.3413437306880951, 0.00681879511103034, -0.3582833707332611, 0.0041247038170695305, -0.00037497308221645653, 0.616941511631012, -0.3012065291404724, 0.00039514171658083797, 0.003990784753113985, 0.04607526957988739, -0.057129815220832825, -2.8051235675811768, 0.5866997241973877, 0.2205696702003479, 1.1009068489074707, 0.16661667823791504, 0.36921000480651855, -0.19914187490940094, -2.963890552520752, -0.5060219168663025, -0.11681023985147476, 1.2735515832901, -0.16498683393001556, 0.28009530901908875, 0.04508465528488159]} +{"t": 24.0355, "q": [-0.3137468099594116, -0.013383129611611366, 0.01151703018695116, 0.6314972639083862, -0.3413477838039398, 0.006826024502515793, -0.3582748472690582, 0.0041161817498505116, -0.00036158118746243417, 0.6169500350952148, -0.30120235681533813, 0.00038786715595051646, 0.003964001312851906, 0.04607526957988739, -0.057129815220832825, -2.804931879043579, 0.5867236852645874, 0.2205936312675476, 1.1009308099746704, 0.1666286736726761, 0.36921000480651855, -0.1991298794746399, -2.963866710662842, -0.5057223439216614, -0.11690611392259598, 1.2735515832901, -0.16497483849525452, 0.28009530901908875, 0.04506068676710129]} +{"t": 24.0523, "q": [-0.3137468099594116, -0.013383129611611366, 0.011530422605574131, 0.6314972639083862, -0.341347873210907, 0.006811488885432482, -0.3582748472690582, 0.0041161817498505116, -0.00037497308221645653, 0.6169585585594177, -0.30120235681533813, 0.00038786715595051646, 0.003977392800152302, 0.04607526957988739, -0.057129815220832825, -2.804716110229492, 0.5867356657981873, 0.22060561180114746, 1.1009308099746704, 0.16659271717071533, 0.36921000480651855, -0.1991538554430008, -2.9638187885284424, -0.5055065751075745, -0.11695405095815659, 1.2735276222229004, -0.16493889689445496, 0.28009530901908875, 0.045048702508211136]} +{"t": 24.069, "q": [-0.31373828649520874, -0.013383129611611366, 0.011530422605574131, 0.6314887404441833, -0.341347873210907, 0.006811488885432482, -0.3582748472690582, 0.0041161817498505116, -0.00036158118746243417, 0.6169585585594177, -0.30120643973350525, 0.000380655110348016, 0.003990784753113985, 0.04607526957988739, -0.057129815220832825, -2.80446457862854, 0.5867836475372314, 0.22055767476558685, 1.1008589267730713, 0.16661667823791504, 0.3691980242729187, -0.19914187490940094, -2.9638547897338867, -0.5054227113723755, -0.11695405095815659, 1.2735515832901, -0.1649269014596939, 0.28009530901908875, 0.045036718249320984]} +{"t": 24.0857, "q": [-0.3137553334236145, -0.013374608010053635, 0.011530422605574131, 0.6314887404441833, -0.341347873210907, 0.006811488885432482, -0.35826632380485535, 0.0041247038170695305, -0.00037497308221645653, 0.6169500350952148, -0.3012065291404724, 0.00039514171658083797, 0.003964001312851906, 0.04607526957988739, -0.057129815220832825, -2.8042726516723633, 0.5868555307388306, 0.22062958776950836, 1.1008230447769165, 0.1666286736726761, 0.36916208267211914, -0.1991538554430008, -2.9638068675994873, -0.5053268671035767, -0.11699000746011734, 1.273539662361145, -0.1649269014596939, 0.28009530901908875, 0.045036718249320984]} +{"t": 24.1024, "q": [-0.3137553334236145, -0.013374608010053635, 0.01151703018695116, 0.6314887404441833, -0.341347873210907, 0.006811488885432482, -0.3582748472690582, 0.0041247038170695305, -0.00036158118746243417, 0.616941511631012, -0.3012066185474396, 0.000409646425396204, 0.004017568659037352, 0.04607526957988739, -0.057129815220832825, -2.8040690422058105, 0.5868794918060303, 0.22062958776950836, 1.1007391214370728, 0.1666526347398758, 0.36911413073539734, -0.19914187490940094, -2.9638068675994873, -0.5051950216293335, -0.11695405095815659, 1.2735515832901, -0.1649029403924942, 0.2800833284854889, 0.045036718249320984]} +{"t": 24.1192, "q": [-0.3137468099594116, -0.013374608010053635, 0.011530422605574131, 0.6314972639083862, -0.3413519859313965, 0.006804182194173336, -0.3582748472690582, 0.0041161817498505116, -0.00036158118746243417, 0.616941511631012, -0.3012065291404724, 0.00039514171658083797, 0.004017568659037352, 0.04608287662267685, -0.05713497847318649, -2.8038294315338135, 0.5869154334068298, 0.2205936312675476, 1.100715160369873, 0.16660469770431519, 0.3690781891345978, -0.19914187490940094, -2.963758707046509, -0.5051590800285339, -0.11695405095815659, 1.2735515832901, -0.16493889689445496, 0.28009530901908875, 0.045036718249320984]} +{"t": 24.1359, "q": [-0.3137468099594116, -0.013374608010053635, 0.011530422605574131, 0.6315057873725891, -0.3413437306880951, 0.00681879511103034, -0.35825780034065247, 0.0041161817498505116, -0.00037497308221645653, 0.6169329881668091, -0.3012107312679291, 0.0004024343506898731, 0.004044352564960718, 0.04607528820633888, -0.057139765471220016, -2.8036375045776367, 0.5869633555412292, 0.22064156830310822, 1.100643277168274, 0.1666286736726761, 0.36904221773147583, -0.1991538554430008, -2.9638187885284424, -0.5049673318862915, -0.11699000746011734, 1.2735515832901, -0.16493889689445496, 0.28009530901908875, 0.045036718249320984]} +{"t": 24.1526, "q": [-0.3137553334236145, -0.013374608010053635, 0.011543814092874527, 0.6314972639083862, -0.3413437306880951, 0.00681879511103034, -0.3582407534122467, 0.0041161817498505116, -0.00037497308221645653, 0.6169329881668091, -0.3011941611766815, 0.0004022912762593478, 0.004057744517922401, 0.04607528820633888, -0.057139765471220016, -2.8034698963165283, 0.5869393944740295, 0.22068950533866882, 1.100643277168274, 0.1666286736726761, 0.36900627613067627, -0.1991538554430008, -2.9638426303863525, -0.5048474669456482, -0.11703794449567795, 1.2735515832901, -0.1649508774280548, 0.28009530901908875, 0.04501274973154068]} +{"t": 24.1693, "q": [-0.3137638568878174, -0.013383129611611366, 0.011530422605574131, 0.6314887404441833, -0.3413437306880951, 0.00681879511103034, -0.35822370648384094, 0.0041161817498505116, -0.00036158118746243417, 0.616941511631012, -0.30120235681533813, 0.00038786715595051646, 0.004044352564960718, 0.04608287662267685, -0.05713497847318649, -2.8033499717712402, 0.5869154334068298, 0.22058165073394775, 1.1005833148956299, 0.16660469770431519, 0.3689463436603546, -0.19914187490940094, -2.9638187885284424, -0.5047516226768494, -0.1170738935470581, 1.2735636234283447, -0.16489095985889435, 0.2801072895526886, 0.045036718249320984]} +{"t": 24.1861, "q": [-0.3137468099594116, -0.013391653075814247, 0.011543814092874527, 0.6314972639083862, -0.3413437306880951, 0.00681879511103034, -0.3582407534122467, 0.0041161817498505116, -0.00037497308221645653, 0.6169329881668091, -0.30118995904922485, 0.00039501674473285675, 0.004044352564960718, 0.04607526957988739, -0.057129815220832825, -2.803230047225952, 0.58690345287323, 0.22070148587226868, 1.1005712747573853, 0.1666286736726761, 0.36891040205955505, -0.19916583597660065, -2.9638547897338867, -0.5046796798706055, -0.11709786206483841, 1.2735755443572998, -0.16481904685497284, 0.28009530901908875, 0.04502473399043083]} +{"t": 24.2028, "q": [-0.3137553334236145, -0.013391653075814247, 0.011530422605574131, 0.6314972639083862, -0.3413437306880951, 0.00681879511103034, -0.3582322299480438, 0.0041161817498505116, -0.00037497308221645653, 0.6169329881668091, -0.30120253562927246, 0.00041685847099870443, 0.004084527958184481, 0.04607526957988739, -0.057129815220832825, -2.803074359893799, 0.5868675112724304, 0.2205936312675476, 1.1004754304885864, 0.16655676066875458, 0.3688504695892334, -0.1991538554430008, -2.9638307094573975, -0.5045598745346069, -0.11710985004901886, 1.2735636234283447, -0.16472317278385162, 0.2801072895526886, 0.04501274973154068]} +{"t": 24.2196, "q": [-0.3137468099594116, -0.013400174677371979, 0.011530422605574131, 0.6314972639083862, -0.341347873210907, 0.006811488885432482, -0.3582322299480438, 0.004107659682631493, -0.0003883649769704789, 0.6169244647026062, -0.3011983335018158, 0.0004095658368896693, 0.004044352564960718, 0.04606766626238823, -0.05712465941905975, -2.8028945922851562, 0.5868555307388306, 0.22060561180114746, 1.1003915071487427, 0.16659271717071533, 0.3688265085220337, -0.1991538554430008, -2.963567018508911, -0.5043801069259644, -0.11712183058261871, 1.2735755443572998, -0.16468721628189087, 0.28011927008628845, 0.04501274973154068]} +{"t": 24.2363, "q": [-0.3137553334236145, -0.013391653075814247, 0.011530422605574131, 0.6314802169799805, -0.3413437306880951, 0.00681879511103034, -0.35822370648384094, 0.004090615548193455, -0.00037497308221645653, 0.6169329881668091, -0.3012066185474396, 0.000409646425396204, 0.004084527958184481, 0.04607526957988739, -0.057129815220832825, -2.8027029037475586, 0.5868435502052307, 0.22053371369838715, 1.1001638174057007, 0.16655676066875458, 0.3687186539173126, -0.1991538554430008, -2.963111639022827, -0.5042482614517212, -0.11718175560235977, 1.2736715078353882, -0.1646272987127304, 0.2801072895526886, 0.045036718249320984]} +{"t": 24.253, "q": [-0.3137553334236145, -0.013400174677371979, 0.011503638699650764, 0.6314887404441833, -0.3413437306880951, 0.00681879511103034, -0.3582322299480438, 0.0041161817498505116, -0.00040175687172450125, 0.6169329881668091, -0.3012066185474396, 0.000409646425396204, 0.004151487722992897, 0.04607526957988739, -0.057129815220832825, -2.8025710582733154, 0.586819589138031, 0.2205936312675476, 1.0998642444610596, 0.16655676066875458, 0.3686707317829132, -0.19916583597660065, -2.9625842571258545, -0.5040565133094788, -0.11719373613595963, 1.2736594676971436, -0.16461531817913055, 0.2801552414894104, 0.045036718249320984]} +{"t": 24.2698, "q": [-0.3137638568878174, -0.013383129611611366, 0.011463462375104427, 0.6314887404441833, -0.3413437306880951, 0.00681879511103034, -0.3582407534122467, 0.0041161817498505116, -0.00044193255598656833, 0.6169329881668091, -0.3012065291404724, 0.00039514171658083797, 0.004218447022140026, 0.046090468764305115, -0.05713018774986267, -2.802319288253784, 0.586819589138031, 0.2205936312675476, 1.099684476852417, 0.16650882363319397, 0.36856287717819214, -0.19918981194496155, -2.9620330333709717, -0.5038168430328369, -0.11731357872486115, 1.2736594676971436, -0.16456738114356995, 0.28009530901908875, 0.04506068676710129]} +{"t": 24.2865, "q": [-0.3137638568878174, -0.013400174677371979, 0.011423286981880665, 0.6314972639083862, -0.3413437306880951, 0.00681879511103034, -0.3582407534122467, 0.004107659682631493, -0.00044193255598656833, 0.6169244647026062, -0.3012189269065857, 0.0003880102594848722, 0.0043523660860955715, 0.046075254678726196, -0.05711986869573593, -2.8021514415740967, 0.5868435502052307, 0.2206176072359085, 1.0996125936508179, 0.16654478013515472, 0.36849096417427063, -0.19918981194496155, -2.961397886276245, -0.5036730170249939, -0.11731357872486115, 1.2736594676971436, -0.16459134221076965, 0.28009530901908875, 0.04502473399043083]} +{"t": 24.3032, "q": [-0.3137638568878174, -0.013383129611611366, 0.011396503075957298, 0.6314972639083862, -0.34133970737457275, 0.0068115657195448875, -0.35822370648384094, 0.004099137615412474, -0.00046871634549461305, 0.6169074177742004, -0.3012271821498871, 0.00038807274540886283, 0.004379149992018938, 0.04606766626238823, -0.05712465941905975, -2.8020317554473877, 0.5868675112724304, 0.22062958776950836, 1.0994807481765747, 0.16648486256599426, 0.36844301223754883, -0.19916583597660065, -2.960822582244873, -0.5034213662147522, -0.11739747226238251, 1.2736355066299438, -0.16449548304080963, 0.28009530901908875, 0.04502473399043083]} +{"t": 24.3199, "q": [-0.3137638568878174, -0.013383129611611366, 0.011369719170033932, 0.6314887404441833, -0.341347873210907, 0.006811488885432482, -0.35822370648384094, 0.0041247038170695305, -0.0004553244507405907, 0.6169159412384033, -0.3012394905090332, 0.0003664186515379697, 0.004392541944980621, 0.04606766626238823, -0.05712465941905975, -2.8018999099731445, 0.5868555307388306, 0.22058165073394775, 1.0993369817733765, 0.16652080416679382, 0.3683711290359497, -0.1991778165102005, -2.9602832794189453, -0.5032056570053101, -0.11740945279598236, 1.2736355066299438, -0.1645314246416092, 0.2800833284854889, 0.04501274973154068]} +{"t": 24.3367, "q": [-0.3137638568878174, -0.013374608010053635, 0.011396503075957298, 0.6314802169799805, -0.3413437306880951, 0.00681879511103034, -0.3582407534122467, 0.0041161817498505116, -0.0004821082402486354, 0.6169244647026062, -0.3012476861476898, 0.0003519945312291384, 0.004325582180172205, 0.04606766626238823, -0.05712465941905975, -2.801624298095703, 0.5868435502052307, 0.2205696702003479, 1.0990493297576904, 0.16650882363319397, 0.36833515763282776, -0.1991778165102005, -2.9597320556640625, -0.5028820633888245, -0.11751731485128403, 1.273599624633789, -0.16450746357440948, 0.28009530901908875, 0.045036718249320984]} +{"t": 24.3535, "q": [-0.3137638568878174, -0.013366086408495903, 0.011396503075957298, 0.6314716935157776, -0.34134382009506226, 0.006804259493947029, -0.35825780034065247, 0.004133225884288549, -0.000522283953614533, 0.6169159412384033, -0.3012517988681793, 0.00034478248562663794, 0.004338974133133888, 0.04606005921959877, -0.057119499891996384, -2.8014445304870605, 0.5868435502052307, 0.2205936312675476, 1.0990253686904907, 0.16653279960155487, 0.3682992160320282, -0.1991778165102005, -2.9592885971069336, -0.5026783347129822, -0.11756525188684464, 1.2736115455627441, -0.16454340517520905, 0.2801072895526886, 0.045036718249320984]} +{"t": 24.3702, "q": [-0.3137638568878174, -0.01334904134273529, 0.011396503075957298, 0.6314716935157776, -0.3413518965244293, 0.006818718276917934, -0.3582492768764496, 0.004141747951507568, -0.0004821082402486354, 0.6169244647026062, -0.3012436032295227, 0.0003592065768316388, 0.004338974133133888, 0.04606766626238823, -0.05712465941905975, -2.801156759262085, 0.5868435502052307, 0.22064156830310822, 1.0989774465560913, 0.16655676066875458, 0.3682992160320282, -0.1991778165102005, -2.958977222442627, -0.5024266839027405, -0.11756525188684464, 1.2736715078353882, -0.16449548304080963, 0.28009530901908875, 0.045036718249320984]} +{"t": 24.3869, "q": [-0.31377238035202026, -0.013374608010053635, 0.011383111588656902, 0.6314802169799805, -0.3413518965244293, 0.006818718276917934, -0.3582492768764496, 0.004133225884288549, -0.0004955001641064882, 0.6169159412384033, -0.3012601435184479, 0.0003593315777834505, 0.004365758039057255, 0.04608284309506416, -0.05711508169770241, -2.8008692264556885, 0.5868675112724304, 0.22064156830310822, 1.0989654064178467, 0.16646088659763336, 0.36828723549842834, -0.1991778165102005, -2.958737373352051, -0.5022109150886536, -0.1176491379737854, 1.2736715078353882, -0.16444754600524902, 0.2800593674182892, 0.045036718249320984]} +{"t": 24.4039, "q": [-0.3137979209423065, -0.013366086408495903, 0.011369719170033932, 0.6314802169799805, -0.3413518965244293, 0.006818718276917934, -0.35826632380485535, 0.0041161817498505116, -0.0004955001641064882, 0.6168988943099976, -0.30125588178634644, 0.00033757041092030704, 0.004365758039057255, 0.04609041288495064, -0.057100340723991394, -2.8004977703094482, 0.5868435502052307, 0.22066554427146912, 1.098941445350647, 0.16646088659763336, 0.36823928356170654, -0.19918981194496155, -2.958617687225342, -0.5020071864128113, -0.11769707500934601, 1.2737194299697876, -0.16441158950328827, 0.28009530901908875, 0.04502473399043083]} +{"t": 24.4206, "q": [-0.3138064444065094, -0.01334904134273529, 0.011342935264110565, 0.631446123123169, -0.3413560092449188, 0.006811411585658789, -0.35826632380485535, 0.0041161817498505116, -0.0005088920588605106, 0.6168988943099976, -0.3012600541114807, 0.00034484497155062854, 0.004392541944980621, 0.04609043523669243, -0.057110290974378586, -2.8001620769500732, 0.5868435502052307, 0.22065354883670807, 1.0988816022872925, 0.16647286713123322, 0.36816737055778503, -0.1991778165102005, -2.958521604537964, -0.5017315745353699, -0.11782890558242798, 1.2737433910369873, -0.16439960896968842, 0.28009530901908875, 0.045036718249320984]} +{"t": 24.4373, "q": [-0.3138064444065094, -0.01334904134273529, 0.011302759870886803, 0.631446123123169, -0.3413477838039398, 0.006826024502515793, -0.35825780034065247, 0.0041161817498505116, -0.0004955001641064882, 0.6168733239173889, -0.3012807369232178, 0.0003377578977961093, 0.004379149992018938, 0.04609043523669243, -0.057110290974378586, -2.7997546195983887, 0.5868435502052307, 0.22064156830310822, 1.0987976789474487, 0.16646088659763336, 0.36805951595306396, -0.1991778165102005, -2.9584977626800537, -0.501491904258728, -0.11786485463380814, 1.2737194299697876, -0.16442357003688812, 0.28009530901908875, 0.04506068676710129]} +{"t": 24.4543, "q": [-0.3138064444065094, -0.01334904134273529, 0.01132954377681017, 0.6314290761947632, -0.3413518965244293, 0.006818718276917934, -0.35825780034065247, 0.004150270018726587, -0.0005088920588605106, 0.6168733239173889, -0.3013097643852234, 0.0003452200908213854, 0.004379149992018938, 0.046098023653030396, -0.057105500251054764, -2.7992513179779053, 0.586819589138031, 0.22071348130702972, 1.0985220670700073, 0.16648486256599426, 0.3679996132850647, -0.19918981194496155, -2.9584858417510986, -0.5011922717094421, -0.11796072870492935, 1.273707389831543, -0.16442357003688812, 0.28007134795188904, 0.045096639543771744]} +{"t": 24.471, "q": [-0.3138149678707123, -0.01334904134273529, 0.011302759870886803, 0.6313864588737488, -0.3413518965244293, 0.006818718276917934, -0.35826632380485535, 0.004133225884288549, -0.0005356758483685553, 0.6168818473815918, -0.3013511598110199, 0.0003455325495451689, 0.004432717338204384, 0.04609043523669243, -0.057110290974378586, -2.798532247543335, 0.5867836475372314, 0.2208213359117508, 1.0979467630386353, 0.16646088659763336, 0.36793968081474304, -0.1991778165102005, -2.958545684814453, -0.5010005235671997, -0.1179966852068901, 1.2736594676971436, -0.16442357003688812, 0.2800593674182892, 0.04507267102599144]} +{"t": 24.4877, "q": [-0.3137979209423065, -0.013366086408495903, 0.011316152289509773, 0.6313864588737488, -0.3413437306880951, 0.00681879511103034, -0.3582407534122467, 0.004133225884288549, -0.0005356758483685553, 0.6168818473815918, -0.3013555407524109, 0.0003817983961198479, 0.004419325385242701, 0.04608284309506416, -0.05711508169770241, -2.7974417209625244, 0.5867356657981873, 0.22077339887619019, 1.096772313117981, 0.16648486256599426, 0.3678557872772217, -0.1991778165102005, -2.958545684814453, -0.5008207559585571, -0.11803263425827026, 1.2736355066299438, -0.1643516719341278, 0.28004738688468933, 0.04508465528488159]} +{"t": 24.5047, "q": [-0.3138149678707123, -0.01334904134273529, 0.011289368383586407, 0.6313864588737488, -0.341347873210907, 0.006811488885432482, -0.3582407534122467, 0.0041247038170695305, -0.0005356758483685553, 0.616864800453186, -0.3013846278190613, 0.0004037470498587936, 0.004432717338204384, 0.04609043523669243, -0.057110290974378586, -2.7964351177215576, 0.5867356657981873, 0.22072546184062958, 1.0955859422683716, 0.16646088659763336, 0.36773595213890076, -0.19918981194496155, -2.958617687225342, -0.500605046749115, -0.11812850832939148, 1.2736475467681885, -0.16424380242824554, 0.2800353765487671, 0.04506068676710129]} +{"t": 24.5214, "q": [-0.31382349133491516, -0.013357564806938171, 0.011289368383586407, 0.6313864588737488, -0.3413518965244293, 0.006818718276917934, -0.3582322299480438, 0.004133225884288549, -0.0005490677431225777, 0.6168903708457947, -0.3013930022716522, 0.00041829614201560616, 0.004432717338204384, 0.046098023653030396, -0.057105500251054764, -2.795320510864258, 0.5866997241973877, 0.22074942290782928, 1.093764305114746, 0.16646088659763336, 0.36773595213890076, -0.1992017924785614, -2.9585816860198975, -0.5003893375396729, -0.11821239441633224, 1.2736355066299438, -0.16424380242824554, 0.28002339601516724, 0.04506068676710129]} +{"t": 24.5382, "q": [-0.31383201479911804, -0.013374608010053635, 0.011316152289509773, 0.6313864588737488, -0.3413437306880951, 0.00681879511103034, -0.3582407534122467, 0.004133225884288549, -0.0005624596378766, 0.6169074177742004, -0.30139708518981934, 0.0004110840964131057, 0.004365758039057255, 0.046098023653030396, -0.057105500251054764, -2.79440975189209, 0.5866997241973877, 0.22078537940979004, 1.0920864343643188, 0.16641294956207275, 0.36768800020217896, -0.1992017924785614, -2.958509683609009, -0.5003054738044739, -0.118248350918293, 1.2736594676971436, -0.1642318218946457, 0.28002339601516724, 0.04508465528488159]} +{"t": 24.555, "q": [-0.3138149678707123, -0.013366086408495903, 0.01132954377681017, 0.6313864588737488, -0.3413437306880951, 0.00681879511103034, -0.35825780034065247, 0.0041247038170695305, -0.0005624596378766, 0.6168903708457947, -0.3013888895511627, 0.0004255081876181066, 0.004272014833986759, 0.046120788902044296, -0.057091131806373596, -2.793726682662964, 0.5866398215293884, 0.22074942290782928, 1.0909119844436646, 0.166376993060112, 0.3677000105381012, -0.19918981194496155, -2.9584617614746094, -0.5002095699310303, -0.1182723194360733, 1.2736594676971436, -0.16419586539268494, 0.28002339601516724, 0.04506068676710129]} +{"t": 24.5717, "q": [-0.31383201479911804, -0.01334904134273529, 0.011302759870886803, 0.6313694715499878, -0.3413519859313965, 0.006804182194173336, -0.35825780034065247, 0.0041247038170695305, -0.0005490677431225777, 0.6168988943099976, -0.30139708518981934, 0.0004110840964131057, 0.004218447022140026, 0.04613596946001053, -0.05708155408501625, -2.7931394577026367, 0.5866158604621887, 0.22078537940979004, 1.0899412631988525, 0.16634105145931244, 0.3676760196685791, -0.1992017924785614, -2.9584736824035645, -0.5001257061958313, -0.11833223700523376, 1.2736715078353882, -0.16424380242824554, 0.2800114154815674, 0.04506068676710129]} +{"t": 24.5885, "q": [-0.3138149678707123, -0.01334904134273529, 0.01132954377681017, 0.6313439011573792, -0.341347873210907, 0.006811488885432482, -0.35825780034065247, 0.004133225884288549, -0.0005356758483685553, 0.6168988943099976, -0.30140137672424316, 0.0004328633367549628, 0.004218447022140026, 0.046120770275592804, -0.057081181555986404, -2.792480230331421, 0.5866398215293884, 0.22077339887619019, 1.0888627767562866, 0.16634105145931244, 0.3676760196685791, -0.19921377301216125, -2.9584858417510986, -0.5001017451286316, -0.11835620552301407, 1.2736834287643433, -0.16417190432548523, 0.28002339601516724, 0.04506068676710129]} +{"t": 24.6053, "q": [-0.31382349133491516, -0.013366086408495903, 0.01132954377681017, 0.6313353776931763, -0.341347873210907, 0.006811488885432482, -0.35825780034065247, 0.004150270018726587, -0.0005356758483685553, 0.6168903708457947, -0.30142226815223694, 0.0004692360816989094, 0.004245230928063393, 0.04612075537443161, -0.05707123503088951, -2.791904926300049, 0.5866038799285889, 0.22077339887619019, 1.08788001537323, 0.1663290560245514, 0.3676760196685791, -0.19923774898052216, -2.958521604537964, -0.5001137256622314, -0.11835620552301407, 1.2736594676971436, -0.16421984136104584, 0.28002339601516724, 0.045048702508211136]} +{"t": 24.622, "q": [-0.3138405382633209, -0.013366086408495903, 0.011302759870886803, 0.6313098073005676, -0.341347873210907, 0.006811488885432482, -0.3582748472690582, 0.004133225884288549, -0.0005088920588605106, 0.6168903708457947, -0.3014431297779083, 0.0004911402938887477, 0.004245230928063393, 0.04613593593239784, -0.057061657309532166, -2.791234016418457, 0.5865798592567444, 0.2208213359117508, 1.0864179134368896, 0.16631707549095154, 0.3676760196685791, -0.199249729514122, -2.9584977626800537, -0.5001017451286316, -0.11839216202497482, 1.2736594676971436, -0.16420786082744598, 0.2800114154815674, 0.04506068676710129]} +{"t": 24.6387, "q": [-0.31383201479911804, -0.013374608010053635, 0.01132954377681017, 0.6312927603721619, -0.341347873210907, 0.006811488885432482, -0.35825780034065247, 0.0041673146188259125, -0.0005356758483685553, 0.6168818473815918, -0.3014598488807678, 0.0005202385364100337, 0.004272014833986759, 0.046143539249897, -0.05706681311130524, -2.790311098098755, 0.5865798592567444, 0.22074942290782928, 1.0843687057495117, 0.16631707549095154, 0.3676760196685791, -0.19923774898052216, -2.958425760269165, -0.5000657439231873, -0.11846406757831573, 1.2736715078353882, -0.16420786082744598, 0.2800114154815674, 0.04506068676710129]} +{"t": 24.6555, "q": [-0.3138149678707123, -0.013383129611611366, 0.011316152289509773, 0.631284236907959, -0.3413518965244293, 0.006818718276917934, -0.35825780034065247, 0.0041673146188259125, -0.0005356758483685553, 0.6168903708457947, -0.3014764189720154, 0.0005203636246733367, 0.004325582180172205, 0.04615870118141174, -0.057047288864851, -2.789424180984497, 0.5864840149879456, 0.2207973599433899, 1.0829904079437256, 0.16631707549095154, 0.36761611700057983, -0.199249729514122, -2.9583899974823, -0.5000777244567871, -0.11848803609609604, 1.273707389831543, -0.16415992379188538, 0.2800114154815674, 0.045048702508211136]} +{"t": 24.6722, "q": [-0.31383201479911804, -0.013366086408495903, 0.01132954377681017, 0.6312671899795532, -0.3413519859313965, 0.006804182194173336, -0.3582492768764496, 0.004150270018726587, -0.0005490677431225777, 0.6168733239173889, -0.30149298906326294, 0.0005204886547289789, 0.004365758039057255, 0.046166304498910904, -0.05705244466662407, -2.7885854244232178, 0.5863761305809021, 0.22077339887619019, 1.0819119215011597, 0.16629311442375183, 0.36753222346305847, -0.199249729514122, -2.958329916000366, -0.5000657439231873, -0.1185719221830368, 1.2737433910369873, -0.16417190432548523, 0.2800114154815674, 0.04508465528488159]} +{"t": 24.689, "q": [-0.3138064444065094, -0.013366086408495903, 0.011302759870886803, 0.6312586665153503, -0.3413519859313965, 0.006804182194173336, -0.3582407534122467, 0.004150270018726587, -0.000522283953614533, 0.6168818473815918, -0.30153048038482666, 0.0005570044741034508, 0.0043523660860955715, 0.04618150368332863, -0.05705281347036362, -2.7877824306488037, 0.5863282084465027, 0.22080935537815094, 1.0808452367782593, 0.16626913845539093, 0.36748427152633667, -0.19926171004772186, -2.9582340717315674, -0.500005841255188, -0.11861985921859741, 1.2737433910369873, -0.16413594782352448, 0.2800114154815674, 0.04506068676710129]} +{"t": 24.7057, "q": [-0.31382349133491516, -0.013366086408495903, 0.011302759870886803, 0.6312330961227417, -0.341347873210907, 0.006811488885432482, -0.3582407534122467, 0.004150270018726587, -0.0005356758483685553, 0.6168903708457947, -0.30155956745147705, 0.0005789531278423965, 0.004392541944980621, 0.046189092099666595, -0.05704802647233009, -2.786919593811035, 0.586220383644104, 0.22074942290782928, 1.0798625946044922, 0.16626913845539093, 0.3674483299255371, -0.19927369058132172, -2.958174228668213, -0.4999818801879883, -0.11864382773637772, 1.273767352104187, -0.16409999132156372, 0.2800114154815674, 0.045048702508211136]} +{"t": 24.7224, "q": [-0.3138149678707123, -0.013366086408495903, 0.011302759870886803, 0.6312075257301331, -0.3413437306880951, 0.00681879511103034, -0.3582322299480438, 0.004133225884288549, -0.0005490677431225777, 0.6168903708457947, -0.3015720546245575, 0.0005862903199158609, 0.004446109291166067, 0.04622698575258255, -0.056994229555130005, -2.786104679107666, 0.5861364603042603, 0.2208213359117508, 1.0789518356323242, 0.16623318195343018, 0.3673524558544159, -0.19926171004772186, -2.958078384399414, -0.4999698996543884, -0.11869176477193832, 1.2737553119659424, -0.16406404972076416, 0.27999943494796753, 0.04506068676710129]} +{"t": 24.7392, "q": [-0.31383201479911804, -0.013374608010053635, 0.01132954377681017, 0.6311904788017273, -0.341347873210907, 0.006811488885432482, -0.35825780034065247, 0.004150270018726587, -0.0005758515326306224, 0.6168818473815918, -0.3015844225883484, 0.0005791407311335206, 0.004432717338204384, 0.046302907168865204, -0.056966230273246765, -2.785541296005249, 0.5861005187034607, 0.22077339887619019, 1.0784484148025513, 0.16619724035263062, 0.3673045337200165, -0.19926171004772186, -2.957970380783081, -0.4999818801879883, -0.11875168979167938, 1.2738152742385864, -0.16406404972076416, 0.27999943494796753, 0.04506068676710129]} +{"t": 24.756, "q": [-0.31382349133491516, -0.013357564806938171, 0.01132954377681017, 0.6311563849449158, -0.341347873210907, 0.006811488885432482, -0.35825780034065247, 0.004150270018726587, -0.0005490677431225777, 0.616864800453186, -0.3015967309474945, 0.0005575045943260193, 0.004419325385242701, 0.04636358842253685, -0.056908018887043, -2.78507399559021, 0.5861005187034607, 0.22078537940979004, 1.0780290365219116, 0.16618524491786957, 0.3673284947872162, -0.19928568601608276, -2.9577667713165283, -0.4999579191207886, -0.1188235953450203, 1.2738033533096313, -0.1640280932188034, 0.27996349334716797, 0.045048702508211136]} +{"t": 24.7727, "q": [-0.31382349133491516, -0.013366086408495903, 0.011289368383586407, 0.6311052441596985, -0.3413437306880951, 0.00681879511103034, -0.35826632380485535, 0.004150270018726587, -0.0005624596378766, 0.6168733239173889, -0.3016173839569092, 0.0005503995926119387, 0.004432717338204384, 0.04646226763725281, -0.0568557009100914, -2.7844388484954834, 0.5861005187034607, 0.2208213359117508, 1.0775495767593384, 0.16619724035263062, 0.3673284947872162, -0.19928568601608276, -2.957610845565796, -0.4999579191207886, -0.11879962682723999, 1.2738033533096313, -0.16401611268520355, 0.2799754738807678, 0.045048702508211136]} +{"t": 24.7895, "q": [-0.31382349133491516, -0.013366086408495903, 0.011275975964963436, 0.6310626268386841, -0.341347873210907, 0.006811488885432482, -0.35825780034065247, 0.0041587925516068935, -0.0005624596378766, 0.616864800453186, -0.30165061354637146, 0.0005651542451232672, 0.004432717338204384, 0.04652297869324684, -0.05681738629937172, -2.7837796211242676, 0.5861244797706604, 0.2208213359117508, 1.0768306255340576, 0.16613730788230896, 0.3673284947872162, -0.19930964708328247, -2.957526922225952, -0.4999459385871887, -0.1188475638628006, 1.2738752365112305, -0.16396817564964294, 0.2799515128135681, 0.045048702508211136]} +{"t": 24.8062, "q": [-0.31382349133491516, -0.013366086408495903, 0.011302759870886803, 0.6310200095176697, -0.341347873210907, 0.006811488885432482, -0.3582748472690582, 0.0041673146188259125, -0.0005892434273846447, 0.616864800453186, -0.30171704292297363, 0.0005946275778114796, 0.004432717338204384, 0.04659128189086914, -0.05677427724003792, -2.7829408645629883, 0.5861244797706604, 0.22080935537815094, 1.0755482912063599, 0.16614930331707, 0.36734047532081604, -0.19930964708328247, -2.9574310779571533, -0.4999579191207886, -0.11894343793392181, 1.2738152742385864, -0.1639801561832428, 0.27996349334716797, 0.045048702508211136]} +{"t": 24.823, "q": [-0.31383201479911804, -0.013366086408495903, 0.011275975964963436, 0.6309689283370972, -0.34133970737457275, 0.0068115657195448875, -0.35825780034065247, 0.0041587925516068935, -0.0005624596378766, 0.6168733239173889, -0.30172523856163025, 0.0005802034283988178, 0.004405933897942305, 0.04665196314454079, -0.05671606585383415, -2.7818024158477783, 0.5860885381698608, 0.2208213359117508, 1.0736308097839355, 0.16613730788230896, 0.36734047532081604, -0.19928568601608276, -2.9574310779571533, -0.4999219477176666, -0.11897938698530197, 1.273827314376831, -0.1639322191476822, 0.27996349334716797, 0.045048702508211136]} +{"t": 24.8399, "q": [-0.31382349133491516, -0.013383129611611366, 0.01126258447766304, 0.6309689283370972, -0.3413518965244293, 0.006818718276917934, -0.35826632380485535, 0.0041673146188259125, -0.0006026353221386671, 0.616864800453186, -0.3017376959323883, 0.0005875405040569603, 0.004446109291166067, 0.04677338898181915, -0.056639429181814194, -2.7806997299194336, 0.5861005187034607, 0.2208213359117508, 1.0717133283615112, 0.16614930331707, 0.36734047532081604, -0.19929766654968262, -2.9573233127593994, -0.4999219477176666, -0.11900335550308228, 1.273827314376831, -0.16394419968128204, 0.2799515128135681, 0.045048702508211136]} +{"t": 24.8566, "q": [-0.3138149678707123, -0.013383129611611366, 0.011289368383586407, 0.6309263110160828, -0.341347873210907, 0.006811488885432482, -0.3582492768764496, 0.00418435875326395, -0.0006294191116467118, 0.6168733239173889, -0.3017458915710449, 0.0005731163546442986, 0.004419325385242701, 0.04680372774600983, -0.05661031976342201, -2.7794055938720703, 0.5861005187034607, 0.2208692729473114, 1.0698198080062866, 0.1660773903131485, 0.36731651425361633, -0.19929766654968262, -2.957275390625, -0.4998740255832672, -0.11902732402086258, 1.2738152742385864, -0.1640041172504425, 0.2799515128135681, 0.04506068676710129]} +{"t": 24.8733, "q": [-0.3138149678707123, -0.013383129611611366, 0.01124919205904007, 0.630909264087677, -0.3413519859313965, 0.006804182194173336, -0.3582322299480438, 0.0041673146188259125, -0.0006428110064007342, 0.6168818473815918, -0.30177074670791626, 0.0005732859135605395, 0.004392541944980621, 0.04685688391327858, -0.05659668892621994, -2.778135061264038, 0.5861244797706604, 0.2208932340145111, 1.0684056282043457, 0.16608937084674835, 0.3672805428504944, -0.19928568601608276, -2.9572274684906006, -0.49986204504966736, -0.11897938698530197, 1.273827314376831, -0.1640041172504425, 0.27996349334716797, 0.04507267102599144]} +{"t": 24.8903, "q": [-0.31378090381622314, -0.013374608010053635, 0.011289368383586407, 0.6308666467666626, -0.341347873210907, 0.006811488885432482, -0.3582407534122467, 0.0041673146188259125, -0.0006294191116467118, 0.6168733239173889, -0.3017996847629547, 0.0005662794574163854, 0.00445950124412775, 0.0468796044588089, -0.056552477180957794, -2.7767090797424316, 0.5860406160354614, 0.22094117105007172, 1.0663204193115234, 0.16606540977954865, 0.3673045337200165, -0.19930964708328247, -2.957179546356201, -0.4998500645160675, -0.11900335550308228, 1.273827314376831, -0.16396817564964294, 0.2799515128135681, 0.04507267102599144]} +{"t": 24.907, "q": [-0.31382349133491516, -0.013383129611611366, 0.011302759870886803, 0.6308069825172424, -0.341347873210907, 0.006811488885432482, -0.35825780034065247, 0.0041587925516068935, -0.0006294191116467118, 0.6168733239173889, -0.3018205165863037, 0.0005881655961275101, 0.00445950124412775, 0.04697069153189659, -0.056514982134103775, -2.7755227088928223, 0.5859926342964172, 0.22096514701843262, 1.0642471313476562, 0.16608937084674835, 0.36731651425361633, -0.19930964708328247, -2.957179546356201, -0.4998500645160675, -0.11902732402086258, 1.2738033533096313, -0.1639322191476822, 0.2799395024776459, 0.04506068676710129]} +{"t": 24.9237, "q": [-0.31382349133491516, -0.013383129611611366, 0.011289368383586407, 0.6307814121246338, -0.341347873210907, 0.006811488885432482, -0.3582407534122467, 0.0041673146188259125, -0.0006026353221386671, 0.616864800453186, -0.301828533411026, 0.000544750306289643, 0.004432717338204384, 0.04707683250308037, -0.05641839653253555, -2.774695634841919, 0.5859806537628174, 0.22088125348091125, 1.0627491474151611, 0.16608937084674835, 0.3673284947872162, -0.19930964708328247, -2.957167387008667, -0.49981409311294556, -0.11902732402086258, 1.2738033533096313, -0.16394419968128204, 0.279927521944046, 0.04506068676710129]} +{"t": 24.9405, "q": [-0.3138064444065094, -0.013391653075814247, 0.011289368383586407, 0.6307387948036194, -0.3413560092449188, 0.006811411585658789, -0.3582407534122467, 0.004175836686044931, -0.0006294191116467118, 0.616864800453186, -0.3018243610858917, 0.0005374757456593215, 0.004325582180172205, 0.04712981358170509, -0.05632541701197624, -2.7743241786956787, 0.5860046744346619, 0.2208452969789505, 1.0622098445892334, 0.16608937084674835, 0.36734047532081604, -0.19930964708328247, -2.9571914672851562, -0.49979013204574585, -0.11906328052282333, 1.2738033533096313, -0.1639322191476822, 0.27991554141044617, 0.04506068676710129]} +{"t": 24.9572, "q": [-0.3137979209423065, -0.013391653075814247, 0.01132954377681017, 0.630696177482605, -0.341347873210907, 0.006811488885432482, -0.3582492768764496, 0.004192880820482969, -0.0006294191116467118, 0.6168818473815918, -0.3018200993537903, 0.000515714637003839, 0.004298798739910126, 0.04713727906346321, -0.05626106262207031, -2.7740604877471924, 0.5860645771026611, 0.2208932340145111, 1.0621858835220337, 0.1661013662815094, 0.3673524558544159, -0.19928568601608276, -2.957179546356201, -0.49976617097854614, -0.11902732402086258, 1.2738152742385864, -0.16392023861408234, 0.279927521944046, 0.04507267102599144]} +{"t": 24.9739, "q": [-0.3138064444065094, -0.013383129611611366, 0.011342935264110565, 0.6306450366973877, -0.341347873210907, 0.006811488885432482, -0.3582407534122467, 0.004209924954921007, -0.0006160272168926895, 0.616864800453186, -0.30182018876075745, 0.000530201243236661, 0.0042854067869484425, 0.04713726416230202, -0.056251123547554016, -2.77388072013855, 0.5860645771026611, 0.2208452969789505, 1.0622217655181885, 0.1661013662815094, 0.3673764169216156, -0.19930964708328247, -2.957179546356201, -0.4997541904449463, -0.11903931200504303, 1.2737913131713867, -0.16392023861408234, 0.2799395024776459, 0.045048702508211136]} +{"t": 24.9906, "q": [-0.31378939747810364, -0.013391653075814247, 0.011342935264110565, 0.6306279897689819, -0.341347873210907, 0.006811488885432482, -0.35821521282196045, 0.004226969089359045, -0.0006294191116467118, 0.6168818473815918, -0.3018284738063812, 0.0005302637000568211, 0.004312190227210522, 0.04716002196073532, -0.05623679235577583, -2.7737009525299072, 0.5860645771026611, 0.22085729241371155, 1.0621978044509888, 0.1661253273487091, 0.3673764169216156, -0.19929766654968262, -2.9571914672851562, -0.49976617097854614, -0.11906328052282333, 1.2738033533096313, -0.16392023861408234, 0.279927521944046, 0.04507267102599144]} +{"t": 25.0074, "q": [-0.3137638568878174, -0.013391653075814247, 0.011356327682733536, 0.6306195259094238, -0.341347873210907, 0.006811488885432482, -0.35821521282196045, 0.004201402887701988, -0.0006294191116467118, 0.6168733239173889, -0.3018409311771393, 0.0005376007757149637, 0.004392541944980621, 0.04717515781521797, -0.056207362562417984, -2.7736170291900635, 0.5861124992370605, 0.22088125348091125, 1.0621498823165894, 0.16611334681510925, 0.3674004077911377, -0.19929766654968262, -2.9571914672851562, -0.4997301995754242, -0.11903931200504303, 1.273827314376831, -0.1639082431793213, 0.279927521944046, 0.04506068676710129]} +{"t": 25.0242, "q": [-0.31378939747810364, -0.013400174677371979, 0.01132954377681017, 0.6306024789810181, -0.341347873210907, 0.006811488885432482, -0.35820668935775757, 0.004201402887701988, -0.0006428110064007342, 0.6168562769889832, -0.30188676714897156, 0.0005886656581424177, 0.004392541944980621, 0.047159962356090546, -0.056206971406936646, -2.7735812664031982, 0.5861005187034607, 0.22088125348091125, 1.0621498823165894, 0.16613730788230896, 0.3674004077911377, -0.19930964708328247, -2.957179546356201, -0.49971821904182434, -0.11906328052282333, 1.2738033533096313, -0.16392023861408234, 0.2798795998096466, 0.04508465528488159]} +{"t": 25.041, "q": [-0.31378090381622314, -0.013391653075814247, 0.011342935264110565, 0.6305769085884094, -0.34134793281555176, 0.006796952802687883, -0.35821521282196045, 0.004192880820482969, -0.0006695947959087789, 0.616864800453186, -0.3019034266471863, 0.0006032953970134258, 0.004379149992018938, 0.04715992510318756, -0.05618709325790405, -2.7736051082611084, 0.5861843824386597, 0.22092919051647186, 1.0620899200439453, 0.16613730788230896, 0.3674004077911377, -0.19929766654968262, -2.9571316242218018, -0.4997301995754242, -0.11908724904060364, 1.2738033533096313, -0.1639561802148819, 0.2799035608768463, 0.04506068676710129]} +{"t": 25.0577, "q": [-0.31377238035202026, -0.013383129611611366, 0.011342935264110565, 0.6305769085884094, -0.341347873210907, 0.006811488885432482, -0.35820668935775757, 0.004192880820482969, -0.0006428110064007342, 0.616864800453186, -0.3019282817840576, 0.0006034648977220058, 0.004405933897942305, 0.04716753214597702, -0.05619225651025772, -2.773557186126709, 0.5862683057785034, 0.22090522944927216, 1.0620540380477905, 0.1661253273487091, 0.3674004077911377, -0.19928568601608276, -2.9571316242218018, -0.49971821904182434, -0.11908724904060364, 1.2737913131713867, -0.1639082431793213, 0.279927521944046, 0.04507267102599144]} +{"t": 25.0744, "q": [-0.31377238035202026, -0.013400174677371979, 0.011342935264110565, 0.6305513381958008, -0.341347873210907, 0.006811488885432482, -0.35820668935775757, 0.004209924954921007, -0.0006294191116467118, 0.6168562769889832, -0.3019489347934723, 0.0005963778239674866, 0.004432717338204384, 0.0471523217856884, -0.056181930005550385, -2.773569107055664, 0.5862683057785034, 0.22088125348091125, 1.0619940757751465, 0.16613730788230896, 0.3674004077911377, -0.19930964708328247, -2.9571316242218018, -0.49971821904182434, -0.11909922957420349, 1.2738033533096313, -0.16388428211212158, 0.27991554141044617, 0.045048702508211136]} +{"t": 25.0911, "q": [-0.3137553334236145, -0.013400174677371979, 0.011342935264110565, 0.6305257678031921, -0.341347873210907, 0.006811488885432482, -0.35820668935775757, 0.004201402887701988, -0.0006294191116467118, 0.616864800453186, -0.3019613027572632, 0.0005892282933928072, 0.004419325385242701, 0.04716753214597702, -0.05619225651025772, -2.773569107055664, 0.5863641500473022, 0.220917209982872, 1.0619701147079468, 0.1661253273487091, 0.36741238832473755, -0.19928568601608276, -2.9571316242218018, -0.49974218010902405, -0.11908724904060364, 1.2738152742385864, -0.1639082431793213, 0.279927521944046, 0.04507267102599144]} +{"t": 25.1079, "q": [-0.31377238035202026, -0.013383129611611366, 0.01132954377681017, 0.6305087208747864, -0.3413437306880951, 0.00681879511103034, -0.3581981658935547, 0.0041673146188259125, -0.0006294191116467118, 0.616864800453186, -0.30195721983909607, 0.0005964403389953077, 0.004446109291166067, 0.04716753214597702, -0.05619225651025772, -2.773545265197754, 0.5863401889801025, 0.22088125348091125, 1.0620180368423462, 0.16614930331707, 0.3674483299255371, -0.19928568601608276, -2.9570837020874023, -0.4997301995754242, -0.11909922957420349, 1.2738033533096313, -0.16388428211212158, 0.27991554141044617, 0.04508465528488159]} +{"t": 25.1247, "q": [-0.313721239566803, -0.013400174677371979, 0.01132954377681017, 0.6305087208747864, -0.341347873210907, 0.006811488885432482, -0.3581981658935547, 0.0041587925516068935, -0.0006294191116467118, 0.6168562769889832, -0.3019694983959198, 0.0005747862160205841, 0.004432717338204384, 0.04718274250626564, -0.05620258301496506, -2.7735211849212646, 0.5863881707191467, 0.22092919051647186, 1.062041997909546, 0.16614930331707, 0.36750826239585876, -0.19927369058132172, -2.9571075439453125, -0.4997301995754242, -0.11908724904060364, 1.273827314376831, -0.16392023861408234, 0.2799035608768463, 0.04508465528488159]} +{"t": 25.1414, "q": [-0.31369566917419434, -0.013400174677371979, 0.01132954377681017, 0.6305001974105835, -0.34134382009506226, 0.006804259493947029, -0.3581811189651489, 0.0041673146188259125, -0.0006294191116467118, 0.616864800453186, -0.3019654154777527, 0.0005819982616230845, 0.004432717338204384, 0.04717512056231499, -0.05618748068809509, -2.7735092639923096, 0.5863641500473022, 0.22085729241371155, 1.0620899200439453, 0.16617326438426971, 0.3676520586013794, -0.19927369058132172, -2.9570956230163574, -0.49971821904182434, -0.11909922957420349, 1.2738033533096313, -0.1639561802148819, 0.27991554141044617, 0.045108623802661896]} +{"t": 25.1581, "q": [-0.3137127161026001, -0.01340869627892971, 0.01132954377681017, 0.6304831504821777, -0.341347873210907, 0.006811488885432482, -0.35820668935775757, 0.0041673146188259125, -0.0006294191116467118, 0.6168477535247803, -0.3019613027572632, 0.0005892282933928072, 0.004379149992018938, 0.04717513546347618, -0.05619741976261139, -2.7734732627868652, 0.5864241123199463, 0.22092919051647186, 1.0620899200439453, 0.16618524491786957, 0.36775991320610046, -0.19927369058132172, -2.957071542739868, -0.49971821904182434, -0.1191231980919838, 1.2738152742385864, -0.1639322191476822, 0.27991554141044617, 0.045108623802661896]} +{"t": 25.1749, "q": [-0.313721239566803, -0.013391653075814247, 0.011302759870886803, 0.6305001974105835, -0.341347873210907, 0.006811488885432482, -0.3581981658935547, 0.0041673146188259125, -0.0006294191116467118, 0.6168477535247803, -0.3019613027572632, 0.0005892282933928072, 0.00445950124412775, 0.047182705253362656, -0.056182704865932465, -2.7734134197235107, 0.5864360928535461, 0.2208932340145111, 1.0620899200439453, 0.16620922088623047, 0.3678557872772217, -0.19927369058132172, -2.957059621810913, -0.4997301995754242, -0.11907526105642319, 1.2737913131713867, -0.16387230157852173, 0.2799035608768463, 0.045096639543771744]} +{"t": 25.1916, "q": [-0.31368714570999146, -0.013400174677371979, 0.011275975964963436, 0.6304916739463806, -0.341347873210907, 0.006811488885432482, -0.35816407203674316, 0.0041587925516068935, -0.0006294191116467118, 0.6168477535247803, -0.3019613027572632, 0.0005892282933928072, 0.00445950124412775, 0.04717512056231499, -0.05618748068809509, -2.7733774185180664, 0.5865678787231445, 0.22098910808563232, 1.0621259212493896, 0.16622120141983032, 0.36803555488586426, -0.19926171004772186, -2.9570116996765137, -0.49971821904182434, -0.11907526105642319, 1.2738631963729858, -0.16387230157852173, 0.27991554141044617, 0.04512060806155205]} +{"t": 25.2085, "q": [-0.31369566917419434, -0.013391653075814247, 0.011302759870886803, 0.6304916739463806, -0.34133976697921753, 0.0067970301024615765, -0.3581811189651489, 0.0041673146188259125, -0.0006428110064007342, 0.6168477535247803, -0.3019654154777527, 0.0005819982616230845, 0.004379149992018938, 0.04716751351952553, -0.056182313710451126, -2.773341417312622, 0.5866158604621887, 0.22095316648483276, 1.0621498823165894, 0.16617326438426971, 0.36823928356170654, -0.19926171004772186, -2.9570236206054688, -0.4996822774410248, -0.11906328052282333, 1.273827314376831, -0.16386030614376068, 0.27991554141044617, 0.045108623802661896]} +{"t": 25.2252, "q": [-0.31368714570999146, -0.013391653075814247, 0.011302759870886803, 0.6304916739463806, -0.3413437306880951, 0.00681879511103034, -0.35817259550094604, 0.0041673146188259125, -0.0006160272168926895, 0.6168307065963745, -0.3019654154777527, 0.0005819982616230845, 0.004446109291166067, 0.04716753214597702, -0.05619225651025772, -2.7733054161071777, 0.586675763130188, 0.220917209982872, 1.0621858835220337, 0.16618524491786957, 0.36844301223754883, -0.199249729514122, -2.9570236206054688, -0.4996583163738251, -0.1191231980919838, 1.2738152742385864, -0.16387230157852173, 0.2799395024776459, 0.04508465528488159]} +{"t": 25.242, "q": [-0.3136700987815857, -0.013417219743132591, 0.011316152289509773, 0.6304746270179749, -0.3413437306880951, 0.00681879511103034, -0.3581811189651489, 0.004141747951507568, -0.0006294191116467118, 0.6168221831321716, -0.3019987940788269, 0.0006257261848077178, 0.004432717338204384, 0.04716753214597702, -0.05619225651025772, -2.7732815742492676, 0.586675763130188, 0.22097712755203247, 1.062161922454834, 0.16622120141983032, 0.3687666058540344, -0.199249729514122, -2.9570236206054688, -0.49964630603790283, -0.1191231980919838, 1.2738152742385864, -0.1639082431793213, 0.27991554141044617, 0.04512060806155205]} +{"t": 25.2588, "q": [-0.3136700987815857, -0.013417219743132591, 0.011289368383586407, 0.630466103553772, -0.341347873210907, 0.006811488885432482, -0.35816407203674316, 0.0041161817498505116, -0.0006294191116467118, 0.6168136596679688, -0.30198633670806885, 0.0006183891091495752, 0.004446109291166067, 0.047152359038591385, -0.05620180815458298, -2.7732696533203125, 0.5866877436637878, 0.22092919051647186, 1.0621379613876343, 0.16624517738819122, 0.3689703345298767, -0.1992257535457611, -2.957059621810913, -0.4996223449707031, -0.11906328052282333, 1.2738033533096313, -0.16386030614376068, 0.279927521944046, 0.04514457657933235]} +{"t": 25.2755, "q": [-0.3136786222457886, -0.01340869627892971, 0.011316152289509773, 0.6304831504821777, -0.341347873210907, 0.006811488885432482, -0.35817259550094604, 0.004107659682631493, -0.0006294191116467118, 0.616796612739563, -0.3019947111606598, 0.0006329382304102182, 0.004432717338204384, 0.04715992510318756, -0.05618709325790405, -2.7732815742492676, 0.5866278409957886, 0.22092919051647186, 1.0621379613876343, 0.16624517738819122, 0.36913809180259705, -0.1992257535457611, -2.957047700881958, -0.4995983839035034, -0.11906328052282333, 1.2738033533096313, -0.16388428211212158, 0.279927521944046, 0.045156560838222504]} +{"t": 25.2922, "q": [-0.3136700987815857, -0.013425741344690323, 0.011289368383586407, 0.6304746270179749, -0.3413519859313965, 0.006804182194173336, -0.3581555485725403, 0.004107659682631493, -0.0006294191116467118, 0.616796612739563, -0.3019987940788269, 0.0006257261848077178, 0.0044996771030128, 0.04717513546347618, -0.05619741976261139, -2.7733054161071777, 0.5866038799285889, 0.22094117105007172, 1.0620779991149902, 0.16623318195343018, 0.36928191781044006, -0.19923774898052216, -2.9570236206054688, -0.4995983839035034, -0.11903931200504303, 1.2738033533096313, -0.1639322191476822, 0.279927521944046, 0.04514457657933235]} +{"t": 25.3089, "q": [-0.3136786222457886, -0.013425741344690323, 0.011289368383586407, 0.6304831504821777, -0.341347873210907, 0.006811488885432482, -0.3581555485725403, 0.004090615548193455, -0.0006428110064007342, 0.616796612739563, -0.302028089761734, 0.0006766660953871906, 0.004472893197089434, 0.047159962356090546, -0.056206971406936646, -2.7732815742492676, 0.5866038799285889, 0.22088125348091125, 1.0621259212493896, 0.16625715792179108, 0.3693777918815613, -0.199249729514122, -2.9570116996765137, -0.49958640336990356, -0.11907526105642319, 1.273827314376831, -0.1639322191476822, 0.27991554141044617, 0.04519251361489296]} +{"t": 25.3256, "q": [-0.31365305185317993, -0.01340869627892971, 0.011302759870886803, 0.6304746270179749, -0.3413437306880951, 0.00681879511103034, -0.35812997817993164, 0.0040735709480941296, -0.0006160272168926895, 0.6167795658111572, -0.3020365238189697, 0.0007057018228806555, 0.0045130690559744835, 0.04717513546347618, -0.05619741976261139, -2.773317575454712, 0.5865678787231445, 0.22092919051647186, 1.0621498823165894, 0.16626913845539093, 0.36943772435188293, -0.1992257535457611, -2.9569997787475586, -0.49958640336990356, -0.11906328052282333, 1.2738392353057861, -0.16389626264572144, 0.2799395024776459, 0.045156560838222504]} +{"t": 25.3425, "q": [-0.31364452838897705, -0.01340869627892971, 0.011302759870886803, 0.630466103553772, -0.341347873210907, 0.006811488885432482, -0.35816407203674316, 0.004065048880875111, -0.0006160272168926895, 0.6167710423469543, -0.3020574450492859, 0.0007420926704071462, 0.0045264605432748795, 0.047159962356090546, -0.056206971406936646, -2.773341417312622, 0.5865798592567444, 0.22096514701843262, 1.0621259212493896, 0.16628111898899078, 0.3694497048854828, -0.1992257535457611, -2.9570236206054688, -0.4995264708995819, -0.11906328052282333, 1.2738512754440308, -0.16392023861408234, 0.2799515128135681, 0.045156560838222504]} +{"t": 25.3592, "q": [-0.31363600492477417, -0.013425741344690323, 0.011275975964963436, 0.6304575800895691, -0.3413519859313965, 0.006804182194173336, -0.3581470251083374, 0.004065048880875111, -0.0006160272168926895, 0.6167795658111572, -0.30209919810295105, 0.0008003695984371006, 0.004553244449198246, 0.04715237766504288, -0.056211747229099274, -2.7733774185180664, 0.5865798592567444, 0.22088125348091125, 1.0620899200439453, 0.16628111898899078, 0.36946168541908264, -0.1992257535457611, -2.9570116996765137, -0.49953845143318176, -0.11902732402086258, 1.2738752365112305, -0.1639082431793213, 0.2799515128135681, 0.045168545097112656]} +{"t": 25.376, "q": [-0.31364452838897705, -0.013417219743132591, 0.01126258447766304, 0.6304575800895691, -0.3413519859313965, 0.006804182194173336, -0.3581470251083374, 0.004056526813656092, -0.0006294191116467118, 0.6167625188827515, -0.3022075295448303, 0.0009171291603706777, 0.0045800283551216125, 0.0471675880253315, -0.05622207373380661, -2.773437261581421, 0.5865678787231445, 0.22083331644535065, 1.062173843383789, 0.16624517738819122, 0.369545578956604, -0.19921377301216125, -2.9570116996765137, -0.49951449036598206, -0.11908724904060364, 1.2738631963729858, -0.16394419968128204, 0.2799515128135681, 0.04519251361489296]} +{"t": 25.3927, "q": [-0.31363600492477417, -0.013417219743132591, 0.01126258447766304, 0.6304575800895691, -0.341347873210907, 0.006811488885432482, -0.3581555485725403, 0.004065048880875111, -0.0006160272168926895, 0.6167795658111572, -0.30219918489456177, 0.0009025800391100347, 0.0045800283551216125, 0.04718278348445892, -0.05622246488928795, -2.773437261581421, 0.586531937122345, 0.22085729241371155, 1.0621379613876343, 0.16626913845539093, 0.36958152055740356, -0.19921377301216125, -2.9569997787475586, -0.4995025098323822, -0.11903931200504303, 1.2738991975784302, -0.1639801561832428, 0.27996349334716797, 0.04519251361489296]} +{"t": 25.4094, "q": [-0.31363600492477417, -0.01340869627892971, 0.011209016665816307, 0.6304405331611633, -0.341347873210907, 0.006811488885432482, -0.35817259550094604, 0.004056526813656092, -0.0006026353221386671, 0.6167454719543457, -0.3023115396499634, 0.000997604918666184, 0.004566636402159929, 0.04718278348445892, -0.05622246488928795, -2.773449420928955, 0.5864720344543457, 0.22088125348091125, 1.062041997909546, 0.16625715792179108, 0.369545578956604, -0.1992257535457611, -2.9569637775421143, -0.49949052929878235, -0.11906328052282333, 1.2738752365112305, -0.1639561802148819, 0.2799754738807678, 0.04519251361489296]} +{"t": 25.4262, "q": [-0.31363600492477417, -0.013400174677371979, 0.011209016665816307, 0.6304405331611633, -0.341347873210907, 0.006811488885432482, -0.3581811189651489, 0.004065048880875111, -0.0006026353221386671, 0.6167625188827515, -0.3024452328681946, 0.0012014895910397172, 0.0045130690559744835, 0.047167569398880005, -0.05621213838458061, -2.7734732627868652, 0.5865079760551453, 0.2208692729473114, 1.0620659589767456, 0.16628111898899078, 0.3695215880870819, -0.19921377301216125, -2.9569637775421143, -0.49951449036598206, -0.11906328052282333, 1.2739590406417847, -0.1639322191476822, 0.2799754738807678, 0.04518052935600281]} +{"t": 25.4429, "q": [-0.31364452838897705, -0.013383129611611366, 0.011235800571739674, 0.6304405331611633, -0.3413519859313965, 0.006804182194173336, -0.3581811189651489, 0.004048004746437073, -0.0006160272168926895, 0.6167539954185486, -0.3029012084007263, 0.001994650810956955, 0.004539852496236563, 0.04718278348445892, -0.05622246488928795, -2.7735092639923096, 0.5865199565887451, 0.22083331644535065, 1.0620899200439453, 0.16624517738819122, 0.3694976270198822, -0.1992257535457611, -2.956951856613159, -0.4995025098323822, -0.11902732402086258, 1.273995041847229, -0.1639322191476822, 0.2799754738807678, 0.04518052935600281]} +{"t": 25.4596, "q": [-0.31364452838897705, -0.013383129611611366, 0.011209016665816307, 0.6304405331611633, -0.3413519859313965, 0.006804182194173336, -0.3581811189651489, 0.004056526813656092, -0.0006026353221386671, 0.6167625188827515, -0.3034573495388031, 0.0029189775232225657, 0.004620204214006662, 0.04720557853579521, -0.05622801557183266, -2.773545265197754, 0.5864959955215454, 0.2208213359117508, 1.0620061159133911, 0.16625715792179108, 0.3695215880870819, -0.1992257535457611, -2.956915855407715, -0.4995025098323822, -0.11908724904060364, 1.2740310430526733, -0.16392023861408234, 0.2799874544143677, 0.04519251361489296]} +{"t": 25.4764, "q": [-0.31364452838897705, -0.013391653075814247, 0.011209016665816307, 0.6304405331611633, -0.3413519859313965, 0.006804182194173336, -0.3581811189651489, 0.004082093480974436, -0.0006160272168926895, 0.6167710423469543, -0.30343618988990784, 0.002839126856997609, 0.004700555466115475, 0.0472283773124218, -0.056233566254377365, -2.773677110671997, 0.5864600539207458, 0.2207973599433899, 1.0619940757751465, 0.16626913845539093, 0.369545578956604, -0.199249729514122, -2.9567959308624268, -0.4994785487651825, -0.11902732402086258, 1.2740429639816284, -0.16392023861408234, 0.27999943494796753, 0.04518052935600281]} +{"t": 25.4932, "q": [-0.31360191106796265, -0.013383129611611366, 0.011142057366669178, 0.6304405331611633, -0.34134387969970703, 0.006789723411202431, -0.3581555485725403, 0.004082093480974436, -0.0006428110064007342, 0.6167710423469543, -0.3034278154373169, 0.002824577735736966, 0.004727339372038841, 0.04725117236375809, -0.05623912066221237, -2.7737488746643066, 0.586448073387146, 0.2208213359117508, 1.0618982315063477, 0.16624517738819122, 0.369545578956604, -0.19921377301216125, -2.9566640853881836, -0.49949052929878235, -0.11902732402086258, 1.2740190029144287, -0.16392023861408234, 0.2799874544143677, 0.04519251361489296]} +{"t": 25.5099, "q": [-0.3136189579963684, -0.013374608010053635, 0.011115273460745811, 0.6304490566253662, -0.34133976697921753, 0.0067970301024615765, -0.3581555485725403, 0.0040735709480941296, -0.0006428110064007342, 0.6167795658111572, -0.3033858835697174, 0.002737327478826046, 0.00479429867118597, 0.04724356532096863, -0.056233953684568405, -2.7738208770751953, 0.586448073387146, 0.2208213359117508, 1.0618622303009033, 0.16630509495735168, 0.3695215880870819, -0.1992257535457611, -2.956604242324829, -0.4994785487651825, -0.11906328052282333, 1.2740310430526733, -0.16394419968128204, 0.27999943494796753, 0.04519251361489296]} +{"t": 25.5268, "q": [-0.3136104345321655, -0.013383129611611366, 0.011128664948046207, 0.6304405331611633, -0.34133970737457275, 0.0068115657195448875, -0.3581555485725403, 0.0040735709480941296, -0.0006562029011547565, 0.6167795658111572, -0.3033943474292755, 0.0027663633227348328, 0.004807690624147654, 0.04727394878864288, -0.056234728544950485, -2.773916721343994, 0.5864241123199463, 0.22078537940979004, 1.0618982315063477, 0.16625715792179108, 0.3695215880870819, -0.1992257535457611, -2.956496477127075, -0.49956244230270386, -0.11906328052282333, 1.2740310430526733, -0.16399213671684265, 0.27999943494796753, 0.04518052935600281]} +{"t": 25.5435, "q": [-0.3135848939418793, -0.013374608010053635, 0.011128664948046207, 0.6304320096969604, -0.34133976697921753, 0.0067970301024615765, -0.3581470251083374, 0.004090615548193455, -0.0006695947959087789, 0.6167795658111572, -0.3033985197544098, 0.0027736378833651543, 0.004888041876256466, 0.04737263545393944, -0.05620245635509491, -2.7739765644073486, 0.5864001512527466, 0.22078537940979004, 1.0618382692337036, 0.16622120141983032, 0.36950960755348206, -0.1992257535457611, -2.9564244747161865, -0.4996822774410248, -0.11903931200504303, 1.2740789651870728, -0.1639801561832428, 0.2800114154815674, 0.045168545097112656]} +{"t": 25.5602, "q": [-0.31359341740608215, -0.013374608010053635, 0.011061705648899078, 0.6304490566253662, -0.34133976697921753, 0.0067970301024615765, -0.3581470251083374, 0.004065048880875111, -0.0006695947959087789, 0.6167795658111572, -0.3034234642982483, 0.0027883299626410007, 0.004901433829218149, 0.04753204435110092, -0.0561518520116806, -2.7739765644073486, 0.5863881707191467, 0.22073744237422943, 1.0618382692337036, 0.16626913845539093, 0.36948564648628235, -0.1992257535457611, -2.9564244747161865, -0.4997301995754242, -0.11907526105642319, 1.2740908861160278, -0.16399213671684265, 0.27999943494796753, 0.04519251361489296]} +{"t": 25.5771, "q": [-0.31355932354927063, -0.013366086408495903, 0.011101881042122841, 0.6304490566253662, -0.341335654258728, 0.006804336328059435, -0.3581470251083374, 0.0040735709480941296, -0.0006428110064007342, 0.6167795658111572, -0.3034234642982483, 0.0027883299626410007, 0.004888041876256466, 0.04772939160466194, -0.056077368557453156, -2.773988723754883, 0.5863641500473022, 0.22074942290782928, 1.0618503093719482, 0.16626913845539093, 0.36946168541908264, -0.19923774898052216, -2.9564363956451416, -0.49969425797462463, -0.11902732402086258, 1.274055004119873, -0.1639561802148819, 0.2799754738807678, 0.04520449787378311]} +{"t": 25.5939, "q": [-0.31355932354927063, -0.013366086408495903, 0.011101881042122841, 0.6304490566253662, -0.341335654258728, 0.006804336328059435, -0.35812997817993164, 0.0040735709480941296, -0.0006562029011547565, 0.6167625188827515, -0.30342763662338257, 0.0027956045232713223, 0.004847866017371416, 0.04791923984885216, -0.056057363748550415, -2.7739405632019043, 0.5863641500473022, 0.22074942290782928, 1.0618622303009033, 0.16626913845539093, 0.3694976270198822, -0.1992257535457611, -2.956460475921631, -0.4996583163738251, -0.11906328052282333, 1.2740190029144287, -0.1639561802148819, 0.2799874544143677, 0.04519251361489296]} +{"t": 25.6106, "q": [-0.31355080008506775, -0.013383129611611366, 0.011128664948046207, 0.6304405331611633, -0.34133976697921753, 0.0067970301024615765, -0.3581385016441345, 0.004082093480974436, -0.0006562029011547565, 0.6168136596679688, -0.3034152686595917, 0.0028027540538460016, 0.00479429867118597, 0.04805591329932213, -0.05603102967143059, -2.773904800415039, 0.586304247379303, 0.22074942290782928, 1.0618382692337036, 0.16624517738819122, 0.369545578956604, -0.19923774898052216, -2.9565443992614746, -0.49964630603790283, -0.11903931200504303, 1.2739471197128296, -0.1639561802148819, 0.2799874544143677, 0.04520449787378311]} +{"t": 25.6274, "q": [-0.313533753156662, -0.013366086408495903, 0.011101881042122841, 0.6304490566253662, -0.34134387969970703, 0.006789723411202431, -0.35812997817993164, 0.0040735709480941296, -0.0006428110064007342, 0.6167880892753601, -0.30342763662338257, 0.0027956045232713223, 0.004673771560192108, 0.0481698252260685, -0.056019023060798645, -2.7738687992095947, 0.5861843824386597, 0.22077339887619019, 1.0618622303009033, 0.16623318195343018, 0.3694976270198822, -0.19923774898052216, -2.956616163253784, -0.4996223449707031, -0.11903931200504303, 1.2738991975784302, -0.1639561802148819, 0.2799874544143677, 0.04520449787378311]} +{"t": 25.6442, "q": [-0.3135252296924591, -0.013340519741177559, 0.011101881042122841, 0.6304320096969604, -0.34133976697921753, 0.0067970301024615765, -0.35812997817993164, 0.004090615548193455, -0.0006562029011547565, 0.6168051362037659, -0.3034193515777588, 0.002795542124658823, 0.004646987654268742, 0.04823053255677223, -0.05599075183272362, -2.773772954940796, 0.5860885381698608, 0.22072546184062958, 1.0618503093719482, 0.16623318195343018, 0.3695215880870819, -0.19923774898052216, -2.9567720890045166, -0.49961036443710327, -0.11903931200504303, 1.2738752365112305, -0.16394419968128204, 0.2799754738807678, 0.04519251361489296]} +{"t": 25.6609, "q": [-0.3135167062282562, -0.013331998139619827, 0.011115273460745811, 0.6304490566253662, -0.34133169054985046, 0.006782571319490671, -0.35812997817993164, 0.0041161817498505116, -0.0006428110064007342, 0.6167795658111572, -0.30343174934387207, 0.0027883744332939386, 0.004593420308083296, 0.04823055490851402, -0.05600069463253021, -2.773653030395508, 0.5860286355018616, 0.22071348130702972, 1.061874270439148, 0.16625715792179108, 0.36953359842300415, -0.19923774898052216, -2.9569756984710693, -0.49956244230270386, -0.11897938698530197, 1.273827314376831, -0.1639322191476822, 0.27996349334716797, 0.045216482132673264]} +{"t": 25.6778, "q": [-0.313533753156662, -0.013314953073859215, 0.011075098067522049, 0.6304405331611633, -0.34133976697921753, 0.0067970301024615765, -0.3581555485725403, 0.004133225884288549, -0.0006829866906628013, 0.6167880892753601, -0.3036517798900604, 0.002884230110794306, 0.004620204214006662, 0.04826091602444649, -0.0559915266931057, -2.7736051082611084, 0.5859806537628174, 0.22077339887619019, 1.061934232711792, 0.16626913845539093, 0.3695695400238037, -0.199249729514122, -2.9572155475616455, -0.4994785487651825, -0.11902732402086258, 1.2737913131713867, -0.16394419968128204, 0.2799515128135681, 0.04519251361489296]} +{"t": 25.6945, "q": [-0.3135252296924591, -0.013323476538062096, 0.011048314161598682, 0.6304405331611633, -0.34132757782936096, 0.00678987754508853, -0.3581385016441345, 0.004141747951507568, -0.0006829866906628013, 0.6168051362037659, -0.3036474287509918, 0.0028479823376983404, 0.0045130690559744835, 0.04826091602444649, -0.0559915266931057, -2.7734851837158203, 0.5860645771026611, 0.2207973599433899, 1.061946153640747, 0.16623318195343018, 0.369545578956604, -0.199249729514122, -2.957395315170288, -0.4994785487651825, -0.11901534348726273, 1.2737433910369873, -0.1639322191476822, 0.2799515128135681, 0.04520449787378311]} +{"t": 25.7113, "q": [-0.31349965929985046, -0.01328938640654087, 0.011048314161598682, 0.6304490566253662, -0.34133976697921753, 0.0067970301024615765, -0.35812145471572876, 0.004133225884288549, -0.0006829866906628013, 0.6168221831321716, -0.3036557734012604, 0.0028625314589589834, 0.004539852496236563, 0.04825331270694733, -0.05598636344075203, -2.7733654975891113, 0.5861843824386597, 0.22083331644535065, 1.0619940757751465, 0.16626913845539093, 0.369545578956604, -0.19923774898052216, -2.957526922225952, -0.4995025098323822, -0.11900335550308228, 1.2737313508987427, -0.1639561802148819, 0.2799515128135681, 0.04520449787378311]} +{"t": 25.7281, "q": [-0.3134911358356476, -0.013255298137664795, 0.011048314161598682, 0.6304405331611633, -0.34134387969970703, 0.006789723411202431, -0.35812997817993164, 0.0041587925516068935, -0.0006695947959087789, 0.6168136596679688, -0.3035764694213867, 0.0027532519306987524, 0.004405933897942305, 0.04825331270694733, -0.05598636344075203, -2.7732696533203125, 0.5862443447113037, 0.22090522944927216, 1.0619701147079468, 0.16623318195343018, 0.36953359842300415, -0.199249729514122, -2.957598924636841, -0.49951449036598206, -0.11901534348726273, 1.273707389831543, -0.1639801561832428, 0.27996349334716797, 0.04520449787378311]} +{"t": 25.7448, "q": [-0.3134911358356476, -0.013297909870743752, 0.011101881042122841, 0.6304490566253662, -0.34134387969970703, 0.006789723411202431, -0.35812997817993164, 0.004175836686044931, -0.0006294191116467118, 0.6168136596679688, -0.3035932183265686, 0.0027823501732200384, 0.004245230928063393, 0.04825331270694733, -0.05598636344075203, -2.7731378078460693, 0.5863401889801025, 0.22083331644535065, 1.0619701147079468, 0.16626913845539093, 0.36955755949020386, -0.199249729514122, -2.9578027725219727, -0.4994785487651825, -0.11900335550308228, 1.273695468902588, -0.16394419968128204, 0.27996349334716797, 0.04519251361489296]} +{"t": 25.7616, "q": [-0.31346556544303894, -0.013297909870743752, 0.011155448853969574, 0.6304575800895691, -0.34133976697921753, 0.0067970301024615765, -0.35812997817993164, 0.0041673146188259125, -0.0006160272168926895, 0.6168051362037659, -0.3035764694213867, 0.0027532519306987524, 0.004111311864107847, 0.04825331270694733, -0.05598636344075203, -2.7729458808898926, 0.5863401889801025, 0.22085729241371155, 1.0619940757751465, 0.16628111898899078, 0.36955755949020386, -0.199249729514122, -2.9581263065338135, -0.49946656823158264, -0.11900335550308228, 1.2736115455627441, -0.1639561802148819, 0.27996349334716797, 0.04518052935600281]} +{"t": 25.7785, "q": [-0.31345704197883606, -0.013306431472301483, 0.01118223275989294, 0.6304405331611633, -0.341335654258728, 0.006804336328059435, -0.3580703139305115, 0.0041673146188259125, -0.0005758515326306224, 0.6168051362037659, -0.3035682737827301, 0.0027676760219037533, 0.004084527958184481, 0.04824572801589966, -0.05599113926291466, -2.7727303504943848, 0.5863881707191467, 0.22088125348091125, 1.0619821548461914, 0.16626913845539093, 0.3695695400238037, -0.199249729514122, -2.958174228668213, -0.49944257736206055, -0.11894343793392181, 1.2735755443572998, -0.16394419968128204, 0.27996349334716797, 0.04519251361489296]} +{"t": 25.7952, "q": [-0.3134740889072418, -0.013323476538062096, 0.011168841272592545, 0.6304575800895691, -0.34133976697921753, 0.0067970301024615765, -0.3580532670021057, 0.0041587925516068935, -0.0005892434273846447, 0.6167625188827515, -0.3035641014575958, 0.0027604014612734318, 0.004178271628916264, 0.04825331270694733, -0.05598636344075203, -2.772538423538208, 0.5863641500473022, 0.2208932340145111, 1.0620061159133911, 0.16629311442375183, 0.3695695400238037, -0.199249729514122, -2.9583899974823, -0.49931076169013977, -0.11897938698530197, 1.273599624633789, -0.1639801561832428, 0.2799515128135681, 0.04519251361489296]} +{"t": 25.812, "q": [-0.3134740889072418, -0.013357564806938171, 0.01118223275989294, 0.6304490566253662, -0.341335654258728, 0.006804336328059435, -0.3580106794834137, 0.0041247038170695305, -0.0006026353221386671, 0.616796612739563, -0.30351388454437256, 0.0026730706449598074, 0.004245230928063393, 0.04822292923927307, -0.05598558858036995, -2.772442579269409, 0.5863641500473022, 0.22085729241371155, 1.0619821548461914, 0.16625715792179108, 0.36958152055740356, -0.19923774898052216, -2.9584498405456543, -0.4985557496547699, -0.11891946941614151, 1.2735755443572998, -0.16394419968128204, 0.2799395024776459, 0.045216482132673264]} +{"t": 25.8287, "q": [-0.31346556544303894, -0.013331998139619827, 0.011168841272592545, 0.6304575800895691, -0.34133976697921753, 0.0067970301024615765, -0.3580106794834137, 0.004141747951507568, -0.0005758515326306224, 0.6167795658111572, -0.3035057783126831, 0.0027019993867725134, 0.004231838975101709, 0.04823053255677223, -0.05599075183272362, -2.7723586559295654, 0.5864241123199463, 0.22088125348091125, 1.0619701147079468, 0.16628111898899078, 0.36958152055740356, -0.199249729514122, -2.9585816860198975, -0.4976329803466797, -0.1188475638628006, 1.2735515832901, -0.1639561802148819, 0.279927521944046, 0.045228466391563416]} +{"t": 25.8454, "q": [-0.3134485185146332, -0.01334904134273529, 0.011195625178515911, 0.6304405331611633, -0.341335654258728, 0.006804336328059435, -0.3579765856266022, 0.0041161817498505116, -0.0005624596378766, 0.6167625188827515, -0.30347684025764465, 0.0027090238872915506, 0.004272014833986759, 0.048207756131887436, -0.055995143949985504, -2.7723228931427, 0.5864600539207458, 0.2208452969789505, 1.061946153640747, 0.16626913845539093, 0.36955755949020386, -0.19923774898052216, -2.958641529083252, -0.4966622591018677, -0.11885954439640045, 1.2735755443572998, -0.16392023861408234, 0.2799395024776459, 0.045228466391563416]} +{"t": 25.8623, "q": [-0.3134740889072418, -0.013383129611611366, 0.011235800571739674, 0.6304405331611633, -0.34133976697921753, 0.0067970301024615765, -0.35798510909080505, 0.0041161817498505116, -0.0005624596378766, 0.6167539954185486, -0.30346864461898804, 0.0027234479784965515, 0.004272014833986759, 0.048192545771598816, -0.05598481371998787, -2.772274971008301, 0.586448073387146, 0.22085729241371155, 1.061946153640747, 0.16624517738819122, 0.36955755949020386, -0.199249729514122, -2.95876145362854, -0.49569153785705566, -0.1188475638628006, 1.2735515832901, -0.16396817564964294, 0.27996349334716797, 0.04526441916823387]} +{"t": 25.879, "q": [-0.31346556544303894, -0.013383129611611366, 0.01124919205904007, 0.6304575800895691, -0.34133976697921753, 0.0067970301024615765, -0.35795101523399353, 0.004090615548193455, -0.0005490677431225777, 0.6167113780975342, -0.303477019071579, 0.0027379970997571945, 0.004205055069178343, 0.048177387565374374, -0.05600430443882942, -2.7722389698028564, 0.5864600539207458, 0.22083331644535065, 1.0619581937789917, 0.16628111898899078, 0.36955755949020386, -0.199249729514122, -2.958869218826294, -0.49499642848968506, -0.11879962682723999, 1.2735515832901, -0.16392023861408234, 0.2799395024776459, 0.04526441916823387]} +{"t": 25.8957, "q": [-0.31345704197883606, -0.013400174677371979, 0.01124919205904007, 0.6304490566253662, -0.34134387969970703, 0.006789723411202431, -0.35789987444877625, 0.0040735709480941296, -0.0005490677431225777, 0.6167199015617371, -0.3034563362598419, 0.002745102159678936, 0.00416487967595458, 0.048162177205085754, -0.055993977934122086, -2.7721431255340576, 0.5865439176559448, 0.22085729241371155, 1.0619940757751465, 0.16626913845539093, 0.369545578956604, -0.199249729514122, -2.9590251445770264, -0.49434930086135864, -0.11875168979167938, 1.2735515832901, -0.1639322191476822, 0.2799395024776459, 0.045228466391563416]} +{"t": 25.9125, "q": [-0.3134314715862274, -0.01340869627892971, 0.01124919205904007, 0.6304575800895691, -0.341335654258728, 0.006804336328059435, -0.35784873366355896, 0.004056526813656092, -0.0005490677431225777, 0.6166943311691284, -0.30346471071243286, 0.002759651280939579, 0.0041916631162166595, 0.04814700409770012, -0.05600352957844734, -2.772047281265259, 0.5866038799285889, 0.22088125348091125, 1.0619821548461914, 0.16629311442375183, 0.369545578956604, -0.19926171004772186, -2.959073066711426, -0.4938819110393524, -0.11875168979167938, 1.2735157012939453, -0.1639561802148819, 0.2799395024776459, 0.04525243490934372]} +{"t": 25.9293, "q": [-0.3134314715862274, -0.013442784547805786, 0.011275975964963436, 0.6304575800895691, -0.34134793281555176, 0.006796952802687883, -0.3578317165374756, 0.004056526813656092, -0.0005356758483685553, 0.6166943311691284, -0.30345651507377625, 0.00277407537214458, 0.004178271628916264, 0.04810905456542969, -0.056017473340034485, -2.7719032764434814, 0.5866398215293884, 0.22083331644535065, 1.0619940757751465, 0.16628111898899078, 0.3695695400238037, -0.19923774898052216, -2.9590251445770264, -0.4936062693595886, -0.11876367032527924, 1.2735276222229004, -0.1639561802148819, 0.2799395024776459, 0.045228466391563416]} +{"t": 25.9461, "q": [-0.31342294812202454, -0.013417219743132591, 0.01126258447766304, 0.6304490566253662, -0.341347873210907, 0.006811488885432482, -0.3578146696090698, 0.004030960611999035, -0.0005356758483685553, 0.6166602969169617, -0.3034689724445343, 0.0027814123313874006, 0.004205055069178343, 0.04807110130786896, -0.05603141337633133, -2.7718074321746826, 0.5866637825965881, 0.22083331644535065, 1.0619940757751465, 0.16629311442375183, 0.36955755949020386, -0.19923774898052216, -2.959073066711426, -0.4934145212173462, -0.11873970180749893, 1.2735157012939453, -0.1639322191476822, 0.27996349334716797, 0.04524045065045357]} +{"t": 25.9629, "q": [-0.3134314715862274, -0.013400174677371979, 0.01126258447766304, 0.630466103553772, -0.3413518965244293, 0.006818718276917934, -0.35780614614486694, 0.004022438544780016, -0.000522283953614533, 0.6166262030601501, -0.30348578095436096, 0.0028250152245163918, 0.00416487967595458, 0.0480634979903698, -0.05602625384926796, -2.771723508834839, 0.5867236852645874, 0.2208452969789505, 1.0619701147079468, 0.1663290560245514, 0.36955755949020386, -0.19926171004772186, -2.9590609073638916, -0.4933426082134247, -0.11872772127389908, 1.2735157012939453, -0.16394419968128204, 0.2799515128135681, 0.045228466391563416]} +{"t": 25.9798, "q": [-0.31340593099594116, -0.013442784547805786, 0.011275975964963436, 0.630466103553772, -0.341347873210907, 0.006811488885432482, -0.35780614614486694, 0.004013916477560997, -0.000522283953614533, 0.6166432499885559, -0.30347758531570435, 0.0028394395485520363, 0.0041916631162166595, 0.04805591329932213, -0.05603102967143059, -2.7716517448425293, 0.586759626865387, 0.22085729241371155, 1.0619581937789917, 0.16628111898899078, 0.36958152055740356, -0.199249729514122, -2.959108829498291, -0.4933066666126251, -0.11873970180749893, 1.2735036611557007, -0.1639322191476822, 0.279927521944046, 0.045216482132673264]} +{"t": 25.9966, "q": [-0.31340593099594116, -0.013434262946248055, 0.011289368383586407, 0.6304746270179749, -0.3413518965244293, 0.006818718276917934, -0.35780614614486694, 0.003979827743023634, -0.0005088920588605106, 0.6166262030601501, -0.3034899830818176, 0.0028322897851467133, 0.004178271628916264, 0.04805589094758034, -0.05602108687162399, -2.771531820297241, 0.586819589138031, 0.22088125348091125, 1.061934232711792, 0.16630509495735168, 0.3695215880870819, -0.19926171004772186, -2.959108829498291, -0.49333062767982483, -0.11876367032527924, 1.2734917402267456, -0.16394419968128204, 0.27991554141044617, 0.045216482132673264]} +{"t": 26.0133, "q": [-0.3134314715862274, -0.013425741344690323, 0.011302759870886803, 0.6304746270179749, -0.341347873210907, 0.006811488885432482, -0.3578146696090698, 0.003971305675804615, -0.0004955001641064882, 0.6166176795959473, -0.3034983277320862, 0.0028468389064073563, 0.0041916631162166595, 0.0480634979903698, -0.05602625384926796, -2.771507978439331, 0.5868794918060303, 0.22085729241371155, 1.061934232711792, 0.16631707549095154, 0.3695215880870819, -0.19926171004772186, -2.959120988845825, -0.4933665990829468, -0.11879962682723999, 1.2735036611557007, -0.1639561802148819, 0.27996349334716797, 0.045216482132673264]} +{"t": 26.0301, "q": [-0.31341442465782166, -0.013451308012008667, 0.011275975964963436, 0.630466103553772, -0.3413518965244293, 0.006818718276917934, -0.35784024000167847, 0.003954261541366577, -0.000522283953614533, 0.6165835857391357, -0.3035692870616913, 0.0029415693134069443, 0.004231838975101709, 0.04804832488298416, -0.056035805493593216, -2.771495819091797, 0.5868555307388306, 0.22092919051647186, 1.0619102716445923, 0.16631707549095154, 0.3695215880870819, -0.199249729514122, -2.959120988845825, -0.49345046281814575, -0.1188235953450203, 1.2734917402267456, -0.16394419968128204, 0.279927521944046, 0.045216482132673264]} +{"t": 26.0469, "q": [-0.31340593099594116, -0.013425741344690323, 0.01126258447766304, 0.6304575800895691, -0.3413477838039398, 0.006826024502515793, -0.35784024000167847, 0.003954261541366577, -0.0005088920588605106, 0.6166091561317444, -0.30365294218063354, 0.003087114542722702, 0.004245230928063393, 0.04804074019193649, -0.056040581315755844, -2.7714719772338867, 0.5868435502052307, 0.22088125348091125, 1.0619102716445923, 0.1663290560245514, 0.36950960755348206, -0.19923774898052216, -2.9590489864349365, -0.4935583174228668, -0.1188235953450203, 1.273479700088501, -0.1639561802148819, 0.2799395024776459, 0.04525243490934372]} +{"t": 26.0636, "q": [-0.31340593099594116, -0.013417219743132591, 0.011235800571739674, 0.6304575800895691, -0.3413437306880951, 0.00681879511103034, -0.35784873366355896, 0.003971305675804615, -0.0005356758483685553, 0.6166006326675415, -0.3037073314189911, 0.003181701758876443, 0.004245230928063393, 0.04804074019193649, -0.056040581315755844, -2.771495819091797, 0.5868435502052307, 0.22088125348091125, 1.0618382692337036, 0.16630509495735168, 0.36943772435188293, -0.19926171004772186, -2.9590251445770264, -0.4936422109603882, -0.11879962682723999, 1.2734917402267456, -0.1639322191476822, 0.2799395024776459, 0.045228466391563416]} +{"t": 26.0806, "q": [-0.31340593099594116, -0.013400174677371979, 0.01118223275989294, 0.630466103553772, -0.341347873210907, 0.006811488885432482, -0.3578743040561676, 0.003971305675804615, -0.0005624596378766, 0.6166176795959473, -0.30376163125038147, 0.003261820413172245, 0.0042854067869484425, 0.04804832488298416, -0.056035805493593216, -2.771507978439331, 0.5868435502052307, 0.2208213359117508, 1.0618382692337036, 0.1663290560245514, 0.3694257140159607, -0.19926171004772186, -2.9590489864349365, -0.4936422109603882, -0.1188235953450203, 1.2734917402267456, -0.1639561802148819, 0.2799395024776459, 0.045228466391563416]} +{"t": 26.0973, "q": [-0.31341442465782166, -0.013400174677371979, 0.01118223275989294, 0.630466103553772, -0.3413518965244293, 0.006818718276917934, -0.35784873366355896, 0.004013916477560997, -0.0005758515326306224, 0.6166262030601501, -0.30374473333358765, 0.0032037131022661924, 0.0042854067869484425, 0.04805595055222511, -0.05605090782046318, -2.771531820297241, 0.586819589138031, 0.22083331644535065, 1.061814308166504, 0.16626913845539093, 0.3694257140159607, -0.19926171004772186, -2.959084987640381, -0.49363023042678833, -0.11877565830945969, 1.2734917402267456, -0.16394419968128204, 0.279927521944046, 0.04525243490934372]} +{"t": 26.1141, "q": [-0.31340593099594116, -0.013357564806938171, 0.011088489554822445, 0.6304490566253662, -0.3413437306880951, 0.00681879511103034, -0.35784873366355896, 0.004039482679218054, -0.0005758515326306224, 0.6166176795959473, -0.3037654757499695, 0.003211112692952156, 0.0043523660860955715, 0.04804074019193649, -0.056040581315755844, -2.771531820297241, 0.5867836475372314, 0.2208213359117508, 1.0617903470993042, 0.16629311442375183, 0.36941373348236084, -0.19927369058132172, -2.9590609073638916, -0.4936182498931885, -0.11878763884305954, 1.2734917402267456, -0.16394419968128204, 0.279927521944046, 0.04526441916823387]} +{"t": 26.131, "q": [-0.3133888840675354, -0.01334904134273529, 0.011075098067522049, 0.6304575800895691, -0.341347873210907, 0.006811488885432482, -0.35785725712776184, 0.004056526813656092, -0.0006294191116467118, 0.6166262030601501, -0.3037654757499695, 0.003211112692952156, 0.004365758039057255, 0.04805592820048332, -0.056040968745946884, -2.7715559005737305, 0.5867476463317871, 0.22083331644535065, 1.0617784261703491, 0.16629311442375183, 0.3693658113479614, -0.19926171004772186, -2.959096908569336, -0.49359428882598877, -0.11876367032527924, 1.2734557390213013, -0.16392023861408234, 0.2799035608768463, 0.04527640342712402]} +{"t": 26.1477, "q": [-0.3133888840675354, -0.013340519741177559, 0.011048314161598682, 0.6304490566253662, -0.341347873210907, 0.006811488885432482, -0.35785725712776184, 0.004065048880875111, -0.0006562029011547565, 0.616634726524353, -0.3037611246109009, 0.0031748649198561907, 0.004325582180172205, 0.048048343509435654, -0.05604574456810951, -2.7715559005737305, 0.5866637825965881, 0.22080935537815094, 1.0617784261703491, 0.16631707549095154, 0.3693298399448395, -0.19927369058132172, -2.9591448307037354, -0.4935583174228668, -0.11876367032527924, 1.273467779159546, -0.1639322191476822, 0.279927521944046, 0.045288387686014175]} +{"t": 26.1645, "q": [-0.3133888840675354, -0.013323476538062096, 0.011048314161598682, 0.6304575800895691, -0.341347873210907, 0.006811488885432482, -0.35784024000167847, 0.004065048880875111, -0.0006294191116467118, 0.616634726524353, -0.3036816418170929, 0.0030366121791303158, 0.0042854067869484425, 0.04805595055222511, -0.05605090782046318, -2.7715678215026855, 0.5866038799285889, 0.22083331644535065, 1.0617544651031494, 0.16625715792179108, 0.3693418502807617, -0.19926171004772186, -2.959120988845825, -0.49357032775878906, -0.11878763884305954, 1.2734557390213013, -0.16392023861408234, 0.27991554141044617, 0.045288387686014175]} +{"t": 26.1812, "q": [-0.3133974075317383, -0.013331998139619827, 0.011061705648899078, 0.6304575800895691, -0.341347873210907, 0.006811488885432482, -0.35784873366355896, 0.004065048880875111, -0.0006294191116467118, 0.616634726524353, -0.3036734461784363, 0.0030510362703353167, 0.0042854067869484425, 0.04805592820048332, -0.056040968745946884, -2.771531820297241, 0.5865798592567444, 0.2207973599433899, 1.061718463897705, 0.16626913845539093, 0.3693178594112396, -0.19923774898052216, -2.9591689109802246, -0.49357032775878906, -0.11877565830945969, 1.2734078168869019, -0.16394419968128204, 0.27991554141044617, 0.045228466391563416]} +{"t": 26.1979, "q": [-0.3133803606033325, -0.013331998139619827, 0.011101881042122841, 0.6304575800895691, -0.341347873210907, 0.006811488885432482, -0.35784873366355896, 0.004065048880875111, -0.0006294191116467118, 0.616634726524353, -0.30366507172584534, 0.0030364692211151123, 0.004245230928063393, 0.04807113856077194, -0.05605129525065422, -2.771531820297241, 0.5865678787231445, 0.2207973599433899, 1.0616945028305054, 0.16628111898899078, 0.3692938983440399, -0.19926171004772186, -2.959108829498291, -0.4936062693595886, -0.11883557587862015, 1.2734198570251465, -0.16392023861408234, 0.279927521944046, 0.04526441916823387]} +{"t": 26.2147, "q": [-0.31340593099594116, -0.013340519741177559, 0.011101881042122841, 0.6304746270179749, -0.341347873210907, 0.006811488885432482, -0.35785725712776184, 0.004048004746437073, -0.0005758515326306224, 0.616634726524353, -0.3037569522857666, 0.003167590359225869, 0.004245230928063393, 0.04805592820048332, -0.056040968745946884, -2.771531820297241, 0.5865678787231445, 0.22083331644535065, 1.061718463897705, 0.16628111898899078, 0.3693178594112396, -0.19927369058132172, -2.9590489864349365, -0.4936662018299103, -0.11879962682723999, 1.2734198570251465, -0.16394419968128204, 0.279927521944046, 0.04524045065045357]} +{"t": 26.2314, "q": [-0.3133974075317383, -0.013331998139619827, 0.011115273460745811, 0.630466103553772, -0.341347873210907, 0.006811488885432482, -0.35785725712776184, 0.004048004746437073, -0.0005892434273846447, 0.6166262030601501, -0.30374449491500854, 0.003160253167152405, 0.004231838975101709, 0.04807113856077194, -0.05605129525065422, -2.771495819091797, 0.5865199565887451, 0.22088125348091125, 1.0617544651031494, 0.16624517738819122, 0.3693178594112396, -0.19926171004772186, -2.959001064300537, -0.49372610449790955, -0.1188235953450203, 1.2734198570251465, -0.16394419968128204, 0.2799395024776459, 0.04524045065045357]} +{"t": 26.2484, "q": [-0.3133803606033325, -0.013357564806938171, 0.011128664948046207, 0.630466103553772, -0.3413437306880951, 0.00681879511103034, -0.3578317165374756, 0.0040735709480941296, -0.0005892434273846447, 0.616634726524353, -0.3037196397781372, 0.0031600475776940584, 0.004272014833986759, 0.04806351661682129, -0.05603618919849396, -2.771495819091797, 0.5865678787231445, 0.2208213359117508, 1.0617663860321045, 0.16620922088623047, 0.3693298399448395, -0.19926171004772186, -2.9590370655059814, -0.4938339591026306, -0.1188235953450203, 1.2734317779541016, -0.16396817564964294, 0.279927521944046, 0.04525243490934372]} +{"t": 26.2651, "q": [-0.31337183713912964, -0.013331998139619827, 0.011128664948046207, 0.6304746270179749, -0.34134387969970703, 0.006789723411202431, -0.35784024000167847, 0.004048004746437073, -0.0005892434273846447, 0.6166262030601501, -0.3036777973175049, 0.003087284043431282, 0.004245230928063393, 0.04807112365961075, -0.056041356176137924, -2.7714478969573975, 0.5865798592567444, 0.22085729241371155, 1.0617424249649048, 0.16623318195343018, 0.3693418502807617, -0.19927369058132172, -2.959096908569336, -0.49389389157295227, -0.1188235953450203, 1.2734317779541016, -0.1639322191476822, 0.27996349334716797, 0.045228466391563416]} +{"t": 26.2819, "q": [-0.3133888840675354, -0.013357564806938171, 0.011142057366669178, 0.630466103553772, -0.341347873210907, 0.006811488885432482, -0.35784873366355896, 0.004048004746437073, -0.0005758515326306224, 0.616634726524353, -0.3036736249923706, 0.0030800094828009605, 0.004245230928063393, 0.04807110130786896, -0.05603141337633133, -2.7714240550994873, 0.5866038799285889, 0.22088125348091125, 1.0617544651031494, 0.16624517738819122, 0.3693178594112396, -0.19926171004772186, -2.958989143371582, -0.4939658045768738, -0.11877565830945969, 1.2734317779541016, -0.1639801561832428, 0.279927521944046, 0.04527640342712402]} +{"t": 26.2986, "q": [-0.3133888840675354, -0.013357564806938171, 0.011142057366669178, 0.6304575800895691, -0.3413437306880951, 0.00681879511103034, -0.35784024000167847, 0.004056526813656092, -0.0005758515326306224, 0.6166091561317444, -0.30366525053977966, 0.0030654603615403175, 0.004231838975101709, 0.04806351661682129, -0.05603618919849396, -2.7714240550994873, 0.5865798592567444, 0.2208213359117508, 1.0617424249649048, 0.16623318195343018, 0.3692938983440399, -0.19927369058132172, -2.958989143371582, -0.49402570724487305, -0.11881160736083984, 1.2734317779541016, -0.1639561802148819, 0.2799395024776459, 0.04524045065045357]} +{"t": 26.3153, "q": [-0.3133803606033325, -0.013357564806938171, 0.011142057366669178, 0.630466103553772, -0.34133976697921753, 0.0067970301024615765, -0.35784873366355896, 0.004048004746437073, -0.0005758515326306224, 0.616634726524353, -0.30366525053977966, 0.0030654603615403175, 0.004258622881025076, 0.04808631166815758, -0.056041743606328964, -2.7714240550994873, 0.5865678787231445, 0.2207973599433899, 1.061718463897705, 0.16623318195343018, 0.36928191781044006, -0.19926171004772186, -2.9589531421661377, -0.49404969811439514, -0.1188475638628006, 1.2734198570251465, -0.1639322191476822, 0.27991554141044617, 0.04526441916823387]} +{"t": 26.332, "q": [-0.3133803606033325, -0.013357564806938171, 0.011142057366669178, 0.630466103553772, -0.34133976697921753, 0.0067970301024615765, -0.3578317165374756, 0.004065048880875111, -0.0006026353221386671, 0.6166262030601501, -0.3036734461784363, 0.0030510362703353167, 0.004272014833986759, 0.04807110130786896, -0.05603141337633133, -2.7714478969573975, 0.5865798592567444, 0.22083331644535065, 1.0617544651031494, 0.16620922088623047, 0.3692938983440399, -0.19928568601608276, -2.9590609073638916, -0.4940376877784729, -0.1188475638628006, 1.2734078168869019, -0.16394419968128204, 0.279927521944046, 0.04525243490934372]} +{"t": 26.3488, "q": [-0.31336331367492676, -0.013340519741177559, 0.011128664948046207, 0.6304575800895691, -0.341347873210907, 0.006811488885432482, -0.35784873366355896, 0.004056526813656092, -0.0006026353221386671, 0.6166262030601501, -0.3036818206310272, 0.0030655853915959597, 0.0042854067869484425, 0.04807872697710991, -0.05604651942849159, -2.7714240550994873, 0.5865439176559448, 0.2208452969789505, 1.0617305040359497, 0.16620922088623047, 0.3693178594112396, -0.19927369058132172, -2.9589531421661377, -0.49402570724487305, -0.11878763884305954, 1.2734078168869019, -0.16394419968128204, 0.2799395024776459, 0.045288387686014175]} +{"t": 26.3656, "q": [-0.3133888840675354, -0.013331998139619827, 0.011142057366669178, 0.6304575800895691, -0.34134793281555176, 0.006796952802687883, -0.35784873366355896, 0.004056526813656092, -0.0006294191116467118, 0.6166006326675415, -0.3036775588989258, 0.003043824341148138, 0.004258622881025076, 0.04807870835065842, -0.056036580353975296, -2.771411895751953, 0.5865678787231445, 0.22083331644535065, 1.0617424249649048, 0.16620922088623047, 0.3693178594112396, -0.19927369058132172, -2.9590251445770264, -0.4940376877784729, -0.11879962682723999, 1.2733958959579468, -0.1639561802148819, 0.27991554141044617, 0.04527640342712402]} +{"t": 26.3824, "q": [-0.3133888840675354, -0.013331998139619827, 0.011128664948046207, 0.630466103553772, -0.341347873210907, 0.006811488885432482, -0.35784024000167847, 0.004065048880875111, -0.0006428110064007342, 0.616634726524353, -0.30366936326026917, 0.003058248432353139, 0.004258622881025076, 0.04807110130786896, -0.05603141337633133, -2.771376132965088, 0.5865439176559448, 0.22085729241371155, 1.0617424249649048, 0.16617326438426971, 0.36930587887763977, -0.19926171004772186, -2.9590489864349365, -0.4940137267112732, -0.11877565830945969, 1.2734198570251465, -0.1639322191476822, 0.27991554141044617, 0.045288387686014175]} +{"t": 26.3991, "q": [-0.3133888840675354, -0.013331998139619827, 0.011088489554822445, 0.6304575800895691, -0.341347873210907, 0.006811488885432482, -0.35785725712776184, 0.004065048880875111, -0.0006294191116467118, 0.6165921092033386, -0.30366936326026917, 0.003058248432353139, 0.004258622881025076, 0.04807870835065842, -0.056036580353975296, -2.7713520526885986, 0.5865678787231445, 0.22083331644535065, 1.0617544651031494, 0.16623318195343018, 0.3693178594112396, -0.19927369058132172, -2.9589650630950928, -0.49397778511047363, -0.11876367032527924, 1.2734317779541016, -0.1639082431793213, 0.279927521944046, 0.04526441916823387]} +{"t": 26.4158, "q": [-0.31340593099594116, -0.013331998139619827, 0.011142057366669178, 0.6304575800895691, -0.341347873210907, 0.006811488885432482, -0.35784873366355896, 0.0040735709480941296, -0.0006026353221386671, 0.6165921092033386, -0.30367764830589294, 0.003058310830965638, 0.004245230928063393, 0.0480862595140934, -0.05601192265748978, -2.771292209625244, 0.5865798592567444, 0.22083331644535065, 1.0617784261703491, 0.16626913845539093, 0.3693178594112396, -0.19927369058132172, -2.9590489864349365, -0.49397778511047363, -0.1188235953450203, 1.2734198570251465, -0.16392023861408234, 0.2799035608768463, 0.04525243490934372]} +{"t": 26.4325, "q": [-0.31340593099594116, -0.013331998139619827, 0.011128664948046207, 0.6304575800895691, -0.341347873210907, 0.006811488885432482, -0.3578317165374756, 0.004048004746437073, -0.0006026353221386671, 0.61656653881073, -0.3036818206310272, 0.0030655853915959597, 0.004258622881025076, 0.04806351661682129, -0.05603618919849396, -2.771172285079956, 0.5865199565887451, 0.2208452969789505, 1.0617544651031494, 0.16623318195343018, 0.3693418502807617, -0.19927369058132172, -2.959012985229492, -0.49397778511047363, -0.11879962682723999, 1.2734078168869019, -0.16394419968128204, 0.27991554141044617, 0.045288387686014175]} +{"t": 26.4493, "q": [-0.31340593099594116, -0.013340519741177559, 0.011115273460745811, 0.6304575800895691, -0.341347873210907, 0.006811488885432482, -0.35784024000167847, 0.004065048880875111, -0.0006294191116467118, 0.6165580153465271, -0.3036818206310272, 0.0030655853915959597, 0.004258622881025076, 0.0480634979903698, -0.05602625384926796, -2.771040439605713, 0.5865439176559448, 0.22088125348091125, 1.0617663860321045, 0.16623318195343018, 0.3693418502807617, -0.19927369058132172, -2.958977222442627, -0.4939658045768738, -0.11878763884305954, 1.2734198570251465, -0.16394419968128204, 0.2799395024776459, 0.04524045065045357]} +{"t": 26.466, "q": [-0.3133888840675354, -0.013331998139619827, 0.011128664948046207, 0.6304575800895691, -0.341356098651886, 0.006796875968575478, -0.35784024000167847, 0.004065048880875111, -0.0006026353221386671, 0.6165750622749329, -0.3036816418170929, 0.0030366121791303158, 0.004205055069178343, 0.048071086406707764, -0.05602147430181503, -2.77083683013916, 0.5865439176559448, 0.22090522944927216, 1.0617784261703491, 0.16618524491786957, 0.3693178594112396, -0.19927369058132172, -2.959001064300537, -0.4939418137073517, -0.11879962682723999, 1.2734198570251465, -0.16394419968128204, 0.27991554141044617, 0.04524045065045357]} +{"t": 26.4827, "q": [-0.3133974075317383, -0.013357564806938171, 0.011115273460745811, 0.6304405331611633, -0.341347873210907, 0.006811488885432482, -0.3578231930732727, 0.004065048880875111, -0.0005892434273846447, 0.6165409684181213, -0.3036734461784363, 0.0030510362703353167, 0.004205055069178343, 0.0480634979903698, -0.05602625384926796, -2.770693063735962, 0.586531937122345, 0.22088125348091125, 1.0617544651031494, 0.16623318195343018, 0.3692699372768402, -0.19928568601608276, -2.9590489864349365, -0.4939418137073517, -0.1188235953450203, 1.2734317779541016, -0.1639082431793213, 0.279927521944046, 0.04527640342712402]} +{"t": 26.4994, "q": [-0.31340593099594116, -0.013331998139619827, 0.011168841272592545, 0.6304575800895691, -0.341347873210907, 0.006811488885432482, -0.3578146696090698, 0.004082093480974436, -0.0005758515326306224, 0.6165409684181213, -0.30367764830589294, 0.003058310830965638, 0.004205055069178343, 0.0480634979903698, -0.05602625384926796, -2.770573139190674, 0.5865558981895447, 0.220917209982872, 1.061718463897705, 0.16618524491786957, 0.3692459762096405, -0.19928568601608276, -2.959001064300537, -0.493917852640152, -0.1188235953450203, 1.2734317779541016, -0.16392023861408234, 0.2799035608768463, 0.04526441916823387]} +{"t": 26.5162, "q": [-0.3133974075317383, -0.013366086408495903, 0.011115273460745811, 0.6304490566253662, -0.3413519859313965, 0.006804182194173336, -0.3578317165374756, 0.004056526813656092, -0.0005892434273846447, 0.6165153980255127, -0.3036734461784363, 0.0030510362703353167, 0.0041916631162166595, 0.0480634979903698, -0.05602625384926796, -2.770357370376587, 0.5865199565887451, 0.2208692729473114, 1.0616945028305054, 0.16616128385066986, 0.3692459762096405, -0.19926171004772186, -2.958977222442627, -0.493917852640152, -0.11876367032527924, 1.2734198570251465, -0.1639082431793213, 0.27991554141044617, 0.04526441916823387]} +{"t": 26.5329, "q": [-0.31340593099594116, -0.01334904134273529, 0.011168841272592545, 0.6304575800895691, -0.341347873210907, 0.006811488885432482, -0.35779762268066406, 0.004065048880875111, -0.0005758515326306224, 0.6164813041687012, -0.3036818206310272, 0.0030655853915959597, 0.004205055069178343, 0.0480634979903698, -0.05602625384926796, -2.7702136039733887, 0.5865199565887451, 0.22083331644535065, 1.061718463897705, 0.1661253273487091, 0.36923396587371826, -0.19928568601608276, -2.9590251445770264, -0.493917852640152, -0.11879962682723999, 1.2734198570251465, -0.16392023861408234, 0.27991554141044617, 0.04526441916823387]} +{"t": 26.5497, "q": [-0.3133974075317383, -0.013366086408495903, 0.01118223275989294, 0.6304575800895691, -0.341347873210907, 0.006811488885432482, -0.3578146696090698, 0.0040735709480941296, -0.0005624596378766, 0.6165068745613098, -0.3036734461784363, 0.0030510362703353167, 0.004218447022140026, 0.048071086406707764, -0.05602147430181503, -2.770033836364746, 0.5865199565887451, 0.2208452969789505, 1.0617305040359497, 0.16614930331707, 0.36918604373931885, -0.19928568601608276, -2.958977222442627, -0.493917852640152, -0.11881160736083984, 1.273467779159546, -0.1639322191476822, 0.279927521944046, 0.04526441916823387]} +{"t": 26.5664, "q": [-0.3133974075317383, -0.01334904134273529, 0.011142057366669178, 0.6304575800895691, -0.341347873210907, 0.006811488885432482, -0.3578146696090698, 0.004065048880875111, -0.0005758515326306224, 0.6165153980255127, -0.3035941421985626, 0.0029417569749057293, 0.004218447022140026, 0.048063475638628006, -0.056016311049461365, -2.7698421478271484, 0.5865439176559448, 0.22088125348091125, 1.0617424249649048, 0.16616128385066986, 0.36916208267211914, -0.19927369058132172, -2.9589650630950928, -0.493917852640152, -0.1188235953450203, 1.2734317779541016, -0.16394419968128204, 0.27991554141044617, 0.04527640342712402]} +{"t": 26.5831, "q": [-0.3133888840675354, -0.013331998139619827, 0.011142057366669178, 0.6304490566253662, -0.3413519859313965, 0.006804182194173336, -0.3578146696090698, 0.0040735709480941296, -0.0006026353221386671, 0.6164983510971069, -0.30363160371780396, 0.0029782545752823353, 0.004231838975101709, 0.04805589094758034, -0.05602108687162399, -2.769590377807617, 0.5865199565887451, 0.220917209982872, 1.0617064237594604, 0.1661253273487091, 0.3691261112689972, -0.19928568601608276, -2.958989143371582, -0.4939058721065521, -0.1188235953450203, 1.2734317779541016, -0.16394419968128204, 0.27991554141044617, 0.045288387686014175]} +{"t": 26.5998, "q": [-0.3133888840675354, -0.013357564806938171, 0.011142057366669178, 0.6304405331611633, -0.3413519859313965, 0.006804182194173336, -0.3578146696090698, 0.004048004746437073, -0.0006026353221386671, 0.6164557337760925, -0.30363571643829346, 0.0029710426460951567, 0.004218447022140026, 0.048071086406707764, -0.05602147430181503, -2.769362688064575, 0.5864959955215454, 0.220917209982872, 1.0616945028305054, 0.16616128385066986, 0.3691021502017975, -0.19928568601608276, -2.9589531421661377, -0.493917852640152, -0.11879962682723999, 1.273467779159546, -0.16392023861408234, 0.279927521944046, 0.045288387686014175]} +{"t": 26.6166, "q": [-0.3133888840675354, -0.013340519741177559, 0.011128664948046207, 0.6303979158401489, -0.341347873210907, 0.006811488885432482, -0.3578146696090698, 0.004056526813656092, -0.0005624596378766, 0.6164301633834839, -0.303627610206604, 0.0029999713879078627, 0.00416487967595458, 0.04806346073746681, -0.05600637197494507, -2.769098997116089, 0.5865079760551453, 0.22090522944927216, 1.0616824626922607, 0.16617326438426971, 0.36904221773147583, -0.19928568601608276, -2.958977222442627, -0.493917852640152, -0.1188235953450203, 1.2734557390213013, -0.16394419968128204, 0.279927521944046, 0.045288387686014175]} +{"t": 26.6334, "q": [-0.31340593099594116, -0.01334904134273529, 0.011128664948046207, 0.6304149627685547, -0.341356098651886, 0.006796875968575478, -0.3578317165374756, 0.004065048880875111, -0.0005892434273846447, 0.6164472103118896, -0.3036399781703949, 0.0029928218573331833, 0.004138095770031214, 0.04807864874601364, -0.05600675940513611, -2.768907308578491, 0.5864840149879456, 0.22088125348091125, 1.061658501625061, 0.16614930331707, 0.36904221773147583, -0.19927369058132172, -2.958857297897339, -0.49392983317375183, -0.11879962682723999, 1.2734557390213013, -0.16392023861408234, 0.279927521944046, 0.04525243490934372]} +{"t": 26.6502, "q": [-0.3133888840675354, -0.013331998139619827, 0.011128664948046207, 0.6303979158401489, -0.3413519859313965, 0.006804182194173336, -0.3578231930732727, 0.004082093480974436, -0.0006160272168926895, 0.6164386868476868, -0.30364418029785156, 0.003000096417963505, 0.00416487967595458, 0.04808627441525459, -0.05602186173200607, -2.768667697906494, 0.5865079760551453, 0.22088125348091125, 1.061658501625061, 0.16617326438426971, 0.36904221773147583, -0.19927369058132172, -2.958881139755249, -0.49397778511047363, -0.11879962682723999, 1.2734557390213013, -0.16392023861408234, 0.27991554141044617, 0.04527640342712402]} +{"t": 26.6669, "q": [-0.3133888840675354, -0.013340519741177559, 0.011115273460745811, 0.6303723454475403, -0.341347873210907, 0.006811488885432482, -0.35780614614486694, 0.004082093480974436, -0.0006026353221386671, 0.6164301633834839, -0.3036399781703949, 0.0029928218573331833, 0.004178271628916264, 0.04809386283159256, -0.056017085909843445, -2.7683799266815186, 0.5865079760551453, 0.22090522944927216, 1.0616226196289062, 0.16614930331707, 0.3689703345298767, -0.19927369058132172, -2.958845376968384, -0.4939538240432739, -0.11879962682723999, 1.2734557390213013, -0.16392023861408234, 0.27991554141044617, 0.04525243490934372]} +{"t": 26.6836, "q": [-0.3133803606033325, -0.013331998139619827, 0.011115273460745811, 0.6303723454475403, -0.341347873210907, 0.006811488885432482, -0.3578317165374756, 0.004065048880875111, -0.0006160272168926895, 0.6164131164550781, -0.30364400148391724, 0.002971123205497861, 0.004218447022140026, 0.04807864874601364, -0.05600675940513611, -2.7681283950805664, 0.5865199565887451, 0.22088125348091125, 1.0616105794906616, 0.16613730788230896, 0.36888644099235535, -0.19930964708328247, -2.958857297897339, -0.4939538240432739, -0.11879962682723999, 1.2734317779541016, -0.16394419968128204, 0.27991554141044617, 0.04526441916823387]} +{"t": 26.7003, "q": [-0.3133888840675354, -0.013297909870743752, 0.011075098067522049, 0.6303297281265259, -0.341347873210907, 0.006811488885432482, -0.3578317165374756, 0.0040735709480941296, -0.0006294191116467118, 0.6163278818130493, -0.3039117455482483, 0.003436838975176215, 0.004231838975101709, 0.04809386283159256, -0.056017085909843445, -2.7678885459899902, 0.5864840149879456, 0.22088125348091125, 1.0615746974945068, 0.1661253273487091, 0.3687785863876343, -0.19928568601608276, -2.9588093757629395, -0.49397778511047363, -0.11879962682723999, 1.2734557390213013, -0.1639322191476822, 0.2799395024776459, 0.04524045065045357]} +{"t": 26.7172, "q": [-0.31340593099594116, -0.013306431472301483, 0.011101881042122841, 0.630321204662323, -0.341356098651886, 0.006796875968575478, -0.3578146696090698, 0.004082093480974436, -0.0006294191116467118, 0.6163278818130493, -0.3038741648197174, 0.003385836724191904, 0.004231838975101709, 0.048078689724206924, -0.0560266375541687, -2.767756700515747, 0.5864600539207458, 0.2208692729473114, 1.0615386962890625, 0.1661013662815094, 0.36874261498451233, -0.19927369058132172, -2.9588093757629395, -0.49397778511047363, -0.1188235953450203, 1.2734557390213013, -0.16394419968128204, 0.27991554141044617, 0.04525243490934372]} +{"t": 26.7339, "q": [-0.3133888840675354, -0.013280864804983139, 0.011101881042122841, 0.630321204662323, -0.3413519859313965, 0.006804182194173336, -0.3578146696090698, 0.0040735709480941296, -0.0006294191116467118, 0.6163364052772522, -0.3038909137248993, 0.0034149347338825464, 0.004205055069178343, 0.04807867109775543, -0.056016698479652405, -2.7676608562469482, 0.5864241123199463, 0.2208692729473114, 1.0615026950836182, 0.1661253273487091, 0.36863476037979126, -0.19928568601608276, -2.9587974548339844, -0.49402570724487305, -0.11879962682723999, 1.273467779159546, -0.16396817564964294, 0.279927521944046, 0.04527640342712402]} +{"t": 26.7506, "q": [-0.3133888840675354, -0.013306431472301483, 0.011075098067522049, 0.6303041577339172, -0.3413560092449188, 0.006811411585658789, -0.3578317165374756, 0.004090615548193455, -0.0006294191116467118, 0.6163108944892883, -0.30389082431793213, 0.0034004482440650463, 0.004178271628916264, 0.048086296766996384, -0.05603180453181267, -2.7675411701202393, 0.5863401889801025, 0.2208932340145111, 1.0613949298858643, 0.1661253273487091, 0.36858683824539185, -0.19929766654968262, -2.958845376968384, -0.49402570724487305, -0.11878763884305954, 1.273467779159546, -0.16394419968128204, 0.279927521944046, 0.04530037194490433]} +{"t": 26.7674, "q": [-0.3133974075317383, -0.013306431472301483, 0.011061705648899078, 0.6302700638771057, -0.341347873210907, 0.006811488885432482, -0.3578231930732727, 0.004090615548193455, -0.0006294191116467118, 0.6162768006324768, -0.3039369285106659, 0.003494973061606288, 0.00416487967595458, 0.04807867109775543, -0.056016698479652405, -2.767505168914795, 0.5862802863121033, 0.2208932340145111, 1.0613828897476196, 0.1661253273487091, 0.3685029447078705, -0.19928568601608276, -2.9588093757629395, -0.49404969811439514, -0.11879962682723999, 1.2734317779541016, -0.16394419968128204, 0.27991554141044617, 0.04526441916823387]} +{"t": 26.7841, "q": [-0.3133803606033325, -0.013297909870743752, 0.011075098067522049, 0.6302615404129028, -0.34134793281555176, 0.006796952802687883, -0.3578231930732727, 0.004099137615412474, -0.0006026353221386671, 0.6162768006324768, -0.3039369285106659, 0.003494973061606288, 0.0041916631162166595, 0.04806351661682129, -0.05603618919849396, -2.7674810886383057, 0.586220383644104, 0.2208692729473114, 1.0612870454788208, 0.16611334681510925, 0.36840707063674927, -0.19928568601608276, -2.958845376968384, -0.49409762024879456, -0.11877565830945969, 1.2734317779541016, -0.1639322191476822, 0.279927521944046, 0.04524045065045357]} +{"t": 26.8008, "q": [-0.3133803606033325, -0.013263821601867676, 0.011075098067522049, 0.6302615404129028, -0.341347873210907, 0.006811488885432482, -0.3578317165374756, 0.004090615548193455, -0.0006294191116467118, 0.6163023710250854, -0.3038824498653412, 0.0033858991228044033, 0.0041916631162166595, 0.04806351661682129, -0.05603618919849396, -2.7674453258514404, 0.586220383644104, 0.2208692729473114, 1.0612510442733765, 0.16613730788230896, 0.3682992160320282, -0.19926171004772186, -2.9588093757629395, -0.4941335618495941, -0.11878763884305954, 1.273479700088501, -0.1639561802148819, 0.279927521944046, 0.04526441916823387]} +{"t": 26.8175, "q": [-0.31337183713912964, -0.01328938640654087, 0.011075098067522049, 0.6302530169487, -0.341356098651886, 0.006796875968575478, -0.3578231930732727, 0.004090615548193455, -0.0006026353221386671, 0.6162938475608826, -0.3038991689682007, 0.0034149973653256893, 0.004178271628916264, 0.048078689724206924, -0.0560266375541687, -2.767421245574951, 0.5862443447113037, 0.22085729241371155, 1.0611191987991333, 0.1661253273487091, 0.36828723549842834, -0.19928568601608276, -2.958881139755249, -0.49414557218551636, -0.11879962682723999, 1.273479700088501, -0.1639322191476822, 0.279927521944046, 0.04525243490934372]} +{"t": 26.8343, "q": [-0.31336331367492676, -0.013280864804983139, 0.011048314161598682, 0.6302445530891418, -0.34134793281555176, 0.006796952802687883, -0.35784024000167847, 0.0040735709480941296, -0.0006294191116467118, 0.6162768006324768, -0.30391591787338257, 0.0034441135358065367, 0.004218447022140026, 0.048093900084495544, -0.05603696405887604, -2.767421245574951, 0.586220383644104, 0.2208692729473114, 1.0610833168029785, 0.16613730788230896, 0.36823928356170654, -0.19928568601608276, -2.958845376968384, -0.4941575527191162, -0.1188235953450203, 1.273467779159546, -0.1639561802148819, 0.279927521944046, 0.04526441916823387]} +{"t": 26.851, "q": [-0.3133888840675354, -0.013280864804983139, 0.011034921742975712, 0.6302189826965332, -0.341347873210907, 0.006811488885432482, -0.3578231930732727, 0.004090615548193455, -0.0006428110064007342, 0.6162853240966797, -0.3039284646511078, 0.003465937217697501, 0.004245230928063393, 0.04808633401989937, -0.05605168268084526, -2.767397403717041, 0.586220383644104, 0.2208932340145111, 1.0610593557357788, 0.16611334681510925, 0.368203341960907, -0.19927369058132172, -2.958857297897339, -0.4941335618495941, -0.1188235953450203, 1.273467779159546, -0.16394419968128204, 0.279927521944046, 0.04526441916823387]} +{"t": 26.8677, "q": [-0.31337183713912964, -0.013272343203425407, 0.011021530255675316, 0.6302275061607361, -0.341347873210907, 0.006811488885432482, -0.35780614614486694, 0.004099137615412474, -0.0006428110064007342, 0.6162853240966797, -0.30394503474235535, 0.0034660622477531433, 0.004218447022140026, 0.04807872697710991, -0.05604651942849159, -2.767397403717041, 0.5862443447113037, 0.22085729241371155, 1.06096351146698, 0.16613730788230896, 0.3681194484233856, -0.19928568601608276, -2.958845376968384, -0.4941335618495941, -0.11883557587862015, 1.273479700088501, -0.16394419968128204, 0.279927521944046, 0.04527640342712402]} +{"t": 26.8845, "q": [-0.313346266746521, -0.01328938640654087, 0.011008137837052345, 0.6302104592323303, -0.341347873210907, 0.006811488885432482, -0.3577805757522583, 0.004090615548193455, -0.0006428110064007342, 0.6162682771682739, -0.3039408326148987, 0.003458787687122822, 0.004245230928063393, 0.04807870835065842, -0.056036580353975296, -2.767409324645996, 0.5862443447113037, 0.2208932340145111, 1.060903549194336, 0.1661253273487091, 0.3681194484233856, -0.19928568601608276, -2.958845376968384, -0.49409762024879456, -0.1188235953450203, 1.273479700088501, -0.16394419968128204, 0.27991554141044617, 0.04526441916823387]} +{"t": 26.9012, "q": [-0.31332921981811523, -0.013280864804983139, 0.011008137837052345, 0.6302104592323303, -0.34134387969970703, 0.006789723411202431, -0.35775500535964966, 0.0040735709480941296, -0.0006428110064007342, 0.6162682771682739, -0.303903192281723, 0.003393298713490367, 0.004298798739910126, 0.04807872697710991, -0.05604651942849159, -2.767421245574951, 0.5862683057785034, 0.22094117105007172, 1.060843586921692, 0.1661253273487091, 0.36808350682258606, -0.19928568601608276, -2.958845376968384, -0.49409762024879456, -0.11878763884305954, 1.273479700088501, -0.1639801561832428, 0.279927521944046, 0.045288387686014175]} +{"t": 26.9179, "q": [-0.31332921981811523, -0.013272343203425407, 0.011008137837052345, 0.6302275061607361, -0.341347873210907, 0.006811488885432482, -0.3577379584312439, 0.004090615548193455, -0.0006562029011547565, 0.6162682771682739, -0.30389508605003357, 0.003422209294512868, 0.004258622881025076, 0.04807110130786896, -0.05603141337633133, -2.7674572467803955, 0.586304247379303, 0.22094117105007172, 1.0607956647872925, 0.1661253273487091, 0.36803555488586426, -0.19927369058132172, -2.9588093757629395, -0.49409762024879456, -0.11878763884305954, 1.273479700088501, -0.16394419968128204, 0.279927521944046, 0.04526441916823387]} +{"t": 26.9348, "q": [-0.3133377432823181, -0.013297909870743752, 0.011008137837052345, 0.6302104592323303, -0.341347873210907, 0.006811488885432482, -0.357729434967041, 0.004090615548193455, -0.0006294191116467118, 0.616259753704071, -0.3039243817329407, 0.0034731493797153234, 0.004272014833986759, 0.04806351661682129, -0.05603618919849396, -2.7674572467803955, 0.5863641500473022, 0.2208932340145111, 1.060747742652893, 0.1661013662815094, 0.3679996132850647, -0.19930964708328247, -2.9588093757629395, -0.49409762024879456, -0.11877565830945969, 1.273479700088501, -0.1639322191476822, 0.27991554141044617, 0.04525243490934372]} +{"t": 26.9516, "q": [-0.31332069635391235, -0.01328938640654087, 0.011008137837052345, 0.6302104592323303, -0.341347873210907, 0.006811488885432482, -0.357729434967041, 0.004082093480974436, -0.0006294191116467118, 0.6162341833114624, -0.30393272638320923, 0.0034876985009759665, 0.004272014833986759, 0.04807872697710991, -0.05604651942849159, -2.767421245574951, 0.5863881707191467, 0.22092919051647186, 1.0607237815856934, 0.1661013662815094, 0.36796364188194275, -0.19928568601608276, -2.9587254524230957, -0.49409762024879456, -0.11879962682723999, 1.273467779159546, -0.1639801561832428, 0.27991554141044617, 0.04526441916823387]} +{"t": 26.9683, "q": [-0.31332069635391235, -0.013297909870743752, 0.011008137837052345, 0.6302275061607361, -0.341347873210907, 0.006811488885432482, -0.35771238803863525, 0.004082093480974436, -0.0006160272168926895, 0.6162341833114624, -0.303941011428833, 0.0034877608995884657, 0.004245230928063393, 0.04807872697710991, -0.05604651942849159, -2.7674453258514404, 0.5864241123199463, 0.220917209982872, 1.0606638193130493, 0.16613730788230896, 0.36796364188194275, -0.19927369058132172, -2.958737373352051, -0.49409762024879456, -0.11885954439640045, 1.273467779159546, -0.16392023861408234, 0.279927521944046, 0.045216482132673264]} +{"t": 26.985, "q": [-0.31332921981811523, -0.013306431472301483, 0.011021530255675316, 0.6302104592323303, -0.34133976697921753, 0.0067970301024615765, -0.35771238803863525, 0.0040735709480941296, -0.0006026353221386671, 0.6162256598472595, -0.303941011428833, 0.0034877608995884657, 0.004245230928063393, 0.04807113856077194, -0.05605129525065422, -2.7674453258514404, 0.5864241123199463, 0.22092919051647186, 1.0606638193130493, 0.16613730788230896, 0.36796364188194275, -0.19930964708328247, -2.95878529548645, -0.4940856397151947, -0.1188235953450203, 1.2734917402267456, -0.1639561802148819, 0.279927521944046, 0.045216482132673264]} +{"t": 27.0017, "q": [-0.3133377432823181, -0.013306431472301483, 0.011008137837052345, 0.6302189826965332, -0.34133976697921753, 0.0067970301024615765, -0.35771238803863525, 0.004065048880875111, -0.0006294191116467118, 0.6162171363830566, -0.3038824498653412, 0.0033858991228044033, 0.004245230928063393, 0.048048343509435654, -0.05604574456810951, -2.7674572467803955, 0.5864241123199463, 0.220917209982872, 1.0606638193130493, 0.1661253273487091, 0.3679516613483429, -0.19928568601608276, -2.9588332176208496, -0.4940856397151947, -0.1188235953450203, 1.273479700088501, -0.1639322191476822, 0.279927521944046, 0.045228466391563416]} +{"t": 27.0185, "q": [-0.31332069635391235, -0.013280864804983139, 0.011021530255675316, 0.6302275061607361, -0.34134382009506226, 0.006804259493947029, -0.3577038645744324, 0.004056526813656092, -0.0006294191116467118, 0.6162000894546509, -0.3038868010044098, 0.0034221468959003687, 0.004258622881025076, 0.04806351661682129, -0.05603618919849396, -2.767421245574951, 0.5864241123199463, 0.22088125348091125, 1.0606279373168945, 0.1661253273487091, 0.3679277002811432, -0.19929766654968262, -2.958857297897339, -0.494061678647995, -0.11879962682723999, 1.2735036611557007, -0.1639322191476822, 0.279927521944046, 0.04526441916823387]} +{"t": 27.0352, "q": [-0.31332069635391235, -0.013297909870743752, 0.011021530255675316, 0.6302104592323303, -0.3413357138633728, 0.006789800710976124, -0.35767829418182373, 0.0040735709480941296, -0.0006294191116467118, 0.6161745190620422, -0.30386579036712646, 0.003371269442141056, 0.004231838975101709, 0.04805592820048332, -0.056040968745946884, -2.7674572467803955, 0.5863881707191467, 0.2208692729473114, 1.0605679750442505, 0.1661253273487091, 0.36789175868034363, -0.19930964708328247, -2.9588212966918945, -0.4940376877784729, -0.11879962682723999, 1.273479700088501, -0.1639561802148819, 0.279927521944046, 0.04527640342712402]} +{"t": 27.0519, "q": [-0.3133121728897095, -0.013306431472301483, 0.011008137837052345, 0.6302104592323303, -0.34133976697921753, 0.0067970301024615765, -0.35766124725341797, 0.004065048880875111, -0.0006294191116467118, 0.616191565990448, -0.30377820134162903, 0.003261927515268326, 0.004231838975101709, 0.04807113856077194, -0.05605129525065422, -2.7674453258514404, 0.5864241123199463, 0.220917209982872, 1.0604721307754517, 0.16611334681510925, 0.3678797483444214, -0.19928568601608276, -2.958857297897339, -0.4939658045768738, -0.11879962682723999, 1.273479700088501, -0.16394419968128204, 0.2799395024776459, 0.04526441916823387]} +{"t": 27.0687, "q": [-0.31327807903289795, -0.013314953073859215, 0.011008137837052345, 0.6302189826965332, -0.34133976697921753, 0.0067970301024615765, -0.3576016128063202, 0.004082093480974436, -0.0006294191116467118, 0.6162171363830566, -0.30377820134162903, 0.003261927515268326, 0.004258622881025076, 0.04805592820048332, -0.056040968745946884, -2.7674453258514404, 0.586448073387146, 0.2208932340145111, 1.0603762865066528, 0.16611334681510925, 0.367831826210022, -0.19929766654968262, -2.958881139755249, -0.49397778511047363, -0.11879962682723999, 1.2734557390213013, -0.1639561802148819, 0.2799515128135681, 0.045288387686014175]} +{"t": 27.0854, "q": [-0.31326955556869507, -0.013314953073859215, 0.011008137837052345, 0.6302019357681274, -0.34133976697921753, 0.0067970301024615765, -0.3575504720211029, 0.0040735709480941296, -0.0006428110064007342, 0.616191565990448, -0.3037698566913605, 0.003247378394007683, 0.0042854067869484425, 0.04805591329932213, -0.05603102967143059, -2.7674572467803955, 0.5864241123199463, 0.2208692729473114, 1.0602563619613647, 0.1661253273487091, 0.3678198456764221, -0.19930964708328247, -2.9588093757629395, -0.4939658045768738, -0.11878763884305954, 1.273479700088501, -0.1639082431793213, 0.2799395024776459, 0.045216482132673264]} +{"t": 27.1021, "q": [-0.31327807903289795, -0.01328938640654087, 0.011021530255675316, 0.6302189826965332, -0.34133976697921753, 0.0067970301024615765, -0.35756751894950867, 0.0040735709480941296, -0.0006428110064007342, 0.6161404252052307, -0.3037698566913605, 0.003247378394007683, 0.0042854067869484425, 0.04807113856077194, -0.05605129525065422, -2.767505168914795, 0.5864241123199463, 0.22088125348091125, 1.060160517692566, 0.16613730788230896, 0.36778387427330017, -0.19930964708328247, -2.9587974548339844, -0.4939658045768738, -0.11879962682723999, 1.2734917402267456, -0.1639082431793213, 0.2799515128135681, 0.045216482132673264]} +{"t": 27.119, "q": [-0.3132439851760864, -0.013314953073859215, 0.011034921742975712, 0.6302104592323303, -0.34134387969970703, 0.006789723411202431, -0.3575589954853058, 0.004082093480974436, -0.0006294191116467118, 0.6161319017410278, -0.30377820134162903, 0.003261927515268326, 0.004325582180172205, 0.04807113856077194, -0.05605129525065422, -2.7674810886383057, 0.5864600539207458, 0.220917209982872, 1.059944748878479, 0.16611334681510925, 0.3677718937397003, -0.19930964708328247, -2.95876145362854, -0.49397778511047363, -0.1188235953450203, 1.273479700088501, -0.16392023861408234, 0.2799395024776459, 0.045228466391563416]} +{"t": 27.1357, "q": [-0.31326955556869507, -0.013306431472301483, 0.011008137837052345, 0.6302104592323303, -0.34133976697921753, 0.0067970301024615765, -0.3575504720211029, 0.004065048880875111, -0.0006428110064007342, 0.6161404252052307, -0.30376583337783813, 0.0032690949738025665, 0.0043523660860955715, 0.04805595055222511, -0.05605090782046318, -2.76751708984375, 0.5864840149879456, 0.22088125348091125, 1.059777021408081, 0.16611334681510925, 0.36768800020217896, -0.19930964708328247, -2.958737373352051, -0.4939897656440735, -0.1188235953450203, 1.2735276222229004, -0.16394419968128204, 0.27996349334716797, 0.045228466391563416]} +{"t": 27.1525, "q": [-0.3132439851760864, -0.013306431472301483, 0.011021530255675316, 0.6302275061607361, -0.34134387969970703, 0.006789723411202431, -0.35753342509269714, 0.004065048880875111, -0.0006428110064007342, 0.6161404252052307, -0.3037698566913605, 0.003247378394007683, 0.0043523660860955715, 0.04807872697710991, -0.05604651942849159, -2.7675411701202393, 0.5865558981895447, 0.220917209982872, 1.0596930980682373, 0.16611334681510925, 0.36768800020217896, -0.19930964708328247, -2.958665609359741, -0.4940137267112732, -0.1188235953450203, 1.2735157012939453, -0.16389626264572144, 0.2799395024776459, 0.04524045065045357]} +{"t": 27.1692, "q": [-0.31322693824768066, -0.013314953073859215, 0.011021530255675316, 0.6302275061607361, -0.34134387969970703, 0.006789723411202431, -0.3574993312358856, 0.004048004746437073, -0.0006562029011547565, 0.6161489486694336, -0.30376991629600525, 0.0032618651166558266, 0.004419325385242701, 0.04805592820048332, -0.056040968745946884, -2.7675411701202393, 0.5865439176559448, 0.22088125348091125, 1.059489369392395, 0.16614930331707, 0.36766403913497925, -0.19930964708328247, -2.9585936069488525, -0.4940376877784729, -0.1188475638628006, 1.2735157012939453, -0.16392023861408234, 0.2799515128135681, 0.045216482132673264]} +{"t": 27.1859, "q": [-0.3132099211215973, -0.013331998139619827, 0.011008137837052345, 0.6302189826965332, -0.34133976697921753, 0.0067970301024615765, -0.3574652671813965, 0.004056526813656092, -0.0006428110064007342, 0.6161404252052307, -0.30376991629600525, 0.0032618651166558266, 0.004432717338204384, 0.04807872697710991, -0.05604651942849159, -2.7675530910491943, 0.5865199565887451, 0.22090522944927216, 1.0592976808547974, 0.16616128385066986, 0.3676520586013794, -0.19930964708328247, -2.958557605743408, -0.4940376877784729, -0.1188475638628006, 1.2735636234283447, -0.16392023861408234, 0.27996349334716797, 0.04519251361489296]} +{"t": 27.2027, "q": [-0.31319287419319153, -0.013306431472301483, 0.01099474634975195, 0.6302019357681274, -0.341347873210907, 0.006811488885432482, -0.357473760843277, 0.0040735709480941296, -0.0006695947959087789, 0.6161404252052307, -0.30376574397087097, 0.003254590556025505, 0.004446109291166067, 0.048048343509435654, -0.05604574456810951, -2.76751708984375, 0.5865199565887451, 0.22088125348091125, 1.0591298341751099, 0.16617326438426971, 0.36766403913497925, -0.19933362305164337, -2.958509683609009, -0.49404969811439514, -0.11888351291418076, 1.2735515832901, -0.1639322191476822, 0.27996349334716797, 0.04525243490934372]} +{"t": 27.2196, "q": [-0.3132013976573944, -0.013340519741177559, 0.01099474634975195, 0.6302189826965332, -0.34133976697921753, 0.0067970301024615765, -0.35743117332458496, 0.004048004746437073, -0.0006695947959087789, 0.6161489486694336, -0.3037698566913605, 0.003247378394007683, 0.004432717338204384, 0.04806351661682129, -0.05603618919849396, -2.7675411701202393, 0.5864959955215454, 0.2208692729473114, 1.0588423013687134, 0.16618524491786957, 0.3676520586013794, -0.19930964708328247, -2.9584858417510986, -0.494061678647995, -0.11890748143196106, 1.2735515832901, -0.16387230157852173, 0.27996349334716797, 0.04520449787378311]} +{"t": 27.2363, "q": [-0.3131502568721771, -0.013306431472301483, 0.01099474634975195, 0.6302104592323303, -0.34134387969970703, 0.006789723411202431, -0.3574567437171936, 0.004056526813656092, -0.0006428110064007342, 0.6161148548126221, -0.30383267998695374, 0.003371019382029772, 0.004405933897942305, 0.04807110130786896, -0.05603141337633133, -2.76751708984375, 0.5865079760551453, 0.22088125348091125, 1.0581591129302979, 0.16617326438426971, 0.3676520586013794, -0.19933362305164337, -2.958521604537964, -0.494061678647995, -0.1188955008983612, 1.2735636234283447, -0.16389626264572144, 0.27996349334716797, 0.045228466391563416]} +{"t": 27.253, "q": [-0.31315878033638, -0.013306431472301483, 0.011008137837052345, 0.6302104592323303, -0.34133976697921753, 0.0067970301024615765, -0.3574482202529907, 0.004048004746437073, -0.0006562029011547565, 0.6160978078842163, -0.3038410544395447, 0.003385568503290415, 0.004419325385242701, 0.04806351661682129, -0.05603618919849396, -2.7673614025115967, 0.5864600539207458, 0.2208692729473114, 1.0571644306182861, 0.16618524491786957, 0.3677000105381012, -0.19930964708328247, -2.958509683609009, -0.4940856397151947, -0.11891946941614151, 1.2735515832901, -0.16387230157852173, 0.2799515128135681, 0.04526441916823387]} +{"t": 27.2698, "q": [-0.31315878033638, -0.013306431472301483, 0.01099474634975195, 0.6301934123039246, -0.341356098651886, 0.006796875968575478, -0.3574567437171936, 0.004065048880875111, -0.0006695947959087789, 0.6160892844200134, -0.303916335105896, 0.003516546683385968, 0.004432717338204384, 0.04808627441525459, -0.05602186173200607, -2.7673254013061523, 0.5864600539207458, 0.22083331644535065, 1.0561338663101196, 0.16618524491786957, 0.36773595213890076, -0.19930964708328247, -2.9584858417510986, -0.49414557218551636, -0.11891946941614151, 1.2735515832901, -0.16388428211212158, 0.2799754738807678, 0.045216482132673264]} +{"t": 27.2865, "q": [-0.3131673038005829, -0.013306431472301483, 0.010967962443828583, 0.6301848888397217, -0.34133976697921753, 0.0067970301024615765, -0.3574482202529907, 0.004022438544780016, -0.0006829866906628013, 0.6160040497779846, -0.30391624569892883, 0.0035020599607378244, 0.004446109291166067, 0.048078689724206924, -0.0560266375541687, -2.7671456336975098, 0.5864840149879456, 0.22083331644535065, 1.0546478033065796, 0.16617326438426971, 0.36775991320610046, -0.19932162761688232, -2.9584858417510986, -0.4942054748535156, -0.11890748143196106, 1.2735755443572998, -0.1639082431793213, 0.2799395024776459, 0.04520449787378311]} +{"t": 27.3033, "q": [-0.31315878033638, -0.01328938640654087, 0.01092778705060482, 0.6301422715187073, -0.341347873210907, 0.006811488885432482, -0.3574567437171936, 0.004056526813656092, -0.0006695947959087789, 0.6159955263137817, -0.3039328157901764, 0.0035021849907934666, 0.004392541944980621, 0.04807110130786896, -0.05603141337633133, -2.766929864883423, 0.5864840149879456, 0.22085729241371155, 1.0528980493545532, 0.16619724035263062, 0.36780786514282227, -0.19930964708328247, -2.9584858417510986, -0.49432530999183655, -0.11891946941614151, 1.2735755443572998, -0.1639322191476822, 0.2799515128135681, 0.045216482132673264]} +{"t": 27.32, "q": [-0.31318435072898865, -0.01328938640654087, 0.01091439463198185, 0.6300655603408813, -0.3413519859313965, 0.006804182194173336, -0.3574567437171936, 0.004039482679218054, -0.0006695947959087789, 0.6158933043479919, -0.3039246201515198, 0.0035166090819984674, 0.004446109291166067, 0.04808627441525459, -0.05602186173200607, -2.766738176345825, 0.5865079760551453, 0.22083331644535065, 1.0513880252838135, 0.16618524491786957, 0.3677958846092224, -0.19933362305164337, -2.9584977626800537, -0.4943852424621582, -0.11894343793392181, 1.2735636234283447, -0.16389626264572144, 0.2799515128135681, 0.045216482132673264]} +{"t": 27.3367, "q": [-0.31315878033638, -0.013263821601867676, 0.010901003144681454, 0.6299973726272583, -0.341347873210907, 0.006811488885432482, -0.3574567437171936, 0.004056526813656092, -0.0006963785854168236, 0.6157824993133545, -0.3039286434650421, 0.003494910430163145, 0.004446109291166067, 0.048078689724206924, -0.0560266375541687, -2.7666783332824707, 0.586448073387146, 0.2208452969789505, 1.0500218868255615, 0.16623318195343018, 0.367831826210022, -0.19930964708328247, -2.958509683609009, -0.49444517493247986, -0.11900335550308228, 1.2735755443572998, -0.16388428211212158, 0.2799515128135681, 0.045216482132673264]} +{"t": 27.3535, "q": [-0.31319287419319153, -0.013272343203425407, 0.010901003144681454, 0.6299291849136353, -0.341347873210907, 0.006811488885432482, -0.3574652671813965, 0.004056526813656092, -0.0006963785854168236, 0.6156972646713257, -0.30391624569892883, 0.0035020599607378244, 0.004472893197089434, 0.048101507127285004, -0.056042131036520004, -2.766510486602783, 0.5865079760551453, 0.2208213359117508, 1.0487275123596191, 0.16622120141983032, 0.3678438067436218, -0.19933362305164337, -2.958509683609009, -0.4945050776004791, -0.11903931200504303, 1.2735875844955444, -0.16394419968128204, 0.2799754738807678, 0.04520449787378311]} +{"t": 27.3702, "q": [-0.3132099211215973, -0.013280864804983139, 0.010901003144681454, 0.6298865675926208, -0.3413601219654083, 0.00680410536006093, -0.3574567437171936, 0.004039482679218054, -0.0007231623749248683, 0.6156120300292969, -0.3039246201515198, 0.0035166090819984674, 0.004432717338204384, 0.04809386283159256, -0.056017085909843445, -2.766390562057495, 0.5864720344543457, 0.2208213359117508, 1.0473732948303223, 0.16620922088623047, 0.36791571974754333, -0.19930964708328247, -2.958545684814453, -0.494517058134079, -0.11902732402086258, 1.2735755443572998, -0.16386030614376068, 0.2799515128135681, 0.04520449787378311]} +{"t": 27.387, "q": [-0.3132099211215973, -0.013263821601867676, 0.010874219238758087, 0.6298269629478455, -0.3413601219654083, 0.00680410536006093, -0.3574567437171936, 0.004039482679218054, -0.0006963785854168236, 0.6155012845993042, -0.3039246201515198, 0.0035166090819984674, 0.004472893197089434, 0.04809386283159256, -0.056017085909843445, -2.766019105911255, 0.5864241123199463, 0.2208213359117508, 1.0454918146133423, 0.16623318195343018, 0.36819136142730713, -0.19930964708328247, -2.9585697650909424, -0.4945530295372009, -0.11903931200504303, 1.2735755443572998, -0.16392023861408234, 0.2799395024776459, 0.04519251361489296]} +{"t": 27.4037, "q": [-0.3132099211215973, -0.013272343203425407, 0.010887610726058483, 0.6297502517700195, -0.3413560092449188, 0.006811411585658789, -0.3574482202529907, 0.004048004746437073, -0.0007231623749248683, 0.6154671907424927, -0.30388277769088745, 0.003443845547735691, 0.004446109291166067, 0.04810905456542969, -0.056017473340034485, -2.7655277252197266, 0.5864600539207458, 0.2208452969789505, 1.0435863733291626, 0.16619724035263062, 0.3683231770992279, -0.19932162761688232, -2.958521604537964, -0.4945889711380005, -0.11899137496948242, 1.2735636234283447, -0.16386030614376068, 0.27996349334716797, 0.04519251361489296]} +{"t": 27.4205, "q": [-0.3132439851760864, -0.013263821601867676, 0.010874219238758087, 0.6296905875205994, -0.341356098651886, 0.006796875968575478, -0.3574652671813965, 0.004056526813656092, -0.0007365542696788907, 0.6153649091720581, -0.30389097332954407, 0.00342942145653069, 0.004446109291166067, 0.048101432621479034, -0.05600237101316452, -2.7653000354766846, 0.5864840149879456, 0.2208213359117508, 1.0421721935272217, 0.16622120141983032, 0.3683711290359497, -0.19930964708328247, -2.9584617614746094, -0.49462494254112244, -0.11901534348726273, 1.2735515832901, -0.1639082431793213, 0.27996349334716797, 0.045228466391563416]} +{"t": 27.4373, "q": [-0.3132525086402893, -0.013280864804983139, 0.010874219238758087, 0.6296394467353821, -0.341356098651886, 0.006796875968575478, -0.3574567437171936, 0.004065048880875111, -0.0007231623749248683, 0.6153222918510437, -0.30387425422668457, 0.003400323214009404, 0.00445950124412775, 0.048101432621479034, -0.05600237101316452, -2.765132188796997, 0.5864959955215454, 0.22078537940979004, 1.0412614345550537, 0.16624517738819122, 0.3683950901031494, -0.19930964708328247, -2.958437919616699, -0.49462494254112244, -0.11903931200504303, 1.2736475467681885, -0.16388428211212158, 0.27996349334716797, 0.04520449787378311]} +{"t": 27.4543, "q": [-0.3132525086402893, -0.01328938640654087, 0.010901003144681454, 0.6296138763427734, -0.3413560092449188, 0.006811411585658789, -0.3574482202529907, 0.004065048880875111, -0.0007365542696788907, 0.6153137683868408, -0.30376148223876953, 0.00323282927274704, 0.004446109291166067, 0.0481090173125267, -0.05599759519100189, -2.7650482654571533, 0.5864600539207458, 0.22080935537815094, 1.0406742095947266, 0.16619724035263062, 0.3683950901031494, -0.19929766654968262, -2.958425760269165, -0.49462494254112244, -0.11902732402086258, 1.2736235857009888, -0.16384832561016083, 0.2799515128135681, 0.04520449787378311]} +{"t": 27.471, "q": [-0.31326955556869507, -0.013263821601867676, 0.01091439463198185, 0.6296053528785706, -0.3413560092449188, 0.006811411585658789, -0.35743117332458496, 0.004082093480974436, -0.0007365542696788907, 0.6152711510658264, -0.3036777973175049, 0.003087284043431282, 0.004472893197089434, 0.04811660572886467, -0.055992819368839264, -2.765024423599243, 0.5864840149879456, 0.22080935537815094, 1.0405542850494385, 0.16622120141983032, 0.36838310956954956, -0.19930964708328247, -2.958425760269165, -0.49462494254112244, -0.11903931200504303, 1.2736235857009888, -0.16389626264572144, 0.27996349334716797, 0.045228466391563416]} +{"t": 27.4878, "q": [-0.3132610321044922, -0.01328938640654087, 0.010874219238758087, 0.6295371651649475, -0.341347873210907, 0.006811488885432482, -0.3574226498603821, 0.004090615548193455, -0.0007365542696788907, 0.6151859164237976, -0.30369436740875244, 0.003087409073486924, 0.004472893197089434, 0.048101410269737244, -0.055992428213357925, -2.7649645805358887, 0.5864241123199463, 0.2208452969789505, 1.04043447971344, 0.16622120141983032, 0.3684190511703491, -0.19930964708328247, -2.9583539962768555, -0.49464890360832214, -0.11903931200504303, 1.2736115455627441, -0.16386030614376068, 0.27996349334716797, 0.045228466391563416]} +{"t": 27.5047, "q": [-0.3132439851760864, -0.013280864804983139, 0.010901003144681454, 0.629503071308136, -0.341356098651886, 0.006796875968575478, -0.3573629856109619, 0.004099137615412474, -0.0007901218486949801, 0.615143358707428, -0.3036777973175049, 0.003087284043431282, 0.00445950124412775, 0.04812419041991234, -0.05598803982138634, -2.7649405002593994, 0.5864840149879456, 0.22083331644535065, 1.0404224395751953, 0.16619724035263062, 0.3683950901031494, -0.19932162761688232, -2.958329916000366, -0.4946848452091217, -0.11906328052282333, 1.2736235857009888, -0.1639082431793213, 0.2799395024776459, 0.04520449787378311]} +{"t": 27.5215, "q": [-0.3132610321044922, -0.013314953073859215, 0.01091439463198185, 0.6294605135917664, -0.3413519859313965, 0.006804182194173336, -0.3573629856109619, 0.004107659682631493, -0.0007767299539409578, 0.6151518821716309, -0.30355212092399597, 0.002840002067387104, 0.004432717338204384, 0.04811658337712288, -0.05598287656903267, -2.764892578125, 0.5864600539207458, 0.22080935537815094, 1.0403984785079956, 0.16623318195343018, 0.3683711290359497, -0.19930964708328247, -2.958329916000366, -0.49472081661224365, -0.11906328052282333, 1.2736115455627441, -0.16383634507656097, 0.2799515128135681, 0.04519251361489296]} +{"t": 27.5382, "q": [-0.3132525086402893, -0.013306431472301483, 0.010887610726058483, 0.6294264197349548, -0.341347873210907, 0.006811488885432482, -0.35734593868255615, 0.004107659682631493, -0.0007901218486949801, 0.6151348352432251, -0.30352702736854553, 0.00279633654281497, 0.00445950124412775, 0.048116568475961685, -0.05597293749451637, -2.7648086547851562, 0.5864241123199463, 0.22080935537815094, 1.0404465198516846, 0.16622120141983032, 0.36838310956954956, -0.19930964708328247, -2.9582700729370117, -0.4947567582130432, -0.11907526105642319, 1.2736235857009888, -0.16386030614376068, 0.2799515128135681, 0.04519251361489296]} +{"t": 27.5549, "q": [-0.3132610321044922, -0.013297909870743752, 0.010887610726058483, 0.629417896270752, -0.341347873210907, 0.006811488885432482, -0.3573288917541504, 0.0041247038170695305, -0.0008169056382030249, 0.6151348352432251, -0.3033471405506134, 0.002483440563082695, 0.004472893197089434, 0.048124153167009354, -0.055968161672353745, -2.7647128105163574, 0.586448073387146, 0.22080935537815094, 1.0404465198516846, 0.16626913845539093, 0.3684190511703491, -0.19930964708328247, -2.9582581520080566, -0.49476873874664307, -0.11903931200504303, 1.2736115455627441, -0.16384832561016083, 0.2799754738807678, 0.04520449787378311]} +{"t": 27.5716, "q": [-0.3132439851760864, -0.013297909870743752, 0.010887610726058483, 0.6294093728065491, -0.3413518965244293, 0.006818718276917934, -0.35729479789733887, 0.004141747951507568, -0.0008169056382030249, 0.6151177883148193, -0.30306702852249146, 0.00202487432397902, 0.004472893197089434, 0.048116568475961685, -0.05597293749451637, -2.764557123184204, 0.586448073387146, 0.22083331644535065, 1.0404465198516846, 0.16618524491786957, 0.36840707063674927, -0.19929766654968262, -2.9582221508026123, -0.4947567582130432, -0.11903931200504303, 1.2736475467681885, -0.16386030614376068, 0.27996349334716797, 0.045228466391563416]} +{"t": 27.5885, "q": [-0.3132610321044922, -0.013306431472301483, 0.010860827751457691, 0.6293667554855347, -0.341347873210907, 0.006811488885432482, -0.357286274433136, 0.0041247038170695305, -0.0008570813224650919, 0.6151348352432251, -0.30294153094291687, 0.0018065654439851642, 0.00445950124412775, 0.048124153167009354, -0.055968161672353745, -2.7644731998443604, 0.5864001512527466, 0.22077339887619019, 1.0404105186462402, 0.16618524491786957, 0.3684190511703491, -0.19930964708328247, -2.9581501483917236, -0.49474477767944336, -0.11903931200504303, 1.2736235857009888, -0.16386030614376068, 0.27996349334716797, 0.045228466391563416]} +{"t": 27.6053, "q": [-0.3132525086402893, -0.013297909870743752, 0.01084743533283472, 0.6293582320213318, -0.341347873210907, 0.006811488885432482, -0.3572777807712555, 0.004141747951507568, -0.0008570813224650919, 0.6151263117790222, -0.302991658449173, 0.0018794095376506448, 0.004472893197089434, 0.04810892045497894, -0.05594789236783981, -2.7643892765045166, 0.5864600539207458, 0.2207973599433899, 1.0404105186462402, 0.16625715792179108, 0.36840707063674927, -0.19932162761688232, -2.9581382274627686, -0.49476873874664307, -0.11906328052282333, 1.2736115455627441, -0.16386030614376068, 0.2799515128135681, 0.045216482132673264]} +{"t": 27.622, "q": [-0.3132439851760864, -0.013297909870743752, 0.010834043845534325, 0.629341185092926, -0.341347873210907, 0.006811488885432482, -0.3572777807712555, 0.004141747951507568, -0.0008838651119731367, 0.6151263117790222, -0.30303341150283813, 0.001937686582095921, 0.004432717338204384, 0.048101335763931274, -0.05595266819000244, -2.764341354370117, 0.5864360928535461, 0.2208213359117508, 1.0403984785079956, 0.16624517738819122, 0.3684190511703491, -0.19934560358524323, -2.9581382274627686, -0.4947567582130432, -0.11906328052282333, 1.2736594676971436, -0.16386030614376068, 0.27996349334716797, 0.04519251361489296]} +{"t": 27.6387, "q": [-0.3132439851760864, -0.013263821601867676, 0.01084743533283472, 0.6293241381645203, -0.341347873210907, 0.006811488885432482, -0.35726073384284973, 0.0041673146188259125, -0.0008838651119731367, 0.6151263117790222, -0.3030375838279724, 0.0019449611427262425, 0.004446109291166067, 0.04811650887131691, -0.055943116545677185, -2.7642574310302734, 0.586448073387146, 0.22077339887619019, 1.04043447971344, 0.16625715792179108, 0.368431031703949, -0.19930964708328247, -2.9581382274627686, -0.49476873874664307, -0.11906328052282333, 1.2736235857009888, -0.16392023861408234, 0.27996349334716797, 0.045216482132673264]} +{"t": 27.6555, "q": [-0.3132439851760864, -0.013272343203425407, 0.01084743533283472, 0.6293070912361145, -0.341356098651886, 0.006796875968575478, -0.3572351634502411, 0.0041673146188259125, -0.000897257006727159, 0.6151177883148193, -0.30303341150283813, 0.001937686582095921, 0.00445950124412775, 0.048108942806720734, -0.05595783516764641, -2.764197587966919, 0.586448073387146, 0.2207973599433899, 1.0404224395751953, 0.16618524491786957, 0.3684789836406708, -0.19930964708328247, -2.958090305328369, -0.4947807192802429, -0.11903931200504303, 1.2736235857009888, -0.16386030614376068, 0.2799515128135681, 0.04520449787378311]} +{"t": 27.6722, "q": [-0.3132099211215973, -0.013263821601867676, 0.010807259939610958, 0.6293070912361145, -0.3413519859313965, 0.006804182194173336, -0.3572266399860382, 0.0041673146188259125, -0.0009240407962352037, 0.6151518821716309, -0.30304595828056335, 0.0019595101475715637, 0.00445950124412775, 0.048124153167009354, -0.055968161672353745, -2.7640297412872314, 0.5864600539207458, 0.22080935537815094, 1.0404704809188843, 0.16626913845539093, 0.3685508668422699, -0.19934560358524323, -2.958090305328369, -0.4948406517505646, -0.11906328052282333, 1.2736235857009888, -0.16383634507656097, 0.27996349334716797, 0.045228466391563416]} +{"t": 27.689, "q": [-0.3132099211215973, -0.013263821601867676, 0.010767084546387196, 0.6293156147003174, -0.34134387969970703, 0.006789723411202431, -0.3572351634502411, 0.0041673146188259125, -0.0009374326909892261, 0.6151518821716309, -0.3030335605144501, 0.001966659678146243, 0.004472893197089434, 0.0481165274977684, -0.05595305562019348, -2.7638139724731445, 0.5864840149879456, 0.22078537940979004, 1.040494441986084, 0.16625715792179108, 0.3686707317829132, -0.19932162761688232, -2.958090305328369, -0.49485263228416443, -0.11902732402086258, 1.2736594676971436, -0.16386030614376068, 0.2799395024776459, 0.045228466391563416]} +{"t": 27.7058, "q": [-0.3132013976573944, -0.013272343203425407, 0.010780476033687592, 0.6292900443077087, -0.34134387969970703, 0.006789723411202431, -0.3572181165218353, 0.00418435875326395, -0.0009374326909892261, 0.6151604056358337, -0.30304595828056335, 0.0019595101475715637, 0.004432717338204384, 0.04812413081526756, -0.05595821887254715, -2.763610363006592, 0.5864840149879456, 0.22080935537815094, 1.040494441986084, 0.16628111898899078, 0.3687666058540344, -0.19930964708328247, -2.958054304122925, -0.4948646128177643, -0.11903931200504303, 1.2736355066299438, -0.16378840804100037, 0.2799515128135681, 0.04519251361489296]} +{"t": 27.7225, "q": [-0.3132099211215973, -0.01328938640654087, 0.010767084546387196, 0.6293070912361145, -0.34134387969970703, 0.006789723411202431, -0.3572351634502411, 0.0041673146188259125, -0.0009240407962352037, 0.6151774525642395, -0.303121417760849, 0.0021194794680923223, 0.004446109291166067, 0.048101335763931274, -0.05595266819000244, -2.763322591781616, 0.5864840149879456, 0.2207973599433899, 1.040506362915039, 0.16628111898899078, 0.36891040205955505, -0.19930964708328247, -2.958054304122925, -0.49487659335136414, -0.11906328052282333, 1.2736235857009888, -0.1637284904718399, 0.2799395024776459, 0.04520449787378311]} +{"t": 27.7393, "q": [-0.3132013976573944, -0.013272343203425407, 0.010740300640463829, 0.6292900443077087, -0.34134387969970703, 0.006789723411202431, -0.3572266399860382, 0.0041587925516068935, -0.0009374326909892261, 0.6151604056358337, -0.30326783657073975, 0.0023741612676531076, 0.004446109291166067, 0.04813171923160553, -0.05595344305038452, -2.7630231380462646, 0.5864840149879456, 0.22083331644535065, 1.0405184030532837, 0.16625715792179108, 0.36893436312675476, -0.19932162761688232, -2.9580304622650146, -0.4949125349521637, -0.11903931200504303, 1.2736235857009888, -0.16376443207263947, 0.2799395024776459, 0.045216482132673264]} +{"t": 27.7561, "q": [-0.31319287419319153, -0.013272343203425407, 0.010753692127764225, 0.6292985677719116, -0.34134387969970703, 0.006789723411202431, -0.3572181165218353, 0.004175836686044931, -0.0009374326909892261, 0.6151604056358337, -0.3032592833042145, 0.0023306207731366158, 0.004472893197089434, 0.048116546124219894, -0.05596299469470978, -2.762627601623535, 0.5864720344543457, 0.22078537940979004, 1.040506362915039, 0.16620922088623047, 0.3689942955970764, -0.19930964708328247, -2.9580183029174805, -0.4949125349521637, -0.11907526105642319, 1.2736355066299438, -0.16374047100543976, 0.279927521944046, 0.04519251361489296]} +{"t": 27.7728, "q": [-0.31319287419319153, -0.013272343203425407, 0.010767084546387196, 0.6293070912361145, -0.34133976697921753, 0.0067970301024615765, -0.3571840226650238, 0.0041673146188259125, -0.0009106489014811814, 0.6151689291000366, -0.3031296133995056, 0.0021050553768873215, 0.004432717338204384, 0.04809374734759331, -0.05595744401216507, -2.762160301208496, 0.5864600539207458, 0.22078537940979004, 1.040494441986084, 0.16622120141983032, 0.3689942955970764, -0.19930964708328247, -2.9580063819885254, -0.494888573884964, -0.11906328052282333, 1.2736355066299438, -0.16366855800151825, 0.27996349334716797, 0.045216482132673264]} +{"t": 27.7896, "q": [-0.3132013976573944, -0.013272343203425407, 0.010767084546387196, 0.6292900443077087, -0.34133976697921753, 0.0067970301024615765, -0.3571840226650238, 0.004175836686044931, -0.000897257006727159, 0.615143358707428, -0.3033178746700287, 0.002432500710710883, 0.004432717338204384, 0.048116546124219894, -0.05596299469470978, -2.7615129947662354, 0.586448073387146, 0.22083331644535065, 1.0404584407806396, 0.16626913845539093, 0.36898231506347656, -0.19930964708328247, -2.9580063819885254, -0.4949125349521637, -0.11908724904060364, 1.2736475467681885, -0.1636805534362793, 0.2799515128135681, 0.04520449787378311]} +{"t": 27.8063, "q": [-0.3132013976573944, -0.013272343203425407, 0.010753692127764225, 0.629272997379303, -0.3413439691066742, 0.00677518779411912, -0.35720959305763245, 0.0041673146188259125, -0.000897257006727159, 0.6151604056358337, -0.3033764362335205, 0.002534380415454507, 0.004472893197089434, 0.0480937696993351, -0.055967386811971664, -2.7606141567230225, 0.586448073387146, 0.2207973599433899, 1.0403625965118408, 0.16623318195343018, 0.36895835399627686, -0.19932162761688232, -2.9579825401306152, -0.49490055441856384, -0.11903931200504303, 1.2736355066299438, -0.16371649503707886, 0.27996349334716797, 0.04520449787378311]} +{"t": 27.823, "q": [-0.31315878033638, -0.013272343203425407, 0.010767084546387196, 0.6292644739151001, -0.34134387969970703, 0.006789723411202431, -0.35720106959342957, 0.0041587925516068935, -0.0009106489014811814, 0.6151177883148193, -0.303397536277771, 0.0025997445918619633, 0.004472893197089434, 0.04810898005962372, -0.055977713316679, -2.7593679428100586, 0.5864840149879456, 0.22078537940979004, 1.0402547121047974, 0.16625715792179108, 0.36886247992515564, -0.19934560358524323, -2.9579944610595703, -0.4949125349521637, -0.11906328052282333, 1.2736355066299438, -0.1636805534362793, 0.27996349334716797, 0.04520449787378311]} +{"t": 27.8398, "q": [-0.31318435072898865, -0.013280864804983139, 0.010767084546387196, 0.6292815208435059, -0.341356098651886, 0.006796875968575478, -0.3571925461292267, 0.004141747951507568, -0.0009374326909892261, 0.6151177883148193, -0.3034016191959381, 0.002592532429844141, 0.004633595701307058, 0.04810137301683426, -0.05597255006432533, -2.7580015659332275, 0.5864600539207458, 0.2208213359117508, 1.0401828289031982, 0.16623318195343018, 0.3687785863876343, -0.19930964708328247, -2.957970380783081, -0.4949125349521637, -0.11908724904060364, 1.2736115455627441, -0.1636805534362793, 0.27996349334716797, 0.045228466391563416]} +{"t": 27.8565, "q": [-0.31315878033638, -0.013272343203425407, 0.010753692127764225, 0.6292644739151001, -0.3413519859313965, 0.006804182194173336, -0.3571754992008209, 0.0041247038170695305, -0.0009106489014811814, 0.6151092648506165, -0.30340152978897095, 0.002578045940026641, 0.004740730859339237, 0.04810137301683426, -0.05597255006432533, -2.7567553520202637, 0.586448073387146, 0.22077339887619019, 1.0401349067687988, 0.16616128385066986, 0.3687306344509125, -0.19932162761688232, -2.957958459854126, -0.4949125349521637, -0.11906328052282333, 1.2736355066299438, -0.16369253396987915, 0.27996349334716797, 0.045228466391563416]} +{"t": 27.8733, "q": [-0.31319287419319153, -0.01328938640654087, 0.010726908221840858, 0.629272997379303, -0.34134799242019653, 0.006782417185604572, -0.35720106959342957, 0.004107659682631493, -0.0008838651119731367, 0.6151007413864136, -0.3033849596977234, 0.0025779027491807938, 0.004767514765262604, 0.04810895770788193, -0.055967770516872406, -2.7557485103607178, 0.5864840149879456, 0.22077339887619019, 1.0400989055633545, 0.16613730788230896, 0.3687306344509125, -0.19932162761688232, -2.957946538925171, -0.4949125349521637, -0.11902732402086258, 1.2736715078353882, -0.16364459693431854, 0.2799395024776459, 0.045216482132673264]} +{"t": 27.8901, "q": [-0.3132013976573944, -0.013272343203425407, 0.010740300640463829, 0.6292644739151001, -0.341356098651886, 0.006796875968575478, -0.3572351634502411, 0.004099137615412474, -0.0008704732172191143, 0.6150922179222107, -0.3034560978412628, 0.0027016245294362307, 0.004687163513153791, 0.04810898005962372, -0.055977713316679, -2.7547059059143066, 0.5864600539207458, 0.22077339887619019, 1.0400869846343994, 0.16619724035263062, 0.36870667338371277, -0.19932162761688232, -2.9578864574432373, -0.49490055441856384, -0.11903931200504303, 1.2736355066299438, -0.16358467936515808, 0.27996349334716797, 0.045228466391563416]} +{"t": 27.9068, "q": [-0.31318435072898865, -0.013280864804983139, 0.010753692127764225, 0.6292644739151001, -0.34133976697921753, 0.0067970301024615765, -0.3572266399860382, 0.004107659682631493, -0.0008570813224650919, 0.6151007413864136, -0.3034477233886719, 0.0026870572473853827, 0.004633595701307058, 0.04810895770788193, -0.055967770516872406, -2.753723382949829, 0.5863641500473022, 0.22074942290782928, 1.0400989055633545, 0.16620922088623047, 0.3687186539173126, -0.19933362305164337, -2.9578986167907715, -0.494888573884964, -0.11907526105642319, 1.2736594676971436, -0.16364459693431854, 0.27996349334716797, 0.04520449787378311]} +{"t": 27.9236, "q": [-0.31318435072898865, -0.013280864804983139, 0.010740300640463829, 0.6292474269866943, -0.34134799242019653, 0.006782417185604572, -0.3572181165218353, 0.0041161817498505116, -0.0008838651119731367, 0.6151092648506165, -0.3034559190273285, 0.0026726331561803818, 0.004620204214006662, 0.04810898005962372, -0.055977713316679, -2.75290846824646, 0.5863282084465027, 0.22077339887619019, 1.0400989055633545, 0.16622120141983032, 0.36868271231651306, -0.19933362305164337, -2.9579343795776367, -0.494888573884964, -0.11909922957420349, 1.2736594676971436, -0.16357268393039703, 0.27996349334716797, 0.04524045065045357]} +{"t": 27.9404, "q": [-0.31317582726478577, -0.013272343203425407, 0.010740300640463829, 0.6292389035224915, -0.34134799242019653, 0.006782417185604572, -0.3572181165218353, 0.004107659682631493, -0.000897257006727159, 0.6151092648506165, -0.30347684025764465, 0.0027090238872915506, 0.004539852496236563, 0.04810898005962372, -0.055977713316679, -2.7522013187408447, 0.5863282084465027, 0.2207973599433899, 1.0401109457015991, 0.16624517738819122, 0.36868271231651306, -0.19932162761688232, -2.957946538925171, -0.494888573884964, -0.11909922957420349, 1.2736355066299438, -0.16357268393039703, 0.2799515128135681, 0.04525243490934372]} +{"t": 27.9571, "q": [-0.3131673038005829, -0.013280864804983139, 0.010713516734540462, 0.6292303800582886, -0.34133976697921753, 0.0067970301024615765, -0.3572351634502411, 0.0041161817498505116, -0.0008838651119731367, 0.6151007413864136, -0.3035186529159546, 0.0027817876543849707, 0.004553244449198246, 0.04810898005962372, -0.055977713316679, -2.7516379356384277, 0.5863641500473022, 0.22077339887619019, 1.040050983428955, 0.16623318195343018, 0.36856287717819214, -0.19930964708328247, -2.957946538925171, -0.4949125349521637, -0.1191231980919838, 1.2736355066299438, -0.16354872286319733, 0.2799395024776459, 0.04525243490934372]} +{"t": 27.9738, "q": [-0.31317582726478577, -0.01328938640654087, 0.010726908221840858, 0.6292303800582886, -0.34134799242019653, 0.006782417185604572, -0.3572181165218353, 0.0041161817498505116, -0.000897257006727159, 0.6151007413864136, -0.3034893870353699, 0.002730847569182515, 0.004566636402159929, 0.04809380695223808, -0.05598726496100426, -2.7514102458953857, 0.5864001512527466, 0.22080935537815094, 1.0399670600891113, 0.16625715792179108, 0.36849096417427063, -0.19933362305164337, -2.957958459854126, -0.494888573884964, -0.11899137496948242, 1.2736235857009888, -0.16354872286319733, 0.2799395024776459, 0.04524045065045357]} +{"t": 27.9906, "q": [-0.31315878033638, -0.013306431472301483, 0.010700124315917492, 0.6292048096656799, -0.34133580327033997, 0.006775264628231525, -0.3572266399860382, 0.0041161817498505116, -0.0009106489014811814, 0.6151007413864136, -0.303477019071579, 0.0027379970997571945, 0.0045800283551216125, 0.048086199909448624, -0.05598210170865059, -2.751302480697632, 0.5864241123199463, 0.22076141834259033, 1.0398472547531128, 0.16619724035263062, 0.3684549927711487, -0.19932162761688232, -2.957970380783081, -0.4949125349521637, -0.11906328052282333, 1.2736594676971436, -0.16359665989875793, 0.2799395024776459, 0.045228466391563416]} +{"t": 28.0073, "q": [-0.31318435072898865, -0.013272343203425407, 0.010673340409994125, 0.6292133331298828, -0.34133976697921753, 0.0067970301024615765, -0.35720959305763245, 0.0041247038170695305, -0.0009374326909892261, 0.6151177883148193, -0.30349355936050415, 0.0027381221298128366, 0.004660379607230425, 0.0481090173125267, -0.05599759519100189, -2.7512905597686768, 0.5864600539207458, 0.22080935537815094, 1.0397753715515137, 0.16626913845539093, 0.36844301223754883, -0.19930964708328247, -2.9579224586486816, -0.4949125349521637, -0.11903931200504303, 1.2736235857009888, -0.16347680985927582, 0.2799515128135681, 0.045228466391563416]} +{"t": 28.024, "q": [-0.3131673038005829, -0.013272343203425407, 0.010633165016770363, 0.6292303800582886, -0.34134387969970703, 0.006789723411202431, -0.35720959305763245, 0.0041161817498505116, -0.0009374326909892261, 0.6150922179222107, -0.3034852147102356, 0.0027235730085521936, 0.004767514765262604, 0.04810898005962372, -0.055977713316679, -2.751302480697632, 0.586448073387146, 0.2208452969789505, 1.0397034883499146, 0.16617326438426971, 0.36844301223754883, -0.19932162761688232, -2.957862615585327, -0.494888573884964, -0.11908724904060364, 1.2736594676971436, -0.16348880529403687, 0.27996349334716797, 0.045228466391563416]} +{"t": 28.0408, "q": [-0.3131673038005829, -0.013263821601867676, 0.010633165016770363, 0.6292474269866943, -0.34133976697921753, 0.0067970301024615765, -0.3571925461292267, 0.0041247038170695305, -0.0009508245857432485, 0.6151177883148193, -0.3034852147102356, 0.0027235730085521936, 0.0049148257821798325, 0.04809380695223808, -0.05598726496100426, -2.751326560974121, 0.5864600539207458, 0.2208452969789505, 1.0395476818084717, 0.16616128385066986, 0.3683711290359497, -0.19930964708328247, -2.9577667713165283, -0.49490055441856384, -0.11909922957420349, 1.273707389831543, -0.1634528487920761, 0.27996349334716797, 0.04526441916823387]} +{"t": 28.0576, "q": [-0.31315878033638, -0.013272343203425407, 0.010606381110846996, 0.6292303800582886, -0.34133976697921753, 0.0067970301024615765, -0.3571840226650238, 0.0041161817498505116, -0.0009508245857432485, 0.6151092648506165, -0.30348536372184753, 0.0027525462210178375, 0.0049817850813269615, 0.048101410269737244, -0.055992428213357925, -2.7513504028320312, 0.5865439176559448, 0.22085729241371155, 1.039463758468628, 0.16618524491786957, 0.36833515763282776, -0.19930964708328247, -2.95762300491333, -0.4949125349521637, -0.1191231980919838, 1.2737553119659424, -0.1634049117565155, 0.2799754738807678, 0.045228466391563416]} +{"t": 28.0743, "q": [-0.31315878033638, -0.01328938640654087, 0.010606381110846996, 0.6292303800582886, -0.34133976697921753, 0.0067970301024615765, -0.35715845227241516, 0.0041247038170695305, -0.0009776083752512932, 0.6151177883148193, -0.30348536372184753, 0.0027525462210178375, 0.005035352893173695, 0.048101410269737244, -0.055992428213357925, -2.7514102458953857, 0.5866158604621887, 0.22083331644535065, 1.0393439531326294, 0.16618524491786957, 0.36828723549842834, -0.19930964708328247, -2.957395315170288, -0.49494850635528564, -0.11908724904060364, 1.2737553119659424, -0.16336895525455475, 0.2799395024776459, 0.04520449787378311]} +{"t": 28.0911, "q": [-0.31315878033638, -0.013263821601867676, 0.010606381110846996, 0.6292474269866943, -0.34133976697921753, 0.0067970301024615765, -0.35712435841560364, 0.004133225884288549, -0.0009776083752512932, 0.6151007413864136, -0.3034852147102356, 0.0027235730085521936, 0.005075528286397457, 0.048101410269737244, -0.055992428213357925, -2.75144624710083, 0.586759626865387, 0.2208692729473114, 1.0392121076583862, 0.16622120141983032, 0.368203341960907, -0.19930964708328247, -2.957263469696045, -0.4950084090232849, -0.11909922957420349, 1.273827314376831, -0.16334499418735504, 0.27996349334716797, 0.045228466391563416]} +{"t": 28.1078, "q": [-0.31314173340797424, -0.013272343203425407, 0.0105929896235466, 0.6292389035224915, -0.34133976697921753, 0.0067970301024615765, -0.35711583495140076, 0.004141747951507568, -0.0009642164804972708, 0.6151177883148193, -0.3034893870353699, 0.002730847569182515, 0.005048744846135378, 0.04807863384485245, -0.05599682033061981, -2.7513983249664307, 0.586819589138031, 0.2208692729473114, 1.0390442609786987, 0.16624517738819122, 0.368203341960907, -0.19930964708328247, -2.9570956230163574, -0.4950803220272064, -0.11909922957420349, 1.2738871574401855, -0.163332998752594, 0.2799754738807678, 0.045216482132673264]} +{"t": 28.1245, "q": [-0.3131076395511627, -0.01328938640654087, 0.01057959720492363, 0.6292474269866943, -0.34134387969970703, 0.006789723411202431, -0.3571073114871979, 0.0041247038170695305, -0.0009776083752512932, 0.6151263117790222, -0.30348536372184753, 0.0027525462210178375, 0.005115704145282507, 0.04807863384485245, -0.05599682033061981, -2.7513864040374756, 0.5868794918060303, 0.2208932340145111, 1.0388644933700562, 0.16619724035263062, 0.36819136142730713, -0.19930964708328247, -2.956951856613159, -0.49515223503112793, -0.11908724904060364, 1.273983120918274, -0.16320118308067322, 0.2799754738807678, 0.04524045065045357]} +{"t": 28.1413, "q": [-0.3131161630153656, -0.01328938640654087, 0.010606381110846996, 0.6292474269866943, -0.34133976697921753, 0.0067970301024615765, -0.3570902943611145, 0.004141747951507568, -0.0009508245857432485, 0.6151177883148193, -0.30346018075942993, 0.0026944123674184084, 0.00508892023935914, 0.04807863384485245, -0.05599682033061981, -2.7513504028320312, 0.5868794918060303, 0.2208692729473114, 1.0385169982910156, 0.16617326438426971, 0.368203341960907, -0.19930964708328247, -2.9567720890045166, -0.49517619609832764, -0.11907526105642319, 1.2740429639816284, -0.16317720711231232, 0.2799754738807678, 0.045228466391563416]} +{"t": 28.1581, "q": [-0.3131161630153656, -0.01328938640654087, 0.010606381110846996, 0.6292559504508972, -0.34134387969970703, 0.006789723411202431, -0.35707324743270874, 0.004107659682631493, -0.0009508245857432485, 0.6151263117790222, -0.30343934893608093, 0.0026725081261247396, 0.005035352893173695, 0.04809382185339928, -0.055997204035520554, -2.7512545585632324, 0.5868675112724304, 0.22095316648483276, 1.0380616188049316, 0.16616128385066986, 0.368203341960907, -0.19930964708328247, -2.9566762447357178, -0.4951642155647278, -0.11909922957420349, 1.2740429639816284, -0.16309332847595215, 0.27996349334716797, 0.04520449787378311]} +{"t": 28.1749, "q": [-0.3131246864795685, -0.013297909870743752, 0.010619773529469967, 0.6292474269866943, -0.34134387969970703, 0.006789723411202431, -0.3570902943611145, 0.0041161817498505116, -0.0009240407962352037, 0.6151092648506165, -0.30343106389045715, 0.0026724457275122404, 0.005035352893173695, 0.04810139536857605, -0.05598248913884163, -2.7511346340179443, 0.5867836475372314, 0.2208932340145111, 1.0374623537063599, 0.16614930331707, 0.36819136142730713, -0.19928568601608276, -2.956604242324829, -0.49515223503112793, -0.1191471666097641, 1.274055004119873, -0.16302141547203064, 0.2799754738807678, 0.04524045065045357]} +{"t": 28.1916, "q": [-0.3131246864795685, -0.013297909870743752, 0.010606381110846996, 0.6292389035224915, -0.34133976697921753, 0.0067970301024615765, -0.357098788022995, 0.0041161817498505116, -0.0009374326909892261, 0.6151177883148193, -0.3034352660179138, 0.002679720288142562, 0.005035352893173695, 0.04809382185339928, -0.055997204035520554, -2.7507872581481934, 0.586675763130188, 0.2208692729473114, 1.036335825920105, 0.16617326438426971, 0.368203341960907, -0.19929766654968262, -2.95658016204834, -0.4951282739639282, -0.1191231980919838, 1.2740789651870728, -0.16284164786338806, 0.2799874544143677, 0.04520449787378311]} +{"t": 28.2083, "q": [-0.3131246864795685, -0.013297909870743752, 0.010619773529469967, 0.6292474269866943, -0.34133976697921753, 0.0067970301024615765, -0.3570902943611145, 0.004133225884288549, -0.0009508245857432485, 0.6151348352432251, -0.30341842770576477, 0.002636117395013571, 0.005008568987250328, 0.048086222261190414, -0.055992044508457184, -2.750056028366089, 0.5866158604621887, 0.22092919051647186, 1.0344183444976807, 0.16617326438426971, 0.368203341960907, -0.19930964708328247, -2.9565563201904297, -0.4951282739639282, -0.11908724904060364, 1.274055004119873, -0.16276974976062775, 0.27996349334716797, 0.045228466391563416]} +{"t": 28.2251, "q": [-0.3131246864795685, -0.013297909870743752, 0.010619773529469967, 0.6292133331298828, -0.34134387969970703, 0.006789723411202431, -0.357098788022995, 0.004141747951507568, -0.0009508245857432485, 0.6151177883148193, -0.3034268021583557, 0.002650684444233775, 0.005021960940212011, 0.04811658337712288, -0.05598287656903267, -2.749265193939209, 0.5865798592567444, 0.22088125348091125, 1.0322612524032593, 0.16614930331707, 0.36816737055778503, -0.19930964708328247, -2.9565322399139404, -0.4951402544975281, -0.11908724904060364, 1.2740429639816284, -0.16279371082782745, 0.2799754738807678, 0.045216482132673264]} +{"t": 28.2418, "q": [-0.31313320994377136, -0.013314953073859215, 0.010633165016770363, 0.6292048096656799, -0.34134387969970703, 0.006789723411202431, -0.357098788022995, 0.004141747951507568, -0.0009508245857432485, 0.6151007413864136, -0.30344346165657043, 0.002665296196937561, 0.005008568987250328, 0.048116568475961685, -0.05597293749451637, -2.7487258911132812, 0.5865798592567444, 0.2208452969789505, 1.0302358865737915, 0.16618524491786957, 0.3681314289569855, -0.19930964708328247, -2.9564363956451416, -0.4951282739639282, -0.11908724904060364, 1.2740429639816284, -0.162733793258667, 0.27996349334716797, 0.04524045065045357]} +{"t": 28.2585, "q": [-0.31313320994377136, -0.01328938640654087, 0.010619773529469967, 0.6291792392730713, -0.34133976697921753, 0.0067970301024615765, -0.3571073114871979, 0.004141747951507568, -0.0009776083752512932, 0.6151177883148193, -0.30343499779701233, 0.0026362603530287743, 0.005048744846135378, 0.04810898005962372, -0.055977713316679, -2.748258590698242, 0.5865798592567444, 0.22085729241371155, 1.0281985998153687, 0.16618524491786957, 0.3681553900241852, -0.19929766654968262, -2.9564363956451416, -0.4951282739639282, -0.11909922957420349, 1.2740669250488281, -0.16263791918754578, 0.27996349334716797, 0.045228466391563416]} +{"t": 28.2753, "q": [-0.3131246864795685, -0.01328938640654087, 0.01057959720492363, 0.6291792392730713, -0.34133169054985046, 0.006782571319490671, -0.357098788022995, 0.004150270018726587, -0.0009910003282129765, 0.615143358707428, -0.303272008895874, 0.002381435828283429, 0.005035352893173695, 0.048131756484508514, -0.05597332492470741, -2.74733567237854, 0.5865798592567444, 0.22085729241371155, 1.0256099700927734, 0.16614930331707, 0.36816737055778503, -0.19930964708328247, -2.9562807083129883, -0.4951282739639282, -0.11909922957420349, 1.2740429639816284, -0.16262593865394592, 0.2799874544143677, 0.045228466391563416]} +{"t": 28.292, "q": [-0.3131161630153656, -0.013280864804983139, 0.01057959720492363, 0.629128098487854, -0.34133976697921753, 0.0067970301024615765, -0.3571073114871979, 0.00418435875326395, -0.001004392164759338, 0.6151348352432251, -0.3033304214477539, 0.002454342320561409, 0.005021960940212011, 0.048124153167009354, -0.055968161672353745, -2.7463889122009277, 0.5866038799285889, 0.2208452969789505, 1.0227338075637817, 0.16613730788230896, 0.3681434094905853, -0.19930964708328247, -2.9562087059020996, -0.4951402544975281, -0.11907526105642319, 1.2740669250488281, -0.1625300645828247, 0.2799874544143677, 0.04524045065045357]} +{"t": 28.3087, "q": [-0.3131076395511627, -0.01328938640654087, 0.01057959720492363, 0.629111111164093, -0.341335654258728, 0.006804336328059435, -0.35712435841560364, 0.004209924954921007, -0.0010177841177210212, 0.615143358707428, -0.30310869216918945, 0.0020686646457761526, 0.005008568987250328, 0.048116568475961685, -0.05597293749451637, -2.7460174560546875, 0.5866038799285889, 0.22083331644535065, 1.0210440158843994, 0.16618524491786957, 0.3681194484233856, -0.19932162761688232, -2.956028938293457, -0.4951642155647278, -0.11903931200504303, 1.2740789651870728, -0.1624581515789032, 0.27999943494796753, 0.04524045065045357]} +{"t": 28.3256, "q": [-0.3131246864795685, -0.013263821601867676, 0.01057959720492363, 0.6290940642356873, -0.34133580327033997, 0.006775264628231525, -0.35711583495140076, 0.004209924954921007, -0.0010311759542673826, 0.6151263117790222, -0.3030918836593628, 0.0020250617526471615, 0.005035352893173695, 0.048124153167009354, -0.055968161672353745, -2.7457897663116455, 0.5866158604621887, 0.2208452969789505, 1.0199893712997437, 0.16617326438426971, 0.3681314289569855, -0.19933362305164337, -2.9558732509613037, -0.4951881766319275, -0.11907526105642319, 1.2741268873214722, -0.1625060886144638, 0.2799754738807678, 0.045228466391563416]} +{"t": 28.3423, "q": [-0.3131076395511627, -0.013272343203425407, 0.010552814230322838, 0.6290770173072815, -0.34133580327033997, 0.006775264628231525, -0.3570902943611145, 0.004218447022140026, -0.0010981354862451553, 0.615143358707428, -0.30287426710128784, 0.0016321900766342878, 0.005062136333435774, 0.048124153167009354, -0.055968161672353745, -2.7455739974975586, 0.5866398215293884, 0.2208932340145111, 1.0191384553909302, 0.16616128385066986, 0.3681194484233856, -0.19930964708328247, -2.9557533264160156, -0.49522414803504944, -0.11909922957420349, 1.2741748094558716, -0.16242220997810364, 0.2799874544143677, 0.04524045065045357]} +{"t": 28.359, "q": [-0.3131161630153656, -0.013272343203425407, 0.010566205717623234, 0.6290770173072815, -0.34134387969970703, 0.006789723411202431, -0.35707324743270874, 0.004209924954921007, -0.0010981354862451553, 0.6151518821716309, -0.3026275336742401, 0.0012173515278846025, 0.005115704145282507, 0.048101335763931274, -0.05595266819000244, -2.7453582286834717, 0.5866278409957886, 0.22088125348091125, 1.0184913873672485, 0.16616128385066986, 0.3680954873561859, -0.19930964708328247, -2.955657482147217, -0.4952361285686493, -0.11908724904060364, 1.274222731590271, -0.16244617104530334, 0.2799874544143677, 0.045228466391563416]} +{"t": 28.376, "q": [-0.31309059262275696, -0.013272343203425407, 0.010566205717623234, 0.6290770173072815, -0.34133580327033997, 0.006775264628231525, -0.35707324743270874, 0.004218447022140026, -0.0010713516967371106, 0.6151348352432251, -0.3025103807449341, 0.0010135918855667114, 0.005196055397391319, 0.04813934117555618, -0.055968545377254486, -2.7452504634857178, 0.5866158604621887, 0.2208692729473114, 1.0181677341461182, 0.16617326438426971, 0.3680954873561859, -0.19930964708328247, -2.9555017948150635, -0.49532002210617065, -0.1191231980919838, 1.274210810661316, -0.1625060886144638, 0.2799515128135681, 0.045216482132673264]} +{"t": 28.3927, "q": [-0.31309911608695984, -0.013272343203425407, 0.010566205717623234, 0.6290599703788757, -0.34133580327033997, 0.006775264628231525, -0.35707324743270874, 0.004209924954921007, -0.0010713516967371106, 0.6151689291000366, -0.30250611901283264, 0.000991830718703568, 0.005196055397391319, 0.04810895770788193, -0.055967770516872406, -2.745142698287964, 0.5866398215293884, 0.220917209982872, 1.018083930015564, 0.16614930331707, 0.36808350682258606, -0.19930964708328247, -2.955238103866577, -0.4953320026397705, -0.1191231980919838, 1.274210810661316, -0.16242220997810364, 0.27996349334716797, 0.04520449787378311]} +{"t": 28.4094, "q": [-0.3130820691585541, -0.01328938640654087, 0.01057959720492363, 0.6290770173072815, -0.34133169054985046, 0.006782571319490671, -0.3570476770401001, 0.004218447022140026, -0.0010981354862451553, 0.6151604056358337, -0.3025020360946655, 0.0009990427643060684, 0.005196055397391319, 0.048116568475961685, -0.05597293749451637, -2.7449748516082764, 0.5866038799285889, 0.22090522944927216, 1.0180360078811646, 0.16617326438426971, 0.36808350682258606, -0.19930964708328247, -2.9550223350524902, -0.4953320026397705, -0.1191231980919838, 1.2742466926574707, -0.16237427294254303, 0.2799874544143677, 0.045216482132673264]} +{"t": 28.4262, "q": [-0.3130820691585541, -0.013280864804983139, 0.01057959720492363, 0.6290684938430786, -0.34133169054985046, 0.006782571319490671, -0.35703063011169434, 0.004201402887701988, -0.001084743533283472, 0.6151774525642395, -0.302497923374176, 0.0010062548099085689, 0.005182663444429636, 0.048124153167009354, -0.055968161672353745, -2.7448909282684326, 0.5865798592567444, 0.22085729241371155, 1.01802396774292, 0.16613730788230896, 0.36805951595306396, -0.19929766654968262, -2.954974412918091, -0.4953799247741699, -0.1191471666097641, 1.2742347717285156, -0.16237427294254303, 0.27996349334716797, 0.04520449787378311]} +{"t": 28.4429, "q": [-0.31305649876594543, -0.01328938640654087, 0.010606381110846996, 0.6290684938430786, -0.34133169054985046, 0.006782571319490671, -0.35703063011169434, 0.004218447022140026, -0.0010713516967371106, 0.6151859164237976, -0.30249375104904175, 0.0009989802492782474, 0.005196055397391319, 0.048124153167009354, -0.055968161672353745, -2.74471116065979, 0.5865439176559448, 0.22088125348091125, 1.0180000066757202, 0.16616128385066986, 0.36808350682258606, -0.19930964708328247, -2.9548544883728027, -0.4953799247741699, -0.1191471666097641, 1.2742466926574707, -0.16233831644058228, 0.2799754738807678, 0.04519251361489296]} +{"t": 28.4597, "q": [-0.3130224347114563, -0.013297909870743752, 0.010606381110846996, 0.6290770173072815, -0.34133169054985046, 0.006782571319490671, -0.35697096586227417, 0.004218447022140026, -0.001044567907229066, 0.6151859164237976, -0.3025020360946655, 0.0009990427643060684, 0.005182663444429636, 0.048124153167009354, -0.055968161672353745, -2.7445433139801025, 0.5865558981895447, 0.2208692729473114, 1.0180360078811646, 0.16613730788230896, 0.3680954873561859, -0.19930964708328247, -2.9547946453094482, -0.4953799247741699, -0.1191471666097641, 1.2742587327957153, -0.16237427294254303, 0.2799874544143677, 0.045216482132673264]} +{"t": 28.4767, "q": [-0.31299686431884766, -0.013280864804983139, 0.010619773529469967, 0.6290599703788757, -0.34132763743400574, 0.0067753237672150135, -0.3570050597190857, 0.004201402887701988, -0.0010579597437754273, 0.6152114868164062, -0.30249375104904175, 0.0009989802492782474, 0.0051424880512058735, 0.048124153167009354, -0.055968161672353745, -2.744387626647949, 0.5865798592567444, 0.22080935537815094, 1.01802396774292, 0.16616128385066986, 0.36810746788978577, -0.19930964708328247, -2.954758644104004, -0.4953799247741699, -0.1191471666097641, 1.2742587327957153, -0.16231434047222137, 0.2799754738807678, 0.045228466391563416]} +{"t": 28.4936, "q": [-0.31299686431884766, -0.01328938640654087, 0.010619773529469967, 0.6290684938430786, -0.34133580327033997, 0.006775264628231525, -0.35697948932647705, 0.004209924954921007, -0.001044567907229066, 0.6152029633522034, -0.3024980127811432, 0.0010207414161413908, 0.00516927195712924, 0.04813932627439499, -0.05595861002802849, -2.744243860244751, 0.5865439176559448, 0.22083331644535065, 1.01802396774292, 0.16618524491786957, 0.3680954873561859, -0.19930964708328247, -2.954746723175049, -0.49536794424057007, -0.11913518607616425, 1.2743545770645142, -0.16237427294254303, 0.2799874544143677, 0.045228466391563416]} +{"t": 28.5103, "q": [-0.31296277046203613, -0.013272343203425407, 0.010606381110846996, 0.6290599703788757, -0.34133169054985046, 0.006782571319490671, -0.3569624423980713, 0.004209924954921007, -0.0010713516967371106, 0.6151944398880005, -0.30250629782676697, 0.0010208039311692119, 0.00516927195712924, 0.048124153167009354, -0.055968161672353745, -2.7441959381103516, 0.5866038799285889, 0.22080935537815094, 1.01802396774292, 0.16618524491786957, 0.3681194484233856, -0.19930964708328247, -2.954746723175049, -0.4953799247741699, -0.1191471666097641, 1.2743666172027588, -0.16236227750778198, 0.2799874544143677, 0.04519251361489296]} +{"t": 28.527, "q": [-0.3129372000694275, -0.013280864804983139, 0.010606381110846996, 0.6290855407714844, -0.341323584318161, 0.006768094375729561, -0.3569453954696655, 0.004201402887701988, -0.001044567907229066, 0.6152114868164062, -0.3024812936782837, 0.0009916431736201048, 0.005182663444429636, 0.048124153167009354, -0.055968161672353745, -2.7440998554229736, 0.5865678787231445, 0.2208213359117508, 1.0180000066757202, 0.16618524491786957, 0.3681314289569855, -0.19930964708328247, -2.9547226428985596, -0.4953559637069702, -0.1191231980919838, 1.2743666172027588, -0.16224244236946106, 0.2799754738807678, 0.045228466391563416]} +{"t": 28.5438, "q": [-0.3129286766052246, -0.013297909870743752, 0.010606381110846996, 0.6290855407714844, -0.34132763743400574, 0.0067753237672150135, -0.35692834854125977, 0.004192880820482969, -0.001044567907229066, 0.6152114868164062, -0.3024771809577942, 0.0009988552192226052, 0.00516927195712924, 0.048124153167009354, -0.055968161672353745, -2.744135856628418, 0.5865199565887451, 0.2207973599433899, 1.0179880857467651, 0.16620922088623047, 0.3681314289569855, -0.19930964708328247, -2.95467472076416, -0.49534398317337036, -0.11913518607616425, 1.2743785381317139, -0.16226640343666077, 0.27996349334716797, 0.04524045065045357]} +{"t": 28.5605, "q": [-0.3128860592842102, -0.01328938640654087, 0.010606381110846996, 0.6290855407714844, -0.34132349491119385, 0.006782629992812872, -0.35689428448677063, 0.004201402887701988, -0.0010579597437754273, 0.6152455806732178, -0.3024853765964508, 0.0009844311280176044, 0.00516927195712924, 0.048116568475961685, -0.05597293749451637, -2.7440760135650635, 0.5865678787231445, 0.22083331644535065, 1.0179640054702759, 0.16622120141983032, 0.3680954873561859, -0.19929766654968262, -2.9547107219696045, -0.4953320026397705, -0.11915915459394455, 1.2743785381317139, -0.16227839887142181, 0.27996349334716797, 0.045216482132673264]} +{"t": 28.5774, "q": [-0.3128434419631958, -0.013297909870743752, 0.010606381110846996, 0.6290940642356873, -0.341323584318161, 0.006768094375729561, -0.356868714094162, 0.004201402887701988, -0.0010579597437754273, 0.615228533744812, -0.30246880650520325, 0.000984288053587079, 0.005182663444429636, 0.04812416806817055, -0.05597810074687004, -2.744028091430664, 0.5866278409957886, 0.22083331644535065, 1.017928123474121, 0.16618524491786957, 0.3681314289569855, -0.19932162761688232, -2.9547226428985596, -0.49534398317337036, -0.11915915459394455, 1.2743066549301147, -0.16229037940502167, 0.2799874544143677, 0.045216482132673264]} +{"t": 28.5941, "q": [-0.3128349483013153, -0.013280864804983139, 0.010633165016770363, 0.6290855407714844, -0.34133169054985046, 0.006782571319490671, -0.3568516671657562, 0.004201402887701988, -0.0010713516967371106, 0.6152370572090149, -0.30249810218811035, 0.0010352280223742127, 0.0052094473503530025, 0.04812416806817055, -0.05597810074687004, -2.744040012359619, 0.5866398215293884, 0.2208213359117508, 1.0179041624069214, 0.16619724035263062, 0.3681314289569855, -0.19930964708328247, -2.9546868801116943, -0.4953320026397705, -0.1191471666097641, 1.2742946147918701, -0.16224244236946106, 0.27996349334716797, 0.04520449787378311]} +{"t": 28.6109, "q": [-0.3128349483013153, -0.013280864804983139, 0.010606381110846996, 0.6290855407714844, -0.3413276970386505, 0.006760788150131702, -0.35683462023735046, 0.004192880820482969, -0.001044567907229066, 0.615228533744812, -0.302497923374176, 0.0010062548099085689, 0.005236231256276369, 0.04810137301683426, -0.05597255006432533, -2.744028091430664, 0.5866997241973877, 0.22080935537815094, 1.017868161201477, 0.16625715792179108, 0.3681194484233856, -0.19930964708328247, -2.9546868801116943, -0.49534398317337036, -0.11915915459394455, 1.2743066549301147, -0.1622064858675003, 0.27996349334716797, 0.04519251361489296]} +{"t": 28.6276, "q": [-0.31280937790870667, -0.013297909870743752, 0.010633165016770363, 0.6290684938430786, -0.34132763743400574, 0.0067753237672150135, -0.35683462023735046, 0.004192880820482969, -0.0010311759542673826, 0.6152114868164062, -0.30253157019615173, 0.0010934424353763461, 0.005249623209238052, 0.04810898005962372, -0.055977713316679, -2.744028091430664, 0.5867236852645874, 0.2208452969789505, 1.017868161201477, 0.16618524491786957, 0.3681314289569855, -0.19930964708328247, -2.95467472076416, -0.49534398317337036, -0.11918312311172485, 1.2743425369262695, -0.16221846640110016, 0.2799754738807678, 0.04520449787378311]} +{"t": 28.6444, "q": [-0.3128349483013153, -0.013297909870743752, 0.010606381110846996, 0.6290855407714844, -0.34132763743400574, 0.0067753237672150135, -0.3568175733089447, 0.0041673146188259125, -0.001044567907229066, 0.6152200102806091, -0.302577406167984, 0.001144507434219122, 0.005236231256276369, 0.04810898005962372, -0.055977713316679, -2.744028091430664, 0.5867236852645874, 0.22083331644535065, 1.0178442001342773, 0.16619724035263062, 0.36816737055778503, -0.19932162761688232, -2.9546988010406494, -0.4953559637069702, -0.11913518607616425, 1.2743185758590698, -0.1621825248003006, 0.27999943494796753, 0.045216482132673264]} +{"t": 28.6611, "q": [-0.31281790137290955, -0.013331998139619827, 0.010619773529469967, 0.6290940642356873, -0.34133169054985046, 0.006782571319490671, -0.3568175733089447, 0.0041587925516068935, -0.0010177841177210212, 0.6152370572090149, -0.3025692105293274, 0.0011589315254241228, 0.005263015162199736, 0.04810898005962372, -0.055977713316679, -2.744051933288574, 0.5866877436637878, 0.22083331644535065, 1.0177842378616333, 0.16620922088623047, 0.3681314289569855, -0.19929766654968262, -2.95467472076416, -0.49534398317337036, -0.1191471666097641, 1.2743185758590698, -0.16217052936553955, 0.2799754738807678, 0.045228466391563416]} +{"t": 28.678, "q": [-0.31281790137290955, -0.013306431472301483, 0.010619773529469967, 0.6290855407714844, -0.34133580327033997, 0.006775264628231525, -0.3568260967731476, 0.004133225884288549, -0.0010177841177210212, 0.615228533744812, -0.30257338285446167, 0.0011662060860544443, 0.005276407115161419, 0.04810898005962372, -0.055977713316679, -2.7440640926361084, 0.5866877436637878, 0.22083331644535065, 1.0177723169326782, 0.16619724035263062, 0.3681314289569855, -0.19933362305164337, -2.95467472076416, -0.49534398317337036, -0.11915915459394455, 1.2743185758590698, -0.1622544229030609, 0.2799874544143677, 0.045228466391563416]} +{"t": 28.6947, "q": [-0.31281790137290955, -0.013323476538062096, 0.010606381110846996, 0.6290855407714844, -0.34132763743400574, 0.0067753237672150135, -0.3568260967731476, 0.004150270018726587, -0.0010177841177210212, 0.6152114868164062, -0.30256903171539307, 0.001129958312958479, 0.005276407115161419, 0.04810898005962372, -0.055977713316679, -2.744016170501709, 0.5866278409957886, 0.22085729241371155, 1.0177723169326782, 0.16617326438426971, 0.3681314289569855, -0.19930964708328247, -2.95467472076416, -0.49536794424057007, -0.11915915459394455, 1.2743306159973145, -0.1622064858675003, 0.2799754738807678, 0.045216482132673264]} +{"t": 28.7115, "q": [-0.3128264248371124, -0.013297909870743752, 0.010606381110846996, 0.6290770173072815, -0.341323584318161, 0.006768094375729561, -0.35683462023735046, 0.004150270018726587, -0.0010177841177210212, 0.6151944398880005, -0.3027029037475586, 0.001362816197797656, 0.005289798602461815, 0.04810898005962372, -0.055977713316679, -2.744016170501709, 0.5866398215293884, 0.2208213359117508, 1.0177243947982788, 0.16618524491786957, 0.3681434094905853, -0.19932162761688232, -2.9546868801116943, -0.4953320026397705, -0.1191471666097641, 1.2743425369262695, -0.16221846640110016, 0.2799754738807678, 0.045228466391563416]} +{"t": 28.7282, "q": [-0.3128264248371124, -0.013340519741177559, 0.01057959720492363, 0.6290855407714844, -0.34133169054985046, 0.006782571319490671, -0.35683462023735046, 0.004150270018726587, -0.0010177841177210212, 0.6151774525642395, -0.30334314703941345, 0.0025051392149180174, 0.005249623209238052, 0.04812416806817055, -0.05597810074687004, -2.7439920902252197, 0.5866038799285889, 0.2208213359117508, 1.0177123546600342, 0.16622120141983032, 0.3681434094905853, -0.19930964708328247, -2.9547107219696045, -0.4953320026397705, -0.11915915459394455, 1.2743185758590698, -0.16221846640110016, 0.27999943494796753, 0.045228466391563416]} +{"t": 28.745, "q": [-0.31281790137290955, -0.013323476538062096, 0.010606381110846996, 0.6290855407714844, -0.34132349491119385, 0.006782629992812872, -0.3568516671657562, 0.004141747951507568, -0.001044567907229066, 0.6151774525642395, -0.30330967903137207, 0.002446924801915884, 0.005249623209238052, 0.04809380695223808, -0.05598726496100426, -2.7439682483673096, 0.5866158604621887, 0.2208213359117508, 1.0177123546600342, 0.16622120141983032, 0.3681434094905853, -0.19930964708328247, -2.9546988010406494, -0.4953320026397705, -0.11918312311172485, 1.2743185758590698, -0.1622544229030609, 0.2799754738807678, 0.045228466391563416]} +{"t": 28.7618, "q": [-0.31280937790870667, -0.013297909870743752, 0.010606381110846996, 0.6290855407714844, -0.34132349491119385, 0.006782629992812872, -0.3568260967731476, 0.004141747951507568, -0.0010177841177210212, 0.6151859164237976, -0.30337241291999817, 0.0025560790672898293, 0.005236231256276369, 0.04809380695223808, -0.05598726496100426, -2.7439560890197754, 0.5866038799285889, 0.22080935537815094, 1.0176883935928345, 0.16617326438426971, 0.3681553900241852, -0.19930964708328247, -2.9546868801116943, -0.4953320026397705, -0.11921907216310501, 1.2743306159973145, -0.16213458776474, 0.2799874544143677, 0.045216482132673264]} +{"t": 28.7786, "q": [-0.3128264248371124, -0.013331998139619827, 0.010606381110846996, 0.6290684938430786, -0.3413276970386505, 0.006760788150131702, -0.3568516671657562, 0.0041587925516068935, -0.0010311759542673826, 0.6151944398880005, -0.30335986614227295, 0.0025342556182295084, 0.005236231256276369, 0.04809380695223808, -0.05598726496100426, -2.7439441680908203, 0.5865558981895447, 0.2208692729473114, 1.0176644325256348, 0.16623318195343018, 0.3681314289569855, -0.19930964708328247, -2.9546868801116943, -0.49532002210617065, -0.11921907216310501, 1.2743066549301147, -0.1621585488319397, 0.2799874544143677, 0.04524045065045357]} +{"t": 28.7953, "q": [-0.3128264248371124, -0.013306431472301483, 0.010566205717623234, 0.6290855407714844, -0.34132349491119385, 0.006782629992812872, -0.3568260967731476, 0.004141747951507568, -0.001044567907229066, 0.6152200102806091, -0.30336815118789673, 0.0025343180168420076, 0.005263015162199736, 0.04810898005962372, -0.055977713316679, -2.743908166885376, 0.5866158604621887, 0.22083331644535065, 1.017640471458435, 0.16620922088623047, 0.3681194484233856, -0.19930964708328247, -2.9546988010406494, -0.49532002210617065, -0.11924304068088531, 1.2743545770645142, -0.16219450533390045, 0.2799874544143677, 0.04526441916823387]} +{"t": 28.812, "q": [-0.31281790137290955, -0.013314953073859215, 0.01057959720492363, 0.6290770173072815, -0.34132757782936096, 0.00678987754508853, -0.3568260967731476, 0.0041673146188259125, -0.0010311759542673826, 0.6152370572090149, -0.3030628561973572, 0.0020175997633486986, 0.005289798602461815, 0.04811658337712288, -0.05598287656903267, -2.7438721656799316, 0.5866637825965881, 0.22085729241371155, 1.0176045894622803, 0.16622120141983032, 0.3681194484233856, -0.19930964708328247, -2.9546868801116943, -0.49534398317337036, -0.11924304068088531, 1.2743905782699585, -0.16212259232997894, 0.27996349334716797, 0.04525243490934372]} +{"t": 28.8289, "q": [-0.31281790137290955, -0.013297909870743752, 0.010566205717623234, 0.6290684938430786, -0.3413276970386505, 0.006760788150131702, -0.35679200291633606, 0.0041673146188259125, -0.0010713516967371106, 0.6152370572090149, -0.30250656604766846, 0.0010642817942425609, 0.005276407115161419, 0.04811658337712288, -0.05598287656903267, -2.7438721656799316, 0.5866398215293884, 0.22083331644535065, 1.017568588256836, 0.16619724035263062, 0.3681194484233856, -0.19932162761688232, -2.95467472076416, -0.49534398317337036, -0.11924304068088531, 1.2743545770645142, -0.16212259232997894, 0.2799754738807678, 0.045228466391563416]} +{"t": 28.8457, "q": [-0.3128264248371124, -0.013306431472301483, 0.01057959720492363, 0.6290855407714844, -0.34132349491119385, 0.006782629992812872, -0.3568090498447418, 0.0041673146188259125, -0.001084743533283472, 0.6152455806732178, -0.3024521768093109, 0.0009696764755062759, 0.005276407115161419, 0.04810898005962372, -0.055977713316679, -2.7438483238220215, 0.5866637825965881, 0.2208692729473114, 1.0174487829208374, 0.16620922088623047, 0.36810746788978577, -0.19933362305164337, -2.95467472076416, -0.49536794424057007, -0.11924304068088531, 1.2743666172027588, -0.16212259232997894, 0.27996349334716797, 0.045228466391563416]} +{"t": 28.8624, "q": [-0.31281790137290955, -0.013314953073859215, 0.010606381110846996, 0.6290855407714844, -0.34133175015449524, 0.006768017541617155, -0.3568090498447418, 0.0041673146188259125, -0.001084743533283472, 0.6152541041374207, -0.302456259727478, 0.0009624644299037755, 0.005303190555423498, 0.048116568475961685, -0.05597293749451637, -2.7438364028930664, 0.5866877436637878, 0.2208213359117508, 1.0173888206481934, 0.16616128385066986, 0.3681194484233856, -0.19930964708328247, -2.954662799835205, -0.4953559637069702, -0.11924304068088531, 1.2743785381317139, -0.1621585488319397, 0.2799874544143677, 0.04526441916823387]} +{"t": 28.8791, "q": [-0.31281790137290955, -0.013306431472301483, 0.010619773529469967, 0.6290770173072815, -0.341323584318161, 0.006768094375729561, -0.3568175733089447, 0.0041673146188259125, -0.0010981354862451553, 0.6152455806732178, -0.3024479150772095, 0.0009479153086431324, 0.005276407115161419, 0.04810895770788193, -0.055967770516872406, -2.7438483238220215, 0.5866637825965881, 0.22083331644535065, 1.0173048973083496, 0.16622120141983032, 0.3681194484233856, -0.19933362305164337, -2.95467472076416, -0.49536794424057007, -0.11924304068088531, 1.2744024991989136, -0.1621585488319397, 0.2799754738807678, 0.04526441916823387]} +{"t": 28.8958, "q": [-0.3128264248371124, -0.013314953073859215, 0.010619773529469967, 0.6290855407714844, -0.34133580327033997, 0.006775264628231525, -0.35680052638053894, 0.0041673146188259125, -0.0010981354862451553, 0.6152711510658264, -0.3024479150772095, 0.0009479153086431324, 0.005276407115161419, 0.048131756484508514, -0.05597332492470741, -2.7438364028930664, 0.5866637825965881, 0.2208452969789505, 1.0171730518341064, 0.16622120141983032, 0.3681194484233856, -0.19930964708328247, -2.95465087890625, -0.4953559637069702, -0.11924304068088531, 1.2743785381317139, -0.16212259232997894, 0.2799874544143677, 0.04524045065045357]} +{"t": 28.9127, "q": [-0.3128264248371124, -0.013306431472301483, 0.010606381110846996, 0.6290855407714844, -0.341323584318161, 0.006768094375729561, -0.3568090498447418, 0.0041673146188259125, -0.0010713516967371106, 0.6152370572090149, -0.3024479150772095, 0.0009479153086431324, 0.005289798602461815, 0.04811658337712288, -0.05598287656903267, -2.7438483238220215, 0.5866398215293884, 0.2208452969789505, 1.0169214010238647, 0.16623318195343018, 0.36810746788978577, -0.19932162761688232, -2.954638719558716, -0.49536794424057007, -0.11924304068088531, 1.2743666172027588, -0.16212259232997894, 0.2799874544143677, 0.04524045065045357]} +{"t": 28.9295, "q": [-0.3128008544445038, -0.013306431472301483, 0.010606381110846996, 0.6290684938430786, -0.341323584318161, 0.006768094375729561, -0.3568090498447418, 0.004175836686044931, -0.0010713516967371106, 0.6152626276016235, -0.302456259727478, 0.0009624644299037755, 0.005263015162199736, 0.04810137301683426, -0.05597255006432533, -2.7437283992767334, 0.5866398215293884, 0.22083331644535065, 1.0164899826049805, 0.16618524491786957, 0.3681194484233856, -0.19933362305164337, -2.9546267986297607, -0.49536794424057007, -0.11921907216310501, 1.2743785381317139, -0.16212259232997894, 0.2799874544143677, 0.04524045065045357]} +{"t": 28.9463, "q": [-0.3128264248371124, -0.013306431472301483, 0.010606381110846996, 0.6290770173072815, -0.34132349491119385, 0.006782629992812872, -0.35680052638053894, 0.004192880820482969, -0.0010579597437754273, 0.6152541041374207, -0.3024479150772095, 0.0009479153086431324, 0.005249623209238052, 0.04810898005962372, -0.055977713316679, -2.7435965538024902, 0.5866158604621887, 0.2208213359117508, 1.015687108039856, 0.16619724035263062, 0.3681314289569855, -0.19933362305164337, -2.954530954360962, -0.4953799247741699, -0.11924304068088531, 1.2743666172027588, -0.16213458776474, 0.27999943494796753, 0.04524045065045357]} +{"t": 28.963, "q": [-0.31280937790870667, -0.013314953073859215, 0.010606381110846996, 0.6290684938430786, -0.341323584318161, 0.006768094375729561, -0.3568175733089447, 0.00418435875326395, -0.0010713516967371106, 0.6152370572090149, -0.3024479150772095, 0.0009479153086431324, 0.005222839303314686, 0.048131756484508514, -0.05597332492470741, -2.7433688640594482, 0.5866038799285889, 0.22083331644535065, 1.0145485401153564, 0.16623318195343018, 0.3681553900241852, -0.19933362305164337, -2.954530954360962, -0.49536794424057007, -0.11926700919866562, 1.2743666172027588, -0.16212259232997894, 0.27999943494796753, 0.04524045065045357]} +{"t": 28.9798, "q": [-0.3128349483013153, -0.013297909870743752, 0.010606381110846996, 0.6290599703788757, -0.34132349491119385, 0.006782629992812872, -0.3568260967731476, 0.00418435875326395, -0.0010579597437754273, 0.6152541041374207, -0.3024479150772095, 0.0009479153086431324, 0.005196055397391319, 0.048116546124219894, -0.05596299469470978, -2.7431652545928955, 0.5865678787231445, 0.22083331644535065, 1.0133980512619019, 0.16618524491786957, 0.368203341960907, -0.19933362305164337, -2.954519033432007, -0.4953919053077698, -0.11921907216310501, 1.2743905782699585, -0.16217052936553955, 0.2799874544143677, 0.045228466391563416]} +{"t": 28.9965, "q": [-0.3128264248371124, -0.013306431472301483, 0.01057959720492363, 0.6290684938430786, -0.34133175015449524, 0.006768017541617155, -0.3568260967731476, 0.004192880820482969, -0.001084743533283472, 0.6152626276016235, -0.30246463418006897, 0.0009770134929567575, 0.005222839303314686, 0.048116568475961685, -0.05597293749451637, -2.7430572509765625, 0.5865798592567444, 0.22083331644535065, 1.0125231742858887, 0.16622120141983032, 0.36819136142730713, -0.19933362305164337, -2.954519033432007, -0.4953919053077698, -0.11924304068088531, 1.2744264602661133, -0.16221846640110016, 0.2800114154815674, 0.04524045065045357]} +{"t": 29.0132, "q": [-0.312783807516098, -0.013297909870743752, 0.01057959720492363, 0.6290514469146729, -0.341323584318161, 0.006768094375729561, -0.3568260967731476, 0.004192880820482969, -0.0010981354862451553, 0.6152711510658264, -0.3024437129497528, 0.0009406407480128109, 0.005196055397391319, 0.048131756484508514, -0.05597332492470741, -2.742985486984253, 0.5865798592567444, 0.2208452969789505, 1.0117442607879639, 0.16624517738819122, 0.36816737055778503, -0.19933362305164337, -2.9544711112976074, -0.4953799247741699, -0.11926700919866562, 1.2744024991989136, -0.16219450533390045, 0.27999943494796753, 0.04525243490934372]} +{"t": 29.03, "q": [-0.31280937790870667, -0.013280864804983139, 0.01057959720492363, 0.6290599703788757, -0.34133175015449524, 0.006768017541617155, -0.3568260967731476, 0.004209924954921007, -0.0010981354862451553, 0.6152711510658264, -0.3024437129497528, 0.0009406407480128109, 0.0052094473503530025, 0.048124153167009354, -0.055968161672353745, -2.742901563644409, 0.5866038799285889, 0.22080935537815094, 1.0107256174087524, 0.16622120141983032, 0.3681793808937073, -0.19933362305164337, -2.9544830322265625, -0.4953799247741699, -0.11921907216310501, 1.2743905782699585, -0.16213458776474, 0.2799874544143677, 0.04524045065045357]} +{"t": 29.0467, "q": [-0.31277528405189514, -0.01328938640654087, 0.01057959720492363, 0.6290343999862671, -0.341323584318161, 0.006768094375729561, -0.3568260967731476, 0.004235491156578064, -0.0010713516967371106, 0.6152711510658264, -0.3024437129497528, 0.0009406407480128109, 0.005222839303314686, 0.048124153167009354, -0.055968161672353745, -2.7428295612335205, 0.5865678787231445, 0.2208213359117508, 1.009718894958496, 0.16620922088623047, 0.36821532249450684, -0.19933362305164337, -2.9544711112976074, -0.49541589617729187, -0.11924304068088531, 1.2743905782699585, -0.16221846640110016, 0.2799874544143677, 0.04524045065045357]} +{"t": 29.0634, "q": [-0.3128008544445038, -0.01328938640654087, 0.01057959720492363, 0.6290258765220642, -0.341323584318161, 0.006768094375729561, -0.35684314370155334, 0.004235491156578064, -0.0011115273227915168, 0.6152711510658264, -0.3024437129497528, 0.0009406407480128109, 0.005182663444429636, 0.048124153167009354, -0.055968161672353745, -2.742649793624878, 0.5865439176559448, 0.22083331644535065, 1.008508563041687, 0.16623318195343018, 0.36821532249450684, -0.19932162761688232, -2.9544711112976074, -0.49541589617729187, -0.11921907216310501, 1.2743545770645142, -0.1621825248003006, 0.2799754738807678, 0.04520449787378311]} +{"t": 29.0801, "q": [-0.31280937790870667, -0.013272343203425407, 0.0105929896235466, 0.6290173530578613, -0.3413194715976715, 0.006775400601327419, -0.3568516671657562, 0.004235491156578064, -0.0011249192757532, 0.6152796745300293, -0.3024478256702423, 0.0009334287024103105, 0.005196055397391319, 0.04813934117555618, -0.055968545377254486, -2.7422544956207275, 0.5865558981895447, 0.22080935537815094, 1.0066988468170166, 0.16622120141983032, 0.3682992160320282, -0.19932162761688232, -2.9544830322265625, -0.4954398572444916, -0.11924304068088531, 1.2743905782699585, -0.16219450533390045, 0.2799874544143677, 0.04527640342712402]} +{"t": 29.0969, "q": [-0.312783807516098, -0.013297909870743752, 0.01057959720492363, 0.6290088295936584, -0.341323584318161, 0.006768094375729561, -0.3568516671657562, 0.004235491156578064, -0.0010981354862451553, 0.6152881979942322, -0.3024519085884094, 0.0009262166568078101, 0.00516927195712924, 0.048124153167009354, -0.055968161672353745, -2.7416791915893555, 0.5865199565887451, 0.2208932340145111, 1.0045536756515503, 0.16623318195343018, 0.36835911870002747, -0.19930964708328247, -2.9544830322265625, -0.4954398572444916, -0.11921907216310501, 1.2744264602661133, -0.16217052936553955, 0.2799874544143677, 0.04524045065045357]} +{"t": 29.1137, "q": [-0.3128008544445038, -0.013280864804983139, 0.01057959720492363, 0.6289832592010498, -0.341323584318161, 0.006768094375729561, -0.3568516671657562, 0.004269579891115427, -0.0011115273227915168, 0.6152967214584351, -0.30244773626327515, 0.0009189239935949445, 0.00516927195712924, 0.0481165274977684, -0.05595305562019348, -2.7411997318267822, 0.5865678787231445, 0.22083331644535065, 1.0027800798416138, 0.16622120141983032, 0.3683711290359497, -0.19932162761688232, -2.9544830322265625, -0.4954398572444916, -0.11920709162950516, 1.2743905782699585, -0.1621585488319397, 0.2799874544143677, 0.04526441916823387]} +{"t": 29.1304, "q": [-0.3127923309803009, -0.013263821601867676, 0.01057959720492363, 0.6289747357368469, -0.3413276970386505, 0.006760788150131702, -0.3568516671657562, 0.004252535756677389, -0.0010981354862451553, 0.6152967214584351, -0.3024519085884094, 0.0009262166568078101, 0.00516927195712924, 0.048124153167009354, -0.055968161672353745, -2.7404446601867676, 0.5865079760551453, 0.22080935537815094, 1.001042366027832, 0.16617326438426971, 0.36835911870002747, -0.19932162761688232, -2.9544830322265625, -0.49545183777809143, -0.11926700919866562, 1.2743785381317139, -0.16217052936553955, 0.2799874544143677, 0.04526441916823387]} +{"t": 29.1472, "q": [-0.3128008544445038, -0.013272343203425407, 0.010552814230322838, 0.6289747357368469, -0.341323584318161, 0.006768094375729561, -0.35684314370155334, 0.004261057823896408, -0.0011115273227915168, 0.6153052449226379, -0.3024561107158661, 0.0009334912174381316, 0.005182663444429636, 0.048116568475961685, -0.05597293749451637, -2.7397615909576416, 0.5865199565887451, 0.22080935537815094, 0.9998798370361328, 0.16616128385066986, 0.36833515763282776, -0.19932162761688232, -2.9544711112976074, -0.49541589617729187, -0.11921907216310501, 1.2743666172027588, -0.1621585488319397, 0.27999943494796753, 0.045228466391563416]} +{"t": 29.164, "q": [-0.3127923309803009, -0.013272343203425407, 0.010552814230322838, 0.6289747357368469, -0.341323584318161, 0.006768094375729561, -0.35684314370155334, 0.004226969089359045, -0.0010713516967371106, 0.6152796745300293, -0.3024479150772095, 0.0009479153086431324, 0.005222839303314686, 0.04813932627439499, -0.05595861002802849, -2.738886833190918, 0.5864840149879456, 0.2208452969789505, 0.9985616207122803, 0.16617326438426971, 0.36833515763282776, -0.19934560358524323, -2.9544711112976074, -0.4954278767108917, -0.11920709162950516, 1.2743545770645142, -0.16219450533390045, 0.2799874544143677, 0.04527640342712402]} +{"t": 29.1807, "q": [-0.312783807516098, -0.013280864804983139, 0.01057959720492363, 0.6289747357368469, -0.341323584318161, 0.006768094375729561, -0.3568516671657562, 0.004252535756677389, -0.0010713516967371106, 0.6152967214584351, -0.3024561107158661, 0.0009334912174381316, 0.005249623209238052, 0.048116546124219894, -0.05596299469470978, -2.7376644611358643, 0.5865439176559448, 0.2208213359117508, 0.996871829032898, 0.16614930331707, 0.3683231770992279, -0.19932162761688232, -2.9544711112976074, -0.4954398572444916, -0.11921907216310501, 1.2743666172027588, -0.1621825248003006, 0.27996349334716797, 0.04525243490934372]} +{"t": 29.1977, "q": [-0.3127923309803009, -0.013280864804983139, 0.01057959720492363, 0.628966212272644, -0.341323584318161, 0.006768094375729561, -0.3568516671657562, 0.004261057823896408, -0.0010981354862451553, 0.6153052449226379, -0.30244380235671997, 0.0009551273542456329, 0.005236231256276369, 0.048116546124219894, -0.05596299469470978, -2.7365379333496094, 0.586531937122345, 0.2208213359117508, 0.9953378438949585, 0.16617326438426971, 0.36833515763282776, -0.19933362305164337, -2.9544589519500732, -0.4954398572444916, -0.11924304068088531, 1.2743545770645142, -0.16217052936553955, 0.2799874544143677, 0.045228466391563416]} +{"t": 29.2145, "q": [-0.3127497136592865, -0.013280864804983139, 0.010606381110846996, 0.628966212272644, -0.3413194715976715, 0.006775400601327419, -0.3568516671657562, 0.004252535756677389, -0.0010981354862451553, 0.6153393387794495, -0.3024437129497528, 0.0009406407480128109, 0.005182663444429636, 0.048124153167009354, -0.055968161672353745, -2.7355313301086426, 0.5864241123199463, 0.22083331644535065, 0.9940674901008606, 0.16618524491786957, 0.36833515763282776, -0.19932162761688232, -2.954435110092163, -0.4954398572444916, -0.11921907216310501, 1.2744024991989136, -0.1622064858675003, 0.2799754738807678, 0.045216482132673264]} +{"t": 29.2312, "q": [-0.3127497136592865, -0.013297909870743752, 0.010619773529469967, 0.6289747357368469, -0.3413195312023163, 0.006760864984244108, -0.3568516671657562, 0.00424401368945837, -0.0010579597437754273, 0.6153478622436523, -0.3024435341358185, 0.000911649432964623, 0.00516927195712924, 0.04813171923160553, -0.05595344305038452, -2.7347402572631836, 0.5864241123199463, 0.2208213359117508, 0.9929290413856506, 0.16616128385066986, 0.3683711290359497, -0.19934560358524323, -2.954411029815674, -0.49545183777809143, -0.11921907216310501, 1.2743666172027588, -0.1622064858675003, 0.2799754738807678, 0.04525243490934372]} +{"t": 29.2479, "q": [-0.3127582371234894, -0.013306431472301483, 0.010633165016770363, 0.6289917826652527, -0.3413195312023163, 0.006760864984244108, -0.3568601906299591, 0.004235491156578064, -0.001044567907229066, 0.6153649091720581, -0.3024561107158661, 0.0009334912174381316, 0.005062136333435774, 0.04812413081526756, -0.05595821887254715, -2.7341771125793457, 0.5864001512527466, 0.22078537940979004, 0.9918863773345947, 0.16617326438426971, 0.368431031703949, -0.19933362305164337, -2.954423189163208, -0.49547579884529114, -0.11920709162950516, 1.2743545770645142, -0.1622064858675003, 0.2799874544143677, 0.04524045065045357]} +{"t": 29.2647, "q": [-0.3127582371234894, -0.013280864804983139, 0.010673340409994125, 0.6289747357368469, -0.34133175015449524, 0.006768017541617155, -0.3568601906299591, 0.004235491156578064, -0.0010177841177210212, 0.6153478622436523, -0.30243533849716187, 0.0009260735823772848, 0.005008568987250328, 0.04813174158334732, -0.055963385850191116, -2.7338175773620605, 0.5862683057785034, 0.22083331644535065, 0.9910235404968262, 0.16617326438426971, 0.36844301223754883, -0.19934560358524323, -2.954447031021118, -0.49547579884529114, -0.11920709162950516, 1.2743905782699585, -0.16219450533390045, 0.27999943494796753, 0.045216482132673264]} +{"t": 29.2814, "q": [-0.31273266673088074, -0.013272343203425407, 0.010686732828617096, 0.628966212272644, -0.3413154184818268, 0.006768171209841967, -0.356868714094162, 0.004235491156578064, -0.001044567907229066, 0.6153990030288696, -0.30243533849716187, 0.0009260735823772848, 0.0049817850813269615, 0.048154499381780624, -0.05594905465841293, -2.7335898876190186, 0.5861244797706604, 0.2208452969789505, 0.990064799785614, 0.16616128385066986, 0.3685269057750702, -0.19933362305164337, -2.954447031021118, -0.49545183777809143, -0.11921907216310501, 1.2744024991989136, -0.16217052936553955, 0.2799874544143677, 0.04524045065045357]} +{"t": 29.2981, "q": [-0.3126985728740692, -0.013297909870743752, 0.010700124315917492, 0.6289576888084412, -0.34132763743400574, 0.0067753237672150135, -0.356868714094162, 0.004269579891115427, -0.0010311759542673826, 0.6154160499572754, -0.3024351894855499, 0.0008971003699116409, 0.005035352893173695, 0.04815451428294182, -0.05595899373292923, -2.7333381175994873, 0.5860885381698608, 0.2208452969789505, 0.9887585043907166, 0.16618524491786957, 0.3686467409133911, -0.19933362305164337, -2.9544830322265625, -0.49549978971481323, -0.11921907216310501, 1.2744024991989136, -0.1621825248003006, 0.2799874544143677, 0.04525243490934372]} +{"t": 29.3148, "q": [-0.3126985728740692, -0.01328938640654087, 0.010686732828617096, 0.628966212272644, -0.34132349491119385, 0.006782629992812872, -0.35684314370155334, 0.004261057823896408, -0.0010311759542673826, 0.6154671907424927, -0.3024018704891205, 0.0008678591111674905, 0.005075528286397457, 0.048154499381780624, -0.05594905465841293, -2.7330985069274902, 0.5859686732292175, 0.2208452969789505, 0.9866492748260498, 0.16611334681510925, 0.36883848905563354, -0.19934560358524323, -2.954542875289917, -0.49549978971481323, -0.11920709162950516, 1.2742946147918701, -0.16217052936553955, 0.27996349334716797, 0.045228466391563416]} +{"t": 29.3316, "q": [-0.3126985728740692, -0.01328938640654087, 0.010673340409994125, 0.628966212272644, -0.34132763743400574, 0.0067753237672150135, -0.3568516671657562, 0.004278101958334446, -0.0010579597437754273, 0.6154501438140869, -0.30240172147750854, 0.0008388858987018466, 0.005008568987250328, 0.048146892338991165, -0.055943891406059265, -2.732846736907959, 0.5859087705612183, 0.2208213359117508, 0.9843003749847412, 0.16616128385066986, 0.36895835399627686, -0.19934560358524323, -2.9546029567718506, -0.4955117702484131, -0.11918312311172485, 1.2743185758590698, -0.1622064858675003, 0.27996349334716797, 0.04527640342712402]} +{"t": 29.3483, "q": [-0.31269004940986633, -0.013280864804983139, 0.010713516734540462, 0.6289491653442383, -0.34132763743400574, 0.0067753237672150135, -0.356868714094162, 0.004295146092772484, -0.0010579597437754273, 0.6154757142066956, -0.30238932371139526, 0.000846035429276526, 0.004941609688103199, 0.0481393039226532, -0.05594866722822189, -2.7327988147735596, 0.5858848094940186, 0.2208213359117508, 0.9825746417045593, 0.16613730788230896, 0.3689463436603546, -0.19934560358524323, -2.9545907974243164, -0.49552375078201294, -0.11918312311172485, 1.274282693862915, -0.16224244236946106, 0.27996349334716797, 0.04526441916823387]} +{"t": 29.365, "q": [-0.3126644790172577, -0.013272343203425407, 0.010700124315917492, 0.6289491653442383, -0.3413154184818268, 0.006768171209841967, -0.3568516671657562, 0.004303668159991503, -0.0010579597437754273, 0.6154671907424927, -0.30238932371139526, 0.000846035429276526, 0.0049817850813269615, 0.048154499381780624, -0.05594905465841293, -2.732834815979004, 0.5859087705612183, 0.22078537940979004, 0.9812923073768616, 0.16617326438426971, 0.3688984215259552, -0.19934560358524323, -2.9545907974243164, -0.49557167291641235, -0.11918312311172485, 1.2742587327957153, -0.1622304618358612, 0.2799754738807678, 0.04530037194490433]} +{"t": 29.3818, "q": [-0.3126644790172577, -0.013280864804983139, 0.010673340409994125, 0.6289576888084412, -0.3413154184818268, 0.006768171209841967, -0.3568516671657562, 0.004303668159991503, -0.0010579597437754273, 0.6154757142066956, -0.30240607261657715, 0.0008751336135901511, 0.00512909609824419, 0.048146914690732956, -0.05595383048057556, -2.732858657836914, 0.5859566926956177, 0.22083331644535065, 0.9799500703811646, 0.16619724035263062, 0.3689223825931549, -0.19932162761688232, -2.9545907974243164, -0.4956076443195343, -0.11918312311172485, 1.2742706537246704, -0.16221846640110016, 0.27996349334716797, 0.04526441916823387]} +{"t": 29.3985, "q": [-0.3126474618911743, -0.013280864804983139, 0.010619773529469967, 0.6289747357368469, -0.3413195312023163, 0.006760864984244108, -0.35683462023735046, 0.004295146092772484, -0.0011115273227915168, 0.6155098080635071, -0.3024267256259918, 0.0008680646424181759, 0.005263015162199736, 0.0481393039226532, -0.05594866722822189, -2.732858657836914, 0.5859447121620178, 0.22080935537815094, 0.9780206084251404, 0.16622120141983032, 0.36881452798843384, -0.19933362305164337, -2.9545907974243164, -0.49569153785705566, -0.11918312311172485, 1.274282693862915, -0.16221846640110016, 0.27996349334716797, 0.04525243490934372]} +{"t": 29.4153, "q": [-0.31263041496276855, -0.013272343203425407, 0.010673340409994125, 0.6289747357368469, -0.3413236439228058, 0.00675355875864625, -0.3568516671657562, 0.004286624025553465, -0.001084743533283472, 0.6155098080635071, -0.3024185299873352, 0.0008824887918308377, 0.005249623209238052, 0.0481393039226532, -0.05594866722822189, -2.732846736907959, 0.585932731628418, 0.22067752480506897, 0.9753960967063904, 0.16622120141983032, 0.36875462532043457, -0.19934560358524323, -2.954542875289917, -0.4957874119281769, -0.11915915459394455, 1.2743185758590698, -0.1622304618358612, 0.2799754738807678, 0.04526441916823387]} +{"t": 29.4322, "q": [-0.3126218914985657, -0.013272343203425407, 0.01065994892269373, 0.6289747357368469, -0.3413195312023163, 0.006760864984244108, -0.3568516671657562, 0.004286624025553465, -0.001084743533283472, 0.6155439019203186, -0.3024267256259918, 0.0008680646424181759, 0.005276407115161419, 0.04813174158334732, -0.055963385850191116, -2.733194351196289, 0.5859447121620178, 0.22064156830310822, 0.9732149839401245, 0.16625715792179108, 0.36861079931259155, -0.19934560358524323, -2.9544711112976074, -0.4959791600704193, -0.11915915459394455, 1.2743066549301147, -0.1622304618358612, 0.27996349334716797, 0.04527640342712402]} +{"t": 29.4489, "q": [-0.312528133392334, -0.013263821601867676, 0.010646557435393333, 0.6289747357368469, -0.3413074016571045, 0.00673917680978775, -0.35679200291633606, 0.004278101958334446, -0.001084743533283472, 0.6155524253845215, -0.3024144470691681, 0.0008897008374333382, 0.005343366414308548, 0.04813934117555618, -0.055968545377254486, -2.733505964279175, 0.5860406160354614, 0.22064156830310822, 0.9718847274780273, 0.16628111898899078, 0.36861079931259155, -0.19935758411884308, -2.954435110092163, -0.49629074335098267, -0.11918312311172485, 1.2743545770645142, -0.1622304618358612, 0.2799874544143677, 0.04527640342712402]} +{"t": 29.4657, "q": [-0.31240031123161316, -0.013255298137664795, 0.010646557435393333, 0.6289747357368469, -0.34131547808647156, 0.0067536355927586555, -0.35669827461242676, 0.004286624025553465, -0.0010713516967371106, 0.6155609488487244, -0.3024226427078247, 0.0008752766880206764, 0.005490677431225777, 0.04812416806817055, -0.05597810074687004, -2.733625650405884, 0.5861484408378601, 0.22067752480506897, 0.9700151681900024, 0.16628111898899078, 0.36861079931259155, -0.19934560358524323, -2.954447031021118, -0.49679407477378845, -0.11918312311172485, 1.2743666172027588, -0.16227839887142181, 0.2799874544143677, 0.04525243490934372]} +{"t": 29.4824, "q": [-0.31235769391059875, -0.013272343203425407, 0.010633165016770363, 0.6289747357368469, -0.3413073420524597, 0.006753712426871061, -0.35666418075561523, 0.004278101958334446, -0.001084743533283472, 0.6155694127082825, -0.3024351894855499, 0.0008971003699116409, 0.005571028683334589, 0.048139363527297974, -0.05597848817706108, -2.7336857318878174, 0.5861244797706604, 0.2206176072359085, 0.967881977558136, 0.16624517738819122, 0.36858683824539185, -0.19935758411884308, -2.954435110092163, -0.4971056580543518, -0.11915915459394455, 1.2744145393371582, -0.16230235993862152, 0.2799754738807678, 0.04526441916823387]} +{"t": 29.4991, "q": [-0.3123321235179901, -0.013272343203425407, 0.010619773529469967, 0.628966212272644, -0.3413074016571045, 0.00673917680978775, -0.356681227684021, 0.004252535756677389, -0.0010579597437754273, 0.615603506565094, -0.30250218510627747, 0.0010280159767717123, 0.0055442447774112225, 0.048154573887586594, -0.05598881468176842, -2.7336018085479736, 0.5860046744346619, 0.22050973773002625, 0.964286744594574, 0.16624517738819122, 0.36858683824539185, -0.19935758411884308, -2.9545071125030518, -0.4971296191215515, -0.11918312311172485, 1.2743666172027588, -0.16224244236946106, 0.2799874544143677, 0.045216482132673264]} +{"t": 29.516, "q": [-0.3123321235179901, -0.013263821601867676, 0.010673340409994125, 0.6289747357368469, -0.3413074016571045, 0.00673917680978775, -0.35670679807662964, 0.004226969089359045, -0.0010177841177210212, 0.6156461238861084, -0.3024939298629761, 0.0010279534617438912, 0.005450501572340727, 0.048146966844797134, -0.05598365142941475, -2.7337095737457275, 0.5858129262924194, 0.2204977571964264, 0.9610390067100525, 0.16626913845539093, 0.36851492524147034, -0.19935758411884308, -2.9546148777008057, -0.49714162945747375, -0.11915915459394455, 1.2743066549301147, -0.16226640343666077, 0.27996349334716797, 0.045228466391563416]} +{"t": 29.5327, "q": [-0.31222134828567505, -0.013263821601867676, 0.010673340409994125, 0.6289917826652527, -0.34130746126174927, 0.006724641192704439, -0.35669827461242676, 0.004226969089359045, -0.0009776083752512932, 0.6156290769577026, -0.30253976583480835, 0.0010790183441713452, 0.0053701503202319145, 0.04820024594664574, -0.056039679795503616, -2.7340331077575684, 0.5856091380119324, 0.22048577666282654, 0.9582226872444153, 0.16626913845539093, 0.3684789836406708, -0.19935758411884308, -2.9547107219696045, -0.49716559052467346, -0.11915915459394455, 1.2741987705230713, -0.1622544229030609, 0.27996349334716797, 0.045228466391563416]} +{"t": 29.5495, "q": [-0.31213611364364624, -0.013280864804983139, 0.010673340409994125, 0.6289832592010498, -0.34129929542541504, 0.006724718026816845, -0.35665565729141235, 0.004226969089359045, -0.0009642164804972708, 0.6156972646713257, -0.302886962890625, 0.0016829868545755744, 0.005356758367270231, 0.04823826998472214, -0.05606549605727196, -2.7340211868286133, 0.585333526134491, 0.22041386365890503, 0.9540042281150818, 0.16628111898899078, 0.3684549927711487, -0.19934560358524323, -2.9548544883728027, -0.49718955159187317, -0.11918312311172485, 1.2741987705230713, -0.1622544229030609, 0.2799395024776459, 0.04524045065045357]} +{"t": 29.5663, "q": [-0.3120594322681427, -0.013272343203425407, 0.010673340409994125, 0.6290088295936584, -0.34130334854125977, 0.006731947418302298, -0.35666418075561523, 0.004218447022140026, -0.0009374326909892261, 0.6157654523849487, -0.30343490839004517, 0.002621773863211274, 0.005356758367270231, 0.04827629774808884, -0.0560913160443306, -2.7342729568481445, 0.5852616429328918, 0.22035394608974457, 0.9507445693016052, 0.16625715792179108, 0.36833515763282776, -0.19935758411884308, -2.9550583362579346, -0.49722549319267273, -0.11919510364532471, 1.2740908861160278, -0.16224244236946106, 0.2799515128135681, 0.045228466391563416]} +{"t": 29.583, "q": [-0.3120168149471283, -0.013272343203425407, 0.01065994892269373, 0.6290003061294556, -0.34129923582077026, 0.006739253643900156, -0.3566727042198181, 0.004226969089359045, -0.0009374326909892261, 0.615748405456543, -0.3035479485988617, 0.0028327275067567825, 0.0053701503202319145, 0.04832959175109863, -0.05615728348493576, -2.7346324920654297, 0.5852975845336914, 0.22037792205810547, 0.9471492767333984, 0.16630509495735168, 0.3683711290359497, -0.19934560358524323, -2.9550821781158447, -0.49778875708580017, -0.11921907216310501, 1.2740190029144287, -0.16230235993862152, 0.2799515128135681, 0.04524045065045357]} +{"t": 29.5998, "q": [-0.31199976801872253, -0.013280864804983139, 0.010606381110846996, 0.6290088295936584, -0.34130334854125977, 0.006731947418302298, -0.3566897511482239, 0.004192880820482969, -0.0009776083752512932, 0.6157739758491516, -0.30360645055770874, 0.002920120721682906, 0.005383542273193598, 0.048375263810157776, -0.05620814859867096, -2.734572410583496, 0.5853934288024902, 0.22038990259170532, 0.9427270889282227, 0.16628111898899078, 0.36833515763282776, -0.19934560358524323, -2.9552619457244873, -0.4983999729156494, -0.11918312311172485, 1.2740190029144287, -0.16227839887142181, 0.2799515128135681, 0.045228466391563416]} +{"t": 29.6166, "q": [-0.3120168149471283, -0.013255298137664795, 0.01057959720492363, 0.6289917826652527, -0.34130340814590454, 0.0067174118012189865, -0.356681227684021, 0.004192880820482969, -0.0009642164804972708, 0.6157739758491516, -0.3037736713886261, 0.003196688601747155, 0.005410325713455677, 0.048420876264572144, -0.05622918903827667, -2.734668254852295, 0.585561215877533, 0.22046180069446564, 0.9396111965179443, 0.16624517738819122, 0.36835911870002747, -0.19935758411884308, -2.955357789993286, -0.49904710054397583, -0.11921907216310501, 1.2739710807800293, -0.16230235993862152, 0.2799395024776459, 0.04520449787378311]} +{"t": 29.6334, "q": [-0.3120168149471283, -0.0132297333329916, 0.010566205717623234, 0.6290003061294556, -0.3413034975528717, 0.00670285802334547, -0.3566897511482239, 0.004175836686044931, -0.0009508245857432485, 0.6157654523849487, -0.3038488030433655, 0.003298693336546421, 0.005437109619379044, 0.04845888167619705, -0.05624506622552872, -2.734536647796631, 0.5856451392173767, 0.22048577666282654, 0.936351478099823, 0.16622120141983032, 0.3684190511703491, -0.19936956465244293, -2.9553699493408203, -0.49969425797462463, -0.11921907216310501, 1.2739590406417847, -0.16229037940502167, 0.2799754738807678, 0.04520449787378311]} +{"t": 29.6501, "q": [-0.3120168149471283, -0.01322120986878872, 0.010485853999853134, 0.6290088295936584, -0.34130755066871643, 0.006710105109959841, -0.35670679807662964, 0.004192880820482969, -0.001004392164759338, 0.6157910227775574, -0.30447205901145935, 0.004368440248072147, 0.005316582508385181, 0.04846647009253502, -0.05624029040336609, -2.7342729568481445, 0.5855851769447327, 0.22046180069446564, 0.9327682256698608, 0.16623318195343018, 0.36840707063674927, -0.19934560358524323, -2.95544171333313, -0.5000657439231873, -0.11924304068088531, 1.2739590406417847, -0.16224244236946106, 0.2799515128135681, 0.04520449787378311]} +{"t": 29.6669, "q": [-0.31204238533973694, -0.013204166665673256, 0.010539421811699867, 0.6290088295936584, -0.34130755066871643, 0.006710105109959841, -0.3567664325237274, 0.00418435875326395, -0.0009642164804972708, 0.6157569289207458, -0.3044721186161041, 0.004382945131510496, 0.0052094473503530025, 0.04852725565433502, -0.056251779198646545, -2.734320878982544, 0.5855132937431335, 0.22035394608974457, 0.9302994608879089, 0.16624517738819122, 0.36831119656562805, -0.19935758411884308, -2.955561637878418, -0.5002095699310303, -0.11924304068088531, 1.2739231586456299, -0.16233831644058228, 0.2799395024776459, 0.04520449787378311]} +{"t": 29.6837, "q": [-0.3120168149471283, -0.013195643201470375, 0.01057959720492363, 0.6290088295936584, -0.3412953317165375, 0.006702934857457876, -0.35675790905952454, 0.004201402887701988, -0.0009508245857432485, 0.6157654523849487, -0.3044930398464203, 0.004419317469000816, 0.005155880004167557, 0.04870212450623512, -0.056340694427490234, -2.734440565109253, 0.585333526134491, 0.22038990259170532, 0.9274232387542725, 0.16625715792179108, 0.36828723549842834, -0.19935758411884308, -2.9556214809417725, -0.5001736283302307, -0.11921907216310501, 1.2738991975784302, -0.16232633590698242, 0.2799395024776459, 0.04520449787378311]} +{"t": 29.7004, "q": [-0.3119827210903168, -0.013195643201470375, 0.010566205717623234, 0.6290088295936584, -0.3412953317165375, 0.006702934857457876, -0.35675790905952454, 0.00418435875326395, -0.0009374326909892261, 0.6157995462417603, -0.3045181334018707, 0.00446298299357295, 0.005155880004167557, 0.04886943846940994, -0.05644425377249718, -2.734428644180298, 0.5849260687828064, 0.22034196555614471, 0.9237081408500671, 0.16622120141983032, 0.36826324462890625, -0.19936956465244293, -2.9557414054870605, -0.5000417828559875, -0.11921907216310501, 1.2738752365112305, -0.16231434047222137, 0.27996349334716797, 0.045228466391563416]} +{"t": 29.7171, "q": [-0.31195715069770813, -0.013195643201470375, 0.010539421811699867, 0.6290088295936584, -0.3412953317165375, 0.006702934857457876, -0.3567323386669159, 0.004192880820482969, -0.0009374326909892261, 0.6157569289207458, -0.3045223355293274, 0.004470257554203272, 0.005196055397391319, 0.0490291453897953, -0.05654265359044075, -2.7345006465911865, 0.584362804889679, 0.22034196555614471, 0.9204723834991455, 0.16623318195343018, 0.3682992160320282, -0.19935758411884308, -2.9559690952301025, -0.4999339282512665, -0.11924304068088531, 1.2738512754440308, -0.16229037940502167, 0.2799515128135681, 0.045228466391563416]} +{"t": 29.7339, "q": [-0.311965674161911, -0.013195643201470375, 0.010566205717623234, 0.6290173530578613, -0.341291218996048, 0.006710241083055735, -0.3567408621311188, 0.004175836686044931, -0.0009508245857432485, 0.6157569289207458, -0.30453070998191833, 0.00448482483625412, 0.00516927195712924, 0.04913562908768654, -0.05661487206816673, -2.7345125675201416, 0.5834519863128662, 0.2203179895877838, 0.9164576530456543, 0.16620922088623047, 0.36835911870002747, -0.19936956465244293, -2.9561848640441895, -0.4999099671840668, -0.11919510364532471, 1.273767352104187, -0.16230235993862152, 0.279927521944046, 0.045216482132673264]} +{"t": 29.7506, "q": [-0.3119741976261139, -0.01317007839679718, 0.010526030324399471, 0.6290173530578613, -0.341291218996048, 0.006710241083055735, -0.35675790905952454, 0.00418435875326395, -0.0009508245857432485, 0.6157654523849487, -0.3045390546321869, 0.004499373957514763, 0.0051424880512058735, 0.04922688007354736, -0.056666843593120575, -2.734344720840454, 0.5822775363922119, 0.2203179895877838, 0.9122392535209656, 0.16623318195343018, 0.36831119656562805, -0.19935758411884308, -2.9565563201904297, -0.4999219477176666, -0.11921907216310501, 1.2736715078353882, -0.16230235993862152, 0.279927521944046, 0.04520449787378311]} +{"t": 29.7673, "q": [-0.311965674161911, -0.01317007839679718, 0.010566205717623234, 0.6290173530578613, -0.34128716588020325, 0.006703011691570282, -0.35675790905952454, 0.004192880820482969, -0.0009240407962352037, 0.615748405456543, -0.3045390546321869, 0.004499373957514763, 0.005102312192320824, 0.04927249625325203, -0.056687865406274796, -2.7343807220458984, 0.5808154940605164, 0.22030600905418396, 0.908775806427002, 0.16623318195343018, 0.36831119656562805, -0.19935758411884308, -2.956915855407715, -0.4999219477176666, -0.11921907216310501, 1.273599624633789, -0.16227839887142181, 0.279927521944046, 0.04520449787378311]} +{"t": 29.7841, "q": [-0.31195715069770813, -0.013144511729478836, 0.010552814230322838, 0.6290258765220642, -0.34129127860069275, 0.0066957054659724236, -0.35675790905952454, 0.004218447022140026, -0.0009642164804972708, 0.6157569289207458, -0.30451831221580505, 0.004491956438869238, 0.005075528286397457, 0.04928771033883095, -0.056698184460401535, -2.734308958053589, 0.5790657997131348, 0.22032998502254486, 0.9049408435821533, 0.16623318195343018, 0.36828723549842834, -0.19935758411884308, -2.957371234893799, -0.4999459385871887, -0.11920709162950516, 1.2735036611557007, -0.16229037940502167, 0.2799035608768463, 0.04520449787378311]} +{"t": 29.801, "q": [-0.311965674161911, -0.0131615549325943, 0.010566205717623234, 0.6290173530578613, -0.34129539132118225, 0.006688399240374565, -0.35675790905952454, 0.004201402887701988, -0.0009508245857432485, 0.6157739758491516, -0.3045307993888855, 0.004499311558902264, 0.0049817850813269615, 0.049333322793245316, -0.05671920254826546, -2.734320878982544, 0.5774359107017517, 0.22030600905418396, 0.9021005630493164, 0.16623318195343018, 0.36826324462890625, -0.19934560358524323, -2.957718849182129, -0.49988600611686707, -0.11920709162950516, 1.273467779159546, -0.1622544229030609, 0.2799035608768463, 0.04520449787378311]} +{"t": 29.8177, "q": [-0.3119741976261139, -0.01317007839679718, 0.01057959720492363, 0.6290173530578613, -0.34129127860069275, 0.0066957054659724236, -0.3567664325237274, 0.004218447022140026, -0.0009374326909892261, 0.6157910227775574, -0.30453070998191833, 0.00448482483625412, 0.005008568987250328, 0.04936370626091957, -0.05671997740864754, -2.7343688011169434, 0.5760098099708557, 0.22030600905418396, 0.8992962837219238, 0.16620922088623047, 0.3682992160320282, -0.19934560358524323, -2.9580183029174805, -0.49971821904182434, -0.11921907216310501, 1.273467779159546, -0.1622544229030609, 0.2799035608768463, 0.045216482132673264]} +{"t": 29.8344, "q": [-0.3119827210903168, -0.01317007839679718, 0.010566205717623234, 0.6290173530578613, -0.341299444437027, 0.006695628631860018, -0.3567323386669159, 0.004218447022140026, -0.0009374326909892261, 0.615748405456543, -0.304526686668396, 0.004506523255258799, 0.005021960940212011, 0.04937893897294998, -0.05674022436141968, -2.7341771125793457, 0.5747514367103577, 0.22023411095142365, 0.8954253792762756, 0.16623318195343018, 0.36838310956954956, -0.19934560358524323, -2.9582700729370117, -0.4994545578956604, -0.11915915459394455, 1.2734198570251465, -0.16224244236946106, 0.2799035608768463, 0.045228466391563416]} +{"t": 29.8513, "q": [-0.3120253384113312, -0.01317007839679718, 0.01057959720492363, 0.6290173530578613, -0.34129127860069275, 0.0066957054659724236, -0.3567749559879303, 0.004218447022140026, -0.0009374326909892261, 0.6157569289207458, -0.3045348823070526, 0.004492099396884441, 0.005008568987250328, 0.049409281462430954, -0.05672113969922066, -2.734105110168457, 0.5733972191810608, 0.2202460914850235, 0.89287269115448, 0.16622120141983032, 0.3683711290359497, -0.19934560358524323, -2.9583539962768555, -0.4992029070854187, -0.11918312311172485, 1.2733958959579468, -0.16224244236946106, 0.27989158034324646, 0.04524045065045357]} +{"t": 29.868, "q": [-0.3120509088039398, -0.01317007839679718, 0.01057959720492363, 0.6290173530578613, -0.34129127860069275, 0.0066957054659724236, -0.35680052638053894, 0.004218447022140026, -0.0009374326909892261, 0.6157398819923401, -0.30454325675964355, 0.004506648518145084, 0.004995177034288645, 0.049394089728593826, -0.05672075226902962, -2.733961343765259, 0.5719351768493652, 0.2202460914850235, 0.8904638886451721, 0.16626913845539093, 0.36840707063674927, -0.19932162761688232, -2.9584617614746094, -0.4990830719470978, -0.11915915459394455, 1.2733958959579468, -0.16226640343666077, 0.27991554141044617, 0.04520449787378311]} +{"t": 29.8847, "q": [-0.31204238533973694, -0.0131615549325943, 0.010566205717623234, 0.6290173530578613, -0.341299444437027, 0.006695628631860018, -0.35679200291633606, 0.004226969089359045, -0.0009508245857432485, 0.6157398819923401, -0.3045390546321869, 0.004499373957514763, 0.005062136333435774, 0.04940926283597946, -0.056711211800575256, -2.7336976528167725, 0.5703052878379822, 0.2202700525522232, 0.8872761130332947, 0.16634105145931244, 0.36844301223754883, -0.19933362305164337, -2.958509683609009, -0.4990231394767761, -0.11919510364532471, 1.2733838558197021, -0.16224244236946106, 0.2799035608768463, 0.045228466391563416]} +{"t": 29.9016, "q": [-0.31204238533973694, -0.013153033331036568, 0.010566205717623234, 0.6290088295936584, -0.341299444437027, 0.006695628631860018, -0.3567749559879303, 0.004218447022140026, -0.0009642164804972708, 0.6157143115997314, -0.3045349717140198, 0.004506586119532585, 0.005008568987250328, 0.04940167814493179, -0.056715983897447586, -2.733661651611328, 0.5687114000320435, 0.22034196555614471, 0.8853346109390259, 0.16630509495735168, 0.36838310956954956, -0.19930964708328247, -2.9588093757629395, -0.4989751875400543, -0.11919510364532471, 1.273311972618103, -0.16219450533390045, 0.27989158034324646, 0.045216482132673264]} +{"t": 29.9184, "q": [-0.31208500266075134, -0.0131615549325943, 0.010566205717623234, 0.6290173530578613, -0.3412993550300598, 0.006710164248943329, -0.3567664325237274, 0.00424401368945837, -0.0009508245857432485, 0.6156802177429199, -0.3045307993888855, 0.004499311558902264, 0.005075528286397457, 0.049386486411094666, -0.056715596467256546, -2.7335777282714844, 0.5673691630363464, 0.22041386365890503, 0.8834171891212463, 0.1663530319929123, 0.3683950901031494, -0.19928568601608276, -2.9589650630950928, -0.49889132380485535, -0.11913518607616425, 1.2732999324798584, -0.16217052936553955, 0.27989158034324646, 0.04520449787378311]} +{"t": 29.9351, "q": [-0.31208500266075134, -0.01317007839679718, 0.01057959720492363, 0.6290173530578613, -0.34130755066871643, 0.006710105109959841, -0.3567749559879303, 0.004218447022140026, -0.0009240407962352037, 0.6156376004219055, -0.30454325675964355, 0.004506648518145084, 0.005021960940212011, 0.049394089728593826, -0.05672075226902962, -2.7333741188049316, 0.5663625001907349, 0.22035394608974457, 0.8814517259597778, 0.16636501252651215, 0.36840707063674927, -0.19928568601608276, -2.959096908569336, -0.4988793134689331, -0.11920709162950516, 1.273240089416504, -0.1622064858675003, 0.27989158034324646, 0.04524045065045357]} +{"t": 29.952, "q": [-0.31212759017944336, -0.013195643201470375, 0.010646557435393333, 0.6290173530578613, -0.34131157398223877, 0.006717334501445293, -0.35679200291633606, 0.00418435875326395, -0.0008570813224650919, 0.615603506565094, -0.3045390546321869, 0.004499373957514763, 0.004955001175403595, 0.04940926283597946, -0.056711211800575256, -2.733278274536133, 0.565751314163208, 0.2203179895877838, 0.8793065547943115, 0.166376993060112, 0.368431031703949, -0.19927369058132172, -2.9591329097747803, -0.4988313913345337, -0.11919510364532471, 1.2732280492782593, -0.1622064858675003, 0.2799035608768463, 0.045228466391563416]} +{"t": 29.969, "q": [-0.31213611364364624, -0.013212688267230988, 0.010700124315917492, 0.6290258765220642, -0.34131157398223877, 0.006717334501445293, -0.35679200291633606, 0.0041587925516068935, -0.0008302975329570472, 0.6156376004219055, -0.30454325675964355, 0.004506648518145084, 0.004955001175403595, 0.049424417316913605, -0.056691739708185196, -2.7329905033111572, 0.5652719140052795, 0.2203179895877838, 0.8760708570480347, 0.1664249300956726, 0.3684789836406708, -0.19926171004772186, -2.9590609073638916, -0.49884337186813354, -0.11921907216310501, 1.273240089416504, -0.1621825248003006, 0.279927521944046, 0.045216482132673264]} +{"t": 29.9857, "q": [-0.3122043013572693, -0.013246776536107063, 0.010740300640463829, 0.6290173530578613, -0.3413156270980835, 0.006724563892930746, -0.35683462023735046, 0.0041587925516068935, -0.0008169056382030249, 0.6156290769577026, -0.30454325675964355, 0.004506648518145084, 0.004901433829218149, 0.04943954944610596, -0.056662339717149734, -2.732738971710205, 0.5651401281356812, 0.2203179895877838, 0.8732425570487976, 0.16641294956207275, 0.3684670031070709, -0.199249729514122, -2.9589531421661377, -0.4988553524017334, -0.11921907216310501, 1.2732161283493042, -0.1621585488319397, 0.2798795998096466, 0.04520449787378311]} diff --git a/Data/G1/laugh.jsonl b/Data/G1/laugh.jsonl new file mode 100644 index 0000000..7357230 --- /dev/null +++ b/Data/G1/laugh.jsonl @@ -0,0 +1,1154 @@ +{"meta": {"hz": 60.0, "motors": 29}} +{"t": 0.0, "q": [-0.3443411886692047, -0.011201469227671623, 0.004218447022140026, 0.6320086121559143, -0.3177177309989929, 0.014747843146324158, -0.3791966438293457, 0.0017896442441269755, -0.004392541944980621, 0.6014994382858276, -0.2828749120235443, 0.0024273348972201347, 0.002691771136596799, 0.004250131081789732, -0.04045834392309189, 0.289419025182724, 0.22108498215675354, -0.017676731571555138, 0.9790992140769958, 0.16581374406814575, 0.020660804584622383, -0.08895890414714813, 0.29344573616981506, -0.220545694231987, 0.023189475759863853, 0.977601170539856, -0.17041568458080292, 0.07149788737297058, 0.03230947256088257]} +{"t": 0.0167, "q": [-0.3442900478839874, -0.011201469227671623, 0.004218447022140026, 0.6320086121559143, -0.31770947575569153, 0.014747893437743187, -0.37911996245384216, 0.0018066884949803352, -0.004379149992018938, 0.6014653444290161, -0.2828749120235443, 0.0024273348972201347, 0.003321190131828189, 0.004212132655084133, -0.04052245616912842, 0.2882925271987915, 0.21889187395572662, -0.017856495454907417, 0.98028564453125, 0.16595755517482758, 0.02081659995019436, -0.08921056985855103, 0.29282256960868835, -0.21946711838245392, 0.02335725538432598, 0.9783561825752258, -0.17048758268356323, 0.07200122624635696, 0.03244129940867424]} +{"t": 0.0335, "q": [-0.3443411886692047, -0.011209990829229355, 0.004231838975101709, 0.6320086121559143, -0.31771358847618103, 0.01475511770695448, -0.3791625499725342, 0.0017811221769079566, -0.004392541944980621, 0.6015164852142334, -0.282858282327652, 0.002427211496978998, 0.0036425956059247255, 0.004181727766990662, -0.04055202007293701, 0.2873457670211792, 0.21708226203918457, -0.01780855841934681, 0.9816758036613464, 0.16599349677562714, 0.020984377712011337, -0.08925850689411163, 0.29215145111083984, -0.21841250360012054, 0.02352503500878811, 0.9794827103614807, -0.17060743272304535, 0.07250456511974335, 0.03253716975450516]} +{"t": 0.0502, "q": [-0.34432414174079895, -0.011235557496547699, 0.004245230928063393, 0.6320086121559143, -0.3177053928375244, 0.01474066823720932, -0.3791455030441284, 0.0017896442441269755, -0.004365758039057255, 0.6014994382858276, -0.2828540802001953, 0.002419964177533984, 0.0037631227169185877, 0.004196937661617994, -0.04056192934513092, 0.28641098737716675, 0.21500898897647858, -0.018263958394527435, 0.9825027585029602, 0.16599349677562714, 0.02099636197090149, -0.08933041244745255, 0.2915162742137909, -0.21633923053741455, 0.023872576653957367, 0.9804893732070923, -0.1706913262605667, 0.07280416786670685, 0.032645028084516525]} +{"t": 0.0671, "q": [-0.34431561827659607, -0.011252601630985737, 0.004258622881025076, 0.6320000886917114, -0.317705363035202, 0.014755167998373508, -0.3791455030441284, 0.0017811221769079566, -0.004365758039057255, 0.6014994382858276, -0.282858282327652, 0.002427211496978998, 0.0038434739690274, 0.0042273662984371185, -0.04061136394739151, 0.28597956895828247, 0.21195301413536072, -0.018743328750133514, 0.9828143119812012, 0.16604143381118774, 0.02099636197090149, -0.08935438096523285, 0.29090508818626404, -0.2138824611902237, 0.024447819218039513, 0.981256365776062, -0.17079918086528778, 0.07298392802476883, 0.03275288641452789]} +{"t": 0.0838, "q": [-0.34428155422210693, -0.011269645765423775, 0.004258622881025076, 0.6320171356201172, -0.31771770119667053, 0.014762342907488346, -0.3790688216686249, 0.0017725999932736158, -0.0043523660860955715, 0.6014909148216248, -0.2828623950481415, 0.00242001679725945, 0.0038300822488963604, 0.004265402443706989, -0.040675632655620575, 0.2855960726737976, 0.20877718925476074, -0.019294602796435356, 0.9831259250640869, 0.16600549221038818, 0.020972393453121185, -0.0893903374671936, 0.29037776589393616, -0.21161745488643646, 0.025047030299901962, 0.9819754362106323, -0.17078720033168793, 0.07315170764923096, 0.032824791967868805]} +{"t": 0.1006, "q": [-0.34426450729370117, -0.011261124163866043, 0.004245230928063393, 0.6320171356201172, -0.31770533323287964, 0.014769667759537697, -0.37903472781181335, 0.0017811221769079566, -0.004365758039057255, 0.6014909148216248, -0.2828666567802429, 0.002441724296659231, 0.0038702578749507666, 0.0043566590175032616, -0.04072519391775131, 0.2853683829307556, 0.20588898658752441, -0.019750002771615982, 0.9832697510719299, 0.16611334681510925, 0.02100834622979164, -0.08943827450275421, 0.2898624539375305, -0.20955616235733032, 0.025610288605093956, 0.9826225638389587, -0.1708710789680481, 0.07325956970453262, 0.03289669752120972]} +{"t": 0.1174, "q": [-0.344204843044281, -0.011252601630985737, 0.004258622881025076, 0.6320171356201172, -0.31770947575569153, 0.014747893437743187, -0.3789580166339874, 0.0017896442441269755, -0.004365758039057255, 0.6014909148216248, -0.28286245465278625, 0.002434458816424012, 0.003923825453966856, 0.004326256923377514, -0.04076463356614113, 0.2852485179901123, 0.20358802378177643, -0.02003762498497963, 0.9833176732063293, 0.16601747274398804, 0.020972393453121185, -0.08945025503635406, 0.28962278366088867, -0.20810607075691223, 0.0261735487729311, 0.9831259250640869, -0.17088307440280914, 0.07324758172035217, 0.03290868178009987]} +{"t": 0.1342, "q": [-0.3442559838294983, -0.011261124163866043, 0.004258622881025076, 0.6320171356201172, -0.31771358847618103, 0.014769618399441242, -0.3790091574192047, 0.0017811221769079566, -0.004379149992018938, 0.6014994382858276, -0.28286653757095337, 0.0024128223303705454, 0.0038568659219890833, 0.004318655002862215, -0.0407695546746254, 0.2851047217845917, 0.20175443589687347, -0.020301276817917824, 0.9833895564079285, 0.16604143381118774, 0.020984377712011337, -0.08948621153831482, 0.2895148992538452, -0.206667959690094, 0.02653307467699051, 0.9835453629493713, -0.1708710789680481, 0.07331948727369308, 0.03290868178009987]} +{"t": 0.1509, "q": [-0.3442474603652954, -0.011235557496547699, 0.004245230928063393, 0.6320171356201172, -0.31770947575569153, 0.014747893437743187, -0.37900063395500183, 0.0017811221769079566, -0.004432717338204384, 0.6014994382858276, -0.2828540802001953, 0.002419964177533984, 0.003910433501005173, 0.004356673918664455, -0.040774568915367126, 0.28503280878067017, 0.20023243129253387, -0.020265324041247368, 0.9835094213485718, 0.1661253273487091, 0.020972393453121185, -0.08949819207191467, 0.2894909381866455, -0.20537367463111877, 0.0267847441136837, 0.9838689565658569, -0.1708710789680481, 0.07334345579147339, 0.03292066603899002]} +{"t": 0.1677, "q": [-0.34426450729370117, -0.011227035894989967, 0.004218447022140026, 0.6320171356201172, -0.31771770119667053, 0.014762342907488346, -0.37903472781181335, 0.0018066884949803352, -0.004419325385242701, 0.6014823913574219, -0.2828666567802429, 0.002441724296659231, 0.0038970415480434895, 0.004333861637860537, -0.040769584476947784, 0.28503280878067017, 0.19897408783435822, -0.020265324041247368, 0.9835573434829712, 0.16606540977954865, 0.020984377712011337, -0.08948621153831482, 0.2895148992538452, -0.20418722927570343, 0.02720419131219387, 0.9842284917831421, -0.17085909843444824, 0.0734153613448143, 0.03293265029788017]} +{"t": 0.1844, "q": [-0.34426450729370117, -0.01124407909810543, 0.004231838975101709, 0.6320086121559143, -0.317705363035202, 0.014755167998373508, -0.37903472781181335, 0.0017981663113459945, -0.004419325385242701, 0.6014994382858276, -0.282858282327652, 0.002427211496978998, 0.003910433501005173, 0.004341464024037123, -0.040764663368463516, 0.28503280878067017, 0.19779963791370392, -0.020265324041247368, 0.9836172461509705, 0.16606540977954865, 0.020984377712011337, -0.08949819207191467, 0.2895148992538452, -0.20313261449337006, 0.027587685734033585, 0.9844081997871399, -0.17090703547000885, 0.0734393298625946, 0.032944634556770325]} +{"t": 0.2012, "q": [-0.34427303075790405, -0.011218513362109661, 0.004231838975101709, 0.6320171356201172, -0.31770947575569153, 0.014747893437743187, -0.379060298204422, 0.0017896442441269755, -0.004405933897942305, 0.6014909148216248, -0.2828666567802429, 0.002441724296659231, 0.0038702578749507666, 0.004356673918664455, -0.040774568915367126, 0.2850567698478699, 0.19663716852664948, -0.020289292559027672, 0.9836412668228149, 0.16608937084674835, 0.02099636197090149, -0.08951018005609512, 0.2895148992538452, -0.20213793218135834, 0.028079040348529816, 0.984611988067627, -0.170895054936409, 0.07342734932899475, 0.03292066603899002]} +{"t": 0.2179, "q": [-0.34428155422210693, -0.011209990829229355, 0.004218447022140026, 0.6320000886917114, -0.3177177309989929, 0.014747843146324158, -0.379060298204422, 0.0017896442441269755, -0.004405933897942305, 0.6014994382858276, -0.2828666567802429, 0.002441724296659231, 0.0039506093598902225, 0.004356673918664455, -0.040774568915367126, 0.28504478931427, 0.19576232135295868, -0.020289292559027672, 0.9836652278900146, 0.16606540977954865, 0.020972393453121185, -0.08948621153831482, 0.28947895765304565, -0.2012990266084671, 0.028546424582600594, 0.984767735004425, -0.170895054936409, 0.07342734932899475, 0.03296860307455063]} +{"t": 0.2346, "q": [-0.3443070948123932, -0.011218513362109661, 0.004231838975101709, 0.6320171356201172, -0.3177259862422943, 0.01473329309374094, -0.3790943920612335, 0.0017896442441269755, -0.004419325385242701, 0.6014909148216248, -0.2828749120235443, 0.0024273348972201347, 0.00388364982791245, 0.004349071532487869, -0.04077949374914169, 0.28500884771347046, 0.19512715935707092, -0.020325245335698128, 0.9836891889572144, 0.16604143381118774, 0.020972393453121185, -0.08951018005609512, 0.2895148992538452, -0.20060394704341888, 0.02877412550151348, 0.9848636388778687, -0.170895054936409, 0.0734393298625946, 0.03296860307455063]} +{"t": 0.2515, "q": [-0.3442985713481903, -0.011209990829229355, 0.0041916631162166595, 0.6320171356201172, -0.3177259862422943, 0.014747792854905128, -0.3791029155254364, 0.0018066884949803352, -0.004432717338204384, 0.6014823913574219, -0.28286245465278625, 0.002434458816424012, 0.003937217406928539, 0.00434146961197257, -0.04078441485762596, 0.28500884771347046, 0.19482755661010742, -0.020361198112368584, 0.9836891889572144, 0.16608937084674835, 0.020972393453121185, -0.08952216058969498, 0.28950291872024536, -0.20016053318977356, 0.02900182455778122, 0.9849115610122681, -0.1709190160036087, 0.07342734932899475, 0.03299257159233093]} +{"t": 0.2683, "q": [-0.3443070948123932, -0.011209990829229355, 0.00416487967595458, 0.6320086121559143, -0.3177259862422943, 0.01473329309374094, -0.3791029155254364, 0.0017896442441269755, -0.004432717338204384, 0.6014653444290161, -0.2828749716281891, 0.002441776916384697, 0.003923825453966856, 0.00434146961197257, -0.04078441485762596, 0.28503280878067017, 0.1947556436061859, -0.020361198112368584, 0.9837011694908142, 0.16606540977954865, 0.020984377712011337, -0.08952216058969498, 0.2894909381866455, -0.19990886747837067, 0.029109682887792587, 0.9849355220794678, -0.17090703547000885, 0.07345131784677505, 0.033004555851221085]} +{"t": 0.285, "q": [-0.34431561827659607, -0.011201469227671623, 0.00416487967595458, 0.6320171356201172, -0.3177342414855957, 0.014733243733644485, -0.37912845611572266, 0.0017811221769079566, -0.004379149992018938, 0.601473867893219, -0.28288745880126953, 0.0024490770883858204, 0.003977392800152302, 0.004303465131670237, -0.040828775614500046, 0.2850208282470703, 0.19481556117534637, -0.02034921385347843, 0.9837011694908142, 0.1660294532775879, 0.020972393453121185, -0.08952216058969498, 0.2894909381866455, -0.19974108040332794, 0.02913365140557289, 0.9849594831466675, -0.17097894847393036, 0.0734393298625946, 0.03299257159233093]} +{"t": 0.3017, "q": [-0.3443411886692047, -0.011201469227671623, 0.0041916631162166595, 0.6320000886917114, -0.3177465796470642, 0.01475493609905243, -0.37917959690093994, 0.0017555557424202561, -0.004338974133133888, 0.6014653444290161, -0.28288745880126953, 0.0024490770883858204, 0.003990784753113985, 0.004273063037544489, -0.04086821526288986, 0.28500884771347046, 0.19488747417926788, -0.020265324041247368, 0.9837131500244141, 0.16600549221038818, 0.02099636197090149, -0.08953414857387543, 0.2894909381866455, -0.19969314336776733, 0.02913365140557289, 0.9850194454193115, -0.1709909290075302, 0.0734393298625946, 0.033004555851221085]} +{"t": 0.3185, "q": [-0.3443497121334076, -0.011175902560353279, 0.0041916631162166595, 0.6320086121559143, -0.3177424669265747, 0.014747693203389645, -0.3791966438293457, 0.0017555557424202561, -0.004298798739910126, 0.6014482975006104, -0.2828790843486786, 0.0024345824494957924, 0.003937217406928539, 0.004288270138204098, -0.04086824506521225, 0.28500884771347046, 0.1949114352464676, -0.020265324041247368, 0.9837251305580139, 0.16606540977954865, 0.020984377712011337, -0.08953414857387543, 0.2894909381866455, -0.19966918230056763, 0.02913365140557289, 0.9850793480873108, -0.17097894847393036, 0.0734393298625946, 0.03299257159233093]} +{"t": 0.3352, "q": [-0.3443497121334076, -0.011201469227671623, 0.0041916631162166595, 0.6320086121559143, -0.3177383244037628, 0.01475496869534254, -0.3791966438293457, 0.0017470336752012372, -0.004325582180172205, 0.6014397740364075, -0.2828790843486786, 0.0024345824494957924, 0.003910433501005173, 0.0043034800328314304, -0.04087815061211586, 0.28503280878067017, 0.19486349821090698, -0.020289292559027672, 0.9837730526924133, 0.16604143381118774, 0.02100834622979164, -0.08953414857387543, 0.2894909381866455, -0.19965718686580658, 0.02913365140557289, 0.9851512312889099, -0.17101489007472992, 0.0734153613448143, 0.033004555851221085]} +{"t": 0.352, "q": [-0.3443497121334076, -0.01118442416191101, 0.0041916631162166595, 0.6320086121559143, -0.3177465498447418, 0.014769436791539192, -0.37917107343673706, 0.0017385114915668964, -0.004325582180172205, 0.6014312505722046, -0.28288331627845764, 0.0024562717881053686, 0.003937217406928539, 0.004280673805624247, -0.04089291766285896, 0.28500884771347046, 0.19486349821090698, -0.020289292559027672, 0.9837730526924133, 0.1660534292459488, 0.02099636197090149, -0.08954612910747528, 0.2894909381866455, -0.19960924983024597, 0.029109682887792587, 0.9852351546287537, -0.17106282711029053, 0.0734393298625946, 0.03299257159233093]} +{"t": 0.3687, "q": [-0.34436675906181335, -0.011201469227671623, 0.0041916631162166595, 0.6320171356201172, -0.3177548050880432, 0.014769386500120163, -0.3791625499725342, 0.0017385114915668964, -0.004325582180172205, 0.6013801097869873, -0.2828790843486786, 0.0024345824494957924, 0.003937217406928539, 0.004242663737386465, -0.0409175306558609, 0.28500884771347046, 0.19481556117534637, -0.020301276817917824, 0.9837730526924133, 0.16616128385066986, 0.020984377712011337, -0.08954612910747528, 0.2895148992538452, -0.19959726929664612, 0.029145635664463043, 0.9853549599647522, -0.17106282711029053, 0.07347528636455536, 0.03301654011011124]} +{"t": 0.3855, "q": [-0.3443497121334076, -0.011175902560353279, 0.0041916631162166595, 0.6320086121559143, -0.3177589178085327, 0.01477661170065403, -0.3791625499725342, 0.0017725999932736158, -0.004338974133133888, 0.6013715863227844, -0.2828916311264038, 0.0024563244078308344, 0.003923825453966856, 0.004280679859220982, -0.04091266915202141, 0.28500884771347046, 0.19482755661010742, -0.020301276817917824, 0.9837730526924133, 0.16608937084674835, 0.020972393453121185, -0.08953414857387543, 0.2894909381866455, -0.19959726929664612, 0.029205556958913803, 0.9854628443717957, -0.17112275958061218, 0.0734393298625946, 0.033004555851221085]} +{"t": 0.4025, "q": [-0.3443582355976105, -0.011218513362109661, 0.0041916631162166595, 0.6320000886917114, -0.3177589178085327, 0.01477661170065403, -0.37917959690093994, 0.0017299894243478775, -0.004312190227210522, 0.6013545393943787, -0.28288745880126953, 0.0024490770883858204, 0.003923825453966856, 0.0042730774730443954, -0.040917590260505676, 0.28500884771347046, 0.19486349821090698, -0.020289292559027672, 0.9837610721588135, 0.1660294532775879, 0.020960409194231033, -0.08954612910747528, 0.2895148992538452, -0.1995733082294464, 0.029205556958913803, 0.9854868054389954, -0.17107482254505157, 0.0734393298625946, 0.03302852436900139]} +{"t": 0.4192, "q": [-0.34437528252601624, -0.011209990829229355, 0.0041916631162166595, 0.6320000886917114, -0.3177548050880432, 0.014769386500120163, -0.37917959690093994, 0.0017299894243478775, -0.004298798739910126, 0.6013630628585815, -0.2828708291053772, 0.002448971616104245, 0.004004176706075668, 0.0042578792199492455, -0.040947187691926956, 0.2850208282470703, 0.19488747417926788, -0.020289292559027672, 0.9837850332260132, 0.16611334681510925, 0.020972393453121185, -0.08955811709165573, 0.2894909381866455, -0.19956131279468536, 0.029265478253364563, 0.9855107665061951, -0.17112275958061218, 0.07346329838037491, 0.033004555851221085]} +{"t": 0.436, "q": [-0.344392329454422, -0.011201469227671623, 0.0041916631162166595, 0.6320000886917114, -0.3177506625652313, 0.014791161753237247, -0.37921369075775146, 0.0017044231062754989, -0.004325582180172205, 0.6013801097869873, -0.28288745880126953, 0.0024490770883858204, 0.003977392800152302, 0.0042578792199492455, -0.040947187691926956, 0.28498488664627075, 0.19486349821090698, -0.020289292559027672, 0.9837730526924133, 0.1661013662815094, 0.020984377712011337, -0.08954612910747528, 0.2895148992538452, -0.19951337575912476, 0.02930143103003502, 0.9855586886405945, -0.17109878361225128, 0.07348726689815521, 0.03301654011011124]} +{"t": 0.4529, "q": [-0.344392329454422, -0.011209990829229355, 0.004218447022140026, 0.6319830417633057, -0.3177630305290222, 0.014783836901187897, -0.3792051672935486, 0.0017214673571288586, -0.0043523660860955715, 0.6013801097869873, -0.28287920355796814, 0.002463466487824917, 0.003937217406928539, 0.004257873632013798, -0.04092743620276451, 0.28498488664627075, 0.19485151767730713, -0.020289292559027672, 0.9837850332260132, 0.1660773903131485, 0.020984377712011337, -0.08955811709165573, 0.2894909381866455, -0.1994774341583252, 0.02930143103003502, 0.9855707287788391, -0.17109878361225128, 0.07345131784677505, 0.03301654011011124]} +{"t": 0.4696, "q": [-0.344392329454422, -0.011201469227671623, 0.004205055069178343, 0.6320000886917114, -0.31776300072669983, 0.014798336662352085, -0.37922221422195435, 0.0017299894243478775, -0.0043523660860955715, 0.6013715863227844, -0.2828958332538605, 0.0024635717272758484, 0.0039506093598902225, 0.004242666531354189, -0.04092740640044212, 0.28498488664627075, 0.19485151767730713, -0.020289292559027672, 0.9837850332260132, 0.16611334681510925, 0.02099636197090149, -0.08957009762525558, 0.2895148992538452, -0.1994774341583252, 0.029289446771144867, 0.9855946898460388, -0.17107482254505157, 0.07346329838037491, 0.03302852436900139]} +{"t": 0.4863, "q": [-0.3444008529186249, -0.011201469227671623, 0.004205055069178343, 0.6319830417633057, -0.31775885820388794, 0.014805611222982407, -0.37922221422195435, 0.0017299894243478775, -0.004379149992018938, 0.6013801097869873, -0.2828833758831024, 0.002470713807269931, 0.003937217406928539, 0.004242669325321913, -0.04093727841973305, 0.2849968671798706, 0.19485151767730713, -0.020301276817917824, 0.9837850332260132, 0.16611334681510925, 0.02100834622979164, -0.08958208560943604, 0.2895148992538452, -0.19948941469192505, 0.02930143103003502, 0.9856066703796387, -0.17107482254505157, 0.07347528636455536, 0.03301654011011124]} +{"t": 0.5031, "q": [-0.34440937638282776, -0.011201469227671623, 0.004178271628916264, 0.6319915652275085, -0.3177547752857208, 0.014783886261284351, -0.37922221422195435, 0.0017555557424202561, -0.004379149992018938, 0.6013715863227844, -0.2828958332538605, 0.0024635717272758484, 0.0039506093598902225, 0.004235061816871166, -0.04092245176434517, 0.28498488664627075, 0.19485151767730713, -0.020301276817917824, 0.9837850332260132, 0.16613730788230896, 0.02099636197090149, -0.08959406614303589, 0.2894909381866455, -0.1994774341583252, 0.029325399547815323, 0.9856066703796387, -0.17108680307865143, 0.07351123541593552, 0.03302852436900139]} +{"t": 0.5198, "q": [-0.344392329454422, -0.011192946694791317, 0.004178271628916264, 0.6320000886917114, -0.3177506625652313, 0.014791161753237247, -0.37922221422195435, 0.0017299894243478775, -0.004392541944980621, 0.6013801097869873, -0.28287920355796814, 0.002463466487824917, 0.003937217406928539, 0.004242669325321913, -0.04093727841973305, 0.28498488664627075, 0.19486349821090698, -0.020289292559027672, 0.9838089942932129, 0.16617326438426971, 0.020984377712011337, -0.08958208560943604, 0.2894909381866455, -0.1994774341583252, 0.029337383806705475, 0.9856186509132385, -0.17107482254505157, 0.07354719191789627, 0.03301654011011124]} +{"t": 0.5365, "q": [-0.3444008529186249, -0.01118442416191101, 0.00416487967595458, 0.6320000886917114, -0.3177671432495117, 0.014791062101721764, -0.37922221422195435, 0.0017385114915668964, -0.004379149992018938, 0.6013715863227844, -0.2828790843486786, 0.0024345824494957924, 0.0039506093598902225, 0.004242672584950924, -0.04094715416431427, 0.2849729061126709, 0.19486349821090698, -0.020289292559027672, 0.9838209748268127, 0.16613730788230896, 0.020972393453121185, -0.08958208560943604, 0.2894909381866455, -0.19946543872356415, 0.029349368065595627, 0.9856306314468384, -0.17105084657669067, 0.07353520393371582, 0.03301654011011124]} +{"t": 0.5533, "q": [-0.34440937638282776, -0.01118442416191101, 0.00416487967595458, 0.6319830417633057, -0.3177588880062103, 0.014791111461818218, -0.3792307376861572, 0.0017385114915668964, -0.004365758039057255, 0.6013715863227844, -0.28288745880126953, 0.0024490770883858204, 0.0039506093598902225, 0.004250277299433947, -0.040952108800411224, 0.28498488664627075, 0.19486349821090698, -0.020289292559027672, 0.9838209748268127, 0.16604143381118774, 0.020984377712011337, -0.08959406614303589, 0.2894909381866455, -0.19946543872356415, 0.02936135232448578, 0.9856545925140381, -0.17111076414585114, 0.07351123541593552, 0.03302852436900139]} +{"t": 0.57, "q": [-0.344392329454422, -0.01118442416191101, 0.00416487967595458, 0.6320000886917114, -0.3177506625652313, 0.014791161753237247, -0.3792051672935486, 0.0017385114915668964, -0.004392541944980621, 0.6013801097869873, -0.2828708291053772, 0.002448971616104245, 0.004017568659037352, 0.004204659257084131, -0.040961891412734985, 0.28498488664627075, 0.19486349821090698, -0.020301276817917824, 0.9838330149650574, 0.1660534292459488, 0.020984377712011337, -0.08959406614303589, 0.2894669771194458, -0.19944147765636444, 0.029349368065595627, 0.9857144951820374, -0.17107482254505157, 0.07348726689815521, 0.03302852436900139]} +{"t": 0.5868, "q": [-0.344392329454422, -0.011167380958795547, 0.00416487967595458, 0.6319915652275085, -0.31774649024009705, 0.014812936075031757, -0.3791966438293457, 0.0017555557424202561, -0.004405933897942305, 0.6013715863227844, -0.28288745880126953, 0.0024490770883858204, 0.003977392800152302, 0.004197057336568832, -0.040966812521219254, 0.28498488664627075, 0.19485151767730713, -0.020289292559027672, 0.9838330149650574, 0.16608937084674835, 0.020972393453121185, -0.08959406614303589, 0.2894909381866455, -0.19946543872356415, 0.02936135232448578, 0.9857264757156372, -0.17106282711029053, 0.07351123541593552, 0.03301654011011124]} +{"t": 0.6035, "q": [-0.3443838059902191, -0.011175902560353279, 0.00416487967595458, 0.6320000886917114, -0.3177506625652313, 0.014791161753237247, -0.37917959690093994, 0.0017725999932736158, -0.004405933897942305, 0.6013715863227844, -0.2828708291053772, 0.002448971616104245, 0.003937217406928539, 0.004197057336568832, -0.040966812521219254, 0.28498488664627075, 0.19485151767730713, -0.020289292559027672, 0.9838209748268127, 0.1660534292459488, 0.020972393453121185, -0.08959406614303589, 0.2894909381866455, -0.19946543872356415, 0.029349368065595627, 0.9857144951820374, -0.17105084657669067, 0.07351123541593552, 0.03305249288678169]} +{"t": 0.6202, "q": [-0.34437528252601624, -0.011175902560353279, 0.004178271628916264, 0.6320000886917114, -0.3177465498447418, 0.01478393655270338, -0.37917959690093994, 0.0017555557424202561, -0.004472893197089434, 0.6013886332511902, -0.2828790843486786, 0.0024345824494957924, 0.003937217406928539, 0.004204662051051855, -0.04097176715731621, 0.2849729061126709, 0.19486349821090698, -0.020289292559027672, 0.9838330149650574, 0.16604143381118774, 0.02100834622979164, -0.08959406614303589, 0.2894669771194458, -0.19944147765636444, 0.029349368065595627, 0.9857744574546814, -0.17109878361225128, 0.07351123541593552, 0.03305249288678169]} +{"t": 0.6372, "q": [-0.3443838059902191, -0.011158858425915241, 0.00416487967595458, 0.6319915652275085, -0.3177506625652313, 0.014776661060750484, -0.3791881203651428, 0.0017555557424202561, -0.004405933897942305, 0.6013801097869873, -0.2828708291053772, 0.002448971616104245, 0.0039506093598902225, 0.004212267231196165, -0.040976718068122864, 0.2849729061126709, 0.19486349821090698, -0.020289292559027672, 0.9838689565658569, 0.16604143381118774, 0.020984377712011337, -0.08959406614303589, 0.2894909381866455, -0.1994294971227646, 0.029349368065595627, 0.9858223795890808, -0.17107482254505157, 0.07351123541593552, 0.03304050862789154]} +{"t": 0.6539, "q": [-0.34437528252601624, -0.01118442416191101, 0.0041916631162166595, 0.6319830417633057, -0.3177547752857208, 0.014783886261284351, -0.3791881203651428, 0.0017725999932736158, -0.004379149992018938, 0.6013801097869873, -0.2828790843486786, 0.0024345824494957924, 0.004017568659037352, 0.0041742571629583836, -0.0410013310611248, 0.28498488664627075, 0.19486349821090698, -0.020289292559027672, 0.9838689565658569, 0.16604143381118774, 0.02099636197090149, -0.08959406614303589, 0.2894430160522461, -0.19944147765636444, 0.02937333658337593, 0.9858343601226807, -0.17108680307865143, 0.07348726689815521, 0.03304050862789154]} +{"t": 0.6706, "q": [-0.34437528252601624, -0.011175902560353279, 0.00416487967595458, 0.6319915652275085, -0.3177588880062103, 0.014791111461818218, -0.3791881203651428, 0.0017811221769079566, -0.004365758039057255, 0.6013886332511902, -0.28288745880126953, 0.0024490770883858204, 0.003964001312851906, 0.0041666580364108086, -0.04101612791419029, 0.28498488664627075, 0.19486349821090698, -0.020289292559027672, 0.9838689565658569, 0.16608937084674835, 0.020972393453121185, -0.08958208560943604, 0.2894669771194458, -0.19941750168800354, 0.029385320842266083, 0.9858703017234802, -0.17118267714977264, 0.07347528636455536, 0.033064477145671844]} +{"t": 0.6876, "q": [-0.3443838059902191, -0.011167380958795547, 0.00416487967595458, 0.6320000886917114, -0.3177506625652313, 0.014791161753237247, -0.3791625499725342, 0.0017470336752012372, -0.004379149992018938, 0.6013801097869873, -0.28288745880126953, 0.0024490770883858204, 0.0039506093598902225, 0.004174262750893831, -0.04102108255028725, 0.2849729061126709, 0.19486349821090698, -0.020289292559027672, 0.9838689565658569, 0.16604143381118774, 0.020984377712011337, -0.08959406614303589, 0.2894669771194458, -0.19941750168800354, 0.029397305101156235, 0.9859901666641235, -0.17111076414585114, 0.07346329838037491, 0.03304050862789154]} +{"t": 0.7045, "q": [-0.34437528252601624, -0.011175902560353279, 0.00416487967595458, 0.6319915652275085, -0.3177547752857208, 0.014783886261284351, -0.3791966438293457, 0.0017555557424202561, -0.004365758039057255, 0.6013971567153931, -0.2828708291053772, 0.002448971616104245, 0.003977392800152302, 0.004174262750893831, -0.04102108255028725, 0.2849729061126709, 0.19482755661010742, -0.020289292559027672, 0.9838689565658569, 0.16611334681510925, 0.02099636197090149, -0.08959406614303589, 0.2894909381866455, -0.1994055211544037, 0.029397305101156235, 0.9860740303993225, -0.17109878361225128, 0.07347528636455536, 0.03304050862789154]} +{"t": 0.7212, "q": [-0.3443838059902191, -0.011175902560353279, 0.004178271628916264, 0.6319830417633057, -0.3177547752857208, 0.014783886261284351, -0.3791966438293457, 0.0017725999932736158, -0.004392541944980621, 0.6013801097869873, -0.2828666567802429, 0.002441724296659231, 0.0039506093598902225, 0.004166663624346256, -0.04103587940335274, 0.2849729061126709, 0.19485151767730713, -0.020289292559027672, 0.9838689565658569, 0.16611334681510925, 0.02100834622979164, -0.08959406614303589, 0.2894909381866455, -0.19939354062080383, 0.02937333658337593, 0.9860860109329224, -0.17107482254505157, 0.07351123541593552, 0.03304050862789154]} +{"t": 0.738, "q": [-0.34437528252601624, -0.01118442416191101, 0.00416487967595458, 0.6320000886917114, -0.3177547752857208, 0.014798386953771114, -0.37917959690093994, 0.0017811221769079566, -0.004365758039057255, 0.601405680179596, -0.2828790843486786, 0.0024345824494957924, 0.003977392800152302, 0.0041590589098632336, -0.04103092476725578, 0.28498488664627075, 0.19486349821090698, -0.020289292559027672, 0.9838689565658569, 0.16604143381118774, 0.020972393453121185, -0.08960605412721634, 0.28947895765304565, -0.19938156008720398, 0.029397305101156235, 0.9861459136009216, -0.17107482254505157, 0.07349925488233566, 0.03305249288678169]} +{"t": 0.7547, "q": [-0.3443838059902191, -0.011167380958795547, 0.00416487967595458, 0.6319915652275085, -0.3177506625652313, 0.014776661060750484, -0.37917107343673706, 0.0017811221769079566, -0.004379149992018938, 0.6013971567153931, -0.2828790843486786, 0.0024345824494957924, 0.003937217406928539, 0.004151456989347935, -0.04103584587574005, 0.2849968671798706, 0.19486349821090698, -0.020289292559027672, 0.9838689565658569, 0.16608937084674835, 0.02099636197090149, -0.08959406614303589, 0.28945499658584595, -0.19938156008720398, 0.029409289360046387, 0.9861579537391663, -0.17112275958061218, 0.07351123541593552, 0.03305249288678169]} +{"t": 0.7714, "q": [-0.3443582355976105, -0.01118442416191101, 0.004178271628916264, 0.6320000886917114, -0.3177506625652313, 0.014791161753237247, -0.3791540265083313, 0.0017725999932736158, -0.004379149992018938, 0.601405680179596, -0.2828790843486786, 0.0024345824494957924, 0.0039506093598902225, 0.004151456989347935, -0.04103584587574005, 0.2849729061126709, 0.19486349821090698, -0.020289292559027672, 0.9838689565658569, 0.16604143381118774, 0.02099636197090149, -0.08959406614303589, 0.2894669771194458, -0.19934560358524323, 0.029385320842266083, 0.9862298369407654, -0.17108680307865143, 0.07352322340011597, 0.03305249288678169]} +{"t": 0.7883, "q": [-0.34436675906181335, -0.011192946694791317, 0.00416487967595458, 0.6319915652275085, -0.3177547752857208, 0.014798386953771114, -0.3792051672935486, 0.0017811221769079566, -0.004379149992018938, 0.6013971567153931, -0.28288331627845764, 0.0024562717881053686, 0.003923825453966856, 0.004098244942724705, -0.041070301085710526, 0.2849968671798706, 0.19486349821090698, -0.020301276817917824, 0.9839168787002563, 0.16601747274398804, 0.020972393453121185, -0.08959406614303589, 0.2894669771194458, -0.19934560358524323, 0.02942127361893654, 0.9862777590751648, -0.17112275958061218, 0.07351123541593552, 0.03305249288678169]} +{"t": 0.8053, "q": [-0.3443582355976105, -0.011175902560353279, 0.00416487967595458, 0.6320000886917114, -0.31775063276290894, 0.014805661514401436, -0.37917959690093994, 0.0017896442441269755, -0.004432717338204384, 0.6013801097869873, -0.28287920355796814, 0.002463466487824917, 0.004004176706075668, 0.004098247736692429, -0.04108017683029175, 0.28498488664627075, 0.19485151767730713, -0.020301276817917824, 0.9839048981666565, 0.16604143381118774, 0.02099636197090149, -0.08958208560943604, 0.2894430160522461, -0.19932162761688232, 0.029409289360046387, 0.9862777590751648, -0.17111076414585114, 0.07352322340011597, 0.03305249288678169]} +{"t": 0.822, "q": [-0.3443497121334076, -0.011167380958795547, 0.00416487967595458, 0.6319915652275085, -0.3177506625652313, 0.014776661060750484, -0.37917959690093994, 0.0017981663113459945, -0.004405933897942305, 0.6013971567153931, -0.2828708291053772, 0.002448971616104245, 0.003977392800152302, 0.004105846863240004, -0.04106537997722626, 0.2849729061126709, 0.19486349821090698, -0.020301276817917824, 0.9839168787002563, 0.16611334681510925, 0.02099636197090149, -0.08959406614303589, 0.289419025182724, -0.19933362305164337, 0.02942127361893654, 0.9863256812095642, -0.17112275958061218, 0.07352322340011597, 0.03304050862789154]} +{"t": 0.8387, "q": [-0.3443582355976105, -0.01118442416191101, 0.00416487967595458, 0.6320000886917114, -0.3177506625652313, 0.014791161753237247, -0.3791540265083313, 0.0017981663113459945, -0.004405933897942305, 0.6013886332511902, -0.28286245465278625, 0.002434458816424012, 0.0039506093598902225, 0.004098244942724705, -0.041070301085710526, 0.28498488664627075, 0.19485151767730713, -0.020289292559027672, 0.9839048981666565, 0.16613730788230896, 0.020984377712011337, -0.08959406614303589, 0.289419025182724, -0.19932162761688232, 0.029397305101156235, 0.986409604549408, -0.17105084657669067, 0.07349925488233566, 0.033064477145671844]} +{"t": 0.8556, "q": [-0.3443582355976105, -0.011158858425915241, 0.004178271628916264, 0.6319915652275085, -0.3177424371242523, 0.014776711352169514, -0.3791455030441284, 0.0018066884949803352, -0.004392541944980621, 0.6013886332511902, -0.28287070989608765, 0.0024200696498155594, 0.003977392800152302, 0.004098244942724705, -0.041070301085710526, 0.28496089577674866, 0.19486349821090698, -0.020289292559027672, 0.9839168787002563, 0.16611334681510925, 0.021032314747571945, -0.08957009762525558, 0.28943103551864624, -0.19930964708328247, 0.029409289360046387, 0.9863976240158081, -0.17109878361225128, 0.07351123541593552, 0.03304050862789154]} +{"t": 0.8723, "q": [-0.3443497121334076, -0.01118442416191101, 0.004178271628916264, 0.6319915652275085, -0.3177465498447418, 0.01478393655270338, -0.3791455030441284, 0.0017896442441269755, -0.004379149992018938, 0.601405680179596, -0.2828749120235443, 0.0024273348972201347, 0.004004176706075668, 0.004090643022209406, -0.041075222194194794, 0.28498488664627075, 0.19485151767730713, -0.020289292559027672, 0.9838809370994568, 0.16606540977954865, 0.020960409194231033, -0.08960605412721634, 0.28945499658584595, -0.19929766654968262, 0.02943325787782669, 0.9864215850830078, -0.17107482254505157, 0.07351123541593552, 0.033064477145671844]} +{"t": 0.8891, "q": [-0.3443497121334076, -0.011201469227671623, 0.004218447022140026, 0.6320171356201172, -0.31773829460144043, 0.014783985912799835, -0.37913697957992554, 0.0017981663113459945, -0.004379149992018938, 0.6013886332511902, -0.28286245465278625, 0.002434458816424012, 0.003977392800152302, 0.004075444769114256, -0.041104819625616074, 0.28496089577674866, 0.19485151767730713, -0.020289292559027672, 0.9839048981666565, 0.16613730788230896, 0.020972393453121185, -0.08959406614303589, 0.28943103551864624, -0.19930964708328247, 0.02943325787782669, 0.986409604549408, -0.17108680307865143, 0.07352322340011597, 0.033064477145671844]} +{"t": 0.9059, "q": [-0.34432414174079895, -0.011201469227671623, 0.004231838975101709, 0.6319915652275085, -0.31773826479911804, 0.014798486605286598, -0.37913697957992554, 0.0018066884949803352, -0.004379149992018938, 0.601405680179596, -0.2828666567802429, 0.002441724296659231, 0.004017568659037352, 0.0040070232935249805, -0.04113924130797386, 0.2849729061126709, 0.19485151767730713, -0.020289292559027672, 0.9838809370994568, 0.16608937084674835, 0.020984377712011337, -0.08959406614303589, 0.289419025182724, -0.19929766654968262, 0.029445242136716843, 0.9864455461502075, -0.17107482254505157, 0.07351123541593552, 0.033076461404561996]} +{"t": 0.9226, "q": [-0.3443070948123932, -0.011218513362109661, 0.004231838975101709, 0.6319915652275085, -0.3177424371242523, 0.014776711352169514, -0.37911996245384216, 0.0018066884949803352, -0.004379149992018938, 0.6014142036437988, -0.28286245465278625, 0.002434458816424012, 0.004004176706075668, 0.004037434235215187, -0.04112942889332771, 0.2849729061126709, 0.19485151767730713, -0.020289292559027672, 0.9839168787002563, 0.16611334681510925, 0.02099636197090149, -0.08958208560943604, 0.289419025182724, -0.19927369058132172, 0.029457226395606995, 0.9864934682846069, -0.17106282711029053, 0.07351123541593552, 0.03305249288678169]} +{"t": 0.9394, "q": [-0.34432414174079895, -0.011192946694791317, 0.004218447022140026, 0.6320000886917114, -0.3177506625652313, 0.014776661060750484, -0.3791029155254364, 0.0018066884949803352, -0.004379149992018938, 0.601405680179596, -0.2828708291053772, 0.002448971616104245, 0.004030960611999035, 0.003969013225287199, -0.0411638543009758, 0.28498488664627075, 0.19485151767730713, -0.020289292559027672, 0.9839048981666565, 0.16613730788230896, 0.021020330488681793, -0.08959406614303589, 0.289419025182724, -0.199249729514122, 0.0294811949133873, 0.9865054488182068, -0.17107482254505157, 0.07351123541593552, 0.03305249288678169]} +{"t": 0.9563, "q": [-0.3443070948123932, -0.011209990829229355, 0.004205055069178343, 0.6320000886917114, -0.3177506625652313, 0.014791161753237247, -0.3791029155254364, 0.0017896442441269755, -0.004338974133133888, 0.6014227271080017, -0.2828666567802429, 0.002441724296659231, 0.004017568659037352, 0.0039614113047719, -0.04116877540946007, 0.2849729061126709, 0.19486349821090698, -0.020289292559027672, 0.9839048981666565, 0.16608937084674835, 0.02099636197090149, -0.08959406614303589, 0.289419025182724, -0.199249729514122, 0.0294811949133873, 0.9865294098854065, -0.17109878361225128, 0.07349925488233566, 0.03305249288678169]} +{"t": 0.973, "q": [-0.3443070948123932, -0.011227035894989967, 0.004231838975101709, 0.6320000886917114, -0.31774240732192993, 0.014791211113333702, -0.3791114389896393, 0.0018066884949803352, -0.004365758039057255, 0.6013886332511902, -0.2828708291053772, 0.002448971616104245, 0.004004176706075668, 0.00394621305167675, -0.04119836911559105, 0.2849968671798706, 0.19485151767730713, -0.020289292559027672, 0.9839048981666565, 0.16611334681510925, 0.02099636197090149, -0.08960605412721634, 0.28940704464912415, -0.19923774898052216, 0.029505163431167603, 0.9865294098854065, -0.17107482254505157, 0.07352322340011597, 0.03304050862789154]} +{"t": 0.9897, "q": [-0.34432414174079895, -0.011192946694791317, 0.004218447022140026, 0.6319915652275085, -0.3177547752857208, 0.014783886261284351, -0.37911996245384216, 0.0017811221769079566, -0.004392541944980621, 0.601405680179596, -0.2828666567802429, 0.002441724296659231, 0.003964001312851906, 0.003969013225287199, -0.0411638543009758, 0.2849968671798706, 0.19487549364566803, -0.020289292559027672, 0.9838929176330566, 0.16608937084674835, 0.02099636197090149, -0.08960605412721634, 0.289419025182724, -0.19921377301216125, 0.02949317917227745, 0.9865654110908508, -0.17107482254505157, 0.07355917245149612, 0.033076461404561996]} +{"t": 1.0067, "q": [-0.34433266520500183, -0.011201469227671623, 0.004231838975101709, 0.6320000886917114, -0.3177465498447418, 0.014769436791539192, -0.37911996245384216, 0.0017896442441269755, -0.004379149992018938, 0.6013971567153931, -0.2828749120235443, 0.0024273348972201347, 0.003977392800152302, 0.003961416892707348, -0.04118852689862251, 0.2849729061126709, 0.19485151767730713, -0.020289292559027672, 0.9839048981666565, 0.16613730788230896, 0.020984377712011337, -0.08959406614303589, 0.28943103551864624, -0.1992017924785614, 0.029469210654497147, 0.9866013526916504, -0.17112275958061218, 0.07354719191789627, 0.03305249288678169]} +{"t": 1.0235, "q": [-0.34431561827659607, -0.011192946694791317, 0.004218447022140026, 0.6320000886917114, -0.3177547752857208, 0.014783886261284351, -0.37911996245384216, 0.0017896442441269755, -0.004365758039057255, 0.601405680179596, -0.2828707695007324, 0.002434529596939683, 0.004004176706075668, 0.003931008744984865, -0.041208215057849884, 0.28498488664627075, 0.19487549364566803, -0.020289292559027672, 0.9838929176330566, 0.16611334681510925, 0.020984377712011337, -0.08959406614303589, 0.2893950641155243, -0.19918981194496155, 0.029505163431167603, 0.9867091774940491, -0.17108680307865143, 0.07349925488233566, 0.03305249288678169]} +{"t": 1.0402, "q": [-0.3443070948123932, -0.01118442416191101, 0.004218447022140026, 0.6320000886917114, -0.3177547752857208, 0.014783886261284351, -0.37913697957992554, 0.0017981663113459945, -0.004379149992018938, 0.6014397740364075, -0.28286245465278625, 0.002434458816424012, 0.004017568659037352, 0.003953814972192049, -0.04119344800710678, 0.2849729061126709, 0.19485151767730713, -0.020289292559027672, 0.9839048981666565, 0.16608937084674835, 0.020984377712011337, -0.08959406614303589, 0.289419025182724, -0.1992017924785614, 0.0294811949133873, 0.9867451786994934, -0.17107482254505157, 0.07353520393371582, 0.03305249288678169]} +{"t": 1.0571, "q": [-0.34431561827659607, -0.011167380958795547, 0.0041916631162166595, 0.6319915652275085, -0.3177547752857208, 0.014783886261284351, -0.3791455030441284, 0.0017725999932736158, -0.004338974133133888, 0.6014142036437988, -0.28286245465278625, 0.002434458816424012, 0.003977392800152302, 0.0039158049039542675, -0.04121806100010872, 0.2849729061126709, 0.19486349821090698, -0.020289292559027672, 0.9838929176330566, 0.16608937084674835, 0.020972393453121185, -0.08959406614303589, 0.2894430160522461, -0.1991538554430008, 0.029505163431167603, 0.9868290424346924, -0.17103886604309082, 0.07354719191789627, 0.033064477145671844]} +{"t": 1.0741, "q": [-0.34433266520500183, -0.011167380958795547, 0.0041916631162166595, 0.6319915652275085, -0.3177547752857208, 0.014798386953771114, -0.37911996245384216, 0.0017555557424202561, -0.0043523660860955715, 0.601405680179596, -0.2828708291053772, 0.002448971616104245, 0.004004176706075668, 0.0038929986767470837, -0.04123282432556152, 0.2849729061126709, 0.19486349821090698, -0.020265324041247368, 0.9839048981666565, 0.1661253273487091, 0.02099636197090149, -0.08960605412721634, 0.289419025182724, -0.19916583597660065, 0.02949317917227745, 0.986924946308136, -0.17108680307865143, 0.07355917245149612, 0.03305249288678169]} +{"t": 1.0908, "q": [-0.3443411886692047, -0.011175902560353279, 0.004218447022140026, 0.6319915652275085, -0.3177547752857208, 0.014798386953771114, -0.37913697957992554, 0.001764077926054597, -0.004379149992018938, 0.6013971567153931, -0.2828790843486786, 0.0024345824494957924, 0.004004176706075668, 0.003908202517777681, -0.04122298210859299, 0.2849729061126709, 0.19485151767730713, -0.020289292559027672, 0.9839168787002563, 0.16604143381118774, 0.02099636197090149, -0.08960605412721634, 0.289419025182724, -0.1991298794746399, 0.029505163431167603, 0.9869489073753357, -0.17107482254505157, 0.07353520393371582, 0.03304050862789154]} +{"t": 1.1076, "q": [-0.3443497121334076, -0.011218513362109661, 0.004205055069178343, 0.6319830417633057, -0.3177506625652313, 0.014791161753237247, -0.37913697957992554, 0.0017555557424202561, -0.004365758039057255, 0.601405680179596, -0.2828708291053772, 0.002448971616104245, 0.004004176706075668, 0.00388539070263505, -0.041217997670173645, 0.2849729061126709, 0.19486349821090698, -0.020289292559027672, 0.9839168787002563, 0.16611334681510925, 0.02099636197090149, -0.08960605412721634, 0.289419025182724, -0.19911789894104004, 0.029505163431167603, 0.9869848489761353, -0.17109878361225128, 0.07353520393371582, 0.033064477145671844]} +{"t": 1.1243, "q": [-0.3443497121334076, -0.011175902560353279, 0.0041916631162166595, 0.6319915652275085, -0.31774240732192993, 0.014791211113333702, -0.37913697957992554, 0.0017811221769079566, -0.0043523660860955715, 0.601405680179596, -0.2828790843486786, 0.0024345824494957924, 0.004030960611999035, 0.0038701924495399, -0.041247591376304626, 0.2849729061126709, 0.19486349821090698, -0.020301276817917824, 0.9839168787002563, 0.16611334681510925, 0.020972393453121185, -0.08958208560943604, 0.289419025182724, -0.19906996190547943, 0.02949317917227745, 0.9870207905769348, -0.17106282711029053, 0.07355917245149612, 0.03305249288678169]} +{"t": 1.141, "q": [-0.34432414174079895, -0.01118442416191101, 0.004218447022140026, 0.6319915652275085, -0.31774652004241943, 0.014798436313867569, -0.3791540265083313, 0.0017725999932736158, -0.004365758039057255, 0.601405680179596, -0.2828708291053772, 0.002448971616104245, 0.003964001312851906, 0.0037941662594676018, -0.04127706587314606, 0.28498488664627075, 0.19485151767730713, -0.020289292559027672, 0.9839168787002563, 0.16608937084674835, 0.020972393453121185, -0.08960605412721634, 0.289419025182724, -0.19906996190547943, 0.029517147690057755, 0.9870207905769348, -0.17112275958061218, 0.07355917245149612, 0.03304050862789154]} +{"t": 1.1578, "q": [-0.34432414174079895, -0.011175902560353279, 0.004218447022140026, 0.6319915652275085, -0.3177465498447418, 0.01478393655270338, -0.37913697957992554, 0.0017811221769079566, -0.004365758039057255, 0.601405680179596, -0.28287070989608765, 0.0024200696498155594, 0.0039506093598902225, 0.003778965212404728, -0.041296783834695816, 0.2849729061126709, 0.19486349821090698, -0.020289292559027672, 0.9838929176330566, 0.16611334681510925, 0.020972393453121185, -0.08960605412721634, 0.28943103551864624, -0.19903400540351868, 0.029517147690057755, 0.9870207905769348, -0.17113474011421204, 0.07355917245149612, 0.03305249288678169]} +{"t": 1.1745, "q": [-0.3443497121334076, -0.011192946694791317, 0.004218447022140026, 0.6320000886917114, -0.3177506625652313, 0.014791161753237247, -0.3791540265083313, 0.0017981663113459945, -0.004379149992018938, 0.601405680179596, -0.28286245465278625, 0.002434458816424012, 0.003990784753113985, 0.003771366085857153, -0.04131158068776131, 0.2849729061126709, 0.19486349821090698, -0.020265324041247368, 0.9839168787002563, 0.16613730788230896, 0.02100834622979164, -0.08960605412721634, 0.28940704464912415, -0.19902202486991882, 0.029529130086302757, 0.9870327711105347, -0.17109878361225128, 0.07358314096927643, 0.033064477145671844]} +{"t": 1.1912, "q": [-0.3443497121334076, -0.01118442416191101, 0.0041916631162166595, 0.6320000886917114, -0.3177630305290222, 0.014783836901187897, -0.3791625499725342, 0.0017896442441269755, -0.004365758039057255, 0.6013715863227844, -0.2828708291053772, 0.002448971616104245, 0.004044352564960718, 0.003771366085857153, -0.04131158068776131, 0.2849729061126709, 0.19486349821090698, -0.020289292559027672, 0.9839168787002563, 0.16608937084674835, 0.02100834622979164, -0.08960605412721634, 0.28940704464912415, -0.19898608326911926, 0.029529130086302757, 0.9871166348457336, -0.17109878361225128, 0.07355917245149612, 0.033064477145671844]} +{"t": 1.208, "q": [-0.34432414174079895, -0.01118442416191101, 0.004218447022140026, 0.6319915652275085, -0.3177589178085327, 0.01477661170065403, -0.37912845611572266, 0.0017896442441269755, -0.004379149992018938, 0.601405680179596, -0.2828708291053772, 0.002448971616104245, 0.003977392800152302, 0.0037789710331708193, -0.04131653532385826, 0.28496089577674866, 0.19486349821090698, -0.020301276817917824, 0.9839168787002563, 0.16608937084674835, 0.020972393453121185, -0.08960605412721634, 0.289419025182724, -0.19898608326911926, 0.029529130086302757, 0.9871046543121338, -0.17109878361225128, 0.07359512895345688, 0.033064477145671844]} +{"t": 1.2247, "q": [-0.34432414174079895, -0.011201469227671623, 0.0041916631162166595, 0.6320000886917114, -0.3177547752857208, 0.014798386953771114, -0.37913697957992554, 0.0018066884949803352, -0.004379149992018938, 0.601405680179596, -0.2828707695007324, 0.002434529596939683, 0.004004176706075668, 0.0037561561912298203, -0.0413016751408577, 0.28498488664627075, 0.19486349821090698, -0.020301276817917824, 0.9839168787002563, 0.1660773903131485, 0.020972393453121185, -0.08961803466081619, 0.28940704464912415, -0.19893814623355865, 0.029529130086302757, 0.9871286749839783, -0.17108680307865143, 0.07358314096927643, 0.033064477145671844]} +{"t": 1.2414, "q": [-0.34433266520500183, -0.011175902560353279, 0.004178271628916264, 0.6319830417633057, -0.3177506625652313, 0.014791161753237247, -0.37913697957992554, 0.0017896442441269755, -0.004405933897942305, 0.601405680179596, -0.2828666567802429, 0.002441724296659231, 0.004004176706075668, 0.0037561561912298203, -0.0413016751408577, 0.2849729061126709, 0.19486349821090698, -0.020301276817917824, 0.9839048981666565, 0.16606540977954865, 0.02099636197090149, -0.08960605412721634, 0.289419025182724, -0.19893814623355865, 0.02954111434519291, 0.9871286749839783, -0.17108680307865143, 0.07358314096927643, 0.03304050862789154]} +{"t": 1.2582, "q": [-0.3443411886692047, -0.011167380958795547, 0.0041916631162166595, 0.6319915652275085, -0.3177465498447418, 0.01478393655270338, -0.37911996245384216, 0.0017725999932736158, -0.004392541944980621, 0.601405680179596, -0.28286245465278625, 0.002434458816424012, 0.004004176706075668, 0.003763758111745119, -0.04129675403237343, 0.28498488664627075, 0.19486349821090698, -0.020289292559027672, 0.9839168787002563, 0.16608937084674835, 0.021020330488681793, -0.08961803466081619, 0.28940704464912415, -0.19893814623355865, 0.02954111434519291, 0.9871406555175781, -0.17111076414585114, 0.07359512895345688, 0.03305249288678169]} +{"t": 1.2749, "q": [-0.3443070948123932, -0.011192946694791317, 0.004218447022140026, 0.6320000886917114, -0.31774240732192993, 0.014791211113333702, -0.37912845611572266, 0.0017896442441269755, -0.004379149992018938, 0.6014312505722046, -0.28286245465278625, 0.002434458816424012, 0.004004176706075668, 0.003756158985197544, -0.04131155088543892, 0.2849489152431488, 0.19486349821090698, -0.020289292559027672, 0.9839048981666565, 0.1660294532775879, 0.020972393453121185, -0.08961803466081619, 0.28940704464912415, -0.1989261507987976, 0.029529130086302757, 0.9871286749839783, -0.17109878361225128, 0.07359512895345688, 0.03305249288678169]} +{"t": 1.2918, "q": [-0.34432414174079895, -0.011167380958795547, 0.0041916631162166595, 0.6320000886917114, -0.3177506625652313, 0.014791161753237247, -0.37913697957992554, 0.001823732745833695, -0.004379149992018938, 0.6014142036437988, -0.2828749716281891, 0.002441776916384697, 0.004044352564960718, 0.0037561620119959116, -0.04132142663002014, 0.2849729061126709, 0.19485151767730713, -0.020289292559027672, 0.9839048981666565, 0.16599349677562714, 0.020984377712011337, -0.08961803466081619, 0.28940704464912415, -0.19893814623355865, 0.029517147690057755, 0.987152636051178, -0.17109878361225128, 0.07359512895345688, 0.033064477145671844]} +{"t": 1.3085, "q": [-0.3443070948123932, -0.01118442416191101, 0.004218447022140026, 0.6319915652275085, -0.31774240732192993, 0.014791211113333702, -0.37911996245384216, 0.0018152105621993542, -0.004405933897942305, 0.6014142036437988, -0.28286251425743103, 0.0024489369243383408, 0.004071136470884085, 0.003771366085857153, -0.04131158068776131, 0.2849729061126709, 0.19487549364566803, -0.020289292559027672, 0.9839168787002563, 0.1661253273487091, 0.02099636197090149, -0.08960605412721634, 0.289419025182724, -0.1989261507987976, 0.02954111434519291, 0.987152636051178, -0.17107482254505157, 0.07357116043567657, 0.03304050862789154]} +{"t": 1.3253, "q": [-0.3443070948123932, -0.011175902560353279, 0.0041916631162166595, 0.6319830417633057, -0.3177506625652313, 0.014791161753237247, -0.3791114389896393, 0.0018152105621993542, -0.004405933897942305, 0.601405680179596, -0.2828666567802429, 0.002441724296659231, 0.004111311864107847, 0.003771366085857153, -0.04131158068776131, 0.28496089577674866, 0.19486349821090698, -0.020289292559027672, 0.9839168787002563, 0.16616128385066986, 0.02099636197090149, -0.08963002264499664, 0.28940704464912415, -0.1989261507987976, 0.02954111434519291, 0.9871406555175781, -0.17111076414585114, 0.07358314096927643, 0.03304050862789154]} +{"t": 1.342, "q": [-0.3442985713481903, -0.011175902560353279, 0.0041916631162166595, 0.6319915652275085, -0.3177547752857208, 0.014783886261284351, -0.37911996245384216, 0.0017981663113459945, -0.004365758039057255, 0.6013971567153931, -0.2828708291053772, 0.002448971616104245, 0.004097919911146164, 0.003786572953686118, -0.041311610490083694, 0.28498488664627075, 0.19486349821090698, -0.020289292559027672, 0.9839048981666565, 0.16611334681510925, 0.02099636197090149, -0.08963002264499664, 0.289419025182724, -0.19889020919799805, 0.02954111434519291, 0.9871765971183777, -0.17106282711029053, 0.07360710948705673, 0.03305249288678169]} +{"t": 1.3588, "q": [-0.34431561827659607, -0.011201469227671623, 0.004218447022140026, 0.6320000886917114, -0.3177424371242523, 0.014776711352169514, -0.37911996245384216, 0.0017811221769079566, -0.004405933897942305, 0.6014227271080017, -0.2828708291053772, 0.002448971616104245, 0.004084527958184481, 0.003771366085857153, -0.04131158068776131, 0.2849729061126709, 0.19487549364566803, -0.020289292559027672, 0.9839168787002563, 0.16608937084674835, 0.02105628326535225, -0.08960605412721634, 0.289419025182724, -0.19868646562099457, 0.029589051380753517, 0.9872245192527771, -0.17108680307865143, 0.07358314096927643, 0.033064477145671844]} +{"t": 1.3755, "q": [-0.34433266520500183, -0.01118442416191101, 0.0041916631162166595, 0.6320000886917114, -0.3177547752857208, 0.014783886261284351, -0.37913697957992554, 0.001764077926054597, -0.0043523660860955715, 0.6014142036437988, -0.2828749120235443, 0.0024273348972201347, 0.004084527958184481, 0.0037941839545965195, -0.041336316615343094, 0.2850208282470703, 0.19481556117534637, -0.020301276817917824, 0.9839168787002563, 0.16604143381118774, 0.02099636197090149, -0.08961803466081619, 0.2894430160522461, -0.19833892583847046, 0.02960103563964367, 0.9872604608535767, -0.17106282711029053, 0.07359512895345688, 0.033064477145671844]} +{"t": 1.3923, "q": [-0.34431561827659607, -0.011167380958795547, 0.004218447022140026, 0.6319915652275085, -0.3177465498447418, 0.01478393655270338, -0.37911996245384216, 0.0017555557424202561, -0.0043523660860955715, 0.601405680179596, -0.2828666567802429, 0.002441724296659231, 0.004071136470884085, 0.003771366085857153, -0.04131158068776131, 0.2850567698478699, 0.19469572603702545, -0.02034921385347843, 0.9839288592338562, 0.16611334681510925, 0.02100834622979164, -0.08961803466081619, 0.2894430160522461, -0.19791947305202484, 0.02966095693409443, 0.9872964024543762, -0.17107482254505157, 0.07358314096927643, 0.033064477145671844]} +{"t": 1.409, "q": [-0.3443411886692047, -0.011201469227671623, 0.004218447022140026, 0.6319915652275085, -0.3177506625652313, 0.014776661060750484, -0.37911996245384216, 0.001764077926054597, -0.004392541944980621, 0.6013971567153931, -0.2828625440597534, 0.002463378943502903, 0.004044352564960718, 0.0037561561912298203, -0.0413016751408577, 0.2851047217845917, 0.19462381303310394, -0.02033722959458828, 0.9839528203010559, 0.16613730788230896, 0.020984377712011337, -0.08961803466081619, 0.2894909381866455, -0.19747605919837952, 0.029756831005215645, 0.9872964024543762, -0.17111076414585114, 0.07359512895345688, 0.033064477145671844]} +{"t": 1.4257, "q": [-0.3443497121334076, -0.011201469227671623, 0.004218447022140026, 0.6320000886917114, -0.3177506625652313, 0.014791161753237247, -0.37913697957992554, 0.001764077926054597, -0.004325582180172205, 0.601405680179596, -0.2828749716281891, 0.002441776916384697, 0.004044352564960718, 0.0037789680063724518, -0.04130665957927704, 0.2851286828517914, 0.19458787143230438, -0.020361198112368584, 0.9840127229690552, 0.16601747274398804, 0.020984377712011337, -0.08963002264499664, 0.2894909381866455, -0.19718843698501587, 0.029828736558556557, 0.9873324036598206, -0.17112275958061218, 0.07361909747123718, 0.03305249288678169]} +{"t": 1.4425, "q": [-0.3443497121334076, -0.011201469227671623, 0.0041916631162166595, 0.6320000886917114, -0.3177506625652313, 0.014791161753237247, -0.3791540265083313, 0.0017299894243478775, -0.0043523660860955715, 0.6013971567153931, -0.28288745880126953, 0.0024490770883858204, 0.004004176706075668, 0.0037865759804844856, -0.04132148623466492, 0.2851047217845917, 0.19462381303310394, -0.02034921385347843, 0.9840127229690552, 0.1660773903131485, 0.020984377712011337, -0.0896420031785965, 0.2894909381866455, -0.19696074724197388, 0.029828736558556557, 0.9873443841934204, -0.17108680307865143, 0.07363107800483704, 0.03308844566345215]} +{"t": 1.4592, "q": [-0.34433266520500183, -0.011209990829229355, 0.0041916631162166595, 0.6320000886917114, -0.3177506625652313, 0.014791161753237247, -0.3791540265083313, 0.0017044231062754989, -0.004325582180172205, 0.601405680179596, -0.28287920355796814, 0.002463466487824917, 0.004044352564960718, 0.0038017858751118183, -0.04133139178156853, 0.2850927412509918, 0.19464778900146484, -0.02034921385347843, 0.9840127229690552, 0.1660294532775879, 0.02100834622979164, -0.0896420031785965, 0.289419025182724, -0.19686487317085266, 0.02984072081744671, 0.9873683452606201, -0.17112275958061218, 0.07364306598901749, 0.03308844566345215]} +{"t": 1.4761, "q": [-0.3443411886692047, -0.011209990829229355, 0.004218447022140026, 0.6320000886917114, -0.3177506625652313, 0.014791161753237247, -0.37912845611572266, 0.0017129451734945178, -0.0042854067869484425, 0.601405680179596, -0.2828708291053772, 0.002448971616104245, 0.003977392800152302, 0.003801788901910186, -0.04134126752614975, 0.2851047217845917, 0.1946837455034256, -0.020301276817917824, 0.9840247631072998, 0.16604143381118774, 0.021020330488681793, -0.08963002264499664, 0.28938308358192444, -0.19686487317085266, 0.02985270507633686, 0.9873563647270203, -0.17109878361225128, 0.07360710948705673, 0.033064477145671844]} +{"t": 1.4928, "q": [-0.3443582355976105, -0.011218513362109661, 0.004231838975101709, 0.6319915652275085, -0.31775885820388794, 0.014805611222982407, -0.37912845611572266, 0.0016873788554221392, -0.004272014833986759, 0.6013886332511902, -0.28288331627845764, 0.0024562717881053686, 0.004044352564960718, 0.0037941839545965195, -0.041336316615343094, 0.2851286828517914, 0.1946837455034256, -0.020301276817917824, 0.9840367436408997, 0.16601747274398804, 0.02100834622979164, -0.08961803466081619, 0.2893950641155243, -0.19686487317085266, 0.029864689335227013, 0.9874042868614197, -0.17105084657669067, 0.07360710948705673, 0.03305249288678169]} +{"t": 1.5096, "q": [-0.34436675906181335, -0.011218513362109661, 0.004245230928063393, 0.6320000886917114, -0.31775885820388794, 0.014805611222982407, -0.3791540265083313, 0.0016873788554221392, -0.004258622881025076, 0.6013801097869873, -0.28288745880126953, 0.0024490770883858204, 0.004071136470884085, 0.003816992975771427, -0.04133142530918121, 0.28516465425491333, 0.19467175006866455, -0.020289292559027672, 0.9840846657752991, 0.16608937084674835, 0.020984377712011337, -0.08961803466081619, 0.2894430160522461, -0.19686487317085266, 0.02984072081744671, 0.9874042868614197, -0.17111076414585114, 0.07360710948705673, 0.033076461404561996]} +{"t": 1.5265, "q": [-0.3443838059902191, -0.011227035894989967, 0.004231838975101709, 0.6320171356201172, -0.31775885820388794, 0.014805611222982407, -0.3791455030441284, 0.001695900922641158, -0.004258622881025076, 0.6013801097869873, -0.28287920355796814, 0.002463466487824917, 0.0041247038170695305, 0.003771366085857153, -0.04131158068776131, 0.2852245569229126, 0.19458787143230438, -0.020325245335698128, 0.9840846657752991, 0.16608937084674835, 0.02099636197090149, -0.08963002264499664, 0.2894909381866455, -0.1968528777360916, 0.02984072081744671, 0.9874042868614197, -0.17111076414585114, 0.07360710948705673, 0.033076461404561996]} +{"t": 1.5432, "q": [-0.34437528252601624, -0.011209990829229355, 0.004231838975101709, 0.6320000886917114, -0.31775474548339844, 0.014812886714935303, -0.3791625499725342, 0.0016788567882031202, -0.0042854067869484425, 0.6013801097869873, -0.28287920355796814, 0.002463466487824917, 0.004111311864107847, 0.003771366085857153, -0.04131158068776131, 0.28528448939323425, 0.19453993439674377, -0.020361198112368584, 0.9841206073760986, 0.16613730788230896, 0.020984377712011337, -0.0896420031785965, 0.28945499658584595, -0.1968289166688919, 0.02984072081744671, 0.9874042868614197, -0.17108680307865143, 0.07360710948705673, 0.03308844566345215]} +{"t": 1.56, "q": [-0.344392329454422, -0.011235557496547699, 0.004205055069178343, 0.6320000886917114, -0.31775885820388794, 0.014805611222982407, -0.3791540265083313, 0.0016703346045687795, -0.004312190227210522, 0.6013630628585815, -0.28287920355796814, 0.002463466487824917, 0.004071136470884085, 0.0037865759804844856, -0.04132148623466492, 0.2853683829307556, 0.19448000192642212, -0.020361198112368584, 0.9841924905776978, 0.16611334681510925, 0.020972393453121185, -0.08963002264499664, 0.2894669771194458, -0.1968289166688919, 0.02984072081744671, 0.9874282479286194, -0.17109878361225128, 0.07361909747123718, 0.033076461404561996]} +{"t": 1.5768, "q": [-0.34436675906181335, -0.011227035894989967, 0.004231838975101709, 0.6320000886917114, -0.31776711344718933, 0.014805561862885952, -0.37913697957992554, 0.0016532903537154198, -0.004312190227210522, 0.6013715863227844, -0.2828749716281891, 0.002441776916384697, 0.004084527958184481, 0.003771366085857153, -0.04131158068776131, 0.28541630506515503, 0.19450397789478302, -0.020361198112368584, 0.9842165112495422, 0.16601747274398804, 0.02099636197090149, -0.08963002264499664, 0.2894669771194458, -0.19684089720249176, 0.029828736558556557, 0.9874402284622192, -0.17109878361225128, 0.07363107800483704, 0.03308844566345215]} +{"t": 1.5936, "q": [-0.3443838059902191, -0.011201469227671623, 0.0041916631162166595, 0.6319915652275085, -0.31775885820388794, 0.01482011191546917, -0.3791455030441284, 0.0016703346045687795, -0.004298798739910126, 0.6013801097869873, -0.28287920355796814, 0.002463466487824917, 0.004111311864107847, 0.0037637639325112104, -0.041316501796245575, 0.2854282855987549, 0.19455191493034363, -0.02034921385347843, 0.9842644333839417, 0.16601747274398804, 0.020972393453121185, -0.08963002264499664, 0.289419025182724, -0.1968528777360916, 0.029768815264105797, 0.9874162673950195, -0.17107482254505157, 0.07363107800483704, 0.0331004299223423]} +{"t": 1.6104, "q": [-0.344392329454422, -0.011201469227671623, 0.0041916631162166595, 0.6319915652275085, -0.31775885820388794, 0.014805611222982407, -0.3791540265083313, 0.0016788567882031202, -0.004325582180172205, 0.6013801097869873, -0.2828708291053772, 0.002448971616104245, 0.004245230928063393, 0.0037941779009997845, -0.04131656512618065, 0.2854043245315552, 0.19457587599754333, -0.020325245335698128, 0.9842644333839417, 0.16599349677562714, 0.020984377712011337, -0.08961803466081619, 0.28940704464912415, -0.1968528777360916, 0.02978079952299595, 0.9874402284622192, -0.17112275958061218, 0.07363107800483704, 0.03308844566345215]} +{"t": 1.6271, "q": [-0.344392329454422, -0.011209990829229355, 0.004178271628916264, 0.6320000886917114, -0.31775885820388794, 0.014805611222982407, -0.3791455030441284, 0.0016788567882031202, -0.004379149992018938, 0.6013545393943787, -0.28287920355796814, 0.002463466487824917, 0.004419325385242701, 0.0037789710331708193, -0.04131653532385826, 0.2854043245315552, 0.19455191493034363, -0.020325245335698128, 0.9842644333839417, 0.16606540977954865, 0.020984377712011337, -0.08961803466081619, 0.28931117057800293, -0.1968528777360916, 0.029816752299666405, 0.9874042868614197, -0.17107482254505157, 0.07363107800483704, 0.0331004299223423]} +{"t": 1.6441, "q": [-0.3443838059902191, -0.011218513362109661, 0.004151487722992897, 0.6320000886917114, -0.3177588880062103, 0.014791111461818218, -0.37911996245384216, 0.0016873788554221392, -0.004379149992018938, 0.6013801097869873, -0.2828708291053772, 0.002448971616104245, 0.004486285150051117, 0.003778979880735278, -0.04134615883231163, 0.2854043245315552, 0.19452793896198273, -0.020325245335698128, 0.9842764139175415, 0.16616128385066986, 0.020984377712011337, -0.08963002264499664, 0.2892632484436035, -0.19684089720249176, 0.029816752299666405, 0.9874162673950195, -0.17108680307865143, 0.07361909747123718, 0.03308844566345215]} +{"t": 1.6608, "q": [-0.34437528252601624, -0.01118442416191101, 0.004151487722992897, 0.6320000886917114, -0.3177506625652313, 0.014791161753237247, -0.37913697957992554, 0.001695900922641158, -0.004432717338204384, 0.6013630628585815, -0.2828790843486786, 0.0024345824494957924, 0.0044996771030128, 0.0037941839545965195, -0.041336316615343094, 0.2853443920612335, 0.19453993439674377, -0.02034921385347843, 0.9842644333839417, 0.16613730788230896, 0.02099636197090149, -0.08963002264499664, 0.28925126791000366, -0.1968528777360916, 0.029816752299666405, 0.9874042868614197, -0.17107482254505157, 0.07364306598901749, 0.03308844566345215]} +{"t": 1.6775, "q": [-0.34436675906181335, -0.011201469227671623, 0.004138095770031214, 0.6320000886917114, -0.3177547752857208, 0.014783886261284351, -0.3791455030441284, 0.0017044231062754989, -0.004446109291166067, 0.6013630628585815, -0.2828708291053772, 0.002448971616104245, 0.004419325385242701, 0.0037713777273893356, -0.0413510836660862, 0.2852725088596344, 0.19450397789478302, -0.020361198112368584, 0.9842764139175415, 0.16611334681510925, 0.02099636197090149, -0.0896420031785965, 0.2892872095108032, -0.19684089720249176, 0.029804768040776253, 0.9874042868614197, -0.17109878361225128, 0.07367901504039764, 0.0331004299223423]} +{"t": 1.6942, "q": [-0.34437528252601624, -0.011167380958795547, 0.004138095770031214, 0.6320000886917114, -0.3177547752857208, 0.014783886261284351, -0.3791540265083313, 0.0017299894243478775, -0.004379149992018938, 0.6013460159301758, -0.28288331627845764, 0.0024562717881053686, 0.004325582180172205, 0.0038017858751118183, -0.04133139178156853, 0.28521257638931274, 0.19449199736118317, -0.020361198112368584, 0.9842883944511414, 0.16604143381118774, 0.02099636197090149, -0.0896420031785965, 0.289335161447525, -0.1968289166688919, 0.029804768040776253, 0.9874282479286194, -0.17111076414585114, 0.07363107800483704, 0.03308844566345215]} +{"t": 1.711, "q": [-0.34437528252601624, -0.011175902560353279, 0.004138095770031214, 0.6319915652275085, -0.3177547752857208, 0.014798386953771114, -0.3791625499725342, 0.0017214673571288586, -0.004392541944980621, 0.6013545393943787, -0.28287920355796814, 0.002463466487824917, 0.0042854067869484425, 0.0037941839545965195, -0.041336316615343094, 0.28516465425491333, 0.19451595842838287, -0.020361198112368584, 0.9842764139175415, 0.16608937084674835, 0.020960409194231033, -0.0896420031785965, 0.2893711030483246, -0.19684089720249176, 0.029816752299666405, 0.9874162673950195, -0.17108680307865143, 0.07363107800483704, 0.03308844566345215]} +{"t": 1.7277, "q": [-0.34437528252601624, -0.011167380958795547, 0.004151487722992897, 0.6320086121559143, -0.31776300072669983, 0.014798336662352085, -0.3791625499725342, 0.0017299894243478775, -0.0043523660860955715, 0.6013715863227844, -0.28288745880126953, 0.0024490770883858204, 0.004218447022140026, 0.003778979880735278, -0.04134615883231163, 0.2851286828517914, 0.19451595842838287, -0.02034921385347843, 0.9842883944511414, 0.16611334681510925, 0.020960409194231033, -0.08963002264499664, 0.2893950641155243, -0.1968528777360916, 0.029816752299666405, 0.9874402284622192, -0.17113474011421204, 0.07364306598901749, 0.03308844566345215]} +{"t": 1.7445, "q": [-0.34436675906181335, -0.011192946694791317, 0.004218447022140026, 0.6320000886917114, -0.31776297092437744, 0.014812836423516273, -0.3791625499725342, 0.0017214673571288586, -0.004272014833986759, 0.6013630628585815, -0.2828750014305115, 0.002456218935549259, 0.004004176706075668, 0.003771380754187703, -0.04136095941066742, 0.28504478931427, 0.19457587599754333, -0.02033722959458828, 0.9842764139175415, 0.16618524491786957, 0.02094842493534088, -0.0896420031785965, 0.28938308358192444, -0.19684089720249176, 0.029816752299666405, 0.9874162673950195, -0.17112275958061218, 0.07366703450679779, 0.03308844566345215]} +{"t": 1.7612, "q": [-0.3443497121334076, -0.01118442416191101, 0.004258622881025076, 0.6320000886917114, -0.31776711344718933, 0.014805561862885952, -0.37917107343673706, 0.0017044231062754989, -0.004205055069178343, 0.6013545393943787, -0.2828708291053772, 0.002448971616104245, 0.0037229470908641815, 0.0037865883205085993, -0.04137086123228073, 0.28478115797042847, 0.19455191493034363, -0.020325245335698128, 0.9842644333839417, 0.16608937084674835, 0.020924456417560577, -0.08960605412721634, 0.2893711030483246, -0.1968528777360916, 0.029804768040776253, 0.9874402284622192, -0.17111076414585114, 0.07366703450679779, 0.033076461404561996]} +{"t": 1.7779, "q": [-0.3443497121334076, -0.011201469227671623, 0.004312190227210522, 0.6320000886917114, -0.31777122616767883, 0.014812787063419819, -0.37917959690093994, 0.0017044231062754989, -0.0041916631162166595, 0.6013630628585815, -0.28287920355796814, 0.002463466487824917, 0.003575636073946953, 0.003839828772470355, -0.04142528399825096, 0.28443360328674316, 0.19455191493034363, -0.020325245335698128, 0.9842284917831421, 0.16611334681510925, 0.02093644067645073, -0.0896420031785965, 0.28935912251472473, -0.19686487317085266, 0.02978079952299595, 0.9874402284622192, -0.17115870118141174, 0.07370298355817795, 0.03308844566345215]} +{"t": 1.7946, "q": [-0.3443497121334076, -0.011209990829229355, 0.0042854067869484425, 0.6319915652275085, -0.31777122616767883, 0.014812787063419819, -0.3791881203651428, 0.0017385114915668964, -0.004178271628916264, 0.6013460159301758, -0.28287920355796814, 0.002463466487824917, 0.003575636073946953, 0.00392348924651742, -0.04149951785802841, 0.2840501070022583, 0.19453993439674377, -0.020325245335698128, 0.9842044711112976, 0.16601747274398804, 0.02088850550353527, -0.08965399116277695, 0.2892872095108032, -0.1968528777360916, 0.02978079952299595, 0.9874162673950195, -0.17109878361225128, 0.0736910030245781, 0.0331004299223423]} +{"t": 1.8114, "q": [-0.3443582355976105, -0.011209990829229355, 0.004298798739910126, 0.6320000886917114, -0.31777945160865784, 0.01482725515961647, -0.3791625499725342, 0.0017385114915668964, -0.004205055069178343, 0.6013374924659729, -0.28287920355796814, 0.002463466487824917, 0.0037229470908641815, 0.003999541513621807, -0.041558925062417984, 0.2837505042552948, 0.19450397789478302, -0.02033722959458828, 0.9841924905776978, 0.16600549221038818, 0.020864536985754967, -0.0896420031785965, 0.28896364569664, -0.1968528777360916, 0.02978079952299595, 0.9874042868614197, -0.17109878361225128, 0.07367901504039764, 0.03308844566345215]} +{"t": 1.8281, "q": [-0.3443838059902191, -0.011209990829229355, 0.004272014833986759, 0.6320000886917114, -0.3177794814109802, 0.014812754467129707, -0.3791455030441284, 0.0017299894243478775, -0.004258622881025076, 0.6013119220733643, -0.2828750014305115, 0.002456218935549259, 0.003937217406928539, 0.004128825850784779, -0.04164312779903412, 0.28364264965057373, 0.19448000192642212, -0.020361198112368584, 0.9841924905776978, 0.16604143381118774, 0.020864536985754967, -0.0896420031785965, 0.28832846879959106, -0.19686487317085266, 0.02978079952299595, 0.9874162673950195, -0.17108680307865143, 0.07367901504039764, 0.0331004299223423]} +{"t": 1.8449, "q": [-0.3443497121334076, -0.011201469227671623, 0.004258622881025076, 0.6320000886917114, -0.31777530908584595, 0.014834529720246792, -0.3791455030441284, 0.0017299894243478775, -0.004245230928063393, 0.6012778282165527, -0.28287920355796814, 0.002463466487824917, 0.004044352564960718, 0.00417449651286006, -0.04181109741330147, 0.28364264965057373, 0.19448000192642212, -0.020361198112368584, 0.9841924905776978, 0.16614930331707, 0.020840568467974663, -0.08965399116277695, 0.28738170862197876, -0.19688883423805237, 0.029744846746325493, 0.9874402284622192, -0.17113474011421204, 0.07367901504039764, 0.033124398440122604]} +{"t": 1.8616, "q": [-0.34437528252601624, -0.011218513362109661, 0.004231838975101709, 0.6319915652275085, -0.31777530908584595, 0.014834529720246792, -0.3791540265083313, 0.0017299894243478775, -0.004325582180172205, 0.6013033986091614, -0.2828958332538605, 0.0024635717272758484, 0.004071136470884085, 0.004204933997243643, -0.041890162974596024, 0.2836306691169739, 0.19450397789478302, -0.02034921385347843, 0.9841924905776978, 0.1660294532775879, 0.02087652124464512, -0.08963002264499664, 0.2865907549858093, -0.19688883423805237, 0.029744846746325493, 0.9873683452606201, -0.17109878361225128, 0.07367901504039764, 0.0331004299223423]} +{"t": 1.8784, "q": [-0.3443582355976105, -0.01118442416191101, 0.004218447022140026, 0.6319915652275085, -0.31777533888816833, 0.014820029959082603, -0.3791455030441284, 0.0017385114915668964, -0.004365758039057255, 0.6013033986091614, -0.28288745880126953, 0.0024490770883858204, 0.004111311864107847, 0.004341817460954189, -0.04195956513285637, 0.2836066782474518, 0.19455191493034363, -0.020325245335698128, 0.9841924905776978, 0.16604143381118774, 0.02087652124464512, -0.0896420031785965, 0.28583574295043945, -0.19686487317085266, 0.02973286248743534, 0.9873563647270203, -0.17109878361225128, 0.07364306598901749, 0.033076461404561996]} +{"t": 1.8951, "q": [-0.3443497121334076, -0.011175902560353279, 0.0041916631162166595, 0.6319830417633057, -0.31777942180633545, 0.014841754920780659, -0.3791455030441284, 0.0017725999932736158, -0.004379149992018938, 0.60132896900177, -0.28288745880126953, 0.0024490770883858204, 0.004245230928063393, 0.004463499877601862, -0.042058587074279785, 0.28359469771385193, 0.19457587599754333, -0.020325245335698128, 0.9841924905776978, 0.16608937084674835, 0.02087652124464512, -0.0896420031785965, 0.2852725088596344, -0.19688883423805237, 0.029744846746325493, 0.9873324036598206, -0.17109878361225128, 0.07364306598901749, 0.03308844566345215]} +{"t": 1.912, "q": [-0.34436675906181335, -0.011175902560353279, 0.004151487722992897, 0.6319830417633057, -0.31776708364486694, 0.01482006162405014, -0.3791029155254364, 0.0017811221769079566, -0.004486285150051117, 0.6013204455375671, -0.2828998863697052, 0.0024419352412223816, 0.004700555466115475, 0.004455915652215481, -0.04212275519967079, 0.28366661071777344, 0.19455191493034363, -0.020325245335698128, 0.9842165112495422, 0.16598151624202728, 0.020900487899780273, -0.08963002264499664, 0.2848530411720276, -0.19688883423805237, 0.029756831005215645, 0.9873324036598206, -0.17111076414585114, 0.07366703450679779, 0.03311241418123245]} +{"t": 1.9287, "q": [-0.34433266520500183, -0.011192946694791317, 0.004057744517922401, 0.6319745182991028, -0.31775885820388794, 0.01482011191546917, -0.37903472781181335, 0.0017981663113459945, -0.004593420308083296, 0.6013374924659729, -0.2829040288925171, 0.0024347405415028334, 0.005115704145282507, 0.004440711811184883, -0.04213258996605873, 0.28381043672561646, 0.19453993439674377, -0.020325245335698128, 0.9842284917831421, 0.16606540977954865, 0.020912472158670425, -0.08963002264499664, 0.2845174968242645, -0.19686487317085266, 0.029744846746325493, 0.9873324036598206, -0.17109878361225128, 0.07363107800483704, 0.0331004299223423]} +{"t": 1.9454, "q": [-0.3443497121334076, -0.011150335893034935, 0.004017568659037352, 0.6319745182991028, -0.31775885820388794, 0.014805611222982407, -0.3790517747402191, 0.001823732745833695, -0.004700555466115475, 0.6013545393943787, -0.28289973735809326, 0.002398609183728695, 0.005437109619379044, 0.004372287541627884, -0.042157132178545, 0.28396621346473694, 0.19453993439674377, -0.020325245335698128, 0.9842284917831421, 0.1661013662815094, 0.02093644067645073, -0.08963002264499664, 0.2842777967453003, -0.19690081477165222, 0.029696909710764885, 0.9873324036598206, -0.17105084657669067, 0.07364306598901749, 0.033076461404561996]} +{"t": 1.9621, "q": [-0.3443497121334076, -0.01118442416191101, 0.004004176706075668, 0.6319830417633057, -0.31774652004241943, 0.014798436313867569, -0.37903472781181335, 0.0018492990639060736, -0.004727339372038841, 0.6013801097869873, -0.2828998565673828, 0.0024274932220578194, 0.00546389352530241, 0.00437228474766016, -0.042147256433963776, 0.28413400053977966, 0.19457587599754333, -0.020301276817917824, 0.9842524528503418, 0.16608937084674835, 0.020960409194231033, -0.0896420031785965, 0.2842777967453003, -0.19694875180721283, 0.029577067121863365, 0.9873443841934204, -0.17107482254505157, 0.07365504652261734, 0.03308844566345215]} +{"t": 1.9789, "q": [-0.34432414174079895, -0.011158858425915241, 0.004004176706075668, 0.6319745182991028, -0.3177383244037628, 0.014769486151635647, -0.3790262043476105, 0.001883387565612793, -0.004740730859339237, 0.6013886332511902, -0.28289973735809326, 0.002398609183728695, 0.005517460871487856, 0.0043190703727304935, -0.04218171164393425, 0.28419390320777893, 0.19453993439674377, -0.020325245335698128, 0.9842524528503418, 0.16606540977954865, 0.020960409194231033, -0.0896420031785965, 0.2842298746109009, -0.19702066481113434, 0.02954111434519291, 0.9873324036598206, -0.17109878361225128, 0.07364306598901749, 0.03308844566345215]} +{"t": 1.9956, "q": [-0.3443070948123932, -0.011150335893034935, 0.003977392800152302, 0.6319659948348999, -0.31774240732192993, 0.014791211113333702, -0.37900063395500183, 0.0019259981345385313, -0.004767514765262604, 0.601405680179596, -0.2829122543334961, 0.0024058911949396133, 0.005437109619379044, 0.004334280267357826, -0.04219161719083786, 0.2841819226741791, 0.19453993439674377, -0.020325245335698128, 0.9842404723167419, 0.16606540977954865, 0.020960409194231033, -0.08963002264499664, 0.2842298746109009, -0.1970566213130951, 0.029457226395606995, 0.9873443841934204, -0.17106282711029053, 0.0736910030245781, 0.0331004299223423]} +{"t": 2.0123, "q": [-0.3442900478839874, -0.011099203489720821, 0.004004176706075668, 0.6319745182991028, -0.3177424669265747, 0.014762211591005325, -0.37899211049079895, 0.0019600866362452507, -0.004821082577109337, 0.6014142036437988, -0.28289973735809326, 0.002398609183728695, 0.0053701503202319145, 0.0043647028505802155, -0.0422213040292263, 0.2841699421405792, 0.19453993439674377, -0.020325245335698128, 0.9842524528503418, 0.16616128385066986, 0.020960409194231033, -0.08963002264499664, 0.28411003947257996, -0.19709256291389465, 0.029397305101156235, 0.9873324036598206, -0.17108680307865143, 0.07366703450679779, 0.033064477145671844]} +{"t": 2.0291, "q": [-0.34426450729370117, -0.011124770157039165, 0.003990784753113985, 0.6319745182991028, -0.31773829460144043, 0.014783985912799835, -0.3789665400981903, 0.00195156445261091, -0.00483447453007102, 0.6014142036437988, -0.2828955054283142, 0.0023768837563693523, 0.005410325713455677, 0.004440749529749155, -0.04226096719503403, 0.2841459810733795, 0.19457587599754333, -0.020301276817917824, 0.9842524528503418, 0.16604143381118774, 0.02094842493534088, -0.0896420031785965, 0.28385835886001587, -0.19722439348697662, 0.029337383806705475, 0.9873324036598206, -0.17107482254505157, 0.07367901504039764, 0.0331004299223423]} +{"t": 2.0458, "q": [-0.3442559838294983, -0.011133292689919472, 0.0039506093598902225, 0.6319830417633057, -0.3177383244037628, 0.014769486151635647, -0.3789665400981903, 0.0019600866362452507, -0.00483447453007102, 0.6014568209648132, -0.282912015914917, 0.002348105190321803, 0.00542371766641736, 0.004478808492422104, -0.04239438846707344, 0.2841699421405792, 0.19455191493034363, -0.020325245335698128, 0.9842404723167419, 0.16608937084674835, 0.020960409194231033, -0.08963002264499664, 0.28355875611305237, -0.19739218056201935, 0.029325399547815323, 0.9873324036598206, -0.17107482254505157, 0.0736910030245781, 0.03308844566345215]} +{"t": 2.0625, "q": [-0.34426450729370117, -0.011099203489720821, 0.0039506093598902225, 0.6319830417633057, -0.3177424669265747, 0.014747693203389645, -0.3789665400981903, 0.0019600866362452507, -0.004874649923294783, 0.6014653444290161, -0.28291621804237366, 0.002355370670557022, 0.00546389352530241, 0.00460810074582696, -0.042508307844400406, 0.2841819226741791, 0.19455191493034363, -0.020301276817917824, 0.9842524528503418, 0.16613730788230896, 0.020984377712011337, -0.08963002264499664, 0.2832231819629669, -0.19754797220230103, 0.029229525476694107, 0.9873324036598206, -0.17106282711029053, 0.0736910030245781, 0.03308844566345215]} +{"t": 2.0792, "q": [-0.34428155422210693, -0.011090680956840515, 0.00388364982791245, 0.6319659948348999, -0.3177506923675537, 0.014762161299586296, -0.37899211049079895, 0.0019430422689765692, -0.004847866017371416, 0.6014397740364075, -0.28296181559562683, 0.0023195375688374043, 0.005584420636296272, 0.004821052309125662, -0.04261764511466026, 0.2841819226741791, 0.19451595842838287, -0.020325245335698128, 0.9842284917831421, 0.1661013662815094, 0.020960409194231033, -0.08963002264499664, 0.2828996181488037, -0.1976078897714615, 0.029157619923353195, 0.9873324036598206, -0.17111076414585114, 0.0736910030245781, 0.033076461404561996]} +{"t": 2.096, "q": [-0.3442985713481903, -0.01111624762415886, 0.0038568659219890833, 0.6319745182991028, -0.3177506923675537, 0.014762161299586296, -0.3789750635623932, 0.0019345202017575502, -0.004941609688103199, 0.6014227271080017, -0.28296181559562683, 0.0023195375688374043, 0.005664771888405085, 0.004942764062434435, -0.04272674396634102, 0.2842538356781006, 0.19452793896198273, -0.020325245335698128, 0.9842524528503418, 0.16616128385066986, 0.020972393453121185, -0.08963002264499664, 0.2826000154018402, -0.19764384627342224, 0.02907373011112213, 0.9873324036598206, -0.17112275958061218, 0.0736910030245781, 0.03308844566345215]} +{"t": 2.1127, "q": [-0.3442985713481903, -0.011090680956840515, 0.0038300822488963604, 0.631957471370697, -0.3177506923675537, 0.014762161299586296, -0.3789750635623932, 0.0019259981345385313, -0.0049148257821798325, 0.6014227271080017, -0.2829783260822296, 0.0022907410748302937, 0.00575851509347558, 0.005072079598903656, -0.042840804904699326, 0.2842538356781006, 0.19450397789478302, -0.02033722959458828, 0.9842764139175415, 0.16611334681510925, 0.020972393453121185, -0.08963002264499664, 0.28236034512519836, -0.19764384627342224, 0.02907373011112213, 0.9873324036598206, -0.17108680307865143, 0.07366703450679779, 0.03308844566345215]} +{"t": 2.1294, "q": [-0.3442900478839874, -0.011099203489720821, 0.0038300822488963604, 0.631957471370697, -0.3177465796470642, 0.01475493609905243, -0.37899211049079895, 0.0019345202017575502, -0.004941609688103199, 0.6014568209648132, -0.28297823667526245, 0.002261857036501169, 0.00579869095236063, 0.005201393738389015, -0.04294498637318611, 0.2843257486820221, 0.19450397789478302, -0.020325245335698128, 0.9842524528503418, 0.16604143381118774, 0.02094842493534088, -0.0896420031785965, 0.282276451587677, -0.19761987030506134, 0.02907373011112213, 0.9873563647270203, -0.17107482254505157, 0.07366703450679779, 0.0331004299223423]} +{"t": 2.1462, "q": [-0.3442985713481903, -0.011090680956840515, 0.0037899063900113106, 0.6319489479064941, -0.3177465796470642, 0.01475493609905243, -0.37899211049079895, 0.0019004317000508308, -0.004968393128365278, 0.6014312505722046, -0.2829948663711548, 0.0022619625087827444, 0.00579869095236063, 0.005262247286736965, -0.04299459233880043, 0.2843017876148224, 0.19448000192642212, -0.020361198112368584, 0.9842644333839417, 0.1660773903131485, 0.02094842493534088, -0.08965399116277695, 0.28226447105407715, -0.19764384627342224, 0.02907373011112213, 0.9873443841934204, -0.17107482254505157, 0.07367901504039764, 0.03311241418123245]} +{"t": 2.1629, "q": [-0.3442900478839874, -0.011099203489720821, 0.0037631227169185877, 0.6319233775138855, -0.317754864692688, 0.014740368351340294, -0.3790091574192047, 0.0019174759509041905, -0.004941609688103199, 0.6014227271080017, -0.28299060463905334, 0.002240273170173168, 0.0057719070464372635, 0.005315482150763273, -0.04300958663225174, 0.28440964221954346, 0.19453993439674377, -0.02034921385347843, 0.9842524528503418, 0.16608937084674835, 0.020924456417560577, -0.0896420031785965, 0.28226447105407715, -0.19764384627342224, 0.029097698628902435, 0.9873324036598206, -0.17112275958061218, 0.0736910030245781, 0.03308844566345215]} +{"t": 2.1796, "q": [-0.34432414174079895, -0.011090680956840515, 0.0037631227169185877, 0.6319148540496826, -0.3177631199359894, 0.01474031899124384, -0.3790943920612335, 0.0019259981345385313, -0.004968393128365278, 0.6014397740364075, -0.2830031216144562, 0.002247573109343648, 0.0058388663455843925, 0.0053383051417768, -0.04303436726331711, 0.2845773994922638, 0.19455191493034363, -0.02033722959458828, 0.9842764139175415, 0.1660534292459488, 0.02093644067645073, -0.08963002264499664, 0.28226447105407715, -0.19764384627342224, 0.029049761593341827, 0.9873683452606201, -0.17107482254505157, 0.07367901504039764, 0.033076461404561996]} +{"t": 2.1964, "q": [-0.3443411886692047, -0.011082159355282784, 0.003736338810995221, 0.6318978071212769, -0.3177589774131775, 0.01474759355187416, -0.37907734513282776, 0.0019004317000508308, -0.004955001175403595, 0.6014142036437988, -0.2830031216144562, 0.002247573109343648, 0.00579869095236063, 0.005345902871340513, -0.04301956668496132, 0.2847691476345062, 0.19457587599754333, -0.020325245335698128, 0.9842764139175415, 0.16604143381118774, 0.020960409194231033, -0.08963002264499664, 0.28228843212127686, -0.1976797878742218, 0.028977856040000916, 0.9873683452606201, -0.17106282711029053, 0.0736910030245781, 0.03308844566345215]} +{"t": 2.2132, "q": [-0.3443497121334076, -0.011065115220844746, 0.0037497307639569044, 0.6319063305854797, -0.3177548348903656, 0.014754868112504482, -0.3790943920612335, 0.001891909632831812, -0.004941609688103199, 0.6014397740364075, -0.2829989790916443, 0.002254767809063196, 0.005865650251507759, 0.005254683550447226, -0.04308845102787018, 0.2848530411720276, 0.19457587599754333, -0.020325245335698128, 0.9842764139175415, 0.16611334681510925, 0.020972393453121185, -0.08963002264499664, 0.28228843212127686, -0.19773972034454346, 0.028977856040000916, 0.9873563647270203, -0.17107482254505157, 0.07367901504039764, 0.03308844566345215]} +{"t": 2.2299, "q": [-0.3443582355976105, -0.011082159355282784, 0.0037497307639569044, 0.6318978071212769, -0.317754864692688, 0.014740368351340294, -0.3791114389896393, 0.0019004317000508308, -0.004941609688103199, 0.6014397740364075, -0.2829948663711548, 0.0022619625087827444, 0.005905826110392809, 0.005216690246015787, -0.04315256327390671, 0.2847931385040283, 0.19455191493034363, -0.02034921385347843, 0.9842524528503418, 0.16608937084674835, 0.020984377712011337, -0.08963002264499664, 0.28226447105407715, -0.1977517008781433, 0.028929919004440308, 0.9873683452606201, -0.17108680307865143, 0.07366703450679779, 0.03308844566345215]} +{"t": 2.2466, "q": [-0.34437528252601624, -0.011031026020646095, 0.0037095551379024982, 0.631889283657074, -0.3177631199359894, 0.01474031899124384, -0.3791114389896393, 0.0018663433147594333, -0.004955001175403595, 0.6014397740364075, -0.28300735354423523, 0.002269262447953224, 0.005892434157431126, 0.0053079561330378056, -0.043192386627197266, 0.28468528389930725, 0.19452793896198273, -0.02034921385347843, 0.9842165112495422, 0.16616128385066986, 0.02094842493534088, -0.08963002264499664, 0.2822524607181549, -0.19783559441566467, 0.02894190326333046, 0.9873443841934204, -0.17106282711029053, 0.07366703450679779, 0.03308844566345215]} +{"t": 2.2633, "q": [-0.34436675906181335, -0.011048071086406708, 0.0037095551379024982, 0.6318722367286682, -0.3177672326564789, 0.014747544191777706, -0.37911996245384216, 0.001891909632831812, -0.004941609688103199, 0.6014227271080017, -0.2830115258693695, 0.002276510000228882, 0.005812082905322313, 0.005414447281509638, -0.04327178746461868, 0.2845294773578644, 0.19457587599754333, -0.020325245335698128, 0.9842165112495422, 0.16611334681510925, 0.020924456417560577, -0.08963002264499664, 0.28224048018455505, -0.1979314684867859, 0.0288819819688797, 0.9873563647270203, -0.17107482254505157, 0.07367901504039764, 0.033064477145671844]} +{"t": 2.2801, "q": [-0.34436675906181335, -0.01105659268796444, 0.003736338810995221, 0.6318551898002625, -0.3177754580974579, 0.014747493900358677, -0.3791540265083313, 0.001883387565612793, -0.004928217735141516, 0.6013971567153931, -0.2830156087875366, 0.0022548732813447714, 0.005664771888405085, 0.005498123820871115, -0.04334617406129837, 0.28431376814842224, 0.19462381303310394, -0.020325245335698128, 0.9841805100440979, 0.16616128385066986, 0.02088850550353527, -0.0896420031785965, 0.2822524607181549, -0.1980752795934677, 0.0288819819688797, 0.9873563647270203, -0.17115870118141174, 0.07366703450679779, 0.033076461404561996]} +{"t": 2.2968, "q": [-0.34436675906181335, -0.011031026020646095, 0.0037497307639569044, 0.6318381428718567, -0.3177713453769684, 0.01474026869982481, -0.3791625499725342, 0.0019089538836851716, -0.004888041876256466, 0.601405680179596, -0.28304046392440796, 0.0022261294070631266, 0.005624596029520035, 0.0056274207308888435, -0.04341082647442818, 0.2839781939983368, 0.19477961957454681, -0.020241355523467064, 0.9841325879096985, 0.16611334681510925, 0.020864536985754967, -0.0896420031785965, 0.2822284996509552, -0.19827900826931, 0.028917934745550156, 0.9873683452606201, -0.17113474011421204, 0.07367901504039764, 0.03308844566345215]} +{"t": 2.3136, "q": [-0.34436675906181335, -0.011048071086406708, 0.0037631227169185877, 0.6318210959434509, -0.3177878260612488, 0.014754668809473515, -0.37921369075775146, 0.001891909632831812, -0.004861257970333099, 0.601405680179596, -0.28304871916770935, 0.0022117402404546738, 0.005557636730372906, 0.005680674687027931, -0.043475233018398285, 0.2835827171802521, 0.19504326581954956, -0.020193420350551605, 0.9840247631072998, 0.16616128385066986, 0.020792631432414055, -0.08963002264499664, 0.2822524607181549, -0.19849471747875214, 0.028846031054854393, 0.9873683452606201, -0.17111076414585114, 0.07366703450679779, 0.0331004299223423]} +{"t": 2.3303, "q": [-0.34436675906181335, -0.011048071086406708, 0.0037899063900113106, 0.6318210959434509, -0.3177919387817383, 0.014761894010007381, -0.37917959690093994, 0.0018663433147594333, -0.004821082577109337, 0.6013886332511902, -0.2830612063407898, 0.0022190583404153585, 0.005450501572340727, 0.005726330913603306, -0.04355444759130478, 0.28318724036216736, 0.19541478157043457, -0.02004960924386978, 0.9839528203010559, 0.16616128385066986, 0.020744694396853447, -0.0896420031785965, 0.2822524607181549, -0.19873440265655518, 0.028786109760403633, 0.9873683452606201, -0.17112275958061218, 0.07366703450679779, 0.0331004299223423]} +{"t": 2.3472, "q": [-0.34437528252601624, -0.011090680956840515, 0.0038702578749507666, 0.6318210959434509, -0.3177960515022278, 0.014769119210541248, -0.3791881203651428, 0.001883387565612793, -0.00479429867118597, 0.6013801097869873, -0.2830737233161926, 0.002226340351626277, 0.005437109619379044, 0.005787185858935118, -0.04361395165324211, 0.282875657081604, 0.19576232135295868, -0.01998968794941902, 0.9838569760322571, 0.16616128385066986, 0.020660804584622383, -0.0896420031785965, 0.28221651911735535, -0.19898608326911926, 0.028678251430392265, 0.98738032579422, -0.17109878361225128, 0.07367901504039764, 0.033064477145671844]} +{"t": 2.3639, "q": [-0.3443838059902191, -0.011107726022601128, 0.00388364982791245, 0.631812572479248, -0.3177960216999054, 0.014783636666834354, -0.3791966438293457, 0.0018322548130527139, -0.004767514765262604, 0.6013801097869873, -0.28308209776878357, 0.0022408352233469486, 0.005383542273193598, 0.005886063911020756, -0.04366861283779144, 0.2826839089393616, 0.19609788060188293, -0.019881829619407654, 0.9837850332260132, 0.16616128385066986, 0.020540961995720863, -0.08963002264499664, 0.2822284996509552, -0.19936956465244293, 0.028606345877051353, 0.9873683452606201, -0.17108680307865143, 0.07366703450679779, 0.03308844566345215]} +{"t": 2.3806, "q": [-0.3443838059902191, -0.011133292689919472, 0.003910433501005173, 0.6318210959434509, -0.3178083896636963, 0.014776312746107578, -0.3792051672935486, 0.001823732745833695, -0.004713947419077158, 0.6013886332511902, -0.2830779552459717, 0.0022480476181954145, 0.00542371766641736, 0.0059697371907532215, -0.043743014335632324, 0.2826958894729614, 0.19634954631328583, -0.019761987030506134, 0.9838330149650574, 0.16617326438426971, 0.020481040701270103, -0.08963002264499664, 0.2822284996509552, -0.1998009979724884, 0.02846253477036953, 0.9873683452606201, -0.17108680307865143, 0.07366703450679779, 0.033076461404561996]} +{"t": 2.3976, "q": [-0.34441789984703064, -0.011192946694791317, 0.0038970415480434895, 0.6318210959434509, -0.3177960216999054, 0.014783636666834354, -0.3791966438293457, 0.0018066884949803352, -0.004767514765262604, 0.601405680179596, -0.28308209776878357, 0.0022408352233469486, 0.005557636730372906, 0.005984957795590162, -0.04378261789679527, 0.2828516960144043, 0.19667312502861023, -0.019702065736055374, 0.9838569760322571, 0.16623318195343018, 0.020373182371258736, -0.0896420031785965, 0.28224048018455505, -0.20029236376285553, 0.028414597734808922, 0.9873683452606201, -0.17113474011421204, 0.07367901504039764, 0.03308844566345215]} +{"t": 2.4143, "q": [-0.3444434702396393, -0.011192946694791317, 0.00388364982791245, 0.6318210959434509, -0.3178042769432068, 0.0147835873067379, -0.3791966438293457, 0.001764077926054597, -0.0047541228123009205, 0.6013886332511902, -0.2830905020236969, 0.0022697898093611, 0.005852258298546076, 0.005954541265964508, -0.043792422860860825, 0.2830074727535248, 0.19688883423805237, -0.019642144441604614, 0.9838689565658569, 0.16623318195343018, 0.020073577761650085, -0.08963002264499664, 0.2822524607181549, -0.20080767571926117, 0.028390629217028618, 0.98738032579422, -0.17105084657669067, 0.07366703450679779, 0.03308844566345215]} +{"t": 2.431, "q": [-0.3445286750793457, -0.01118442416191101, 0.0038568659219890833, 0.6318296194076538, -0.3177960216999054, 0.014783636666834354, -0.3791966438293457, 0.0017470336752012372, -0.004821082577109337, 0.601405680179596, -0.28308218717575073, 0.0022697369568049908, 0.006079920567572117, 0.0059773544780910015, -0.04378753900527954, 0.28301945328712463, 0.19686487317085266, -0.01961817592382431, 0.9839288592338562, 0.16629311442375183, 0.0201694518327713, -0.08963002264499664, 0.2822045385837555, -0.20123910903930664, 0.028438566252589226, 0.9873923063278198, -0.17113474011421204, 0.07366703450679779, 0.03308844566345215]} +{"t": 2.4478, "q": [-0.34455424547195435, -0.011201469227671623, 0.0038300822488963604, 0.6318637132644653, -0.3178001046180725, 0.01480536162853241, -0.3791881203651428, 0.0017214673571288586, -0.004874649923294783, 0.6013971567153931, -0.28308212757110596, 0.0022552949376404285, 0.006240623537451029, 0.006007765885442495, -0.043757952749729156, 0.2830793857574463, 0.1968528777360916, -0.01961817592382431, 0.9839528203010559, 0.16618524491786957, 0.020193420350551605, -0.08963002264499664, 0.2820727229118347, -0.20153871178627014, 0.028390629217028618, 0.9873923063278198, -0.17109878361225128, 0.07367901504039764, 0.03308844566345215]} +{"t": 2.4645, "q": [-0.34454572200775146, -0.011201469227671623, 0.0037899063900113106, 0.6318722367286682, -0.317795991897583, 0.014798137359321117, -0.3791540265083313, 0.0017385114915668964, -0.004874649923294783, 0.6013971567153931, -0.28307801485061646, 0.0022624896373599768, 0.006320974789559841, 0.0060838330537080765, -0.04382739216089249, 0.28313931822776794, 0.1968528777360916, -0.019594207406044006, 0.9839767813682556, 0.16620922088623047, 0.020265324041247368, -0.08963002264499664, 0.28196483850479126, -0.20183831453323364, 0.028390629217028618, 0.9873923063278198, -0.17112275958061218, 0.07367901504039764, 0.0331004299223423]} +{"t": 2.4812, "q": [-0.34451162815093994, -0.011201469227671623, 0.003736338810995221, 0.6318978071212769, -0.317795991897583, 0.014798137359321117, -0.3791540265083313, 0.001695900922641158, -0.004901433829218149, 0.601405680179596, -0.28307801485061646, 0.0022624896373599768, 0.006441501900553703, 0.006235959939658642, -0.0439365915954113, 0.28316327929496765, 0.19681693613529205, -0.019594207406044006, 0.9839288592338562, 0.16623318195343018, 0.02021738886833191, -0.08963002264499664, 0.2817970812320709, -0.20216189324855804, 0.028438566252589226, 0.9873683452606201, -0.17111076414585114, 0.07366703450679779, 0.0331004299223423]} +{"t": 2.498, "q": [-0.3445201516151428, -0.011209990829229355, 0.0037229470908641815, 0.6319063305854797, -0.3178001344203949, 0.014790861867368221, -0.3791540265083313, 0.001636246219277382, -0.004888041876256466, 0.6014142036437988, -0.28307387232780457, 0.002269684337079525, 0.0066289883106946945, 0.0064033097587525845, -0.0441051721572876, 0.28318724036216736, 0.196804940700531, -0.019594207406044006, 0.9839288592338562, 0.16611334681510925, 0.02027730830013752, -0.08963002264499664, 0.2816532552242279, -0.2025214284658432, 0.028390629217028618, 0.98738032579422, -0.1711467206478119, 0.0736910030245781, 0.0331004299223423]} +{"t": 2.5147, "q": [-0.34451162815093994, -0.011201469227671623, 0.003736338810995221, 0.631889283657074, -0.3177836239337921, 0.014790943823754787, -0.3791625499725342, 0.0016532903537154198, -0.004874649923294783, 0.6014653444290161, -0.2830697000026703, 0.002262437017634511, 0.006736123468726873, 0.006745609920471907, -0.044309087097644806, 0.2831512987613678, 0.1968528777360916, -0.019594207406044006, 0.983940839767456, 0.16616128385066986, 0.020289292559027672, -0.0896420031785965, 0.2815813422203064, -0.2028210312128067, 0.028426581993699074, 0.9873683452606201, -0.17115870118141174, 0.0736910030245781, 0.03308844566345215]} +{"t": 2.5314, "q": [-0.3444690406322479, -0.011218513362109661, 0.003736338810995221, 0.6318978071212769, -0.3177836239337921, 0.014790943823754787, -0.3791540265083313, 0.0016788567882031202, -0.004874649923294783, 0.601542055606842, -0.2830614149570465, 0.002276826184242964, 0.006749515421688557, 0.0068749613128602505, -0.04446299001574516, 0.28313931822776794, 0.19694875180721283, -0.019534287974238396, 0.9839168787002563, 0.16618524491786957, 0.020265324041247368, -0.0896420031785965, 0.2815094590187073, -0.20306071639060974, 0.028330707922577858, 0.9873683452606201, -0.17115870118141174, 0.07366703450679779, 0.03308844566345215]} +{"t": 2.5482, "q": [-0.3444945812225342, -0.011175902560353279, 0.0037229470908641815, 0.6318978071212769, -0.3177918791770935, 0.014805411919951439, -0.3791881203651428, 0.0017044231062754989, -0.004901433829218149, 0.6015505790710449, -0.28306543827056885, 0.0022407476790249348, 0.00672273151576519, 0.007080433424562216, -0.044795338064432144, 0.283103346824646, 0.19726034998893738, -0.01949833519756794, 0.9839168787002563, 0.16613730788230896, 0.020301276817917824, -0.08963002264499664, 0.281533420085907, -0.20322848856449127, 0.028354676440358162, 0.98738032579422, -0.17115870118141174, 0.0736910030245781, 0.033076461404561996]} +{"t": 2.5649, "q": [-0.3444860577583313, -0.011201469227671623, 0.0037497307639569044, 0.6319063305854797, -0.3177919089794159, 0.01477639377117157, -0.37922221422195435, 0.0017129451734945178, -0.004874649923294783, 0.601542055606842, -0.28306543827056885, 0.0022407476790249348, 0.0065620290115475655, 0.007430396508425474, -0.045093607157468796, 0.28301945328712463, 0.1976318657398224, -0.019450398162007332, 0.9839168787002563, 0.16629311442375183, 0.020265324041247368, -0.08963002264499664, 0.28154540061950684, -0.20340825617313385, 0.028438566252589226, 0.98738032579422, -0.1712665557861328, 0.07366703450679779, 0.03308844566345215]} +{"t": 2.5816, "q": [-0.3444775342941284, -0.011192946694791317, 0.003776514669880271, 0.6319148540496826, -0.3178001344203949, 0.014790861867368221, -0.37922221422195435, 0.0017299894243478775, -0.004901433829218149, 0.6015761494636536, -0.2830530107021332, 0.0022478895261883736, 0.006334366742521524, 0.007689095102250576, -0.045391522347927094, 0.2828996181488037, 0.19789551198482513, -0.019414445385336876, 0.9839168787002563, 0.16623318195343018, 0.020241355523467064, -0.0896420031785965, 0.2815573811531067, -0.20355206727981567, 0.028390629217028618, 0.98738032579422, -0.1712665557861328, 0.07366703450679779, 0.0331004299223423]} +{"t": 2.5983, "q": [-0.34445199370384216, -0.011175902560353279, 0.0037631227169185877, 0.6319063305854797, -0.317795991897583, 0.014798137359321117, -0.3792392611503601, 0.0017470336752012372, -0.00483447453007102, 0.6015931963920593, -0.28306132555007935, 0.002247942378744483, 0.00613348837941885, 0.007947798818349838, -0.04570923000574112, 0.2828277051448822, 0.1980513036251068, -0.019414445385336876, 0.9838929176330566, 0.16630509495735168, 0.020253339782357216, -0.08963002264499664, 0.2815573811531067, -0.20368389785289764, 0.02834269218146801, 0.98738032579422, -0.1712186187505722, 0.07367901504039764, 0.033076461404561996]} +{"t": 2.6151, "q": [-0.3444434702396393, -0.01118442416191101, 0.003803298342972994, 0.6319063305854797, -0.3178001344203949, 0.014790861867368221, -0.37926483154296875, 0.0017555557424202561, -0.00479429867118597, 0.601618766784668, -0.28306132555007935, 0.002247942378744483, 0.006039745174348354, 0.008176074363291264, -0.04599712789058685, 0.2827558219432831, 0.19809924066066742, -0.019390476867556572, 0.9838929176330566, 0.16623318195343018, 0.02022937312722206, -0.08963002264499664, 0.2815813422203064, -0.20381571352481842, 0.028426581993699074, 0.9874042868614197, -0.1712186187505722, 0.07366703450679779, 0.033076461404561996]} +{"t": 2.6318, "q": [-0.3444775342941284, -0.011158858425915241, 0.003816690295934677, 0.6319063305854797, -0.3178001344203949, 0.014790861867368221, -0.3792818784713745, 0.0017725999932736158, -0.004807690624147654, 0.6016017198562622, -0.28305718302726746, 0.0022551368456333876, 0.005919218063354492, 0.008290329948067665, -0.046339284628629684, 0.282731831073761, 0.19809924066066742, -0.019450398162007332, 0.9838689565658569, 0.16628111898899078, 0.02022937312722206, -0.08963002264499664, 0.2815573811531067, -0.20398350059986115, 0.028354676440358162, 0.9873923063278198, -0.1712186187505722, 0.07366703450679779, 0.03308844566345215]} +{"t": 2.6485, "q": [-0.34445199370384216, -0.011192946694791317, 0.0038300822488963604, 0.6319063305854797, -0.3177919089794159, 0.01477639377117157, -0.3792818784713745, 0.0017555557424202561, -0.00479429867118597, 0.6016272306442261, -0.2830696403980255, 0.0022479949984699488, 0.005946001503616571, 0.008351347409188747, -0.04668618366122246, 0.282731831073761, 0.1980513036251068, -0.019450398162007332, 0.9838929176330566, 0.16628111898899078, 0.020205404609441757, -0.0896420031785965, 0.2815573811531067, -0.20409135520458221, 0.028378644958138466, 0.9873923063278198, -0.1712186187505722, 0.07366703450679779, 0.03308844566345215]} +{"t": 2.6653, "q": [-0.3444860577583313, -0.011192946694791317, 0.0038568659219890833, 0.6319063305854797, -0.317795991897583, 0.014812637120485306, -0.37925630807876587, 0.001764077926054597, -0.004807690624147654, 0.6016272306442261, -0.28305718302726746, 0.0022551368456333876, 0.006066528614610434, 0.00846557691693306, -0.046968940645456314, 0.2827797830104828, 0.19806328415870667, -0.019474366679787636, 0.9839048981666565, 0.16628111898899078, 0.02027730830013752, -0.0896420031785965, 0.28154540061950684, -0.20422318577766418, 0.028354676440358162, 0.9874042868614197, -0.1712186187505722, 0.07367901504039764, 0.03308844566345215]} +{"t": 2.682, "q": [-0.3444860577583313, -0.011209990829229355, 0.003816690295934677, 0.6319148540496826, -0.3177918791770935, 0.01479091215878725, -0.37926483154296875, 0.0017299894243478775, -0.00483447453007102, 0.6016272306442261, -0.2830655574798584, 0.0022696317173540592, 0.006146880332380533, 0.008458114229142666, -0.04725116491317749, 0.2828516960144043, 0.19806328415870667, -0.019474366679787636, 0.9839168787002563, 0.16630509495735168, 0.020313261076807976, -0.0896420031785965, 0.2814974784851074, -0.204366996884346, 0.028318723663687706, 0.9873923063278198, -0.1711706817150116, 0.0736910030245781, 0.03308844566345215]} +{"t": 2.6988, "q": [-0.34451162815093994, -0.011235557496547699, 0.003803298342972994, 0.6319319009780884, -0.3178001344203949, 0.014790861867368221, -0.37926483154296875, 0.0017385114915668964, -0.004847866017371416, 0.601635754108429, -0.2830738127231598, 0.0022552423179149628, 0.006320974789559841, 0.008526653982698917, -0.04742478206753731, 0.2828516960144043, 0.19809924066066742, -0.019474366679787636, 0.983940839767456, 0.166376993060112, 0.020313261076807976, -0.0896420031785965, 0.28134167194366455, -0.20458270609378815, 0.028270786628127098, 0.98738032579422, -0.17123061418533325, 0.07367901504039764, 0.03308844566345215]} +{"t": 2.7155, "q": [-0.34451162815093994, -0.011252601630985737, 0.003816690295934677, 0.6319233775138855, -0.3178001046180725, 0.01480536162853241, -0.37926483154296875, 0.0017044231062754989, -0.004861257970333099, 0.6016528010368347, -0.2830614149570465, 0.002276826184242964, 0.00642810994759202, 0.008617989718914032, -0.0475638322532177, 0.2828277051448822, 0.19814717769622803, -0.019462382420897484, 0.9839168787002563, 0.1663530319929123, 0.020313261076807976, -0.08963002264499664, 0.28113794326782227, -0.20475049316883087, 0.02834269218146801, 0.9873683452606201, -0.17120663821697235, 0.07366703450679779, 0.033076461404561996]} +{"t": 2.7323, "q": [-0.34451162815093994, -0.011252601630985737, 0.003803298342972994, 0.6319404244422913, -0.3178001344203949, 0.014790861867368221, -0.3792818784713745, 0.0017044231062754989, -0.00483447453007102, 0.6016272306442261, -0.2830613851547241, 0.0022623841650784016, 0.00646828580647707, 0.008754957467317581, -0.04768327996134758, 0.28281572461128235, 0.19819511473178864, -0.019450398162007332, 0.9839168787002563, 0.1663290560245514, 0.020313261076807976, -0.0896420031785965, 0.28086230158805847, -0.20493024587631226, 0.028414597734808922, 0.9873683452606201, -0.17118267714977264, 0.07366703450679779, 0.033076461404561996]} +{"t": 2.7492, "q": [-0.3444945812225342, -0.011278167366981506, 0.003816690295934677, 0.6319404244422913, -0.3177918791770935, 0.01479091215878725, -0.37926483154296875, 0.001695900922641158, -0.004807690624147654, 0.6016613245010376, -0.2830613851547241, 0.0022623841650784016, 0.006454893853515387, 0.008823449723422527, -0.0477677583694458, 0.2827797830104828, 0.1982550323009491, -0.019426429644227028, 0.9839048981666565, 0.16631707549095154, 0.02033722959458828, -0.08963002264499664, 0.2805866599082947, -0.20502611994743347, 0.028378644958138466, 0.9873683452606201, -0.1711946576833725, 0.07367901504039764, 0.033064477145671844]} +{"t": 2.766, "q": [-0.3445201516151428, -0.011278167366981506, 0.0038434739690274, 0.6319404244422913, -0.3178083896636963, 0.014790812507271767, -0.37926483154296875, 0.0017044231062754989, -0.00479429867118597, 0.6016528010368347, -0.283073753118515, 0.0022408002987504005, 0.006441501900553703, 0.00892235990613699, -0.047832611948251724, 0.2827558219432831, 0.19824305176734924, -0.019450398162007332, 0.9839048981666565, 0.1664009690284729, 0.020301276817917824, -0.0896420031785965, 0.2803829312324524, -0.20507405698299408, 0.028330707922577858, 0.9873683452606201, -0.1712186187505722, 0.0736910030245781, 0.03308844566345215]} +{"t": 2.7828, "q": [-0.3445286750793457, -0.011278167366981506, 0.0038702578749507666, 0.6319404244422913, -0.3178042471408844, 0.014798087067902088, -0.3792818784713745, 0.0017129451734945178, -0.004780906718224287, 0.6016783714294434, -0.2830696403980255, 0.0022479949984699488, 0.00642810994759202, 0.008929995819926262, -0.04789702221751213, 0.282731831073761, 0.19821909070014954, -0.019450398162007332, 0.9838809370994568, 0.16636501252651215, 0.020289292559027672, -0.0896420031785965, 0.28023913502693176, -0.20506207644939423, 0.028378644958138466, 0.98738032579422, -0.1712425947189331, 0.0736910030245781, 0.0331004299223423]} +{"t": 2.7995, "q": [-0.34451162815093994, -0.011269645765423775, 0.00388364982791245, 0.6319404244422913, -0.3178083598613739, 0.014805312268435955, -0.37932446599006653, 0.0017044231062754989, -0.00479429867118597, 0.6016613245010376, -0.2830697298049927, 0.0022768790367990732, 0.006414717994630337, 0.008968022651970387, -0.047892265021800995, 0.2826958894729614, 0.19824305176734924, -0.019462382420897484, 0.9839168787002563, 0.16641294956207275, 0.020313261076807976, -0.0896420031785965, 0.28014326095581055, -0.20505009591579437, 0.028354676440358162, 0.9873683452606201, -0.17120663821697235, 0.0737149715423584, 0.0331004299223423]} +{"t": 2.8162, "q": [-0.3445371985435486, -0.011269645765423775, 0.0038702578749507666, 0.631957471370697, -0.3178042471408844, 0.014798087067902088, -0.37936708331108093, 0.0017299894243478775, -0.004767514765262604, 0.6016783714294434, -0.283086359500885, 0.0022769845090806484, 0.0064013260416686535, 0.008990841917693615, -0.0478973314166069, 0.2826479375362396, 0.19824305176734924, -0.019450398162007332, 0.9839168787002563, 0.1664249300956726, 0.020325245335698128, -0.08963002264499664, 0.2801072895526886, -0.20507405698299408, 0.028318723663687706, 0.9873563647270203, -0.1712665557861328, 0.07367901504039764, 0.033076461404561996]} +{"t": 2.8329, "q": [-0.3445627689361572, -0.011278167366981506, 0.00388364982791245, 0.6319404244422913, -0.3178083598613739, 0.014805312268435955, -0.3794267475605011, 0.0017299894243478775, -0.004807690624147654, 0.6016868948936462, -0.2830946445465088, 0.0022625771816819906, 0.006361150648444891, 0.008952832780778408, -0.04793180525302887, 0.28258803486824036, 0.1982550323009491, -0.019450398162007332, 0.9838929176330566, 0.1663530319929123, 0.020301276817917824, -0.0896420031785965, 0.28011927008628845, -0.2051219940185547, 0.028366660699248314, 0.98738032579422, -0.1712425947189331, 0.0736910030245781, 0.03308844566345215]} +{"t": 2.8497, "q": [-0.3445627689361572, -0.011295212432742119, 0.00388364982791245, 0.6319404244422913, -0.3178125023841858, 0.01478353701531887, -0.3794182240962982, 0.0017555557424202561, -0.004807690624147654, 0.6016868948936462, -0.28309041261672974, 0.0022408878430724144, 0.006361150648444891, 0.009013662114739418, -0.04790239781141281, 0.28251612186431885, 0.19829098880290985, -0.019450398162007332, 0.9838929176330566, 0.1664249300956726, 0.020301276817917824, -0.08963002264499664, 0.2801072895526886, -0.20518192648887634, 0.028390629217028618, 0.9873563647270203, -0.1712425947189331, 0.07370298355817795, 0.03308844566345215]} +{"t": 2.8664, "q": [-0.3445712924003601, -0.011269645765423775, 0.003910433501005173, 0.6319489479064941, -0.3178083896636963, 0.014790812507271767, -0.37945231795310974, 0.001764077926054597, -0.004821082577109337, 0.6017209887504578, -0.2831069231033325, 0.002212109277024865, 0.006334366742521524, 0.008983248844742775, -0.047922052443027496, 0.28244420886039734, 0.1983029693365097, -0.019414445385336876, 0.9838929176330566, 0.1664249300956726, 0.020313261076807976, -0.0896420031785965, 0.2801072895526886, -0.2052178680896759, 0.02840261347591877, 0.9873683452606201, -0.17123061418533325, 0.0737149715423584, 0.0331004299223423]} +{"t": 2.8831, "q": [-0.3445627689361572, -0.011286689899861813, 0.0038970415480434895, 0.631957471370697, -0.3178083598613739, 0.014805312268435955, -0.37948641180992126, 0.0017811221769079566, -0.004821082577109337, 0.6017380356788635, -0.2831442058086395, 0.0021762235555797815, 0.006334366742521524, 0.008990859612822533, -0.047927044332027435, 0.2823962867259979, 0.19827900826931, -0.019450398162007332, 0.9838689565658569, 0.166376993060112, 0.02027730830013752, -0.08963002264499664, 0.2800833284854889, -0.20525382459163666, 0.028366660699248314, 0.9873683452606201, -0.1712665557861328, 0.0736910030245781, 0.03308844566345215]} +{"t": 2.8999, "q": [-0.3446224331855774, -0.011278167366981506, 0.0038970415480434895, 0.6319489479064941, -0.3178125023841858, 0.014798037707805634, -0.37949493527412415, 0.0017725999932736158, -0.004847866017371416, 0.6017636060714722, -0.28317317366600037, 0.0021403031423687935, 0.006334366742521524, 0.009006069041788578, -0.047927118837833405, 0.28242024779319763, 0.19824305176734924, -0.019450398162007332, 0.9838929176330566, 0.16636501252651215, 0.020289292559027672, -0.0896420031785965, 0.28004738688468933, -0.20527780055999756, 0.02840261347591877, 0.9873683452606201, -0.1712425947189331, 0.07366703450679779, 0.03308844566345215]} +{"t": 2.9167, "q": [-0.3446650505065918, -0.011278167366981506, 0.0038568659219890833, 0.6319404244422913, -0.3178166151046753, 0.014790762215852737, -0.37949493527412415, 0.0017725999932736158, -0.0049148257821798325, 0.6017806529998779, -0.2832021117210388, 0.002089922549203038, 0.00638793408870697, 0.009028865955770016, -0.047882672399282455, 0.28242024779319763, 0.19824305176734924, -0.019462382420897484, 0.9839168787002563, 0.1664249300956726, 0.020301276817917824, -0.0896420031785965, 0.2799754738807678, -0.20530176162719727, 0.028390629217028618, 0.9873563647270203, -0.17120663821697235, 0.07367901504039764, 0.03311241418123245]} +{"t": 2.9334, "q": [-0.34469059109687805, -0.011286689899861813, 0.0038300822488963604, 0.6319404244422913, -0.3178207278251648, 0.014797987416386604, -0.37950342893600464, 0.0017725999932736158, -0.004968393128365278, 0.6017891764640808, -0.28321459889411926, 0.0020972227212041616, 0.006441501900553703, 0.009006046690046787, -0.04787760227918625, 0.2825281023979187, 0.19818313419818878, -0.019450398162007332, 0.983940839767456, 0.1664249300956726, 0.02033722959458828, -0.0896420031785965, 0.27989158034324646, -0.2052897810935974, 0.028450550511479378, 0.9873563647270203, -0.1712425947189331, 0.0737149715423584, 0.0331004299223423]} +{"t": 2.9501, "q": [-0.3447076380252838, -0.011286689899861813, 0.003816690295934677, 0.631957471370697, -0.3178083896636963, 0.014790812507271767, -0.37948641180992126, 0.0017811221769079566, -0.005008568987250328, 0.6017806529998779, -0.2832103669643402, 0.0020755333825945854, 0.006548637058585882, 0.008952795527875423, -0.047862473875284195, 0.28263595700263977, 0.19811122119426727, -0.019534287974238396, 0.9840247631072998, 0.1664249300956726, 0.020325245335698128, -0.0896420031785965, 0.2797837257385254, -0.2052897810935974, 0.028414597734808922, 0.9873683452606201, -0.17123061418533325, 0.07370298355817795, 0.033076461404561996]} +{"t": 2.9668, "q": [-0.34473320841789246, -0.011269645765423775, 0.003803298342972994, 0.6319489479064941, -0.3178042769432068, 0.0147835873067379, -0.3794693648815155, 0.0017896442441269755, -0.005048744846135378, 0.6017976999282837, -0.28320616483688354, 0.0020682679023593664, 0.006776299327611923, 0.008952793665230274, -0.04785257205367088, 0.2828516960144043, 0.19796741008758545, -0.01961817592382431, 0.9840247631072998, 0.1664489060640335, 0.02033722959458828, -0.0896420031785965, 0.2796758711338043, -0.2052897810935974, 0.028426581993699074, 0.9873683452606201, -0.1712186187505722, 0.0736910030245781, 0.03308844566345215]} +{"t": 2.9836, "q": [-0.3447502553462982, -0.01130373403429985, 0.0037899063900113106, 0.6319830417633057, -0.3178083598613739, 0.014805312268435955, -0.3794693648815155, 0.0017811221769079566, -0.005048744846135378, 0.6018573641777039, -0.28321030735969543, 0.002061073202639818, 0.006937001831829548, 0.008960396982729435, -0.04784765839576721, 0.28295955061912537, 0.19785955548286438, -0.019654128700494766, 0.9840367436408997, 0.16647286713123322, 0.020373182371258736, -0.08963002264499664, 0.27944815158843994, -0.2052897810935974, 0.02840261347591877, 0.9873443841934204, -0.1712186187505722, 0.07366703450679779, 0.03308844566345215]} +{"t": 3.0003, "q": [-0.3447502553462982, -0.011329300701618195, 0.003803298342972994, 0.6320086121559143, -0.3178083896636963, 0.014790812507271767, -0.3794693648815155, 0.0017555557424202561, -0.005062136333435774, 0.601917028427124, -0.28321030735969543, 0.002061073202639818, 0.007084312848746777, 0.008968009613454342, -0.04786255583167076, 0.28295955061912537, 0.19784757494926453, -0.019642144441604614, 0.9840367436408997, 0.1664249300956726, 0.020313261076807976, -0.0896420031785965, 0.2791845202445984, -0.2052897810935974, 0.028366660699248314, 0.9873443841934204, -0.17123061418533325, 0.07367901504039764, 0.03308844566345215]} +{"t": 3.017, "q": [-0.34464800357818604, -0.011312256567180157, 0.003803298342972994, 0.632034182548523, -0.3178001046180725, 0.01480536162853241, -0.3794267475605011, 0.0017811221769079566, -0.005035352893173695, 0.6019766926765442, -0.28320205211639404, 0.0020754626020789146, 0.0070307450369000435, 0.008975615724921227, -0.0478675439953804, 0.2827078700065613, 0.19594208896160126, -0.01967809721827507, 0.9849594831466675, 0.16661667823791504, 0.020289292559027672, -0.08965399116277695, 0.27689552307128906, -0.204366996884346, 0.02936135232448578, 0.9898610711097717, -0.17131449282169342, 0.07418235391378403, 0.033124398440122604]} +{"t": 3.0338, "q": [-0.3446735441684723, -0.011295212432742119, 0.003910433501005173, 0.6320767998695374, -0.3178125023841858, 0.014798037707805634, -0.3795630931854248, 0.0018066884949803352, -0.004888041876256466, 0.6021556258201599, -0.2832019329071045, 0.00204657856374979, 0.006548637058585882, 0.008998422883450985, -0.047842901200056076, 0.2823483347892761, 0.1946837455034256, -0.01949833519756794, 0.9858942627906799, 0.1666286736726761, 0.02027730830013752, -0.0896420031785965, 0.2732643187046051, -0.20303674042224884, 0.02942127361893654, 0.9939956068992615, -0.17137442529201508, 0.07473362982273102, 0.03314836695790291]} +{"t": 3.0505, "q": [-0.34474173188209534, -0.01130373403429985, 0.004097919911146164, 0.6321790218353271, -0.3178042471408844, 0.014798087067902088, -0.37986990809440613, 0.0017811221769079566, -0.004713947419077158, 0.6024709343910217, -0.2832019329071045, 0.00204657856374979, 0.006120096426457167, 0.00901362206786871, -0.04782316833734512, 0.2814255654811859, 0.19392873346805573, -0.019570238888263702, 0.9870447516441345, 0.1666766107082367, 0.02027730830013752, -0.0896659716963768, 0.26972895860671997, -0.2019461840391159, 0.029589051380753517, 0.9970276355743408, -0.17142236232757568, 0.07509315758943558, 0.033196303993463516]} +{"t": 3.0674, "q": [-0.34474173188209534, -0.011320779100060463, 0.004218447022140026, 0.632264256477356, -0.3178042769432068, 0.0147835873067379, -0.37994658946990967, 0.0017896442441269755, -0.004566636402159929, 0.6026584506034851, -0.2831936776638031, 0.0020609679631888866, 0.005919218063354492, 0.00902122538536787, -0.04781825467944145, 0.2802750766277313, 0.19338944554328918, -0.01979793980717659, 0.9881113767623901, 0.1666766107082367, 0.02027730830013752, -0.0896659716963768, 0.26583409309387207, -0.2003762423992157, 0.029648972675204277, 0.9996162056922913, -0.17142236232757568, 0.0751890316605568, 0.03320828825235367]} +{"t": 3.0841, "q": [-0.3447246849536896, -0.011329300701618195, 0.004231838975101709, 0.6323750615119934, -0.3178125023841858, 0.01478353701531887, -0.3800147771835327, 0.0017811221769079566, -0.004539852496236563, 0.6028459072113037, -0.28318536281585693, 0.002060915110632777, 0.005624596029520035, 0.009036459028720856, -0.04785795137286186, 0.27889689803123474, 0.19186744093894958, -0.019845876842737198, 0.9896093606948853, 0.1667245477437973, 0.020241355523467064, -0.0896899402141571, 0.26172348856925964, -0.1986025869846344, 0.02990064211189747, 1.0029478073120117, -0.17153021693229675, 0.07528490573167801, 0.033256225287914276]} +{"t": 3.1008, "q": [-0.34473320841789246, -0.011320779100060463, 0.004218447022140026, 0.6324943900108337, -0.3178166449069977, 0.014776262454688549, -0.38004887104034424, 0.0017470336752012372, -0.0045800283551216125, 0.6029908061027527, -0.2831977903842926, 0.0020537732634693384, 0.005691555794328451, 0.009127780795097351, -0.04796735569834709, 0.2767637073993683, 0.19012972712516785, -0.019845876842737198, 0.9919223189353943, 0.1667724847793579, 0.020241355523467064, -0.08971390873193741, 0.2577686905860901, -0.1964094638824463, 0.02997254766523838, 1.0064232349395752, -0.17150624096393585, 0.07533284276723862, 0.03322027251124382]} +{"t": 3.1178, "q": [-0.34474173188209534, -0.011320779100060463, 0.0041916631162166595, 0.6326562762260437, -0.31782078742980957, 0.014768987894058228, -0.3800318241119385, 0.0017129451734945178, -0.004593420308083296, 0.6030845642089844, -0.2831895351409912, 0.002068162430077791, 0.005745123140513897, 0.009173469617962837, -0.048076529055833817, 0.2750619351863861, 0.18820028007030487, -0.019821908324956894, 0.9933604598045349, 0.1667724847793579, 0.020205404609441757, -0.08972589671611786, 0.2542453408241272, -0.19450397789478302, 0.030164295807480812, 1.0089279413223267, -0.171494260430336, 0.07535681128501892, 0.03328019380569458]} +{"t": 3.1346, "q": [-0.3447502553462982, -0.011312256567180157, 0.004178271628916264, 0.6327500343322754, -0.3178331255912781, 0.014790662564337254, -0.3800744116306305, 0.0017299894243478775, -0.0045800283551216125, 0.6030760407447815, -0.28318536281585693, 0.002060915110632777, 0.005678163841366768, 0.00930282287299633, -0.04818117618560791, 0.27336016297340393, 0.18612700700759888, -0.019881829619407654, 0.9951221346855164, 0.16683240234851837, 0.020145483314990997, -0.08971390873193741, 0.2501227557659149, -0.19292205572128296, 0.030308105051517487, 1.0117442607879639, -0.17161411046981812, 0.07538077980279922, 0.03332813084125519]} +{"t": 3.1514, "q": [-0.3448013961315155, -0.011295212432742119, 0.00416487967595458, 0.6328352689743042, -0.3178618848323822, 0.014841255731880665, -0.38014259934425354, 0.0017129451734945178, -0.0044996771030128, 0.6030930876731873, -0.28317707777023315, 0.002075322438031435, 0.005664771888405085, 0.009348519146442413, -0.0482904389500618, 0.2715745270252228, 0.18408969044685364, -0.01997770369052887, 0.9967879056930542, 0.1669282764196396, 0.020205404609441757, -0.08971390873193741, 0.2464076578617096, -0.1919633150100708, 0.03051183745265007, 1.013697624206543, -0.17161411046981812, 0.07540474832057953, 0.03335209935903549]} +{"t": 3.1681, "q": [-0.34487807750701904, -0.011252601630985737, 0.004178271628916264, 0.6328863501548767, -0.3178907632827759, 0.014833813533186913, -0.38031303882598877, 0.001695900922641158, -0.004405933897942305, 0.6031016111373901, -0.2831729054450989, 0.0020680748857557774, 0.0056112040765583515, 0.009401789866387844, -0.04833533242344856, 0.26951324939727783, 0.182328000664711, -0.020085562020540237, 0.9985616207122803, 0.1670001745223999, 0.020241355523467064, -0.08972589671611786, 0.24312397837638855, -0.19142402708530426, 0.031194938346743584, 1.0154234170913696, -0.17178188264369965, 0.07545268535614014, 0.03351987898349762]} +{"t": 3.1848, "q": [-0.34505704045295715, -0.011269645765423775, 0.004151487722992897, 0.6329289674758911, -0.3178948760032654, 0.014855556190013885, -0.38054314255714417, 0.0016873788554221392, -0.004419325385242701, 0.6031016111373901, -0.2831563353538513, 0.002082411665469408, 0.00571833923459053, 0.009531117044389248, -0.048370733857154846, 0.26723623275756836, 0.1809018850326538, -0.020121514797210693, 1.0002034902572632, 0.1670241504907608, 0.02022937312722206, -0.08973787724971771, 0.24157801270484924, -0.19135212898254395, 0.031206922605633736, 1.0164180994033813, -0.17230919003486633, 0.07546466588973999, 0.03362773731350899]} +{"t": 3.2016, "q": [-0.34522750973701477, -0.011269645765423775, 0.004097919911146164, 0.6329460144042969, -0.3178989887237549, 0.014862781390547752, -0.3806624412536621, 0.0016788567882031202, -0.004486285150051117, 0.603110134601593, -0.2831605076789856, 0.002089658984914422, 0.00575851509347558, 0.009561541490256786, -0.04837090149521828, 0.26513901352882385, 0.17969147861003876, -0.020145483314990997, 1.0016056299209595, 0.16709604859352112, 0.0201694518327713, -0.08972589671611786, 0.24095483124256134, -0.1919872909784317, 0.031206922605633736, 1.0173767805099487, -0.17316007614135742, 0.07547665387392044, 0.03368765860795975]} +{"t": 3.2183, "q": [-0.3454064726829529, -0.01124407909810543, 0.004084527958184481, 0.6329630613327026, -0.3178948760032654, 0.014855556190013885, -0.3809436857700348, 0.0016788567882031202, -0.0044996771030128, 0.6031271815299988, -0.2831563949584961, 0.0020968536846339703, 0.005691555794328451, 0.009614835493266582, -0.04845543950796127, 0.2637009024620056, 0.17876869440078735, -0.020121514797210693, 1.0026122331619263, 0.16735970973968506, 0.020145483314990997, -0.08972589671611786, 0.2409668117761612, -0.19262245297431946, 0.031266842037439346, 1.018826961517334, -0.17437048256397247, 0.07547665387392044, 0.03375956416130066]} +{"t": 3.2351, "q": [-0.34570473432540894, -0.011201469227671623, 0.004111311864107847, 0.6329545378684998, -0.317911297082901, 0.014898956753313541, -0.3813953399658203, 0.0017044231062754989, -0.004432717338204384, 0.6031356453895569, -0.2831563949584961, 0.0020968536846339703, 0.005557636730372906, 0.009698519483208656, -0.04848067834973335, 0.26262232661247253, 0.17822939157485962, -0.020121514797210693, 1.0037508010864258, 0.16751550137996674, 0.02015746757388115, -0.08972589671611786, 0.24117055535316467, -0.19287411868572235, 0.03129081055521965, 1.0209121704101562, -0.17489778995513916, 0.07550062239170074, 0.03375956416130066]} +{"t": 3.2518, "q": [-0.34610527753829956, -0.011192946694791317, 0.004138095770031214, 0.6329630613327026, -0.3179154098033905, 0.014906181022524834, -0.38223904371261597, 0.0017044231062754989, -0.004405933897942305, 0.603195309638977, -0.28314387798309326, 0.002089553512632847, 0.005517460871487856, 0.009766996838152409, -0.048515744507312775, 0.26151975989341736, 0.17765416204929352, -0.02010953053832054, 1.00492525100708, 0.16761137545108795, 0.020181436091661453, -0.08973787724971771, 0.24145816266536713, -0.19377294182777405, 0.03123089112341404, 1.0241239070892334, -0.17505358159542084, 0.0755126029253006, 0.03375956416130066]} +{"t": 3.2687, "q": [-0.3466933071613312, -0.011133292689919472, 0.004138095770031214, 0.6329630613327026, -0.3179072141647339, 0.014862731099128723, -0.38476160168647766, 0.0017299894243478775, -0.004432717338204384, 0.6032890677452087, -0.28313547372817993, 0.0020605986937880516, 0.005410325713455677, 0.009759381413459778, -0.04850083962082863, 0.26011762022972107, 0.17703098058700562, -0.020133499056100845, 1.0058839321136475, 0.16780312359333038, 0.020241355523467064, -0.08974986523389816, 0.24148213863372803, -0.1952829509973526, 0.031206922605633736, 1.028630018234253, -0.1751134991645813, 0.07552459090948105, 0.03375956416130066]} +{"t": 3.2855, "q": [-0.34743472933769226, -0.011124770157039165, 0.004218447022140026, 0.6329630613327026, -0.317903071641922, 0.014884506352245808, -0.3873949348926544, 0.0017299894243478775, -0.004325582180172205, 0.6035276651382446, -0.28313133120536804, 0.0020677933935076, 0.005410325713455677, 0.009789806790649891, -0.04850100725889206, 0.258667528629303, 0.1760842204093933, -0.020073577761650085, 1.0067228078842163, 0.16800685226917267, 0.02022937312722206, -0.08976184576749802, 0.24181769788265228, -0.19619375467300415, 0.031087080016732216, 1.032740592956543, -0.17514945566654205, 0.0755126029253006, 0.03375956416130066]} +{"t": 3.3022, "q": [-0.3481846749782562, -0.011090680956840515, 0.004272014833986759, 0.6329801082611084, -0.3178948760032654, 0.014855556190013885, -0.38761648535728455, 0.0017299894243478775, -0.004231838975101709, 0.6037577986717224, -0.28313547372817993, 0.0020605986937880516, 0.005356758367270231, 0.0097745880484581, -0.048491012305021286, 0.257061630487442, 0.17579659819602966, -0.020001672208309174, 1.0078014135360718, 0.1681746393442154, 0.02015746757388115, -0.08974986523389816, 0.2418895959854126, -0.19748805463314056, 0.030907316133379936, 1.036971092224121, -0.17512547969818115, 0.0755126029253006, 0.03375956416130066]} +{"t": 3.3192, "q": [-0.34863632917404175, -0.011082159355282784, 0.0042854067869484425, 0.6329801082611084, -0.3178783655166626, 0.014855638146400452, -0.38765910267829895, 0.0017299894243478775, -0.004151487722992897, 0.6037918925285339, -0.28313127160072327, 0.0020533513743430376, 0.005303190555423498, 0.009721329435706139, -0.04846594110131264, 0.2554437518119812, 0.17597636580467224, -0.019965719431638718, 1.009479284286499, 0.16829447448253632, 0.020133499056100845, -0.08976184576749802, 0.24241690337657928, -0.19884227216243744, 0.03082342818379402, 1.0394877195358276, -0.1751134991645813, 0.07557252794504166, 0.03378353267908096]} +{"t": 3.3359, "q": [-0.34882381558418274, -0.011082159355282784, 0.004338974133133888, 0.6329801082611084, -0.3178825080394745, 0.01484836358577013, -0.38765910267829895, 0.0017299894243478775, -0.004178271628916264, 0.6037748456001282, -0.28311464190483093, 0.0020532459020614624, 0.005196055397391319, 0.009766957722604275, -0.04844637215137482, 0.25393375754356384, 0.176012322306633, -0.019941750913858414, 1.0116723775863647, 0.16833043098449707, 0.02010953053832054, -0.08974986523389816, 0.24271652102470398, -0.2000766396522522, 0.030739538371562958, 1.0418126583099365, -0.1750895380973816, 0.0755365714430809, 0.03378353267908096]} +{"t": 3.3527, "q": [-0.34882381558418274, -0.011082159355282784, 0.004405933897942305, 0.6329886317253113, -0.3178783655166626, 0.014855638146400452, -0.38765910267829895, 0.0017811221769079566, -0.004044352564960718, 0.6037663221359253, -0.28309792280197144, 0.0020242384634912014, 0.0049148257821798325, 0.009751778095960617, -0.048505749553442, 0.2521241307258606, 0.17614413797855377, -0.019714049994945526, 1.0147403478622437, 0.16833043098449707, 0.020181436091661453, -0.08976184576749802, 0.2427644580602646, -0.20121514797210693, 0.030643664300441742, 1.0446648597717285, -0.17507754266262054, 0.07558450847864151, 0.03380750119686127]} +{"t": 3.3694, "q": [-0.34877270460128784, -0.011073637753725052, 0.0045264605432748795, 0.6329715847969055, -0.3178742229938507, 0.014862931333482265, -0.3876846730709076, 0.0017555557424202561, -0.003923825453966856, 0.603715181350708, -0.2831062972545624, 0.0020387512631714344, 0.00445950124412775, 0.009941967204213142, -0.04856131225824356, 0.25008681416511536, 0.17649167776107788, -0.019654128700494766, 1.0180360078811646, 0.16835439205169678, 0.02015746757388115, -0.08976184576749802, 0.24264460802078247, -0.20225776731967926, 0.030499853193759918, 1.0480444431304932, -0.1750895380973816, 0.07557252794504166, 0.03378353267908096]} +{"t": 3.3862, "q": [-0.34877270460128784, -0.011073637753725052, 0.004593420308083296, 0.6329630613327026, -0.317886620759964, 0.014855606481432915, -0.38765910267829895, 0.001764077926054597, -0.0038702578749507666, 0.6037066578865051, -0.28311046957969666, 0.0020459985826164484, 0.004312190227210522, 0.010124588385224342, -0.04868125170469284, 0.24779783189296722, 0.17673136293888092, -0.019570238888263702, 1.0213675498962402, 0.16830645501613617, 0.02021738886833191, -0.08974986523389816, 0.24265658855438232, -0.20319253206253052, 0.030356042087078094, 1.0503814220428467, -0.17510151863098145, 0.07563244551420212, 0.03381948545575142]} +{"t": 3.4029, "q": [-0.34876418113708496, -0.011048071086406708, 0.004646987654268742, 0.6329630613327026, -0.3178825080394745, 0.01484836358577013, -0.38765910267829895, 0.0017725999932736158, -0.003816690295934677, 0.6036810874938965, -0.28311464190483093, 0.0020532459020614624, 0.004111311864107847, 0.010269124992191792, -0.04871673882007599, 0.24614399671554565, 0.17709089815616608, -0.019426429644227028, 1.023392915725708, 0.16830645501613617, 0.02015746757388115, -0.08976184576749802, 0.24266858398914337, -0.2040434181690216, 0.030356042087078094, 1.0523347854614258, -0.17514945566654205, 0.07563244551420212, 0.03381948545575142]} +{"t": 3.4197, "q": [-0.3487982749938965, -0.011048071086406708, 0.004700555466115475, 0.6329289674758911, -0.3178742229938507, 0.014862931333482265, -0.3876335322856903, 0.0017811221769079566, -0.0037899063900113106, 0.6036384701728821, -0.2831062972545624, 0.0020387512631714344, 0.004004176706075668, 0.010398449376225471, -0.04874223470687866, 0.24512533843517303, 0.17739050090312958, -0.019342539831995964, 1.0241239070892334, 0.16829447448253632, 0.020145483314990997, -0.08976184576749802, 0.24239294230937958, -0.20473849773406982, 0.030284136533737183, 1.0548394918441772, -0.17517341673374176, 0.07563244551420212, 0.03381948545575142]} +{"t": 3.4364, "q": [-0.34881529211997986, -0.011065115220844746, 0.004727339372038841, 0.6328863501548767, -0.3178824782371521, 0.014862881042063236, -0.3876250088214874, 0.0017811221769079566, -0.0037631227169185877, 0.6036043763160706, -0.28311464190483093, 0.0020532459020614624, 0.004071136470884085, 0.010527732782065868, -0.04870826005935669, 0.2440347820520401, 0.17777399718761444, -0.019282618537545204, 1.0245553255081177, 0.16829447448253632, 0.020133499056100845, -0.08976184576749802, 0.24222515523433685, -0.20522986352443695, 0.030284136533737183, 1.0569367408752441, -0.1751134991645813, 0.07566839456558228, 0.03380750119686127]} +{"t": 3.4532, "q": [-0.3487982749938965, -0.01105659268796444, 0.004700555466115475, 0.6328096985816956, -0.317886620759964, 0.014855606481432915, -0.3876250088214874, 0.0017896442441269755, -0.0037899063900113106, 0.6035361886024475, -0.28311049938201904, 0.002060458529740572, 0.004178271628916264, 0.010588617995381355, -0.0487680621445179, 0.24299214780330658, 0.178181454539299, -0.019114838913083076, 1.0247591733932495, 0.16829447448253632, 0.020085562020540237, -0.08976184576749802, 0.24212928116321564, -0.20550549030303955, 0.03027215227484703, 1.0587583780288696, -0.1751614362001419, 0.07568038254976273, 0.03380750119686127]} +{"t": 3.47, "q": [-0.3487812280654907, -0.011082159355282784, 0.004713947419077158, 0.632775604724884, -0.317886620759964, 0.014855606481432915, -0.387539803981781, 0.0017981663113459945, -0.003776514669880271, 0.6035021543502808, -0.28311464190483093, 0.0020532459020614624, 0.004245230928063393, 0.010664697736501694, -0.04879821464419365, 0.2416379302740097, 0.17879265546798706, -0.019102854654192924, 1.0249748229980469, 0.16829447448253632, 0.020073577761650085, -0.08977383375167847, 0.24199746549129486, -0.2055893838405609, 0.030284136533737183, 1.0602084398269653, -0.17507754266262054, 0.07566839456558228, 0.03381948545575142]} +{"t": 3.4868, "q": [-0.34877270460128784, -0.011107726022601128, 0.004700555466115475, 0.6327585577964783, -0.3178783655166626, 0.014855638146400452, -0.3874971866607666, 0.0018066884949803352, -0.003776514669880271, 0.6034680604934692, -0.28311461210250854, 0.0020388038828969, 0.004405933897942305, 0.010695143602788448, -0.0488281175494194, 0.24003204703330994, 0.17948773503303528, -0.019114838913083076, 1.0251185894012451, 0.16829447448253632, 0.020013656467199326, -0.08976184576749802, 0.24185365438461304, -0.20557740330696106, 0.030308105051517487, 1.0613709688186646, -0.17510151863098145, 0.07566839456558228, 0.03381948545575142]} +{"t": 3.5036, "q": [-0.3487897515296936, -0.011158858425915241, 0.004713947419077158, 0.632707417011261, -0.3178700804710388, 0.014870205894112587, -0.38743752241134644, 0.0017981663113459945, -0.003776514669880271, 0.603485107421875, -0.28311464190483093, 0.0020532459020614624, 0.00445950124412775, 0.010710377246141434, -0.0488678440451622, 0.23793481290340424, 0.18043449521064758, -0.019162775948643684, 1.0251545906066895, 0.16830645501613617, 0.019785955548286438, -0.08977383375167847, 0.24148213863372803, -0.20548152923583984, 0.030344057828187943, 1.0630247592926025, -0.17512547969818115, 0.07569236308336258, 0.03380750119686127]} +{"t": 3.5204, "q": [-0.3487812280654907, -0.011167380958795547, 0.004713947419077158, 0.6326733231544495, -0.3178742229938507, 0.014877448789775372, -0.3874119520187378, 0.0017555557424202561, -0.003776514669880271, 0.6034424901008606, -0.28312715888023376, 0.002060546074062586, 0.004405933897942305, 0.01076365914195776, -0.04893255978822708, 0.2358255833387375, 0.18157300353050232, -0.019222697243094444, 1.0249148607254028, 0.16839034855365753, 0.019450398162007332, -0.08979780226945877, 0.24115855991840363, -0.20536167919635773, 0.03043993189930916, 1.064846396446228, -0.17512547969818115, 0.07564442604780197, 0.03381948545575142]} +{"t": 3.5374, "q": [-0.34876418113708496, -0.011175902560353279, 0.004740730859339237, 0.6326221823692322, -0.3178824782371521, 0.014862881042063236, -0.3872244656085968, 0.0017385114915668964, -0.0037497307639569044, 0.6033913493156433, -0.28311887383461, 0.0020749531686306, 0.004486285150051117, 0.01099193561822176, -0.04908248409628868, 0.23344072699546814, 0.18303507566452026, -0.019342539831995964, 1.0244715213775635, 0.1685461401939392, 0.019102854654192924, -0.08979780226945877, 0.24083499610424042, -0.20522986352443695, 0.030523821711540222, 1.0666918754577637, -0.17512547969818115, 0.07566839456558228, 0.03383146598935127]} +{"t": 3.5541, "q": [-0.34867894649505615, -0.011218513362109661, 0.0047541228123009205, 0.6325880885124207, -0.3178659677505493, 0.014877480454742908, -0.387164831161499, 0.0017299894243478775, -0.0037229470908641815, 0.6033743023872375, -0.2831147611141205, 0.002082147868350148, 0.00445950124412775, 0.011204971000552177, -0.049192771315574646, 0.2304566502571106, 0.18458104133605957, -0.019390476867556572, 1.0240520238876343, 0.1687259078025818, 0.018731344491243362, -0.08979780226945877, 0.24057133495807648, -0.20518192648887634, 0.030559774488210678, 1.0686572790145874, -0.17514945566654205, 0.07566839456558228, 0.033843450248241425]} +{"t": 3.5709, "q": [-0.34868746995925903, -0.011218513362109661, 0.004740730859339237, 0.6325795650482178, -0.3178742229938507, 0.014877448789775372, -0.3871222138404846, 0.001695900922641158, -0.0037899063900113106, 0.6033572554588318, -0.28311887383461, 0.0020749531686306, 0.004780906718224287, 0.011494103819131851, -0.04936305806040764, 0.22737669944763184, 0.1862947791814804, -0.019450398162007332, 1.0237164497375488, 0.16901353001594543, 0.018335863947868347, -0.08980978280305862, 0.2401878386735916, -0.20508605241775513, 0.030655648559331894, 1.0709223747253418, -0.17512547969818115, 0.07566839456558228, 0.03386741876602173]} +{"t": 3.5876, "q": [-0.3486193120479584, -0.011269645765423775, 0.004767514765262604, 0.6325880885124207, -0.3178742229938507, 0.014877448789775372, -0.38711369037628174, 0.0016788567882031202, -0.003776514669880271, 0.6033657789230347, -0.28311893343925476, 0.002089395187795162, 0.004874649923294783, 0.011760392226278782, -0.049488604068756104, 0.22488398849964142, 0.18786472082138062, -0.019450398162007332, 1.0235726833343506, 0.1693251132965088, 0.01786847971379757, -0.08979780226945877, 0.23978038132190704, -0.20497818291187286, 0.030667632818222046, 1.0725042819976807, -0.175137460231781, 0.07568038254976273, 0.03387940302491188]} +{"t": 3.6044, "q": [-0.3485255539417267, -0.011286689899861813, 0.004767514765262604, 0.6325795650482178, -0.3178700804710388, 0.014884724281728268, -0.387096643447876, 0.0016703346045687795, -0.0037631227169185877, 0.6033657789230347, -0.2831106185913086, 0.0020893425680696964, 0.0049148257821798325, 0.012034290470182896, -0.049579694867134094, 0.22213959693908691, 0.18950656056404114, -0.019450398162007332, 1.0227457284927368, 0.16954083740711212, 0.016885774210095406, -0.08980978280305862, 0.2391931563615799, -0.20485834777355194, 0.030727554112672806, 1.0742899179458618, -0.1751853972673416, 0.07568038254976273, 0.03386741876602173]} +{"t": 3.6212, "q": [-0.3485085070133209, -0.011295212432742119, 0.004767514765262604, 0.6325966119766235, -0.3178618252277374, 0.014884755946695805, -0.3870881199836731, 0.0016447682864964008, -0.0037497307639569044, 0.6033657789230347, -0.2831064760684967, 0.0020965372677892447, 0.00508892023935914, 0.012315846048295498, -0.04975513741374016, 0.21763353049755096, 0.19119632244110107, -0.019462382420897484, 1.0226619243621826, 0.16973258554935455, 0.015747271478176117, -0.08980978280305862, 0.238569974899292, -0.20472651720046997, 0.030739538371562958, 1.0764830112457275, -0.17517341673374176, 0.07566839456558228, 0.03387940302491188]} +{"t": 3.6381, "q": [-0.3484658896923065, -0.011312256567180157, 0.004727339372038841, 0.6325966119766235, -0.3178825080394745, 0.01484836358577013, -0.3871818780899048, 0.0015936355339363217, -0.0037899063900113106, 0.6033998727798462, -0.2831023633480072, 0.0021037317346781492, 0.005236231256276369, 0.012460441328585148, -0.049860239028930664, 0.21366675198078156, 0.1932096779346466, -0.019570238888263702, 1.0228177309036255, 0.17003218829631805, 0.01450091227889061, -0.08980978280305862, 0.23817449808120728, -0.20463064312934875, 0.030739538371562958, 1.0782686471939087, -0.17517341673374176, 0.07566839456558228, 0.03389138728380203]} +{"t": 3.6548, "q": [-0.3484147787094116, -0.011312256567180157, 0.004673771560192108, 0.6325966119766235, -0.3178659677505493, 0.01486298069357872, -0.3871818780899048, 0.0015595471486449242, -0.003816690295934677, 0.6033913493156433, -0.28309404850006104, 0.0021036791149526834, 0.005356758367270231, 0.012498511001467705, -0.04991504177451134, 0.2097598910331726, 0.19450397789478302, -0.01997770369052887, 1.0227577686309814, 0.17041568458080292, 0.011960256844758987, -0.08984573930501938, 0.2379228174686432, -0.204594686627388, 0.030775491148233414, 1.0795989036560059, -0.17514945566654205, 0.07566839456558228, 0.033903371542692184]} +{"t": 3.6717, "q": [-0.3484147787094116, -0.011261124163866043, 0.004646987654268742, 0.6325966119766235, -0.3178825378417969, 0.014833862893283367, -0.38728412985801697, 0.0015510249650105834, -0.0038300822488963604, 0.6033743023872375, -0.28308162093162537, 0.0021108209621161222, 0.005236231256276369, 0.01250616367906332, -0.0499795600771904, 0.20672789216041565, 0.19576232135295868, -0.020133499056100845, 1.0220507383346558, 0.17090703547000885, 0.008556736633181572, -0.08984573930501938, 0.23765917122364044, -0.2046665996313095, 0.030799459666013718, 1.0806775093078613, -0.17517341673374176, 0.07569236308336258, 0.03389138728380203]} +{"t": 3.6884, "q": [-0.34836363792419434, -0.011201469227671623, 0.004646987654268742, 0.6325966119766235, -0.31791141629219055, 0.014811956323683262, -0.3874204754829407, 0.0015851134667173028, -0.0037899063900113106, 0.6033657789230347, -0.28308582305908203, 0.00213252822868526, 0.004928217735141516, 0.012666037306189537, -0.05018393695354462, 0.20416326820850372, 0.19674502313137054, -0.020265324041247368, 1.020936131477356, 0.1715182363986969, 0.002576608443632722, -0.08985771983861923, 0.2373475879430771, -0.20479843020439148, 0.030775491148233414, 1.0816482305526733, -0.17514945566654205, 0.07568038254976273, 0.03387940302491188]} +{"t": 3.7055, "q": [-0.3482869267463684, -0.011209990829229355, 0.004660379607230425, 0.6325880885124207, -0.3179238438606262, 0.014775595627725124, -0.3874971866607666, 0.0015765913994982839, -0.0037497307639569044, 0.6033913493156433, -0.2830691933631897, 0.0021324229892343283, 0.004821082577109337, 0.012825937010347843, -0.050427988171577454, 0.2021978497505188, 0.1973562240600586, -0.02051699347794056, 1.0201811790466309, 0.17197363078594208, -0.0028162929229438305, -0.08985771983861923, 0.2370719462633133, -0.20497818291187286, 0.03075152263045311, 1.082642912864685, -0.17514945566654205, 0.07566839456558228, 0.03389138728380203]} +{"t": 3.7222, "q": [-0.3482528328895569, -0.011192946694791317, 0.004593420308083296, 0.6325880885124207, -0.3181016445159912, 0.014477202668786049, -0.38771024346351624, 0.001568069215863943, -0.0037229470908641815, 0.6032805442810059, -0.2830609977245331, 0.0021612541750073433, 0.00483447453007102, 0.013191267848014832, -0.05074780061841011, 0.19916583597660065, 0.19748805463314056, -0.021032314747571945, 1.0194740295410156, 0.17362745106220245, -0.007789746392518282, -0.08985771983861923, 0.2367723435163498, -0.20513398945331573, 0.03076350688934326, 1.0841529369354248, -0.1751614362001419, 0.07566839456558228, 0.03387940302491188]} +{"t": 3.7389, "q": [-0.348244309425354, -0.011201469227671623, 0.0045800283551216125, 0.6325880885124207, -0.31814706325531006, 0.014426160603761673, -0.38783806562423706, 0.0015510249650105834, -0.0037095551379024982, 0.6032038331031799, -0.2830568850040436, 0.0021684488747268915, 0.00479429867118597, 0.013609844259917736, -0.05108306184411049, 0.19663716852664948, 0.19751201570034027, -0.022122880443930626, 1.018611192703247, 0.17707891762256622, -0.012715263292193413, -0.08985771983861923, 0.23631693422794342, -0.2051699310541153, 0.03075152263045311, 1.0854592323303223, -0.17514945566654205, 0.07569236308336258, 0.03389138728380203]} +{"t": 3.7557, "q": [-0.348244309425354, -0.011124770157039165, 0.004539852496236563, 0.6325795650482178, -0.31814295053482056, 0.014433435164391994, -0.38799145817756653, 0.0015510249650105834, -0.003669379511848092, 0.603110134601593, -0.28306105732917786, 0.0021756961941719055, 0.0047541228123009205, 0.01400558091700077, -0.0513441301882267, 0.1944560408592224, 0.19741614162921906, -0.023201460018754005, 1.0181198120117188, 0.18109363317489624, -0.01877928152680397, -0.08986970782279968, 0.2359214574098587, -0.2051219940185547, 0.03076350688934326, 1.086525797843933, -0.17517341673374176, 0.07569236308336258, 0.03387940302491188]} +{"t": 3.7724, "q": [-0.3482784032821655, -0.01111624762415886, 0.0045264605432748795, 0.6325795650482178, -0.3183000683784485, 0.014156898483633995, -0.38811078667640686, 0.0014998923288658261, -0.0036292036529630423, 0.6029822826385498, -0.28306105732917786, 0.0021756961941719055, 0.004419325385242701, 0.014416562393307686, -0.05163516476750374, 0.1916637122631073, 0.19726034998893738, -0.0240643247961998, 1.0179041624069214, 0.18518024682998657, -0.024807346984744072, -0.08986970782279968, 0.23522637784481049, -0.20500215888023376, 0.03076350688934326, 1.0877960920333862, -0.17514945566654205, 0.07569236308336258, 0.03387940302491188]} +{"t": 3.7891, "q": [-0.34831249713897705, -0.011090680956840515, 0.0045264605432748795, 0.6325795650482178, -0.31966468691825867, 0.011802633292973042, -0.3882215619087219, 0.0014998923288658261, -0.003575636073946953, 0.6029140949249268, -0.28306522965431213, 0.0021829435136169195, 0.004312190227210522, 0.014804708771407604, -0.0519111305475235, 0.18883544206619263, 0.1971285194158554, -0.024411866441369057, 1.0178442001342773, 0.18790066242218018, -0.0288819819688797, -0.08986970782279968, 0.23448334634304047, -0.20476247370243073, 0.030799459666013718, 1.0894020795822144, -0.1751134991645813, 0.07566839456558228, 0.03387940302491188]} +{"t": 3.8058, "q": [-0.3484233021736145, -0.011090680956840515, 0.0045264605432748795, 0.6325369477272034, -0.32040247321128845, 0.010512429289519787, -0.38843461871147156, 0.0014828480780124664, -0.003441717242822051, 0.6027947664260864, -0.2830736041069031, 0.0021974563132971525, 0.004245230928063393, 0.015284285880625248, -0.05238630250096321, 0.18610303103923798, 0.19711653888225555, -0.024663535878062248, 1.0175925493240356, 0.18897925317287445, -0.03389138728380203, -0.08986970782279968, 0.23360849916934967, -0.20451080799102783, 0.03081144392490387, 1.0914393663406372, -0.1751614362001419, 0.07569236308336258, 0.033903371542692184]} +{"t": 3.8226, "q": [-0.3484233021736145, -0.011039548553526402, 0.0044996771030128, 0.6324432492256165, -0.32044780254364014, 0.010461299680173397, -0.38851985335350037, 0.0014658038271591067, -0.0033881496638059616, 0.6025476455688477, -0.28306522965431213, 0.0021829435136169195, 0.004084527958184481, 0.015748653560876846, -0.052861712872982025, 0.18351444602012634, 0.19726034998893738, -0.024879250675439835, 1.0170292854309082, 0.18968631327152252, -0.0412377193570137, -0.08986970782279968, 0.23254190385341644, -0.20422318577766418, 0.030847394838929176, 1.0932250022888184, -0.17517341673374176, 0.07571633160114288, 0.03387940302491188]} +{"t": 3.8393, "q": [-0.3484403192996979, -0.011048071086406708, 0.0044996771030128, 0.6324176788330078, -0.32046425342559814, 0.010461158119142056, -0.3885453939437866, 0.0014658038271591067, -0.0033747577108442783, 0.6024027466773987, -0.283069372177124, 0.002175749046728015, 0.004138095770031214, 0.016114111989736557, -0.05327210947871208, 0.18012291193008423, 0.19739218056201935, -0.0249631404876709, 1.0160346031188965, 0.19024957716464996, -0.047385625541210175, -0.08988168835639954, 0.23161911964416504, -0.20389960706233978, 0.030787475407123566, 1.0948668718338013, -0.175137460231781, 0.07569236308336258, 0.03389138728380203]} +{"t": 3.856, "q": [-0.34844884276390076, -0.011022504419088364, 0.004472893197089434, 0.632400631904602, -0.32046425342559814, 0.010475669987499714, -0.38853690028190613, 0.001440237509086728, -0.003334582084789872, 0.6023175716400146, -0.28305697441101074, 0.002197332913056016, 0.004245230928063393, 0.016350168734788895, -0.05360705778002739, 0.17529326677322388, 0.19757193326950073, -0.024999093264341354, 1.0144766569137573, 0.19052521884441376, -0.05175986886024475, -0.08988168835639954, 0.23021696507930756, -0.20328840613365173, 0.03082342818379402, 1.0976471900939941, -0.175137460231781, 0.07570435106754303, 0.03389138728380203]} +{"t": 3.873, "q": [-0.3484829366207123, -0.011065115220844746, 0.00445950124412775, 0.632400631904602, -0.32049715518951416, 0.010504464618861675, -0.38857096433639526, 0.0013720606220886111, -0.003321190131828189, 0.6022664308547974, -0.2830612063407898, 0.0022190583404153585, 0.004392541944980621, 0.01627434976398945, -0.053984083235263824, 0.16998425126075745, 0.1977037638425827, -0.02502306178212166, 1.0130265951156616, 0.19087275862693787, -0.05667340010404587, -0.08986970782279968, 0.22853916883468628, -0.20297682285308838, 0.03082342818379402, 1.1004035472869873, -0.1751614362001419, 0.07574030011892319, 0.03389138728380203]} +{"t": 3.8897, "q": [-0.3486193120479584, -0.011090680956840515, 0.0044996771030128, 0.6323835849761963, -0.32052186131477356, 0.010518791154026985, -0.38866472244262695, 0.0013464941876009107, -0.0032944062259048223, 0.6021130084991455, -0.28304046392440796, 0.0022261294070631266, 0.004446109291166067, 0.016358228400349617, -0.05427798256278038, 0.16502277553081512, 0.19777566194534302, -0.025047030299901962, 1.010390043258667, 0.1913161724805832, -0.06342051923274994, -0.08988168835639954, 0.22587867081165314, -0.20267722010612488, 0.030835412442684174, 1.1030640602111816, -0.175137460231781, 0.0757882371544838, 0.03389138728380203]} +{"t": 3.9064, "q": [-0.34862780570983887, -0.011099203489720821, 0.0045800283551216125, 0.6322813034057617, -0.3205506503582001, 0.010540361516177654, -0.3887328803539276, 0.0013464941876009107, -0.0030533522367477417, 0.6019511222839355, -0.28303632140159607, 0.002233324106782675, 0.004205055069178343, 0.016442060470581055, -0.05450231581926346, 0.16081631183624268, 0.19773972034454346, -0.02509496733546257, 1.0059678554534912, 0.19183149933815002, -0.07017962634563446, -0.08988168835639954, 0.2231702357530594, -0.2025214284658432, 0.03082342818379402, 1.1048017740249634, -0.175137460231781, 0.07576426863670349, 0.03389138728380203]} +{"t": 3.9233, "q": [-0.3486193120479584, -0.011107726022601128, 0.0045800283551216125, 0.6321449279785156, -0.3206164538860321, 0.010641486383974552, -0.38898003101348877, 0.0013464941876009107, -0.0027721223887056112, 0.601917028427124, -0.2830364406108856, 0.0022622260730713606, 0.004044352564960718, 0.016617177054286003, -0.05471748113632202, 0.15620239078998566, 0.1973801851272583, -0.02515488862991333, 1.0013179779052734, 0.19216705858707428, -0.07623165845870972, -0.08986970782279968, 0.22097712755203247, -0.20231768488883972, 0.03082342818379402, 1.1060720682144165, -0.17512547969818115, 0.07575228810310364, 0.033903371542692184]} +{"t": 3.9401, "q": [-0.34862780570983887, -0.011099203489720821, 0.004566636402159929, 0.6319915652275085, -0.3207109868526459, 0.010865762829780579, -0.3890993595123291, 0.0014061490073800087, -0.002624811604619026, 0.6018999814987183, -0.28300753235816956, 0.002312606666237116, 0.004084527958184481, 0.016784681007266045, -0.054917678236961365, 0.15098924934864044, 0.19696074724197388, -0.02521480992436409, 0.9978784918785095, 0.19239474833011627, -0.08354203402996063, -0.08988168835639954, 0.21945513784885406, -0.20150277018547058, 0.03082342818379402, 1.1071146726608276, -0.17512547969818115, 0.07576426863670349, 0.03389138728380203]} +{"t": 3.9568, "q": [-0.3486193120479584, -0.011107726022601128, 0.004553244449198246, 0.6318807601928711, -0.32080143690109253, 0.01102476753294468, -0.38912490010261536, 0.0013976269401609898, -0.0025980276986956596, 0.6017806529998779, -0.28302001953125, 0.0023199066054075956, 0.004044352564960718, 0.01693694107234478, -0.055068209767341614, 0.14552444219589233, 0.19642144441604614, -0.025286715477705002, 0.9924855828285217, 0.1926104724407196, -0.09123590588569641, -0.08988168835639954, 0.2181488573551178, -0.20060394704341888, 0.030835412442684174, 1.108420968055725, -0.17517341673374176, 0.07574030011892319, 0.03385543450713158]} +{"t": 3.9735, "q": [-0.3486193120479584, -0.011107726022601128, 0.004566636402159929, 0.6317784786224365, -0.32086724042892456, 0.011125892400741577, -0.3890993595123291, 0.0014061490073800087, -0.0025980276986956596, 0.6016272306442261, -0.2830158770084381, 0.002327101305127144, 0.004111311864107847, 0.017058776691555977, -0.05521848052740097, 0.13942447304725647, 0.19591811299324036, -0.02534663677215576, 0.9861938953399658, 0.1926584094762802, -0.0969044417142868, -0.08988168835639954, 0.2169983685016632, -0.19963322579860687, 0.030883347615599632, 1.1099909543991089, -0.17522135376930237, 0.07574030011892319, 0.03387940302491188]} +{"t": 3.9903, "q": [-0.3486618995666504, -0.011107726022601128, 0.004606812261044979, 0.631727397441864, -0.3208630383014679, 0.011220267973840237, -0.38907378911972046, 0.001389104756526649, -0.002624811604619026, 0.6015079617500305, -0.28302842378616333, 0.0023488434962928295, 0.0042854067869484425, 0.017119672149419785, -0.055268749594688416, 0.13319267332553864, 0.19540278613567352, -0.025490447878837585, 0.9804534316062927, 0.19269435107707977, -0.10369949787855148, -0.08986970782279968, 0.21608756482601166, -0.19878233969211578, 0.03087136335670948, 1.1117645502090454, -0.1751614362001419, 0.07574030011892319, 0.03387940302491188]} +{"t": 4.007, "q": [-0.34877270460128784, -0.011141814291477203, 0.004593420308083296, 0.631659209728241, -0.320842444896698, 0.011256701312959194, -0.3890908360481262, 0.0013976269401609898, -0.0026783791836351156, 0.6013971567153931, -0.2830367982387543, 0.0023633381351828575, 0.00445950124412775, 0.017165331169962883, -0.055289048701524734, 0.1267092078924179, 0.1952110379934311, -0.02552640065550804, 0.9744014143943787, 0.19268237054347992, -0.11205250769853592, -0.08988168835639954, 0.2148531973361969, -0.19787153601646423, 0.030907316133379936, 1.1141494512557983, -0.17512547969818115, 0.07577625662088394, 0.03389138728380203]} +{"t": 4.0239, "q": [-0.34877270460128784, -0.01118442416191101, 0.004767514765262604, 0.6316080689430237, -0.3205704092979431, 0.011752314865589142, -0.38903117179870605, 0.001389104756526649, -0.0027453387156128883, 0.6013545393943787, -0.2830367982387543, 0.0023633381351828575, 0.004419325385242701, 0.017294641584157944, -0.05525539815425873, 0.12134028226137161, 0.19518707692623138, -0.025562351569533348, 0.9675583839416504, 0.1926584094762802, -0.11971042305231094, -0.08988168835639954, 0.2136787325143814, -0.19696074724197388, 0.030895331874489784, 1.1159350872039795, -0.17510151863098145, 0.07575228810310364, 0.03389138728380203]} +{"t": 4.0418, "q": [-0.34877270460128784, -0.011218513362109661, 0.004968393128365278, 0.6315057873725891, -0.3205951154232025, 0.0117085762321949, -0.3890567421913147, 0.0014146711910143495, -0.0027051628567278385, 0.6013545393943787, -0.2830367982387543, 0.0023633381351828575, 0.004379149992018938, 0.017560919746756554, -0.05527269467711449, 0.11708588153123856, 0.19509120285511017, -0.025550367310643196, 0.9597926139831543, 0.1926344335079193, -0.12826716899871826, -0.08985771983861923, 0.2126840502023697, -0.19597803056240082, 0.030955253168940544, 1.1177207231521606, -0.175137460231781, 0.07576426863670349, 0.03389138728380203]} +{"t": 4.0585, "q": [-0.34876418113708496, -0.01124407909810543, 0.005236231256276369, 0.6313864588737488, -0.32052505016326904, 0.01181795634329319, -0.3890056014060974, 0.0014146711910143495, -0.002731946762651205, 0.6013033986091614, -0.2830575704574585, 0.0023562670685350895, 0.004379149992018938, 0.018063100054860115, -0.055376872420310974, 0.11230417340993881, 0.19414444267749786, -0.025706162676215172, 0.9506247043609619, 0.1926344335079193, -0.13730326294898987, -0.08985771983861923, 0.2118092030286789, -0.19479160010814667, 0.030967237427830696, 1.120441198348999, -0.17514945566654205, 0.07575228810310364, 0.03389138728380203]} +{"t": 4.0757, "q": [-0.34873008728027344, -0.011261124163866043, 0.0053701503202319145, 0.6312757134437561, -0.32048797607421875, 0.011854531243443489, -0.388962984085083, 0.0014317154418677092, -0.0027453387156128883, 0.6013204455375671, -0.28306588530540466, 0.0023563196882605553, 0.004446109291166067, 0.018451152369379997, -0.05547508969902992, 0.10814564675092697, 0.19250260293483734, -0.025921879336237907, 0.9421518445014954, 0.1926584094762802, -0.1434391885995865, -0.08988168835639954, 0.21142570674419403, -0.19372500479221344, 0.031003190204501152, 1.1227061748504639, -0.1751134991645813, 0.07577625662088394, 0.03387940302491188]} +{"t": 4.0924, "q": [-0.34868746995925903, -0.011261124163866043, 0.005383542273193598, 0.631071150302887, -0.32048386335372925, 0.01186181791126728, -0.3889203667640686, 0.001440237509086728, -0.0027721223887056112, 0.6012863516807556, -0.28309500217437744, 0.002363707171753049, 0.0045130690559744835, 0.01901419274508953, -0.055589914321899414, 0.10392720252275467, 0.1909925937652588, -0.026197517290711403, 0.9323607683181763, 0.1926584094762802, -0.1534699946641922, -0.08984573930501938, 0.211186021566391, -0.19273030757904053, 0.031314779072999954, 1.1245636940002441, -0.1751614362001419, 0.07575228810310364, 0.03389138728380203]} +{"t": 4.1093, "q": [-0.34864485263824463, -0.011252601630985737, 0.005437109619379044, 0.6310285329818726, -0.32048797607421875, 0.011854531243443489, -0.38889482617378235, 0.0014658038271591067, -0.0027855143416672945, 0.6013204455375671, -0.2830866873264313, 0.002363654552027583, 0.0044996771030128, 0.019653193652629852, -0.05555632337927818, 0.09906160831451416, 0.18980616331100464, -0.026437200605869293, 0.9231328964233398, 0.1926344335079193, -0.16200275719165802, -0.08988168835639954, 0.21111410856246948, -0.1910645067691803, 0.031434621661901474, 1.1257262229919434, -0.17512547969818115, 0.07575228810310364, 0.03389138728380203]} +{"t": 4.126, "q": [-0.3486618995666504, -0.01130373403429985, 0.005450501572340727, 0.6310285329818726, -0.3205045163631439, 0.01178183127194643, -0.38885220885276794, 0.001448759576305747, -0.0027855143416672945, 0.60132896900177, -0.2830866575241089, 0.002349212532863021, 0.004553244449198246, 0.02039855532348156, -0.05545487254858017, 0.09389640390872955, 0.18867963552474976, -0.026521090418100357, 0.9143005013465881, 0.1926344335079193, -0.1699722707271576, -0.08988168835639954, 0.21110212802886963, -0.1894945651292801, 0.031554464250802994, 1.126948595046997, -0.1751134991645813, 0.07577625662088394, 0.03389138728380203]} +{"t": 4.1428, "q": [-0.3486533761024475, -0.011329300701618195, 0.005490677431225777, 0.6310200095176697, -0.3204962909221649, 0.011752852238714695, -0.38885220885276794, 0.001440237509086728, -0.0027721223887056112, 0.6013630628585815, -0.28307414054870605, 0.0023419123608618975, 0.0045264605432748795, 0.02127334102988243, -0.05546966567635536, 0.08862334489822388, 0.18755312263965607, -0.02666490152478218, 0.904365599155426, 0.1926104724407196, -0.17872075736522675, -0.08988168835639954, 0.2109343558549881, -0.18764899671077728, 0.031614385545253754, 1.1282188892364502, -0.17514945566654205, 0.07577625662088394, 0.03387940302491188]} +{"t": 4.1595, "q": [-0.3486193120479584, -0.011371911503374577, 0.005571028683334589, 0.6310285329818726, -0.32060346007347107, 0.011563343927264214, -0.3888266384601593, 0.0014146711910143495, -0.0027051628567278385, 0.6013630628585815, -0.28306999802589417, 0.002349124988541007, 0.004593420308083296, 0.022117869928479195, -0.05567309260368347, 0.08438093215227127, 0.18639065325260162, -0.02677275985479355, 0.8941550254821777, 0.1926104724407196, -0.1849765181541443, -0.08985771983861923, 0.2105628401041031, -0.18563565611839294, 0.031554464250802994, 1.1292495727539062, -0.1751614362001419, 0.0757882371544838, 0.03389138728380203]} +{"t": 4.1762, "q": [-0.3484829366207123, -0.011457132175564766, 0.005624596029520035, 0.6310200095176697, -0.32064053416252136, 0.011512274853885174, -0.3888181149959564, 0.00138058268930763, -0.002624811604619026, 0.6014568209648132, -0.28307414054870605, 0.0023419123608618975, 0.0045130690559744835, 0.022779837250709534, -0.05589478090405464, 0.08049803972244263, 0.1852761209011078, -0.026928553357720375, 0.8841841816902161, 0.1926104724407196, -0.194132462143898, -0.08986970782279968, 0.2097359299659729, -0.18310697376728058, 0.03154247999191284, 1.1300286054611206, -0.175137460231781, 0.0757882371544838, 0.03387940302491188]} +{"t": 4.1932, "q": [-0.3483380675315857, -0.011465654708445072, 0.005651379935443401, 0.6310200095176697, -0.32069411873817444, 0.011417511850595474, -0.38875845074653625, 0.0013550163712352514, -0.0025980276986956596, 0.6014482975006104, -0.28306588530540466, 0.0023563196882605553, 0.0045130690559744835, 0.023304840549826622, -0.0560750849545002, 0.07746603339910507, 0.18425746262073517, -0.027168238535523415, 0.874033510684967, 0.1926104724407196, -0.20267722010612488, -0.08986970782279968, 0.20863337814807892, -0.17994314432144165, 0.0315784327685833, 1.1310232877731323, -0.17514945566654205, 0.07576426863670349, 0.03387940302491188]} +{"t": 4.2099, "q": [-0.3482954502105713, -0.011465654708445072, 0.005624596029520035, 0.6310200095176697, -0.3207600712776184, 0.0113008888438344, -0.3887499272823334, 0.0013294500531628728, -0.0025980276986956596, 0.6014994382858276, -0.28306588530540466, 0.0023563196882605553, 0.004298798739910126, 0.023692887276411057, -0.05620402842760086, 0.07500926405191422, 0.18339459598064423, -0.02738395519554615, 0.8630919456481934, 0.19262245297431946, -0.20950822532176971, -0.08984573930501938, 0.20713534951210022, -0.17661152780056, 0.031686291098594666, 1.132173776626587, -0.175137460231781, 0.07577625662088394, 0.03387940302491188]} +{"t": 4.2267, "q": [-0.3482869267463684, -0.011465654708445072, 0.005651379935443401, 0.6310285329818726, -0.320809543132782, 0.01121343020349741, -0.3887840211391449, 0.0013294500531628728, -0.002531068166717887, 0.6015164852142334, -0.28305763006210327, 0.0023707090876996517, 0.004044352564960718, 0.023936351761221886, -0.056266698986291885, 0.07093463093042374, 0.18250776827335358, -0.02780340239405632, 0.8542475700378418, 0.19264641404151917, -0.21796908974647522, -0.08988168835639954, 0.20568525791168213, -0.1727885603904724, 0.03175819665193558, 1.133683681488037, -0.1751134991645813, 0.07575228810310364, 0.03386741876602173]} +{"t": 4.2435, "q": [-0.3482869267463684, -0.011516787111759186, 0.005704947747290134, 0.6310285329818726, -0.3208383619785309, 0.011205940507352352, -0.38890334963798523, 0.0013294500531628728, -0.002356973709538579, 0.6015505790710449, -0.28303685784339905, 0.0023777983151376247, 0.0038568659219890833, 0.02401243895292282, -0.05628754571080208, 0.06695586442947388, 0.18162094056606293, -0.028091024607419968, 0.8436774611473083, 0.19262245297431946, -0.22462032735347748, -0.08988168835639954, 0.20443889498710632, -0.16890567541122437, 0.03181811794638634, 1.1356611251831055, -0.17517341673374176, 0.07576426863670349, 0.03385543450713158]} +{"t": 4.2602, "q": [-0.34832102060317993, -0.011525308713316917, 0.0056112040765583515, 0.6310370564460754, -0.3208466172218323, 0.01117685530334711, -0.38893741369247437, 0.001312405802309513, -0.0022900141775608063, 0.601542055606842, -0.28303277492523193, 0.002399452729150653, 0.0038702578749507666, 0.02406570501625538, -0.056313078850507736, 0.061658840626478195, 0.1805063933134079, -0.02840261347591877, 0.8342099189758301, 0.1926104724407196, -0.23194269835948944, -0.08988168835639954, 0.20373183488845825, -0.16474714875221252, 0.031806133687496185, 1.137326955795288, -0.17514945566654205, 0.0757882371544838, 0.03385543450713158]} +{"t": 4.2769, "q": [-0.34839773178100586, -0.011525308713316917, 0.005530852824449539, 0.6310285329818726, -0.3208836615085602, 0.011183816008269787, -0.38903969526290894, 0.0012442287988960743, -0.0022900141775608063, 0.6015250086784363, -0.28303277492523193, 0.002399452729150653, 0.003923825453966856, 0.024035297334194183, -0.056332603096961975, 0.056601494550704956, 0.17924804985523224, -0.028666267171502113, 0.8244547843933105, 0.1926104724407196, -0.2409428507089615, -0.08985771983861923, 0.2033483386039734, -0.16014520823955536, 0.03172224387526512, 1.139208436012268, -0.17517341673374176, 0.07574030011892319, 0.03385543450713158]} +{"t": 4.2936, "q": [-0.3484403192996979, -0.011567920446395874, 0.005490677431225777, 0.6310370564460754, -0.3209536671638489, 0.011147012934088707, -0.3890652656555176, 0.001201618229970336, -0.0022900141775608063, 0.6014397740364075, -0.2830286920070648, 0.0024210894480347633, 0.004071136470884085, 0.02396688051521778, -0.056376535445451736, 0.051472246646881104, 0.177582249045372, -0.029025793075561523, 0.81740802526474, 0.19257451593875885, -0.24724654853343964, -0.08986970782279968, 0.2030487209558487, -0.15569905936717987, 0.03171025961637497, 1.1414974927902222, -0.17519739270210266, 0.07576426863670349, 0.033843450248241425]} +{"t": 4.3104, "q": [-0.34854260087013245, -0.011627575382590294, 0.005477285478264093, 0.6310200095176697, -0.32099485397338867, 0.01113219279795885, -0.3892357051372528, 0.0011249192757532, -0.0021828790195286274, 0.6014227271080017, -0.28303706645965576, 0.0024355840869247913, 0.004071136470884085, 0.023913683369755745, -0.05643060430884361, 0.04713395610451698, 0.17553295195102692, -0.029265478253364563, 0.8083599805831909, 0.19252657890319824, -0.2531428039073944, -0.08988168835639954, 0.20259332656860352, -0.15089337527751923, 0.03178216516971588, 1.1440860033035278, -0.1751614362001419, 0.07576426863670349, 0.033843450248241425]} +{"t": 4.3272, "q": [-0.34857669472694397, -0.011644618585705757, 0.005276407115161419, 0.6310370564460754, -0.3211183547973633, 0.011116737499833107, -0.38954249024391174, 0.001014131703414023, -0.0017811221769079566, 0.6014397740364075, -0.28303295373916626, 0.0024427787866443396, 0.0039506093598902225, 0.023936545476317406, -0.056475669145584106, 0.04362257942557335, 0.17380721867084503, -0.030068421736359596, 0.8000788688659668, 0.19250260293483734, -0.260009765625, -0.08986970782279968, 0.20250943303108215, -0.14619556069374084, 0.03179414942860603, 1.1454522609710693, -0.175137460231781, 0.07574030011892319, 0.03383146598935127]} +{"t": 4.3441, "q": [-0.34863632917404175, -0.011627575382590294, 0.00516927195712924, 0.6310370564460754, -0.32127872109413147, 0.011369580402970314, -0.389968603849411, 0.0009118663729168475, -0.0011249192757532, 0.6014397740364075, -0.28304123878479004, 0.002442831639200449, 0.0037899063900113106, 0.023959370329976082, -0.056480925530195236, 0.04019509255886078, 0.17263276875019073, -0.0322016142308712, 0.7914142608642578, 0.19247864186763763, -0.26670894026756287, -0.08988168835639954, 0.20246149599552155, -0.14130599796772003, 0.03183010220527649, 1.146842360496521, -0.1751614362001419, 0.07576426863670349, 0.03385543450713158]} +{"t": 4.3609, "q": [-0.3487897515296936, -0.011653141118586063, 0.005249623209238052, 0.6310455799102783, -0.3215130865573883, 0.011781534180045128, -0.3903947174549103, 0.0009118663729168475, -0.0006562029011547565, 0.6014397740364075, -0.28303295373916626, 0.0024427787866443396, 0.003441717242822051, 0.0239669531583786, -0.05645614117383957, 0.03711514547467232, 0.1717938631772995, -0.03538941591978073, 0.782138466835022, 0.19245466589927673, -0.2732163667678833, -0.08986970782279968, 0.20259332656860352, -0.13688382506370544, 0.03181811794638634, 1.147801160812378, -0.1751614362001419, 0.0757882371544838, 0.03378353267908096]} +{"t": 4.3776, "q": [-0.3489346206188202, -0.011798016726970673, 0.005450501572340727, 0.6310285329818726, -0.3218132257461548, 0.012323635630309582, -0.3907526433467865, 0.0008948221220634878, -0.00020087843586225063, 0.601405680179596, -0.28302064538002014, 0.0024932646192610264, 0.0030399602837860584, 0.023959344252943993, -0.05645107477903366, 0.03401122987270355, 0.1711706817150116, -0.03970373794436455, 0.7739532589912415, 0.19244268536567688, -0.2814974784851074, -0.08988168835639954, 0.2028210312128067, -0.13279719650745392, 0.03175819665193558, 1.1492033004760742, -0.1751134991645813, 0.0758361741900444, 0.033543847501277924]} +{"t": 4.3943, "q": [-0.3491135835647583, -0.011942893266677856, 0.005678163841366768, 0.6310541033744812, -0.32210513949394226, 0.012894822284579277, -0.3909827470779419, 0.0008096009842120111, 5.3567582654068246e-05, 0.6013630628585815, -0.2829834818840027, 0.0025580343790352345, 0.0026649872306734324, 0.023936526849865913, -0.056455764919519424, 0.03142263740301132, 0.17055949568748474, -0.04440155625343323, 0.7641741037368774, 0.19244268536567688, -0.28896364569664, -0.08991764485836029, 0.20308467745780945, -0.12946557998657227, 0.03159041702747345, 1.1510009765625, -0.1750895380973816, 0.07590807974338531, 0.03301654011011124]} +{"t": 4.4111, "q": [-0.3491562008857727, -0.012121858075261116, 0.005932609550654888, 0.631071150302887, -0.3223189115524292, 0.013285179622471333, -0.39096570014953613, 0.0007158577209338546, 0.0003214055032003671, 0.601098895072937, -0.28295886516571045, 0.0026445642579346895, 0.0024908925406634808, 0.023890914395451546, -0.05648505315184593, 0.028750156983733177, 0.1690255105495453, -0.04709800332784653, 0.7545627951622009, 0.19245466589927673, -0.29452431201934814, -0.08989367634057999, 0.2034202367067337, -0.12687699496746063, 0.031554464250802994, 1.1528584957122803, -0.1751134991645813, 0.07596800476312637, 0.032704949378967285]} +{"t": 4.4278, "q": [-0.3491647243499756, -0.012343432754278183, 0.006267406977713108, 0.6310967206954956, -0.3225327134132385, 0.013690031133592129, -0.39094865322113037, 0.000502804818097502, 0.0005892434273846447, 0.6009199023246765, -0.2828475832939148, 0.002911101561039686, 0.0024775005877017975, 0.023852897807955742, -0.05649951100349426, 0.025658225640654564, 0.1670720875263214, -0.04993826523423195, 0.7448076009750366, 0.19246666133403778, -0.3007561266422272, -0.08989367634057999, 0.203623965382576, -0.12440824508666992, 0.031374700367450714, 1.1555548906326294, -0.175137460231781, 0.07603991031646729, 0.03245328366756439]} +{"t": 4.4445, "q": [-0.3491647243499756, -0.012496830895543098, 0.006736123468726873, 0.6312416195869446, -0.32261475920677185, 0.014095851220190525, -0.3908804655075073, 0.00032384038786403835, 0.0009106489014811814, 0.6008176803588867, -0.28272783756256104, 0.003134242258965969, 0.002531068166717887, 0.023830043151974678, -0.05646439641714096, 0.022170817479491234, 0.16544222831726074, -0.05331781879067421, 0.7365025281906128, 0.19246666133403778, -0.3084140419960022, -0.08989367634057999, 0.20361198484897614, -0.12293418496847153, 0.03136271610856056, 1.1587547063827515, -0.17517341673374176, 0.07605189085006714, 0.03226153552532196]} +{"t": 4.4612, "q": [-0.3492073118686676, -0.012633183971047401, 0.007298583164811134, 0.6313353776931763, -0.3228120803833008, 0.014500843361020088, -0.3908122777938843, 0.00011930961773032323, 0.0012052706442773342, 0.6006898283958435, -0.28266599774360657, 0.0032711178064346313, 0.002718554809689522, 0.023799583315849304, -0.05642421916127205, 0.01858753338456154, 0.1639801561832428, -0.05819539725780487, 0.7271788120269775, 0.19245466589927673, -0.3152090907096863, -0.08989367634057999, 0.20352809131145477, -0.12161591649055481, 0.031326763331890106, 1.1620863676071167, -0.175137460231781, 0.0761357843875885, 0.032165661454200745]} +{"t": 4.478, "q": [-0.34918177127838135, -0.012829192914068699, 0.007740515749901533, 0.6313779950141907, -0.32273349165916443, 0.015016740188002586, -0.3906588852405548, -0.00011930961773032323, 0.001379365217871964, 0.6005534529685974, -0.2825630307197571, 0.0035376898013055325, 0.002946217078715563, 0.023799553513526917, -0.056394364684820175, 0.01468067616224289, 0.1636805534362793, -0.06540989875793457, 0.7176274061203003, 0.19243070483207703, -0.3224715292453766, -0.0899416133761406, 0.20336031913757324, -0.12033360451459885, 0.03135073184967041, 1.1655497550964355, -0.1751134991645813, 0.0761597529053688, 0.032105740159749985]} +{"t": 4.4947, "q": [-0.34919026494026184, -0.01305076852440834, 0.00814227294176817, 0.631446123123169, -0.322762131690979, 0.01528508123010397, -0.39054811000823975, -0.00037497308221645653, 0.0015266761183738708, 0.6004597544670105, -0.28255975246429443, 0.003776046447455883, 0.0028926494996994734, 0.023753879591822624, -0.05635399743914604, 0.011840414255857468, 0.16272181272506714, -0.06965231895446777, 0.7079201936721802, 0.19245466589927673, -0.3302852511405945, -0.09004946798086166, 0.2033243626356125, -0.11900335550308228, 0.031374700367450714, 1.1672755479812622, -0.1751614362001419, 0.07620768994092941, 0.03212970867753029]} +{"t": 4.5114, "q": [-0.34913915395736694, -0.01310189999639988, 0.008704732172191143, 0.6315313577651978, -0.3226794898509979, 0.01573568768799305, -0.3903521001338959, -0.00044314999831840396, 0.001901649171486497, 0.6003915667533875, -0.2825393080711365, 0.0038698238786309958, 0.0027855143416672945, 0.02371583878993988, -0.05634855106472969, 0.008952216245234013, 0.16178704798221588, -0.0736910030245781, 0.6967508792877197, 0.19240672886371613, -0.33560624718666077, -0.0900135189294815, 0.20331238210201263, -0.11743342131376266, 0.031326763331890106, 1.1685218811035156, -0.17510151863098145, 0.07625562697649002, 0.03203383460640907]} +{"t": 4.5283, "q": [-0.3490283489227295, -0.0132297333329916, 0.009106488898396492, 0.6316336393356323, -0.32271647453308105, 0.015829771757125854, -0.3901134729385376, -0.0004772384709212929, 0.0022632302716374397, 0.6003915667533875, -0.2825271487236023, 0.003949193749576807, 0.0026783791836351156, 0.023693032562732697, -0.056363195180892944, 0.006363623775541782, 0.16109195351600647, -0.07784952968358994, 0.6859051585197449, 0.1923348307609558, -0.34115493297576904, -0.09004946798086166, 0.20330040156841278, -0.11603126674890518, 0.03129081055521965, 1.1691930294036865, -0.1751134991645813, 0.07631554454565048, 0.03193796053528786]} +{"t": 4.545, "q": [-0.34894314408302307, -0.013331998139619827, 0.009360934607684612, 0.6318040490150452, -0.3221805691719055, 0.016864437609910965, -0.38967031240463257, -0.0005113269435241818, 0.0025578520726412535, 0.6003915667533875, -0.2825149595737457, 0.004028563853353262, 0.0027453387156128883, 0.02371583878993988, -0.05634855106472969, 0.0031518512405455112, 0.1609840989112854, -0.08426108956336975, 0.6744122505187988, 0.19202324748039246, -0.3493521511554718, -0.09004946798086166, 0.203396275639534, -0.11474895477294922, 0.031266842037439346, 1.1698640584945679, -0.17519739270210266, 0.07637546956539154, 0.03171025961637497]} +{"t": 4.5618, "q": [-0.34890905022621155, -0.01340869627892971, 0.009695732034742832, 0.6318296194076538, -0.32064151763916016, 0.01963985711336136, -0.3891078531742096, -0.0005283711361698806, 0.0027855143416672945, 0.600425660610199, -0.28246116638183594, 0.004093246068805456, 0.002611419651657343, 0.023700634017586708, -0.05635831132531166, 0.0002996056282427162, 0.16064853966236115, -0.08899485319852829, 0.6619486808776855, 0.1919633150100708, -0.3572377562522888, -0.09004946798086166, 0.20333634316921234, -0.1137302964925766, 0.03111104853451252, 1.1710026264190674, -0.1751134991645813, 0.0764593556523323, 0.031326763331890106]} +{"t": 4.5785, "q": [-0.3488920032978058, -0.013493917882442474, 0.009950178675353527, 0.6318466663360596, -0.3206952214241028, 0.019574247300624847, -0.38825565576553345, -0.0006050702068023384, 0.0029194331727921963, 0.6004427075386047, -0.28238239884376526, 0.004157734103500843, 0.002758730435743928, 0.023693013936281204, -0.05634329095482826, -0.0028282771818339825, 0.15994146466255188, -0.09341703355312347, 0.6502400636672974, 0.19187943637371063, -0.3637571930885315, -0.09006145596504211, 0.20324046909809113, -0.11321497708559036, 0.031075095757842064, 1.1721051931381226, -0.1750655621290207, 0.0764593556523323, 0.030991205945611]} +{"t": 4.5952, "q": [-0.34882381558418274, -0.01364731602370739, 0.010017137974500656, 0.6318637132644653, -0.32065802812576294, 0.019625239074230194, -0.38618478178977966, -0.0006817692192271352, 0.003026568330824375, 0.6005023121833801, -0.28232038021087646, 0.004251247737556696, 0.0027855143416672945, 0.023693013936281204, -0.05634329095482826, -0.006411560345441103, 0.15982162952423096, -0.09875001758337021, 0.638903021812439, 0.19183149933815002, -0.3720982074737549, -0.09008542448282242, 0.20320452749729156, -0.11292735487222672, 0.030943268910050392, 1.1729201078414917, -0.175137460231781, 0.07649531215429306, 0.030703585594892502]} +{"t": 4.6121, "q": [-0.34864485263824463, -0.013664361089468002, 0.010017137974500656, 0.631889283657074, -0.32064977288246155, 0.01963980682194233, -0.38564789295196533, -0.0006988134700804949, 0.003026568330824375, 0.6005875468254089, -0.28222939372062683, 0.004380699712783098, 0.0027453387156128883, 0.023723360151052475, -0.05625411495566368, -0.010270480997860432, 0.15992948412895203, -0.10647983849048615, 0.6259360909461975, 0.19098061323165894, -0.3775630295276642, -0.09006145596504211, 0.20297682285308838, -0.11277155578136444, 0.03093128465116024, 1.1736271381378174, -0.17510151863098145, 0.07651928067207336, 0.030535805970430374]} +{"t": 4.6288, "q": [-0.3483295440673828, -0.013655837625265121, 0.010017137974500656, 0.6319063305854797, -0.32063329219818115, 0.019625406712293625, -0.3855626583099365, -0.0006732470938004553, 0.003026568330824375, 0.6005960702896118, -0.2821383476257324, 0.004495673812925816, 0.0027453387156128883, 0.023700609803199768, -0.056328460574150085, -0.014177338220179081, 0.1598096489906311, -0.11138138920068741, 0.6149824857711792, 0.19030949473381042, -0.38396260142326355, -0.09013336151838303, 0.20283301174640656, -0.11266370117664337, 0.030919300392270088, 1.1742503643035889, -0.1751614362001419, 0.07649531215429306, 0.030427947640419006]} +{"t": 4.6456, "q": [-0.3480738699436188, -0.013621749356389046, 0.00999035406857729, 0.6319915652275085, -0.32060861587524414, 0.019596539437770844, -0.3853070139884949, -0.0006988134700804949, 0.002946217078715563, 0.6008091568946838, -0.28211352229118347, 0.00452441768720746, 0.0029060414526611567, 0.023677784949541092, -0.056323204189538956, -0.01907888613641262, 0.15882693231105804, -0.11603126674890518, 0.6036933660507202, 0.1894945651292801, -0.3928548991680145, -0.09013336151838303, 0.20272515714168549, -0.11251989006996155, 0.030883347615599632, 1.174837589263916, -0.17510151863098145, 0.07649531215429306, 0.0303800106048584]} +{"t": 4.6623, "q": [-0.34799718856811523, -0.013579139485955238, 0.009816259145736694, 0.6320256590843201, -0.3206128180027008, 0.019545746967196465, -0.3852899670600891, -0.0006732470938004553, 0.0028256899677217007, 0.6009028553962708, -0.2821134626865387, 0.004509975668042898, 0.002986392704769969, 0.02367018349468708, -0.05632808431982994, -0.023992419242858887, 0.15779629349708557, -0.12178369611501694, 0.5920566916465759, 0.18854781985282898, -0.3991585969924927, -0.09010939300060272, 0.20242555439472198, -0.11236409842967987, 0.030847394838929176, 1.175976037979126, -0.17507754266262054, 0.07648332417011261, 0.03033207356929779]} +{"t": 4.679, "q": [-0.34798866510391235, -0.013562094420194626, 0.00973590835928917, 0.6320256590843201, -0.3205922544002533, 0.019509602338075638, -0.38522177934646606, -0.0006562029011547565, 0.0027453387156128883, 0.6010221838951111, -0.2820926606655121, 0.004502622876316309, 0.00321405497379601, 0.023693008348345757, -0.05633334070444107, -0.028618330135941505, 0.1569933444261551, -0.1278596967458725, 0.5810911059379578, 0.18817630410194397, -0.4046713411808014, -0.09013336151838303, 0.20210197567939758, -0.11224425584077835, 0.03085937909781933, 1.1771385669708252, -0.17504160106182098, 0.07647134363651276, 0.030284136533737183]} +{"t": 4.6958, "q": [-0.34790343046188354, -0.013493917882442474, 0.00973590835928917, 0.632034182548523, -0.3205675780773163, 0.019466234371066093, -0.38523030281066895, -0.0006135923322290182, 0.002758730435743928, 0.601260781288147, -0.2820592224597931, 0.004459067713469267, 0.002865865593776107, 0.023715857416391373, -0.056368451565504074, -0.032645028084516525, 0.1558908075094223, -0.13343235850334167, 0.5690469741821289, 0.18796059489250183, -0.41174203157424927, -0.09012137353420258, 0.20133498311042786, -0.11212441325187683, 0.03087136335670948, 1.178648591041565, -0.17507754266262054, 0.07647134363651276, 0.030284136533737183]} +{"t": 4.7126, "q": [-0.3477074205875397, -0.013451308012008667, 0.009749299846589565, 0.6320512294769287, -0.32056355476379395, 0.019401010125875473, -0.3852473497390747, -0.0005624596378766, 0.0028122980147600174, 0.6015164852142334, -0.2820509374141693, 0.004459015093743801, 0.002691771136596799, 0.02370825596153736, -0.05637333169579506, -0.03664775937795639, 0.154572531580925, -0.1387174129486084, 0.5564275979995728, 0.18762503564357758, -0.41858503222465515, -0.09013336151838303, 0.20077171921730042, -0.1119326651096344, 0.03087136335670948, 1.1800028085708618, -0.1750895380973816, 0.07647134363651276, 0.03027215227484703]} +{"t": 4.7293, "q": [-0.3475540280342102, -0.013340519741177559, 0.00965555664151907, 0.6320512294769287, -0.3205760419368744, 0.01933564990758896, -0.3852558732032776, -0.0004601942200679332, 0.002731946762651205, 0.6015591025352478, -0.2820342481136322, 0.004444449674338102, 0.0026783791836351156, 0.023700756952166557, -0.05648767575621605, -0.040590569376945496, 0.15345799922943115, -0.14546452462673187, 0.5439280271530151, 0.18718160688877106, -0.4231629967689514, -0.09012137353420258, 0.20068784058094025, -0.11182480305433273, 0.03087136335670948, 1.1812371015548706, -0.17512547969818115, 0.07642340660095215, 0.03027215227484703]} +{"t": 4.746, "q": [-0.3474262058734894, -0.01328938640654087, 0.009454678744077682, 0.6320427060127258, -0.3205678164958954, 0.019321199506521225, -0.3853836953639984, -0.00041758365114219487, 0.002611419651657343, 0.6015846729278564, -0.28202173113822937, 0.004437149502336979, 0.0026649872306734324, 0.02371601201593876, -0.05653761699795723, -0.04536029323935509, 0.15204386413097382, -0.15272696316242218, 0.5316562056541443, 0.18703781068325043, -0.4293588399887085, -0.09012137353420258, 0.20057997107505798, -0.1116570234298706, 0.03085937909781933, 1.1825194358825684, -0.17504160106182098, 0.0764593556523323, 0.030284136533737183]} +{"t": 4.7627, "q": [-0.347451776266098, -0.01322120986878872, 0.009347543120384216, 0.6320512294769287, -0.32080769538879395, 0.018870128318667412, -0.38554561138153076, -0.00034940673504024744, 0.00258463597856462, 0.6016102433204651, -0.28201764822006226, 0.004458804149180651, 0.002397149335592985, 0.02371603064239025, -0.05655751749873161, -0.04911135509610176, 0.14991067349910736, -0.15875503420829773, 0.5200794339179993, 0.18663033843040466, -0.43695682287216187, -0.09013336151838303, 0.20013655722141266, -0.11150123178958893, 0.03085937909781933, 1.1840773820877075, -0.17501762509346008, 0.0764593556523323, 0.030296120792627335]} +{"t": 4.7795, "q": [-0.3474262058734894, -0.013084856793284416, 0.009307367727160454, 0.6320597529411316, -0.32087796926498413, 0.018760917708277702, -0.3855711817741394, -0.0002300971100339666, 0.0026382035575807095, 0.6015846729278564, -0.2820051610469818, 0.004451503977179527, 0.002156095113605261, 0.023693235591053963, -0.05658211559057236, -0.05261074751615524, 0.14611166715621948, -0.16541826725006104, 0.5068488121032715, 0.18568359315395355, -0.4429849088191986, -0.09013336151838303, 0.1998249739408493, -0.1113094836473465, 0.03087136335670948, 1.1855034828186035, -0.17502960562705994, 0.0764114186167717, 0.030308105051517487]} +{"t": 4.7962, "q": [-0.34740063548088074, -0.013042245991528034, 0.009146664291620255, 0.6320512294769287, -0.3209482431411743, 0.01863720826804638, -0.3856649398803711, -0.00016192019393201917, 0.002691771136596799, 0.6015591025352478, -0.2819885313510895, 0.004451398737728596, 0.0022498385515064, 0.023655269294977188, -0.05665627494454384, -0.056841179728507996, 0.1423126757144928, -0.17263276875019073, 0.49432530999183655, 0.18460500240325928, -0.44804224371910095, -0.09010939300060272, 0.1997051239013672, -0.11111773550510406, 0.030847394838929176, 1.1865102052688599, -0.17500564455986023, 0.07642340660095215, 0.030308105051517487]} +{"t": 4.8129, "q": [-0.34739211201667786, -0.013042245991528034, 0.00898596178740263, 0.6320427060127258, -0.32098957896232605, 0.018578941002488136, -0.38591206073760986, -0.0001704423048067838, 0.00258463597856462, 0.6015164852142334, -0.2820010185241699, 0.004458698909729719, 0.0022632302716374397, 0.02367810532450676, -0.05667148530483246, -0.06152701377868652, 0.13768675923347473, -0.1811535507440567, 0.4820534884929657, 0.18340657651424408, -0.4546934962272644, -0.09010939300060272, 0.19971711933612823, -0.11091400682926178, 0.030847394838929176, 1.1873490810394287, -0.17502960562705994, 0.0764114186167717, 0.030308105051517487]} +{"t": 4.8296, "q": [-0.34740063548088074, -0.013016680255532265, 0.008838650770485401, 0.632034182548523, -0.3224116861820221, 0.01603529043495655, -0.38624444603919983, -0.00021305288828443736, 0.0024507169146090746, 0.6014909148216248, -0.282005250453949, 0.004480388015508652, 0.0022900141775608063, 0.023678094148635864, -0.05666153505444527, -0.0659252256155014, 0.1330728381872177, -0.1889432966709137, 0.4693741798400879, 0.1814771294593811, -0.461416631937027, -0.09014534205198288, 0.19962124526500702, -0.11069829016923904, 0.030847394838929176, 1.1879363059997559, -0.17502960562705994, 0.0764114186167717, 0.03032008931040764]} +{"t": 4.8464, "q": [-0.3474091589450836, -0.013008156791329384, 0.008677948266267776, 0.6320427060127258, -0.3230917453765869, 0.014876160770654678, -0.386346697807312, -0.00024714134633541107, 0.0024775005877017975, 0.6013033986091614, -0.282026082277298, 0.004487758968025446, 0.002356973709538579, 0.02367054671049118, -0.0567261204123497, -0.06976017355918884, 0.12821923196315765, -0.19464778900146484, 0.4578213691711426, 0.17827732861042023, -0.46597063541412354, -0.09006145596504211, 0.19956131279468536, -0.11047058552503586, 0.030847394838929176, 1.188223958015442, -0.17502960562705994, 0.076435387134552, 0.03033207356929779]} +{"t": 4.8631, "q": [-0.34735801815986633, -0.013008156791329384, 0.008691340684890747, 0.632034182548523, -0.3231329321861267, 0.014846828766167164, -0.3865000903606415, -0.0002641855680849403, 0.002504284493625164, 0.6012267470359802, -0.282026082277298, 0.004487758968025446, 0.0023301898036152124, 0.02367827109992504, -0.056850604712963104, -0.07333147525787354, 0.12147210538387299, -0.19692479074001312, 0.44472262263298035, 0.17504160106182098, -0.47222641110420227, -0.0890427902340889, 0.19953735172748566, -0.11020693182945251, 0.030835412442684174, 1.188235878944397, -0.17501762509346008, 0.0764114186167717, 0.03033207356929779]} +{"t": 4.88, "q": [-0.3473665416240692, -0.013016680255532265, 0.008530637249350548, 0.6320427060127258, -0.3231493830680847, 0.014861216768622398, -0.38697734475135803, -0.0002897519152611494, 0.0024105412885546684, 0.6010562777519226, -0.2820511758327484, 0.004531243350356817, 0.0026649872306734324, 0.02360987849533558, -0.05692438781261444, -0.07654324918985367, 0.11542007327079773, -0.19699668884277344, 0.43054527044296265, 0.1694929003715515, -0.4782784581184387, -0.08676578849554062, 0.19960924983024597, -0.10999122262001038, 0.030847394838929176, 1.1884156465530396, -0.17502960562705994, 0.0764114186167717, 0.03033207356929779]} +{"t": 4.8967, "q": [-0.34739211201667786, -0.01305076852440834, 0.008088705129921436, 0.6320256590843201, -0.3231617510318756, 0.014868361875414848, -0.38840052485466003, -0.0003834952076431364, 0.0021025275345891714, 0.6008091568946838, -0.282063752412796, 0.004553003236651421, 0.003066744189709425, 0.023640358820557594, -0.056984469294548035, -0.07947938144207001, 0.1116570234298706, -0.19694875180721283, 0.41920819878578186, 0.1642557978630066, -0.48391103744506836, -0.083673857152462, 0.19976505637168884, -0.10973954945802689, 0.030847394838929176, 1.1885595321655273, -0.17498166859149933, 0.0764114186167717, 0.030344057828187943]} +{"t": 4.9134, "q": [-0.3476477861404419, -0.013127466663718224, 0.007887826301157475, 0.6320256590843201, -0.3231905400753021, 0.014904444105923176, -0.38870733976364136, -0.00046871634549461305, 0.0018748653819784522, 0.600655734539032, -0.2820846140384674, 0.004574798047542572, 0.0036158119328320026, 0.023640507832169533, -0.057143684476614, -0.08288290351629257, 0.10892461985349655, -0.19654129445552826, 0.40638506412506104, 0.15732890367507935, -0.4873504936695099, -0.08140884339809418, 0.19989687204360962, -0.10947589576244354, 0.03081144392490387, 1.1886793375015259, -0.17499366402626038, 0.076435387134552, 0.03033207356929779]} +{"t": 4.9302, "q": [-0.34785231947898865, -0.013127466663718224, 0.007914610207080841, 0.6320171356201172, -0.32322344183921814, 0.014962262474000454, -0.3888351619243622, -0.0005454153870232403, 0.0018748653819784522, 0.6005534529685974, -0.2821013033390045, 0.004589345771819353, 0.0038702578749507666, 0.023648109287023544, -0.05713880434632301, -0.08629840612411499, 0.1077142134308815, -0.1967809796333313, 0.39597079157829285, 0.1538175344467163, -0.49077799916267395, -0.08066581934690475, 0.1998729109764099, -0.10932010412216187, 0.030787475407123566, 1.1890867948532104, -0.17500564455986023, 0.0764593556523323, 0.03033207356929779]} +{"t": 4.9469, "q": [-0.34816762804985046, -0.0131615549325943, 0.007928002625703812, 0.6320086121559143, -0.32323989272117615, 0.014976650476455688, -0.3891078531742096, -0.0005539375124499202, 0.0019284329609945416, 0.6004000902175903, -0.2820972204208374, 0.004611000418663025, 0.00416487967595458, 0.023693721741437912, -0.057109516113996506, -0.0884915217757225, 0.10770223289728165, -0.19769178330898285, 0.38506513833999634, 0.14910772442817688, -0.49547579884529114, -0.08071375638246536, 0.19965718686580658, -0.10928414762020111, 0.03076350688934326, 1.1893984079360962, -0.17499366402626038, 0.0764593556523323, 0.030308105051517487]} +{"t": 4.9636, "q": [-0.34849998354911804, -0.013187121599912643, 0.007901218719780445, 0.6320086121559143, -0.32326042652130127, 0.015027305111289024, -0.38932090997695923, -0.0005624596378766, 0.0019552167505025864, 0.6002892851829529, -0.2821180820465088, 0.004632795229554176, 0.0042854067869484425, 0.02376212179660797, -0.05704568326473236, -0.09031312167644501, 0.10787001252174377, -0.1985786110162735, 0.3745909333229065, 0.14642326533794403, -0.5024266839027405, -0.08077368140220642, 0.19932162761688232, -0.10912835597991943, 0.03075152263045311, 1.1894103288650513, -0.17499366402626038, 0.07649531215429306, 0.030308105051517487]} +{"t": 4.9805, "q": [-0.34867894649505615, -0.01317007839679718, 0.007941394113004208, 0.6319745182991028, -0.3232768476009369, 0.01511428877711296, -0.3894231915473938, -0.0005539375124499202, 0.0019552167505025864, 0.6000677347183228, -0.28212645649909973, 0.004647289868444204, 0.0041916631162166595, 0.023784920573234558, -0.057021088898181915, -0.09170328825712204, 0.10790596157312393, -0.20098744332790375, 0.3618037700653076, 0.14396649599075317, -0.5091977715492249, -0.08110923320055008, 0.19914187490940094, -0.10906843096017838, 0.03075152263045311, 1.1894103288650513, -0.17498166859149933, 0.07648332417011261, 0.03032008931040764]} +{"t": 4.9972, "q": [-0.3486959934234619, -0.013153033331036568, 0.007954785600304604, 0.6319404244422913, -0.3233261704444885, 0.015215536579489708, -0.3894146680831909, -0.0005198490689508617, 0.001941824913956225, 0.5998035073280334, -0.2821098268032074, 0.0046471841633319855, 0.0041247038170695305, 0.023739291355013847, -0.05703047662973404, -0.09357283264398575, 0.10791794955730438, -0.20285698771476746, 0.3487529456615448, 0.1413898915052414, -0.5159808397293091, -0.08167249709367752, 0.19911789894104004, -0.1089605763554573, 0.03075152263045311, 1.1894702911376953, -0.17499366402626038, 0.0764593556523323, 0.030308105051517487]} +{"t": 5.0139, "q": [-0.34867894649505615, -0.0131615549325943, 0.008048529736697674, 0.6319233775138855, -0.3234165906906128, 0.015432588756084442, -0.3893805742263794, -0.0005454153870232403, 0.0019953923765569925, 0.5995990037918091, -0.2821264863014221, 0.0046617318876087666, 0.004097919911146164, 0.023754512891173363, -0.05704061686992645, -0.09703627228736877, 0.10721088200807571, -0.2031685709953308, 0.33585789799690247, 0.13736319541931152, -0.5244776606559753, -0.08176837116479874, 0.19908194243907928, -0.10886470228433609, 0.030775491148233414, 1.1894583702087402, -0.17502960562705994, 0.07647134363651276, 0.03032008931040764]} +{"t": 5.0306, "q": [-0.34867042303085327, -0.01317007839679718, 0.008222623728215694, 0.6319319009780884, -0.32345354557037354, 0.01557022612541914, -0.38932090997695923, -0.0005283711361698806, 0.0020623519085347652, 0.5995478630065918, -0.2821390628814697, 0.00468349177390337, 0.003977392800152302, 0.023739278316497803, -0.05702052265405655, -0.10057161748409271, 0.10543721169233322, -0.20322848856449127, 0.3225434422492981, 0.134247288107872, -0.5302540063858032, -0.0818043202161789, 0.19896210730075836, -0.10873287916183472, 0.030787475407123566, 1.1894463300704956, -0.17502960562705994, 0.07644737511873245, 0.03032008931040764]} +{"t": 5.0474, "q": [-0.3486533761024475, -0.013187121599912643, 0.00832975935190916, 0.6319233775138855, -0.3234287202358246, 0.01573009416460991, -0.38926979899406433, -0.0005368932615965605, 0.002169487066566944, 0.5994114875793457, -0.282143235206604, 0.0046907393261790276, 0.0037631227169185877, 0.023754483088850975, -0.05701075866818428, -0.10506570339202881, 0.1040949821472168, -0.2033483386039734, 0.30914506316185, 0.12990900874137878, -0.5357068777084351, -0.08186424523591995, 0.1988542526960373, -0.10868494212627411, 0.03075152263045311, 1.1893624067306519, -0.17499366402626038, 0.076435387134552, 0.03032008931040764]} +{"t": 5.0642, "q": [-0.34864485263824463, -0.013212688267230988, 0.008544029667973518, 0.6319233775138855, -0.3233545124530792, 0.015904827043414116, -0.3892442286014557, -0.0005198490689508617, 0.002276622224599123, 0.5994029641151428, -0.28214743733406067, 0.004697986412793398, 0.00354885240085423, 0.02377728931605816, -0.056996118277311325, -0.10966764390468597, 0.10353171825408936, -0.2034202367067337, 0.2965017259120941, 0.12679310142993927, -0.5429333448410034, -0.08211591094732285, 0.19868646562099457, -0.1086609736084938, 0.03075152263045311, 1.1893744468688965, -0.17499366402626038, 0.07644737511873245, 0.03032008931040764]} +{"t": 5.0809, "q": [-0.34862780570983887, -0.013263821601867676, 0.008758299984037876, 0.6318551898002625, -0.32333800196647644, 0.015948502346873283, -0.38921013474464417, -0.000502804818097502, 0.002397149335592985, 0.5993604063987732, -0.28215160965919495, 0.0047052339650690556, 0.0031203117687255144, 0.023777270689606667, -0.05697621405124664, -0.11267568916082382, 0.10339989513158798, -0.20358802378177643, 0.28436169028282166, 0.12503142654895782, -0.5515020489692688, -0.08326639980077744, 0.19851869344711304, -0.1086130365729332, 0.030739538371562958, 1.1893984079360962, -0.17502960562705994, 0.076435387134552, 0.03032008931040764]} +{"t": 5.0977, "q": [-0.3486193120479584, -0.013280864804983139, 0.008852043189108372, 0.6318637132644653, -0.32332563400268555, 0.01598489284515381, -0.3891589939594269, -0.000502804818097502, 0.0024775005877017975, 0.5993433594703674, -0.282143235206604, 0.0046907393261790276, 0.0030399602837860584, 0.023769650608301163, -0.056961193680763245, -0.11593539267778397, 0.10345982015132904, -0.20442691445350647, 0.26958513259887695, 0.12105266004800797, -0.5614129900932312, -0.08569919317960739, 0.19844678044319153, -0.10860104858875275, 0.03075152263045311, 1.1893863677978516, -0.17501762509346008, 0.07642340660095215, 0.03032008931040764]} +{"t": 5.1146, "q": [-0.34857669472694397, -0.013263821601867676, 0.008932393975555897, 0.6318466663360596, -0.323201984167099, 0.01620354689657688, -0.3887328803539276, -0.0004857605672441423, 0.002464108867570758, 0.5993518829345703, -0.28215986490249634, 0.004690826870501041, 0.0030399602837860584, 0.023762041702866554, -0.056956127285957336, -0.1191711351275444, 0.10359164327383041, -0.2058170884847641, 0.2550722360610962, 0.11798469722270966, -0.5716475248336792, -0.08861136436462402, 0.1983748823404312, -0.10856509953737259, 0.030727554112672806, 1.1893984079360962, -0.17500564455986023, 0.07647134363651276, 0.03033207356929779]} +{"t": 5.1313, "q": [-0.3485255539417267, -0.013306431472301483, 0.009039529599249363, 0.6318466663360596, -0.32311129570007324, 0.01636390946805477, -0.38784658908843994, -0.0005283711361698806, 0.0024507169146090746, 0.5993433594703674, -0.2821599841117859, 0.0047197286039590836, 0.003240838646888733, 0.023777252063155174, -0.05695631355047226, -0.12362926453351974, 0.10385529696941376, -0.20803417265415192, 0.23933696746826172, 0.11678627133369446, -0.5807675123214722, -0.09165535122156143, 0.19838686287403107, -0.10856509953737259, 0.03075152263045311, 1.189422369003296, -0.17502960562705994, 0.07647134363651276, 0.03032008931040764]} +{"t": 5.1481, "q": [-0.3484744131565094, -0.013442784547805786, 0.0089993542060256, 0.6318466663360596, -0.3226991295814514, 0.017078282311558723, -0.3863552212715149, -0.0006050702068023384, 0.002397149335592985, 0.5993773937225342, -0.2821640968322754, 0.004712534137070179, 0.0034952848218381405, 0.023807678371667862, -0.056956689804792404, -0.12844692170619965, 0.10397513955831528, -0.21197697520256042, 0.2244885116815567, 0.11540809273719788, -0.5917810201644897, -0.09344100207090378, 0.19836290180683136, -0.10857708007097244, 0.030727554112672806, 1.189494252204895, -0.17504160106182098, 0.07647134363651276, 0.030344057828187943]} +{"t": 5.165, "q": [-0.34831249713897705, -0.013493917882442474, 0.0089993542060256, 0.6318466663360596, -0.3212600648403168, 0.019607098773121834, -0.3852047324180603, -0.0006221143994480371, 0.002423933008685708, 0.5994541049003601, -0.28210991621017456, 0.00467606820166111, 0.0034952848218381405, 0.023822883144021034, -0.056946925818920135, -0.13328854739665985, 0.10416688770055771, -0.2166508287191391, 0.20986774563789368, 0.11359847337007523, -0.6004935503005981, -0.09499895572662354, 0.19812321662902832, -0.10860104858875275, 0.030715569853782654, 1.1896021366119385, -0.17502960562705994, 0.07648332417011261, 0.03032008931040764]} +{"t": 5.1817, "q": [-0.34826987981796265, -0.013510962948203087, 0.00906631350517273, 0.6318551898002625, -0.3209582567214966, 0.020109329372644424, -0.38522177934646606, -0.0006221143994480371, 0.002423933008685708, 0.5995649099349976, -0.28207269310951233, 0.004726395942270756, 0.0035086767747998238, 0.023906506597995758, -0.056893233209848404, -0.13737517595291138, 0.10427474230527878, -0.22156435251235962, 0.196577250957489, 0.11187274008989334, -0.610200822353363, -0.09665277600288391, 0.19796741008758545, -0.10860104858875275, 0.030727554112672806, 1.1897459030151367, -0.17501762509346008, 0.07649531215429306, 0.03033207356929779]} +{"t": 5.1984, "q": [-0.34826135635375977, -0.013510962948203087, 0.009106488898396492, 0.6318551898002625, -0.3209582567214966, 0.020109329372644424, -0.38522177934646606, -0.0006221143994480371, 0.0024373249616473913, 0.5996842384338379, -0.28206855058670044, 0.004733590874820948, 0.003441717242822051, 0.023883674293756485, -0.05687802657485008, -0.14162957668304443, 0.10433466732501984, -0.22526748478412628, 0.18281935155391693, 0.11029082536697388, -0.6203514337539673, -0.09824667870998383, 0.1979314684867859, -0.10855311155319214, 0.030727554112672806, 1.1897579431533813, -0.17500564455986023, 0.07648332417011261, 0.03032008931040764]} +{"t": 5.2152, "q": [-0.348201721906662, -0.013493917882442474, 0.009160056710243225, 0.6318466663360596, -0.3209335505962372, 0.020080460235476494, -0.38522177934646606, -0.0006221143994480371, 0.0024775005877017975, 0.599837601184845, -0.2820352613925934, 0.004718955606222153, 0.003321190131828189, 0.023898886516690254, -0.056878212839365005, -0.14633937180042267, 0.10438260436058044, -0.22710107266902924, 0.1706194132566452, 0.10929613560438156, -0.630753755569458, -0.09952899068593979, 0.19782359898090363, -0.10855311155319214, 0.030715569853782654, 1.189841866493225, -0.17502960562705994, 0.07648332417011261, 0.030308105051517487]} +{"t": 5.2319, "q": [-0.34809091687202454, -0.013493917882442474, 0.00932075921446085, 0.6318551898002625, -0.32092541456222534, 0.02002251148223877, -0.3852558732032776, -0.0005965480813756585, 0.0025980276986956596, 0.6001018285751343, -0.28204360604286194, 0.004733450710773468, 0.002946217078715563, 0.023891301825642586, -0.05690299719572067, -0.1513727456331253, 0.10177004337310791, -0.22853916883468628, 0.15698136389255524, 0.10810969769954681, -0.6398977041244507, -0.10034392029047012, 0.19769178330898285, -0.10852914303541183, 0.030715569853782654, 1.1899017095565796, -0.17501762509346008, 0.07647134363651276, 0.03032008931040764]} +{"t": 5.2486, "q": [-0.34803128242492676, -0.013451308012008667, 0.009414502419531345, 0.6318551898002625, -0.3209502398967743, 0.0199788436293602, -0.3852388262748718, -0.0005368932615965605, 0.002731946762651205, 0.6003233790397644, -0.28204774856567383, 0.0047262380830943584, 0.0027051628567278385, 0.023868495598435402, -0.05691763758659363, -0.15710121393203735, 0.09823469072580338, -0.22986942529678345, 0.14457769691944122, 0.1068393662571907, -0.6492933630943298, -0.10123074799776077, 0.19752399623394012, -0.10851716250181198, 0.030715569853782654, 1.189949631690979, -0.17505358159542084, 0.07648332417011261, 0.03032008931040764]} +{"t": 5.2654, "q": [-0.34794604778289795, -0.013366086408495903, 0.009454678744077682, 0.6318466663360596, -0.32095852494239807, 0.019935276359319687, -0.38527292013168335, -0.00046871634549461305, 0.0027453387156128883, 0.6004682779312134, -0.28204357624053955, 0.004718990530818701, 0.0023301898036152124, 0.023876115679740906, -0.056932661682367325, -0.16229037940502167, 0.09517871588468552, -0.23191872239112854, 0.13354022800922394, 0.10447847843170166, -0.6582575440406799, -0.10283663868904114, 0.19741614162921906, -0.10848120599985123, 0.030715569853782654, 1.189997673034668, -0.17499366402626038, 0.0764593556523323, 0.03032008931040764]} +{"t": 5.2821, "q": [-0.34799718856811523, -0.013272343203425407, 0.009427894838154316, 0.6318551898002625, -0.32094618678092957, 0.019913600757718086, -0.3853922188282013, -0.00037497308221645653, 0.002758730435743928, 0.6006983518600464, -0.28205183148384094, 0.004704601131379604, 0.0018614735454320908, 0.02389892190694809, -0.05691801756620407, -0.16630509495735168, 0.0923384577035904, -0.23598137497901917, 0.12226306647062302, 0.09974470734596252, -0.6679048538208008, -0.10519752651453018, 0.1971524953842163, -0.10842128843069077, 0.030715569853782654, 1.190009593963623, -0.17501762509346008, 0.07647134363651276, 0.03033207356929779]} +{"t": 5.2989, "q": [-0.3480057120323181, -0.013067811727523804, 0.00940111093223095, 0.6318296194076538, -0.32092568278312683, 0.019862938672304153, -0.38545188307762146, -0.00017896443023346364, 0.002718554809689522, 0.600723922252655, -0.2820392847061157, 0.004682841245085001, 0.0015534599078819156, 0.023936914280056953, -0.056873708963394165, -0.16943298280239105, 0.08843159675598145, -0.23962458968162537, 0.1122322678565979, 0.09648499637842178, -0.6782711744308472, -0.10730675607919693, 0.19692479074001312, -0.10842128843069077, 0.03075152263045311, 1.189997673034668, -0.1750655621290207, 0.07648332417011261, 0.030356042087078094]} +{"t": 5.3156, "q": [-0.3480057120323181, -0.013025201857089996, 0.009307367727160454, 0.6317955255508423, -0.32092568278312683, 0.01984843984246254, -0.38549450039863586, -0.00011078749957960099, 0.0026649872306734324, 0.6008091568946838, -0.28204345703125, 0.004690106492489576, 0.0014998923288658261, 0.024005332961678505, -0.056829776614904404, -0.17196165025234222, 0.08327838033437729, -0.2422611117362976, 0.10178202390670776, 0.09244631230831146, -0.6850902438163757, -0.10908041894435883, 0.19687685370445251, -0.10840930044651031, 0.030727554112672806, 1.1900575160980225, -0.17501762509346008, 0.07644737511873245, 0.03032008931040764]} +{"t": 5.3323, "q": [-0.3480057120323181, -0.012974068522453308, 0.009039529599249363, 0.6316847801208496, -0.3209010064601898, 0.019805071875452995, -0.38554561138153076, -9.374327055411413e-05, 0.0024507169146090746, 0.6008602976799011, -0.2820475399494171, 0.0046684518456459045, 0.0017275545978918672, 0.024073751643300056, -0.05678584426641464, -0.17489778995513916, 0.07649531215429306, -0.24437034130096436, 0.09215869009494781, 0.09003748744726181, -0.6921968460083008, -0.11090201884508133, 0.19690081477165222, -0.10843326896429062, 0.030727554112672806, 1.1900814771652222, -0.17500564455986023, 0.076435387134552, 0.03033207356929779]} +{"t": 5.3491, "q": [-0.348014235496521, -0.012957025319337845, 0.008852043189108372, 0.6314972639083862, -0.3208804428577423, 0.019783446565270424, -0.3855626583099365, -8.52211524033919e-05, 0.0023034061305224895, 0.6009028553962708, -0.28206002712249756, 0.004675770178437233, 0.0017543383873999119, 0.024119345471262932, -0.05673665553331375, -0.17697104811668396, 0.07154582440853119, -0.24634774029254913, 0.08373378217220306, 0.08791627734899521, -0.6993274688720703, -0.11226822435855865, 0.19674502313137054, -0.10844525694847107, 0.030703585594892502, 1.1903451681137085, -0.17500564455986023, 0.07647134363651276, 0.030344057828187943]} +{"t": 5.3658, "q": [-0.34803980588912964, -0.012880325317382812, 0.00866455677896738, 0.6313439011573792, -0.3208722472190857, 0.019754478707909584, -0.38564789295196533, -6.817692337790504e-05, 0.0021025275345891714, 0.6009028553962708, -0.28205999732017517, 0.004661328159272671, 0.0019552167505025864, 0.024317018687725067, -0.056629642844200134, -0.1800030618906021, 0.06725547462701797, -0.24796560406684875, 0.07661515474319458, 0.08660999685525894, -0.7061105370521545, -0.11377823352813721, 0.19661319255828857, -0.10850517451763153, 0.030739538371562958, 1.1903570890426636, -0.17501762509346008, 0.07647134363651276, 0.03033207356929779]} +{"t": 5.3826, "q": [-0.3480994403362274, -0.012769538909196854, 0.008530637249350548, 0.6312757134437561, -0.3208639919757843, 0.019754527136683464, -0.38572457432746887, 4.261057620169595e-05, 0.002008784329518676, 0.6009028553962708, -0.2820807099342346, 0.0046397787518799305, 0.0022498385515064, 0.024491840973496437, -0.05649755150079727, -0.18361032009124756, 0.06357631832361221, -0.2494995892047882, 0.07086272537708282, 0.08415322750806808, -0.7127138376235962, -0.11500062793493271, 0.19649335741996765, -0.10856509953737259, 0.030715569853782654, 1.190464973449707, -0.17505358159542084, 0.0764593556523323, 0.030344057828187943]} +{"t": 5.3993, "q": [-0.3481164872646332, -0.012718405574560165, 0.008410110138356686, 0.6310455799102783, -0.3208557367324829, 0.019754596054553986, -0.3857586681842804, 0.00011930961773032323, 0.0019552167505025864, 0.6008432507514954, -0.2820930778980255, 0.0046181948855519295, 0.002156095113605261, 0.02470470778644085, -0.05638092756271362, -0.18577945232391357, 0.06054430454969406, -0.2510455548763275, 0.0640556812286377, 0.07864048331975937, -0.7197126746177673, -0.11629492044448853, 0.19637350738048553, -0.1086130365729332, 0.030703585594892502, 1.190464973449707, -0.1750895380973816, 0.07647134363651276, 0.03033207356929779]} +{"t": 5.416, "q": [-0.34803128242492676, -0.012726927176117897, 0.008410110138356686, 0.6307899355888367, -0.3208474814891815, 0.019754646345973015, -0.3857927620410919, 0.00012783173588104546, 0.002008784329518676, 0.6008517742156982, -0.2821345031261444, 0.004575114697217941, 0.002169487066566944, 0.025001224130392075, -0.05624053254723549, -0.18702581524848938, 0.05740443989634514, -0.25275930762290955, 0.05608617514371872, 0.07492537796497345, -0.7258245944976807, -0.11755326390266418, 0.19628962874412537, -0.10874485969543457, 0.030619695782661438, 1.1904770135879517, -0.17507754266262054, 0.0764593556523323, 0.03032008931040764]} +{"t": 5.4327, "q": [-0.34803980588912964, -0.012769538909196854, 0.008423502556979656, 0.6307047009468079, -0.320851594209671, 0.01976187154650688, -0.3857927620410919, 9.374327055411413e-05, 0.0019953923765569925, 0.6008262038230896, -0.2821677625179291, 0.004575307480990887, 0.0022230546455830336, 0.025510510429739952, -0.055983953177928925, -0.1881163865327835, 0.055043548345565796, -0.25603097677230835, 0.04838031902909279, 0.0701436698436737, -0.7301508784294128, -0.11848803609609604, 0.19631358981132507, -0.1089126393198967, 0.030595727264881134, 1.190524935722351, -0.17502960562705994, 0.0764593556523323, 0.03032008931040764]} +{"t": 5.4495, "q": [-0.3480738699436188, -0.012795104645192623, 0.008436894044280052, 0.6306024789810181, -0.3208516240119934, 0.01974737085402012, -0.3857927620410919, 8.52211524033919e-05, 0.001982000656425953, 0.6008091568946838, -0.2821967899799347, 0.004553847014904022, 0.002356973709538579, 0.025989392772316933, -0.055736903101205826, -0.18917100131511688, 0.053114086389541626, -0.2593386471271515, 0.04078231751918793, 0.06821420788764954, -0.7353640198707581, -0.11925502866506577, 0.19621771574020386, -0.10909239947795868, 0.030547790229320526, 1.1905488967895508, -0.17500564455986023, 0.0764593556523323, 0.03033207356929779]} +{"t": 5.4662, "q": [-0.3480738699436188, -0.01286328211426735, 0.008410110138356686, 0.6304831504821777, -0.3208557367324829, 0.019754596054553986, -0.38577571511268616, 8.52211542223813e-06, 0.001941824913956225, 0.6007494926452637, -0.28220510482788086, 0.004553899634629488, 0.002651595277711749, 0.026529042050242424, -0.05542108044028282, -0.19027353823184967, 0.05105280131101608, -0.26239460706710815, 0.03417900949716568, 0.06747119128704071, -0.7430339455604553, -0.1209687665104866, 0.1961098611354828, -0.10938002169132233, 0.03051183745265007, 1.1906328201293945, -0.17504160106182098, 0.07644737511873245, 0.03033207356929779]} +{"t": 5.483, "q": [-0.34809091687202454, -0.012939980253577232, 0.00847707036882639, 0.6304064393043518, -0.320851594209671, 0.019776370376348495, -0.3857671916484833, -6.817692337790504e-05, 0.0019284329609945416, 0.600723922252655, -0.28222182393074036, 0.004582888912409544, 0.0027453387156128883, 0.027296721935272217, -0.05500940978527069, -0.19144800305366516, 0.04987834393978119, -0.26621758937835693, 0.026497121900320053, 0.06665626168251038, -0.7490859627723694, -0.12425244599580765, 0.1959061324596405, -0.10970360040664673, 0.030475884675979614, 1.1906447410583496, -0.17507754266262054, 0.07647134363651276, 0.03032008931040764]} +{"t": 5.4997, "q": [-0.3481079638004303, -0.013008156791329384, 0.008530637249350548, 0.6304064393043518, -0.3208557069301605, 0.019783595576882362, -0.3857671916484833, -0.00012783173588104546, 0.001982000656425953, 0.6007324457168579, -0.2822301387786865, 0.004582923837006092, 0.0027855143416672945, 0.028239209204912186, -0.05463576689362526, -0.19243070483207703, 0.05035771429538727, -0.27117905020713806, 0.017137441784143448, 0.06605704873800278, -0.7551979422569275, -0.12921391427516937, 0.1955346167087555, -0.1101110652089119, 0.03045191615819931, 1.1907047033309937, -0.17501762509346008, 0.07648332417011261, 0.030308105051517487]} +{"t": 5.5164, "q": [-0.3481079638004303, -0.013135988265275955, 0.008677948266267776, 0.6304064393043518, -0.32085153460502625, 0.019805388525128365, -0.38574162125587463, -0.00018748654110822827, 0.0020757438614964485, 0.600723922252655, -0.2822301983833313, 0.004597384016960859, 0.0028122980147600174, 0.029303552582859993, -0.054443202912807465, -0.19437214732170105, 0.0529463067650795, -0.27949610352516174, 0.008736500516533852, 0.06606903672218323, -0.7624244093894958, -0.13276124000549316, 0.195235013961792, -0.11059042811393738, 0.03039199486374855, 1.1907047033309937, -0.17499366402626038, 0.07649531215429306, 0.03032008931040764]} +{"t": 5.5332, "q": [-0.3480738699436188, -0.013255298137664795, 0.008852043189108372, 0.6304149627685547, -0.32084739208221436, 0.019827162846922874, -0.385716050863266, -0.0002641855680849403, 0.0022632302716374397, 0.600723922252655, -0.2822135090827942, 0.004582836292684078, 0.0025980276986956596, 0.030611345544457436, -0.054374027997255325, -0.19646938145160675, 0.060436446219682693, -0.28680646419525146, -0.00015579492901451886, 0.06636863946914673, -0.768164873123169, -0.13651230931282043, 0.19488747417926788, -0.11123757809400558, 0.030296120792627335, 1.1907286643981934, -0.1750655621290207, 0.07649531215429306, 0.03033207356929779]} +{"t": 5.5499, "q": [-0.3479716181755066, -0.013374608010053635, 0.009293975308537483, 0.6304149627685547, -0.3208391070365906, 0.01984173059463501, -0.38563084602355957, -0.0003664509567897767, 0.00254446011967957, 0.600723922252655, -0.28218019008636475, 0.004568165633827448, 0.002611419651657343, 0.032131992280483246, -0.05440932884812355, -0.19903400540351868, 0.06701578944921494, -0.2951355278491974, -0.00932372733950615, 0.06664427369832993, -0.772646963596344, -0.13965217769145966, 0.19483953714370728, -0.11213639378547668, 0.03026016801595688, 1.1907047033309937, -0.17498166859149933, 0.0764593556523323, 0.03033207356929779]} +{"t": 5.5666, "q": [-0.3478182256221771, -0.013638794422149658, 0.009508245624601841, 0.6304234862327576, -0.3208390772342682, 0.019856231287121773, -0.3855626583099365, -0.0005624596378766, 0.0027989062946289778, 0.6007580161094666, -0.2821429669857025, 0.004618493374437094, 0.0027855143416672945, 0.03362973779439926, -0.05443025752902031, -0.2004002183675766, 0.072792187333107, -0.3048667013645172, -0.017556890845298767, 0.06681205332279205, -0.777728259563446, -0.141437828540802, 0.19488747417926788, -0.11299926042556763, 0.03021223098039627, 1.1907166242599487, -0.17496968805789948, 0.07647134363651276, 0.03032008931040764]} +{"t": 5.5834, "q": [-0.34780970215797424, -0.013996722176671028, 0.00966894906014204, 0.6304831504821777, -0.3208349645137787, 0.01986350677907467, -0.3855115473270416, -0.0008777778712101281, 0.002865865593776107, 0.6008091568946838, -0.28211817145347595, 0.004661679267883301, 0.0027989062946289778, 0.03554531931877136, -0.054335612803697586, -0.20063990354537964, 0.0794554129242897, -0.31453797221183777, -0.026748791337013245, 0.06760301440954208, -0.7858176231384277, -0.14407435059547424, 0.19487549364566803, -0.11395800113677979, 0.030176280066370964, 1.1908245086669922, -0.17500564455986023, 0.0764593556523323, 0.030356042087078094]} +{"t": 5.6001, "q": [-0.3478352725505829, -0.01425238698720932, 0.009856435470283031, 0.6306620836257935, -0.3208349645137787, 0.01986350677907467, -0.3854774534702301, -0.001073786523193121, 0.0030801359098404646, 0.6008091568946838, -0.2820810079574585, 0.004726449027657509, 0.00287925754673779, 0.037589479237794876, -0.05405277758836746, -0.20145483314990997, 0.08833572268486023, -0.3257671892642975, -0.03615640848875046, 0.0685737356543541, -0.7922411561012268, -0.14799319207668304, 0.1947316825389862, -0.11503657698631287, 0.03015231154859066, 1.1908365488052368, -0.17499366402626038, 0.0764593556523323, 0.030356042087078094]} +{"t": 5.6168, "q": [-0.3477926552295685, -0.014448394998908043, 0.010365326888859272, 0.6307728886604309, -0.3208432197570801, 0.019848955795168877, -0.385485976934433, -0.0012186624808236957, 0.003562244353815913, 0.6009369492530823, -0.28204795718193054, 0.004784023854881525, 0.0028256899677217007, 0.03926869481801987, -0.05379367247223854, -0.20298880338668823, 0.09928930550813675, -0.33688855171203613, -0.04569585248827934, 0.06869357824325562, -0.799239993095398, -0.15016233921051025, 0.19449199736118317, -0.11605523526668549, 0.030140327289700508, 1.1908605098724365, -0.17501762509346008, 0.076435387134552, 0.030368026345968246]} +{"t": 5.6336, "q": [-0.3477500379085541, -0.01455065980553627, 0.011115273460745811, 0.6308836936950684, -0.32085150480270386, 0.01983438804745674, -0.385528564453125, -0.001320927869528532, 0.004258622881025076, 0.6010648012161255, -0.2819654047489166, 0.0049424124881625175, 0.0028256899677217007, 0.040986068546772, -0.053770218044519424, -0.20534969866275787, 0.11247195303440094, -0.3488727807998657, -0.057452376931905746, 0.06882540881633759, -0.8083719611167908, -0.1513487845659256, 0.19424031674861908, -0.11713381856679916, 0.030140327289700508, 1.1908365488052368, -0.17505358159542084, 0.07647134363651276, 0.03039199486374855]} +{"t": 5.6503, "q": [-0.3475966453552246, -0.01461031474173069, 0.01193217933177948, 0.6309433579444885, -0.3208886981010437, 0.019783396273851395, -0.38563084602355957, -0.0013550163712352514, 0.005249623209238052, 0.6011074185371399, -0.2817835807800293, 0.005244624800980091, 0.002651595277711749, 0.042909011244773865, -0.05403595790266991, -0.20841765403747559, 0.12614595890045166, -0.3608330488204956, -0.06992795318365097, 0.06934072822332382, -0.8143160939216614, -0.1521996557712555, 0.19400063157081604, -0.11818842589855194, 0.03015231154859066, 1.1908605098724365, -0.17501762509346008, 0.07642340660095215, 0.03039199486374855]} +{"t": 5.667, "q": [-0.34734949469566345, -0.014763712882995605, 0.012749084271490574, 0.6309433579444885, -0.3208969235420227, 0.01979784667491913, -0.3857586681842804, -0.0013550163712352514, 0.006347758695483208, 0.601260781288147, -0.2815769910812378, 0.005590023007243872, 0.0024908925406634808, 0.04462667927145958, -0.0543631985783577, -0.21384651958942413, 0.13853764533996582, -0.3716188371181488, -0.08080963045358658, 0.0688733458518982, -0.8199127316474915, -0.15218767523765564, 0.1937849223613739, -0.11923106014728546, 0.030164295807480812, 1.1908365488052368, -0.17501762509346008, 0.07644737511873245, 0.030415963381528854]} +{"t": 5.6838, "q": [-0.34726428985595703, -0.015053465962409973, 0.01317762490361929, 0.6309859752655029, -0.3209919333457947, 0.01967400498688221, -0.38595467805862427, -0.0013635384384542704, 0.007405718322843313, 0.6013630628585815, -0.281444787979126, 0.005820323247462511, 0.002156095113605261, 0.046541906893253326, -0.05483677238225937, -0.22098910808563232, 0.15003050863742828, -0.3817335367202759, -0.09051685035228729, 0.06815429031848907, -0.8274388313293457, -0.15151655673980713, 0.19365309178829193, -0.12032162398099899, 0.030164295807480812, 1.1908724308013916, -0.17499366402626038, 0.07642340660095215, 0.030487868934869766]} +{"t": 5.7005, "q": [-0.34734949469566345, -0.015462527051568031, 0.013365112245082855, 0.6309944987297058, -0.3216359615325928, 0.018595926463603973, -0.38627001643180847, -0.0013976269401609898, 0.008222623728215694, 0.60132896900177, -0.2813289761543274, 0.0059785014018416405, 0.0018480815924704075, 0.04839734360575676, -0.05583597347140312, -0.22732876241207123, 0.15898273885250092, -0.38970303535461426, -0.1028725877404213, 0.06554172933101654, -0.8334429264068604, -0.14938336610794067, 0.1937130093574524, -0.12141218781471252, 0.030164295807480812, 1.1908724308013916, -0.17501762509346008, 0.076435387134552, 0.03051183745265007]} +{"t": 5.7172, "q": [-0.34721314907073975, -0.015905676409602165, 0.01352581474930048, 0.6309944987297058, -0.32291775941848755, 0.016430679708719254, -0.3863040804862976, -0.0016106797847896814, 0.008865434676408768, 0.60132896900177, -0.2812793552875519, 0.006050413008779287, 0.0015802436973899603, 0.05003943294286728, -0.056583307683467865, -0.23364445567131042, 0.16664065420627594, -0.39664191007614136, -0.11787684261798859, 0.06019676476716995, -0.8369783163070679, -0.14725017547607422, 0.1938088834285736, -0.12228703498840332, 0.030188262462615967, 1.1908724308013916, -0.17504160106182098, 0.0764593556523323, 0.030547790229320526]} +{"t": 5.7339, "q": [-0.34720462560653687, -0.0164170041680336, 0.013579382561147213, 0.6310370564460754, -0.3232927620410919, 0.01589803211390972, -0.3864404559135437, -0.002122006844729185, 0.009119881317019463, 0.6013374924659729, -0.2812630534172058, 0.006136977579444647, 0.0015534599078819156, 0.051233112812042236, -0.05725594237446785, -0.2404395043849945, 0.17142236232757568, -0.4014955163002014, -0.13298894464969635, 0.054743941873311996, -0.8408252000808716, -0.14515294134616852, 0.19420437514781952, -0.12293418496847153, 0.030188262462615967, 1.190908432006836, -0.17498166859149933, 0.07644737511873245, 0.030583743005990982]} +{"t": 5.7507, "q": [-0.34716200828552246, -0.016919808462262154, 0.013552598655223846, 0.631071150302887, -0.3232762813568115, 0.01592719741165638, -0.38637226819992065, -0.0026077672373503447, 0.009360934607684612, 0.6013801097869873, -0.28123825788497925, 0.006180163472890854, 0.0015534599078819156, 0.05224443972110748, -0.05791429430246353, -0.2488044947385788, 0.1754131019115448, -0.40717604756355286, -0.14787335693836212, 0.04838031902909279, -0.8441208600997925, -0.14156965911388397, 0.19453993439674377, -0.12346148490905762, 0.030188262462615967, 1.1909443140029907, -0.17499366402626038, 0.076435387134552, 0.030583743005990982]} +{"t": 5.7674, "q": [-0.34721314907073975, -0.017422612756490707, 0.013499030843377113, 0.6310967206954956, -0.32325977087020874, 0.015956344082951546, -0.3864063620567322, -0.002974218223243952, 0.009521638043224812, 0.6013630628585815, -0.28122177720069885, 0.006223401986062527, 0.0016605950659140944, 0.05322512239217758, -0.058462973684072495, -0.2584398090839386, 0.1789844036102295, -0.41521745920181274, -0.16039687395095825, 0.045528072863817215, -0.8454271554946899, -0.13707557320594788, 0.19462381303310394, -0.12403672933578491, 0.030188262462615967, 1.1909923553466797, -0.17499366402626038, 0.07647134363651276, 0.030595727264881134]} +{"t": 5.7841, "q": [-0.34734949469566345, -0.018078815191984177, 0.013338328339159489, 0.6311222910881042, -0.32326802611351013, 0.015941770747303963, -0.38650861382484436, -0.003340669209137559, 0.009829651564359665, 0.601405680179596, -0.2811805307865143, 0.006309808231890202, 0.0016204193234443665, 0.05378758907318115, -0.05875715985894203, -0.26698458194732666, 0.1811535507440567, -0.4218687117099762, -0.1715421974658966, 0.038493331521749496, -0.8473326563835144, -0.13366006314754486, 0.19452793896198273, -0.12440824508666992, 0.030224215239286423, 1.1913518905639648, -0.17502960562705994, 0.07648332417011261, 0.030595727264881134]} +{"t": 5.8008, "q": [-0.3475199341773987, -0.018539009615778923, 0.013324935920536518, 0.6311052441596985, -0.32326391339302063, 0.015934545546770096, -0.38696882128715515, -0.00358781055547297, 0.010191232897341251, 0.6015250086784363, -0.2811226546764374, 0.006396126933395863, 0.001084743533283472, 0.054274097084999084, -0.059039294719696045, -0.27357590198516846, 0.18220816552639008, -0.4253201484680176, -0.18388594686985016, 0.029505163431167603, -0.8502088785171509, -0.12916597723960876, 0.19427627325057983, -0.12462396174669266, 0.030236199498176575, 1.1913998126983643, -0.17502960562705994, 0.07642340660095215, 0.030595727264881134]} +{"t": 5.8176, "q": [-0.3475455045700073, -0.018811717629432678, 0.013365112245082855, 0.63113933801651, -0.32326799631118774, 0.01597079448401928, -0.3869943916797638, -0.003783819265663624, 0.010539421811699867, 0.6016783714294434, -0.2810482978820801, 0.006525666452944279, 0.0008302975329570472, 0.0543881393969059, -0.05911707878112793, -0.27949610352516174, 0.1838979423046112, -0.42927494645118713, -0.1959061324596405, 0.023261381313204765, -0.8528933525085449, -0.1257145255804062, 0.19426429271697998, -0.12461197376251221, 0.030224215239286423, 1.1914117336273193, -0.17499366402626038, 0.0764593556523323, 0.030619695782661438]} +{"t": 5.8343, "q": [-0.34776708483695984, -0.018965115770697594, 0.013378503732383251, 0.6311734318733215, -0.32327210903167725, 0.015992550179362297, -0.38725003600120544, -0.003954261541366577, 0.010606381110846996, 0.6016102433204651, -0.2810276746749878, 0.006576099898666143, 0.0008302975329570472, 0.05438053980469704, -0.05911189690232277, -0.284817099571228, 0.1865464448928833, -0.43508729338645935, -0.20660804212093353, 0.018371816724538803, -0.8541037440299988, -0.12437228858470917, 0.1943361908197403, -0.12457602471113205, 0.03021223098039627, 1.1914117336273193, -0.17500564455986023, 0.07647134363651276, 0.030619695782661438]} +{"t": 5.8511, "q": [-0.34789490699768066, -0.019203735515475273, 0.013365112245082855, 0.6312075257301331, -0.32325148582458496, 0.016043512150645256, -0.3873097002506256, -0.00418435875326395, 0.010606381110846996, 0.601635754108429, -0.2810153663158417, 0.006612143944948912, 0.0008302975329570472, 0.05438053980469704, -0.05911189690232277, -0.28873592615127563, 0.18998591601848602, -0.4405880570411682, -0.2163032740354538, 0.014908376149833202, -0.8541277050971985, -0.12416855990886688, 0.19439612329006195, -0.1245640367269516, 0.03021223098039627, 1.191435694694519, -0.17499366402626038, 0.07642340660095215, 0.030619695782661438]} +{"t": 5.868, "q": [-0.3481505811214447, -0.019510531798005104, 0.013351719826459885, 0.6312075257301331, -0.32324737310409546, 0.016050798818469048, -0.3874886631965637, -0.004550809506326914, 0.0105929896235466, 0.6017465591430664, -0.2809741199016571, 0.0066985501907765865, 0.0009106489014811814, 0.05444123595952988, -0.0590837188065052, -0.29197168350219727, 0.1950312852859497, -0.44612476229667664, -0.22309833765029907, 0.011696604080498219, -0.8536124229431152, -0.12414459139108658, 0.1943601667881012, -0.12459999322891235, 0.03021223098039627, 1.191423773765564, -0.17502960562705994, 0.0764593556523323, 0.030619695782661438]} +{"t": 5.8848, "q": [-0.34830397367477417, -0.019817328080534935, 0.013298152014613152, 0.6311990022659302, -0.3232102692127228, 0.016116397455334663, -0.3876335322856903, -0.004738296382129192, 0.010566205717623234, 0.6018062233924866, -0.2809534966945648, 0.006748983636498451, 0.0012454462703317404, 0.05458534136414528, -0.0589832179248333, -0.29556694626808167, 0.20126308500766754, -0.4527041018009186, -0.22879084944725037, 0.009755159728229046, -0.8536244034767151, -0.1239887923002243, 0.19450397789478302, -0.12471982836723328, 0.030176280066370964, 1.191423773765564, -0.17499366402626038, 0.07642340660095215, 0.030619695782661438]} +{"t": 5.9015, "q": [-0.34840625524520874, -0.020013336092233658, 0.013204408809542656, 0.6311904788017273, -0.3231978714466095, 0.016167299821972847, -0.3876846730709076, -0.004917260725051165, 0.010526030324399471, 0.6019255518913269, -0.28095778822898865, 0.006785114761441946, 0.001834689755924046, 0.05485071241855621, -0.05879693850874901, -0.3002288043498993, 0.20869329571723938, -0.45947518944740295, -0.23590947687625885, 0.008460862562060356, -0.8537202477455139, -0.12313791364431381, 0.19457587599754333, -0.12491157650947571, 0.03021223098039627, 1.191435694694519, -0.17502960562705994, 0.07644737511873245, 0.030607711523771286]} +{"t": 5.9184, "q": [-0.34840625524520874, -0.02020082250237465, 0.013137449510395527, 0.6311990022659302, -0.32308244705200195, 0.016385911032557487, -0.38766762614250183, -0.005028048064559698, 0.010472462512552738, 0.6019766926765442, -0.2807759642601013, 0.007087344769388437, 0.0021159194875508547, 0.05506306141614914, -0.05869381129741669, -0.3052142560482025, 0.21716614067554474, -0.4644366502761841, -0.24414263665676117, 0.00800546258687973, -0.8539479374885559, -0.12264656275510788, 0.19455191493034363, -0.1252111792564392, 0.03021223098039627, 1.1915196180343628, -0.17505358159542084, 0.0764593556523323, 0.030607711523771286]} +{"t": 5.9351, "q": [-0.34836363792419434, -0.0202689990401268, 0.01311066560447216, 0.6311990022659302, -0.3229588270187378, 0.01660456508398056, -0.38760796189308167, -0.005172924138605595, 0.010472462512552738, 0.6020192503929138, -0.28074684739112854, 0.007079939357936382, 0.002129311440512538, 0.05560959130525589, -0.058650001883506775, -0.3098401725292206, 0.22592660784721375, -0.4682955741882324, -0.25271135568618774, 0.0068789455108344555, -0.8552182912826538, -0.12161591649055481, 0.19446802139282227, -0.12560667097568512, 0.030176280066370964, 1.1915675401687622, -0.17505358159542084, 0.07647134363651276, 0.030595727264881134]} +{"t": 5.9519, "q": [-0.34830397367477417, -0.020422397181391716, 0.013124058023095131, 0.6311990022659302, -0.3225136399269104, 0.017391780391335487, -0.3875057101249695, -0.005258145276457071, 0.010472462512552738, 0.6020277738571167, -0.28070563077926636, 0.007180805783718824, 0.002129311440512538, 0.0563235767185688, -0.058809708803892136, -0.31546077132225037, 0.23700003325939178, -0.4736884832382202, -0.2643360495567322, 0.0033076461404561996, -0.8583701252937317, -0.11878763884305954, 0.1944560408592224, -0.12612198293209076, 0.030188262462615967, 1.191591501235962, -0.17507754266262054, 0.0764593556523323, 0.030619695782661438]} +{"t": 5.9686, "q": [-0.348244309425354, -0.02051614038646221, 0.013137449510395527, 0.6311990022659302, -0.32114002108573914, 0.01989067904651165, -0.38735231757164, -0.005351888481527567, 0.010472462512552738, 0.6020022630691528, -0.28066036105155945, 0.007303291000425816, 0.002316797850653529, 0.057007238268852234, -0.05905899405479431, -0.32202813029289246, 0.24597622454166412, -0.4784342348575592, -0.2785613238811493, -0.002145176287740469, -0.8651651740074158, -0.11485681682825089, 0.1944560408592224, -0.12656539678573608, 0.03021223098039627, 1.1917113065719604, -0.17501762509346008, 0.07647134363651276, 0.030619695782661438]} +{"t": 5.9853, "q": [-0.3481591045856476, -0.020729193463921547, 0.013137449510395527, 0.6311990022659302, -0.32086294889450073, 0.020407242700457573, -0.3872159719467163, -0.005650162696838379, 0.010405503213405609, 0.6020107269287109, -0.28069475293159485, 0.007606873754411936, 0.002651595277711749, 0.05747819319367409, -0.059222325682640076, -0.32871532440185547, 0.25425732135772705, -0.48114266991615295, -0.2927865982055664, -0.00882038939744234, -0.8710854053497314, -0.11115369200706482, 0.19451595842838287, -0.12682905793190002, 0.030176280066370964, 1.1920828819274902, -0.17504160106182098, 0.07647134363651276, 0.030583743005990982]} +{"t": 6.002, "q": [-0.34812501072883606, -0.020967813208699226, 0.013043706305325031, 0.6311990022659302, -0.3208670914173126, 0.020385466516017914, -0.38697734475135803, -0.005871737375855446, 0.010298367589712143, 0.6020277738571167, -0.28076598048210144, 0.007759035099297762, 0.0030399602837860584, 0.058025043457746506, -0.05937797948718071, -0.33742785453796387, 0.2627301812171936, -0.4832518994808197, -0.3037162125110626, -0.01501623447984457, -0.8748244643211365, -0.10643190145492554, 0.1944560408592224, -0.1272844523191452, 0.030188262462615967, 1.1927300691604614, -0.1750655621290207, 0.07647134363651276, 0.030595727264881134]} +{"t": 6.0188, "q": [-0.3481164872646332, -0.021385397762060165, 0.013030314818024635, 0.6311990022659302, -0.32085883617401123, 0.020400017499923706, -0.38696029782295227, -0.006272276863455772, 0.010271583683788776, 0.6023090481758118, -0.2806079089641571, 0.0077291312627494335, 0.0031470954418182373, 0.05867774784564972, -0.0593179315328598, -0.3455052077770233, 0.2731684446334839, -0.4875422418117523, -0.31266844272613525, -0.019809924066066742, -0.8756393790245056, -0.10443054139614105, 0.1941085010766983, -0.12767992913722992, 0.03021223098039627, 1.1936168670654297, -0.17504160106182098, 0.07648332417011261, 0.030559774488210678]} +{"t": 6.0355, "q": [-0.34812501072883606, -0.02170923724770546, 0.013083881698548794, 0.6311990022659302, -0.3208629786968231, 0.02039274200797081, -0.3869943916797638, -0.006638728082180023, 0.010378719307482243, 0.6024794578552246, -0.2805121839046478, 0.0077068437822163105, 0.0026649872306734324, 0.059792980551719666, -0.05905846133828163, -0.35263583064079285, 0.28521257638931274, -0.49386993050575256, -0.32066190242767334, -0.025550367310643196, -0.8786234855651855, -0.10244115442037582, 0.193533256649971, -0.12842296063899994, 0.03021223098039627, 1.1936887502670288, -0.175137460231781, 0.0764593556523323, 0.030595727264881134]} +{"t": 6.0523, "q": [-0.34808239340782166, -0.022050121799111366, 0.013324935920536518, 0.6312160491943359, -0.32086706161499023, 0.02041446790099144, -0.38701996207237244, -0.006954045966267586, 0.010566205717623234, 0.6026499271392822, -0.28044626116752625, 0.00786533858627081, 0.002611419651657343, 0.06089290603995323, -0.058869633823633194, -0.3584960997104645, 0.2971368730068207, -0.4997301995754242, -0.3312320113182068, -0.0337236113846302, -0.8817992806434631, -0.09857024997472763, 0.1931857168674469, -0.12904614210128784, 0.030176280066370964, 1.193760633468628, -0.17501762509346008, 0.0764593556523323, 0.030595727264881134]} +{"t": 6.069, "q": [-0.3480738699436188, -0.02242509461939335, 0.013311544433236122, 0.6311990022659302, -0.32085883617401123, 0.020400017499923706, -0.3869943916797638, -0.007303453050553799, 0.010606381110846996, 0.602735161781311, -0.28037598729133606, 0.007973240688443184, 0.002718554809689522, 0.06195499375462532, -0.05876462534070015, -0.363313764333725, 0.3061729967594147, -0.5018394589424133, -0.33806300163269043, -0.041441451758146286, -0.8829138278961182, -0.09383648633956909, 0.19322165846824646, -0.129633367061615, 0.030164295807480812, 1.193832516670227, -0.17501762509346008, 0.0764593556523323, 0.030595727264881134]} +{"t": 6.0857, "q": [-0.3481079638004303, -0.022944943979382515, 0.013324935920536518, 0.6312075257301331, -0.3208670914173126, 0.020385466516017914, -0.3869858682155609, -0.007908523082733154, 0.010633165016770363, 0.6029737591743469, -0.2803055942058563, 0.008052241988480091, 0.002986392704769969, 0.06297121196985245, -0.05854921415448189, -0.36734047532081604, 0.3148495554924011, -0.5020071864128113, -0.34284472465515137, -0.05173590034246445, -0.8828059434890747, -0.0878923088312149, 0.19328159093856812, -0.13029249012470245, 0.03015231154859066, 1.1939643621444702, -0.17498166859149933, 0.0764593556523323, 0.030595727264881134]} +{"t": 6.1026, "q": [-0.34813353419303894, -0.023669324815273285, 0.013231192715466022, 0.6312075257301331, -0.32085058093070984, 0.020400067791342735, -0.3869943916797638, -0.008470982313156128, 0.010633165016770363, 0.6033146381378174, -0.28023967146873474, 0.00821075402200222, 0.0033747577108442783, 0.06387312710285187, -0.05822699889540672, -0.3710915446281433, 0.3225674033164978, -0.5017794966697693, -0.3450138568878174, -0.06282130628824234, -0.8826621770858765, -0.08283496648073196, 0.19326959550380707, -0.13089171051979065, 0.03015231154859066, 1.1940362453460693, -0.17500564455986023, 0.0764593556523323, 0.030583743005990982]} +{"t": 6.1193, "q": [-0.34821876883506775, -0.024214738979935646, 0.013164233416318893, 0.6312330961227417, -0.3208588659763336, 0.020385516807436943, -0.387096643447876, -0.009016398340463638, 0.0105929896235466, 0.603646993637085, -0.28023967146873474, 0.00821075402200222, 0.0036425956059247255, 0.06448674201965332, -0.057864975184202194, -0.37409958243370056, 0.3302612900733948, -0.5019952058792114, -0.3465119004249573, -0.07554855942726135, -0.8826382160186768, -0.07847270369529724, 0.1932336539030075, -0.13141901791095734, 0.030140327289700508, 1.1944078207015991, -0.17500564455986023, 0.076435387134552, 0.03057175874710083]} +{"t": 6.136, "q": [-0.34830397367477417, -0.02477720007300377, 0.013137449510395527, 0.6312245726585388, -0.3208754062652588, 0.020356399938464165, -0.38724151253700256, -0.00953624676913023, 0.010633165016770363, 0.6040304899215698, -0.2802354097366333, 0.008189029060304165, 0.003736338810995221, 0.0650094598531723, -0.057559508830308914, -0.3772633969783783, 0.3396209478378296, -0.5032655596733093, -0.34869301319122314, -0.08748484402894974, -0.8825423121452332, -0.07318766415119171, 0.19301792979240417, -0.13187441229820251, 0.030164295807480812, 1.1947553157806396, -0.17501762509346008, 0.07647134363651276, 0.030583743005990982]} +{"t": 6.1529, "q": [-0.34830397367477417, -0.025339659303426743, 0.013124058023095131, 0.6312245726585388, -0.32088783383369446, 0.020320074632763863, -0.3872756063938141, -0.010064618661999702, 0.010740300640463829, 0.6043287515640259, -0.28025639057159424, 0.008239743299782276, 0.0037497307639569044, 0.06550183147192001, -0.05731329694390297, -0.3799838423728943, 0.3474107086658478, -0.5057702660560608, -0.3505745530128479, -0.09703627228736877, -0.8819191455841064, -0.06854976713657379, 0.19274228811264038, -0.13225790858268738, 0.030176280066370964, 1.1950069665908813, -0.17500564455986023, 0.07647134363651276, 0.03057175874710083]} +{"t": 6.1696, "q": [-0.34832102060317993, -0.025774287059903145, 0.013137449510395527, 0.6312330961227417, -0.32091256976127625, 0.020319925621151924, -0.38732674717903137, -0.0105929896235466, 0.010807259939610958, 0.604695200920105, -0.28027307987213135, 0.008254291489720345, 0.003669379511848092, 0.06619175523519516, -0.05724302679300308, -0.3813859820365906, 0.35433757305145264, -0.5090779066085815, -0.3527197241783142, -0.10878081619739532, -0.8811521530151367, -0.06515823304653168, 0.19217903912067413, -0.132677361369133, 0.030164295807480812, 1.195246696472168, -0.17500564455986023, 0.0764593556523323, 0.03057175874710083]} +{"t": 6.1863, "q": [-0.3482528328895569, -0.026183348149061203, 0.013244585134088993, 0.6312245726585388, -0.32091668248176575, 0.02032715082168579, -0.3874034583568573, -0.011010573245584965, 0.011034921742975712, 0.6051042675971985, -0.2803148329257965, 0.008297898806631565, 0.0031203117687255144, 0.0670713260769844, -0.057194218039512634, -0.3818533718585968, 0.3582324683666229, -0.5120020508766174, -0.35376235842704773, -0.12135226279497147, -0.8802053928375244, -0.06071208417415619, 0.1916637122631073, -0.13316871225833893, 0.030176280066370964, 1.1952587366104126, -0.17504160106182098, 0.0764593556523323, 0.03057175874710083]} +{"t": 6.2033, "q": [-0.3481846749782562, -0.026456056162714958, 0.013726692646741867, 0.6312245726585388, -0.32094553112983704, 0.02033422514796257, -0.3876250088214874, -0.01124919205904007, 0.011650948785245419, 0.605726420879364, -0.2803690433502197, 0.008348806761205196, 0.0027453387156128883, 0.0677761435508728, -0.057025276124477386, -0.38276416063308716, 0.35985031723976135, -0.5151179432868958, -0.3545413315296173, -0.13481055200099945, -0.8792346715927124, -0.05573863163590431, 0.19125625491142273, -0.13366006314754486, 0.030176280066370964, 1.195318579673767, -0.17500564455986023, 0.07644737511873245, 0.030547790229320526]} +{"t": 6.2202, "q": [-0.34821024537086487, -0.026728764176368713, 0.014356112107634544, 0.6312245726585388, -0.32096606492996216, 0.02038484998047352, -0.388102263212204, -0.01161564327776432, 0.012159841135144234, 0.6065104603767395, -0.28042325377464294, 0.008385254070162773, 0.0025176764465868473, 0.0682230293750763, -0.056817539036273956, -0.3846217393875122, 0.3612644672393799, -0.5199236273765564, -0.35558393597602844, -0.14928749203681946, -0.8777605891227722, -0.049794454127550125, 0.19089671969413757, -0.13401958346366882, 0.030176280066370964, 1.1953545808792114, -0.17499366402626038, 0.0764593556523323, 0.030607711523771286]} +{"t": 6.2369, "q": [-0.348244309425354, -0.026916250586509705, 0.015012315474450588, 0.6312245726585388, -0.32098662853240967, 0.020420994609594345, -0.38870733976364136, -0.011956527829170227, 0.012615165673196316, 0.6072518825531006, -0.2805570363998413, 0.008588357828557491, 0.002316797850653529, 0.06864703446626663, -0.05660451948642731, -0.3870425522327423, 0.3621752858161926, -0.5245495438575745, -0.3565666675567627, -0.16152338683605194, -0.8760468363761902, -0.04627109318971634, 0.1905132234096527, -0.13428324460983276, 0.030188262462615967, 1.1953665018081665, -0.17499366402626038, 0.076435387134552, 0.03057175874710083]} +{"t": 6.2537, "q": [-0.34826135635375977, -0.02706964872777462, 0.015574774704873562, 0.6312245726585388, -0.3209824562072754, 0.020442787557840347, -0.38921013474464417, -0.012254801578819752, 0.013003530912101269, 0.6079847812652588, -0.28070342540740967, 0.008827646262943745, 0.002129311440512538, 0.0694192424416542, -0.0562359057366848, -0.39067375659942627, 0.36254677176475525, -0.5290675759315491, -0.3575373888015747, -0.17238110303878784, -0.874860405921936, -0.04375440627336502, 0.1901417225599289, -0.1347745954990387, 0.030188262462615967, 1.1954385042190552, -0.17498166859149933, 0.076435387134552, 0.030559774488210678]} +{"t": 6.2706, "q": [-0.348244309425354, -0.02719748020172119, 0.01593635603785515, 0.6312330961227417, -0.3209865987300873, 0.02043549343943596, -0.3895595371723175, -0.01236558984965086, 0.01327136904001236, 0.6085301637649536, -0.2808036804199219, 0.008958292193710804, 0.001901649171486497, 0.07059367001056671, -0.05602579191327095, -0.39516785740852356, 0.3631579875946045, -0.5335976481437683, -0.3591912090778351, -0.18471285700798035, -0.8741413950920105, -0.041489388793706894, 0.1895425021648407, -0.1354457139968872, 0.030164295807480812, 1.1954864263534546, -0.17496968805789948, 0.0764593556523323, 0.030559774488210678]} +{"t": 6.2874, "q": [-0.348201721906662, -0.027206001803278923, 0.01611045002937317, 0.6312245726585388, -0.320974200963974, 0.02045733667910099, -0.3897470235824585, -0.01239115558564663, 0.01344546303153038, 0.6089903712272644, -0.28086206316947937, 0.00900200568139553, 0.0017275545978918672, 0.07207082211971283, -0.05577912554144859, -0.4011719524860382, 0.3641766309738159, -0.5374925136566162, -0.3612285256385803, -0.1958581954240799, -0.873661994934082, -0.03936817869544029, 0.18865567445755005, -0.13656024634838104, 0.030176280066370964, 1.1956422328948975, -0.17499366402626038, 0.07647134363651276, 0.03057175874710083]} +{"t": 6.3042, "q": [-0.34817615151405334, -0.02718043513596058, 0.016338111832737923, 0.6312245726585388, -0.3209783136844635, 0.020450061187148094, -0.3900793790817261, -0.01239115558564663, 0.013686517253518105, 0.6094931960105896, -0.28089526295661926, 0.008987756446003914, 0.001312405802309513, 0.07383664697408676, -0.055841751396656036, -0.40904557704925537, 0.3665255308151245, -0.5418307781219482, -0.3639609217643738, -0.20840567350387573, -0.8735301494598389, -0.037762295454740524, 0.18715764582157135, -0.13763882219791412, 0.030164295807480812, 1.1963132619857788, -0.17501762509346008, 0.07642340660095215, 0.03057175874710083]} +{"t": 6.3209, "q": [-0.34808239340782166, -0.02718895860016346, 0.01648542284965515, 0.6312501430511475, -0.3209494352340698, 0.020471986383199692, -0.3902412950992584, -0.01239115558564663, 0.013820436783134937, 0.6100044846534729, -0.2809576094150543, 0.008980930782854557, 0.0010579597437754273, 0.07564710080623627, -0.05569881945848465, -0.41724279522895813, 0.37001296877861023, -0.5461571216583252, -0.3672805428504944, -0.2193952053785324, -0.8731107115745544, -0.0355212427675724, 0.18610303103923798, -0.13862153887748718, 0.03021223098039627, 1.1973079442977905, -0.17502960562705994, 0.076435387134552, 0.030583743005990982]} +{"t": 6.3377, "q": [-0.3480227589607239, -0.027171913534402847, 0.01663273386657238, 0.6312586665153503, -0.3209494352340698, 0.020471986383199692, -0.39053958654403687, -0.012374111451208591, 0.014007923193275928, 0.6104902625083923, -0.28106993436813354, 0.00897448230534792, 0.0008302975329570472, 0.0776534229516983, -0.0554279200732708, -0.42492467164993286, 0.3738718628883362, -0.5500040054321289, -0.3725416362285614, -0.2319307178258896, -0.8726433515548706, -0.031494542956352234, 0.18501247465610504, -0.13985590636730194, 0.030224215239286423, 1.1990456581115723, -0.17501762509346008, 0.076435387134552, 0.030583743005990982]} +{"t": 6.3544, "q": [-0.34776708483695984, -0.027154870331287384, 0.016739869490265846, 0.6312586665153503, -0.3209494352340698, 0.020471986383199692, -0.39065036177635193, -0.01236558984965086, 0.014141841791570187, 0.611120879650116, -0.28119513392448425, 0.008961023762822151, 0.0008035137434490025, 0.0800219476222992, -0.05496669188141823, -0.4326305389404297, 0.3773832619190216, -0.5542824268341064, -0.3779585063457489, -0.2448377162218094, -0.8726792931556702, -0.026760775595903397, 0.18380206823349, -0.1413419544696808, 0.030236199498176575, 1.2008553743362427, -0.1750655621290207, 0.076435387134552, 0.030595727264881134]} +{"t": 6.3712, "q": [-0.34753698110580444, -0.027171913534402847, 0.016913963481783867, 0.6313098073005676, -0.3209535777568817, 0.020450212061405182, -0.39082080125808716, -0.012382633984088898, 0.01436950359493494, 0.6118878722190857, -0.28158313035964966, 0.008899080567061901, 0.0007767299539409578, 0.08206329494714737, -0.054211653769016266, -0.44045624136924744, 0.38059502840042114, -0.5583690404891968, -0.3840225040912628, -0.255863219499588, -0.8727032542228699, -0.023429160937666893, 0.18255570530891418, -0.1426362544298172, 0.030236199498176575, 1.2020896673202515, -0.17505358159542084, 0.076435387134552, 0.030595727264881134]} +{"t": 6.3879, "q": [-0.3475455045700073, -0.02718043513596058, 0.016940748319029808, 0.631352424621582, -0.3209412395954132, 0.02042851783335209, -0.39128953218460083, -0.012382633984088898, 0.014409679919481277, 0.612612247467041, -0.28178679943084717, 0.00874890573322773, 0.0007901218486949801, 0.08437766879796982, -0.05385801941156387, -0.4480302631855011, 0.38299188017845154, -0.5644450187683105, -0.39184820652008057, -0.2688181698322296, -0.8726792931556702, -0.019833892583847046, 0.18194450438022614, -0.1443619728088379, 0.030284136533737183, 1.2024612426757812, -0.17502960562705994, 0.076435387134552, 0.030619695782661438]} +{"t": 6.4048, "q": [-0.34740063548088074, -0.027171913534402847, 0.017007706686854362, 0.6313694715499878, -0.3209289312362671, 0.02040684223175049, -0.3914514482021332, -0.01239115558564663, 0.014436463825404644, 0.6133451461791992, -0.28203538060188293, 0.00843279343098402, 0.0011383111122995615, 0.0864708349108696, -0.05327530577778816, -0.4543219804763794, 0.3826083838939667, -0.5707727074623108, -0.3990267515182495, -0.2811858654022217, -0.8726673126220703, -0.017473001033067703, 0.1818246692419052, -0.14545254409313202, 0.03026016801595688, 1.2025331258773804, -0.17505358159542084, 0.076435387134552, 0.030619695782661438]} +{"t": 6.4215, "q": [-0.34726428985595703, -0.027146346867084503, 0.016766652464866638, 0.6315398812294006, -0.32093721628189087, 0.020377792418003082, -0.3914940655231476, -0.012382633984088898, 0.014342720620334148, 0.6139758229255676, -0.2825554311275482, 0.008784068748354912, 0.0015802436973899603, 0.08863025903701782, -0.05240615829825401, -0.45832470059394836, 0.3824286162853241, -0.5777954459190369, -0.4052945077419281, -0.2925828695297241, -0.8727032542228699, -0.014968297444283962, 0.18178871273994446, -0.14649516344070435, 0.03027215227484703, 1.2026649713516235, -0.17502960562705994, 0.0764114186167717, 0.030619695782661438]} +{"t": 6.4383, "q": [-0.3472813367843628, -0.027112258598208427, 0.016592558473348618, 0.6315739750862122, -0.32092905044555664, 0.020319806411862373, -0.3918008506298065, -0.012357067316770554, 0.014248977415263653, 0.6145808696746826, -0.284801185131073, 0.011947492137551308, 0.002048959955573082, 0.09069936722517014, -0.05180199444293976, -0.45945122838020325, 0.3819012939929962, -0.5868675112724304, -0.4132999777793884, -0.30550187826156616, -0.87269127368927, -0.011157313361763954, 0.18158498406410217, -0.14756175875663757, 0.03026016801595688, 1.2028926610946655, -0.17510151863098145, 0.0764114186167717, 0.03063168004155159]} +{"t": 6.455, "q": [-0.3473750650882721, -0.02706964872777462, 0.016431856900453568, 0.6315569281578064, -0.3209333121776581, 0.02024003304541111, -0.3922099173069, -0.01233150064945221, 0.014208801090717316, 0.6153990030288696, -0.2862716615200043, 0.014077900908887386, 0.0021025275345891714, 0.09283602237701416, -0.051338400691747665, -0.45945122838020325, 0.38186535239219666, -0.5971739292144775, -0.42180877923965454, -0.3181931674480438, -0.8728231191635132, -0.006711166352033615, 0.1811295747756958, -0.14876018464565277, 0.03026016801595688, 1.2029645442962646, -0.17502960562705994, 0.076435387134552, 0.03063168004155159]} +{"t": 6.4718, "q": [-0.34734949469566345, -0.0270099937915802, 0.016378289088606834, 0.6315654516220093, -0.32100367546081543, 0.02007278800010681, -0.3926701247692108, -0.01233150064945221, 0.014182017184793949, 0.6161659955978394, -0.28642767667770386, 0.013804402202367783, 0.001901649171486497, 0.094708651304245, -0.05109564587473869, -0.4602062404155731, 0.3819252848625183, -0.6077799797058105, -0.43004193902015686, -0.32757681608200073, -0.8729069828987122, -0.0032117723021656275, 0.18073409795761108, -0.14976686239242554, 0.030224215239286423, 1.202940583229065, -0.17501762509346008, 0.07642340660095215, 0.030643664300441742]} +{"t": 6.4885, "q": [-0.3472898602485657, -0.02683102898299694, 0.016244368627667427, 0.6315484046936035, -0.3210740387439728, 0.01990557834506035, -0.3929087221622467, -0.012118448503315449, 0.014141841791570187, 0.6163790225982666, -0.28649356961250305, 0.013718152418732643, 0.0017543383873999119, 0.09694603085517883, -0.05141611024737358, -0.4614526033401489, 0.38546061515808105, -0.6197642087936401, -0.4381672441959381, -0.3394651710987091, -0.8729549646377563, -0.00033555831760168076, 0.18063822388648987, -0.1509772688150406, 0.030236199498176575, 1.2030484676361084, -0.17504160106182098, 0.07642340660095215, 0.030655648559331894]} +{"t": 6.5054, "q": [-0.34730687737464905, -0.026669109240174294, 0.016177410259842873, 0.6315398812294006, -0.32145851850509644, 0.019214197993278503, -0.39315587282180786, -0.011896872892975807, 0.01412845030426979, 0.6165324449539185, -0.2865222096443176, 0.013653310015797615, 0.0016338112764060497, 0.09925274550914764, -0.052152007818222046, -0.46261507272720337, 0.3907456696033478, -0.6323356628417969, -0.4455614984035492, -0.3501071631908417, -0.872978925704956, 0.0020732709672302008, 0.18067418038845062, -0.15215171873569489, 0.03021223098039627, 1.2032042741775513, -0.17505358159542084, 0.07642340660095215, 0.030643664300441742]} +{"t": 6.5221, "q": [-0.3471875786781311, -0.026541277766227722, 0.016177410259842873, 0.6315398812294006, -0.3215574324131012, 0.01903926394879818, -0.3932666480541229, -0.011709386482834816, 0.014155233278870583, 0.6167113780975342, -0.2865426540374756, 0.01360285747796297, 0.0012990138493478298, 0.10114113986492157, -0.052419763058423996, -0.46325021982192993, 0.3961026072502136, -0.644212007522583, -0.4525722861289978, -0.36114463210105896, -0.8729309439659119, 0.0031398669816553593, 0.18075807392597198, -0.15332618355751038, 0.030224215239286423, 1.2033120393753052, -0.17502960562705994, 0.07642340660095215, 0.030655648559331894]} +{"t": 6.5388, "q": [-0.3472216725349426, -0.026447534561157227, 0.016164017841219902, 0.6315398812294006, -0.32232820987701416, 0.01767623797059059, -0.3934711813926697, -0.011649731546640396, 0.014155233278870583, 0.6167625188827515, -0.2866044044494629, 0.013523821718990803, 0.0011383111122995615, 0.1034834086894989, -0.05297977849841118, -0.4640291929244995, 0.4014955163002014, -0.6588088274002075, -0.4598586857318878, -0.3709716796875, -0.8729069828987122, 0.004673847928643227, 0.18075807392597198, -0.15451261401176453, 0.03021223098039627, 1.2034438848495483, -0.17510151863098145, 0.076435387134552, 0.030679617077112198]} +{"t": 6.5558, "q": [-0.34725576639175415, -0.02640492282807827, 0.016204193234443665, 0.6314972639083862, -0.32323500514030457, 0.016072677448391914, -0.393633097410202, -0.011598599143326283, 0.014235584996640682, 0.6167369484901428, -0.2866169214248657, 0.01353113166987896, 0.0008838651119731367, 0.10560502856969833, -0.053358159959316254, -0.46434077620506287, 0.4060734808444977, -0.6739928126335144, -0.4679240882396698, -0.38331544399261475, -0.872835099697113, 0.006004096940159798, 0.1807820349931717, -0.1555911898612976, 0.030224215239286423, 1.2035157680511475, -0.1750895380973816, 0.076435387134552, 0.030667632818222046]} +{"t": 6.5725, "q": [-0.34726428985595703, -0.02640492282807827, 0.016244368627667427, 0.6314716935157776, -0.32330918312072754, 0.01595599204301834, -0.393777996301651, -0.01161564327776432, 0.014275760389864445, 0.6167625188827515, -0.28660860657691956, 0.01353108324110508, 0.0007499461644329131, 0.10748424381017685, -0.05363612249493599, -0.4648800790309906, 0.40938112139701843, -0.6877986788749695, -0.4752703905105591, -0.3934421241283417, -0.873062789440155, 0.008197209797799587, 0.1807820349931717, -0.15663382411003113, 0.03026016801595688, 1.2038394212722778, -0.17504160106182098, 0.076435387134552, 0.030739538371562958]} +{"t": 6.5893, "q": [-0.34729838371276855, -0.026421967893838882, 0.016351504251360893, 0.6314205527305603, -0.32332155108451843, 0.015934115275740623, -0.3938632011413574, -0.011658254079520702, 0.01436950359493494, 0.6167710423469543, -0.2866128981113434, 0.013552801683545113, 0.0005892434273846447, 0.10907582193613052, -0.05378089100122452, -0.4653834104537964, 0.41314417123794556, -0.7039533853530884, -0.4839589595794678, -0.4045275151729584, -0.8733983635902405, 0.011684619821608067, 0.1807820349931717, -0.15749669075012207, 0.03027215227484703, 1.204594373703003, -0.17505358159542084, 0.076435387134552, 0.03075152263045311]} +{"t": 6.6061, "q": [-0.34735801815986633, -0.026421967893838882, 0.01645863987505436, 0.6313949823379517, -0.32331740856170654, 0.015955913811922073, -0.39394843578338623, -0.011709386482834816, 0.01453020703047514, 0.6168051362037659, -0.2866213917732239, 0.013581800274550915, 0.0005624596378766, 0.11019884794950485, -0.053771715611219406, -0.4654792845249176, 0.4158046841621399, -0.7189456820487976, -0.49220409989356995, -0.4141508638858795, -0.8735901117324829, 0.015052187256515026, 0.18059028685092926, -0.15814383327960968, 0.030308105051517487, 1.2054332494735718, -0.1750895380973816, 0.07642340660095215, 0.030775491148233414]} +{"t": 6.6229, "q": [-0.34753698110580444, -0.026481622830033302, 0.016512207686901093, 0.6313779950141907, -0.32332155108451843, 0.015948627144098282, -0.3941103518009186, -0.011786085553467274, 0.014623950235545635, 0.616796612739563, -0.28664645552635193, 0.01361091248691082, 0.00036158118746243417, 0.11071068793535233, -0.05365366488695145, -0.46641406416893005, 0.41784200072288513, -0.7340817451477051, -0.49976617097854614, -0.4245172142982483, -0.8737818598747253, 0.017616810277104378, 0.18038655817508698, -0.15834756195545197, 0.030284136533737183, 1.2059366703033447, -0.1750655621290207, 0.076435387134552, 0.030787475407123566]} +{"t": 6.6396, "q": [-0.3476903736591339, -0.026481622830033302, 0.016766652464866638, 0.6312245726585388, -0.32334211468696594, 0.015941215679049492, -0.394340455532074, -0.011803129687905312, 0.014851612038910389, 0.6167710423469543, -0.2866382598876953, 0.013625303283333778, 0.00012052706006215885, 0.11088355630636215, -0.053570155054330826, -0.4664020836353302, 0.42075416445732117, -0.7494574785232544, -0.5092217326164246, -0.43439221382141113, -0.8737578988075256, 0.01998968794941902, 0.18029068410396576, -0.15840749442577362, 0.03027215227484703, 1.2059965133666992, -0.1750655621290207, 0.07642340660095215, 0.03081144392490387]} +{"t": 6.6566, "q": [-0.34784379601478577, -0.026541277766227722, 0.01680682972073555, 0.6312160491943359, -0.32335034012794495, 0.015970196574926376, -0.39440861344337463, -0.011803129687905312, 0.014905179850757122, 0.6167539954185486, -0.2866508662700653, 0.013647106476128101, 0.0003883649769704789, 0.1108609139919281, -0.05356390401721001, -0.4661024808883667, 0.4235464930534363, -0.7620289325714111, -0.5160766839981079, -0.4432365596294403, -0.8738537430763245, 0.021631525829434395, 0.18041053414344788, -0.158359557390213, 0.030296120792627335, 1.206152319908142, -0.17504160106182098, 0.076435387134552, 0.03082342818379402]} +{"t": 6.6733, "q": [-0.3480483293533325, -0.026566844433546066, 0.016686301678419113, 0.6312075257301331, -0.32336267828941345, 0.015991870313882828, -0.3944171369075775, -0.011871307156980038, 0.01479804515838623, 0.6166858673095703, -0.2866719365119934, 0.013697871007025242, 0.000709770480170846, 0.11084578186273575, -0.05355316027998924, -0.46604254841804504, 0.4268421530723572, -0.7719998359680176, -0.522560179233551, -0.4498758316040039, -0.8742252588272095, 0.02275804430246353, 0.18036259710788727, -0.15834756195545197, 0.030284136533737183, 1.2068114280700684, -0.17505358159542084, 0.07642340660095215, 0.030847394838929176]} +{"t": 6.69, "q": [-0.34822729229927063, -0.026694675907492638, 0.01664612628519535, 0.6312075257301331, -0.32337912917137146, 0.016020771116018295, -0.39440008997917175, -0.01200766023248434, 0.01471769344061613, 0.6166176795959473, -0.2867305874824524, 0.013785111717879772, 0.001379365217871964, 0.11079305410385132, -0.05355500802397728, -0.4658747613430023, 0.4312763214111328, -0.7809041142463684, -0.5302659869194031, -0.4563113749027252, -0.8743690848350525, 0.023752734065055847, 0.18029068410396576, -0.1583116203546524, 0.030284136533737183, 1.2077462673187256, -0.17502960562705994, 0.07642340660095215, 0.03081144392490387]} +{"t": 6.707, "q": [-0.34832102060317993, -0.02694181725382805, 0.016592558473348618, 0.6312160491943359, -0.3233873248100281, 0.01606426201760769, -0.394340455532074, -0.012229235842823982, 0.014664125628769398, 0.6165494918823242, -0.2868020236492157, 0.01392305176705122, 0.002316797850653529, 0.11077035963535309, -0.05353889614343643, -0.46581485867500305, 0.4352550804615021, -0.7888496518135071, -0.5360663533210754, -0.46359777450561523, -0.8745728135108948, 0.02442385070025921, 0.1803026646375656, -0.15832360088825226, 0.03032008931040764, 1.2081776857376099, -0.17507754266262054, 0.076435387134552, 0.03081144392490387]} +{"t": 6.7238, "q": [-0.34845736622810364, -0.02713782526552677, 0.01661934331059456, 0.6312160491943359, -0.3233625888824463, 0.01612251251935959, -0.394340455532074, -0.012518987990915775, 0.014623950235545635, 0.61656653881073, -0.2869364023208618, 0.014169950969517231, 0.002651595277711749, 0.11077035963535309, -0.05353889614343643, -0.4658028781414032, 0.4383949339389801, -0.7954649329185486, -0.5422142744064331, -0.47145941853523254, -0.8743451237678528, 0.02460361458361149, 0.18029068410396576, -0.1583116203546524, 0.03033207356929779, 1.2083454132080078, -0.1750895380973816, 0.076435387134552, 0.03081144392490387]} +{"t": 6.7405, "q": [-0.3485255539417267, -0.027504276484251022, 0.016699694097042084, 0.6311990022659302, -0.3233749270439148, 0.01615871675312519, -0.3943234086036682, -0.01287691667675972, 0.014677518047392368, 0.61656653881073, -0.2870498299598694, 0.014380541630089283, 0.002611419651657343, 0.11074770987033844, -0.053532641381025314, -0.46561112999916077, 0.44163069128990173, -0.8032426834106445, -0.5490332841873169, -0.47856608033180237, -0.8742372393608093, 0.024711472913622856, 0.17994314432144165, -0.15832360088825226, 0.03033207356929779, 1.2083693742752075, -0.17510151863098145, 0.07647134363651276, 0.03081144392490387]} +{"t": 6.7573, "q": [-0.34854260087013245, -0.027742896229028702, 0.016913963481783867, 0.6312330961227417, -0.32336658239364624, 0.016303950920701027, -0.3942722678184509, -0.013234845362603664, 0.014690909534692764, 0.6166262030601501, -0.28716304898262024, 0.01456220168620348, 0.002691771136596799, 0.11074765771627426, -0.053522784262895584, -0.46449658274650574, 0.4443870484828949, -0.8123387098312378, -0.5544261932373047, -0.4838990569114685, -0.8747046589851379, 0.024747425690293312, 0.1798832267522812, -0.15832360088825226, 0.030308105051517487, 1.2083693742752075, -0.17510151863098145, 0.07647134363651276, 0.03081144392490387]} +{"t": 6.774, "q": [-0.3485255539417267, -0.027955947443842888, 0.017101449891924858, 0.6312416195869446, -0.3233458995819092, 0.016456514596939087, -0.39421260356903076, -0.01347346417605877, 0.01471769344061613, 0.6166688203811646, -0.28730154037475586, 0.014801904559135437, 0.002651595277711749, 0.11067968606948853, -0.0534941703081131, -0.46214768290519714, 0.4461846947669983, -0.8192057013511658, -0.5602625012397766, -0.4887886047363281, -0.8747166395187378, 0.02455567754805088, 0.17982329428195953, -0.15827566385269165, 0.030308105051517487, 1.2083814144134521, -0.17510151863098145, 0.07647134363651276, 0.03081144392490387]} +{"t": 6.7907, "q": [-0.3485255539417267, -0.028066735714673996, 0.01730232872068882, 0.6312586665153503, -0.3233005106449127, 0.016565727069973946, -0.394152969121933, -0.013686517253518105, 0.014744477346539497, 0.616634726524353, -0.28739386796951294, 0.014961713925004005, 0.0026649872306734324, 0.11047571897506714, -0.05339847505092621, -0.45961901545524597, 0.44806620478630066, -0.8278582692146301, -0.5668898224830627, -0.49409762024879456, -0.8747765421867371, 0.024591630324721336, 0.17975139617919922, -0.15811987221240997, 0.030308105051517487, 1.2083934545516968, -0.1750895380973816, 0.076435387134552, 0.030775491148233414]} +{"t": 6.8075, "q": [-0.3485255539417267, -0.028169000521302223, 0.01747642457485199, 0.6313609480857849, -0.32329633831977844, 0.016645608469843864, -0.3940506875514984, -0.013805827125906944, 0.014771261252462864, 0.6166432499885559, -0.2874106466770172, 0.014990760013461113, 0.002718554809689522, 0.11013548076152802, -0.05319647490978241, -0.45710232853889465, 0.44919273257255554, -0.835108757019043, -0.5727860331535339, -0.49946656823158264, -0.8747286200523376, 0.024591630324721336, 0.17964354157447815, -0.15790414810180664, 0.03033207356929779, 1.2084174156188965, -0.17507754266262054, 0.0764593556523323, 0.030799459666013718]} +{"t": 6.8242, "q": [-0.3485511243343353, -0.02833092212677002, 0.017583558335900307, 0.6314035058021545, -0.3231067657470703, 0.016980886459350586, -0.39402511715888977, -0.013933658599853516, 0.014731084927916527, 0.6167284250259399, -0.2874107360839844, 0.015005216933786869, 0.0030399602837860584, 0.10970460623502731, -0.05295967683196068, -0.45546048879623413, 0.45025932788848877, -0.8401301503181458, -0.5766090154647827, -0.5042961835861206, -0.8747525811195374, 0.02460361458361149, 0.17966750264167786, -0.15782026946544647, 0.030344057828187943, 1.2084174156188965, -0.1750655621290207, 0.076435387134552, 0.03081144392490387]} +{"t": 6.841, "q": [-0.3486533761024475, -0.028424665331840515, 0.017596950754523277, 0.6314716935157776, -0.32305318117141724, 0.01706111989915371, -0.39398252964019775, -0.014027401804924011, 0.014731084927916527, 0.6167369484901428, -0.28741082549095154, 0.015019673854112625, 0.003441717242822051, 0.10905492305755615, -0.052675746381282806, -0.45433396100997925, 0.45163750648498535, -0.8466016054153442, -0.5803840160369873, -0.511294960975647, -0.8747166395187378, 0.02454369328916073, 0.179655522108078, -0.15760454535484314, 0.030344057828187943, 1.2085132598876953, -0.1750895380973816, 0.0764593556523323, 0.030787475407123566]} +{"t": 6.8579, "q": [-0.3486618995666504, -0.028543975204229355, 0.01763712614774704, 0.6315228343009949, -0.32303670048713684, 0.017104797065258026, -0.393965482711792, -0.014112623408436775, 0.01471769344061613, 0.6168136596679688, -0.28741922974586487, 0.015034214593470097, 0.0035354604478925467, 0.10822350531816483, -0.05226340517401695, -0.45241647958755493, 0.452524334192276, -0.8526776432991028, -0.5843268632888794, -0.5168796181678772, -0.8744409680366516, 0.02431599237024784, 0.179655522108078, -0.15744875371456146, 0.03039199486374855, 1.208597183227539, -0.17507754266262054, 0.0764593556523323, 0.030787475407123566]} +{"t": 6.8746, "q": [-0.34867894649505615, -0.028612151741981506, 0.017690693959593773, 0.6316251158714294, -0.32302430272102356, 0.017112145200371742, -0.39393138885498047, -0.014197844080626965, 0.01471769344061613, 0.6169329881668091, -0.28741511702537537, 0.015041428618133068, 0.0036425956059247255, 0.1073765680193901, -0.05180154740810394, -0.44969606399536133, 0.4529198110103607, -0.8570758104324341, -0.5883415937423706, -0.52001953125, -0.8743690848350525, 0.023908529430627823, 0.1795596480369568, -0.15732890367507935, 0.030368026345968246, 1.208597183227539, -0.1750655621290207, 0.07647134363651276, 0.030787475407123566]} +{"t": 6.8913, "q": [-0.34872156381607056, -0.02863771840929985, 0.017717478796839714, 0.6317103505134583, -0.32302430272102356, 0.017112145200371742, -0.39393991231918335, -0.014223410747945309, 0.014690909534692764, 0.6169670820236206, -0.28741520643234253, 0.015055885538458824, 0.0037095551379024982, 0.10637956112623215, -0.05146905779838562, -0.446208655834198, 0.45313555002212524, -0.8611025214195251, -0.5911338925361633, -0.5223084688186646, -0.8749203681945801, 0.023572970181703568, 0.17949973046779633, -0.15716113150119781, 0.030415963381528854, 1.2086570262908936, -0.17510151863098145, 0.07650729268789291, 0.030787475407123566]} +{"t": 6.9083, "q": [-0.34872156381607056, -0.028654761612415314, 0.017690693959593773, 0.6317870020866394, -0.32306140661239624, 0.017075588926672935, -0.39388877153396606, -0.014240454882383347, 0.014637341722846031, 0.6170693039894104, -0.28742343187332153, 0.015041476115584373, 0.004151487722992897, 0.10514029115438461, -0.051025599241256714, -0.44205012917518616, 0.45350706577301025, -0.8651891350746155, -0.5944535136222839, -0.5251367688179016, -0.8753398060798645, 0.023213444277644157, 0.17942781746387482, -0.1571131944656372, 0.030415963381528854, 1.208704948425293, -0.17512547969818115, 0.07650729268789291, 0.030775491148233414]} +{"t": 6.925, "q": [-0.3487045168876648, -0.028654761612415314, 0.01766391098499298, 0.6318551898002625, -0.32305729389190674, 0.01703932136297226, -0.39379504323005676, -0.014257499016821384, 0.01453020703047514, 0.6171545386314392, -0.28742343187332153, 0.015041476115584373, 0.004553244449198246, 0.10371199250221252, -0.05053780600428581, -0.4372684359550476, 0.45408228039741516, -0.8703303933143616, -0.5981446504592896, -0.5293192863464355, -0.8760108947753906, 0.02287788689136505, 0.179284006357193, -0.1569933444261551, 0.03039199486374855, 1.2087528705596924, -0.17510151863098145, 0.07650729268789291, 0.030775491148233414]} +{"t": 6.9418, "q": [-0.3487045168876648, -0.028663283213973045, 0.01765051856637001, 0.6319233775138855, -0.32306554913520813, 0.017039241269230843, -0.3937694728374481, -0.014274543151259422, 0.01444985531270504, 0.6173335313796997, -0.28742343187332153, 0.015041476115584373, 0.0051424880512058735, 0.10195945203304291, -0.050167109817266464, -0.43146806955337524, 0.4541901648044586, -0.8733384013175964, -0.6014882922172546, -0.5322314500808716, -0.8761187791824341, 0.022110896185040474, 0.17914019525051117, -0.15690946578979492, 0.03043993189930916, 1.2089086771011353, -0.1750895380973816, 0.07648332417011261, 0.030739538371562958]} +{"t": 6.9586, "q": [-0.3486959934234619, -0.028663283213973045, 0.017543382942676544, 0.631957471370697, -0.32306143641471863, 0.017032016068696976, -0.39375242590904236, -0.014274543151259422, 0.014302544295787811, 0.6173676252365112, -0.2874484062194824, 0.015056131407618523, 0.0055978125892579556, 0.10005573183298111, -0.04977899417281151, -0.4257875382900238, 0.4546455442905426, -0.8767778873443604, -0.6052632927894592, -0.5353713035583496, -0.8759989142417908, 0.02076866291463375, 0.17891250550746918, -0.1568135917186737, 0.03043993189930916, 1.2089686393737793, -0.17505358159542084, 0.07653126120567322, 0.030775491148233414]} +{"t": 6.9754, "q": [-0.34868746995925903, -0.028654761612415314, 0.01750320754945278, 0.6319915652275085, -0.3230820298194885, 0.016995582729578018, -0.39370980858802795, -0.014300109818577766, 0.014101666398346424, 0.6173591017723083, -0.28744831681251526, 0.015041674487292767, 0.005919218063354492, 0.09818998724222183, -0.04956768825650215, -0.420766144990921, 0.4555923044681549, -0.8809484243392944, -0.608487069606781, -0.5374325513839722, -0.8757352828979492, 0.01918674446642399, 0.17874471843242645, -0.15637017786502838, 0.030523821711540222, 1.2090765237808228, -0.17510151863098145, 0.07651928067207336, 0.030775491148233414]} +{"t": 6.9921, "q": [-0.3486959934234619, -0.02863771840929985, 0.017436247318983078, 0.6320597529411316, -0.3231644630432129, 0.01684979535639286, -0.39366719126701355, -0.014283065684139729, 0.013954355381429195, 0.6174272894859314, -0.28744423389434814, 0.015048869885504246, 0.006200447678565979, 0.09646865725517273, -0.04961681738495827, -0.4168473184108734, 0.4571382701396942, -0.8864970803260803, -0.6105843186378479, -0.5383194088935852, -0.8756393790245056, 0.01732918992638588, 0.17858892679214478, -0.15578293800354004, 0.030559774488210678, 1.2093161344528198, -0.17507754266262054, 0.07654324918985367, 0.03076350688934326]} +{"t": 7.0089, "q": [-0.34867042303085327, -0.028646240010857582, 0.017409464344382286, 0.6321704983711243, -0.3231686055660248, 0.01684250868856907, -0.3935478925704956, -0.014274543151259422, 0.013699909672141075, 0.6174358129501343, -0.28744423389434814, 0.015048869885504246, 0.006642380263656378, 0.09485269337892532, -0.04966262727975845, -0.41454634070396423, 0.4593912959098816, -0.8931723237037659, -0.6123340129852295, -0.5385470986366272, -0.8753158450126648, 0.016118783503770828, 0.1784810721874237, -0.15518373250961304, 0.03057175874710083, 1.209891438484192, -0.17510151863098145, 0.07654324918985367, 0.030787475407123566]} +{"t": 7.0256, "q": [-0.3486533761024475, -0.028620673343539238, 0.017382681369781494, 0.6323153972625732, -0.3231562376022339, 0.016849856823682785, -0.39343708753585815, -0.01429158728569746, 0.013499030843377113, 0.6174528002738953, -0.28744423389434814, 0.015048869885504246, 0.006776299327611923, 0.093553327023983, -0.04968682676553726, -0.41307228803634644, 0.4624113440513611, -0.8975945115089417, -0.6141915321350098, -0.5383194088935852, -0.8746806383132935, 0.014452975243330002, 0.178181454539299, -0.1546444445848465, 0.030619695782661438, 1.2102628946304321, -0.175137460231781, 0.07654324918985367, 0.030787475407123566]} +{"t": 7.0424, "q": [-0.3486193120479584, -0.028603628277778625, 0.017382681369781494, 0.6323921084403992, -0.32320156693458557, 0.016769684851169586, -0.3933263123035431, -0.014300109818577766, 0.013405287638306618, 0.6174272894859314, -0.2874484062194824, 0.015056131407618523, 0.006776299327611923, 0.09248116612434387, -0.0498310811817646, -0.41224536299705505, 0.4664979577064514, -0.9013455510139465, -0.6163247227668762, -0.5380677580833435, -0.8744289875030518, 0.012595420703291893, 0.17791780829429626, -0.1542969048023224, 0.030655648559331894, 1.2103108167648315, -0.17510151863098145, 0.07655522972345352, 0.03081144392490387]} +{"t": 7.0591, "q": [-0.34854260087013245, -0.028561018407344818, 0.01730232872068882, 0.6324347257614136, -0.32319745421409607, 0.016776971518993378, -0.39324960112571716, -0.014308631420135498, 0.013405287638306618, 0.6174102425575256, -0.2874318063259125, 0.015055999159812927, 0.006736123468726873, 0.09189286082983017, -0.05004878714680672, -0.41194576025009155, 0.4707403779029846, -0.9031791687011719, -0.6173673868179321, -0.5379838347434998, -0.8743571043014526, 0.011037471704185009, 0.17769010365009308, -0.15396134555339813, 0.030643664300441742, 1.2103228569030762, -0.175137460231781, 0.07654324918985367, 0.030787475407123566]} +{"t": 7.0758, "q": [-0.3484744131565094, -0.028535451740026474, 0.017181802541017532, 0.6325029134750366, -0.32320159673690796, 0.016755172982811928, -0.3931388258934021, -0.014308631420135498, 0.013405287638306618, 0.6173931956291199, -0.28741949796676636, 0.015077603980898857, 0.00676290737465024, 0.09164425730705261, -0.050219327211380005, -0.4121015667915344, 0.47427570819854736, -0.9037304520606995, -0.6173554062843323, -0.5380437970161438, -0.8743810653686523, 0.009695238433778286, 0.17766614258289337, -0.15375761687755585, 0.030655648559331894, 1.2103828191757202, -0.1751853972673416, 0.07656721770763397, 0.030787475407123566]} +{"t": 7.0925, "q": [-0.3484233021736145, -0.028535451740026474, 0.017047883942723274, 0.6325880885124207, -0.32320570945739746, 0.016762398183345795, -0.3930536210536957, -0.014419419690966606, 0.013432071544229984, 0.6174358129501343, -0.28740718960762024, 0.015099190175533295, 0.006736123468726873, 0.09163690358400345, -0.050263382494449615, -0.4122573435306549, 0.47729572653770447, -0.903766393661499, -0.6175111532211304, -0.538187563419342, -0.8743930459022522, 0.008676579222083092, 0.17765416204929352, -0.15356586873531342, 0.030655648559331894, 1.2104547023773193, -0.17512547969818115, 0.07655522972345352, 0.030775491148233414]} +{"t": 7.1093, "q": [-0.348389208316803, -0.02851840853691101, 0.01699431613087654, 0.6325880885124207, -0.32320982217788696, 0.01676962338387966, -0.39306211471557617, -0.014513162896037102, 0.01345885545015335, 0.6174528002738953, -0.2873823642730713, 0.01511346735060215, 0.006749515421688557, 0.09165960550308228, -0.05026941001415253, -0.4122573435306549, 0.47999218106269836, -0.9037424325942993, -0.6176429986953735, -0.5382355451583862, -0.8743690848350525, 0.007729825098067522, 0.17779795825481415, -0.1533980816602707, 0.03063168004155159, 1.2105984687805176, -0.1751134991645813, 0.07656721770763397, 0.03076350688934326]} +{"t": 7.126, "q": [-0.34840625524520874, -0.028535451740026474, 0.01699431613087654, 0.6326051354408264, -0.32319337129592896, 0.016755234450101852, -0.3930536210536957, -0.014598383568227291, 0.01345885545015335, 0.6174358129501343, -0.28737005591392517, 0.015135053545236588, 0.006816474720835686, 0.09166713804006577, -0.050264839082956314, -0.4122573435306549, 0.48271259665489197, -0.9036345481872559, -0.6177029013633728, -0.5382714867591858, -0.8743571043014526, 0.0063037024810910225, 0.1778818517923355, -0.1531224399805069, 0.030499853193759918, 1.2106703519821167, -0.17501762509346008, 0.07657919824123383, 0.030799459666013718]} +{"t": 7.1429, "q": [-0.3484233021736145, -0.028543975204229355, 0.016873788088560104, 0.6326051354408264, -0.32321396470069885, 0.016733312979340553, -0.39307916164398193, -0.014598383568227291, 0.013432071544229984, 0.6173931956291199, -0.28736183047294617, 0.015149444341659546, 0.00676290737465024, 0.0916520208120346, -0.050264108926057816, -0.41234123706817627, 0.48588842153549194, -0.9027717113494873, -0.6175830960273743, -0.5387508273124695, -0.8741294145584106, 0.00512924836948514, 0.1779058277606964, -0.15297862887382507, 0.030547790229320526, 1.2107423543930054, -0.17505358159542084, 0.07655522972345352, 0.03076350688934326]} +{"t": 7.1597, "q": [-0.3484658896923065, -0.02851840853691101, 0.016739869490265846, 0.6326051354408264, -0.3232634365558624, 0.01663132570683956, -0.393147349357605, -0.014598383568227291, 0.013405287638306618, 0.6173505783081055, -0.2873702347278595, 0.0151639673858881, 0.006588812451809645, 0.09164444357156754, -0.0502588115632534, -0.41238918900489807, 0.49003496766090393, -0.9018968343734741, -0.6175471544265747, -0.5388227701187134, -0.8739855885505676, 0.004062652587890625, 0.17786987125873566, -0.1528228372335434, 0.03057175874710083, 1.2107902765274048, -0.17507754266262054, 0.07657919824123383, 0.03075152263045311]} +{"t": 7.1764, "q": [-0.3484744131565094, -0.028492841869592667, 0.016699694097042084, 0.6325966119766235, -0.3233252465724945, 0.016521988436579704, -0.3931729197502136, -0.014581339433789253, 0.013405287638306618, 0.6173420548439026, -0.2873743176460266, 0.01515677198767662, 0.00646828580647707, 0.09165960550308228, -0.05026941001415253, -0.41249704360961914, 0.493090957403183, -0.9009620547294617, -0.617463231086731, -0.5387988090515137, -0.8739376664161682, 0.002660498023033142, 0.17777399718761444, -0.15275093913078308, 0.030559774488210678, 1.2108261585235596, -0.17507754266262054, 0.07657919824123383, 0.03075152263045311]} +{"t": 7.1932, "q": [-0.3484658896923065, -0.028467275202274323, 0.01665951870381832, 0.6325966119766235, -0.323337584733963, 0.016529152169823647, -0.3932325839996338, -0.014581339433789253, 0.013418679125607014, 0.6173420548439026, -0.2873743176460266, 0.01515677198767662, 0.006454893853515387, 0.09165206551551819, -0.05027398094534874, -0.41307228803634644, 0.49502041935920715, -0.9000632762908936, -0.6175950765609741, -0.5386430025100708, -0.8739376664161682, 0.0010665960144251585, 0.1778578907251358, -0.15263108909130096, 0.030559774488210678, 1.210862159729004, -0.17507754266262054, 0.07657919824123383, 0.03075152263045311]} +{"t": 7.2099, "q": [-0.3484744131565094, -0.02845875360071659, 0.016565775498747826, 0.6326051354408264, -0.3233417272567749, 0.016521865501999855, -0.3932325839996338, -0.014564295299351215, 0.013284760527312756, 0.6173079609870911, -0.28738683462142944, 0.015164099633693695, 0.00646828580647707, 0.09168235212564468, -0.05028531327843666, -0.414306640625, 0.49656638503074646, -0.8996677994728088, -0.617834746837616, -0.5385111570358276, -0.8739855885505676, -0.0003954794374294579, 0.17782193422317505, -0.1525951325893402, 0.030559774488210678, 1.210874080657959, -0.17512547969818115, 0.07656721770763397, 0.03075152263045311]} +{"t": 7.2267, "q": [-0.34849998354911804, -0.02838205359876156, 0.016418464481830597, 0.6325880885124207, -0.3233582079410553, 0.016492700204253197, -0.3932325839996338, -0.014547251164913177, 0.013124058023095131, 0.6172909140586853, -0.2873867452144623, 0.015149642713367939, 0.00642810994759202, 0.09168984740972519, -0.05027087405323982, -0.4161042869091034, 0.498435914516449, -0.9002909660339355, -0.6182781457901001, -0.5378040671348572, -0.873889684677124, -0.0028043086640536785, 0.17779795825481415, -0.15239140391349792, 0.030559774488210678, 1.2109100818634033, -0.1751853972673416, 0.07657919824123383, 0.03075152263045311]} +{"t": 7.2434, "q": [-0.3485170304775238, -0.028288310393691063, 0.016257761046290398, 0.6325710415840149, -0.3233540654182434, 0.01651451736688614, -0.39324110746383667, -0.014479073695838451, 0.013016922399401665, 0.6172227263450623, -0.2873951196670532, 0.015164165757596493, 0.006254015490412712, 0.09166713804006577, -0.050264839082956314, -0.41756635904312134, 0.5003054738044739, -0.9016332030296326, -0.618721604347229, -0.5365457534790039, -0.8735541701316833, -0.006363623775541782, 0.17767812311649323, -0.1522475928068161, 0.030559774488210678, 1.2109100818634033, -0.17510151863098145, 0.07661515474319458, 0.030739538371562958]} +{"t": 7.2602, "q": [-0.34849146008491516, -0.028228655457496643, 0.016230978071689606, 0.6325369477272034, -0.3233540654182434, 0.01651451736688614, -0.3932666480541229, -0.014419419690966606, 0.012949963100254536, 0.6172056794166565, -0.28741583228111267, 0.015157120302319527, 0.006120096426457167, 0.0916823074221611, -0.050275444984436035, -0.41835731267929077, 0.5022109150886536, -0.9037783741950989, -0.6190571188926697, -0.5356588959693909, -0.8734942078590393, -0.010162622667849064, 0.1775582879781723, -0.15223561227321625, 0.030547790229320526, 1.2108981609344482, -0.17510151863098145, 0.07657919824123383, 0.03075152263045311]} +{"t": 7.277, "q": [-0.34849998354911804, -0.028134912252426147, 0.01611045002937317, 0.6324858665466309, -0.3233540654182434, 0.01651451736688614, -0.3932836949825287, -0.014342720620334148, 0.01285621989518404, 0.6171886324882507, -0.2874240577220917, 0.01514271181076765, 0.0060933125205338, 0.09168989211320877, -0.05028074234724045, -0.41963961720466614, 0.5037689208984375, -0.9069421887397766, -0.6198241114616394, -0.5354431867599487, -0.8734702467918396, -0.01318264752626419, 0.17752233147621155, -0.15212775766849518, 0.030547790229320526, 1.210934042930603, -0.1750895380973816, 0.07662713527679443, 0.030739538371562958]} +{"t": 7.2939, "q": [-0.34849998354911804, -0.02803264744579792, 0.016056882217526436, 0.6323494911193848, -0.3233499526977539, 0.016507292166352272, -0.39330926537513733, -0.014248977415263653, 0.012816044501960278, 0.6171630620956421, -0.2874240577220917, 0.01514271181076765, 0.005624596029520035, 0.09172766655683517, -0.05027763172984123, -0.42158108949661255, 0.5055785179138184, -0.9098303914070129, -0.6213940382003784, -0.535275399684906, -0.8732665181159973, -0.017353158444166183, 0.17736653983592987, -0.15205584466457367, 0.03057175874710083, 1.210934042930603, -0.17512547969818115, 0.07661515474319458, 0.03075152263045311]} +{"t": 7.3118, "q": [-0.3484829366207123, -0.027938904240727425, 0.016043491661548615, 0.6322813034057617, -0.3233334720134735, 0.016536438837647438, -0.39338597655296326, -0.014112623408436775, 0.012802652083337307, 0.6171630620956421, -0.2874363660812378, 0.015121125616133213, 0.005383542273193598, 0.09175032377243042, -0.050273798406124115, -0.42255181074142456, 0.5080353021621704, -0.9122152328491211, -0.6235392689704895, -0.5350237488746643, -0.872918963432312, -0.021152157336473465, 0.17694708704948425, -0.15205584466457367, 0.030583743005990982, 1.2109100818634033, -0.17510151863098145, 0.07656721770763397, 0.03076350688934326]} +{"t": 7.3285, "q": [-0.3484233021736145, -0.027811072766780853, 0.01593635603785515, 0.6321960687637329, -0.323329359292984, 0.01654372550547123, -0.3934115469455719, -0.01395922526717186, 0.012749084271490574, 0.617171585559845, -0.2874608337879181, 0.015049002133309841, 0.005021960940212011, 0.09178056567907333, -0.050275254994630814, -0.4229952096939087, 0.5112350583076477, -0.9149356484413147, -0.6260679364204407, -0.5341609120368958, -0.8727751970291138, -0.025047030299901962, 0.17657557129859924, -0.15193600952625275, 0.030559774488210678, 1.2109100818634033, -0.17512547969818115, 0.07656721770763397, 0.030775491148233414]} +{"t": 7.3452, "q": [-0.348389208316803, -0.0276747178286314, 0.015909571200609207, 0.6321704983711243, -0.323321133852005, 0.016543786972761154, -0.3934115469455719, -0.0137802604585886, 0.012708908878266811, 0.6171630620956421, -0.28749367594718933, 0.01499142125248909, 0.0045800283551216125, 0.09180326759815216, -0.05028128996491432, -0.42307910323143005, 0.5132484436035156, -0.9167572855949402, -0.627470076084137, -0.5329264998435974, -0.8726792931556702, -0.028510471805930138, 0.1763838231563568, -0.1519240289926529, 0.03057175874710083, 1.2109100818634033, -0.17512547969818115, 0.07660316675901413, 0.030775491148233414]} +{"t": 7.362, "q": [-0.34836363792419434, -0.027580974623560905, 0.015869395807385445, 0.6321534514427185, -0.323321133852005, 0.016543786972761154, -0.3933689296245575, -0.013643906451761723, 0.012641949579119682, 0.6171545386314392, -0.28751009702682495, 0.014962621033191681, 0.004472893197089434, 0.09179568290710449, -0.05027598515152931, -0.42325887084007263, 0.5145546793937683, -0.9179916381835938, -0.6281891465187073, -0.5315243601799011, -0.8726313710212708, -0.0303800106048584, 0.17646771669387817, -0.15187609195709229, 0.030583743005990982, 1.2109100818634033, -0.17510151863098145, 0.07661515474319458, 0.03076350688934326]} +{"t": 7.3787, "q": [-0.34836363792419434, -0.02755540981888771, 0.015829220414161682, 0.6321364045143127, -0.3233170211315155, 0.016536561772227287, -0.39335188269615173, -0.013592774048447609, 0.01244107075035572, 0.6171630620956421, -0.2875141203403473, 0.014940968714654446, 0.0045264605432748795, 0.09181075543165207, -0.05026684328913689, -0.42333078384399414, 0.5155733823776245, -0.91901034116745, -0.6287883520126343, -0.5308532118797302, -0.8726313710212708, -0.03111104853451252, 0.17657557129859924, -0.15188807249069214, 0.03057175874710083, 1.210934042930603, -0.1750655621290207, 0.07656721770763397, 0.030775491148233414]} +{"t": 7.3956, "q": [-0.3483721613883972, -0.02755540981888771, 0.015829220414161682, 0.6321279406547546, -0.3233046531677246, 0.016543928533792496, -0.3933263123035431, -0.013575729914009571, 0.012307152152061462, 0.6171545386314392, -0.2875264286994934, 0.014919382520020008, 0.004633595701307058, 0.09181075543165207, -0.05026684328913689, -0.42321091890335083, 0.5162324905395508, -0.9196694493293762, -0.6297110915184021, -0.5309491157531738, -0.8726433515548706, -0.030967237427830696, 0.17659954726696014, -0.15181615948677063, 0.030607711523771286, 1.2109460830688477, -0.17510151863098145, 0.07657919824123383, 0.030787475407123566]} +{"t": 7.4124, "q": [-0.34836363792419434, -0.02755540981888771, 0.015869395807385445, 0.6321364045143127, -0.3232923150062561, 0.016551276668906212, -0.3932666480541229, -0.013567207381129265, 0.012213408946990967, 0.6171460151672363, -0.28752633929252625, 0.014904925599694252, 0.004727339372038841, 0.0918031707406044, -0.050261545926332474, -0.4231390357017517, 0.5163043737411499, -0.9197413325309753, -0.6310054063796997, -0.5312487483024597, -0.8726553320884705, -0.030236199498176575, 0.17669542133808136, -0.1516963243484497, 0.030583743005990982, 1.2109819650650024, -0.1751134991645813, 0.07660316675901413, 0.030775491148233414]} +{"t": 7.4291, "q": [-0.34835511445999146, -0.027563931420445442, 0.015869395807385445, 0.6321279406547546, -0.3232882022857666, 0.016544051468372345, -0.393215537071228, -0.013567207381129265, 0.012146449647843838, 0.6171119213104248, -0.2875305414199829, 0.014912187121808529, 0.004874649923294783, 0.09179563820362091, -0.05026611313223839, -0.4229232966899872, 0.5161126255989075, -0.9193698167800903, -0.6324315071105957, -0.5339691638946533, -0.8731226921081543, -0.027216175571084023, 0.17685121297836304, -0.15170830488204956, 0.030595727264881134, 1.2110419273376465, -0.1751134991645813, 0.07662713527679443, 0.030775491148233414]} +{"t": 7.4459, "q": [-0.3484829366207123, -0.02755540981888771, 0.015869395807385445, 0.6321279406547546, -0.3232923150062561, 0.016522236168384552, -0.39320701360702515, -0.013567207381129265, 0.012012530118227005, 0.6170523166656494, -0.2875305414199829, 0.014912187121808529, 0.005289798602461815, 0.0918181985616684, -0.05024253576993942, -0.4226476848125458, 0.5153456330299377, -0.9186028242111206, -0.6343609690666199, -0.5387388467788696, -0.8735421895980835, -0.02329733408987522, 0.17683923244476318, -0.1516723483800888, 0.030583743005990982, 1.2112935781478882, -0.17510151863098145, 0.07663912326097488, 0.030775491148233414]} +{"t": 7.4626, "q": [-0.34853407740592957, -0.027572453022003174, 0.015856005251407623, 0.6320682764053345, -0.3232840895652771, 0.016507785767316818, -0.393147349357605, -0.013584252446889877, 0.01185182761400938, 0.6168988943099976, -0.28752222657203674, 0.014912120997905731, 0.005624596029520035, 0.09180312603712082, -0.05025167390704155, -0.42233607172966003, 0.5146625638008118, -0.9144083857536316, -0.6360148191452026, -0.5441916584968567, -0.8737099170684814, -0.018096180632710457, 0.1768631935119629, -0.15168434381484985, 0.030595727264881134, 1.2114014625549316, -0.17510151863098145, 0.07663912326097488, 0.03076350688934326]} +{"t": 7.4794, "q": [-0.3485511243343353, -0.027598019689321518, 0.015869395807385445, 0.6319745182991028, -0.323304682970047, 0.016485845670104027, -0.3930450975894928, -0.013609818182885647, 0.011784868314862251, 0.6167454719543457, -0.28753045201301575, 0.014897730201482773, 0.006079920567572117, 0.09180308133363724, -0.050241805613040924, -0.4215451180934906, 0.5139195322990417, -0.9113044738769531, -0.6370813846588135, -0.5529521703720093, -0.8739016652107239, -0.012379704974591732, 0.1769351065158844, -0.1516244113445282, 0.030559774488210678, 1.2114733457565308, -0.1750895380973816, 0.07662713527679443, 0.030775491148233414]} +{"t": 7.4961, "q": [-0.34857669472694397, -0.02760654129087925, 0.015869395807385445, 0.6319233775138855, -0.3233211636543274, 0.01648574136197567, -0.39302805066108704, -0.013618340715765953, 0.011717909015715122, 0.6166688203811646, -0.2875552475452423, 0.014883453026413918, 0.006454893853515387, 0.09178795665502548, -0.05024107173085213, -0.4202508330345154, 0.5131046175956726, -0.9090873599052429, -0.6378963589668274, -0.5607179403305054, -0.8739136457443237, -0.004649879410862923, 0.1769590675830841, -0.1515764743089676, 0.03057175874710083, 1.2115931510925293, -0.17510151863098145, 0.07666309177875519, 0.03076350688934326]} +{"t": 7.5129, "q": [-0.3486107885837555, -0.027632107958197594, 0.015869395807385445, 0.6317955255508423, -0.3233293890953064, 0.016485678032040596, -0.3930110037326813, -0.01366095058619976, 0.011731300503015518, 0.6165494918823242, -0.2876006066799164, 0.014833217486739159, 0.00676290737465024, 0.09181062132120132, -0.05023723468184471, -0.41936400532722473, 0.5125054121017456, -0.9071099758148193, -0.6380401253700256, -0.5672133564949036, -0.8738657236099243, 0.0020732709672302008, 0.17699502408504486, -0.15158846974372864, 0.03057175874710083, 1.2116531133651733, -0.1750895380973816, 0.07665110379457474, 0.03076350688934326]} +{"t": 7.5297, "q": [-0.34859374165534973, -0.0276747178286314, 0.015869395807385445, 0.6314972639083862, -0.323321133852005, 0.016514763236045837, -0.39301952719688416, -0.013712083920836449, 0.011704516597092152, 0.6164386868476868, -0.287683367729187, 0.014790489338338375, 0.006896826438605785, 0.09181062132120132, -0.05023723468184471, -0.41931605339050293, 0.5119780898094177, -0.906618595123291, -0.6380641460418701, -0.5747394561767578, -0.873206615447998, 0.008161257021129131, 0.176983043551445, -0.15156449377536774, 0.03057175874710083, 1.2119168043136597, -0.17507754266262054, 0.07666309177875519, 0.03075152263045311]} +{"t": 7.5466, "q": [-0.3485255539417267, -0.027691762894392014, 0.015869395807385445, 0.6312160491943359, -0.323312908411026, 0.016514824703335762, -0.39302805066108704, -0.013729128055274487, 0.011758084408938885, 0.6163278818130493, -0.28774914145469666, 0.014689801260828972, 0.006655772216618061, 0.09187095612287521, -0.05021054297685623, -0.4195437431335449, 0.5119780898094177, -0.9071099758148193, -0.6379442811012268, -0.5806357264518738, -0.8720321655273438, 0.01444099098443985, 0.17679129540920258, -0.15148060023784637, 0.030535805970430374, 1.2121803760528564, -0.17507754266262054, 0.07666309177875519, 0.03075152263045311]} +{"t": 7.5634, "q": [-0.3484233021736145, -0.0276747178286314, 0.015909571200609207, 0.6310114860534668, -0.323312908411026, 0.016514824703335762, -0.3930536210536957, -0.01372060552239418, 0.011825043708086014, 0.6163704991340637, -0.2878851890563965, 0.014539021998643875, 0.0064013260416686535, 0.09200670570135117, -0.050148021429777145, -0.41957971453666687, 0.512637197971344, -0.9076492786407471, -0.6377645134925842, -0.5850579142570496, -0.870977520942688, 0.018395785242319107, 0.17673136293888092, -0.15140870213508606, 0.030535805970430374, 1.212192416191101, -0.17507754266262054, 0.07666309177875519, 0.03075152263045311]} +{"t": 7.5802, "q": [-0.34831249713897705, -0.027683241292834282, 0.015896180644631386, 0.6308581233024597, -0.323312908411026, 0.01652933657169342, -0.3930450975894928, -0.013686517253518105, 0.011811652220785618, 0.6163704991340637, -0.2881214916706085, 0.014490306377410889, 0.0062272315844893456, 0.09215767681598663, -0.05011597275733948, -0.4216170310974121, 0.5136559009552002, -0.9087038636207581, -0.6378483772277832, -0.588761031627655, -0.8695034980773926, 0.020421119406819344, 0.17671938240528107, -0.15144465863704681, 0.030547790229320526, 1.2122403383255005, -0.1750655621290207, 0.07666309177875519, 0.030739538371562958]} +{"t": 7.597, "q": [-0.3481846749782562, -0.027649153023958206, 0.01594974845647812, 0.6306024789810181, -0.3232923150062561, 0.016551276668906212, -0.3930365741252899, -0.013652428984642029, 0.011784868314862251, 0.6164301633834839, -0.28830772638320923, 0.01439780555665493, 0.005678163841366768, 0.09237654507160187, -0.05006259307265282, -0.424169659614563, 0.5147344470024109, -0.9122152328491211, -0.6386633515357971, -0.5886890888214111, -0.8666751980781555, 0.020684773102402687, 0.17652763426303864, -0.15145663917064667, 0.030547790229320526, 1.2122763395309448, -0.17507754266262054, 0.07663912326097488, 0.030739538371562958]} +{"t": 7.6137, "q": [-0.3479630947113037, -0.02761506289243698, 0.01598992384970188, 0.6305087208747864, -0.3230903446674347, 0.016893921419978142, -0.3930110037326813, -0.013541641645133495, 0.01177147589623928, 0.6165239214897156, -0.2884310781955719, 0.014210784807801247, 0.005437109619379044, 0.09273145347833633, -0.05001586675643921, -0.4273335039615631, 0.5160647034645081, -0.9162179827690125, -0.6396220922470093, -0.5884853601455688, -0.8636311888694763, 0.02064882032573223, 0.17609620094299316, -0.15151655673980713, 0.030559774488210678, 1.2122523784637451, -0.17505358159542084, 0.07665110379457474, 0.03075152263045311]} +{"t": 7.6305, "q": [-0.34780970215797424, -0.027529843151569366, 0.016003314405679703, 0.6304234862327576, -0.3230985999107361, 0.01687934808433056, -0.3930024802684784, -0.013371199369430542, 0.011731300503015518, 0.616634726524353, -0.28854602575302124, 0.014009257778525352, 0.005289798602461815, 0.09304922074079514, -0.05010056868195534, -0.43096473813056946, 0.517335057258606, -0.9202207326889038, -0.6414676308631897, -0.5878022909164429, -0.859832227230072, 0.020181436091661453, 0.1757366806268692, -0.15148060023784637, 0.030535805970430374, 1.2122523784637451, -0.1750895380973816, 0.07663912326097488, 0.03076350688934326]} +{"t": 7.6473, "q": [-0.3475966453552246, -0.02735939994454384, 0.016056882217526436, 0.6303041577339172, -0.3231150805950165, 0.0168356541544199, -0.39296838641166687, -0.013132579624652863, 0.011704516597092152, 0.6167028546333313, -0.28863653540611267, 0.01387981791049242, 0.004767514765262604, 0.0933520644903183, -0.050224050879478455, -0.43471577763557434, 0.5188330411911011, -0.923803985118866, -0.6443917751312256, -0.5875266194343567, -0.8543673753738403, 0.019666112959384918, 0.17553295195102692, -0.15146861970424652, 0.030559774488210678, 1.2122282981872559, -0.17507754266262054, 0.07662713527679443, 0.030775491148233414]} +{"t": 7.6641, "q": [-0.3474688231945038, -0.02718895860016346, 0.01612384244799614, 0.6302700638771057, -0.32316869497299194, 0.01668284460902214, -0.3929172456264496, -0.012808739207684994, 0.011717909015715122, 0.6167625188827515, -0.28869402408599854, 0.013779046013951302, 0.004539852496236563, 0.09367771446704865, -0.05038323625922203, -0.43907803297042847, 0.5206426978111267, -0.9282981157302856, -0.6464770436286926, -0.5873228907585144, -0.8497654795646667, 0.01912682317197323, 0.1754370778799057, -0.15144465863704681, 0.03057175874710083, 1.2122523784637451, -0.17510151863098145, 0.07662713527679443, 0.030775491148233414]} +{"t": 7.6809, "q": [-0.34734097123146057, -0.027035560458898544, 0.01613723486661911, 0.6302530169487, -0.323205828666687, 0.016573691740632057, -0.39289167523384094, -0.012484898790717125, 0.011691125109791756, 0.6168136596679688, -0.2887061536312103, 0.013728545978665352, 0.0043523660860955715, 0.09404145181179047, -0.0506085604429245, -0.4433923661708832, 0.5226919651031494, -0.9330318570137024, -0.6484184861183167, -0.5868914723396301, -0.8449837565422058, 0.01782054267823696, 0.17540112137794495, -0.15146861970424652, 0.03057175874710083, 1.2122523784637451, -0.17510151863098145, 0.07662713527679443, 0.030799459666013718]} +{"t": 7.6977, "q": [-0.3471449613571167, -0.026933293789625168, 0.016164017841219902, 0.630236029624939, -0.3231852948665619, 0.01653754897415638, -0.3927809000015259, -0.01233150064945221, 0.01159738190472126, 0.616941511631012, -0.28870588541030884, 0.013685138896107674, 0.004312190227210522, 0.09442005306482315, -0.05078529939055443, -0.4478624761104584, 0.5245735049247742, -0.9388202428817749, -0.6505396962165833, -0.5858368873596191, -0.8395549058914185, 0.01635846681892872, 0.17542508244514465, -0.15140870213508606, 0.030583743005990982, 1.2122763395309448, -0.17510151863098145, 0.07662713527679443, 0.030799459666013718]} +{"t": 7.7145, "q": [-0.3469574749469757, -0.026848074048757553, 0.01613723486661911, 0.630236029624939, -0.3231688141822815, 0.01650863140821457, -0.3926360309123993, -0.012212191708385944, 0.011409895494580269, 0.6170523166656494, -0.28871384263038635, 0.013627376407384872, 0.004365758039057255, 0.09474582225084305, -0.05097419396042824, -0.452668160200119, 0.5263351798057556, -0.9441652297973633, -0.6533080339431763, -0.5846863985061646, -0.8331074118614197, 0.01521996594965458, 0.17547301948070526, -0.15150457620620728, 0.030583743005990982, 1.2122642993927002, -0.17510151863098145, 0.07663912326097488, 0.03081144392490387]} +{"t": 7.7313, "q": [-0.3468637466430664, -0.02683102898299694, 0.016056882217526436, 0.630236029624939, -0.32319357991218567, 0.016421357169747353, -0.3926275074481964, -0.012144014239311218, 0.011088489554822445, 0.6171119213104248, -0.28871792554855347, 0.013620181009173393, 0.004405933897942305, 0.09505654126405716, -0.051172204315662384, -0.4575217664241791, 0.5283485651016235, -0.9494861960411072, -0.6567834615707397, -0.5842429399490356, -0.8278942704200745, 0.014644723385572433, 0.17550897598266602, -0.15146861970424652, 0.030583743005990982, 1.2122882604599, -0.17510151863098145, 0.07662713527679443, 0.030799459666013718]} +{"t": 7.7481, "q": [-0.3468722701072693, -0.026737285777926445, 0.015909571200609207, 0.6302275061607361, -0.323210209608078, 0.016218015924096107, -0.39261898398399353, -0.012033226899802685, 0.01092778705060482, 0.6171289682388306, -0.288705438375473, 0.013612853363156319, 0.004392541944980621, 0.09533693641424179, -0.05135902762413025, -0.4613806903362274, 0.5306494832038879, -0.9540042281150818, -0.6591683626174927, -0.5840511918067932, -0.823903501033783, 0.014141385443508625, 0.17547301948070526, -0.15151655673980713, 0.030595727264881134, 1.2123003005981445, -0.1751134991645813, 0.07665110379457474, 0.03081144392490387]} +{"t": 7.7648, "q": [-0.34688931703567505, -0.02658388763666153, 0.015909571200609207, 0.6302189826965332, -0.32324326038360596, 0.01601453311741352, -0.3926360309123993, -0.011854262091219425, 0.010901003144681454, 0.6171204447746277, -0.28866392374038696, 0.013612505048513412, 0.0042854067869484425, 0.09566271305084229, -0.05155801400542259, -0.46376556158065796, 0.5326149463653564, -0.9580429196357727, -0.6612535715103149, -0.5840511918067932, -0.8210512399673462, 0.013925669714808464, 0.17544905841350555, -0.15158846974372864, 0.030583743005990982, 1.2123242616653442, -0.17510151863098145, 0.07663912326097488, 0.03081144392490387]} +{"t": 7.7815, "q": [-0.3467785120010376, -0.026507189497351646, 0.015882788226008415, 0.6302275061607361, -0.3232186436653137, 0.01591309905052185, -0.39270418882369995, -0.011649731546640396, 0.010954570956528187, 0.6171545386314392, -0.28860098123550415, 0.013503544963896275, 0.004218447022140026, 0.0960036888718605, -0.05177755653858185, -0.4659826159477234, 0.534448504447937, -0.9620816111564636, -0.6637343168258667, -0.5838834643363953, -0.8164613246917725, 0.012583436444401741, 0.17549699544906616, -0.1516483873128891, 0.030583743005990982, 1.2123122215270996, -0.17510151863098145, 0.07663912326097488, 0.03081144392490387]} +{"t": 7.7986, "q": [-0.3466847836971283, -0.026328224688768387, 0.01581582799553871, 0.6302275061607361, -0.323247492313385, 0.01584758050739765, -0.3927382826805115, -0.011487811803817749, 0.010967962443828583, 0.6171119213104248, -0.2885758876800537, 0.013474451377987862, 0.0041247038170695305, 0.0963372066617012, -0.05204152315855026, -0.46821171045303345, 0.5362341403961182, -0.9666955471038818, -0.6673895120620728, -0.5837396383285522, -0.8106369376182556, 0.011325092986226082, 0.17564080655574799, -0.15173228085041046, 0.030559774488210678, 1.2123361825942993, -0.17510151863098145, 0.07662713527679443, 0.030835412442684174]} +{"t": 7.8154, "q": [-0.346633642911911, -0.026200393214821815, 0.015681909397244453, 0.630236029624939, -0.3232722878456116, 0.015760289505124092, -0.39275532960891724, -0.011462245136499405, 0.011008137837052345, 0.6171119213104248, -0.28856348991394043, 0.013481580652296543, 0.004044352564960718, 0.09665553271770477, -0.05228496342897415, -0.4700692594051361, 0.5375404357910156, -0.9705065488815308, -0.6701099276542664, -0.5834759473800659, -0.805603563785553, 0.009863017126917839, 0.17572470009326935, -0.15178021788597107, 0.030547790229320526, 1.2123361825942993, -0.1751134991645813, 0.07662713527679443, 0.030835412442684174]} +{"t": 7.8321, "q": [-0.34666773676872253, -0.026140738278627396, 0.015427463687956333, 0.630236029624939, -0.32333409786224365, 0.015636423602700233, -0.39289167523384094, -0.011470767669379711, 0.011075098067522049, 0.6170863509178162, -0.2885717749595642, 0.01348164677619934, 0.003910433501005173, 0.09692832827568054, -0.05247659981250763, -0.47153133153915405, 0.538786768913269, -0.9745811820030212, -0.671919584274292, -0.5834639668464661, -0.8022599816322327, 0.008640626445412636, 0.17570072412490845, -0.15186409652233124, 0.030559774488210678, 1.212360143661499, -0.1751134991645813, 0.07662713527679443, 0.03082342818379402]} +{"t": 7.8489, "q": [-0.3467870354652405, -0.02603847160935402, 0.014972139149904251, 0.6302530169487, -0.32339590787887573, 0.015556146390736103, -0.39324110746383667, -0.011479289270937443, 0.011209016665816307, 0.6170693039894104, -0.28858017921447754, 0.013496169820427895, 0.003816690295934677, 0.09711772948503494, -0.05259975045919418, -0.4725739657878876, 0.5400331616401672, -0.9793868660926819, -0.6739808320999146, -0.5835239291191101, -0.7982332706451416, 0.007406251039355993, 0.17572470009326935, -0.1519240289926529, 0.030559774488210678, 1.212360143661499, -0.1751614362001419, 0.07662713527679443, 0.030835412442684174]} +{"t": 7.8657, "q": [-0.34689784049987793, -0.026029950007796288, 0.014570382423698902, 0.6302530169487, -0.32341650128364563, 0.01554871816188097, -0.39343708753585815, -0.01149633340537548, 0.011396503075957298, 0.6170182228088379, -0.28857606649398804, 0.013503365218639374, 0.0038568659219890833, 0.09717831015586853, -0.05263245105743408, -0.4732690453529358, 0.5407162308692932, -0.9824188351631165, -0.6757784485816956, -0.5836557149887085, -0.793343722820282, 0.005968144163489342, 0.17577263712882996, -0.15195997059345245, 0.030535805970430374, 1.212348222732544, -0.17512547969818115, 0.07662713527679443, 0.03085937909781933]} +{"t": 7.8824, "q": [-0.3470512330532074, -0.026029950007796288, 0.013874003663659096, 0.630236029624939, -0.3234865367412567, 0.015497403219342232, -0.39359050989151, -0.011530422605574131, 0.011543814092874527, 0.6169585585594177, -0.2885885536670685, 0.013510692864656448, 0.0038970415480434895, 0.09717835485935211, -0.05264231562614441, -0.4744195342063904, 0.5409200191497803, -0.9858223795890808, -0.6776240468025208, -0.5840152502059937, -0.7883103489875793, 0.004781705792993307, 0.17588049173355103, -0.1519479900598526, 0.030535805970430374, 1.212360143661499, -0.1750895380973816, 0.07663912326097488, 0.030847394838929176]} +{"t": 7.8992, "q": [-0.34720462560653687, -0.02605551667511463, 0.013606165535748005, 0.630236029624939, -0.3235112130641937, 0.015511729754507542, -0.3936927616596222, -0.011598599143326283, 0.01159738190472126, 0.616864800453186, -0.2885802686214447, 0.01351062674075365, 0.0038702578749507666, 0.09719350934028625, -0.052652955055236816, -0.47519850730895996, 0.5406683087348938, -0.9870207905769348, -0.6789183616638184, -0.585333526134491, -0.7847869992256165, 0.004206463228911161, 0.1759404093027115, -0.1519479900598526, 0.030547790229320526, 1.212360143661499, -0.17510151863098145, 0.07660316675901413, 0.03087136335670948]} +{"t": 7.9159, "q": [-0.347383588552475, -0.02598734013736248, 0.013632949441671371, 0.6302445530891418, -0.32353177666664124, 0.015547873452305794, -0.393777996301651, -0.011666775681078434, 0.011650948785245419, 0.6166602969169617, -0.28858864307403564, 0.013525149784982204, 0.0038434739690274, 0.09719346463680267, -0.05264309048652649, -0.47632500529289246, 0.5403807163238525, -0.9872245192527771, -0.6796613931655884, -0.5873468518257141, -0.7823421955108643, 0.003930825740098953, 0.17590445280075073, -0.1519240289926529, 0.030523821711540222, 1.212360143661499, -0.17510151863098145, 0.07660316675901413, 0.030883347615599632]} +{"t": 7.9326, "q": [-0.34766483306884766, -0.025902118533849716, 0.013659733347594738, 0.6302275061607361, -0.32355231046676636, 0.015598510392010212, -0.39399105310440063, -0.011717909015715122, 0.011704516597092152, 0.6164557337760925, -0.28858044743537903, 0.013539540581405163, 0.003803298342972994, 0.09719350934028625, -0.052652955055236816, -0.477511465549469, 0.5403807163238525, -0.987152636051178, -0.6804882884025574, -0.5908102989196777, -0.7801610827445984, 0.00407463638111949, 0.17588049173355103, -0.1519479900598526, 0.030523821711540222, 1.212360143661499, -0.17510151863098145, 0.07657919824123383, 0.03087136335670948]} +{"t": 7.9494, "q": [-0.34794604778289795, -0.025936206802725792, 0.013659733347594738, 0.6301848888397217, -0.32357287406921387, 0.015649165958166122, -0.3940165936946869, -0.01173495315015316, 0.01177147589623928, 0.6162086129188538, -0.28857654333114624, 0.013575668446719646, 0.003696163184940815, 0.09722362458705902, -0.052634771913290024, -0.47892558574676514, 0.5405125021934509, -0.9870687127113342, -0.6819143891334534, -0.5967305302619934, -0.7769972681999207, 0.004314321093261242, 0.17589247226715088, -0.1519240289926529, 0.030535805970430374, 1.2123721837997437, -0.1750895380973816, 0.07663912326097488, 0.03085937909781933]} +{"t": 7.9662, "q": [-0.34812501072883606, -0.025953251868486404, 0.013646341860294342, 0.629946231842041, -0.3235728442668915, 0.0157072301954031, -0.39402511715888977, -0.01173495315015316, 0.011758084408938885, 0.6158762574195862, -0.2885477840900421, 0.013626053929328918, 0.003696163184940815, 0.09721609950065613, -0.05263931676745415, -0.48049551248550415, 0.5405244827270508, -0.9866732358932495, -0.6835682392120361, -0.6005175709724426, -0.7722874283790588, 0.004889564123004675, 0.17590445280075073, -0.15193600952625275, 0.03051183745265007, 1.212360143661499, -0.17510151863098145, 0.07657919824123383, 0.03085937909781933]} +{"t": 7.9829, "q": [-0.34813353419303894, -0.025970295071601868, 0.013632949441671371, 0.6296223998069763, -0.3235728144645691, 0.0157217588275671, -0.3939995765686035, -0.011700864881277084, 0.011731300503015518, 0.6154757142066956, -0.28853973746299744, 0.013669377192854881, 0.0037229470908641815, 0.0972236841917038, -0.05264464393258095, -0.48294031620025635, 0.5404406189918518, -0.9862298369407654, -0.6854857206344604, -0.6050236225128174, -0.7658519148826599, 0.0049494849517941475, 0.17590445280075073, -0.15193600952625275, 0.030535805970430374, 1.212360143661499, -0.17507754266262054, 0.07660316675901413, 0.030895331874489784]} +{"t": 7.9996, "q": [-0.3481079638004303, -0.0259788166731596, 0.013619557954370975, 0.6292474269866943, -0.3235892355442047, 0.015779701992869377, -0.39393991231918335, -0.011717909015715122, 0.011717909015715122, 0.615143358707428, -0.28855234384536743, 0.013691161759197712, 0.0038568659219890833, 0.09723115712404251, -0.0526302270591259, -0.4865955114364624, 0.5405964255332947, -0.9863856434822083, -0.6874032020568848, -0.6087507009506226, -0.761501669883728, 0.0049734534695744514, 0.17588049173355103, -0.1519719660282135, 0.030523821711540222, 1.2123721837997437, -0.17510151863098145, 0.07660316675901413, 0.030895331874489784]} +{"t": 8.0164, "q": [-0.3481164872646332, -0.02598734013736248, 0.013592774048447609, 0.6291195750236511, -0.32356029748916626, 0.01597587950527668, -0.39380356669425964, -0.011700864881277084, 0.011624165810644627, 0.6149473190307617, -0.28856492042541504, 0.013712964951992035, 0.004004176706075668, 0.09729139506816864, -0.052593860775232315, -0.4915929138660431, 0.5408600568771362, -0.986781120300293, -0.6892367601394653, -0.6116868257522583, -0.7564682364463806, 0.004889564123004675, 0.17589247226715088, -0.15200790762901306, 0.030535805970430374, 1.2123721837997437, -0.17507754266262054, 0.07661515474319458, 0.030883347615599632]} +{"t": 8.0331, "q": [-0.3481079638004303, -0.02598734013736248, 0.013632949441671371, 0.6290173530578613, -0.3232140839099884, 0.016544589772820473, -0.39371833205223083, -0.011700864881277084, 0.011557205580174923, 0.6149558424949646, -0.2885856330394745, 0.013705883175134659, 0.004151487722992897, 0.09742693603038788, -0.0525120384991169, -0.49746519327163696, 0.5410398244857788, -0.9869728684425354, -0.691501796245575, -0.6161569356918335, -0.7504881620407104, 0.004805674310773611, 0.17590445280075073, -0.15212775766849518, 0.03051183745265007, 1.2123721837997437, -0.1750895380973816, 0.07662713527679443, 0.030895331874489784]} +{"t": 8.0498, "q": [-0.34809091687202454, -0.026021428406238556, 0.013659733347594738, 0.6289150714874268, -0.3232017457485199, 0.01653742603957653, -0.3936501443386078, -0.01167529821395874, 0.011476854793727398, 0.6149047017097473, -0.2886313498020172, 0.013713493011891842, 0.004071136470884085, 0.09760003536939621, -0.052387721836566925, -0.5027621984481812, 0.5410757660865784, -0.9865054488182068, -0.695468544960022, -0.6196563243865967, -0.7434414029121399, 0.004841627087444067, 0.17585651576519012, -0.15223561227321625, 0.030535805970430374, 1.2124320268630981, -0.17510151863098145, 0.07663912326097488, 0.030895331874489784]} +{"t": 8.0665, "q": [-0.3479630947113037, -0.026029950007796288, 0.013740085065364838, 0.6286594271659851, -0.3229091465473175, 0.017011389136314392, -0.3934967517852783, -0.01161564327776432, 0.011476854793727398, 0.6148791313171387, -0.2887061536312103, 0.013728545978665352, 0.003990784753113985, 0.09801534563302994, -0.052374467253685, -0.5088262557983398, 0.5411357283592224, -0.9863616824150085, -0.6997349262237549, -0.6230958104133606, -0.7382402420043945, 0.004841627087444067, 0.17567676305770874, -0.15243934094905853, 0.03051183745265007, 1.2124440670013428, -0.17512547969818115, 0.07662713527679443, 0.030883347615599632]} +{"t": 8.0833, "q": [-0.34786084294319153, -0.026021428406238556, 0.013807044364511967, 0.6286168098449707, -0.32131335139274597, 0.019802594557404518, -0.3934115469455719, -0.011504855938255787, 0.011503638699650764, 0.6149899363517761, -0.288830429315567, 0.013686148449778557, 0.003669379511848092, 0.09855148196220398, -0.05235753580927849, -0.5145426988601685, 0.5412435531616211, -0.9863497018814087, -0.705247700214386, -0.6281411647796631, -0.7329791784286499, 0.004829642828553915, 0.17558088898658752, -0.15272696316242218, 0.030475884675979614, 1.212420105934143, -0.1750655621290207, 0.07657919824123383, 0.030883347615599632]} +{"t": 8.1001, "q": [-0.3476051688194275, -0.026021428406238556, 0.013914179988205433, 0.6285912394523621, -0.3210073709487915, 0.02034110203385353, -0.39325812458992004, -0.011402590200304985, 0.011490246281027794, 0.6150410771369934, -0.28897497057914734, 0.013564366847276688, 0.003736338810995221, 0.09915570169687271, -0.052368778735399246, -0.5216493606567383, 0.5408121347427368, -0.9858942627906799, -0.7103769183158875, -0.6299628019332886, -0.7265197038650513, 0.004757737275213003, 0.17554493248462677, -0.1530984789133072, 0.03043993189930916, 1.2124440670013428, -0.175137460231781, 0.07660316675901413, 0.030907316133379936]} +{"t": 8.1168, "q": [-0.3474176824092865, -0.02609812654554844, 0.013994530774652958, 0.6285400986671448, -0.32097017765045166, 0.020392075181007385, -0.39301952719688416, -0.011266236193478107, 0.011383111588656902, 0.6152455806732178, -0.289152592420578, 0.013428429141640663, 0.0037095551379024982, 0.09964659065008163, -0.05239937826991081, -0.5294031500816345, 0.5407282710075378, -0.9858223795890808, -0.7166327238082886, -0.6332704424858093, -0.719592809677124, 0.004745753016322851, 0.17555691301822662, -0.15338610112667084, 0.03043993189930916, 1.2124080657958984, -0.1750895380973816, 0.07657919824123383, 0.030907316133379936]} +{"t": 8.1337, "q": [-0.3471790552139282, -0.02622595801949501, 0.014516814611852169, 0.628523051738739, -0.32095783948898315, 0.020370401442050934, -0.39265307784080505, -0.011215103790163994, 0.011075098067522049, 0.6154160499572754, -0.2892678380012512, 0.01327025517821312, 0.00388364982791245, 0.10005345195531845, -0.05225333943963051, -0.5378280878067017, 0.5404765605926514, -0.9857384562492371, -0.7216061353683472, -0.6378124356269836, -0.7143916487693787, 0.004817658569663763, 0.17555691301822662, -0.15363776683807373, 0.030427947640419006, 1.2124320268630981, -0.17510151863098145, 0.07660316675901413, 0.030895331874489784]} +{"t": 8.1504, "q": [-0.3471449613571167, -0.026268569752573967, 0.015280152671039104, 0.6284804344177246, -0.32094964385032654, 0.020341450348496437, -0.3925507962703705, -0.011146927252411842, 0.01065994892269373, 0.6155949831008911, -0.2894361913204193, 0.012975151650607586, 0.0037497307639569044, 0.10040019452571869, -0.05216329172253609, -0.5435924530029297, 0.540572464466095, -0.9857144951820374, -0.7264357805252075, -0.6412758827209473, -0.7086751461029053, 0.0049135321751236916, 0.17547301948070526, -0.15385349094867706, 0.030463900417089462, 1.2124080657958984, -0.17507754266262054, 0.07661515474319458, 0.030907316133379936]} +{"t": 8.1671, "q": [-0.3469063639640808, -0.026362312957644463, 0.015427463687956333, 0.6284633874893188, -0.320904403924942, 0.020261939615011215, -0.39233773946762085, -0.010950918309390545, 0.010445678606629372, 0.6158933043479919, -0.28953856229782104, 0.012751840986311436, 0.0039506093598902225, 0.10073912143707275, -0.05201857164502144, -0.5487217307090759, 0.5409200191497803, -0.9851751923561096, -0.730138897895813, -0.6455302834510803, -0.7026470899581909, 0.004985437728464603, 0.1754370778799057, -0.15408118069171906, 0.030487868934869766, 1.2124080657958984, -0.1750895380973816, 0.07660316675901413, 0.030907316133379936]} +{"t": 8.1839, "q": [-0.34671035408973694, -0.026490144431591034, 0.015414072200655937, 0.6284463405609131, -0.3209002912044525, 0.02025471441447735, -0.39228662848472595, -0.010831608437001705, 0.010298367589712143, 0.6161745190620422, -0.28977277874946594, 0.012370488606393337, 0.004205055069178343, 0.10089705884456635, -0.051903676241636276, -0.5520533323287964, 0.5413753986358643, -0.9850793480873108, -0.7336023449897766, -0.6496768593788147, -0.697038471698761, 0.005261074751615524, 0.17542508244514465, -0.15415309369564056, 0.03045191615819931, 1.2123961448669434, -0.17510151863098145, 0.07662713527679443, 0.030907316133379936]} +{"t": 8.2006, "q": [-0.3465995490550995, -0.026549799367785454, 0.01538728829473257, 0.6284719109535217, -0.3208879828453064, 0.020218538120388985, -0.39224401116371155, -0.010669688694179058, 0.010084097273647785, 0.6164813041687012, -0.28992459177970886, 0.012089709751307964, 0.0043523660860955715, 0.1009272038936615, -0.05189541354775429, -0.5549055933952332, 0.5419746041297913, -0.9850913286209106, -0.736406683921814, -0.6538353562355042, -0.69187331199646, 0.005608617328107357, 0.17555691301822662, -0.15424896776676178, 0.03045191615819931, 1.2124080657958984, -0.17507754266262054, 0.07663912326097488, 0.030895331874489784]} +{"t": 8.2174, "q": [-0.3463609218597412, -0.026541277766227722, 0.01538728829473257, 0.6284889578819275, -0.320863276720047, 0.020204171538352966, -0.3921246826648712, -0.010541857220232487, 0.009976962581276894, 0.6167028546333313, -0.29001903533935547, 0.011924178339540958, 0.004419325385242701, 0.10095730423927307, -0.05187728628516197, -0.5570507645606995, 0.5423820614814758, -0.9850913286209106, -0.7388514280319214, -0.6580418348312378, -0.6849344372749329, 0.005884254816919565, 0.17567676305770874, -0.154344841837883, 0.03045191615819931, 1.2124561071395874, -0.1750895380973816, 0.07663912326097488, 0.030895331874489784]} +{"t": 8.2344, "q": [-0.3463098108768463, -0.02670319750905037, 0.015226585790514946, 0.6284974813461304, -0.32086336612701416, 0.020146170631051064, -0.39202243089675903, -0.010422547347843647, 0.009749299846589565, 0.6167795658111572, -0.29011765122413635, 0.011765890754759312, 0.004955001175403595, 0.10097997635602951, -0.05188342556357384, -0.5586087107658386, 0.5427176356315613, -0.984611988067627, -0.7414520382881165, -0.6605225801467896, -0.6771566867828369, 0.006423544604331255, 0.17585651576519012, -0.15446467697620392, 0.030475884675979614, 1.2125279903411865, -0.1750895380973816, 0.07663912326097488, 0.030907316133379936]} +{"t": 8.2511, "q": [-0.34624162316322327, -0.026745807379484177, 0.015012315474450588, 0.6284719109535217, -0.32083049416542053, 0.02007385343313217, -0.39187756180763245, -0.010379936546087265, 0.009374327026307583, 0.6168818473815918, -0.29016685485839844, 0.011665052734315395, 0.005678163841366768, 0.10097230970859528, -0.05185835808515549, -0.5596752762794495, 0.5434726476669312, -0.98439621925354, -0.7431538105010986, -0.6648608446121216, -0.6720753312110901, 0.007190535310655832, 0.17591644823551178, -0.15452459454536438, 0.030487868934869766, 1.212587833404541, -0.1751134991645813, 0.07662713527679443, 0.030895331874489784]} +{"t": 8.2678, "q": [-0.34625014662742615, -0.026754330843687057, 0.014945355243980885, 0.6284719109535217, -0.32083067297935486, 0.01995781622827053, -0.3918605148792267, -0.010371414013206959, 0.009039529599249363, 0.617009699344635, -0.2902202308177948, 0.011571476235985756, 0.006187055725604296, 0.10097987949848175, -0.051863692700862885, -0.5599150061607361, 0.544539213180542, -0.9839767813682556, -0.7444480657577515, -0.6688755750656128, -0.6665146946907043, 0.008700547739863396, 0.17597636580467224, -0.15460848808288574, 0.03045191615819931, 1.212647795677185, -0.17512547969818115, 0.07663912326097488, 0.030883347615599632]} +{"t": 8.2845, "q": [-0.34625867009162903, -0.026737285777926445, 0.014878395944833755, 0.628454864025116, -0.3208184242248535, 0.019892606884241104, -0.39187756180763245, -0.010396980680525303, 0.008838650770485401, 0.6170863509178162, -0.2902572751045227, 0.011521155945956707, 0.006682556122541428, 0.10099488496780396, -0.0518447645008564, -0.5600467920303345, 0.5453301668167114, -0.9833775758743286, -0.7455266714096069, -0.6717517971992493, -0.661085844039917, 0.010630007833242416, 0.17595238983631134, -0.15470436215400696, 0.030463900417089462, 1.2126598358154297, -0.17514945566654205, 0.07663912326097488, 0.030883347615599632]} +{"t": 8.3013, "q": [-0.3462330996990204, -0.026737285777926445, 0.014664125628769398, 0.628454864025116, -0.320789635181427, 0.019842011854052544, -0.39182642102241516, -0.010379936546087265, 0.008597597479820251, 0.6172056794166565, -0.29026126861572266, 0.011499503627419472, 0.0070307450369000435, 0.10099497437477112, -0.05186449736356735, -0.560825765132904, 0.5456897020339966, -0.9824787974357605, -0.7468928694725037, -0.673801064491272, -0.6547222137451172, 0.01251153089106083, 0.1759404093027115, -0.15478825569152832, 0.030463900417089462, 1.212707757949829, -0.17512547969818115, 0.07666309177875519, 0.030895331874489784]} +{"t": 8.3181, "q": [-0.3461734354496002, -0.026677630841732025, 0.014503423124551773, 0.628454864025116, -0.32080626487731934, 0.019754895940423012, -0.39183494448661804, -0.010396980680525303, 0.008450286462903023, 0.6172823905944824, -0.29031047224998474, 0.011398683302104473, 0.007325367070734501, 0.10105561465024948, -0.051917046308517456, -0.5625035762786865, 0.5459054112434387, -0.9815320372581482, -0.7476838231086731, -0.6758264303207397, -0.649365246295929, 0.014165353961288929, 0.17600032687187195, -0.1548961102962494, 0.030499853193759918, 1.2127196788787842, -0.175137460231781, 0.07666309177875519, 0.03087136335670948]} +{"t": 8.3348, "q": [-0.3461393713951111, -0.026660587638616562, 0.014423071406781673, 0.6284804344177246, -0.321219801902771, 0.018998170271515846, -0.3918519914150238, -0.010422547347843647, 0.008463677950203419, 0.6173079609870911, -0.29031047224998474, 0.011398683302104473, 0.007526245433837175, 0.10119953006505966, -0.0520184263586998, -0.5650681853294373, 0.546169102191925, -0.9793868660926819, -0.7483069896697998, -0.677000880241394, -0.6436847448348999, 0.016106799244880676, 0.17609620094299316, -0.15500396490097046, 0.030487868934869766, 1.2127196788787842, -0.17510151863098145, 0.07666309177875519, 0.030883347615599632]} +{"t": 8.3515, "q": [-0.34611380100250244, -0.026660587638616562, 0.014342720620334148, 0.6284719109535217, -0.32235756516456604, 0.016884880140423775, -0.3919031322002411, -0.01041402481496334, 0.008490461856126785, 0.6172994375228882, -0.2903187572956085, 0.01139874942600727, 0.007874434813857079, 0.10144186019897461, -0.05217929929494858, -0.5693585276603699, 0.5465525984764099, -0.9768341779708862, -0.7489061951637268, -0.6776120662689209, -0.6368536949157715, 0.017832526937127113, 0.176012322306633, -0.15514777600765228, 0.030463900417089462, 1.212803602218628, -0.17510151863098145, 0.07666309177875519, 0.03087136335670948]} +{"t": 8.3685, "q": [-0.3461223244667053, -0.02658388763666153, 0.01412845030426979, 0.6284804344177246, -0.32323557138442993, 0.015245256945490837, -0.3920394778251648, -0.010439591482281685, 0.008490461856126785, 0.6172994375228882, -0.2903270721435547, 0.011398796923458576, 0.008169055916368961, 0.10178272426128387, -0.05242934450507164, -0.5747035145759583, 0.5467802882194519, -0.9748927354812622, -0.7489781379699707, -0.6780914068222046, -0.6315566897392273, 0.01906690187752247, 0.1760362833738327, -0.15533952414989471, 0.030475884675979614, 1.212863564491272, -0.1750655621290207, 0.07666309177875519, 0.03085937909781933]} +{"t": 8.3854, "q": [-0.3461734354496002, -0.02653275430202484, 0.013940962962806225, 0.6284889578819275, -0.3232233226299286, 0.015107433311641216, -0.3921672999858856, -0.01047367975115776, 0.008557421155273914, 0.6172653436660767, -0.290322870016098, 0.0113915354013443, 0.008102096617221832, 0.10233559459447861, -0.0528290830552578, -0.5789698958396912, 0.5470199584960938, -0.972591757774353, -0.7489781379699707, -0.6782951354980469, -0.6265592575073242, 0.019881829619407654, 0.17602430284023285, -0.1556151658296585, 0.030475884675979614, 1.212935447692871, -0.17507754266262054, 0.0767110288143158, 0.03085937909781933]} +{"t": 8.4022, "q": [-0.34619900584220886, -0.026507189497351646, 0.013940962962806225, 0.6284889578819275, -0.3232109844684601, 0.01508575864136219, -0.3923206925392151, -0.010465158149600029, 0.00873151607811451, 0.6172653436660767, -0.2903270721435547, 0.011398796923458576, 0.007901218719780445, 0.10310810804367065, -0.053393661975860596, -0.5822296142578125, 0.547079861164093, -0.969511866569519, -0.749265730381012, -0.678283154964447, -0.6219692826271057, 0.020145483314990997, 0.1760602593421936, -0.15598668158054352, 0.030463900417089462, 1.2129234075546265, -0.17505358159542084, 0.07666309177875519, 0.03085937909781933]} +{"t": 8.419, "q": [-0.3461819589138031, -0.026498666033148766, 0.013954355381429195, 0.6285486221313477, -0.32321926951408386, 0.015042143873870373, -0.3924485445022583, -0.01047367975115776, 0.008945786394178867, 0.6172994375228882, -0.2903187572956085, 0.01139874942600727, 0.007807475049048662, 0.10397112369537354, -0.05398334190249443, -0.5862323641777039, 0.5470439195632935, -0.9647541046142578, -0.7501166462898254, -0.6783191561698914, -0.6157854199409485, 0.020540961995720863, 0.17609620094299316, -0.156418114900589, 0.03045191615819931, 1.2129234075546265, -0.1750895380973816, 0.07666309177875519, 0.03082342818379402]} +{"t": 8.4357, "q": [-0.34620752930641174, -0.026251524686813354, 0.013927571475505829, 0.6285400986671448, -0.32322338223457336, 0.015049368143081665, -0.39271271228790283, -0.010558901354670525, 0.00898596178740263, 0.617239773273468, -0.29031047224998474, 0.011398683302104473, 0.00772712379693985, 0.10485690087080002, -0.05462907254695892, -0.5901272296905518, 0.5472716093063354, -0.9609550833702087, -0.7513390183448792, -0.6783670783042908, -0.6106681823730469, 0.02118811011314392, 0.17618009448051453, -0.15672969818115234, 0.03043993189930916, 1.2129114866256714, -0.17510151863098145, 0.07662713527679443, 0.03087136335670948]} +{"t": 8.4525, "q": [-0.3462330996990204, -0.026251524686813354, 0.013914179988205433, 0.6285400986671448, -0.32323983311653137, 0.015049245208501816, -0.3930024802684784, -0.010610033757984638, 0.009093097411096096, 0.6172482967376709, -0.2903188467025757, 0.011413206346333027, 0.0076869479380548, 0.10553812235593796, -0.05511081963777542, -0.5939741730690002, 0.5480985641479492, -0.9581388235092163, -0.7525733709335327, -0.6784030199050903, -0.6060063242912292, 0.02166747860610485, 0.17621605098247528, -0.1570412814617157, 0.03043993189930916, 1.2128994464874268, -0.17510151863098145, 0.07662713527679443, 0.03085937909781933]} +{"t": 8.4693, "q": [-0.34639501571655273, -0.02623448148369789, 0.013994530774652958, 0.6285486221313477, -0.3232603967189789, 0.01507087703794241, -0.39312177896499634, -0.010695254430174828, 0.00925379991531372, 0.6172568202018738, -0.29032304883003235, 0.011420467868447304, 0.007553029339760542, 0.10610559582710266, -0.05548281595110893, -0.5968503952026367, 0.5492010712623596, -0.957275927066803, -0.7541673183441162, -0.6783910393714905, -0.6013444662094116, 0.021679462864995003, 0.176240012049675, -0.15740081667900085, 0.03045191615819931, 1.2128994464874268, -0.1751134991645813, 0.07663912326097488, 0.03085937909781933]} +{"t": 8.4863, "q": [-0.34651434421539307, -0.02615778148174286, 0.014088273979723454, 0.6285486221313477, -0.3232603967189789, 0.01507087703794241, -0.39333483576774597, -0.010703776963055134, 0.00940111093223095, 0.6172568202018738, -0.29031893610954285, 0.011427663266658783, 0.007405718322843313, 0.10649140924215317, -0.05573641508817673, -0.5987438559532166, 0.5495725870132446, -0.9572639465332031, -0.7564682364463806, -0.6783311367034912, -0.5961073637008667, 0.021643510088324547, 0.17621605098247528, -0.15762852132320404, 0.03043993189930916, 1.212935447692871, -0.175137460231781, 0.07661515474319458, 0.030847394838929176]} +{"t": 8.5032, "q": [-0.3465399146080017, -0.02605551667511463, 0.01411505788564682, 0.6285400986671448, -0.3232768476009369, 0.015099776908755302, -0.3934711813926697, -0.010763431899249554, 0.009454678744077682, 0.6172568202018738, -0.2903273403644562, 0.011442186310887337, 0.007245015352964401, 0.10661252588033676, -0.055832043290138245, -0.5999902486801147, 0.5495366454124451, -0.957048237323761, -0.7597519159317017, -0.6783311367034912, -0.5909780859947205, 0.021691447123885155, 0.176240012049675, -0.1576644629240036, 0.03043993189930916, 1.2129114866256714, -0.17507754266262054, 0.07663912326097488, 0.03085937909781933]} +{"t": 8.5199, "q": [-0.34666773676872253, -0.026012906804680824, 0.014088273979723454, 0.6285571455955505, -0.3232809603214264, 0.01510700210928917, -0.3934967517852783, -0.010754909366369247, 0.009454678744077682, 0.6172568202018738, -0.29032742977142334, 0.01145666092634201, 0.007124488707631826, 0.10662771016359329, -0.05585264042019844, -0.6003497838973999, 0.5495007038116455, -0.9570003151893616, -0.7629996538162231, -0.6783191561698914, -0.5880779027938843, 0.021703431382775307, 0.17620407044887543, -0.15765248239040375, 0.03043993189930916, 1.2129234075546265, -0.17507754266262054, 0.07663912326097488, 0.03085937909781933]} +{"t": 8.5367, "q": [-0.3470853269100189, -0.025970295071601868, 0.014007923193275928, 0.6285827159881592, -0.3233015239238739, 0.015128633007407188, -0.39375242590904236, -0.010746387764811516, 0.009374327026307583, 0.6171801090240479, -0.29032331705093384, 0.01146385632455349, 0.007151272147893906, 0.10662013292312622, -0.055847276002168655, -0.6002179384231567, 0.5494887232780457, -0.9571201205253601, -0.7658399343490601, -0.6782951354980469, -0.5865199565887451, 0.021703431382775307, 0.17620407044887543, -0.1575925648212433, 0.03045191615819931, 1.2128875255584717, -0.1751134991645813, 0.07663912326097488, 0.030883347615599632]} +{"t": 8.5535, "q": [-0.34747734665870667, -0.0259788166731596, 0.013914179988205433, 0.6286423802375793, -0.323272705078125, 0.015150599181652069, -0.3937694728374481, -0.010771953500807285, 0.00932075921446085, 0.6171630620956421, -0.29032742977142334, 0.01145666092634201, 0.007338759023696184, 0.10659743845462799, -0.05583120137453079, -0.6000621318817139, 0.5492010712623596, -0.9571321606636047, -0.7686921954154968, -0.6782711744308472, -0.585788905620575, 0.02166747860610485, 0.17625200748443604, -0.1575925648212433, 0.030463900417089462, 1.2129234075546265, -0.17510151863098145, 0.07663912326097488, 0.03087136335670948]} +{"t": 8.5702, "q": [-0.3477415144443512, -0.025961773470044136, 0.013833828270435333, 0.6286594271659851, -0.3232768177986145, 0.015172353945672512, -0.3938376307487488, -0.010840130969882011, 0.009280583821237087, 0.6171971559524536, -0.2903192341327667, 0.011471052654087543, 0.007378934416919947, 0.10659738630056381, -0.05582132190465927, -0.599966287612915, 0.548865556716919, -0.9572040438652039, -0.7717721462249756, -0.6782711744308472, -0.5852376818656921, 0.021679462864995003, 0.17615613341331482, -0.157616525888443, 0.030487868934869766, 1.212935447692871, -0.17510151863098145, 0.07663912326097488, 0.03085937909781933]} +{"t": 8.587, "q": [-0.3477841317653656, -0.026012906804680824, 0.013820436783134937, 0.6286594271659851, -0.3232644498348236, 0.015165172517299652, -0.39385467767715454, -0.01091683004051447, 0.009293975308537483, 0.617171585559845, -0.29031941294670105, 0.011499966494739056, 0.007499461527913809, 0.10658982396125793, -0.05581596493721008, -0.5997625589370728, 0.5488295555114746, -0.9571321606636047, -0.7749359607696533, -0.6782112717628479, -0.5846983790397644, 0.021691447123885155, 0.17615613341331482, -0.1576405018568039, 0.030487868934869766, 1.212935447692871, -0.17512547969818115, 0.07666309177875519, 0.03085937909781933]} +{"t": 8.6038, "q": [-0.3477841317653656, -0.0260469950735569, 0.013807044364511967, 0.6286594271659851, -0.3232685327529907, 0.015201456844806671, -0.3938376307487488, -0.010976484976708889, 0.00932075921446085, 0.6171886324882507, -0.29032769799232483, 0.011500032618641853, 0.007512853480875492, 0.10659743845462799, -0.05583120137453079, -0.5995468497276306, 0.5487576723098755, -0.9569763541221619, -0.7776563763618469, -0.6782352328300476, -0.5842669606208801, 0.021691447123885155, 0.17620407044887543, -0.1576644629240036, 0.030463900417089462, 1.2129473686218262, -0.17510151863098145, 0.07665110379457474, 0.030835412442684174]} +{"t": 8.6206, "q": [-0.34780970215797424, -0.02605551667511463, 0.01384721975773573, 0.6286764740943909, -0.32326439023017883, 0.01523776724934578, -0.393820583820343, -0.010976484976708889, 0.00932075921446085, 0.6171630620956421, -0.29033198952674866, 0.011521751061081886, 0.007472677621990442, 0.10658986866474152, -0.05582583695650101, -0.5992591977119446, 0.5487097501754761, -0.9570122957229614, -0.7806044816970825, -0.6782352328300476, -0.5836077928543091, 0.02171541564166546, 0.17615613341331482, -0.1576644629240036, 0.030463900417089462, 1.2129594087600708, -0.17510151863098145, 0.07666309177875519, 0.030847394838929176]} +{"t": 8.6373, "q": [-0.3479204773902893, -0.026072561740875244, 0.013900787569582462, 0.6286764740943909, -0.32322317361831665, 0.01532516349107027, -0.3938120901584625, -0.010976484976708889, 0.00932075921446085, 0.6171886324882507, -0.29033610224723816, 0.011514555662870407, 0.007445894181728363, 0.10658226162195206, -0.055810604244470596, -0.5988876819610596, 0.5486618280410767, -0.9570362567901611, -0.783708393573761, -0.6782112717628479, -0.5824213624000549, 0.02171541564166546, 0.17616811394691467, -0.15762852132320404, 0.03043993189930916, 1.2129594087600708, -0.17510151863098145, 0.07665110379457474, 0.030835412442684174]} +{"t": 8.6541, "q": [-0.3479290008544922, -0.02611517161130905, 0.013887396082282066, 0.6287105679512024, -0.32321083545684814, 0.01531801838427782, -0.3937694728374481, -0.010967962443828583, 0.009293975308537483, 0.6171886324882507, -0.2903154790401459, 0.011536093428730965, 0.007526245433837175, 0.10658977925777435, -0.05580608919262886, -0.5986599922180176, 0.5486738085746765, -0.9569404125213623, -0.7856618165969849, -0.678199291229248, -0.5813187956809998, 0.02171541564166546, 0.17612017691135406, -0.157616525888443, 0.030463900417089462, 1.2129833698272705, -0.17505358159542084, 0.07666309177875519, 0.03085937909781933]} +{"t": 8.6709, "q": [-0.3479204773902893, -0.026123693212866783, 0.013874003663659096, 0.6287616491317749, -0.32321080565452576, 0.015332530252635479, -0.393633097410202, -0.010967962443828583, 0.009227016009390354, 0.6172482967376709, -0.2903154790401459, 0.011536093428730965, 0.007539637386798859, 0.10657473653554916, -0.05581512302160263, -0.5984203219413757, 0.5485299825668335, -0.9564849734306335, -0.787219762802124, -0.678199291229248, -0.5795211791992188, 0.02178732119500637, 0.17618009448051453, -0.15765248239040375, 0.03045191615819931, 1.2129833698272705, -0.17507754266262054, 0.07666309177875519, 0.030847394838929176]} +{"t": 8.6876, "q": [-0.3478778600692749, -0.02615778148174286, 0.01384721975773573, 0.6288042664527893, -0.32319021224975586, 0.015354451723396778, -0.39359050989151, -0.010976484976708889, 0.009133272804319859, 0.6172909140586853, -0.290319561958313, 0.011528898030519485, 0.007539637386798859, 0.10658982396125793, -0.05581596493721008, -0.5984442830085754, 0.5485419631004333, -0.9562932252883911, -0.7887178063392639, -0.6782232522964478, -0.5771602988243103, 0.021943116560578346, 0.17620407044887543, -0.15765248239040375, 0.03043993189930916, 1.21303129196167, -0.17512547969818115, 0.07666309177875519, 0.030847394838929176]} +{"t": 8.7045, "q": [-0.34784379601478577, -0.02622595801949501, 0.013900787569582462, 0.6288213133811951, -0.32312431931495667, 0.015427540056407452, -0.39358198642730713, -0.010967962443828583, 0.009160056710243225, 0.6174358129501343, -0.29032376408576965, 0.011536159552633762, 0.0074860695749521255, 0.10658229887485504, -0.05582047998905182, -0.5984442830085754, 0.5485180020332336, -0.9562572836875916, -0.7900480628013611, -0.6782232522964478, -0.5743799209594727, 0.022170817479491234, 0.17618009448051453, -0.15770041942596436, 0.03045191615819931, 1.2130552530288696, -0.17510151863098145, 0.07668706029653549, 0.030835412442684174]} +{"t": 8.7214, "q": [-0.3478352725505829, -0.02628561295568943, 0.013940962962806225, 0.6288724541664124, -0.3231201767921448, 0.015420296229422092, -0.39362457394599915, -0.010942395776510239, 0.009186840616166592, 0.6175636053085327, -0.2903154790401459, 0.011536093428730965, 0.00743250222876668, 0.10659734159708023, -0.05581144616007805, -0.5983603596687317, 0.5490692853927612, -0.956221342086792, -0.7912105321884155, -0.6782352328300476, -0.5707367658615112, 0.022542327642440796, 0.17615613341331482, -0.1576884388923645, 0.03043993189930916, 1.2130672931671143, -0.17514945566654205, 0.07667507231235504, 0.030835412442684174]} +{"t": 8.7382, "q": [-0.34780970215797424, -0.02640492282807827, 0.014007923193275928, 0.6289576888084412, -0.3231160640716553, 0.015427582897245884, -0.39361608028411865, -0.01091683004051447, 0.009186840616166592, 0.6177937388420105, -0.29031118750572205, 0.011514374986290932, 0.0074860695749521255, 0.10659734159708023, -0.05581144616007805, -0.5983843207359314, 0.5492849946022034, -0.9562333226203918, -0.7917019128799438, -0.6782232522964478, -0.5681002140045166, 0.023009711876511574, 0.17618009448051453, -0.15767645835876465, 0.03043993189930916, 1.2130672931671143, -0.1750895380973816, 0.07667507231235504, 0.03087136335670948]} +{"t": 8.7551, "q": [-0.34780970215797424, -0.026456056162714958, 0.014061490073800087, 0.6290343999862671, -0.32312020659446716, 0.01539127342402935, -0.3936416208744049, -0.0109253516420722, 0.009160056710243225, 0.6180834770202637, -0.290319561958313, 0.011528898030519485, 0.007472677621990442, 0.10659734159708023, -0.05581144616007805, -0.5983603596687317, 0.549464762210846, -0.9562333226203918, -0.7916060090065002, -0.6782352328300476, -0.5669018030166626, 0.0234770979732275, 0.17621605098247528, -0.15767645835876465, 0.03045191615819931, 1.2130672931671143, -0.175137460231781, 0.07667507231235504, 0.030835412442684174]} +{"t": 8.772, "q": [-0.3477756083011627, -0.02652423270046711, 0.014088273979723454, 0.6291195750236511, -0.32312434911727905, 0.015354945324361324, -0.39366719126701355, -0.010933874174952507, 0.009160056710243225, 0.6183476448059082, -0.2903237044811249, 0.011521684937179089, 0.007512853480875492, 0.10659729689359665, -0.055801574140787125, -0.5981566309928894, 0.5496085286140442, -0.9561134576797485, -0.7915101647377014, -0.6782352328300476, -0.5662306547164917, 0.024100277572870255, 0.1762639880180359, -0.1576884388923645, 0.030463900417089462, 1.2130672931671143, -0.17510151863098145, 0.07665110379457474, 0.030847394838929176]} +{"t": 8.7888, "q": [-0.3477756083011627, -0.02658388763666153, 0.01412845030426979, 0.6291792392730713, -0.32311612367630005, 0.015355006791651249, -0.3936842381954193, -0.010908307507634163, 0.009160056710243225, 0.6184499263763428, -0.29031530022621155, 0.011507161892950535, 0.007526245433837175, 0.10659729689359665, -0.055801574140787125, -0.5980008840560913, 0.5497283935546875, -0.9561014771461487, -0.791402280330658, -0.6782352328300476, -0.5657632946968079, 0.02461559884250164, 0.17627596855163574, -0.15767645835876465, 0.03045191615819931, 1.2130552530288696, -0.1750895380973816, 0.07668706029653549, 0.03085937909781933]} +{"t": 8.8055, "q": [-0.34776708483695984, -0.026549799367785454, 0.01412845030426979, 0.6292133331298828, -0.32311204075813293, 0.01530422829091549, -0.3937012851238251, -0.010891263373196125, 0.009160056710243225, 0.6185522079467773, -0.29031530022621155, 0.011507161892950535, 0.007499461527913809, 0.10660482197999954, -0.05579705536365509, -0.5979049801826477, 0.5497044324874878, -0.9561014771461487, -0.7913423776626587, -0.6782232522964478, -0.5653558373451233, 0.02502306178212166, 0.1762639880180359, -0.15770041942596436, 0.030463900417089462, 1.2130672931671143, -0.17507754266262054, 0.07666309177875519, 0.030835412442684174]} +{"t": 8.8223, "q": [-0.3477500379085541, -0.026566844433546066, 0.014141841791570187, 0.6292133331298828, -0.32310792803764343, 0.01531151495873928, -0.3937694728374481, -0.010840130969882011, 0.009160056710243225, 0.6186288595199585, -0.29031530022621155, 0.011507161892950535, 0.007499461527913809, 0.10659725964069366, -0.0557916983962059, -0.5977851152420044, 0.5496325492858887, -0.9561014771461487, -0.7913064360618591, -0.678199291229248, -0.564924418926239, 0.025310683995485306, 0.1762639880180359, -0.1576884388923645, 0.030463900417089462, 1.2130672931671143, -0.17510151863098145, 0.07666309177875519, 0.030835412442684174]} +{"t": 8.839, "q": [-0.3477415144443512, -0.026660587638616562, 0.014182017184793949, 0.6292133331298828, -0.32313263416290283, 0.015296836383640766, -0.3938291072845459, -0.01079752016812563, 0.009160056710243225, 0.6186544299125671, -0.29032349586486816, 0.011492771096527576, 0.007445894181728363, 0.10661981999874115, -0.055778149515390396, -0.5975813865661621, 0.5495606064796448, -0.956077516078949, -0.7912105321884155, -0.678199291229248, -0.5646247863769531, 0.0255743358284235, 0.1763119250535965, -0.15770041942596436, 0.03045191615819931, 1.2130672931671143, -0.17510151863098145, 0.07668706029653549, 0.03087136335670948]} +{"t": 8.8558, "q": [-0.3477500379085541, -0.026617975905537605, 0.01419540960341692, 0.6292218565940857, -0.3231450021266937, 0.015274958685040474, -0.39380356669425964, -0.010771953500807285, 0.009160056710243225, 0.618739664554596, -0.29032760858535767, 0.011485575698316097, 0.00743250222876668, 0.10661981999874115, -0.055778149515390396, -0.596994161605835, 0.5494767427444458, -0.9560655355453491, -0.7912344932556152, -0.678199291229248, -0.5644210577011108, 0.025742115452885628, 0.1762879490852356, -0.1576884388923645, 0.03045191615819931, 1.2130552530288696, -0.17507754266262054, 0.07666309177875519, 0.030847394838929176]} +{"t": 8.8726, "q": [-0.3477756083011627, -0.02664354257285595, 0.014155233278870583, 0.6292133331298828, -0.3231408894062042, 0.015282245352864265, -0.393820583820343, -0.010763431899249554, 0.00906631350517273, 0.6187908053398132, -0.29032760858535767, 0.011485575698316097, 0.0074860695749521255, 0.10661225020885468, -0.05577278509736061, -0.5965507626533508, 0.5493808388710022, -0.9560655355453491, -0.7911386489868164, -0.6781633496284485, -0.5642772316932678, 0.025837989524006844, 0.17620407044887543, -0.15770041942596436, 0.030463900417089462, 1.2130672931671143, -0.17510151863098145, 0.07668706029653549, 0.030847394838929176]} +{"t": 8.8894, "q": [-0.3477500379085541, -0.026617975905537605, 0.01412845030426979, 0.6292218565940857, -0.32313674688339233, 0.015289532020688057, -0.3938291072845459, -0.010763431899249554, 0.009039529599249363, 0.6188419461250305, -0.29033583402633667, 0.011471183970570564, 0.007553029339760542, 0.10661225020885468, -0.05577278509736061, -0.5962751507759094, 0.5493209362030029, -0.956077516078949, -0.7911386489868164, -0.6781393885612488, -0.5641933679580688, 0.02600576914846897, 0.17620407044887543, -0.15772439539432526, 0.030463900417089462, 1.2130672931671143, -0.1751614362001419, 0.07666309177875519, 0.030847394838929176]} +{"t": 8.9062, "q": [-0.34776708483695984, -0.026626497507095337, 0.014101666398346424, 0.6292218565940857, -0.3231408894062042, 0.015282245352864265, -0.39385467767715454, -0.010763431899249554, 0.0089993542060256, 0.6188930869102478, -0.2903481423854828, 0.011449597775936127, 0.0076467725448310375, 0.1066046804189682, -0.05576742812991142, -0.595939576625824, 0.549237072467804, -0.9560655355453491, -0.7910906672477722, -0.6781393885612488, -0.564037561416626, 0.026149580255150795, 0.1762639880180359, -0.15770041942596436, 0.030463900417089462, 1.2130672931671143, -0.1751853972673416, 0.07666309177875519, 0.030835412442684174]} +{"t": 8.923, "q": [-0.3477926552295685, -0.02665206417441368, 0.01411505788564682, 0.6292133331298828, -0.32315322756767273, 0.015260385349392891, -0.39389729499816895, -0.010771953500807285, 0.00898596178740263, 0.6189186573028564, -0.29036474227905273, 0.011449712328612804, 0.007660164497792721, 0.1066046804189682, -0.05576742812991142, -0.5956639051437378, 0.5492130517959595, -0.9560655355453491, -0.7911146879196167, -0.6781393885612488, -0.5639656782150269, 0.026281405240297318, 0.17622803151607513, -0.1577363759279251, 0.030463900417089462, 1.2130672931671143, -0.17512547969818115, 0.07666309177875519, 0.030847394838929176]} +{"t": 8.9397, "q": [-0.3478182256221771, -0.026686152443289757, 0.01411505788564682, 0.6292133331298828, -0.32312852144241333, 0.015275063924491405, -0.39393138885498047, -0.010763431899249554, 0.008972570300102234, 0.6189526915550232, -0.2903604507446289, 0.011427993886172771, 0.0076467725448310375, 0.10661972314119339, -0.05575839430093765, -0.5953643321990967, 0.5492130517959595, -0.9560535550117493, -0.7910906672477722, -0.6781393885612488, -0.5639656782150269, 0.02642521634697914, 0.17629994451999664, -0.15772439539432526, 0.030463900417089462, 1.213091254234314, -0.175137460231781, 0.07666309177875519, 0.03087136335670948]} +{"t": 8.9565, "q": [-0.34784379601478577, -0.026677630841732025, 0.014101666398346424, 0.629196286201477, -0.32313674688339233, 0.015275001525878906, -0.3939995765686035, -0.010771953500807285, 0.008972570300102234, 0.6189782619476318, -0.2903768718242645, 0.011399212293326855, 0.007633380591869354, 0.10661964118480682, -0.055738646537065506, -0.5950766801834106, 0.5491890907287598, -0.9560415744781494, -0.7911985516548157, -0.6781393885612488, -0.5639656782150269, 0.026628948748111725, 0.17627596855163574, -0.15770041942596436, 0.030487868934869766, 1.2130792140960693, -0.17512547969818115, 0.07666309177875519, 0.03085937909781933]} +{"t": 8.9734, "q": [-0.347869336605072, -0.026677630841732025, 0.01412845030426979, 0.6292048096656799, -0.32313263416290283, 0.015296836383640766, -0.39399105310440063, -0.010763431899249554, 0.008972570300102234, 0.6189867854118347, -0.290397584438324, 0.011392130516469479, 0.0076467725448310375, 0.10661211609840393, -0.05574316158890724, -0.5947890877723694, 0.5491890907287598, -0.9560415744781494, -0.7910786867141724, -0.6781393885612488, -0.5639656782150269, 0.0267847441136837, 0.1762879490852356, -0.1577123999595642, 0.030463900417089462, 1.2130792140960693, -0.17512547969818115, 0.07666309177875519, 0.03085937909781933]} +{"t": 8.9902, "q": [-0.34786084294319153, -0.026686152443289757, 0.014141841791570187, 0.6292048096656799, -0.32312849164009094, 0.015304123051464558, -0.3939995765686035, -0.010754909366369247, 0.008972570300102234, 0.6190208792686462, -0.2904140055179596, 0.011363348923623562, 0.0076869479380548, 0.10664220154285431, -0.05572509765625, -0.5944535136222839, 0.5491172075271606, -0.9560056328773499, -0.7910906672477722, -0.6781393885612488, -0.5639776587486267, 0.02689260058104992, 0.17627596855163574, -0.15770041942596436, 0.03043993189930916, 1.213103175163269, -0.1750895380973816, 0.07662713527679443, 0.030835412442684174]} +{"t": 9.0069, "q": [-0.34789490699768066, -0.02670319750905037, 0.014141841791570187, 0.6292218565940857, -0.32312026619911194, 0.01531869638711214, -0.39399105310440063, -0.010771953500807285, 0.00898596178740263, 0.6190805435180664, -0.290446937084198, 0.011320224031805992, 0.00772712379693985, 0.10663463175296783, -0.055719729512929916, -0.5940700173377991, 0.5491651296615601, -0.9558857679367065, -0.7910427451133728, -0.6781393885612488, -0.5639896392822266, 0.0270723644644022, 0.17620407044887543, -0.1577123999595642, 0.030463900417089462, 1.213091254234314, -0.17510151863098145, 0.07666309177875519, 0.030847394838929176]} +{"t": 9.0238, "q": [-0.3479290008544922, -0.026779895648360252, 0.014141841791570187, 0.6292133331298828, -0.32312437891960144, 0.01531140971928835, -0.3939995765686035, -0.010771953500807285, 0.008959177881479263, 0.6190890669822693, -0.290455162525177, 0.011305833235383034, 0.007807475049048662, 0.10663458704948425, -0.05570985749363899, -0.5935426950454712, 0.5491651296615601, -0.955562174320221, -0.7908989191055298, -0.6781393885612488, -0.564037561416626, 0.02738395519554615, 0.176240012049675, -0.15770041942596436, 0.030463900417089462, 1.213103175163269, -0.1751614362001419, 0.07666309177875519, 0.03085937909781933]} +{"t": 9.0405, "q": [-0.3479204773902893, -0.02677137404680252, 0.014168625697493553, 0.6292389035224915, -0.32312849164009094, 0.015318634919822216, -0.394008070230484, -0.010771953500807285, 0.008932393975555897, 0.6191316843032837, -0.2904510498046875, 0.011313028633594513, 0.007874434813857079, 0.10661936551332474, -0.055679384618997574, -0.5929195284843445, 0.5491531491279602, -0.9552146792411804, -0.7906712293624878, -0.6781753301620483, -0.5640974640846252, 0.027851339429616928, 0.1762639880180359, -0.15770041942596436, 0.030463900417089462, 1.213091254234314, -0.175137460231781, 0.07666309177875519, 0.030847394838929176]} +{"t": 9.0572, "q": [-0.34793752431869507, -0.02677137404680252, 0.01419540960341692, 0.6292133331298828, -0.32309964299201965, 0.015384171158075333, -0.39402511715888977, -0.010780476033687592, 0.0089190024882555, 0.6191657781600952, -0.2904674708843231, 0.011284229345619678, 0.007914610207080841, 0.10661932080984116, -0.05566950887441635, -0.5918529629707336, 0.5491052269935608, -0.9549509882926941, -0.7903716564178467, -0.678199291229248, -0.5641574263572693, 0.028426581993699074, 0.17625200748443604, -0.15772439539432526, 0.03045191615819931, 1.213103175163269, -0.175137460231781, 0.07668706029653549, 0.03087136335670948]} +{"t": 9.0742, "q": [-0.34795457124710083, -0.026796940714120865, 0.014262368902564049, 0.6292303800582886, -0.3230254650115967, 0.015486344695091248, -0.3940506875514984, -0.010788998566567898, 0.008959177881479263, 0.6192254424095154, -0.2904715836048126, 0.0112770339474082, 0.007914610207080841, 0.10661927610635757, -0.05565963685512543, -0.5903788805007935, 0.5491291880607605, -0.954651415348053, -0.7900959849357605, -0.6782112717628479, -0.5642772316932678, 0.02912166714668274, 0.17622803151607513, -0.15770041942596436, 0.030499853193759918, 1.213103175163269, -0.17507754266262054, 0.07663912326097488, 0.030847394838929176]} +{"t": 9.0909, "q": [-0.34794604778289795, -0.026779895648360252, 0.014356112107634544, 0.6292218565940857, -0.3230336904525757, 0.015500795096158981, -0.39407625794410706, -0.010780476033687592, 0.008972570300102234, 0.6193447113037109, -0.2904879152774811, 0.011233794502913952, 0.007874434813857079, 0.10662683844566345, -0.055664993822574615, -0.5888329148292542, 0.5491052269935608, -0.9541720151901245, -0.7898802757263184, -0.6782232522964478, -0.5644689798355103, 0.029984531924128532, 0.176240012049675, -0.15770041942596436, 0.03045191615819931, 1.213103175163269, -0.17507754266262054, 0.07666309177875519, 0.030847394838929176]} +{"t": 9.1076, "q": [-0.3479290008544922, -0.026796940714120865, 0.01444985531270504, 0.6292303800582886, -0.3230254650115967, 0.015500856563448906, -0.39407625794410706, -0.01079752016812563, 0.0089993542060256, 0.6194640398025513, -0.29055389761924744, 0.011162002570927143, 0.007861042395234108, 0.10660413652658463, -0.055648911744356155, -0.5871071815490723, 0.5489733815193176, -0.9535129070281982, -0.7896645665168762, -0.6782112717628479, -0.5649003982543945, 0.031135017052292824, 0.17622803151607513, -0.15770041942596436, 0.030463900417089462, 1.213103175163269, -0.17512547969818115, 0.07666309177875519, 0.03085937909781933]} +{"t": 9.1244, "q": [-0.3479204773902893, -0.026788419112563133, 0.014490030705928802, 0.6292303800582886, -0.3230295479297638, 0.015522592701017857, -0.39408478140830994, -0.01079752016812563, 0.008972570300102234, 0.6195833683013916, -0.29062825441360474, 0.01110475230962038, 0.007847650907933712, 0.10661913454532623, -0.05563000589609146, -0.5857529640197754, 0.5489614009857178, -0.9528177976608276, -0.7895447015762329, -0.678199291229248, -0.5653917789459229, 0.03265701234340668, 0.17620407044887543, -0.15770041942596436, 0.03045191615819931, 1.213103175163269, -0.175137460231781, 0.07666309177875519, 0.030847394838929176]} +{"t": 9.1411, "q": [-0.3479204773902893, -0.026899205520749092, 0.01453020703047514, 0.6292644739151001, -0.3230172097682953, 0.015529941767454147, -0.3941103518009186, -0.01079752016812563, 0.008972570300102234, 0.6197537779808044, -0.2906980514526367, 0.01098239328712225, 0.007887826301157475, 0.10659648478031158, -0.05562380701303482, -0.5848901271820068, 0.5489733815193176, -0.9519909024238586, -0.7895447015762329, -0.6782232522964478, -0.5660149455070496, 0.03477822244167328, 0.1762639880180359, -0.1577123999595642, 0.030487868934869766, 1.213103175163269, -0.17510151863098145, 0.07666309177875519, 0.03085937909781933]} +{"t": 9.158, "q": [-0.3479119539260864, -0.02688216231763363, 0.014570382423698902, 0.6292815208435059, -0.3230172097682953, 0.015529941767454147, -0.3941359221935272, -0.010814564302563667, 0.008972570300102234, 0.6198645830154419, -0.2907681167125702, 0.010903405956923962, 0.007887826301157475, 0.1066039577126503, -0.055609408766031265, -0.5842669606208801, 0.5489374399185181, -0.9505528211593628, -0.7895926833152771, -0.6782232522964478, -0.5665542483329773, 0.03687546029686928, 0.17620407044887543, -0.15770041942596436, 0.03043993189930916, 1.2131152153015137, -0.1750895380973816, 0.07666309177875519, 0.03085937909781933]} +{"t": 9.1747, "q": [-0.347869336605072, -0.026967382058501244, 0.014637341722846031, 0.6293070912361145, -0.3230130970478058, 0.01552271656692028, -0.394152969121933, -0.010814564302563667, 0.008945786394178867, 0.620086133480072, -0.29082605242729187, 0.010874954983592033, 0.007901218719780445, 0.1066114753484726, -0.05560489371418953, -0.5838834643363953, 0.5486258268356323, -0.9484196305274963, -0.7896406054496765, -0.678199291229248, -0.5669617056846619, 0.03833753615617752, 0.1763119250535965, -0.1577363759279251, 0.030463900417089462, 1.213103175163269, -0.1750895380973816, 0.07666309177875519, 0.030835412442684174]} +{"t": 9.1914, "q": [-0.34785231947898865, -0.026992948725819588, 0.01470430102199316, 0.6293838024139404, -0.3229801058769226, 0.015595539472997189, -0.3941870629787445, -0.010806042701005936, 0.008972570300102234, 0.6204015016555786, -0.2909212112426758, 0.010825115256011486, 0.007834259420633316, 0.10659635066986084, -0.055594176054000854, -0.5837516188621521, 0.5479786992073059, -0.945759117603302, -0.7896286249160767, -0.6781753301620483, -0.5672253370285034, 0.03921238332986832, 0.17627596855163574, -0.1576884388923645, 0.030463900417089462, 1.213091254234314, -0.17510151863098145, 0.07667507231235504, 0.03087136335670948]} +{"t": 9.2082, "q": [-0.3478182256221771, -0.027027036994695663, 0.014771261252462864, 0.6294434666633606, -0.32289767265319824, 0.015712304040789604, -0.3942381739616394, -0.010814564302563667, 0.008972570300102234, 0.6205974817276001, -0.29097887873649597, 0.01075325720012188, 0.00772712379693985, 0.10659635066986084, -0.055594176054000854, -0.5836917161941528, 0.5471038222312927, -0.9433742165565491, -0.7896406054496765, -0.6781753301620483, -0.5676328539848328, 0.039799612015485764, 0.176240012049675, -0.15770041942596436, 0.030463900417089462, 1.213091254234314, -0.17510151863098145, 0.07667507231235504, 0.030835412442684174]} +{"t": 9.2249, "q": [-0.3477500379085541, -0.027103736996650696, 0.014891788363456726, 0.6294775605201721, -0.32289355993270874, 0.015734102576971054, -0.3942722678184509, -0.010788998566567898, 0.00898596178740263, 0.6208616495132446, -0.2910487651824951, 0.01064535602927208, 0.0076467725448310375, 0.10659635066986084, -0.055594176054000854, -0.5836437344551086, 0.5460851788520813, -0.9410972595214844, -0.7896166443824768, -0.6781633496284485, -0.5678605437278748, 0.04018310829997063, 0.17625200748443604, -0.15767645835876465, 0.030463900417089462, 1.213091254234314, -0.17510151863098145, 0.07669904083013535, 0.03085937909781933]} +{"t": 9.2416, "q": [-0.34771594405174255, -0.027103736996650696, 0.014945355243980885, 0.629486083984375, -0.3228070139884949, 0.01588715985417366, -0.39431488513946533, -0.01079752016812563, 0.00898596178740263, 0.6211344003677368, -0.29113927483558655, 0.010515951551496983, 0.007526245433837175, 0.10659635066986084, -0.055594176054000854, -0.5836197733879089, 0.5450904965400696, -0.9384247660636902, -0.7896885275840759, -0.6781154274940491, -0.5678485631942749, 0.04032691940665245, 0.17619207501411438, -0.15770041942596436, 0.03045191615819931, 1.213091254234314, -0.17512547969818115, 0.07667507231235504, 0.03085937909781933]} +{"t": 9.2583, "q": [-0.34766483306884766, -0.027112258598208427, 0.01503909844905138, 0.6295371651649475, -0.3227905333042145, 0.01587277092039585, -0.39439156651496887, -0.010771953500807285, 0.0089993542060256, 0.6214411854743958, -0.2912421226501465, 0.010364925488829613, 0.007459285669028759, 0.10660391300916672, -0.05559953302145004, -0.583679735660553, 0.5443115234375, -0.9363275170326233, -0.7896525859832764, -0.6780794262886047, -0.5677886009216309, 0.040362872183322906, 0.17619207501411438, -0.15767645835876465, 0.030463900417089462, 1.2131152153015137, -0.175137460231781, 0.07666309177875519, 0.03087136335670948]} +{"t": 9.2751, "q": [-0.34763073921203613, -0.027171913534402847, 0.015079274773597717, 0.6295968294143677, -0.32278645038604736, 0.015851015225052834, -0.3944768011569977, -0.010746387764811516, 0.0089993542060256, 0.6217138767242432, -0.29136136174201965, 0.010185100138187408, 0.00735215051099658, 0.10659635066986084, -0.055594176054000854, -0.5836676955223083, 0.5438321828842163, -0.9349493384361267, -0.7896885275840759, -0.6781033873558044, -0.5678485631942749, 0.04038684070110321, 0.17614413797855377, -0.15770041942596436, 0.030463900417089462, 1.2131152153015137, -0.17510151863098145, 0.07666309177875519, 0.03087136335670948]} +{"t": 9.2918, "q": [-0.34757959842681885, -0.027214523404836655, 0.01511945016682148, 0.629647970199585, -0.32279467582702637, 0.01585095375776291, -0.3945108950138092, -0.01071229949593544, 0.0089993542060256, 0.6219865679740906, -0.2914561629295349, 0.010077415034174919, 0.007231623865664005, 0.10660386830568314, -0.05558966100215912, -0.5836676955223083, 0.5438202023506165, -0.9346017837524414, -0.7896885275840759, -0.6780434846878052, -0.5678005814552307, 0.04039882495999336, 0.1761081963777542, -0.15770041942596436, 0.03045191615819931, 1.213091254234314, -0.1751134991645813, 0.07667507231235504, 0.03087136335670948]} +{"t": 9.3085, "q": [-0.3475114107131958, -0.02719748020172119, 0.01511945016682148, 0.6297417283058167, -0.32277822494506836, 0.01583656668663025, -0.39453646540641785, -0.01067821029573679, 0.008972570300102234, 0.6222252249717712, -0.29152587056159973, 0.009940599091351032, 0.007178056053817272, 0.10660391300916672, -0.05559953302145004, -0.5836317539215088, 0.5438920855522156, -0.9346017837524414, -0.7897124886512756, -0.6779835820198059, -0.5677286982536316, 0.040422793477773666, 0.1761081963777542, -0.1577123999595642, 0.030463900417089462, 1.2131152153015137, -0.1751134991645813, 0.07668706029653549, 0.03085937909781933]} +{"t": 9.3252, "q": [-0.34747734665870667, -0.02724861353635788, 0.015146234072744846, 0.629784345626831, -0.32279059290885925, 0.015785682946443558, -0.3946131467819214, -0.010661166161298752, 0.008972570300102234, 0.62247234582901, -0.2916409373283386, 0.009753511287271976, 0.0071914480067789555, 0.10660391300916672, -0.05559953302145004, -0.5834879875183105, 0.5439519882202148, -0.9347216486930847, -0.7896885275840759, -0.6778038144111633, -0.5676208734512329, 0.04039882495999336, 0.17618009448051453, -0.1577123999595642, 0.030475884675979614, 1.2131152153015137, -0.17512547969818115, 0.07666309177875519, 0.03085937909781933]} +{"t": 9.3421, "q": [-0.34747734665870667, -0.027274178341031075, 0.015132841654121876, 0.6298184394836426, -0.32279473543167114, 0.015763865783810616, -0.39471542835235596, -0.010644122026860714, 0.008959177881479263, 0.6226428151130676, -0.2917153835296631, 0.009652781300246716, 0.007178056053817272, 0.10660391300916672, -0.05559953302145004, -0.5832482576370239, 0.5439879298210144, -0.9348055124282837, -0.7896166443824768, -0.6776719689369202, -0.5676088333129883, 0.04038684070110321, 0.17618009448051453, -0.1577123999595642, 0.030463900417089462, 1.2130792140960693, -0.17510151863098145, 0.07666309177875519, 0.03085937909781933]} +{"t": 9.3588, "q": [-0.34748587012290955, -0.027214523404836655, 0.015173017978668213, 0.6298354864120483, -0.3229060471057892, 0.015538029372692108, -0.39481768012046814, -0.010635600425302982, 0.008932393975555897, 0.6228302717208862, -0.2917857766151428, 0.009530280716717243, 0.0071914480067789555, 0.10659635066986084, -0.055594176054000854, -0.5830325484275818, 0.5440359115600586, -0.9348294734954834, -0.789604663848877, -0.6776480078697205, -0.5675848722457886, 0.04037485644221306, 0.17613215744495392, -0.15772439539432526, 0.030487868934869766, 1.213091254234314, -0.175137460231781, 0.07666309177875519, 0.03087136335670948]} +{"t": 9.3755, "q": [-0.34749436378479004, -0.027223046869039536, 0.015146234072744846, 0.629861056804657, -0.3228607177734375, 0.015574665740132332, -0.39490291476249695, -0.010627077892422676, 0.008945786394178867, 0.6229666471481323, -0.2918064594268799, 0.00949426181614399, 0.007164664100855589, 0.10661900043487549, -0.055600374937057495, -0.5827209949493408, 0.5439999103546143, -0.934925377368927, -0.7894129157066345, -0.6776480078697205, -0.5675848722457886, 0.04038684070110321, 0.1760842204093933, -0.1577123999595642, 0.030463900417089462, 1.213091254234314, -0.17510151863098145, 0.07666309177875519, 0.03087136335670948]} +{"t": 9.3922, "q": [-0.34749436378479004, -0.02719748020172119, 0.015132841654121876, 0.6298695802688599, -0.3228525221347809, 0.015560216270387173, -0.39500516653060913, -0.0105929896235466, 0.008972570300102234, 0.6230348348617554, -0.2918437719345093, 0.009443874470889568, 0.00709770480170846, 0.10659635066986084, -0.055594176054000854, -0.5821816921234131, 0.5439639687538147, -0.935009241104126, -0.7891492247581482, -0.6775881052017212, -0.5675609111785889, 0.04039882495999336, 0.1761081963777542, -0.1577123999595642, 0.030499853193759918, 1.213103175163269, -0.1750655621290207, 0.07666309177875519, 0.03085937909781933]} +{"t": 9.409, "q": [-0.3475028872489929, -0.02719748020172119, 0.015173017978668213, 0.629878044128418, -0.3228607475757599, 0.01554564293473959, -0.3951074481010437, -0.010558901354670525, 0.008972570300102234, 0.6231114864349365, -0.2918727695941925, 0.009393430314958096, 0.0070307450369000435, 0.10660391300916672, -0.05559953302145004, -0.5813907384872437, 0.543940007686615, -0.9349732995033264, -0.7890413999557495, -0.677600085735321, -0.5675369501113892, 0.04038684070110321, 0.17616811394691467, -0.1577123999595642, 0.030487868934869766, 1.213091254234314, -0.17510151863098145, 0.07666309177875519, 0.030883347615599632]} +{"t": 9.4258, "q": [-0.3475028872489929, -0.02718043513596058, 0.015186409465968609, 0.6298695802688599, -0.3228895962238312, 0.015494617633521557, -0.39518412947654724, -0.01053333468735218, 0.008972570300102234, 0.6231626272201538, -0.29188522696495056, 0.009386284276843071, 0.006950393784791231, 0.1066114753484726, -0.05560489371418953, -0.5805637836456299, 0.543940007686615, -0.9348894357681274, -0.7889215350151062, -0.6775761246681213, -0.5675848722457886, 0.04039882495999336, 0.1761081963777542, -0.1577363759279251, 0.030463900417089462, 1.2130792140960693, -0.1750895380973816, 0.07666309177875519, 0.03087136335670948]} +{"t": 9.4425, "q": [-0.34753698110580444, -0.027146346867084503, 0.015173017978668213, 0.6298695802688599, -0.3228854835033417, 0.015501904301345348, -0.3952352702617645, -0.010499246418476105, 0.0089993542060256, 0.6231881976127625, -0.2919307351112366, 0.009292541071772575, 0.006870042532682419, 0.1066114753484726, -0.05560489371418953, -0.5796050429344177, 0.5439759492874146, -0.934865415096283, -0.7888616323471069, -0.6775521636009216, -0.5676088333129883, 0.04039882495999336, 0.17612017691135406, -0.15770041942596436, 0.030487868934869766, 1.2130672931671143, -0.1750895380973816, 0.07667507231235504, 0.030883347615599632]} +{"t": 9.4592, "q": [-0.34753698110580444, -0.02712930366396904, 0.015173017978668213, 0.6298695802688599, -0.3228690028190613, 0.015531050972640514, -0.39526084065437317, -0.010482202284038067, 0.009052921086549759, 0.6232052445411682, -0.2919556200504303, 0.009263783693313599, 0.0068030827678740025, 0.10660391300916672, -0.05559953302145004, -0.5785025358200073, 0.5439519882202148, -0.9348774552345276, -0.7889454960823059, -0.6775401830673218, -0.5676208734512329, 0.04038684070110321, 0.17607223987579346, -0.1576884388923645, 0.030463900417089462, 1.2130672931671143, -0.1750895380973816, 0.07666309177875519, 0.030883347615599632]} +{"t": 9.4759, "q": [-0.3475455045700073, -0.027154870331287384, 0.015213193371891975, 0.6298865675926208, -0.3228731155395508, 0.015523764304816723, -0.39527788758277893, -0.01047367975115776, 0.0089993542060256, 0.6232052445411682, -0.2919846475124359, 0.009227804839611053, 0.00676290737465024, 0.1066114753484726, -0.05560489371418953, -0.5774598717689514, 0.5439280271530151, -0.9349014163017273, -0.7888855934143066, -0.6775161623954773, -0.5676208734512329, 0.04038684070110321, 0.1760842204093933, -0.1576884388923645, 0.030487868934869766, 1.213091254234314, -0.17510151863098145, 0.07666309177875519, 0.03087136335670948]} +{"t": 9.4927, "q": [-0.3475540280342102, -0.027171913534402847, 0.015173017978668213, 0.629878044128418, -0.3228277862071991, 0.01560395397245884, -0.3952864110469818, -0.01047367975115776, 0.008972570300102234, 0.623222291469574, -0.2920301854610443, 0.009148526936769485, 0.006776299327611923, 0.10659635066986084, -0.055594176054000854, -0.5765491127967834, 0.5439040660858154, -0.9349014163017273, -0.7888616323471069, -0.6774802207946777, -0.5676208734512329, 0.04037485644221306, 0.1760602593421936, -0.15770041942596436, 0.030475884675979614, 1.213103175163269, -0.17510151863098145, 0.07666309177875519, 0.030883347615599632]} +{"t": 9.5094, "q": [-0.3476051688194275, -0.027154870331287384, 0.015186409465968609, 0.629878044128418, -0.3227865397930145, 0.015705863013863564, -0.3952949345111847, -0.010465158149600029, 0.008972570300102234, 0.623222291469574, -0.29205504059791565, 0.009105304256081581, 0.0068030827678740025, 0.10661139339208603, -0.055585142225027084, -0.5760457515716553, 0.5438801050186157, -0.9349493384361267, -0.7888496518135071, -0.6774203181266785, -0.5676568150520325, 0.04038684070110321, 0.17602430284023285, -0.15770041942596436, 0.030475884675979614, 1.213103175163269, -0.1751614362001419, 0.07666309177875519, 0.030907316133379936]} +{"t": 9.5263, "q": [-0.34761369228363037, -0.027154870331287384, 0.015159625560045242, 0.6298695802688599, -0.32274532318115234, 0.015764236450195312, -0.3952864110469818, -0.010482202284038067, 0.008959177881479263, 0.6232308149337769, -0.2920718193054199, 0.009134368039667606, 0.006870042532682419, 0.10659635066986084, -0.055594176054000854, -0.5758540034294128, 0.5439519882202148, -0.9349613189697266, -0.7887297868728638, -0.6773244142532349, -0.5676448345184326, 0.04037485644221306, 0.17604826390743256, -0.15770041942596436, 0.030475884675979614, 1.2130792140960693, -0.17514945566654205, 0.07666309177875519, 0.030883347615599632]} +{"t": 9.5431, "q": [-0.347639262676239, -0.027154870331287384, 0.015159625560045242, 0.629878044128418, -0.32272469997406006, 0.01581519842147827, -0.39526936411857605, -0.01047367975115776, 0.008945786394178867, 0.6232308149337769, -0.292113721370697, 0.00919253658503294, 0.006923609878867865, 0.10660386830568314, -0.05558966100215912, -0.5757341384887695, 0.5439280271530151, -0.9350451827049255, -0.7886219620704651, -0.6772764921188354, -0.5676448345184326, 0.04038684070110321, 0.17604826390743256, -0.1577123999595642, 0.030487868934869766, 1.213103175163269, -0.1751614362001419, 0.07666309177875519, 0.030895331874489784]} +{"t": 9.5598, "q": [-0.34761369228363037, -0.02718043513596058, 0.01519980188459158, 0.629878044128418, -0.32272058725357056, 0.015807975083589554, -0.39527788758277893, -0.010482202284038067, 0.008972570300102234, 0.6232393383979797, -0.2921305000782013, 0.009221582673490047, 0.006896826438605785, 0.10661891102790833, -0.05558062717318535, -0.5756862163543701, 0.5439519882202148, -0.9350332021713257, -0.7885500192642212, -0.6772405505180359, -0.5676088333129883, 0.040362872183322906, 0.17604826390743256, -0.15770041942596436, 0.030487868934869766, 1.213091254234314, -0.1750895380973816, 0.07666309177875519, 0.030895331874489784]} +{"t": 9.5765, "q": [-0.3475966453552246, -0.027171913534402847, 0.015253368765115738, 0.629878044128418, -0.3225969672203064, 0.01601213589310646, -0.3952352702617645, -0.010456635616719723, 0.008959177881479263, 0.623290479183197, -0.29213887453079224, 0.009221640415489674, 0.006870042532682419, 0.10660386830568314, -0.05558966100215912, -0.5756622552871704, 0.5439999103546143, -0.9349852800369263, -0.7884182333946228, -0.6772046089172363, -0.5676208734512329, 0.040362872183322906, 0.176012322306633, -0.15770041942596436, 0.030487868934869766, 1.2130672931671143, -0.17510151863098145, 0.07666309177875519, 0.030895331874489784]} +{"t": 9.5933, "q": [-0.3475966453552246, -0.02718895860016346, 0.015306936576962471, 0.6298695802688599, -0.3222053647041321, 0.01673361100256443, -0.3952437937259674, -0.010456635616719723, 0.008972570300102234, 0.6233501434326172, -0.2921639382839203, 0.00923627894371748, 0.0068030827678740025, 0.10661139339208603, -0.055585142225027084, -0.5756742358207703, 0.5439759492874146, -0.9349972605705261, -0.7883103489875793, -0.6771686673164368, -0.5676088333129883, 0.040350887924432755, 0.1760362833738327, -0.15770041942596436, 0.030487868934869766, 1.2130792140960693, -0.17510151863098145, 0.07666309177875519, 0.030883347615599632]} +{"t": 9.6101, "q": [-0.3475625514984131, -0.027223046869039536, 0.0153738958761096, 0.629878044128418, -0.3214552104473114, 0.01804567500948906, -0.3952437937259674, -0.010456635616719723, 0.0089993542060256, 0.623435378074646, -0.2921721935272217, 0.009221871383488178, 0.006816474720835686, 0.10660382360219955, -0.055579785257577896, -0.5756622552871704, 0.5439879298210144, -0.9350451827049255, -0.7881785035133362, -0.677084743976593, -0.5676208734512329, 0.04032691940665245, 0.1760362833738327, -0.15767645835876465, 0.030463900417089462, 1.213103175163269, -0.1751134991645813, 0.07665110379457474, 0.030895331874489784]} +{"t": 9.627, "q": [-0.3475625514984131, -0.027214523404836655, 0.015440856106579304, 0.6298865675926208, -0.32062938809394836, 0.019487647339701653, -0.3952523171901703, -0.010448113083839417, 0.009026138111948967, 0.6235461235046387, -0.29223039746284485, 0.009178879670798779, 0.0067896912805736065, 0.10660377144813538, -0.055569905787706375, -0.5756622552871704, 0.5439759492874146, -0.93506920337677, -0.7880826592445374, -0.6770248413085938, -0.5676328539848328, 0.0403149351477623, 0.17592842876911163, -0.1576884388923645, 0.030487868934869766, 1.213091254234314, -0.17512547969818115, 0.07666309177875519, 0.030895331874489784]} +{"t": 9.6438, "q": [-0.3475540280342102, -0.027214523404836655, 0.015440856106579304, 0.6298865675926208, -0.32062941789627075, 0.019473128020763397, -0.39527788758277893, -0.010465158149600029, 0.0089993542060256, 0.6236484050750732, -0.29228004813194275, 0.009164741262793541, 0.006829866673797369, 0.10660382360219955, -0.055579785257577896, -0.5755664110183716, 0.5440718531608582, -0.9350811839103699, -0.7879867553710938, -0.6770248413085938, -0.5676208734512329, 0.04032691940665245, 0.17592842876911163, -0.15770041942596436, 0.030487868934869766, 1.213103175163269, -0.175137460231781, 0.07666309177875519, 0.030895331874489784]} +{"t": 9.6605, "q": [-0.3475455045700073, -0.027291223406791687, 0.015494422987103462, 0.6299036145210266, -0.32062938809394836, 0.019487647339701653, -0.39526936411857605, -0.010456635616719723, 0.009012745693325996, 0.6238018274307251, -0.29230064153671265, 0.009128703735768795, 0.0068566505797207355, 0.10659625381231308, -0.05557442083954811, -0.5753986239433289, 0.544083833694458, -0.9350931644439697, -0.7877470850944519, -0.6770248413085938, -0.5676568150520325, 0.04032691940665245, 0.17600032687187195, -0.15770041942596436, 0.03045191615819931, 1.213103175163269, -0.17510151863098145, 0.07666309177875519, 0.030895331874489784]} +{"t": 9.6772, "q": [-0.3475199341773987, -0.027282701805233955, 0.015481031499803066, 0.6299547553062439, -0.32062527537345886, 0.0194949209690094, -0.39527788758277893, -0.010465158149600029, 0.009026138111948967, 0.6239040493965149, -0.2923792600631714, 0.009107552468776703, 0.006870042532682419, 0.10660377144813538, -0.055569905787706375, -0.5752547979354858, 0.5440598726272583, -0.9350811839103699, -0.7874714732170105, -0.6770248413085938, -0.5676807761192322, 0.0403389036655426, 0.1759883463382721, -0.15767645835876465, 0.030487868934869766, 1.213103175163269, -0.1751134991645813, 0.07667507231235504, 0.030895331874489784]} +{"t": 9.694, "q": [-0.34749436378479004, -0.027282701805233955, 0.015481031499803066, 0.6299632787704468, -0.320621132850647, 0.019502196460962296, -0.39526936411857605, -0.010465158149600029, 0.0089993542060256, 0.6239892840385437, -0.2924288809299469, 0.00907896738499403, 0.006870042532682419, 0.1065962091088295, -0.05556454509496689, -0.5749671459197998, 0.5439999103546143, -0.9349732995033264, -0.7870040535926819, -0.6770607829093933, -0.5677526593208313, 0.04038684070110321, 0.1759643852710724, -0.15770041942596436, 0.030475884675979614, 1.213103175163269, -0.17510151863098145, 0.07666309177875519, 0.030895331874489784]} +{"t": 9.7107, "q": [-0.3474688231945038, -0.027265656739473343, 0.015467639081180096, 0.6299632787704468, -0.320621132850647, 0.019502196460962296, -0.39526936411857605, -0.01047367975115776, 0.00898596178740263, 0.6241341829299927, -0.29247844219207764, 0.009035898372530937, 0.006937001831829548, 0.10657350718975067, -0.05554846301674843, -0.5747035145759583, 0.5439639687538147, -0.9348774552345276, -0.7863689064979553, -0.6771206855773926, -0.5678126215934753, 0.04043477773666382, 0.1759883463382721, -0.15770041942596436, 0.030475884675979614, 1.213091254234314, -0.17512547969818115, 0.07665110379457474, 0.030907316133379936]} +{"t": 9.7274, "q": [-0.347451776266098, -0.027274178341031075, 0.0154542475938797, 0.6299973726272583, -0.3206087648868561, 0.019495002925395966, -0.39532047510147095, -0.010482202284038067, 0.008972570300102234, 0.6243045926094055, -0.29256078600883484, 0.008906231261789799, 0.006977177690714598, 0.10659612715244293, -0.05554479733109474, -0.5744518637657166, 0.5440118908882141, -0.9347216486930847, -0.7853622436523438, -0.6771806478500366, -0.568004310131073, 0.04054263234138489, 0.17597636580467224, -0.15767645835876465, 0.030487868934869766, 1.213103175163269, -0.17507754266262054, 0.07665110379457474, 0.03087136335670948]} +{"t": 9.7442, "q": [-0.3474176824092865, -0.027274178341031075, 0.015467639081180096, 0.6300570368766785, -0.3206046223640442, 0.019516777247190475, -0.39532899856567383, -0.010490723885595798, 0.008932393975555897, 0.6244409680366516, -0.2926393747329712, 0.008870613761246204, 0.007044136989861727, 0.10657346248626709, -0.055538590997457504, -0.5741761922836304, 0.5441317558288574, -0.9343980550765991, -0.7841638326644897, -0.6773004531860352, -0.5682680010795593, 0.04080628603696823, 0.17597636580467224, -0.1576884388923645, 0.030463900417089462, 1.213103175163269, -0.1750895380973816, 0.07665110379457474, 0.030883347615599632]} +{"t": 9.7609, "q": [-0.3474262058734894, -0.027274178341031075, 0.0154542475938797, 0.6300655603408813, -0.32062116265296936, 0.019473178312182426, -0.3953801393508911, -0.010490723885595798, 0.008905611000955105, 0.6245262026786804, -0.2927137315273285, 0.008813252672553062, 0.007204839959740639, 0.10657346248626709, -0.055538590997457504, -0.5737447738647461, 0.5441437363624573, -0.9339067339897156, -0.7831931114196777, -0.677372395992279, -0.568375825881958, 0.0412377193570137, 0.17604826390743256, -0.1576884388923645, 0.030487868934869766, 1.213103175163269, -0.17510151863098145, 0.07666309177875519, 0.030883347615599632]} +{"t": 9.7776, "q": [-0.3474262058734894, -0.027274178341031075, 0.015414072200655937, 0.6300570368766785, -0.32061702013015747, 0.019480453804135323, -0.395388662815094, -0.010499246418476105, 0.008932393975555897, 0.6245773434638977, -0.2927510440349579, 0.00882074423134327, 0.007338759023696184, 0.10657341778278351, -0.05552871525287628, -0.5729658007621765, 0.5442156791687012, -0.9331397414207458, -0.7823062539100647, -0.6776959300041199, -0.5684118270874023, 0.042460110038518906, 0.17604826390743256, -0.15770041942596436, 0.030487868934869766, 1.2131271362304688, -0.17510151863098145, 0.07666309177875519, 0.030895331874489784]} +{"t": 9.7944, "q": [-0.3474262058734894, -0.027274178341031075, 0.015400679782032967, 0.6300740838050842, -0.3206046223640442, 0.01950227841734886, -0.3954227566719055, -0.010499246418476105, 0.008852043189108372, 0.6246284246444702, -0.2928006052970886, 0.008777692914009094, 0.007378934416919947, 0.10659603029489517, -0.055525042116642, -0.5719711184501648, 0.5441916584968567, -0.9318334460258484, -0.781395435333252, -0.6778397560119629, -0.5684597492218018, 0.044257745146751404, 0.176012322306633, -0.15770041942596436, 0.030463900417089462, 1.2131152153015137, -0.1750895380973816, 0.07666309177875519, 0.030895331874489784]} +{"t": 9.8114, "q": [-0.3474262058734894, -0.027274178341031075, 0.015400679782032967, 0.6300655603408813, -0.3206046223640442, 0.01950227841734886, -0.3954227566719055, -0.010499246418476105, 0.008825259283185005, 0.6247221827507019, -0.29286661744117737, 0.008705790154635906, 0.007378934416919947, 0.10656575858592987, -0.05550360307097435, -0.5707607269287109, 0.5441796779632568, -0.9299638867378235, -0.7804606556892395, -0.6778876781463623, -0.5684597492218018, 0.04646284133195877, 0.17609620094299316, -0.15770041942596436, 0.030463900417089462, 1.213103175163269, -0.1750895380973816, 0.07665110379457474, 0.030919300392270088]} +{"t": 9.8281, "q": [-0.34744325280189514, -0.027291223406791687, 0.015400679782032967, 0.6300655603408813, -0.3206046521663666, 0.0194877777248621, -0.3954398036003113, -0.010499246418476105, 0.008771691471338272, 0.6247477531433105, -0.29294949769973755, 0.008706365711987019, 0.00739232636988163, 0.10656571388244629, -0.05549372732639313, -0.5694184899330139, 0.5441916584968567, -0.9277468323707581, -0.7793821096420288, -0.6779476404190063, -0.568519651889801, 0.04810468107461929, 0.17607223987579346, -0.15770041942596436, 0.030463900417089462, 1.213103175163269, -0.1750895380973816, 0.07665110379457474, 0.030895331874489784]} +{"t": 9.8448, "q": [-0.3474091589450836, -0.027274178341031075, 0.015400679782032967, 0.6300570368766785, -0.3206087648868561, 0.019495002925395966, -0.3954312801361084, -0.010490723885595798, 0.00873151607811451, 0.6248074173927307, -0.29307374358177185, 0.008692762814462185, 0.007378934416919947, 0.10655815154314041, -0.05548837035894394, -0.5679923295974731, 0.5442396402359009, -0.9257094860076904, -0.7784113883972168, -0.678055465221405, -0.5685316324234009, 0.04900349676609039, 0.1760842204093933, -0.15770041942596436, 0.030463900417089462, 1.2131152153015137, -0.17510151863098145, 0.07666309177875519, 0.030907316133379936]} +{"t": 9.8616, "q": [-0.3474262058734894, -0.027274178341031075, 0.015414072200655937, 0.6300740838050842, -0.3205922544002533, 0.019509602338075638, -0.39544832706451416, -0.010499246418476105, 0.008691340684890747, 0.6249608397483826, -0.2931770384311676, 0.008613904938101768, 0.0074191102758049965, 0.10656562447547913, -0.055473972111940384, -0.5668418407440186, 0.5442516207695007, -0.924235463142395, -0.7773088216781616, -0.6780794262886047, -0.5686754584312439, 0.04939897730946541, 0.1760602593421936, -0.1577123999595642, 0.030475884675979614, 1.213103175163269, -0.17510151863098145, 0.07666309177875519, 0.030883347615599632]} +{"t": 9.8783, "q": [-0.34744325280189514, -0.027265656739473343, 0.015427463687956333, 0.6300655603408813, -0.3206087648868561, 0.019495002925395966, -0.39545685052871704, -0.010516290552914143, 0.008597597479820251, 0.6250630617141724, -0.29345041513442993, 0.008586861193180084, 0.007445894181728363, 0.10655058175325394, -0.055483005940914154, -0.5656314492225647, 0.5442036390304565, -0.9226774573326111, -0.7759665846824646, -0.678055465221405, -0.5688192844390869, 0.049566756933927536, 0.1761081963777542, -0.1576884388923645, 0.030487868934869766, 1.213103175163269, -0.17512547969818115, 0.07667507231235504, 0.030907316133379936]} +{"t": 9.8952, "q": [-0.3474262058734894, -0.027282701805233955, 0.0154542475938797, 0.6300740838050842, -0.3205922544002533, 0.019509602338075638, -0.3954653739929199, -0.010550378821790218, 0.008597597479820251, 0.6252250075340271, -0.29365429282188416, 0.008581372909247875, 0.007459285669028759, 0.10655809938907623, -0.05547848716378212, -0.56449294090271, 0.5441317558288574, -0.9210835695266724, -0.7751636505126953, -0.678055465221405, -0.5687953233718872, 0.049566756933927536, 0.1760602593421936, -0.1577123999595642, 0.030475884675979614, 1.213103175163269, -0.17510151863098145, 0.07666309177875519, 0.03087136335670948]} +{"t": 9.9119, "q": [-0.3473750650882721, -0.027274178341031075, 0.015507815405726433, 0.6300740838050842, -0.3205881118774414, 0.019516896456480026, -0.39545685052871704, -0.010575945489108562, 0.008624380454421043, 0.6253954172134399, -0.2938457131385803, 0.00858299806714058, 0.007445894181728363, 0.1065656766295433, -0.055483851581811905, -0.5632825493812561, 0.5441317558288574, -0.919981062412262, -0.77481609582901, -0.6780434846878052, -0.5687713027000427, 0.04951881989836693, 0.17602430284023285, -0.15770041942596436, 0.030475884675979614, 1.213103175163269, -0.1751134991645813, 0.07666309177875519, 0.030883347615599632]} +{"t": 9.9286, "q": [-0.3472728133201599, -0.027291223406791687, 0.015574774704873562, 0.6300740838050842, -0.3205963671207428, 0.019516827538609505, -0.39545685052871704, -0.010567422956228256, 0.008597597479820251, 0.6256255507469177, -0.2939660847187042, 0.008533357642591, 0.0074191102758049965, 0.10654296725988388, -0.05546777322888374, -0.5620841383934021, 0.5441197752952576, -0.9194417595863342, -0.7747202515602112, -0.6779835820198059, -0.5687353610992432, 0.04945889860391617, 0.1760602593421936, -0.1577123999595642, 0.030463900417089462, 1.213103175163269, -0.17510151863098145, 0.07668706029653549, 0.030883347615599632]} +{"t": 9.9453, "q": [-0.3471790552139282, -0.0273082684725523, 0.015681909397244453, 0.6300740838050842, -0.3206087350845337, 0.019524021074175835, -0.39545685052871704, -0.010584467090666294, 0.00865116436034441, 0.6258982419967651, -0.29415684938430786, 0.008433610200881958, 0.007365542463958263, 0.10655049234628677, -0.05546325445175171, -0.5607778429985046, 0.5440958142280579, -0.9190462827682495, -0.7747561931610107, -0.6779236793518066, -0.5687353610992432, 0.04939897730946541, 0.1760602593421936, -0.1576884388923645, 0.030487868934869766, 1.2131152153015137, -0.175137460231781, 0.07668706029653549, 0.030883347615599632]} +{"t": 9.9621, "q": [-0.3470427095890045, -0.02731679007411003, 0.015735477209091187, 0.6300740838050842, -0.3206128478050232, 0.01951674558222294, -0.39545685052871704, -0.010635600425302982, 0.008677948266267776, 0.6260857582092285, -0.29445192217826843, 0.00837097316980362, 0.007298583164811134, 0.10655053704977036, -0.05547313019633293, -0.5593158006668091, 0.544083833694458, -0.918566882610321, -0.7748400568962097, -0.6778637170791626, -0.5688432455062866, 0.04930310323834419, 0.17600032687187195, -0.15770041942596436, 0.030487868934869766, 1.213103175163269, -0.17512547969818115, 0.07668706029653549, 0.030883347615599632]} +{"t": 9.9788, "q": [-0.3468637466430664, -0.02731679007411003, 0.015829220414161682, 0.6300740838050842, -0.3206005096435547, 0.019509553909301758, -0.39545685052871704, -0.010644122026860714, 0.008718123659491539, 0.6263925433158875, -0.2945307493209839, 0.00833545345813036, 0.007218231912702322, 0.10655053704977036, -0.05547313019633293, -0.5579975247383118, 0.544083833694458, -0.9179556965827942, -0.7748640775680542, -0.6777678728103638, -0.5688791871070862, 0.049195244908332825, 0.176012322306633, -0.15770041942596436, 0.030463900417089462, 1.213103175163269, -0.17507754266262054, 0.07667507231235504, 0.03087136335670948]} +{"t": 9.9955, "q": [-0.3467444181442261, -0.027333833277225494, 0.015909571200609207, 0.6300740838050842, -0.3206046223640442, 0.01950227841734886, -0.3954653739929199, -0.010669688694179058, 0.008744907565414906, 0.6266737580299377, -0.29466691613197327, 0.008155569434165955, 0.007218231912702322, 0.10655053704977036, -0.05547313019633293, -0.5570507645606995, 0.5441916584968567, -0.9175122976303101, -0.774876058101654, -0.6776719689369202, -0.5688432455062866, 0.04903944954276085, 0.17602430284023285, -0.15770041942596436, 0.03051183745265007, 1.213103175163269, -0.17510151863098145, 0.07667507231235504, 0.030883347615599632]} +{"t": 10.0123, "q": [-0.346633642911911, -0.027325311675667763, 0.015896180644631386, 0.6300740838050842, -0.3206005096435547, 0.019509553909301758, -0.39549094438552856, -0.010686732828617096, 0.008744907565414906, 0.6269208788871765, -0.29479530453681946, 0.008062543347477913, 0.007164664100855589, 0.1065656766295433, -0.055483851581811905, -0.5562118887901306, 0.544167697429657, -0.917452335357666, -0.774876058101654, -0.6776360273361206, -0.5688192844390869, 0.04882373288273811, 0.17602430284023285, -0.15770041942596436, 0.030463900417089462, 1.2131152153015137, -0.17510151863098145, 0.07667507231235504, 0.030883347615599632]} +{"t": 10.029, "q": [-0.34652286767959595, -0.027342356741428375, 0.015922963619232178, 0.6300740838050842, -0.3206046223640442, 0.01950227841734886, -0.3955164849758148, -0.01071229949593544, 0.008785083889961243, 0.6271936297416687, -0.29492008686065674, 0.008049136959016323, 0.007084312848746777, 0.10655058175325394, -0.055483005940914154, -0.5554688572883606, 0.544167697429657, -0.917452335357666, -0.7748640775680542, -0.6775282025337219, -0.5688073039054871, 0.04863198474049568, 0.17597636580467224, -0.1577123999595642, 0.030463900417089462, 1.213103175163269, -0.17510151863098145, 0.07666309177875519, 0.030883347615599632]} +{"t": 10.0457, "q": [-0.34638649225234985, -0.027342356741428375, 0.016003314405679703, 0.6300996541976929, -0.3206046223640442, 0.01950227841734886, -0.3955591022968292, -0.010720821097493172, 0.008785083889961243, 0.6275174617767334, -0.29504838585853577, 0.007941613905131817, 0.007044136989861727, 0.1065656766295433, -0.055483851581811905, -0.5550373792648315, 0.5441437363624573, -0.9175362586975098, -0.774876058101654, -0.6773004531860352, -0.5687713027000427, 0.04844023659825325, 0.17591644823551178, -0.15767645835876465, 0.030475884675979614, 1.2130792140960693, -0.17507754266262054, 0.07665110379457474, 0.03087136335670948]} +{"t": 10.0625, "q": [-0.3463098108768463, -0.02735939994454384, 0.01598992384970188, 0.6301422715187073, -0.3206046223640442, 0.01950227841734886, -0.3956187665462494, -0.010729343630373478, 0.008825259283185005, 0.6277986764907837, -0.29524245858192444, 0.007704312913119793, 0.006950393784791231, 0.10655058175325394, -0.055483005940914154, -0.5547018647193909, 0.5441796779632568, -0.9175841808319092, -0.774876058101654, -0.6771926283836365, -0.5687833428382874, 0.04832039773464203, 0.17595238983631134, -0.1576884388923645, 0.030487868934869766, 1.2131152153015137, -0.1751134991645813, 0.07667507231235504, 0.030895331874489784]} +{"t": 10.0793, "q": [-0.3461393713951111, -0.02736792154610157, 0.016003314405679703, 0.6301507949829102, -0.3206005394458771, 0.019480552524328232, -0.39563581347465515, -0.01073786523193121, 0.008865434676408768, 0.6280543208122253, -0.295346736907959, 0.007741422392427921, 0.006883434485644102, 0.10655809938907623, -0.05547848716378212, -0.5544501543045044, 0.544167697429657, -0.9175242781639099, -0.7748640775680542, -0.6771806478500366, -0.5688672065734863, 0.04828444495797157, 0.1759643852710724, -0.15770041942596436, 0.030475884675979614, 1.2131152153015137, -0.17510151863098145, 0.07666309177875519, 0.030883347615599632]} +{"t": 10.096, "q": [-0.34602856636047363, -0.027342356741428375, 0.016016706824302673, 0.6301422715187073, -0.32058820128440857, 0.01945887878537178, -0.39564433693885803, -0.01073786523193121, 0.008852043189108372, 0.6281992197036743, -0.29541724920272827, 0.007705796044319868, 0.0068566505797207355, 0.10655815154314041, -0.05548837035894394, -0.5543423295021057, 0.5441077947616577, -0.9174163937568665, -0.774876058101654, -0.6771686673164368, -0.568891167640686, 0.04828444495797157, 0.17590445280075073, -0.1576884388923645, 0.030463900417089462, 1.213091254234314, -0.17510151863098145, 0.07667507231235504, 0.03087136335670948]} +{"t": 10.1128, "q": [-0.34596893191337585, -0.02735939994454384, 0.016016706824302673, 0.630159318447113, -0.32058003544807434, 0.019415410235524178, -0.3956613838672638, -0.010729343630373478, 0.008838650770485401, 0.628292977809906, -0.2954709231853485, 0.007641103584319353, 0.006749515421688557, 0.1065656766295433, -0.055483851581811905, -0.5542464256286621, 0.5440239310264587, -0.9172965884208679, -0.7748880386352539, -0.6771447062492371, -0.5689630508422852, 0.04827246069908142, 0.17591644823551178, -0.15767645835876465, 0.030463900417089462, 1.2130672931671143, -0.17507754266262054, 0.07666309177875519, 0.030883347615599632]} +{"t": 10.1295, "q": [-0.345960408449173, -0.02731679007411003, 0.01598992384970188, 0.630159318447113, -0.32057175040245056, 0.01942995935678482, -0.3957465887069702, -0.010695254430174828, 0.008838650770485401, 0.6283951997756958, -0.29550784826278687, 0.007561753038316965, 0.006682556122541428, 0.10655809938907623, -0.05547848716378212, -0.5541146397590637, 0.5439519882202148, -0.9171767234802246, -0.7748880386352539, -0.6771566867828369, -0.5689870715141296, 0.04828444495797157, 0.17590445280075073, -0.15767645835876465, 0.030475884675979614, 1.2131152153015137, -0.1751134991645813, 0.07667507231235504, 0.030895331874489784]} +{"t": 10.1463, "q": [-0.34597745537757874, -0.02731679007411003, 0.015922963619232178, 0.630159318447113, -0.3205883204936981, 0.01938634179532528, -0.395831823348999, -0.010695254430174828, 0.008771691471338272, 0.628454864025116, -0.295549213886261, 0.00751867238432169, 0.006548637058585882, 0.10655058175325394, -0.055483005940914154, -0.5538869500160217, 0.5439280271530151, -0.9169849753379822, -0.774876058101654, -0.6771566867828369, -0.5691308379173279, 0.048296429216861725, 0.17588049173355103, -0.1576884388923645, 0.030463900417089462, 1.2130672931671143, -0.175137460231781, 0.07662713527679443, 0.030883347615599632]} +{"t": 10.163, "q": [-0.34596893191337585, -0.0273082684725523, 0.015882788226008415, 0.6301678419113159, -0.3205883800983429, 0.019357342272996902, -0.39585739374160767, -0.01067821029573679, 0.008785083889961243, 0.6284889578819275, -0.295565664768219, 0.007489838637411594, 0.006508461199700832, 0.10655058175325394, -0.055483005940914154, -0.5537790656089783, 0.5438801050186157, -0.9169011116027832, -0.7748640775680542, -0.6771447062492371, -0.5691068768501282, 0.048296429216861725, 0.17589247226715088, -0.15767645835876465, 0.030487868934869766, 1.2130672931671143, -0.17507754266262054, 0.07666309177875519, 0.030883347615599632]} +{"t": 10.1797, "q": [-0.34597745537757874, -0.027291223406791687, 0.015882788226008415, 0.630159318447113, -0.32060492038726807, 0.019328242167830467, -0.3959340751171112, -0.010661166161298752, 0.008798475377261639, 0.6285060048103333, -0.29557809233665466, 0.007482706569135189, 0.006521853152662516, 0.10656571388244629, -0.05549372732639313, -0.553659200668335, 0.543796181678772, -0.9168770909309387, -0.774876058101654, -0.6771686673164368, -0.5691308379173279, 0.04830841347575188, 0.17589247226715088, -0.1576884388923645, 0.030463900417089462, 1.2130433320999146, -0.17510151863098145, 0.07666309177875519, 0.030895331874489784]} +{"t": 10.1965, "q": [-0.3459944725036621, -0.027291223406791687, 0.015869395807385445, 0.630159318447113, -0.32061314582824707, 0.0193426925688982, -0.39596816897392273, -0.010669688694179058, 0.008771691471338272, 0.6284804344177246, -0.29561111330986023, 0.0074395365081727505, 0.006454893853515387, 0.1065656766295433, -0.055483851581811905, -0.5535393953323364, 0.5436643958091736, -0.9168770909309387, -0.7749239802360535, -0.6771087050437927, -0.5691428184509277, 0.048296429216861725, 0.17586851119995117, -0.1576884388923645, 0.030463900417089462, 1.2130672931671143, -0.175137460231781, 0.07666309177875519, 0.030895331874489784]} +{"t": 10.2133, "q": [-0.34602856636047363, -0.027274178341031075, 0.015896180644631386, 0.630159318447113, -0.32061314582824707, 0.0193426925688982, -0.39604488015174866, -0.01067821029573679, 0.008771691471338272, 0.6284719109535217, -0.2956441342830658, 0.007396366447210312, 0.006414717994630337, 0.10658080130815506, -0.05549456924200058, -0.553203821182251, 0.543424665927887, -0.9168651103973389, -0.7749119997024536, -0.6771206855773926, -0.5691908001899719, 0.048296429216861725, 0.17585651576519012, -0.1576884388923645, 0.030487868934869766, 1.2130552530288696, -0.17512547969818115, 0.07666309177875519, 0.030895331874489784]} +{"t": 10.2301, "q": [-0.3460967540740967, -0.027240090072155, 0.015869395807385445, 0.6301678419113159, -0.32061314582824707, 0.0193426925688982, -0.39614713191986084, -0.010669688694179058, 0.008798475377261639, 0.6284719109535217, -0.2956981062889099, 0.0073751118034124374, 0.00642810994759202, 0.10654305666685104, -0.05548752099275589, -0.5528203248977661, 0.5429812669754028, -0.9165655374526978, -0.7748640775680542, -0.6771206855773926, -0.5693106055259705, 0.04830841347575188, 0.17588049173355103, -0.15767645835876465, 0.030487868934869766, 1.2130552530288696, -0.1751134991645813, 0.07666309177875519, 0.030895331874489784]} +{"t": 10.2468, "q": [-0.346190482378006, -0.027214523404836655, 0.015842612832784653, 0.6301422715187073, -0.32062962651252747, 0.0193425752222538, -0.396206796169281, -0.01067821029573679, 0.008798475377261639, 0.6284378170967102, -0.29571884870529175, 0.00736805098131299, 0.006414717994630337, 0.10655809938907623, -0.05547848716378212, -0.5524248480796814, 0.542142391204834, -0.9160142540931702, -0.7749119997024536, -0.6771686673164368, -0.5694304704666138, 0.04832039773464203, 0.17584453523159027, -0.15767645835876465, 0.030487868934869766, 1.2130552530288696, -0.17512547969818115, 0.07663912326097488, 0.030883347615599632]} +{"t": 10.264, "q": [-0.34625014662742615, -0.02719748020172119, 0.015842612832784653, 0.6301422715187073, -0.3206254541873932, 0.0193643681704998, -0.39622384309768677, -0.010686732828617096, 0.008838650770485401, 0.6283866763114929, -0.2957688868045807, 0.0073829591274261475, 0.00646828580647707, 0.10655815154314041, -0.05548837035894394, -0.5521851778030396, 0.5410877466201782, -0.9153311848640442, -0.774876058101654, -0.6771447062492371, -0.5695143342018127, 0.04830841347575188, 0.17585651576519012, -0.1577123999595642, 0.030487868934869766, 1.2130552530288696, -0.17510151863098145, 0.07666309177875519, 0.030895331874489784]} +{"t": 10.2808, "q": [-0.34629276394844055, -0.027154870331287384, 0.01581582799553871, 0.6301337480545044, -0.32064196467399597, 0.019364267587661743, -0.3962494134902954, -0.010686732828617096, 0.00881186779588461, 0.6283441185951233, -0.29581910371780396, 0.007426843978464603, 0.006481677293777466, 0.10655809938907623, -0.05547848716378212, -0.5519574880599976, 0.5398533940315247, -0.9147679209709167, -0.7749119997024536, -0.6771087050437927, -0.5695742964744568, 0.04830841347575188, 0.17585651576519012, -0.15767645835876465, 0.030487868934869766, 1.2130672931671143, -0.17510151863098145, 0.07666309177875519, 0.030883347615599632]} +{"t": 10.2976, "q": [-0.3463098108768463, -0.027163391932845116, 0.015829220414161682, 0.6301167011260986, -0.3206419348716736, 0.0193787869066, -0.3962494134902954, -0.010686732828617096, 0.008838650770485401, 0.628292977809906, -0.2958819568157196, 0.007492537144571543, 0.00646828580647707, 0.1065656766295433, -0.055483851581811905, -0.5518256425857544, 0.5387268662452698, -0.9142645597457886, -0.7749119997024536, -0.6771087050437927, -0.5696102380752563, 0.04832039773464203, 0.17583255469799042, -0.15767645835876465, 0.030487868934869766, 1.2130672931671143, -0.17510151863098145, 0.07665110379457474, 0.030883347615599632]} +{"t": 10.3143, "q": [-0.3463268578052521, -0.027171913534402847, 0.01581582799553871, 0.63009113073349, -0.32065844535827637, 0.019378667697310448, -0.3962494134902954, -0.01071229949593544, 0.008865434676408768, 0.6282418370246887, -0.29596590995788574, 0.00760914059355855, 0.006495069246739149, 0.10653549432754517, -0.0554821640253067, -0.5516818165779114, 0.5375284552574158, -0.9136893153190613, -0.7749000191688538, -0.6771206855773926, -0.569634199142456, 0.04832039773464203, 0.17584453523159027, -0.15767645835876465, 0.030487868934869766, 1.2130792140960693, -0.1750895380973816, 0.07663912326097488, 0.030883347615599632]} +{"t": 10.3312, "q": [-0.3463609218597412, -0.027171913534402847, 0.01581582799553871, 0.6300740838050842, -0.3206625282764435, 0.019400393590331078, -0.3962579369544983, -0.01071229949593544, 0.008905611000955105, 0.6281992197036743, -0.29604971408843994, 0.007696766871958971, 0.00646828580647707, 0.10655058175325394, -0.055483005940914154, -0.5515260100364685, 0.5364498496055603, -0.9129822254180908, -0.7749000191688538, -0.6771206855773926, -0.5696821212768555, 0.04833238199353218, 0.17584453523159027, -0.1576644629240036, 0.030475884675979614, 1.2130672931671143, -0.17512547969818115, 0.07666309177875519, 0.030907316133379936]} +{"t": 10.3479, "q": [-0.34638649225234985, -0.027163391932845116, 0.015829220414161682, 0.6300570368766785, -0.3206501007080078, 0.01942223682999611, -0.39624089002609253, -0.01073786523193121, 0.008892218582332134, 0.6281736493110657, -0.296091228723526, 0.0076826270669698715, 0.00646828580647707, 0.10655058175325394, -0.055483005940914154, -0.5514541268348694, 0.5356349349021912, -0.9125028848648071, -0.774876058101654, -0.6771447062492371, -0.5696941018104553, 0.04832039773464203, 0.17583255469799042, -0.15767645835876465, 0.030487868934869766, 1.2130552530288696, -0.17510151863098145, 0.07666309177875519, 0.030895331874489784]} +{"t": 10.3646, "q": [-0.34639501571655273, -0.027171913534402847, 0.01581582799553871, 0.6300570368766785, -0.3206542432308197, 0.019414961338043213, -0.3962153196334839, -0.010729343630373478, 0.008932393975555897, 0.628148078918457, -0.2961328625679016, 0.007682984694838524, 0.00646828580647707, 0.10654305666685104, -0.05548752099275589, -0.5512983202934265, 0.534903883934021, -0.912371039390564, -0.7748880386352539, -0.6771206855773926, -0.5696821212768555, 0.04830841347575188, 0.17582057416439056, -0.1576644629240036, 0.030475884675979614, 1.2130672931671143, -0.1751134991645813, 0.07663912326097488, 0.030895331874489784]} +{"t": 10.3814, "q": [-0.346377968788147, -0.02718043513596058, 0.015829220414161682, 0.6300485134124756, -0.3206418454647064, 0.019436785951256752, -0.3961982727050781, -0.010754909366369247, 0.008959177881479263, 0.6281651258468628, -0.29619550704956055, 0.007719737011939287, 0.006495069246739149, 0.10655809938907623, -0.05547848716378212, -0.5510466694831848, 0.5343286395072937, -0.9124189615249634, -0.774876058101654, -0.677084743976593, -0.5695982575416565, 0.04828444495797157, 0.17579659819602966, -0.15767645835876465, 0.030475884675979614, 1.2130672931671143, -0.1751134991645813, 0.07666309177875519, 0.030895331874489784]} +{"t": 10.3981, "q": [-0.3463609218597412, -0.027154870331287384, 0.015842612832784653, 0.6300570368766785, -0.3206459879875183, 0.019429510459303856, -0.39618122577667236, -0.010754909366369247, 0.00898596178740263, 0.6281906962394714, -0.29626235365867615, 0.007763746660202742, 0.006495069246739149, 0.10656562447547913, -0.055473972111940384, -0.5506871342658997, 0.5338972210884094, -0.9125028848648071, -0.7749119997024536, -0.6769769191741943, -0.5695623159408569, 0.04824849218130112, 0.17577263712882996, -0.1576644629240036, 0.030499853193759918, 1.2130672931671143, -0.1750895380973816, 0.07665110379457474, 0.030883347615599632]} +{"t": 10.4148, "q": [-0.34633538126945496, -0.027171913534402847, 0.015856005251407623, 0.6300399899482727, -0.3206501007080078, 0.01942223682999611, -0.3961556553840637, -0.010746387764811516, 0.008972570300102234, 0.6282077431678772, -0.29632025957107544, 0.007706329692155123, 0.006414717994630337, 0.10655053704977036, -0.05547313019633293, -0.5503036379814148, 0.533561646938324, -0.912514865398407, -0.7748880386352539, -0.6768810153007507, -0.5695502758026123, 0.04810468107461929, 0.17577263712882996, -0.1576884388923645, 0.030475884675979614, 1.2130672931671143, -0.17507754266262054, 0.07666309177875519, 0.030895331874489784]} +{"t": 10.4317, "q": [-0.3463268578052521, -0.027214523404836655, 0.015856005251407623, 0.6300314664840698, -0.3206459879875183, 0.019429510459303856, -0.39614713191986084, -0.010754909366369247, 0.008945786394178867, 0.6282162666320801, -0.29636186361312866, 0.00770666915923357, 0.00638793408870697, 0.10655809938907623, -0.05547848716378212, -0.5499680638313293, 0.5334418416023254, -0.912598729133606, -0.7749000191688538, -0.676773190498352, -0.5695382952690125, 0.04800880700349808, 0.1757366806268692, -0.15767645835876465, 0.03045191615819931, 1.2130672931671143, -0.1750895380973816, 0.07666309177875519, 0.030895331874489784]} +{"t": 10.4484, "q": [-0.34630128741264343, -0.027206001803278923, 0.015842612832784653, 0.6300314664840698, -0.3206501007080078, 0.01942223682999611, -0.3961215615272522, -0.01073786523193121, 0.008905611000955105, 0.6282162666320801, -0.2964322865009308, 0.0076565989293158054, 0.006361150648444891, 0.10655058175325394, -0.055483005940914154, -0.5497403740882874, 0.5333698987960815, -0.9127545356750488, -0.774876058101654, -0.6766533255577087, -0.5694664120674133, 0.0478290431201458, 0.1757366806268692, -0.1576884388923645, 0.030487868934869766, 1.2130792140960693, -0.1751134991645813, 0.07666309177875519, 0.03085937909781933]} +{"t": 10.4652, "q": [-0.3462757170200348, -0.027214523404836655, 0.015842612832784653, 0.6300229430198669, -0.32063770294189453, 0.019444061443209648, -0.3960874676704407, -0.010729343630373478, 0.008878827095031738, 0.6282333135604858, -0.2964363098144531, 0.00763489818200469, 0.006361150648444891, 0.10654301196336746, -0.05547764524817467, -0.549392819404602, 0.5333698987960815, -0.9128983616828918, -0.7749119997024536, -0.6765934228897095, -0.5694184899330139, 0.04766126349568367, 0.1757366806268692, -0.15767645835876465, 0.030463900417089462, 1.2130672931671143, -0.17512547969818115, 0.07666309177875519, 0.030895331874489784]} +{"t": 10.482, "q": [-0.3462671935558319, -0.027240090072155, 0.015842612832784653, 0.6300058960914612, -0.3206336200237274, 0.019422335550189018, -0.39609599113464355, -0.01071229949593544, 0.008865434676408768, 0.6282503604888916, -0.29649391770362854, 0.007534025236964226, 0.006334366742521524, 0.10655809938907623, -0.05547848716378212, -0.5490812659263611, 0.5333698987960815, -0.9129582643508911, -0.7748880386352539, -0.676485538482666, -0.5694424510002136, 0.047565389424562454, 0.17572470009326935, -0.15767645835876465, 0.030487868934869766, 1.2130672931671143, -0.1751134991645813, 0.07666309177875519, 0.030883347615599632]} +{"t": 10.4987, "q": [-0.3462245762348175, -0.027240090072155, 0.015829220414161682, 0.6299888491630554, -0.3206294775009155, 0.019429611042141914, -0.3960874676704407, -0.010703776963055134, 0.00881186779588461, 0.6283015012741089, -0.29649391770362854, 0.007534025236964226, 0.006320974789559841, 0.10655809938907623, -0.05547848716378212, -0.5486857891082764, 0.5333219766616821, -0.9130541682243347, -0.7749119997024536, -0.6763657331466675, -0.5694184899330139, 0.04749348387122154, 0.1757366806268692, -0.1576644629240036, 0.030475884675979614, 1.2130672931671143, -0.1750895380973816, 0.07666309177875519, 0.030895331874489784]} +{"t": 10.5155, "q": [-0.3461819589138031, -0.027240090072155, 0.015856005251407623, 0.6299803256988525, -0.3206336200237274, 0.019422335550189018, -0.3960704505443573, -0.01067821029573679, 0.00881186779588461, 0.6283526420593262, -0.2965146005153656, 0.007512466982007027, 0.006320974789559841, 0.10657314211130142, -0.05546945706009865, -0.5483022928237915, 0.5333459377288818, -0.9131739735603333, -0.7749000191688538, -0.6763536930084229, -0.5694424510002136, 0.047385625541210175, 0.17570072412490845, -0.1576884388923645, 0.030487868934869766, 1.2130672931671143, -0.17510151863098145, 0.07666309177875519, 0.030895331874489784]} +{"t": 10.5322, "q": [-0.3461649417877197, -0.027214523404836655, 0.01581582799553871, 0.6299803256988525, -0.3206294775009155, 0.019429611042141914, -0.3960619270801544, -0.01065264455974102, 0.00881186779588461, 0.6283355951309204, -0.29653114080429077, 0.007498130202293396, 0.006307582836598158, 0.1065656766295433, -0.055483851581811905, -0.5479427576065063, 0.5333698987960815, -0.9132339358329773, -0.7749359607696533, -0.6763297319412231, -0.5694304704666138, 0.04733768850564957, 0.1757366806268692, -0.15767645835876465, 0.030523821711540222, 1.2130792140960693, -0.1751614362001419, 0.07666309177875519, 0.030883347615599632]} +{"t": 10.5489, "q": [-0.3461308479309082, -0.027240090072155, 0.01581582799553871, 0.6299888491630554, -0.3206253945827484, 0.019407885149121284, -0.39604488015174866, -0.010644122026860714, 0.008785083889961243, 0.6283696293830872, -0.2965269386768341, 0.007490855176001787, 0.006294190883636475, 0.1065656766295433, -0.055483851581811905, -0.5477869510650635, 0.5333459377288818, -0.9132339358329773, -0.7749119997024536, -0.6763057708740234, -0.5694424510002136, 0.04730173572897911, 0.17570072412490845, -0.15770041942596436, 0.03051183745265007, 1.2130792140960693, -0.17510151863098145, 0.07666309177875519, 0.030895331874489784]} +{"t": 10.5656, "q": [-0.34610527753829956, -0.027206001803278923, 0.01580243743956089, 0.6299803256988525, -0.3206253945827484, 0.019407885149121284, -0.3960363566875458, -0.010661166161298752, 0.008798475377261639, 0.6283696293830872, -0.29652684926986694, 0.00747637590393424, 0.006280798930674791, 0.10655058175325394, -0.055483005940914154, -0.5476551055908203, 0.5333459377288818, -0.913257896900177, -0.7748880386352539, -0.6762698292732239, -0.5694664120674133, 0.04727776721119881, 0.1757366806268692, -0.1576884388923645, 0.030487868934869766, 1.2130672931671143, -0.17510151863098145, 0.07666309177875519, 0.030895331874489784]} +{"t": 10.5824, "q": [-0.3460882306098938, -0.027223046869039536, 0.01577565260231495, 0.6299718022346497, -0.3206336796283722, 0.01939333602786064, -0.3960363566875458, -0.010644122026860714, 0.008785083889961243, 0.6283696293830872, -0.2965393662452698, 0.0074837226420640945, 0.006280798930674791, 0.10655809938907623, -0.05547848716378212, -0.5474393963813782, 0.5333099961280823, -0.913257896900177, -0.7749239802360535, -0.6762698292732239, -0.5694664120674133, 0.0472537986934185, 0.1756887435913086, -0.1576644629240036, 0.030487868934869766, 1.2130672931671143, -0.17510151863098145, 0.07665110379457474, 0.030895331874489784]} +{"t": 10.5991, "q": [-0.3460797071456909, -0.02719748020172119, 0.01580243743956089, 0.6299803256988525, -0.3206336796283722, 0.01939333602786064, -0.39601930975914, -0.01065264455974102, 0.00881186779588461, 0.6283441185951233, -0.2965352535247803, 0.007490926422178745, 0.006240623537451029, 0.10655815154314041, -0.05548837035894394, -0.5472835898399353, 0.5333579182624817, -0.9132219552993774, -0.7749239802360535, -0.6762818098068237, -0.5694783926010132, 0.0472537986934185, 0.1757127046585083, -0.15767645835876465, 0.030499853193759918, 1.2130672931671143, -0.17510151863098145, 0.07667507231235504, 0.030895331874489784]} +{"t": 10.6158, "q": [-0.34607118368148804, -0.027214523404836655, 0.01581582799553871, 0.6299803256988525, -0.3206377923488617, 0.01940056122839451, -0.3960278332233429, -0.01065264455974102, 0.00881186779588461, 0.628361165523529, -0.2965352535247803, 0.007490926422178745, 0.006213839631527662, 0.10654305666685104, -0.05548752099275589, -0.5472117066383362, 0.5334298610687256, -0.9131380319595337, -0.7749119997024536, -0.6762818098068237, -0.5695023536682129, 0.0472537986934185, 0.17570072412490845, -0.15767645835876465, 0.030487868934869766, 1.2130672931671143, -0.17507754266262054, 0.07666309177875519, 0.030895331874489784]} +{"t": 10.6325, "q": [-0.3460882306098938, -0.027214523404836655, 0.015842612832784653, 0.6299718022346497, -0.3206460475921631, 0.019386010244488716, -0.3960278332233429, -0.010661166161298752, 0.008838650770485401, 0.6283355951309204, -0.2965352535247803, 0.007490926422178745, 0.006240623537451029, 0.1065656766295433, -0.055483851581811905, -0.5471278429031372, 0.533333957195282, -0.9131020903587341, -0.7749119997024536, -0.6762698292732239, -0.5695263147354126, 0.0472537986934185, 0.17572470009326935, -0.15767645835876465, 0.030475884675979614, 1.2130792140960693, -0.1750895380973816, 0.07666309177875519, 0.030883347615599632]} +{"t": 10.6493, "q": [-0.34610527753829956, -0.02718895860016346, 0.01581582799553871, 0.6299803256988525, -0.3206419348716736, 0.0193787869066, -0.39604488015174866, -0.010669688694179058, 0.008865434676408768, 0.6283185482025146, -0.29654356837272644, 0.007490998134016991, 0.006240623537451029, 0.10655063390731812, -0.055492885410785675, -0.5470559000968933, 0.5334178805351257, -0.9130781292915344, -0.7748880386352539, -0.6762818098068237, -0.5695382952690125, 0.0472537986934185, 0.17570072412490845, -0.1576884388923645, 0.030487868934869766, 1.2130672931671143, -0.1750895380973816, 0.07666309177875519, 0.030895331874489784]} +{"t": 10.6661, "q": [-0.34611380100250244, -0.02718043513596058, 0.01578904502093792, 0.6299718022346497, -0.32065021991729736, 0.019364217296242714, -0.39601930975914, -0.01067821029573679, 0.008878827095031738, 0.628292977809906, -0.29653945565223694, 0.007498201914131641, 0.006254015490412712, 0.10655058175325394, -0.055483005940914154, -0.5469120740890503, 0.5334298610687256, -0.9131619930267334, -0.7749119997024536, -0.6762937903404236, -0.5695263147354126, 0.0472537986934185, 0.17572470009326935, -0.1576644629240036, 0.030475884675979614, 1.2130792140960693, -0.17512547969818115, 0.07666309177875519, 0.030895331874489784]} +{"t": 10.6828, "q": [-0.34610527753829956, -0.027154870331287384, 0.01580243743956089, 0.6299803256988525, -0.320650190114975, 0.019378717988729477, -0.3960278332233429, -0.010695254430174828, 0.008878827095031738, 0.6282674074172974, -0.2965477705001831, 0.0074982731603085995, 0.006267406977713108, 0.10655058175325394, -0.055483005940914154, -0.5466843843460083, 0.5334298610687256, -0.9132219552993774, -0.7749239802360535, -0.6763177514076233, -0.5695382952690125, 0.0472537986934185, 0.1757127046585083, -0.15767645835876465, 0.030475884675979614, 1.2130672931671143, -0.1751134991645813, 0.07666309177875519, 0.030895331874489784]} +{"t": 10.6997, "q": [-0.3461308479309082, -0.027146346867084503, 0.01580243743956089, 0.6299632787704468, -0.3206543028354645, 0.019385943189263344, -0.39604488015174866, -0.010720821097493172, 0.008905611000955105, 0.6282588839530945, -0.2965520918369293, 0.0075200460851192474, 0.006294190883636475, 0.10655815154314041, -0.05548837035894394, -0.5463248491287231, 0.5334418416023254, -0.913197934627533, -0.7749000191688538, -0.6763657331466675, -0.5695023536682129, 0.047265782952308655, 0.17570072412490845, -0.15767645835876465, 0.030487868934869766, 1.213103175163269, -0.1751134991645813, 0.07666309177875519, 0.030919300392270088]} +{"t": 10.7165, "q": [-0.34614789485931396, -0.027163391932845116, 0.01581582799553871, 0.629946231842041, -0.3206460177898407, 0.01940051093697548, -0.3960363566875458, -0.010729343630373478, 0.008905611000955105, 0.628224790096283, -0.2965562045574188, 0.007512842305004597, 0.006280798930674791, 0.10654301196336746, -0.05547764524817467, -0.5460492372512817, 0.5334178805351257, -0.913197934627533, -0.7747801542282104, -0.6763777136802673, -0.5695263147354126, 0.04731371998786926, 0.1757366806268692, -0.1576644629240036, 0.030463900417089462, 1.213091254234314, -0.175137460231781, 0.07666309177875519, 0.030895331874489784]} +{"t": 10.7332, "q": [-0.34619900584220886, -0.027154870331287384, 0.01580243743956089, 0.6299291849136353, -0.3206459879875183, 0.019429510459303856, -0.39604488015174866, -0.010746387764811516, 0.008905611000955105, 0.6281736493110657, -0.29656049609184265, 0.00753459706902504, 0.006334366742521524, 0.10655809938907623, -0.05547848716378212, -0.5456178188323975, 0.5334418416023254, -0.9129462838172913, -0.774276852607727, -0.6766054034233093, -0.5695263147354126, 0.04749348387122154, 0.17572470009326935, -0.15767645835876465, 0.030463900417089462, 1.2130672931671143, -0.17510151863098145, 0.07666309177875519, 0.030895331874489784]} +{"t": 10.7502, "q": [-0.3462245762348175, -0.02718043513596058, 0.01578904502093792, 0.6298865675926208, -0.3206377625465393, 0.019415060058236122, -0.3960789442062378, -0.010763431899249554, 0.008905611000955105, 0.628148078918457, -0.296548068523407, 0.007541729602962732, 0.006320974789559841, 0.10655053704977036, -0.05547313019633293, -0.5450785160064697, 0.5334298610687256, -0.9119396209716797, -0.7734259366989136, -0.6767851710319519, -0.569718062877655, 0.048056744039058685, 0.17572470009326935, -0.1576644629240036, 0.030499853193759918, 1.2130672931671143, -0.17510151863098145, 0.07666309177875519, 0.030895331874489784]} +{"t": 10.7671, "q": [-0.34625014662742615, -0.027163391932845116, 0.01580243743956089, 0.6298525333404541, -0.3206418454647064, 0.019436785951256752, -0.39604488015174866, -0.010763431899249554, 0.008878827095031738, 0.6280457973480225, -0.2965647280216217, 0.0075418720953166485, 0.006414717994630337, 0.10654296725988388, -0.05546777322888374, -0.5442636013031006, 0.5333819389343262, -0.9094708561897278, -0.7717841267585754, -0.6776360273361206, -0.5703412890434265, 0.049746520817279816, 0.1757606416940689, -0.1576644629240036, 0.030463900417089462, 1.2130792140960693, -0.175137460231781, 0.07663912326097488, 0.030883347615599632]} +{"t": 10.7838, "q": [-0.34630128741264343, -0.02718895860016346, 0.01577565260231495, 0.6297417283058167, -0.3206459879875183, 0.019429510459303856, -0.39604488015174866, -0.010763431899249554, 0.008865434676408768, 0.6279691457748413, -0.2965899705886841, 0.007585542742162943, 0.006535245105624199, 0.10652783513069153, -0.05545704811811447, -0.5432329177856445, 0.5333698987960815, -0.9057557582855225, -0.7700464129447937, -0.6787026524543762, -0.5711562037467957, 0.05225122347474098, 0.17577263712882996, -0.1576644629240036, 0.030475884675979614, 1.2130672931671143, -0.17510151863098145, 0.07666309177875519, 0.03087136335670948]} +{"t": 10.8006, "q": [-0.34634390473365784, -0.02719748020172119, 0.01577565260231495, 0.6296223998069763, -0.3206459879875183, 0.019429510459303856, -0.3960363566875458, -0.010754909366369247, 0.008838650770485401, 0.6278668642044067, -0.2966572046279907, 0.007687505800276995, 0.006508461199700832, 0.10646720975637436, -0.05539442226290703, -0.5419386625289917, 0.5322194695472717, -0.9014055132865906, -0.7687880396842957, -0.6804043650627136, -0.5720310211181641, 0.056829195469617844, 0.1757606416940689, -0.157616525888443, 0.030475884675979614, 1.213091254234314, -0.17510151863098145, 0.07666309177875519, 0.030895331874489784]} +{"t": 10.8173, "q": [-0.3463609218597412, -0.02719748020172119, 0.01577565260231495, 0.6295627355575562, -0.3206624686717987, 0.01942942850291729, -0.39605340361595154, -0.010763431899249554, 0.008838650770485401, 0.6277986764907837, -0.29682037234306335, 0.007826470769941807, 0.006481677293777466, 0.1064518466591835, -0.055334318429231644, -0.5403207540512085, 0.5306494832038879, -0.8961923718452454, -0.7679611444473267, -0.6824417114257812, -0.5725942850112915, 0.06079597398638725, 0.1757366806268692, -0.157616525888443, 0.030535805970430374, 1.2130672931671143, -0.17512547969818115, 0.07665110379457474, 0.030895331874489784]} +{"t": 10.8341, "q": [-0.34634390473365784, -0.02719748020172119, 0.015896180644631386, 0.6295286417007446, -0.32064181566238403, 0.01946580410003662, -0.3960278332233429, -0.010763431899249554, 0.00881186779588461, 0.6278157234191895, -0.29697805643081665, 0.007755414582788944, 0.006454893853515387, 0.10641387850046158, -0.05527789145708084, -0.5387148857116699, 0.5292593240737915, -0.8908713459968567, -0.7669904232025146, -0.6861448287963867, -0.5738646388053894, 0.06419949233531952, 0.1756887435913086, -0.15760454535484314, 0.03051183745265007, 1.2130552530288696, -0.17510151863098145, 0.07665110379457474, 0.030895331874489784]} +{"t": 10.8508, "q": [-0.3463268578052521, -0.027265656739473343, 0.015922963619232178, 0.6295201182365417, -0.32062941789627075, 0.019473128020763397, -0.39595112204551697, -0.010763431899249554, 0.008758299984037876, 0.6278242468833923, -0.2971474230289459, 0.007561355363577604, 0.006508461199700832, 0.10636834055185318, -0.05521610751748085, -0.5372887849807739, 0.5280010104179382, -0.8867607712745667, -0.7658519148826599, -0.6887333989143372, -0.5763813257217407, 0.06804642826318741, 0.17574866116046906, -0.15758058428764343, 0.03051183745265007, 1.2130672931671143, -0.17510151863098145, 0.07665110379457474, 0.030895331874489784]} +{"t": 10.8676, "q": [-0.34629276394844055, -0.02729974500834942, 0.01593635603785515, 0.6295201182365417, -0.3206087350845337, 0.01950950361788273, -0.3958403468132019, -0.010754909366369247, 0.00865116436034441, 0.627849817276001, -0.29734688997268677, 0.0075196148827672005, 0.006642380263656378, 0.10627739876508713, -0.05512215942144394, -0.5359585285186768, 0.5269104242324829, -0.8840523362159729, -0.7648811936378479, -0.692472517490387, -0.5794492959976196, 0.07016763836145401, 0.1757366806268692, -0.15755660831928253, 0.03051183745265007, 1.2130672931671143, -0.1751614362001419, 0.07666309177875519, 0.030895331874489784]} +{"t": 10.8843, "q": [-0.34628424048423767, -0.027282701805233955, 0.01593635603785515, 0.629503071308136, -0.3206087648868561, 0.019495002925395966, -0.39572954177856445, -0.010771953500807285, 0.008490461856126785, 0.6278839111328125, -0.297709196805954, 0.007558940444141626, 0.0068030827678740025, 0.10623182356357574, -0.055050499737262726, -0.5345563888549805, 0.5256880521774292, -0.8809604048728943, -0.7638505697250366, -0.6952887773513794, -0.5831763744354248, 0.07192932069301605, 0.17577263712882996, -0.15752065181732178, 0.03051183745265007, 1.2130433320999146, -0.17510151863098145, 0.07666309177875519, 0.030907316133379936]} +{"t": 10.9012, "q": [-0.3462757170200348, -0.02731679007411003, 0.01598992384970188, 0.6294434666633606, -0.3206128776073456, 0.019502228125929832, -0.39569544792175293, -0.010771953500807285, 0.008436894044280052, 0.6279265284538269, -0.2980128526687622, 0.007539812475442886, 0.0068030827678740025, 0.10620137304067612, -0.05498955398797989, -0.532878577709198, 0.5242738723754883, -0.8774130940437317, -0.7626520991325378, -0.697098433971405, -0.5877063870429993, 0.07405053079128265, 0.1756887435913086, -0.15755660831928253, 0.030523821711540222, 1.2130672931671143, -0.17510151863098145, 0.07665110379457474, 0.030895331874489784]} +{"t": 10.918, "q": [-0.34614789485931396, -0.02731679007411003, 0.016056882217526436, 0.629272997379303, -0.3206128776073456, 0.019502228125929832, -0.39562729001045227, -0.010771953500807285, 0.008423502556979656, 0.6279776692390442, -0.29818591475486755, 0.007925105281174183, 0.006816474720835686, 0.10622375458478928, -0.05493650212883949, -0.5314764380455017, 0.522787868976593, -0.8752918839454651, -0.7618971467018127, -0.6986563801765442, -0.5912896990776062, 0.07788547873497009, 0.17567676305770874, -0.15752065181732178, 0.030523821711540222, 1.2130792140960693, -0.17507754266262054, 0.07666309177875519, 0.030895331874489784]} +{"t": 10.9347, "q": [-0.3460456132888794, -0.02742757648229599, 0.016097059473395348, 0.629128098487854, -0.320621132850647, 0.019502196460962296, -0.39554205536842346, -0.010771953500807285, 0.008410110138356686, 0.6280117034912109, -0.29812467098236084, 0.00810561515390873, 0.00676290737465024, 0.10622365772724152, -0.05491674691438675, -0.5299903750419617, 0.5210261940956116, -0.8728710412979126, -0.7619690299034119, -0.6996989846229553, -0.5933749675750732, 0.08085756748914719, 0.17565278708934784, -0.15753264725208282, 0.03051183745265007, 1.2130672931671143, -0.17510151863098145, 0.07666309177875519, 0.030883347615599632]} +{"t": 10.9514, "q": [-0.3458581268787384, -0.027538364753127098, 0.01611045002937317, 0.6289406418800354, -0.3206252455711365, 0.019509421661496162, -0.3953971862792969, -0.010771953500807285, 0.008343150839209557, 0.6281054615974426, -0.2974913418292999, 0.008628804236650467, 0.00672273151576519, 0.10620091110467911, -0.05489078909158707, -0.5290675759315491, 0.5195521116256714, -0.8708097338676453, -0.7623046040534973, -0.7007415890693665, -0.5946332812309265, 0.08236757665872574, 0.17561683058738708, -0.15750867128372192, 0.03051183745265007, 1.2130792140960693, -0.17507754266262054, 0.07666309177875519, 0.030907316133379936]} +{"t": 10.9682, "q": [-0.34559395909309387, -0.027580974623560905, 0.01612384244799614, 0.6287105679512024, -0.3206252455711365, 0.019509421661496162, -0.3952096998691559, -0.010771953500807285, 0.008289583027362823, 0.6281736493110657, -0.2958962321281433, 0.0110265351831913, 0.006615596357733011, 0.10617830604314804, -0.05489446595311165, -0.5286481380462646, 0.5187252163887024, -0.8699708580970764, -0.7623645067214966, -0.7022396326065063, -0.5953164100646973, 0.08299075812101364, 0.17555691301822662, -0.15748471021652222, 0.030499853193759918, 1.2130672931671143, -0.17510151863098145, 0.07667507231235504, 0.030883347615599632]} +{"t": 10.9849, "q": [-0.3451678454875946, -0.027657674625515938, 0.01613723486661911, 0.6284378170967102, -0.32062938809394836, 0.019502146169543266, -0.39491143822669983, -0.010780476033687592, 0.008289583027362823, 0.6282588839530945, -0.2946297228336334, 0.00949492771178484, 0.006602204404771328, 0.10620839148759842, -0.05487639829516411, -0.5285642743110657, 0.5182218551635742, -0.8699828386306763, -0.7623645067214966, -0.7032942771911621, -0.5955800414085388, 0.08311060070991516, 0.17555691301822662, -0.15753264725208282, 0.03051183745265007, 1.2130792140960693, -0.17510151863098145, 0.07667507231235504, 0.030895331874489784]} +{"t": 11.0017, "q": [-0.3447076380252838, -0.027683241292834282, 0.016190802678465843, 0.6281395554542542, -0.32063350081443787, 0.01949487067759037, -0.3946557641029358, -0.010788998566567898, 0.008262800052762032, 0.628292977809906, -0.2942504584789276, 0.008753049187362194, 0.006575420964509249, 0.10622343420982361, -0.05486736819148064, -0.5286121964454651, 0.5182338356971741, -0.8699948191642761, -0.7624244093894958, -0.7042050361633301, -0.5955081582069397, 0.0830506831407547, 0.17555691301822662, -0.15750867128372192, 0.03051183745265007, 1.213091254234314, -0.17510151863098145, 0.07668706029653549, 0.030907316133379936]} +{"t": 11.0185, "q": [-0.3442474603652954, -0.027657674625515938, 0.016204193234443665, 0.6279009580612183, -0.32063764333724976, 0.019487597048282623, -0.39435750246047974, -0.010780476033687592, 0.008222623728215694, 0.6283270716667175, -0.2942713797092438, 0.008774947375059128, 0.006615596357733011, 0.10622347891330719, -0.05487724021077156, -0.5288279056549072, 0.5183656811714172, -0.8701266646385193, -0.7633591890335083, -0.7042170166969299, -0.5954481959342957, 0.08283496648073196, 0.17555691301822662, -0.15753264725208282, 0.030487868934869766, 1.2130792140960693, -0.17512547969818115, 0.07669904083013535, 0.030895331874489784]} +{"t": 11.0352, "q": [-0.3437957763671875, -0.027683241292834282, 0.016217585653066635, 0.6277645826339722, -0.3206334710121155, 0.019509371370077133, -0.39402511715888977, -0.010780476033687592, 0.008182448334991932, 0.6284633874893188, -0.2942672669887543, 0.008782151155173779, 0.006588812451809645, 0.10621590912342072, -0.05487188324332237, -0.5289238095283508, 0.5184375643730164, -0.8706899285316467, -0.7642460465431213, -0.7037137150764465, -0.595196545124054, 0.08186424523591995, 0.17552095651626587, -0.15753264725208282, 0.03051183745265007, 1.213091254234314, -0.17510151863098145, 0.07669904083013535, 0.030883347615599632]} +{"t": 11.0521, "q": [-0.3434378504753113, -0.027717329561710358, 0.016244368627667427, 0.6277816295623779, -0.32063353061676025, 0.019480371847748756, -0.39385467767715454, -0.010754909366369247, 0.008048529736697674, 0.6287276148796082, -0.2943165600299835, 0.008681188337504864, 0.0065620290115475655, 0.1062159538269043, -0.054881758987903595, -0.5289837121963501, 0.5183656811714172, -0.8716965913772583, -0.7656721472740173, -0.7030186057090759, -0.594141960144043, 0.08034224808216095, 0.17549699544906616, -0.15756858885288239, 0.03051183745265007, 1.213091254234314, -0.17510151863098145, 0.07669904083013535, 0.030895331874489784]} +{"t": 11.0688, "q": [-0.3430287837982178, -0.02780255116522312, 0.016271153464913368, 0.6277816295623779, -0.32062119245529175, 0.019458677619695663, -0.39367571473121643, -0.010729343630373478, 0.008115489035844803, 0.6290684938430786, -0.2943536043167114, 0.008616335690021515, 0.006588812451809645, 0.10622351616621017, -0.05488711595535278, -0.5290196537971497, 0.5184855461120605, -0.8717924356460571, -0.7661755084991455, -0.7024553418159485, -0.5931951999664307, 0.07920374721288681, 0.1754850149154663, -0.15755660831928253, 0.03051183745265007, 1.213091254234314, -0.1751134991645813, 0.07668706029653549, 0.030883347615599632]} +{"t": 11.0856, "q": [-0.3427305221557617, -0.027742896229028702, 0.016364896669983864, 0.627849817276001, -0.320617139339447, 0.019422436133027077, -0.39360755681991577, -0.010720821097493172, 0.008209232240915298, 0.6295371651649475, -0.29454439878463745, 0.008516588248312473, 0.006588812451809645, 0.10622351616621017, -0.05488711595535278, -0.5294390916824341, 0.5191925764083862, -0.871576726436615, -0.7664391398429871, -0.7020838260650635, -0.5925000905990601, 0.07826897501945496, 0.17549699544906616, -0.15755660831928253, 0.030487868934869766, 1.213103175163269, -0.17512547969818115, 0.07669904083013535, 0.03085937909781933]} +{"t": 11.1024, "q": [-0.3424748480319977, -0.027759939432144165, 0.016512207686901093, 0.6278668642044067, -0.3206089437007904, 0.019378967583179474, -0.39360755681991577, -0.010746387764811516, 0.008302975445985794, 0.6300570368766785, -0.294593870639801, 0.008444602601230145, 0.006548637058585882, 0.10623113811016083, -0.05490235611796379, -0.5308772325515747, 0.519588053226471, -0.8711812496185303, -0.7667027711868286, -0.7015925049781799, -0.5919128656387329, 0.07752595096826553, 0.1754850149154663, -0.15755660831928253, 0.030487868934869766, 1.2131271362304688, -0.17510151863098145, 0.07669904083013535, 0.030883347615599632]} +{"t": 11.1191, "q": [-0.34220215678215027, -0.027759939432144165, 0.016699694097042084, 0.6279350519180298, -0.32059246301651, 0.019379068166017532, -0.39362457394599915, -0.010746387764811516, 0.008463677950203419, 0.6304916739463806, -0.2959347069263458, 0.010534433647990227, 0.006495069246739149, 0.10626144707202911, -0.05493367090821266, -0.5326269268989563, 0.520103394985199, -0.8710614442825317, -0.7667627334594727, -0.7012569308280945, -0.5914455056190491, 0.07687880843877792, 0.1754850149154663, -0.15758058428764343, 0.030499853193759918, 1.2131152153015137, -0.17514945566654205, 0.07669904083013535, 0.030895331874489784]} +{"t": 11.1359, "q": [-0.34207430481910706, -0.027742896229028702, 0.01680682972073555, 0.6279861927032471, -0.32060492038726807, 0.019328242167830467, -0.39367571473121643, -0.010788998566567898, 0.008610988967120647, 0.6307984590530396, -0.2983728051185608, 0.011185375042259693, 0.006307582836598158, 0.10626896470785141, -0.05492915213108063, -0.5341249108314514, 0.5206067562103271, -0.8709176182746887, -0.766738772392273, -0.7005019187927246, -0.5912537574768066, 0.07631554454565048, 0.17547301948070526, -0.15760454535484314, 0.030499853193759918, 1.213103175163269, -0.1751134991645813, 0.07669904083013535, 0.030895331874489784]} +{"t": 11.1528, "q": [-0.34203168749809265, -0.027742896229028702, 0.01682022027671337, 0.6279946565628052, -0.32061734795570374, 0.019291900098323822, -0.3938120901584625, -0.010780476033687592, 0.008718123659491539, 0.6310285329818726, -0.30055052042007446, 0.0075829969719052315, 0.0060933125205338, 0.10626154392957687, -0.054953426122665405, -0.5355870127677917, 0.5208584070205688, -0.8708696961402893, -0.7665949463844299, -0.6987642049789429, -0.5908582806587219, 0.07596800476312637, 0.17549699544906616, -0.15756858885288239, 0.030487868934869766, 1.213103175163269, -0.17507754266262054, 0.07668706029653549, 0.030883347615599632]} +{"t": 11.1696, "q": [-0.34203168749809265, -0.027683241292834282, 0.016766652464866638, 0.6280117034912109, -0.32065868377685547, 0.01923363283276558, -0.3939143419265747, -0.010823086835443974, 0.00881186779588461, 0.6311137676239014, -0.30049753189086914, 0.007705653551965952, 0.005852258298546076, 0.10626910626888275, -0.054958783090114594, -0.5365816950798035, 0.5210621356964111, -0.8711093664169312, -0.7663312554359436, -0.696583092212677, -0.5902470350265503, 0.0752609372138977, 0.1754610389471054, -0.15755660831928253, 0.03051183745265007, 1.2130792140960693, -0.175137460231781, 0.07669904083013535, 0.030895331874489784]} +{"t": 11.1864, "q": [-0.3420913517475128, -0.027640629559755325, 0.016672909259796143, 0.6280031800270081, -0.32069578766822815, 0.019226158037781715, -0.39407625794410706, -0.010899785906076431, 0.008852043189108372, 0.6310881972312927, -0.3005012571811676, 0.007640495430678129, 0.0057719070464372635, 0.10629928112030029, -0.0549604669213295, -0.5370131134986877, 0.5212299227714539, -0.871349036693573, -0.7661395072937012, -0.6948933005332947, -0.5898275971412659, 0.07340338081121445, 0.1754370778799057, -0.15755660831928253, 0.03051183745265007, 1.2130672931671143, -0.17510151863098145, 0.07667507231235504, 0.030895331874489784]} +{"t": 11.2032, "q": [-0.34212544560432434, -0.027640629559755325, 0.016552383080124855, 0.6279946565628052, -0.3207412362098694, 0.019160598516464233, -0.39417001605033875, -0.010959440842270851, 0.008852043189108372, 0.631071150302887, -0.3004888892173767, 0.007647648453712463, 0.0056112040765583515, 0.10631442070007324, -0.05497118830680847, -0.5370730757713318, 0.5213617086410522, -0.8713370561599731, -0.7660556435585022, -0.693527102470398, -0.5897557139396667, 0.0698200985789299, 0.17544905841350555, -0.15750867128372192, 0.03051183745265007, 1.2130672931671143, -0.17510151863098145, 0.07667507231235504, 0.030895331874489784]} +{"t": 11.2199, "q": [-0.34215953946113586, -0.027580974623560905, 0.01648542284965515, 0.6280031800270081, -0.3210596442222595, 0.01857120171189308, -0.394195556640625, -0.010967962443828583, 0.008838650770485401, 0.6311052441596985, -0.3004477918148041, 0.007690755650401115, 0.005383542273193598, 0.10629937052726746, -0.05498022213578224, -0.5370491147041321, 0.5214695930480957, -0.8714209794998169, -0.7658878564834595, -0.6926882266998291, -0.5897916555404663, 0.0664764940738678, 0.17547301948070526, -0.15747271478176117, 0.03051183745265007, 1.2130672931671143, -0.1750895380973816, 0.07666309177875519, 0.030895331874489784]} +{"t": 11.2367, "q": [-0.3422788381576538, -0.02748723141849041, 0.016338111832737923, 0.6280628442764282, -0.3220323324203491, 0.016909100115299225, -0.39434897899627686, -0.010993529111146927, 0.008838650770485401, 0.6310200095176697, -0.30047252774238586, 0.007676467765122652, 0.005343366414308548, 0.10629185289144516, -0.05498473718762398, -0.5370250940322876, 0.5215774774551392, -0.8716127276420593, -0.7657920122146606, -0.6919451951980591, -0.5897197723388672, 0.0640556812286377, 0.1754610389471054, -0.1574127972126007, 0.03051183745265007, 1.2130433320999146, -0.1750895380973816, 0.07663912326097488, 0.030895331874489784]} +{"t": 11.2537, "q": [-0.34235554933547974, -0.027342356741428375, 0.016338111832737923, 0.628079891204834, -0.32312050461769104, 0.014984818175435066, -0.39444270730018616, -0.011027617380023003, 0.008932393975555897, 0.630909264087677, -0.30047252774238586, 0.007676467765122652, 0.005276407115161419, 0.10630694031715393, -0.05498557910323143, -0.5370011329650879, 0.521589457988739, -0.8717445135116577, -0.7657560110092163, -0.6916455626487732, -0.589731752872467, 0.06192249059677124, 0.17544905841350555, -0.1573648601770401, 0.030523821711540222, 1.2130192518234253, -0.17510151863098145, 0.07666309177875519, 0.030907316133379936]} +{"t": 11.2704, "q": [-0.3424578011035919, -0.027291223406791687, 0.01628454588353634, 0.628079891204834, -0.323194682598114, 0.014882645569741726, -0.39466428756713867, -0.011087272316217422, 0.009052921086549759, 0.6307387948036194, -0.300472617149353, 0.007690947037190199, 0.0049817850813269615, 0.10629945993423462, -0.05499996989965439, -0.5369771718978882, 0.521529495716095, -0.8716726303100586, -0.765696108341217, -0.691429853439331, -0.5899834036827087, 0.06011287495493889, 0.17547301948070526, -0.1573648601770401, 0.030523821711540222, 1.2130192518234253, -0.17510151863098145, 0.07666309177875519, 0.030919300392270088]} +{"t": 11.2871, "q": [-0.3425600826740265, -0.02724861353635788, 0.016230978071689606, 0.6280628442764282, -0.3232070207595825, 0.014889809302985668, -0.39477506279945374, -0.01116397138684988, 0.009146664291620255, 0.6305683851242065, -0.30048099160194397, 0.00770551385357976, 0.004888041876256466, 0.10630703717470169, -0.055005334317684174, -0.536989152431488, 0.5212658643722534, -0.8712172508239746, -0.7657200694084167, -0.691429853439331, -0.5903668999671936, 0.05938183516263962, 0.17556889355182648, -0.15728096663951874, 0.030559774488210678, 1.2129952907562256, -0.17510151863098145, 0.07663912326097488, 0.030919300392270088]} +{"t": 11.3041, "q": [-0.3427731394767761, -0.027265656739473343, 0.016204193234443665, 0.6280543208122253, -0.32321521639823914, 0.014904258772730827, -0.3948347270488739, -0.0112236263230443, 0.009119881317019463, 0.6303979158401489, -0.30047690868377686, 0.007712719030678272, 0.004847866017371416, 0.10630703717470169, -0.055005334317684174, -0.536989152431488, 0.5210501551628113, -0.8704502582550049, -0.7656362056732178, -0.6916576027870178, -0.5905346870422363, 0.05933389812707901, 0.1756887435913086, -0.15729296207427979, 0.030535805970430374, 1.2130073308944702, -0.1750655621290207, 0.07666309177875519, 0.030907316133379936]} +{"t": 11.3208, "q": [-0.34307992458343506, -0.027112258598208427, 0.016070274636149406, 0.6280457973480225, -0.32322758436203003, 0.014925952069461346, -0.3950307369232178, -0.011317369528114796, 0.009093097411096096, 0.6301422715187073, -0.3004811704158783, 0.007734490558505058, 0.004955001175403595, 0.10631455481052399, -0.05500081926584244, -0.5363180637359619, 0.5208703875541687, -0.8703902959823608, -0.7656362056732178, -0.6921609044075012, -0.591385543346405, 0.05965747311711311, 0.17582057416439056, -0.15724502503871918, 0.030535805970430374, 1.2130073308944702, -0.17507754266262054, 0.07665110379457474, 0.030919300392270088]} +{"t": 11.3375, "q": [-0.3435656726360321, -0.027035560458898544, 0.015869395807385445, 0.6280457973480225, -0.32326045632362366, 0.014998282305896282, -0.3951926529407501, -0.01136850193142891, 0.0089993542060256, 0.6297332048416138, -0.30046072602272034, 0.007770514581352472, 0.005021960940212011, 0.10630698502063751, -0.05499545484781265, -0.5354431867599487, 0.5207385420799255, -0.869096040725708, -0.7655763030052185, -0.694042444229126, -0.5921046137809753, 0.06093978509306908, 0.17579659819602966, -0.15725700557231903, 0.030535805970430374, 1.2130073308944702, -0.17510151863098145, 0.07666309177875519, 0.030907316133379936]} +{"t": 11.3544, "q": [-0.34401735663414, -0.026958860456943512, 0.015614950098097324, 0.6279691457748413, -0.3232686519622803, 0.015056285075843334, -0.3952523171901703, -0.011351457796990871, 0.008878827095031738, 0.6290684938430786, -0.30042800307273865, 0.00782817043364048, 0.005062136333435774, 0.10628432780504227, -0.05498925596475601, -0.5353114008903503, 0.519648015499115, -0.8670467138290405, -0.7653126120567322, -0.695840060710907, -0.5940340757369995, 0.06326472759246826, 0.17590445280075073, -0.15728096663951874, 0.030523821711540222, 1.2130192518234253, -0.1750895380973816, 0.07666309177875519, 0.03093128465116024]} +{"t": 11.3711, "q": [-0.34459686279296875, -0.026899205520749092, 0.015253368765115738, 0.6278839111328125, -0.3232603669166565, 0.015143435448408127, -0.39526084065437317, -0.01130884699523449, 0.008570813573896885, 0.6281992197036743, -0.3002152740955353, 0.008202943950891495, 0.005504068918526173, 0.10628429055213928, -0.05497938022017479, -0.5348799228668213, 0.5179582238197327, -0.8663516044616699, -0.7643299102783203, -0.6977934837341309, -0.5958077311515808, 0.06654839962720871, 0.17595238983631134, -0.15729296207427979, 0.030523821711540222, 1.2130073308944702, -0.17507754266262054, 0.07665110379457474, 0.030907316133379936]} +{"t": 11.3879, "q": [-0.3451252281665802, -0.026813985779881477, 0.01470430102199316, 0.6277390122413635, -0.3231078088283539, 0.015471198596060276, -0.395201176404953, -0.011291802860796452, 0.008262800052762032, 0.6273555159568787, -0.30006781220436096, 0.008433428592979908, 0.005946001503616571, 0.1062842383980751, -0.05496950075030327, -0.533393919467926, 0.5165800452232361, -0.8663635849952698, -0.7634190917015076, -0.6994832754135132, -0.5975454449653625, 0.06920889765024185, 0.17597636580467224, -0.1573408991098404, 0.030535805970430374, 1.2130433320999146, -0.17510151863098145, 0.07666309177875519, 0.030907316133379936]} +{"t": 11.4047, "q": [-0.34555986523628235, -0.02682250738143921, 0.01444985531270504, 0.6276026964187622, -0.32291820645332336, 0.015777453780174255, -0.39518412947654724, -0.011266236193478107, 0.00814227294176817, 0.6266140937805176, -0.30000218749046326, 0.008519764058291912, 0.0061736637726426125, 0.10627658665180206, -0.054944392293691635, -0.5311049222946167, 0.5152258276939392, -0.8664594888687134, -0.7625083327293396, -0.7034500241279602, -0.5995108485221863, 0.07065898925065994, 0.17600032687187195, -0.15732890367507935, 0.030523821711540222, 1.2130552530288696, -0.17510151863098145, 0.07669904083013535, 0.030919300392270088]} +{"t": 11.4215, "q": [-0.3457558751106262, -0.02682250738143921, 0.014423071406781673, 0.6275856494903564, -0.3217187523841858, 0.017956595867872238, -0.39512449502944946, -0.011206582188606262, 0.008102096617221832, 0.6258726716041565, -0.2999494671821594, 0.008685876615345478, 0.006294190883636475, 0.10626896470785141, -0.05492915213108063, -0.5284563899040222, 0.5138356685638428, -0.8666152954101562, -0.7619690299034119, -0.7082557082176208, -0.601536214351654, 0.0718933641910553, 0.1759883463382721, -0.15737684071063995, 0.03051183745265007, 1.2130552530288696, -0.1751614362001419, 0.07667507231235504, 0.030907316133379936]} +{"t": 11.4382, "q": [-0.3457132577896118, -0.02694181725382805, 0.014744477346539497, 0.627543032169342, -0.32066598534584045, 0.019813761115074158, -0.3948432505130768, -0.011129883117973804, 0.008115489035844803, 0.6253443360328674, -0.2999130189418793, 0.008808654733002186, 0.006294190883636475, 0.1062387004494667, -0.05490771308541298, -0.5257239937782288, 0.5124214887619019, -0.8669868111610413, -0.7616454362869263, -0.7128097414970398, -0.6046760678291321, 0.0737149715423584, 0.1759883463382721, -0.15737684071063995, 0.030523821711540222, 1.2130433320999146, -0.17510151863098145, 0.07668706029653549, 0.030907316133379936]} +{"t": 11.4549, "q": [-0.3456194996833801, -0.02695033885538578, 0.01486500445753336, 0.6274663209915161, -0.3207196295261383, 0.01979168690741062, -0.39444270730018616, -0.011078749783337116, 0.008048529736697674, 0.6249096989631653, -0.29983222484588623, 0.009112129919230938, 0.006280798930674791, 0.10623113811016083, -0.05490235611796379, -0.523902416229248, 0.5111991167068481, -0.8675020933151245, -0.7615975141525269, -0.7161772847175598, -0.608487069606781, 0.07689078897237778, 0.17589247226715088, -0.157388836145401, 0.030523821711540222, 1.213091254234314, -0.17510151863098145, 0.0767110288143158, 0.030919300392270088]} +{"t": 11.4717, "q": [-0.34546610713005066, -0.027052603662014008, 0.014985531568527222, 0.6271169185638428, -0.3207525312900543, 0.0198495052754879, -0.39403364062309265, -0.011036139912903309, 0.008035137318074703, 0.6245517730712891, -0.29900267720222473, 0.010061003267765045, 0.006200447678565979, 0.10623099654912949, -0.054872725158929825, -0.5217931866645813, 0.5102283954620361, -0.8677657842636108, -0.7617772817611694, -0.7180588245391846, -0.6121901869773865, 0.08042613416910172, 0.17577263712882996, -0.157388836145401, 0.03051183745265007, 1.213091254234314, -0.17512547969818115, 0.07668706029653549, 0.030895331874489784]} +{"t": 11.4884, "q": [-0.3452189862728119, -0.02712930366396904, 0.01511945016682148, 0.6265544295310974, -0.32078954577445984, 0.019885530695319176, -0.39370980858802795, -0.011078749783337116, 0.008182448334991932, 0.6242875456809998, -0.29569196701049805, 0.014869998209178448, 0.0060933125205338, 0.10609475523233414, -0.05476637929677963, -0.5198037624359131, 0.5100725889205933, -0.8678616285324097, -0.7621128559112549, -0.7202279567718506, -0.6147787570953369, 0.08336227387189865, 0.17561683058738708, -0.15735287964344025, 0.03051183745265007, 1.213103175163269, -0.17512547969818115, 0.07669904083013535, 0.030907316133379936]} +{"t": 11.5051, "q": [-0.34495478868484497, -0.02719748020172119, 0.015239977277815342, 0.6260005235671997, -0.32078540325164795, 0.019907305017113686, -0.3934626579284668, -0.011206582188606262, 0.008155664429068565, 0.6239125728607178, -0.2938145399093628, 0.010863818228244781, 0.006146880332380533, 0.10597330331802368, -0.054601676762104034, -0.5183417201042175, 0.5102164149284363, -0.8680294156074524, -0.7621487975120544, -0.7230802178382874, -0.6165404319763184, 0.08596284687519073, 0.17549699544906616, -0.1573169231414795, 0.03051183745265007, 1.213103175163269, -0.17514945566654205, 0.07672300934791565, 0.030907316133379936]} +{"t": 11.5218, "q": [-0.34458833932876587, -0.02742757648229599, 0.015360504388809204, 0.6254806518554688, -0.32078540325164795, 0.019907305017113686, -0.3930962085723877, -0.011257714591920376, 0.008236016146838665, 0.6236398816108704, -0.2938952147960663, 0.011117975227534771, 0.006495069246739149, 0.1058434247970581, -0.054253950715065, -0.5175867080688477, 0.5104201436042786, -0.868436872959137, -0.762184739112854, -0.7266035676002502, -0.6180983781814575, 0.08855143934488297, 0.17554493248462677, -0.15732890367507935, 0.030535805970430374, 1.213103175163269, -0.17512547969818115, 0.0767349973320961, 0.030895331874489784]} +{"t": 11.5386, "q": [-0.344204843044281, -0.02766619622707367, 0.015574774704873562, 0.6250630617141724, -0.32077303528785706, 0.01991463080048561, -0.3925934135913849, -0.01130884699523449, 0.008209232240915298, 0.6235716938972473, -0.29384538531303406, 0.011132007464766502, 0.00676290737465024, 0.10570542514324188, -0.053812358528375626, -0.5171792507171631, 0.5104441046714783, -0.8686765432357788, -0.7622206807136536, -0.7298513054847717, -0.6200518012046814, 0.09045693278312683, 0.17540112137794495, -0.15730494260787964, 0.030523821711540222, 1.2131391763687134, -0.1751134991645813, 0.0767589658498764, 0.030895331874489784]} +{"t": 11.5553, "q": [-0.343761682510376, -0.027691762894392014, 0.015668518841266632, 0.6247392296791077, -0.32076480984687805, 0.019900180399417877, -0.3922184407711029, -0.011359979398548603, 0.008195839822292328, 0.6235887408256531, -0.2938118875026703, 0.011102763004601002, 0.006910218391567469, 0.10552988201379776, -0.05341314524412155, -0.5170713663101196, 0.5110912322998047, -0.868808388710022, -0.7623165845870972, -0.7335304617881775, -0.6223288178443909, 0.09195496141910553, 0.17525731027126312, -0.15725700557231903, 0.03051183745265007, 1.2131391763687134, -0.17510151863098145, 0.07674697786569595, 0.030907316133379936]} +{"t": 11.572, "q": [-0.3432418406009674, -0.027836639434099197, 0.015882788226008415, 0.6244324445724487, -0.32075244188308716, 0.01989300549030304, -0.39179232716560364, -0.011342935264110565, 0.008236016146838665, 0.6236569285392761, -0.29377439618110657, 0.011095201596617699, 0.007178056053817272, 0.10538549721240997, -0.053203001618385315, -0.5170474052429199, 0.512325644493103, -0.8689042925834656, -0.7624244093894958, -0.7366463541984558, -0.6257683038711548, 0.09371664375066757, 0.1750895380973816, -0.15726898610591888, 0.030523821711540222, 1.2131510972976685, -0.17510151863098145, 0.07674697786569595, 0.03087136335670948]} +{"t": 11.5888, "q": [-0.3426111936569214, -0.027930382639169693, 0.016056882217526436, 0.6241000890731812, -0.32073599100112915, 0.019878605380654335, -0.39132362604141235, -0.011377024464309216, 0.008302975445985794, 0.6236569285392761, -0.2937701940536499, 0.011087926104664803, 0.00735215051099658, 0.1053396686911583, -0.05309199541807175, -0.5171433091163635, 0.5131645202636719, -0.8689881563186646, -0.7623764872550964, -0.7380724549293518, -0.6300466656684875, 0.09626927971839905, 0.17500564455986023, -0.15728096663951874, 0.03051183745265007, 1.213163137435913, -0.1751134991645813, 0.07678293436765671, 0.030895331874489784]} +{"t": 11.6055, "q": [-0.34208282828330994, -0.027955947443842888, 0.016190802678465843, 0.6239210963249207, -0.32073184847831726, 0.019871361553668976, -0.3909316062927246, -0.01136850193142891, 0.00839671865105629, 0.623733639717102, -0.2937659025192261, 0.011066153645515442, 0.007338759023696184, 0.10533971339464188, -0.053101856261491776, -0.5171433091163635, 0.5135839581489563, -0.8691080212593079, -0.7624244093894958, -0.7395225763320923, -0.6340613961219788, 0.1002001091837883, 0.1748857945203781, -0.15728096663951874, 0.03051183745265007, 1.2131990194320679, -0.17510151863098145, 0.07679491490125656, 0.030895331874489784]} +{"t": 11.6223, "q": [-0.3415118455886841, -0.028134912252426147, 0.01647203229367733, 0.6238188743591309, -0.32071539759635925, 0.019856980070471764, -0.39065036177635193, -0.011377024464309216, 0.008530637249350548, 0.6240574717521667, -0.2937575578689575, 0.011066081933677197, 0.007271799258887768, 0.10534723848104477, -0.05309734493494034, -0.5172391533851624, 0.5137996673583984, -0.8691319823265076, -0.7624004483222961, -0.7431298494338989, -0.6368536949157715, 0.10432267934083939, 0.1747899204492569, -0.15730494260787964, 0.030523821711540222, 1.2131990194320679, -0.17510151863098145, 0.07680690288543701, 0.03085937909781933]} +{"t": 11.639, "q": [-0.34106871485710144, -0.028117869049310684, 0.016565775498747826, 0.6238273978233337, -0.3207031190395355, 0.019791768863797188, -0.39046287536621094, -0.01136850193142891, 0.008624380454421043, 0.6244580149650574, -0.29376980662345886, 0.011029991321265697, 0.007178056053817272, 0.10532467812299728, -0.05311087891459465, -0.5172750949859619, 0.5138835906982422, -0.8691200017929077, -0.7623884677886963, -0.7487024664878845, -0.6386033892631531, 0.10844525694847107, 0.17471802234649658, -0.15732890367507935, 0.03051183745265007, 1.2131990194320679, -0.1751614362001419, 0.07680690288543701, 0.030883347615599632]} +{"t": 11.6557, "q": [-0.3405403196811676, -0.028126390650868416, 0.01680682972073555, 0.623810350894928, -0.3206866979598999, 0.019748369231820107, -0.39027538895606995, -0.01136850193142891, 0.008798475377261639, 0.6249096989631653, -0.293819397687912, 0.010972466319799423, 0.00705752894282341, 0.10531716048717499, -0.053115393966436386, -0.5175027847290039, 0.5139075517654419, -0.8681492805480957, -0.7623405456542969, -0.7550421357154846, -0.6404489874839783, 0.11234012991189957, 0.17471802234649658, -0.15729296207427979, 0.030523821711540222, 1.2132110595703125, -0.1751134991645813, 0.07678293436765671, 0.030895331874489784]} +{"t": 11.6727, "q": [-0.3400716185569763, -0.028117869049310684, 0.0169675312936306, 0.6238273978233337, -0.32066208124160767, 0.019675999879837036, -0.3900623321533203, -0.011385546065866947, 0.008905611000955105, 0.6252676248550415, -0.29391413927078247, 0.01082121953368187, 0.007084312848746777, 0.10534743964672089, -0.05313679575920105, -0.5175867080688477, 0.5138356685638428, -0.8675140738487244, -0.7623764872550964, -0.7595481872558594, -0.6434810161590576, 0.11688214540481567, 0.1748138964176178, -0.15728096663951874, 0.03051183745265007, 1.2132350206375122, -0.17512547969818115, 0.07680690288543701, 0.03087136335670948]} +{"t": 11.6896, "q": [-0.33956030011177063, -0.028066735714673996, 0.017195194959640503, 0.6237677335739136, -0.3206498324871063, 0.01961078867316246, -0.38994303345680237, -0.01142815686762333, 0.00906631350517273, 0.6259238123893738, -0.2940954864025116, 0.01054761279374361, 0.007003961596637964, 0.1053248792886734, -0.05315032973885536, -0.517706573009491, 0.5136918425559998, -0.8674901127815247, -0.7623645067214966, -0.7646295428276062, -0.6471721529960632, 0.12402474880218506, 0.174909770488739, -0.15725700557231903, 0.030523821711540222, 1.213258981704712, -0.175137460231781, 0.07680690288543701, 0.03087136335670948]} +{"t": 11.7063, "q": [-0.3391682803630829, -0.028049692511558533, 0.01744963973760605, 0.6237677335739136, -0.3206663727760315, 0.01956718973815441, -0.389968603849411, -0.011445201002061367, 0.009280583821237087, 0.6265714764595032, -0.29419058561325073, 0.010454265400767326, 0.006870042532682419, 0.1053551584482193, -0.053171731531620026, -0.5177425146102905, 0.5136678814888, -0.8674541711807251, -0.7624004483222961, -0.7694951295852661, -0.650851309299469, 0.13089171051979065, 0.174909770488739, -0.15725700557231903, 0.03051183745265007, 1.2132470607757568, -0.17510151863098145, 0.07679491490125656, 0.03085937909781933]} +{"t": 11.723, "q": [-0.3387592136859894, -0.028007080778479576, 0.017677301540970802, 0.6237421631813049, -0.32067054510116577, 0.0195454154163599, -0.39000269770622253, -0.011513377539813519, 0.009468070231378078, 0.627031683921814, -0.29435995221138, 0.010260206647217274, 0.006816474720835686, 0.10540048032999039, -0.053184110671281815, -0.5177544951438904, 0.5135959386825562, -0.867238461971283, -0.7618252038955688, -0.7758587598800659, -0.6553573608398438, 0.13762684166431427, 0.17493373155593872, -0.15729296207427979, 0.03051183745265007, 1.2132350206375122, -0.1751853972673416, 0.07680690288543701, 0.03087136335670948]} +{"t": 11.7397, "q": [-0.33863139152526855, -0.027990037575364113, 0.017704086378216743, 0.6237080693244934, -0.32067057490348816, 0.01951637864112854, -0.3901987075805664, -0.011530422605574131, 0.00958859734237194, 0.62732994556427, -0.2960939109325409, 0.011354089714586735, 0.006454893853515387, 0.10542318969964981, -0.05320016294717789, -0.5172990560531616, 0.5138356685638428, -0.8663995862007141, -0.7605189085006714, -0.7821504473686218, -0.6583774089813232, 0.1453806310892105, 0.17492175102233887, -0.1573169231414795, 0.030499853193759918, 1.2131990194320679, -0.1750895380973816, 0.07674697786569595, 0.03085937909781933]} +{"t": 11.7565, "q": [-0.3387592136859894, -0.027887770906090736, 0.017556775361299515, 0.6236228346824646, -0.32068711519241333, 0.019487278535962105, -0.39065036177635193, -0.011513377539813519, 0.009575205855071545, 0.6275259852409363, -0.29930052161216736, 0.010708008892834187, 0.00642810994759202, 0.10540815442800522, -0.05320918560028076, -0.5166519284248352, 0.5140153765678406, -0.8663156628608704, -0.7590808272361755, -0.7887297868728638, -0.6602948307991028, 0.15301458537578583, 0.17504160106182098, -0.1573169231414795, 0.03051183745265007, 1.2131750583648682, -0.17507754266262054, 0.07678293436765671, 0.03087136335670948]} +{"t": 11.7733, "q": [-0.3388529419898987, -0.02790481597185135, 0.017422856763005257, 0.6234779357910156, -0.3206953704357147, 0.019472729414701462, -0.39101681113243103, -0.011487811803817749, 0.009508245624601841, 0.6276282072067261, -0.30045056343078613, 0.008769753389060497, 0.006508461199700832, 0.10539306700229645, -0.053208351135253906, -0.51629239320755, 0.5140033960342407, -0.8663396239280701, -0.7573910355567932, -0.7954170107841492, -0.6619486808776855, 0.15895876288414001, 0.17510151863098145, -0.15724502503871918, 0.03051183745265007, 1.2132350206375122, -0.1750895380973816, 0.07674697786569595, 0.03087136335670948]} +{"t": 11.79, "q": [-0.3391171395778656, -0.027862204238772392, 0.017235370352864265, 0.6233160495758057, -0.3207119405269623, 0.019443612545728683, -0.39142587780952454, -0.011521900072693825, 0.009374327026307583, 0.6275686025619507, -0.30055680871009827, 0.00856789667159319, 0.0065620290115475655, 0.10540063679218292, -0.0532136969268322, -0.5159568786621094, 0.513979434967041, -0.8663396239280701, -0.7543590664863586, -0.8003305196762085, -0.664824903011322, 0.1666766107082367, 0.1751853972673416, -0.15726898610591888, 0.030523821711540222, 1.2131990194320679, -0.17514945566654205, 0.07677094638347626, 0.030883347615599632]} +{"t": 11.8067, "q": [-0.33932167291641235, -0.027811072766780853, 0.017181802541017532, 0.623222291469574, -0.320683091878891, 0.019436536356806755, -0.391724169254303, -0.011538944207131863, 0.009293975308537483, 0.627636730670929, -0.300569087266922, 0.008546264842152596, 0.006588812451809645, 0.10540063679218292, -0.0532136969268322, -0.5154894590377808, 0.5139554738998413, -0.8662917017936707, -0.7516026496887207, -0.8057593703269958, -0.6678808927536011, 0.17427460849285126, 0.17523333430290222, -0.15728096663951874, 0.03051183745265007, 1.2131990194320679, -0.17512547969818115, 0.07674697786569595, 0.030895331874489784]} +{"t": 11.8236, "q": [-0.33946654200553894, -0.027759939432144165, 0.01714162714779377, 0.6231541037559509, -0.3206872344017029, 0.019414762035012245, -0.3919968605041504, -0.011564510874450207, 0.009280583821237087, 0.6275856494903564, -0.30059781670570374, 0.00851031020283699, 0.0066289883106946945, 0.10543843358755112, -0.053230587393045425, -0.5150580406188965, 0.5138596296310425, -0.866267740726471, -0.7483189702033997, -0.8119671940803528, -0.6726745367050171, 0.1805063933134079, 0.17525731027126312, -0.15728096663951874, 0.03051183745265007, 1.2131990194320679, -0.1750895380973816, 0.07674697786569595, 0.03087136335670948]} +{"t": 11.8403, "q": [-0.3396625518798828, -0.02766619622707367, 0.01695414073765278, 0.6231370568275452, -0.32069131731987, 0.019436486065387726, -0.39224401116371155, -0.011564510874450207, 0.00925379991531372, 0.6275259852409363, -0.30063071846961975, 0.008481613360345364, 0.0065620290115475655, 0.10544606298208237, -0.05324580520391464, -0.514494776725769, 0.5137637257575989, -0.8662198185920715, -0.7450233101844788, -0.817180335521698, -0.677600085735321, 0.18718160688877106, 0.17529326677322388, -0.15729296207427979, 0.03051183745265007, 1.2132110595703125, -0.175137460231781, 0.07674697786569595, 0.030883347615599632]} +{"t": 11.8571, "q": [-0.3399863839149475, -0.02761506289243698, 0.01680682972073555, 0.6231370568275452, -0.3206995725631714, 0.019436435773968697, -0.39261898398399353, -0.0115559883415699, 0.009160056710243225, 0.6274322271347046, -0.300680011510849, 0.008424114435911179, 0.006495069246739149, 0.10546119511127472, -0.053256500512361526, -0.5134281516075134, 0.5136559009552002, -0.8653569221496582, -0.7432256937026978, -0.8243109583854675, -0.6808717846870422, 0.19396468997001648, 0.17528127133846283, -0.15726898610591888, 0.03051183745265007, 1.2131870985031128, -0.17512547969818115, 0.07674697786569595, 0.030883347615599632]} +{"t": 11.874, "q": [-0.3404124975204468, -0.027589498087763786, 0.016766652464866638, 0.6231029629707336, -0.3207160532474518, 0.019436337053775787, -0.3930962085723877, -0.011513377539813519, 0.009133272804319859, 0.6272702813148499, -0.300680011510849, 0.008424114435911179, 0.006414717994630337, 0.10544610768556595, -0.05325566604733467, -0.5116784572601318, 0.5135839581489563, -0.8634874224662781, -0.742087185382843, -0.8288889527320862, -0.6830528974533081, 0.1994055211544037, 0.1753651648759842, -0.15728096663951874, 0.030523821711540222, 1.2131990194320679, -0.17512547969818115, 0.07674697786569595, 0.03087136335670948]} +{"t": 11.8908, "q": [-0.3409408628940582, -0.02755540981888771, 0.016699694097042084, 0.6230263113975525, -0.3206995129585266, 0.019465437158942223, -0.3935478925704956, -0.011487811803817749, 0.009119881317019463, 0.6271169185638428, -0.3006761074066162, 0.008460277691483498, 0.0064013260416686535, 0.10544610768556595, -0.05325566604733467, -0.5100845694541931, 0.5136198997497559, -0.8612703084945679, -0.7412123680114746, -0.8341140747070312, -0.6855096817016602, 0.20411533117294312, 0.17531722784042358, -0.15728096663951874, 0.030535805970430374, 1.2131990194320679, -0.1751134991645813, 0.07674697786569595, 0.030895331874489784]} +{"t": 11.9075, "q": [-0.341401070356369, -0.027478709816932678, 0.01661934331059456, 0.6229325532913208, -0.3206953704357147, 0.019487246870994568, -0.3938291072845459, -0.01149633340537548, 0.009106488898396492, 0.6268527507781982, -0.3006761968135834, 0.008474756963551044, 0.006481677293777466, 0.10545358061790466, -0.053241290152072906, -0.5085386037826538, 0.5137277841567993, -0.8584660291671753, -0.7404093742370605, -0.8368704319000244, -0.687606930732727, 0.2091846466064453, 0.17526929080486298, -0.1573169231414795, 0.03051183745265007, 1.2131870985031128, -0.17510151863098145, 0.07674697786569595, 0.030895331874489784]} +{"t": 11.9244, "q": [-0.3417249023914337, -0.02749575488269329, 0.016405072063207626, 0.622915506362915, -0.32069122791290283, 0.019494522362947464, -0.39385467767715454, -0.011504855938255787, 0.008959177881479263, 0.6263925433158875, -0.300660103559494, 0.008547032251954079, 0.006575420964509249, 0.10543843358755112, -0.053230587393045425, -0.5074000954627991, 0.5137876868247986, -0.8556736707687378, -0.7400858402252197, -0.8389437198638916, -0.6895003914833069, 0.2133791297674179, 0.17530524730682373, -0.15729296207427979, 0.030535805970430374, 1.2131870985031128, -0.17512547969818115, 0.07674697786569595, 0.030883347615599632]} +{"t": 11.9411, "q": [-0.3418697714805603, -0.02749575488269329, 0.01629793643951416, 0.6229325532913208, -0.3206457793712616, 0.01956004649400711, -0.393777996301651, -0.011453723534941673, 0.008825259283185005, 0.6260431408882141, -0.3006642758846283, 0.0085543068125844, 0.00676290737465024, 0.10544606298208237, -0.05324580520391464, -0.5069686770439148, 0.5138835906982422, -0.8536603450775146, -0.7399899363517761, -0.8411487936973572, -0.6914058923721313, 0.21551232039928436, 0.17528127133846283, -0.15729296207427979, 0.030523821711540222, 1.2132350206375122, -0.17512547969818115, 0.07674697786569595, 0.030895331874489784]} +{"t": 11.9579, "q": [-0.3419720530509949, -0.027521319687366486, 0.0163247212767601, 0.6229666471481323, -0.3206540048122406, 0.019574515521526337, -0.3936416208744049, -0.011419634334743023, 0.008758299984037876, 0.6256937384605408, -0.30048868060112, 0.008907675743103027, 0.006776299327611923, 0.10543091595172882, -0.05323509871959686, -0.5066211223602295, 0.5139195322990417, -0.8514792323112488, -0.739834189414978, -0.8424670696258545, -0.6935510635375977, 0.21641114354133606, 0.17517341673374176, -0.15730494260787964, 0.030523821711540222, 1.2132350206375122, -0.1750895380973816, 0.07678293436765671, 0.030883347615599632]} +{"t": 11.9747, "q": [-0.34204021096229553, -0.027572453022003174, 0.016525600105524063, 0.622992217540741, -0.32062095403671265, 0.019618231803178787, -0.3934967517852783, -0.01142815686762333, 0.008785083889961243, 0.6254380345344543, -0.30032941699028015, 0.009232188574969769, 0.0067896912805736065, 0.10543086379766464, -0.053225237876176834, -0.506501317024231, 0.5138356685638428, -0.8493459820747375, -0.7398701310157776, -0.8426468372344971, -0.6962594985961914, 0.2166747897863388, 0.17499366402626038, -0.1573169231414795, 0.030523821711540222, 1.2132230997085571, -0.1751614362001419, 0.07678293436765671, 0.03087136335670948]} +{"t": 11.9915, "q": [-0.3420146703720093, -0.027572453022003174, 0.016672909259796143, 0.6230092644691467, -0.32063326239585876, 0.019639907404780388, -0.39329221844673157, -0.011445201002061367, 0.008852043189108372, 0.6253443360328674, -0.3000294864177704, 0.009555515833199024, 0.006776299327611923, 0.10543091595172882, -0.05323509871959686, -0.5064653158187866, 0.5138476490974426, -0.8472127914428711, -0.7398101687431335, -0.8425748944282532, -0.6986083984375, 0.21678264439105988, 0.17493373155593872, -0.1573169231414795, 0.030499853193759918, 1.2132110595703125, -0.17510151863098145, 0.07678293436765671, 0.030883347615599632]} +{"t": 12.0082, "q": [-0.34198909997940063, -0.027598019689321518, 0.016726477071642876, 0.622992217540741, -0.32064974308013916, 0.019654307514429092, -0.3931303024291992, -0.011513377539813519, 0.008852043189108372, 0.6252420544624329, -0.29822951555252075, 0.012784518301486969, 0.0068030827678740025, 0.10543843358755112, -0.053230587393045425, -0.506501317024231, 0.5139554738998413, -0.8452593684196472, -0.739630401134491, -0.842503011226654, -0.7010891437530518, 0.21683058142662048, 0.17496968805789948, -0.15730494260787964, 0.03051183745265007, 1.2132470607757568, -0.17510151863098145, 0.07678293436765671, 0.030895331874489784]} +{"t": 12.025, "q": [-0.3419976234436035, -0.027632107958197594, 0.01665951870381832, 0.6229410767555237, -0.32068267464637756, 0.019683126360177994, -0.39296838641166687, -0.011547466740012169, 0.008852043189108372, 0.6250715851783752, -0.2965511083602905, 0.011915618553757668, 0.0068566505797207355, 0.10538549721240997, -0.053203001618385315, -0.5065372586250305, 0.5142311453819275, -0.843102216720581, -0.7395345568656921, -0.842359185218811, -0.702707052230835, 0.21677066385746002, 0.17498166859149933, -0.15725700557231903, 0.03051183745265007, 1.2132230997085571, -0.17510151863098145, 0.07678293436765671, 0.030883347615599632]} +{"t": 12.0417, "q": [-0.3420146703720093, -0.027717329561710358, 0.016672909259796143, 0.6228814125061035, -0.3206826448440552, 0.019697625190019608, -0.3926445543766022, -0.01161564327776432, 0.008785083889961243, 0.6248756051063538, -0.2953992486000061, 0.01009533554315567, 0.006937001831829548, 0.10539291054010391, -0.05317876115441322, -0.5065372586250305, 0.5146505832672119, -0.8410529494285583, -0.7397263050079346, -0.8418918251991272, -0.7035099864006042, 0.2161235213279724, 0.17496968805789948, -0.15728096663951874, 0.030523821711540222, 1.2132470607757568, -0.17510151863098145, 0.07678293436765671, 0.03087136335670948]} +{"t": 12.0585, "q": [-0.34194648265838623, -0.027836639434099197, 0.01661934331059456, 0.6227365136146545, -0.3206867575645447, 0.019719351083040237, -0.392397403717041, -0.011692342348396778, 0.008758299984037876, 0.6247392296791077, -0.2953413426876068, 0.010152787901461124, 0.007124488707631826, 0.10534759610891342, -0.053166382014751434, -0.5065372586250305, 0.5150101184844971, -0.8385722041130066, -0.7397502660751343, -0.8414244651794434, -0.7039653658866882, 0.21518874168395996, 0.17493373155593872, -0.15724502503871918, 0.030523821711540222, 1.2132470607757568, -0.17507754266262054, 0.07680690288543701, 0.03087136335670948]} +{"t": 12.0754, "q": [-0.3418697714805603, -0.02780255116522312, 0.01664612628519535, 0.622617244720459, -0.3206908702850342, 0.01971207559108734, -0.3921672999858856, -0.011845740489661694, 0.008718123659491539, 0.6247221827507019, -0.2953626811504364, 0.010232620872557163, 0.007178056053817272, 0.10532483458518982, -0.05314046889543533, -0.5065971612930298, 0.5152977108955383, -0.836223304271698, -0.740145742893219, -0.8408012390136719, -0.7040132880210876, 0.21405024826526642, 0.1748857945203781, -0.15722104907035828, 0.03051183745265007, 1.2132350206375122, -0.1750895380973816, 0.07678293436765671, 0.03087136335670948]} +{"t": 12.0921, "q": [-0.3417419493198395, -0.027862204238772392, 0.016699694097042084, 0.6225149631500244, -0.3206908702850342, 0.01971207559108734, -0.39201390743255615, -0.01200766023248434, 0.008718123659491539, 0.6247562766075134, -0.295404851436615, 0.010319872759282589, 0.007084312848746777, 0.10533992201089859, -0.05314130708575249, -0.5078794956207275, 0.5154415369033813, -0.834138035774231, -0.7406850457191467, -0.8399863243103027, -0.7038095593452454, 0.2130076140165329, 0.17471802234649658, -0.15722104907035828, 0.03051183745265007, 1.2132470607757568, -0.17510151863098145, 0.07681888341903687, 0.03087136335670948]} +{"t": 12.1089, "q": [-0.3414181172847748, -0.027930382639169693, 0.01695414073765278, 0.6223785877227783, -0.3206826448440552, 0.01971212588250637, -0.39187756180763245, -0.012152536772191525, 0.008838650770485401, 0.6247988939285278, -0.2953968048095703, 0.010363275185227394, 0.00676290737465024, 0.10533992201089859, -0.05314130708575249, -0.5090299844741821, 0.5155613422393799, -0.8315854072570801, -0.7410685420036316, -0.8385002613067627, -0.7037855982780457, 0.21189308166503906, 0.1744903177022934, -0.15725700557231903, 0.03051183745265007, 1.2131990194320679, -0.17510151863098145, 0.07681888341903687, 0.030847394838929176]} +{"t": 12.1256, "q": [-0.3410516679286957, -0.027998559176921844, 0.017248760908842087, 0.6222593188285828, -0.3206826150417328, 0.019726624712347984, -0.39174118638038635, -0.012220713309943676, 0.009026138111948967, 0.6249352693557739, -0.29537612199783325, 0.010384797118604183, 0.006495069246739149, 0.10533245652914047, -0.05315568670630455, -0.50995272397995, 0.5157651305198669, -0.8293922543525696, -0.7415239214897156, -0.8361753225326538, -0.7036417722702026, 0.2108864188194275, 0.17437048256397247, -0.15724502503871918, 0.030499853193759918, 1.2132110595703125, -0.17505358159542084, 0.07684285193681717, 0.03087136335670948]} +{"t": 12.1423, "q": [-0.34069374203681946, -0.028066735714673996, 0.017409464344382286, 0.6221485137939453, -0.3206826448440552, 0.01971212588250637, -0.3915281593799591, -0.012212191708385944, 0.009146664291620255, 0.6251056790351868, -0.2953678071498871, 0.010384725406765938, 0.006254015490412712, 0.10533245652914047, -0.05315568670630455, -0.5106478333473206, 0.5160167813301086, -0.8279661536216736, -0.7424107789993286, -0.8341739773750305, -0.7034740447998047, 0.2094363272190094, 0.17441841959953308, -0.15722104907035828, 0.030487868934869766, 1.2132230997085571, -0.17510151863098145, 0.07681888341903687, 0.030883347615599632]} +{"t": 12.1591, "q": [-0.34029319882392883, -0.028049692511558533, 0.017543382942676544, 0.6220718026161194, -0.32067444920539856, 0.019683174788951874, -0.3912639617919922, -0.012212191708385944, 0.009160056710243225, 0.6253613233566284, -0.29536351561546326, 0.01036297157406807, 0.00613348837941885, 0.10533245652914047, -0.05315568670630455, -0.5114747285842896, 0.5162564516067505, -0.8271991610527039, -0.7433215975761414, -0.8325800895690918, -0.7031384706497192, 0.20757876336574554, 0.17440642416477203, -0.15722104907035828, 0.030475884675979614, 1.2132110595703125, -0.17510151863098145, 0.07681888341903687, 0.03087136335670948]} +{"t": 12.1758, "q": [-0.33996933698654175, -0.02809230238199234, 0.01765051856637001, 0.6220888495445251, -0.32067444920539856, 0.019683174788951874, -0.3911531865596771, -0.012203669175505638, 0.00932075921446085, 0.6257362961769104, -0.29536351561546326, 0.01036297157406807, 0.005946001503616571, 0.10533245652914047, -0.05315568670630455, -0.5120260119438171, 0.5165680646896362, -0.8270553350448608, -0.7438129186630249, -0.8316572904586792, -0.7026111483573914, 0.2052418440580368, 0.17439444363117218, -0.15718509256839752, 0.03051183745265007, 1.2131990194320679, -0.17507754266262054, 0.07681888341903687, 0.03085937909781933]} +{"t": 12.1925, "q": [-0.33960288763046265, -0.028075257316231728, 0.017851397395133972, 0.6221144199371338, -0.32066622376441956, 0.01966872625052929, -0.3911276161670685, -0.012212191708385944, 0.009521638043224812, 0.6262391209602356, -0.29538819193840027, 0.010319729335606098, 0.0057719070464372635, 0.10533250868320465, -0.05316554754972458, -0.5125892758369446, 0.5169994831085205, -0.8270912766456604, -0.7442682981491089, -0.8302431702613831, -0.7020119428634644, 0.2010233998298645, 0.17437048256397247, -0.15716113150119781, 0.03051183745265007, 1.2132350206375122, -0.17507754266262054, 0.07681888341903687, 0.03087136335670948]} +{"t": 12.2092, "q": [-0.33918532729148865, -0.02808378078043461, 0.01817280240356922, 0.6221485137939453, -0.32066211104393005, 0.019661501049995422, -0.39113613963127136, -0.012220713309943676, 0.009722515940666199, 0.6268527507781982, -0.295416921377182, 0.010254804976284504, 0.005637987982481718, 0.10533245652914047, -0.05315568670630455, -0.5138716101646423, 0.5175507664680481, -0.8271152973175049, -0.7444600462913513, -0.8277624249458313, -0.7016524076461792, 0.19607390463352203, 0.17435848712921143, -0.15716113150119781, 0.030535805970430374, 1.2131990194320679, -0.17510151863098145, 0.07681888341903687, 0.03087136335670948]} +{"t": 12.226, "q": [-0.33877626061439514, -0.02810082398355007, 0.018400464206933975, 0.6221826076507568, -0.32064977288246155, 0.01963980682194233, -0.3910764753818512, -0.012220713309943676, 0.009963570162653923, 0.6273640394210815, -0.29548659920692444, 0.010088864713907242, 0.0055978125892579556, 0.10533255338668823, -0.05317540839314461, -0.5157291293144226, 0.5179462432861328, -0.8271632194519043, -0.7443522214889526, -0.8241431713104248, -0.7005618810653687, 0.190860778093338, 0.17437048256397247, -0.15713715553283691, 0.03051183745265007, 1.2131990194320679, -0.17514945566654205, 0.07681888341903687, 0.030883347615599632]} +{"t": 12.2428, "q": [-0.3384694457054138, -0.028049692511558533, 0.01850759983062744, 0.6221826076507568, -0.3206663131713867, 0.01961068995296955, -0.3910764753818512, -0.012220713309943676, 0.010151056572794914, 0.6278071999549866, -0.29562631249427795, 0.00981486402451992, 0.005490677431225777, 0.10536278784275055, -0.05318694934248924, -0.5178983211517334, 0.5182218551635742, -0.8273429870605469, -0.7443522214889526, -0.8211351633071899, -0.6994593143463135, 0.18546786904335022, 0.17434650659561157, -0.15714915096759796, 0.030523821711540222, 1.2131990194320679, -0.17510151863098145, 0.07680690288543701, 0.030883347615599632]} +{"t": 12.2596, "q": [-0.33822232484817505, -0.027998559176921844, 0.018587950617074966, 0.622174084186554, -0.3206580877304077, 0.019596239551901817, -0.3911276161670685, -0.01224627997726202, 0.010298367589712143, 0.6281821727752686, -0.29588639736175537, 0.009491241537034512, 0.00546389352530241, 0.10539311915636063, -0.053218211978673935, -0.5199715495109558, 0.5184855461120605, -0.8273429870605469, -0.744400143623352, -0.8172162771224976, -0.698380708694458, 0.17896044254302979, 0.17429856956005096, -0.15716113150119781, 0.030547790229320526, 1.2131391763687134, -0.17512547969818115, 0.07679491490125656, 0.03087136335670948]} +{"t": 12.2764, "q": [-0.33799222111701965, -0.027981514111161232, 0.018547775223851204, 0.622174084186554, -0.32065823674201965, 0.019509203732013702, -0.39118725061416626, -0.012263324111700058, 0.010284976102411747, 0.628523051738739, -0.2962490916252136, 0.00958850234746933, 0.005303190555423498, 0.10540825873613358, -0.053228914737701416, -0.521817147731781, 0.5188330411911011, -0.8273429870605469, -0.7444480657577515, -0.812614381313324, -0.6971942782402039, 0.17118267714977264, 0.1742146760225296, -0.1570892184972763, 0.030535805970430374, 1.213091254234314, -0.17510151863098145, 0.07677094638347626, 0.030883347615599632]} +{"t": 12.2931, "q": [-0.33772802352905273, -0.027938904240727425, 0.018561167642474174, 0.622174084186554, -0.32065409421920776, 0.01951649598777294, -0.391204297542572, -0.012169580906629562, 0.010298367589712143, 0.6287446022033691, -0.2990195155143738, 0.013986052013933659, 0.004767514765262604, 0.10540074110031128, -0.05323342606425285, -0.5238904356956482, 0.5191206932067871, -0.8274747729301453, -0.7444840669631958, -0.8095344305038452, -0.6962954998016357, 0.16388428211212158, 0.1741907149553299, -0.157017320394516, 0.030523821711540222, 1.2130672931671143, -0.17517341673374176, 0.07678293436765671, 0.03087136335670948]} +{"t": 12.31, "q": [-0.33762577176094055, -0.027947425842285156, 0.01845403201878071, 0.6221911311149597, -0.32065001130104065, 0.01949475333094597, -0.3912128210067749, -0.012024705298244953, 0.01025819219648838, 0.6288213133811951, -0.3008078932762146, 0.010307961143553257, 0.004392541944980621, 0.10540831089019775, -0.053238775581121445, -0.5264310836791992, 0.5195521116256714, -0.8274747729301453, -0.7443642020225525, -0.8044171333312988, -0.695324718952179, 0.15620239078998566, 0.17429856956005096, -0.15689747035503387, 0.030547790229320526, 1.2130792140960693, -0.17507754266262054, 0.0767589658498764, 0.030895331874489784]} +{"t": 12.3267, "q": [-0.3376428186893463, -0.027862204238772392, 0.018346896395087242, 0.6221826076507568, -0.32065415382385254, 0.019487479701638222, -0.39132362604141235, -0.011905395425856113, 0.010231408290565014, 0.6288639307022095, -0.3016051948070526, 0.008844666182994843, 0.0042854067869484425, 0.10540079325437546, -0.05324328690767288, -0.5292114019393921, 0.520103394985199, -0.8275107741355896, -0.7443042993545532, -0.7982093095779419, -0.6940065026283264, 0.14737001061439514, 0.17441841959953308, -0.15688548982143402, 0.030547790229320526, 1.2130672931671143, -0.1750895380973816, 0.0767589658498764, 0.030919300392270088]} +{"t": 12.3435, "q": [-0.3376939594745636, -0.027870727702975273, 0.018186194822192192, 0.622174084186554, -0.3206665515899658, 0.019465653225779533, -0.39146849513053894, -0.011896872892975807, 0.010110881179571152, 0.6288468837738037, -0.3017319142818451, 0.008606767281889915, 0.0042854067869484425, 0.10540831089019775, -0.053238775581121445, -0.5322314500808716, 0.5208224654197693, -0.8275706768035889, -0.7442802786827087, -0.7918456792831421, -0.6924125552177429, 0.13910090923309326, 0.17459817230701447, -0.15684953331947327, 0.030547790229320526, 1.2130792140960693, -0.1750895380973816, 0.07674697786569595, 0.030907316133379936]} +{"t": 12.3602, "q": [-0.3377535939216614, -0.02780255116522312, 0.01797192357480526, 0.6221826076507568, -0.3206706643104553, 0.019458379596471786, -0.3915877938270569, -0.011922439560294151, 0.009976962581276894, 0.6288127899169922, -0.30175209045410156, 0.008527269586920738, 0.004446109291166067, 0.10540835559368134, -0.05324863642454147, -0.534963846206665, 0.5214096903800964, -0.8275826573371887, -0.7442323565483093, -0.7879867553710938, -0.6901236176490784, 0.12978915870189667, 0.17473000288009644, -0.15686152875423431, 0.030523821711540222, 1.2130792140960693, -0.17507754266262054, 0.0767589658498764, 0.030895331874489784]} +{"t": 12.377, "q": [-0.3378303050994873, -0.02779402770102024, 0.017851397395133972, 0.622174084186554, -0.3206665515899658, 0.019465653225779533, -0.3916304111480713, -0.011930961161851883, 0.00991000235080719, 0.6288042664527893, -0.301780641078949, 0.008462338708341122, 0.004486285150051117, 0.10541598498821259, -0.05326385423541069, -0.5373007655143738, 0.52190101146698, -0.8273549675941467, -0.7441964149475098, -0.781395435333252, -0.6867080926895142, 0.12098075449466705, 0.17495770752429962, -0.15687350928783417, 0.030547790229320526, 1.213103175163269, -0.17510151863098145, 0.07677094638347626, 0.030907316133379936]} +{"t": 12.3937, "q": [-0.3378814458847046, -0.02773437276482582, 0.017771044746041298, 0.6221826076507568, -0.3206830620765686, 0.01945105381309986, -0.3917582333087921, -0.011956527829170227, 0.00991000235080719, 0.6287276148796082, -0.30182552337646484, 0.008368588984012604, 0.0045264605432748795, 0.10544626414775848, -0.053285256028175354, -0.5390744209289551, 0.5224882364273071, -0.8272830247879028, -0.7441964149475098, -0.7750797867774963, -0.6833165287971497, 0.11183679103851318, 0.174909770488739, -0.15690946578979492, 0.030547790229320526, 1.2131152153015137, -0.17510151863098145, 0.07678293436765671, 0.03087136335670948]} +{"t": 12.4104, "q": [-0.3379751741886139, -0.02766619622707367, 0.017744261771440506, 0.6221996545791626, -0.3206872045993805, 0.019443761557340622, -0.3918008506298065, -0.011973571963608265, 0.009883219376206398, 0.628736138343811, -0.30182135105133057, 0.008361314423382282, 0.0045800283551216125, 0.10547654330730438, -0.05330665782094002, -0.5400451421737671, 0.5231953263282776, -0.8273429870605469, -0.7441964149475098, -0.770477831363678, -0.6794456243515015, 0.10175805538892746, 0.17489778995513916, -0.15698136389255524, 0.030547790229320526, 1.2131271362304688, -0.17510151863098145, 0.07679491490125656, 0.03085937909781933]} +{"t": 12.4271, "q": [-0.3381115198135376, -0.027640629559755325, 0.017744261771440506, 0.6222593188285828, -0.32069131731987, 0.019436486065387726, -0.39192017912864685, -0.011990616098046303, 0.00991000235080719, 0.6286764740943909, -0.3018256425857544, 0.008383069187402725, 0.004606812261044979, 0.10546150803565979, -0.05331568047404289, -0.5405844449996948, 0.5243458151817322, -0.8275227546691895, -0.7441964149475098, -0.7649890780448914, -0.6767971515655518, 0.09251821786165237, 0.17489778995513916, -0.15698136389255524, 0.030547790229320526, 1.2131271362304688, -0.17510151863098145, 0.07677094638347626, 0.030883347615599632]} +{"t": 12.4439, "q": [-0.3382564187049866, -0.027589498087763786, 0.017717478796839714, 0.6222934126853943, -0.3207036554813385, 0.019472679123282433, -0.39197981357574463, -0.012024705298244953, 0.009936786256730556, 0.6285656690597534, -0.30184218287467957, 0.008383226580917835, 0.004606812261044979, 0.10546912252902985, -0.05333089083433151, -0.5406802892684937, 0.5259037613868713, -0.8275467157363892, -0.7441484928131104, -0.7571633458137512, -0.675430953502655, 0.08222377300262451, 0.1748618334531784, -0.1569933444261551, 0.030523821711540222, 1.2131152153015137, -0.17510151863098145, 0.07679491490125656, 0.030919300392270088]} +{"t": 12.4606, "q": [-0.3384694457054138, -0.027572453022003174, 0.01763712614774704, 0.6223530173301697, -0.3207036554813385, 0.019472679123282433, -0.39210766553878784, -0.012092881835997105, 0.009936786256730556, 0.6284719109535217, -0.30184245109558105, 0.008426664397120476, 0.004633595701307058, 0.10547658801078796, -0.053316518664360046, -0.5406084060668945, 0.5280968546867371, -0.8278582692146301, -0.7441484928131104, -0.7517344951629639, -0.6745321154594421, 0.07352322340011597, 0.174909770488739, -0.1569933444261551, 0.030535805970430374, 1.2131271362304688, -0.17510151863098145, 0.07678293436765671, 0.030883347615599632]} +{"t": 12.4774, "q": [-0.33872511982917786, -0.02755540981888771, 0.01762373559176922, 0.6223700642585754, -0.3207201063632965, 0.019487079232931137, -0.3923121690750122, -0.012135492637753487, 0.009963570162653923, 0.6283355951309204, -0.301801472902298, 0.008484250865876675, 0.004646987654268742, 0.10547654330730438, -0.05330665782094002, -0.5402848124504089, 0.5306494832038879, -0.8285174369812012, -0.7441964149475098, -0.7470366954803467, -0.6733217239379883, 0.0628572627902031, 0.1748618334531784, -0.1569933444261551, 0.030535805970430374, 1.2131391763687134, -0.17510151863098145, 0.07678293436765671, 0.03087136335670948]} +{"t": 12.4943, "q": [-0.33900636434555054, -0.027521319687366486, 0.017570167779922485, 0.6224126815795898, -0.32071179151535034, 0.0195306483656168, -0.39242297410964966, -0.012169580906629562, 0.009976962581276894, 0.6281310319900513, -0.30173611640930176, 0.008614041842520237, 0.004673771560192108, 0.10545393079519272, -0.053310327231884, -0.5401769876480103, 0.5330463647842407, -0.8290807008743286, -0.7441964149475098, -0.7411884069442749, -0.6721113324165344, 0.053833138197660446, 0.17492175102233887, -0.1569933444261551, 0.030523821711540222, 1.2131391763687134, -0.1750895380973816, 0.07678293436765671, 0.030895331874489784]} +{"t": 12.511, "q": [-0.33928757905960083, -0.027504276484251022, 0.01748981513082981, 0.6224638223648071, -0.32070353627204895, 0.01953069679439068, -0.3924996554851532, -0.012212191708385944, 0.01000374648720026, 0.627849817276001, -0.3016664683818817, 0.008722079917788506, 0.004646987654268742, 0.10547654330730438, -0.05330665782094002, -0.5402129292488098, 0.5346402525901794, -0.829212486743927, -0.7441245317459106, -0.7346210479736328, -0.6710447072982788, 0.04496481269598007, 0.17487381398677826, -0.1569933444261551, 0.030523821711540222, 1.2131510972976685, -0.17510151863098145, 0.07678293436765671, 0.030895331874489784]} +{"t": 12.5278, "q": [-0.3394921123981476, -0.027504276484251022, 0.01747642457485199, 0.6225064396858215, -0.32070350646972656, 0.01954519748687744, -0.39255931973457336, -0.012254801578819752, 0.010017137974500656, 0.627636730670929, -0.30164238810539246, 0.008837740868330002, 0.004646987654268742, 0.10546144843101501, -0.05330581218004227, -0.5401530265808105, 0.5365217924118042, -0.8292844295501709, -0.7440765500068665, -0.731169581413269, -0.6700979471206665, 0.03689942881464958, 0.17487381398677826, -0.15698136389255524, 0.030535805970430374, 1.213163137435913, -0.1750895380973816, 0.07679491490125656, 0.03085937909781933]} +{"t": 12.5445, "q": [-0.33973073959350586, -0.027478709816932678, 0.017516599968075752, 0.6226598620414734, -0.3206704258918762, 0.019617915153503418, -0.3925507962703705, -0.012263324111700058, 0.01000374648720026, 0.6273214221000671, -0.30153992772102356, 0.008988937363028526, 0.004620204214006662, 0.10544636100530624, -0.05330497771501541, -0.5399372577667236, 0.5382235646247864, -0.8292365074157715, -0.7440046668052673, -0.7275024056434631, -0.6691032648086548, 0.030308105051517487, 0.17484985291957855, -0.15698136389255524, 0.030523821711540222, 1.213163137435913, -0.17507754266262054, 0.07680690288543701, 0.03085937909781933]} +{"t": 12.5612, "q": [-0.33992674946784973, -0.027538364753127098, 0.017610343173146248, 0.6227535605430603, -0.3206786513328552, 0.019632382318377495, -0.3925081789493561, -0.012254801578819752, 0.010030529461801052, 0.6270572543144226, -0.3012863099575043, 0.009435775689780712, 0.004553244449198246, 0.10546139627695084, -0.05329595133662224, -0.5397215485572815, 0.5400810837745667, -0.829128623008728, -0.7435253262519836, -0.7230442762374878, -0.6674374341964722, 0.02280598133802414, 0.1748378574848175, -0.15695740282535553, 0.03051183745265007, 1.2131510972976685, -0.17510151863098145, 0.07679491490125656, 0.030883347615599632]} +{"t": 12.578, "q": [-0.3402079641819, -0.027529843151569366, 0.01766391098499298, 0.6227876543998718, -0.32066211104393005, 0.019661501049995422, -0.39252522587776184, -0.012237757444381714, 0.01000374648720026, 0.6267078518867493, -0.30116742849349976, 0.009601330384612083, 0.004566636402159929, 0.10546129941940308, -0.05327622964978218, -0.5395658016204834, 0.5418907403945923, -0.8290087580680847, -0.7429860234260559, -0.71839439868927, -0.6658914685249329, 0.017473001033067703, 0.1748138964176178, -0.15696938335895538, 0.030535805970430374, 1.213163137435913, -0.1750895380973816, 0.07680690288543701, 0.030883347615599632]} +{"t": 12.5947, "q": [-0.3404465913772583, -0.02755540981888771, 0.017757654190063477, 0.6227876543998718, -0.32065796852111816, 0.01966877467930317, -0.39246559143066406, -0.012237757444381714, 0.009976962581276894, 0.6263328790664673, -0.3010313808917999, 0.009679832495748997, 0.004620204214006662, 0.10546129941940308, -0.05327622964978218, -0.5394579172134399, 0.5439160466194153, -0.828673243522644, -0.742231011390686, -0.7145354747772217, -0.6648728251457214, 0.014584802091121674, 0.17480191588401794, -0.15696938335895538, 0.030523821711540222, 1.213163137435913, -0.17510151863098145, 0.07679491490125656, 0.03085937909781933]} +{"t": 12.6115, "q": [-0.3405744135379791, -0.027538364753127098, 0.017744261771440506, 0.622779130935669, -0.3206538259983063, 0.01969055086374283, -0.39246559143066406, -0.012263324111700058, 0.01000374648720026, 0.6261197924613953, -0.30039697885513306, 0.010738994926214218, 0.004620204214006662, 0.10541582852602005, -0.05323426425457001, -0.5379359126091003, 0.5456777215003967, -0.8285174369812012, -0.7414999604225159, -0.7141999006271362, -0.6645013093948364, 0.01356614287942648, 0.1747659593820572, -0.15690946578979492, 0.030523821711540222, 1.2131510972976685, -0.17510151863098145, 0.07677094638347626, 0.03085937909781933]} +{"t": 12.6282, "q": [-0.34065964818000793, -0.027632107958197594, 0.017757654190063477, 0.622779130935669, -0.3206579387187958, 0.019697776064276695, -0.392397403717041, -0.012297412380576134, 0.009976962581276894, 0.6260687112808228, -0.2984444797039032, 0.012040465138852596, 0.004687163513153791, 0.10537035763263702, -0.053192298859357834, -0.535874605178833, 0.5466843843460083, -0.827786386013031, -0.739546537399292, -0.714511513710022, -0.6644294261932373, 0.013674001209437847, 0.1748618334531784, -0.15688548982143402, 0.030523821711540222, 1.2131510972976685, -0.1751134991645813, 0.07678293436765671, 0.030883347615599632]} +{"t": 12.6449, "q": [-0.3407107889652252, -0.027632107958197594, 0.01763712614774704, 0.622779130935669, -0.3206620216369629, 0.019719500094652176, -0.3921758234500885, -0.01233150064945221, 0.00991000235080719, 0.6258130073547363, -0.2959496080875397, 0.011562860570847988, 0.005383542273193598, 0.10529465973377228, -0.053138796240091324, -0.5344724655151367, 0.5472955703735352, -0.8268036842346191, -0.7370777726173401, -0.7153144478797913, -0.6647170186042786, 0.015004250220954418, 0.17489778995513916, -0.15689747035503387, 0.03051183745265007, 1.2131510972976685, -0.1750895380973816, 0.07678293436765671, 0.03087136335670948]} +{"t": 12.6616, "q": [-0.3407618999481201, -0.027742896229028702, 0.01748981513082981, 0.6225575804710388, -0.3206661343574524, 0.01971222460269928, -0.39192870259284973, -0.012484898790717125, 0.009642165154218674, 0.625463604927063, -0.29554200172424316, 0.010943825356662273, 0.006187055725604296, 0.10527937114238739, -0.05309851095080376, -0.5320277214050293, 0.54767906665802, -0.8256891369819641, -0.732823371887207, -0.7161772847175598, -0.6651484966278076, 0.01818007044494152, 0.17494572699069977, -0.15693342685699463, 0.03051183745265007, 1.2131750583648682, -0.17510151863098145, 0.07679491490125656, 0.03087136335670948]} +{"t": 12.6784, "q": [-0.3409067690372467, -0.027811072766780853, 0.017355896532535553, 0.6224297285079956, -0.3206495940685272, 0.019741343334317207, -0.39187756180763245, -0.012621252797544003, 0.009441286325454712, 0.6253187656402588, -0.2955217957496643, 0.011037779971957207, 0.00676290737465024, 0.10520345717668533, -0.05300555378198624, -0.5287919640541077, 0.5477749705314636, -0.8237716555595398, -0.7278978824615479, -0.7172319293022156, -0.666622519493103, 0.02117612585425377, 0.17501762509346008, -0.15698136389255524, 0.03051183745265007, 1.2132110595703125, -0.17510151863098145, 0.07683087140321732, 0.030883347615599632]} +{"t": 12.6951, "q": [-0.3409920036792755, -0.027811072766780853, 0.017235370352864265, 0.6223530173301697, -0.3206537365913391, 0.01973404921591282, -0.39183494448661804, -0.01263829693198204, 0.009374327026307583, 0.6252676248550415, -0.29556405544281006, 0.011139546521008015, 0.007218231912702322, 0.10483212769031525, -0.052664484828710556, -0.5254363417625427, 0.5476191639900208, -0.8208714723587036, -0.7225528955459595, -0.7188617587089539, -0.6693549156188965, 0.024723457172513008, 0.1748618334531784, -0.15696938335895538, 0.030535805970430374, 1.2132470607757568, -0.17510151863098145, 0.07681888341903687, 0.030847394838929176]} +{"t": 12.7119, "q": [-0.34097495675086975, -0.027836639434099197, 0.017208585515618324, 0.6222507953643799, -0.3206537365913391, 0.01973404921591282, -0.3918178975582123, -0.012663863599300385, 0.009280583821237087, 0.6252250075340271, -0.295610249042511, 0.011205114424228668, 0.007365542463958263, 0.1043698638677597, -0.05224944278597832, -0.5221406817436218, 0.5476071834564209, -0.8187862634658813, -0.7188977003097534, -0.7216541171073914, -0.6724228858947754, 0.02852245606482029, 0.1745142936706543, -0.15690946578979492, 0.030535805970430374, 1.2132350206375122, -0.1750895380973816, 0.07683087140321732, 0.03085937909781933]} +{"t": 12.7286, "q": [-0.34083861112594604, -0.027930382639169693, 0.017208585515618324, 0.6219780445098877, -0.3206495940685272, 0.019741343334317207, -0.3917156457901001, -0.012663863599300385, 0.00925379991531372, 0.6252079606056213, -0.2956143617630005, 0.0111978929489851, 0.007378934416919947, 0.1039154976606369, -0.05191883072257042, -0.5188930034637451, 0.5475353002548218, -0.8171683549880981, -0.7153983116149902, -0.7262440323829651, -0.6763057708740234, 0.03278883919119835, 0.1742146760225296, -0.1568375527858734, 0.030535805970430374, 1.2132230997085571, -0.1750895380973816, 0.07683087140321732, 0.03085937909781933]} +{"t": 12.7454, "q": [-0.34056589007377625, -0.027947425842285156, 0.017342504113912582, 0.6217053532600403, -0.3206537663936615, 0.019719550386071205, -0.3915707468986511, -0.012655341066420078, 0.00925379991531372, 0.62523353099823, -0.2956101596355438, 0.011190617457032204, 0.007271799258887768, 0.10350631177425385, -0.05158110707998276, -0.5165320634841919, 0.5474154353141785, -0.8149992227554321, -0.7124861478805542, -0.7313852906227112, -0.6790022253990173, 0.03946405276656151, 0.17401094734668732, -0.15677763521671295, 0.030523821711540222, 1.2131990194320679, -0.1751134991645813, 0.07685483992099762, 0.030835412442684174]} +{"t": 12.7621, "q": [-0.34027615189552307, -0.028058214113116264, 0.017409464344382286, 0.6212877631187439, -0.3206413686275482, 0.019741393625736237, -0.3914344012737274, -0.012655341066420078, 0.009280583821237087, 0.6252420544624329, -0.2956143617630005, 0.0111978929489851, 0.007204839959740639, 0.10337693989276886, -0.051372017711400986, -0.5147943496704102, 0.547223687171936, -0.8116676211357117, -0.7098016738891602, -0.7372455596923828, -0.6800808310508728, 0.04542021453380585, 0.1739869862794876, -0.1566937416791916, 0.030547790229320526, 1.2131990194320679, -0.1751853972673416, 0.07683087140321732, 0.030835412442684174]} +{"t": 12.7789, "q": [-0.3398926556110382, -0.028075257316231728, 0.01762373559176922, 0.6207764744758606, -0.3206249177455902, 0.019712474197149277, -0.3913406729698181, -0.012663863599300385, 0.00933415163308382, 0.6252676248550415, -0.29560595750808716, 0.011183341965079308, 0.007111096754670143, 0.10339934378862381, -0.051328886300325394, -0.513296365737915, 0.5471637845039368, -0.8091149926185608, -0.7068535685539246, -0.7426145076751709, -0.6810035705566406, 0.051232561469078064, 0.1739869862794876, -0.1566937416791916, 0.030547790229320526, 1.2132110595703125, -0.17517341673374176, 0.07681888341903687, 0.030835412442684174]} +{"t": 12.7956, "q": [-0.3392534852027893, -0.028109345585107803, 0.01797192357480526, 0.6201117038726807, -0.3206125795841217, 0.019690800458192825, -0.3911787271499634, -0.012663863599300385, 0.009535029530525208, 0.625301718711853, -0.29561829566955566, 0.01116172969341278, 0.006843258626759052, 0.10343678295612335, -0.05127672478556633, -0.511354923248291, 0.5470439195632935, -0.8077008128166199, -0.7043967843055725, -0.750979483127594, -0.6820821762084961, 0.05914214998483658, 0.1739630103111267, -0.15665778517723083, 0.030559774488210678, 1.2132110595703125, -0.17510151863098145, 0.07683087140321732, 0.030847394838929176]} +{"t": 12.8123, "q": [-0.3384353816509247, -0.02822013385593891, 0.01845403201878071, 0.6192254424095154, -0.3205673396587372, 0.01962580531835556, -0.39099976420402527, -0.012646819464862347, 0.00992339476943016, 0.6253783702850342, -0.29562634229660034, 0.011118345893919468, 0.006307582836598158, 0.10349705815315247, -0.05126030370593071, -0.5093295574188232, 0.5470079779624939, -0.8066102862358093, -0.7029587030410767, -0.7585654854774475, -0.6834244132041931, 0.06683602184057236, 0.1738671362400055, -0.15664580464363098, 0.030559774488210678, 1.2131750583648682, -0.17510151863098145, 0.07683087140321732, 0.030847394838929176]} +{"t": 12.829, "q": [-0.33725932240486145, -0.028245700523257256, 0.01896292343735695, 0.6182453632354736, -0.3205137848854065, 0.01958986185491085, -0.39059072732925415, -0.012612731195986271, 0.010351935401558876, 0.6254295110702515, -0.2956799268722534, 0.011039137840270996, 0.005731731187552214, 0.10349699854850769, -0.05125044286251068, -0.5071364641189575, 0.5469840168952942, -0.8051242232322693, -0.7015565633773804, -0.765552282333374, -0.6857134103775024, 0.07345131784677505, 0.1738911122083664, -0.1566937416791916, 0.030535805970430374, 1.213163137435913, -0.17510151863098145, 0.07680690288543701, 0.030847394838929176]} +{"t": 12.846, "q": [-0.3360576927661896, -0.028245700523257256, 0.01931111328303814, 0.6172994375228882, -0.32049739360809326, 0.019531944766640663, -0.3899345099925995, -0.01257864199578762, 0.0105929896235466, 0.6254295110702515, -0.2957952618598938, 0.010851871222257614, 0.0055442447774112225, 0.103519506752491, -0.051227033138275146, -0.5059979557991028, 0.5470559000968933, -0.8047646880149841, -0.7003821134567261, -0.7738214135169983, -0.6874391436576843, 0.0815047174692154, 0.17397499084472656, -0.15660984814167023, 0.030583743005990982, 1.2131391763687134, -0.17507754266262054, 0.07681888341903687, 0.03085937909781933]} +{"t": 12.8628, "q": [-0.3344981372356415, -0.02826274372637272, 0.019605735316872597, 0.6162086129188538, -0.32045212388038635, 0.01948145031929016, -0.3890226483345032, -0.012553076259791851, 0.010874219238758087, 0.6253868937492371, -0.29601776599884033, 0.010506171733140945, 0.005396933760493994, 0.10353466123342514, -0.051237717270851135, -0.5049313902854919, 0.547223687171936, -0.804776668548584, -0.6991716623306274, -0.7820186614990234, -0.6891049146652222, 0.09003748744726181, 0.1741188019514084, -0.15660984814167023, 0.030595727264881134, 1.213163137435913, -0.17510151863098145, 0.07680690288543701, 0.03085937909781933]} +{"t": 12.8796, "q": [-0.3332539200782776, -0.0282712671905756, 0.01980661414563656, 0.6153904795646667, -0.32043159008026123, 0.019416308030486107, -0.38825565576553345, -0.012570120394229889, 0.011088489554822445, 0.6253783702850342, -0.29632776975631714, 0.01018297765403986, 0.005048744846135378, 0.10354211926460266, -0.05122333765029907, -0.5043561458587646, 0.5471278429031372, -0.8047287464141846, -0.6977575421333313, -0.7892091870307922, -0.6911662220954895, 0.09643705934286118, 0.1741188019514084, -0.15659786760807037, 0.030595727264881134, 1.2131750583648682, -0.17510151863098145, 0.07681888341903687, 0.03087136335670948]} +{"t": 12.8963, "q": [-0.3322823941707611, -0.028237178921699524, 0.01986018195748329, 0.6148450374603271, -0.32043981552124023, 0.01943075843155384, -0.38765057921409607, -0.012527509592473507, 0.011142057366669178, 0.6254039406776428, -0.29659226536750793, 0.009895588271319866, 0.004218447022140026, 0.10356484353542328, -0.05123936012387276, -0.5039366483688354, 0.5469840168952942, -0.8049324750900269, -0.6959599256515503, -0.7963877320289612, -0.6941742897033691, 0.10399910807609558, 0.17408286035060883, -0.15656191110610962, 0.03057175874710083, 1.213163137435913, -0.1751614362001419, 0.07680690288543701, 0.030883347615599632]} +{"t": 12.913, "q": [-0.3316943645477295, -0.02826274372637272, 0.019940532743930817, 0.6144956350326538, -0.3204398453235626, 0.019416257739067078, -0.3874119520187378, -0.012425243854522705, 0.01118223275989294, 0.6254721283912659, -0.2968568503856659, 0.009622679091989994, 0.003321190131828189, 0.1036403700709343, -0.051253337413072586, -0.5033134818077087, 0.5469840168952942, -0.8049803972244263, -0.6940544247627258, -0.8026914000511169, -0.6970025300979614, 0.11007510870695114, 0.173939049243927, -0.15658588707447052, 0.030595727264881134, 1.2130672931671143, -0.17514945566654205, 0.07677094638347626, 0.030895331874489784]} +{"t": 12.9298, "q": [-0.33152392506599426, -0.02822013385593891, 0.02000749297440052, 0.6141973733901978, -0.3204439580440521, 0.01940898224711418, -0.3874204754829407, -0.012254801578819752, 0.01124919205904007, 0.6254721283912659, -0.2969929277896881, 0.00942833349108696, 0.0028122980147600174, 0.10381322354078293, -0.051129717379808426, -0.5026783347129822, 0.5468042492866516, -0.8050763010978699, -0.6917654275894165, -0.8083480000495911, -0.6991836428642273, 0.1155518963932991, 0.17378325760364532, -0.15652596950531006, 0.030595727264881134, 1.21303129196167, -0.17510151863098145, 0.07677094638347626, 0.030907316133379936]} +{"t": 12.9466, "q": [-0.3315580189228058, -0.028254222124814987, 0.02000749297440052, 0.6140269637107849, -0.3204439580440521, 0.01940898224711418, -0.3875483274459839, -0.011982094496488571, 0.011195625178515911, 0.6254039406776428, -0.2970997393131256, 0.009212001226842403, 0.0026783791836351156, 0.10415895283222198, -0.05089254677295685, -0.5018394589424133, 0.5467563271522522, -0.8051002621650696, -0.6895244121551514, -0.8158860802650452, -0.7009693384170532, 0.12148409336805344, 0.17372332513332367, -0.15652596950531006, 0.030595727264881134, 1.2129952907562256, -0.175137460231781, 0.07680690288543701, 0.030895331874489784]} +{"t": 12.9634, "q": [-0.3316347301006317, -0.028194567188620567, 0.02000749297440052, 0.6138905882835388, -0.3204480707645416, 0.01941620744764805, -0.38765057921409607, -0.011726430617272854, 0.011168841272592545, 0.6253783702850342, -0.29724377393722534, 0.008959791623055935, 0.0026783791836351156, 0.10445178300142288, -0.05063769966363907, -0.5008566975593567, 0.5467563271522522, -0.8052321076393127, -0.6873552203178406, -0.8220819234848022, -0.7025632262229919, 0.12716461718082428, 0.17378325760364532, -0.15652596950531006, 0.030583743005990982, 1.2130073308944702, -0.17510151863098145, 0.07678293436765671, 0.03085937909781933]} +{"t": 12.9801, "q": [-0.3316517770290375, -0.028237178921699524, 0.019940532743930817, 0.6137542128562927, -0.320448100566864, 0.019401708617806435, -0.38766762614250183, -0.011581555008888245, 0.011075098067522049, 0.6253698468208313, -0.2974664568901062, 0.00864308699965477, 0.0028122980147600174, 0.10456367582082748, -0.050402428954839706, -0.4992029070854187, 0.5462769269943237, -0.8054717779159546, -0.6854977011680603, -0.8265280723571777, -0.7036178112030029, 0.13042432069778442, 0.1738911122083664, -0.1564660519361496, 0.030595727264881134, 1.2129952907562256, -0.17514945566654205, 0.07678293436765671, 0.030895331874489784]} +{"t": 12.997, "q": [-0.33161768317222595, -0.028245700523257256, 0.01980661414563656, 0.6136264204978943, -0.3204522132873535, 0.0194089338183403, -0.3876761496067047, -0.011581555008888245, 0.010941178537905216, 0.6253954172134399, -0.2977979779243469, 0.008428684435784817, 0.0030131766106933355, 0.10456261783838272, -0.050215281546115875, -0.4975610673427582, 0.5452582836151123, -0.8063825368881226, -0.6839876770973206, -0.8288289904594421, -0.7037975788116455, 0.13169464468955994, 0.1739630103111267, -0.15654993057250977, 0.030607711523771286, 1.21303129196167, -0.17512547969818115, 0.07678293436765671, 0.030907316133379936]} +{"t": 13.0138, "q": [-0.3316347301006317, -0.028237178921699524, 0.019699478521943092, 0.613430380821228, -0.3204563558101654, 0.019401658326387405, -0.38765057921409607, -0.011564510874450207, 0.010713516734540462, 0.6253954172134399, -0.29801738262176514, 0.008249514736235142, 0.003347973804920912, 0.10456244647502899, -0.050185732543468475, -0.4968540072441101, 0.5437362790107727, -0.807545006275177, -0.6830409169197083, -0.8309502005577087, -0.7037137150764465, 0.13183845579624176, 0.17397499084472656, -0.1564900130033493, 0.030595727264881134, 1.2130672931671143, -0.17510151863098145, 0.07678293436765671, 0.030907316133379936]} +{"t": 13.0305, "q": [-0.3316432535648346, -0.028245700523257256, 0.019565559923648834, 0.6133536696434021, -0.3204604983329773, 0.019394366070628166, -0.38765057921409607, -0.011564510874450207, 0.010566205717623234, 0.6254295110702515, -0.2981794774532318, 0.008214710280299187, 0.003562244353815913, 0.10452447831630707, -0.050139304250478745, -0.49669820070266724, 0.542286217212677, -0.8084079027175903, -0.682753324508667, -0.8320168256759644, -0.7035579085350037, 0.1317306011915207, 0.17383117973804474, -0.15652596950531006, 0.030607711523771286, 1.2130433320999146, -0.17512547969818115, 0.07677094638347626, 0.030883347615599632]} +{"t": 13.0473, "q": [-0.3316347301006317, -0.02821161225438118, 0.01948520727455616, 0.6132599711418152, -0.3204728662967682, 0.01938704028725624, -0.38765910267829895, -0.011521900072693825, 0.010405503213405609, 0.6254806518554688, -0.2982824146747589, 0.00804903730750084, 0.0036024199798703194, 0.10446379333734512, -0.050076842308044434, -0.49667423963546753, 0.5399492979049683, -0.808288037776947, -0.6826214790344238, -0.8324722051620483, -0.7036058306694031, 0.13133512437343597, 0.17354357242584229, -0.1564660519361496, 0.030607711523771286, 1.2130073308944702, -0.17512547969818115, 0.07680690288543701, 0.030883347615599632]} +{"t": 13.064, "q": [-0.3316517770290375, -0.02822013385593891, 0.019404856488108635, 0.6132173538208008, -0.32048526406288147, 0.019379716366529465, -0.3876420557498932, -0.011453723534941673, 0.010284976102411747, 0.625463604927063, -0.29833149909973145, 0.007962562143802643, 0.0036292036529630423, 0.10430478304624557, -0.04996457323431969, -0.4964105784893036, 0.5365098118782043, -0.8081202507019043, -0.6826214790344238, -0.8325681090354919, -0.7039653658866882, 0.13086773455142975, 0.1732679307460785, -0.1564420759677887, 0.030619695782661438, 1.2130073308944702, -0.17514945566654205, 0.07678293436765671, 0.030895331874489784]} +{"t": 13.0807, "q": [-0.33166030049324036, -0.028228655457496643, 0.019364681094884872, 0.6132258772850037, -0.32048937678337097, 0.01937244087457657, -0.3876335322856903, -0.011385546065866947, 0.010164448991417885, 0.6254806518554688, -0.2983604073524475, 0.007955548353493214, 0.003696163184940815, 0.10405480861663818, -0.049768466502428055, -0.4961588978767395, 0.5309610962867737, -0.8077127933502197, -0.682837188243866, -0.8325201869010925, -0.7043848037719727, 0.12958543002605438, 0.17318403720855713, -0.15647803246974945, 0.030607711523771286, 1.2129952907562256, -0.17514945566654205, 0.07679491490125656, 0.030895331874489784]} +{"t": 13.0976, "q": [-0.33166882395744324, -0.028228655457496643, 0.01932450570166111, 0.6132173538208008, -0.32049351930618286, 0.019365165382623672, -0.3876335322856903, -0.011291802860796452, 0.010137665085494518, 0.6254806518554688, -0.2983725965023041, 0.00791945494711399, 0.003669379511848092, 0.1037442535161972, -0.04954967647790909, -0.49639859795570374, 0.5249809622764587, -0.8052200675010681, -0.6830768585205078, -0.832496166229248, -0.7056072354316711, 0.12841098010540009, 0.17316007614135742, -0.1564900130033493, 0.03063168004155159, 1.2130192518234253, -0.17510151863098145, 0.07680690288543701, 0.030895331874489784]} +{"t": 13.1143, "q": [-0.3316517770290375, -0.028228655457496643, 0.01933789812028408, 0.6131662130355835, -0.32048529386520386, 0.01935071498155594, -0.3876335322856903, -0.011172492988407612, 0.010151056572794914, 0.6254465579986572, -0.2983725965023041, 0.00791945494711399, 0.003696163184940815, 0.10343381017446518, -0.049350567162036896, -0.4967341423034668, 0.5183297395706177, -0.8031108975410461, -0.6831247806549072, -0.8325081467628479, -0.7071412205696106, 0.1275840550661087, 0.17312411963939667, -0.1565139889717102, 0.030607711523771286, 1.2130073308944702, -0.1751134991645813, 0.07680690288543701, 0.030919300392270088]} +{"t": 13.1313, "q": [-0.3316347301006317, -0.028254222124814987, 0.01933789812028408, 0.6131917834281921, -0.32049354910850525, 0.01935066655278206, -0.3875824213027954, -0.01110431645065546, 0.010137665085494518, 0.6254721283912659, -0.2983848452568054, 0.007897840812802315, 0.0036292036529630423, 0.10320669412612915, -0.049210160970687866, -0.4974532127380371, 0.5117384195327759, -0.8007859587669373, -0.6830768585205078, -0.8325201869010925, -0.7086751461029053, 0.12717659771442413, 0.17312411963939667, -0.15652596950531006, 0.030655648559331894, 1.2130073308944702, -0.17512547969818115, 0.07678293436765671, 0.030919300392270088]} +{"t": 13.148, "q": [-0.33160915970802307, -0.028245700523257256, 0.019378073513507843, 0.6131747364997864, -0.32049766182899475, 0.019357891753315926, -0.3875824213027954, -0.011078749783337116, 0.01017784047871828, 0.625463604927063, -0.2983682155609131, 0.007883221842348576, 0.0034283252898603678, 0.10306265950202942, -0.04908909648656845, -0.49801647663116455, 0.5062376260757446, -0.7983531355857849, -0.6829210519790649, -0.8325441479682922, -0.7106166481971741, 0.12680508196353912, 0.17302824556827545, -0.15652596950531006, 0.030655648559331894, 1.2129952907562256, -0.17514945566654205, 0.07681888341903687, 0.03093128465116024]} +{"t": 13.1648, "q": [-0.33156654238700867, -0.028254222124814987, 0.019404856488108635, 0.6131662130355835, -0.32049354910850525, 0.01935066655278206, -0.3875909447669983, -0.011095793917775154, 0.010204624384641647, 0.6254891753196716, -0.29836392402648926, 0.00786145031452179, 0.0031872710678726435, 0.1030399352312088, -0.04907308891415596, -0.4981842339038849, 0.5031936764717102, -0.7965674996376038, -0.6827772855758667, -0.8323763608932495, -0.7126778960227966, 0.12627777457237244, 0.17295633256435394, -0.15650199353694916, 0.030643664300441742, 1.2129713296890259, -0.17514945566654205, 0.07678293436765671, 0.03093128465116024]} +{"t": 13.1815, "q": [-0.3314983546733856, -0.028237178921699524, 0.01949859969317913, 0.6131406426429749, -0.32049766182899475, 0.019357891753315926, -0.3875824213027954, -0.011087272316217422, 0.010311760008335114, 0.6255062222480774, -0.29835984110832214, 0.007868655025959015, 0.0029194331727921963, 0.1030399352312088, -0.04907308891415596, -0.5000298023223877, 0.5004252791404724, -0.7933317422866821, -0.6827173233032227, -0.8323163986206055, -0.714739203453064, 0.12557071447372437, 0.1729922890663147, -0.15652596950531006, 0.03063168004155159, 1.2129594087600708, -0.17510151863098145, 0.07678293436765671, 0.030943268910050392]} +{"t": 13.1983, "q": [-0.3312682807445526, -0.028254222124814987, 0.019712870940566063, 0.6130724549293518, -0.32049766182899475, 0.019357891753315926, -0.3875824213027954, -0.011070228181779385, 0.010499246418476105, 0.6256170272827148, -0.298380583524704, 0.007876069284975529, 0.002611419651657343, 0.10306254029273987, -0.04906941577792168, -0.5014679431915283, 0.49762097001075745, -0.7893649935722351, -0.6827053427696228, -0.8322205543518066, -0.7165607810020447, 0.12504340708255768, 0.172968327999115, -0.15645405650138855, 0.03063168004155159, 1.2129594087600708, -0.17512547969818115, 0.07677094638347626, 0.030943268910050392]} +{"t": 13.215, "q": [-0.33102113008499146, -0.028254222124814987, 0.01980661414563656, 0.6130127906799316, -0.32049354910850525, 0.01935066655278206, -0.38757389783859253, -0.01104466151446104, 0.010633165016770363, 0.6257533431053162, -0.2983722984790802, 0.00787601713091135, 0.002464108867570758, 0.10307756811380386, -0.049060408025979996, -0.5018754005432129, 0.49552375078201294, -0.7871958017349243, -0.6826454401016235, -0.8322804570198059, -0.717962920665741, 0.12480372190475464, 0.172968327999115, -0.15652596950531006, 0.03063168004155159, 1.2129833698272705, -0.1751614362001419, 0.07677094638347626, 0.030955253168940544]} +{"t": 13.2317, "q": [-0.3309614658355713, -0.028237178921699524, 0.019779829308390617, 0.6130127906799316, -0.32049769163131714, 0.01934337243437767, -0.38752275705337524, -0.011002050712704659, 0.010633165016770363, 0.6258215308189392, -0.2983846664428711, 0.007868864573538303, 0.0025176764465868473, 0.10308508574962616, -0.049055904150009155, -0.5015877485275269, 0.4915210008621216, -0.7853263020515442, -0.6825016140937805, -0.8321606516838074, -0.7190415263175964, 0.12455205619335175, 0.17302824556827545, -0.1564900130033493, 0.030619695782661438, 1.2129594087600708, -0.1751614362001419, 0.07677094638347626, 0.030967237427830696]} +{"t": 13.2487, "q": [-0.33098703622817993, -0.028228655457496643, 0.019726261496543884, 0.6130468845367432, -0.32049354910850525, 0.01935066655278206, -0.38755685091018677, -0.010950918309390545, 0.010566205717623234, 0.6259664297103882, -0.29839685559272766, 0.007832770235836506, 0.0025712440256029367, 0.1030849739909172, -0.04903623089194298, -0.5012162327766418, 0.4871228039264679, -0.7830133438110352, -0.6822260022163391, -0.8319808840751648, -0.7199044227600098, 0.12440824508666992, 0.1730642020702362, -0.15640611946582794, 0.030643664300441742, 1.2129833698272705, -0.17512547969818115, 0.07677094638347626, 0.030979221686720848]} +{"t": 13.2654, "q": [-0.3310126066207886, -0.028177523985505104, 0.019686086103320122, 0.6130724549293518, -0.32048946619033813, 0.019328922033309937, -0.38755685091018677, -0.010831608437001705, 0.0105126379057765, 0.6260005235671997, -0.2983884811401367, 0.007818203419446945, 0.0025980276986956596, 0.10304709523916245, -0.0490095429122448, -0.5009645819664001, 0.4846061170101166, -0.7799813151359558, -0.6817226409912109, -0.8318849802017212, -0.7205755114555359, 0.12437228858470917, 0.1730642020702362, -0.1564420759677887, 0.03063168004155159, 1.2129833698272705, -0.17514945566654205, 0.07677094638347626, 0.030979221686720848]} +{"t": 13.2822, "q": [-0.33097851276397705, -0.028117869049310684, 0.01963251829147339, 0.6130809783935547, -0.32048943638801575, 0.019343441352248192, -0.3875312805175781, -0.010703776963055134, 0.010485853999853134, 0.6260005235671997, -0.2983923852443695, 0.007782022003084421, 0.002758730435743928, 0.10306212306022644, -0.049000538885593414, -0.5012401938438416, 0.4839709401130676, -0.776386022567749, -0.6807998418807983, -0.8319209218025208, -0.7210668921470642, 0.12438427656888962, 0.17319601774215698, -0.1564660519361496, 0.030655648559331894, 1.2129952907562256, -0.17514945566654205, 0.07679491490125656, 0.030967237427830696]} +{"t": 13.2989, "q": [-0.3309103548526764, -0.02815195731818676, 0.019605735316872597, 0.6130724549293518, -0.32048946619033813, 0.019328922033309937, -0.38751423358917236, -0.010703776963055134, 0.010459070093929768, 0.6260005235671997, -0.29841282963752747, 0.0077459984458982944, 0.0029060414526611567, 0.10306224226951599, -0.04902021959424019, -0.501431941986084, 0.484654039144516, -0.7710051536560059, -0.6805481910705566, -0.8319808840751648, -0.7213305234909058, 0.12437228858470917, 0.17317205667495728, -0.15647803246974945, 0.030655648559331894, 1.2129833698272705, -0.1751614362001419, 0.07677094638347626, 0.030967237427830696]} +{"t": 13.3156, "q": [-0.33088478446006775, -0.02816047891974449, 0.019619127735495567, 0.613055408000946, -0.32048943638801575, 0.019343441352248192, -0.3874971866607666, -0.010729343630373478, 0.010472462512552738, 0.6260175704956055, -0.298429399728775, 0.007746138144284487, 0.003133703488856554, 0.10308484733104706, -0.049016546458005905, -0.5017076134681702, 0.48558881878852844, -0.7667147517204285, -0.6799250245094299, -0.8324362635612488, -0.720935046672821, 0.12439625710248947, 0.17320801317691803, -0.15645405650138855, 0.03069160133600235, 1.2129833698272705, -0.17512547969818115, 0.07678293436765671, 0.030967237427830696]} +{"t": 13.3324, "q": [-0.33088478446006775, -0.028177523985505104, 0.01963251829147339, 0.6130298376083374, -0.32049357891082764, 0.019336147233843803, -0.3874886631965637, -0.01073786523193121, 0.010472462512552738, 0.6259664297103882, -0.29843348264694214, 0.007738915272057056, 0.0030533522367477417, 0.10310745239257812, -0.04901287704706192, -0.5018394589424133, 0.48693105578422546, -0.7635030150413513, -0.6788583993911743, -0.8326639533042908, -0.7200122475624084, 0.12443221360445023, 0.17313610017299652, -0.156418114900589, 0.030679617077112198, 1.2129952907562256, -0.1751853972673416, 0.07679491490125656, 0.030979221686720848]} +{"t": 13.3492, "q": [-0.330867737531662, -0.028186045587062836, 0.019699478521943092, 0.6129446029663086, -0.32049769163131714, 0.01934337243437767, -0.3874886631965637, -0.010763431899249554, 0.010552814230322838, 0.6259238123893738, -0.29843756556510925, 0.007731710560619831, 0.0030533522367477417, 0.10311497002840042, -0.04900837317109108, -0.5019712448120117, 0.4879017770290375, -0.7625442743301392, -0.6790981292724609, -0.8327957987785339, -0.7181546688079834, 0.1255347579717636, 0.1730881631374359, -0.15647803246974945, 0.030655648559331894, 1.2129952907562256, -0.1751614362001419, 0.07679491490125656, 0.030967237427830696]} +{"t": 13.366, "q": [-0.3308251202106476, -0.02822013385593891, 0.019726261496543884, 0.6129360795021057, -0.32050180435180664, 0.019336098805069923, -0.38747161626815796, -0.010780476033687592, 0.01065994892269373, 0.6259579062461853, -0.29843777418136597, 0.0077607049606740475, 0.0029060414526611567, 0.10309982299804688, -0.048997703939676285, -0.5014679431915283, 0.48715874552726746, -0.7626881003379822, -0.6796134114265442, -0.8325081467628479, -0.7168723940849304, 0.12679310142993927, 0.17307618260383606, -0.15647803246974945, 0.03063168004155159, 1.2129952907562256, -0.1751853972673416, 0.07680690288543701, 0.030967237427830696]} +{"t": 13.3827, "q": [-0.3308165967464447, -0.02822013385593891, 0.019766438752412796, 0.6129531264305115, -0.32049769163131714, 0.01934337243437767, -0.38747161626815796, -0.01079752016812563, 0.010686732828617096, 0.625983476638794, -0.2984376549720764, 0.007746189832687378, 0.0028256899677217007, 0.10309982299804688, -0.048997703939676285, -0.5010125041007996, 0.4871707260608673, -0.7664391398429871, -0.684179425239563, -0.8306386470794678, -0.7147152423858643, 0.12675714492797852, 0.17302824556827545, -0.1564420759677887, 0.030655648559331894, 1.2129833698272705, -0.17510151863098145, 0.07678293436765671, 0.030979221686720848]} +{"t": 13.3997, "q": [-0.3305353820323944, -0.028237178921699524, 0.019712870940566063, 0.6130213141441345, -0.32049769163131714, 0.01934337243437767, -0.3871392607688904, -0.010823086835443974, 0.01065994892269373, 0.6259664297103882, -0.29845014214515686, 0.007753552403301001, 0.003321190131828189, 0.10310739278793335, -0.04900303855538368, -0.500832736492157, 0.48711082339286804, -0.7682967185974121, -0.6897760629653931, -0.8284814953804016, -0.7142358422279358, 0.12674516439437866, 0.17314808070659637, -0.1563941389322281, 0.030655648559331894, 1.21303129196167, -0.17510151863098145, 0.07678293436765671, 0.030967237427830696]} +{"t": 13.4164, "q": [-0.3301604092121124, -0.028237178921699524, 0.019538775086402893, 0.6131917834281921, -0.32049354910850525, 0.01935066655278206, -0.3865768015384674, -0.010882741771638393, 0.010472462512552738, 0.6259920001029968, -0.29843348264694214, 0.007738915272057056, 0.0036425956059247255, 0.10306219011545181, -0.04901038110256195, -0.5006649494171143, 0.4873145520687103, -0.7684644460678101, -0.6947374939918518, -0.825928807258606, -0.7136366367340088, 0.12675714492797852, 0.17321999371051788, -0.15643009543418884, 0.030643664300441742, 1.213103175163269, -0.175137460231781, 0.07680690288543701, 0.030967237427830696]} +{"t": 13.4332, "q": [-0.3294019401073456, -0.02821161225438118, 0.019552167505025864, 0.6132940649986267, -0.32049354910850525, 0.01935066655278206, -0.38597172498703003, -0.010908307507634163, 0.010499246418476105, 0.6259664297103882, -0.29843786358833313, 0.007775184232741594, 0.0038970415480434895, 0.10305467247962952, -0.04901488497853279, -0.5019712448120117, 0.4878418445587158, -0.7682967185974121, -0.70009446144104, -0.8223575353622437, -0.7132771015167236, 0.12672120332717896, 0.1732439547777176, -0.156418114900589, 0.030655648559331894, 1.213103175163269, -0.17517341673374176, 0.07680690288543701, 0.030967237427830696]} +{"t": 13.4501, "q": [-0.3287457227706909, -0.0282030887901783, 0.019578952342271805, 0.6134389042854309, -0.32049354910850525, 0.01935066655278206, -0.3854007422924042, -0.010967962443828583, 0.010673340409994125, 0.6259238123893738, -0.2984546720981598, 0.007818762212991714, 0.003937217406928539, 0.10306242853403091, -0.0490497387945652, -0.5041763782501221, 0.48821336030960083, -0.7682487368583679, -0.707045316696167, -0.8195172548294067, -0.7124022841453552, 0.1267092078924179, 0.17313610017299652, -0.15645405650138855, 0.030643664300441742, 1.2131271362304688, -0.17514945566654205, 0.07683087140321732, 0.030967237427830696]} +{"t": 13.4668, "q": [-0.32806396484375, -0.02814343571662903, 0.01964591071009636, 0.6135667562484741, -0.32049769163131714, 0.01934337243437767, -0.38490647077560425, -0.011129883117973804, 0.010834043845534325, 0.6259920001029968, -0.29850906133651733, 0.00791336689144373, 0.0038970415480434895, 0.10304750502109528, -0.04907842352986336, -0.506129801273346, 0.4882732927799225, -0.7664271593093872, -0.7125580906867981, -0.8164733052253723, -0.7123423218727112, 0.1267092078924179, 0.172968327999115, -0.15645405650138855, 0.030655648559331894, 1.2130552530288696, -0.175137460231781, 0.07683087140321732, 0.03093128465116024]} +{"t": 13.4836, "q": [-0.3277912437915802, -0.028134912252426147, 0.01964591071009636, 0.6138224005699158, -0.32050591707229614, 0.01934332400560379, -0.38458263874053955, -0.011206582188606262, 0.010874219238758087, 0.6259664297103882, -0.29852578043937683, 0.007942465133965015, 0.0037899063900113106, 0.1030552014708519, -0.04910343885421753, -0.5080233216285706, 0.4886208176612854, -0.7644737362861633, -0.718022882938385, -0.8137888312339783, -0.7122584581375122, 0.12662532925605774, 0.172968327999115, -0.15640611946582794, 0.030607711523771286, 1.21303129196167, -0.175137460231781, 0.07683087140321732, 0.030967237427830696]} +{"t": 13.5003, "q": [-0.32791054248809814, -0.028109345585107803, 0.019739653915166855, 0.614112138748169, -0.32050591707229614, 0.019357841461896896, -0.38463374972343445, -0.011274758726358414, 0.011128664948046207, 0.6259579062461853, -0.29850107431411743, 0.007956735789775848, 0.0036158119328320026, 0.1030401736497879, -0.04911244660615921, -0.5098209381103516, 0.488944411277771, -0.7640902400016785, -0.7234397530555725, -0.8120511174201965, -0.7115034461021423, 0.1266612708568573, 0.17292039096355438, -0.156418114900589, 0.030667632818222046, 1.2130552530288696, -0.175137460231781, 0.07683087140321732, 0.030955253168940544]} +{"t": 13.5171, "q": [-0.32799577713012695, -0.02809230238199234, 0.019886964932084084, 0.6142144203186035, -0.32049354910850525, 0.01935066655278206, -0.3847956657409668, -0.011334413662552834, 0.011463462375104427, 0.6259749531745911, -0.2983657121658325, 0.008136646822094917, 0.0031470954418182373, 0.1030401736497879, -0.04911244660615921, -0.511582612991333, 0.48923203349113464, -0.7640542984008789, -0.7281375527381897, -0.8107927441596985, -0.7105926275253296, 0.12662532925605774, 0.17295633256435394, -0.15647803246974945, 0.030655648559331894, 1.21303129196167, -0.17510151863098145, 0.07680690288543701, 0.030979221686720848]} +{"t": 13.5338, "q": [-0.3279702067375183, -0.028041169047355652, 0.02016819454729557, 0.6143081784248352, -0.32048937678337097, 0.01937244087457657, -0.3848894238471985, -0.011385546065866947, 0.011905395425856113, 0.6259579062461853, -0.29821357131004333, 0.008345345966517925, 0.002731946762651205, 0.1030401736497879, -0.04911244660615921, -0.5131165981292725, 0.490286648273468, -0.7659717798233032, -0.7310976386070251, -0.8096182942390442, -0.7085193991661072, 0.12660135328769684, 0.17311213910579681, -0.1564420759677887, 0.030655648559331894, 1.2130433320999146, -0.175137460231781, 0.07680690288543701, 0.030967237427830696]} +{"t": 13.5507, "q": [-0.3280554413795471, -0.028066735714673996, 0.020462816581130028, 0.6144359707832336, -0.32049763202667236, 0.01937240920960903, -0.38518768548965454, -0.0115559883415699, 0.012427679263055325, 0.6260175704956055, -0.2982226312160492, 0.008461288176476955, 0.0023703654296696186, 0.1030476838350296, -0.04910794273018837, -0.513068675994873, 0.49125736951828003, -0.7696029543876648, -0.7332308292388916, -0.8077847361564636, -0.7057390213012695, 0.1266133338212967, 0.17327991127967834, -0.1563941389322281, 0.030643664300441742, 1.2130552530288696, -0.1751134991645813, 0.07679491490125656, 0.030967237427830696]} +{"t": 13.5674, "q": [-0.3281235992908478, -0.028015602380037308, 0.020556559786200523, 0.6145893931388855, -0.32050585746765137, 0.019386859610676765, -0.38536664843559265, -0.011683819815516472, 0.012749084271490574, 0.6260601878166199, -0.298440158367157, 0.00878174975514412, 0.0022498385515064, 0.1030627191066742, -0.04909893497824669, -0.5128409266471863, 0.49155697226524353, -0.7728267312049866, -0.7344892024993896, -0.803350567817688, -0.7026830911636353, 0.1266373097896576, 0.17341174185276031, -0.15643009543418884, 0.030643664300441742, 1.2130433320999146, -0.175137460231781, 0.07680690288543701, 0.030967237427830696]} +{"t": 13.5842, "q": [-0.3283025622367859, -0.027998559176921844, 0.02048959955573082, 0.6146746277809143, -0.320505827665329, 0.01940135844051838, -0.3855370879173279, -0.011751997284591198, 0.012923179194331169, 0.6260346174240112, -0.2999403178691864, 0.011133410036563873, 0.0019552167505025864, 0.10306277871131897, -0.04910877346992493, -0.5135719776153564, 0.49204832315444946, -0.7772968411445618, -0.736406683921814, -0.7981254458427429, -0.6996031403541565, 0.1266373097896576, 0.1735915094614029, -0.156418114900589, 0.03063168004155159, 1.2130433320999146, -0.1750895380973816, 0.07678293436765671, 0.030991205945611]} +{"t": 13.6009, "q": [-0.3282855153083801, -0.02796447090804577, 0.020449424162507057, 0.614768385887146, -0.32050997018814087, 0.019394084811210632, -0.385528564453125, -0.011811652220785618, 0.013124058023095131, 0.6259920001029968, -0.30081960558891296, 0.011488438583910465, 0.0018212978029623628, 0.10304774343967438, -0.04911778122186661, -0.5153816342353821, 0.49257561564445496, -0.7832889556884766, -0.7386476993560791, -0.7932718396186829, -0.6978174448013306, 0.12660135328769684, 0.1735915094614029, -0.15638215839862823, 0.030607711523771286, 1.2130433320999146, -0.17507754266262054, 0.07677094638347626, 0.030979221686720848]} +{"t": 13.6177, "q": [-0.32825997471809387, -0.027955947443842888, 0.020422641187906265, 0.6150069832801819, -0.320505827665329, 0.01940135844051838, -0.38550302386283875, -0.011862784624099731, 0.013338328339159489, 0.6260431408882141, -0.30081579089164734, 0.011539081111550331, 0.0016605950659140944, 0.10305526107549667, -0.04911327734589577, -0.516735851764679, 0.4927673637866974, -0.7893529534339905, -0.7421111464500427, -0.7916778922080994, -0.69598388671875, 0.12656539678573608, 0.17360348999500275, -0.15640611946582794, 0.03063168004155159, 1.21303129196167, -0.17510151863098145, 0.07679491490125656, 0.030967237427830696]} +{"t": 13.6345, "q": [-0.3282855153083801, -0.02796447090804577, 0.02035568095743656, 0.6152370572090149, -0.3205099403858185, 0.019408583641052246, -0.3855370879173279, -0.011905395425856113, 0.013499030843377113, 0.626051664352417, -0.300811767578125, 0.011560782790184021, 0.0015802436973899603, 0.10307798534631729, -0.04912928491830826, -0.5171912312507629, 0.49267148971557617, -0.7938710451126099, -0.745227038860321, -0.7902757525444031, -0.6945337653160095, 0.12655341625213623, 0.17355555295944214, -0.15640611946582794, 0.03063168004155159, 1.2130552530288696, -0.17510151863098145, 0.07680690288543701, 0.030991205945611]} +{"t": 13.6514, "q": [-0.3283877968788147, -0.027998559176921844, 0.02032889798283577, 0.6154927611351013, -0.3205140233039856, 0.019430309534072876, -0.3855200707912445, -0.01193948369473219, 0.013539206236600876, 0.6260090470314026, -0.3008199632167816, 0.011546355672180653, 0.0016873788554221392, 0.10306289792060852, -0.0491284541785717, -0.5182937979698181, 0.49280333518981934, -0.7987725734710693, -0.7475280165672302, -0.7877470850944519, -0.6933473348617554, 0.12658937275409698, 0.1735915094614029, -0.156418114900589, 0.030619695782661438, 1.2130552530288696, -0.175137460231781, 0.07683087140321732, 0.030979221686720848]} +{"t": 13.6681, "q": [-0.32849857211112976, -0.027947425842285156, 0.02032889798283577, 0.6157143115997314, -0.3205099105834961, 0.019437583163380623, -0.385485976934433, -0.011948006227612495, 0.01352581474930048, 0.6260005235671997, -0.3008158504962921, 0.011553578078746796, 0.0018079059664160013, 0.10306289792060852, -0.0491284541785717, -0.5204150080680847, 0.4933665990829468, -0.8039258122444153, -0.749409556388855, -0.7826777696609497, -0.6918613314628601, 0.12658937275409698, 0.1735915094614029, -0.15635818243026733, 0.030607711523771286, 1.2130792140960693, -0.175137460231781, 0.07678293436765671, 0.030979221686720848]} +{"t": 13.6849, "q": [-0.3285582363605499, -0.027947425842285156, 0.0203155055642128, 0.6159443855285645, -0.3205099105834961, 0.019437583163380623, -0.38545188307762146, -0.012024705298244953, 0.013539206236600876, 0.6260175704956055, -0.30081605911254883, 0.01158253662288189, 0.0018212978029623628, 0.10306289792060852, -0.0491284541785717, -0.5229076743125916, 0.49392983317375183, -0.8092347979545593, -0.7522498369216919, -0.7776683568954468, -0.6893206238746643, 0.12656539678573608, 0.17353157699108124, -0.1563941389322281, 0.03063168004155159, 1.2130792140960693, -0.17510151863098145, 0.07679491490125656, 0.030967237427830696]} +{"t": 13.7017, "q": [-0.32859233021736145, -0.027921859174966812, 0.0203155055642128, 0.6160978078842163, -0.3205057382583618, 0.019473876804113388, -0.38545188307762146, -0.012118448503315449, 0.013592774048447609, 0.6260260939598083, -0.30082422494888306, 0.011568127200007439, 0.0017811221769079566, 0.10307041555643082, -0.04912395030260086, -0.5248731374740601, 0.4939658045768738, -0.8131896257400513, -0.7552219033241272, -0.7734259366989136, -0.6860129833221436, 0.12654143571853638, 0.17342372238636017, -0.15638215839862823, 0.030643664300441742, 1.2130672931671143, -0.17514945566654205, 0.07679491490125656, 0.030967237427830696]} +{"t": 13.7184, "q": [-0.3286519944667816, -0.027947425842285156, 0.0203155055642128, 0.6162512302398682, -0.3205057382583618, 0.019473876804113388, -0.38546040654182434, -0.012178102508187294, 0.013606165535748005, 0.6260346174240112, -0.30082422494888306, 0.011568127200007439, 0.0017811221769079566, 0.10308555513620377, -0.049134619534015656, -0.5265988707542419, 0.4937620759010315, -0.8161377310752869, -0.7569835782051086, -0.7716163396835327, -0.683436393737793, 0.12651745975017548, 0.17345967888832092, -0.15640611946582794, 0.030607711523771286, 1.2130672931671143, -0.17510151863098145, 0.07680690288543701, 0.030967237427830696]} +{"t": 13.7352, "q": [-0.32891616225242615, -0.027887770906090736, 0.02030211314558983, 0.616421639919281, -0.3205098509788513, 0.019466601312160492, -0.3854774534702301, -0.012195147573947906, 0.013565990142524242, 0.6260005235671997, -0.30079540610313416, 0.011589602567255497, 0.0017811221769079566, 0.10307798534631729, -0.04912928491830826, -0.5286121964454651, 0.49386993050575256, -0.8194094300270081, -0.7586254477500916, -0.7705497145652771, -0.6803324818611145, 0.12656539678573608, 0.17345967888832092, -0.15633422136306763, 0.030643664300441742, 1.2130672931671143, -0.17510151863098145, 0.07680690288543701, 0.030967237427830696]} +{"t": 13.7522, "q": [-0.3290866017341614, -0.027870727702975273, 0.020275330170989037, 0.6165835857391357, -0.3205139636993408, 0.01947382651269436, -0.38550302386283875, -0.0121866250410676, 0.013499030843377113, 0.6259920001029968, -0.30059877038002014, 0.011892100796103477, 0.0018079059664160013, 0.10308544337749481, -0.04911494627594948, -0.5312846899032593, 0.4941815137863159, -0.8232923150062561, -0.7602912187576294, -0.7693752646446228, -0.6775401830673218, 0.12652945518493652, 0.17348363995552063, -0.156418114900589, 0.03063168004155159, 1.2130792140960693, -0.1751134991645813, 0.07680690288543701, 0.030967237427830696]} +{"t": 13.7689, "q": [-0.32923147082328796, -0.027879249304533005, 0.020261937752366066, 0.6166773438453674, -0.3205180764198303, 0.019481051713228226, -0.3855115473270416, -0.0121866250410676, 0.013499030843377113, 0.6259749531745911, -0.3005863130092621, 0.011884738691151142, 0.001834689755924046, 0.10309301316738129, -0.049120280891656876, -0.5339691638946533, 0.4944092035293579, -0.8273789286613464, -0.7618971467018127, -0.7674697637557983, -0.6765094995498657, 0.12652945518493652, 0.17347165942192078, -0.1563941389322281, 0.030607711523771286, 1.2130672931671143, -0.17512547969818115, 0.07680690288543701, 0.030967237427830696]} +{"t": 13.7857, "q": [-0.3292485177516937, -0.02790481597185135, 0.020275330170989037, 0.6167625188827515, -0.32051801681518555, 0.019510069862008095, -0.385485976934433, -0.012212191708385944, 0.013499030843377113, 0.6259749531745911, -0.30050376057624817, 0.011912998743355274, 0.0018748653819784522, 0.10307034850120544, -0.049114108085632324, -0.5363300442695618, 0.49444517493247986, -0.8305786848068237, -0.7630955576896667, -0.76435387134552, -0.675742506980896, 0.12651745975017548, 0.17345967888832092, -0.1564660519361496, 0.030619695782661438, 1.2130552530288696, -0.17512547969818115, 0.07681888341903687, 0.030979221686720848]} +{"t": 13.8025, "q": [-0.3292485177516937, -0.027896294370293617, 0.020288722589612007, 0.616796612739563, -0.32051801681518555, 0.019510069862008095, -0.3854689300060272, -0.012237757444381714, 0.013499030843377113, 0.625983476638794, -0.2995031774044037, 0.011991464532911777, 0.0018480815924704075, 0.10307792574167252, -0.04911945015192032, -0.5378760099411011, 0.4944092035293579, -0.8321606516838074, -0.7640542984008789, -0.7605189085006714, -0.6753110885620117, 0.12651745975017548, 0.17347165942192078, -0.15637017786502838, 0.030595727264881134, 1.21303129196167, -0.17512547969818115, 0.07680690288543701, 0.030979221686720848]} +{"t": 13.8194, "q": [-0.3292485177516937, -0.027896294370293617, 0.020275330170989037, 0.616796612739563, -0.32053041458129883, 0.019502727314829826, -0.3854689300060272, -0.01224627997726202, 0.013539206236600876, 0.625983476638794, -0.2971847951412201, 0.010146884247660637, 0.0017141626449301839, 0.10307792574167252, -0.04911945015192032, -0.5385351181030273, 0.4944811165332794, -0.8327598571777344, -0.7646654844284058, -0.7562046051025391, -0.6751672625541687, 0.12650547921657562, 0.17354357242584229, -0.15637017786502838, 0.03039199486374855, 1.2129713296890259, -0.17510151863098145, 0.07677094638347626, 0.030967237427830696]} +{"t": 13.8362, "q": [-0.32923147082328796, -0.027930382639169693, 0.020288722589612007, 0.616864800453186, -0.3205055892467499, 0.019546395167708397, -0.385485976934433, -0.01224627997726202, 0.013699909672141075, 0.6259920001029968, -0.2971218526363373, 0.010066693648695946, 0.0015534599078819156, 0.10309301316738129, -0.049120280891656876, -0.5392541885375977, 0.49474477767944336, -0.8335028886795044, -0.7651448249816895, -0.75389164686203, -0.6750474572181702, 0.12652945518493652, 0.17413079738616943, -0.156418114900589, 0.03027215227484703, 1.2122882604599, -0.17500564455986023, 0.07663912326097488, 0.030955253168940544]} +{"t": 13.8529, "q": [-0.32919740676879883, -0.02796447090804577, 0.02034229040145874, 0.6169329881668091, -0.3205179274082184, 0.019582588225603104, -0.38549450039863586, -0.012229235842823982, 0.013994530774652958, 0.6259920001029968, -0.2970719039440155, 0.010066265240311623, 0.0012454462703317404, 0.10307780653238297, -0.049099765717983246, -0.5399252772331238, 0.4949125349521637, -0.8341140747070312, -0.7651687860488892, -0.7526572942733765, -0.6749755144119263, 0.12651745975017548, 0.17422667145729065, -0.15633422136306763, 0.030296120792627335, 1.2119407653808594, -0.17502960562705994, 0.07662713527679443, 0.030943268910050392]} +{"t": 13.8697, "q": [-0.3291547894477844, -0.027930382639169693, 0.0203155055642128, 0.616941511631012, -0.3205302655696869, 0.019604261964559555, -0.385485976934433, -0.012220713309943676, 0.014208801090717316, 0.6259920001029968, -0.2970389127731323, 0.010109434835612774, 0.0007633380591869354, 0.1031004786491394, -0.0491059385240078, -0.5406323671340942, 0.49511629343032837, -0.8346653580665588, -0.7650849223136902, -0.7519981265068054, -0.6747598052024841, 0.12650547921657562, 0.1744903177022934, -0.15634620189666748, 0.03045191615819931, 1.2123003005981445, -0.17502960562705994, 0.07662713527679443, 0.030955253168940544]} +{"t": 13.8865, "q": [-0.3292059302330017, -0.027921859174966812, 0.0203155055642128, 0.6169670820236206, -0.3205508291721344, 0.01962590590119362, -0.38550302386283875, -0.012237757444381714, 0.014342720620334148, 0.6259579062461853, -0.2970432937145233, 0.010145668871700764, 0.00046871634549461305, 0.10309283435344696, -0.04909076169133186, -0.541543185710907, 0.49534398317337036, -0.8351327180862427, -0.7650370001792908, -0.7514469027519226, -0.6745920181274414, 0.12650547921657562, 0.17552095651626587, -0.15635818243026733, 0.030535805970430374, 1.212935447692871, -0.17504160106182098, 0.0767110288143158, 0.030979221686720848]} +{"t": 13.9033, "q": [-0.3292655646800995, -0.027947425842285156, 0.02034229040145874, 0.6169074177742004, -0.3205467164516449, 0.01961866207420826, -0.385485976934433, -0.012237757444381714, 0.014356112107634544, 0.6258044838905334, -0.2969690263271332, 0.010246416553854942, 0.00037497308221645653, 0.10306265950202942, -0.04908909648656845, -0.542286217212677, 0.49557167291641235, -0.8355042338371277, -0.7650010585784912, -0.75052410364151, -0.6743882894515991, 0.12650547921657562, 0.17589247226715088, -0.156418114900589, 0.030667632818222046, 1.2134747505187988, -0.175137460231781, 0.07687880843877792, 0.031063111498951912]} +{"t": 13.9203, "q": [-0.32928261160850525, -0.027955947443842888, 0.02035568095743656, 0.6168988943099976, -0.3205508291721344, 0.01962590590119362, -0.3853922188282013, -0.012220713309943676, 0.014235584996640682, 0.6258044838905334, -0.296944260597229, 0.010275179520249367, 0.0006160272168926895, 0.10292649269104004, -0.04902256280183792, -0.5431011319160461, 0.49629074335098267, -0.8361393809318542, -0.7649650573730469, -0.7496971487998962, -0.6741366386413574, 0.12650547921657562, 0.1757846176624298, -0.15956996381282806, 0.03057175874710083, 1.2134027481079102, -0.17510151863098145, 0.07690277695655823, 0.03166232258081436]} +{"t": 13.9371, "q": [-0.32923147082328796, -0.027947425842285156, 0.02034229040145874, 0.6169159412384033, -0.3205467164516449, 0.019633181393146515, -0.385111004114151, -0.0121866250410676, 0.013753476552665234, 0.6257533431053162, -0.296956866979599, 0.01029700506478548, 0.0006562029011547565, 0.10224566608667374, -0.04868989810347557, -0.5439999103546143, 0.4978127181529999, -0.8372179865837097, -0.7651208639144897, -0.7489302158355713, -0.673944890499115, 0.12649349868297577, 0.17565278708934784, -0.16353674232959747, 0.030164295807480812, 1.2125998735427856, -0.17510151863098145, 0.07689078897237778, 0.03165033832192421]} +{"t": 13.9538, "q": [-0.32918888330459595, -0.02796447090804577, 0.020248545333743095, 0.6169074177742004, -0.3205384612083435, 0.01961871236562729, -0.38492351770401, -0.012041749432682991, 0.013324935920536518, 0.6256937384605408, -0.2969690263271332, 0.010246416553854942, 0.0006428110064007342, 0.10089247673749924, -0.04824778810143471, -0.5452223420143127, 0.5005571246147156, -0.8394110798835754, -0.7655043601989746, -0.7477677464485168, -0.6737651228904724, 0.12650547921657562, 0.17567676305770874, -0.1693251132965088, 0.029924610629677773, 1.2120485305786133, -0.17519739270210266, 0.07687880843877792, 0.03199788182973862]} +{"t": 13.9706, "q": [-0.32918035984039307, -0.0279729925096035, 0.02019497938454151, 0.6168988943099976, -0.3205343782901764, 0.019596988335251808, -0.38490647077560425, -0.011717909015715122, 0.013124058023095131, 0.6256255507469177, -0.29693105816841125, 0.010166441090404987, 0.0007633380591869354, 0.09933599829673767, -0.047938551753759384, -0.5466963648796082, 0.503145694732666, -0.8420596122741699, -0.7657560110092163, -0.7459580898284912, -0.6734415292739868, 0.12652945518493652, 0.17410682141780853, -0.17701898515224457, 0.028750156983733177, 1.2116650342941284, -0.17512547969818115, 0.07695070654153824, 0.03221359848976135]} +{"t": 13.9874, "q": [-0.32918035984039307, -0.027947425842285156, 0.02018158696591854, 0.616864800453186, -0.3205344080924988, 0.019582487642765045, -0.38490647077560425, -0.01142815686762333, 0.012976747006177902, 0.6256255507469177, -0.2969183623790741, 0.010130117647349834, 0.0008570813224650919, 0.09760579466819763, -0.04765576124191284, -0.5477510094642639, 0.5056623816490173, -0.8452593684196472, -0.7658039927482605, -0.744400143623352, -0.6732738018035889, 0.12652945518493652, 0.17240506410598755, -0.18623486161231995, 0.02761165425181389, 1.2090765237808228, -0.175137460231781, 0.07681888341903687, 0.03238137811422348]} +{"t": 14.0041, "q": [-0.3290354907512665, -0.027930382639169693, 0.02016819454729557, 0.616864800453186, -0.32053032517433167, 0.019560763612389565, -0.3847530782222748, -0.011061705648899078, 0.012749084271490574, 0.6256340742111206, -0.2969302237033844, 0.010036072693765163, 0.0007231623749248683, 0.09560296684503555, -0.04732140153646469, -0.547966718673706, 0.5100007057189941, -0.8494778275489807, -0.7656841278076172, -0.74268639087677, -0.6728423237800598, 0.12651745975017548, 0.16865399479866028, -0.19736820459365845, 0.025082983076572418, 1.2057448625564575, -0.17520937323570251, 0.07679491490125656, 0.032405346632003784]} +{"t": 14.021, "q": [-0.3288480043411255, -0.027921859174966812, 0.02016819454729557, 0.6168733239173889, -0.32053035497665405, 0.019531745463609695, -0.38466784358024597, -0.01061855535954237, 0.012655341066420078, 0.6256170272827148, -0.29689574241638184, 0.00984750222414732, 0.0006829866906628013, 0.09313120692968369, -0.0469854436814785, -0.5477989315986633, 0.5140033960342407, -0.85176682472229, -0.7655403017997742, -0.7400259375572205, -0.6717997193336487, 0.12650547921657562, 0.1646033376455307, -0.20974791049957275, 0.02208692766726017, 1.2032042741775513, -0.1751853972673416, 0.07678293436765671, 0.03238137811422348]} +{"t": 14.0378, "q": [-0.3288394808769226, -0.027947425842285156, 0.02016819454729557, 0.6168562769889832, -0.32053452730178833, 0.019509952515363693, -0.38462522625923157, -0.010235060937702656, 0.012400895357131958, 0.625531792640686, -0.29680654406547546, 0.009564332664012909, 0.0007231623749248683, 0.09067462384700775, -0.046790946274995804, -0.5476311445236206, 0.516520082950592, -0.8529292941093445, -0.7653605341911316, -0.7363707423210144, -0.6708889007568359, 0.12652945518493652, 0.16113989055156708, -0.22300246357917786, 0.02112818881869316, 1.2006516456604004, -0.17520937323570251, 0.07677094638347626, 0.03245328366756439]} +{"t": 14.0546, "q": [-0.3288991153240204, -0.027623586356639862, 0.01998070813715458, 0.6168221831321716, -0.3205057382583618, 0.019459359347820282, -0.384548544883728, -0.009868609718978405, 0.011972354725003242, 0.6253527998924255, -0.29662951827049255, 0.009215202182531357, 0.0007231623749248683, 0.08799077570438385, -0.04668794944882393, -0.5476191639900208, 0.5188930034637451, -0.8544153571128845, -0.7653845548629761, -0.7343573570251465, -0.6699901223182678, 0.12650547921657562, 0.15702930092811584, -0.2376471906900406, 0.020433103665709496, 1.1992614269256592, -0.17522135376930237, 0.07683087140321732, 0.03242931514978409]} +{"t": 14.0714, "q": [-0.3288309574127197, -0.027384966611862183, 0.01965930312871933, 0.616796612739563, -0.3204810619354248, 0.019430508837103844, -0.3843695819377899, -0.00953624676913023, 0.01159738190472126, 0.6251312494277954, -0.29651105403900146, 0.008910045959055424, 0.0008169056382030249, 0.08520766347646713, -0.046579089015722275, -0.5476911067962646, 0.5214576125144958, -0.8562728762626648, -0.7653605341911316, -0.7330631017684937, -0.6689354777336121, 0.12648151814937592, 0.15296664834022522, -0.25333455204963684, 0.019714049994945526, 1.1980390548706055, -0.17526929080486298, 0.07695070654153824, 0.032417330890893936]} +{"t": 14.0884, "q": [-0.32873719930648804, -0.027103736996650696, 0.019404856488108635, 0.6167539954185486, -0.3204522430896759, 0.01939443312585354, -0.384105384349823, -0.009178318083286285, 0.01124919205904007, 0.6247392296791077, -0.2963504195213318, 0.008517620153725147, 0.0009776083752512932, 0.08281762897968292, -0.04659007862210274, -0.5477030873298645, 0.5236986875534058, -0.8580825328826904, -0.7653365731239319, -0.7320084571838379, -0.6671258807182312, 0.12651745975017548, 0.14896391332149506, -0.26993268728256226, 0.019162775948643684, 1.1959058046340942, -0.17534120380878448, 0.07689078897237778, 0.032465267926454544]} +{"t": 14.1051, "q": [-0.3285156190395355, -0.026796940714120865, 0.019123626872897148, 0.6167284250259399, -0.3204440474510193, 0.0193654652684927, -0.38361111283302307, -0.008871521800756454, 0.010780476033687592, 0.6242619752883911, -0.29617780447006226, 0.00820475909858942, 0.0010311759542673826, 0.08081945776939392, -0.04645368829369545, -0.5477150678634644, 0.5256521105766296, -0.8601078391075134, -0.7654444575309753, -0.7308939099311829, -0.6654121279716492, 0.12654143571853638, 0.14467357099056244, -0.28581178188323975, 0.018635470420122147, 1.1942640542984009, -0.1754131019115448, 0.07690277695655823, 0.03242931514978409]} +{"t": 14.1219, "q": [-0.328438937664032, -0.026456056162714958, 0.018788829445838928, 0.6166688203811646, -0.32044821977615356, 0.019329171627759933, -0.3832702040672302, -0.008581770583987236, 0.010284976102411747, 0.6236143112182617, -0.29596757888793945, 0.007869839668273926, 0.0011249192757532, 0.07915439456701279, -0.04641216993331909, -0.5476311445236206, 0.5278332233428955, -0.8626724481582642, -0.7654564380645752, -0.7298393249511719, -0.6637582778930664, 0.12651745975017548, 0.14020344614982605, -0.3028413653373718, 0.01846769079566002, 1.192274570465088, -0.17540112137794495, 0.07691475749015808, 0.032405346632003784]} +{"t": 14.1388, "q": [-0.3282003104686737, -0.026132214814424515, 0.018520992249250412, 0.6165580153465271, -0.32043591141700745, 0.01929299719631672, -0.3826395869255066, -0.008300540037453175, 0.009869826957583427, 0.6229325532913208, -0.2957744896411896, 0.007607496343553066, 0.0013927571708336473, 0.07783667743206024, -0.04625833034515381, -0.5475712418556213, 0.5304937362670898, -0.8662078380584717, -0.7653605341911316, -0.7281734943389893, -0.6619247198104858, 0.12652945518493652, 0.13570936024188995, -0.3190200626850128, 0.018263958394527435, 1.1903331279754639, -0.17542508244514465, 0.07697467505931854, 0.032417330890893936]} +{"t": 14.1555, "q": [-0.3280213475227356, -0.025961773470044136, 0.018065666779875755, 0.6164472103118896, -0.32040709257125854, 0.019271403551101685, -0.38200893998146057, -0.008113053627312183, 0.00940111093223095, 0.6222593188285828, -0.2956569492816925, 0.007447169162333012, 0.001673986902460456, 0.07676884531974792, -0.04616985470056534, -0.5479906797409058, 0.5328306555747986, -0.87006676197052, -0.7652766704559326, -0.725944459438324, -0.6587848663330078, 0.12651745975017548, 0.13165870308876038, -0.33406028151512146, 0.01812014915049076, 1.1880321502685547, -0.17542508244514465, 0.07695070654153824, 0.03238137811422348]} +{"t": 14.1723, "q": [-0.3277486264705658, -0.025876551866531372, 0.01750320754945278, 0.6163023710250854, -0.32040712237358093, 0.01925690472126007, -0.38128456473350525, -0.007993744686245918, 0.008932393975555897, 0.6213644742965698, -0.29560261964797974, 0.007410506252199411, 0.0017007706919685006, 0.07608091086149216, -0.046403300017118454, -0.5478828549385071, 0.5344604849815369, -0.872379720211029, -0.7652766704559326, -0.7223731279373169, -0.6557168960571289, 0.12650547921657562, 0.1270327866077423, -0.3496517539024353, 0.018084196373820305, 1.186570167541504, -0.17547301948070526, 0.07693872600793839, 0.03238137811422348]} +{"t": 14.1892, "q": [-0.3272884488105774, -0.02586803026497364, 0.017195194959640503, 0.616123378276825, -0.32041534781455994, 0.01925685442984104, -0.3805175721645355, -0.007993744686245918, 0.008624380454421043, 0.6208020448684692, -0.29560673236846924, 0.007403302472084761, 0.001982000656425953, 0.07566554844379425, -0.046637918800115585, -0.5477270483970642, 0.535419225692749, -0.8739736080169678, -0.7655763030052185, -0.7180827856063843, -0.6545424461364746, 0.12652945518493652, 0.12257465720176697, -0.3650754392147064, 0.018072212114930153, 1.1857311725616455, -0.1754610389471054, 0.07697467505931854, 0.032405346632003784]} +{"t": 14.206, "q": [-0.3269560933113098, -0.02586803026497364, 0.016726477071642876, 0.6160892844200134, -0.32042360305786133, 0.019256804138422012, -0.3796994388103485, -0.008010788820683956, 0.008276191540062428, 0.6202225089073181, -0.2956027090549469, 0.007424985524266958, 0.0023703654296696186, 0.07556748390197754, -0.046717748045921326, -0.5476071834564209, 0.5359705090522766, -0.8755315542221069, -0.7657800316810608, -0.7144515514373779, -0.6541109681129456, 0.12649349868297577, 0.11833223700523376, -0.3792048692703247, 0.01810816489160061, 1.1855394840240479, -0.1754610389471054, 0.07695070654153824, 0.032405346632003784]} +{"t": 14.2227, "q": [-0.3267941474914551, -0.025936206802725792, 0.01647203229367733, 0.6159103512763977, -0.32042771577835083, 0.019249528646469116, -0.3793756067752838, -0.008036354556679726, 0.008088705129921436, 0.6198901534080505, -0.29561924934387207, 0.007410649210214615, 0.0027721223887056112, 0.07556002587080002, -0.04674208536744118, -0.5472955703735352, 0.5367494821548462, -0.8773651123046875, -0.7659597992897034, -0.7133490443229675, -0.6537874341011047, 0.12651745975017548, 0.11404188722372055, -0.3931185305118561, 0.01810816489160061, 1.1854196786880493, -0.17540112137794495, 0.07696269452571869, 0.032405346632003784]} +{"t": 14.2394, "q": [-0.3267941474914551, -0.025953251868486404, 0.016431856900453568, 0.6157910227775574, -0.32042771577835083, 0.019249528646469116, -0.3792989253997803, -0.008053398691117764, 0.008021745830774307, 0.6196600794792175, -0.2956109344959259, 0.0074105774983763695, 0.0033077981788665056, 0.0755750834941864, -0.046722982078790665, -0.5473315715789795, 0.5374205708503723, -0.87904292345047, -0.7660436630249023, -0.7123663425445557, -0.6534518599510193, 0.12649349868297577, 0.11003915965557098, -0.40542635321617126, 0.018144117668271065, 1.1852878332138062, -0.17535318434238434, 0.07695070654153824, 0.03238137811422348]} +{"t": 14.2562, "q": [-0.32685381174087524, -0.025953251868486404, 0.016405072063207626, 0.6156290769577026, -0.3204236328601837, 0.01924230344593525, -0.37936708331108093, -0.00806192122399807, 0.00799496192485094, 0.6195663213729858, -0.2956068217754364, 0.0074177817441523075, 0.0034551091957837343, 0.07561278343200684, -0.04669000208377838, -0.547223687171936, 0.5378520488739014, -0.8798817992210388, -0.7663432955741882, -0.7115633487701416, -0.6531402468681335, 0.12651745975017548, 0.10631205886602402, -0.41598445177078247, 0.01822800748050213, 1.18537175655365, -0.17529326677322388, 0.07696269452571869, 0.032405346632003784]} +{"t": 14.273, "q": [-0.3268623352050781, -0.025936206802725792, 0.016405072063207626, 0.6154245734214783, -0.3204236328601837, 0.01924230344593525, -0.3793926537036896, -0.008044877089560032, 0.007968178018927574, 0.6194725632667542, -0.29561513662338257, 0.007417852990329266, 0.003655987558886409, 0.07565053552389145, -0.04666687920689583, -0.546995997428894, 0.5379119515419006, -0.8803132772445679, -0.7664511203765869, -0.7107124924659729, -0.6530084609985352, 0.12652945518493652, 0.10307632386684418, -0.42480483651161194, 0.01829991117119789, 1.1853957176208496, -0.17524532973766327, 0.07695070654153824, 0.032405346632003784]} +{"t": 14.2898, "q": [-0.32684528827667236, -0.025902118533849716, 0.016244368627667427, 0.6152967214584351, -0.32041534781455994, 0.01925685442984104, -0.37940117716789246, -0.008027832955121994, 0.007820867002010345, 0.6194469928741455, -0.2956233620643616, 0.007403445430099964, 0.003776514669880271, 0.07574119418859482, -0.04662124812602997, -0.5468881130218506, 0.5378760099411011, -0.8806607723236084, -0.7664151787757874, -0.7096818685531616, -0.6529125571250916, 0.12651745975017548, 0.10040383785963058, -0.4315279722213745, 0.018323879688978195, 1.185383677482605, -0.17514945566654205, 0.07693872600793839, 0.03238137811422348]} +{"t": 14.3066, "q": [-0.32680267095565796, -0.025876551866531372, 0.01612384244799614, 0.6151177883148193, -0.3204153776168823, 0.01924235373735428, -0.3794182240962982, -0.00794261135160923, 0.007633380591869354, 0.6194469928741455, -0.2956688404083252, 0.007353124674409628, 0.0037095551379024982, 0.0758695900440216, -0.046552494168281555, -0.5468162298202515, 0.5378760099411011, -0.880840539932251, -0.7664151787757874, -0.7082796692848206, -0.6528646349906921, 0.12651745975017548, 0.09762349724769592, -0.4364534914493561, 0.01835983246564865, 1.1855155229568481, -0.17502960562705994, 0.07693872600793839, 0.03239336237311363]} +{"t": 14.3234, "q": [-0.32681119441986084, -0.025731675326824188, 0.01597653143107891, 0.6149814128875732, -0.3204154074192047, 0.019227854907512665, -0.37945231795310974, -0.007712514605373144, 0.007539637386798859, 0.6194384694099426, -0.29569342732429504, 0.007295421790331602, 0.0035220684949308634, 0.07614140212535858, -0.04638602212071419, -0.5467563271522522, 0.5377202033996582, -0.8810203075408936, -0.7664151787757874, -0.7065779566764832, -0.6528047323226929, 0.12649349868297577, 0.09484315663576126, -0.4391978979110718, 0.018383800983428955, 1.1854196786880493, -0.17494572699069977, 0.07690277695655823, 0.03238137811422348]} +{"t": 14.3404, "q": [-0.3267771005630493, -0.025527145713567734, 0.01593635603785515, 0.6149132251739502, -0.3204030692577362, 0.019206179305911064, -0.3794778883457184, -0.007397196255624294, 0.007459285669028759, 0.6194384694099426, -0.2957878112792969, 0.007086222060024738, 0.003468500915914774, 0.07657931745052338, -0.046117816120386124, -0.5459533929824829, 0.5375643968582153, -0.8813199400901794, -0.7663912177085876, -0.7055472731590271, -0.6526968479156494, 0.12650547921657562, 0.09284179657697678, -0.43988099694252014, 0.018755313009023666, 1.1851680278778076, -0.1748378574848175, 0.07683087140321732, 0.03239336237311363]} +{"t": 14.3573, "q": [-0.3267771005630493, -0.025186261162161827, 0.015829220414161682, 0.6148961782455444, -0.3203907310962677, 0.01918448694050312, -0.379435271024704, -0.0070648337714374065, 0.00739232636988163, 0.6193788051605225, -0.2958286702632904, 0.006970708724111319, 0.0035086767747998238, 0.07722114771604538, -0.04573461785912514, -0.5451024770736694, 0.5375044941902161, -0.8815476298332214, -0.7663912177085876, -0.7051517963409424, -0.652565062046051, 0.12650547921657562, 0.09112805128097534, -0.43916192650794983, 0.01991778239607811, 1.1848324537277222, -0.1748378574848175, 0.07689078897237778, 0.03239336237311363]} +{"t": 14.3741, "q": [-0.3267771005630493, -0.02490503154695034, 0.015762262046337128, 0.6148876547813416, -0.32035374641418457, 0.019104942679405212, -0.3794608414173126, -0.006843258626759052, 0.007164664100855589, 0.6194214224815369, -0.29588592052459717, 0.006811900530010462, 0.0036024199798703194, 0.07773426920175552, -0.04540110006928444, -0.5443235039710999, 0.5370970368385315, -0.8815476298332214, -0.7664031982421875, -0.704876184463501, -0.6524931192398071, 0.12650547921657562, 0.0893903374671936, -0.4376998543739319, 0.02135588973760605, 1.1843410730361938, -0.17484985291957855, 0.07689078897237778, 0.03239336237311363]} +{"t": 14.3908, "q": [-0.32680267095565796, -0.024683456867933273, 0.01565512642264366, 0.6148109436035156, -0.32027149200439453, 0.01897490583360195, -0.37944379448890686, -0.006638728082180023, 0.006977177690714598, 0.6194043755531311, -0.2959176301956177, 0.006565948016941547, 0.003655987558886409, 0.07833041995763779, -0.04503688961267471, -0.5434606671333313, 0.5355151295661926, -0.8814517259597778, -0.7663792371749878, -0.7047203779220581, -0.6524811387062073, 0.12651745975017548, 0.08720920979976654, -0.4362497627735138, 0.022194785997271538, 1.1834542751312256, -0.1748138964176178, 0.07689078897237778, 0.03239336237311363]} +{"t": 14.4077, "q": [-0.3267941474914551, -0.024453358724713326, 0.015440856106579304, 0.614768385887146, -0.32013580203056335, 0.018736407160758972, -0.379435271024704, -0.006459763273596764, 0.006709339562803507, 0.619412899017334, -0.2959442138671875, 0.006167890969663858, 0.0037899063900113106, 0.07891171425580978, -0.04473116621375084, -0.5427056550979614, 0.5338852405548096, -0.8812839984893799, -0.7663912177085876, -0.7046245336532593, -0.6524931192398071, 0.12651745975017548, 0.08486030250787735, -0.43358927965164185, 0.0225662961602211, 1.1820400953292847, -0.17471802234649658, 0.07689078897237778, 0.032357409596443176]} +{"t": 14.4244, "q": [-0.3267686069011688, -0.02424030564725399, 0.015360504388809204, 0.6147257685661316, -0.32011935114860535, 0.01870748959481716, -0.3794267475605011, -0.006297843065112829, 0.006521853152662516, 0.6194299459457397, -0.2960507571697235, 0.005908120423555374, 0.0038300822488963604, 0.079591304063797, -0.044404931366443634, -0.5420345067977905, 0.5323871970176697, -0.881212055683136, -0.7663792371749878, -0.7045645713806152, -0.6524571776390076, 0.12651745975017548, 0.08309862017631531, -0.4278128743171692, 0.02358495444059372, 1.1797031164169312, -0.17465810477733612, 0.07686682045459747, 0.03238137811422348]} +{"t": 14.4412, "q": [-0.3266918957233429, -0.024018730968236923, 0.015306936576962471, 0.614623486995697, -0.3200906217098236, 0.01862787827849388, -0.379435271024704, -0.006118878722190857, 0.006441501900553703, 0.6194299459457397, -0.2961369752883911, 0.005727807525545359, 0.003910433501005173, 0.08058803528547287, -0.044034723192453384, -0.5412435531616211, 0.5306255221366882, -0.881128191947937, -0.7664031982421875, -0.7045166492462158, -0.6524451971054077, 0.12651745975017548, 0.08091749250888824, -0.4197714626789093, 0.02443583495914936, 1.1777976751327515, -0.17464610934257507, 0.07686682045459747, 0.03238137811422348]} +{"t": 14.458, "q": [-0.3267004191875458, -0.023848289623856544, 0.015320328995585442, 0.6145808696746826, -0.3200577199459076, 0.01858457736670971, -0.379435271024704, -0.005974003113806248, 0.00638793408870697, 0.619412899017334, -0.2961614727973938, 0.005655607674270868, 0.004231838975101709, 0.08181865513324738, -0.04354178532958031, -0.5401650071144104, 0.5290316343307495, -0.8810442686080933, -0.7665110230445862, -0.7044807076454163, -0.652421236038208, 0.12651745975017548, 0.07807722687721252, -0.4099923372268677, 0.026029737666249275, 1.1763116121292114, -0.17467008531093597, 0.07690277695655823, 0.03239336237311363]} +{"t": 14.4747, "q": [-0.3267259895801544, -0.02381419949233532, 0.01519980188459158, 0.6145638227462769, -0.32002076506614685, 0.018490517511963844, -0.3794693648815155, -0.005948436446487904, 0.006294190883636475, 0.6194384694099426, -0.2961859107017517, 0.005568928085267544, 0.004687163513153791, 0.08313868939876556, -0.04288717731833458, -0.5391343235969543, 0.5281927585601807, -0.8809723854064941, -0.7664750814437866, -0.7045166492462158, -0.6524092555046082, 0.12650547921657562, 0.07498529553413391, -0.4011000394821167, 0.028810078278183937, 1.1747536659240723, -0.17467008531093597, 0.07684285193681717, 0.03248923644423485]} +{"t": 14.4915, "q": [-0.32675155997276306, -0.023805677890777588, 0.01519980188459158, 0.6144359707832336, -0.3199508488178253, 0.01836765557527542, -0.3795204758644104, -0.005948436446487904, 0.006267406977713108, 0.6194299459457397, -0.29621076583862305, 0.0055546630173921585, 0.00508892023935914, 0.08430774509906769, -0.0423147939145565, -0.5384153127670288, 0.5278931260108948, -0.8809604048728943, -0.7663792371749878, -0.7045406103134155, -0.652277410030365, 0.12650547921657562, 0.07146193832159042, -0.3913089334964752, 0.03111104853451252, 1.172548532485962, -0.17465810477733612, 0.07689078897237778, 0.03253716975450516]} +{"t": 14.5083, "q": [-0.3267941474914551, -0.02381419949233532, 0.015186409465968609, 0.6142655611038208, -0.3199179768562317, 0.018309837207198143, -0.37958014011383057, -0.005948436446487904, 0.0062272315844893456, 0.619412899017334, -0.2962146997451782, 0.005518482532352209, 0.005356758367270231, 0.08532595634460449, -0.04189460352063179, -0.5380677580833435, 0.5277493000030518, -0.8809124827384949, -0.7663912177085876, -0.7045645713806152, -0.6521695256233215, 0.12648151814937592, 0.06765095144510269, -0.381949245929718, 0.032465267926454544, 1.1700079441070557, -0.17465810477733612, 0.07683087140321732, 0.032585106790065765]} +{"t": 14.5251, "q": [-0.3267941474914551, -0.023805677890777588, 0.015173017978668213, 0.6141888499259949, -0.3199056386947632, 0.01828814297914505, -0.3796057105064392, -0.005948436446487904, 0.006200447678565979, 0.6194214224815369, -0.29626014828681946, 0.005468179937452078, 0.005517460871487856, 0.08628420531749725, -0.041590046137571335, -0.5377681255340576, 0.5272459983825684, -0.8808645009994507, -0.7663912177085876, -0.7046365141868591, -0.6521096229553223, 0.12652945518493652, 0.0644032284617424, -0.37305694818496704, 0.03283677622675896, 1.166975975036621, -0.17467008531093597, 0.07680690288543701, 0.03256113827228546]} +{"t": 14.5418, "q": [-0.3268367648124695, -0.023831244558095932, 0.015159625560045242, 0.6140440106391907, -0.3199056386947632, 0.01828814297914505, -0.3796483278274536, -0.005948436446487904, 0.006254015490412712, 0.619412899017334, -0.2963467538356781, 0.00534582044929266, 0.005691555794328451, 0.08706904202699661, -0.041360918432474136, -0.5370730757713318, 0.5263231992721558, -0.880840539932251, -0.7662114500999451, -0.7047083973884583, -0.6519538164138794, 0.12649349868297577, 0.061479076743125916, -0.36362534761428833, 0.03298058733344078, 1.1643513441085815, -0.17465810477733612, 0.07677094638347626, 0.03257312253117561]} +{"t": 14.5587, "q": [-0.3268197178840637, -0.023848289623856544, 0.01519980188459158, 0.6139076352119446, -0.3199180066585541, 0.018280819058418274, -0.3796994388103485, -0.0059654805809259415, 0.0062272315844893456, 0.6194043755531311, -0.2964373826980591, 0.005201759748160839, 0.005879042204469442, 0.08755909651517868, -0.041152890771627426, -0.5363659858703613, 0.5250888466835022, -0.880756676197052, -0.7659717798233032, -0.7047922611236572, -0.651678204536438, 0.12650547921657562, 0.05819539725780487, -0.35390615463256836, 0.033004555851221085, 1.1638001203536987, -0.17468206584453583, 0.07681888341903687, 0.03257312253117561]} +{"t": 14.5755, "q": [-0.32693904638290405, -0.023839766159653664, 0.015186409465968609, 0.61380535364151, -0.31992626190185547, 0.018280787393450737, -0.37977614998817444, -0.005974003113806248, 0.006213839631527662, 0.6193617582321167, -0.296482652425766, 0.005122498609125614, 0.006012961268424988, 0.0878298282623291, -0.04094986245036125, -0.5359705090522766, 0.5234829187393188, -0.8804570436477661, -0.7657560110092163, -0.7049600481987, -0.651390552520752, 0.12650547921657562, 0.05519933998584747, -0.34484606981277466, 0.03299257159233093, 1.163656234741211, -0.17473000288009644, 0.07680690288543701, 0.032585106790065765]} +{"t": 14.5922, "q": [-0.32711800932884216, -0.023856811225414276, 0.015186409465968609, 0.6136945486068726, -0.31992626190185547, 0.01826626993715763, -0.3799380660057068, -0.0059654805809259415, 0.006187055725604296, 0.6192595362663269, -0.296499103307724, 0.005093664862215519, 0.006120096426457167, 0.08791997283697128, -0.04086582362651825, -0.5356229543685913, 0.521301805973053, -0.8792226910591125, -0.7656841278076172, -0.7051997780799866, -0.6511149406433105, 0.12650547921657562, 0.05252685770392418, -0.33588188886642456, 0.033004555851221085, 1.1635724306106567, -0.17473000288009644, 0.07679491490125656, 0.03257312253117561]} +{"t": 14.609, "q": [-0.3271605968475342, -0.023890899494290352, 0.015213193371891975, 0.6134644746780396, -0.31993451714515686, 0.018280737102031708, -0.3799721598625183, -0.0060080913826823235, 0.0061736637726426125, 0.6191913485527039, -0.2965407371520996, 0.005094040185213089, 0.006106704473495483, 0.08794211596250534, -0.04078344255685806, -0.535275399684906, 0.518988847732544, -0.8779403567314148, -0.7656122446060181, -0.7052716612815857, -0.6509711146354675, 0.12650547921657562, 0.05026184022426605, -0.32737308740615845, 0.03301654011011124, 1.1635364294052124, -0.1748138964176178, 0.07680690288543701, 0.03257312253117561]} +{"t": 14.6258, "q": [-0.32716912031173706, -0.023959076032042503, 0.015226585790514946, 0.6133536696434021, -0.31995096802711487, 0.018295137211680412, -0.37996363639831543, -0.006016613449901342, 0.006187055725604296, 0.619037926197052, -0.2965446710586548, 0.00505785970017314, 0.0060933125205338, 0.08791928738355637, -0.040757812559604645, -0.5344245433807373, 0.5169035792350769, -0.8770655393600464, -0.765552282333374, -0.7053195834159851, -0.650935173034668, 0.12650547921657562, 0.048584047704935074, -0.3193676173686981, 0.03301654011011124, 1.163560390472412, -0.17494572699069977, 0.07681888341903687, 0.032525185495615005]} +{"t": 14.6425, "q": [-0.3272373080253601, -0.024052819237113, 0.015226585790514946, 0.6132599711418152, -0.31995508074760437, 0.01830236241221428, -0.37994658946990967, -0.006076268386095762, 0.006146880332380533, 0.6189186573028564, -0.29656559228897095, 0.005079757422208786, 0.006187055725604296, 0.08789645880460739, -0.04073218256235123, -0.5331422090530396, 0.514722466468811, -0.8755674958229065, -0.7655642628669739, -0.7054154872894287, -0.6509231925010681, 0.12652945518493652, 0.04760134220123291, -0.31121835112571716, 0.03304050862789154, 1.1636203527450562, -0.17499366402626038, 0.07677094638347626, 0.03256113827228546]} +{"t": 14.6594, "q": [-0.32734808325767517, -0.024155084043741226, 0.015239977277815342, 0.613200306892395, -0.31997159123420715, 0.018287744373083115, -0.3799380660057068, -0.00615296745672822, 0.006120096426457167, 0.6188163757324219, -0.29658243060112, 0.005108877085149288, 0.006374542135745287, 0.08789608627557755, -0.04067327082157135, -0.532135546207428, 0.5125772953033447, -0.8738297820091248, -0.7655163407325745, -0.7054394483566284, -0.6508393287658691, 0.12651745975017548, 0.04724181443452835, -0.3040757477283478, 0.033076461404561996, 1.163656234741211, -0.17502960562705994, 0.07683087140321732, 0.03259709104895592]} +{"t": 14.6762, "q": [-0.32740774750709534, -0.02435961551964283, 0.015280152671039104, 0.6131576895713806, -0.3199674189090729, 0.018309537321329117, -0.3799295425415039, -0.006280798930674791, 0.0060933125205338, 0.6187055706977844, -0.29659104347229004, 0.005152404308319092, 0.006495069246739149, 0.08786504715681076, -0.040544185787439346, -0.5311528444290161, 0.5104441046714783, -0.8718284368515015, -0.7654324769973755, -0.7054274678230286, -0.6505756378173828, 0.12651745975017548, 0.047086022794246674, -0.2971728444099426, 0.03323225677013397, 1.163776159286499, -0.17507754266262054, 0.07683087140321732, 0.03259709104895592]} +{"t": 14.6929, "q": [-0.32740774750709534, -0.024572668597102165, 0.015333720482885838, 0.613132119178772, -0.31997981667518616, 0.018316712230443954, -0.379921019077301, -0.006417152937501669, 0.006160271819680929, 0.6187140941619873, -0.29661208391189575, 0.00518879946321249, 0.006481677293777466, 0.08779583126306534, -0.04034934565424919, -0.5302900075912476, 0.509185791015625, -0.8696712851524353, -0.7652527093887329, -0.705331563949585, -0.6504558324813843, 0.12652945518493652, 0.046954195946455, -0.29134848713874817, 0.03344797343015671, 1.163776159286499, -0.17510151863098145, 0.07685483992099762, 0.03269296512007713]} +{"t": 14.7097, "q": [-0.327433317899704, -0.024760155007243156, 0.015360504388809204, 0.6131065487861633, -0.3199921250343323, 0.018338387832045555, -0.37991249561309814, -0.0065535069443285465, 0.006240623537451029, 0.6186800003051758, -0.29664143919944763, 0.0052252295427024364, 0.006280798930674791, 0.08767411857843399, -0.04021579399704933, -0.530194103717804, 0.5092217326164246, -0.8685567378997803, -0.7651448249816895, -0.7051637768745422, -0.6502400636672974, 0.12654143571853638, 0.046858321875333786, -0.28645893931388855, 0.03334011510014534, 1.163776159286499, -0.1751614362001419, 0.07690277695655823, 0.032704949378967285]} +{"t": 14.7264, "q": [-0.32735660672187805, -0.02496468648314476, 0.015481031499803066, 0.6130468845367432, -0.32000863552093506, 0.018338287249207497, -0.3798784017562866, -0.00666429428383708, 0.00642810994759202, 0.6186544299125671, -0.2966500222682953, 0.005268775392323732, 0.00605313666164875, 0.08748452365398407, -0.04010356590151787, -0.5306135416030884, 0.5097370147705078, -0.8683170676231384, -0.7651808261871338, -0.7048402428627014, -0.6497487425804138, 0.12654143571853638, 0.046726495027542114, -0.28226447105407715, 0.03290868178009987, 1.1636922359466553, -0.17510151863098145, 0.07690277695655823, 0.03269296512007713]} +{"t": 14.7431, "q": [-0.32727140188217163, -0.0250839963555336, 0.015574774704873562, 0.6130809783935547, -0.32003748416900635, 0.018345382064580917, -0.37968242168426514, -0.0067750816233456135, 0.006508461199700832, 0.6186373829841614, -0.2966794967651367, 0.005319721065461636, 0.00575851509347558, 0.08714329451322556, -0.03990548849105835, -0.530709445476532, 0.5098928213119507, -0.868436872959137, -0.7652047872543335, -0.7045286297798157, -0.6491016149520874, 0.12654143571853638, 0.04640292003750801, -0.27878904342651367, 0.03259709104895592, 1.1636443138122559, -0.1751614362001419, 0.07692674547433853, 0.032704949378967285]} +{"t": 14.7598, "q": [-0.32721173763275146, -0.025288525968790054, 0.01562834158539772, 0.6130895018577576, -0.32002919912338257, 0.018374431878328323, -0.37962275743484497, -0.006885869428515434, 0.006575420964509249, 0.6186373829841614, -0.29668378829956055, 0.0053414758294820786, 0.00542371766641736, 0.08665785938501358, -0.03962761536240578, -0.5326748490333557, 0.5100845694541931, -0.86858069896698, -0.7652047872543335, -0.7041930556297302, -0.6484065055847168, 0.12652945518493652, 0.04577973857522011, -0.2768116295337677, 0.03248923644423485, 1.163560390472412, -0.17525731027126312, 0.07692674547433853, 0.032764870673418045]} +{"t": 14.7766, "q": [-0.3271350562572479, -0.02551010064780712, 0.015668518841266632, 0.6131065487861633, -0.3200374245643616, 0.018374381586909294, -0.37945231795310974, -0.0070648337714374065, 0.006655772216618061, 0.6186544299125671, -0.29666322469711304, 0.0053774951957166195, 0.005263015162199736, 0.08596750348806381, -0.039217688143253326, -0.5370850563049316, 0.5101924538612366, -0.8687005639076233, -0.7667027711868286, -0.7036178112030029, -0.6477593779563904, 0.12652945518493652, 0.04448544234037399, -0.27622440457344055, 0.03230947256088257, 1.163488507270813, -0.17526929080486298, 0.07693872600793839, 0.032884713262319565]} +{"t": 14.7934, "q": [-0.32699868083000183, -0.02568906545639038, 0.015735477209091187, 0.6131150722503662, -0.3200374245643616, 0.018374381586909294, -0.3792307376861572, -0.007218231912702322, 0.006695947609841824, 0.6186373829841614, -0.2966344952583313, 0.005442420020699501, 0.005115704145282507, 0.08526252955198288, -0.038885533809661865, -0.5415671467781067, 0.5103002786636353, -0.8690121173858643, -0.7699385285377502, -0.7023834586143494, -0.6472799777984619, 0.12651745975017548, 0.042508047074079514, -0.27675172686576843, 0.03224955126643181, 1.1634525060653687, -0.1754610389471054, 0.07698666304349899, 0.03296860307455063]} +{"t": 14.8101, "q": [-0.3269134759902954, -0.025876551866531372, 0.015882788226008415, 0.6131917834281921, -0.3200374245643616, 0.018374381586909294, -0.37917959690093994, -0.007397196255624294, 0.006870042532682419, 0.6186373829841614, -0.2966180443763733, 0.005471253767609596, 0.004432717338204384, 0.08446841686964035, -0.03879445418715477, -0.5446950197219849, 0.5101804733276367, -0.8691439628601074, -0.772646963596344, -0.7011610865592957, -0.646896481513977, 0.12650547921657562, 0.04015913978219032, -0.276787668466568, 0.03224955126643181, 1.1633447408676147, -0.1754610389471054, 0.07698666304349899, 0.033004555851221085]} +{"t": 14.8268, "q": [-0.32671746611595154, -0.025961773470044136, 0.016217585653066635, 0.6133962869644165, -0.3200497627258301, 0.018396057188510895, -0.37900063395500183, -0.007525027729570866, 0.007151272147893906, 0.6186714768409729, -0.2965439558029175, 0.005600960459560156, 0.0036024199798703194, 0.08348363637924194, -0.03845501318573952, -0.5476431250572205, 0.5102523565292358, -0.8691559433937073, -0.7747202515602112, -0.6985484957695007, -0.6463212370872498, 0.12650547921657562, 0.03727094084024429, -0.27877703309059143, 0.03226153552532196, 1.1633327007293701, -0.17572470009326935, 0.07698666304349899, 0.033004555851221085]} +{"t": 14.8436, "q": [-0.3265981376171112, -0.026029950007796288, 0.016498815268278122, 0.613430380821228, -0.32005390524864197, 0.018388781696558, -0.37900063395500183, -0.0075761605985462666, 0.007499461527913809, 0.6187055706977844, -0.2965070307254791, 0.005680292844772339, 0.003093527862802148, 0.08234705030918121, -0.03806067630648613, -0.5493329167366028, 0.5101924538612366, -0.8693836331367493, -0.7760145664215088, -0.6951689720153809, -0.645470380783081, 0.12648151814937592, 0.034382741898298264, -0.2823723256587982, 0.03175819665193558, 1.1633566617965698, -0.17584453523159027, 0.0770346000790596, 0.03296860307455063]} +{"t": 14.8603, "q": [-0.32657259702682495, -0.0260469950735569, 0.016686301678419113, 0.6135838031768799, -0.3200497627258301, 0.018410574644804, -0.3790262043476105, -0.0076272934675216675, 0.007673555985093117, 0.6187567114830017, -0.29644960165023804, 0.00581016018986702, 0.002839081920683384, 0.0810515433549881, -0.037654679268598557, -0.5503995418548584, 0.5102523565292358, -0.8697072267532349, -0.7762422561645508, -0.6927840709686279, -0.6442239880561829, 0.12648151814937592, 0.03135073184967041, -0.2877172827720642, 0.03136271610856056, 1.1633806228637695, -0.17589247226715088, 0.07702261209487915, 0.032884713262319565]} +{"t": 14.8771, "q": [-0.3265896141529083, -0.026029950007796288, 0.01665951870381832, 0.6137627363204956, -0.3200456202030182, 0.01840333081781864, -0.3790176808834076, -0.0076187714003026485, 0.0076869479380548, 0.6187737584114075, -0.29632988572120667, 0.0059612104669213295, 0.0027051628567278385, 0.0796947255730629, -0.037159450352191925, -0.5516458749771118, 0.5103122591972351, -0.8700187802314758, -0.7762422561645508, -0.691274106502533, -0.6425701975822449, 0.12649349868297577, 0.028234833851456642, -0.2936854362487793, 0.031374700367450714, 1.1636922359466553, -0.17588049173355103, 0.07707054913043976, 0.03292066603899002]} +{"t": 14.8937, "q": [-0.32662370800971985, -0.025995861738920212, 0.01664612628519535, 0.6138820648193359, -0.3200373947620392, 0.018388880416750908, -0.37903472781181335, -0.007601726800203323, 0.007673555985093117, 0.6187652349472046, -0.29621419310569763, 0.006090541835874319, 0.0027453387156128883, 0.07850604504346848, -0.036946043372154236, -0.5531319379806519, 0.510324239730835, -0.8702824711799622, -0.7762182950973511, -0.6895363926887512, -0.6405688524246216, 0.12649349868297577, 0.025981800630688667, -0.2998572885990143, 0.031434621661901474, 1.1636443138122559, -0.17590445280075073, 0.07702261209487915, 0.03292066603899002]} +{"t": 14.9105, "q": [-0.32665780186653137, -0.025995861738920212, 0.016565775498747826, 0.613950252532959, -0.32003331184387207, 0.01838165707886219, -0.379060298204422, -0.007601726800203323, 0.007619988638907671, 0.6187908053398132, -0.29617276787757874, 0.006119160912930965, 0.0031203117687255144, 0.07746225595474243, -0.03694043308496475, -0.5544381737709045, 0.5109474658966064, -0.8703663349151611, -0.7760624885559082, -0.686204731464386, -0.6379083395004272, 0.12651745975017548, 0.02448377199470997, -0.3064606189727783, 0.031386684626340866, 1.1636443138122559, -0.17591644823551178, 0.0770585685968399, 0.032884713262319565]} +{"t": 14.9273, "q": [-0.32666632533073425, -0.025953251868486404, 0.016378289088606834, 0.6140440106391907, -0.3200374245643616, 0.018374381586909294, -0.37900063395500183, -0.007601726800203323, 0.007499461527913809, 0.6187822818756104, -0.29617705941200256, 0.006140915676951408, 0.0034551091957837343, 0.07669153064489365, -0.0371147096157074, -0.5555407404899597, 0.51218181848526, -0.8704622387886047, -0.7757628560066223, -0.6834124326705933, -0.6354874968528748, 0.12648151814937592, 0.02341717667877674, -0.3134593963623047, 0.031386684626340866, 1.1636203527450562, -0.17595238983631134, 0.07704658061265945, 0.03286074474453926]} +{"t": 14.9441, "q": [-0.32665780186653137, -0.025936206802725792, 0.0163247212767601, 0.6140950918197632, -0.3200291693210602, 0.018388930708169937, -0.3789580166339874, -0.007593204732984304, 0.007445894181728363, 0.6187822818756104, -0.2961769700050354, 0.0061264364048838615, 0.003655987558886409, 0.07621608674526215, -0.03733569011092186, -0.5558283925056458, 0.5129607915878296, -0.8705580830574036, -0.7757149338722229, -0.6818305253982544, -0.6344209313392639, 0.12650547921657562, 0.022410500794649124, -0.3203143775463104, 0.03142263740301132, 1.1636322736740112, -0.17595238983631134, 0.0770585685968399, 0.032884713262319565]} +{"t": 14.9608, "q": [-0.32663223147392273, -0.025893596932291985, 0.016271153464913368, 0.6141036152839661, -0.3200456500053406, 0.018388831987977028, -0.37894949316978455, -0.0075761605985462666, 0.00739232636988163, 0.6187652349472046, -0.29621046781539917, 0.006155699025839567, 0.003816690295934677, 0.07608778029680252, -0.03739422932267189, -0.5555647015571594, 0.5130806565284729, -0.8704861998558044, -0.7757388949394226, -0.6792778968811035, -0.634121298789978, 0.12649349868297577, 0.02130795270204544, -0.3275049030780792, 0.03139866888523102, 1.1636083126068115, -0.1759883463382721, 0.07709451764822006, 0.03284876048564911]} +{"t": 14.9775, "q": [-0.32666632533073425, -0.025893596932291985, 0.016244368627667427, 0.6141206622123718, -0.3200415074825287, 0.018396105617284775, -0.3790176808834076, -0.0075846826657652855, 0.0074191102758049965, 0.6187567114830017, -0.29621878266334534, 0.006155770737677813, 0.003816690295934677, 0.07611794024705887, -0.037375837564468384, -0.5554088950157166, 0.513008713722229, -0.8704981803894043, -0.7755950689315796, -0.6766772866249084, -0.6338696479797363, 0.12648151814937592, 0.020385166630148888, -0.33465948700904846, 0.031446605920791626, 1.1636203527450562, -0.1759883463382721, 0.0770585685968399, 0.03284876048564911]} +{"t": 14.9943, "q": [-0.32676008343696594, -0.025893596932291985, 0.016271153464913368, 0.6140695214271545, -0.3200456500053406, 0.018388831987977028, -0.37921369075775146, -0.007601726800203323, 0.007459285669028759, 0.618739664554596, -0.29621046781539917, 0.006155699025839567, 0.0038434739690274, 0.0761781558394432, -0.03731942176818848, -0.5554088950157166, 0.5128529071807861, -0.8705101609230042, -0.7754033207893372, -0.6753230690956116, -0.6336898803710938, 0.12648151814937592, 0.019750002771615982, -0.3417661488056183, 0.03153049573302269, 1.1636203527450562, -0.1759883463382721, 0.07711848616600037, 0.03284876048564911]} +{"t": 15.011, "q": [-0.3267856240272522, -0.02586803026497364, 0.016244368627667427, 0.6140099167823792, -0.3200415074825287, 0.018396105617284775, -0.37927335500717163, -0.0075846826657652855, 0.0074191102758049965, 0.6187652349472046, -0.29622289538383484, 0.0061485664919018745, 0.00388364982791245, 0.07626869529485703, -0.037274062633514404, -0.5552531480789185, 0.5127930045127869, -0.870234489440918, -0.7753074765205383, -0.6744362711906433, -0.6335939764976501, 0.12646952271461487, 0.019450398162007332, -0.34802189469337463, 0.031446605920791626, 1.1636682748794556, -0.1759404093027115, 0.07710650563240051, 0.03283677622675896]} +{"t": 15.0279, "q": [-0.3267771005630493, -0.0257487203925848, 0.016030099242925644, 0.6140013933181763, -0.32003331184387207, 0.01838165707886219, -0.37925630807876587, -0.007499461527913809, 0.007245015352964401, 0.6187481880187988, -0.29624345898628235, 0.006112528964877129, 0.003977392800152302, 0.07630639523267746, -0.0372510701417923, -0.5544501543045044, 0.5128289461135864, -0.870234489440918, -0.7751157283782959, -0.6735254526138306, -0.6334262490272522, 0.12648151814937592, 0.019402461126446724, -0.35363051295280457, 0.03139866888523102, 1.163716197013855, -0.17588049173355103, 0.07715444266796112, 0.03283677622675896]} +{"t": 15.0446, "q": [-0.3268282413482666, -0.025612367317080498, 0.01581582799553871, 0.6139587759971619, -0.3200291693210602, 0.018388930708169937, -0.37927335500717163, -0.007346063386648893, 0.0070173535495996475, 0.6187652349472046, -0.2962886393070221, 0.006018788553774357, 0.004004176706075668, 0.0762987956404686, -0.03724585101008415, -0.5537790656089783, 0.5128409266471863, -0.8702585101127625, -0.7739772200584412, -0.6725068092346191, -0.6331146359443665, 0.12648151814937592, 0.01943841390311718, -0.358112633228302, 0.03129081055521965, 1.1637042760849, -0.17586851119995117, 0.07717841118574142, 0.03283677622675896]} +{"t": 15.0613, "q": [-0.32685381174087524, -0.025458969175815582, 0.015681909397244453, 0.6139076352119446, -0.32002508640289307, 0.018367206677794456, -0.37930744886398315, -0.007192665245383978, 0.0068566505797207355, 0.6187567114830017, -0.29631295800209045, 0.005917593836784363, 0.004030960611999035, 0.07628332078456879, -0.03718634694814682, -0.5515859723091125, 0.5127450823783875, -0.8700307607650757, -0.7723113894462585, -0.6715959906578064, -0.6328150033950806, 0.12648151814937592, 0.019102854654192924, -0.3618277311325073, 0.031158985570073128, 1.163548469543457, -0.1757366806268692, 0.0773102343082428, 0.032824791967868805]} +{"t": 15.0781, "q": [-0.32685381174087524, -0.02527148276567459, 0.015588166192173958, 0.61380535364151, -0.32002097368240356, 0.01835998147726059, -0.3793756067752838, -0.0070307450369000435, 0.006736123468726873, 0.6187567114830017, -0.29637449979782104, 0.005780540406703949, 0.004004176706075668, 0.0763588398694992, -0.0371599942445755, -0.5472955703735352, 0.5120619535446167, -0.8698869943618774, -0.7704179286956787, -0.6711046099662781, -0.632551372051239, 0.12645754218101501, 0.01812014915049076, -0.36451220512390137, 0.030919300392270088, 1.1633926630020142, -0.17560485005378723, 0.07745404541492462, 0.03283677622675896]} +{"t": 15.0948, "q": [-0.3268367648124695, -0.025118084624409676, 0.015481031499803066, 0.6137456893920898, -0.32001274824142456, 0.018345512449741364, -0.3793756067752838, -0.006911435630172491, 0.006535245105624199, 0.6187822818756104, -0.2964897155761719, 0.0055787768214941025, 0.0039506093598902225, 0.0764416754245758, -0.03708977624773979, -0.542286217212677, 0.5117504000663757, -0.8676698803901672, -0.7672899961471558, -0.6710806488990784, -0.6327431201934814, 0.12651745975017548, 0.016741963103413582, -0.3663337826728821, 0.030344057828187943, 1.1630210876464844, -0.17547301948070526, 0.07751397043466568, 0.032824791967868805]} +{"t": 15.1115, "q": [-0.32684528827667236, -0.02490503154695034, 0.015333720482885838, 0.6136775612831116, -0.32000863552093506, 0.018338287249207497, -0.3793756067752838, -0.006732471287250519, 0.006374542135745287, 0.6187567114830017, -0.2965679168701172, 0.005441848188638687, 0.004044352564960718, 0.07647183537483215, -0.037071362137794495, -0.5387628078460693, 0.5116425156593323, -0.8659082055091858, -0.7629996538162231, -0.6711645722389221, -0.6328989267349243, 0.12651745975017548, 0.015459650196135044, -0.3674722909927368, 0.029325399547815323, 1.1624219417572021, -0.17525731027126312, 0.07756190747022629, 0.03284876048564911]} +{"t": 15.1283, "q": [-0.3268367648124695, -0.0247857216745615, 0.01519980188459158, 0.6136349439620972, -0.32001689076423645, 0.018323738127946854, -0.3793756067752838, -0.006630206014961004, 0.006187055725604296, 0.6187908053398132, -0.29659655690193176, 0.005362444091588259, 0.004030960611999035, 0.07658489793539047, -0.036992479115724564, -0.5362941026687622, 0.5119661092758179, -0.8657523989677429, -0.7595601677894592, -0.6710686683654785, -0.6325753331184387, 0.12654143571853638, 0.013973606750369072, -0.36796364188194275, 0.028091024607419968, 1.1613672971725464, -0.17495770752429962, 0.0776577815413475, 0.032824791967868805]} +{"t": 15.145, "q": [-0.3268197178840637, -0.024691978469491005, 0.015106058679521084, 0.6135667562484741, -0.32000863552093506, 0.018338287249207497, -0.3793756067752838, -0.0065194182097911835, 0.0060933125205338, 0.6187908053398132, -0.2966747283935547, 0.005225533619523048, 0.004030960611999035, 0.07677359879016876, -0.03690686821937561, -0.5338612794876099, 0.5119661092758179, -0.8653928637504578, -0.7562046051025391, -0.6710447072982788, -0.6325393915176392, 0.12650547921657562, 0.012199941091239452, -0.3683471381664276, 0.026377279311418533, 1.1598693132400513, -0.1748857945203781, 0.0776577815413475, 0.03283677622675896]} +{"t": 15.1617, "q": [-0.32681119441986084, -0.024640845134854317, 0.01505249086767435, 0.6134815216064453, -0.32001274824142456, 0.01833101361989975, -0.37936708331108093, -0.00646828580647707, 0.0059995693154633045, 0.6188163757324219, -0.29674890637397766, 0.005110306199640036, 0.004084527958184481, 0.07692442089319229, -0.03681483119726181, -0.5316562056541443, 0.511726438999176, -0.8645420074462891, -0.752777099609375, -0.6709368228912354, -0.6325393915176392, 0.12650547921657562, 0.010558102279901505, -0.36861079931259155, 0.023764718323946, 1.1577839851379395, -0.1748378574848175, 0.07776563614606857, 0.03286074474453926]} +{"t": 15.1784, "q": [-0.3267771005630493, -0.024555623531341553, 0.01505249086767435, 0.6134474277496338, -0.32001274824142456, 0.01833101361989975, -0.3793756067752838, -0.006434197071939707, 0.005946001503616571, 0.6188248991966248, -0.29679837822914124, 0.005038320552557707, 0.004044352564960718, 0.07710552215576172, -0.03674403578042984, -0.5287560224533081, 0.5117024779319763, -0.8622410297393799, -0.7491099238395691, -0.6708170175552368, -0.63246750831604, 0.12648151814937592, 0.008137288503348827, -0.36898231506347656, 0.021619541570544243, 1.1556627750396729, -0.1747659593820572, 0.07781357318162918, 0.03284876048564911]} +{"t": 15.1952, "q": [-0.3267771005630493, -0.024521535262465477, 0.01505249086767435, 0.613430380821228, -0.32000863552093506, 0.018338287249207497, -0.37940117716789246, -0.006400108803063631, 0.005892434157431126, 0.6188248991966248, -0.2968147397041321, 0.004995007533580065, 0.004030960611999035, 0.07724122703075409, -0.03667132556438446, -0.5259037613868713, 0.5116784572601318, -0.8582143187522888, -0.7450472712516785, -0.670661211013794, -0.6324315071105957, 0.12649349868297577, 0.006447513122111559, -0.3684789836406708, 0.020481040701270103, 1.1526907682418823, -0.17459817230701447, 0.07786151021718979, 0.03283677622675896]} +{"t": 15.2119, "q": [-0.3267771005630493, -0.024470403790473938, 0.01503909844905138, 0.613430380821228, -0.32001277804374695, 0.018316512927412987, -0.3793841302394867, -0.00634897593408823, 0.005892434157431126, 0.6188675165176392, -0.2968147397041321, 0.004995007533580065, 0.004017568659037352, 0.0774296298623085, -0.03655672445893288, -0.5231953263282776, 0.5113069415092468, -0.853564441204071, -0.7416557669639587, -0.6705653667449951, -0.6323476433753967, 0.12649349868297577, 0.00535694882273674, -0.3672446012496948, 0.019953735172748566, 1.1482685804367065, -0.17445436120033264, 0.07786151021718979, 0.03287272900342941]} +{"t": 15.2286, "q": [-0.3267771005630493, -0.024461880326271057, 0.01503909844905138, 0.613430380821228, -0.32001277804374695, 0.018316512927412987, -0.37940117716789246, -0.006323409732431173, 0.005892434157431126, 0.6188675165176392, -0.2968229651451111, 0.004980599973350763, 0.003803298342972994, 0.0776255652308464, -0.036437537521123886, -0.5201513171195984, 0.5107317566871643, -0.8483033776283264, -0.7398461699485779, -0.6703016757965088, -0.6322997212409973, 0.12650547921657562, 0.00447011599317193, -0.36591434478759766, 0.019546272233128548, 1.1436666250228882, -0.17437048256397247, 0.07783754169940948, 0.03292066603899002]} +{"t": 15.2454, "q": [-0.32671746611595154, -0.024470403790473938, 0.015106058679521084, 0.613430380821228, -0.32001689076423645, 0.018323738127946854, -0.3793841302394867, -0.006314887665212154, 0.005972785409539938, 0.6188675165176392, -0.2968229651451111, 0.004980599973350763, 0.0035354604478925467, 0.07776898890733719, -0.03638966381549835, -0.5181379914283752, 0.5104920268058777, -0.8448279500007629, -0.7385518550872803, -0.6701698303222656, -0.6323476433753967, 0.12652945518493652, 0.0036551887169480324, -0.3644043505191803, 0.019270634278655052, 1.141066074371338, -0.17432254552841187, 0.07781357318162918, 0.03289669752120972]} +{"t": 15.2621, "q": [-0.3266918957233429, -0.02447892539203167, 0.015146234072744846, 0.6134559512138367, -0.32000866532325745, 0.01830928772687912, -0.3793415129184723, -0.006331931799650192, 0.006012961268424988, 0.6189016103744507, -0.2968062460422516, 0.004965977743268013, 0.003562244353815913, 0.0777992531657219, -0.036390937864780426, -0.516891598701477, 0.5103482604026794, -0.8424191474914551, -0.7371377348899841, -0.6698702573776245, -0.6323356628417969, 0.12645754218101501, 0.0032716935966163874, -0.3629063069820404, 0.019090870395302773, 1.1399993896484375, -0.17432254552841187, 0.07783754169940948, 0.03289669752120972]} +{"t": 15.2788, "q": [-0.32668337225914, -0.024513013660907745, 0.015159625560045242, 0.6134644746780396, -0.32000863552093506, 0.018323788419365883, -0.37932446599006653, -0.006331931799650192, 0.006012961268424988, 0.6189186573028564, -0.2968021035194397, 0.004973181523382664, 0.0037095551379024982, 0.07782192528247833, -0.036386992782354355, -0.5153936147689819, 0.5101444721221924, -0.8386440873146057, -0.7354838848114014, -0.6695946455001831, -0.6322997212409973, 0.12645754218101501, 0.003187804017215967, -0.36121654510498047, 0.018923090770840645, 1.1393043994903564, -0.17431055009365082, 0.07789746671915054, 0.03292066603899002]} +{"t": 15.2956, "q": [-0.32671746611595154, -0.024513013660907745, 0.015159625560045242, 0.6134815216064453, -0.32000863552093506, 0.018323788419365883, -0.37932446599006653, -0.006323409732431173, 0.006026353221386671, 0.6189271807670593, -0.29678958654403687, 0.0049658166244626045, 0.003816690295934677, 0.07782939821481705, -0.036372601985931396, -0.5130566954612732, 0.510096549987793, -0.8332991600036621, -0.7336862683296204, -0.6694148778915405, -0.6322637796401978, 0.12645754218101501, 0.0031638354994356632, -0.3592151701450348, 0.018695391714572906, 1.1388968229293823, -0.17433452606201172, 0.077957384288311, 0.03290868178009987]} +{"t": 15.3123, "q": [-0.3267259895801544, -0.02453858032822609, 0.015173017978668213, 0.6134815216064453, -0.32000866532325745, 0.01830928772687912, -0.37932446599006653, -0.006340453866869211, 0.006026353221386671, 0.6189186573028564, -0.2967812716960907, 0.0049657453782856464, 0.003803298342972994, 0.07784453779459, -0.036373239010572433, -0.5097969770431519, 0.5101324915885925, -0.8262643814086914, -0.7319485545158386, -0.6692830324172974, -0.6322517991065979, 0.12652945518493652, 0.003091930178925395, -0.3565906286239624, 0.018611501902341843, 1.1384295225143433, -0.17433452606201172, 0.07802928984165192, 0.03292066603899002]} +{"t": 15.3292, "q": [-0.32671746611595154, -0.02454710192978382, 0.015213193371891975, 0.6134985685348511, -0.32000863552093506, 0.018323788419365883, -0.3793329894542694, -0.006366020068526268, 0.006079920567572117, 0.6189357042312622, -0.2967938780784607, 0.0049875895492732525, 0.003736338810995221, 0.07784459739923477, -0.036383043974637985, -0.5073521733283997, 0.510324239730835, -0.8209314346313477, -0.7304385304450989, -0.6692710518836975, -0.6323835849761963, 0.12649349868297577, 0.003187804017215967, -0.3540020287036896, 0.018575549125671387, 1.1376625299453735, -0.17433452606201172, 0.07807722687721252, 0.03290868178009987]} +{"t": 15.3459, "q": [-0.3267345130443573, -0.024564146995544434, 0.015226585790514946, 0.6135241389274597, -0.32001692056655884, 0.01830923743546009, -0.37931594252586365, -0.006366020068526268, 0.006120096426457167, 0.6189442276954651, -0.2967938780784607, 0.0049875895492732525, 0.003776514669880271, 0.07785212993621826, -0.03637846186757088, -0.5055545568466187, 0.5104081630706787, -0.8166290521621704, -0.7281854748725891, -0.6690313816070557, -0.6323476433753967, 0.12648151814937592, 0.00339153571985662, -0.3512696325778961, 0.01858753338456154, 1.136871576309204, -0.17438246309757233, 0.07818508893251419, 0.03290868178009987]} +{"t": 15.3627, "q": [-0.32671746611595154, -0.024615278467535973, 0.015266761183738708, 0.6135156154632568, -0.32001274824142456, 0.01833101361989975, -0.37931594252586365, -0.006400108803063631, 0.006146880332380533, 0.6189186573028564, -0.2967855632305145, 0.004987517837435007, 0.003816690295934677, 0.07789734750986099, -0.036350954324007034, -0.5037329196929932, 0.5102283954620361, -0.8105410933494568, -0.7249377965927124, -0.6688276529312134, -0.6322277784347534, 0.12648151814937592, 0.00347542529925704, -0.34876492619514465, 0.01852761209011078, 1.1364641189575195, -0.17441841959953308, 0.0782330259680748, 0.03293265029788017]} +{"t": 15.3795, "q": [-0.32675155997276306, -0.024615278467535973, 0.015293545089662075, 0.6135582327842712, -0.32001689076423645, 0.018323738127946854, -0.3793329894542694, -0.006425675004720688, 0.006160271819680929, 0.6189357042312622, -0.2967855632305145, 0.004987517837435007, 0.0037631227169185877, 0.07795009762048721, -0.03631886839866638, -0.5012522339820862, 0.5104201436042786, -0.8052560687065125, -0.721989631652832, -0.6687077879905701, -0.6322157979011536, 0.12648151814937592, 0.0035473306197673082, -0.34657180309295654, 0.018551580607891083, 1.1361404657363892, -0.17452627420425415, 0.0782330259680748, 0.03295661881566048]} +{"t": 15.3963, "q": [-0.32675155997276306, -0.024640845134854317, 0.015347111970186234, 0.6135497093200684, -0.32000863552093506, 0.018338287249207497, -0.3793415129184723, -0.006434197071939707, 0.006240623537451029, 0.6189442276954651, -0.2967855632305145, 0.004987517837435007, 0.003803298342972994, 0.07798018306493759, -0.0362907275557518, -0.49881941080093384, 0.5105639696121216, -0.8010615706443787, -0.7191494107246399, -0.6686598658561707, -0.6322157979011536, 0.12648151814937592, 0.003942809998989105, -0.344929963350296, 0.018551580607891083, 1.136008620262146, -0.1746101677417755, 0.07824500650167465, 0.03292066603899002]} +{"t": 15.413, "q": [-0.32676008343696594, -0.024674933403730392, 0.015347111970186234, 0.6135497093200684, -0.32001689076423645, 0.018323738127946854, -0.37931594252586365, -0.006476807873696089, 0.006213839631527662, 0.6189357042312622, -0.29678985476493835, 0.00500927260145545, 0.003923825453966856, 0.07798011600971222, -0.03628091886639595, -0.49711763858795166, 0.5105999112129211, -0.7972026467323303, -0.7143077850341797, -0.6685160398483276, -0.6322277784347534, 0.12648151814937592, 0.004817658569663763, -0.3438873291015625, 0.01858753338456154, 1.1359606981277466, -0.1747419834136963, 0.07824500650167465, 0.032944634556770325]} +{"t": 15.4298, "q": [-0.3267856240272522, -0.024734588339924812, 0.015360504388809204, 0.6135497093200684, -0.32001689076423645, 0.018323738127946854, -0.37932446599006653, -0.006502374075353146, 0.006200447678565979, 0.6189271807670593, -0.2967815399169922, 0.00500921905040741, 0.004071136470884085, 0.07800260931253433, -0.036247555166482925, -0.49557167291641235, 0.510611891746521, -0.792744517326355, -0.7091904878616333, -0.6683362722396851, -0.6319641470909119, 0.12646952271461487, 0.005872270558029413, -0.34347987174987793, 0.01859951764345169, 1.1359606981277466, -0.1748378574848175, 0.07826897501945496, 0.03296860307455063]} +{"t": 15.4465, "q": [-0.3268282413482666, -0.0247857216745615, 0.015320328995585442, 0.613575279712677, -0.32001274824142456, 0.01833101361989975, -0.37932446599006653, -0.0065535069443285465, 0.006200447678565979, 0.6189442276954651, -0.2967773377895355, 0.0050019435584545135, 0.004620204214006662, 0.07817581295967102, -0.036122508347034454, -0.49354633688926697, 0.5110792517662048, -0.7878909111022949, -0.7024553418159485, -0.6680726408958435, -0.63172447681427, 0.12646952271461487, 0.006471481639891863, -0.3434079885482788, 0.018611501902341843, 1.135996699333191, -0.174909770488739, 0.07831691205501556, 0.032944634556770325]} +{"t": 15.4632, "q": [-0.32693052291870117, -0.02489650808274746, 0.015186409465968609, 0.6135667562484741, -0.32001689076423645, 0.018323738127946854, -0.37932446599006653, -0.006638728082180023, 0.006066528614610434, 0.6189357042312622, -0.29678162932395935, 0.0050236983224749565, 0.005383542273193598, 0.07843957096338272, -0.03596206381917, -0.4903225898742676, 0.5139195322990417, -0.7826418280601501, -0.6962355375289917, -0.6676052212715149, -0.6314128637313843, 0.12645754218101501, 0.0068429927341639996, -0.34367161989212036, 0.018611501902341843, 1.1360206604003906, -0.17495770752429962, 0.07838881760835648, 0.032944634556770325]} +{"t": 15.48, "q": [-0.32694756984710693, -0.02496468648314476, 0.015186409465968609, 0.6135667562484741, -0.32001686096191406, 0.018338238820433617, -0.37931594252586365, -0.006689860485494137, 0.006079920567572117, 0.6189186573028564, -0.2967940866947174, 0.005016548093408346, 0.006120096426457167, 0.07872588187456131, -0.03577806428074837, -0.48673930764198303, 0.5165441036224365, -0.7782436013221741, -0.6896202564239502, -0.6670899391174316, -0.631352961063385, 0.12648151814937592, 0.007729825098067522, -0.3440551161766052, 0.018611501902341843, 1.13606858253479, -0.1750895380973816, 0.07846072316169739, 0.03295661881566048]} +{"t": 15.4967, "q": [-0.32694756984710693, -0.025049906224012375, 0.01519980188459158, 0.6135497093200684, -0.32002100348472595, 0.018345480784773827, -0.37931594252586365, -0.0068091703578829765, 0.006079920567572117, 0.6189357042312622, -0.29680249094963074, 0.005031098611652851, 0.006454893853515387, 0.07905755937099457, -0.035585954785346985, -0.48261672258377075, 0.5197198987007141, -0.7738094329833984, -0.6807998418807983, -0.6665985584259033, -0.6309934258460999, 0.12645754218101501, 0.008532768115401268, -0.34429481625556946, 0.018611501902341843, 1.1362004280090332, -0.17512547969818115, 0.07872437685728073, 0.03296860307455063]} +{"t": 15.5134, "q": [-0.32694756984710693, -0.025109561160206795, 0.015253368765115738, 0.6135326623916626, -0.32001686096191406, 0.018338238820433617, -0.37935855984687805, -0.006826214492321014, 0.006160271819680929, 0.6189357042312622, -0.2968025803565979, 0.005045596044510603, 0.006146880332380533, 0.07955477386713028, -0.03529386967420578, -0.4773916006088257, 0.5231713652610779, -0.7690876722335815, -0.6725547313690186, -0.6663708686828613, -0.6305140852928162, 0.12645754218101501, 0.008748484775424004, -0.34434273838996887, 0.018611501902341843, 1.1361883878707886, -0.1750895380973816, 0.07892810553312302, 0.03295661881566048]} +{"t": 15.5302, "q": [-0.32693904638290405, -0.025118084624409676, 0.01538728829473257, 0.6135156154632568, -0.32002100348472595, 0.018345480784773827, -0.3794182240962982, -0.0068091703578829765, 0.006320974789559841, 0.6189442276954651, -0.29679837822914124, 0.005038320552557707, 0.005865650251507759, 0.08000653237104416, -0.03500007465481758, -0.472250372171402, 0.5269583463668823, -0.7653845548629761, -0.6632310152053833, -0.6661791205406189, -0.6301065683364868, 0.12648151814937592, 0.00878443755209446, -0.3443547189235687, 0.01858753338456154, 1.136128544807434, -0.17520937323570251, 0.07914382219314575, 0.03296860307455063]} +{"t": 15.5469, "q": [-0.3269560933113098, -0.025109561160206795, 0.015427463687956333, 0.6134900450706482, -0.32002511620521545, 0.01833820715546608, -0.3794608414173126, -0.0068176924251019955, 0.006347758695483208, 0.6189357042312622, -0.29679423570632935, 0.005045524798333645, 0.005517460871487856, 0.08033791184425354, -0.0347989946603775, -0.4664260447025299, 0.5318119525909424, -0.7620648741722107, -0.6542907357215881, -0.6656038761138916, -0.6292077898979187, 0.12646952271461487, 0.008532768115401268, -0.3443906903266907, 0.01858753338456154, 1.135996699333191, -0.17522135376930237, 0.0794314444065094, 0.03295661881566048]} +{"t": 15.5638, "q": [-0.3269219994544983, -0.025126606225967407, 0.015427463687956333, 0.6134815216064453, -0.32002511620521545, 0.01833820715546608, -0.3794608414173126, -0.006826214492321014, 0.006374542135745287, 0.6189271807670593, -0.2968025803565979, 0.005045596044510603, 0.005396933760493994, 0.08069208264350891, -0.03461359441280365, -0.4618121087551117, 0.5363779664039612, -0.7595601677894592, -0.6453744769096375, -0.6653522253036499, -0.6287283897399902, 0.12648151814937592, 0.008293083868920803, -0.34447458386421204, 0.018575549125671387, 1.1357210874557495, -0.17523333430290222, 0.07958724349737167, 0.03296860307455063]} +{"t": 15.5805, "q": [-0.32688790559768677, -0.025109561160206795, 0.015427463687956333, 0.6134644746780396, -0.32002100348472595, 0.01833096332848072, -0.37944379448890686, -0.006792126223444939, 0.006361150648444891, 0.6189442276954651, -0.2968025803565979, 0.005045596044510603, 0.005303190555423498, 0.0808577686548233, -0.03451305627822876, -0.4580610692501068, 0.5412914752960205, -0.7584936022758484, -0.6355354189872742, -0.6650046706199646, -0.6283329129219055, 0.12648151814937592, 0.008173241280019283, -0.3445105254650116, 0.018551580607891083, 1.1352776288986206, -0.17520937323570251, 0.07971906661987305, 0.03296860307455063]} +{"t": 15.5973, "q": [-0.326870858669281, -0.0250839963555336, 0.015400679782032967, 0.6134644746780396, -0.32002100348472595, 0.01833096332848072, -0.37945231795310974, -0.0067665595561265945, 0.006307582836598158, 0.6189612150192261, -0.29680249094963074, 0.005031098611652851, 0.005155880004167557, 0.08103853464126587, -0.03440333902835846, -0.4554005563259125, 0.5455338954925537, -0.7584936022758484, -0.6261637806892395, -0.6646571159362793, -0.6277576684951782, 0.12648151814937592, 0.008185225538909435, -0.3448340892791748, 0.01852761209011078, 1.135037899017334, -0.17526929080486298, 0.07988684624433517, 0.03296860307455063]} +{"t": 15.6142, "q": [-0.32688790559768677, -0.025041384622454643, 0.015414072200655937, 0.6134815216064453, -0.32000863552093506, 0.018338287249207497, -0.37944379448890686, -0.006758037488907576, 0.006294190883636475, 0.6189867854118347, -0.296785831451416, 0.005030973814427853, 0.005048744846135378, 0.08121177554130554, -0.03429810330271721, -0.4527400732040405, 0.5501118898391724, -0.7585175633430481, -0.6170797348022461, -0.6640459299087524, -0.627242386341095, 0.12648151814937592, 0.008101336658000946, -0.3458887040615082, 0.01852761209011078, 1.1347264051437378, -0.17526929080486298, 0.08013851195573807, 0.03295661881566048]} +{"t": 15.6309, "q": [-0.32685381174087524, -0.025041384622454643, 0.015400679782032967, 0.6135156154632568, -0.32000863552093506, 0.018338287249207497, -0.3794608414173126, -0.006740993354469538, 0.006280798930674791, 0.6190975904464722, -0.2967899441719055, 0.005023770034313202, 0.005048744846135378, 0.08126450330018997, -0.03426607698202133, -0.449983686208725, 0.5537670850753784, -0.7584696412086487, -0.6080436110496521, -0.6632429957389832, -0.6269906759262085, 0.12648151814937592, 0.00812530517578125, -0.3470032513141632, 0.018491659313440323, 1.1342350244522095, -0.17529326677322388, 0.0803542286157608, 0.03295661881566048]} +{"t": 15.6477, "q": [-0.32681119441986084, -0.025041384622454643, 0.015414072200655937, 0.613575279712677, -0.32000863552093506, 0.018338287249207497, -0.379435271024704, -0.006740993354469538, 0.006294190883636475, 0.6192169189453125, -0.296785831451416, 0.005030973814427853, 0.005021960940212011, 0.0812947005033493, -0.03425758704543114, -0.4468797743320465, 0.5581293106079102, -0.7585415244102478, -0.5981926321983337, -0.662595808506012, -0.6267510056495667, 0.12648151814937592, 0.008089352399110794, -0.34814172983169556, 0.018443722277879715, 1.1333482265472412, -0.17529326677322388, 0.0806059017777443, 0.03295661881566048]} +{"t": 15.6645, "q": [-0.32676008343696594, -0.025041384622454643, 0.015414072200655937, 0.6136519908905029, -0.32000863552093506, 0.018338287249207497, -0.37945231795310974, -0.006758037488907576, 0.006294190883636475, 0.6193021535873413, -0.2967899441719055, 0.005023770034313202, 0.004995177034288645, 0.08133254200220108, -0.034264132380485535, -0.44350022077560425, 0.5618444681167603, -0.758529543876648, -0.5884613990783691, -0.6615771651268005, -0.6263435482978821, 0.12649349868297577, 0.00800546258687973, -0.34913644194602966, 0.018443722277879715, 1.132173776626587, -0.17535318434238434, 0.0809294730424881, 0.032944634556770325]} +{"t": 15.6812, "q": [-0.32675155997276306, -0.025041384622454643, 0.015427463687956333, 0.6137201189994812, -0.32001692056655884, 0.01830923743546009, -0.3794608414173126, -0.006749515421688557, 0.006347758695483208, 0.6193873286247253, -0.2967899441719055, 0.005023770034313202, 0.004740730859339237, 0.08136267215013504, -0.03424583002924919, -0.43870654702186584, 0.5660269260406494, -0.7586014866828918, -0.5791736245155334, -0.6601630449295044, -0.6258521676063538, 0.12648151814937592, 0.008017446845769882, -0.35003525018692017, 0.018443722277879715, 1.1306277513504028, -0.1754610389471054, 0.08119312673807144, 0.03293265029788017]} +{"t": 15.6979, "q": [-0.3267345130443573, -0.0250158179551363, 0.015440856106579304, 0.6137883067131042, -0.31999629735946655, 0.018316613510251045, -0.3794608414173126, -0.006758037488907576, 0.006347758695483208, 0.6194469928741455, -0.29678162932395935, 0.0050236983224749565, 0.004392541944980621, 0.08137773722410202, -0.03423667699098587, -0.4337570369243622, 0.5701015591621399, -0.758901059627533, -0.5685076713562012, -0.6576703190803528, -0.625456690788269, 0.12645754218101501, 0.00800546258687973, -0.35095804929733276, 0.018443722277879715, 1.128302812576294, -0.1754131019115448, 0.08143281191587448, 0.03293265029788017]} +{"t": 15.7146, "q": [-0.3267430365085602, -0.025007296353578568, 0.015440856106579304, 0.6138564944267273, -0.32000043988227844, 0.01830933801829815, -0.37948641180992126, -0.006758037488907576, 0.006347758695483208, 0.619557797908783, -0.2967774271965027, 0.00501642283052206, 0.004245230928063393, 0.08140793442726135, -0.034228187054395676, -0.4277889132499695, 0.5733852386474609, -0.7590808272361755, -0.5581413507461548, -0.6561483144760132, -0.6246297955513, 0.12645754218101501, 0.007957525551319122, -0.35161715745925903, 0.018443722277879715, 1.1263134479522705, -0.1754131019115448, 0.08156463503837585, 0.03292066603899002]} +{"t": 15.7314, "q": [-0.3267430365085602, -0.024998774752020836, 0.015440856106579304, 0.6139843463897705, -0.32000041007995605, 0.018323838710784912, -0.3795204758644104, -0.006749515421688557, 0.006361150648444891, 0.6196430325508118, -0.2967941462993622, 0.005031045060604811, 0.004111311864107847, 0.08140033483505249, -0.03422295302152634, -0.42093393206596375, 0.5770044922828674, -0.7594643235206604, -0.546480655670166, -0.6548300385475159, -0.6236710548400879, 0.12646952271461487, 0.00812530517578125, -0.35206058621406555, 0.018443722277879715, 1.1245278120040894, -0.17537714540958405, 0.08174440264701843, 0.03292066603899002]} +{"t": 15.7481, "q": [-0.3267856240272522, -0.024981729686260223, 0.015440856106579304, 0.6140695214271545, -0.31999629735946655, 0.018316613510251045, -0.37959718704223633, -0.006740993354469538, 0.006361150648444891, 0.6197367310523987, -0.29678162932395935, 0.0050236983224749565, 0.004071136470884085, 0.08143044263124466, -0.03420473262667656, -0.4141029119491577, 0.5810551643371582, -0.7597399353981018, -0.5343166589736938, -0.6540031433105469, -0.6216457486152649, 0.12646952271461487, 0.008293083868920803, -0.3521684408187866, 0.018443722277879715, 1.1233294010162354, -0.17537714540958405, 0.0818282887339592, 0.03292066603899002]} +{"t": 15.7648, "q": [-0.3268367648124695, -0.024981729686260223, 0.015427463687956333, 0.6141206622123718, -0.31999629735946655, 0.018316613510251045, -0.3796142339706421, -0.006758037488907576, 0.006347758695483208, 0.6197367310523987, -0.2967817187309265, 0.005038177594542503, 0.004218447022140026, 0.08145302534103394, -0.0341910645365715, -0.4081107974052429, 0.5841470956802368, -0.760015606880188, -0.522188663482666, -0.6531762480735779, -0.6189972162246704, 0.12646952271461487, 0.008568720892071724, -0.35215646028518677, 0.018443722277879715, 1.122897982597351, -0.17540112137794495, 0.08196011930704117, 0.03292066603899002]} +{"t": 15.7816, "q": [-0.32690495252609253, -0.02496468648314476, 0.015427463687956333, 0.6142058968544006, -0.32000043988227844, 0.01830933801829815, -0.37963980436325073, -0.006758037488907576, 0.006361150648444891, 0.6197793483734131, -0.29678162932395935, 0.0050236983224749565, 0.004272014833986759, 0.08146048337221146, -0.034176722168922424, -0.40051281452178955, 0.5877423286437988, -0.7601953744888306, -0.5096531510353088, -0.6520736813545227, -0.6152821183204651, 0.12645754218101501, 0.008592689409852028, -0.35206058621406555, 0.018443722277879715, 1.1225982904434204, -0.1754131019115448, 0.08213987946510315, 0.03292066603899002]} +{"t": 15.7983, "q": [-0.3269219994544983, -0.024981729686260223, 0.015467639081180096, 0.6142144203186035, -0.31999218463897705, 0.01830938830971718, -0.37968242168426514, -0.006758037488907576, 0.006441501900553703, 0.6197623014450073, -0.29677751660346985, 0.0050309025682508945, 0.004258622881025076, 0.081490658223629, -0.03416828438639641, -0.3919201195240021, 0.5902950167655945, -0.76024329662323, -0.49739328026771545, -0.649880588054657, -0.6117947101593018, 0.12646952271461487, 0.008580705150961876, -0.3519047796726227, 0.018443722277879715, 1.122262716293335, -0.17549699544906616, 0.08219980448484421, 0.03293265029788017]} +{"t": 15.8151, "q": [-0.32690495252609253, -0.024998774752020836, 0.015574774704873562, 0.6142314672470093, -0.32000043988227844, 0.01830933801829815, -0.3797079622745514, -0.006783603690564632, 0.006508461199700832, 0.6197623014450073, -0.296777606010437, 0.005045381840318441, 0.004298798739910126, 0.08150564879179001, -0.03414938598871231, -0.38246455788612366, 0.5915653109550476, -0.7602552771568298, -0.4837073087692261, -0.6474238038063049, -0.6096495389938354, 0.12646952271461487, 0.00860467366874218, -0.3515931963920593, 0.018443722277879715, 1.1219152212142944, -0.17554493248462677, 0.08221178501844406, 0.03292066603899002]} +{"t": 15.8318, "q": [-0.3270242512226105, -0.0250158179551363, 0.015561383217573166, 0.6142144203186035, -0.32000041007995605, 0.018323838710784912, -0.37976762652397156, -0.006792126223444939, 0.006508461199700832, 0.6197708249092102, -0.2967859208583832, 0.0050454530864953995, 0.004338974133133888, 0.08150550723075867, -0.03412980958819389, -0.373320609331131, 0.5923682451248169, -0.7602193355560303, -0.46998536586761475, -0.6462014317512512, -0.6079477667808533, 0.12648151814937592, 0.008640626445412636, -0.3514494001865387, 0.01841975376009941, 1.121795415878296, -0.1754610389471054, 0.08227170258760452, 0.03292066603899002]} +{"t": 15.8486, "q": [-0.32726287841796875, -0.02502434141933918, 0.015561383217573166, 0.6142570376396179, -0.32000041007995605, 0.018323838710784912, -0.3799380660057068, -0.006783603690564632, 0.006495069246739149, 0.6197537779808044, -0.2967817187309265, 0.005038177594542503, 0.004432717338204384, 0.08149011433124542, -0.03408997878432274, -0.36473989486694336, 0.5933030247688293, -0.7602552771568298, -0.4569944739341736, -0.6452187299728394, -0.607001006603241, 0.12649349868297577, 0.008688563480973244, -0.35120970010757446, 0.018443722277879715, 1.1217354536056519, -0.1754850149154663, 0.08233162760734558, 0.03293265029788017]} +{"t": 15.8654, "q": [-0.32744184136390686, -0.02509251795709133, 0.015574774704873562, 0.6143081784248352, -0.32000863552093506, 0.018338287249207497, -0.380108505487442, -0.0068091703578829765, 0.006508461199700832, 0.6197367310523987, -0.296777606010437, 0.005045381840318441, 0.004446109291166067, 0.0814746543765068, -0.034040357917547226, -0.35461321473121643, 0.5946572422981262, -0.7602672576904297, -0.4432125985622406, -0.6437686085700989, -0.606030285358429, 0.12646952271461487, 0.008652610704302788, -0.3511258065700531, 0.018443722277879715, 1.1215556859970093, -0.17549699544906616, 0.08239154517650604, 0.03293265029788017]} +{"t": 15.8822, "q": [-0.3274588882923126, -0.025118084624409676, 0.015722084790468216, 0.6142655611038208, -0.32000863552093506, 0.018338287249207497, -0.38017669320106506, -0.006826214492321014, 0.006682556122541428, 0.6197452545166016, -0.29678189754486084, 0.005067136604338884, 0.0042854067869484425, 0.08148204535245895, -0.03401622548699379, -0.3436836004257202, 0.5962751507759094, -0.7603151798248291, -0.42889145016670227, -0.6416473984718323, -0.6050356030464172, 0.12649349868297577, 0.008436894975602627, -0.35106590390205383, 0.018443722277879715, 1.1212680339813232, -0.17552095651626587, 0.08241551369428635, 0.03293265029788017]} +{"t": 15.899, "q": [-0.32744184136390686, -0.02513512782752514, 0.015842612832784653, 0.6142655611038208, -0.32002511620521545, 0.018352705985307693, -0.38018521666526794, -0.006826214492321014, 0.0068030827678740025, 0.6197196841239929, -0.296781986951828, 0.005081615876406431, 0.0042854067869484425, 0.08148197829723358, -0.03400643914937973, -0.33416813611984253, 0.5980128645896912, -0.760159432888031, -0.41526538133621216, -0.6389749050140381, -0.6038252115249634, 0.12649349868297577, 0.008448879234492779, -0.3509220778942108, 0.018443722277879715, 1.1209444999694824, -0.17549699544906616, 0.0824275016784668, 0.03292066603899002]} +{"t": 15.9157, "q": [-0.3274588882923126, -0.025228871032595634, 0.015829220414161682, 0.6142314672470093, -0.32002511620521545, 0.01833820715546608, -0.3801511228084564, -0.00686030276119709, 0.006816474720835686, 0.6197282075881958, -0.2967861294746399, 0.005074411630630493, 0.004365758039057255, 0.08147437870502472, -0.03400120511651039, -0.32520392537117004, 0.599678635597229, -0.7601474523544312, -0.40053677558898926, -0.6364821791648865, -0.6021713614463806, 0.12649349868297577, 0.008520783856511116, -0.3507542908191681, 0.018443722277879715, 1.1208486557006836, -0.17550897598266602, 0.08249940723180771, 0.03292066603899002]} +{"t": 15.9325, "q": [-0.3274588882923126, -0.02532261423766613, 0.015829220414161682, 0.614248514175415, -0.32003334164619446, 0.018352655693888664, -0.38014259934425354, -0.006945523899048567, 0.006816474720835686, 0.6197282075881958, -0.2967861294746399, 0.005074411630630493, 0.004432717338204384, 0.08145906031131744, -0.033971160650253296, -0.31584426760673523, 0.600649356842041, -0.7601114511489868, -0.3851490318775177, -0.6353796720504761, -0.5991633534431458, 0.12650547921657562, 0.008424910716712475, -0.3503228724002838, 0.018443722277879715, 1.120728850364685, -0.17553295195102692, 0.08252337574958801, 0.03293265029788017]} +{"t": 15.9493, "q": [-0.3274674117565155, -0.025424880906939507, 0.015856005251407623, 0.614248514175415, -0.32002511620521545, 0.018352705985307693, -0.38014259934425354, -0.006996656768023968, 0.0068566505797207355, 0.6197196841239929, -0.2967696487903595, 0.005103245377540588, 0.004405933897942305, 0.08149648457765579, -0.033919017761945724, -0.3060411512851715, 0.60147625207901, -0.7597998976707458, -0.37031257152557373, -0.6342291831970215, -0.5965148210525513, 0.12649349868297577, 0.008269115351140499, -0.3499753177165985, 0.01846769079566002, 1.120453119277954, -0.17552095651626587, 0.08257131278514862, 0.03295661881566048]} +{"t": 15.966, "q": [-0.32745036482810974, -0.025424880906939507, 0.015882788226008415, 0.6142740845680237, -0.32002508640289307, 0.018367206677794456, -0.380108505487442, -0.007013700902462006, 0.006870042532682419, 0.6197282075881958, -0.2967696487903595, 0.005103245377540588, 0.004312190227210522, 0.0813826397061348, -0.03385031968355179, -0.29681330919265747, 0.6025069355964661, -0.7600635290145874, -0.3540259897708893, -0.6324914693832397, -0.5927877426147461, 0.12646952271461487, 0.00820919405668974, -0.3495199382305145, 0.01846769079566002, 1.1202374696731567, -0.17552095651626587, 0.08257131278514862, 0.03293265029788017]} +{"t": 15.9828, "q": [-0.3274759352207184, -0.025467490777373314, 0.015882788226008415, 0.6142740845680237, -0.32002508640289307, 0.018367206677794456, -0.380108505487442, -0.00703926756978035, 0.006843258626759052, 0.6197452545166016, -0.29675301909446716, 0.005103102419525385, 0.004365758039057255, 0.08131414651870728, -0.033783648163080215, -0.28825655579566956, 0.6036694049835205, -0.7602672576904297, -0.33781135082244873, -0.630382239818573, -0.5895999073982239, 0.12651745975017548, 0.00814927276223898, -0.3491723835468292, 0.018491659313440323, 1.120093584060669, -0.17554493248462677, 0.08265519887208939, 0.03296860307455063]} +{"t": 15.9996, "q": [-0.3274588882923126, -0.025484533980488777, 0.01593635603785515, 0.6143422722816467, -0.32001686096191406, 0.018352756276726723, -0.3801255524158478, -0.0070307450369000435, 0.006896826438605785, 0.6197452545166016, -0.2967323362827301, 0.005124642979353666, 0.004338974133133888, 0.0812525823712349, -0.033624328672885895, -0.2796519100666046, 0.6049876809120178, -0.7602912187576294, -0.32241159677505493, -0.6272184252738953, -0.5884254574775696, 0.12649349868297577, 0.008041415363550186, -0.34886080026626587, 0.01847967505455017, 1.1197580099105835, -0.17554493248462677, 0.08269115537405014, 0.03296860307455063]} +{"t": 16.0163, "q": [-0.32744184136390686, -0.025493057444691658, 0.016016706824302673, 0.6143593192100525, -0.32002100348472595, 0.018345480784773827, -0.38013407588005066, -0.00703926756978035, 0.006990569643676281, 0.6197708249092102, -0.2967323362827301, 0.005124642979353666, 0.004030960611999035, 0.08124443888664246, -0.03354078531265259, -0.2706157863140106, 0.606174111366272, -0.760470986366272, -0.30625689029693604, -0.6253848075866699, -0.5873588919639587, 0.12648151814937592, 0.008041415363550186, -0.3485492169857025, 0.018503643572330475, 1.1195663213729858, -0.1756647676229477, 0.08269115537405014, 0.032944634556770325]} +{"t": 16.0331, "q": [-0.32731401920318604, -0.025476012378931046, 0.01615062542259693, 0.614325225353241, -0.32002925872802734, 0.018330931663513184, -0.3801255524158478, -0.0070307450369000435, 0.00705752894282341, 0.619856059551239, -0.2967323362827301, 0.005124642979353666, 0.003468500915914774, 0.08126674592494965, -0.033487964421510696, -0.26126810908317566, 0.6072526574134827, -0.7607346773147583, -0.2903178632259369, -0.623802900314331, -0.5866877436637878, 0.12648151814937592, 0.008029431104660034, -0.34832149744033813, 0.018515627831220627, 1.119182825088501, -0.17565278708934784, 0.08270313590765, 0.032944634556770325]} +{"t": 16.0498, "q": [-0.32731401920318604, -0.025467490777373314, 0.01613723486661911, 0.6143593192100525, -0.32002097368240356, 0.01835998147726059, -0.380108505487442, -0.0070222229696810246, 0.00705752894282341, 0.6199327707290649, -0.29673653841018677, 0.005131918005645275, 0.0036425956059247255, 0.08125908672809601, -0.0334729440510273, -0.25430527329444885, 0.6079477667808533, -0.7611541152000427, -0.27400732040405273, -0.6218854188919067, -0.586220383644104, 0.12648151814937592, 0.007957525551319122, -0.3481297492980957, 0.01852761209011078, 1.1188232898712158, -0.1756887435913086, 0.08271512389183044, 0.03295661881566048]} +{"t": 16.0666, "q": [-0.3273310661315918, -0.0254504457116127, 0.016083667054772377, 0.6143678426742554, -0.32002100348472595, 0.018345480784773827, -0.38013407588005066, -0.0070307450369000435, 0.007003961596637964, 0.6199498176574707, -0.2967282235622406, 0.005131846759468317, 0.003696163184940815, 0.08125142753124237, -0.0334579199552536, -0.2458324134349823, 0.6086308360099792, -0.7611061334609985, -0.2571934461593628, -0.6191650032997131, -0.5855971574783325, 0.12648151814937592, 0.007981494069099426, -0.3479499816894531, 0.018515627831220627, 1.1185956001281738, -0.17570072412490845, 0.08271512389183044, 0.03296860307455063]} +{"t": 16.0833, "q": [-0.3273310661315918, -0.025433402508497238, 0.016083667054772377, 0.614393413066864, -0.32002100348472595, 0.018345480784773827, -0.3801681697368622, -0.007005178835242987, 0.006990569643676281, 0.6199753880500793, -0.29672813415527344, 0.00511736748740077, 0.0038568659219890833, 0.0812813937664032, -0.033420123159885406, -0.23726369440555573, 0.609170138835907, -0.761130154132843, -0.24093087017536163, -0.6175231337547302, -0.5853934288024902, 0.12648151814937592, 0.007921572774648666, -0.3477822244167328, 0.018551580607891083, 1.1182960271835327, -0.1757127046585083, 0.08273909240961075, 0.03295661881566048]} +{"t": 16.1, "q": [-0.3273395895957947, -0.025424880906939507, 0.016043491661548615, 0.6143763661384583, -0.32001686096191406, 0.018352756276726723, -0.38013407588005066, -0.007013700902462006, 0.006963785737752914, 0.6199924349784851, -0.29673653841018677, 0.005131918005645275, 0.0038702578749507666, 0.08126627653837204, -0.033419445157051086, -0.22826354205608368, 0.6093499064445496, -0.7610821723937988, -0.2245364487171173, -0.616037130355835, -0.5849979519844055, 0.12649349868297577, 0.00777776213362813, -0.3477582335472107, 0.018551580607891083, 1.1181402206420898, -0.1757127046585083, 0.0827510729432106, 0.03295661881566048]} +{"t": 16.1169, "q": [-0.32730549573898315, -0.025416357442736626, 0.016016706824302673, 0.6143763661384583, -0.32002100348472595, 0.018345480784773827, -0.38013407588005066, -0.006996656768023968, 0.006950393784791231, 0.620000958442688, -0.2967448830604553, 0.0051319897174835205, 0.0039506093598902225, 0.08128899335861206, -0.033425357192754745, -0.2200423628091812, 0.6094218492507935, -0.7612020373344421, -0.20868131518363953, -0.6150304675102234, -0.5844946503639221, 0.12650547921657562, 0.007765777874737978, -0.347734272480011, 0.018611501902341843, 1.1179004907608032, -0.1757366806268692, 0.0827750414609909, 0.03293265029788017]} +{"t": 16.1339, "q": [-0.3272884488105774, -0.025407835841178894, 0.016003314405679703, 0.6143763661384583, -0.32001686096191406, 0.018352756276726723, -0.3801511228084564, -0.006996656768023968, 0.006923609878867865, 0.6200435757637024, -0.2967407703399658, 0.005139193497598171, 0.004111311864107847, 0.08128891885280609, -0.03341556712985039, -0.2126600742340088, 0.6092060804367065, -0.7617892622947693, -0.19077688455581665, -0.6144192218780518, -0.5840631723403931, 0.12648151814937592, 0.007765777874737978, -0.34759047627449036, 0.01858753338456154, 1.1176248788833618, -0.1757606416940689, 0.08278702944517136, 0.032944634556770325]} +{"t": 16.1509, "q": [-0.3272969722747803, -0.02538226917386055, 0.01594974845647812, 0.6143678426742554, -0.32001274824142456, 0.018345512449741364, -0.3801681697368622, -0.006988134700804949, 0.0068566505797207355, 0.620069146156311, -0.29674068093299866, 0.005124714225530624, 0.004151487722992897, 0.08130397647619247, -0.03340645506978035, -0.2054935097694397, 0.609086275100708, -0.7619450688362122, -0.17401094734668732, -0.6142994165420532, -0.5836437344551086, 0.12646952271461487, 0.007729825098067522, -0.3476264178752899, 0.01858753338456154, 1.1173851490020752, -0.17577263712882996, 0.08278702944517136, 0.03295661881566048]} +{"t": 16.1676, "q": [-0.3272799253463745, -0.025348180904984474, 0.015909571200609207, 0.6143763661384583, -0.32001274824142456, 0.018345512449741364, -0.38014259934425354, -0.00697961263358593, 0.0068030827678740025, 0.620069146156311, -0.2967489957809448, 0.00512478593736887, 0.004178271628916264, 0.08131150156259537, -0.03340189903974533, -0.19813519716262817, 0.609086275100708, -0.7618371844291687, -0.15788018703460693, -0.6142514944076538, -0.5834160447120667, 0.12649349868297577, 0.007562045939266682, -0.3475545048713684, 0.01858753338456154, 1.116953730583191, -0.17580857872962952, 0.08281099796295166, 0.03295661881566048]} +{"t": 16.1844, "q": [-0.32726287841796875, -0.02532261423766613, 0.015882788226008415, 0.6143593192100525, -0.32001274824142456, 0.018345512449741364, -0.3801596462726593, -0.006954045966267586, 0.006829866673797369, 0.6201457977294922, -0.29675301909446716, 0.005103102419525385, 0.004030960611999035, 0.08131150156259537, -0.03340189903974533, -0.19000989198684692, 0.609170138835907, -0.7614057660102844, -0.1404910683631897, -0.6142394542694092, -0.5827089548110962, 0.12654143571853638, 0.007274424657225609, -0.34751856327056885, 0.01858753338456154, 1.1164864301681519, -0.17580857872962952, 0.08284694701433182, 0.03295661881566048]} +{"t": 16.2012, "q": [-0.3272884488105774, -0.025288525968790054, 0.015882788226008415, 0.6143422722816467, -0.32001274824142456, 0.018345512449741364, -0.38021931052207947, -0.00691995769739151, 0.0068030827678740025, 0.6201287508010864, -0.29676973819732666, 0.005117724649608135, 0.003977392800152302, 0.08131902664899826, -0.03339734300971031, -0.18283134698867798, 0.6092900037765503, -0.7614177465438843, -0.12307799607515335, -0.6142274737358093, -0.5820378661155701, 0.12651745975017548, 0.007166566792875528, -0.3474826216697693, 0.01865943893790245, 1.1155036687850952, -0.17583255469799042, 0.08283496648073196, 0.03293265029788017]} +{"t": 16.218, "q": [-0.32731401920318604, -0.025297047570347786, 0.015896180644631386, 0.6143167018890381, -0.32001274824142456, 0.01833101361989975, -0.38027894496917725, -0.00691995769739151, 0.0068030827678740025, 0.6201543211936951, -0.29676544666290283, 0.005095969885587692, 0.004017568659037352, 0.08134160935878754, -0.033383674919605255, -0.17634788155555725, 0.6091461777687073, -0.7617173790931702, -0.10615626722574234, -0.6143353581428528, -0.5804439783096313, 0.12654143571853638, 0.0070826769806444645, -0.34749460220336914, 0.018683407455682755, 1.1146408319473267, -0.17585651576519012, 0.08287091553211212, 0.032944634556770325]} +{"t": 16.2347, "q": [-0.32739922404289246, -0.025280004367232323, 0.015882788226008415, 0.6142996549606323, -0.32002100348472595, 0.018345480784773827, -0.3803471326828003, -0.006911435630172491, 0.0067896912805736065, 0.6201457977294922, -0.2967696487903595, 0.005103245377540588, 0.004004176706075668, 0.0812801718711853, -0.03324392810463905, -0.16922923922538757, 0.608942449092865, -0.7620049715042114, -0.08813199400901794, -0.614395260810852, -0.5779392719268799, 0.12650547921657562, 0.0070826769806444645, -0.3474586308002472, 0.018671423196792603, 1.1141254901885986, -0.17585651576519012, 0.08285893499851227, 0.032944634556770325]} +{"t": 16.2515, "q": [-0.32745036482810974, -0.02527148276567459, 0.015909571200609207, 0.6142655611038208, -0.32002100348472595, 0.018345480784773827, -0.38040679693222046, -0.006902913562953472, 0.0067896912805736065, 0.6201372742652893, -0.29678210616111755, 0.005096095148473978, 0.004004176706075668, 0.08120293915271759, -0.03300561010837555, -0.16202671825885773, 0.6089304685592651, -0.7620528936386108, -0.07047922909259796, -0.6144192218780518, -0.574787437915802, 0.12650547921657562, 0.006998787634074688, -0.3474107086658478, 0.018671423196792603, 1.1139217615127563, -0.17585651576519012, 0.08285893499851227, 0.03293265029788017]} +{"t": 16.2683, "q": [-0.3274588882923126, -0.025280004367232323, 0.01593635603785515, 0.614248514175415, -0.32001686096191406, 0.018352756276726723, -0.3804238438606262, -0.006911435630172491, 0.006816474720835686, 0.6201117038726807, -0.2967863976955414, 0.005117867607623339, 0.003910433501005173, 0.08116266876459122, -0.03263644501566887, -0.15387745201587677, 0.609026312828064, -0.76172935962677, -0.052562810480594635, -0.6144312024116516, -0.5702573657035828, 0.12650547921657562, 0.006902913562953472, -0.3473747670650482, 0.018695391714572906, 1.1136341094970703, -0.17588049173355103, 0.08287091553211212, 0.03293265029788017]} +{"t": 16.2851, "q": [-0.3274759352207184, -0.025305571034550667, 0.01596313901245594, 0.6141718029975891, -0.32002511620521545, 0.018352705985307693, -0.38046643137931824, -0.006911435630172491, 0.006870042532682419, 0.6201031804084778, -0.29680725932121277, 0.005125286057591438, 0.003910433501005173, 0.08118294179439545, -0.032279789447784424, -0.14667493104934692, 0.6090623140335083, -0.7618731260299683, -0.034023214131593704, -0.6145271062850952, -0.5675728917121887, 0.12651745975017548, 0.0068789455108344555, -0.3473747670650482, 0.018743328750133514, 1.1134064197540283, -0.17590445280075073, 0.08287091553211212, 0.03293265029788017]} +{"t": 16.3018, "q": [-0.32744184136390686, -0.02533113770186901, 0.01597653143107891, 0.6142058968544006, -0.32002919912338257, 0.01835993118584156, -0.38041532039642334, -0.006928479764610529, 0.006910218391567469, 0.6201202273368835, -0.2967989444732666, 0.00512521481141448, 0.0038568659219890833, 0.08117672801017761, -0.031369198113679886, -0.13881328701972961, 0.6091461777687073, -0.7621967196464539, -0.01435710210353136, -0.6146469712257385, -0.5660749077796936, 0.12651745975017548, 0.006747118663042784, -0.347278892993927, 0.01876729726791382, 1.1131068468093872, -0.17592842876911163, 0.08285893499851227, 0.032944634556770325]} +{"t": 16.3186, "q": [-0.32749298214912415, -0.025365225970745087, 0.01598992384970188, 0.6141973733901978, -0.32002508640289307, 0.018367206677794456, -0.38041532039642334, -0.006928479764610529, 0.006910218391567469, 0.620086133480072, -0.2967948317527771, 0.005132418591529131, 0.00388364982791245, 0.08114618808031082, -0.03028786927461624, -0.13158679008483887, 0.609026312828064, -0.7626161575317383, 0.0063037024810910225, -0.6146829128265381, -0.5649003982543945, 0.12652945518493652, 0.006711166352033615, -0.347278892993927, 0.018755313009023666, 1.1130110025405884, -0.1759883463382721, 0.08288290351629257, 0.03293265029788017]} +{"t": 16.3354, "q": [-0.32752707600593567, -0.02538226917386055, 0.016003314405679703, 0.6142314672470093, -0.32002922892570496, 0.018345430493354797, -0.38041532039642334, -0.006962568499147892, 0.006896826438605785, 0.620086133480072, -0.2967946231365204, 0.005103460047394037, 0.0039506093598902225, 0.0808400884270668, -0.028715021908283234, -0.12418054044246674, 0.6090742945671082, -0.7625921964645386, 0.027036411687731743, -0.6146948933601379, -0.5634982585906982, 0.12649349868297577, 0.006591323763132095, -0.3473268151283264, 0.018755313009023666, 1.1125555038452148, -0.1759883463382721, 0.08290687203407288, 0.03293265029788017]} +{"t": 16.3521, "q": [-0.3275611400604248, -0.025416357442736626, 0.016043491661548615, 0.6142058968544006, -0.32002922892570496, 0.018345430493354797, -0.3804493844509125, -0.006945523899048567, 0.006950393784791231, 0.6200946569442749, -0.2967863976955414, 0.005117867607623339, 0.003937217406928539, 0.08059480041265488, -0.02723408117890358, -0.11714579910039902, 0.6090503334999084, -0.7625203132629395, 0.04721784591674805, -0.6147068738937378, -0.5621320605278015, 0.12650547921657562, 0.006507434416562319, -0.3473028540611267, 0.018755313009023666, 1.1118963956832886, -0.17600032687187195, 0.08290687203407288, 0.03293265029788017]} +{"t": 16.3689, "q": [-0.32753556966781616, -0.025424880906939507, 0.016097059473395348, 0.614248514175415, -0.32003334164619446, 0.018352655693888664, -0.3804323673248291, -0.00697961263358593, 0.006977177690714598, 0.6201031804084778, -0.2967780828475952, 0.005117814056575298, 0.003669379511848092, 0.08053003996610641, -0.0256945863366127, -0.10914033651351929, 0.609086275100708, -0.7622566223144531, 0.0682741329073906, -0.6146829128265381, -0.5604422688484192, 0.12651745975017548, 0.006399576086550951, -0.3466317355632782, 0.01883920282125473, 1.1106140613555908, -0.17600032687187195, 0.08291885256767273, 0.03293265029788017]} +{"t": 16.3856, "q": [-0.32749298214912415, -0.025433402508497238, 0.016217585653066635, 0.6142996549606323, -0.32002922892570496, 0.018345430493354797, -0.3803897500038147, -0.006962568499147892, 0.0070307450369000435, 0.6201117038726807, -0.29678648710250854, 0.0051323650404810905, 0.0035354604478925467, 0.08038739860057831, -0.023898771032691002, -0.10160226374864578, 0.6091102361679077, -0.7625682353973389, 0.0893663689494133, -0.6146948933601379, -0.5577818155288696, 0.12651745975017548, 0.006483465898782015, -0.3457808494567871, 0.018851187080144882, 1.1089962720870972, -0.1759883463382721, 0.08290687203407288, 0.03293265029788017]} +{"t": 16.4023, "q": [-0.3275611400604248, -0.02544192411005497, 0.016230978071689606, 0.6143763661384583, -0.32003334164619446, 0.018352655693888664, -0.3804238438606262, -0.006971090566366911, 0.007044136989861727, 0.6201031804084778, -0.2967739701271057, 0.005125018302351236, 0.0035354604478925467, 0.08016028255224228, -0.021969683468341827, -0.09502292424440384, 0.6091461777687073, -0.7626761198043823, 0.10911636799573898, -0.6146589517593384, -0.5548456311225891, 0.12650547921657562, 0.006519418675452471, -0.34509775042533875, 0.01889912411570549, 1.107222557067871, -0.176012322306633, 0.08293084055185318, 0.03295661881566048]} +{"t": 16.419, "q": [-0.32757818698883057, -0.025493057444691658, 0.016257761046290398, 0.6144700646400452, -0.32002919912338257, 0.01835993118584156, -0.38041532039642334, -0.00697961263358593, 0.007111096754670143, 0.6201117038726807, -0.29676973819732666, 0.005117724649608135, 0.0035354604478925467, 0.08014945685863495, -0.019814619794487953, -0.08803611993789673, 0.6090742945671082, -0.7627719640731812, 0.12992098927497864, -0.6146469712257385, -0.5510826110839844, 0.12650547921657562, 0.006555370986461639, -0.34454646706581116, 0.01894705928862095, 1.1053171157836914, -0.1759883463382721, 0.08295480906963348, 0.03295661881566048]} +{"t": 16.4358, "q": [-0.3277912437915802, -0.02551010064780712, 0.016257761046290398, 0.6147087216377258, -0.32003334164619446, 0.018352655693888664, -0.3804493844509125, -0.006988134700804949, 0.00705752894282341, 0.6201117038726807, -0.29676151275634766, 0.005132132675498724, 0.003468500915914774, 0.08013350516557693, -0.017996249720454216, -0.0809534415602684, 0.6090623140335083, -0.7630835771560669, 0.15056981146335602, -0.6146109700202942, -0.5475592613220215, 0.12650547921657562, 0.006483465898782015, -0.3442109227180481, 0.0189590435475111, 1.1032438278198242, -0.176012322306633, 0.08294282108545303, 0.03295661881566048]} +{"t": 16.4526, "q": [-0.32781681418418884, -0.02556975558400154, 0.016351504251360893, 0.6147257685661316, -0.32004570960998535, 0.01835983246564865, -0.38050052523612976, -0.0070307450369000435, 0.007151272147893906, 0.6201117038726807, -0.2967574894428253, 0.0051538338884711266, 0.003173879347741604, 0.08025477081537247, -0.016360487788915634, -0.07319964468479156, 0.6088106036186218, -0.7634910345077515, 0.17272864282131195, -0.6146349310874939, -0.5457736253738403, 0.12650547921657562, 0.0062797339633107185, -0.3440670967102051, 0.01906690187752247, 1.1010267734527588, -0.1760602593421936, 0.08295480906963348, 0.03296860307455063]} +{"t": 16.4693, "q": [-0.3277997672557831, -0.025595322251319885, 0.01644524745643139, 0.6147513389587402, -0.3200456500053406, 0.018388831987977028, -0.38050052523612976, -0.00703926756978035, 0.0072584073059260845, 0.6201117038726807, -0.29675328731536865, 0.0051465402357280254, 0.003066744189709425, 0.08023295551538467, -0.014831660315394402, -0.06545783579349518, 0.6087027788162231, -0.7642819881439209, 0.19631358981132507, -0.6146469712257385, -0.544455349445343, 0.12648151814937592, 0.006171876098960638, -0.34404313564300537, 0.019102854654192924, 1.0983902215957642, -0.17607223987579346, 0.08296678960323334, 0.032944634556770325]} +{"t": 16.486, "q": [-0.32777419686317444, -0.025603843852877617, 0.016579166054725647, 0.6147769093513489, -0.32005801796913147, 0.018381506204605103, -0.3804920017719269, -0.0070307450369000435, 0.00735215051099658, 0.6201117038726807, -0.29675760865211487, 0.005168313160538673, 0.0030533522367477417, 0.08003901690244675, -0.01345578022301197, -0.059309929609298706, 0.6086907982826233, -0.7657200694084167, 0.21897576749324799, -0.6146948933601379, -0.5430651903152466, 0.12649349868297577, 0.006087986286729574, -0.3440910875797272, 0.019102854654192924, 1.0962809324264526, -0.17607223987579346, 0.08295480906963348, 0.03293265029788017]} +{"t": 16.5027, "q": [-0.32781681418418884, -0.02562941052019596, 0.016579166054725647, 0.6147342920303345, -0.3200497627258301, 0.018396057188510895, -0.3804920017719269, -0.00703926756978035, 0.007338759023696184, 0.6201287508010864, -0.296740859746933, 0.005153672769665718, 0.003106919815763831, 0.079874686896801, -0.012073034420609474, -0.05331781879067421, 0.6086428761482239, -0.7673499584197998, 0.24351945519447327, -0.6147188544273376, -0.5413394570350647, 0.12651745975017548, 0.006147907581180334, -0.34417495131492615, 0.01913880743086338, 1.0936444997787476, -0.17607223987579346, 0.08296678960323334, 0.03295661881566048]} +{"t": 16.5196, "q": [-0.3277997672557831, -0.02562941052019596, 0.016579166054725647, 0.6148109436035156, -0.32004979252815247, 0.018381556496024132, -0.3804749548435211, -0.007013700902462006, 0.007298583164811134, 0.620162844657898, -0.2967449724674225, 0.005146468989551067, 0.003106919815763831, 0.07968658953905106, -0.010568700730800629, -0.04623514041304588, 0.6085469722747803, -0.7684045433998108, 0.26773956418037415, -0.6147787570953369, -0.5394339561462402, 0.12651745975017548, 0.006147907581180334, -0.34422290325164795, 0.01918674446642399, 1.0904686450958252, -0.17612017691135406, 0.08295480906963348, 0.03295661881566048]} +{"t": 16.5363, "q": [-0.32780829071998596, -0.025612367317080498, 0.01661934331059456, 0.6148876547813416, -0.3200456202030182, 0.01840333081781864, -0.38050052523612976, -0.007005178835242987, 0.007325367070734501, 0.6201884150505066, -0.2967199981212616, 0.0051462724804878235, 0.003066744189709425, 0.07947555929422379, -0.009099680930376053, -0.03946405276656151, 0.608259379863739, -0.7691475749015808, 0.29065340757369995, -0.6150424480438232, -0.5371449589729309, 0.12650547921657562, 0.006111954804509878, -0.34417495131492615, 0.019246665760874748, 1.0869572162628174, -0.1760842204093933, 0.08294282108545303, 0.03295661881566048]} +{"t": 16.553, "q": [-0.3277997672557831, -0.025612367317080498, 0.016579166054725647, 0.6150155067443848, -0.3200456202030182, 0.01840333081781864, -0.380483478307724, -0.00697961263358593, 0.007298583164811134, 0.6203503608703613, -0.2967199981212616, 0.0051462724804878235, 0.002852473873645067, 0.07906566560268402, -0.007331124506890774, -0.032417330890893936, 0.6079837083816528, -0.7692914009094238, 0.31488552689552307, -0.6151502728462219, -0.5336096286773682, 0.12650547921657562, 0.006076002027839422, -0.3441390097141266, 0.019366508349776268, 1.0824871063232422, -0.1761081963777542, 0.08295480906963348, 0.032944634556770325]} +{"t": 16.5697, "q": [-0.3278423845767975, -0.025595322251319885, 0.016592558473348618, 0.6151518821716309, -0.3200415074825287, 0.018396105617284775, -0.3805346190929413, -0.00697961263358593, 0.007285191211849451, 0.6205037236213684, -0.29670748114585876, 0.005138925742357969, 0.0027721223887056112, 0.07857448607683182, -0.005789198447018862, -0.02563425712287426, 0.6079956889152527, -0.7694112062454224, 0.3366968035697937, -0.6152821183204651, -0.5286601185798645, 0.12650547921657562, 0.00612393906340003, -0.3440670967102051, 0.01943841390311718, 1.0779091119766235, -0.1760842204093933, 0.08294282108545303, 0.03295661881566048]} +{"t": 16.5865, "q": [-0.32785090804100037, -0.025586800649762154, 0.016592558473348618, 0.6152881979942322, -0.3200373947620392, 0.01840338110923767, -0.3805260956287384, -0.006937001831829548, 0.007271799258887768, 0.6205633878707886, -0.2966783940792084, 0.0051458971574902534, 0.0027989062946289778, 0.07798673957586288, -0.00436347397044301, -0.01967809721827507, 0.6078039407730103, -0.7701422572135925, 0.36082106828689575, -0.6152940988540649, -0.5242738723754883, 0.12649349868297577, 0.006111954804509878, -0.34397122263908386, 0.019450398162007332, 1.074134111404419, -0.17607223987579346, 0.08291885256767273, 0.03293265029788017]} +{"t": 16.6032, "q": [-0.32785090804100037, -0.02556123398244381, 0.01661934331059456, 0.6154927611351013, -0.3200291395187378, 0.0184034314006567, -0.38050052523612976, -0.006971090566366911, 0.007245015352964401, 0.6207253336906433, -0.2966660261154175, 0.005167526658624411, 0.0028122980147600174, 0.07719677686691284, -0.0030695570167154074, -0.013338442891836166, 0.6075283288955688, -0.770334005355835, 0.38493332266807556, -0.6154139637947083, -0.5219249725341797, 0.12649349868297577, 0.006195844616740942, -0.3438873291015625, 0.019474366679787636, 1.0699995756149292, -0.1760602593421936, 0.08294282108545303, 0.03295661881566048]} +{"t": 16.6199, "q": [-0.3278253376483917, -0.025578279048204422, 0.016605950891971588, 0.6156461238861084, -0.3200332820415497, 0.018396155908703804, -0.38046643137931824, -0.006962568499147892, 0.007271799258887768, 0.620904266834259, -0.2966577112674713, 0.0051674554124474525, 0.0027989062946289778, 0.07658450305461884, -0.0022049557883292437, -0.007753793615847826, 0.6074804067611694, -0.7701901793479919, 0.40835049748420715, -0.6157255172729492, -0.5202711820602417, 0.12652945518493652, 0.0062917182222008705, -0.3436836004257202, 0.0195582564920187, 1.0665960311889648, -0.1760602593421936, 0.08288290351629257, 0.032944634556770325]} +{"t": 16.6366, "q": [-0.32781681418418884, -0.02556975558400154, 0.016605950891971588, 0.6159018278121948, -0.3200332522392273, 0.018410656601190567, -0.38045790791511536, -0.006962568499147892, 0.007285191211849451, 0.6210747361183167, -0.2966577112674713, 0.0051674554124474525, 0.002852473873645067, 0.07584573328495026, -0.0014836834743618965, -0.0011504855938255787, 0.6069530844688416, -0.7702142000198364, 0.4327743351459503, -0.6160251498222351, -0.5188690423965454, 0.12651745975017548, 0.0062797339633107185, -0.3433360755443573, 0.019570238888263702, 1.0630847215652466, -0.1760362833738327, 0.08289488404989243, 0.03295661881566048]} +{"t": 16.6535, "q": [-0.32780829071998596, -0.02556975558400154, 0.01664612628519535, 0.6161319017410278, -0.3200249969959259, 0.01841072365641594, -0.3803897500038147, -0.00697961263358593, 0.007298583164811134, 0.6212025880813599, -0.2966246008872986, 0.005196128040552139, 0.002691771136596799, 0.07501726597547531, -0.0008265652577392757, 0.005476790945976973, 0.6057906150817871, -0.7701781988143921, 0.4560357332229614, -0.6167082190513611, -0.5173590183258057, 0.12651745975017548, 0.0062677497044205666, -0.3427847921848297, 0.019702065736055374, 1.0592018365859985, -0.17597636580467224, 0.08293084055185318, 0.032944634556770325]} +{"t": 16.6702, "q": [-0.3277827203273773, -0.025586800649762154, 0.01665951870381832, 0.6163790225982666, -0.3200291395187378, 0.0184034314006567, -0.38031303882598877, -0.006988134700804949, 0.007285191211849451, 0.6212877631187439, -0.29659175872802734, 0.0052682748064398766, 0.002691771136596799, 0.07422725111246109, -0.00024405150907114148, 0.011085408739745617, 0.6044363975524902, -0.7703579664230347, 0.47775113582611084, -0.6167201995849609, -0.5158250331878662, 0.12648151814937592, 0.006495450157672167, -0.34224551916122437, 0.019761987030506134, 1.0552829504013062, -0.1759404093027115, 0.08293084055185318, 0.03293265029788017]} +{"t": 16.6869, "q": [-0.3277827203273773, -0.02556123398244381, 0.016699694097042084, 0.6166176795959473, -0.320029079914093, 0.01843244954943657, -0.380253404378891, -0.006988134700804949, 0.007298583164811134, 0.6213900446891785, -0.29651743173599243, 0.005354525521397591, 0.002651595277711749, 0.0733242928981781, 0.00033901294227689505, 0.016873789951205254, 0.6028664708137512, -0.770250141620636, 0.4996583163738251, -0.617007851600647, -0.5131884813308716, 0.12649349868297577, 0.006507434416562319, -0.34145453572273254, 0.01979793980717659, 1.0528740882873535, -0.17591644823551178, 0.08290687203407288, 0.03292066603899002]} +{"t": 16.7037, "q": [-0.32776567339897156, -0.02556975558400154, 0.01665951870381832, 0.616864800453186, -0.3200332224369049, 0.018425174057483673, -0.380108505487442, -0.006996656768023968, 0.007298583164811134, 0.6213985681533813, -0.29644307494163513, 0.005440775770694017, 0.0027453387156128883, 0.07231459766626358, 0.0010304395109415054, 0.021271999925374985, 0.600877046585083, -0.7702021598815918, 0.521217942237854, -0.6170797348022461, -0.5096052289009094, 0.12648151814937592, 0.00678307143971324, -0.3408673107624054, 0.019833892583847046, 1.0510284900665283, -0.17584453523159027, 0.08290687203407288, 0.03295661881566048]} +{"t": 16.7204, "q": [-0.3277827203273773, -0.02556975558400154, 0.01664612628519535, 0.6172056794166565, -0.320029079914093, 0.01843244954943657, -0.38000625371932983, -0.006996656768023968, 0.007271799258887768, 0.6215349435806274, -0.2963027060031891, 0.005613384768366814, 0.002946217078715563, 0.07124435901641846, 0.0017537594540044665, 0.025322668254375458, 0.5990674495697021, -0.7700823545455933, 0.5408360958099365, -0.6172714829444885, -0.5060219168663025, 0.12650547921657562, 0.007046724669635296, -0.3403400182723999, 0.01985786110162735, 1.0489553213119507, -0.17583255469799042, 0.08290687203407288, 0.03295661881566048]} +{"t": 16.7371, "q": [-0.3278423845767975, -0.02556975558400154, 0.016605950891971588, 0.6175550818443298, -0.3200167417526245, 0.01842527464032173, -0.3799380660057068, -0.006996656768023968, 0.007285191211849451, 0.6215349435806274, -0.2961623966693878, 0.0058004544116556644, 0.0031872710678726435, 0.07027269154787064, 0.0024181469343602657, 0.029397305101156235, 0.5968743562698364, -0.7700464129447937, 0.5604782700538635, -0.6173194050788879, -0.5027621984481812, 0.12649349868297577, 0.0070946612395346165, -0.3397887349128723, 0.01992976665496826, 1.0478167533874512, -0.17579659819602966, 0.08289488404989243, 0.03296860307455063]} +{"t": 16.7538, "q": [-0.32789352536201477, -0.02556975558400154, 0.016565775498747826, 0.6180067658424377, -0.3200167119503021, 0.018439773470163345, -0.37976762652397156, -0.007013700902462006, 0.007285191211849451, 0.6215349435806274, -0.2960261404514313, 0.005965841468423605, 0.0031203117687255144, 0.06938476115465164, 0.003007136285305023, 0.033903371542692184, 0.59474116563797, -0.7700583934783936, 0.5789459347724915, -0.6173313856124878, -0.5007129311561584, 0.12650547921657562, 0.0070826769806444645, -0.338985800743103, 0.01992976665496826, 1.0475770235061646, -0.17583255469799042, 0.08289488404989243, 0.03293265029788017]} +{"t": 16.7706, "q": [-0.3279275894165039, -0.025544188916683197, 0.016579166054725647, 0.6184584498405457, -0.320029079914093, 0.01843244954943657, -0.3796653747558594, -0.007005178835242987, 0.007298583164811134, 0.6215264201164246, -0.29581955075263977, 0.006195795722305775, 0.002946217078715563, 0.06844380497932434, 0.0036315564066171646, 0.03858920559287071, 0.5918529629707336, -0.7700464129447937, 0.5980727672576904, -0.6173673868179321, -0.49896320700645447, 0.12649349868297577, 0.007154582533985376, -0.3380869925022125, 0.01997770369052887, 1.047457218170166, -0.17577263712882996, 0.08291885256767273, 0.03295661881566048]} +{"t": 16.7873, "q": [-0.32808953523635864, -0.025535667315125465, 0.016565775498747826, 0.6187226176261902, -0.320037305355072, 0.01846141740679741, -0.3796568512916565, -0.007013700902462006, 0.007378934416919947, 0.6214582324028015, -0.29566287994384766, 0.0064261783845722675, 0.0027453387156128883, 0.06778401881456375, 0.0040275403298437595, 0.042939480394124985, 0.5880299806594849, -0.7693872451782227, 0.6173554062843323, -0.6174752116203308, -0.4973333775997162, 0.12645754218101501, 0.00717855105176568, -0.337272047996521, 0.01998968794941902, 1.0474332571029663, -0.17580857872962952, 0.08290687203407288, 0.032944634556770325]} +{"t": 16.8041, "q": [-0.32813212275505066, -0.025552712380886078, 0.01661934331059456, 0.6190038323402405, -0.32004550099372864, 0.018475867807865143, -0.37953752279281616, -0.007013700902462006, 0.007499461527913809, 0.6214070916175842, -0.2955017387866974, 0.006605811882764101, 0.002731946762651205, 0.06716985255479813, 0.00438314862549305, 0.045947518199682236, 0.5846144556999207, -0.7695190906524658, 0.6355114579200745, -0.617607057094574, -0.495403915643692, 0.12648151814937592, 0.007190535310655832, -0.33668482303619385, 0.02004960924386978, 1.047445297241211, -0.17583255469799042, 0.08290687203407288, 0.03293265029788017]} +{"t": 16.8208, "q": [-0.32845598459243774, -0.02556975558400154, 0.016592558473348618, 0.619412899017334, -0.32006192207336426, 0.01853378489613533, -0.37954604625701904, -0.0070648337714374065, 0.007499461527913809, 0.6213303804397583, -0.2953866124153137, 0.006822072900831699, 0.0027453387156128883, 0.06663128733634949, 0.004716541618108749, 0.04918326064944267, 0.5808873772621155, -0.7695190906524658, 0.6523253321647644, -0.617607057094574, -0.49227601289749146, 0.12649349868297577, 0.007729825098067522, -0.33601370453834534, 0.02009754627943039, 1.0475530624389648, -0.17584453523159027, 0.08290687203407288, 0.03293265029788017]} +{"t": 16.8375, "q": [-0.328669011592865, -0.025586800649762154, 0.016579166054725647, 0.6197196841239929, -0.32009485363960266, 0.01856260374188423, -0.3795289993286133, -0.0070733558386564255, 0.007553029339760542, 0.6210832595825195, -0.2951515018939972, 0.007145928684622049, 0.0027721223887056112, 0.06607769429683685, 0.0050496975891292095, 0.05193963274359703, 0.5771123766899109, -0.7695550322532654, 0.6676771640777588, -0.6176310181617737, -0.4890163242816925, 0.12649349868297577, 0.008640626445412636, -0.3355223536491394, 0.020133499056100845, 1.0478886365890503, -0.17584453523159027, 0.08291885256767273, 0.03296860307455063]} +{"t": 16.8543, "q": [-0.3289758265018463, -0.025586800649762154, 0.016579166054725647, 0.6201798915863037, -0.3201236426830292, 0.018598679453134537, -0.3795204758644104, -0.00711596617475152, 0.007606596685945988, 0.6209895014762878, -0.29492440819740295, 0.007426399737596512, 0.002691771136596799, 0.06550852954387665, 0.0054314169101417065, 0.0547679103910923, 0.5734811425209045, -0.7697228193283081, 0.682981014251709, -0.6176429986953735, -0.48498961329460144, 0.12649349868297577, 0.009239837527275085, -0.33493512868881226, 0.020145483314990997, 1.0478886365890503, -0.17583255469799042, 0.08293084055185318, 0.03296860307455063]} +{"t": 16.871, "q": [-0.3293422758579254, -0.025586800649762154, 0.016565775498747826, 0.620674192905426, -0.3201524019241333, 0.018663771450519562, -0.3795545697212219, -0.007124488707631826, 0.0076467725448310375, 0.6208446025848389, -0.294638991355896, 0.007691890932619572, 0.002691771136596799, 0.06498480588197708, 0.005792210344225168, 0.05697300657629967, 0.5689151287078857, -0.7698307037353516, 0.698752224445343, -0.6176429986953735, -0.48151418566703796, 0.12646952271461487, 0.009611348621547222, -0.3343479037284851, 0.02015746757388115, 1.0479485988616943, -0.17589247226715088, 0.08294282108545303, 0.03295661881566048]} +{"t": 16.8878, "q": [-0.329674631357193, -0.02556975558400154, 0.016512207686901093, 0.6211088299751282, -0.3201812207698822, 0.01869986578822136, -0.3795545697212219, -0.007090399973094463, 0.007619988638907671, 0.6207423806190491, -0.29440322518348694, 0.007914337329566479, 0.002718554809689522, 0.06448379904031754, 0.006147719919681549, 0.0589623898267746, 0.5643731355667114, -0.7698546648025513, 0.7135168313980103, -0.617607057094574, -0.47971653938293457, 0.12649349868297577, 0.010150638408958912, -0.3338445723056793, 0.020133499056100845, 1.0487035512924194, -0.17588049173355103, 0.08301472663879395, 0.03296860307455063]} +{"t": 16.9045, "q": [-0.33005812764167786, -0.025578279048204422, 0.01644524745643139, 0.621654212474823, -0.3202058970928192, 0.018743233755230904, -0.3795630931854248, -0.007107444107532501, 0.007593204732984304, 0.6206997632980347, -0.2941805124282837, 0.008231041952967644, 0.002691771136596799, 0.06367957592010498, 0.006676449906080961, 0.061059627681970596, 0.5594955682754517, -0.7697707414627075, 0.7272387146949768, -0.6177029013633728, -0.4786619544029236, 0.12648151814937592, 0.01125318743288517, -0.33334121108055115, 0.02015746757388115, 1.048811435699463, -0.17584453523159027, 0.08300274610519409, 0.03296860307455063]} +{"t": 16.9215, "q": [-0.33056944608688354, -0.025552712380886078, 0.01628454588353634, 0.6221314668655396, -0.32022643089294434, 0.018793877214193344, -0.37959718704223633, -0.0070733558386564255, 0.007472677621990442, 0.6205378174781799, -0.2939113676548004, 0.008438740856945515, 0.002758730435743928, 0.06302701681852341, 0.007113085128366947, 0.06216217577457428, 0.5539827942848206, -0.7697587609291077, 0.742374837398529, -0.6177148818969727, -0.47797882556915283, 0.12648151814937592, 0.012068115174770355, -0.33295774459838867, 0.020133499056100845, 1.0488953590393066, -0.17584453523159027, 0.08300274610519409, 0.03296860307455063]} +{"t": 16.9383, "q": [-0.3308506906032562, -0.025586800649762154, 0.01615062542259693, 0.6225320100784302, -0.32023879885673523, 0.018801052123308182, -0.37959718704223633, -0.0070733558386564255, 0.00739232636988163, 0.6205037236213684, -0.29365867376327515, 0.008617606945335865, 0.0027855143416672945, 0.062313903123140335, 0.007581113371998072, 0.0628812313079834, 0.5488895177841187, -0.7696389555931091, 0.7553057670593262, -0.617750883102417, -0.4768163561820984, 0.12649349868297577, 0.012271846644580364, -0.33253827691078186, 0.02015746757388115, 1.0489553213119507, -0.17574866116046906, 0.08299075812101364, 0.03295661881566048]} +{"t": 16.9551, "q": [-0.33102113008499146, -0.02556975558400154, 0.016177410259842873, 0.6228643655776978, -0.32023054361343384, 0.01880110241472721, -0.37958014011383057, -0.0070733558386564255, 0.007472677621990442, 0.620444118976593, -0.2932771146297455, 0.008773749694228172, 0.0028122980147600174, 0.06151728704571724, 0.008113173767924309, 0.06330067664384842, 0.5436044335365295, -0.7696868777275085, 0.7679491639137268, -0.6177628636360168, -0.47595351934432983, 0.12649349868297577, 0.01236772071570158, -0.3320828676223755, 0.020181436091661453, 1.0490151643753052, -0.1756887435913086, 0.08300274610519409, 0.03296860307455063]} +{"t": 16.9719, "q": [-0.33124271035194397, -0.025552712380886078, 0.01615062542259693, 0.6231796741485596, -0.32023465633392334, 0.018808327615261078, -0.3795716166496277, -0.007056311704218388, 0.0074191102758049965, 0.6202054619789124, -0.29297542572021484, 0.00898147001862526, 0.0028926494996994734, 0.06082717329263687, 0.008545306511223316, 0.06340853869915009, 0.5379359126091003, -0.7696868777275085, 0.7815632224082947, -0.6177268624305725, -0.4752464294433594, 0.12649349868297577, 0.012343752197921276, -0.3315795361995697, 0.020181436091661453, 1.0491230487823486, -0.1757846176624298, 0.08299075812101364, 0.03296860307455063]} +{"t": 16.9889, "q": [-0.3312853276729584, -0.025544188916683197, 0.016164017841219902, 0.6233416199684143, -0.32023054361343384, 0.01880110241472721, -0.3795204758644104, -0.0070648337714374065, 0.007472677621990442, 0.6201287508010864, -0.29279330372810364, 0.009023618884384632, 0.002839081920683384, 0.06004662066698074, 0.008980989456176758, 0.06381599605083466, 0.5320996046066284, -0.7697947025299072, 0.7935474514961243, -0.6177628636360168, -0.47413191199302673, 0.12649349868297577, 0.012235893867909908, -0.33089643716812134, 0.020193420350551605, 1.0491230487823486, -0.1757366806268692, 0.08300274610519409, 0.032944634556770325]} +{"t": 17.0056, "q": [-0.33131086826324463, -0.025527145713567734, 0.01613723486661911, 0.6236313581466675, -0.32022225856781006, 0.018830152228474617, -0.37935855984687805, -0.007056311704218388, 0.007445894181728363, 0.6199924349784851, -0.29249507188796997, 0.009050478227436543, 0.0029328251257538795, 0.059288330376148224, 0.00945782009512186, 0.06415155529975891, 0.5265748500823975, -0.7698186635971069, 0.805004358291626, -0.6177389025688171, -0.47314921021461487, 0.12648151814937592, 0.012211925350129604, -0.3301534354686737, 0.020181436091661453, 1.0491949319839478, -0.17572470009326935, 0.08297877758741379, 0.032944634556770325]} +{"t": 17.0224, "q": [-0.3313705325126648, -0.02551010064780712, 0.016003314405679703, 0.6241341829299927, -0.32021400332450867, 0.018830200657248497, -0.3791625499725342, -0.007056311704218388, 0.007338759023696184, 0.6199583411216736, -0.2923380732536316, 0.00916514452546835, 0.003093527862802148, 0.05845382809638977, 0.010023118928074837, 0.06441520899534225, 0.520618736743927, -0.7697228193283081, 0.817324161529541, -0.6177868247032166, -0.47171109914779663, 0.12646952271461487, 0.0121879568323493, -0.32914674282073975, 0.020181436091661453, 1.0494346618652344, -0.1756887435913086, 0.08299075812101364, 0.032944634556770325]} +{"t": 17.0392, "q": [-0.33143019676208496, -0.025484533980488777, 0.015829220414161682, 0.6244750618934631, -0.3202098608016968, 0.018837476149201393, -0.37894096970558167, -0.00703926756978035, 0.007151272147893906, 0.6199583411216736, -0.29219675064086914, 0.009106285870075226, 0.0032274469267576933, 0.05761188641190529, 0.010584159754216671, 0.06441520899534225, 0.5143389701843262, -0.7695670127868652, 0.8300634026527405, -0.617750883102417, -0.4696497917175293, 0.12648151814937592, 0.012140019796788692, -0.32782846689224243, 0.020181436091661453, 1.0499858856201172, -0.17572470009326935, 0.08299075812101364, 0.032944634556770325]} +{"t": 17.056, "q": [-0.3314472436904907, -0.025476012378931046, 0.01565512642264366, 0.6246710419654846, -0.32020989060401917, 0.01882297731935978, -0.3787279427051544, -0.0070307450369000435, 0.007003961596637964, 0.6198986768722534, -0.292080283164978, 0.009163356386125088, 0.0032810145057737827, 0.05689879506826401, 0.011076994240283966, 0.06461894512176514, 0.5085505843162537, -0.7693393230438232, 0.8409690260887146, -0.6180384755134583, -0.467648446559906, 0.12649349868297577, 0.012175972573459148, -0.3262585401535034, 0.020181436091661453, 1.0504533052444458, -0.1757366806268692, 0.08301472663879395, 0.03293265029788017]} +{"t": 17.0727, "q": [-0.33143019676208496, -0.025433402508497238, 0.015547990798950195, 0.6248329877853394, -0.3202057182788849, 0.01884477026760578, -0.3785575032234192, -0.007005178835242987, 0.006816474720835686, 0.6198731064796448, -0.29197627305984497, 0.009213280864059925, 0.003361365757882595, 0.05607275292277336, 0.01155929733067751, 0.06458298861980438, 0.503061830997467, -0.7694711685180664, 0.8527734875679016, -0.618062436580658, -0.4650239050388336, 0.12648151814937592, 0.012152004055678844, -0.3242092430591583, 0.020181436091661453, 1.051268219947815, -0.17574866116046906, 0.08297877758741379, 0.03292066603899002]} +{"t": 17.0896, "q": [-0.3314216732978821, -0.02532261423766613, 0.015347111970186234, 0.6251738667488098, -0.3202139735221863, 0.01884470134973526, -0.378242164850235, -0.006937001831829548, 0.006642380263656378, 0.6197793483734131, -0.2918509840965271, 0.00915453489869833, 0.0033747577108442783, 0.05523858591914177, 0.012113794684410095, 0.06479870527982712, 0.49734535813331604, -0.7693992257118225, 0.8635832667350769, -0.6180744171142578, -0.46142861247062683, 0.12649349868297577, 0.012044146656990051, -0.32183638215065, 0.020181436091661453, 1.0523347854614258, -0.17572470009326935, 0.08297877758741379, 0.03293265029788017]} +{"t": 17.1063, "q": [-0.3314131498336792, -0.025305571034550667, 0.015079274773597717, 0.6253613233566284, -0.3202098608016968, 0.018837476149201393, -0.37803763151168823, -0.006928479764610529, 0.0064013260416686535, 0.6197196841239929, -0.29180091619491577, 0.009139723144471645, 0.0034551091957837343, 0.054434843361377716, 0.012646809220314026, 0.06514624506235123, 0.4917846620082855, -0.7693872451782227, 0.8734822273254395, -0.6180264949798584, -0.45862430334091187, 0.12648151814937592, 0.011840414255857468, -0.31935563683509827, 0.020181436091661453, 1.0541924238204956, -0.17572470009326935, 0.08297877758741379, 0.03293265029788017]} +{"t": 17.123, "q": [-0.3314046263694763, -0.025280004367232323, 0.014878395944833755, 0.6255232691764832, -0.3202016055583954, 0.01885204389691353, -0.3778160512447357, -0.006928479764610529, 0.006160271819680929, 0.6195322275161743, -0.29174691438674927, 0.009189976379275322, 0.0036425956059247255, 0.05368424579501152, 0.013134870678186417, 0.0656256154179573, 0.48616406321525574, -0.769507110118866, 0.8829617500305176, -0.6180744171142578, -0.4570903480052948, 0.12648151814937592, 0.01191231980919838, -0.3167550563812256, 0.02021738886833191, 1.0561457872390747, -0.17570072412490845, 0.08299075812101364, 0.032944634556770325]} +{"t": 17.1398, "q": [-0.33139610290527344, -0.025245916098356247, 0.014677518047392368, 0.6255999803543091, -0.3201974928379059, 0.01884481869637966, -0.3775859773159027, -0.006928479764610529, 0.005959393456578255, 0.6193788051605225, -0.2915802299976349, 0.009203304536640644, 0.0038434739690274, 0.05313082039356232, 0.013492172583937645, 0.06605704873800278, 0.4805314838886261, -0.7694951295852661, 0.8922255635261536, -0.6180863976478577, -0.4556642174720764, 0.12645754218101501, 0.01209208369255066, -0.31416645646095276, 0.020241355523467064, 1.058123230934143, -0.17582057416439056, 0.08300274610519409, 0.03293265029788017]} +{"t": 17.1565, "q": [-0.33129385113716125, -0.025228871032595634, 0.014623950235545635, 0.6256425976753235, -0.3201974928379059, 0.01884481869637966, -0.3773558735847473, -0.006902913562953472, 0.005879042204469442, 0.619182825088501, -0.2914760708808899, 0.009209815412759781, 0.0039506093598902225, 0.052365079522132874, 0.014008395373821259, 0.06653641909360886, 0.47459930181503296, -0.7692554593086243, 0.9016092419624329, -0.6180863976478577, -0.45393848419189453, 0.12649349868297577, 0.01230779942125082, -0.311458021402359, 0.020313261076807976, 1.059944748878479, -0.17572470009326935, 0.08300274610519409, 0.03293265029788017]} +{"t": 17.1732, "q": [-0.3312768042087555, -0.02520330436527729, 0.014516814611852169, 0.6257107853889465, -0.3201850950717926, 0.018852125853300095, -0.37711724638938904, -0.006911435630172491, 0.005812082905322313, 0.6189526915550232, -0.2913515269756317, 0.009281232953071594, 0.003977392800152302, 0.051849398761987686, 0.01436845026910305, 0.06688395887613297, 0.46848732233047485, -0.7690876722335815, 0.9112445116043091, -0.6181583404541016, -0.45203298330307007, 0.12648151814937592, 0.012415657751262188, -0.30879753828048706, 0.0204570721834898, 1.061934232711792, -0.17574866116046906, 0.0830267146229744, 0.03295661881566048]} +{"t": 17.1899, "q": [-0.3311404287815094, -0.02519478276371956, 0.014476639218628407, 0.6257278323173523, -0.320193350315094, 0.018852094188332558, -0.37682750821113586, -0.006894391495734453, 0.005745123140513897, 0.6188334226608276, -0.2913103699684143, 0.009338748641312122, 0.003923825453966856, 0.05144002288579941, 0.014639190398156643, 0.06731539219617844, 0.4638614356517792, -0.7692074775695801, 0.9191181659698486, -0.6181343793869019, -0.45023536682128906, 0.12648151814937592, 0.012283830903470516, -0.30595725774765015, 0.02046905644237995, 1.06398344039917, -0.1757366806268692, 0.0830267146229744, 0.032944634556770325]} +{"t": 17.2068, "q": [-0.3310040831565857, -0.025177739560604095, 0.014342720620334148, 0.6257448196411133, -0.3201809525489807, 0.01885940134525299, -0.37646958231925964, -0.006894391495734453, 0.0056112040765583515, 0.6185692548751831, -0.29122352600097656, 0.009388672187924385, 0.004004176706075668, 0.05108371376991272, 0.014874834567308426, 0.06775880604982376, 0.45905575156211853, -0.7691595554351807, 0.9271715879440308, -0.6181463599205017, -0.4485096335411072, 0.12646952271461487, 0.012163988314568996, -0.3031170070171356, 0.02051699347794056, 1.0660327672958374, -0.1756887435913086, 0.08300274610519409, 0.03293265029788017]} +{"t": 17.2237, "q": [-0.3308080732822418, -0.025186261162161827, 0.014088273979723454, 0.6257448196411133, -0.3201850950717926, 0.0188666433095932, -0.3760434687137604, -0.006885869428515434, 0.005396933760493994, 0.618219792842865, -0.29107436537742615, 0.009430871345102787, 0.003977392800152302, 0.05076538771390915, 0.015085171908140182, 0.0680224597454071, 0.45415419340133667, -0.7690037488937378, 0.9364593625068665, -0.6181942820549011, -0.44629254937171936, 0.12646952271461487, 0.01209208369255066, -0.3001329302787781, 0.02070874162018299, 1.0684535503387451, -0.17572470009326935, 0.08300274610519409, 0.03293265029788017]} +{"t": 17.2404, "q": [-0.3305864930152893, -0.025186261162161827, 0.013967746868729591, 0.6257533431053162, -0.3201933205127716, 0.018881093710660934, -0.3755662143230438, -0.006894391495734453, 0.005263015162199736, 0.6179300546646118, -0.2910124957561493, 0.009495449252426624, 0.003977392800152302, 0.050341133028268814, 0.015346264466643333, 0.06821420788764954, 0.4488092362880707, -0.7689678072929382, 0.9458669424057007, -0.618206262588501, -0.4432605504989624, 0.12644556164741516, 0.011996209621429443, -0.29764020442962646, 0.021164141595363617, 1.0711380243301392, -0.1756887435913086, 0.08300274610519409, 0.03296860307455063]} +{"t": 17.2572, "q": [-0.3304501473903656, -0.02521182782948017, 0.013940962962806225, 0.6257789134979248, -0.3201933205127716, 0.01886659488081932, -0.3752935230731964, -0.006911435630172491, 0.005263015162199736, 0.617759644985199, -0.290942519903183, 0.00958887580782175, 0.004057744517922401, 0.049962084740400314, 0.015605857595801353, 0.0682741329073906, 0.44465070962905884, -0.7689318656921387, 0.9535608291625977, -0.6182541847229004, -0.4399169385433197, 0.12645754218101501, 0.011948272585868835, -0.29591450095176697, 0.021260015666484833, 1.073067545890808, -0.17577263712882996, 0.08299075812101364, 0.03298058733344078]} +{"t": 17.2739, "q": [-0.33023709058761597, -0.025220349431037903, 0.013954355381429195, 0.6257874369621277, -0.3201809525489807, 0.018873918801546097, -0.37500375509262085, -0.006902913562953472, 0.005263015162199736, 0.6175721287727356, -0.2908479869365692, 0.009739968925714493, 0.004111311864107847, 0.04947701469063759, 0.015925908461213112, 0.06840595602989197, 0.44087567925453186, -0.7688599824905396, 0.9616262316703796, -0.6183860301971436, -0.43758001923561096, 0.12648151814937592, 0.011876367032527924, -0.29434454441070557, 0.021331921219825745, 1.0760036706924438, -0.17577263712882996, 0.08300274610519409, 0.03299257159233093]} +{"t": 17.2906, "q": [-0.33015188574790955, -0.025186261162161827, 0.013914179988205433, 0.6257703900337219, -0.3201850950717926, 0.018852125853300095, -0.3747481107711792, -0.006911435630172491, 0.0052094473503530025, 0.6173250079154968, -0.2907075583934784, 0.00985453650355339, 0.004071136470884085, 0.049052655696868896, 0.016196398064494133, 0.0685977041721344, 0.4372923970222473, -0.7687880396842957, 0.9692122340202332, -0.618433952331543, -0.4362497627735138, 0.12646952271461487, 0.011660651303827763, -0.29325398802757263, 0.02130795270204544, 1.0784004926681519, -0.17577263712882996, 0.08299075812101364, 0.03298058733344078]} +{"t": 17.3074, "q": [-0.3298876881599426, -0.02520330436527729, 0.013887396082282066, 0.6257533431053162, -0.3201809525489807, 0.018873918801546097, -0.37439870834350586, -0.006902913562953472, 0.00516927195712924, 0.6170437932014465, -0.2903839349746704, 0.009880871511995792, 0.00416487967595458, 0.048598047345876694, 0.01648670993745327, 0.06874151527881622, 0.43296608328819275, -0.7688239812850952, 0.9778648614883423, -0.6184099912643433, -0.4352430999279022, 0.12646952271461487, 0.011564777232706547, -0.2923192083835602, 0.021319936960935593, 1.080413818359375, -0.17572470009326935, 0.08299075812101364, 0.03296860307455063]} +{"t": 17.3242, "q": [-0.3297172486782074, -0.02520330436527729, 0.01384721975773573, 0.6257448196411133, -0.3201768398284912, 0.018866676837205887, -0.3741004168987274, -0.006885869428515434, 0.00512909609824419, 0.6168477535247803, -0.29025977849960327, 0.009937743656337261, 0.004365758039057255, 0.04812077060341835, 0.016791580244898796, 0.06899318099021912, 0.4285079538822174, -0.7688239812850952, 0.9851751923561096, -0.618433952331543, -0.434176504611969, 0.12648151814937592, 0.011540808714926243, -0.29148033261299133, 0.02135588973760605, 1.082343339920044, -0.17574866116046906, 0.08301472663879395, 0.03298058733344078]} +{"t": 17.3409, "q": [-0.329487144947052, -0.025186261162161827, 0.0138606121763587, 0.6257448196411133, -0.3201809525489807, 0.018873918801546097, -0.3737851083278656, -0.006894391495734453, 0.005115704145282507, 0.6167113780975342, -0.29015612602233887, 0.009958584792912006, 0.004472893197089434, 0.04782525449991226, 0.016986103728413582, 0.06928080320358276, 0.4249846041202545, -0.7688599824905396, 0.9909515976905823, -0.618433952331543, -0.4331578314304352, 0.12648151814937592, 0.011540808714926243, -0.29058149456977844, 0.02142779529094696, 1.084284782409668, -0.1757846176624298, 0.0830267146229744, 0.03295661881566048]} +{"t": 17.3577, "q": [-0.3293167054653168, -0.02514364942908287, 0.0138606121763587, 0.6257278323173523, -0.3201768100261688, 0.018881194293498993, -0.3735635280609131, -0.006894391495734453, 0.00508892023935914, 0.61656653881073, -0.2900189161300659, 0.009921351447701454, 0.004553244449198246, 0.047016412019729614, 0.017290670424699783, 0.06948453933000565, 0.4212694764137268, -0.7688479423522949, 0.9977466464042664, -0.6184459328651428, -0.43236687779426575, 0.12651745975017548, 0.011540808714926243, -0.2894909381866455, 0.02160755731165409, 1.0861543416976929, -0.1757366806268692, 0.08303869515657425, 0.03296860307455063]} +{"t": 17.3744, "q": [-0.32918035984039307, -0.025109561160206795, 0.0138606121763587, 0.6257278323173523, -0.32016855478286743, 0.01888122595846653, -0.37339308857917786, -0.006885869428515434, 0.005062136333435774, 0.6165324449539185, -0.2899108827114105, 0.009906034916639328, 0.004553244449198246, 0.04618484899401665, 0.01761017180979252, 0.06967628747224808, 0.418081670999527, -0.7690037488937378, 1.0036789178848267, -0.6183620691299438, -0.43153995275497437, 0.12645754218101501, 0.011492871679365635, -0.2883164882659912, 0.021811289712786674, 1.087640404701233, -0.17577263712882996, 0.08303869515657425, 0.03295661881566048]} +{"t": 17.3912, "q": [-0.3289928734302521, -0.025041384622454643, 0.0138606121763587, 0.6257278323173523, -0.32015618681907654, 0.018874067813158035, -0.3731800317764282, -0.006868824828416109, 0.005035352893173695, 0.6163875460624695, -0.28975677490234375, 0.009825262241065502, 0.004446109291166067, 0.045140888541936874, 0.018115362152457237, 0.0697961300611496, 0.4136834740638733, -0.7688479423522949, 1.0090477466583252, -0.6184099912643433, -0.430856853723526, 0.12648151814937592, 0.01137303002178669, -0.2866027355194092, 0.022015022113919258, 1.0893900394439697, -0.17579659819602966, 0.08301472663879395, 0.03290868178009987]} +{"t": 17.4079, "q": [-0.32891616225242615, -0.024862419813871384, 0.01384721975773573, 0.6256937384605408, -0.32014790177345276, 0.01890311762690544, -0.37298402190208435, -0.006758037488907576, 0.004968393128365278, 0.6160978078842163, -0.28960275650024414, 0.00975896418094635, 0.004446109291166067, 0.04402201622724533, 0.018555622547864914, 0.06988001614809036, 0.40878191590309143, -0.7687281370162964, 1.0150758028030396, -0.6184459328651428, -0.4304613769054413, 0.12649349868297577, 0.011181281879544258, -0.2843976616859436, 0.022015022113919258, 1.0914273262023926, -0.1757606416940689, 0.08303869515657425, 0.03290868178009987]} +{"t": 17.4246, "q": [-0.32877129316329956, -0.024760155007243156, 0.013740085065364838, 0.6256937384605408, -0.32013556361198425, 0.018895942717790604, -0.3727453947067261, -0.006689860485494137, 0.004780906718224287, 0.6158847808837891, -0.2894362509250641, 0.009685338474810123, 0.00445950124412775, 0.04307147115468979, 0.018665870651602745, 0.06971223652362823, 0.40415599942207336, -0.7688719630241394, 1.0207923650741577, -0.6184219717979431, -0.4301857352256775, 0.12648151814937592, 0.011121360585093498, -0.281761109828949, 0.022038990631699562, 1.093464732170105, -0.17574866116046906, 0.08306266367435455, 0.03289669752120972]} +{"t": 17.4414, "q": [-0.32863494753837585, -0.024513013660907745, 0.013592774048447609, 0.6256852149963379, -0.32013556361198425, 0.018895942717790604, -0.3724641799926758, -0.006570551078766584, 0.004593420308083296, 0.6155524253845215, -0.2893025875091553, 0.009554131887853146, 0.004419325385242701, 0.04227222502231598, 0.01871441677212715, 0.06956842541694641, 0.39924249053001404, -0.7687760591506958, 1.0251306295394897, -0.6184938549995422, -0.42957454919815063, 0.12651745975017548, 0.011061440221965313, -0.27844148874282837, 0.02220677025616169, 1.0955259799957275, -0.17582057416439056, 0.0830267146229744, 0.03289669752120972]} +{"t": 17.4582, "q": [-0.32860085368156433, -0.024155084043741226, 0.013565990142524242, 0.6256511211395264, -0.32013559341430664, 0.018866943195462227, -0.37225112318992615, -0.006280798930674791, 0.0044996771030128, 0.6150836944580078, -0.2890360951423645, 0.00942186638712883, 0.004338974133133888, 0.04148232564330101, 0.018519630655646324, 0.06955644488334656, 0.39394545555114746, -0.7687401175498962, 1.0283783674240112, -0.6184579133987427, -0.4292150139808655, 0.12649349868297577, 0.010989534668624401, -0.2747862935066223, 0.022590264678001404, 1.0981744527816772, -0.1757606416940689, 0.0830267146229744, 0.03287272900342941]} +{"t": 17.475, "q": [-0.328481525182724, -0.023839766159653664, 0.013539206236600876, 0.6255999803543091, -0.32013556361198425, 0.01888144388794899, -0.3719528615474701, -0.0059654805809259415, 0.004379149992018938, 0.6144019365310669, -0.2886659502983093, 0.009310460649430752, 0.004312190227210522, 0.040836699306964874, 0.01817326806485653, 0.06934072822332382, 0.38825294375419617, -0.7687401175498962, 1.0317339897155762, -0.6184459328651428, -0.42879557609558105, 0.12651745975017548, 0.010929613374173641, -0.271442711353302, 0.022710107266902924, 1.1011345386505127, -0.17582057416439056, 0.0830506831407547, 0.03284876048564911]} +{"t": 17.4917, "q": [-0.32832813262939453, -0.023328440263867378, 0.01352581474930048, 0.6255147457122803, -0.32011911273002625, 0.018867043778300285, -0.37155231833457947, -0.005599029827862978, 0.0042854067869484425, 0.6136690378189087, -0.28826695680618286, 0.00923498347401619, 0.004312190227210522, 0.040378447622060776, 0.017930906265974045, 0.06913699209690094, 0.3823806643486023, -0.7688599824905396, 1.0345981121063232, -0.6183980107307434, -0.42824429273605347, 0.12648151814937592, 0.01119326613843441, -0.2673201262950897, 0.02353701926767826, 1.1037710905075073, -0.1756887435913086, 0.0830506831407547, 0.03290868178009987]} +{"t": 17.5086, "q": [-0.328251451253891, -0.022765979170799255, 0.01345885545015335, 0.6254721283912659, -0.32012325525283813, 0.01885976828634739, -0.3711773455142975, -0.005104747135192156, 0.00416487967595458, 0.6127912402153015, -0.28773048520088196, 0.009078866802155972, 0.004325582180172205, 0.0400555357336998, 0.017742672935128212, 0.0692208856344223, 0.376460462808609, -0.7688599824905396, 1.0370548963546753, -0.6184698939323425, -0.4275372326374054, 0.12651745975017548, 0.011349061504006386, -0.2624785006046295, 0.02353701926767826, 1.1063237190246582, -0.17574866116046906, 0.0830267146229744, 0.032884713262319565]} +{"t": 17.5255, "q": [-0.32821735739707947, -0.022203519940376282, 0.013485639356076717, 0.6254295110702515, -0.32012736797332764, 0.018866993486881256, -0.370768278837204, -0.004576376173645258, 0.0041247038170695305, 0.611632227897644, -0.28695735335350037, 0.008913636207580566, 0.004325582180172205, 0.03974619507789612, 0.017773859202861786, 0.06895723193883896, 0.3696773946285248, -0.7688599824905396, 1.0409977436065674, -0.6183381080627441, -0.42647063732147217, 0.12648151814937592, 0.01143295131623745, -0.25764885544776917, 0.02388456091284752, 1.1088523864746094, -0.1757606416940689, 0.08303869515657425, 0.03290868178009987]} +{"t": 17.5422, "q": [-0.32822588086128235, -0.021564362570643425, 0.013472246937453747, 0.6253698468208313, -0.32012325525283813, 0.01885976828634739, -0.37023991346359253, -0.0038434739690274, 0.003923825453966856, 0.6101579070091248, -0.28598305583000183, 0.008631107397377491, 0.004298798739910126, 0.03935275971889496, 0.01797422021627426, 0.0688973143696785, 0.36339765787124634, -0.7688719630241394, 1.0440776348114014, -0.6183860301971436, -0.42445728182792664, 0.12650547921657562, 0.011385014280676842, -0.2535981833934784, 0.024531709030270576, 1.1116567850112915, -0.17577263712882996, 0.08303869515657425, 0.03292066603899002]} +{"t": 17.5589, "q": [-0.3282429277896881, -0.020899636670947075, 0.013378503732383251, 0.6251909136772156, -0.32011500000953674, 0.018859799951314926, -0.36963483691215515, -0.0031531827989965677, 0.003696163184940815, 0.6082148551940918, -0.2848660349845886, 0.008311131037771702, 0.004312190227210522, 0.03908010944724083, 0.018152622506022453, 0.06901714950799942, 0.3569141924381256, -0.7688719630241394, 1.0456715822219849, -0.6183980107307434, -0.42167696356773376, 0.12650547921657562, 0.011289140209555626, -0.2499549835920334, 0.02534663677215576, 1.1149284839630127, -0.17572470009326935, 0.0830267146229744, 0.03292066603899002]} +{"t": 17.5756, "q": [-0.3282429277896881, -0.02032013237476349, 0.01319101732224226, 0.6249523162841797, -0.32009032368659973, 0.018816450610756874, -0.3688763678073883, -0.0025992451701313257, 0.0032676225528120995, 0.606399655342102, -0.28377532958984375, 0.008193845860660076, 0.004312190227210522, 0.038800276815891266, 0.01827864907681942, 0.06912501156330109, 0.3503468334674835, -0.7689678072929382, 1.0472055673599243, -0.6183980107307434, -0.418453186750412, 0.12649349868297577, 0.011456918902695179, -0.24685107171535492, 0.025802036747336388, 1.117529034614563, -0.1757366806268692, 0.08301472663879395, 0.03292066603899002]} +{"t": 17.5924, "q": [-0.3280554413795471, -0.019936637952923775, 0.012829435989260674, 0.6245773434638977, -0.32003673911094666, 0.018809523433446884, -0.36793893575668335, -0.0021049624774605036, 0.0026649872306734324, 0.6044566035270691, -0.2826930582523346, 0.008091067895293236, 0.004392541944980621, 0.03840673342347145, 0.018497996032238007, 0.06928080320358276, 0.34318026900291443, -0.7691116333007812, 1.0492069721221924, -0.6183860301971436, -0.4157088100910187, 0.12650547921657562, 0.011289140209555626, -0.24361532926559448, 0.025897910818457603, 1.1215317249298096, -0.17574866116046906, 0.0830506831407547, 0.03289669752120972]} +{"t": 17.6092, "q": [-0.3278850018978119, -0.019374176859855652, 0.012200016528367996, 0.6243131160736084, -0.31999146938323975, 0.01875903084874153, -0.3666861951351166, -0.001448759576305747, 0.0018212978029623628, 0.6021130084991455, -0.281577467918396, 0.00795917958021164, 0.004365758039057255, 0.03813467174768448, 0.018599584698677063, 0.06943660229444504, 0.33547443151474, -0.7691954970359802, 1.0518075227737427, -0.6183740496635437, -0.413707435131073, 0.12648151814937592, 0.011229218915104866, -0.2403436303138733, 0.025897910818457603, 1.1243599653244019, -0.17574866116046906, 0.0830506831407547, 0.03292066603899002]} +{"t": 17.626, "q": [-0.3272884488105774, -0.018956594169139862, 0.011784868314862251, 0.6239807605743408, -0.31996679306030273, 0.018715662881731987, -0.36569762229919434, -0.0010823087068274617, 0.0012990138493478298, 0.6009199023246765, -0.28116974234580994, 0.007884385995566845, 0.004419325385242701, 0.03768058121204376, 0.018867501989006996, 0.06958041340112686, 0.3285355567932129, -0.7692314386367798, 1.0538208484649658, -0.6183980107307434, -0.41264083981513977, 0.12650547921657562, 0.011408982798457146, -0.23729965090751648, 0.025861958041787148, 1.126205563545227, -0.17577263712882996, 0.083074651658535, 0.03290868178009987]} +{"t": 17.6427, "q": [-0.32703277468681335, -0.018973637372255325, 0.011744692921638489, 0.6239210963249207, -0.31996268033981323, 0.01870843768119812, -0.3653993308544159, -0.0011078750248998404, 0.0011784868547692895, 0.6009113788604736, -0.2811781167984009, 0.007898880168795586, 0.004419325385242701, 0.03649626299738884, 0.01897483691573143, 0.06974819302558899, 0.32153674960136414, -0.7691954970359802, 1.055666446685791, -0.6184459328651428, -0.41187384724617004, 0.12649349868297577, 0.011468903161585331, -0.2340998500585556, 0.026101643219590187, 1.127907395362854, -0.1757846176624298, 0.083074651658535, 0.03290868178009987]} +{"t": 17.6596, "q": [-0.32699015736579895, -0.01899920403957367, 0.011383111588656902, 0.6240063309669495, -0.31996679306030273, 0.018715662881731987, -0.36517778038978577, -0.0011078750248998404, 0.0008570813224650919, 0.6009284257888794, -0.28118234872817993, 0.007920569740235806, 0.004620204214006662, 0.035720039159059525, 0.018929852172732353, 0.06990398466587067, 0.31421440839767456, -0.7692194581031799, 1.0584588050842285, -0.6185418367385864, -0.4113105833530426, 0.12648151814937592, 0.011492871679365635, -0.2314034104347229, 0.026569027453660965, 1.1294533014297485, -0.1757606416940689, 0.08303869515657425, 0.03289669752120972]} +{"t": 17.6763, "q": [-0.32690495252609253, -0.019084425643086433, 0.01132954377681017, 0.6239125728607178, -0.3199668228626251, 0.018701162189245224, -0.3651181161403656, -0.0011675298446789384, 0.0007767299539409578, 0.600953996181488, -0.2811947762966156, 0.00791342742741108, 0.004847866017371416, 0.035041965544223785, 0.01882973313331604, 0.07001184672117233, 0.3069159984588623, -0.769279420375824, 1.0618622303009033, -0.6184698939323425, -0.41097503900527954, 0.12649349868297577, 0.011408982798457146, -0.22862306237220764, 0.027947213500738144, 1.130699634552002, -0.17577263712882996, 0.0830267146229744, 0.03287272900342941]} +{"t": 17.693, "q": [-0.3269134759902954, -0.01911851391196251, 0.01124919205904007, 0.6239722371101379, -0.31995442509651184, 0.01870848797261715, -0.36510106921195984, -0.001193096162751317, 0.0007231623749248683, 0.6009966135025024, -0.28118643164634705, 0.007898933254182339, 0.004955001175403595, 0.034626733511686325, 0.01890033669769764, 0.07017962634563446, 0.29976141452789307, -0.7691835165023804, 1.0640313625335693, -0.6184579133987427, -0.4107113778591156, 0.12651745975017548, 0.01125318743288517, -0.22554311156272888, 0.029217541217803955, 1.1323415040969849, -0.17582057416439056, 0.0830267146229744, 0.03286074474453926]} +{"t": 17.7097, "q": [-0.32690495252609253, -0.01913555897772312, 0.011209016665816307, 0.6240063309669495, -0.31995856761932373, 0.018701212480664253, -0.36510106921195984, -0.0011590076610445976, 0.0006294191116467118, 0.6010733246803284, -0.28118643164634705, 0.007898933254182339, 0.0049817850813269615, 0.034287065267562866, 0.01895964704453945, 0.07032343000173569, 0.29321804642677307, -0.7691954970359802, 1.0651459693908691, -0.6184579133987427, -0.41056758165359497, 0.12654143571853638, 0.010965566150844097, -0.22243919968605042, 0.030296120792627335, 1.1342350244522095, -0.17577263712882996, 0.08303869515657425, 0.03283677622675896]} +{"t": 17.7265, "q": [-0.32690495252609253, -0.01913555897772312, 0.011142057366669178, 0.6240489482879639, -0.3199131190776825, 0.018766755238175392, -0.36509254574775696, -0.0011760519118979573, 0.0004821082402486354, 0.6012182235717773, -0.2811906039714813, 0.007906180806457996, 0.005249623209238052, 0.0341510996222496, 0.019000547006726265, 0.0713181272149086, 0.28680646419525146, -0.7692314386367798, 1.0659968852996826, -0.618433952331543, -0.41047170758247375, 0.12675714492797852, 0.010737866163253784, -0.21898774802684784, 0.031218906864523888, 1.136452078819275, -0.17577263712882996, 0.08306266367435455, 0.03283677622675896]} +{"t": 17.7433, "q": [-0.3269219994544983, -0.019169647246599197, 0.010941178537905216, 0.6242023706436157, -0.319909006357193, 0.01874501071870327, -0.36505845189094543, -0.0011590076610445976, 0.00030801360844634473, 0.6013801097869873, -0.2811822295188904, 0.007891685701906681, 0.005905826110392809, 0.03412839025259018, 0.019015317782759666, 0.07168963551521301, 0.2802271246910095, -0.7689558267593384, 1.0678064823150635, -0.6185058355331421, -0.4104836881160736, 0.12754811346530914, 0.010570086538791656, -0.21563217043876648, 0.03163835406303406, 1.1383576393127441, -0.17580857872962952, 0.0830267146229744, 0.03283677622675896]} +{"t": 17.76, "q": [-0.3269134759902954, -0.01917816884815693, 0.010673340409994125, 0.624338686466217, -0.3198802173137665, 0.018708936870098114, -0.36499881744384766, -0.0011590076610445976, 0.00012052706006215885, 0.6015931963920593, -0.2811781167984009, 0.007898880168795586, 0.006588812451809645, 0.03419634699821472, 0.01899963803589344, 0.07183344662189484, 0.27410319447517395, -0.7679731249809265, 1.070443034172058, -0.6187575459480286, -0.41065147519111633, 0.12844692170619965, 0.010462228208780289, -0.2127799242734909, 0.031925976276397705, 1.1410900354385376, -0.17577263712882996, 0.08300274610519409, 0.03286074474453926]} +{"t": 17.7768, "q": [-0.32688790559768677, -0.01918669044971466, 0.010392110794782639, 0.6245091557502747, -0.3198266923427582, 0.01865849271416664, -0.36494767665863037, -0.001201618229970336, -0.00012052706006215885, 0.6018999814987183, -0.28119051456451416, 0.00787727814167738, 0.007445894181728363, 0.03437801077961922, 0.018881483003497124, 0.07171360403299332, 0.26993268728256226, -0.7676615118980408, 1.0728517770767212, -0.6190451383590698, -0.4106634557247162, 0.12969328463077545, 0.010186591185629368, -0.2099636197090149, 0.0321776457130909, 1.1444934606552124, -0.17577263712882996, 0.08306266367435455, 0.032884713262319565]} +{"t": 17.7936, "q": [-0.3268367648124695, -0.019203735515475273, 0.01000374648720026, 0.6247562766075134, -0.31977733969688416, 0.01858627423644066, -0.3648453950881958, -0.001184574095532298, -0.00040175687172450125, 0.6021982431411743, -0.2812275290489197, 0.007769182790070772, 0.007700339891016483, 0.03451431915163994, 0.01878330111503601, 0.07167764753103256, 0.2677515745162964, -0.7676016092300415, 1.0742419958114624, -0.619093120098114, -0.41077131032943726, 0.130232572555542, 0.010006828233599663, -0.20739899575710297, 0.03214169293642044, 1.1465907096862793, -0.1757846176624298, 0.0830506831407547, 0.032884713262319565]} +{"t": 17.8104, "q": [-0.32680267095565796, -0.01911851391196251, 0.00958859734237194, 0.624858558177948, -0.3197362422943115, 0.018499506637454033, -0.36481133103370667, -0.0011504855938255787, -0.0007231623749248683, 0.6025476455688477, -0.28125229477882385, 0.007725996896624565, 0.00772712379693985, 0.0345977321267128, 0.01870996318757534, 0.0716416984796524, 0.26636138558387756, -0.7674458026885986, 1.0762673616409302, -0.6191051006317139, -0.41077131032943726, 0.13072392344474792, 0.00971920695155859, -0.204366996884346, 0.03209375590085983, 1.1481246948242188, -0.17577263712882996, 0.0830506831407547, 0.032884713262319565]} +{"t": 17.8272, "q": [-0.3267686069011688, -0.01905885897576809, 0.00940111093223095, 0.6250545382499695, -0.3196868300437927, 0.018456287682056427, -0.3648028075695038, -0.0011163970921188593, -0.0009642164804972708, 0.6029055714607239, -0.28128907084465027, 0.0075456551276147366, 0.007553029339760542, 0.034628432244062424, 0.018623387441039085, 0.07112637907266617, 0.26536670327186584, -0.7673499584197998, 1.0796468257904053, -0.6190810799598694, -0.4108312129974365, 0.13096360862255096, 0.009563411585986614, -0.20144283771514893, 0.03206978738307953, 1.1495388746261597, -0.17577263712882996, 0.0830506831407547, 0.03286074474453926]} +{"t": 17.844, "q": [-0.3267686069011688, -0.01893954910337925, 0.00925379991531372, 0.6253613233566284, -0.3196621835231781, 0.01839841902256012, -0.3648453950881958, -0.0009970874525606632, -0.0010713516967371106, 0.6033743023872375, -0.28131771087646484, 0.007423046510666609, 0.0071914480067789555, 0.03473450243473053, 0.01854480803012848, 0.06995192170143127, 0.2641562819480896, -0.7666907906532288, 1.0834099054336548, -0.6190690994262695, -0.41081923246383667, 0.13105948269367218, 0.00920388475060463, -0.19850671291351318, 0.03206978738307953, 1.151168704032898, -0.1757846176624298, 0.0830506831407547, 0.03284876048564911]} +{"t": 17.8607, "q": [-0.32675155997276306, -0.01882024109363556, 0.009267191402614117, 0.625608503818512, -0.319649875164032, 0.018362225964665413, -0.36487096548080444, -0.0009033442474901676, -0.001084743533283472, 0.6038089394569397, -0.2813672125339508, 0.0073222327046096325, 0.006829866673797369, 0.03485577553510666, 0.018446816131472588, 0.06935270875692368, 0.2629578709602356, -0.7656481862068176, 1.085495114326477, -0.6190810799598694, -0.41079527139663696, 0.13109543919563293, 0.008580705150961876, -0.19575034081935883, 0.03205780312418938, 1.15248703956604, -0.1757606416940689, 0.0830506831407547, 0.03286074474453926]} +{"t": 17.8775, "q": [-0.32675155997276306, -0.018683886155486107, 0.00925379991531372, 0.6259238123893738, -0.3196457326412201, 0.01836950145661831, -0.3648794889450073, -0.0007925567333586514, -0.001084743533283472, 0.6041072010993958, -0.2813793420791626, 0.007228402886539698, 0.006736123468726873, 0.035143930464982986, 0.018192600458860397, 0.0692208856344223, 0.2614838182926178, -0.7640662789344788, 1.0871250629425049, -0.6190571188926697, -0.4108072519302368, 0.1311553567647934, 0.00771784083917737, -0.19342540204524994, 0.03205780312418938, 1.1537692546844482, -0.17574866116046906, 0.08303869515657425, 0.03286074474453926]} +{"t": 17.8942, "q": [-0.3267259895801544, -0.018675364553928375, 0.009267191402614117, 0.6260942816734314, -0.3196622431278229, 0.018354902043938637, -0.36491358280181885, -0.0007755124825052917, -0.0010981354862451553, 0.604533314704895, -0.2814454436302185, 0.007113252766430378, 0.006910218391567469, 0.035333987325429916, 0.017945051193237305, 0.06916096061468124, 0.2598299980163574, -0.762328565120697, 1.088838815689087, -0.6190810799598694, -0.4108312129974365, 0.13121528923511505, 0.007310377433896065, -0.1916637122631073, 0.03206978738307953, 1.155279278755188, -0.17585651576519012, 0.0830267146229744, 0.03286074474453926]} +{"t": 17.9109, "q": [-0.3268282413482666, -0.018683886155486107, 0.009186840616166592, 0.6264692544937134, -0.3196622133255005, 0.01836940087378025, -0.3649391531944275, -0.000818123109638691, -0.0011517030652612448, 0.6049679517745972, -0.2815448045730591, 0.006998331286013126, 0.007084312848746777, 0.0357661098241806, 0.01757771521806717, 0.06913699209690094, 0.2578166425228119, -0.760758638381958, 1.0907442569732666, -0.6190571188926697, -0.41086718440055847, 0.13134710490703583, 0.00689092930406332, -0.19020164012908936, 0.03205780312418938, 1.157112956047058, -0.1757366806268692, 0.08301472663879395, 0.03286074474453926]} +{"t": 17.9276, "q": [-0.326870858669281, -0.018743541091680527, 0.009186840616166592, 0.6268271803855896, -0.3196622133255005, 0.01836940087378025, -0.36501583456993103, -0.0008522115531377494, -0.0011383111122995615, 0.605445146560669, -0.2816649079322815, 0.006876302883028984, 0.007445894181728363, 0.036091871559619904, 0.01733679324388504, 0.06911302357912064, 0.255863219499588, -0.7599436640739441, 1.0928294658660889, -0.6191530227661133, -0.4109630584716797, 0.1315268725156784, 0.006531402934342623, -0.189015194773674, 0.03203383460640907, 1.1587547063827515, -0.1757366806268692, 0.0830267146229744, 0.03287272900342941]} +{"t": 17.9446, "q": [-0.32694756984710693, -0.018837284296751022, 0.009186840616166592, 0.627099871635437, -0.3196745812892914, 0.01837659440934658, -0.3651522099971771, -0.0009885653853416443, -0.0011383111122995615, 0.6059138774871826, -0.28181812167167664, 0.0067111230455338955, 0.007593204732984304, 0.036288559436798096, 0.017237095162272453, 0.0692208856344223, 0.254377156496048, -0.7596201300621033, 1.0942556858062744, -0.6191170811653137, -0.41114282608032227, 0.13197028636932373, 0.006399576086550951, -0.1880924105644226, 0.03203383460640907, 1.1600010395050049, -0.1757366806268692, 0.08301472663879395, 0.03284876048564911]} +{"t": 17.9613, "q": [-0.32703277468681335, -0.018931027501821518, 0.009200232103466988, 0.6273896098136902, -0.3196786940097809, 0.018383819609880447, -0.3652970790863037, -0.0010823087068274617, -0.0010713516967371106, 0.6064337491989136, -0.2819259464740753, 0.006639580707997084, 0.0076467725448310375, 0.036440011113882065, 0.017138319090008736, 0.06931675970554352, 0.2530948519706726, -0.75950026512146, 1.095933437347412, -0.6191410422325134, -0.4113824963569641, 0.13259346783161163, 0.0063156867399811745, -0.18715764582157135, 0.032045818865299225, 1.1618705987930298, -0.17577263712882996, 0.08300274610519409, 0.03284876048564911]} +{"t": 17.978, "q": [-0.32711800932884216, -0.019016249105334282, 0.009267191402614117, 0.627773106098175, -0.31967872381210327, 0.01836930215358734, -0.36555275321006775, -0.001141963410191238, -0.001004392164759338, 0.6070302724838257, -0.2820088267326355, 0.006567880045622587, 0.0076869479380548, 0.03647788614034653, 0.01711359992623329, 0.0692208856344223, 0.2521960437297821, -0.7594283819198608, 1.0977071523666382, -0.6191650032997131, -0.41167011857032776, 0.13315673172473907, 0.0062797339633107185, -0.18617494404315948, 0.031985897570848465, 1.1639678478240967, -0.17577263712882996, 0.08300274610519409, 0.03284876048564911]} +{"t": 17.9949, "q": [-0.32736513018608093, -0.019016249105334282, 0.009347543120384216, 0.6281651258468628, -0.31969934701919556, 0.018361926078796387, -0.36591067910194397, -0.0011760519118979573, -0.0009374326909892261, 0.6076779365539551, -0.282219797372818, 0.006273073144257069, 0.007606596685945988, 0.036410022526979446, 0.017110304906964302, 0.06888532638549805, 0.25160881876945496, -0.7593564391136169, 1.0999361276626587, -0.6191410422325134, -0.41212552785873413, 0.1333484798669815, 0.006339655257761478, -0.18522818386554718, 0.03191399201750755, 1.1659092903137207, -0.17570072412490845, 0.08300274610519409, 0.03284876048564911]} +{"t": 18.0116, "q": [-0.3274674117565155, -0.019024770706892014, 0.009441286325454712, 0.6284804344177246, -0.31969934701919556, 0.018361926078796387, -0.36615779995918274, -0.001201618229970336, -0.0008704732172191143, 0.6083000898361206, -0.2822858691215515, 0.006157923024147749, 0.0074860695749521255, 0.03637208789587021, 0.01714458130300045, 0.06819023936986923, 0.2512492835521698, -0.7593085169792175, 1.1015900373458862, -0.6191410422325134, -0.4122813045978546, 0.13344435393810272, 0.006639260798692703, -0.18428143858909607, 0.031925976276397705, 1.1670358180999756, -0.17574866116046906, 0.08303869515657425, 0.03286074474453926]} +{"t": 18.0283, "q": [-0.32762932777404785, -0.019024770706892014, 0.009548421949148178, 0.6287276148796082, -0.31970348954200745, 0.01835465244948864, -0.36660948395729065, -0.0012186624808236957, -0.0007767299539409578, 0.6089733242988586, -0.2823728919029236, 0.006079009734094143, 0.007298583164811134, 0.03631914034485817, 0.017169596627354622, 0.0676988884806633, 0.25109347701072693, -0.7593204975128174, 1.102536678314209, -0.6191650032997131, -0.4124371111392975, 0.13349229097366333, 0.007046724669635296, -0.18323880434036255, 0.031925976276397705, 1.168054461479187, -0.1757846176624298, 0.0830506831407547, 0.03287272900342941]} +{"t": 18.0452, "q": [-0.32777419686317444, -0.01906738243997097, 0.009749299846589565, 0.6290684938430786, -0.31970345973968506, 0.018369151279330254, -0.36702707409858704, -0.0012357067316770554, -0.0006428110064007342, 0.6097062230110168, -0.28246381878852844, 0.005935133434832096, 0.007231623865664005, 0.03633434325456619, 0.01715017296373844, 0.06696785241365433, 0.2508538067340851, -0.7593324780464172, 1.10355544090271, -0.6191170811653137, -0.41256892681121826, 0.13349229097366333, 0.007190535310655832, -0.18218418955802917, 0.03189002349972725, 1.1688693761825562, -0.17580857872962952, 0.0830267146229744, 0.032824791967868805]} +{"t": 18.0621, "q": [-0.3280213475227356, -0.019084425643086433, 0.009976962581276894, 0.6294008493423462, -0.31969520449638367, 0.018369201570749283, -0.36760658025741577, -0.0013038836186751723, -0.000522283953614533, 0.6106862425804138, -0.2826003134250641, 0.0057409824803471565, 0.007218231912702322, 0.03636457398533821, 0.017139967530965805, 0.06612895429134369, 0.25056618452072144, -0.7593085169792175, 1.1045141220092773, -0.619093120098114, -0.41256892681121826, 0.13354022800922394, 0.007274424657225609, -0.18122544884681702, 0.03193796053528786, 1.1691211462020874, -0.1757366806268692, 0.08303869515657425, 0.03283677622675896]} +{"t": 18.0788, "q": [-0.328251451253891, -0.019203735515475273, 0.01024479977786541, 0.6298184394836426, -0.31969934701919556, 0.018361926078796387, -0.3682883381843567, -0.001440237509086728, -0.00026783792418427765, 0.6118793487548828, -0.28286972641944885, 0.005518773104995489, 0.007204839959740639, 0.036342035979032516, 0.01712612435221672, 0.06503839045763016, 0.2503025233745575, -0.7593085169792175, 1.1057724952697754, -0.6191170811653137, -0.41254496574401855, 0.13354022800922394, 0.007286408916115761, -0.18033862113952637, 0.03194994479417801, 1.169252872467041, -0.17577263712882996, 0.0830506831407547, 0.03283677622675896]} +{"t": 18.0957, "q": [-0.3285582363605499, -0.019271912053227425, 0.010499246418476105, 0.6301848888397217, -0.31969109177589417, 0.018361976370215416, -0.36898714303970337, -0.0015425028977915645, -9.374327055411413e-05, 0.6129957437515259, -0.28303125500679016, 0.005353664048016071, 0.0071914480067789555, 0.03634197264909744, 0.017135683447122574, 0.06401973217725754, 0.2499549835920334, -0.7593564391136169, 1.1068271398544312, -0.6191410422325134, -0.41247305274009705, 0.13354022800922394, 0.007597998715937138, -0.17982329428195953, 0.03197391331195831, 1.1693248748779297, -0.1757606416940689, 0.08303869515657425, 0.03283677622675896]} +{"t": 18.1124, "q": [-0.3287457227706909, -0.019340088590979576, 0.01092778705060482, 0.6304575800895691, -0.31968697905540466, 0.01835475116968155, -0.3696092665195465, -0.0016106797847896814, 0.0002410541201243177, 0.6139076352119446, -0.28311821818351746, 0.005260308738797903, 0.007124488707631826, 0.03635700047016144, 0.017144910991191864, 0.06303702294826508, 0.24953553080558777, -0.7593564391136169, 1.1077858209609985, -0.6191170811653137, -0.41242513060569763, 0.13354022800922394, 0.00788561999797821, -0.1795596480369568, 0.031985897570848465, 1.1698521375656128, -0.1757606416940689, 0.0830506831407547, 0.03283677622675896]} +{"t": 18.1291, "q": [-0.32887354493141174, -0.019340088590979576, 0.01124919205904007, 0.6305257678031921, -0.31967464089393616, 0.01834755763411522, -0.3701291084289551, -0.0016021577175706625, 0.00046871634549461305, 0.614623486995697, -0.2831718623638153, 0.005152300465852022, 0.006977177690714598, 0.03638723865151405, 0.017134694382548332, 0.06215019151568413, 0.24906815588474274, -0.7593684196472168, 1.108864426612854, -0.6191170811653137, -0.4124011695384979, 0.1335522085428238, 0.00812530517578125, -0.1793798804283142, 0.031985897570848465, 1.1711105108261108, -0.1757127046585083, 0.0830506831407547, 0.03283677622675896]} +{"t": 18.1459, "q": [-0.3288991153240204, -0.01931452378630638, 0.011450070887804031, 0.6305854320526123, -0.31965821981430054, 0.018304158002138138, -0.3704785108566284, -0.0015936355339363217, 0.0006294191116467118, 0.6152200102806091, -0.2832130193710327, 0.005037010181695223, 0.00672273151576519, 0.036394812166690826, 0.017129749059677124, 0.061359234154224396, 0.2484809309244156, -0.759416401386261, 1.110002875328064, -0.6191170811653137, -0.4123292565345764, 0.1335522085428238, 0.008305068127810955, -0.17934392392635345, 0.031985897570848465, 1.1725245714187622, -0.17572470009326935, 0.08303869515657425, 0.03283677622675896]} +{"t": 18.1627, "q": [-0.3288905918598175, -0.0193060003221035, 0.011490246281027794, 0.630696177482605, -0.3195430636405945, 0.018116284161806107, -0.37070009112358093, -0.0016106797847896814, 0.0006695947959087789, 0.6157143115997314, -0.28327906131744385, 0.004907417576760054, 0.00646828580647707, 0.0363948717713356, 0.01712019182741642, 0.06071208417415619, 0.24778583645820618, -0.7593804597854614, 1.1111654043197632, -0.6191410422325134, -0.4123052954673767, 0.13356418907642365, 0.008556736633181572, -0.1793559193611145, 0.03194994479417801, 1.1738429069519043, -0.17574866116046906, 0.0830506831407547, 0.03283677622675896]} +{"t": 18.1794, "q": [-0.32887354493141174, -0.019288957118988037, 0.011503638699650764, 0.6307387948036194, -0.3193950355052948, 0.017856111750006676, -0.3708449602127075, -0.0015765913994982839, 0.0006695947959087789, 0.6161489486694336, -0.28334084153175354, 0.004756100010126829, 0.006254015490412712, 0.03638748452067375, 0.017096461728215218, 0.060280654579401016, 0.24722258746623993, -0.7593804597854614, 1.1121240854263306, -0.6191650032997131, -0.4122813045978546, 0.1335761696100235, 0.008676579222083092, -0.17936789989471436, 0.03193796053528786, 1.1759161949157715, -0.17570072412490845, 0.08303869515657425, 0.03283677622675896]} +{"t": 18.1961, "q": [-0.3288905918598175, -0.01924634538590908, 0.01143667846918106, 0.6308069825172424, -0.31927984952926636, 0.017682773992419243, -0.3709813356399536, -0.0015765913994982839, 0.0006829866906628013, 0.6163960695266724, -0.28340286016464233, 0.004662604536861181, 0.006187055725604296, 0.03644062951207161, 0.0170427393168211, 0.05993311107158661, 0.24662336707115173, -0.7593924403190613, 1.1130589246749878, -0.6190810799598694, -0.41229331493377686, 0.13358816504478455, 0.008688563480973244, -0.1793319433927536, 0.03191399201750755, 1.1783249378204346, -0.17567676305770874, 0.08301472663879395, 0.03283677622675896]} +{"t": 18.2128, "q": [-0.3289332091808319, -0.019203735515475273, 0.011396503075957298, 0.6308155059814453, -0.3192017674446106, 0.017530927434563637, -0.37110915780067444, -0.0015510249650105834, 0.0006562029011547565, 0.616489827632904, -0.28341102600097656, 0.004619313403964043, 0.0062272315844893456, 0.03653164580464363, 0.016964295879006386, 0.059597551822662354, 0.24596424400806427, -0.7593924403190613, 1.114101529121399, -0.6191290616989136, -0.4122813045978546, 0.13361212611198425, 0.008628642186522484, -0.17934392392635345, 0.031866054981946945, 1.1813570261001587, -0.17570072412490845, 0.08303869515657425, 0.032824791967868805]} +{"t": 18.2296, "q": [-0.32895025610923767, -0.019152602180838585, 0.01124919205904007, 0.6308240294456482, -0.31907838582992554, 0.017328640446066856, -0.37118586897850037, -0.0014828480780124664, 0.0005892434273846447, 0.6165835857391357, -0.2834232747554779, 0.00455438531935215, 0.006294190883636475, 0.03660782426595688, 0.016847951337695122, 0.059489693492650986, 0.2453290820121765, -0.7593444585800171, 1.115012288093567, -0.6191410422325134, -0.41229331493377686, 0.13366006314754486, 0.00860467366874218, -0.17934392392635345, 0.031925976276397705, 1.1844369173049927, -0.1757127046585083, 0.0830267146229744, 0.03283677622675896]} +{"t": 18.2463, "q": [-0.32900992035865784, -0.019101470708847046, 0.011101881042122841, 0.630841076374054, -0.3189879357814789, 0.017169635742902756, -0.37124550342559814, -0.001448759576305747, 0.0005088920588605106, 0.6166432499885559, -0.2834146320819855, 0.004467662423849106, 0.006334366742521524, 0.036592982709407806, 0.01681005023419857, 0.05933389812707901, 0.24478977918624878, -0.7593444585800171, 1.1159590482711792, -0.6191410422325134, -0.41231727600097656, 0.13368403911590576, 0.008568720892071724, -0.17934392392635345, 0.03189002349972725, 1.1874569654464722, -0.17570072412490845, 0.0830506831407547, 0.03283677622675896]} +{"t": 18.2631, "q": [-0.3290354907512665, -0.019041815772652626, 0.010967962443828583, 0.6308495998382568, -0.3188810348510742, 0.016981730237603188, -0.37124550342559814, -0.0013976269401609898, 0.00042854066123254597, 0.6166432499885559, -0.28338536620140076, 0.004431354813277721, 0.006414717994630337, 0.03663836792111397, 0.01678994484245777, 0.05920207127928734, 0.24416659772396088, -0.7592845559120178, 1.1171455383300781, -0.6191410422325134, -0.41237717866897583, 0.13371998071670532, 0.00894023198634386, -0.17934392392635345, 0.03189002349972725, 1.1893744468688965, -0.17565278708934784, 0.0830506831407547, 0.03283677622675896]} +{"t": 18.2798, "q": [-0.3291633129119873, -0.018982160836458206, 0.010807259939610958, 0.630841076374054, -0.3188069462776184, 0.016895143315196037, -0.3713563084602356, -0.0013720606220886111, 0.00033479739795438945, 0.616634726524353, -0.28340184688568115, 0.004388116300106049, 0.006374542135745287, 0.03661619871854782, 0.016718754544854164, 0.058950405567884445, 0.24337564408779144, -0.7592126727104187, 1.1189790964126587, -0.6191410422325134, -0.41254496574401855, 0.13375593721866608, 0.00920388475060463, -0.17934392392635345, 0.0319020077586174, 1.190908432006836, -0.1757366806268692, 0.08306266367435455, 0.03283677622675896]} +{"t": 18.2965, "q": [-0.3292655646800995, -0.018922505900263786, 0.010753692127764225, 0.6308495998382568, -0.31877410411834717, 0.016808325424790382, -0.37146708369255066, -0.0013294500531628728, 0.0003481892927084118, 0.6166517734527588, -0.2833976745605469, 0.004380869213491678, 0.00638793408870697, 0.03660153970122337, 0.016652178019285202, 0.058578893542289734, 0.24234500527381897, -0.7592246532440186, 1.120956540107727, -0.619176983833313, -0.4126528203487396, 0.13383983075618744, 0.009359680116176605, -0.1793319433927536, 0.03193796053528786, 1.1921907663345337, -0.17572470009326935, 0.0830506831407547, 0.03283677622675896]} +{"t": 18.3133, "q": [-0.3294530510902405, -0.018896939232945442, 0.010713516734540462, 0.6308495998382568, -0.31872472167015076, 0.01675058901309967, -0.37161195278167725, -0.001312405802309513, 0.00033479739795438945, 0.6166262030601501, -0.28338098526000977, 0.004366321489214897, 0.006374542135745287, 0.03659464418888092, 0.01655198447406292, 0.05817142874002457, 0.24117055535316467, -0.7592126727104187, 1.1227182149887085, -0.6191650032997131, -0.41274869441986084, 0.1339476853609085, 0.009371664375066757, -0.1792600452899933, 0.03193796053528786, 1.1937127113342285, -0.17565278708934784, 0.08303869515657425, 0.032824791967868805]} +{"t": 18.33, "q": [-0.32954680919647217, -0.01888841763138771, 0.010740300640463829, 0.6308495998382568, -0.31871238350868225, 0.01672891341149807, -0.3717142343521118, -0.001312405802309513, 0.00040175687172450125, 0.6166517734527588, -0.28338098526000977, 0.004366321489214897, 0.006414717994630337, 0.03657222539186478, 0.016519026830792427, 0.057680077850818634, 0.23980434238910675, -0.7591527104377747, 1.1239405870437622, -0.6191650032997131, -0.41284456849098206, 0.13416339457035065, 0.009563411585986614, -0.17920011281967163, 0.031925976276397705, 1.1949710845947266, -0.17565278708934784, 0.08303869515657425, 0.03281280770897865]} +{"t": 18.3467, "q": [-0.3296831548213959, -0.018913984298706055, 0.010726908221840858, 0.6308495998382568, -0.31871241331100464, 0.016714412719011307, -0.3717823922634125, -0.001320927869528532, 0.00040175687172450125, 0.6166262030601501, -0.28338098526000977, 0.004366321489214897, 0.006414717994630337, 0.03661046922206879, 0.01643695868551731, 0.05700895935297012, 0.23877370357513428, -0.7590089440345764, 1.1254026889801025, -0.6191889643669128, -0.4130003750324249, 0.13433118164539337, 0.009695238433778286, -0.17917615175247192, 0.03196192905306816, 1.1963611841201782, -0.17567676305770874, 0.0830506831407547, 0.03283677622675896]} +{"t": 18.3636, "q": [-0.3298535943031311, -0.018913984298706055, 0.010740300640463829, 0.6308922171592712, -0.31871238350868225, 0.01672891341149807, -0.37187615036964417, -0.001320927869528532, 0.0004553244507405907, 0.6166262030601501, -0.2833685278892517, 0.004373463336378336, 0.006414717994630337, 0.03652080520987511, 0.01630512624979019, 0.05601426959037781, 0.23763519525527954, -0.7589489817619324, 1.128135085105896, -0.619176983833313, -0.41321608424186707, 0.1344749927520752, 0.009647301398217678, -0.17920011281967163, 0.03189002349972725, 1.198386549949646, -0.1756887435913086, 0.0830267146229744, 0.03281280770897865]} +{"t": 18.3805, "q": [-0.32993030548095703, -0.018922505900263786, 0.010767084546387196, 0.6309348344802856, -0.31872063875198364, 0.016714364290237427, -0.3718931972980499, -0.001312405802309513, 0.0004151487664785236, 0.6166091561317444, -0.28335604071617126, 0.0043661636300385, 0.00642810994759202, 0.036370422691106796, 0.0162319615483284, 0.054612115025520325, 0.2365206629037857, -0.7587811946868896, 1.1311790943145752, -0.6191650032997131, -0.4132520258426666, 0.13466674089431763, 0.009575395844876766, -0.17924804985523224, 0.0319020077586174, 1.2008312940597534, -0.1757366806268692, 0.08303869515657425, 0.032824791967868805]} +{"t": 18.3972, "q": [-0.33014336228370667, -0.018922505900263786, 0.010646557435393333, 0.6309518814086914, -0.31871652603149414, 0.016721637919545174, -0.3719528615474701, -0.001320927869528532, 0.0003883649769704789, 0.6165750622749329, -0.28334760665893555, 0.004337226506322622, 0.006495069246739149, 0.03622792288661003, 0.01610606163740158, 0.053473614156246185, 0.23586153984069824, -0.7587692141532898, 1.132868766784668, -0.6191889643669128, -0.41326403617858887, 0.13473863899707794, 0.009515474550426006, -0.1793319433927536, 0.03185407072305679, 1.2028326988220215, -0.1757606416940689, 0.08303869515657425, 0.03281280770897865]} +{"t": 18.414, "q": [-0.3303138017654419, -0.018905460834503174, 0.010619773529469967, 0.6309689283370972, -0.31870824098587036, 0.016736188903450966, -0.37202101945877075, -0.0013038836186751723, 0.00030801360844634473, 0.6165580153465271, -0.2833392918109894, 0.0043371738865971565, 0.006521853152662516, 0.03609275072813034, 0.01601344905793667, 0.052395034581422806, 0.23523835837841034, -0.7587452530860901, 1.13418710231781, -0.6191650032997131, -0.4132760167121887, 0.13476261496543884, 0.009503490291535854, -0.17936789989471436, 0.0319020077586174, 1.2043787240982056, -0.17572470009326935, 0.08303869515657425, 0.0328008234500885]} +{"t": 18.4308, "q": [-0.33046719431877136, -0.018922505900263786, 0.010633165016770363, 0.6309944987297058, -0.31871241331100464, 0.016714412719011307, -0.37211477756500244, -0.001312405802309513, 0.0002946217136923224, 0.6165239214897156, -0.2833142578601837, 0.00430811382830143, 0.006508461199700832, 0.03608523681759834, 0.016008835285902023, 0.05134041979908943, 0.23445938527584076, -0.7587572336196899, 1.1361165046691895, -0.6191650032997131, -0.4132520258426666, 0.13476261496543884, 0.009299758821725845, -0.1793319433927536, 0.031925976276397705, 1.2062242031097412, -0.17579659819602966, 0.0830506831407547, 0.03281280770897865]} +{"t": 18.4476, "q": [-0.3305864930152893, -0.018922505900263786, 0.010686732828617096, 0.6310200095176697, -0.31870824098587036, 0.016736188903450966, -0.37219998240470886, -0.001312405802309513, 0.00033479739795438945, 0.6165153980255127, -0.2832934260368347, 0.0043007610365748405, 0.00646828580647707, 0.036077722907066345, 0.016004221513867378, 0.05041763558983803, 0.23376429080963135, -0.7587692141532898, 1.1378542184829712, -0.619176983833313, -0.4132520258426666, 0.1347745954990387, 0.009167931973934174, -0.17920011281967163, 0.03193796053528786, 1.2077581882476807, -0.1757366806268692, 0.08301472663879395, 0.03281280770897865]} +{"t": 18.4644, "q": [-0.33062058687210083, -0.018956594169139862, 0.010767084546387196, 0.6310285329818726, -0.31870824098587036, 0.016736188903450966, -0.37224259972572327, -0.001312405802309513, 0.0003883649769704789, 0.6165153980255127, -0.28329354524612427, 0.004329645074903965, 0.006441501900553703, 0.03612304851412773, 0.015993675217032433, 0.04963866248726845, 0.2329493761062622, -0.7587692141532898, 1.1397716999053955, -0.6191650032997131, -0.4132879972457886, 0.1347745954990387, 0.009287774562835693, -0.17886456847190857, 0.03200986608862877, 1.208764910697937, -0.17572470009326935, 0.08303869515657425, 0.03281280770897865]} +{"t": 18.4811, "q": [-0.3306887745857239, -0.018956594169139862, 0.010834043845534325, 0.6310285329818726, -0.31871646642684937, 0.0167506393045187, -0.3723107874393463, -0.0013379721203818917, 0.0004151487664785236, 0.6165068745613098, -0.28329768776893616, 0.004322450142353773, 0.006334366742521524, 0.03612304851412773, 0.015993675217032433, 0.049135323613882065, 0.23247000575065613, -0.7587692141532898, 1.141149878501892, -0.6191650032997131, -0.41326403617858887, 0.1347985714673996, 0.009575395844876766, -0.17839717864990234, 0.032045818865299225, 1.2098554372787476, -0.1756887435913086, 0.08300274610519409, 0.03281280770897865]} +{"t": 18.4978, "q": [-0.33069729804992676, -0.018965115770697594, 0.010941178537905216, 0.6310285329818726, -0.31871238350868225, 0.01672891341149807, -0.3723193109035492, -0.0013294500531628728, 0.00042854066123254597, 0.6165068745613098, -0.2832934856414795, 0.004315203055739403, 0.006200447678565979, 0.036130499094724655, 0.01600784622132778, 0.048835717141628265, 0.2322303205728531, -0.7587692141532898, 1.141821026802063, -0.6192009449005127, -0.4133119583129883, 0.13478657603263855, 0.009886985644698143, -0.17766614258289337, 0.03205780312418938, 1.2108501195907593, -0.17570072412490845, 0.0830267146229744, 0.03281280770897865]} +{"t": 18.5146, "q": [-0.3307143449783325, -0.018965115770697594, 0.010967962443828583, 0.6310200095176697, -0.31871649622917175, 0.016736138612031937, -0.3723278343677521, -0.001312405802309513, 0.00044193255598656833, 0.6164983510971069, -0.28329354524612427, 0.004329645074903965, 0.006160271819680929, 0.03612280264496803, 0.016031906008720398, 0.04851214215159416, 0.23217038810253143, -0.7587811946868896, 1.1424082517623901, -0.6191650032997131, -0.41332393884658813, 0.1347985714673996, 0.010210559703409672, -0.17703098058700562, 0.03206978738307953, 1.2117249965667725, -0.17567676305770874, 0.08301472663879395, 0.03281280770897865]} +{"t": 18.5313, "q": [-0.33075693249702454, -0.018965115770697594, 0.01099474634975195, 0.6310285329818726, -0.31871646642684937, 0.0167506393045187, -0.3723107874393463, -0.001320927869528532, 0.00042854066123254597, 0.6165153980255127, -0.2832934856414795, 0.004315203055739403, 0.006146880332380533, 0.03611522540450096, 0.016036849468946457, 0.04809269681572914, 0.23196665942668915, -0.7587692141532898, 1.1431632041931152, -0.6191290616989136, -0.4133599102497101, 0.1347985714673996, 0.010306433774530888, -0.17641977965831757, 0.03205780312418938, 1.212707757949829, -0.17570072412490845, 0.0830506831407547, 0.032824791967868805]} +{"t": 18.5481, "q": [-0.3307654559612274, -0.018973637372255325, 0.01099474634975195, 0.6310285329818726, -0.3187123239040375, 0.016757912933826447, -0.37229374051094055, -0.001312405802309513, 0.00040175687172450125, 0.6164813041687012, -0.2832810580730438, 0.004322344902902842, 0.006200447678565979, 0.0361454002559185, 0.01603619009256363, 0.04776912182569504, 0.23187078535556793, -0.7587692141532898, 1.1436187028884888, -0.6191530227661133, -0.41332393884658813, 0.13481055200099945, 0.01025849673897028, -0.17600032687187195, 0.03206978738307953, 1.2133429050445557, -0.17570072412490845, 0.08306266367435455, 0.03281280770897865]} +{"t": 18.5648, "q": [-0.3307739794254303, -0.018965115770697594, 0.011008137837052345, 0.6310200095176697, -0.31871646642684937, 0.0167506393045187, -0.3722766935825348, -0.0013294500531628728, 0.0004151487664785236, 0.6164813041687012, -0.2832851707935333, 0.004315150436013937, 0.006320974789559841, 0.036137890070676804, 0.016031576320528984, 0.047577373683452606, 0.2316790372133255, -0.7587932348251343, 1.1438583135604858, -0.6191650032997131, -0.4133599102497101, 0.13481055200099945, 0.010090718045830727, -0.17580857872962952, 0.032045818865299225, 1.213546633720398, -0.17567676305770874, 0.0830506831407547, 0.032824791967868805]} +{"t": 18.5815, "q": [-0.33075693249702454, -0.018973637372255325, 0.011021530255675316, 0.6310285329818726, -0.31871646642684937, 0.0167506393045187, -0.3722681701183319, -0.001320927869528532, 0.00040175687172450125, 0.616489827632904, -0.28328937292099, 0.004322397522628307, 0.006361150648444891, 0.036153100430965424, 0.016012130305171013, 0.047529436647892, 0.23151126503944397, -0.7587932348251343, 1.1441819667816162, -0.6191650032997131, -0.4133838713169098, 0.1347985714673996, 0.00971920695155859, -0.17570072412490845, 0.03206978738307953, 1.2135945558547974, -0.1756887435913086, 0.0830267146229744, 0.03283677622675896]} +{"t": 18.5982, "q": [-0.3307228684425354, -0.018973637372255325, 0.01099474634975195, 0.6310200095176697, -0.31871235370635986, 0.016743414103984833, -0.3722255527973175, -0.0013294500531628728, 0.00037497308221645653, 0.6164983510971069, -0.2832810580730438, 0.004322344902902842, 0.006441501900553703, 0.036130376160144806, 0.01602696254849434, 0.04743356257677078, 0.23122364282608032, -0.7587692141532898, 1.1446253061294556, -0.6191650032997131, -0.4134317934513092, 0.1347985714673996, 0.009239837527275085, -0.17570072412490845, 0.03205780312418938, 1.213606595993042, -0.17570072412490845, 0.0830506831407547, 0.03283677622675896]} +{"t": 18.615, "q": [-0.3307228684425354, -0.018973637372255325, 0.01099474634975195, 0.6310200095176697, -0.31870824098587036, 0.01675068773329258, -0.3722170293331146, -0.001320927869528532, 0.0003481892927084118, 0.6164983510971069, -0.28327685594558716, 0.004315097350627184, 0.006481677293777466, 0.036130376160144806, 0.01602696254849434, 0.047385625541210175, 0.23095998167991638, -0.7587932348251343, 1.1450448036193848, -0.6191410422325134, -0.41349172592163086, 0.1347985714673996, 0.009048090316355228, -0.1757127046585083, 0.03203383460640907, 1.2136424779891968, -0.1757127046585083, 0.0830267146229744, 0.03281280770897865]} +{"t": 18.6317, "q": [-0.3307143449783325, -0.018982160836458206, 0.010941178537905216, 0.6310285329818726, -0.31870824098587036, 0.01675068773329258, -0.3722255527973175, -0.001320927869528532, 0.0002946217136923224, 0.6165068745613098, -0.2832726240158081, 0.004293390084058046, 0.006548637058585882, 0.036153100430965424, 0.016012130305171013, 0.04734967276453972, 0.23072031140327454, -0.7587692141532898, 1.1453443765640259, -0.6191650032997131, -0.4135516583919525, 0.1347745954990387, 0.008868326433002949, -0.17570072412490845, 0.03206978738307953, 1.2136305570602417, -0.17574866116046906, 0.0830267146229744, 0.0328008234500885]} +{"t": 18.6484, "q": [-0.33070582151412964, -0.018973637372255325, 0.01092778705060482, 0.6310285329818726, -0.31870824098587036, 0.01675068773329258, -0.3722170293331146, -0.001320927869528532, 0.0002946217136923224, 0.6165153980255127, -0.28328937292099, 0.004322397522628307, 0.006615596357733011, 0.036168310791254044, 0.01599268428981304, 0.04727776721119881, 0.2305285632610321, -0.7587572336196899, 1.1455720663070679, -0.6191889643669128, -0.41364753246307373, 0.13481055200099945, 0.0087245162576437, -0.1756887435913086, 0.03205780312418938, 1.2136424779891968, -0.1756887435913086, 0.08303869515657425, 0.0328008234500885]} +{"t": 18.6651, "q": [-0.3306717276573181, -0.01894807256758213, 0.010887610726058483, 0.6310285329818726, -0.31870824098587036, 0.016736188903450966, -0.3722170293331146, -0.001320927869528532, 0.0002946217136923224, 0.6165409684181213, -0.2832934856414795, 0.004315203055739403, 0.006615596357733011, 0.03613807260990143, 0.016002902761101723, 0.04727776721119881, 0.23033681511878967, -0.7587692141532898, 1.145871639251709, -0.6191650032997131, -0.413707435131073, 0.13481055200099945, 0.00860467366874218, -0.17570072412490845, 0.03206978738307953, 1.2136305570602417, -0.1757127046585083, 0.0830267146229744, 0.0328008234500885]} +{"t": 18.6819, "q": [-0.33065468072891235, -0.01894807256758213, 0.010874219238758087, 0.6310285329818726, -0.31870827078819275, 0.016721688210964203, -0.3722255527973175, -0.0013038836186751723, 0.0002812298189383, 0.6165409684181213, -0.28330180048942566, 0.0043152556754648685, 0.006655772216618061, 0.03616843372583389, 0.015973569825291634, 0.0472537986934185, 0.2302049845457077, -0.7587811946868896, 1.1462432146072388, -0.6191650032997131, -0.41376736760139465, 0.13481055200099945, 0.008472846820950508, -0.17570072412490845, 0.03206978738307953, 1.2136424779891968, -0.1757366806268692, 0.0830267146229744, 0.032764870673418045]} +{"t": 18.6986, "q": [-0.33061206340789795, -0.018922505900263786, 0.010860827751457691, 0.6310114860534668, -0.31869181990623474, 0.0167072881013155, -0.37220850586891174, -0.0013038836186751723, 0.00022766222537029535, 0.6165494918823242, -0.2832934856414795, 0.004315203055739403, 0.006669164169579744, 0.036130744963884354, 0.015969615429639816, 0.04715792462229729, 0.23003719747066498, -0.7587811946868896, 1.146902322769165, -0.6191650032997131, -0.413935124874115, 0.13481055200099945, 0.008305068127810955, -0.17570072412490845, 0.03206978738307953, 1.2136305570602417, -0.1757606416940689, 0.08300274610519409, 0.03278883919119835]} +{"t": 18.7153, "q": [-0.33061206340789795, -0.01888841763138771, 0.010793867520987988, 0.6310114860534668, -0.31869181990623474, 0.0167072881013155, -0.37220850586891174, -0.0013038836186751723, 0.00021427033061627299, 0.6165153980255127, -0.2833017408847809, 0.004300813656300306, 0.006642380263656378, 0.03608548268675804, 0.015970604494214058, 0.046726495027542114, 0.22947394847869873, -0.7587692141532898, 1.1487479209899902, -0.6191650032997131, -0.41406697034835815, 0.1348225325345993, 0.008269115351140499, -0.17572470009326935, 0.032045818865299225, 1.2136305570602417, -0.17570072412490845, 0.0830267146229744, 0.0327768549323082]} +{"t": 18.7321, "q": [-0.33062058687210083, -0.01888841763138771, 0.010767084546387196, 0.6310114860534668, -0.31868767738342285, 0.01670004427433014, -0.3722255527973175, -0.0012868394842371345, 0.00020087843586225063, 0.6165153980255127, -0.2833225131034851, 0.004293724428862333, 0.006642380263656378, 0.03610820695757866, 0.015955772250890732, 0.046247124671936035, 0.22885076701641083, -0.7587811946868896, 1.1503897905349731, -0.6191530227661133, -0.41419878602027893, 0.1348225325345993, 0.008257131092250347, -0.17574866116046906, 0.03203383460640907, 1.2136424779891968, -0.1757127046585083, 0.08301472663879395, 0.0327768549323082]} +{"t": 18.7488, "q": [-0.33065468072891235, -0.01887989416718483, 0.010726908221840858, 0.6310029625892639, -0.31869181990623474, 0.016692770645022392, -0.3722340762615204, -0.0013038836186751723, 0.00021427033061627299, 0.6164983510971069, -0.28332245349884033, 0.004279264714568853, 0.006669164169579744, 0.036123353987932205, 0.015945885330438614, 0.04585164412856102, 0.228335440158844, -0.7587572336196899, 1.1512047052383423, -0.6191650032997131, -0.4142587184906006, 0.1347985714673996, 0.008233162574470043, -0.17574866116046906, 0.03205780312418938, 1.2136305570602417, -0.1757606416940689, 0.0830267146229744, 0.03275288641452789]} +{"t": 18.7656, "q": [-0.33065468072891235, -0.018854329362511635, 0.010700124315917492, 0.6310114860534668, -0.31869593262672424, 0.016700012609362602, -0.3722340762615204, -0.0013038836186751723, 0.00018748654110822827, 0.6164813041687012, -0.2833308279514313, 0.004293759353458881, 0.006682556122541428, 0.036093056201934814, 0.01596565917134285, 0.04536029323935509, 0.22797591984272003, -0.7587452530860901, 1.1517080068588257, -0.6191889643669128, -0.41431862115859985, 0.1347985714673996, 0.008221178315579891, -0.1757846176624298, 0.03200986608862877, 1.2136545181274414, -0.17570072412490845, 0.08303869515657425, 0.032764870673418045]} +{"t": 18.7823, "q": [-0.330680251121521, -0.018871372565627098, 0.010673340409994125, 0.6309689283370972, -0.31869181990623474, 0.016692770645022392, -0.37224259972572327, -0.0013038836186751723, 0.00018748654110822827, 0.6164813041687012, -0.28336429595947266, 0.004351756069809198, 0.006709339562803507, 0.036085546016693115, 0.015961045399308205, 0.044868938624858856, 0.227736234664917, -0.7587692141532898, 1.1521754264831543, -0.6191650032997131, -0.41424673795700073, 0.13481055200099945, 0.00812530517578125, -0.17582057416439056, 0.03202185034751892, 1.213714361190796, -0.17570072412490845, 0.08303869515657425, 0.032764870673418045]} +{"t": 18.799, "q": [-0.330680251121521, -0.018854329362511635, 0.010673340409994125, 0.6309689283370972, -0.31869181990623474, 0.0167072881013155, -0.37225964665412903, -0.0013038836186751723, 0.00018748654110822827, 0.6164301633834839, -0.28338077664375305, 0.0043085357174277306, 0.006695947609841824, 0.03611590340733528, 0.015931712463498116, 0.044389571994543076, 0.22756844758987427, -0.7587452530860901, 1.1526308059692383, -0.6191650032997131, -0.41419878602027893, 0.1348225325345993, 0.00820919405668974, -0.17583255469799042, 0.03202185034751892, 1.2137024402618408, -0.17579659819602966, 0.0830267146229744, 0.032764870673418045]} +{"t": 18.8157, "q": [-0.33069729804992676, -0.018845805898308754, 0.010673340409994125, 0.6309348344802856, -0.31869593262672424, 0.016700012609362602, -0.37228521704673767, -0.0013038836186751723, 0.00021427033061627299, 0.6163704991340637, -0.28338903188705444, 0.004294146317988634, 0.006682556122541428, 0.03610832989215851, 0.015936655923724174, 0.04382631182670593, 0.2274845689535141, -0.7587932348251343, 1.153182029724121, -0.6191410422325134, -0.41413888335227966, 0.13483451306819916, 0.00820919405668974, -0.17580857872962952, 0.032045818865299225, 1.2137024402618408, -0.17574866116046906, 0.0830267146229744, 0.032764870673418045]} +{"t": 18.8325, "q": [-0.3307398855686188, -0.018837284296751022, 0.01065994892269373, 0.6308922171592712, -0.31869593262672424, 0.016700012609362602, -0.37229374051094055, -0.0013038836186751723, 0.00020087843586225063, 0.616353452205658, -0.2833932042121887, 0.0043013934046030045, 0.006682556122541428, 0.03612341731786728, 0.01593632623553276, 0.0433109886944294, 0.22734075784683228, -0.7588052153587341, 1.1536494493484497, -0.6191530227661133, -0.41411489248275757, 0.1348225325345993, 0.00820919405668974, -0.1757846176624298, 0.03208177164196968, 1.2137503623962402, -0.1757366806268692, 0.08303869515657425, 0.0327768549323082]} +{"t": 18.8492, "q": [-0.3307654559612274, -0.018837284296751022, 0.010673340409994125, 0.6308581233024597, -0.31869181990623474, 0.0167072881013155, -0.3723193109035492, -0.001312405802309513, 0.00022766222537029535, 0.6162853240966797, -0.28337228298187256, 0.004265157040208578, 0.00672273151576519, 0.03611590340733528, 0.015931712463498116, 0.042879559099674225, 0.22710107266902924, -0.7588291764259338, 1.1541647911071777, -0.6191290616989136, -0.414078950881958, 0.1348225325345993, 0.008161257021129131, -0.17577263712882996, 0.03208177164196968, 1.213786244392395, -0.17574866116046906, 0.08301472663879395, 0.0327768549323082]} +{"t": 18.8661, "q": [-0.3307825028896332, -0.01882024109363556, 0.010673340409994125, 0.6308240294456482, -0.31869181990623474, 0.0167072881013155, -0.3723193109035492, -0.001312405802309513, 0.00018748654110822827, 0.6162427067756653, -0.2833806574344635, 0.004279651679098606, 0.006695947609841824, 0.036093179136514664, 0.01594654470682144, 0.04254399985074997, 0.2267894744873047, -0.7588411569595337, 1.1547999382019043, -0.6191170811653137, -0.414078950881958, 0.13481055200099945, 0.00820919405668974, -0.1757366806268692, 0.03208177164196968, 1.213834285736084, -0.1757606416940689, 0.08303869515657425, 0.0327768549323082]} +{"t": 18.8828, "q": [-0.33083364367485046, -0.01882876269519329, 0.010673340409994125, 0.6307899355888367, -0.31870418787002563, 0.016699964180588722, -0.3723193109035492, -0.0013038836186751723, 0.00020087843586225063, 0.6160892844200134, -0.283376544713974, 0.004286846145987511, 0.006709339562803507, 0.036077968776226044, 0.015965990722179413, 0.042220424860715866, 0.2263340801000595, -0.7588411569595337, 1.1558066606521606, -0.6191051006317139, -0.41409093141555786, 0.1348225325345993, 0.008197209797799587, -0.1757366806268692, 0.03209375590085983, 1.2139660120010376, -0.1757366806268692, 0.08303869515657425, 0.0327768549323082]} +{"t": 18.8996, "q": [-0.3308506906032562, -0.01882024109363556, 0.010700124315917492, 0.6307387948036194, -0.31870007514953613, 0.016692738980054855, -0.3723107874393463, -0.0013038836186751723, 0.00020087843586225063, 0.6160551905632019, -0.2833765745162964, 0.004301288165152073, 0.006682556122541428, 0.036123353987932205, 0.015945885330438614, 0.041741058230400085, 0.22581875324249268, -0.7588291764259338, 1.1574844121932983, -0.6191410422325134, -0.41419878602027893, 0.13483451306819916, 0.00814927276223898, -0.1757366806268692, 0.03206978738307953, 1.214073896408081, -0.17572470009326935, 0.0830267146229744, 0.03278883919119835]} +{"t": 18.9163, "q": [-0.330867737531662, -0.018837284296751022, 0.010700124315917492, 0.6307047009468079, -0.31869593262672424, 0.016714513301849365, -0.3723193109035492, -0.001312405802309513, 0.00020087843586225063, 0.6159955263137817, -0.283376544713974, 0.004286846145987511, 0.006669164169579744, 0.03608548268675804, 0.015970604494214058, 0.041249703615903854, 0.22532740235328674, -0.758817195892334, 1.158994436264038, -0.6191650032997131, -0.41424673795700073, 0.1348225325345993, 0.008137288503348827, -0.17574866116046906, 0.03205780312418938, 1.2143855094909668, -0.17572470009326935, 0.0830267146229744, 0.0327768549323082]} +{"t": 18.9331, "q": [-0.3309018313884735, -0.018837284296751022, 0.010686732828617096, 0.6306876540184021, -0.31869593262672424, 0.016714513301849365, -0.3723107874393463, -0.0012953615514561534, 0.00018748654110822827, 0.6158847808837891, -0.28335997462272644, 0.004301182925701141, 0.006655772216618061, 0.036123231053352356, 0.015964999794960022, 0.04097406566143036, 0.2250158190727234, -0.758817195892334, 1.160061001777649, -0.6191290616989136, -0.41427069902420044, 0.1347985714673996, 0.008113320916891098, -0.17574866116046906, 0.03205780312418938, 1.2149966955184937, -0.1757366806268692, 0.08303869515657425, 0.03278883919119835]} +{"t": 18.9498, "q": [-0.3309614658355713, -0.018837284296751022, 0.010700124315917492, 0.6306620836257935, -0.31870004534721375, 0.01670723780989647, -0.3723107874393463, -0.001312405802309513, 0.00016070275160018355, 0.6158080697059631, -0.28335997462272644, 0.004301182925701141, 0.006655772216618061, 0.036077845841646194, 0.01598510518670082, 0.0406145378947258, 0.2248120754957199, -0.758817195892334, 1.1607561111450195, -0.6191170811653137, -0.4143545925617218, 0.1348225325345993, 0.008029431104660034, -0.17577263712882996, 0.03202185034751892, 1.2154520750045776, -0.17574866116046906, 0.08303869515657425, 0.0328008234500885]} +{"t": 18.9665, "q": [-0.3309955596923828, -0.018845805898308754, 0.010673340409994125, 0.6306620836257935, -0.31870415806770325, 0.016714463010430336, -0.37229374051094055, -0.001312405802309513, 0.00013391896209213883, 0.6157569289207458, -0.28335991501808167, 0.004286740906536579, 0.006682556122541428, 0.03607027232646942, 0.01599005050957203, 0.040350887924432755, 0.224692240357399, -0.7588411569595337, 1.1612833738327026, -0.6191170811653137, -0.4143785536289215, 0.13481055200099945, 0.007861651480197906, -0.1757846176624298, 0.03202185034751892, 1.2155719995498657, -0.17577263712882996, 0.0830267146229744, 0.0328008234500885]} +{"t": 18.9832, "q": [-0.33098703622817993, -0.018854329362511635, 0.01065994892269373, 0.6305939555168152, -0.31870001554489136, 0.016721738502383232, -0.37228521704673767, -0.0013038836186751723, 0.00010713516530813649, 0.6157143115997314, -0.2833724021911621, 0.004294040612876415, 0.006776299327611923, 0.03610808402299881, 0.01597488857805729, 0.04009921848773956, 0.22458438575267792, -0.7588291764259338, 1.1615830659866333, -0.6191170811653137, -0.41434261202812195, 0.13481055200099945, 0.007538077887147665, -0.17580857872962952, 0.03199788182973862, 1.2155959606170654, -0.1757606416940689, 0.0830267146229744, 0.03281280770897865]} +{"t": 19.0001, "q": [-0.33097851276397705, -0.01882876269519329, 0.010633165016770363, 0.6305513381958008, -0.31871241331100464, 0.016714412719011307, -0.37228521704673767, -0.0013038836186751723, 8.035137580009177e-05, 0.6156631708145142, -0.2833682596683502, 0.004301235545426607, 0.006816474720835686, 0.03609299659729004, 0.015975218266248703, 0.03988350182771683, 0.2244645357131958, -0.7588411569595337, 1.1619185209274292, -0.6191290616989136, -0.4143785536289215, 0.1348225325345993, 0.007250456139445305, -0.17583255469799042, 0.03202185034751892, 1.2155959606170654, -0.17580857872962952, 0.0830267146229744, 0.0328008234500885]} +{"t": 19.0169, "q": [-0.3309955596923828, -0.018837284296751022, 0.010606381110846996, 0.6305001974105835, -0.31869593262672424, 0.016700012609362602, -0.3722766935825348, -0.001312405802309513, 2.6783791327034123e-05, 0.6155694127082825, -0.2833682596683502, 0.004301235545426607, 0.0068030827678740025, 0.03610057011246681, 0.015970274806022644, 0.039691753685474396, 0.22430874407291412, -0.7588411569595337, 1.1622540950775146, -0.6191170811653137, -0.4143306314945221, 0.13481055200099945, 0.006926882080733776, -0.17584453523159027, 0.03203383460640907, 1.2155839204788208, -0.17586851119995117, 0.0830267146229744, 0.0328008234500885]} +{"t": 19.0336, "q": [-0.3310126066207886, -0.01882876269519329, 0.010552814230322838, 0.630466103553772, -0.31870415806770325, 0.016714463010430336, -0.3722766935825348, -0.0012953615514561534, 0.0, 0.6154671907424927, -0.28336408734321594, 0.0042939879931509495, 0.006843258626759052, 0.03611578047275543, 0.015950828790664673, 0.03954794257879257, 0.22415295243263245, -0.7588770985603333, 1.162457823753357, -0.6191170811653137, -0.4143785536289215, 0.1348225325345993, 0.006375608034431934, -0.17583255469799042, 0.03203383460640907, 1.215548038482666, -0.17584453523159027, 0.0830267146229744, 0.032764870673418045]} +{"t": 19.0504, "q": [-0.33102113008499146, -0.018837284296751022, 0.010445678606629372, 0.6304320096969604, -0.31870830059051514, 0.01670718751847744, -0.3722255527973175, -0.0012953615514561534, -6.695948104606941e-05, 0.6153990030288696, -0.2833682596683502, 0.004301235545426607, 0.006937001831829548, 0.036093056201934814, 0.01596565917134285, 0.039452068507671356, 0.22404509782791138, -0.7588291764259338, 1.1624698638916016, -0.6191170811653137, -0.4143545925617218, 0.13481055200099945, 0.005980128422379494, -0.17584453523159027, 0.032045818865299225, 1.2155120372772217, -0.17577263712882996, 0.08306266367435455, 0.0328008234500885]} +{"t": 19.0671, "q": [-0.33102113008499146, -0.01882024109363556, 0.010432287119328976, 0.6304064393043518, -0.31870415806770325, 0.016714463010430336, -0.37220850586891174, -0.0012953615514561534, -9.374327055411413e-05, 0.6153478622436523, -0.2833765745162964, 0.004301288165152073, 0.007070920895785093, 0.03611578047275543, 0.015950828790664673, 0.03940413147211075, 0.22387731075286865, -0.7588411569595337, 1.162577748298645, -0.6191170811653137, -0.4143306314945221, 0.1348225325345993, 0.005560680292546749, -0.17584453523159027, 0.03205780312418938, 1.2155239582061768, -0.17585651576519012, 0.0830267146229744, 0.0328008234500885]} +{"t": 19.0838, "q": [-0.3310467004776001, -0.01882024109363556, 0.01032515149563551, 0.6303297281265259, -0.31870418787002563, 0.016699964180588722, -0.37219998240470886, -0.0012868394842371345, -0.0001473108568461612, 0.6152626276016235, -0.2833724021911621, 0.004294040612876415, 0.007204839959740639, 0.036100633442401886, 0.01596071571111679, 0.039380162954330444, 0.22373349964618683, -0.7588651180267334, 1.1627215147018433, -0.6191410422325134, -0.4143785536289215, 0.1348225325345993, 0.00512924836948514, -0.17588049173355103, 0.03206978738307953, 1.215499997138977, -0.17588049173355103, 0.0830506831407547, 0.03278883919119835]} +{"t": 19.1006, "q": [-0.3310978412628174, -0.01882024109363556, 0.010284976102411747, 0.6302785873413086, -0.31870004534721375, 0.01670723780989647, -0.37219998240470886, -0.0012953615514561534, -0.00016070275160018355, 0.6151774525642395, -0.283376544713974, 0.004286846145987511, 0.007311975117772818, 0.036085546016693115, 0.015961045399308205, 0.03927230462431908, 0.22367358207702637, -0.7588291764259338, 1.162817358970642, -0.6191650032997131, -0.4143785536289215, 0.1348225325345993, 0.004673847928643227, -0.17584453523159027, 0.032045818865299225, 1.215488076210022, -0.17582057416439056, 0.0830267146229744, 0.03278883919119835]} +{"t": 19.1173, "q": [-0.33115747570991516, -0.018837284296751022, 0.010271583683788776, 0.6302445530891418, -0.31870418787002563, 0.016699964180588722, -0.37219998240470886, -0.0012868394842371345, -0.00018748654110822827, 0.6150240302085876, -0.28338494896888733, 0.004315782804042101, 0.00743250222876668, 0.036100633442401886, 0.01596071571111679, 0.03918841481208801, 0.22360166907310486, -0.7588411569595337, 1.1628413200378418, -0.6191650032997131, -0.4143306314945221, 0.1348225325345993, 0.0041944789700210094, -0.17584453523159027, 0.03206978738307953, 1.2154641151428223, -0.17580857872962952, 0.0830506831407547, 0.03278883919119835]} +{"t": 19.134, "q": [-0.3312171399593353, -0.01882024109363556, 0.010164448991417885, 0.6301934123039246, -0.31871652603149414, 0.01670713908970356, -0.37220850586891174, -0.0013038836186751723, -0.00021427033061627299, 0.6149047017097473, -0.28339338302612305, 0.004344737622886896, 0.007539637386798859, 0.03612341731786728, 0.01593632623553276, 0.03916444629430771, 0.22345785796642303, -0.7588291764259338, 1.1629372835159302, -0.6191530227661133, -0.41436657309532166, 0.13481055200099945, 0.0036791572347283363, -0.17585651576519012, 0.03206978738307953, 1.2154760360717773, -0.17583255469799042, 0.08303869515657425, 0.032764870673418045]} +{"t": 19.1507, "q": [-0.33124271035194397, -0.01882024109363556, 0.010151056572794914, 0.6301337480545044, -0.31872063875198364, 0.016714364290237427, -0.37219998240470886, -0.0013038836186751723, -0.0002410541201243177, 0.6148194670677185, -0.2833808362483978, 0.004322977736592293, 0.007593204732984304, 0.036085546016693115, 0.015961045399308205, 0.0391165129840374, 0.22345785796642303, -0.7588411569595337, 1.1629492044448853, -0.6191170811653137, -0.4143545925617218, 0.1348225325345993, 0.0032597093377262354, -0.17583255469799042, 0.03206978738307953, 1.2154401540756226, -0.17582057416439056, 0.08303869515657425, 0.03278883919119835]} +{"t": 19.1675, "q": [-0.3312853276729584, -0.01882024109363556, 0.01017784047871828, 0.6300826072692871, -0.31870827078819275, 0.016721688210964203, -0.372191458940506, -0.0012953615514561534, -0.00026783792418427765, 0.6147598624229431, -0.2833891808986664, 0.004337472375482321, 0.007606596685945988, 0.03610808402299881, 0.01597488857805729, 0.03908056020736694, 0.22344587743282318, -0.7588411569595337, 1.1629612445831299, -0.6191530227661133, -0.4143545925617218, 0.13481055200099945, 0.0029001825023442507, -0.17583255469799042, 0.03209375590085983, 1.2154520750045776, -0.17580857872962952, 0.0830267146229744, 0.0328008234500885]} +{"t": 19.1844, "q": [-0.3313620090484619, -0.018811717629432678, 0.010164448991417885, 0.6300570368766785, -0.31871652603149414, 0.016721637919545174, -0.37219998240470886, -0.0012953615514561534, -0.00030801360844634473, 0.6146746277809143, -0.28337669372558594, 0.004330172203481197, 0.0076467725448310375, 0.03608548268675804, 0.015970604494214058, 0.03900865465402603, 0.22344587743282318, -0.7588291764259338, 1.163045048713684, -0.6191650032997131, -0.4144025146961212, 0.1348225325345993, 0.002672482281923294, -0.17580857872962952, 0.03205780312418938, 1.2154641151428223, -0.17582057416439056, 0.0830267146229744, 0.03278883919119835]} +{"t": 19.2011, "q": [-0.3313705325126648, -0.018794674426317215, 0.010151056572794914, 0.6300570368766785, -0.31871241331100464, 0.016714412719011307, -0.372191458940506, -0.0013038836186751723, -0.00030801360844634473, 0.6145638227462769, -0.28338488936424255, 0.004301340784877539, 0.007660164497792721, 0.03607778623700142, 0.015994664281606674, 0.03892476484179497, 0.22339794039726257, -0.7588411569595337, 1.1630810499191284, -0.6191650032997131, -0.4143545925617218, 0.13481055200099945, 0.0025166873820126057, -0.17583255469799042, 0.03206978738307953, 1.2154401540756226, -0.17580857872962952, 0.0830267146229744, 0.032764870673418045]} +{"t": 19.2179, "q": [-0.33143019676208496, -0.01882024109363556, 0.010164448991417885, 0.6300144195556641, -0.31871241331100464, 0.016714412719011307, -0.37220850586891174, -0.0012953615514561534, -0.0002812298189383, 0.6144956350326538, -0.28337663412094116, 0.004315730184316635, 0.007660164497792721, 0.03608541935682297, 0.015980161726474762, 0.03887682780623436, 0.22340992093086243, -0.7588531374931335, 1.1631289720535278, -0.6191650032997131, -0.4143545925617218, 0.1348225325345993, 0.0023489082232117653, -0.17582057416439056, 0.03205780312418938, 1.2154520750045776, -0.1757846176624298, 0.08303869515657425, 0.0328008234500885]} +{"t": 19.2348, "q": [-0.33143019676208496, -0.01882024109363556, 0.01017784047871828, 0.6299973726272583, -0.31871652603149414, 0.01670713908970356, -0.37220850586891174, -0.0012953615514561534, -0.0002812298189383, 0.6144530177116394, -0.2833891808986664, 0.004337472375482321, 0.0076467725448310375, 0.03607020899653435, 0.015999607741832733, 0.03880492225289345, 0.22336198389530182, -0.7588411569595337, 1.1631649732589722, -0.6191530227661133, -0.4143545925617218, 0.13481055200099945, 0.002277002902701497, -0.1757846176624298, 0.03206978738307953, 1.2154520750045776, -0.1757846176624298, 0.08303869515657425, 0.03278883919119835]} +{"t": 19.2515, "q": [-0.33143872022628784, -0.01882876269519329, 0.010191232897341251, 0.6299632787704468, -0.31871652603149414, 0.016721637919545174, -0.37220850586891174, -0.0012783173006027937, -0.00026783792418427765, 0.6143848896026611, -0.2833808660507202, 0.004337419755756855, 0.007633380591869354, 0.03610796108841896, 0.015994004905223846, 0.03876896947622299, 0.22336198389530182, -0.7588531374931335, 1.1632847785949707, -0.6191889643669128, -0.4143306314945221, 0.13481055200099945, 0.002277002902701497, -0.1757846176624298, 0.03206978738307953, 1.215499997138977, -0.17586851119995117, 0.08301472663879395, 0.032824791967868805]} +{"t": 19.2683, "q": [-0.33143019676208496, -0.018811717629432678, 0.010218016803264618, 0.6299291849136353, -0.31871241331100464, 0.016714412719011307, -0.37220850586891174, -0.001312405802309513, -0.00026783792418427765, 0.6143763661384583, -0.2833767533302307, 0.00434461422264576, 0.007526245433837175, 0.03607014939188957, 0.016009164974093437, 0.03870904818177223, 0.2233140468597412, -0.7588291764259338, 1.163320779800415, -0.6191530227661133, -0.41436657309532166, 0.13481055200099945, 0.0023249397054314613, -0.17579659819602966, 0.03208177164196968, 1.215499997138977, -0.17580857872962952, 0.0830267146229744, 0.0328008234500885]} +{"t": 19.2851, "q": [-0.3314216732978821, -0.01882024109363556, 0.010218016803264618, 0.6299377083778381, -0.31872063875198364, 0.016714364290237427, -0.37220850586891174, -0.0012868394842371345, -0.00026783792418427765, 0.6143678426742554, -0.28337255120277405, 0.004337366670370102, 0.007472677621990442, 0.03610044717788696, 0.015989389270544052, 0.03864912688732147, 0.22332604229450226, -0.7588531374931335, 1.1634764671325684, -0.6191410422325134, -0.41434261202812195, 0.1348225325345993, 0.0024807346053421497, -0.1757846176624298, 0.03206978738307953, 1.2155239582061768, -0.1757606416940689, 0.08301472663879395, 0.0328008234500885]} +{"t": 19.3018, "q": [-0.3314216732978821, -0.01882024109363556, 0.010218016803264618, 0.6299036145210266, -0.31872063875198364, 0.016714364290237427, -0.3721829354763031, -0.0012953615514561534, -0.0002544460294302553, 0.6143422722816467, -0.28336837887763977, 0.004330119583755732, 0.007325367070734501, 0.03607766330242157, 0.01601378060877323, 0.038601189851760864, 0.22325412929058075, -0.7588531374931335, 1.1635724306106567, -0.6191650032997131, -0.41431862115859985, 0.13481055200099945, 0.0027563718613237143, -0.17579659819602966, 0.03205780312418938, 1.2155839204788208, -0.17580857872962952, 0.08300274610519409, 0.032764870673418045]} +{"t": 19.3185, "q": [-0.3314131498336792, -0.01882024109363556, 0.01025819219648838, 0.6299121379852295, -0.31872063875198364, 0.016714364290237427, -0.372191458940506, -0.0012868394842371345, -0.00022766222537029535, 0.6143422722816467, -0.28337252140045166, 0.00432292465120554, 0.007285191211849451, 0.03607766330242157, 0.01601378060877323, 0.03852928429841995, 0.22318223118782043, -0.758817195892334, 1.1638240814208984, -0.6191889643669128, -0.4143306314945221, 0.13481055200099945, 0.0032117723021656275, -0.1757846176624298, 0.03203383460640907, 1.2156199216842651, -0.17577263712882996, 0.08301472663879395, 0.03281280770897865]} diff --git a/Data/G1/left_hand_up.jsonl b/Data/G1/left_hand_up.jsonl new file mode 100644 index 0000000..6b93844 --- /dev/null +++ b/Data/G1/left_hand_up.jsonl @@ -0,0 +1,866 @@ +{"meta": {"hz": 60.0, "motors": 29}} +{"t": 0.0, "q": [-0.3639846742153168, -0.024197695776820183, 0.016391679644584656, 0.602735161781311, -0.2855399250984192, 0.01961350068449974, -0.3846507966518402, 0.014104100875556469, -0.00847707036882639, 0.6074308156967163, -0.2915450930595398, -0.013019533827900887, 0.0034551091957837343, 0.002512827981263399, -0.02253532223403454, -0.12862668931484222, 0.25321468710899353, 0.1330009251832962, 1.3668848276138306, 0.1886916309595108, -0.2880408465862274, 0.16731177270412445, -0.3095405399799347, -0.3397168219089508, 0.21576398611068726, 1.4027655124664307, -0.6555850505828857, -0.30665236711502075, -0.19396468997001648]} +{"t": 0.0167, "q": [-0.36400172114372253, -0.024214738979935646, 0.016378289088606834, 0.6027266383171082, -0.28554409742355347, 0.019606254994869232, -0.3846593201160431, 0.014104100875556469, -0.008490461856126785, 0.6074478626251221, -0.2915492355823517, -0.013026745989918709, 0.0034551091957837343, 0.0024976443964987993, -0.02253539487719536, -0.1290820837020874, 0.2532027065753937, 0.1330009251832962, 1.3668848276138306, 0.18867963552474976, -0.28802886605262756, 0.1673237532377243, -0.30952855944633484, -0.33970484137535095, 0.21578796207904816, 1.402741551399231, -0.6556090116500854, -0.3066643476486206, -0.1939886510372162]} +{"t": 0.0335, "q": [-0.36399319767951965, -0.02423178404569626, 0.016391679644584656, 0.6027606725692749, -0.2855357527732849, 0.019606297835707664, -0.3846593201160431, 0.014112623408436775, -0.00847707036882639, 0.6074649095535278, -0.29153260588645935, -0.013041277416050434, 0.0034283252898603678, 0.0024900517892092466, -0.022530492395162582, -0.129633367061615, 0.2531907260417938, 0.13298894464969635, 1.3668848276138306, 0.18867963552474976, -0.2880408465862274, 0.16731177270412445, -0.30952855944633484, -0.33968088030815125, 0.2158239185810089, 1.4027535915374756, -0.6555970311164856, -0.30665236711502075, -0.19400063157081604]} +{"t": 0.0502, "q": [-0.3639846742153168, -0.02423178404569626, 0.016378289088606834, 0.6027606725692749, -0.28554409742355347, 0.019606254994869232, -0.38464227318763733, 0.014087056741118431, -0.00847707036882639, 0.6074649095535278, -0.2915409505367279, -0.013026782311499119, 0.003441717242822051, 0.0025052351411432028, -0.022530419752001762, -0.13016067445278168, 0.25321468710899353, 0.13298894464969635, 1.3668608665466309, 0.18867963552474976, -0.2880408465862274, 0.16731177270412445, -0.30952855944633484, -0.33963292837142944, 0.21583589911460876, 1.402741551399231, -0.6556090116500854, -0.30665236711502075, -0.1940126270055771]} +{"t": 0.0669, "q": [-0.3639846742153168, -0.02423178404569626, 0.016378289088606834, 0.6027862429618835, -0.2855399250984192, 0.01961350068449974, -0.38464227318763733, 0.014095579273998737, -0.008490461856126785, 0.6074819564819336, -0.29153263568878174, -0.013026817701756954, 0.003441717242822051, 0.002520418493077159, -0.02253034897148609, -0.13072392344474792, 0.2532266676425934, 0.13298894464969635, 1.366872787475586, 0.18867963552474976, -0.2880408465862274, 0.1673237532377243, -0.30955255031585693, -0.3395969867706299, 0.21584787964820862, 1.402741551399231, -0.6555970311164856, -0.3066643476486206, -0.19402460753917694]} +{"t": 0.0837, "q": [-0.3640187680721283, -0.02423178404569626, 0.016391679644584656, 0.6028203368186951, -0.2855440676212311, 0.019620705395936966, -0.38467636704444885, 0.014087056741118431, -0.008463677950203419, 0.6075075268745422, -0.2915450930595398, -0.013019533827900887, 0.0034283252898603678, 0.0025052372366189957, -0.022540295496582985, -0.13135908544063568, 0.2532506585121155, 0.13303688168525696, 1.3668488264083862, 0.1886436939239502, -0.2880408465862274, 0.1673237532377243, -0.3095405399799347, -0.33954906463623047, 0.21584787964820862, 1.4027296304702759, -0.6556090116500854, -0.3066643476486206, -0.19402460753917694]} +{"t": 0.1004, "q": [-0.36399319767951965, -0.02424030564725399, 0.016378289088606834, 0.6028373837471008, -0.28555241227149963, 0.019620662555098534, -0.3846593201160431, 0.0140785351395607, -0.008450286462903023, 0.6075330972671509, -0.2915450930595398, -0.013019533827900887, 0.0034149333368986845, 0.002512827981263399, -0.02253532223403454, -0.13195830583572388, 0.2532266676425934, 0.13309679925441742, 1.3668848276138306, 0.1886197179555893, -0.28805282711982727, 0.1673237532377243, -0.309516578912735, -0.3394651710987091, 0.21584787964820862, 1.4027535915374756, -0.6556209921836853, -0.30665236711502075, -0.1940365880727768]} +{"t": 0.1171, "q": [-0.3640187680721283, -0.02424030564725399, 0.016391679644584656, 0.6028203368186951, -0.2855399250984192, 0.01961350068449974, -0.38471898436546326, 0.014087056741118431, -0.00847707036882639, 0.6075330972671509, -0.29153677821159363, -0.013019569218158722, 0.0034283252898603678, 0.002512827981263399, -0.02253532223403454, -0.1326054483652115, 0.2532506585121155, 0.1330728381872177, 1.3668488264083862, 0.1885957568883896, -0.28805282711982727, 0.16733573377132416, -0.3095405399799347, -0.33942919969558716, 0.21588383615016937, 1.402741551399231, -0.6556090116500854, -0.30665236711502075, -0.1940365880727768]} +{"t": 0.1338, "q": [-0.3640187680721283, -0.02423178404569626, 0.016391679644584656, 0.6028459072113037, -0.28554409742355347, 0.019606254994869232, -0.38468489050865173, 0.0140785351395607, -0.008423502556979656, 0.6075330972671509, -0.29155340790748596, -0.013019480742514133, 0.003347973804920912, 0.002512827981263399, -0.02253532223403454, -0.13320466876029968, 0.25326263904571533, 0.13309679925441742, 1.3668488264083862, 0.1885957568883896, -0.2880648076534271, 0.16731177270412445, -0.30952855944633484, -0.3393692970275879, 0.21593177318572998, 1.4027535915374756, -0.6556209921836853, -0.3066643476486206, -0.1940365880727768]} +{"t": 0.1506, "q": [-0.3640187680721283, -0.02423178404569626, 0.016391679644584656, 0.6028714776039124, -0.28554826974868774, 0.01961345784366131, -0.38468489050865173, 0.014052968472242355, -0.008410110138356686, 0.6075416207313538, -0.2915409505367279, -0.013026782311499119, 0.003347973804920912, 0.002512827981263399, -0.02253532223403454, -0.13367204368114471, 0.2532746195793152, 0.13312077522277832, 1.3668488264083862, 0.18858376145362854, -0.28805282711982727, 0.16731177270412445, -0.3095405399799347, -0.33930936455726624, 0.21590779721736908, 1.402741551399231, -0.6556090116500854, -0.30665236711502075, -0.1940605640411377]} +{"t": 0.1673, "q": [-0.3640187680721283, -0.024223262444138527, 0.016405072063207626, 0.6028459072113037, -0.28554823994636536, 0.01962791010737419, -0.38467636704444885, 0.014001836068928242, -0.00839671865105629, 0.6075330972671509, -0.29155340790748596, -0.013019480742514133, 0.0033881496638059616, 0.002512827981263399, -0.02253532223403454, -0.13409149646759033, 0.25331056118011475, 0.1332286298274994, 1.3668608665466309, 0.18858376145362854, -0.28805282711982727, 0.1673237532377243, -0.30952855944633484, -0.33920150995254517, 0.21590779721736908, 1.4027535915374756, -0.6555970311164856, -0.30665236711502075, -0.1940605640411377]} +{"t": 0.184, "q": [-0.3640187680721283, -0.02423178404569626, 0.016405072063207626, 0.6028544306755066, -0.28554823994636536, 0.01962791010737419, -0.38468489050865173, 0.013993313536047935, -0.00839671865105629, 0.6075586676597595, -0.2915492355823517, -0.013026745989918709, 0.003361365757882595, 0.0024976443964987993, -0.02253539487719536, -0.1344510167837143, 0.25331056118011475, 0.13326458632946014, 1.3668608665466309, 0.1885717809200287, -0.28807681798934937, 0.16731177270412445, -0.3095405399799347, -0.33905771374702454, 0.2159557342529297, 1.4027296304702759, -0.655644953250885, -0.30665236711502075, -0.19407254457473755]} +{"t": 0.2008, "q": [-0.3640187680721283, -0.02423178404569626, 0.016431856900453568, 0.6028885245323181, -0.2855565845966339, 0.01962786726653576, -0.3846934139728546, 0.013993313536047935, -0.00839671865105629, 0.6075501441955566, -0.2915451228618622, -0.013005055487155914, 0.003441717242822051, 0.0024976443964987993, -0.02253539487719536, -0.1347985714673996, 0.2533465325832367, 0.1333484798669815, 1.3668488264083862, 0.18853582441806793, -0.28805282711982727, 0.16731177270412445, -0.309516578912735, -0.3388899266719818, 0.21599169075489044, 1.4027535915374756, -0.6556689739227295, -0.3066403567790985, -0.19409650564193726]} +{"t": 0.2175, "q": [-0.36403581500053406, -0.024248827248811722, 0.01644524745643139, 0.6028629541397095, -0.28555241227149963, 0.019635114818811417, -0.3847019374370575, 0.014035924337804317, -0.008383326232433319, 0.6075501441955566, -0.2915492355823517, -0.013026745989918709, 0.0034015413839370012, 0.0025052351411432028, -0.022530419752001762, -0.13503825664520264, 0.2533465325832367, 0.13336046040058136, 1.3668608665466309, 0.18853582441806793, -0.28805282711982727, 0.1672997772693634, -0.3095405399799347, -0.3386861979961395, 0.2160516083240509, 1.4027535915374756, -0.6557767987251282, -0.30665236711502075, -0.1941085010766983]} +{"t": 0.2342, "q": [-0.36403581500053406, -0.024257350713014603, 0.016418464481830597, 0.6028629541397095, -0.2855565845966339, 0.01962786726653576, -0.3846934139728546, 0.014061490073800087, -0.00839671865105629, 0.6075501441955566, -0.2915450930595398, -0.013019533827900887, 0.003347973804920912, 0.0025052351411432028, -0.022530419752001762, -0.13528992235660553, 0.25338247418403625, 0.13348029553890228, 1.3668848276138306, 0.18853582441806793, -0.28805282711982727, 0.16728779673576355, -0.30952855944633484, -0.33841055631637573, 0.2161235213279724, 1.402741551399231, -0.655788779258728, -0.30662837624549866, -0.19412048161029816]} +{"t": 0.251, "q": [-0.3640187680721283, -0.024248827248811722, 0.01644524745643139, 0.6029055714607239, -0.2855399250984192, 0.01961350068449974, -0.3846934139728546, 0.014070012606680393, -0.00839671865105629, 0.6075416207313538, -0.2915492653846741, -0.013012267649173737, 0.0033747577108442783, 0.0024900517892092466, -0.022530492395162582, -0.13560150563716888, 0.2533944547176361, 0.13348029553890228, 1.366872787475586, 0.18852384388446808, -0.28805282711982727, 0.1672518402338028, -0.3095405399799347, -0.33823078870773315, 0.21629129350185394, 1.4027535915374756, -0.6558367013931274, -0.30662837624549866, -0.194132462143898]} +{"t": 0.2678, "q": [-0.36403581500053406, -0.02423178404569626, 0.01644524745643139, 0.6028800010681152, -0.28554823994636536, 0.01962791010737419, -0.3847104609012604, 0.014095579273998737, -0.008410110138356686, 0.6075586676597595, -0.2915492355823517, -0.013026745989918709, 0.0034283252898603678, 0.0024976423010230064, -0.022525519132614136, -0.13593706488609314, 0.2534184157848358, 0.13351625204086304, 1.366872787475586, 0.18851186335086823, -0.28805282711982727, 0.16723985970020294, -0.30955255031585693, -0.3379911184310913, 0.2163032740354538, 1.4027535915374756, -0.6558966636657715, -0.30662837624549866, -0.194132462143898]} +{"t": 0.2845, "q": [-0.3640272915363312, -0.024248827248811722, 0.016418464481830597, 0.6028714776039124, -0.28555241227149963, 0.019620662555098534, -0.3847104609012604, 0.014070012606680393, -0.00847707036882639, 0.6075501441955566, -0.2915450930595398, -0.013019533827900887, 0.003361365757882595, 0.0025128258857876062, -0.022525446489453316, -0.136320561170578, 0.2534903287887573, 0.1335282325744629, 1.3668608665466309, 0.18849988281726837, -0.28805282711982727, 0.16719192266464233, -0.3095405399799347, -0.33778735995292664, 0.21641114354133606, 1.402741551399231, -0.6558846831321716, -0.30662837624549866, -0.1941564381122589]} +{"t": 0.3013, "q": [-0.36403581500053406, -0.02424030564725399, 0.016431856900453568, 0.6028885245323181, -0.28554823994636536, 0.01962791010737419, -0.38468489050865173, 0.0140785351395607, -0.008423502556979656, 0.6075757145881653, -0.2915409505367279, -0.013012321665883064, 0.003347973804920912, 0.0025128258857876062, -0.022525446489453316, -0.13672801852226257, 0.2535023093223572, 0.13354022800922394, 1.3668608665466309, 0.18849988281726837, -0.28805282711982727, 0.16716796159744263, -0.309516578912735, -0.3376675248146057, 0.21641114354133606, 1.402741551399231, -0.6559086441993713, -0.30662837624549866, -0.1941564381122589]} +{"t": 0.3182, "q": [-0.36403581500053406, -0.024274393916130066, 0.016418464481830597, 0.6029055714607239, -0.28554823994636536, 0.01962791010737419, -0.38468489050865173, 0.014061490073800087, -0.008410110138356686, 0.6075671911239624, -0.2915409505367279, -0.013012321665883064, 0.003361365757882595, 0.0025052351411432028, -0.022530419752001762, -0.13703961670398712, 0.2535981833934784, 0.1336001455783844, 1.3668608665466309, 0.18849988281726837, -0.2880648076534271, 0.16709604859352112, -0.30950459837913513, -0.3375716507434845, 0.2164231240749359, 1.4027296304702759, -0.6559805274009705, -0.30662837624549866, -0.19418039917945862]} +{"t": 0.3349, "q": [-0.3640102446079254, -0.024248827248811722, 0.016418464481830597, 0.6029140949249268, -0.28554823994636536, 0.01962791010737419, -0.38468489050865173, 0.014070012606680393, -0.008423502556979656, 0.607592761516571, -0.2915492653846741, -0.013012267649173737, 0.003361365757882595, 0.0025128258857876062, -0.022525446489453316, -0.13739913702011108, 0.25365811586380005, 0.13373197615146637, 1.3668608665466309, 0.18849988281726837, -0.28805282711982727, 0.1670481115579605, -0.3095405399799347, -0.33751174807548523, 0.21650701761245728, 1.402741551399231, -0.6560044884681702, -0.3066163957118988, -0.19419237971305847]} +{"t": 0.3517, "q": [-0.3640272915363312, -0.02423178404569626, 0.016431856900453568, 0.6029481887817383, -0.2855399250984192, 0.01961350068449974, -0.3846934139728546, 0.014087056741118431, -0.008450286462903023, 0.6076268553733826, -0.29153263568878174, -0.013026817701756954, 0.0033747577108442783, 0.0025128258857876062, -0.022525446489453316, -0.1378185898065567, 0.2539457380771637, 0.13371998071670532, 1.3668608665466309, 0.18847590684890747, -0.2880648076534271, 0.1670001745223999, -0.30955255031585693, -0.3374757766723633, 0.2166508287191391, 1.402741551399231, -0.6559925079345703, -0.30662837624549866, -0.19421635568141937]} +{"t": 0.3684, "q": [-0.36403581500053406, -0.024248827248811722, 0.01644524745643139, 0.602965235710144, -0.2855399250984192, 0.01961350068449974, -0.3847019374370575, 0.014095579273998737, -0.008490461856126785, 0.6076523661613464, -0.29153260588645935, -0.013041277416050434, 0.003321190131828189, 0.0025052351411432028, -0.022530419752001762, -0.13820208609104156, 0.2542693018913269, 0.13375593721866608, 1.3668608665466309, 0.18846392631530762, -0.2880648076534271, 0.1669522374868393, -0.3095405399799347, -0.33742785453796387, 0.21668677031993866, 1.402741551399231, -0.6560044884681702, -0.3066163957118988, -0.19420437514781952]} +{"t": 0.3851, "q": [-0.36403581500053406, -0.024265872314572334, 0.016418464481830597, 0.6029908061027527, -0.28554409742355347, 0.019606254994869232, -0.38468489050865173, 0.0140785351395607, -0.008463677950203419, 0.6076608896255493, -0.2915451228618622, -0.013005055487155914, 0.003347973804920912, 0.002520418493077159, -0.02253034897148609, -0.13857360184192657, 0.2546408176422119, 0.13383983075618744, 1.3668608665466309, 0.18828415870666504, -0.2880648076534271, 0.16685636341571808, -0.3095405399799347, -0.33735594153404236, 0.2166987657546997, 1.4027535915374756, -0.6560044884681702, -0.30665236711502075, -0.19427627325057983]} +{"t": 0.4019, "q": [-0.36403581500053406, -0.024282917380332947, 0.016418464481830597, 0.6030163764953613, -0.28554826974868774, 0.01961345784366131, -0.3846934139728546, 0.0140785351395607, -0.008490461856126785, 0.6076779365539551, -0.2915450930595398, -0.013033994473516941, 0.0034283252898603678, 0.0025052351411432028, -0.022530419752001762, -0.13893312215805054, 0.2550243139266968, 0.13398364186286926, 1.3668608665466309, 0.18820028007030487, -0.2880648076534271, 0.16680842638015747, -0.30955255031585693, -0.33733198046684265, 0.21673470735549927, 1.4027535915374756, -0.65601646900177, -0.30662837624549866, -0.19427627325057983]} +{"t": 0.4186, "q": [-0.36403581500053406, -0.024257350713014603, 0.016405072063207626, 0.6030248999595642, -0.28555241227149963, 0.019620662555098534, -0.3846934139728546, 0.014095579273998737, -0.008450286462903023, 0.6076694130897522, -0.2915409505367279, -0.013012321665883064, 0.0034149333368986845, 0.0025128258857876062, -0.022525446489453316, -0.13937653601169586, 0.2555156648159027, 0.13413943350315094, 1.3668608665466309, 0.18816432356834412, -0.2880648076534271, 0.166748508810997, -0.30952855944633484, -0.3372001349925995, 0.21674670279026031, 1.4027535915374756, -0.65601646900177, -0.30662837624549866, -0.1942882537841797]} +{"t": 0.4353, "q": [-0.36404433846473694, -0.02429996058344841, 0.016405072063207626, 0.6030504703521729, -0.2855399250984192, 0.01961350068449974, -0.3847019374370575, 0.014035924337804317, -0.008463677950203419, 0.6076949834823608, -0.2915409505367279, -0.013026782311499119, 0.0034551091957837343, 0.0025052351411432028, -0.022530419752001762, -0.1398199498653412, 0.25603097677230835, 0.1342233270406723, 1.366812825202942, 0.18814034759998322, -0.2880648076534271, 0.16673652827739716, -0.309516578912735, -0.33710426092147827, 0.21675868332386017, 1.402741551399231, -0.6560284495353699, -0.30660441517829895, -0.1943122297525406]} +{"t": 0.452, "q": [-0.36403581500053406, -0.024334048852324486, 0.016418464481830597, 0.6030845642089844, -0.28554823994636536, 0.01962791010737419, -0.38468489050865173, 0.014112623408436775, -0.00847707036882639, 0.6077631711959839, -0.2915492653846741, -0.013012267649173737, 0.003441717242822051, 0.002520418493077159, -0.02253034897148609, -0.14020344614982605, 0.2564863860607147, 0.13439109921455383, 1.366812825202942, 0.18814034759998322, -0.2880648076534271, 0.1666526347398758, -0.30952855944633484, -0.33693650364875793, 0.21677066385746002, 1.402741551399231, -0.65601646900177, -0.3065924346446991, -0.1943361908197403]} +{"t": 0.4688, "q": [-0.36403581500053406, -0.02430848218500614, 0.016418464481830597, 0.6031441688537598, -0.2855566143989563, 0.019613415002822876, -0.3846934139728546, 0.014070012606680393, -0.008490461856126785, 0.6077887415885925, -0.2915492355823517, -0.013026745989918709, 0.0034015413839370012, 0.0025052351411432028, -0.022530419752001762, -0.14055100083351135, 0.2568938434123993, 0.13443903625011444, 1.366812825202942, 0.18812836706638336, -0.28807681798934937, 0.1666286736726761, -0.30955255031585693, -0.3368406295776367, 0.21678264439105988, 1.402741551399231, -0.65601646900177, -0.30660441517829895, -0.1943361908197403]} +{"t": 0.4855, "q": [-0.3640272915363312, -0.02430848218500614, 0.016405072063207626, 0.6031612157821655, -0.28554823994636536, 0.01962791010737419, -0.38468489050865173, 0.014052968472242355, -0.008436894044280052, 0.6077972650527954, -0.2915450930595398, -0.013033994473516941, 0.0034015413839370012, 0.0025128258857876062, -0.022525446489453316, -0.14099441468715668, 0.25732529163360596, 0.13460682332515717, 1.3668367862701416, 0.18796059489250183, -0.2880648076534271, 0.16648486256599426, -0.3095405399799347, -0.3367447555065155, 0.21679463982582092, 1.402741551399231, -0.6560524702072144, -0.30660441517829895, -0.19437214732170105]} +{"t": 0.5023, "q": [-0.36403581500053406, -0.024334048852324486, 0.01644524745643139, 0.603195309638977, -0.28555241227149963, 0.019620662555098534, -0.38468489050865173, 0.014044445939362049, -0.008436894044280052, 0.6078313589096069, -0.29155340790748596, -0.013033976778388023, 0.0033747577108442783, 0.0025128258857876062, -0.022525446489453316, -0.14144980907440186, 0.25778067111968994, 0.134750634431839, 1.3668608665466309, 0.18794859945774078, -0.28805282711982727, 0.16643692553043365, -0.3095405399799347, -0.3366968035697937, 0.21680662035942078, 1.4027535915374756, -0.6560404300689697, -0.30660441517829895, -0.19437214732170105]} +{"t": 0.519, "q": [-0.36404433846473694, -0.02435961551964283, 0.01645863987505436, 0.6032464504241943, -0.2855440676212311, 0.019620705395936966, -0.38468489050865173, 0.014052968472242355, -0.008436894044280052, 0.6078569293022156, -0.29152846336364746, -0.013048525899648666, 0.0033881496638059616, 0.002490047365427017, -0.022510740906000137, -0.14209695160388947, 0.2585356831550598, 0.13488245010375977, 1.3668488264083862, 0.18792463839054108, -0.28805282711982727, 0.16629311442375183, -0.30955255031585693, -0.3366248905658722, 0.21683058142662048, 1.4027535915374756, -0.6561003923416138, -0.30660441517829895, -0.1944081038236618]} +{"t": 0.5357, "q": [-0.36404433846473694, -0.024342572316527367, 0.016418464481830597, 0.6032805442810059, -0.2855440676212311, 0.019620705395936966, -0.3847019374370575, 0.0140785351395607, -0.008517245762050152, 0.6079080700874329, -0.29153260588645935, -0.013055738061666489, 0.003361365757882595, 0.002482454525306821, -0.02250583842396736, -0.14280402660369873, 0.25926673412323, 0.13499031960964203, 1.3668488264083862, 0.18792463839054108, -0.2880648076534271, 0.16622120141983032, -0.30952855944633484, -0.3365769684314728, 0.21684257686138153, 1.4027535915374756, -0.6561243534088135, -0.30660441517829895, -0.19442008435726166]} +{"t": 0.5525, "q": [-0.3640528619289398, -0.024325527250766754, 0.016418464481830597, 0.6033146381378174, -0.28554826974868774, 0.01961345784366131, -0.3846934139728546, 0.014070012606680393, -0.00847707036882639, 0.6079592108726501, -0.29153677821159363, -0.013048490509390831, 0.0034015413839370012, 0.002490047365427017, -0.022510740906000137, -0.14373879134655, 0.2603932321071625, 0.13506221771240234, 1.3668488264083862, 0.18788868188858032, -0.28807681798934937, 0.16616128385066986, -0.30952855944633484, -0.3365170359611511, 0.21689051389694214, 1.4027535915374756, -0.6561363339424133, -0.30660441517829895, -0.1944320648908615]} +{"t": 0.5692, "q": [-0.3640528619289398, -0.024325527250766754, 0.016405072063207626, 0.6033657789230347, -0.2855440676212311, 0.019620705395936966, -0.38468489050865173, 0.014095579273998737, -0.008463677950203419, 0.6079762578010559, -0.2915450930595398, -0.013033994473516941, 0.0034015413839370012, 0.00249004946090281, -0.02252061665058136, -0.144709512591362, 0.2615077793598175, 0.13515809178352356, 1.366812825202942, 0.18782876431941986, -0.2881247401237488, 0.16614930331707, -0.30955255031585693, -0.33640918135643005, 0.21691447496414185, 1.4027535915374756, -0.6561483144760132, -0.30660441517829895, -0.19446802139282227]} +{"t": 0.5859, "q": [-0.36403581500053406, -0.024325527250766754, 0.016418464481830597, 0.6033913493156433, -0.2855399250984192, 0.01961350068449974, -0.38467636704444885, 0.014104100875556469, -0.008463677950203419, 0.6079933047294617, -0.29152432084083557, -0.013041313737630844, 0.0034149333368986845, 0.00250523304566741, -0.02252054400742054, -0.14562031626701355, 0.2629099190235138, 0.13545769453048706, 1.3667529821395874, 0.18768495321273804, -0.2882445752620697, 0.1660773903131485, -0.30955255031585693, -0.3362294137477875, 0.2169264554977417, 1.4027296304702759, -0.6561483144760132, -0.30660441517829895, -0.19451595842838287]} +{"t": 0.6026, "q": [-0.3640102446079254, -0.0243510939180851, 0.016431856900453568, 0.6034339666366577, -0.2855440676212311, 0.019620705395936966, -0.38467636704444885, 0.014095579273998737, -0.008463677950203419, 0.6080103516578674, -0.29152846336364746, -0.013048525899648666, 0.003361365757882595, 0.0024976423010230064, -0.022525519132614136, -0.14629143476486206, 0.2642761468887329, 0.13562548160552979, 1.3666930198669434, 0.18740931153297424, -0.2882925271987915, 0.16608937084674835, -0.30955255031585693, -0.336073637008667, 0.21696241199970245, 1.402741551399231, -0.656160295009613, -0.30660441517829895, -0.19453993439674377]} +{"t": 0.6193, "q": [-0.3640272915363312, -0.02436813712120056, 0.01644524745643139, 0.6034424901008606, -0.2855399250984192, 0.01961350068449974, -0.3846934139728546, 0.014070012606680393, -0.00847707036882639, 0.6080955266952515, -0.29153260588645935, -0.013041277416050434, 0.003361365757882595, 0.0025128258857876062, -0.022525446489453316, -0.14695057272911072, 0.26606178283691406, 0.13598500192165375, 1.366645097732544, 0.18698987364768982, -0.288448303937912, 0.16601747274398804, -0.3095405399799347, -0.3358459174633026, 0.2169743925333023, 1.4027535915374756, -0.6561243534088135, -0.30660441517829895, -0.19455191493034363]} +{"t": 0.636, "q": [-0.36403581500053406, -0.02436813712120056, 0.016431856900453568, 0.603485107421875, -0.28554409742355347, 0.019606254994869232, -0.3846934139728546, 0.0140785351395607, -0.008450286462903023, 0.6080955266952515, -0.2915450930595398, -0.013033994473516941, 0.003347973804920912, 0.002512821462005377, -0.02250569500029087, -0.14739398658275604, 0.26785942912101746, 0.1363445371389389, 1.366657018661499, 0.1867741495370865, -0.28855618834495544, 0.16593357920646667, -0.3095405399799347, -0.3356421887874603, 0.21698638796806335, 1.402741551399231, -0.6561363339424133, -0.30660441517829895, -0.19458787143230438]} +{"t": 0.6528, "q": [-0.36403581500053406, -0.02435961551964283, 0.016431856900453568, 0.603485107421875, -0.28554823994636536, 0.01962791010737419, -0.3847104609012604, 0.014095579273998737, -0.008463677950203419, 0.6081210970878601, -0.2915492355823517, -0.013026745989918709, 0.003334582084789872, 0.002490047365427017, -0.022510740906000137, -0.14790931344032288, 0.27018436789512634, 0.13727930188179016, 1.3666690587997437, 0.18618692457675934, -0.28878387808799744, 0.1658736616373062, -0.30955255031585693, -0.3353545665740967, 0.2169983685016632, 1.4027535915374756, -0.6561363339424133, -0.30658045411109924, -0.19459985196590424]} +{"t": 0.6696, "q": [-0.3640613555908203, -0.024334048852324486, 0.016431856900453568, 0.6034936308860779, -0.28554823994636536, 0.01962791010737419, -0.38468489050865173, 0.014112623408436775, -0.008490461856126785, 0.6080955266952515, -0.29153677821159363, -0.013034029863774776, 0.0033747577108442783, 0.002482454525306821, -0.02250583842396736, -0.14841264486312866, 0.272269606590271, 0.13888518512248993, 1.3666690587997437, 0.1856955736875534, -0.28890371322631836, 0.1658736616373062, -0.30955255031585693, -0.33518680930137634, 0.21701034903526306, 1.4027535915374756, -0.6561363339424133, -0.3065684735774994, -0.19462381303310394]} +{"t": 0.6863, "q": [-0.3640528619289398, -0.02430848218500614, 0.016378289088606834, 0.6034936308860779, -0.28555241227149963, 0.019620662555098534, -0.3846934139728546, 0.014112623408436775, -0.00847707036882639, 0.6080955266952515, -0.29153677821159363, -0.013034029863774776, 0.003334582084789872, 0.002490047365427017, -0.022510740906000137, -0.14909574389457703, 0.2747862935066223, 0.14087456464767456, 1.366645097732544, 0.1852761209011078, -0.28910744190216064, 0.16592159867286682, -0.30955255031585693, -0.3350549638271332, 0.21702232956886292, 1.4027775526046753, -0.6561722755432129, -0.3065684735774994, -0.19464778900146484]} +{"t": 0.703, "q": [-0.36404433846473694, -0.02430848218500614, 0.01644524745643139, 0.6035021543502808, -0.28554823994636536, 0.01962791010737419, -0.3847104609012604, 0.014112623408436775, -0.008423502556979656, 0.6081210970878601, -0.29152846336364746, -0.013048525899648666, 0.003347973804920912, 0.002482454525306821, -0.02250583842396736, -0.14983877539634705, 0.2767637073993683, 0.14301975071430206, 1.3665971755981445, 0.1844492107629776, -0.2896347641944885, 0.16590961813926697, -0.3095405399799347, -0.33498305082321167, 0.21709424257278442, 1.4027535915374756, -0.6561962366104126, -0.30655649304389954, -0.1947077065706253]} +{"t": 0.7197, "q": [-0.36404433846473694, -0.02430848218500614, 0.01644524745643139, 0.6034936308860779, -0.2855398952960968, 0.019627952948212624, -0.3847104609012604, 0.014112623408436775, -0.00839671865105629, 0.6081210970878601, -0.2915409207344055, -0.013041242025792599, 0.003361365757882595, 0.002497636014595628, -0.022495891898870468, -0.1508214771747589, 0.27869316935539246, 0.1447334885597229, 1.3665611743927002, 0.1835983246564865, -0.29015007615089417, 0.16588564217090607, -0.30952855944633484, -0.3348033130168915, 0.21713019907474518, 1.4027655124664307, -0.6562082171440125, -0.3065444827079773, -0.1947077065706253]} +{"t": 0.7365, "q": [-0.3640784025192261, -0.024317005649209023, 0.016405072063207626, 0.6035361886024475, -0.28555241227149963, 0.019620662555098534, -0.38471898436546326, 0.014104100875556469, -0.008423502556979656, 0.608129620552063, -0.29153260588645935, -0.013041277416050434, 0.003347973804920912, 0.002512821462005377, -0.02250569500029087, -0.15195997059345245, 0.28046682476997375, 0.14647120237350464, 1.366477370262146, 0.18259166181087494, -0.2911447584629059, 0.16589762270450592, -0.3095405399799347, -0.33453965187072754, 0.2172260731458664, 1.4027655124664307, -0.6562321782112122, -0.3065205216407776, -0.19469572603702545]} +{"t": 0.7533, "q": [-0.3640784025192261, -0.02430848218500614, 0.016405072063207626, 0.6035447120666504, -0.28554823994636536, 0.01962791010737419, -0.3847104609012604, 0.0140785351395607, -0.008450286462903023, 0.6081210970878601, -0.2915492355823517, -0.013026745989918709, 0.003361365757882595, 0.0025052286218851805, -0.022500792518258095, -0.15320633351802826, 0.28246819972991943, 0.1483047902584076, 1.3663814067840576, 0.18127338588237762, -0.2922353446483612, 0.1658736616373062, -0.3095405399799347, -0.3340243399143219, 0.217274010181427, 1.4027535915374756, -0.6562561988830566, -0.30650854110717773, -0.1947316825389862]} +{"t": 0.77, "q": [-0.3640784025192261, -0.02430848218500614, 0.016378289088606834, 0.6035532355308533, -0.28554409742355347, 0.019606254994869232, -0.3847104609012604, 0.014070012606680393, -0.00847707036882639, 0.6081381440162659, -0.2915450930595398, -0.013033994473516941, 0.0033881496638059616, 0.0024900452699512243, -0.022500865161418915, -0.15438078343868256, 0.2840261459350586, 0.14994663000106812, 1.3662855625152588, 0.1801588535308838, -0.29332590103149414, 0.16589762270450592, -0.3095405399799347, -0.3335569500923157, 0.21730995178222656, 1.4027535915374756, -0.6562801599502563, -0.3065205216407776, -0.1947316825389862]} +{"t": 0.7868, "q": [-0.3640784025192261, -0.02430848218500614, 0.016418464481830597, 0.6035447120666504, -0.2855565845966339, 0.01962786726653576, -0.38472750782966614, 0.014095579273998737, -0.008436894044280052, 0.6081210970878601, -0.2915450930595398, -0.013019533827900887, 0.003361365757882595, 0.002482454525306821, -0.02250583842396736, -0.15580691397190094, 0.2859196364879608, 0.15175624191761017, 1.36618971824646, 0.17952369153499603, -0.29422470927238464, 0.16590961813926697, -0.30955255031585693, -0.3331494629383087, 0.2173219472169876, 1.4027296304702759, -0.6563161015510559, -0.30650854110717773, -0.1947316825389862]} +{"t": 0.8035, "q": [-0.36409544944763184, -0.024325527250766754, 0.016431856900453568, 0.6036214232444763, -0.2855565845966339, 0.019642336294054985, -0.3847104609012604, 0.0140785351395607, -0.00839671865105629, 0.608129620552063, -0.2915492653846741, -0.013012267649173737, 0.003347973804920912, 0.0024900431744754314, -0.022490989416837692, -0.15720906853675842, 0.287621408700943, 0.1528947502374649, 1.3661057949066162, 0.17916417121887207, -0.29509955644607544, 0.16593357920646667, -0.30955255031585693, -0.33278995752334595, 0.21736988425254822, 1.4027535915374756, -0.6563280820846558, -0.3064965605735779, -0.1947556436061859]} +{"t": 0.8203, "q": [-0.364155113697052, -0.024325527250766754, 0.016405072063207626, 0.6036128997802734, -0.28555241227149963, 0.019635114818811417, -0.3847530782222748, 0.014001836068928242, -0.008410110138356686, 0.6081040501594543, -0.2915450930595398, -0.013033994473516941, 0.0033881496638059616, 0.0024900431744754314, -0.022490989416837692, -0.15847939252853394, 0.289790540933609, 0.15403324365615845, 1.3660458326339722, 0.17899638414382935, -0.29634591937065125, 0.16589762270450592, -0.30955255031585693, -0.3322746157646179, 0.21744178235530853, 1.4027535915374756, -0.6563400626182556, -0.306484580039978, -0.19476762413978577]} +{"t": 0.837, "q": [-0.3641892075538635, -0.024334048852324486, 0.016364896669983864, 0.6036128997802734, -0.28555241227149963, 0.019635114818811417, -0.3847445547580719, 0.014044445939362049, -0.008490461856126785, 0.6080699563026428, -0.29155340790748596, -0.013019480742514133, 0.0034283252898603678, 0.0024596762377768755, -0.022491132840514183, -0.1598575860261917, 0.29215145111083984, 0.1552676260471344, 1.3660218715667725, 0.17851701378822327, -0.29823943972587585, 0.16593357920646667, -0.30957651138305664, -0.33171138167381287, 0.21746575832366943, 1.4027535915374756, -0.6563400626182556, -0.3064725995063782, -0.19481556117534637]} +{"t": 0.8537, "q": [-0.36422330141067505, -0.024325527250766754, 0.0163247212767601, 0.6036299467086792, -0.28554826974868774, 0.01961345784366131, -0.3847530782222748, 0.014052968472242355, -0.008530637249350548, 0.6081040501594543, -0.2915409505367279, -0.013026782311499119, 0.003441717242822051, 0.002444490557536483, -0.02248132973909378, -0.16139155626296997, 0.29502764344215393, 0.15650199353694916, 1.3660099506378174, 0.17819344997406006, -0.30091190338134766, 0.16590961813926697, -0.30955255031585693, -0.3313038945198059, 0.21746575832366943, 1.402741551399231, -0.656387984752655, -0.3064606189727783, -0.19481556117534637]} +{"t": 0.8704, "q": [-0.36423182487487793, -0.0243510939180851, 0.0163247212767601, 0.6036555171012878, -0.28554823994636536, 0.01962791010737419, -0.3847530782222748, 0.014027401804924011, -0.008530637249350548, 0.6080955266952515, -0.29153677821159363, -0.013034029863774776, 0.0035354604478925467, 0.002459671813994646, -0.022471381351351738, -0.1631292700767517, 0.29726871848106384, 0.15868312120437622, 1.3660218715667725, 0.17713883519172668, -0.30365630984306335, 0.1658736616373062, -0.3095645308494568, -0.33096835017204285, 0.21746575832366943, 1.4027535915374756, -0.6563760042190552, -0.3064366281032562, -0.19482755661010742]} +{"t": 0.8872, "q": [-0.36422330141067505, -0.02435961551964283, 0.01631132885813713, 0.6036555171012878, -0.2855566143989563, 0.019613415002822876, -0.3847530782222748, 0.014035924337804317, -0.008530637249350548, 0.6080784797668457, -0.2915450930595398, -0.013019533827900887, 0.0036292036529630423, 0.0024672646541148424, -0.022476283833384514, -0.1655021458864212, 0.2995816767215729, 0.16107997298240662, 1.3659979104995728, 0.17597636580467224, -0.30545392632484436, 0.1657538264989853, -0.30957651138305664, -0.3307046890258789, 0.21748971939086914, 1.4027535915374756, -0.6564119458198547, -0.3064366281032562, -0.19483953714370728]} +{"t": 0.9039, "q": [-0.36422330141067505, -0.024393703788518906, 0.016338111832737923, 0.603646993637085, -0.2855565845966339, 0.01962786726653576, -0.3847530782222748, 0.014027401804924011, -0.008557421155273914, 0.6080955266952515, -0.2915409505367279, -0.013012321665883064, 0.0036827712319791317, 0.0024672646541148424, -0.022476283833384514, -0.16769526898860931, 0.3014512062072754, 0.16348880529403687, 1.3659499883651733, 0.17482587695121765, -0.30632877349853516, 0.16571786999702454, -0.3095884919166565, -0.33034515380859375, 0.21746575832366943, 1.4027296304702759, -0.6564119458198547, -0.3064126670360565, -0.19486349821090698]} +{"t": 0.9206, "q": [-0.36421477794647217, -0.024393703788518906, 0.016351504251360893, 0.603646993637085, -0.28554823994636536, 0.01962791010737419, -0.384736031293869, 0.014035924337804317, -0.008544029667973518, 0.6080784797668457, -0.2915409505367279, -0.013012321665883064, 0.0037095551379024982, 0.0024672646541148424, -0.022476283833384514, -0.1705714762210846, 0.30365630984306335, 0.16583770513534546, 1.3659859895706177, 0.1738671362400055, -0.3067362308502197, 0.16564595699310303, -0.3096364140510559, -0.3299376964569092, 0.21753765642642975, 1.4027535915374756, -0.6564359664916992, -0.3064366281032562, -0.19485151767730713]} +{"t": 0.9374, "q": [-0.36423182487487793, -0.024385182186961174, 0.01631132885813713, 0.6036810874938965, -0.28554826974868774, 0.01961345784366131, -0.384736031293869, 0.014027401804924011, -0.008597597479820251, 0.6080784797668457, -0.29152846336364746, -0.013034065254032612, 0.003696163184940815, 0.002459671813994646, -0.022471381351351738, -0.17343570291996002, 0.30540600419044495, 0.16895361244678497, 1.3659859895706177, 0.17180585861206055, -0.3069159984588623, 0.16566993296146393, -0.3096364140510559, -0.3295542001724243, 0.21753765642642975, 1.4027535915374756, -0.6564479470252991, -0.30640068650245667, -0.19483953714370728]} +{"t": 0.9541, "q": [-0.3642403483390808, -0.024376660585403442, 0.0163247212767601, 0.6037066578865051, -0.28555241227149963, 0.019635114818811417, -0.38472750782966614, 0.014035924337804317, -0.008597597479820251, 0.6080955266952515, -0.29152432084083557, -0.013041313737630844, 0.003669379511848092, 0.002459671813994646, -0.022471381351351738, -0.1763119250535965, 0.30720362067222595, 0.17093101143836975, 1.3658781051635742, 0.16991233825683594, -0.30710774660110474, 0.16569389402866364, -0.3096843659877777, -0.32921865582466125, 0.2175736129283905, 1.4027535915374756, -0.6564719080924988, -0.3063647449016571, -0.19486349821090698]} +{"t": 0.9709, "q": [-0.3641977310180664, -0.024410748854279518, 0.016364896669983864, 0.6037066578865051, -0.28554823994636536, 0.01962791010737419, -0.38472750782966614, 0.014027401804924011, -0.008544029667973518, 0.6081040501594543, -0.29153263568878174, -0.013026817701756954, 0.0036158119328320026, 0.0024520789738744497, -0.02246648073196411, -0.17912821471691132, 0.3088095188140869, 0.17318403720855713, 1.3657822608947754, 0.1685461401939392, -0.3077668845653534, 0.1654302477836609, -0.30969634652137756, -0.32884714007377625, 0.2175736129283905, 1.4027296304702759, -0.6564719080924988, -0.30635276436805725, -0.19489945471286774]} +{"t": 0.9878, "q": [-0.3642062544822693, -0.024410748854279518, 0.016391679644584656, 0.6037066578865051, -0.28554823994636536, 0.01962791010737419, -0.38472750782966614, 0.014027401804924011, -0.008517245762050152, 0.6081040501594543, -0.29152432084083557, -0.013041313737630844, 0.0035354604478925467, 0.0024368935264647007, -0.02245667576789856, -0.18181267380714417, 0.310259610414505, 0.17434650659561157, 1.3655664920806885, 0.16818661987781525, -0.30810245871543884, 0.1654062718153, -0.3097083270549774, -0.32841572165489197, 0.21756163239479065, 1.402741551399231, -0.6564719080924988, -0.3063647449016571, -0.19488747417926788]} +{"t": 1.0046, "q": [-0.36422330141067505, -0.024410748854279518, 0.016391679644584656, 0.6037407517433167, -0.2855565845966339, 0.019642336294054985, -0.3847445547580719, 0.014035924337804317, -0.008544029667973518, 0.6081040501594543, -0.29152432084083557, -0.013041313737630844, 0.0034551091957837343, 0.0024368935264647007, -0.02245667576789856, -0.1847008764743805, 0.3120812177658081, 0.17650367319583893, 1.3653028011322021, 0.16703613102436066, -0.309288889169693, 0.16516658663749695, -0.30974429845809937, -0.32792434096336365, 0.2176215499639511, 1.4027535915374756, -0.6564719080924988, -0.30632877349853516, -0.19489945471286774]} +{"t": 1.0213, "q": [-0.3642403483390808, -0.024410748854279518, 0.016364896669983864, 0.6037322282791138, -0.28554823994636536, 0.01962791010737419, -0.3847530782222748, 0.014052968472242355, -0.008584205061197281, 0.6080955266952515, -0.29152432084083557, -0.01302685309201479, 0.0034149333368986845, 0.0023837480694055557, -0.02244211547076702, -0.18722954392433167, 0.31381893157958984, 0.1780376434326172, 1.3645238876342773, 0.16641294956207275, -0.31049928069114685, 0.1651066690683365, -0.30972030758857727, -0.3272652328014374, 0.21764551103115082, 1.402741551399231, -0.6564479470252991, -0.30630481243133545, -0.19488747417926788]} +{"t": 1.038, "q": [-0.3642403483390808, -0.024402225390076637, 0.016364896669983864, 0.6037577986717224, -0.28555241227149963, 0.019635114818811417, -0.38472750782966614, 0.014052968472242355, -0.008570813573896885, 0.6080784797668457, -0.29152432084083557, -0.013041313737630844, 0.0034015413839370012, 0.0023381924256682396, -0.022412704303860664, -0.1901417225599289, 0.3157004415988922, 0.18012291193008423, 1.3644040822982788, 0.1657538264989853, -0.3119134306907654, 0.16481904685497284, -0.3097562789916992, -0.3267139494419098, 0.21764551103115082, 1.4027655124664307, -0.6564719080924988, -0.30628085136413574, -0.19489945471286774]} +{"t": 1.0548, "q": [-0.3642914593219757, -0.024410748854279518, 0.016338111832737923, 0.603783369064331, -0.2855607569217682, 0.019635090604424477, -0.38476160168647766, 0.014070012606680393, -0.008544029667973518, 0.6080955266952515, -0.29153263568878174, -0.013026817701756954, 0.0034015413839370012, 0.002323002554476261, -0.022383149713277817, -0.19361715018749237, 0.3173063397407532, 0.181728795170784, 1.364020586013794, 0.16549016535282135, -0.3131358325481415, 0.16471119225025177, -0.3097322881221771, -0.32627052068710327, 0.21765749156475067, 1.402801513671875, -0.6564838886260986, -0.30625689029693604, -0.1949114352464676]} +{"t": 1.0715, "q": [-0.3642829358577728, -0.024402225390076637, 0.016364896669983864, 0.6037663221359253, -0.2855565845966339, 0.01962786726653576, -0.38476160168647766, 0.014052968472242355, -0.008530637249350548, 0.6081040501594543, -0.29153677821159363, -0.013034029863774776, 0.003481892868876457, 0.002277441555634141, -0.022333987057209015, -0.1982310712337494, 0.3194275498390198, 0.18462897837162018, 1.3639006614685059, 0.16384832561016083, -0.31626370549201965, 0.16380038857460022, -0.30974429845809937, -0.3259349763393402, 0.21768146753311157, 1.4027775526046753, -0.6564958691596985, -0.30620893836021423, -0.1949833482503891]} +{"t": 1.0882, "q": [-0.3643852174282074, -0.024393703788518906, 0.016271153464913368, 0.6038174629211426, -0.28554823994636536, 0.01962791010737419, -0.3847871422767639, 0.014027401804924011, -0.008677948266267776, 0.6081040501594543, -0.29152846336364746, -0.013034065254032612, 0.0037229470908641815, 0.0022015071008354425, -0.022255340591073036, -0.20360000431537628, 0.3215487599372864, 0.1870977282524109, 1.3633733987808228, 0.1618589460849762, -0.3192957043647766, 0.16294951736927032, -0.30974429845809937, -0.32557544112205505, 0.21770542860031128, 1.402801513671875, -0.6565078496932983, -0.3061610162258148, -0.1949593722820282]} +{"t": 1.105, "q": [-0.36440226435661316, -0.02435961551964283, 0.01613723486661911, 0.6039367318153381, -0.2855399250984192, 0.01961350068449974, -0.38477861881256104, 0.014035924337804317, -0.008825259283185005, 0.6081892848014832, -0.29153677821159363, -0.013048490509390831, 0.003910433501005173, 0.0018522350583225489, -0.022010106593370438, -0.2099875956773758, 0.3249402940273285, 0.19054917991161346, 1.3633254766464233, 0.15929432213306427, -0.3249882161617279, 0.16102005541324615, -0.30990007519721985, -0.32504814863204956, 0.21770542860031128, 1.4027655124664307, -0.6564958691596985, -0.3061370253562927, -0.1949593722820282]} +{"t": 1.1217, "q": [-0.3646153211593628, -0.024274393916130066, 0.015856005251407623, 0.6040731072425842, -0.28553158044815063, 0.01959909312427044, -0.3848297595977783, 0.014087056741118431, -0.009173448197543621, 0.6081892848014832, -0.29153677821159363, -0.013048490509390831, 0.004205055069178343, 0.0015788974706083536, -0.02184351533651352, -0.2166747897863388, 0.3294343650341034, 0.19202324748039246, 1.3622468709945679, 0.1580359786748886, -0.32859545946121216, 0.15837153792381287, -0.30999594926834106, -0.3245927393436432, 0.21772940456867218, 1.4027655124664307, -0.656531810760498, -0.30610108375549316, -0.1949593722820282]} +{"t": 1.1384, "q": [-0.36464086174964905, -0.024197695776820183, 0.015708694234490395, 0.6041412949562073, -0.28553158044815063, 0.01959909312427044, -0.38482123613357544, 0.014121145009994507, -0.009414502419531345, 0.6082489490509033, -0.2915492355823517, -0.013041225261986256, 0.0042854067869484425, 0.000971601577475667, -0.021436668932437897, -0.22477613389492035, 0.3359178304672241, 0.19314976036548615, 1.361348032951355, 0.15767645835876465, -0.3312320113182068, 0.1555192917585373, -0.31040340662002563, -0.32400551438331604, 0.21772940456867218, 1.402741551399231, -0.6566277146339417, -0.30607712268829346, -0.1949593722820282]} +{"t": 1.1553, "q": [-0.3647601902484894, -0.024103952571749687, 0.015588166192173958, 0.604235053062439, -0.285531610250473, 0.019584640860557556, -0.3848297595977783, 0.014129667542874813, -0.009601988829672337, 0.6082148551940918, -0.2915409207344055, -0.013041242025792599, 0.004044352564960718, 0.0008273791172541678, -0.02135489508509636, -0.23160713911056519, 0.34230542182922363, 0.19414444267749786, 1.3588793277740479, 0.15730494260787964, -0.33246636390686035, 0.1550159603357315, -0.31109851598739624, -0.32340630888938904, 0.21772940456867218, 1.402741551399231, -0.6566636562347412, -0.30605313181877136, -0.1949593722820282]} +{"t": 1.172, "q": [-0.3647005259990692, -0.024103952571749687, 0.015681909397244453, 0.6042776107788086, -0.2855357825756073, 0.01959184557199478, -0.3848468065261841, 0.014095579273998737, -0.009468070231378078, 0.6082063317298889, -0.2915409207344055, -0.013070181012153625, 0.00388364982791245, 0.0007818351732566953, -0.021335773169994354, -0.23948077857494354, 0.3493761122226715, 0.19566644728183746, 1.3572614192962646, 0.15722104907035828, -0.33406028151512146, 0.15475229918956757, -0.311829537153244, -0.3231426477432251, 0.21774138510227203, 1.4027535915374756, -0.6566756367683411, -0.3060171902179718, -0.19494739174842834]} +{"t": 1.1887, "q": [-0.36467495560646057, -0.024086907505989075, 0.015708694234490395, 0.6042946577072144, -0.2855357825756073, 0.01959184557199478, -0.3848468065261841, 0.013933658599853516, -0.00932075921446085, 0.6081722378730774, -0.2915492355823517, -0.013041225261986256, 0.003655987558886409, 0.0007970164879225194, -0.021345412358641624, -0.2471027374267578, 0.35625505447387695, 0.19711653888225555, 1.355128288269043, 0.15702930092811584, -0.3356421887874603, 0.1546444445848465, -0.31254860758781433, -0.32313066720962524, 0.2177533656358719, 1.4027535915374756, -0.6566636562347412, -0.3059692680835724, -0.1949593722820282]} +{"t": 1.2056, "q": [-0.36459827423095703, -0.024035776033997536, 0.015896180644631386, 0.604235053062439, -0.28554412722587585, 0.01959180273115635, -0.38491499423980713, 0.014044445939362049, -0.009213624522089958, 0.6082319021224976, -0.2915492355823517, -0.013026745989918709, 0.0034952848218381405, 0.0008577417465858161, -0.02131541259586811, -0.2556594908237457, 0.3640328347682953, 0.19932162761688232, 1.3544211387634277, 0.15640611946582794, -0.3395730257034302, 0.15382951498031616, -0.31321969628334045, -0.3231186866760254, 0.21771742403507233, 1.4027775526046753, -0.6566756367683411, -0.3058973550796509, -0.19497136771678925]} +{"t": 1.2223, "q": [-0.3647431433200836, -0.02400168590247631, 0.015856005251407623, 0.6042265295982361, -0.28554409742355347, 0.019606254994869232, -0.38505133986473083, 0.01401888020336628, -0.009200232103466988, 0.6082063317298889, -0.29153677821159363, -0.013062968850135803, 0.0035354604478925467, 0.0008577417465858161, -0.021276239305734634, -0.26356905698776245, 0.3711754381656647, 0.2004002183675766, 1.3534624576568604, 0.15590278804302216, -0.3444026708602905, 0.15343403816223145, -0.31384289264678955, -0.32308271527290344, 0.2177533656358719, 1.4027894735336304, -0.6567954421043396, -0.30577751994132996, -0.19494739174842834]} +{"t": 1.239, "q": [-0.36481133103370667, -0.02399316430091858, 0.015869395807385445, 0.6041839122772217, -0.2855399250984192, 0.019599050283432007, -0.38513657450675964, 0.014087056741118431, -0.00925379991531372, 0.6081722378730774, -0.2915492355823517, -0.013055684976279736, 0.0034952848218381405, 0.0008273791172541678, -0.021129650995135307, -0.27260518074035645, 0.3803313672542572, 0.20149077475070953, 1.352060317993164, 0.154572531580925, -0.35106590390205383, 0.15242736041545868, -0.3148975074291229, -0.3227950930595398, 0.21778932213783264, 1.4027655124664307, -0.6568314433097839, -0.30570560693740845, -0.1949593722820282]} +{"t": 1.2558, "q": [-0.3649817705154419, -0.02400168590247631, 0.015829220414161682, 0.6041839122772217, -0.285552442073822, 0.0196062121540308, -0.3851962089538574, 0.014146711677312851, -0.009280583821237087, 0.6081210970878601, -0.2915533781051636, -0.013062898069620132, 0.0034551091957837343, 0.0007135192863643169, -0.020969223231077194, -0.2812577784061432, 0.3890678584575653, 0.20240157842636108, 1.3498551845550537, 0.1523195058107376, -0.35396608710289, 0.1513487845659256, -0.31559258699417114, -0.32260334491729736, 0.21781329810619354, 1.402801513671875, -0.6568194031715393, -0.30565765500068665, -0.1949593722820282]} +{"t": 1.2725, "q": [-0.3649817705154419, -0.023967597633600235, 0.015829220414161682, 0.6041157245635986, -0.28554409742355347, 0.019606254994869232, -0.38523030281066895, 0.014146711677312851, -0.00925379991531372, 0.6080443859100342, -0.2915409207344055, -0.013041242025792599, 0.0035086767747998238, 0.0005996594554744661, -0.020887140184640884, -0.2910129427909851, 0.39854738116264343, 0.20410333573818207, 1.3485968112945557, 0.14904780685901642, -0.35615918040275574, 0.14961107075214386, -0.3160479962825775, -0.32262733578681946, 0.21781329810619354, 1.4027775526046753, -0.6568314433097839, -0.30552583932876587, -0.19497136771678925]} +{"t": 1.2892, "q": [-0.3651266396045685, -0.023967597633600235, 0.015829220414161682, 0.6041668653488159, -0.28554409742355347, 0.019606254994869232, -0.3853070139884949, 0.014180799946188927, -0.009307367727160454, 0.6080443859100342, -0.29154089093208313, -0.01308464165776968, 0.003468500915914774, 0.0003795315860770643, -0.020688623189926147, -0.30166691541671753, 0.4077872335910797, 0.20600883662700653, 1.3473504781723022, 0.1480770856142044, -0.35950279235839844, 0.14799319207668304, -0.3165033757686615, -0.32262733578681946, 0.21778932213783264, 1.4027894735336304, -0.6568434238433838, -0.30535805225372314, -0.1949593722820282]} +{"t": 1.306, "q": [-0.36518630385398865, -0.023976121097803116, 0.01577565260231495, 0.6041072010993958, -0.28555241227149963, 0.019620662555098534, -0.3853325843811035, 0.014197844080626965, -0.009347543120384216, 0.6078484058380127, -0.29153674840927124, -0.013091889210045338, 0.0034952848218381405, 0.00025808109785430133, -0.020611515268683434, -0.3122369945049286, 0.41749444603919983, 0.20852552354335785, 1.3456966876983643, 0.14697453379631042, -0.3642605245113373, 0.14709438383579254, -0.31711459159851074, -0.3223876357078552, 0.217873215675354, 1.402801513671875, -0.6568793654441833, -0.3052501976490021, -0.1949593722820282]} +{"t": 1.3227, "q": [-0.36532264947891235, -0.023984642699360847, 0.015762262046337128, 0.6040560603141785, -0.28556495904922485, 0.019613372161984444, -0.3853922188282013, 0.014197844080626965, -0.009347543120384216, 0.6078143119812012, -0.2915492057800293, -0.01307014562189579, 0.0034952848218381405, 0.00010626918083289638, -0.02051512897014618, -0.3225194811820984, 0.4280166029930115, 0.2107066512107849, 1.3445701599121094, 0.1465071588754654, -0.36960548162460327, 0.14645922183990479, -0.3179055452346802, -0.3219681978225708, 0.21793313324451447, 1.4027535915374756, -0.6569033265113831, -0.30513036251068115, -0.1949593722820282]} +{"t": 1.3395, "q": [-0.36527150869369507, -0.02399316430091858, 0.01578904502093792, 0.6039708256721497, -0.28556495904922485, 0.019613372161984444, -0.38536664843559265, 0.014214888215065002, -0.009307367727160454, 0.6076098084449768, -0.29154089093208313, -0.01308464165776968, 0.003441717242822051, 2.277196654176805e-05, -0.020462118089199066, -0.3335449695587158, 0.43953344225883484, 0.21258817613124847, 1.3432759046554565, 0.1455603986978531, -0.37345242500305176, 0.14613564312458038, -0.31875643134117126, -0.3215727210044861, 0.21794511377811432, 1.4027535915374756, -0.6569033265113831, -0.30505844950675964, -0.19497136771678925]} +{"t": 1.3562, "q": [-0.36541637778282166, -0.024018730968236923, 0.01581582799553871, 0.6039537787437439, -0.28556913137435913, 0.01962059549987316, -0.38545188307762146, 0.014257499016821384, -0.00933415163308382, 0.6076353788375854, -0.2915492057800293, -0.01307014562189579, 0.003481892868876457, -3.795327938860282e-05, -0.02028568461537361, -0.34449854493141174, 0.4506188631057739, 0.21291173994541168, 1.3421133756637573, 0.14514094591140747, -0.37423139810562134, 0.14551246166229248, -0.31933167576789856, -0.32133302092552185, 0.21795710921287537, 1.402801513671875, -0.6569632291793823, -0.30492663383483887, -0.19494739174842834]} +{"t": 1.3729, "q": [-0.36551013588905334, -0.02406134083867073, 0.01581582799553871, 0.6038686037063599, -0.28556495904922485, 0.019613372161984444, -0.38550302386283875, 0.01423193234950304, -0.00932075921446085, 0.6075416207313538, -0.2915450632572174, -0.013062933459877968, 0.003321190131828189, -0.0001821757323341444, -0.02004428207874298, -0.35590752959251404, 0.46319031715393066, 0.21342706680297852, 1.3400400876998901, 0.14491325616836548, -0.3765683174133301, 0.1447814255952835, -0.3202424645423889, -0.32078176736831665, 0.21796908974647522, 1.4027535915374756, -0.6570591330528259, -0.3047947883605957, -0.1949833482503891]} +{"t": 1.3898, "q": [-0.3656123876571655, -0.024044297635555267, 0.01578904502093792, 0.6038259863853455, -0.2855775058269501, 0.019606100395321846, -0.3855797052383423, 0.014223410747945309, -0.00933415163308382, 0.6073541045188904, -0.2915409207344055, -0.013070181012153625, 0.0032274469267576933, -0.0004173984343651682, -0.01971490867435932, -0.36791571974754333, 0.47717589139938354, 0.21353492140769958, 1.3383982181549072, 0.14472150802612305, -0.38066694140434265, 0.14401443302631378, -0.3209974765777588, -0.32020652294158936, 0.21796908974647522, 1.4027175903320312, -0.6570950746536255, -0.3047229051589966, -0.19501930475234985]} +{"t": 1.4066, "q": [-0.3656635284423828, -0.02411247417330742, 0.01580243743956089, 0.6038259863853455, -0.28556495904922485, 0.019613372161984444, -0.38559675216674805, 0.014283065684139729, -0.009347543120384216, 0.6074222922325134, -0.2915242612361908, -0.013113651424646378, 0.003441717242822051, -0.000910601404029876, -0.019128603860735893, -0.380235493183136, 0.48980727791786194, 0.21355889737606049, 1.337056040763855, 0.144709512591362, -0.3858920633792877, 0.14329537749290466, -0.32153674960136414, -0.31988292932510376, 0.21801702678203583, 1.402801513671875, -0.6571549773216248, -0.3045670986175537, -0.1950073093175888]} +{"t": 1.4233, "q": [-0.3658083975315094, -0.02411247417330742, 0.015748869627714157, 0.6038004159927368, -0.28556913137435913, 0.019606124609708786, -0.3856052756309509, 0.014300109818577766, -0.009468070231378078, 0.6073200106620789, -0.29151180386543274, -0.01310647465288639, 0.003254230599850416, -0.0010699584381654859, -0.01884673908352852, -0.39180028438568115, 0.5020551681518555, 0.2140023112297058, 1.334371566772461, 0.14451777935028076, -0.39337021112442017, 0.14310362935066223, -0.322435587644577, -0.319379597902298, 0.2180769443511963, 1.40281343460083, -0.6571909189224243, -0.30445924401283264, -0.1950312852859497]} +{"t": 1.44, "q": [-0.3657061457633972, -0.024206217378377914, 0.015869395807385445, 0.6037407517433167, -0.2855775058269501, 0.019606100395321846, -0.3856052756309509, 0.014317153953015804, -0.009293975308537483, 0.6073200106620789, -0.29151594638824463, -0.013113686814904213, 0.003321190131828189, -0.0010775468545034528, -0.018772562965750694, -0.4039163291454315, 0.5148782730102539, 0.21399033069610596, 1.332262396812439, 0.14439792931079865, -0.39774444699287415, 0.1420849710702896, -0.32320258021354675, -0.31921181082725525, 0.2181009203195572, 1.402801513671875, -0.6571669578552246, -0.3043633699417114, -0.19504326581954956]} +{"t": 1.4567, "q": [-0.3656805753707886, -0.02436813712120056, 0.015882788226008415, 0.603715181350708, -0.2855816185474396, 0.019642207771539688, -0.38558822870254517, 0.01426602154970169, -0.009307367727160454, 0.6072773933410645, -0.291515976190567, -0.013099226169288158, 0.0032944062259048223, -0.0010851352708414197, -0.01875772885978222, -0.41449838876724243, 0.5252566337585449, 0.21407420933246613, 1.3308961391448975, 0.14421816170215607, -0.39976978302001953, 0.14119814336299896, -0.3238137662410736, -0.3191039562225342, 0.21811290085315704, 1.4027775526046753, -0.6571909189224243, -0.30427947640419006, -0.19504326581954956]} +{"t": 1.4735, "q": [-0.36564648151397705, -0.02453858032822609, 0.01593635603785515, 0.6035532355308533, -0.28559410572052, 0.019663821905851364, -0.3855797052383423, 0.014163755811750889, -0.009267191402614117, 0.6072263121604919, -0.29153671860694885, -0.013106349855661392, 0.0031872710678726435, -0.0010547817219048738, -0.018747838214039803, -0.42524823546409607, 0.5363540053367615, 0.21394239366054535, 1.3285592794418335, 0.14412228763103485, -0.40258607268333435, 0.13980796933174133, -0.3244609236717224, -0.3189961016178131, 0.21811290085315704, 1.4027535915374756, -0.6572149395942688, -0.30423155426979065, -0.19505524635314941]} +{"t": 1.4902, "q": [-0.3656209111213684, -0.02483685500919819, 0.016016706824302673, 0.6035191416740417, -0.28559410572052, 0.019663821905851364, -0.38558822870254517, 0.014087056741118431, -0.009146664291620255, 0.6073455810546875, -0.291515976190567, -0.013084747828543186, 0.003254230599850416, -0.001024428172968328, -0.018708277493715286, -0.43559062480926514, 0.5452702641487122, 0.21369071304798126, 1.3279600143432617, 0.14424213767051697, -0.40618133544921875, 0.13641643524169922, -0.32490432262420654, -0.3188762664794922, 0.2181248813867569, 1.4027296304702759, -0.6572628617286682, -0.3041236698627472, -0.19506722688674927]} +{"t": 1.5069, "q": [-0.3655271828174591, -0.02502434141933918, 0.016056882217526436, 0.6034765839576721, -0.2856024205684662, 0.019707150757312775, -0.3855115473270416, 0.014035924337804317, -0.009173448197543621, 0.6072944402694702, -0.29150351881980896, -0.0130775710567832, 0.003254230599850416, -0.0010016618762165308, -0.01863410323858261, -0.44624459743499756, 0.5550253987312317, 0.21331921219825745, 1.3271809816360474, 0.1443859487771988, -0.4107113778591156, 0.13380387425422668, -0.32510805130004883, -0.31861260533332825, 0.2181967943906784, 1.4027175903320312, -0.6573227643966675, -0.30405178666114807, -0.19507922232151031]} +{"t": 1.5236, "q": [-0.36560386419296265, -0.02526295930147171, 0.016003314405679703, 0.603570282459259, -0.2856482267379761, 0.019786417484283447, -0.385485976934433, 0.013976269401609898, -0.009200232103466988, 0.6073711514472961, -0.29150766134262085, -0.013084783218801022, 0.0033747577108442783, -0.0011761945206671953, -0.018352871760725975, -0.45693454146385193, 0.5641454458236694, 0.2127319872379303, 1.3269413709640503, 0.14480538666248322, -0.41501373052597046, 0.13156282901763916, -0.32525187730789185, -0.3183489739894867, 0.21825671195983887, 1.4027775526046753, -0.6573467254638672, -0.303943932056427, -0.19510318338871002]} +{"t": 1.5404, "q": [-0.3655868172645569, -0.02527148276567459, 0.016016706824302673, 0.6034936308860779, -0.2856607139110565, 0.019808048382401466, -0.3854689300060272, 0.013925136998295784, -0.009200232103466988, 0.6073200106620789, -0.2914993464946747, -0.013084819540381432, 0.0032810145057737827, -0.0013962574303150177, -0.018058227375149727, -0.466677725315094, 0.5732534527778625, 0.2124084085226059, 1.326282262802124, 0.14487729966640472, -0.41786596179008484, 0.12990900874137878, -0.3255394995212555, -0.3177737295627594, 0.21826869249343872, 1.4027175903320312, -0.6574066877365112, -0.30386003851890564, -0.19510318338871002]} +{"t": 1.5571, "q": [-0.365578293800354, -0.02532261423766613, 0.016003314405679703, 0.6035532355308533, -0.2856607139110565, 0.019808048382401466, -0.385485976934433, 0.013950702734291553, -0.009240408428013325, 0.6073881983757019, -0.2914952039718628, -0.01309206709265709, 0.003240838646888733, -0.0018514038529247046, -0.017534520477056503, -0.4767204821109772, 0.5826730132102966, 0.21214476227760315, 1.3259586095809937, 0.14516492187976837, -0.41950780153274536, 0.1272604912519455, -0.325839102268219, -0.3171984851360321, 0.21829266846179962, 1.402741551399231, -0.6574066877365112, -0.3037281930446625, -0.19511516392230988]} +{"t": 1.5739, "q": [-0.3655868172645569, -0.0254504457116127, 0.016016706824302673, 0.6035021543502808, -0.2856648862361908, 0.01981525309383869, -0.3854774534702301, 0.013950702734291553, -0.009293975308537483, 0.6073455810546875, -0.2914910614490509, -0.013084854930639267, 0.0032274469267576933, -0.0022685870062559843, -0.0170926284044981, -0.48685914278030396, 0.5920327305793762, 0.2122046798467636, 1.3251796960830688, 0.145081028342247, -0.42108970880508423, 0.12616991996765137, -0.3258630633354187, -0.3166831433773041, 0.21834060549736023, 1.4027175903320312, -0.6573946475982666, -0.3036682903766632, -0.19513913989067078]} +{"t": 1.5906, "q": [-0.3656209111213684, -0.02544192411005497, 0.01594974845647812, 0.603570282459259, -0.2856649160385132, 0.019800802692770958, -0.3854774534702301, 0.01395922526717186, -0.009347543120384216, 0.6074990034103394, -0.2914868891239166, -0.013092102482914925, 0.0032944062259048223, -0.0028138740453869104, -0.016493843868374825, -0.49697384238243103, 0.6007093191146851, 0.21198895573616028, 1.3249280452728271, 0.14524881541728973, -0.42367830872535706, 0.12473181635141373, -0.32587504386901855, -0.31626370549201965, 0.21836456656455994, 1.40281343460083, -0.6573946475982666, -0.3035244643688202, -0.19515112042427063]} +{"t": 1.6073, "q": [-0.36573171615600586, -0.025407835841178894, 0.015856005251407623, 0.6035447120666504, -0.28565236926078796, 0.019793622195720673, -0.3855115473270416, 0.013993313536047935, -0.009454678744077682, 0.6074052453041077, -0.2914868891239166, -0.013092102482914925, 0.003321190131828189, -0.003387161996215582, -0.016070308163762093, -0.5084067583084106, 0.6108239889144897, 0.2118811011314392, 1.3243048191070557, 0.14521285891532898, -0.42762112617492676, 0.12352140992879868, -0.32587504386901855, -0.31566449999809265, 0.2183765470981598, 1.4027655124664307, -0.6573826670646667, -0.3033926486968994, -0.19518707692623138]} +{"t": 1.624, "q": [-0.3658169209957123, -0.025416357442736626, 0.01577565260231495, 0.603570282459259, -0.2856482267379761, 0.019786417484283447, -0.385528564453125, 0.014112623408436775, -0.00958859734237194, 0.6073541045188904, -0.29148274660110474, -0.013099350966513157, 0.0034283252898603678, -0.003887794679030776, -0.015730883926153183, -0.5185574293136597, 0.6196683049201965, 0.21179720759391785, 1.3239692449569702, 0.14534468948841095, -0.4327024221420288, 0.1215679794549942, -0.32587504386901855, -0.31524503231048584, 0.2184005230665207, 1.4028373956680298, -0.6575145125389099, -0.30323684215545654, -0.19518707692623138]} +{"t": 1.6408, "q": [-0.3657998740673065, -0.025424880906939507, 0.015722084790468216, 0.6035532355308533, -0.2856607139110565, 0.019808048382401466, -0.38549450039863586, 0.014138189144432545, -0.009682340547442436, 0.6072518825531006, -0.2914910316467285, -0.013113775290548801, 0.0034149333368986845, -0.004077056888490915, -0.01565813645720482, -0.529367208480835, 0.6298069953918457, 0.21144966781139374, 1.3226629495620728, 0.14527277648448944, -0.4372204840183258, 0.11992613971233368, -0.32587504386901855, -0.31494542956352234, 0.21836456656455994, 1.4027535915374756, -0.6574785709381104, -0.3031289875507355, -0.19519905745983124]} +{"t": 1.6577, "q": [-0.3658169209957123, -0.02538226917386055, 0.015708694234490395, 0.6036043763160706, -0.2856607139110565, 0.019808048382401466, -0.385485976934433, 0.014146711677312851, -0.009709124453365803, 0.6073711514472961, -0.29148271679878235, -0.013113810680806637, 0.0034283252898603678, -0.004394174553453922, -0.015453554689884186, -0.5419386625289917, 0.6387112736701965, 0.21075458824634552, 1.3216443061828613, 0.14545254409313202, -0.43935367465019226, 0.11618706583976746, -0.32585108280181885, -0.3149334490299225, 0.21836456656455994, 1.4028973579406738, -0.6575025320053101, -0.3029012978076935, -0.19516310095787048]} +{"t": 1.6744, "q": [-0.36583396792411804, -0.02532261423766613, 0.01562834158539772, 0.6034936308860779, -0.2856607437133789, 0.019779127091169357, -0.3855115473270416, 0.014155233278870583, -0.009722515940666199, 0.6071666479110718, -0.2914910316467285, -0.013099314644932747, 0.003441717242822051, -0.0044619496911764145, -0.015429073013365269, -0.5530120730400085, 0.6483825445175171, 0.20967599749565125, 1.318971872329712, 0.1456802487373352, -0.4409595727920532, 0.11205250769853592, -0.32615068554878235, -0.31474170088768005, 0.21836456656455994, 1.4027296304702759, -0.6575504541397095, -0.3027454912662506, -0.1952110379934311]} +{"t": 1.6911, "q": [-0.36591920256614685, -0.02532261423766613, 0.015601558610796928, 0.6035276651382446, -0.28565654158592224, 0.019800826907157898, -0.3855200707912445, 0.014163755811750889, -0.009722515940666199, 0.6071751713752747, -0.29150766134262085, -0.013070323504507542, 0.003575636073946953, -0.00455948431044817, -0.015345859341323376, -0.5670695900917053, 0.6586530208587646, 0.2084416300058365, 1.317318081855774, 0.1469026356935501, -0.44193029403686523, 0.10778611898422241, -0.3263304531574249, -0.31466978788375854, 0.21838854253292084, 1.4027535915374756, -0.6575744152069092, -0.30261367559432983, -0.19519905745983124]} +{"t": 1.7079, "q": [-0.3658510148525238, -0.025305571034550667, 0.015521206893026829, 0.6034680604934692, -0.28566908836364746, 0.019779084250330925, -0.385485976934433, 0.014138189144432545, -0.009749299846589565, 0.6071240305900574, -0.29150351881980896, -0.0130775710567832, 0.003736338810995221, -0.004544456023722887, -0.015355649404227734, -0.5806477069854736, 0.6693189740180969, 0.2073630541563034, 1.315460443496704, 0.14751382172107697, -0.4433564245700836, 0.1053173691034317, -0.3265102207660675, -0.3145259916782379, 0.218472421169281, 1.4027175903320312, -0.6575384736061096, -0.30256572365760803, -0.19519905745983124]} +{"t": 1.7246, "q": [-0.3658851087093353, -0.025280004367232323, 0.015467639081180096, 0.6034424901008606, -0.2856607139110565, 0.019808048382401466, -0.38550302386283875, 0.014095579273998737, -0.009776083752512932, 0.6071069836616516, -0.2915118336677551, -0.013063057325780392, 0.003776514669880271, -0.004536868073046207, -0.015350757166743279, -0.592799723148346, 0.6793497800827026, 0.20540961623191833, 1.313291311264038, 0.1483527272939682, -0.44511809945106506, 0.10336394608020782, -0.326665997505188, -0.31444209814071655, 0.218472421169281, 1.4027296304702759, -0.6576223969459534, -0.30250582098960876, -0.19518707692623138]} +{"t": 1.7413, "q": [-0.3658595383167267, -0.025245916098356247, 0.015481031499803066, 0.6033231616020203, -0.28566908836364746, 0.0197935551404953, -0.38550302386283875, 0.014087056741118431, -0.009722515940666199, 0.6069876551628113, -0.29150766134262085, -0.013070323504507542, 0.003562244353815913, -0.004536868073046207, -0.015350757166743279, -0.6051314473152161, 0.6899678111076355, 0.20357602834701538, 1.3097679615020752, 0.14844860136508942, -0.4479343891143799, 0.10238123685121536, -0.3269056975841522, -0.31423836946487427, 0.2185203582048416, 1.4027056694030762, -0.6575984358787537, -0.30248185992240906, -0.19518707692623138]} +{"t": 1.7581, "q": [-0.3658510148525238, -0.025305571034550667, 0.015547990798950195, 0.6032634973526001, -0.2856857478618622, 0.01980791985988617, -0.3855115473270416, 0.014087056741118431, -0.009642165154218674, 0.6070217490196228, -0.2915118336677551, -0.013063057325780392, 0.003589028026908636, -0.004506514873355627, -0.015331187285482883, -0.6184099912643433, 0.7002023458480835, 0.20186229050159454, 1.3077665567398071, 0.14848455786705017, -0.4511461555957794, 0.09942113608121872, -0.3269176781177521, -0.31421440839767456, 0.218472421169281, 1.4027175903320312, -0.6576343774795532, -0.3023979663848877, -0.19517509639263153]} +{"t": 1.7748, "q": [-0.3658936321735382, -0.025186261162161827, 0.015467639081180096, 0.6031186580657959, -0.2856857478618622, 0.019822372123599052, -0.3855200707912445, 0.0140785351395607, -0.009682340547442436, 0.6068087220191956, -0.29150769114494324, -0.01305584516376257, 0.003441717242822051, -0.004506514873355627, -0.015331187285482883, -0.6307058334350586, 0.710101306438446, 0.2009275257587433, 1.304626703262329, 0.14844860136508942, -0.4547654092311859, 0.09707222133874893, -0.3269416391849518, -0.3141065537929535, 0.218472421169281, 1.4026936292648315, -0.6575984358787537, -0.3022781014442444, -0.19517509639263153]} +{"t": 1.7915, "q": [-0.3658595383167267, -0.02519478276371956, 0.015561383217573166, 0.6029396653175354, -0.28567323088645935, 0.01981521025300026, -0.3855370879173279, 0.014070012606680393, -0.009615381248295307, 0.6067405343055725, -0.2915118336677551, -0.013063057325780392, 0.003441717242822051, -0.004506514873355627, -0.015331187285482883, -0.6454224586486816, 0.7197486162185669, 0.20038822293281555, 1.3032245635986328, 0.1483527272939682, -0.4575097858905792, 0.09159543365240097, -0.32686975598335266, -0.3141065537929535, 0.2184244841337204, 1.402801513671875, -0.6576223969459534, -0.30211034417152405, -0.19515112042427063]} +{"t": 1.8082, "q": [-0.365953266620636, -0.02521182782948017, 0.015494422987103462, 0.6029226183891296, -0.2856815755367279, 0.019815167412161827, -0.3855711817741394, 0.014070012606680393, -0.009682340547442436, 0.6066212058067322, -0.29150766134262085, -0.013070323504507542, 0.0034283252898603678, -0.00449892645701766, -0.015326294116675854, -0.6582695245742798, 0.7281734943389893, 0.19999274611473083, 1.3016306161880493, 0.14838868379592896, -0.45942726731300354, 0.08723317831754684, -0.3269056975841522, -0.31407058238983154, 0.2184484601020813, 1.402801513671875, -0.6576343774795532, -0.3019185960292816, -0.19516310095787048]} +{"t": 1.825, "q": [-0.36591067910194397, -0.025220349431037903, 0.0155345993116498, 0.6026754975318909, -0.2856857478618622, 0.019822372123599052, -0.3855370879173279, 0.014061490073800087, -0.009628772735595703, 0.6064167022705078, -0.2915118336677551, -0.013063057325780392, 0.0034283252898603678, -0.004483749624341726, -0.015316509641706944, -0.671404242515564, 0.7370777726173401, 0.1995013952255249, 1.2995574474334717, 0.1483047902584076, -0.4604818820953369, 0.08312258869409561, -0.32704949378967285, -0.3140106797218323, 0.218472421169281, 1.4026936292648315, -0.6576343774795532, -0.30183470249176025, -0.19513913989067078]} +{"t": 1.8417, "q": [-0.3658936321735382, -0.025220349431037903, 0.015507815405726433, 0.6025732159614563, -0.2856898903846741, 0.019829576835036278, -0.38554561138153076, 0.01401888020336628, -0.009601988829672337, 0.6062718033790588, -0.2915160059928894, -0.01305580884218216, 0.0034015413839370012, -0.0044838241301476955, -0.015326296910643578, -0.6834483742713928, 0.7447596788406372, 0.199249729514122, 1.297759771347046, 0.14829280972480774, -0.46094924211502075, 0.08052200824022293, -0.3271094262599945, -0.31402266025543213, 0.2184484601020813, 1.4027175903320312, -0.6576104164123535, -0.3017268478870392, -0.19513913989067078]} +{"t": 1.8584, "q": [-0.36587658524513245, -0.025237392634153366, 0.01562834158539772, 0.6023431420326233, -0.28567737340927124, 0.019836867228150368, -0.3855370879173279, 0.014027401804924011, -0.009575205855071545, 0.6061609983444214, -0.29150766134262085, -0.013070323504507542, 0.0033881496638059616, -0.0044760871678590775, -0.01530182920396328, -0.6969306468963623, 0.753064751625061, 0.19872242212295532, 1.2972804307937622, 0.14818494021892548, -0.4613806903362274, 0.07692674547433853, -0.3271094262599945, -0.314034640789032, 0.2184244841337204, 1.4027175903320312, -0.6575984358787537, -0.3016189932823181, -0.19513913989067078]} +{"t": 1.8752, "q": [-0.36597031354904175, -0.02521182782948017, 0.015561383217573166, 0.6021811962127686, -0.2856856882572174, 0.01985127478837967, -0.3855711817741394, 0.0140785351395607, -0.009628772735595703, 0.6058797836303711, -0.2914868891239166, -0.013092102482914925, 0.003106919815763831, -0.004460910800844431, -0.015292043797671795, -0.7081718444824219, 0.7607346773147583, 0.1985546499490738, 1.2962257862091064, 0.14817295968532562, -0.46180012822151184, 0.07400259375572205, -0.32712140679359436, -0.3139627277851105, 0.2184244841337204, 1.4027175903320312, -0.6576104164123535, -0.30148714780807495, -0.19511516392230988]} +{"t": 1.8919, "q": [-0.36586806178092957, -0.025245916098356247, 0.015708694234490395, 0.6018744111061096, -0.28567320108413696, 0.019829662516713142, -0.3855711817741394, 0.014112623408436775, -0.009575205855071545, 0.605658233165741, -0.2914702892303467, -0.013092173263430595, 0.002959609031677246, -0.004483378957957029, -0.01526757050305605, -0.720935046672821, 0.7687161564826965, 0.19814717769622803, 1.2956745624542236, 0.14811304211616516, -0.46196791529655457, 0.06681205332279205, -0.32704949378967285, -0.3139866888523102, 0.21836456656455994, 1.4026457071304321, -0.6575984358787537, -0.30139127373695374, -0.19510318338871002]} +{"t": 1.9087, "q": [-0.365953266620636, -0.025228871032595634, 0.01562834158539772, 0.6018403172492981, -0.28567737340927124, 0.019836867228150368, -0.38558822870254517, 0.014146711677312851, -0.00965555664151907, 0.6055644750595093, -0.2914619445800781, -0.013135608285665512, 0.0028122980147600174, -0.004490151070058346, -0.015164797194302082, -0.7335783839225769, 0.7761104106903076, 0.19783559441566467, 1.2950992584228516, 0.14817295968532562, -0.4620398283004761, 0.06291718035936356, -0.3270135521888733, -0.31402266025543213, 0.21835258603096008, 1.4026936292648315, -0.6575984358787537, -0.3009718358516693, -0.19509120285511017]} +{"t": 1.9256, "q": [-0.3659362494945526, -0.02526295930147171, 0.01562834158539772, 0.6017124652862549, -0.28567320108413696, 0.019829662516713142, -0.3856052756309509, 0.014155233278870583, -0.009695732034742832, 0.6055048108100891, -0.2914619445800781, -0.013121147640049458, 0.0029328251257538795, -0.004781865980476141, -0.014797702431678772, -0.7476478815078735, 0.7841518521308899, 0.19646938145160675, 1.2947996854782104, 0.14814899861812592, -0.4621357023715973, 0.05766809359192848, -0.3270854651927948, -0.3139747083187103, 0.21838854253292084, 1.4026457071304321, -0.6575744152069092, -0.30070817470550537, -0.19509120285511017]} +{"t": 1.9423, "q": [-0.3660299777984619, -0.025237392634153366, 0.015547990798950195, 0.6015846729278564, -0.2856690585613251, 0.019822457805275917, -0.38558822870254517, 0.014189322479069233, -0.009816259145736694, 0.6052235960960388, -0.2914494574069977, -0.01315735187381506, 0.0029997846577316523, -0.004946062341332436, -0.01454318966716528, -0.7602792382240295, 0.7909588813781738, 0.19569040834903717, 1.2937090396881104, 0.14818494021892548, -0.46226751804351807, 0.0550675131380558, -0.3271094262599945, -0.3139507472515106, 0.21835258603096008, 1.4026457071304321, -0.657586395740509, -0.30051642656326294, -0.19507922232151031]} +{"t": 1.9591, "q": [-0.3659447431564331, -0.025365225970745087, 0.015601558610796928, 0.6012778282165527, -0.28567323088645935, 0.01981521025300026, -0.38558822870254517, 0.014214888215065002, -0.009856435470283031, 0.6052150726318359, -0.29142865538597107, -0.013179149478673935, 0.003106919815763831, -0.005112207029014826, -0.014299980364739895, -0.7742528319358826, 0.7989283800125122, 0.19391675293445587, 1.2925466299057007, 0.1484006643295288, -0.4624113440513611, 0.051232561469078064, -0.3271573781967163, -0.3139627277851105, 0.21834060549736023, 1.402573823928833, -0.6575984358787537, -0.3002048432826996, -0.19504326581954956]} +{"t": 1.9758, "q": [-0.3659958839416504, -0.025365225970745087, 0.015547990798950195, 0.6011756062507629, -0.2856607139110565, 0.019808048382401466, -0.38558822870254517, 0.014223410747945309, -0.010030529461801052, 0.60513836145401, -0.2914203405380249, -0.013193645514547825, 0.00287925754673779, -0.005187931936234236, -0.014144495129585266, -0.7866085767745972, 0.807317316532135, 0.1925864964723587, 1.2899580001831055, 0.14843662083148956, -0.46267497539520264, 0.04567188397049904, -0.3273850679397583, -0.31393876671791077, 0.21836456656455994, 1.4025498628616333, -0.6576104164123535, -0.30001309514045715, -0.19504326581954956]} +{"t": 1.9925, "q": [-0.3658169209957123, -0.02538226917386055, 0.015601558610796928, 0.6009113788604736, -0.2856607139110565, 0.019808048382401466, -0.38558822870254517, 0.014223410747945309, -0.00999035406857729, 0.6051724553108215, -0.2914120554924011, -0.013179220259189606, 0.00287925754673779, -0.0052637262269854546, -0.014076615683734417, -0.799395740032196, 0.8151071071624756, 0.1911603808403015, 1.2885079383850098, 0.1486043930053711, -0.463130384683609, 0.040590569376945496, -0.3273850679397583, -0.3139627277851105, 0.21835258603096008, 1.4025378227233887, -0.6576104164123535, -0.2998333275318146, -0.19506722688674927]} +{"t": 2.0093, "q": [-0.36586806178092957, -0.02538226917386055, 0.015521206893026829, 0.6008176803588867, -0.2856648862361908, 0.01981525309383869, -0.38558822870254517, 0.014223410747945309, -0.010110881179571152, 0.6051298379898071, -0.2913871109485626, -0.013222726061940193, 0.0027989062946289778, -0.005309181287884712, -0.014008632861077785, -0.8119312524795532, 0.822848916053772, 0.1907649040222168, 1.2870339155197144, 0.14861637353897095, -0.46319031715393066, 0.0369953028857708, -0.3273850679397583, -0.3139866888523102, 0.21834060549736023, 1.4025498628616333, -0.6575984358787537, -0.2994977831840515, -0.19505524635314941]} +{"t": 2.026, "q": [-0.36568909883499146, -0.025365225970745087, 0.015614950098097324, 0.6004853248596191, -0.2856649160385132, 0.019800802692770958, -0.3855797052383423, 0.014240454882383347, -0.010017137974500656, 0.60513836145401, -0.2913496792316437, -0.013259019702672958, 0.0028926494996994734, -0.005286416504532099, -0.013993955217301846, -0.8243948817253113, 0.8300634026527405, 0.19062109291553497, 1.2852003574371338, 0.14841264486312866, -0.4634779393672943, 0.03389138728380203, -0.32737308740615845, -0.3139747083187103, 0.21834060549736023, 1.402573823928833, -0.6575984358787537, -0.299282044172287, -0.19505524635314941]} +{"t": 2.0428, "q": [-0.365723192691803, -0.025493057444691658, 0.015574774704873562, 0.6004427075386047, -0.2856607139110565, 0.019808048382401466, -0.3855797052383423, 0.014189322479069233, -0.010097489692270756, 0.6051298379898071, -0.2913496792316437, -0.013259019702672958, 0.002865865593776107, -0.005210541188716888, -0.013954763300716877, -0.836163341999054, 0.8367865681648254, 0.1905371993780136, 1.2829831838607788, 0.14838868379592896, -0.46354982256889343, 0.030619695782661438, -0.327409029006958, -0.3139627277851105, 0.21836456656455994, 1.402573823928833, -0.6576104164123535, -0.299054354429245, -0.19504326581954956]} +{"t": 2.0597, "q": [-0.36556127667427063, -0.025544188916683197, 0.01565512642264366, 0.6002381443977356, -0.2856648862361908, 0.01981525309383869, -0.38558822870254517, 0.01420636661350727, -0.010043921880424023, 0.6052747368812561, -0.29135799407958984, -0.013244523666799068, 0.0030131766106933355, -0.005134635139256716, -0.013876636512577534, -0.8474884629249573, 0.8436535000801086, 0.18983012437820435, 1.2817128896713257, 0.14848455786705017, -0.4637775421142578, 0.02600576914846897, -0.32744500041007996, -0.3139507472515106, 0.21836456656455994, 1.4024899005889893, -0.6576223969459534, -0.2990303933620453, -0.19506722688674927]} +{"t": 2.0764, "q": [-0.365578293800354, -0.02562941052019596, 0.015561383217573166, 0.6001614332199097, -0.2856649160385132, 0.019800802692770958, -0.3855711817741394, 0.014197844080626965, -0.010110881179571152, 0.6051895022392273, -0.29135385155677795, -0.013266249559819698, 0.0030801359098404646, -0.005089097656309605, -0.013837547972798347, -0.8586577773094177, 0.8495137691497803, 0.18941068649291992, 1.2798314094543457, 0.14844860136508942, -0.4640052318572998, 0.02304566465318203, -0.3274329900741577, -0.31393876671791077, 0.21832861006259918, 1.4025617837905884, -0.6576104164123535, -0.2988506257534027, -0.19505524635314941]} +{"t": 2.0931, "q": [-0.3654845654964447, -0.02562941052019596, 0.015614950098097324, 0.5999313592910767, -0.2856607139110565, 0.019808048382401466, -0.3855711817741394, 0.014163755811750889, -0.010110881179571152, 0.6052406430244446, -0.2913621664047241, -0.013237275183200836, 0.0031604873947799206, -0.005066332872956991, -0.013822870329022408, -0.8693956136703491, 0.8550505042076111, 0.18821226060390472, 1.2792202234268188, 0.14850851893424988, -0.46429285407066345, 0.020013656467199326, -0.327552855014801, -0.31393876671791077, 0.2183765470981598, 1.402513861656189, -0.6576223969459534, -0.298826664686203, -0.19506722688674927]} +{"t": 2.1099, "q": [-0.36542490124702454, -0.025654977187514305, 0.015574774704873562, 0.599837601184845, -0.2856607139110565, 0.019808048382401466, -0.3855711817741394, 0.014180799946188927, -0.010110881179571152, 0.6052491664886475, -0.29135385155677795, -0.013251771219074726, 0.003133703488856554, -0.005043575540184975, -0.013817925937473774, -0.8785395622253418, 0.8602995872497559, 0.18676216900348663, 1.2785011529922485, 0.14852049946784973, -0.4644007086753845, 0.01800030656158924, -0.32764872908592224, -0.31391480565071106, 0.21838854253292084, 1.402513861656189, -0.6575984358787537, -0.29876673221588135, -0.19505524635314941]} +{"t": 2.1266, "q": [-0.3652629852294922, -0.025663498789072037, 0.01565512642264366, 0.5996842384338379, -0.2856648862361908, 0.01981525309383869, -0.3855626583099365, 0.014163755811750889, -0.01007070578634739, 0.6052747368812561, -0.29135799407958984, -0.01325900200754404, 0.0032274469267576933, -0.005005633924156427, -0.013793463818728924, -0.8870244026184082, 0.8645899295806885, 0.18603113293647766, 1.2782974243164062, 0.14841264486312866, -0.4642808735370636, 0.01649029366672039, -0.32762473821640015, -0.31393876671791077, 0.2183765470981598, 1.4025259017944336, -0.6575984358787537, -0.29868283867836, -0.19505524635314941]} +{"t": 2.1433, "q": [-0.365348219871521, -0.025714632123708725, 0.015547990798950195, 0.5995990037918091, -0.2856607139110565, 0.019808048382401466, -0.3855626583099365, 0.014155233278870583, -0.010137665085494518, 0.6052321195602417, -0.2913621664047241, -0.013222815468907356, 0.0032274469267576933, -0.004982861690223217, -0.013769051991403103, -0.89435875415802, 0.8673942685127258, 0.18521620333194733, 1.2778899669647217, 0.14834074676036835, -0.46429285407066345, 0.01575925573706627, -0.3276127576828003, -0.3139507472515106, 0.21838854253292084, 1.4025617837905884, -0.6576583385467529, -0.2984311878681183, -0.19505524635314941]} +{"t": 2.1601, "q": [-0.36523741483688354, -0.025723153725266457, 0.01565512642264366, 0.599462628364563, -0.28565654158592224, 0.019800826907157898, -0.38554561138153076, 0.014129667542874813, -0.010084097273647785, 0.6052491664886475, -0.2913621664047241, -0.013222815468907356, 0.00321405497379601, -0.004960176534950733, -0.01377385575324297, -0.8999074697494507, 0.8698150515556335, 0.18413762748241425, 1.2776023149490356, 0.1483047902584076, -0.4640771448612213, 0.014668691903352737, -0.327780544757843, -0.31381893157958984, 0.21838854253292084, 1.4023940563201904, -0.6576343774795532, -0.2984311878681183, -0.19506722688674927]} +{"t": 2.1768, "q": [-0.3652459383010864, -0.025697587057948112, 0.015614950098097324, 0.5994881987571716, -0.2856607139110565, 0.019808048382401466, -0.3855711817741394, 0.014138189144432545, -0.010084097273647785, 0.6052662134170532, -0.2913621664047241, -0.013222815468907356, 0.00321405497379601, -0.004967757035046816, -0.013769013807177544, -0.9047251343727112, 0.8714449405670166, 0.1831549108028412, 1.2776142358779907, 0.14819693565368652, -0.4636097550392151, 0.013062805868685246, -0.32787641882896423, -0.3137350380420685, 0.2184244841337204, 1.4023820161819458, -0.6576703190803528, -0.29839521646499634, -0.19509120285511017]} +{"t": 2.1935, "q": [-0.36532264947891235, -0.025672022253274918, 0.015521206893026829, 0.5994881987571716, -0.28565236926078796, 0.019793622195720673, -0.3855797052383423, 0.014146711677312851, -0.010124272666871548, 0.6052406430244446, -0.2913871109485626, -0.013208247721195221, 0.0032676225528120995, -0.004967852495610714, -0.013759301975369453, -0.9096626043319702, 0.8725354671478271, 0.18181267380714417, 1.2779737710952759, 0.1480051875114441, -0.462387353181839, 0.011157313361763954, -0.3278644382953644, -0.31372305750846863, 0.2184484601020813, 1.4024419784545898, -0.6576942801475525, -0.2982993423938751, -0.19509120285511017]} +{"t": 2.2102, "q": [-0.3653567433357239, -0.025646455585956573, 0.015494422987103462, 0.5995137691497803, -0.2856607437133789, 0.019779127091169357, -0.3855711817741394, 0.014146711677312851, -0.010164448991417885, 0.6052150726318359, -0.2913746237754822, -0.01323000993579626, 0.0031872710678726435, -0.004975338000804186, -0.013764172792434692, -0.912742555141449, 0.8732665181159973, 0.18094982206821442, 1.2779737710952759, 0.14792129397392273, -0.46194395422935486, 0.009647301398217678, -0.3278883993625641, -0.3137350380420685, 0.2184484601020813, 1.4024180173873901, -0.6576822996139526, -0.29819148778915405, -0.19510318338871002]} +{"t": 2.227, "q": [-0.36528855562210083, -0.02562941052019596, 0.015547990798950195, 0.5995137691497803, -0.2856649160385132, 0.019786331802606583, -0.3855797052383423, 0.014146711677312851, -0.01007070578634739, 0.6052576899528503, -0.29137879610061646, -0.013208284042775631, 0.0032274469267576933, -0.00499802315607667, -0.013759369030594826, -0.9157386422157288, 0.8737578988075256, 0.17922408878803253, 1.2787048816680908, 0.14829280972480774, -0.46134474873542786, 0.007753793615847826, -0.32787641882896423, -0.3136870861053467, 0.21853235363960266, 1.4023820161819458, -0.6577062606811523, -0.29809561371803284, -0.19515112042427063]} +{"t": 2.2437, "q": [-0.3654419481754303, -0.02562088891863823, 0.0154542475938797, 0.5995904803276062, -0.2856815755367279, 0.019815167412161827, -0.38558822870254517, 0.014155233278870583, -0.010110881179571152, 0.6051809787750244, -0.2913912832736969, -0.013172061182558537, 0.0032274469267576933, -0.00500560412183404, -0.013754528015851974, -0.9183511734008789, 0.8738178014755249, 0.17786987125873566, 1.2790284156799316, 0.14831677079200745, -0.46087735891342163, 0.004841627087444067, -0.3278883993625641, -0.3136511445045471, 0.21859227120876312, 1.4024299383163452, -0.6577182412147522, -0.29793983697891235, -0.19513913989067078]} +{"t": 2.2604, "q": [-0.36545899510383606, -0.025612367317080498, 0.015427463687956333, 0.5995052456855774, -0.28566908836364746, 0.0197935551404953, -0.3856223225593567, 0.014146711677312851, -0.010097489692270756, 0.6051554083824158, -0.29139959812164307, -0.013186504133045673, 0.0032810145057737827, -0.005051088985055685, -0.013725480064749718, -0.9211435317993164, 0.8738417625427246, 0.1762879490852356, 1.2794837951660156, 0.1483766883611679, -0.4604099690914154, 0.0023129554465413094, -0.3278883993625641, -0.3134833574295044, 0.21864020824432373, 1.4024419784545898, -0.6577781438827515, -0.2978799045085907, -0.19515112042427063]} +{"t": 2.2772, "q": [-0.36560386419296265, -0.025595322251319885, 0.01538728829473257, 0.5996330976486206, -0.28566908836364746, 0.0197935551404953, -0.38568198680877686, 0.014138189144432545, -0.010124272666871548, 0.6051724553108215, -0.29140791296958923, -0.013172008097171783, 0.0033077981788665056, -0.005240665748715401, -0.013594727963209152, -0.9241155982017517, 0.873805820941925, 0.17477793991565704, 1.2799991369247437, 0.14853249490261078, -0.4598826467990875, 0.00032357408781535923, -0.3278883993625641, -0.3132796287536621, 0.2187241017818451, 1.4024180173873901, -0.657802164554596, -0.297712117433548, -0.19516310095787048]} +{"t": 2.2939, "q": [-0.36564648151397705, -0.025595322251319885, 0.015306936576962471, 0.5995990037918091, -0.2856815755367279, 0.019815167412161827, -0.38569051027297974, 0.014138189144432545, -0.010151056572794914, 0.6051213145256042, -0.29140791296958923, -0.013172008097171783, 0.0033077981788665056, -0.005414966493844986, -0.013493098318576813, -0.9278905987739563, 0.8738178014755249, 0.17302824556827545, 1.2804425954818726, 0.1486283540725708, -0.4594152867794037, -0.0011984225129708648, -0.32787641882896423, -0.31299200654029846, 0.2187241017818451, 1.4024180173873901, -0.6579099893569946, -0.29761624336242676, -0.195235013961792]} +{"t": 2.3106, "q": [-0.3658083975315094, -0.025527145713567734, 0.015239977277815342, 0.5996927618980408, -0.28567323088645935, 0.01981521025300026, -0.3857586681842804, 0.014138189144432545, -0.010231408290565014, 0.60513836145401, -0.29140791296958923, -0.013172008097171783, 0.003347973804920912, -0.005680294707417488, -0.013323653489351273, -0.9321690201759338, 0.8738297820091248, 0.17182981967926025, 1.280490517616272, 0.14882010221481323, -0.4589359164237976, -0.0027683561202138662, -0.3278644382953644, -0.31266844272613525, 0.2188199758529663, 1.4024180173873901, -0.6580777764320374, -0.29749640822410583, -0.19522303342819214]} +{"t": 2.3273, "q": [-0.3658595383167267, -0.025518624112010002, 0.015213193371891975, 0.5996671915054321, -0.28567740321159363, 0.019807962700724602, -0.3858012855052948, 0.014138189144432545, -0.01024479977786541, 0.6049764752388, -0.2913954555988312, -0.013164813630282879, 0.003347973804920912, -0.0057106176391243935, -0.013304288499057293, -0.9362915754318237, 0.8739136457443237, 0.17090703547000885, 1.2805744409561157, 0.14886803925037384, -0.4588400423526764, -0.0037270940374583006, -0.32787641882896423, -0.3122609853744507, 0.2187959998846054, 1.4023940563201904, -0.6583054661750793, -0.2974005341529846, -0.19524699449539185]} +{"t": 2.344, "q": [-0.36587658524513245, -0.025612367317080498, 0.015159625560045242, 0.599675714969635, -0.28567740321159363, 0.019807962700724602, -0.38577571511268616, 0.014121145009994507, -0.01025819219648838, 0.6049594283103943, -0.29140791296958923, -0.013172008097171783, 0.0033077981788665056, -0.00573337497189641, -0.013309231959283352, -0.9395632743835449, 0.8741653561592102, 0.17011608183383942, 1.280502438545227, 0.14884407818317413, -0.45850446820259094, -0.004877579864114523, -0.3278883993625641, -0.31194937229156494, 0.21893981099128723, 1.4024059772491455, -0.6588327884674072, -0.29729267954826355, -0.1952829509973526]} +{"t": 2.3608, "q": [-0.36579135060310364, -0.025586800649762154, 0.015239977277815342, 0.599607527256012, -0.2856815755367279, 0.019815167412161827, -0.38577571511268616, 0.014070012606680393, -0.010110881179571152, 0.6049423813819885, -0.2913954257965088, -0.013179273344576359, 0.0033077981788665056, -0.005725794471800327, -0.013314073905348778, -0.9433982372283936, 0.8746446967124939, 0.16956479847431183, 1.2805984020233154, 0.14876018464565277, -0.4580370783805847, -0.006471481639891863, -0.3279603123664856, -0.31149399280548096, 0.2190237045288086, 1.4023940563201904, -0.6590484976768494, -0.2972806990146637, -0.19537882506847382]} +{"t": 2.3776, "q": [-0.3658851087093353, -0.025595322251319885, 0.015253368765115738, 0.5996245741844177, -0.2856857478618622, 0.019822372123599052, -0.3858524262905121, 0.014070012606680393, -0.010137665085494518, 0.6049423813819885, -0.29139959812164307, -0.013157565146684647, 0.0033747577108442783, -0.005741093773394823, -0.013265490531921387, -0.9479162693023682, 0.8750401735305786, 0.169193297624588, 1.2806822061538696, 0.14876018464565277, -0.45730605721473694, -0.007909588515758514, -0.3279363512992859, -0.3110385835170746, 0.21910758316516876, 1.4023940563201904, -0.6591203808784485, -0.29714885354042053, -0.19539080560207367]} +{"t": 2.3944, "q": [-0.36600440740585327, -0.025595322251319885, 0.015253368765115738, 0.5995990037918091, -0.2856815755367279, 0.019815167412161827, -0.3859291076660156, 0.014070012606680393, -0.01017784047871828, 0.6048827171325684, -0.29139959812164307, -0.013200964778661728, 0.003321190131828189, -0.005832350812852383, -0.013178258202970028, -0.9531893134117126, 0.8755435347557068, 0.16896559298038483, 1.2808500528335571, 0.14877216517925262, -0.456814706325531, -0.00920388475060463, -0.32794833183288574, -0.31061914563179016, 0.21928735077381134, 1.4024180173873901, -0.6592162847518921, -0.29708895087242126, -0.19537882506847382]} +{"t": 2.4111, "q": [-0.3660725951194763, -0.025595322251319885, 0.015213193371891975, 0.5996927618980408, -0.2856815755367279, 0.019815167412161827, -0.3859461545944214, 0.0140785351395607, -0.01025819219648838, 0.6049253344535828, -0.2913912832736969, -0.013186521828174591, 0.003321190131828189, -0.006017347797751427, -0.012751270085573196, -0.9603918194770813, 0.875831127166748, 0.1687738448381424, 1.281113624572754, 0.14876018464565277, -0.4552207887172699, -0.01043826062232256, -0.3279363512992859, -0.3103674650192261, 0.2192993313074112, 1.4024180173873901, -0.6592162847518921, -0.2969810962677002, -0.19540278613567352]} +{"t": 2.4278, "q": [-0.3661833703517914, -0.025578279048204422, 0.01519980188459158, 0.5996671915054321, -0.28567740321159363, 0.019807962700724602, -0.38597172498703003, 0.014087056741118431, -0.010298367589712143, 0.6048486232757568, -0.29137882590293884, -0.013193804770708084, 0.003321190131828189, -0.006185176316648722, -0.012537925504148006, -0.9674745202064514, 0.8764902949333191, 0.16853415966033936, 1.2811256647109985, 0.14878416061401367, -0.4543938934803009, -0.011073424480855465, -0.3279842734336853, -0.31001991033554077, 0.2193233072757721, 1.4023940563201904, -0.6592881679534912, -0.29696911573410034, -0.19546271860599518]} +{"t": 2.4445, "q": [-0.3661833703517914, -0.025723153725266457, 0.015186409465968609, 0.5996586680412292, -0.2856690585613251, 0.019822457805275917, -0.38597172498703003, 0.014070012606680393, -0.010405503213405609, 0.6048571467399597, -0.2913621664047241, -0.013222815468907356, 0.003361365757882595, -0.00625340361148119, -0.012494353577494621, -0.9741617441177368, 0.8779283761978149, 0.1678270846605301, 1.2811377048492432, 0.14879614114761353, -0.4532434046268463, -0.011876367032527924, -0.32822397351264954, -0.3095645308494568, 0.2193472683429718, 1.4024059772491455, -0.6593001484870911, -0.2968732416629791, -0.19548667967319489]} +{"t": 2.4613, "q": [-0.36609816551208496, -0.025706110522150993, 0.015253368765115738, 0.599607527256012, -0.2856815755367279, 0.019815167412161827, -0.38597172498703003, 0.014070012606680393, -0.010445678606629372, 0.6049168109893799, -0.29137879610061646, -0.013208284042775631, 0.0031470954418182373, -0.006238242145627737, -0.012504036538302898, -0.9794108271598816, 0.8800735473632812, 0.16728779673576355, 1.281113624572754, 0.14877216517925262, -0.4526202082633972, -0.012571452185511589, -0.3284636437892914, -0.30892935395240784, 0.2193472683429718, 1.4023820161819458, -0.6592761874198914, -0.2968013286590576, -0.1955585926771164]} +{"t": 2.478, "q": [-0.3659873604774475, -0.025731675326824188, 0.015400679782032967, 0.5995563864707947, -0.2856815755367279, 0.019815167412161827, -0.38595467805862427, 0.014052968472242355, -0.010432287119328976, 0.6049423813819885, -0.29137465357780457, -0.013215531595051289, 0.0031203117687255144, -0.006238337606191635, -0.012494323775172234, -0.9855107665061951, 0.8819191455841064, 0.1658736616373062, 1.2811856269836426, 0.14891597628593445, -0.45181727409362793, -0.013853764161467552, -0.32847562432289124, -0.3084619641304016, 0.2193472683429718, 1.4023940563201904, -0.6595158576965332, -0.29676535725593567, -0.19564247131347656]} +{"t": 2.4947, "q": [-0.3660470247268677, -0.025757241994142532, 0.01538728829473257, 0.5995478630065918, -0.2856815755367279, 0.019815167412161827, -0.3859802484512329, 0.014061490073800087, -0.010445678606629372, 0.6049168109893799, -0.2913704812526703, -0.013222779147326946, 0.003093527862802148, -0.006148516200482845, -0.012435871176421642, -0.9926413893699646, 0.8834890723228455, 0.16413594782352448, 1.2811017036437988, 0.14893995225429535, -0.45133790373802185, -0.01613076776266098, -0.3284396827220917, -0.30789870023727417, 0.2194191813468933, 1.4024419784545898, -0.6596357226371765, -0.29657360911369324, -0.19569040834903717]} +{"t": 2.5114, "q": [-0.366140753030777, -0.025757241994142532, 0.015333720482885838, 0.5995990037918091, -0.2856857478618622, 0.01980791985988617, -0.3859887719154358, 0.014070012606680393, -0.0105126379057765, 0.6049679517745972, -0.29137879610061646, -0.013208284042775631, 0.0032006630208343267, -0.006096406374126673, -0.012372635304927826, -0.9994484186172485, 0.8841721415519714, 0.16239823400974274, 1.2812694311141968, 0.1491556614637375, -0.4501514732837677, -0.018791265785694122, -0.3284037113189697, -0.3073714077472687, 0.21946711838245392, 1.402453899383545, -0.6598634123802185, -0.29646575450897217, -0.19573834538459778]} +{"t": 2.5282, "q": [-0.3660896420478821, -0.025893596932291985, 0.015333720482885838, 0.5995222926139832, -0.28567740321159363, 0.019807962700724602, -0.3859802484512329, 0.0140785351395607, -0.010820651426911354, 0.6049594283103943, -0.2913621664047241, -0.013222815468907356, 0.00321405497379601, -0.006089287810027599, -0.012338603846728802, -1.0051409006118774, 0.8848912119865417, 0.16092418134212494, 1.2811017036437988, 0.14914368093013763, -0.4498758316040039, -0.02015746757388115, -0.3284876048564911, -0.3065205216407776, 0.21950307488441467, 1.4024180173873901, -0.6598873734474182, -0.29639387130737305, -0.19577430188655853]} +{"t": 2.5449, "q": [-0.3659447431564331, -0.026021428406238556, 0.015400679782032967, 0.5996160507202148, -0.28567320108413696, 0.019829662516713142, -0.38592058420181274, 0.014061490073800087, -0.011048314161598682, 0.6051213145256042, -0.29137879610061646, -0.013222762383520603, 0.0032006630208343267, -0.006058980245143175, -0.012348279356956482, -1.0107375383377075, 0.8853945732116699, 0.1597377359867096, 1.2811496257781982, 0.14914368093013763, -0.44866541028022766, -0.021559620276093483, -0.3287033438682556, -0.30556178092956543, 0.2196468859910965, 1.4023820161819458, -0.6600192189216614, -0.29632195830345154, -0.19602596759796143]} +{"t": 2.5617, "q": [-0.3658169209957123, -0.026012906804680824, 0.015494422987103462, 0.5995819568634033, -0.28567737340927124, 0.019836867228150368, -0.3859461545944214, 0.014027401804924011, -0.011034921742975712, 0.6052747368812561, -0.29138296842575073, -0.013215513899922371, 0.0031470954418182373, -0.006036524195224047, -0.01233366597443819, -1.0148001909255981, 0.8859218955039978, 0.15850336849689484, 1.281113624572754, 0.14913170039653778, -0.4481261372566223, -0.022374548017978668, -0.32882317900657654, -0.3046749532222748, 0.2197427600622177, 1.4023700952529907, -0.6601390838623047, -0.29629799723625183, -0.19609788060188293]} +{"t": 2.5784, "q": [-0.3658169209957123, -0.026004383340477943, 0.0155345993116498, 0.5995734333992004, -0.2856815755367279, 0.019815167412161827, -0.38596320152282715, 0.014035924337804317, -0.010967962443828583, 0.605351448059082, -0.2913912832736969, -0.013201000168919563, 0.0031470954418182373, -0.005999589338898659, -0.0122704291716218, -1.0193302631378174, 0.8863413333892822, 0.15663382411003113, 1.2812095880508423, 0.14914368093013763, -0.446352481842041, -0.02430400811135769, -0.3287872076034546, -0.3038240671157837, 0.2198985517024994, 1.4023820161819458, -0.6605585217475891, -0.29625004529953003, -0.19621771574020386]} +{"t": 2.5953, "q": [-0.3658510148525238, -0.026004383340477943, 0.015494422987103462, 0.5996416211128235, -0.2856690585613251, 0.019822457805275917, -0.3859802484512329, 0.014061490073800087, -0.01091439463198185, 0.6053770184516907, -0.29138296842575073, -0.013215513899922371, 0.0030801359098404646, -0.005924612749367952, -0.012231438420712948, -1.0232371091842651, 0.8866768479347229, 0.1551957130432129, 1.2812575101852417, 0.14913170039653778, -0.44442301988601685, -0.026137595996260643, -0.32877522706985474, -0.3031289875507355, 0.21995846927165985, 1.4024059772491455, -0.6613015532493591, -0.2962260842323303, -0.19624169170856476]} +{"t": 2.6121, "q": [-0.3658595383167267, -0.026004383340477943, 0.0154542475938797, 0.5997694134712219, -0.2856648862361908, 0.01981525309383869, -0.38599729537963867, 0.0140785351395607, -0.010860827751457691, 0.6055303812026978, -0.29137465357780457, -0.013215531595051289, 0.003093527862802148, -0.005902157165110111, -0.012216825038194656, -1.0268802642822266, 0.8868326544761658, 0.15396134555339813, 1.2813533544540405, 0.1491796374320984, -0.44124719500541687, -0.027707528322935104, -0.32875126600265503, -0.3027215301990509, 0.22010228037834167, 1.4024180173873901, -0.6623321771621704, -0.29616615176200867, -0.19632558524608612]} +{"t": 2.6288, "q": [-0.3658851087093353, -0.026021428406238556, 0.0154542475938797, 0.599837601184845, -0.2856690585613251, 0.019822457805275917, -0.38599729537963867, 0.014112623408436775, -0.01084743533283472, 0.6055218577384949, -0.29138296842575073, -0.013215513899922371, 0.0029997846577316523, -0.005909518804401159, -0.012231417000293732, -1.0296486616134644, 0.8870963454246521, 0.15327824652194977, 1.2812933921813965, 0.14916765689849854, -0.4399888515472412, -0.028318723663687706, -0.3287632465362549, -0.30248185992240906, 0.2202221304178238, 1.4024059772491455, -0.6631231307983398, -0.29611822962760925, -0.19637350738048553]} +{"t": 2.6456, "q": [-0.3657998740673065, -0.026004383340477943, 0.015507815405726433, 0.5998290777206421, -0.2856815755367279, 0.019815167412161827, -0.3859802484512329, 0.014129667542874813, -0.010740300640463829, 0.605658233165741, -0.29138296842575073, -0.013201017864048481, 0.002986392704769969, -0.005901908967643976, -0.012236266396939754, -1.032500982284546, 0.8876715898513794, 0.15188807249069214, 1.2814133167266846, 0.14956313371658325, -0.4387664496898651, -0.02900182455778122, -0.3287632465362549, -0.3024458885192871, 0.22021013498306274, 1.4024059772491455, -0.6635545492172241, -0.29611822962760925, -0.19651731848716736]} +{"t": 2.6625, "q": [-0.3658595383167267, -0.026004383340477943, 0.015507815405726433, 0.5998887419700623, -0.2856857478618622, 0.01980791985988617, -0.38604843616485596, 0.014121145009994507, -0.010740300640463829, 0.6057178974151611, -0.29138296842575073, -0.013201017864048481, 0.002959609031677246, -0.005917127709835768, -0.012226567603647709, -1.035413146018982, 0.8882947564125061, 0.1508214771747589, 1.281628966331482, 0.14986273646354675, -0.43805938959121704, -0.02973286248743534, -0.32875126600265503, -0.3024698495864868, 0.22018617391586304, 1.4023940563201904, -0.6637582778930664, -0.2960343360900879, -0.19666112959384918]} +{"t": 2.6792, "q": [-0.36605554819107056, -0.025995861738920212, 0.01538728829473257, 0.6000336408615112, -0.28567320108413696, 0.019829662516713142, -0.38614216446876526, 0.014146711677312851, -0.010646557435393333, 0.6057093739509583, -0.2913912832736969, -0.013201000168919563, 0.002986392704769969, -0.005947565659880638, -0.012207168154418468, -1.0396314859390259, 0.8889538645744324, 0.149599090218544, 1.2822880744934082, 0.15054583549499512, -0.43668121099472046, -0.030523821711540222, -0.32871532440185547, -0.3024458885192871, 0.22018617391586304, 1.4024659395217896, -0.6640219688415527, -0.295878529548645, -0.19684089720249176]} +{"t": 2.6962, "q": [-0.3661833703517914, -0.02598734013736248, 0.015320328995585442, 0.6001103520393372, -0.28567740321159363, 0.019807962700724602, -0.3862018287181854, 0.014172278344631195, -0.010740300640463829, 0.6057093739509583, -0.2913871109485626, -0.013193769380450249, 0.003093527862802148, -0.006031270604580641, -0.012153821997344494, -1.044605016708374, 0.8899245858192444, 0.14816097915172577, 1.282719612121582, 0.1508214771747589, -0.43598610162734985, -0.031123032793402672, -0.3287273049354553, -0.3023979663848877, 0.22017419338226318, 1.4024299383163452, -0.664081871509552, -0.29584258794784546, -0.19691281020641327]} +{"t": 2.7132, "q": [-0.36628565192222595, -0.025953251868486404, 0.015226585790514946, 0.6003915667533875, -0.28567740321159363, 0.019807962700724602, -0.38619330525398254, 0.014197844080626965, -0.010780476033687592, 0.6057434678077698, -0.2913954257965088, -0.013193751685321331, 0.0032274469267576933, -0.006282508373260498, -0.01198405958712101, -1.0508726835250854, 0.8907874822616577, 0.14641128480434418, 1.2835464477539062, 0.15230752527713776, -0.4339008629322052, -0.03242931514978409, -0.3287273049354553, -0.3023979663848877, 0.22017419338226318, 1.4024899005889893, -0.664165735244751, -0.2957107722759247, -0.1970566213130951]} +{"t": 2.7299, "q": [-0.3663538098335266, -0.025953251868486404, 0.015146234072744846, 0.6003915667533875, -0.28566908836364746, 0.0197935551404953, -0.38619330525398254, 0.014189322479069233, -0.010820651426911354, 0.6057008504867554, -0.2913871109485626, -0.013208247721195221, 0.003321190131828189, -0.006289993412792683, -0.011988931335508823, -1.0569008588790894, 0.8922135829925537, 0.1449611932039261, 1.2835464477539062, 0.1543927788734436, -0.4330739378929138, -0.0339992456138134, -0.32875126600265503, -0.30236199498176575, 0.22017419338226318, 1.4024180173873901, -0.6642496585845947, -0.29567480087280273, -0.19726034998893738]} +{"t": 2.7467, "q": [-0.36633676290512085, -0.025970295071601868, 0.01519980188459158, 0.6004853248596191, -0.2856857478618622, 0.019822372123599052, -0.3862103521823883, 0.014155233278870583, -0.010740300640463829, 0.6058030724525452, -0.2913954257965088, -0.013208212330937386, 0.003334582084789872, -0.006350993178784847, -0.011940413154661655, -1.0654455423355103, 0.8935438394546509, 0.14264823496341705, 1.284385323524475, 0.15784423053264618, -0.4301258325576782, -0.038972701877355576, -0.3286553919315338, -0.3023500144481659, 0.22017419338226318, 1.4024659395217896, -0.6642376780509949, -0.29561489820480347, -0.19750003516674042]} +{"t": 2.7634, "q": [-0.36665210127830505, -0.025953251868486404, 0.014998923055827618, 0.6006045937538147, -0.28568994998931885, 0.019800672307610512, -0.38628703355789185, 0.014112623408436775, -0.010834043845534325, 0.605658233165741, -0.2913954257965088, -0.013193751685321331, 0.0033747577108442783, -0.006457775365561247, -0.01185307465493679, -1.075680136680603, 0.8950299024581909, 0.14070679247379303, 1.2845771312713623, 0.15962988138198853, -0.4269859492778778, -0.04315519332885742, -0.3286793529987335, -0.3023020923137665, 0.2201981544494629, 1.4024899005889893, -0.6642616391181946, -0.2953871786594391, -0.19755995273590088]} +{"t": 2.7801, "q": [-0.3668140172958374, -0.025961773470044136, 0.014905179850757122, 0.6006813049316406, -0.2856815755367279, 0.019815167412161827, -0.3863893151283264, 0.014112623408436775, -0.010887610726058483, 0.6056667566299438, -0.2913871109485626, -0.013193769380450249, 0.0038568659219890833, -0.006693691946566105, -0.011683449149131775, -1.0880837440490723, 0.8959406614303589, 0.1384177953004837, 1.2854878902435303, 0.1612357646226883, -0.42185670137405396, -0.047026101499795914, -0.3286553919315338, -0.30215826630592346, 0.22021013498306274, 1.4024419784545898, -0.6643574833869934, -0.29537519812583923, -0.19785955548286438]} +{"t": 2.7968, "q": [-0.3673594295978546, -0.025961773470044136, 0.01446324773132801, 0.601030707359314, -0.2856857478618622, 0.019822372123599052, -0.38645750284194946, 0.014052968472242355, -0.011302759870886803, 0.6056497097015381, -0.2913871109485626, -0.013193769380450249, 0.00388364982791245, -0.006853078491985798, -0.011562622152268887, -1.1004993915557861, 0.8983375430107117, 0.1350741982460022, 1.2853320837020874, 0.1634049117565155, -0.41639190912246704, -0.04975850135087967, -0.3289549946784973, -0.30173882842063904, 0.2202221304178238, 1.4024059772491455, -0.6644414067268372, -0.2953032851219177, -0.19794344902038574]} +{"t": 2.8136, "q": [-0.36733385920524597, -0.025961773470044136, 0.014382896013557911, 0.6011074185371399, -0.28569406270980835, 0.019836781546473503, -0.386534184217453, 0.014035924337804317, -0.011316152289509773, 0.6057434678077698, -0.2913871109485626, -0.013193769380450249, 0.003964001312851906, -0.006966499611735344, -0.011509646661579609, -1.1145808696746826, 0.9006624817848206, 0.13370800018310547, 1.2861829996109009, 0.16655676066875458, -0.4117899537086487, -0.052035506814718246, -0.3290868103504181, -0.3014032542705536, 0.2202940285205841, 1.4021424055099487, -0.6644414067268372, -0.2953272759914398, -0.19847075641155243]} +{"t": 2.8303, "q": [-0.36766621470451355, -0.025970295071601868, 0.014141841791570187, 0.6012182235717773, -0.28569406270980835, 0.019836781546473503, -0.38659384846687317, 0.013967746868729591, -0.01158398948609829, 0.6056156158447266, -0.2913954257965088, -0.013193751685321331, 0.004057744517922401, -0.007087748032063246, -0.011432400904595852, -1.1295491456985474, 0.9032989740371704, 0.1330488622188568, 1.2861590385437012, 0.16751550137996674, -0.4089137613773346, -0.053593456745147705, -0.32912278175354004, -0.3011755645275116, 0.2203179895877838, 1.4021663665771484, -0.6644653677940369, -0.295279324054718, -0.19859059154987335]} +{"t": 2.847, "q": [-0.3677003085613251, -0.0259788166731596, 0.014155233278870583, 0.6011926531791687, -0.2856898903846741, 0.019829576835036278, -0.38661089539527893, 0.013908091932535172, -0.011530422605574131, 0.6054792404174805, -0.29138296842575073, -0.013201017864048481, 0.0038970415480434895, -0.007095201872289181, -0.011437294073402882, -1.1448650360107422, 0.9061871767044067, 0.1326533854007721, 1.2859792709350586, 0.16793495416641235, -0.4069962799549103, -0.05559482052922249, -0.32914674282073975, -0.3010557293891907, 0.22042585909366608, 1.4020824432373047, -0.6644414067268372, -0.29529130458831787, -0.1989021897315979]} +{"t": 2.8638, "q": [-0.36767473816871643, -0.026012906804680824, 0.014275760389864445, 0.6012267470359802, -0.28571072220802307, 0.019865617156028748, -0.3866194188594818, 0.013788782991468906, -0.011503638699650764, 0.6055729985237122, -0.29138296842575073, -0.013186557218432426, 0.0038702578749507666, -0.007065013982355595, -0.011446884833276272, -1.1590423583984375, 0.9084761738777161, 0.13243767619132996, 1.2859193086624146, 0.16816264390945435, -0.4031493365764618, -0.05916611850261688, -0.3291347622871399, -0.3010437488555908, 0.22050973773002625, 1.4020824432373047, -0.6644893288612366, -0.29524338245391846, -0.19903400540351868]} +{"t": 2.8805, "q": [-0.3675042986869812, -0.026029950007796288, 0.01446324773132801, 0.601098895072937, -0.28571489453315735, 0.019872820004820824, -0.38659384846687317, 0.013686517253518105, -0.011342935264110565, 0.605658233165741, -0.2913912832736969, -0.013201000168919563, 0.003696163184940815, -0.007020291872322559, -0.011417526751756668, -1.175352931022644, 0.9108370542526245, 0.13181449472904205, 1.2859432697296143, 0.16864201426506042, -0.39848747849464417, -0.0638040155172348, -0.3291108012199402, -0.3008999228477478, 0.22055767476558685, 1.4020464420318604, -0.6645132899284363, -0.295279324054718, -0.19930964708328247]} +{"t": 2.8974, "q": [-0.36762362718582153, -0.0260469950735569, 0.014476639218628407, 0.6012522578239441, -0.28575652837753296, 0.01994488202035427, -0.3866279423236847, 0.013626862317323685, -0.011396503075957298, 0.6057093739509583, -0.29138296842575073, -0.013186557218432426, 0.0037095551379024982, -0.0069313449785113335, -0.011319927871227264, -1.1924424171447754, 0.9125747680664062, 0.13123925030231476, 1.2858953475952148, 0.16930115222930908, -0.3930586278438568, -0.0682741329073906, -0.32907482981681824, -0.3008280098438263, 0.22064156830310822, 1.4020824432373047, -0.6645492315292358, -0.2952074110507965, -0.1994534581899643]} +{"t": 2.9141, "q": [-0.36760658025741577, -0.026123693212866783, 0.014597166329622269, 0.6011415123939514, -0.2857481837272644, 0.019959377124905586, -0.3866705298423767, 0.013626862317323685, -0.011409895494580269, 0.605658233165741, -0.29138296842575073, -0.013186557218432426, 0.003589028026908636, -0.0069313449785113335, -0.011319927871227264, -1.2084293365478516, 0.9139529466629028, 0.1303284466266632, 1.2859913110733032, 0.16985242068767548, -0.39154860377311707, -0.07092264294624329, -0.3290269076824188, -0.3005523979663849, 0.22068950533866882, 1.4019745588302612, -0.6646091938018799, -0.29521939158439636, -0.19960924983024597]} +{"t": 2.9309, "q": [-0.3677003085613251, -0.026208914816379547, 0.014610557816922665, 0.6014568209648132, -0.2857648730278015, 0.01995929144322872, -0.38669610023498535, 0.013643906451761723, -0.01158398948609829, 0.6058712601661682, -0.29138296842575073, -0.013201017864048481, 0.0037899063900113106, -0.0070991795510053635, -0.011126226745545864, -1.2279037237167358, 0.9143364429473877, 0.12950153648853302, 1.2859553098678589, 0.17055949568748474, -0.38707849383354187, -0.07317567616701126, -0.3290029466152191, -0.30049246549606323, 0.220917209982872, 1.4020824432373047, -0.6647889614105225, -0.2951594889163971, -0.19983695447444916]} +{"t": 2.9476, "q": [-0.3678111135959625, -0.026191869750618935, 0.014583774842321873, 0.6015591025352478, -0.2857731580734253, 0.02000262215733528, -0.3867557644844055, 0.01369503978639841, -0.011731300503015518, 0.6060672998428345, -0.29138296842575073, -0.013201017864048481, 0.003964001312851906, -0.007289002649486065, -0.010976368561387062, -1.2496191263198853, 0.9145641922950745, 0.12720057368278503, 1.2861590385437012, 0.17130251228809357, -0.38124218583106995, -0.07647134363651276, -0.32899096608161926, -0.30021682381629944, 0.2211928516626358, 1.4020464420318604, -0.6648967862129211, -0.2952074110507965, -0.20025640726089478]} +{"t": 2.9643, "q": [-0.3680071234703064, -0.02617482654750347, 0.014423071406781673, 0.6017550826072693, -0.28578153252601624, 0.019988127052783966, -0.3867728114128113, 0.013635384850203991, -0.01193217933177948, 0.6060161590576172, -0.29137465357780457, -0.013201070949435234, 0.003816690295934677, -0.007433108985424042, -0.010874918662011623, -1.2703279256820679, 0.9148398041725159, 0.1248876079916954, 1.2856557369232178, 0.1721414178609848, -0.37328463792800903, -0.08040216565132141, -0.3290628492832184, -0.29994118213653564, 0.2214445173740387, 1.401998519897461, -0.6650645732879639, -0.2951594889163971, -0.20031632483005524]} +{"t": 2.981, "q": [-0.3677684962749481, -0.02617482654750347, 0.014664125628769398, 0.601635754108429, -0.2857857048511505, 0.01999533176422119, -0.3867557644844055, 0.013626862317323685, -0.011878611519932747, 0.6060502529144287, -0.29138296842575073, -0.013201017864048481, 0.003589028026908636, -0.007387765217572451, -0.010894164443016052, -1.290808916091919, 0.9155468940734863, 0.1224667951464653, 1.2855957746505737, 0.17374730110168457, -0.3697013556957245, -0.08499212563037872, -0.32919469475746155, -0.2994498312473297, 0.22164824604988098, 1.4018068313598633, -0.6650645732879639, -0.2951834499835968, -0.2006758451461792]} +{"t": 2.9978, "q": [-0.3677344024181366, -0.026243003085255623, 0.014811436645686626, 0.6019681692123413, -0.2858273386955261, 0.02006739377975464, -0.38678985834121704, 0.013541641645133495, -0.011798259802162647, 0.6064337491989136, -0.29139959812164307, -0.013186504133045673, 0.003803298342972994, -0.007321178447455168, -0.010811244137585163, -1.3110982179641724, 0.9155588746070862, 0.11980629712343216, 1.2855597734451294, 0.1777620166540146, -0.36499157547950745, -0.08898287266492844, -0.32912278175354004, -0.29929405450820923, 0.22200776636600494, 1.4019266366958618, -0.6650885343551636, -0.29514750838279724, -0.2009994238615036]} +{"t": 3.0145, "q": [-0.36775997281074524, -0.026362312957644463, 0.014878395944833755, 0.6017976999282837, -0.28582730889320374, 0.020096315070986748, -0.3869006335735321, 0.013550163246691227, -0.011717909015715122, 0.6064848899841309, -0.2913954555988312, -0.013150352984666824, 0.0036827712319791317, -0.007314097601920366, -0.010777188464999199, -1.3344075679779053, 0.9156187772750854, 0.11489276587963104, 1.2855957746505737, 0.1801588535308838, -0.359910249710083, -0.09256615489721298, -0.328978955745697, -0.2989345192909241, 0.22233134508132935, 1.4019147157669067, -0.6651844382286072, -0.2951834499835968, -0.2012031525373459]} +{"t": 3.0312, "q": [-0.3680582344532013, -0.026311179623007774, 0.014771261252462864, 0.60199373960495, -0.2858523428440094, 0.020110636949539185, -0.38715630769729614, 0.013499030843377113, -0.011691125109791756, 0.6064167022705078, -0.2914162278175354, -0.013143033720552921, 0.0035220684949308634, -0.007299190387129784, -0.010767403058707714, -1.3569618463516235, 0.9155948162078857, 0.11122559756040573, 1.2853920459747314, 0.18187260627746582, -0.35245606303215027, -0.09522665292024612, -0.3290388882160187, -0.2986588776111603, 0.22279873490333557, 1.4019266366958618, -0.6652563214302063, -0.29514750838279724, -0.20123910903930664]} +{"t": 3.048, "q": [-0.36793893575668335, -0.026328224688768387, 0.014945355243980885, 0.6017891764640808, -0.2858481705188751, 0.02010343410074711, -0.38719040155410767, 0.013490508310496807, -0.011664341203868389, 0.6064167022705078, -0.2914120852947235, -0.013150282204151154, 0.003468500915914774, -0.007216329220682383, -0.010781625285744667, -1.3785574436187744, 0.915882408618927, 0.10959573835134506, 1.2844812870025635, 0.1826276034116745, -0.3497835695743561, -0.09713214635848999, -0.3292066752910614, -0.2982753813266754, 0.22336198389530182, 1.4016989469528198, -0.6652922630310059, -0.2951834499835968, -0.20143085718154907]} +{"t": 3.0647, "q": [-0.36779406666755676, -0.026421967893838882, 0.015253368765115738, 0.6019511222839355, -0.2859190106391907, 0.02019704133272171, -0.38735231757164, 0.013439375907182693, -0.011610773392021656, 0.6068854331970215, -0.2914910912513733, -0.013041472993791103, 0.0034551091957837343, -0.0071421656757593155, -0.01070353388786316, -1.4015312194824219, 0.9158943891525269, 0.10676746070384979, 1.2846969366073608, 0.18543191254138947, -0.3454572856426239, -0.10011621564626694, -0.3290868103504181, -0.29821544885635376, 0.22422485053539276, 1.4017229080200195, -0.6653042435646057, -0.29517146944999695, -0.20174244046211243]} +{"t": 3.0814, "q": [-0.3678196370601654, -0.026328224688768387, 0.015400679782032967, 0.6017380356788635, -0.28592735528945923, 0.02021144889295101, -0.38752275705337524, 0.013422331772744656, -0.011450070887804031, 0.6067320108413696, -0.29149526357650757, -0.013005268760025501, 0.0032006630208343267, -0.007082162890583277, -0.01069355197250843, -1.4241573810577393, 0.9160981178283691, 0.10332798957824707, 1.2843254804611206, 0.18796059489250183, -0.34214964509010315, -0.10480204969644547, -0.32894301414489746, -0.2981315851211548, 0.22495588660240173, 1.4016749858856201, -0.6653881669044495, -0.29519543051719666, -0.201922208070755]} +{"t": 3.0981, "q": [-0.3680156171321869, -0.02640492282807827, 0.015521206893026829, 0.6018999814987183, -0.2859356701374054, 0.020225858315825462, -0.3878124952316284, 0.013447898440063, -0.01132954377681017, 0.6069791316986084, -0.29147446155548096, -0.013041526079177856, 0.003093527862802148, -0.006978183519095182, -0.010595887899398804, -1.448305606842041, 0.9161221385002136, 0.10010423511266708, 1.284145712852478, 0.18945862352848053, -0.3332213759422302, -0.10993129760026932, -0.32894301414489746, -0.29809561371803284, 0.22550716996192932, 1.4018666744232178, -0.6653761863708496, -0.2951355278491974, -0.2021499127149582]} +{"t": 3.1149, "q": [-0.36789631843566895, -0.026362312957644463, 0.015842612832784653, 0.6017124652862549, -0.28592735528945923, 0.02021144889295101, -0.38798293471336365, 0.013550163246691227, -0.01126258447766304, 0.6069279909133911, -0.29147031903266907, -0.013063252903521061, 0.0027051628567278385, -0.006880912464112043, -0.010561441071331501, -1.4705963134765625, 0.916313886642456, 0.09590975195169449, 1.2838340997695923, 0.19059711694717407, -0.328152060508728, -0.11327489465475082, -0.3289070725440979, -0.2979518175125122, 0.22602248191833496, 1.401770830154419, -0.66534024477005, -0.29517146944999695, -0.20246149599552155]} +{"t": 3.1316, "q": [-0.367964506149292, -0.02634526789188385, 0.01613723486661911, 0.6017806529998779, -0.28594401478767395, 0.020225796848535538, -0.3883153200149536, 0.013584252446889877, -0.011222408153116703, 0.6072092652320862, -0.2914869487285614, -0.013034260831773281, 0.0025712440256029367, -0.006821034010499716, -0.01054173894226551, -1.4916645288467407, 0.916481614112854, 0.09190702438354492, 1.2839899063110352, 0.19285015761852264, -0.32317858934402466, -0.1164507195353508, -0.3288351595401764, -0.2979038655757904, 0.22634606063365936, 1.401902675628662, -0.6654121279716492, -0.29514750838279724, -0.2028449922800064]} +{"t": 3.1483, "q": [-0.3678366541862488, -0.02640492282807827, 0.016431856900453568, 0.6014653444290161, -0.2859356701374054, 0.020225858315825462, -0.38835790753364563, 0.01366095058619976, -0.011088489554822445, 0.6071069836616516, -0.29145368933677673, -0.013077766634523869, 0.0022498385515064, -0.006549904588609934, -0.010550589300692081, -1.5108033418655396, 0.9167812466621399, 0.09037303924560547, 1.2829712629318237, 0.19519905745983124, -0.3224954903125763, -0.11841613054275513, -0.32884714007377625, -0.29779601097106934, 0.22669360041618347, 1.4018666744232178, -0.66534024477005, -0.2951834499835968, -0.20296484231948853]} +{"t": 3.1653, "q": [-0.3676491677761078, -0.02640492282807827, 0.016887180507183075, 0.6013886332511902, -0.285935640335083, 0.020240310579538345, -0.38851985335350037, 0.013652428984642029, -0.010767084546387196, 0.6074308156967163, -0.29147446155548096, -0.013056004419922829, 0.0021828790195286274, -0.006183252669870853, -0.010302183218300343, -1.5312484502792358, 0.9170448780059814, 0.0872930958867073, 1.2832229137420654, 0.20093950629234314, -0.31831300258636475, -0.12090884894132614, -0.32884714007377625, -0.29768815636634827, 0.22705313563346863, 1.4017828702926636, -0.6653522253036499, -0.29517146944999695, -0.2036719024181366]} +{"t": 3.1821, "q": [-0.36766621470451355, -0.026370834559202194, 0.016927355900406837, 0.6012352705001831, -0.28593987226486206, 0.020218592137098312, -0.38871586322784424, 0.013712083920836449, -0.010726908221840858, 0.6073711514472961, -0.29147446155548096, -0.013070465065538883, 0.002129311440512538, -0.005879606120288372, -0.010155940428376198, -1.5504231452941895, 0.9177160263061523, 0.08386560529470444, 1.2835105657577515, 0.2061166912317276, -0.31282421946525574, -0.1251872181892395, -0.32875126600265503, -0.29747244715690613, 0.22738869488239288, 1.401830792427063, -0.6654720306396484, -0.29512351751327515, -0.20425914227962494]} +{"t": 3.1989, "q": [-0.36784517765045166, -0.026421967893838882, 0.017061274498701096, 0.6011329889297485, -0.2859190106391907, 0.02019704133272171, -0.3890482187271118, 0.013797304593026638, -0.010780476033687592, 0.6076012849807739, -0.29147443175315857, -0.013084925711154938, 0.0021828790195286274, -0.005726652219891548, -0.010009911842644215, -1.5702451467514038, 0.9183631539344788, 0.08074971288442612, 1.2841936349868774, 0.2097838670015335, -0.3052382171154022, -0.1302565485239029, -0.3286553919315338, -0.29704099893569946, 0.22777219116687775, 1.4018666744232178, -0.6654840111732483, -0.2951594889163971, -0.20561335980892181]} +{"t": 3.2157, "q": [-0.3678366541862488, -0.026379356160759926, 0.017181802541017532, 0.601030707359314, -0.2859106659889221, 0.020182613283395767, -0.3892271816730499, 0.01401888020336628, -0.010713516734540462, 0.6076012849807739, -0.29144951701164246, -0.013099510222673416, 0.002169487066566944, -0.005497449077665806, -0.009863775223493576, -1.589144229888916, 0.9193578362464905, 0.07746603339910507, 1.284816861152649, 0.21122196316719055, -0.3024938404560089, -0.1329769641160965, -0.3286074697971344, -0.2965017259120941, 0.22804781794548035, 1.4018068313598633, -0.6655799150466919, -0.2951834499835968, -0.20713534951210022]} +{"t": 3.2326, "q": [-0.36816051602363586, -0.026362312957644463, 0.01715501770377159, 0.601243793964386, -0.2859190106391907, 0.02019704133272171, -0.3896021544933319, 0.0140785351395607, -0.010780476033687592, 0.6078910231590271, -0.2914702594280243, -0.01310663390904665, 0.002316797850653529, -0.005397943779826164, -0.009742124006152153, -1.6079354286193848, 0.9203645586967468, 0.07340338081121445, 1.2857635021209717, 0.21359485387802124, -0.29472804069519043, -0.13615278899669647, -0.32847562432289124, -0.295878529548645, 0.22819162905216217, 1.4019505977630615, -0.6655918955802917, -0.29514750838279724, -0.20914870500564575]} +{"t": 3.2494, "q": [-0.3681775629520416, -0.026370834559202194, 0.017074666917324066, 0.6010051369667053, -0.28590652346611023, 0.020175408571958542, -0.38963624835014343, 0.01420636661350727, -0.010807259939610958, 0.6077802181243896, -0.2914120554924011, -0.013179220259189606, 0.0022900141775608063, -0.005382725037634373, -0.009751823730766773, -1.6244617700576782, 0.9216468334197998, 0.07123423367738724, 1.285571813583374, 0.21583589911460876, -0.289790540933609, -0.13783057034015656, -0.3284277021884918, -0.29524338245391846, 0.2283114790916443, 1.4019626379013062, -0.6656038761138916, -0.2951594889163971, -0.20991568267345428]} +{"t": 3.2662, "q": [-0.36807528138160706, -0.02635379135608673, 0.0171282347291708, 0.6010648012161255, -0.28590652346611023, 0.020175408571958542, -0.38968735933303833, 0.01429158728569746, -0.010767084546387196, 0.6080955266952515, -0.29143282771110535, -0.013186362572014332, 0.002464108867570758, -0.005138242617249489, -0.009595944546163082, -1.6431931257247925, 0.9227853417396545, 0.06872953474521637, 1.2867822647094727, 0.21871210634708405, -0.28339096903800964, -0.1392686814069748, -0.32841572165489197, -0.2946561574935913, 0.22844329476356506, 1.4019266366958618, -0.6657836437225342, -0.29519543051719666, -0.210682675242424]} +{"t": 3.283, "q": [-0.3681349456310272, -0.026362312957644463, 0.016940748319029808, 0.6010221838951111, -0.28590232133865356, 0.0201826561242342, -0.3897044062614441, 0.014274543151259422, -0.01084743533283472, 0.6080614328384399, -0.29143282771110535, -0.013171901926398277, 0.0025578520726412535, -0.005046561360359192, -0.009537490084767342, -1.6591321229934692, 0.9237440824508667, 0.06705173850059509, 1.2870099544525146, 0.22030600905418396, -0.2806226313114166, -0.14017948508262634, -0.3283318281173706, -0.2939850389957428, 0.22847925126552582, 1.401998519897461, -0.6658076047897339, -0.2951594889163971, -0.211186021566391]} +{"t": 3.2998, "q": [-0.36802414059638977, -0.02640492282807827, 0.01695414073765278, 0.6009028553962708, -0.28588566184043884, 0.020153839141130447, -0.3896958827972412, 0.014317153953015804, -0.01084743533283472, 0.608342707157135, -0.2914411127567291, -0.013200786896049976, 0.002731946762651205, -0.004985379055142403, -0.009479078464210033, -1.677683711051941, 0.9243672490119934, 0.06519418209791183, 1.2886037826538086, 0.22265492379665375, -0.2770393490791321, -0.14154568314552307, -0.3282838761806488, -0.2931581139564514, 0.22869497537612915, 1.4019626379013062, -0.665879487991333, -0.29519543051719666, -0.21172530949115753]} +{"t": 3.3165, "q": [-0.3682883381843567, -0.026328224688768387, 0.016512207686901093, 0.6010903716087341, -0.2858981788158417, 0.02016100101172924, -0.389712929725647, 0.014308631420135498, -0.010887610726058483, 0.6081892848014832, -0.2914494574069977, -0.01315735187381506, 0.002852473873645067, -0.004916588310152292, -0.009425517171621323, -1.6941380500793457, 0.9248466491699219, 0.06388790160417557, 1.288771629333496, 0.22549518942832947, -0.2709753215312958, -0.1437867283821106, -0.32827189564704895, -0.2923431992530823, 0.22879084944725037, 1.401998519897461, -0.6659753918647766, -0.2951594889163971, -0.21221666038036346]} +{"t": 3.3333, "q": [-0.3683309555053711, -0.026362312957644463, 0.016364896669983864, 0.6011244654655457, -0.28588569164276123, 0.020139386877417564, -0.38972145318984985, 0.014317153953015804, -0.01091439463198185, 0.6083938479423523, -0.2914494276046753, -0.013186273165047169, 0.0029194331727921963, -0.004984981846064329, -0.00935270730406046, -1.7137922048568726, 0.9249424934387207, 0.06149106100201607, 1.2907130718231201, 0.2277122586965561, -0.2624545395374298, -0.14848455786705017, -0.32824793457984924, -0.2913844585418701, 0.229078471660614, 1.4019505977630615, -0.6659873723983765, -0.29521939158439636, -0.21324729919433594]} +{"t": 3.35, "q": [-0.3686121702194214, -0.026362312957644463, 0.01598992384970188, 0.6012011766433716, -0.2858898639678955, 0.02014659158885479, -0.3897044062614441, 0.014308631420135498, -0.010967962443828583, 0.6081210970878601, -0.291445255279541, -0.013207999058067799, 0.0030131766106933355, -0.004969640634953976, -0.009323522448539734, -1.731181263923645, 0.9254458546638489, 0.05989715829491615, 1.2909168004989624, 0.22841933369636536, -0.2582121193408966, -0.15122893452644348, -0.32822397351264954, -0.29055753350257874, 0.2292342633008957, 1.401998519897461, -0.6660472750663757, -0.2952074110507965, -0.21463747322559357]} +{"t": 3.3668, "q": [-0.36845025420188904, -0.02635379135608673, 0.01613723486661911, 0.6011926531791687, -0.2858898639678955, 0.02014659158885479, -0.3897470235824585, 0.014283065684139729, -0.011021530255675316, 0.6085301637649536, -0.2914660573005676, -0.013171741738915443, 0.0031203117687255144, -0.004961939994245768, -0.009299210272729397, -1.7514705657958984, 0.9256975054740906, 0.05742840841412544, 1.292690396308899, 0.23001323640346527, -0.25266343355178833, -0.15325427055358887, -0.3282599151134491, -0.2898145318031311, 0.2293540984392166, 1.401902675628662, -0.6660832166671753, -0.2952314019203186, -0.2162553369998932]} +{"t": 3.3836, "q": [-0.36871445178985596, -0.02633674629032612, 0.015909571200609207, 0.601405680179596, -0.2858940362930298, 0.020153796300292015, -0.38978111743927, 0.01420636661350727, -0.010981354862451553, 0.6083512306213379, -0.29146188497543335, -0.013178989291191101, 0.0031203117687255144, -0.004961939994245768, -0.009299210272729397, -1.7713643312454224, 0.9260450601577759, 0.05500759556889534, 1.2932896614074707, 0.23215840756893158, -0.2446100264787674, -0.15574699640274048, -0.32822397351264954, -0.28910744190216064, 0.22948592901229858, 1.4019147157669067, -0.6660712361335754, -0.2952314019203186, -0.21710622310638428]} +{"t": 3.4004, "q": [-0.3685013949871063, -0.026311179623007774, 0.01615062542259693, 0.6012097001075745, -0.2858898639678955, 0.02014659158885479, -0.3897896409034729, 0.014197844080626965, -0.011075098067522049, 0.6085642576217651, -0.2914701998233795, -0.013178972527384758, 0.003133703488856554, -0.005022815894335508, -0.00926041230559349, -1.7926722764968872, 0.9261648654937744, 0.05258677899837494, 1.294907569885254, 0.23528629541397095, -0.2391931563615799, -0.15735287964344025, -0.32822397351264954, -0.2884123623371124, 0.2298334687948227, 1.4018547534942627, -0.6661551594734192, -0.295279324054718, -0.21741782128810883]} +{"t": 3.4171, "q": [-0.36880818009376526, -0.02633674629032612, 0.01597653143107891, 0.6015335321426392, -0.2858898341655731, 0.020175496116280556, -0.38984930515289307, 0.014138189144432545, -0.011061705648899078, 0.6083000898361206, -0.29146191477775574, -0.013164529576897621, 0.0030533522367477417, -0.004999925848096609, -0.009255519136786461, -1.8128777742385864, 0.9263686537742615, 0.05008207634091377, 1.2956385612487793, 0.24040356278419495, -0.23411184549331665, -0.15808391571044922, -0.32806816697120667, -0.2877172827720642, 0.23007315397262573, 1.401902675628662, -0.6661311984062195, -0.2952553629875183, -0.2176215499639511]} +{"t": 3.4339, "q": [-0.36872297525405884, -0.026311179623007774, 0.01615062542259693, 0.6014397740364075, -0.2858940064907074, 0.020168248564004898, -0.38986632227897644, 0.014112623408436775, -0.011048314161598682, 0.608572781085968, -0.29146608710289, -0.013142820447683334, 0.0030399602837860584, -0.0050912401638925076, -0.009197322651743889, -1.8362829685211182, 0.92574542760849, 0.046606652438640594, 1.2975679636001587, 0.24687503278255463, -0.22728082537651062, -0.15816780924797058, -0.3278524577617645, -0.28696227073669434, 0.2307083159685135, 1.401842713356018, -0.6661551594734192, -0.295279324054718, -0.21788519620895386]} +{"t": 3.4507, "q": [-0.36917462944984436, -0.026302658021450043, 0.015909571200609207, 0.6017124652862549, -0.2858898341655731, 0.020175496116280556, -0.3899345099925995, 0.014035924337804317, -0.011128664948046207, 0.608342707157135, -0.29145777225494385, -0.013157316483557224, 0.0029060414526611567, -0.005197711754590273, -0.009109985083341599, -1.8612101078033447, 0.925206184387207, 0.04388623312115669, 1.298119306564331, 0.24982315301895142, -0.21650701761245728, -0.15838351845741272, -0.32769665122032166, -0.28620725870132446, 0.2314273715019226, 1.4019505977630615, -0.6661551594734192, -0.2952553629875183, -0.21799305081367493]} +{"t": 3.4674, "q": [-0.3690297603607178, -0.026311179623007774, 0.016177410259842873, 0.6015250086784363, -0.28590649366378784, 0.020189860835671425, -0.3899345099925995, 0.014001836068928242, -0.011128664948046207, 0.6083171367645264, -0.29145362973213196, -0.013150104321539402, 0.0027721223887056112, -0.005228211171925068, -0.00911002792418003, -1.8858016729354858, 0.9248106479644775, 0.04193280264735222, 1.2987784147262573, 0.25213611125946045, -0.21113808453083038, -0.158359557390213, -0.3275887966156006, -0.2850927412509918, 0.2325778603553772, 1.4019266366958618, -0.6662749648094177, -0.295279324054718, -0.21834060549736023]} +{"t": 3.4842, "q": [-0.369012713432312, -0.026311179623007774, 0.016271153464913368, 0.601635754108429, -0.2859190106391907, 0.02019704133272171, -0.38995155692100525, 0.013891047798097134, -0.011128664948046207, 0.6083171367645264, -0.29145362973213196, -0.013135643675923347, 0.0027051628567278385, -0.005182493012398481, -0.009119684807956219, -1.9090511798858643, 0.9245589971542358, 0.03995540738105774, 1.2988263368606567, 0.25500035285949707, -0.2037198394536972, -0.15837153792381287, -0.32730117440223694, -0.28406208753585815, 0.2331770658493042, 1.4019626379013062, -0.6663469076156616, -0.295279324054718, -0.21867616474628448]} +{"t": 3.501, "q": [-0.36849287152290344, -0.026311179623007774, 0.016605950891971588, 0.6012693047523499, -0.2859148383140564, 0.02020428702235222, -0.3898918926715851, 0.013712083920836449, -0.011075098067522049, 0.608274519443512, -0.2914702296257019, -0.013135572895407677, 0.0027855143416672945, -0.005136835854500532, -0.009148783050477505, -1.9334030151367188, 0.923576295375824, 0.036695696413517, 1.2993896007537842, 0.25812822580337524, -0.1977277249097824, -0.1582397073507309, -0.32684576511383057, -0.28283968567848206, 0.23426763713359833, 1.4019147157669067, -0.6664307713508606, -0.29529130458831787, -0.21896377205848694]} +{"t": 3.5177, "q": [-0.36853548884391785, -0.0262770913541317, 0.016739869490265846, 0.6012863516807556, -0.2859356701374054, 0.020225858315825462, -0.38990893959999084, 0.013447898440063, -0.011008137837052345, 0.6083512306213379, -0.2915576100349426, -0.012968851253390312, 0.0027721223887056112, -0.0050834775902330875, -0.009153568185865879, -1.9581384658813477, 0.9225456714630127, 0.034023214131593704, 1.3003603219985962, 0.26110032200813293, -0.1914120465517044, -0.15807193517684937, -0.326582133769989, -0.28141358494758606, 0.23546606302261353, 1.401998519897461, -0.666538655757904, -0.295279324054718, -0.21926338970661163]} +{"t": 3.5344, "q": [-0.36830538511276245, -0.02634526789188385, 0.016927355900406837, 0.6009625196456909, -0.2859190106391907, 0.02019704133272171, -0.38986632227897644, 0.013422331772744656, -0.01091439463198185, 0.6083682775497437, -0.29155343770980835, -0.012990559451282024, 0.002959609031677246, -0.004938744008541107, -0.009197107516229153, -1.9809205532073975, 0.9211914539337158, 0.030835412442684174, 1.3010674715042114, 0.2667568624019623, -0.1886436939239502, -0.15786820650100708, -0.3262585401535034, -0.2799515128135681, 0.23648472130298615, 1.4019745588302612, -0.6665506362915039, -0.2953152656555176, -0.21961092948913574]} +{"t": 3.5513, "q": [-0.36848434805870056, -0.02633674629032612, 0.016860397532582283, 0.6012267470359802, -0.28592729568481445, 0.020240353420376778, -0.3899174630641937, 0.013234845362603664, -0.010981354862451553, 0.6085898280143738, -0.2915617525577545, -0.012961603701114655, 0.002986392704769969, -0.004892750643193722, -0.009119275957345963, -2.0053203105926514, 0.9195256233215332, 0.02647315338253975, 1.3023736476898193, 0.2699446678161621, -0.1787327378988266, -0.1576405018568039, -0.3261147439479828, -0.2785853147506714, 0.2371438443660736, 1.4019865989685059, -0.6666345000267029, -0.2953152656555176, -0.21995846927165985]} +{"t": 3.5681, "q": [-0.3682457208633423, -0.026362312957644463, 0.01695414073765278, 0.6009625196456909, -0.285914808511734, 0.0202187392860651, -0.38986632227897644, 0.01318371295928955, -0.01091439463198185, 0.6084619760513306, -0.2915576100349426, -0.012954390607774258, 0.003173879347741604, -0.004831843543797731, -0.009148352779448032, -2.0288455486297607, 0.9167453050613403, 0.02244645357131958, 1.3033803701400757, 0.2750619351863861, -0.1730881631374359, -0.15750867128372192, -0.32582712173461914, -0.2775546610355377, 0.2376471906900406, 1.401902675628662, -0.6666704416275024, -0.2953512370586395, -0.22037792205810547]} +{"t": 3.5848, "q": [-0.3683309555053711, -0.026362312957644463, 0.016913963481783867, 0.6011756062507629, -0.2859189808368683, 0.020225943997502327, -0.38984930515289307, 0.013115535490214825, -0.010967962443828583, 0.6086750626564026, -0.2915617823600769, -0.0129471430554986, 0.0031604873947799206, -0.0047554736956954, -0.00910936202853918, -2.052154779434204, 0.9133058190345764, 0.018683407455682755, 1.3046746253967285, 0.282731831073761, -0.1670481115579605, -0.15728096663951874, -0.3258151412010193, -0.27679964900016785, 0.23795877397060394, 1.4019266366958618, -0.6667304039001465, -0.2953871786594391, -0.22101308405399323]} +{"t": 3.6015, "q": [-0.3681775629520416, -0.026362312957644463, 0.01698092371225357, 0.6009625196456909, -0.28591063618659973, 0.020211534574627876, -0.3898322582244873, 0.013141102157533169, -0.01092778705060482, 0.6086068749427795, -0.2915576100349426, -0.012954390607774258, 0.0032676225528120995, -0.00467950152233243, -0.009196742437779903, -2.0742177963256836, 0.9110168218612671, 0.015723302960395813, 1.3045308589935303, 0.28880783915519714, -0.1632850617170334, -0.1570892184972763, -0.3254316449165344, -0.27629631757736206, 0.2382943332195282, 1.4019626379013062, -0.6667543649673462, -0.29537519812583923, -0.2212407886981964]} +{"t": 3.6183, "q": [-0.3681349456310272, -0.026319703087210655, 0.016900572925806046, 0.6011841297149658, -0.28591063618659973, 0.020211534574627876, -0.3897981643676758, 0.013098491355776787, -0.010941178537905216, 0.6089562773704529, -0.29157838225364685, -0.012947053648531437, 0.0032676225528120995, -0.004648910369724035, -0.009167537093162537, -2.098353862762451, 0.9068103432655334, 0.011408982798457146, 1.306951642036438, 0.29539915919303894, -0.15451261401176453, -0.1567177176475525, -0.3254436254501343, -0.2759367823600769, 0.23895347118377686, 1.401890754699707, -0.6667184233665466, -0.29537519812583923, -0.2217680811882019]} +{"t": 3.635, "q": [-0.36811789870262146, -0.02628561295568943, 0.016860397532582283, 0.6010648012161255, -0.28590232133865356, 0.020197108387947083, -0.3897981643676758, 0.0131496237590909, -0.010954570956528187, 0.6087773442268372, -0.2915700674057007, -0.012961567379534245, 0.003240838646888733, -0.004626082256436348, -0.00918208621442318, -2.119781732559204, 0.9041858315467834, 0.007418235298246145, 1.3077785968780518, 0.2983832359313965, -0.150797501206398, -0.15628628432750702, -0.3251320421695709, -0.2757689952850342, 0.23943284153938293, 1.4019266366958618, -0.6667783260345459, -0.29539915919303894, -0.2220437228679657]} +{"t": 3.6518, "q": [-0.3681349456310272, -0.026268569752573967, 0.01678004488348961, 0.6012182235717773, -0.28590652346611023, 0.020175408571958542, -0.38978111743927, 0.013158146291971207, -0.01099474634975195, 0.6089648008346558, -0.2915700674057007, -0.012961567379534245, 0.003240838646888733, -0.004656519740819931, -0.00916268676519394, -2.1417009830474854, 0.9017890095710754, 0.0032237565610557795, 1.3093245029449463, 0.30423155426979065, -0.1453806310892105, -0.15597468614578247, -0.32485640048980713, -0.2755652666091919, 0.2398163378238678, 1.4019505977630615, -0.6668022871017456, -0.2954111397266388, -0.22253507375717163]} +{"t": 3.6687, "q": [-0.3680582344532013, -0.02621743641793728, 0.016699694097042084, 0.6011074185371399, -0.2858898341655731, 0.020175496116280556, -0.3897385001182556, 0.013217801228165627, -0.011021530255675316, 0.6089221835136414, -0.2915658950805664, -0.012968815863132477, 0.0032676225528120995, -0.004580578301101923, -0.009259788319468498, -2.1627211570739746, 0.9005785584449768, 0.0009587380336597562, 1.3090728521347046, 0.3071676790714264, -0.1401435285806656, -0.15569905936717987, -0.3244609236717224, -0.2755053639411926, 0.240139901638031, 1.4019745588302612, -0.6668262481689453, -0.29542315006256104, -0.22282269597053528]} +{"t": 3.6854, "q": [-0.36780259013175964, -0.02623448148369789, 0.016833612695336342, 0.6011756062507629, -0.2858981490135193, 0.020189903676509857, -0.3896447718143463, 0.01320927869528532, -0.01092778705060482, 0.6093056797981262, -0.2915700674057007, -0.012961567379534245, 0.003173879347741604, -0.0045043909922242165, -0.00927912350744009, -2.184532403945923, 0.8989367485046387, -0.0031398669816553593, 1.3108824491500854, 0.3125126361846924, -0.1327492594718933, -0.1552676260471344, -0.32440099120140076, -0.2753854990005493, 0.2406911849975586, 1.401902675628662, -0.6668142676353455, -0.2954351305961609, -0.22336198389530182]} +{"t": 3.7022, "q": [-0.3676917850971222, -0.02622595801949501, 0.016833612695336342, 0.6011244654655457, -0.2858981490135193, 0.020189903676509857, -0.3896447718143463, 0.01326893363147974, -0.010874219238758087, 0.6092374920845032, -0.2915700674057007, -0.012961567379534245, 0.0031872710678726435, -0.004268526565283537, -0.009439200162887573, -2.204066753387451, 0.8977143168449402, -0.005440838169306517, 1.3111101388931274, 0.3176299035549164, -0.12971726059913635, -0.1550159603357315, -0.3239455819129944, -0.2752656638622284, 0.24109864234924316, 1.4019745588302612, -0.6667903065681458, -0.29542315006256104, -0.22369754314422607]} +{"t": 3.7189, "q": [-0.36760658025741577, -0.02621743641793728, 0.016900572925806046, 0.6011756062507629, -0.2858898341655731, 0.020175496116280556, -0.38963624835014343, 0.013320066034793854, -0.010726908221840858, 0.6095698475837708, -0.2915742099285126, -0.012968780472874641, 0.0031872710678726435, -0.004207558464258909, -0.009448840282857418, -2.2247276306152344, 0.8955092430114746, -0.00800546258687973, 1.3129198551177979, 0.32428115606307983, -0.12634968757629395, -0.15448865294456482, -0.3237178921699524, -0.27502599358558655, 0.24172182381153107, 1.4019505977630615, -0.666850209236145, -0.29547107219696045, -0.22424882650375366]} +{"t": 3.7357, "q": [-0.36762362718582153, -0.02623448148369789, 0.016726477071642876, 0.6011585593223572, -0.28586897253990173, 0.020168377086520195, -0.38961920142173767, 0.013354155234992504, -0.010606381110846996, 0.6094591021537781, -0.29155758023262024, -0.012983311899006367, 0.0032676225528120995, -0.004161932040005922, -0.009487663395702839, -2.243602752685547, 0.8928008079528809, -0.011097392998635769, 1.313447117805481, 0.3284876048564911, -0.1236891895532608, -0.15364974737167358, -0.3229389190673828, -0.27477431297302246, 0.24224913120269775, 1.4020105600357056, -0.666850209236145, -0.2954590916633606, -0.22488398849964142]} +{"t": 3.7525, "q": [-0.36752134561538696, -0.02622595801949501, 0.016713086515665054, 0.6013204455375671, -0.2858773171901703, 0.02015388198196888, -0.3896106779575348, 0.013422331772744656, -0.010606381110846996, 0.6098340749740601, -0.2915700376033783, -0.012990488670766354, 0.0032676225528120995, -0.00419233925640583, -0.009458541870117188, -2.264359474182129, 0.8902122378349304, -0.017317205667495728, 1.3159878253936768, 0.33576202392578125, -0.11844009906053543, -0.15293069183826447, -0.3227351903915405, -0.2742590010166168, 0.24360334873199463, 1.4019745588302612, -0.6671618223190308, -0.2954830527305603, -0.2260105013847351]} +{"t": 3.7692, "q": [-0.3675469160079956, -0.026191869750618935, 0.016579166054725647, 0.6013204455375671, -0.2858731746673584, 0.020146677270531654, -0.3895510137081146, 0.013430854305624962, -0.010445678606629372, 0.6097147464752197, -0.2915658950805664, -0.012983276508748531, 0.0032676225528120995, -0.004070678725838661, -0.009565310552716255, -2.280430316925049, 0.8879112601280212, -0.02015746757388115, 1.3164911270141602, 0.3383506238460541, -0.11369434744119644, -0.15243934094905853, -0.3221958875656128, -0.27387550473213196, 0.24447819590568542, 1.4020105600357056, -0.6671738028526306, -0.29547107219696045, -0.22735273838043213]} +{"t": 3.786, "q": [-0.36730828881263733, -0.02617482654750347, 0.016726477071642876, 0.6014482975006104, -0.2858690023422241, 0.02013947255909443, -0.3894828259944916, 0.013464942574501038, -0.01024479977786541, 0.6102260947227478, -0.29159078001976013, -0.013026569038629532, 0.003254230599850416, -0.004032600205391645, -0.009579841047525406, -2.300503969192505, 0.8852148056030273, -0.02425607107579708, 1.3191635608673096, 0.3440670967102051, -0.10922423005104065, -0.15168434381484985, -0.3219681978225708, -0.2733481824398041, 0.2464555948972702, 1.4019266366958618, -0.6671857833862305, -0.29549503326416016, -0.22929418087005615]} +{"t": 3.8028, "q": [-0.36730828881263733, -0.02615778148174286, 0.01665951870381832, 0.6014397740364075, -0.28586065769195557, 0.020125046372413635, -0.3894658088684082, 0.01347346417605877, -0.009896610863506794, 0.6102005243301392, -0.29158663749694824, -0.013019355945289135, 0.0032274469267576933, -0.0039870040491223335, -0.009628385305404663, -2.317401647567749, 0.882182776927948, -0.026557043194770813, 1.3198347091674805, 0.34699127078056335, -0.10650380700826645, -0.15133678913116455, -0.32142889499664307, -0.2727130353450775, 0.24785774946212769, 1.401998519897461, -0.6671977639198303, -0.29550701379776, -0.23049260675907135]} +{"t": 3.8195, "q": [-0.36712080240249634, -0.02615778148174286, 0.016753261908888817, 0.6014994382858276, -0.2858523428440094, 0.020110636949539185, -0.3894658088684082, 0.013533119112253189, -0.009535029530525208, 0.6106351613998413, -0.2916073799133301, -0.013055436313152313, 0.00321405497379601, -0.00394889572635293, -0.009633195586502552, -2.3365285396575928, 0.879414439201355, -0.030308105051517487, 1.3225791454315186, 0.3525758981704712, -0.1041189506649971, -0.150797501206398, -0.3211652636528015, -0.2719101011753082, 0.24928386509418488, 1.4018547534942627, -0.6671857833862305, -0.2955310046672821, -0.23122364282608032]} +{"t": 3.8362, "q": [-0.36711227893829346, -0.026149259880185127, 0.016672909259796143, 0.6014909148216248, -0.2858481705188751, 0.02010343410074711, -0.38944876194000244, 0.013575729914009571, -0.009575205855071545, 0.6104987859725952, -0.2916032075881958, -0.013077144511044025, 0.003240838646888733, -0.003910878673195839, -0.009667168371379375, -2.3549840450286865, 0.8770535588264465, -0.03464639559388161, 1.323609709739685, 0.3588676154613495, -0.0995769277215004, -0.15034210681915283, -0.3203982710838318, -0.27105921506881714, 0.2500748336315155, 1.401902675628662, -0.6672097444534302, -0.29551902413368225, -0.23164309561252594]} +{"t": 3.8532, "q": [-0.3667799234390259, -0.026140738278627396, 0.016913963481783867, 0.6014909148216248, -0.28586065769195557, 0.020125046372413635, -0.3894146680831909, 0.013558685779571533, -0.009535029530525208, 0.6108822822570801, -0.29161569476127625, -0.013055400922894478, 0.003254230599850416, -0.003865282516926527, -0.009715712629258633, -2.3741588592529297, 0.8740095496177673, -0.04000334441661835, 1.3256230354309082, 0.36639371514320374, -0.09528657793998718, -0.14992265403270721, -0.3194035589694977, -0.27043601870536804, 0.2508058547973633, 1.4019147157669067, -0.6671139001846313, -0.2955549657344818, -0.2320505529642105]} +{"t": 3.8699, "q": [-0.3668481111526489, -0.026123693212866783, 0.01680682972073555, 0.6016017198562622, -0.2858523428440094, 0.020110636949539185, -0.3893890976905823, 0.013550163246691227, -0.009441286325454712, 0.610745906829834, -0.29163646697998047, -0.013048063963651657, 0.0032810145057737827, -0.003850124543532729, -0.0097448555752635, -2.3902297019958496, 0.8705700635910034, -0.04352670535445213, 1.3261264562606812, 0.36948564648628235, -0.09006145596504211, -0.14981479942798615, -0.3179534673690796, -0.2700165808200836, 0.2511773705482483, 1.4019505977630615, -0.6671498417854309, -0.2955549657344818, -0.23245801031589508]} +{"t": 3.8867, "q": [-0.3667373061180115, -0.026140738278627396, 0.016927355900406837, 0.6015250086784363, -0.28584396839141846, 0.0201251320540905, -0.38931238651275635, 0.013516074977815151, -0.00933415163308382, 0.6108396649360657, -0.2916239798069, -0.013055365532636642, 0.003334582084789872, -0.0038272959645837545, -0.009759406559169292, -2.4086854457855225, 0.8662797212600708, -0.04701411724090576, 1.3272769451141357, 0.37612491846084595, -0.08768857270479202, -0.14961107075214386, -0.31661126017570496, -0.26965704560279846, 0.25211215019226074, 1.4019266366958618, -0.6671139001846313, -0.2955549657344818, -0.232853502035141]} +{"t": 3.9043, "q": [-0.36675435304641724, -0.02611517161130905, 0.01680682972073555, 0.6016272306442261, -0.28584396839141846, 0.0201251320540905, -0.38930386304855347, 0.013481986708939075, -0.009360934607684612, 0.6108055710792542, -0.29161566495895386, -0.013069861568510532, 0.0035220684949308634, -0.0038349360693246126, -0.009764277376234531, -2.4239532947540283, 0.861773669719696, -0.049674615263938904, 1.3276963233947754, 0.378030389547348, -0.08711333572864532, -0.1495751142501831, -0.3153529167175293, -0.26938140392303467, 0.25298699736595154, 1.401998519897461, -0.6671019196510315, -0.2955549657344818, -0.23333287239074707]} +{"t": 3.921, "q": [-0.36652424931526184, -0.026089604943990707, 0.016860397532582283, 0.601635754108429, -0.28584814071655273, 0.020132336765527725, -0.3891078531742096, 0.013362676836550236, -0.00932075921446085, 0.6108993291854858, -0.2916281223297119, -0.013062577694654465, 0.003562244353815913, -0.003667526412755251, -0.009870985522866249, -2.4411747455596924, 0.8576990365982056, -0.05362940952181816, 1.3283195495605469, 0.38266828656196594, -0.0872211903333664, -0.14940734207630157, -0.31446605920791626, -0.2690698206424713, 0.25428128242492676, 1.401998519897461, -0.6670899391174316, -0.29556694626808167, -0.23376429080963135]} +{"t": 3.9378, "q": [-0.3663708567619324, -0.026089604943990707, 0.016887180507183075, 0.6016783714294434, -0.285852313041687, 0.02013954147696495, -0.38898855447769165, 0.013311544433236122, -0.009227016009390354, 0.6110016107559204, -0.29161983728408813, -0.01304815337061882, 0.003575636073946953, -0.003477257676422596, -0.009982523508369923, -2.4562509059906006, 0.8541157245635986, -0.05766809359192848, 1.3286311626434326, 0.3857003152370453, -0.08598681539297104, -0.14935940504074097, -0.31386685371398926, -0.26863840222358704, 0.25500035285949707, 1.4019745588302612, -0.6670539379119873, -0.2955549657344818, -0.23436351120471954]} +{"t": 3.9545, "q": [-0.36629417538642883, -0.026072561740875244, 0.017034491524100304, 0.6018062233924866, -0.28584814071655273, 0.020132336765527725, -0.38888630270957947, 0.013311544433236122, -0.00906631350517273, 0.6110357046127319, -0.2916240096092224, -0.013040904887020588, 0.0034283252898603678, -0.0034239294473081827, -0.009997034445405006, -2.4727652072906494, 0.8500410914421082, -0.06351639330387115, 1.32993745803833, 0.3911651074886322, -0.08535165339708328, -0.1492755115032196, -0.31354328989982605, -0.26815903186798096, 0.2559950351715088, 1.4019745588302612, -0.666994035243988, -0.2955789268016815, -0.23528629541397095]} +{"t": 3.9713, "q": [-0.36623451113700867, -0.026081083342432976, 0.017007706686854362, 0.6018232703208923, -0.285852313041687, 0.02013954147696495, -0.3887328803539276, 0.013303021900355816, -0.009106488898396492, 0.610958993434906, -0.29161152243614197, -0.01306264940649271, 0.003562244353815913, -0.0034241429530084133, -0.010065081529319286, -2.4861395359039307, 0.8451395630836487, -0.06616491079330444, 1.3298414945602417, 0.3982238173484802, -0.08506403118371964, -0.1492515355348587, -0.31271636486053467, -0.26773956418037415, 0.25655829906463623, 1.4019865989685059, -0.6670179963111877, -0.2955789268016815, -0.23660455644130707]} +{"t": 3.988, "q": [-0.36609816551208496, -0.026089604943990707, 0.01695414073765278, 0.6020448207855225, -0.285852313041687, 0.02013954147696495, -0.38851985335350037, 0.013226322829723358, -0.009119881317019463, 0.6111038327217102, -0.29161569476127625, -0.013055400922894478, 0.0033747577108442783, -0.003424081951379776, -0.010045639239251614, -2.502366065979004, 0.8399863243103027, -0.07216900587081909, 1.3315552473068237, 0.4066367447376251, -0.08378171920776367, -0.14914368093013763, -0.3124766945838928, -0.26718831062316895, 0.2572413980960846, 1.4019505977630615, -0.666994035243988, -0.2955789268016815, -0.2376711517572403]} +{"t": 4.0048, "q": [-0.3659447431564331, -0.026081083342432976, 0.016940748319029808, 0.6020448207855225, -0.2858397960662842, 0.020132379606366158, -0.3883749544620514, 0.013226322829723358, -0.009173448197543621, 0.6110697388648987, -0.29161155223846436, -0.013048188760876656, 0.0034551091957837343, -0.0034013455733656883, -0.01008935272693634, -2.5147697925567627, 0.8354443311691284, -0.07655522972345352, 1.3317230939865112, 0.4103159010410309, -0.0827510729432106, -0.14911971986293793, -0.31184151768684387, -0.2668766975402832, 0.2574930489063263, 1.401998519897461, -0.6669700741767883, -0.29559090733528137, -0.23818647861480713]} +{"t": 4.0215, "q": [-0.36568909883499146, -0.026089604943990707, 0.017034491524100304, 0.6021897196769714, -0.285852313041687, 0.02013954147696495, -0.38816192746162415, 0.01318371295928955, -0.009093097411096096, 0.6111805438995361, -0.29161155223846436, -0.013048188760876656, 0.0034149333368986845, -0.0033403774723410606, -0.010098992846906185, -2.5303971767425537, 0.8310940265655518, -0.0839734673500061, 1.3331851959228516, 0.4175783395767212, -0.08179233968257904, -0.1490238457918167, -0.31154191493988037, -0.2664932310581207, 0.25805631279945374, 1.4019266366958618, -0.6669820547103882, -0.2956028878688812, -0.23830631375312805]} +{"t": 4.0384, "q": [-0.3655186593532562, -0.02605551667511463, 0.01699431613087654, 0.6021811962127686, -0.28584811091423035, 0.020146789029240608, -0.38793182373046875, 0.013166667893528938, -0.009146664291620255, 0.6110867857933044, -0.29161155223846436, -0.013048188760876656, 0.0035220684949308634, -0.0032339354511350393, -0.010196061804890633, -2.543088436126709, 0.8254015445709229, -0.08764063566923141, 1.3336645364761353, 0.42340266704559326, -0.07980295270681381, -0.14901185035705566, -0.3106550872325897, -0.2662774920463562, 0.25833195447921753, 1.401998519897461, -0.6669700741767883, -0.29559090733528137, -0.23851005733013153]} +{"t": 4.0551, "q": [-0.3653567433357239, -0.0260469950735569, 0.016900572925806046, 0.602223813533783, -0.28584811091423035, 0.020146789029240608, -0.3876761496067047, 0.013132579624652863, -0.009160056710243225, 0.6111720204353333, -0.29161152243614197, -0.01306264940649271, 0.003575636073946953, -0.0031502919737249613, -0.010268857702612877, -2.5555641651153564, 0.8205359578132629, -0.09276989102363586, 1.3345633745193481, 0.4268421530723572, -0.07900001108646393, -0.1489519327878952, -0.31004390120506287, -0.2660737633705139, 0.25854766368865967, 1.4019745588302612, -0.6669820547103882, -0.29559090733528137, -0.23855799436569214]} +{"t": 4.0718, "q": [-0.3652459383010864, -0.02605551667511463, 0.016860397532582283, 0.6022834777832031, -0.28584811091423035, 0.020146789029240608, -0.3875057101249695, 0.013089969754219055, -0.009213624522089958, 0.6111038327217102, -0.2916198670864105, -0.013019196689128876, 0.003655987558886409, -0.0028075689915567636, -0.010535995475947857, -2.567728042602539, 0.8157662153244019, -0.09644904732704163, 1.3350306749343872, 0.4313002824783325, -0.0776098445057869, -0.14893995225429535, -0.30937278270721436, -0.2659299671649933, 0.25872743129730225, 1.4019745588302612, -0.6669580936431885, -0.2955789268016815, -0.2386418730020523]} +{"t": 4.0887, "q": [-0.36494767665863037, -0.026072561740875244, 0.016927355900406837, 0.6023005247116089, -0.2858397960662842, 0.020132379606366158, -0.38730117678642273, 0.013098491355776787, -0.009119881317019463, 0.6111975908279419, -0.2916198670864105, -0.013033692725002766, 0.003441717242822051, -0.002540698740631342, -0.010706078261137009, -2.580491304397583, 0.8118833303451538, -0.1025729849934578, 1.3365767002105713, 0.4378436803817749, -0.0764114186167717, -0.14883209764957428, -0.30914506316185, -0.2657022476196289, 0.25897911190986633, 1.4019505977630615, -0.6669580936431885, -0.29559090733528137, -0.23867782950401306]} +{"t": 4.1054, "q": [-0.36482834815979004, -0.0260469950735569, 0.016847005113959312, 0.6022493839263916, -0.28584393858909607, 0.020154036581516266, -0.38715630769729614, 0.013098491355776787, -0.009106488898396492, 0.6110612154006958, -0.2916281819343567, -0.013033639639616013, 0.0034952848218381405, -0.002121361903846264, -0.010992820374667645, -2.590498208999634, 0.8082640767097473, -0.10650380700826645, 1.3367804288864136, 0.4451300799846649, -0.0745898187160492, -0.1487002670764923, -0.3085698187351227, -0.26564234495162964, 0.25902703404426575, 1.401998519897461, -0.6669580936431885, -0.2956028878688812, -0.23878568410873413]} +{"t": 4.1222, "q": [-0.36458122730255127, -0.0260469950735569, 0.016833612695336342, 0.6022493839263916, -0.28584811091423035, 0.020146789029240608, -0.3868921101093292, 0.013098491355776787, -0.009106488898396492, 0.6110953092575073, -0.2916281819343567, -0.013033639639616013, 0.00354885240085423, -0.0017706940416246653, -0.011265037581324577, -2.6016554832458496, 0.8033625483512878, -0.10948788374662399, 1.3379548788070679, 0.44898900389671326, -0.07239670306444168, -0.14811304211616516, -0.3080425262451172, -0.2656063735485077, 0.2591588795185089, 1.4019745588302612, -0.6668862104415894, -0.29559090733528137, -0.23879767954349518]} +{"t": 4.1389, "q": [-0.36463233828544617, -0.026021428406238556, 0.016699694097042084, 0.6022664308547974, -0.28584814071655273, 0.020132336765527725, -0.38687506318092346, 0.013107013888657093, -0.009133272804319859, 0.6111038327217102, -0.2916281819343567, -0.012990240007638931, 0.0033881496638059616, -0.0017554443329572678, -0.011274757795035839, -2.612968683242798, 0.7984369993209839, -0.11269965767860413, 1.3391532897949219, 0.45313555002212524, -0.06755507737398148, -0.14776550233364105, -0.30782681703567505, -0.26527082920074463, 0.25923076272010803, 1.4019505977630615, -0.666850209236145, -0.2955789268016815, -0.23883362114429474]} +{"t": 4.1557, "q": [-0.36454713344573975, -0.02592768520116806, 0.016713086515665054, 0.6021982431411743, -0.2858397960662842, 0.020132379606366158, -0.38688358664512634, 0.01318371295928955, -0.009106488898396492, 0.6109760403633118, -0.2916281819343567, -0.013033639639616013, 0.003481892868876457, -0.0016334459651261568, -0.011352520436048508, -2.6245453357696533, 0.7932358980178833, -0.11494070291519165, 1.339968204498291, 0.4556881785392761, -0.06616491079330444, -0.1469026356935501, -0.30745530128479004, -0.26516297459602356, 0.2594105303287506, 1.4019505977630615, -0.666850209236145, -0.29559090733528137, -0.23882164061069489]} +{"t": 4.1724, "q": [-0.3646579086780548, -0.025893596932291985, 0.01663273386657238, 0.6022749543190002, -0.28582727909088135, 0.020125217735767365, -0.3869006335735321, 0.01318371295928955, -0.009200232103466988, 0.61104416847229, -0.29161983728408813, -0.01304815337061882, 0.003347973804920912, -0.0016181967221200466, -0.01136224064975977, -2.6368651390075684, 0.7875673174858093, -0.1167742908000946, 1.3410707712173462, 0.4596669375896454, -0.06431933492422104, -0.1453566700220108, -0.30722761154174805, -0.264983206987381, 0.25942251086235046, 1.4019505977630615, -0.6668022871017456, -0.29559090733528137, -0.23883362114429474]} +{"t": 4.1892, "q": [-0.36454713344573975, -0.025833941996097565, 0.016579166054725647, 0.602223813533783, -0.2858147919178009, 0.020089134573936462, -0.38682395219802856, 0.013226322829723358, -0.009227016009390354, 0.6110101342201233, -0.2916073799133301, -0.013055436313152313, 0.003361365757882595, -0.001625821110792458, -0.011357381008565426, -2.648345947265625, 0.7816471457481384, -0.11925502866506577, 1.342077374458313, 0.46359777450561523, -0.06333663314580917, -0.14299577474594116, -0.3068920373916626, -0.26499518752098083, 0.2595183849334717, 1.401998519897461, -0.6668262481689453, -0.29559090733528137, -0.2388695776462555]} +{"t": 4.2059, "q": [-0.36468347907066345, -0.025791330263018608, 0.016512207686901093, 0.6022749543190002, -0.28582730889320374, 0.02011076733469963, -0.3868494927883148, 0.013243366964161396, -0.009267191402614117, 0.610958993434906, -0.29161569476127625, -0.013040940277278423, 0.0032944062259048223, -0.0016411013202741742, -0.011367120780050755, -2.661900043487549, 0.7748640775680542, -0.12209528684616089, 1.3438150882720947, 0.4649280309677124, -0.06029263883829117, -0.1387893110513687, -0.3067362308502197, -0.2649592459201813, 0.2595902979373932, 1.4019745588302612, -0.6668022871017456, -0.29559090733528137, -0.23890553414821625]} +{"t": 4.2227, "q": [-0.3645130395889282, -0.02579985372722149, 0.016579166054725647, 0.6021300554275513, -0.28582730889320374, 0.02011076733469963, -0.38673871755599976, 0.013243366964161396, -0.009186840616166592, 0.6107885241508484, -0.2916073799133301, -0.013040957972407341, 0.003334582084789872, -0.0014428698923438787, -0.011503214947879314, -2.6738245487213135, 0.7684045433998108, -0.1236891895532608, 1.3441147804260254, 0.4650838077068329, -0.05903429538011551, -0.13621270656585693, -0.3064725995063782, -0.26504313945770264, 0.25962626934051514, 1.401998519897461, -0.6667543649673462, -0.29556694626808167, -0.2389175146818161]} +{"t": 4.2394, "q": [-0.3644278347492218, -0.02580837532877922, 0.016579166054725647, 0.6022067666053772, -0.2858314514160156, 0.020117970183491707, -0.38665351271629333, 0.013226322829723358, -0.009119881317019463, 0.6108737587928772, -0.2916239798069, -0.013055365532636642, 0.003321190131828189, -0.0014199957950040698, -0.011517795734107494, -2.685976505279541, 0.7617892622947693, -0.12414459139108658, 1.3460801839828491, 0.4653834104537964, -0.05601426959037781, -0.13421133160591125, -0.3064606189727783, -0.2650311291217804, 0.25960227847099304, 1.4019745588302612, -0.6667304039001465, -0.29556694626808167, -0.23895347118377686]} +{"t": 4.2561, "q": [-0.36440226435661316, -0.025825420394539833, 0.016579166054725647, 0.6020448207855225, -0.28582730889320374, 0.02011076733469963, -0.3866364657878876, 0.013226322829723358, -0.009133272804319859, 0.6107544302940369, -0.2916239798069, -0.013055365532636642, 0.0033747577108442783, -0.0011760302586480975, -0.011692781001329422, -2.6991710662841797, 0.7546226978302002, -0.12470784783363342, 1.3463197946548462, 0.4655511975288391, -0.05337774008512497, -0.13314473628997803, -0.3062928318977356, -0.26499518752098083, 0.25967419147491455, 1.4020224809646606, -0.6667543649673462, -0.29559090733528137, -0.2389414757490158]} +{"t": 4.273, "q": [-0.3643937408924103, -0.02580837532877922, 0.016605950891971588, 0.6020277738571167, -0.28582730889320374, 0.02011076733469963, -0.3866364657878876, 0.013251889497041702, -0.009133272804319859, 0.6107629537582397, -0.29161983728408813, -0.01304815337061882, 0.003347973804920912, -0.001168359536677599, -0.011668450199067593, -2.7107958793640137, 0.7466891407966614, -0.12459999322891235, 1.347206711769104, 0.46553921699523926, -0.0490274652838707, -0.13077186048030853, -0.30623289942741394, -0.26499518752098083, 0.2597341239452362, 1.4020224809646606, -0.6667304039001465, -0.2955789268016815, -0.23900140821933746]} +{"t": 4.2898, "q": [-0.3643340766429901, -0.025816896930336952, 0.01663273386657238, 0.6020107269287109, -0.28582730889320374, 0.02011076733469963, -0.3865768015384674, 0.013243366964161396, -0.009119881317019463, 0.6107373833656311, -0.29161983728408813, -0.0130626130849123, 0.003347973804920912, -0.0010006125085055828, -0.011775374412536621, -2.7218573093414307, 0.7390431761741638, -0.12450411915779114, 1.347674012184143, 0.465299516916275, -0.04645085707306862, -0.12911804020404816, -0.3060411512851715, -0.2650071680545807, 0.2597940266132355, 1.4020705223083496, -0.6667423844337463, -0.29559090733528137, -0.23901338875293732]} +{"t": 4.3065, "q": [-0.3644193112850189, -0.02585950866341591, 0.01664612628519535, 0.6020277738571167, -0.28582730889320374, 0.02011076733469963, -0.38659384846687317, 0.013226322829723358, -0.009160056710243225, 0.6107203364372253, -0.29161983728408813, -0.01304815337061882, 0.003321190131828189, -0.0010005813091993332, -0.01175591442734003, -2.7339494228363037, 0.7308579683303833, -0.12422847747802734, 1.3488725423812866, 0.4649759531021118, -0.0442337766289711, -0.12777580320835114, -0.30605313181877136, -0.2649592459201813, 0.259865939617157, 1.4020824432373047, -0.6667783260345459, -0.29561489820480347, -0.23902536928653717]} +{"t": 4.3233, "q": [-0.3643340766429901, -0.025876551866531372, 0.01664612628519535, 0.6019255518913269, -0.2858189642429352, 0.020096339285373688, -0.3864915668964386, 0.013217801228165627, -0.009146664291620255, 0.610515832901001, -0.29161152243614197, -0.01306264940649271, 0.0034952848218381405, -0.000741093244869262, -0.011940781958401203, -2.7447831630706787, 0.7227566242218018, -0.12390490621328354, 1.3487046957015991, 0.46468833088874817, -0.044317666441202164, -0.12714064121246338, -0.30582544207572937, -0.26497122645378113, 0.25992587208747864, 1.4020824432373047, -0.6668022871017456, -0.2956028878688812, -0.23901338875293732]} +{"t": 4.34, "q": [-0.36422330141067505, -0.025893596932291985, 0.016672909259796143, 0.6019681692123413, -0.28582730889320374, 0.02011076733469963, -0.3863637447357178, 0.013166667893528938, -0.009160056710243225, 0.610584020614624, -0.29161569476127625, -0.013055400922894478, 0.003562244353815913, -0.0006188507541082799, -0.011999212205410004, -2.7553651332855225, 0.7153503894805908, -0.12326974421739578, 1.349615454673767, 0.4643048346042633, -0.043478768318891525, -0.12609802186489105, -0.3058134615421295, -0.2649352550506592, 0.25999775528907776, 1.4020705223083496, -0.6668022871017456, -0.2956268787384033, -0.23909728229045868]} +{"t": 4.3567, "q": [-0.36418068408966064, -0.025893596932291985, 0.01665951870381832, 0.6019340753555298, -0.28582730889320374, 0.02011076733469963, -0.38618478178977966, 0.013200757093727589, -0.009186840616166592, 0.6104817390441895, -0.29161152243614197, -0.01306264940649271, 0.0036292036529630423, -0.00020628358470275998, -0.012291369028389454, -2.7648565769195557, 0.7078123092651367, -0.12294616550207138, 1.3497473001480103, 0.464101105928421, -0.0427117794752121, -0.1255107969045639, -0.3056456744670868, -0.2649472653865814, 0.2600576877593994, 1.4020824432373047, -0.6667423844337463, -0.2956268787384033, -0.23910926282405853]} +{"t": 4.3736, "q": [-0.3641039729118347, -0.025910640135407448, 0.01664612628519535, 0.6019255518913269, -0.2858189344406128, 0.020125260576605797, -0.3861251175403595, 0.013166667893528938, -0.009227016009390354, 0.6104987859725952, -0.2916073799133301, -0.013055436313152313, 0.003562244353815913, 0.00023684361076448113, -0.012564064934849739, -2.77422833442688, 0.7007296085357666, -0.1221671923995018, 1.3502507209777832, 0.4638614356517792, -0.04256796836853027, -0.12475578486919403, -0.3056696355342865, -0.2649472653865814, 0.26015356183052063, 1.4020464420318604, -0.666850209236145, -0.2956388592720032, -0.23915719985961914]} +{"t": 4.3903, "q": [-0.3640613555908203, -0.02592768520116806, 0.016672909259796143, 0.6019255518913269, -0.28582730889320374, 0.02011076733469963, -0.3860825300216675, 0.013175190426409245, -0.009200232103466988, 0.6104646921157837, -0.29161152243614197, -0.01306264940649271, 0.003575636073946953, 0.000909176014829427, -0.01300235465168953, -2.782773017883301, 0.6942341923713684, -0.12162790447473526, 1.3501428365707397, 0.46371760964393616, -0.04224439337849617, -0.12318585067987442, -0.30547788739204407, -0.26497122645378113, 0.260237455368042, 1.4020705223083496, -0.6668621897697449, -0.295650839805603, -0.23922909796237946]} +{"t": 4.407, "q": [-0.36390796303749084, -0.025936206802725792, 0.016699694097042084, 0.6019255518913269, -0.28582730889320374, 0.02011076733469963, -0.38597172498703003, 0.013132579624652863, -0.009186840616166592, 0.6105499267578125, -0.29161569476127625, -0.013040940277278423, 0.003589028026908636, 0.001497764023952186, -0.013367773965001106, -2.7911860942840576, 0.6872234344482422, -0.12050138413906097, 1.3504903316497803, 0.4632622003555298, -0.04189684987068176, -0.11969844251871109, -0.30531013011932373, -0.2649592459201813, 0.2604052424430847, 1.4020705223083496, -0.666850209236145, -0.2956628203392029, -0.23927703499794006]} +{"t": 4.4239, "q": [-0.36377161741256714, -0.025953251868486404, 0.016713086515665054, 0.6019085049629211, -0.28582310676574707, 0.02011801302433014, -0.38586947321891785, 0.013141102157533169, -0.009146664291620255, 0.6105414032936096, -0.29161983728408813, -0.01304815337061882, 0.0035220684949308634, 0.002163792960345745, -0.013801989145576954, -2.7986881732940674, 0.6809556484222412, -0.11973439157009125, 1.3504304885864258, 0.4632022976875305, -0.041489388793706894, -0.11594738066196442, -0.305142343044281, -0.2649352550506592, 0.2607288062572479, 1.4020944833755493, -0.6668621897697449, -0.29567480087280273, -0.23927703499794006]} +{"t": 4.4406, "q": [-0.363524466753006, -0.025961773470044136, 0.016833612695336342, 0.6018999814987183, -0.28581058979034424, 0.020110834389925003, -0.38577571511268616, 0.013141102157533169, -0.009133272804319859, 0.6107118129730225, -0.2916073799133301, -0.013055436313152313, 0.003589028026908636, 0.0027370143216103315, -0.014141779392957687, -2.8059864044189453, 0.6747238636016846, -0.11853597313165665, 1.3512693643569946, 0.4629625976085663, -0.04081827029585838, -0.11411379277706146, -0.3049625754356384, -0.2649352550506592, 0.26110032200813293, 1.4020705223083496, -0.6668741703033447, -0.29567480087280273, -0.23932497203350067]} +{"t": 4.4573, "q": [-0.3636097013950348, -0.025944728404283524, 0.016713086515665054, 0.6019085049629211, -0.2858189642429352, 0.020096339285373688, -0.3857671916484833, 0.013124058023095131, -0.009160056710243225, 0.6107032895088196, -0.2916240096092224, -0.013026426546275616, 0.003589028026908636, 0.0032640942372381687, -0.014500979334115982, -2.8132128715515137, 0.6680966019630432, -0.11731357872486115, 1.351772665977478, 0.4626869559288025, -0.03994342312216759, -0.11304719746112823, -0.304770827293396, -0.2649232745170593, 0.2613879442214966, 1.4020824432373047, -0.6668741703033447, -0.29569876194000244, -0.23933696746826172]} +{"t": 4.474, "q": [-0.36343926191329956, -0.025893596932291985, 0.016726477071642876, 0.601917028427124, -0.2857897877693176, 0.020074812695384026, -0.38569051027297974, 0.013166667893528938, -0.009160056710243225, 0.6108055710792542, -0.29161155223846436, -0.013033710420131683, 0.0036827712319791317, 0.0037081115879118443, -0.014787165448069572, -2.8199241161346436, 0.6622123122215271, -0.11580356955528259, 1.3525036573410034, 0.46261507272720337, -0.0394161157310009, -0.11251989006996155, -0.30448320508003235, -0.2649232745170593, 0.2616875469684601, 1.402058482170105, -0.6668862104415894, -0.29572275280952454, -0.23938490450382233]} +{"t": 4.4908, "q": [-0.36334550380706787, -0.025850985199213028, 0.016699694097042084, 0.6019511222839355, -0.2857981324195862, 0.02006031759083271, -0.3856223225593567, 0.013166667893528938, -0.009146664291620255, 0.6109504699707031, -0.29161569476127625, -0.013040940277278423, 0.0037095551379024982, 0.004264530260115862, -0.01517501287162304, -2.8254969120025635, 0.6569512486457825, -0.11443736404180527, 1.3527793884277344, 0.4626390337944031, -0.038972701877355576, -0.11201655119657516, -0.3041236698627472, -0.2649352550506592, 0.261807382106781, 1.4021064043045044, -0.6668741703033447, -0.2957347333431244, -0.23948077857494354]} +{"t": 4.5075, "q": [-0.36308133602142334, -0.025833941996097565, 0.01664612628519535, 0.6019511222839355, -0.28578564524650574, 0.02003868669271469, -0.3854263126850128, 0.013192234560847282, -0.009146664291620255, 0.6110101342201233, -0.29161155223846436, -0.013033710420131683, 0.003696163184940815, 0.004961247555911541, -0.015663139522075653, -2.8307459354400635, 0.651822030544281, -0.11353854835033417, 1.3536661863327026, 0.4627349078655243, -0.038541268557310104, -0.11056645959615707, -0.303800106048584, -0.2649472653865814, 0.2620111107826233, 1.4020824432373047, -0.6668741703033447, -0.2957347333431244, -0.23964855074882507]} +{"t": 4.5243, "q": [-0.36290237307548523, -0.02580837532877922, 0.01665951870381832, 0.601917028427124, -0.2857731282711029, 0.020031524822115898, -0.385341078042984, 0.013234845362603664, -0.009160056710243225, 0.6110782623291016, -0.2916073799133301, -0.013055436313152313, 0.003669379511848092, 0.005689726211130619, -0.01614256389439106, -2.8356833457946777, 0.6471481919288635, -0.11298727244138718, 1.3542534112930298, 0.4627349078655243, -0.03797800838947296, -0.1095597892999649, -0.30353644490242004, -0.2649112939834595, 0.26227477192878723, 1.4020824432373047, -0.6668862104415894, -0.2957586944103241, -0.23968450725078583]} +{"t": 4.541, "q": [-0.362919420003891, -0.025672022253274918, 0.016672909259796143, 0.6018829345703125, -0.2857773005962372, 0.02002427726984024, -0.38536664843559265, 0.013243366964161396, -0.00906631350517273, 0.6110697388648987, -0.2916240096092224, -0.013026426546275616, 0.0036425956059247255, 0.00655509764328599, -0.016769401729106903, -2.8406567573547363, 0.6432652473449707, -0.11072225868701935, 1.3550204038619995, 0.4624353051185608, -0.037163082510232925, -0.10730675607919693, -0.3031289875507355, -0.2649112939834595, 0.26274216175079346, 1.4020705223083496, -0.6668621897697449, -0.2957586944103241, -0.23987625539302826]} +{"t": 4.5579, "q": [-0.36284270882606506, -0.02568906545639038, 0.016699694097042084, 0.6017636060714722, -0.2857773005962372, 0.02002427726984024, -0.38537517189979553, 0.013217801228165627, -0.008972570300102234, 0.6110612154006958, -0.29164063930511475, -0.01301189512014389, 0.003481892868876457, 0.007412807550281286, -0.017304187640547752, -2.8451988697052, 0.6406646966934204, -0.10892461985349655, 1.3554638624191284, 0.46235141158103943, -0.036024581640958786, -0.1059405505657196, -0.3028533458709717, -0.2649112939834595, 0.26289793848991394, 1.4020824432373047, -0.666850209236145, -0.29577067494392395, -0.23996014893054962]} +{"t": 4.5746, "q": [-0.3628171384334564, -0.02568054385483265, 0.01678004488348961, 0.6016017198562622, -0.2857773005962372, 0.02002427726984024, -0.38546040654182434, 0.013234845362603664, -0.008825259283185005, 0.6110697388648987, -0.29164478182792664, -0.013019108213484287, 0.003441717242822051, 0.00836174190044403, -0.017908481881022453, -2.8494653701782227, 0.6384116411209106, -0.10578475892543793, 1.3559072017669678, 0.46177616715431213, -0.034514568746089935, -0.1043945848941803, -0.3024458885192871, -0.2648993134498596, 0.2632814347743988, 1.4020824432373047, -0.666850209236145, -0.29577067494392395, -0.2400919646024704]} +{"t": 4.5913, "q": [-0.362774521112442, -0.025663498789072037, 0.01678004488348961, 0.6013971567153931, -0.285768985748291, 0.02000986970961094, -0.3854774534702301, 0.013234845362603664, -0.00873151607811451, 0.6110782623291016, -0.2916323244571686, -0.01302639115601778, 0.0034149333368986845, 0.009075420908629894, -0.018351318314671516, -2.8543787002563477, 0.6362305283546448, -0.10393918305635452, 1.356266736984253, 0.46094924211502075, -0.03177018091082573, -0.1022733747959137, -0.302002489566803, -0.2648993134498596, 0.26368892192840576, 1.4020824432373047, -0.6668741703033447, -0.29579463601112366, -0.24017585813999176]} +{"t": 4.608, "q": [-0.3626807928085327, -0.025672022253274918, 0.01678004488348961, 0.6011926531791687, -0.2857523262500763, 0.01999550312757492, -0.3855115473270416, 0.013226322829723358, -0.008691340684890747, 0.6110867857933044, -0.29163646697998047, -0.013048063963651657, 0.0033747577108442783, 0.009652442298829556, -0.018705269321799278, -2.858633279800415, 0.6344568729400635, -0.10224940627813339, 1.356266736984253, 0.46042194962501526, -0.02930143103003502, -0.09948105365037918, -0.30133137106895447, -0.26488733291625977, 0.26401248574256897, 1.4020824432373047, -0.6668741703033447, -0.2958066463470459, -0.24025975167751312]} +{"t": 4.6248, "q": [-0.36251887679100037, -0.025663498789072037, 0.01679343730211258, 0.6010648012161255, -0.2857523262500763, 0.01996658183634281, -0.3855115473270416, 0.013243366964161396, -0.008584205061197281, 0.611189067363739, -0.29163646697998047, -0.013048063963651657, 0.0034149333368986845, 0.010115603916347027, -0.01901472918689251, -2.862743854522705, 0.63246750831604, -0.10075138509273529, 1.3565423488616943, 0.4594152867794037, -0.025981800630688667, -0.09519070386886597, -0.3006482720375061, -0.2648753523826599, 0.2643360495567322, 1.4021064043045044, -0.6668741703033447, -0.29579463601112366, -0.24037958681583405]} +{"t": 4.6415, "q": [-0.36247625946998596, -0.025646455585956573, 0.01678004488348961, 0.6009966135025024, -0.2857523262500763, 0.01996658183634281, -0.38550302386283875, 0.013320066034793854, -0.008597597479820251, 0.6111634969711304, -0.2916572093963623, -0.013069665990769863, 0.0034149333368986845, 0.010586473159492016, -0.019330265000462532, -2.8664228916168213, 0.6313649415969849, -0.09876199811697006, 1.3566622734069824, 0.4584924876689911, -0.024268055334687233, -0.0917632132768631, -0.29984530806541443, -0.2648513913154602, 0.2646356523036957, 1.4021064043045044, -0.6668741703033447, -0.2958066463470459, -0.24057133495807648]} +{"t": 4.6583, "q": [-0.36247625946998596, -0.025612367317080498, 0.016726477071642876, 0.6009795665740967, -0.2857440114021301, 0.01995217241346836, -0.38550302386283875, 0.01326893363147974, -0.008570813573896885, 0.6111549735069275, -0.29166552424430847, -0.013084108941257, 0.003441717242822051, 0.01101178489625454, -0.019625980406999588, -2.869371175765991, 0.6306219100952148, -0.09555022418498993, 1.3568180799484253, 0.45695850253105164, -0.02346511371433735, -0.09038502722978592, -0.2991023063659668, -0.2648513913154602, 0.2648513913154602, 1.402118444442749, -0.6668741703033447, -0.2958066463470459, -0.24084697663784027]} +{"t": 4.675, "q": [-0.3624251186847687, -0.025603843852877617, 0.016713086515665054, 0.6009284257888794, -0.28572317957878113, 0.01991613395512104, -0.3855115473270416, 0.013294500298798084, -0.008624380454421043, 0.6111975908279419, -0.29167377948760986, -0.013112993910908699, 0.0034952848218381405, 0.01137630920857191, -0.01985291577875614, -2.8730382919311523, 0.6305140852928162, -0.09131979942321777, 1.3570576906204224, 0.45375871658325195, -0.022901853546500206, -0.08937834948301315, -0.29849109053611755, -0.26469558477401733, 0.2651509940624237, 1.4020944833755493, -0.6669221520423889, -0.29579463601112366, -0.24115855991840363]} +{"t": 4.6917, "q": [-0.3624677360057831, -0.025595322251319885, 0.016699694097042084, 0.6009113788604736, -0.28573155403137207, 0.019901638850569725, -0.3855626583099365, 0.013311544433236122, -0.008597597479820251, 0.6112146377563477, -0.29168206453323364, -0.01314189750701189, 0.0034283252898603678, 0.011634512804448605, -0.02001064456999302, -2.8766214847564697, 0.6307297945022583, -0.0875687301158905, 1.3572015762329102, 0.4516015648841858, -0.022003037855029106, -0.08835969120264053, -0.2980476915836334, -0.2644798755645752, 0.26531875133514404, 1.4021064043045044, -0.6668862104415894, -0.2958306074142456, -0.24161396920681]} +{"t": 4.7085, "q": [-0.36243364214897156, -0.02556975558400154, 0.016699694097042084, 0.6008602976799011, -0.28571486473083496, 0.01990172453224659, -0.3855626583099365, 0.013303021900355816, -0.008557421155273914, 0.6112231612205505, -0.29168206453323364, -0.013156375847756863, 0.0034149333368986845, 0.011847162619233131, -0.02014857530593872, -2.8801448345184326, 0.6316525340080261, -0.08410529047250748, 1.3572853803634644, 0.4499477446079254, -0.021763352677226067, -0.08749683201313019, -0.2975323498249054, -0.26424017548561096, 0.2655464708805084, 1.4021064043045044, -0.6669221520423889, -0.29584258794784546, -0.24185365438461304]} +{"t": 4.7252, "q": [-0.36239954829216003, -0.025595322251319885, 0.016726477071642876, 0.6008602976799011, -0.2857273817062378, 0.0198944341391325, -0.3855626583099365, 0.013311544433236122, -0.008597597479820251, 0.6112061142921448, -0.29168620705604553, -0.013163588009774685, 0.0034015413839370012, 0.011900347657501698, -0.020202573388814926, -2.884279489517212, 0.632407546043396, -0.08213987946510315, 1.3577648401260376, 0.44843772053718567, -0.02070874162018299, -0.0866459459066391, -0.2971848249435425, -0.26401248574256897, 0.2659299671649933, 1.402130365371704, -0.6668981909751892, -0.295878529548645, -0.2422850877046585]} +{"t": 4.7419, "q": [-0.3624506890773773, -0.025603843852877617, 0.016726477071642876, 0.6008772850036621, -0.2857232093811035, 0.019901681691408157, -0.3855626583099365, 0.013337111100554466, -0.008597597479820251, 0.611189067363739, -0.2916737496852875, -0.013170871883630753, 0.003347973804920912, 0.011915525421500206, -0.020202668383717537, -2.887946605682373, 0.633749783039093, -0.07995875179767609, 1.357824683189392, 0.44659215211868286, -0.02033722959458828, -0.08565125614404678, -0.2968372702598572, -0.26382073760032654, 0.26624155044555664, 1.402130365371704, -0.6668862104415894, -0.2958905100822449, -0.24264460802078247]} +{"t": 4.7587, "q": [-0.36248478293418884, -0.025612367317080498, 0.016713086515665054, 0.600885808467865, -0.2857232093811035, 0.019887229427695274, -0.3855797052383423, 0.013303021900355816, -0.008624380454421043, 0.6111720204353333, -0.2916695773601532, -0.013163641095161438, 0.0033881496638059616, 0.011877563782036304, -0.020187795162200928, -2.891913414001465, 0.6352118849754333, -0.07679491490125656, 1.3577767610549927, 0.44460275769233704, -0.019893813878297806, -0.08458466082811356, -0.2965856194496155, -0.2637368440628052, 0.26661306619644165, 1.4021064043045044, -0.6668981909751892, -0.2958905100822449, -0.24307604134082794]} +{"t": 4.7755, "q": [-0.36251887679100037, -0.025612367317080498, 0.016726477071642876, 0.600885808467865, -0.28573158383369446, 0.019887186586856842, -0.3855797052383423, 0.013320066034793854, -0.00865116436034441, 0.6111294031143188, -0.29165709018707275, -0.013214342296123505, 0.003347973804920912, 0.011862386018037796, -0.020187702029943466, -2.8954966068267822, 0.6373929977416992, -0.07324758172035217, 1.35759699344635, 0.4435122013092041, -0.019726034253835678, -0.08345814794301987, -0.29636988043785095, -0.2637009024620056, 0.2667568624019623, 1.4021064043045044, -0.6669341325759888, -0.2958905100822449, -0.2434595376253128]} +{"t": 4.7922, "q": [-0.3624592125415802, -0.025646455585956573, 0.01678004488348961, 0.600868821144104, -0.2857273817062378, 0.0198944341391325, -0.3855711817741394, 0.01332858856767416, -0.008624380454421043, 0.6111123561859131, -0.2916695773601532, -0.01320704072713852, 0.003361365757882595, 0.011869980953633785, -0.020192628726363182, -2.8984687328338623, 0.6400894522666931, -0.06863366067409515, 1.3575490713119507, 0.4425414800643921, -0.019462382420897484, -0.0815766230225563, -0.29621410369873047, -0.2637009024620056, 0.2669486105442047, 1.402130365371704, -0.666994035243988, -0.295878529548645, -0.24410668015480042]} +{"t": 4.8089, "q": [-0.36244216561317444, -0.02562941052019596, 0.016860397532582283, 0.6008772850036621, -0.28573155403137207, 0.019901638850569725, -0.38555413484573364, 0.013362676836550236, -0.008557421155273914, 0.6111294031143188, -0.29166126251220703, -0.013207076117396355, 0.0033881496638059616, 0.011900382116436958, -0.02023184858262539, -2.9009134769439697, 0.6427260041236877, -0.06500244140625, 1.3574411869049072, 0.4420860707759857, -0.01937849260866642, -0.07958724349737167, -0.29611822962760925, -0.26359304785728455, 0.2670804560184479, 1.402130365371704, -0.6669820547103882, -0.2959024906158447, -0.24472986161708832]} +{"t": 4.8258, "q": [-0.3624677360057831, -0.025646455585956573, 0.016847005113959312, 0.6008772850036621, -0.28573572635650635, 0.019894391298294067, -0.38555413484573364, 0.01341380923986435, -0.008544029667973518, 0.6111294031143188, -0.2916654050350189, -0.013199827633798122, 0.0033747577108442783, 0.011900382116436958, -0.02023184858262539, -2.903226613998413, 0.6459497213363647, -0.06266551464796066, 1.3574771881103516, 0.4419183135032654, -0.019234681501984596, -0.07630356401205063, -0.2960822582244873, -0.2634012997150421, 0.2674998939037323, 1.4021064043045044, -0.666994035243988, -0.2959264814853668, -0.24541296064853668]} +{"t": 4.8425, "q": [-0.3624506890773773, -0.02562941052019596, 0.016887180507183075, 0.6009113788604736, -0.28573155403137207, 0.019901638850569725, -0.38555413484573364, 0.013567207381129265, -0.008584205061197281, 0.611120879650116, -0.2916654050350189, -0.013199827633798122, 0.003468500915914774, 0.011885193176567554, -0.020221997052431107, -2.9050841331481934, 0.6483226418495178, -0.061407171189785004, 1.3574292659759521, 0.44202616810798645, -0.019210712984204292, -0.07218098640441895, -0.29602235555648804, -0.2631376385688782, 0.2679193317890167, 1.402130365371704, -0.6670179963111877, -0.2959264814853668, -0.24597622454166412]} +{"t": 4.8592, "q": [-0.362544447183609, -0.025612367317080498, 0.016833612695336342, 0.6009880900382996, -0.2857232093811035, 0.019901681691408157, -0.38554561138153076, 0.013609818182885647, -0.00865116436034441, 0.6111038327217102, -0.2916654050350189, -0.013199827633798122, 0.00354885240085423, 0.011794115416705608, -0.02021167427301407, -2.9065940380096436, 0.6517021656036377, -0.06067613139748573, 1.357537031173706, 0.44205012917518616, -0.018887139856815338, -0.06958041340112686, -0.29602235555648804, -0.2628140449523926, 0.26848259568214417, 1.402130365371704, -0.6670659184455872, -0.2959384620189667, -0.24664734303951263]} +{"t": 4.876, "q": [-0.3625529706478119, -0.025612367317080498, 0.016833612695336342, 0.6010477542877197, -0.28571900725364685, 0.019908929243683815, -0.3855200707912445, 0.013643906451761723, -0.008691340684890747, 0.6111038327217102, -0.2916695773601532, -0.013192580081522465, 0.003589028026908636, 0.011536059901118279, -0.020180800929665565, -2.907900333404541, 0.6552255153656006, -0.060220733284950256, 1.3576090335845947, 0.44225385785102844, -0.018743328750133514, -0.06888532638549805, -0.29602235555648804, -0.2623347043991089, 0.26891404390335083, 1.402130365371704, -0.6670179963111877, -0.2959384620189667, -0.24739035964012146]} +{"t": 4.8927, "q": [-0.3626040816307068, -0.02562941052019596, 0.016766652464866638, 0.6011670827865601, -0.28571900725364685, 0.019908929243683815, -0.3854774534702301, 0.013643906451761723, -0.008718123659491539, 0.6110782623291016, -0.29165711998939514, -0.013199863955378532, 0.0036024199798703194, 0.01127050444483757, -0.020223068073391914, -2.9091107845306396, 0.6587368845939636, -0.05962152034044266, 1.3576209545135498, 0.44230180978775024, -0.018635470420122147, -0.06878945231437683, -0.29602235555648804, -0.26186731457710266, 0.2692016661167145, 1.4021064043045044, -0.6670179963111877, -0.29597440361976624, -0.248301163315773]} +{"t": 4.9094, "q": [-0.3626381754875183, -0.025612367317080498, 0.01680682972073555, 0.601243793964386, -0.28572317957878113, 0.01991613395512104, -0.3854348361492157, 0.013592774048447609, -0.008704732172191143, 0.611027181148529, -0.2916446626186371, -0.013178207911550999, 0.0036292036529630423, 0.010997387580573559, -0.02028968185186386, -2.9102373123168945, 0.6625598669052124, -0.05915413424372673, 1.3576329946517944, 0.44232577085494995, -0.01858753338456154, -0.06870556622743607, -0.2960103750228882, -0.2614598274230957, 0.26946529746055603, 1.402130365371704, -0.6670060157775879, -0.29599836468696594, -0.24935577809810638]} +{"t": 4.9262, "q": [-0.3626381754875183, -0.025612367317080498, 0.016873788088560104, 0.601260781288147, -0.2857273519039154, 0.019937807694077492, -0.38541778922080994, 0.013558685779571533, -0.008677948266267776, 0.6109930872917175, -0.2916487753391266, -0.013199899345636368, 0.0036024199798703194, 0.010739458724856377, -0.02036614716053009, -2.9112799167633057, 0.6658076047897339, -0.05893842130899429, 1.3576569557189941, 0.44257745146751404, -0.018575549125671387, -0.06871754676103592, -0.29602235555648804, -0.26112428307533264, 0.26963308453559875, 1.4021064043045044, -0.6669461131095886, -0.29602235555648804, -0.2503504753112793]} +{"t": 4.9429, "q": [-0.36262112855911255, -0.025612367317080498, 0.016887180507183075, 0.6013374924659729, -0.2857356667518616, 0.019952215254306793, -0.38532406091690063, 0.013575729914009571, -0.00866455677896738, 0.6109930872917175, -0.29165297746658325, -0.013178172521293163, 0.003589028026908636, 0.01024617813527584, -0.020358210429549217, -2.9122745990753174, 0.6683242917060852, -0.05843508243560791, 1.3576449155807495, 0.44272124767303467, -0.018455706536769867, -0.06869357824325562, -0.2959624230861664, -0.26092055439949036, 0.2698487937450409, 1.402118444442749, -0.6669461131095886, -0.2960582971572876, -0.2510455548763275]} +{"t": 4.9598, "q": [-0.3626466989517212, -0.025612367317080498, 0.016887180507183075, 0.6014823913574219, -0.2857440114021301, 0.01995217241346836, -0.3852558732032776, 0.01350755337625742, -0.008704732172191143, 0.6109248995780945, -0.29165297746658325, -0.013163712806999683, 0.003589028026908636, 0.00958591140806675, -0.020329775288701057, -2.913137435913086, 0.6695466637611389, -0.0583871454000473, 1.3576329946517944, 0.4429849088191986, -0.01852761209011078, -0.06869357824325562, -0.2958545684814453, -0.2607647478580475, 0.27018436789512634, 1.402130365371704, -0.6669341325759888, -0.2960582971572876, -0.25151294469833374]} +{"t": 4.9766, "q": [-0.36266374588012695, -0.025603843852877617, 0.016887180507183075, 0.6016017198562622, -0.285748153924942, 0.01997382938861847, -0.3851450979709625, 0.01347346417605877, -0.008677948266267776, 0.6108567118644714, -0.2916364073753357, -0.013134862296283245, 0.003655987558886409, 0.00875853281468153, -0.02027191035449505, -2.913712739944458, 0.6698702573776245, -0.05843508243560791, 1.3576329946517944, 0.443032830953598, -0.01852761209011078, -0.06871754676103592, -0.29579463601112366, -0.26066887378692627, 0.27043601870536804, 1.402130365371704, -0.6669580936431885, -0.2960582971572876, -0.2517526149749756]} +{"t": 4.9933, "q": [-0.36266374588012695, -0.02562088891863823, 0.016833612695336342, 0.601772129535675, -0.28576067090034485, 0.019981008023023605, -0.384966105222702, 0.013362676836550236, -0.008744907565414906, 0.6107970476150513, -0.2916364073753357, -0.013134862296283245, 0.003696163184940815, 0.008037417195737362, -0.020185526460409164, -2.913952350616455, 0.6700739860534668, -0.0586627833545208, 1.3576449155807495, 0.44352418184280396, -0.018635470420122147, -0.06874151527881622, -0.2958306074142456, -0.2606568932533264, 0.2708195149898529, 1.4021064043045044, -0.6669580936431885, -0.29607027769088745, -0.2520761787891388]} +{"t": 5.01, "q": [-0.3626807928085327, -0.025646455585956573, 0.016860397532582283, 0.6018658876419067, -0.28576481342315674, 0.020002664998173714, -0.3848809003829956, 0.01326893363147974, -0.008718123659491539, 0.6107288599014282, -0.2916322648525238, -0.013098711147904396, 0.003655987558886409, 0.007544167339801788, -0.020256878808140755, -2.91396427154541, 0.6702657341957092, -0.05886651575565338, 1.3576809167861938, 0.44354817271232605, -0.01865943893790245, -0.06874151527881622, -0.29581862688064575, -0.26066887378692627, 0.2710472345352173, 1.4021064043045044, -0.6669700741767883, -0.2960822582244873, -0.2523758113384247]} +{"t": 5.0268, "q": [-0.3626381754875183, -0.025663498789072037, 0.016913963481783867, 0.6019681692123413, -0.285768985748291, 0.02000986970961094, -0.38468489050865173, 0.013200757093727589, -0.008691340684890747, 0.6104987859725952, -0.29158663749694824, -0.013019355945289135, 0.0036158119328320026, 0.007248217239975929, -0.020299693569540977, -2.9140002727508545, 0.6710087656974792, -0.05933389812707901, 1.3577167987823486, 0.44387173652648926, -0.01865943893790245, -0.06876548379659653, -0.29581862688064575, -0.26064491271972656, 0.2713947594165802, 1.4020944833755493, -0.6669461131095886, -0.2960582971572876, -0.25268739461898804]} +{"t": 5.0436, "q": [-0.3626893162727356, -0.025714632123708725, 0.0169675312936306, 0.6020362973213196, -0.28578981757164, 0.02004590816795826, -0.3846081793308258, 0.013141102157533169, -0.008624380454421043, 0.610140860080719, -0.2915576100349426, -0.012968851253390312, 0.0035220684949308634, 0.007172372657805681, -0.02036772109568119, -2.9140121936798096, 0.6719794869422913, -0.05952564626932144, 1.3577167987823486, 0.44391965866088867, -0.018635470420122147, -0.06876548379659653, -0.2958066463470459, -0.2605849802494049, 0.2714906334877014, 1.4021064043045044, -0.6669580936431885, -0.2961062490940094, -0.2528431713581085]} +{"t": 5.0604, "q": [-0.3626552224159241, -0.025774287059903145, 0.017034491524100304, 0.6019852161407471, -0.2857981324195862, 0.02006031759083271, -0.3845059275627136, 0.013098491355776787, -0.008503853343427181, 0.6097488403320312, -0.29152441024780273, -0.012911133468151093, 0.003468500915914774, 0.007179965730756521, -0.020372627303004265, -2.914275884628296, 0.6735973358154297, -0.060088906437158585, 1.357824683189392, 0.4445308744907379, -0.018635470420122147, -0.06875350326299667, -0.29581862688064575, -0.26050111651420593, 0.27170634269714355, 1.402130365371704, -0.6669341325759888, -0.29611822962760925, -0.25301095843315125]} +{"t": 5.0771, "q": [-0.36267226934432983, -0.025774287059903145, 0.017208585515618324, 0.6019596457481384, -0.2857897877693176, 0.020074812695384026, -0.384480357170105, 0.013098491355776787, -0.00832975935190916, 0.6095017194747925, -0.29151612520217896, -0.012896709144115448, 0.003481892868876457, 0.007202737033367157, -0.020377591252326965, -2.914527654647827, 0.6751193404197693, -0.06067613139748573, 1.3578007221221924, 0.44484245777130127, -0.0186474546790123, -0.06874151527881622, -0.29579463601112366, -0.26034530997276306, 0.27188611030578613, 1.402130365371704, -0.6669341325759888, -0.2961302101612091, -0.25308287143707275]} +{"t": 5.0939, "q": [-0.36267226934432983, -0.025765765458345413, 0.017342504113912582, 0.60199373960495, -0.2857897877693176, 0.020074812695384026, -0.38448888063430786, 0.013072924688458443, -0.008169055916368961, 0.6093738675117493, -0.2915036976337433, -0.012860593385994434, 0.003468500915914774, 0.0072103226557374, -0.020372740924358368, -2.914958953857422, 0.6769169569015503, -0.060999706387519836, 1.357920527458191, 0.4454057216644287, -0.018575549125671387, -0.06874151527881622, -0.2957826554775238, -0.25999775528907776, 0.2719939649105072, 1.402130365371704, -0.6669461131095886, -0.29611822962760925, -0.2530948519706726]} +{"t": 5.1107, "q": [-0.3626893162727356, -0.025791330263018608, 0.017409464344382286, 0.6019681692123413, -0.28578972816467285, 0.020103733986616135, -0.38449740409851074, 0.013098491355776787, -0.008102096617221832, 0.6092801094055176, -0.291499525308609, -0.012867840938270092, 0.0034149333368986845, 0.007195130456238985, -0.0203531663864851, -2.9153544902801514, 0.6783670783042908, -0.061239391565322876, 1.3579565286636353, 0.4457532465457916, -0.018551580607891083, -0.06872953474521637, -0.29577067494392395, -0.25960227847099304, 0.27202993631362915, 1.402130365371704, -0.6669461131095886, -0.29611822962760925, -0.25313079357147217]} +{"t": 5.1275, "q": [-0.36270636320114136, -0.025774287059903145, 0.017369288951158524, 0.6019340753555298, -0.2857814133167267, 0.020089324563741684, -0.384480357170105, 0.013107013888657093, -0.008088705129921436, 0.609177827835083, -0.29149121046066284, -0.012882336974143982, 0.0034015413839370012, 0.007195137441158295, -0.02036292664706707, -2.916013717651367, 0.6806080937385559, -0.061706773936748505, 1.3581123352050781, 0.4461846947669983, -0.01841975376009941, -0.06874151527881622, -0.29569876194000244, -0.2592427730560303, 0.2721976935863495, 1.402118444442749, -0.6669101715087891, -0.2961062490940094, -0.25317874550819397]} +{"t": 5.1442, "q": [-0.3626893162727356, -0.0257487203925848, 0.017396071925759315, 0.6018914580345154, -0.28578972816467285, 0.020103733986616135, -0.38448888063430786, 0.013098491355776787, -0.008088705129921436, 0.6091693043708801, -0.29148706793785095, -0.01287512481212616, 0.003361365757882595, 0.007225501351058483, -0.020372796803712845, -2.9166128635406494, 0.6827653050422668, -0.06181463226675987, 1.3582441806793213, 0.4466041326522827, -0.018323879688978195, -0.06876548379659653, -0.2957107722759247, -0.25900307297706604, 0.27228158712387085, 1.402118444442749, -0.6669580936431885, -0.2961302101612091, -0.2532266676425934]} +{"t": 5.1609, "q": [-0.36267226934432983, -0.025791330263018608, 0.017396071925759315, 0.6018147468566895, -0.2857897877693176, 0.020074812695384026, -0.3845144510269165, 0.013132579624652863, -0.008102096617221832, 0.6091523170471191, -0.291499525308609, -0.012867840938270092, 0.003321190131828189, 0.00725585175678134, -0.020363152027130127, -2.917571544647217, 0.6857972741127014, -0.06261757761240005, 1.3584239482879639, 0.4475269317626953, -0.018084196373820305, -0.06876548379659653, -0.29572275280952454, -0.2588832378387451, 0.27237746119499207, 1.4020944833755493, -0.6669580936431885, -0.29614219069480896, -0.2533225417137146]} +{"t": 5.1777, "q": [-0.36266374588012695, -0.025731675326824188, 0.017369288951158524, 0.6016698479652405, -0.28577306866645813, 0.020074917003512383, -0.38454002141952515, 0.013175190426409245, -0.008115489035844803, 0.609092652797699, -0.2915036678314209, -0.012875053100287914, 0.0033747577108442783, 0.007286207750439644, -0.02036326378583908, -2.918745994567871, 0.6881341934204102, -0.0629051998257637, 1.3584598302841187, 0.4484616816043854, -0.017904432490468025, -0.06876548379659653, -0.29569876194000244, -0.2587634027004242, 0.27242541313171387, 1.402130365371704, -0.6669580936431885, -0.29611822962760925, -0.2533704936504364]} +{"t": 5.1945, "q": [-0.3627234101295471, -0.025646455585956573, 0.017235370352864265, 0.6015846729278564, -0.2857814133167267, 0.02007487416267395, -0.384548544883728, 0.013294500298798084, -0.008209232240915298, 0.6089051365852356, -0.2915036678314209, -0.012875053100287914, 0.003361365757882595, 0.007271023001521826, -0.020353449508547783, -2.9202561378479004, 0.6904830932617188, -0.06362425535917282, 1.3586516380310059, 0.4507506787776947, -0.01774863712489605, -0.06876548379659653, -0.2956388592720032, -0.2586555480957031, 0.27270105481147766, 1.4021424055099487, -0.6669580936431885, -0.2961302101612091, -0.2534424066543579]} +{"t": 5.2113, "q": [-0.36270636320114136, -0.02562088891863823, 0.017088059335947037, 0.601473867893219, -0.2857772707939148, 0.020053181797266006, -0.38454002141952515, 0.01341380923986435, -0.008302975445985794, 0.6087517738342285, -0.29149535298347473, -0.012889549136161804, 0.003347973804920912, 0.0072634234093129635, -0.02033878304064274, -2.92181396484375, 0.6923766136169434, -0.06376805901527405, 1.3587474822998047, 0.4519011676311493, -0.017616810277104378, -0.06878945231437683, -0.2956268787384033, -0.25863155722618103, 0.2727489769458771, 1.402130365371704, -0.6669580936431885, -0.29611822962760925, -0.25351428985595703]} +{"t": 5.228, "q": [-0.3627404570579529, -0.025544188916683197, 0.01695414073765278, 0.601405680179596, -0.2857772707939148, 0.020053181797266006, -0.384548544883728, 0.013567207381129265, -0.008423502556979656, 0.6086324453353882, -0.2915036678314209, -0.012889531441032887, 0.0034149333368986845, 0.00725583778694272, -0.020343635231256485, -2.923539876937866, 0.6949652433395386, -0.06423544883728027, 1.3589032888412476, 0.45313555002212524, -0.017616810277104378, -0.06886135786771774, -0.2956388592720032, -0.2586555480957031, 0.272784948348999, 1.402130365371704, -0.6669221520423889, -0.2961062490940094, -0.2537420094013214]} +{"t": 5.2447, "q": [-0.3626552224159241, -0.025476012378931046, 0.016927355900406837, 0.6012182235717773, -0.28576478362083435, 0.02003156766295433, -0.38453149795532227, 0.013592774048447609, -0.008423502556979656, 0.6085813045501709, -0.29149121046066284, -0.012911275960505009, 0.003361365757882595, 0.007286200765520334, -0.02035350538790226, -2.9248459339141846, 0.6971343755722046, -0.06457100808620453, 1.3589032888412476, 0.4541901648044586, -0.017592841759324074, -0.0689452514052391, -0.2956388592720032, -0.25863155722618103, 0.27280890941619873, 1.402130365371704, -0.6669341325759888, -0.2961062490940094, -0.25425732135772705]} +{"t": 5.2615, "q": [-0.3626040816307068, -0.02550157904624939, 0.0169675312936306, 0.6011074185371399, -0.2857606112957001, 0.020024362951517105, -0.38453149795532227, 0.013618340715765953, -0.008410110138356686, 0.608572781085968, -0.29149532318115234, -0.012932966463267803, 0.003334582084789872, 0.007286200765520334, -0.02035350538790226, -2.926056385040283, 0.6994113922119141, -0.06461894512176514, 1.3589632511138916, 0.45426204800605774, -0.017592841759324074, -0.0689452514052391, -0.29559090733528137, -0.25857165455818176, 0.27302461862564087, 1.402130365371704, -0.6670539379119873, -0.29611822962760925, -0.25485652685165405]} +{"t": 5.2783, "q": [-0.3626040816307068, -0.025484533980488777, 0.0169675312936306, 0.6010648012161255, -0.28574812412261963, 0.02000275067985058, -0.38454002141952515, 0.01369503978639841, -0.008450286462903023, 0.6085642576217651, -0.29149532318115234, -0.012932966463267803, 0.0033881496638059616, 0.007308958098292351, -0.02033895254135132, -2.9274227619171143, 0.7013887763023376, -0.06471481919288635, 1.359023094177246, 0.4545257091522217, -0.01752093806862831, -0.06895723193883896, -0.29559090733528137, -0.25847578048706055, 0.2733122408390045, 1.402118444442749, -0.6670299768447876, -0.29611822962760925, -0.25593510270118713]} +{"t": 5.295, "q": [-0.362587034702301, -0.025527145713567734, 0.01699431613087654, 0.6009795665740967, -0.2857397496700287, 0.020017262548208237, -0.3845655918121338, 0.013822871260344982, -0.008490461856126785, 0.608572781085968, -0.29149118065834045, -0.012940214946866035, 0.0034015413839370012, 0.007331715431064367, -0.020324399694800377, -2.9285972118377686, 0.703905463218689, -0.06482267379760742, 1.3591909408569336, 0.45483729243278503, -0.01756887510418892, -0.06905310600996017, -0.29559090733528137, -0.25827205181121826, 0.2735639214515686, 1.402130365371704, -0.6670419573783875, -0.29609423875808716, -0.2571095824241638]} +{"t": 5.3118, "q": [-0.3625614643096924, -0.02551010064780712, 0.0169675312936306, 0.6009199023246765, -0.2857397496700287, 0.020017262548208237, -0.38457411527633667, 0.013882526196539402, -0.008530637249350548, 0.6085642576217651, -0.2914828360080719, -0.012969170697033405, 0.0033881496638059616, 0.007362065836787224, -0.02031475305557251, -2.9296157360076904, 0.7058828473091125, -0.06495450437068939, 1.3592628240585327, 0.45495715737342834, -0.01752093806862831, -0.06910104304552078, -0.29561489820480347, -0.2580922842025757, 0.2736477851867676, 1.4021064043045044, -0.6669820547103882, -0.2961062490940094, -0.2584398090839386]} +{"t": 5.3285, "q": [-0.3625018298625946, -0.025518624112010002, 0.01698092371225357, 0.6008176803588867, -0.2857356369495392, 0.01998111978173256, -0.3845570683479309, 0.013908091932535172, -0.008557421155273914, 0.608572781085968, -0.2914869785308838, -0.012976383790373802, 0.0034015413839370012, 0.007400022353976965, -0.020329531282186508, -2.9306464195251465, 0.7077643871307373, -0.06487061083316803, 1.3593347072601318, 0.4550650119781494, -0.01746101677417755, -0.06914898008108139, -0.29559090733528137, -0.25775671005249023, 0.2737916111946106, 1.4021064043045044, -0.6670659184455872, -0.2961302101612091, -0.2591348886489868]} +{"t": 5.3454, "q": [-0.36253592371940613, -0.025493057444691658, 0.016940748319029808, 0.6008176803588867, -0.2857397794723511, 0.019988324493169785, -0.384548544883728, 0.013908091932535172, -0.008570813573896885, 0.6085216403007507, -0.29147869348526, -0.012961958535015583, 0.0034015413839370012, 0.007392422761768103, -0.020314866676926613, -2.931748867034912, 0.7092384099960327, -0.06484664231538773, 1.3593946695327759, 0.4551488757133484, -0.017233315855264664, -0.06920889765024185, -0.2955789268016815, -0.2574690878391266, 0.2739713788032532, 1.402130365371704, -0.6670060157775879, -0.2961062490940094, -0.25939854979515076]} +{"t": 5.3622, "q": [-0.36253592371940613, -0.025493057444691658, 0.016927355900406837, 0.6008517742156982, -0.28574812412261963, 0.02000275067985058, -0.3845144510269165, 0.013976269401609898, -0.00865116436034441, 0.608504593372345, -0.29147037863731384, -0.012990915216505527, 0.0034551091957837343, 0.00738483713939786, -0.02031971700489521, -2.932539939880371, 0.7102810740470886, -0.06485863029956818, 1.359406590461731, 0.45543649792671204, -0.0171494260430336, -0.06925683468580246, -0.2955789268016815, -0.25720545649528503, 0.27415114641189575, 1.402118444442749, -0.6670299768447876, -0.29609423875808716, -0.25947046279907227]} +{"t": 5.3789, "q": [-0.3625614643096924, -0.02550157904624939, 0.016913963481783867, 0.600868821144104, -0.28574395179748535, 0.01999552920460701, -0.384480357170105, 0.01401888020336628, -0.008677948266267776, 0.6084619760513306, -0.29147037863731384, -0.012990915216505527, 0.0034551091957837343, 0.007369644474238157, -0.02030014432966709, -2.9329473972320557, 0.7110720276832581, -0.06485863029956818, 1.3593946695327759, 0.455472469329834, -0.017173394560813904, -0.06937667727470398, -0.29559090733528137, -0.25707361102104187, 0.2743189036846161, 1.402130365371704, -0.6670299768447876, -0.29609423875808716, -0.2595663368701935]} +{"t": 5.3957, "q": [-0.362544447183609, -0.025493057444691658, 0.016927355900406837, 0.600868821144104, -0.2857397794723511, 0.019988324493169785, -0.38444626331329346, 0.014010357670485973, -0.008677948266267776, 0.6084619760513306, -0.2914620637893677, -0.01299096830189228, 0.0035220684949308634, 0.007354473229497671, -0.020309844985604286, -2.933115243911743, 0.7117431163787842, -0.06490656733512878, 1.3594425916671753, 0.4557361304759979, -0.017185378819704056, -0.06941263377666473, -0.2956028878688812, -0.25700169801712036, 0.27447471022605896, 1.4021064043045044, -0.6670779585838318, -0.29609423875808716, -0.25962626934051514]} +{"t": 5.4124, "q": [-0.36253592371940613, -0.025458969175815582, 0.01695414073765278, 0.6009113788604736, -0.28574812412261963, 0.02000275067985058, -0.3844292163848877, 0.013993313536047935, -0.00865116436034441, 0.6084534525871277, -0.29147452116012573, -0.01296920608729124, 0.0034952848218381405, 0.007392429746687412, -0.020324625074863434, -2.9331631660461426, 0.7121865749359131, -0.06506235897541046, 1.3594425916671753, 0.4565989673137665, -0.01722133159637451, -0.06946057081222534, -0.29559090733528137, -0.2569178342819214, 0.27452266216278076, 1.4021064043045044, -0.6670179963111877, -0.2960822582244873, -0.25962626934051514]} +{"t": 5.4292, "q": [-0.36252740025520325, -0.025467490777373314, 0.0169675312936306, 0.600885808467865, -0.2857523262500763, 0.01999550312757492, -0.3844292163848877, 0.01389957033097744, -0.00865116436034441, 0.6084790229797363, -0.29147452116012573, -0.01296920608729124, 0.003468500915914774, 0.007384844124317169, -0.02032947540283203, -2.9332950115203857, 0.7125460505485535, -0.06540989875793457, 1.359466552734375, 0.4588879644870758, -0.017233315855264664, -0.06948453933000565, -0.29559090733528137, -0.25667813420295715, 0.27460652589797974, 1.402130365371704, -0.6670419573783875, -0.29609423875808716, -0.2596622109413147]} +{"t": 5.4461, "q": [-0.362544447183609, -0.025467490777373314, 0.01699431613087654, 0.6009113788604736, -0.28574395179748535, 0.01999552920460701, -0.38440364599227905, 0.013865482062101364, -0.008584205061197281, 0.6084449291229248, -0.2914828658103943, -0.01295471005141735, 0.0034551091957837343, 0.007384844124317169, -0.02032947540283203, -2.9333786964416504, 0.7126898765563965, -0.06556569784879684, 1.359466552734375, 0.46129679679870605, -0.017293237149715424, -0.06948453933000565, -0.2956028878688812, -0.256462424993515, 0.27467843890190125, 1.4021064043045044, -0.6670779585838318, -0.2960822582244873, -0.2596622109413147]} +{"t": 5.4629, "q": [-0.36251887679100037, -0.0254504457116127, 0.017061274498701096, 0.6009199023246765, -0.28574812412261963, 0.02000275067985058, -0.38440364599227905, 0.013814348727464676, -0.008517245762050152, 0.6084449291229248, -0.2914828658103943, -0.01295471005141735, 0.0033881496638059616, 0.007392436731606722, -0.020334383472800255, -2.9333908557891846, 0.7128337025642395, -0.0658772885799408, 1.35947847366333, 0.462758868932724, -0.017317205667495728, -0.0694965198636055, -0.29559090733528137, -0.25625869631767273, 0.2748701870441437, 1.402130365371704, -0.6670299768447876, -0.29607027769088745, -0.2596622109413147]} +{"t": 5.4796, "q": [-0.3625103533267975, -0.025407835841178894, 0.017074666917324066, 0.6009113788604736, -0.2857564687728882, 0.02001716010272503, -0.38441216945648193, 0.013763216324150562, -0.008463677950203419, 0.6084364056587219, -0.29149118065834045, -0.012925754301249981, 0.0034283252898603678, 0.00742280064150691, -0.02034425549209118, -2.9333908557891846, 0.7131093144416809, -0.06609300523996353, 1.359466552734375, 0.4632262587547302, -0.017365142703056335, -0.0695204883813858, -0.29559090733528137, -0.25607892870903015, 0.27490612864494324, 1.402130365371704, -0.6670299768447876, -0.2960822582244873, -0.25967419147491455]} +{"t": 5.4963, "q": [-0.3625103533267975, -0.02539079077541828, 0.017007706686854362, 0.6009113788604736, -0.2857606112957001, 0.020024362951517105, -0.38440364599227905, 0.013703561387956142, -0.008463677950203419, 0.6083682775497437, -0.29149121046066284, -0.012896797619760036, 0.0033881496638059616, 0.0074076224118471146, -0.020344197750091553, -2.9334027767181396, 0.7134089469909668, -0.06624879688024521, 1.359466552734375, 0.46329817175865173, -0.017377126961946487, -0.06953247636556625, -0.29559090733528137, -0.25598305463790894, 0.2749660611152649, 1.402130365371704, -0.6670299768447876, -0.29607027769088745, -0.25967419147491455]} +{"t": 5.5131, "q": [-0.36253592371940613, -0.02538226917386055, 0.017034491524100304, 0.6009199023246765, -0.2857606112957001, 0.020024362951517105, -0.3843866288661957, 0.01369503978639841, -0.008463677950203419, 0.6083256602287292, -0.2915036380290985, -0.012918452732264996, 0.0033881496638059616, 0.0074076224118471146, -0.020344197750091553, -2.9334027767181396, 0.713768482208252, -0.06630872189998627, 1.3594186305999756, 0.4633820652961731, -0.017413079738616943, -0.06953247636556625, -0.2956028878688812, -0.25587520003318787, 0.27500200271606445, 1.402118444442749, -0.6669820547103882, -0.29604631662368774, -0.25967419147491455]} +{"t": 5.5299, "q": [-0.36253592371940613, -0.025356702506542206, 0.017047883942723274, 0.6009113788604736, -0.2857606112957001, 0.020024362951517105, -0.38441216945648193, 0.013643906451761723, -0.008436894044280052, 0.608274519443512, -0.29149535298347473, -0.012918488122522831, 0.003361365757882595, 0.007400029338896275, -0.02033929154276848, -2.9333908557891846, 0.7141519784927368, -0.06638062000274658, 1.3594186305999756, 0.46354982256889343, -0.017413079738616943, -0.06955644488334656, -0.2956028878688812, -0.2557673454284668, 0.2750140130519867, 1.4021424055099487, -0.6669461131095886, -0.29604631662368774, -0.2596622109413147]} +{"t": 5.5467, "q": [-0.362544447183609, -0.025339659303426743, 0.017007706686854362, 0.600885808467865, -0.2857606112957001, 0.020024362951517105, -0.3843866288661957, 0.013669473119080067, -0.00839671865105629, 0.6082063317298889, -0.29149535298347473, -0.012918488122522831, 0.003347973804920912, 0.007415215019136667, -0.020349105820059776, -2.9334146976470947, 0.7146912813186646, -0.06685999035835266, 1.359406590461731, 0.4641849994659424, -0.01750895380973816, -0.06964033097028732, -0.2955789268016815, -0.25575536489486694, 0.27507391571998596, 1.402130365371704, -0.6669461131095886, -0.29604631662368774, -0.259638249874115]} +{"t": 5.5634, "q": [-0.362544447183609, -0.02532261423766613, 0.017007706686854362, 0.6009028553962708, -0.28575223684310913, 0.020038876682519913, -0.38439515233039856, 0.01366095058619976, -0.008383326232433319, 0.6081637144088745, -0.29149535298347473, -0.012904027476906776, 0.003361365757882595, 0.0074076224118471146, -0.020344197750091553, -2.9334027767181396, 0.7152065634727478, -0.06721951812505722, 1.3594305515289307, 0.46434077620506287, -0.017556890845298767, -0.06965231895446777, -0.29559090733528137, -0.25568345189094543, 0.27507391571998596, 1.402130365371704, -0.6669700741767883, -0.29604631662368774, -0.25965023040771484]} +{"t": 5.5803, "q": [-0.36257851123809814, -0.02532261423766613, 0.017007706686854362, 0.600885808467865, -0.2857606112957001, 0.020024362951517105, -0.38436105847358704, 0.013669473119080067, -0.008383326232433319, 0.6081210970878601, -0.29149121046066284, -0.012911275960505009, 0.0034015413839370012, 0.0074076224118471146, -0.020344197750091553, -2.9333908557891846, 0.7156739830970764, -0.06779476255178452, 1.3594305515289307, 0.46454453468322754, -0.017616810277104378, -0.06965231895446777, -0.29559090733528137, -0.2556954324245453, 0.2751098871231079, 1.402130365371704, -0.6669580936431885, -0.2960343360900879, -0.25965023040771484]} +{"t": 5.5971, "q": [-0.36261260509490967, -0.025305571034550667, 0.01695414073765278, 0.600885808467865, -0.2857606112957001, 0.020024362951517105, -0.38439515233039856, 0.013677995651960373, -0.008436894044280052, 0.6080699563026428, -0.29148703813552856, -0.012918542139232159, 0.0033881496638059616, 0.007400029338896275, -0.02033929154276848, -2.9333908557891846, 0.7161413431167603, -0.06822619587182999, 1.3594186305999756, 0.464700311422348, -0.017664747312664986, -0.06967628747224808, -0.2956028878688812, -0.2556714713573456, 0.2751098871231079, 1.402118444442749, -0.6669820547103882, -0.29602235555648804, -0.259638249874115]} +{"t": 5.6138, "q": [-0.3625955581665039, -0.025305571034550667, 0.0169675312936306, 0.600885808467865, -0.28574806451797485, 0.020031671971082687, -0.3843695819377899, 0.013729128055274487, -0.008463677950203419, 0.6080699563026428, -0.2914870083332062, -0.012947462499141693, 0.0034015413839370012, 0.007400029338896275, -0.02033929154276848, -2.9333667755126953, 0.7164409756660461, -0.06918492913246155, 1.359406590461731, 0.4650478661060333, -0.017736652866005898, -0.06973620504140854, -0.2956028878688812, -0.25568345189094543, 0.27512186765670776, 1.4021064043045044, -0.6669461131095886, -0.29602235555648804, -0.259638249874115]} +{"t": 5.6307, "q": [-0.36266374588012695, -0.025305571034550667, 0.016887180507183075, 0.600885808467865, -0.2857606112957001, 0.020024362951517105, -0.3843695819377899, 0.01372060552239418, -0.008544029667973518, 0.6079762578010559, -0.2914994955062866, -0.012925700284540653, 0.0034283252898603678, 0.007384844124317169, -0.02032947540283203, -2.9333548545837402, 0.716680645942688, -0.0701197013258934, 1.359406590461731, 0.4650838077068329, -0.017724668607115746, -0.06973620504140854, -0.2956268787384033, -0.25568345189094543, 0.2750858962535858, 1.402130365371704, -0.6669341325759888, -0.2959863841533661, -0.2596142590045929]} +{"t": 5.6477, "q": [-0.36262112855911255, -0.025305571034550667, 0.016900572925806046, 0.6008602976799011, -0.28574806451797485, 0.020031671971082687, -0.3843440115451813, 0.013746172189712524, -0.008517245762050152, 0.6079421639442444, -0.29147040843963623, -0.012947533279657364, 0.0034551091957837343, 0.007392436731606722, -0.020334383472800255, -2.933330774307251, 0.716824471950531, -0.07125820219516754, 1.3593946695327759, 0.465299516916275, -0.01788046397268772, -0.06973620504140854, -0.2956268787384033, -0.2556714713573456, 0.27507391571998596, 1.402130365371704, -0.6669461131095886, -0.2959863841533661, -0.2595902979373932]} +{"t": 5.6644, "q": [-0.3626466989517212, -0.02532261423766613, 0.016913963481783867, 0.6008347272872925, -0.2857606112957001, 0.020024362951517105, -0.3843440115451813, 0.013771738857030869, -0.008544029667973518, 0.6079165935516357, -0.29147869348526, -0.012961958535015583, 0.003441717242822051, 0.007377251051366329, -0.020324569195508957, -2.933318853378296, 0.7168004512786865, -0.0716416984796524, 1.3593826293945312, 0.4653834104537964, -0.017976338043808937, -0.06973620504140854, -0.2956268787384033, -0.2556714713573456, 0.2750619351863861, 1.4021064043045044, -0.6669341325759888, -0.29599836468696594, -0.2595902979373932]} +{"t": 5.6812, "q": [-0.36262965202331543, -0.025348180904984474, 0.016927355900406837, 0.6008091568946838, -0.28575223684310913, 0.020038876682519913, -0.38435253500938416, 0.013763216324150562, -0.008544029667973518, 0.6079165935516357, -0.29147037863731384, -0.012961993925273418, 0.0033881496638059616, 0.007400022353976965, -0.020329531282186508, -2.933223009109497, 0.7168364524841309, -0.07213304936885834, 1.3593586683273315, 0.4654792845249176, -0.018132133409380913, -0.06972422450780869, -0.295650839805603, -0.2556714713573456, 0.27507391571998596, 1.402118444442749, -0.6669341325759888, -0.29599836468696594, -0.2595902979373932]} +{"t": 5.698, "q": [-0.36261260509490967, -0.0253140926361084, 0.01695414073765278, 0.6007835865020752, -0.28575223684310913, 0.020038876682519913, -0.38435253500938416, 0.013805827125906944, -0.008544029667973518, 0.6079080700874329, -0.29147452116012573, -0.01296920608729124, 0.003361365757882595, 0.007400029338896275, -0.02033929154276848, -2.933223009109497, 0.7168124914169312, -0.07234876602888107, 1.3593586683273315, 0.4656231105327606, -0.018251974135637283, -0.06973620504140854, -0.29567480087280273, -0.2556594908237457, 0.27504995465278625, 1.4021064043045044, -0.6669341325759888, -0.2959863841533661, -0.25957831740379333]} +{"t": 5.7148, "q": [-0.3625955581665039, -0.025365225970745087, 0.01695414073765278, 0.600723922252655, -0.2857606112957001, 0.020024362951517105, -0.38436105847358704, 0.013788782991468906, -0.008530637249350548, 0.60789954662323, -0.29147037863731384, -0.012961993925273418, 0.003334582084789872, 0.007400022353976965, -0.020329531282186508, -2.933115243911743, 0.7167764902114868, -0.07299591600894928, 1.3593467473983765, 0.4657549262046814, -0.018395785242319107, -0.06973620504140854, -0.29567480087280273, -0.2556594908237457, 0.27502599358558655, 1.402130365371704, -0.6669341325759888, -0.29597440361976624, -0.2595423758029938]} +{"t": 5.7315, "q": [-0.36261260509490967, -0.025365225970745087, 0.01698092371225357, 0.6007153987884521, -0.2857564687728882, 0.02001716010272503, -0.3843354880809784, 0.013805827125906944, -0.008544029667973518, 0.60789954662323, -0.29147452116012573, -0.01296920608729124, 0.003361365757882595, 0.007400015834718943, -0.020319772884249687, -2.9330673217773438, 0.7167764902114868, -0.07361909747123718, 1.3593347072601318, 0.4658987522125244, -0.018491659313440323, -0.06972422450780869, -0.2956628203392029, -0.2556235194206238, 0.2750140130519867, 1.402118444442749, -0.6669341325759888, -0.2959624230861664, -0.2595183849334717]} +{"t": 5.7483, "q": [-0.3625955581665039, -0.025365225970745087, 0.01698092371225357, 0.6007068753242493, -0.2857522666454315, 0.02002442441880703, -0.38436105847358704, 0.013805827125906944, -0.008544029667973518, 0.6079080700874329, -0.29146623611450195, -0.012969241477549076, 0.003361365757882595, 0.007400015834718943, -0.020319772884249687, -2.932887554168701, 0.7168004512786865, -0.07452989369630814, 1.3592028617858887, 0.4661983549594879, -0.018623486161231995, -0.06971223652362823, -0.2956628203392029, -0.25563549995422363, 0.27502599358558655, 1.402118444442749, -0.6669341325759888, -0.2959384620189667, -0.2595183849334717]} +{"t": 5.765, "q": [-0.36257851123809814, -0.025365225970745087, 0.017007706686854362, 0.6006898283958435, -0.2857522964477539, 0.020009955391287804, -0.38430991768836975, 0.013848437927663326, -0.008570813573896885, 0.6079080700874329, -0.2914620637893677, -0.01299096830189228, 0.003361365757882595, 0.00738483713939786, -0.02031971700489521, -2.9328274726867676, 0.7167764902114868, -0.07510513812303543, 1.3591669797897339, 0.46639010310173035, -0.018791265785694122, -0.06971223652362823, -0.29567480087280273, -0.25563549995422363, 0.2750379741191864, 1.402118444442749, -0.6669341325759888, -0.2959384620189667, -0.259494423866272]} +{"t": 5.7817, "q": [-0.362544447183609, -0.02538226917386055, 0.017007706686854362, 0.6006813049316406, -0.28574806451797485, 0.020031671971082687, -0.3842758238315582, 0.013865482062101364, -0.008584205061197281, 0.6079080700874329, -0.2914578914642334, -0.012983756139874458, 0.0033881496638059616, 0.007392429746687412, -0.020324625074863434, -2.932755708694458, 0.716824471950531, -0.07586014270782471, 1.3591190576553345, 0.4665578603744507, -0.018887139856815338, -0.06970025599002838, -0.29567480087280273, -0.2556115388870239, 0.2750379741191864, 1.402130365371704, -0.6669101715087891, -0.29595044255256653, -0.2594824433326721]} +{"t": 5.7985, "q": [-0.3625529706478119, -0.025365225970745087, 0.017007706686854362, 0.6006983518600464, -0.2857564687728882, 0.02001716010272503, -0.3842843472957611, 0.013874003663659096, -0.008570813573896885, 0.6078739762306213, -0.2914620637893677, -0.01299096830189228, 0.0033881496638059616, 0.007400015834718943, -0.020319772884249687, -2.9326837062835693, 0.7168364524841309, -0.07653126120567322, 1.3590949773788452, 0.4665578603744507, -0.018983012065291405, -0.06971223652362823, -0.29567480087280273, -0.2556115388870239, 0.2750140130519867, 1.402130365371704, -0.6669221520423889, -0.2959384620189667, -0.2594824433326721]} +{"t": 5.8152, "q": [-0.3625529706478119, -0.025365225970745087, 0.0169675312936306, 0.6006472110748291, -0.2857564687728882, 0.02001716010272503, -0.38426730036735535, 0.013856959529221058, -0.008597597479820251, 0.6078398823738098, -0.29146209359169006, -0.012962029315531254, 0.0033881496638059616, 0.007392429746687412, -0.020324625074863434, -2.9325759410858154, 0.7169203162193298, -0.07772968709468842, 1.3589991331100464, 0.46701326966285706, -0.01906690187752247, -0.06970025599002838, -0.29567480087280273, -0.2556235194206238, 0.27502599358558655, 1.4021064043045044, -0.6669461131095886, -0.2959264814853668, -0.25947046279907227]} +{"t": 5.832, "q": [-0.36257851123809814, -0.025348180904984474, 0.01695414073765278, 0.600655734539032, -0.2857564687728882, 0.02001716010272503, -0.3842758238315582, 0.013865482062101364, -0.008584205061197281, 0.607822835445404, -0.2914828658103943, -0.01295471005141735, 0.003361365757882595, 0.007392429746687412, -0.020324625074863434, -2.932432174682617, 0.7170162200927734, -0.07935953885316849, 1.3589991331100464, 0.46728891134262085, -0.019090870395302773, -0.06970025599002838, -0.29567480087280273, -0.2556115388870239, 0.27500200271606445, 1.4021424055099487, -0.6669341325759888, -0.2959264814853668, -0.2594584822654724]} +{"t": 5.8488, "q": [-0.36257851123809814, -0.025305571034550667, 0.016900572925806046, 0.6006301641464233, -0.2857606112957001, 0.020024362951517105, -0.3842758238315582, 0.013891047798097134, -0.008597597479820251, 0.607822835445404, -0.29149118065834045, -0.012925754301249981, 0.003361365757882595, 0.007392429746687412, -0.020324625074863434, -2.9322643280029297, 0.7170641422271729, -0.08134891837835312, 1.358891248703003, 0.4677802622318268, -0.019114838913083076, -0.06970025599002838, -0.29567480087280273, -0.25563549995422363, 0.2749421000480652, 1.4021424055099487, -0.6669341325759888, -0.29591450095176697, -0.2594345211982727]} +{"t": 5.8655, "q": [-0.36256998777389526, -0.02525443769991398, 0.016887180507183075, 0.6005960702896118, -0.2857564687728882, 0.02001716010272503, -0.38426730036735535, 0.013856959529221058, -0.008597597479820251, 0.6078057885169983, -0.29149532318115234, -0.012932966463267803, 0.003321190131828189, 0.007400029338896275, -0.02033929154276848, -2.932096481323242, 0.7171839475631714, -0.08276306092739105, 1.358795404434204, 0.4687509834766388, -0.019246665760874748, -0.06970025599002838, -0.29567480087280273, -0.2556235194206238, 0.27493011951446533, 1.402130365371704, -0.6669101715087891, -0.2959024906158447, -0.25939854979515076]} +{"t": 5.8822, "q": [-0.3625529706478119, -0.02525443769991398, 0.016927355900406837, 0.6005960702896118, -0.2857564687728882, 0.02001716010272503, -0.38425877690315247, 0.013856959529221058, -0.008584205061197281, 0.6078057885169983, -0.29149532318115234, -0.012932966463267803, 0.003361365757882595, 0.0074076224118471146, -0.020344197750091553, -2.9317848682403564, 0.7172558903694153, -0.083673857152462, 1.3586995601654053, 0.4701171815395355, -0.019330555573105812, -0.06968826800584793, -0.29569876194000244, -0.2556235194206238, 0.2748941481113434, 1.402130365371704, -0.6669221520423889, -0.2959024906158447, -0.25939854979515076]} +{"t": 5.899, "q": [-0.36251887679100037, -0.025177739560604095, 0.016913963481783867, 0.6005960702896118, -0.28576481342315674, 0.020002664998173714, -0.38426730036735535, 0.013831393793225288, -0.008544029667973518, 0.6077716946601868, -0.29149118065834045, -0.012925754301249981, 0.003361365757882595, 0.007415215019136667, -0.020349105820059776, -2.9315571784973145, 0.7173277735710144, -0.08406934142112732, 1.3586276769638062, 0.47168710827827454, -0.01949833519756794, -0.06967628747224808, -0.2956867814064026, -0.2556115388870239, 0.2748941481113434, 1.402130365371704, -0.6669580936431885, -0.2959024906158447, -0.2593626081943512]} +{"t": 5.9157, "q": [-0.362544447183609, -0.02509251795709133, 0.016887180507183075, 0.6005704998970032, -0.2857606112957001, 0.020024362951517105, -0.3842758238315582, 0.013822871260344982, -0.008530637249350548, 0.6077461242675781, -0.291499525308609, -0.012896779924631119, 0.003361365757882595, 0.007415222004055977, -0.020358864217996597, -2.9312095642089844, 0.7174596190452576, -0.08448878675699234, 1.358555793762207, 0.472394198179245, -0.019522303715348244, -0.06967628747224808, -0.2956867814064026, -0.2555995583534241, 0.2748941481113434, 1.402130365371704, -0.6669341325759888, -0.2958905100822449, -0.25935062766075134]} +{"t": 5.9325, "q": [-0.362544447183609, -0.025101039558649063, 0.016873788088560104, 0.6005619764328003, -0.2857522964477539, 0.020009955391287804, -0.3842758238315582, 0.013822871260344982, -0.008557421155273914, 0.6077120304107666, -0.2915036678314209, -0.012903992086648941, 0.003441717242822051, 0.0074152289889752865, -0.02036862261593342, -2.930946111679077, 0.7175434827804565, -0.08472847193479538, 1.3585197925567627, 0.4725739657878876, -0.019714049994945526, -0.06966429948806763, -0.2956867814064026, -0.2556115388870239, 0.2748941481113434, 1.402130365371704, -0.6669341325759888, -0.295878529548645, -0.2593386471271515]} +{"t": 5.9493, "q": [-0.36256998777389526, -0.0250839963555336, 0.01679343730211258, 0.6005619764328003, -0.2857564687728882, 0.02001716010272503, -0.38426730036735535, 0.013814348727464676, -0.008557421155273914, 0.6077035069465637, -0.2915078103542328, -0.012896744534373283, 0.0035086767747998238, 0.007430414203554392, -0.020378436893224716, -2.9306344985961914, 0.7176274061203003, -0.08504006266593933, 1.358495831489563, 0.4726698398590088, -0.019726034253835678, -0.06966429948806763, -0.2957107722759247, -0.2555995583534241, 0.2748941481113434, 1.4021424055099487, -0.6669221520423889, -0.29586654901504517, -0.25930267572402954]} +{"t": 5.966, "q": [-0.3625614643096924, -0.025049906224012375, 0.01678004488348961, 0.6005534529685974, -0.2857606112957001, 0.020024362951517105, -0.38426730036735535, 0.013805827125906944, -0.008557421155273914, 0.6076608896255493, -0.29151198267936707, -0.012903956696391106, 0.00354885240085423, 0.0074228146113455296, -0.02036377228796482, -2.930370807647705, 0.7177832126617432, -0.08519585430622101, 1.3584718704223633, 0.4728855490684509, -0.019833892583847046, -0.06966429948806763, -0.29572275280952454, -0.2555995583534241, 0.2748701870441437, 1.402118444442749, -0.6669221520423889, -0.29586654901504517, -0.2593146562576294]} +{"t": 5.9829, "q": [-0.36257851123809814, -0.025058429688215256, 0.016753261908888817, 0.6005449295043945, -0.2857606112957001, 0.020024362951517105, -0.3842758238315582, 0.013805827125906944, -0.008557421155273914, 0.6076353788375854, -0.2915036678314209, -0.012903992086648941, 0.00354885240085423, 0.007422821596264839, -0.020373530685901642, -2.9300951957702637, 0.7178071737289429, -0.08535165339708328, 1.3583879470825195, 0.4729214906692505, -0.01992976665496826, -0.06965231895446777, -0.2957347333431244, -0.2555875778198242, 0.2748582065105438, 1.402130365371704, -0.6669221520423889, -0.29586654901504517, -0.25930267572402954]} +{"t": 5.9996, "q": [-0.3625955581665039, -0.02507547289133072, 0.016726477071642876, 0.6005449295043945, -0.28576478362083435, 0.02003156766295433, -0.38426730036735535, 0.0137802604585886, -0.008557421155273914, 0.6076183319091797, -0.29149532318115234, -0.012932966463267803, 0.0034952848218381405, 0.0074228146113455296, -0.02036377228796482, -2.929999351501465, 0.7178071737289429, -0.08550744503736496, 1.3583760261535645, 0.47305333614349365, -0.020001672208309174, -0.06964033097028732, -0.2957347333431244, -0.2555636167526245, 0.27479827404022217, 1.402130365371704, -0.6669341325759888, -0.29586654901504517, -0.25927871465682983]} +{"t": 6.0163, "q": [-0.3625955581665039, -0.02507547289133072, 0.016753261908888817, 0.6005534529685974, -0.2857606112957001, 0.020024362951517105, -0.38426730036735535, 0.013805827125906944, -0.008597597479820251, 0.6075842380523682, -0.29149532318115234, -0.012932966463267803, 0.0034283252898603678, 0.0074152289889752865, -0.02036862261593342, -2.9298553466796875, 0.7177832126617432, -0.08571118116378784, 1.3583040237426758, 0.47307729721069336, -0.02004960924386978, -0.06965231895446777, -0.2957347333431244, -0.25557559728622437, 0.27477431297302246, 1.402130365371704, -0.6669221520423889, -0.2958306074142456, -0.25923076272010803]} +{"t": 6.0334, "q": [-0.36261260509490967, -0.02509251795709133, 0.01678004488348961, 0.6005534529685974, -0.2857564687728882, 0.02001716010272503, -0.3842843472957611, 0.013822871260344982, -0.008544029667973518, 0.607592761516571, -0.29149118065834045, -0.012940214946866035, 0.0034283252898603678, 0.007415222004055977, -0.020358864217996597, -2.9295318126678467, 0.7177591919898987, -0.085747130215168, 1.3582321405410767, 0.47318515181541443, -0.020133499056100845, -0.06964033097028732, -0.29572275280952454, -0.25557559728622437, 0.27472639083862305, 1.402130365371704, -0.6669341325759888, -0.29584258794784546, -0.25919482111930847]} +{"t": 6.0502, "q": [-0.36262112855911255, -0.025101039558649063, 0.016860397532582283, 0.6005449295043945, -0.2857564687728882, 0.02001716010272503, -0.38426730036735535, 0.013822871260344982, -0.008557421155273914, 0.6076012849807739, -0.29147869348526, -0.012961958535015583, 0.0034283252898603678, 0.007415222004055977, -0.020358864217996597, -2.929112434387207, 0.7176873087882996, -0.08587896078824997, 1.3581722974777222, 0.47337689995765686, -0.020241355523467064, -0.06962835043668747, -0.2957347333431244, -0.25557559728622437, 0.2747383713722229, 1.402130365371704, -0.6668262481689453, -0.2958545684814453, -0.2591828405857086]} +{"t": 6.0669, "q": [-0.36262965202331543, -0.025126606225967407, 0.016860397532582283, 0.6005449295043945, -0.2857606112957001, 0.020024362951517105, -0.38425877690315247, 0.013814348727464676, -0.008557421155273914, 0.6076012849807739, -0.29147869348526, -0.012961958535015583, 0.003441717242822051, 0.007407629396766424, -0.020353956148028374, -2.9285731315612793, 0.7175674438476562, -0.0860946774482727, 1.358052372932434, 0.47355666756629944, -0.02034921385347843, -0.06960438191890717, -0.29572275280952454, -0.2555875778198242, 0.2747143805027008, 1.402130365371704, -0.6668621897697449, -0.2958306074142456, -0.25917086005210876]} +{"t": 6.0838, "q": [-0.3626466989517212, -0.025160694494843483, 0.016833612695336342, 0.6005449295043945, -0.2857606112957001, 0.020024362951517105, -0.3842843472957611, 0.01383991539478302, -0.008597597479820251, 0.607592761516571, -0.29147869348526, -0.012961958535015583, 0.0034551091957837343, 0.00742280762642622, -0.020354013890028, -2.9280338287353516, 0.7174596190452576, -0.08628641813993454, 1.358052372932434, 0.4736165702342987, -0.02039715088903904, -0.06959239393472672, -0.29572275280952454, -0.25557559728622437, 0.27467843890190125, 1.402130365371704, -0.6668862104415894, -0.2958306074142456, -0.2591348886489868]} +{"t": 6.1006, "q": [-0.36262965202331543, -0.025160694494843483, 0.016847005113959312, 0.6005534529685974, -0.2857564687728882, 0.02001716010272503, -0.3842758238315582, 0.01383991539478302, -0.008610988967120647, 0.6076012849807739, -0.2914828658103943, -0.01295471005141735, 0.003468500915914774, 0.0074076224118471146, -0.020344197750091553, -2.9272069931030273, 0.7172678709030151, -0.08669388294219971, 1.3578846454620361, 0.4741678535938263, -0.020552946254611015, -0.06956842541694641, -0.29577067494392395, -0.2555875778198242, 0.27465447783470154, 1.402130365371704, -0.6667903065681458, -0.2958306074142456, -0.25909894704818726]} +{"t": 6.1173, "q": [-0.3625955581665039, -0.025169216096401215, 0.016833612695336342, 0.6005619764328003, -0.28574806451797485, 0.020031671971082687, -0.38421615958213806, 0.013848437927663326, -0.008624380454421043, 0.6076439023017883, -0.2914578914642334, -0.012983756139874458, 0.0035086767747998238, 0.007407629396766424, -0.020353956148028374, -2.926379919052124, 0.7172079682350159, -0.08717325329780579, 1.3578367233276367, 0.4744674563407898, -0.020720725879073143, -0.0695204883813858, -0.2958066463470459, -0.25557559728622437, 0.2746424973011017, 1.402130365371704, -0.6667903065681458, -0.2958306074142456, -0.25907498598098755]} +{"t": 6.134, "q": [-0.36257851123809814, -0.025186261162161827, 0.016860397532582283, 0.6005704998970032, -0.28574806451797485, 0.020031671971082687, -0.3841820955276489, 0.013822871260344982, -0.00865116436034441, 0.6076183319091797, -0.29147037863731384, -0.012976454570889473, 0.0034952848218381405, 0.007415215019136667, -0.020349105820059776, -2.925469160079956, 0.7172079682350159, -0.08777246624231339, 1.357752799987793, 0.474934846162796, -0.02076866291463375, -0.0694965198636055, -0.29581862688064575, -0.2555875778198242, 0.27463051676750183, 1.402130365371704, -0.6667903065681458, -0.2958306074142456, -0.25905102491378784]} +{"t": 6.1508, "q": [-0.3625614643096924, -0.025186261162161827, 0.016847005113959312, 0.6005619764328003, -0.2857564687728882, 0.02001716010272503, -0.38417357206344604, 0.013848437927663326, -0.008677948266267776, 0.6076353788375854, -0.29146623611450195, -0.012969241477549076, 0.003468500915914774, 0.0074228146113455296, -0.02036377228796482, -2.924642324447632, 0.717195987701416, -0.0881919115781784, 1.3576688766479492, 0.4752464294433594, -0.02081659995019436, -0.0694965198636055, -0.29586654901504517, -0.2555875778198242, 0.27463051676750183, 1.4021424055099487, -0.6667783260345459, -0.29581862688064575, -0.25900307297706604]} +{"t": 6.1675, "q": [-0.3625529706478119, -0.02520330436527729, 0.016860397532582283, 0.6005704998970032, -0.2857564687728882, 0.02001716010272503, -0.3841565251350403, 0.013848437927663326, -0.008704732172191143, 0.607686460018158, -0.29146620631217957, -0.01298370212316513, 0.003468500915914774, 0.007384857628494501, -0.020348992198705673, -2.9237794876098633, 0.7171599864959717, -0.08861136436462402, 1.357585072517395, 0.47613325715065, -0.020924456417560577, -0.0694965198636055, -0.29586654901504517, -0.25557559728622437, 0.27463051676750183, 1.402130365371704, -0.6667903065681458, -0.2958306074142456, -0.2589910924434662]} +{"t": 6.1844, "q": [-0.36252740025520325, -0.02520330436527729, 0.016887180507183075, 0.6006045937538147, -0.28574806451797485, 0.020031671971082687, -0.38416504859924316, 0.013865482062101364, -0.008677948266267776, 0.6077205538749695, -0.2914620637893677, -0.01299096830189228, 0.0034551091957837343, 0.007384851109236479, -0.020339233800768852, -2.923168182373047, 0.7171480059623718, -0.0890188217163086, 1.3575730323791504, 0.4771159887313843, -0.020924456417560577, -0.0694725513458252, -0.29586654901504517, -0.25557559728622437, 0.2746424973011017, 1.402130365371704, -0.6667423844337463, -0.2958066463470459, -0.2589671313762665]} +{"t": 6.2011, "q": [-0.36252740025520325, -0.02521182782948017, 0.016887180507183075, 0.6006045937538147, -0.28574812412261963, 0.02000275067985058, -0.3841820955276489, 0.013856959529221058, -0.00865116436034441, 0.6077290773391724, -0.29146620631217957, -0.01298370212316513, 0.0034149333368986845, 0.007392450701445341, -0.020353900268673897, -2.922736883163452, 0.7171719670295715, -0.08931843191385269, 1.3575609922409058, 0.47814661264419556, -0.020960409194231033, -0.0694725513458252, -0.2958545684814453, -0.2555875778198242, 0.27460652589797974, 1.402118444442749, -0.6667543649673462, -0.2958066463470459, -0.2589431405067444]} +{"t": 6.2179, "q": [-0.3625529706478119, -0.025186261162161827, 0.016900572925806046, 0.6005960702896118, -0.2857564687728882, 0.02001716010272503, -0.3841820955276489, 0.013882526196539402, -0.00866455677896738, 0.6077205538749695, -0.29147452116012573, -0.01296920608729124, 0.003361365757882595, 0.007407629396766424, -0.020353956148028374, -2.922377347946167, 0.7171719670295715, -0.08977383375167847, 1.357537031173706, 0.4805314838886261, -0.020960409194231033, -0.06946057081222534, -0.2958545684814453, -0.25557559728622437, 0.27458256483078003, 1.402130365371704, -0.6667423844337463, -0.2957826554775238, -0.2589431405067444]} +{"t": 6.2346, "q": [-0.3625614643096924, -0.025186261162161827, 0.016833612695336342, 0.6005960702896118, -0.2857564687728882, 0.02001716010272503, -0.38417357206344604, 0.013865482062101364, -0.00866455677896738, 0.6077120304107666, -0.29147869348526, -0.012947497889399529, 0.003334582084789872, 0.007415215019136667, -0.020349105820059776, -2.922137498855591, 0.717195987701416, -0.0902412161231041, 1.3573572635650635, 0.4818257689476013, -0.021044299006462097, -0.06942461431026459, -0.2958545684814453, -0.25557559728622437, 0.2745945453643799, 1.402130365371704, -0.6667543649673462, -0.2958066463470459, -0.2589191794395447]} +{"t": 6.2513, "q": [-0.3625614643096924, -0.025186261162161827, 0.016860397532582283, 0.6005960702896118, -0.2857564687728882, 0.02001716010272503, -0.38417357206344604, 0.013865482062101364, -0.00865116436034441, 0.6077120304107666, -0.2914828658103943, -0.01295471005141735, 0.003361365757882595, 0.007400036323815584, -0.0203490499407053, -2.9219577312469482, 0.717195987701416, -0.09067264944314957, 1.3572015762329102, 0.48241299390792847, -0.021092236042022705, -0.06941263377666473, -0.2958545684814453, -0.25557559728622437, 0.27458256483078003, 1.402130365371704, -0.6667543649673462, -0.2958066463470459, -0.25889521837234497]} +{"t": 6.2681, "q": [-0.362544447183609, -0.025186261162161827, 0.016833612695336342, 0.6006045937538147, -0.2857606112957001, 0.020024362951517105, -0.3841565251350403, 0.013848437927663326, -0.008677948266267776, 0.6077205538749695, -0.2914745509624481, -0.01295474637299776, 0.0033747577108442783, 0.0074076359160244465, -0.020363714545965195, -2.921694278717041, 0.7172199487686157, -0.09110408276319504, 1.357081651687622, 0.48319196701049805, -0.02111620455980301, -0.06941263377666473, -0.29586654901504517, -0.2555995583534241, 0.27458256483078003, 1.4021424055099487, -0.666766345500946, -0.29579463601112366, -0.2589071989059448]} +{"t": 6.2848, "q": [-0.36252740025520325, -0.025177739560604095, 0.01682022027671337, 0.6005960702896118, -0.2857564687728882, 0.02001716010272503, -0.38417357206344604, 0.013856959529221058, -0.008624380454421043, 0.6076694130897522, -0.29149532318115234, -0.012932966463267803, 0.003361365757882595, 0.0074152289889752865, -0.02036862261593342, -2.9215023517608643, 0.717279851436615, -0.09158344566822052, 1.357009768486023, 0.4837192893028259, -0.02112818881869316, -0.06943660229444504, -0.2958545684814453, -0.2555875778198242, 0.27458256483078003, 1.4021424055099487, -0.6667543649673462, -0.2958066463470459, -0.2588832378387451]} +{"t": 6.3016, "q": [-0.36252740025520325, -0.025160694494843483, 0.016833612695336342, 0.6005960702896118, -0.2857564687728882, 0.02001716010272503, -0.38417357206344604, 0.013822871260344982, -0.008610988967120647, 0.6076949834823608, -0.29149532318115234, -0.012932966463267803, 0.0033881496638059616, 0.007392450701445341, -0.020353900268673897, -2.9212746620178223, 0.7173397541046143, -0.09202686697244644, 1.3568060398101807, 0.4843065142631531, -0.021164141595363617, -0.06943660229444504, -0.2958545684814453, -0.25557559728622437, 0.2745705842971802, 1.4021543264389038, -0.6667423844337463, -0.2958066463470459, -0.25889521837234497]} +{"t": 6.3184, "q": [-0.362544447183609, -0.025160694494843483, 0.01680682972073555, 0.600579023361206, -0.2857606112957001, 0.020024362951517105, -0.3841820955276489, 0.013822871260344982, -0.008597597479820251, 0.607686460018158, -0.29149118065834045, -0.012925754301249981, 0.0034283252898603678, 0.007400036323815584, -0.0203490499407053, -2.9210469722747803, 0.7173157930374146, -0.09220662713050842, 1.3566622734069824, 0.48446229100227356, -0.021224062889814377, -0.06943660229444504, -0.29586654901504517, -0.25557559728622437, 0.27454662322998047, 1.4021424055099487, -0.666766345500946, -0.29581862688064575, -0.25889521837234497]} +{"t": 6.3351, "q": [-0.3625529706478119, -0.02513512782752514, 0.01678004488348961, 0.6005875468254089, -0.2857606112957001, 0.020024362951517105, -0.38417357206344604, 0.013805827125906944, -0.008624380454421043, 0.6076779365539551, -0.29149532318115234, -0.012932966463267803, 0.003481892868876457, 0.0074228146113455296, -0.02036377228796482, -2.9209272861480713, 0.717363715171814, -0.09250623732805252, 1.3566383123397827, 0.48478588461875916, -0.021283984184265137, -0.06943660229444504, -0.29586654901504517, -0.25557559728622437, 0.27454662322998047, 1.402130365371704, -0.6667304039001465, -0.2958066463470459, -0.2588832378387451]} +{"t": 6.3518, "q": [-0.3625614643096924, -0.025160694494843483, 0.01678004488348961, 0.6005704998970032, -0.2857606112957001, 0.020024362951517105, -0.38417357206344604, 0.013805827125906944, -0.00865116436034441, 0.6076779365539551, -0.29149535298347473, -0.012918488122522831, 0.003589028026908636, 0.0074152289889752865, -0.02036862261593342, -2.9208314418792725, 0.7173756957054138, -0.09265004843473434, 1.356494426727295, 0.484797865152359, -0.021271999925374985, -0.06942461431026459, -0.29586654901504517, -0.25557559728622437, 0.2745346426963806, 1.402130365371704, -0.6667423844337463, -0.29579463601112366, -0.25887125730514526]} +{"t": 6.3686, "q": [-0.362544447183609, -0.025160694494843483, 0.016726477071642876, 0.6005704998970032, -0.285768985748291, 0.02000986970961094, -0.38417357206344604, 0.013822871260344982, -0.00865116436034441, 0.6076779365539551, -0.2914994955062866, -0.012925700284540653, 0.003589028026908636, 0.007422821596264839, -0.020373530685901642, -2.920771360397339, 0.7173877358436584, -0.09280584007501602, 1.356326699256897, 0.4850495457649231, -0.02129596844315529, -0.06943660229444504, -0.2958545684814453, -0.2555995583534241, 0.27454662322998047, 1.402130365371704, -0.6667543649673462, -0.2958066463470459, -0.25887125730514526]} +{"t": 6.3853, "q": [-0.36256998777389526, -0.025160694494843483, 0.016726477071642876, 0.600579023361206, -0.2857564687728882, 0.02001716010272503, -0.38417357206344604, 0.013814348727464676, -0.00865116436034441, 0.6076779365539551, -0.2914994955062866, -0.012925700284540653, 0.00354885240085423, 0.0074228146113455296, -0.02036377228796482, -2.920771360397339, 0.7173877358436584, -0.09282980859279633, 1.356266736984253, 0.48508548736572266, -0.021283984184265137, -0.06943660229444504, -0.2958905100822449, -0.25557559728622437, 0.27454662322998047, 1.402118444442749, -0.6667543649673462, -0.29579463601112366, -0.2588592767715454]} +{"t": 6.4021, "q": [-0.36256998777389526, -0.025160694494843483, 0.016726477071642876, 0.6005960702896118, -0.2857606112957001, 0.020024362951517105, -0.3841820955276489, 0.013805827125906944, -0.008624380454421043, 0.6076779365539551, -0.29149532318115234, -0.012932966463267803, 0.0035354604478925467, 0.0074076359160244465, -0.020363714545965195, -2.920555591583252, 0.717423677444458, -0.0929376631975174, 1.3559671640396118, 0.485169380903244, -0.021319936960935593, -0.06941263377666473, -0.295878529548645, -0.2555875778198242, 0.2745346426963806, 1.402118444442749, -0.6667423844337463, -0.2958066463470459, -0.2588592767715454]} +{"t": 6.4188, "q": [-0.3625529706478119, -0.025186261162161827, 0.01678004488348961, 0.6006045937538147, -0.2857564687728882, 0.02001716010272503, -0.3841820955276489, 0.013822871260344982, -0.00865116436034441, 0.6077120304107666, -0.2914828658103943, -0.01295471005141735, 0.0035220684949308634, 0.0074228146113455296, -0.02036377228796482, -2.9203999042510986, 0.7174356579780579, -0.09302155673503876, 1.355883240699768, 0.48521730303764343, -0.02130795270204544, -0.06943660229444504, -0.29586654901504517, -0.25557559728622437, 0.27452266216278076, 1.402118444442749, -0.6667304039001465, -0.29579463601112366, -0.2588592767715454]} +{"t": 6.4355, "q": [-0.36257851123809814, -0.025177739560604095, 0.01678004488348961, 0.6006045937538147, -0.2857564687728882, 0.02001716010272503, -0.3841820955276489, 0.013822871260344982, -0.008677948266267776, 0.6077120304107666, -0.29147869348526, -0.012947497889399529, 0.003481892868876457, 0.007400036323815584, -0.0203490499407053, -2.920004367828369, 0.7174835801124573, -0.09320131689310074, 1.3557993173599243, 0.4852412939071655, -0.021319936960935593, -0.06942461431026459, -0.2958545684814453, -0.2555636167526245, 0.27452266216278076, 1.402130365371704, -0.6667543649673462, -0.2957826554775238, -0.2588352859020233]} +{"t": 6.4523, "q": [-0.3625614643096924, -0.025186261162161827, 0.01680682972073555, 0.6006301641464233, -0.2857564687728882, 0.02001716010272503, -0.38416504859924316, 0.013822871260344982, -0.008677948266267776, 0.6077290773391724, -0.29147452116012573, -0.01296920608729124, 0.003481892868876457, 0.0074152289889752865, -0.02036862261593342, -2.9195010662078857, 0.7175195217132568, -0.09332115948200226, 1.355595588684082, 0.48528921604156494, -0.021331921219825745, -0.06943660229444504, -0.2958545684814453, -0.25557559728622437, 0.2745106518268585, 1.4021424055099487, -0.666766345500946, -0.29579463601112366, -0.25882330536842346]} +{"t": 6.469, "q": [-0.36257851123809814, -0.025177739560604095, 0.01680682972073555, 0.6006727814674377, -0.2857564687728882, 0.02001716010272503, -0.3841565251350403, 0.013831393793225288, -0.00866455677896738, 0.6077376008033752, -0.29146209359169006, -0.012962029315531254, 0.003481892868876457, 0.007415222004055977, -0.020358864217996597, -2.918865919113159, 0.717507541179657, -0.09346497058868408, 1.3554039001464844, 0.4853011965751648, -0.021391842514276505, -0.06943660229444504, -0.295878529548645, -0.25557559728622437, 0.2745106518268585, 1.402130365371704, -0.666766345500946, -0.2957826554775238, -0.2588352859020233]} +{"t": 6.4857, "q": [-0.36256998777389526, -0.02520330436527729, 0.01680682972073555, 0.6007153987884521, -0.2857564687728882, 0.02001716010272503, -0.3841394782066345, 0.013805827125906944, -0.008677948266267776, 0.6077887415885925, -0.29147037863731384, -0.012976454570889473, 0.0035220684949308634, 0.0074076359160244465, -0.020363714545965195, -2.918146848678589, 0.7175315022468567, -0.0935608446598053, 1.3552360534667969, 0.48533716797828674, -0.02141581103205681, -0.06943660229444504, -0.2958545684814453, -0.25557559728622437, 0.2745106518268585, 1.402118444442749, -0.6667304039001465, -0.29579463601112366, -0.25882330536842346]} +{"t": 6.5025, "q": [-0.362544447183609, -0.025186261162161827, 0.01680682972073555, 0.6007580161094666, -0.2857522666454315, 0.02002442441880703, -0.3841139078140259, 0.013822871260344982, -0.008691340684890747, 0.6078739762306213, -0.29146209359169006, -0.012962029315531254, 0.003562244353815913, 0.0074076359160244465, -0.020363714545965195, -2.9174039363861084, 0.717507541179657, -0.09370465576648712, 1.3550323247909546, 0.4853731095790863, -0.021499700844287872, -0.06942461431026459, -0.2958905100822449, -0.25557559728622437, 0.2744866907596588, 1.402130365371704, -0.6667423844337463, -0.29579463601112366, -0.25882330536842346]} +{"t": 6.5193, "q": [-0.3625614643096924, -0.02526295930147171, 0.016833612695336342, 0.6007750630378723, -0.28574806451797485, 0.020031671971082687, -0.3841139078140259, 0.01383991539478302, -0.008704732172191143, 0.6078654527664185, -0.2914578914642334, -0.012983756139874458, 0.00354885240085423, 0.007400043308734894, -0.02035880833864212, -2.9166128635406494, 0.717507541179657, -0.0938604548573494, 1.3549964427947998, 0.4853731095790863, -0.021583588793873787, -0.06941263377666473, -0.29586654901504517, -0.25557559728622437, 0.2744866907596588, 1.402118444442749, -0.6667184233665466, -0.2957826554775238, -0.25882330536842346]} +{"t": 6.536, "q": [-0.362544447183609, -0.025288525968790054, 0.016833612695336342, 0.600800633430481, -0.2857522964477539, 0.020009955391287804, -0.38408833742141724, 0.013822871260344982, -0.008691340684890747, 0.6078824996948242, -0.29147037863731384, -0.012976454570889473, 0.0035220684949308634, 0.0074076359160244465, -0.020363714545965195, -2.9157259464263916, 0.717507541179657, -0.09394434094429016, 1.3548645973205566, 0.4853731095790863, -0.0216554943472147, -0.06942461431026459, -0.2958545684814453, -0.25557559728622437, 0.27447471022605896, 1.402118444442749, -0.6667304039001465, -0.2958066463470459, -0.25879934430122375]} +{"t": 6.5528, "q": [-0.3625103533267975, -0.025297047570347786, 0.01680682972073555, 0.6008347272872925, -0.28574812412261963, 0.02000275067985058, -0.3840968608856201, 0.013822871260344982, -0.008677948266267776, 0.6079165935516357, -0.29147037863731384, -0.012976454570889473, 0.0035220684949308634, 0.0074152289889752865, -0.02036862261593342, -2.914851188659668, 0.7175315022468567, -0.09398029744625092, 1.354780673980713, 0.4853731095790863, -0.021763352677226067, -0.06941263377666473, -0.29586654901504517, -0.2555875778198242, 0.27447471022605896, 1.402130365371704, -0.6667184233665466, -0.29579463601112366, -0.2587873637676239]} +{"t": 6.5696, "q": [-0.3624933063983917, -0.025297047570347786, 0.016833612695336342, 0.6008517742156982, -0.2857397496700287, 0.020017262548208237, -0.38407981395721436, 0.013822871260344982, -0.00866455677896738, 0.6079336404800415, -0.29146623611450195, -0.012954781763255596, 0.0034952848218381405, 0.0074152289889752865, -0.02036862261593342, -2.914048194885254, 0.7174955606460571, -0.09401624649763107, 1.3546968698501587, 0.4853731095790863, -0.021823273971676826, -0.06940064579248428, -0.29586654901504517, -0.25557559728622437, 0.27447471022605896, 1.402130365371704, -0.6667783260345459, -0.29579463601112366, -0.2587873637676239]} +{"t": 6.5863, "q": [-0.3625103533267975, -0.02526295930147171, 0.01682022027671337, 0.6008772850036621, -0.28574812412261963, 0.02000275067985058, -0.38408833742141724, 0.013805827125906944, -0.00866455677896738, 0.6079336404800415, -0.29146209359169006, -0.012962029315531254, 0.0034551091957837343, 0.0074152289889752865, -0.02036862261593342, -2.913377046585083, 0.7174835801124573, -0.09398029744625092, 1.3546488285064697, 0.4853731095790863, -0.021871211007237434, -0.06940064579248428, -0.29586654901504517, -0.2555875778198242, 0.27447471022605896, 1.402130365371704, -0.6667304039001465, -0.29579463601112366, -0.2587873637676239]} +{"t": 6.6032, "q": [-0.36252740025520325, -0.02525443769991398, 0.016833612695336342, 0.6008517742156982, -0.28574812412261963, 0.02000275067985058, -0.3840968608856201, 0.013814348727464676, -0.00865116436034441, 0.6079336404800415, -0.29147037863731384, -0.012961993925273418, 0.0034149333368986845, 0.0074228146113455296, -0.02036377228796482, -2.912885904312134, 0.7174715995788574, -0.09399227797985077, 1.3546009063720703, 0.4853251576423645, -0.021943116560578346, -0.06940064579248428, -0.29586654901504517, -0.2555875778198242, 0.2744627296924591, 1.4021424055099487, -0.6667423844337463, -0.2957826554775238, -0.2587873637676239]} +{"t": 6.62, "q": [-0.36248478293418884, -0.02526295930147171, 0.016833612695336342, 0.6008517742156982, -0.2857564687728882, 0.02001716010272503, -0.3840968608856201, 0.013805827125906944, -0.00866455677896738, 0.6079421639442444, -0.2914579212665558, -0.012954799458384514, 0.0034283252898603678, 0.0074152289889752865, -0.02036862261593342, -2.912442445755005, 0.7174835801124573, -0.09399227797985077, 1.3545889854431152, 0.4853251576423645, -0.022038990631699562, -0.06937667727470398, -0.29586654901504517, -0.2555875778198242, 0.27447471022605896, 1.402130365371704, -0.6667783260345459, -0.2957586944103241, -0.25877538323402405]} +{"t": 6.6367, "q": [-0.36248478293418884, -0.025228871032595634, 0.016833612695336342, 0.600868821144104, -0.2857606112957001, 0.020024362951517105, -0.3840968608856201, 0.013822871260344982, -0.00865116436034441, 0.6079421639442444, -0.29147037863731384, -0.012976454570889473, 0.0034149333368986845, 0.0074076359160244465, -0.020363714545965195, -2.9119269847869873, 0.7174835801124573, -0.09404021501541138, 1.3543732166290283, 0.4853731095790863, -0.02214684896171093, -0.06935270875692368, -0.29586654901504517, -0.2555875778198242, 0.27447471022605896, 1.402130365371704, -0.6667423844337463, -0.29577067494392395, -0.25877538323402405]} +{"t": 6.6537, "q": [-0.36248478293418884, -0.02526295930147171, 0.01680682972073555, 0.6008517742156982, -0.2857564687728882, 0.02001716010272503, -0.38408833742141724, 0.013831393793225288, -0.00865116436034441, 0.6079592108726501, -0.2914620637893677, -0.012976489961147308, 0.0034149333368986845, 0.007415222004055977, -0.020358864217996597, -2.9115796089172363, 0.7174955606460571, -0.09404021501541138, 1.3542773723602295, 0.4853491485118866, -0.022290658205747604, -0.06934072822332382, -0.29586654901504517, -0.25557559728622437, 0.27447471022605896, 1.402130365371704, -0.6667543649673462, -0.2957826554775238, -0.2587873637676239]} +{"t": 6.6704, "q": [-0.3624933063983917, -0.025220349431037903, 0.01680682972073555, 0.6008432507514954, -0.2857522964477539, 0.020009955391287804, -0.38408833742141724, 0.013848437927663326, -0.00866455677896738, 0.6079592108726501, -0.29146623611450195, -0.012969241477549076, 0.003468500915914774, 0.0074152289889752865, -0.02036862261593342, -2.911220073699951, 0.7174596190452576, -0.09404021501541138, 1.3542174100875854, 0.48533716797828674, -0.022362563759088516, -0.06931675970554352, -0.29586654901504517, -0.25557559728622437, 0.27447471022605896, 1.402130365371704, -0.666766345500946, -0.2957826554775238, -0.2587873637676239]} +{"t": 6.6872, "q": [-0.36251887679100037, -0.025220349431037903, 0.01679343730211258, 0.6008517742156982, -0.2857564687728882, 0.02001716010272503, -0.38407981395721436, 0.013831393793225288, -0.008718123659491539, 0.6079421639442444, -0.29147452116012573, -0.01296920608729124, 0.00354885240085423, 0.007422821596264839, -0.020373530685901642, -2.910848379135132, 0.7174715995788574, -0.09404021501541138, 1.3540496826171875, 0.48531317710876465, -0.02244645357131958, -0.06929279118776321, -0.2958545684814453, -0.2555995583534241, 0.27447471022605896, 1.402130365371704, -0.666766345500946, -0.29579463601112366, -0.25879934430122375]} +{"t": 6.704, "q": [-0.3625103533267975, -0.025228871032595634, 0.016766652464866638, 0.600868821144104, -0.2857564687728882, 0.02001716010272503, -0.38408833742141724, 0.013822871260344982, -0.008704732172191143, 0.6079592108726501, -0.29147452116012573, -0.01296920608729124, 0.00354885240085423, 0.0074152289889752865, -0.02036862261593342, -2.910512924194336, 0.7174596190452576, -0.09411212056875229, 1.3538938760757446, 0.48533716797828674, -0.022494390606880188, -0.06925683468580246, -0.29586654901504517, -0.25557559728622437, 0.2744627296924591, 1.402130365371704, -0.6667304039001465, -0.2957826554775238, -0.25877538323402405]} +{"t": 6.7207, "q": [-0.3625103533267975, -0.025237392634153366, 0.01679343730211258, 0.6008347272872925, -0.2857564687728882, 0.02001716010272503, -0.3840968608856201, 0.013822871260344982, -0.008677948266267776, 0.6079506874084473, -0.29147037863731384, -0.012961993925273418, 0.003562244353815913, 0.0074076359160244465, -0.020363714545965195, -2.9102492332458496, 0.7174476385116577, -0.09414807707071304, 1.353654146194458, 0.48533716797828674, -0.022602248936891556, -0.0692448541522026, -0.295878529548645, -0.2555875778198242, 0.27447471022605896, 1.4021424055099487, -0.6667423844337463, -0.29577067494392395, -0.25879934430122375]} +{"t": 6.7375, "q": [-0.3625103533267975, -0.025228871032595634, 0.01679343730211258, 0.6008432507514954, -0.2857564687728882, 0.02001716010272503, -0.3840968608856201, 0.013822871260344982, -0.008691340684890747, 0.607967734336853, -0.29147869348526, -0.012961958535015583, 0.003562244353815913, 0.0074152289889752865, -0.02036862261593342, -2.910045623779297, 0.7174476385116577, -0.09421997517347336, 1.3535822629928589, 0.48533716797828674, -0.02269812300801277, -0.0692208856344223, -0.295878529548645, -0.2555636167526245, 0.27445074915885925, 1.402130365371704, -0.6667423844337463, -0.2957826554775238, -0.25877538323402405]} +{"t": 6.7543, "q": [-0.36253592371940613, -0.025220349431037903, 0.01680682972073555, 0.600868821144104, -0.2857564687728882, 0.02001716010272503, -0.3840968608856201, 0.013831393793225288, -0.008677948266267776, 0.6079336404800415, -0.2914745509624481, -0.012940285727381706, 0.00354885240085423, 0.0074076359160244465, -0.020363714545965195, -2.909745931625366, 0.7174596190452576, -0.09439974278211594, 1.3534384965896606, 0.48533716797828674, -0.022841934114694595, -0.069196917116642, -0.2958545684814453, -0.2555875778198242, 0.27445074915885925, 1.402130365371704, -0.6667304039001465, -0.2958066463470459, -0.25877538323402405]} +{"t": 6.7711, "q": [-0.36253592371940613, -0.02532261423766613, 0.01682022027671337, 0.6008432507514954, -0.2857564687728882, 0.02001716010272503, -0.3840968608856201, 0.013822871260344982, -0.008677948266267776, 0.6079336404800415, -0.29146623611450195, -0.012954781763255596, 0.0035220684949308634, 0.007415222004055977, -0.020358864217996597, -2.909398317337036, 0.7174596190452576, -0.09489109367132187, 1.3532108068466187, 0.4853731095790863, -0.022889869287610054, -0.069196917116642, -0.295878529548645, -0.25557559728622437, 0.2744627296924591, 1.402130365371704, -0.6667423844337463, -0.2957826554775238, -0.25877538323402405]} +{"t": 6.7878, "q": [-0.36252740025520325, -0.02526295930147171, 0.016833612695336342, 0.600868821144104, -0.2857564687728882, 0.02001716010272503, -0.38408833742141724, 0.013831393793225288, -0.008704732172191143, 0.6079592108726501, -0.2914620637893677, -0.01299096830189228, 0.0035220684949308634, 0.007400043308734894, -0.02035880833864212, -2.908942937850952, 0.7174596190452576, -0.0954064205288887, 1.3531149625778198, 0.485397070646286, -0.022997727617621422, -0.06916096061468124, -0.29586654901504517, -0.25557559728622437, 0.27445074915885925, 1.402130365371704, -0.6667304039001465, -0.2957826554775238, -0.2587634027004242]} +{"t": 6.8046, "q": [-0.3625103533267975, -0.025297047570347786, 0.016833612695336342, 0.6008602976799011, -0.2857522964477539, 0.020009955391287804, -0.3840968608856201, 0.013831393793225288, -0.008691340684890747, 0.6079762578010559, -0.29146620631217957, -0.01298370212316513, 0.0035220684949308634, 0.0074076359160244465, -0.020363714545965195, -2.908463716506958, 0.7174596190452576, -0.0963292047381401, 1.3530669212341309, 0.48545700311660767, -0.02304566465318203, -0.06914898008108139, -0.29586654901504517, -0.2555875778198242, 0.27447471022605896, 1.4021543264389038, -0.6667064428329468, -0.2957826554775238, -0.2587634027004242]} +{"t": 6.8214, "q": [-0.3625103533267975, -0.025305571034550667, 0.016860397532582283, 0.600868821144104, -0.28574812412261963, 0.02000275067985058, -0.38407981395721436, 0.013822871260344982, -0.008691340684890747, 0.6079847812652588, -0.2914578914642334, -0.012983756139874458, 0.0035354604478925467, 0.0074152289889752865, -0.02036862261593342, -2.908032178878784, 0.717507541179657, -0.0972040519118309, 1.3530429601669312, 0.48551690578460693, -0.023081617429852486, -0.06914898008108139, -0.2959024906158447, -0.2556115388870239, 0.2744627296924591, 1.402130365371704, -0.6667304039001465, -0.29577067494392395, -0.25877538323402405]} +{"t": 6.8382, "q": [-0.3625103533267975, -0.02533113770186901, 0.016833612695336342, 0.6009369492530823, -0.2857564687728882, 0.02001716010272503, -0.38408833742141724, 0.013822871260344982, -0.008691340684890747, 0.6080018281936646, -0.29146620631217957, -0.01298370212316513, 0.0035220684949308634, 0.0074228146113455296, -0.02036377228796482, -2.907552719116211, 0.7175315022468567, -0.09853430092334747, 1.352971076965332, 0.48600825667381287, -0.023129554465413094, -0.06918492913246155, -0.2958905100822449, -0.2555875778198242, 0.27445074915885925, 1.4021424055099487, -0.6667543649673462, -0.2957826554775238, -0.25877538323402405]} +{"t": 6.8549, "q": [-0.3625103533267975, -0.02532261423766613, 0.016833612695336342, 0.6009369492530823, -0.2857522964477539, 0.020009955391287804, -0.3840712904930115, 0.013814348727464676, -0.008704732172191143, 0.6080188751220703, -0.2914620637893677, -0.01299096830189228, 0.0035220684949308634, 0.0074076359160244465, -0.020363714545965195, -2.9070374965667725, 0.7177472114562988, -0.10065551102161407, 1.3528392314910889, 0.4866434335708618, -0.023309318348765373, -0.06913699209690094, -0.2958905100822449, -0.2555995583534241, 0.27445074915885925, 1.402118444442749, -0.6667304039001465, -0.2957826554775238, -0.25877538323402405]} +{"t": 6.8717, "q": [-0.3625018298625946, -0.0253140926361084, 0.016833612695336342, 0.6010051369667053, -0.2857522666454315, 0.02002442441880703, -0.3840712904930115, 0.013822871260344982, -0.008691340684890747, 0.6080443859100342, -0.29146620631217957, -0.01298370212316513, 0.00354885240085423, 0.0074076359160244465, -0.020363714545965195, -2.9064981937408447, 0.7178071737289429, -0.1020217090845108, 1.352803349494934, 0.4870988428592682, -0.023333286866545677, -0.06911302357912064, -0.2958545684814453, -0.2556115388870239, 0.2744627296924591, 1.402130365371704, -0.6667423844337463, -0.2957826554775238, -0.25877538323402405]} +{"t": 6.8884, "q": [-0.36248478293418884, -0.02532261423766613, 0.016833612695336342, 0.6009966135025024, -0.28574806451797485, 0.020031671971082687, -0.3840627670288086, 0.013831393793225288, -0.008704732172191143, 0.6080699563026428, -0.2914578914642334, -0.012983756139874458, 0.0035220684949308634, 0.007392450701445341, -0.020353900268673897, -2.9058749675750732, 0.7179749608039856, -0.10330402106046677, 1.3526115417480469, 0.48750630021095276, -0.023393208160996437, -0.06912501156330109, -0.295878529548645, -0.25557559728622437, 0.2744147777557373, 1.402130365371704, -0.6667543649673462, -0.2957826554775238, -0.25877538323402405]} +{"t": 6.9051, "q": [-0.36248478293418884, -0.02532261423766613, 0.016833612695336342, 0.601030707359314, -0.2857397496700287, 0.020017262548208237, -0.3840542435646057, 0.013814348727464676, -0.008691340684890747, 0.6081125736236572, -0.29147037863731384, -0.012976454570889473, 0.0035354604478925467, 0.0074076359160244465, -0.020363714545965195, -2.90537166595459, 0.7181307077407837, -0.10396315157413483, 1.3524677753448486, 0.48780590295791626, -0.023489082232117653, -0.06911302357912064, -0.29586654901504517, -0.2555875778198242, 0.2743908166885376, 1.402130365371704, -0.6667304039001465, -0.2957826554775238, -0.25877538323402405]} +{"t": 6.9218, "q": [-0.36248478293418884, -0.02532261423766613, 0.016847005113959312, 0.6010477542877197, -0.2857564687728882, 0.02001716010272503, -0.3840542435646057, 0.013848437927663326, -0.008704732172191143, 0.6081637144088745, -0.29147037863731384, -0.012961993925273418, 0.0035220684949308634, 0.0074076359160244465, -0.020363714545965195, -2.904832363128662, 0.718478262424469, -0.1046941950917244, 1.3521441221237183, 0.4881414771080017, -0.023668844252824783, -0.06913699209690094, -0.29586654901504517, -0.25557559728622437, 0.2744387686252594, 1.4021424055099487, -0.6667304039001465, -0.2957826554775238, -0.25877538323402405]} +{"t": 6.9388, "q": [-0.3624506890773773, -0.02532261423766613, 0.016873788088560104, 0.6010392308235168, -0.2857397496700287, 0.020017262548208237, -0.3840712904930115, 0.013822871260344982, -0.008637772873044014, 0.6082233786582947, -0.29147037863731384, -0.012961993925273418, 0.003468500915914774, 0.0074152289889752865, -0.02036862261593342, -2.9043171405792236, 0.7187539339065552, -0.10502974689006805, 1.3518205881118774, 0.48838114738464355, -0.02371678128838539, -0.0691729485988617, -0.29586654901504517, -0.2555636167526245, 0.27445074915885925, 1.402130365371704, -0.6667304039001465, -0.29577067494392395, -0.25877538323402405]} +{"t": 6.9555, "q": [-0.3624592125415802, -0.025297047570347786, 0.016873788088560104, 0.6010477542877197, -0.28574806451797485, 0.020031671971082687, -0.3840712904930115, 0.01383991539478302, -0.008624380454421043, 0.6081807613372803, -0.29146623611450195, -0.012969241477549076, 0.003468500915914774, 0.0074076359160244465, -0.020363714545965195, -2.90388560295105, 0.7191253900527954, -0.10536530613899231, 1.351377248764038, 0.4890402853488922, -0.02383662387728691, -0.06914898008108139, -0.29586654901504517, -0.2555875778198242, 0.2744387686252594, 1.402130365371704, -0.6667543649673462, -0.2957826554775238, -0.25877538323402405]} +{"t": 6.9723, "q": [-0.3624506890773773, -0.025305571034550667, 0.016887180507183075, 0.6010562777519226, -0.28574392199516296, 0.020024467259645462, -0.3840712904930115, 0.01383991539478302, -0.008637772873044014, 0.608197808265686, -0.29146209359169006, -0.012962029315531254, 0.003468500915914774, 0.0074152289889752865, -0.02036862261593342, -2.903573989868164, 0.7194370031356812, -0.10542523115873337, 1.35086190700531, 0.4898432195186615, -0.02383662387728691, -0.0691729485988617, -0.29586654901504517, -0.2555636167526245, 0.2744387686252594, 1.402130365371704, -0.6667064428329468, -0.29577067494392395, -0.2587634027004242]} +{"t": 6.9891, "q": [-0.36247625946998596, -0.02532261423766613, 0.016887180507183075, 0.6010648012161255, -0.28574806451797485, 0.020031671971082687, -0.38407981395721436, 0.013822871260344982, -0.008637772873044014, 0.6081807613372803, -0.2914828658103943, -0.01295471005141735, 0.0034283252898603678, 0.0074076359160244465, -0.020363714545965195, -2.9031784534454346, 0.7198444604873657, -0.10567689687013626, 1.3503345251083374, 0.4902386963367462, -0.02394448220729828, -0.06916096061468124, -0.29586654901504517, -0.2555875778198242, 0.2744147777557373, 1.4021543264389038, -0.6667304039001465, -0.2957826554775238, -0.2587873637676239]} +{"t": 7.0058, "q": [-0.3624506890773773, -0.025280004367232323, 0.016873788088560104, 0.6010818481445312, -0.2857564687728882, 0.02001716010272503, -0.38407981395721436, 0.013822871260344982, -0.008637772873044014, 0.6081807613372803, -0.29146209359169006, -0.012962029315531254, 0.0034283252898603678, 0.007392450701445341, -0.020353900268673897, -2.902998685836792, 0.7202159762382507, -0.10574880242347717, 1.3499031066894531, 0.4904903769493103, -0.02401638776063919, -0.06914898008108139, -0.29586654901504517, -0.25555160641670227, 0.2743908166885376, 1.4021424055099487, -0.6667184233665466, -0.2957586944103241, -0.25879934430122375]} +{"t": 7.0225, "q": [-0.3624506890773773, -0.02526295930147171, 0.016860397532582283, 0.6010562777519226, -0.2857564687728882, 0.02001716010272503, -0.3840712904930115, 0.013831393793225288, -0.008637772873044014, 0.6081722378730774, -0.29147869348526, -0.012947497889399529, 0.003481892868876457, 0.0074152289889752865, -0.02036862261593342, -2.9026153087615967, 0.7206354141235352, -0.10580872744321823, 1.3494837284088135, 0.49077799916267395, -0.02419615164399147, -0.06916096061468124, -0.2958545684814453, -0.25557559728622437, 0.2743908166885376, 1.4021424055099487, -0.6667304039001465, -0.29574671387672424, -0.25877538323402405]} +{"t": 7.0394, "q": [-0.36247625946998596, -0.02532261423766613, 0.016833612695336342, 0.6010648012161255, -0.2857564687728882, 0.02001716010272503, -0.38408833742141724, 0.013814348727464676, -0.008677948266267776, 0.6081637144088745, -0.2914745509624481, -0.012940285727381706, 0.0035220684949308634, 0.007430414203554392, -0.020378436893224716, -2.902411460876465, 0.72101891040802, -0.10585666447877884, 1.349303960800171, 0.4909937083721161, -0.024220118299126625, -0.0691729485988617, -0.2958545684814453, -0.25557559728622437, 0.2744147777557373, 1.402130365371704, -0.6667064428329468, -0.2957586944103241, -0.2587873637676239]} +{"t": 7.0561, "q": [-0.3625018298625946, -0.02526295930147171, 0.016833612695336342, 0.6010562777519226, -0.2857606112957001, 0.020024362951517105, -0.38408833742141724, 0.013805827125906944, -0.00865116436034441, 0.6081466674804688, -0.2914870083332062, -0.012947462499141693, 0.0036024199798703194, 0.007430414203554392, -0.020378436893224716, -2.9021599292755127, 0.7214743494987488, -0.1059165820479393, 1.3491002321243286, 0.491113543510437, -0.024339960888028145, -0.0691729485988617, -0.295878529548645, -0.2555636167526245, 0.2744387686252594, 1.402130365371704, -0.6667423844337463, -0.29577067494392395, -0.2587873637676239]} +{"t": 7.0729, "q": [-0.3625103533267975, -0.02526295930147171, 0.016833612695336342, 0.6010648012161255, -0.2857564687728882, 0.02001716010272503, -0.38408833742141724, 0.013805827125906944, -0.00865116436034441, 0.608129620552063, -0.2914787232875824, -0.012933037243783474, 0.003589028026908636, 0.0074076359160244465, -0.020363714545965195, -2.902064085006714, 0.7219417095184326, -0.10603642463684082, 1.3490042686462402, 0.4911614954471588, -0.024351945146918297, -0.0691729485988617, -0.2958905100822449, -0.2555636167526245, 0.2744147777557373, 1.4021543264389038, -0.6667423844337463, -0.2957586944103241, -0.25877538323402405]} +{"t": 7.0896, "q": [-0.36251887679100037, -0.02525443769991398, 0.016847005113959312, 0.6010562777519226, -0.2857606112957001, 0.020024362951517105, -0.38408833742141724, 0.013805827125906944, -0.008637772873044014, 0.6080955266952515, -0.2914870083332062, -0.012947462499141693, 0.003589028026908636, 0.0074152289889752865, -0.02036862261593342, -2.901860237121582, 0.7224810123443604, -0.10602444410324097, 1.3488125801086426, 0.49117347598075867, -0.024411866441369057, -0.0691729485988617, -0.2958905100822449, -0.25555160641670227, 0.2744387686252594, 1.4021424055099487, -0.6667543649673462, -0.2957586944103241, -0.2587873637676239]} +{"t": 7.1063, "q": [-0.36252740025520325, -0.02525443769991398, 0.016847005113959312, 0.6010392308235168, -0.2857606112957001, 0.020024362951517105, -0.38408833742141724, 0.013788782991468906, -0.008637772873044014, 0.6080955266952515, -0.2914828658103943, -0.012925789691507816, 0.00354885240085423, 0.007430414203554392, -0.020378436893224716, -2.901728391647339, 0.7231161594390869, -0.10608436167240143, 1.348572850227356, 0.4911974370479584, -0.02448377199470997, -0.06918492913246155, -0.295878529548645, -0.2555636167526245, 0.2743908166885376, 1.4021424055099487, -0.666766345500946, -0.29577067494392395, -0.25879934430122375]} +{"t": 7.1231, "q": [-0.36252740025520325, -0.02526295930147171, 0.016860397532582283, 0.6010221838951111, -0.2857564687728882, 0.02001716010272503, -0.384105384349823, 0.013788782991468906, -0.008624380454421043, 0.6080955266952515, -0.2914870083332062, -0.012947462499141693, 0.0035086767747998238, 0.0074152289889752865, -0.02036862261593342, -2.9014647006988525, 0.7239790558815002, -0.10620420426130295, 1.3482612371444702, 0.49125736951828003, -0.024567661806941032, -0.0691729485988617, -0.29586654901504517, -0.25557559728622437, 0.27442678809165955, 1.4021424055099487, -0.6668022871017456, -0.2957586944103241, -0.25879934430122375]} +{"t": 7.1398, "q": [-0.36253592371940613, -0.02525443769991398, 0.016847005113959312, 0.6010221838951111, -0.2857606112957001, 0.020024362951517105, -0.3840968608856201, 0.013788782991468906, -0.008624380454421043, 0.6080784797668457, -0.2914828658103943, -0.012925789691507816, 0.003468500915914774, 0.0074152289889752865, -0.02036862261593342, -2.9013450145721436, 0.7247580289840698, -0.10626412183046341, 1.3481534719467163, 0.4912933111190796, -0.02460361458361149, -0.06914898008108139, -0.295878529548645, -0.2555636167526245, 0.27445074915885925, 1.4021543264389038, -0.6667783260345459, -0.29574671387672424, -0.25877538323402405]} +{"t": 7.1566, "q": [-0.362544447183609, -0.02526295930147171, 0.016860397532582283, 0.6010136604309082, -0.2857564687728882, 0.02001716010272503, -0.38413095474243164, 0.013822871260344982, -0.008610988967120647, 0.6080955266952515, -0.29149532318115234, -0.012932966463267803, 0.0034551091957837343, 0.0074152289889752865, -0.02036862261593342, -2.9012250900268555, 0.7255250215530396, -0.10627610981464386, 1.3480935096740723, 0.4912933111190796, -0.024591630324721336, -0.0691729485988617, -0.29586654901504517, -0.25555160641670227, 0.2744147777557373, 1.4021424055099487, -0.6668142676353455, -0.29574671387672424, -0.2587873637676239]} +{"t": 7.1733, "q": [-0.3625529706478119, -0.02525443769991398, 0.016833612695336342, 0.6010136604309082, -0.2857606112957001, 0.020024362951517105, -0.38412243127822876, 0.013805827125906944, -0.008624380454421043, 0.6080614328384399, -0.29149532318115234, -0.012932966463267803, 0.0035220684949308634, 0.0074076359160244465, -0.020363714545965195, -2.9010932445526123, 0.726172149181366, -0.10631205886602402, 1.348057508468628, 0.4913172721862793, -0.02461559884250164, -0.06918492913246155, -0.2958905100822449, -0.25552764534950256, 0.2744387686252594, 1.4021543264389038, -0.6668142676353455, -0.29574671387672424, -0.2587873637676239]} +{"t": 7.19, "q": [-0.36257851123809814, -0.025237392634153366, 0.01679343730211258, 0.6009966135025024, -0.2857606112957001, 0.020024362951517105, -0.3841394782066345, 0.013805827125906944, -0.00865116436034441, 0.6080529093742371, -0.29149118065834045, -0.012940214946866035, 0.003481892868876457, 0.007392450701445341, -0.020353900268673897, -2.9009974002838135, 0.726687490940094, -0.10633602738380432, 1.3480935096740723, 0.49137720465660095, -0.024579646065831184, -0.06916096061468124, -0.295878529548645, -0.2555396258831024, 0.2744147777557373, 1.4021543264389038, -0.6668262481689453, -0.29574671387672424, -0.25879934430122375]} +{"t": 7.207, "q": [-0.362587034702301, -0.025237392634153366, 0.01679343730211258, 0.6010136604309082, -0.2857606112957001, 0.020024362951517105, -0.38412243127822876, 0.013822871260344982, -0.008677948266267776, 0.6080443859100342, -0.29149118065834045, -0.012940214946866035, 0.0035220684949308634, 0.0074076359160244465, -0.020363714545965195, -2.9008896350860596, 0.7271308898925781, -0.10633602738380432, 1.3479856252670288, 0.49140116572380066, -0.024579646065831184, -0.06916096061468124, -0.2958905100822449, -0.25552764534950256, 0.2744147777557373, 1.4021543264389038, -0.6668142676353455, -0.2957347333431244, -0.2587873637676239]} +{"t": 7.2238, "q": [-0.3625955581665039, -0.025245916098356247, 0.01678004488348961, 0.6010136604309082, -0.2857606112957001, 0.020024362951517105, -0.38413095474243164, 0.013805827125906944, -0.008677948266267776, 0.6080188751220703, -0.29149535298347473, -0.012918488122522831, 0.0035220684949308634, 0.007392450701445341, -0.020353900268673897, -2.9007816314697266, 0.7274065017700195, -0.10633602738380432, 1.3478658199310303, 0.49142512679100037, -0.02461559884250164, -0.06916096061468124, -0.295878529548645, -0.2555396258831024, 0.27442678809165955, 1.4021543264389038, -0.6668262481689453, -0.2957347333431244, -0.2587873637676239]} +{"t": 7.2407, "q": [-0.362587034702301, -0.02525443769991398, 0.016753261908888817, 0.6010221838951111, -0.2857606112957001, 0.020024362951517105, -0.384105384349823, 0.013797304593026638, -0.00865116436034441, 0.6080103516578674, -0.29149118065834045, -0.012925754301249981, 0.003562244353815913, 0.007384864613413811, -0.020358750596642494, -2.9006619453430176, 0.7275862693786621, -0.10631205886602402, 1.3477818965911865, 0.4914371371269226, -0.024627583101391792, -0.0691729485988617, -0.2959024906158447, -0.2555156648159027, 0.27445074915885925, 1.4021543264389038, -0.6668382287025452, -0.29574671387672424, -0.2587873637676239]} +{"t": 7.2574, "q": [-0.362587034702301, -0.025245916098356247, 0.01678004488348961, 0.601030707359314, -0.2857606112957001, 0.020024362951517105, -0.3841139078140259, 0.0137802604585886, -0.00865116436034441, 0.6080188751220703, -0.29149118065834045, -0.012925754301249981, 0.003589028026908636, 0.007400043308734894, -0.02035880833864212, -2.900482177734375, 0.7275742888450623, -0.10638396441936493, 1.3476860523223877, 0.4914371371269226, -0.0246755201369524, -0.0691729485988617, -0.2959024906158447, -0.25550368428230286, 0.2744387686252594, 1.4021543264389038, -0.6668262481689453, -0.29572275280952454, -0.25877538323402405]} +{"t": 7.2741, "q": [-0.3626040816307068, -0.02526295930147171, 0.01680682972073555, 0.601030707359314, -0.2857606112957001, 0.020024362951517105, -0.3841139078140259, 0.0137802604585886, -0.008637772873044014, 0.6080273985862732, -0.29149118065834045, -0.012940214946866035, 0.003575636073946953, 0.0074076359160244465, -0.020363714545965195, -2.900266408920288, 0.7275742888450623, -0.1065397635102272, 1.347602128982544, 0.49142512679100037, -0.024723457172513008, -0.0691729485988617, -0.295878529548645, -0.25545573234558105, 0.2744147777557373, 1.4021424055099487, -0.666850209236145, -0.29572275280952454, -0.2587873637676239]} +{"t": 7.2909, "q": [-0.3626040816307068, -0.02526295930147171, 0.01682022027671337, 0.6010221838951111, -0.2857606112957001, 0.020024362951517105, -0.3841139078140259, 0.013763216324150562, -0.008610988967120647, 0.6080358624458313, -0.2914745509624481, -0.012925807386636734, 0.003562244353815913, 0.0074152289889752865, -0.02036862261593342, -2.900050640106201, 0.7275383472442627, -0.10664761811494827, 1.3475302457809448, 0.4914371371269226, -0.024867268279194832, -0.0691729485988617, -0.2959024906158447, -0.25543177127838135, 0.2744147777557373, 1.402130365371704, -0.6668382287025452, -0.29572275280952454, -0.25877538323402405]} +{"t": 7.3076, "q": [-0.3625955581665039, -0.02526295930147171, 0.01682022027671337, 0.6010477542877197, -0.28576895594596863, 0.020038772374391556, -0.38412243127822876, 0.013737649656832218, -0.008624380454421043, 0.6080443859100342, -0.2914870083332062, -0.012947462499141693, 0.0035354604478925467, 0.0074076359160244465, -0.020363714545965195, -2.8997271060943604, 0.7275383472442627, -0.10675548017024994, 1.3473984003067017, 0.4914610981941223, -0.02502306178212166, -0.06914898008108139, -0.2959024906158447, -0.25538384914398193, 0.2744147777557373, 1.4021543264389038, -0.6668382287025452, -0.29572275280952454, -0.25879934430122375]} +{"t": 7.3244, "q": [-0.3625955581665039, -0.025288525968790054, 0.016860397532582283, 0.6010648012161255, -0.28576895594596863, 0.020038772374391556, -0.38412243127822876, 0.013729128055274487, -0.008610988967120647, 0.6080443859100342, -0.29148703813552856, -0.012918542139232159, 0.0035220684949308634, 0.0074076359160244465, -0.020363714545965195, -2.8993794918060303, 0.7275383472442627, -0.10676746070384979, 1.3472785949707031, 0.4914610981941223, -0.025070998817682266, -0.06914898008108139, -0.2958905100822449, -0.25529995560646057, 0.2744387686252594, 1.4021543264389038, -0.6668382287025452, -0.29572275280952454, -0.2587873637676239]} +{"t": 7.3412, "q": [-0.36257851123809814, -0.02532261423766613, 0.016860397532582283, 0.6010648012161255, -0.28576481342315674, 0.020017117261886597, -0.384105384349823, 0.013746172189712524, -0.008624380454421043, 0.6080529093742371, -0.29149118065834045, -0.012925754301249981, 0.0035220684949308634, 0.0074076359160244465, -0.020363714545965195, -2.8990321159362793, 0.7275383472442627, -0.10687532275915146, 1.3471348285675049, 0.4914371371269226, -0.02521480992436409, -0.06916096061468124, -0.2959024906158447, -0.2552400231361389, 0.2744387686252594, 1.4021543264389038, -0.666850209236145, -0.29572275280952454, -0.25879934430122375]} +{"t": 7.358, "q": [-0.362587034702301, -0.025280004367232323, 0.01682022027671337, 0.6010733246803284, -0.2857564687728882, 0.02001716010272503, -0.3841139078140259, 0.013737649656832218, -0.00866455677896738, 0.6081040501594543, -0.29149532318115234, -0.012932966463267803, 0.00354885240085423, 0.0074152289889752865, -0.02036862261593342, -2.8985767364501953, 0.7275623083114624, -0.10689929127693176, 1.3470388650894165, 0.4914371371269226, -0.025286715477705002, -0.06914898008108139, -0.29591450095176697, -0.25520408153533936, 0.2744387686252594, 1.4021424055099487, -0.666850209236145, -0.29569876194000244, -0.2588113248348236]} +{"t": 7.3747, "q": [-0.362587034702301, -0.02526295930147171, 0.01680682972073555, 0.6010733246803284, -0.2857564687728882, 0.02001716010272503, -0.384105384349823, 0.01375469472259283, -0.008677948266267776, 0.6080870032310486, -0.29149118065834045, -0.012940214946866035, 0.0035354604478925467, 0.007407642900943756, -0.020373472943902016, -2.898109197616577, 0.7275623083114624, -0.10693524032831192, 1.3469669818878174, 0.4914371371269226, -0.02534663677215576, -0.06913699209690094, -0.2959024906158447, -0.25520408153533936, 0.27442678809165955, 1.4021424055099487, -0.6668621897697449, -0.2956867814064026, -0.25879934430122375]} +{"t": 7.3915, "q": [-0.36257851123809814, -0.02526295930147171, 0.01679343730211258, 0.6010733246803284, -0.2857564687728882, 0.02001716010272503, -0.384105384349823, 0.013737649656832218, -0.008677948266267776, 0.6080784797668457, -0.29149118065834045, -0.012940214946866035, 0.003575636073946953, 0.007407642900943756, -0.020373472943902016, -2.89749813079834, 0.7275503277778625, -0.10695920884609222, 1.3467752933502197, 0.4914610981941223, -0.02539457380771637, -0.06911302357912064, -0.29591450095176697, -0.25520408153533936, 0.27445074915885925, 1.4021424055099487, -0.666850209236145, -0.29569876194000244, -0.25879934430122375]} +{"t": 7.4082, "q": [-0.36257851123809814, -0.025280004367232323, 0.01679343730211258, 0.6010818481445312, -0.2857564687728882, 0.02001716010272503, -0.3841139078140259, 0.013746172189712524, -0.008677948266267776, 0.608129620552063, -0.29149118065834045, -0.012925754301249981, 0.0036024199798703194, 0.007400057278573513, -0.020378325134515762, -2.8968148231506348, 0.7275742888450623, -0.10697119683027267, 1.346475601196289, 0.4914610981941223, -0.02546647936105728, -0.06911302357912064, -0.2959024906158447, -0.2551681101322174, 0.27445074915885925, 1.4021543264389038, -0.6668621897697449, -0.29569876194000244, -0.2587873637676239]} +{"t": 7.425, "q": [-0.3625614643096924, -0.02527148276567459, 0.01678004488348961, 0.6011329889297485, -0.2857606112957001, 0.020024362951517105, -0.3841139078140259, 0.013771738857030869, -0.008704732172191143, 0.6081892848014832, -0.2914870083332062, -0.012933001853525639, 0.0036158119328320026, 0.007422828581184149, -0.020383289083838463, -2.8961198329925537, 0.7275623083114624, -0.10698317736387253, 1.3463797569274902, 0.4914371371269226, -0.025598304346203804, -0.06905310600996017, -0.29591450095176697, -0.25515612959861755, 0.2744387686252594, 1.4021424055099487, -0.6668741703033447, -0.29572275280952454, -0.2587873637676239]} +{"t": 7.4417, "q": [-0.36256998777389526, -0.02526295930147171, 0.01678004488348961, 0.6011415123939514, -0.2857564687728882, 0.02001716010272503, -0.3841139078140259, 0.013763216324150562, -0.008677948266267776, 0.6081892848014832, -0.29149532318115234, -0.012932966463267803, 0.003562244353815913, 0.007400057278573513, -0.020378325134515762, -2.895568609237671, 0.7275742888450623, -0.10705508291721344, 1.34640371799469, 0.4914610981941223, -0.025658225640654564, -0.06902913749217987, -0.29591450095176697, -0.25510820746421814, 0.27442678809165955, 1.4021543264389038, -0.6668621897697449, -0.2957107722759247, -0.2587873637676239]} +{"t": 7.4585, "q": [-0.36257851123809814, -0.02526295930147171, 0.01678004488348961, 0.6011415123939514, -0.2857564687728882, 0.02001716010272503, -0.3841394782066345, 0.0137802604585886, -0.008691340684890747, 0.6081892848014832, -0.29149118065834045, -0.012925754301249981, 0.0035354604478925467, 0.0074152289889752865, -0.02036862261593342, -2.8948974609375, 0.727598249912262, -0.10698317736387253, 1.3463678359985352, 0.4914131462574005, -0.025670209899544716, -0.06900516897439957, -0.29591450095176697, -0.2550722360610962, 0.2744147777557373, 1.4021424055099487, -0.666850209236145, -0.2957107722759247, -0.2587873637676239]} +{"t": 7.4754, "q": [-0.36257851123809814, -0.02526295930147171, 0.01680682972073555, 0.6011670827865601, -0.2857522964477539, 0.020009955391287804, -0.38412243127822876, 0.013788782991468906, -0.008677948266267776, 0.6081892848014832, -0.2914828658103943, -0.01294025033712387, 0.0035086767747998238, 0.007407642900943756, -0.020373472943902016, -2.894214391708374, 0.7276222109794617, -0.10699516534805298, 1.3463078737258911, 0.4914131462574005, -0.025790052488446236, -0.06898120045661926, -0.2959024906158447, -0.2550722360610962, 0.2744147777557373, 1.4021543264389038, -0.6668621897697449, -0.29569876194000244, -0.2587873637676239]} +{"t": 7.4921, "q": [-0.362587034702301, -0.02527148276567459, 0.016833612695336342, 0.6011670827865601, -0.2857564687728882, 0.02001716010272503, -0.3841394782066345, 0.013797304593026638, -0.00865116436034441, 0.6082063317298889, -0.29147869348526, -0.012947497889399529, 0.0034149333368986845, 0.0074076359160244465, -0.020363714545965195, -2.893663167953491, 0.727825939655304, -0.10686333477497101, 1.3463078737258911, 0.49130529165267944, -0.02581402100622654, -0.06884937733411789, -0.2959264814853668, -0.25506025552749634, 0.27442678809165955, 1.402118444442749, -0.666850209236145, -0.2957107722759247, -0.25879934430122375]} +{"t": 7.5092, "q": [-0.3625614643096924, -0.02532261423766613, 0.01682022027671337, 0.6011585593223572, -0.28576478362083435, 0.02003156766295433, -0.38413095474243164, 0.013797304593026638, -0.008637772873044014, 0.6081892848014832, -0.2914828658103943, -0.01294025033712387, 0.0034149333368986845, 0.007400050293654203, -0.02036856673657894, -2.893279552459717, 0.7284611463546753, -0.10691127181053162, 1.3462718725204468, 0.4913172721862793, -0.025849973782896996, -0.06880144029855728, -0.29591450095176697, -0.2550482749938965, 0.27442678809165955, 1.4021424055099487, -0.6668621897697449, -0.2956867814064026, -0.2588113248348236]} +{"t": 7.5259, "q": [-0.36261260509490967, -0.02532261423766613, 0.01680682972073555, 0.6011756062507629, -0.2857606112957001, 0.020024362951517105, -0.3841565251350403, 0.013788782991468906, -0.00865116436034441, 0.6081807613372803, -0.29149118065834045, -0.012925754301249981, 0.0033881496638059616, 0.007384864613413811, -0.020358750596642494, -2.892740249633789, 0.7293479442596436, -0.10687532275915146, 1.3462239503860474, 0.49128133058547974, -0.02581402100622654, -0.06875350326299667, -0.2959264814853668, -0.2550482749938965, 0.2744387686252594, 1.4021424055099487, -0.6668741703033447, -0.2957107722759247, -0.25879934430122375]} +{"t": 7.5427, "q": [-0.3625955581665039, -0.02532261423766613, 0.016847005113959312, 0.6011585593223572, -0.2857564687728882, 0.02001716010272503, -0.3841480016708374, 0.013788782991468906, -0.00865116436034441, 0.6081807613372803, -0.29149118065834045, -0.012940214946866035, 0.0034149333368986845, 0.007392450701445341, -0.020353900268673897, -2.8920931816101074, 0.7302467823028564, -0.1068153977394104, 1.346247911453247, 0.49125736951828003, -0.025802036747336388, -0.06872953474521637, -0.2959024906158447, -0.2550482749938965, 0.2744387686252594, 1.4021424055099487, -0.6668741703033447, -0.29569876194000244, -0.25879934430122375]} +{"t": 7.5594, "q": [-0.3626552224159241, -0.02533113770186901, 0.01680682972073555, 0.6011585593223572, -0.2857606112957001, 0.020024362951517105, -0.3841991424560547, 0.013805827125906944, -0.00866455677896738, 0.6081807613372803, -0.29149118065834045, -0.012940214946866035, 0.0034551091957837343, 0.007369672413915396, -0.020339177921414375, -2.8917696475982666, 0.73148113489151, -0.1068153977394104, 1.3465595245361328, 0.4913412630558014, -0.02563425712287426, -0.06882540881633759, -0.2959264814853668, -0.2550482749938965, 0.27445074915885925, 1.402130365371704, -0.666850209236145, -0.2956867814064026, -0.2587873637676239]} +{"t": 7.5762, "q": [-0.36275747418403625, -0.025305571034550667, 0.01678004488348961, 0.6011159420013428, -0.2857606112957001, 0.020024362951517105, -0.3842417299747467, 0.013831393793225288, -0.008691340684890747, 0.6080870032310486, -0.2914870083332062, -0.012933001853525639, 0.0033881496638059616, 0.007362079806625843, -0.02033426985144615, -2.8917696475982666, 0.7326436042785645, -0.1068153977394104, 1.3468950986862183, 0.4913891851902008, -0.025298699736595154, -0.06888532638549805, -0.29595044255256653, -0.25503629446029663, 0.27445074915885925, 1.4021424055099487, -0.6668621897697449, -0.2957107722759247, -0.25879934430122375]} +{"t": 7.5929, "q": [-0.36280009150505066, -0.025305571034550667, 0.01679343730211258, 0.6011329889297485, -0.28576895594596863, 0.020038772374391556, -0.38430139422416687, 0.013805827125906944, -0.00865116436034441, 0.6080614328384399, -0.2914870083332062, -0.012933001853525639, 0.0033881496638059616, 0.007346887141466141, -0.020314697176218033, -2.8924646377563477, 0.7341536283493042, -0.1067914292216301, 1.3477100133895874, 0.4915929138660431, -0.024843299761414528, -0.069196917116642, -0.29597440361976624, -0.2550482749938965, 0.2744387686252594, 1.402118444442749, -0.6668621897697449, -0.29569876194000244, -0.25877538323402405]} +{"t": 7.6097, "q": [-0.36285123229026794, -0.02532261423766613, 0.01679343730211258, 0.6011074185371399, -0.28576895594596863, 0.020038772374391556, -0.3843440115451813, 0.013788782991468906, -0.008637772873044014, 0.6080018281936646, -0.29149532318115234, -0.012932966463267803, 0.0034015413839370012, 0.007339288480579853, -0.020300032570958138, -2.893543243408203, 0.7357475161552429, -0.10677944868803024, 1.3483691215515137, 0.49185657501220703, -0.02412424609065056, -0.06956842541694641, -0.29597440361976624, -0.2549883723258972, 0.27442678809165955, 1.4021424055099487, -0.6668741703033447, -0.29569876194000244, -0.2588113248348236]} +{"t": 7.6265, "q": [-0.3628341853618622, -0.02533113770186901, 0.016833612695336342, 0.6010477542877197, -0.2857814431190491, 0.02004593424499035, -0.3843354880809784, 0.013822871260344982, -0.008624380454421043, 0.607967734336853, -0.2915036380290985, -0.012918452732264996, 0.0033747577108442783, 0.007354473229497671, -0.020309844985604286, -2.894789695739746, 0.7378208041191101, -0.10682738572359085, 1.3493398427963257, 0.49222809076309204, -0.023692812770605087, -0.06980811059474945, -0.29597440361976624, -0.2549883723258972, 0.2744627296924591, 1.4021663665771484, -0.6668621897697449, -0.29569876194000244, -0.25879934430122375]} +{"t": 7.6433, "q": [-0.3628768026828766, -0.02532261423766613, 0.01682022027671337, 0.6010221838951111, -0.28578981757164, 0.02004590816795826, -0.38435253500938416, 0.013797304593026638, -0.008637772873044014, 0.6078910231590271, -0.2915078103542328, -0.012911204248666763, 0.0033747577108442783, 0.007354473229497671, -0.020309844985604286, -2.8965632915496826, 0.7397263050079346, -0.1068393662571907, 1.3506700992584229, 0.4928153157234192, -0.023333286866545677, -0.07034739851951599, -0.2959863841533661, -0.25495240092277527, 0.27442678809165955, 1.402130365371704, -0.6668621897697449, -0.29569876194000244, -0.25882330536842346]} +{"t": 7.66, "q": [-0.3628341853618622, -0.02532261423766613, 0.01680682972073555, 0.6009710431098938, -0.28578564524650574, 0.02003868669271469, -0.3843354880809784, 0.013805827125906944, -0.008624380454421043, 0.6078398823738098, -0.2915036380290985, -0.012918452732264996, 0.0034149333368986845, 0.007346881553530693, -0.020304938778281212, -2.897977352142334, 0.7420272827148438, -0.10682738572359085, 1.3518086671829224, 0.49324673414230347, -0.022841934114694595, -0.07047922909259796, -0.2959863841533661, -0.254976361989975, 0.2744147777557373, 1.4021424055099487, -0.6668621897697449, -0.2956867814064026, -0.25882330536842346]} +{"t": 7.6768, "q": [-0.3628768026828766, -0.025305571034550667, 0.01680682972073555, 0.6009710431098938, -0.28578147292137146, 0.020031481981277466, -0.38436105847358704, 0.013814348727464676, -0.008677948266267776, 0.6078484058380127, -0.2914994955062866, -0.012925700284540653, 0.003321190131828189, 0.007308924570679665, -0.020290160551667213, -2.8999547958374023, 0.7443042993545532, -0.1068393662571907, 1.3538459539413452, 0.493462473154068, -0.022518359124660492, -0.07081478834152222, -0.29597440361976624, -0.2549643814563751, 0.2744147777557373, 1.4021543264389038, -0.6668621897697449, -0.29569876194000244, -0.2588352859020233]} +{"t": 7.6935, "q": [-0.36290237307548523, -0.02532261423766613, 0.01680682972073555, 0.6009625196456909, -0.28578981757164, 0.02004590816795826, -0.3843440115451813, 0.013805827125906944, -0.008677948266267776, 0.6078313589096069, -0.2914994955062866, -0.012925700284540653, 0.003347973804920912, 0.007270961068570614, -0.020265623927116394, -2.901381015777588, 0.7465932369232178, -0.10671952366828918, 1.3552360534667969, 0.49349841475486755, -0.021979069337248802, -0.07091066241264343, -0.29597440361976624, -0.25495240092277527, 0.2744387686252594, 1.4021663665771484, -0.6668621897697449, -0.29569876194000244, -0.2588113248348236]} +{"t": 7.7103, "q": [-0.362919420003891, -0.02532261423766613, 0.016753261908888817, 0.6009795665740967, -0.28578981757164, 0.02004590816795826, -0.38431844115257263, 0.013831393793225288, -0.008691340684890747, 0.607822835445404, -0.29149532318115234, -0.012932966463267803, 0.003361365757882595, 0.007225411478430033, -0.020245937630534172, -2.9024834632873535, 0.7487024664878845, -0.10667158663272858, 1.35611093044281, 0.4935343563556671, -0.02177533693611622, -0.0710424855351448, -0.2959863841533661, -0.2549643814563751, 0.2744147777557373, 1.4021782875061035, -0.6668741703033447, -0.2957107722759247, -0.25882330536842346]} +{"t": 7.727, "q": [-0.36292794346809387, -0.02532261423766613, 0.016753261908888817, 0.6010136604309082, -0.2857939898967743, 0.02003866247832775, -0.38431844115257263, 0.013822871260344982, -0.008704732172191143, 0.6077972650527954, -0.2914994955062866, -0.012911240570247173, 0.003347973804920912, 0.0071495044976472855, -0.020226137712597847, -2.903226613998413, 0.7505840063095093, -0.10671952366828918, 1.3566502332687378, 0.49370214343070984, -0.021583588793873787, -0.07111439108848572, -0.2959863841533661, -0.2549643814563751, 0.2744147777557373, 1.4021543264389038, -0.6668621897697449, -0.29569876194000244, -0.25882330536842346]} +{"t": 7.7437, "q": [-0.36293643712997437, -0.02532261423766613, 0.016766652464866638, 0.6010477542877197, -0.28578981757164, 0.02004590816795826, -0.38430991768836975, 0.013822871260344982, -0.008704732172191143, 0.607822835445404, -0.29149535298347473, -0.012918488122522831, 0.003361365757882595, 0.007028034422546625, -0.020167134702205658, -2.903669834136963, 0.7521659135818481, -0.10670754313468933, 1.3570218086242676, 0.4938579499721527, -0.021511685103178024, -0.07112637907266617, -0.2959863841533661, -0.25495240092277527, 0.2744147777557373, 1.4021782875061035, -0.6668741703033447, -0.29569876194000244, -0.25882330536842346]} +{"t": 7.7605, "q": [-0.36293643712997437, -0.02533113770186901, 0.016753261908888817, 0.6011329889297485, -0.28578981757164, 0.02004590816795826, -0.38425877690315247, 0.013797304593026638, -0.008718123659491539, 0.6078569293022156, -0.29149118065834045, -0.012940214946866035, 0.0034283252898603678, 0.006959706544876099, -0.020132726058363914, -2.903921604156494, 0.7533403635025024, -0.10670754313468933, 1.3573453426361084, 0.493917852640152, -0.021451763808727264, -0.07113835960626602, -0.29599836468696594, -0.254976361989975, 0.2743908166885376, 1.4021782875061035, -0.6668621897697449, -0.2957107722759247, -0.25882330536842346]} +{"t": 7.7774, "q": [-0.36294496059417725, -0.02532261423766613, 0.016753261908888817, 0.6012522578239441, -0.28578564524650574, 0.02003868669271469, -0.38425877690315247, 0.0137802604585886, -0.008744907565414906, 0.6079080700874329, -0.29149532318115234, -0.012932966463267803, 0.0035354604478925467, 0.006883807014673948, -0.02012268640100956, -2.903993606567383, 0.7542152404785156, -0.10671952366828918, 1.357525110244751, 0.4939418137073517, -0.02142779529094696, -0.07113835960626602, -0.2959863841533661, -0.25495240092277527, 0.2744147777557373, 1.4021663665771484, -0.6668621897697449, -0.2957107722759247, -0.2588113248348236]} +{"t": 7.7941, "q": [-0.362962007522583, -0.025339659303426743, 0.016713086515665054, 0.6013801097869873, -0.2857772707939148, 0.020053181797266006, -0.3841991424560547, 0.013746172189712524, -0.008798475377261639, 0.6079251170158386, -0.29148703813552856, -0.012918542139232159, 0.0037229470908641815, 0.006830699276179075, -0.02014688402414322, -2.9040772914886475, 0.7546586394309998, -0.10668357461690903, 1.3576569557189941, 0.4939418137073517, -0.0213678739964962, -0.07113835960626602, -0.29599836468696594, -0.25495240092277527, 0.27445074915885925, 1.4021543264389038, -0.6668862104415894, -0.29572275280952454, -0.2588352859020233]} +{"t": 7.8108, "q": [-0.36293643712997437, -0.02539079077541828, 0.016605950891971588, 0.6014823913574219, -0.2857772707939148, 0.020053181797266006, -0.38412243127822876, 0.013686517253518105, -0.008892218582332134, 0.6079762578010559, -0.29149532318115234, -0.012932966463267803, 0.003803298342972994, 0.0067396704107522964, -0.020205095410346985, -2.904137372970581, 0.7548983097076416, -0.10669555515050888, 1.3577167987823486, 0.4939418137073517, -0.021403826773166656, -0.07115034759044647, -0.29604631662368774, -0.25492843985557556, 0.27442678809165955, 1.4021424055099487, -0.6668741703033447, -0.2957347333431244, -0.25882330536842346]} +{"t": 7.8277, "q": [-0.3629705309867859, -0.025416357442736626, 0.016565775498747826, 0.6016783714294434, -0.28578981757164, 0.02004590816795826, -0.3840712904930115, 0.013635384850203991, -0.008865434676408768, 0.6079762578010559, -0.29149535298347473, -0.012918488122522831, 0.0038300822488963604, 0.0066713979467749596, -0.02024875581264496, -2.9042930603027344, 0.7548743486404419, -0.10669555515050888, 1.3577288389205933, 0.493917852640152, -0.02141581103205681, -0.07115034759044647, -0.2960103750228882, -0.25492843985557556, 0.2744387686252594, 1.4021543264389038, -0.666850209236145, -0.29572275280952454, -0.2588113248348236]} +{"t": 7.8444, "q": [-0.36294496059417725, -0.025433402508497238, 0.01663273386657238, 0.6017806529998779, -0.2857814431190491, 0.020060403272509575, -0.38404572010040283, 0.013601296581327915, -0.008838650770485401, 0.6080443859100342, -0.29149118065834045, -0.012925754301249981, 0.003776514669880271, 0.006641061510890722, -0.02027791738510132, -2.904568672180176, 0.7548384070396423, -0.10667158663272858, 1.3577288389205933, 0.49389389157295227, -0.021463748067617416, -0.07115034759044647, -0.2960343360900879, -0.2549404203891754, 0.27442678809165955, 1.4021424055099487, -0.666850209236145, -0.29572275280952454, -0.25882330536842346]} +{"t": 7.8612, "q": [-0.36294496059417725, -0.025424880906939507, 0.01665951870381832, 0.6018317937850952, -0.2857981324195862, 0.02006031759083271, -0.38402867317199707, 0.013592774048447609, -0.008798475377261639, 0.6080870032310486, -0.29149535298347473, -0.012904027476906776, 0.0036425956059247255, 0.0066410754807293415, -0.02029743418097496, -2.9047605991363525, 0.7548384070396423, -0.10665960609912872, 1.3577048778533936, 0.49386993050575256, -0.02148771658539772, -0.07113835960626602, -0.2960343360900879, -0.2549164593219757, 0.2744387686252594, 1.4021543264389038, -0.6668741703033447, -0.29572275280952454, -0.25882330536842346]} +{"t": 7.8781, "q": [-0.36292794346809387, -0.025433402508497238, 0.016726477071642876, 0.601917028427124, -0.2857897877693176, 0.020074812695384026, -0.3840542435646057, 0.013575729914009571, -0.008744907565414906, 0.6081040501594543, -0.29149121046066284, -0.012896797619760036, 0.00354885240085423, 0.006641082465648651, -0.02030719257891178, -2.904808521270752, 0.7548384070396423, -0.10665960609912872, 1.3576209545135498, 0.49389389157295227, -0.02147573232650757, -0.07113835960626602, -0.29602235555648804, -0.25492843985557556, 0.2744147777557373, 1.4021663665771484, -0.666850209236145, -0.29572275280952454, -0.2588352859020233]} +{"t": 7.8948, "q": [-0.36294496059417725, -0.025458969175815582, 0.01678004488348961, 0.6020192503929138, -0.2857814431190491, 0.020060403272509575, -0.3840542435646057, 0.013558685779571533, -0.00865116436034441, 0.608129620552063, -0.29148703813552856, -0.012904045172035694, 0.003481892868876457, 0.006656261160969734, -0.020307250320911407, -2.904844284057617, 0.7548384070396423, -0.10664761811494827, 1.3576329946517944, 0.49389389157295227, -0.02148771658539772, -0.07113835960626602, -0.2960103750228882, -0.2549164593219757, 0.2744627296924591, 1.4021543264389038, -0.6668621897697449, -0.2957347333431244, -0.25882330536842346]} +{"t": 7.9115, "q": [-0.36294496059417725, -0.02544192411005497, 0.016753261908888817, 0.6020277738571167, -0.2857814431190491, 0.020060403272509575, -0.3840712904930115, 0.013567207381129265, -0.008677948266267776, 0.6081466674804688, -0.2914828956127167, -0.012896833010017872, 0.003468500915914774, 0.0066410754807293415, -0.02029743418097496, -2.904832363128662, 0.7548264265060425, -0.10665960609912872, 1.3576569557189941, 0.49379801750183105, -0.021439779549837112, -0.07112637907266617, -0.2960103750228882, -0.25495240092277527, 0.2744147777557373, 1.4021663665771484, -0.6668741703033447, -0.29572275280952454, -0.25882330536842346]} +{"t": 7.9283, "q": [-0.3629705309867859, -0.025399314239621162, 0.016766652464866638, 0.6020959615707397, -0.2857772707939148, 0.020053181797266006, -0.38408833742141724, 0.013601296581327915, -0.00865116436034441, 0.6081466674804688, -0.29149535298347473, -0.012889549136161804, 0.0034149333368986845, 0.006663846783339977, -0.02030239813029766, -2.904808521270752, 0.7548384070396423, -0.10664761811494827, 1.357692837715149, 0.49379801750183105, -0.02142779529094696, -0.07115034759044647, -0.2960103750228882, -0.2549404203891754, 0.27445074915885925, 1.4021663665771484, -0.666850209236145, -0.2957347333431244, -0.25882330536842346]} +{"t": 7.945, "q": [-0.3629705309867859, -0.025399314239621162, 0.016766652464866638, 0.602147102355957, -0.2857814431190491, 0.020060403272509575, -0.38407981395721436, 0.013618340715765953, -0.00866455677896738, 0.6081551909446716, -0.291499525308609, -0.012896779924631119, 0.0033747577108442783, 0.006663846783339977, -0.02030239813029766, -2.904820442199707, 0.7548144459724426, -0.10659968107938766, 1.3577288389205933, 0.49377405643463135, -0.021439779549837112, -0.07113835960626602, -0.29599836468696594, -0.2549404203891754, 0.27445074915885925, 1.4021663665771484, -0.6668022871017456, -0.29574671387672424, -0.25882330536842346]} +{"t": 7.9618, "q": [-0.362962007522583, -0.02538226917386055, 0.016713086515665054, 0.6021897196769714, -0.2857814431190491, 0.020060403272509575, -0.38408833742141724, 0.013635384850203991, -0.008637772873044014, 0.6081466674804688, -0.29149535298347473, -0.012889549136161804, 0.0033881496638059616, 0.006648675072938204, -0.020312100648880005, -2.904820442199707, 0.7548384070396423, -0.10659968107938766, 1.3577048778533936, 0.49379801750183105, -0.02147573232650757, -0.07113835960626602, -0.29599836468696594, -0.2549404203891754, 0.27442678809165955, 1.4021663665771484, -0.6668382287025452, -0.2957347333431244, -0.2588352859020233]} +{"t": 7.9785, "q": [-0.3629705309867859, -0.025365225970745087, 0.016686301678419113, 0.6021982431411743, -0.2857772707939148, 0.020053181797266006, -0.38408833742141724, 0.013652428984642029, -0.00866455677896738, 0.6081551909446716, -0.29149535298347473, -0.012904027476906776, 0.0034015413839370012, 0.006656268145889044, -0.02031700871884823, -2.904844284057617, 0.7548384070396423, -0.10659968107938766, 1.3576569557189941, 0.49377405643463135, -0.021463748067617416, -0.07112637907266617, -0.2959863841533661, -0.2549404203891754, 0.2744147777557373, 1.4021663665771484, -0.6668142676353455, -0.2957347333431244, -0.25882330536842346]} +{"t": 7.9952, "q": [-0.3629534840583801, -0.025356702506542206, 0.016672909259796143, 0.602223813533783, -0.2857772707939148, 0.020053181797266006, -0.38407981395721436, 0.013677995651960373, -0.00866455677896738, 0.6081892848014832, -0.29149535298347473, -0.012889549136161804, 0.0034283252898603678, 0.006648675072938204, -0.020312100648880005, -2.904820442199707, 0.7548144459724426, -0.10658770054578781, 1.3576688766479492, 0.49379801750183105, -0.02148771658539772, -0.07113835960626602, -0.29599836468696594, -0.2549164593219757, 0.2744387686252594, 1.4021663665771484, -0.6668142676353455, -0.29574671387672424, -0.25882330536842346]} +{"t": 8.0119, "q": [-0.3629534840583801, -0.025339659303426743, 0.01664612628519535, 0.602223813533783, -0.2857814431190491, 0.02004593424499035, -0.38407981395721436, 0.013686517253518105, -0.008677948266267776, 0.6082063317298889, -0.2915078103542328, -0.012896744534373283, 0.003468500915914774, 0.006663846783339977, -0.02030239813029766, -2.904820442199707, 0.7548144459724426, -0.10657571256160736, 1.357692837715149, 0.49379801750183105, -0.02148771658539772, -0.07113835960626602, -0.29599836468696594, -0.25495240092277527, 0.27442678809165955, 1.4021663665771484, -0.6668262481689453, -0.29572275280952454, -0.25882330536842346]} +{"t": 8.0287, "q": [-0.362962007522583, -0.02532261423766613, 0.016672909259796143, 0.6022152900695801, -0.2857772707939148, 0.020053181797266006, -0.38408833742141724, 0.013677995651960373, -0.008677948266267776, 0.6082319021224976, -0.29149535298347473, -0.012889549136161804, 0.0035220684949308634, 0.006656268145889044, -0.02031700871884823, -2.904820442199707, 0.7548144459724426, -0.10655174404382706, 1.3576569557189941, 0.49379801750183105, -0.021499700844287872, -0.07115034759044647, -0.2960103750228882, -0.2549404203891754, 0.27442678809165955, 1.4021424055099487, -0.6668022871017456, -0.2957586944103241, -0.2588352859020233]} +{"t": 8.0455, "q": [-0.36297905445098877, -0.02539079077541828, 0.01664612628519535, 0.6022323369979858, -0.2857730984687805, 0.02004597708582878, -0.384105384349823, 0.013677995651960373, -0.00873151607811451, 0.6082489490509033, -0.291499525308609, -0.012896779924631119, 0.0035220684949308634, 0.006686625070869923, -0.020317120477557182, -2.904820442199707, 0.7548144459724426, -0.10655174404382706, 1.3576809167861938, 0.49379801750183105, -0.021511685103178024, -0.07113835960626602, -0.2960103750228882, -0.2549404203891754, 0.2744147777557373, 1.4021782875061035, -0.6668262481689453, -0.29577067494392395, -0.25882330536842346]} +{"t": 8.0622, "q": [-0.3629705309867859, -0.025365225970745087, 0.01664612628519535, 0.6022067666053772, -0.2857772707939148, 0.020053181797266006, -0.38412243127822876, 0.013686517253518105, -0.00873151607811451, 0.6082148551940918, -0.2915078103542328, -0.012896744534373283, 0.003589028026908636, 0.006686632055789232, -0.020326878875494003, -2.904820442199707, 0.7548144459724426, -0.10656373202800751, 1.3577048778533936, 0.49379801750183105, -0.021571604534983635, -0.07113835960626602, -0.29599836468696594, -0.2549404203891754, 0.2744147777557373, 1.4021543264389038, -0.6668142676353455, -0.29577067494392395, -0.25882330536842346]} +{"t": 8.0789, "q": [-0.3630046248435974, -0.02539079077541828, 0.01664612628519535, 0.6022067666053772, -0.28576895594596863, 0.020038772374391556, -0.38413095474243164, 0.013686517253518105, -0.008771691471338272, 0.6082233786582947, -0.2914994955062866, -0.012911240570247173, 0.0035220684949308634, 0.006694224663078785, -0.020331786945462227, -2.9047963619232178, 0.7548144459724426, -0.10650380700826645, 1.3576569557189941, 0.49377405643463135, -0.021583588793873787, -0.07113835960626602, -0.29599836468696594, -0.2549404203891754, 0.27442678809165955, 1.4021543264389038, -0.666850209236145, -0.29574671387672424, -0.2588352859020233]} +{"t": 8.0957, "q": [-0.3630216717720032, -0.025407835841178894, 0.01663273386657238, 0.6021982431411743, -0.2857772707939148, 0.020053181797266006, -0.3841394782066345, 0.013686517253518105, -0.008798475377261639, 0.6082233786582947, -0.2914994955062866, -0.012911240570247173, 0.0035086767747998238, 0.0066638607531785965, -0.020321914926171303, -2.9047963619232178, 0.7548144459724426, -0.1064918264746666, 1.3577048778533936, 0.49377405643463135, -0.021559620276093483, -0.07113835960626602, -0.2960103750228882, -0.2549404203891754, 0.2743908166885376, 1.4021424055099487, -0.6668262481689453, -0.2957586944103241, -0.25882330536842346]} +{"t": 8.1125, "q": [-0.3630642890930176, -0.02538226917386055, 0.01664612628519535, 0.6021982431411743, -0.28576895594596863, 0.020038772374391556, -0.3841394782066345, 0.01372060552239418, -0.008771691471338272, 0.6082148551940918, -0.29149535298347473, -0.012918488122522831, 0.0034551091957837343, 0.00667903246358037, -0.020312214270234108, -2.9047484397888184, 0.7548144459724426, -0.10646785795688629, 1.3576569557189941, 0.49379801750183105, -0.021571604534983635, -0.07113835960626602, -0.29599836468696594, -0.2549404203891754, 0.2744147777557373, 1.4021663665771484, -0.6668382287025452, -0.2957826554775238, -0.2588352859020233]} +{"t": 8.1292, "q": [-0.3630472421646118, -0.02537374757230282, 0.01665951870381832, 0.6021897196769714, -0.2857772707939148, 0.020053181797266006, -0.3841394782066345, 0.013763216324150562, -0.008771691471338272, 0.6082148551940918, -0.29149121046066284, -0.012911275960505009, 0.0034283252898603678, 0.006663846783339977, -0.02030239813029766, -2.9047365188598633, 0.7548144459724426, -0.10644388943910599, 1.3576688766479492, 0.49377405643463135, -0.021583588793873787, -0.07113835960626602, -0.29599836468696594, -0.25495240092277527, 0.2744147777557373, 1.4021663665771484, -0.6668382287025452, -0.29577067494392395, -0.2588592767715454]} +{"t": 8.1461, "q": [-0.3630642890930176, -0.02538226917386055, 0.016699694097042084, 0.6021982431411743, -0.28576895594596863, 0.020038772374391556, -0.3841394782066345, 0.013805827125906944, -0.008744907565414906, 0.6082148551940918, -0.2914787232875824, -0.012933037243783474, 0.0034283252898603678, 0.006663846783339977, -0.02030239813029766, -2.9046645164489746, 0.7548144459724426, -0.10641992092132568, 1.3576809167861938, 0.4937620759010315, -0.02159557305276394, -0.07112637907266617, -0.2959863841533661, -0.25495240092277527, 0.2744147777557373, 1.4021663665771484, -0.6668142676353455, -0.2957826554775238, -0.25882330536842346]} +{"t": 8.1629, "q": [-0.36303871870040894, -0.025407835841178894, 0.016726477071642876, 0.6022067666053772, -0.2857772707939148, 0.020053181797266006, -0.3841480016708374, 0.013805827125906944, -0.00873151607811451, 0.6082319021224976, -0.2914745509624481, -0.01295474637299776, 0.0034015413839370012, 0.006671432871371508, -0.020297547802329063, -2.9046645164489746, 0.7548144459724426, -0.10641992092132568, 1.357692837715149, 0.4937620759010315, -0.02160755731165409, -0.07112637907266617, -0.2959863841533661, -0.25495240092277527, 0.2744147777557373, 1.4021663665771484, -0.6668382287025452, -0.2957826554775238, -0.25884726643562317]} +{"t": 8.1796, "q": [-0.36303871870040894, -0.02539079077541828, 0.016766652464866638, 0.6022152900695801, -0.2857772707939148, 0.020053181797266006, -0.38413095474243164, 0.013805827125906944, -0.00873151607811451, 0.6082319021224976, -0.29149118065834045, -0.012925754301249981, 0.0034149333368986845, 0.00667902547866106, -0.020302455872297287, -2.904616594314575, 0.7548144459724426, -0.10638396441936493, 1.3576809167861938, 0.49372610449790955, -0.021631525829434395, -0.07113835960626602, -0.2959863841533661, -0.25495240092277527, 0.2743908166885376, 1.4021663665771484, -0.6668142676353455, -0.29579463601112366, -0.25884726643562317]} +{"t": 8.1964, "q": [-0.3630898594856262, -0.025407835841178894, 0.016766652464866638, 0.6022067666053772, -0.2857772707939148, 0.020053181797266006, -0.3841480016708374, 0.013797304593026638, -0.008744907565414906, 0.6082063317298889, -0.2914828658103943, -0.01294025033712387, 0.0034015413839370012, 0.006663846783339977, -0.02030239813029766, -2.904616594314575, 0.7548024654388428, -0.10635999590158463, 1.3576569557189941, 0.49367818236351013, -0.0216554943472147, -0.07111439108848572, -0.29602235555648804, -0.25495240092277527, 0.2743908166885376, 1.4021663665771484, -0.6667304039001465, -0.2957826554775238, -0.25884726643562317]} +{"t": 8.2131, "q": [-0.36307281255722046, -0.025416357442736626, 0.016766652464866638, 0.6022067666053772, -0.28578564524650574, 0.02003868669271469, -0.3841394782066345, 0.013788782991468906, -0.00873151607811451, 0.6081892848014832, -0.2914870083332062, -0.012933001853525639, 0.0034149333368986845, 0.006663839798420668, -0.02029263973236084, -2.9045448303222656, 0.7548144459724426, -0.1062161847949028, 1.3576329946517944, 0.49347445368766785, -0.0216554943472147, -0.07111439108848572, -0.2959863841533661, -0.2549643814563751, 0.27442678809165955, 1.4021543264389038, -0.6667184233665466, -0.2958066463470459, -0.25882330536842346]} +{"t": 8.2299, "q": [-0.3630642890930176, -0.025407835841178894, 0.01678004488348961, 0.6022408604621887, -0.28578981757164, 0.02004590816795826, -0.3841394782066345, 0.013797304593026638, -0.00873151607811451, 0.6082063317298889, -0.29149118065834045, -0.012925754301249981, 0.0034283252898603678, 0.006656247191131115, -0.020287733525037766, -2.904496908187866, 0.7548264265060425, -0.10613229870796204, 1.3576809167861938, 0.4934384822845459, -0.021631525829434395, -0.07112637907266617, -0.2960103750228882, -0.2549643814563751, 0.2743908166885376, 1.4021663665771484, -0.6667423844337463, -0.2958066463470459, -0.25884726643562317]} +{"t": 8.2467, "q": [-0.3630642890930176, -0.02539079077541828, 0.016766652464866638, 0.602223813533783, -0.28578564524650574, 0.02003868669271469, -0.3841394782066345, 0.013771738857030869, -0.008744907565414906, 0.608197808265686, -0.29149118065834045, -0.012925754301249981, 0.003441717242822051, 0.006663839798420668, -0.02029263973236084, -2.904352903366089, 0.7548264265060425, -0.10609634965658188, 1.3576329946517944, 0.49347445368766785, -0.021619541570544243, -0.07115034759044647, -0.2959863841533661, -0.2549643814563751, 0.2743908166885376, 1.4021663665771484, -0.6667304039001465, -0.29581862688064575, -0.25882330536842346]} +{"t": 8.2635, "q": [-0.36308133602142334, -0.025407835841178894, 0.01678004488348961, 0.6022493839263916, -0.28578564524650574, 0.020053155720233917, -0.38413095474243164, 0.013729128055274487, -0.008744907565414906, 0.608197808265686, -0.29148703813552856, -0.012904045172035694, 0.0034551091957837343, 0.006663846783339977, -0.02030239813029766, -2.9042811393737793, 0.7548384070396423, -0.10610833019018173, 1.3576090335845947, 0.49352237582206726, -0.021631525829434395, -0.07113835960626602, -0.2959863841533661, -0.254976361989975, 0.2743908166885376, 1.4021663665771484, -0.6667304039001465, -0.2958066463470459, -0.25884726643562317]} +{"t": 8.2802, "q": [-0.36308133602142334, -0.025407835841178894, 0.016753261908888817, 0.6022579073905945, -0.2857814431190491, 0.020060403272509575, -0.38412243127822876, 0.01375469472259283, -0.00873151607811451, 0.6081807613372803, -0.2914994955062866, -0.012911240570247173, 0.0035220684949308634, 0.006663846783339977, -0.02030239813029766, -2.904161214828491, 0.7548384070396423, -0.10610833019018173, 1.3576209545135498, 0.4935343563556671, -0.021619541570544243, -0.07115034759044647, -0.2960103750228882, -0.25500035285949707, 0.2743908166885376, 1.4021424055099487, -0.6667184233665466, -0.29581862688064575, -0.2588352859020233]} +{"t": 8.2971, "q": [-0.36311542987823486, -0.02539079077541828, 0.016726477071642876, 0.6022664308547974, -0.28578981757164, 0.02004590816795826, -0.38413095474243164, 0.013737649656832218, -0.00873151607811451, 0.6081807613372803, -0.2915036678314209, -0.012903992086648941, 0.0035220684949308634, 0.00667902547866106, -0.020302455872297287, -2.9041013717651367, 0.7548264265060425, -0.10614427924156189, 1.3576090335845947, 0.4935343563556671, -0.02160755731165409, -0.07116232812404633, -0.29599836468696594, -0.2550123333930969, 0.2743908166885376, 1.4021424055099487, -0.6667543649673462, -0.2958545684814453, -0.25884726643562317]} +{"t": 8.3139, "q": [-0.363106906414032, -0.025407835841178894, 0.016726477071642876, 0.6022579073905945, -0.2857981324195862, 0.02006031759083271, -0.3841480016708374, 0.013729128055274487, -0.00873151607811451, 0.6081807613372803, -0.2915078401565552, -0.012882283888757229, 0.0035220684949308634, 0.006656254176050425, -0.020297491922974586, -2.904029369354248, 0.7548384070396423, -0.1061682477593422, 1.3576090335845947, 0.49359428882598877, -0.021643510088324547, -0.07112637907266617, -0.29597440361976624, -0.25500035285949707, 0.27440279722213745, 1.4021543264389038, -0.6667423844337463, -0.29586654901504517, -0.2588352859020233]} +{"t": 8.3306, "q": [-0.3631580173969269, -0.02539079077541828, 0.016726477071642876, 0.6022664308547974, -0.2857981026172638, 0.020089222118258476, -0.3841480016708374, 0.01372060552239418, -0.008704732172191143, 0.6081807613372803, -0.29152029752731323, -0.012875000014901161, 0.0034952848218381405, 0.006656254176050425, -0.020297491922974586, -2.904029369354248, 0.7548264265060425, -0.10618023574352264, 1.3576329946517944, 0.4935823082923889, -0.021559620276093483, -0.07113835960626602, -0.2959863841533661, -0.2550243139266968, 0.27433091402053833, 1.4021782875061035, -0.6667903065681458, -0.29586654901504517, -0.2588352859020233]} +{"t": 8.3474, "q": [-0.3631409704685211, -0.02538226917386055, 0.016699694097042084, 0.6022749543190002, -0.2857981324195862, 0.02006031759083271, -0.3841480016708374, 0.013737649656832218, -0.008704732172191143, 0.6081722378730774, -0.29151612520217896, -0.012896709144115448, 0.003468500915914774, 0.006656261160969734, -0.020307250320911407, -2.904029369354248, 0.7548144459724426, -0.10618023574352264, 1.3576329946517944, 0.4936062693595886, -0.021535653620958328, -0.07112637907266617, -0.29597440361976624, -0.25506025552749634, 0.27430692315101624, 1.4021663665771484, -0.6667423844337463, -0.295878529548645, -0.25884726643562317]} +{"t": 8.3642, "q": [-0.3631409704685211, -0.02538226917386055, 0.016672909259796143, 0.6022579073905945, -0.28580647706985474, 0.02007472701370716, -0.38417357206344604, 0.01372060552239418, -0.008718123659491539, 0.6081722378730774, -0.29151612520217896, -0.012896709144115448, 0.0034551091957837343, 0.006663846783339977, -0.02030239813029766, -2.904029369354248, 0.7548264265060425, -0.10620420426130295, 1.3576329946517944, 0.4936062693595886, -0.02154763787984848, -0.07113835960626602, -0.29597440361976624, -0.25508424639701843, 0.2742949426174164, 1.4021663665771484, -0.6667304039001465, -0.2958905100822449, -0.25882330536842346]} +{"t": 8.3809, "q": [-0.363149493932724, -0.025356702506542206, 0.01664612628519535, 0.6022749543190002, -0.28578981757164, 0.02004590816795826, -0.38417357206344604, 0.01372060552239418, -0.008704732172191143, 0.6081892848014832, -0.29151198267936707, -0.012889496050775051, 0.0034283252898603678, 0.006656261160969734, -0.020307250320911407, -2.9040415287017822, 0.7548024654388428, -0.10613229870796204, 1.3576569557189941, 0.4935583174228668, -0.02148771658539772, -0.07112637907266617, -0.2959624230861664, -0.25510820746421814, 0.2742709815502167, 1.4021543264389038, -0.6667184233665466, -0.2958905100822449, -0.2588352859020233]} +{"t": 8.3977, "q": [-0.3631409704685211, -0.02533113770186901, 0.01664612628519535, 0.6022664308547974, -0.2857981324195862, 0.02006031759083271, -0.3841820955276489, 0.01372060552239418, -0.008704732172191143, 0.6081722378730774, -0.29152029752731323, -0.012889460660517216, 0.0034283252898603678, 0.006663853768259287, -0.020312156528234482, -2.9040772914886475, 0.7548264265060425, -0.10613229870796204, 1.3577048778533936, 0.4935343563556671, -0.021463748067617416, -0.07112637907266617, -0.29597440361976624, -0.25513216853141785, 0.27424702048301697, 1.4021663665771484, -0.6667184233665466, -0.2958905100822449, -0.25882330536842346]} +{"t": 8.4144, "q": [-0.363149493932724, -0.025339659303426743, 0.01665951870381832, 0.602292001247406, -0.2857981324195862, 0.02006031759083271, -0.3841820955276489, 0.013737649656832218, -0.00873151607811451, 0.6081892848014832, -0.29151612520217896, -0.012896709144115448, 0.0034551091957837343, 0.006663846783339977, -0.02030239813029766, -2.9041013717651367, 0.7548144459724426, -0.10615626722574234, 1.3576809167861938, 0.4935583174228668, -0.021451763808727264, -0.07113835960626602, -0.2959624230861664, -0.2551681101322174, 0.2742350399494171, 1.4021663665771484, -0.6667304039001465, -0.2958905100822449, -0.2588352859020233]} +{"t": 8.4311, "q": [-0.36316654086112976, -0.02532261423766613, 0.01664612628519535, 0.6022749543190002, -0.2857981324195862, 0.02006031759083271, -0.3841906189918518, 0.013703561387956142, -0.00873151607811451, 0.6081722378730774, -0.2915078103542328, -0.012896744534373283, 0.003468500915914774, 0.006663846783339977, -0.02030239813029766, -2.904113292694092, 0.7548264265060425, -0.10613229870796204, 1.357692837715149, 0.49352237582206726, -0.02142779529094696, -0.07115034759044647, -0.2959624230861664, -0.2551921010017395, 0.2742230296134949, 1.4021663665771484, -0.6667903065681458, -0.2959024906158447, -0.25882330536842346]} +{"t": 8.4478, "q": [-0.3632006347179413, -0.02532261423766613, 0.01664612628519535, 0.6022834777832031, -0.2857981324195862, 0.02006031759083271, -0.38420766592025757, 0.013712083920836449, -0.008704732172191143, 0.6081551909446716, -0.29152029752731323, -0.012889460660517216, 0.0034551091957837343, 0.006663846783339977, -0.02030239813029766, -2.904113292694092, 0.7548144459724426, -0.10608436167240143, 1.3577167987823486, 0.49352237582206726, -0.02135588973760605, -0.07115034759044647, -0.2959624230861664, -0.2552160620689392, 0.274211049079895, 1.4021663665771484, -0.6667184233665466, -0.2959024906158447, -0.25882330536842346]} +{"t": 8.4646, "q": [-0.3631921112537384, -0.02532261423766613, 0.01661934331059456, 0.6022749543190002, -0.2857981324195862, 0.02006031759083271, -0.3841991424560547, 0.013703561387956142, -0.00873151607811451, 0.6081892848014832, -0.29151612520217896, -0.012896709144115448, 0.003468500915914774, 0.006663846783339977, -0.02030239813029766, -2.904125213623047, 0.7548384070396423, -0.10607238113880157, 1.3577288389205933, 0.4935583174228668, -0.021331921219825745, -0.07115034759044647, -0.2959264814853668, -0.2552639842033386, 0.27417510747909546, 1.4021663665771484, -0.6667423844337463, -0.29591450095176697, -0.2588352859020233]} +{"t": 8.4814, "q": [-0.3632006347179413, -0.025365225970745087, 0.01661934331059456, 0.6022749543190002, -0.2857981324195862, 0.02006031759083271, -0.38420766592025757, 0.013712083920836449, -0.00873151607811451, 0.6081807613372803, -0.29151198267936707, -0.012875036336481571, 0.0034952848218381405, 0.006656261160969734, -0.020307250320911407, -2.9040894508361816, 0.7548144459724426, -0.10602444410324097, 1.3577407598495483, 0.4935343563556671, -0.021331921219825745, -0.07117431610822678, -0.2959624230861664, -0.25527599453926086, 0.2741870880126953, 1.4021543264389038, -0.6667184233665466, -0.29595044255256653, -0.25882330536842346]} +{"t": 8.4981, "q": [-0.3632006347179413, -0.02539079077541828, 0.01661934331059456, 0.602292001247406, -0.28578981757164, 0.02004590816795826, -0.38420766592025757, 0.013703561387956142, -0.00873151607811451, 0.6081807613372803, -0.291499525308609, -0.012896779924631119, 0.003481892868876457, 0.006663839798420668, -0.02029263973236084, -2.904113292694092, 0.7548264265060425, -0.10595253854990005, 1.3577407598495483, 0.4935343563556671, -0.02130795270204544, -0.07113835960626602, -0.29595044255256653, -0.25529995560646057, 0.27412715554237366, 1.4021424055099487, -0.6667304039001465, -0.29595044255256653, -0.25882330536842346]} +{"t": 8.5148, "q": [-0.3631921112537384, -0.02539079077541828, 0.01665951870381832, 0.6023005247116089, -0.28578981757164, 0.02004590816795826, -0.3841991424560547, 0.013737649656832218, -0.00873151607811451, 0.608197808265686, -0.2915036678314209, -0.012903992086648941, 0.0034952848218381405, 0.006663846783339977, -0.02030239813029766, -2.904113292694092, 0.7548264265060425, -0.10588063299655914, 1.3577288389205933, 0.4935343563556671, -0.021319936960935593, -0.07115034759044647, -0.29595044255256653, -0.2553239166736603, 0.2741151750087738, 1.4021543264389038, -0.6667304039001465, -0.2959624230861664, -0.25884726643562317]} +{"t": 8.5316, "q": [-0.36317506432533264, -0.02539079077541828, 0.01665951870381832, 0.6023431420326233, -0.2857814431190491, 0.020060403272509575, -0.3841991424560547, 0.013746172189712524, -0.00873151607811451, 0.6082063317298889, -0.29149532318115234, -0.012932966463267803, 0.003441717242822051, 0.006663846783339977, -0.02030239813029766, -2.9040894508361816, 0.7548503875732422, -0.10582070797681808, 1.3577407598495483, 0.4935343563556671, -0.021319936960935593, -0.07115034759044647, -0.2959624230861664, -0.25534787774086, 0.27412715554237366, 1.4021543264389038, -0.6667304039001465, -0.2959624230861664, -0.25882330536842346]} +{"t": 8.5483, "q": [-0.36317506432533264, -0.02538226917386055, 0.016699694097042084, 0.6023687124252319, -0.2857814431190491, 0.020060403272509575, -0.3841906189918518, 0.013763216324150562, -0.00873151607811451, 0.6082489490509033, -0.2914870083332062, -0.012933001853525639, 0.0034283252898603678, 0.006671432871371508, -0.020297547802329063, -2.904113292694092, 0.7548384070396423, -0.10580872744321823, 1.357752799987793, 0.4935343563556671, -0.021319936960935593, -0.07115034759044647, -0.29595044255256653, -0.25538384914398193, 0.2741151750087738, 1.4021543264389038, -0.6667304039001465, -0.29597440361976624, -0.2588352859020233]} +{"t": 8.565, "q": [-0.36317506432533264, -0.025399314239621162, 0.016699694097042084, 0.6023856997489929, -0.2857814431190491, 0.020060403272509575, -0.3841906189918518, 0.013763216324150562, -0.008758299984037876, 0.6082574725151062, -0.2914870083332062, -0.012947462499141693, 0.0034283252898603678, 0.006663839798420668, -0.02029263973236084, -2.9040653705596924, 0.7548503875732422, -0.10574880242347717, 1.3577407598495483, 0.4935583174228668, -0.021343905478715897, -0.07115034759044647, -0.29595044255256653, -0.25540781021118164, 0.2741151750087738, 1.4021663665771484, -0.6667543649673462, -0.2959624230861664, -0.2588352859020233]} +{"t": 8.5817, "q": [-0.3631835877895355, -0.02538226917386055, 0.016699694097042084, 0.602453887462616, -0.2857814431190491, 0.020060403272509575, -0.3841906189918518, 0.013788782991468906, -0.008798475377261639, 0.6082659959793091, -0.2914828658103943, -0.01295471005141735, 0.0034283252898603678, 0.006679018493741751, -0.020292697474360466, -2.903993606567383, 0.754862368106842, -0.10566491633653641, 1.3577407598495483, 0.49352237582206726, -0.02135588973760605, -0.07116232812404633, -0.29595044255256653, -0.2553958296775818, 0.27412715554237366, 1.4021663665771484, -0.6667304039001465, -0.29597440361976624, -0.2588352859020233]} +{"t": 8.5985, "q": [-0.36320915818214417, -0.02539079077541828, 0.016726477071642876, 0.6024624109268188, -0.28578981757164, 0.02004590816795826, -0.3841906189918518, 0.013788782991468906, -0.008744907565414906, 0.6083171367645264, -0.2914745509624481, -0.012940285727381706, 0.0034551091957837343, 0.006663846783339977, -0.02030239813029766, -2.903921604156494, 0.7548863291740417, -0.10560499131679535, 1.357752799987793, 0.49352237582206726, -0.02142779529094696, -0.07115034759044647, -0.29595044255256653, -0.2554197907447815, 0.2741151750087738, 1.4021663665771484, -0.6667543649673462, -0.29597440361976624, -0.25884726643562317]} +{"t": 8.6152, "q": [-0.36316654086112976, -0.02544192411005497, 0.016713086515665054, 0.6024879813194275, -0.2857772707939148, 0.020053181797266006, -0.38416504859924316, 0.013797304593026638, -0.008798475377261639, 0.608342707157135, -0.29147040843963623, -0.012947533279657364, 0.0034283252898603678, 0.006648661568760872, -0.020292583853006363, -2.9038376808166504, 0.7549462914466858, -0.10558102279901505, 1.357752799987793, 0.4935583174228668, -0.02141581103205681, -0.07113835960626602, -0.2959624230861664, -0.25543177127838135, 0.2740912139415741, 1.4021543264389038, -0.6667423844337463, -0.2959863841533661, -0.25882330536842346]} +{"t": 8.6319, "q": [-0.3631835877895355, -0.025407835841178894, 0.016699694097042084, 0.602522075176239, -0.2857814431190491, 0.020060403272509575, -0.3841906189918518, 0.013788782991468906, -0.00881186779588461, 0.6083853244781494, -0.2914787232875824, -0.012933037243783474, 0.0034551091957837343, 0.006656254176050425, -0.020297491922974586, -2.9036459922790527, 0.7550301551818848, -0.10554507374763489, 1.3577048778533936, 0.49342650175094604, -0.021463748067617416, -0.07115034759044647, -0.29595044255256653, -0.2554197907447815, 0.2741151750087738, 1.4021543264389038, -0.6667543649673462, -0.2959863841533661, -0.25884726643562317]} +{"t": 8.6487, "q": [-0.36316654086112976, -0.025399314239621162, 0.016699694097042084, 0.6025135517120361, -0.2857814431190491, 0.020060403272509575, -0.38417357206344604, 0.0137802604585886, -0.008798475377261639, 0.6084108352661133, -0.2914994955062866, -0.012911240570247173, 0.003481892868876457, 0.006656254176050425, -0.020297491922974586, -2.9034781455993652, 0.7551380395889282, -0.10549713671207428, 1.3577048778533936, 0.493462473154068, -0.021463748067617416, -0.07113835960626602, -0.2959624230861664, -0.2554197907447815, 0.2741391658782959, 1.4021663665771484, -0.6667064428329468, -0.29597440361976624, -0.25887125730514526]} +{"t": 8.6656, "q": [-0.3631835877895355, -0.025407835841178894, 0.016699694097042084, 0.6025391221046448, -0.2857814431190491, 0.020060403272509575, -0.38416504859924316, 0.013788782991468906, -0.008798475377261639, 0.6084449291229248, -0.29149532318115234, -0.012932966463267803, 0.003481892868876457, 0.006656254176050425, -0.020297491922974586, -2.903346300125122, 0.7552578449249268, -0.10544919967651367, 1.3577288389205933, 0.4934864342212677, -0.021463748067617416, -0.07113835960626602, -0.2959264814853668, -0.2554437518119812, 0.2740672528743744, 1.4021543264389038, -0.6667543649673462, -0.2960103750228882, -0.2588592767715454]} +{"t": 8.6823, "q": [-0.36316654086112976, -0.025407835841178894, 0.016726477071642876, 0.6025987863540649, -0.2857814431190491, 0.020060403272509575, -0.38417357206344604, 0.013788782991468906, -0.008771691471338272, 0.6085131168365479, -0.29149535298347473, -0.012918488122522831, 0.0035220684949308634, 0.006663839798420668, -0.02029263973236084, -2.9032983779907227, 0.7553297877311707, -0.10544919967651367, 1.3577407598495483, 0.493462473154068, -0.02141581103205681, -0.07115034759044647, -0.2959264814853668, -0.2554437518119812, 0.2740672528743744, 1.4021543264389038, -0.6667543649673462, -0.29602235555648804, -0.2588592767715454]} +{"t": 8.6991, "q": [-0.363149493932724, -0.02539079077541828, 0.016699694097042084, 0.602666974067688, -0.28578981757164, 0.02004590816795826, -0.38417357206344604, 0.013763216324150562, -0.008785083889961243, 0.6085813045501709, -0.2914994955062866, -0.012925700284540653, 0.003468500915914774, 0.006656261160969734, -0.020307250320911407, -2.903202533721924, 0.7554735541343689, -0.10544919967651367, 1.3577407598495483, 0.4934864342212677, -0.02135588973760605, -0.07116232812404633, -0.29591450095176697, -0.25547972321510315, 0.27407923340797424, 1.4021424055099487, -0.6667304039001465, -0.2959863841533661, -0.2588352859020233]} +{"t": 8.7158, "q": [-0.363149493932724, -0.025407835841178894, 0.016713086515665054, 0.602666974067688, -0.28578981757164, 0.02004590816795826, -0.38417357206344604, 0.013771738857030869, -0.008758299984037876, 0.6085898280143738, -0.29149535298347473, -0.012904027476906776, 0.0034283252898603678, 0.00667143939062953, -0.020307306200265884, -2.9031784534454346, 0.7556053996086121, -0.10542523115873337, 1.3577407598495483, 0.493462473154068, -0.021319936960935593, -0.07116232812404633, -0.2959024906158447, -0.255491703748703, 0.2740672528743744, 1.4021663665771484, -0.6667184233665466, -0.29604631662368774, -0.2588592767715454]} +{"t": 8.7325, "q": [-0.3631580173969269, -0.02537374757230282, 0.016699694097042084, 0.6027095913887024, -0.28578564524650574, 0.02003868669271469, -0.3841820955276489, 0.01375469472259283, -0.008744907565414906, 0.6086068749427795, -0.29149535298347473, -0.012918488122522831, 0.003441717242822051, 0.006656261160969734, -0.020307250320911407, -2.9031906127929688, 0.7556772828102112, -0.105341337621212, 1.3577648401260376, 0.49342650175094604, -0.021200094372034073, -0.07116232812404633, -0.295878529548645, -0.2555156648159027, 0.2740912139415741, 1.4021543264389038, -0.6667304039001465, -0.2960582971572876, -0.2588592767715454]} +{"t": 8.7493, "q": [-0.363149493932724, -0.025407835841178894, 0.016672909259796143, 0.6027266383171082, -0.2857814431190491, 0.020060403272509575, -0.38417357206344604, 0.013763216324150562, -0.008744907565414906, 0.6086153984069824, -0.2915036678314209, -0.012889531441032887, 0.003441717242822051, 0.006663846783339977, -0.02030239813029766, -2.903214454650879, 0.7556772828102112, -0.105341337621212, 1.3577407598495483, 0.49342650175094604, -0.02112818881869316, -0.07117431610822678, -0.29586654901504517, -0.2555156648159027, 0.2740912139415741, 1.4021663665771484, -0.6667064428329468, -0.2960582971572876, -0.2588592767715454]} +{"t": 8.766, "q": [-0.36316654086112976, -0.025407835841178894, 0.016672909259796143, 0.6027522087097168, -0.2857814431190491, 0.020060403272509575, -0.3841820955276489, 0.013771738857030869, -0.008758299984037876, 0.6086153984069824, -0.291499525308609, -0.012896779924631119, 0.0034283252898603678, 0.00667143939062953, -0.020307306200265884, -2.903202533721924, 0.7556772828102112, -0.10513760894536972, 1.3577407598495483, 0.49342650175094604, -0.02094842493534088, -0.07117431610822678, -0.2958545684814453, -0.2555636167526245, 0.2740912139415741, 1.4021543264389038, -0.6667304039001465, -0.29607027769088745, -0.2588832378387451]} +{"t": 8.7827, "q": [-0.36316654086112976, -0.02539079077541828, 0.016672909259796143, 0.6027691960334778, -0.2857814431190491, 0.020060403272509575, -0.38417357206344604, 0.013763216324150562, -0.008758299984037876, 0.6086665391921997, -0.29151612520217896, -0.012896709144115448, 0.003468500915914774, 0.006663853768259287, -0.020312156528234482, -2.903214454650879, 0.7556772828102112, -0.1050177663564682, 1.3577407598495483, 0.49340254068374634, -0.020840568467974663, -0.07117431610822678, -0.2958306074142456, -0.2555995583534241, 0.2741151750087738, 1.4021663665771484, -0.6666944622993469, -0.2960822582244873, -0.25889521837234497]} +{"t": 8.7995, "q": [-0.3631835877895355, -0.02539079077541828, 0.01665951870381832, 0.6027606725692749, -0.28578981757164, 0.02004590816795826, -0.3841906189918518, 0.013737649656832218, -0.008785083889961243, 0.608649492263794, -0.2915036678314209, -0.012903992086648941, 0.0034283252898603678, 0.006663853768259287, -0.020312156528234482, -2.903226613998413, 0.7556772828102112, -0.10480204969644547, 1.3577648401260376, 0.4932587146759033, -0.020780647173523903, -0.07121026515960693, -0.2958306074142456, -0.2556235194206238, 0.2741151750087738, 1.4021543264389038, -0.6667543649673462, -0.29609423875808716, -0.2589191794395447]} +{"t": 8.8162, "q": [-0.36317506432533264, -0.025365225970745087, 0.01664612628519535, 0.6027691960334778, -0.28578981757164, 0.02004590816795826, -0.3841820955276489, 0.013737649656832218, -0.008744907565414906, 0.6086409687995911, -0.29151612520217896, -0.012896709144115448, 0.0034952848218381405, 0.00667903246358037, -0.020312214270234108, -2.903238534927368, 0.7556772828102112, -0.10468220710754395, 1.3577288389205933, 0.4932587146759033, -0.020744694396853447, -0.07123423367738724, -0.2958306074142456, -0.2556115388870239, 0.2740912139415741, 1.4021543264389038, -0.6667543649673462, -0.2961062490940094, -0.2589191794395447]} +{"t": 8.833, "q": [-0.3631921112537384, -0.025365225970745087, 0.01664612628519535, 0.6027691960334778, -0.28578981757164, 0.02004590816795826, -0.3841906189918518, 0.01372060552239418, -0.008758299984037876, 0.6086324453353882, -0.29151198267936707, -0.012889496050775051, 0.0034952848218381405, 0.00667143939062953, -0.020307306200265884, -2.903214454650879, 0.7556413412094116, -0.10459832102060318, 1.3577407598495483, 0.4932107925415039, -0.020732710137963295, -0.07123423367738724, -0.2958306074142456, -0.2556714713573456, 0.2740912139415741, 1.4021543264389038, -0.6667304039001465, -0.2960822582244873, -0.25893115997314453]} +{"t": 8.8497, "q": [-0.36321768164634705, -0.025365225970745087, 0.016605950891971588, 0.6027606725692749, -0.28578981757164, 0.02004590816795826, -0.3841906189918518, 0.01372060552239418, -0.008758299984037876, 0.6086239218711853, -0.2915286123752594, -0.012874964624643326, 0.0034952848218381405, 0.006663853768259287, -0.020312156528234482, -2.903214454650879, 0.7556653022766113, -0.10459832102060318, 1.3577407598495483, 0.49319881200790405, -0.020720725879073143, -0.07124622166156769, -0.29579463601112366, -0.25568345189094543, 0.2741151750087738, 1.4021543264389038, -0.6667423844337463, -0.2961302101612091, -0.25893115997314453]} +{"t": 8.8664, "q": [-0.3632262051105499, -0.02532261423766613, 0.01661934331059456, 0.6027436852455139, -0.2857981324195862, 0.02006031759083271, -0.3841991424560547, 0.013729128055274487, -0.008758299984037876, 0.6086068749427795, -0.29154109954833984, -0.012838742695748806, 0.003481892868876457, 0.00667143939062953, -0.020307306200265884, -2.9031784534454346, 0.7556413412094116, -0.10451442748308182, 1.3577407598495483, 0.4931868314743042, -0.020744694396853447, -0.07125820219516754, -0.29579463601112366, -0.2556954324245453, 0.2741151750087738, 1.4021782875061035, -0.6667423844337463, -0.2961302101612091, -0.2589191794395447]} +{"t": 8.8832, "q": [-0.3632347285747528, -0.02532261423766613, 0.01661934331059456, 0.6027522087097168, -0.2857981324195862, 0.02006031759083271, -0.38420766592025757, 0.013703561387956142, -0.00873151607811451, 0.608572781085968, -0.2915244400501251, -0.012882213108241558, 0.003468500915914774, 0.006663853768259287, -0.020312156528234482, -2.9031665325164795, 0.7556293606758118, -0.1044185534119606, 1.3577288389205933, 0.4931868314743042, -0.020732710137963295, -0.07124622166156769, -0.2957826554775238, -0.25570741295814514, 0.2741151750087738, 1.4021663665771484, -0.666766345500946, -0.29614219069480896, -0.2589551508426666]} +{"t": 8.8999, "q": [-0.36326882243156433, -0.02538226917386055, 0.01664612628519535, 0.6027266383171082, -0.28580230474472046, 0.020067522302269936, -0.3842417299747467, 0.013703561387956142, -0.00873151607811451, 0.6085642576217651, -0.2915244400501251, -0.012882213108241558, 0.0034551091957837343, 0.00667143939062953, -0.020307306200265884, -2.903130531311035, 0.7556293606758118, -0.10452641546726227, 1.3577048778533936, 0.49322277307510376, -0.0207566786557436, -0.07127019017934799, -0.2957826554775238, -0.25573137402534485, 0.2741151750087738, 1.4021663665771484, -0.6667304039001465, -0.29614219069480896, -0.2589671313762665]} +{"t": 8.9168, "q": [-0.36330291628837585, -0.025356702506542206, 0.01661934331059456, 0.6027436852455139, -0.28580227494239807, 0.02008197456598282, -0.38425877690315247, 0.013712083920836449, -0.008718123659491539, 0.608572781085968, -0.2915244400501251, -0.012882213108241558, 0.003468500915914774, 0.006663846783339977, -0.02030239813029766, -2.9030826091766357, 0.7556413412094116, -0.10456236451864243, 1.3577288389205933, 0.49324673414230347, -0.02076866291463375, -0.07127019017934799, -0.29577067494392395, -0.2557673454284668, 0.2741151750087738, 1.4021543264389038, -0.6667184233665466, -0.2961541712284088, -0.2589671313762665]} +{"t": 8.9336, "q": [-0.3632858693599701, -0.025356702506542206, 0.01661934331059456, 0.6027436852455139, -0.28580647706985474, 0.02007472701370716, -0.38425877690315247, 0.013703561387956142, -0.00873151607811451, 0.6085301637649536, -0.29152029752731323, -0.012875000014901161, 0.003468500915914774, 0.00667143939062953, -0.020307306200265884, -2.902974843978882, 0.7556173801422119, -0.104742132127285, 1.357692837715149, 0.4932587146759033, -0.020852552726864815, -0.0713420957326889, -0.29577067494392395, -0.2558152675628662, 0.2741391658782959, 1.4021663665771484, -0.6667543649673462, -0.2961541712284088, -0.25897911190986633]} +{"t": 8.9503, "q": [-0.3633284568786621, -0.02537374757230282, 0.01661934331059456, 0.602735161781311, -0.2857981324195862, 0.02006031759083271, -0.38425877690315247, 0.013712083920836449, -0.00873151607811451, 0.6085472106933594, -0.29151612520217896, -0.012896709144115448, 0.0034551091957837343, 0.006663846783339977, -0.02030239813029766, -2.9028429985046387, 0.7556173801422119, -0.10476610064506531, 1.3577048778533936, 0.4932587146759033, -0.02087652124464512, -0.07133010774850845, -0.2957586944103241, -0.25582724809646606, 0.2740912139415741, 1.4021424055099487, -0.6667783260345459, -0.29616615176200867, -0.2589910924434662]} +{"t": 8.9671, "q": [-0.36331140995025635, -0.02539079077541828, 0.01661934331059456, 0.6027095913887024, -0.28578981757164, 0.02004590816795826, -0.38426730036735535, 0.013729128055274487, -0.00873151607811451, 0.6085472106933594, -0.29151612520217896, -0.012896709144115448, 0.003468500915914774, 0.006686618085950613, -0.02030736207962036, -2.902543306350708, 0.7556173801422119, -0.10477808117866516, 1.3576329946517944, 0.49324673414230347, -0.02093644067645073, -0.07133010774850845, -0.2957586944103241, -0.25582724809646606, 0.2740912139415741, 1.4021663665771484, -0.6667304039001465, -0.2961781322956085, -0.25900307297706604]} +{"t": 8.9838, "q": [-0.36331140995025635, -0.02539079077541828, 0.016672909259796143, 0.6027436852455139, -0.2857981324195862, 0.02006031759083271, -0.38426730036735535, 0.013712083920836449, -0.008744907565414906, 0.6085642576217651, -0.2915244400501251, -0.012882213108241558, 0.0034952848218381405, 0.006671432871371508, -0.020297547802329063, -2.9022557735443115, 0.7555934190750122, -0.10479006916284561, 1.3576569557189941, 0.4932347536087036, -0.020972393453121185, -0.07133010774850845, -0.29577067494392395, -0.2558392286300659, 0.2741151750087738, 1.4021663665771484, -0.6667064428329468, -0.2962021231651306, -0.2589910924434662]} +{"t": 9.0005, "q": [-0.36331140995025635, -0.025407835841178894, 0.01661934331059456, 0.6027266383171082, -0.28580233454704285, 0.020053070038557053, -0.38425877690315247, 0.013729128055274487, -0.008744907565414906, 0.608572781085968, -0.29152029752731323, -0.012889460660517216, 0.003468500915914774, 0.006663839798420668, -0.02029263973236084, -2.9017763137817383, 0.7555934190750122, -0.10477808117866516, 1.3576209545135498, 0.49322277307510376, -0.021020330488681793, -0.0713420957326889, -0.2957826554775238, -0.2558392286300659, 0.2741151750087738, 1.4021424055099487, -0.6667304039001465, -0.2961901128292084, -0.2589910924434662]} +{"t": 9.0173, "q": [-0.36331140995025635, -0.02539079077541828, 0.01661934331059456, 0.6027522087097168, -0.28578564524650574, 0.020053155720233917, -0.3842502534389496, 0.013737649656832218, -0.008798475377261639, 0.6086068749427795, -0.2915078103542328, -0.012896744534373283, 0.0035220684949308634, 0.006648654583841562, -0.020282825455069542, -2.9013209342956543, 0.7555934190750122, -0.10476610064506531, 1.357585072517395, 0.49319881200790405, -0.02117612585425377, -0.0713420957326889, -0.2957586944103241, -0.25585123896598816, 0.27415114641189575, 1.4021543264389038, -0.6667184233665466, -0.2961781322956085, -0.25900307297706604]} +{"t": 9.034, "q": [-0.36331993341445923, -0.02539079077541828, 0.01663273386657238, 0.6027522087097168, -0.2857981324195862, 0.02006031759083271, -0.3842502534389496, 0.01375469472259283, -0.00881186779588461, 0.6086153984069824, -0.29151612520217896, -0.012896709144115448, 0.0034952848218381405, 0.006656247191131115, -0.020287733525037766, -2.900937557220459, 0.7555934190750122, -0.10477808117866516, 1.357585072517395, 0.49322277307510376, -0.021164141595363617, -0.07133010774850845, -0.29577067494392395, -0.25585123896598816, 0.27412715554237366, 1.4021543264389038, -0.6667903065681458, -0.29621410369873047, -0.2589910924434662]} +{"t": 9.0508, "q": [-0.36331993341445923, -0.02538226917386055, 0.01663273386657238, 0.6027436852455139, -0.28578981757164, 0.02004590816795826, -0.38425877690315247, 0.013763216324150562, -0.00881186779588461, 0.6086068749427795, -0.29151612520217896, -0.012896709144115448, 0.0034952848218381405, 0.006663846783339977, -0.02030239813029766, -2.9003262519836426, 0.7556173801422119, -0.10473014414310455, 1.3575609922409058, 0.4931868314743042, -0.02129596844315529, -0.07133010774850845, -0.2957586944103241, -0.255863219499588, 0.27412715554237366, 1.4021663665771484, -0.6667184233665466, -0.29621410369873047, -0.2590150535106659]} +{"t": 9.0676, "q": [-0.36331140995025635, -0.025416357442736626, 0.01664612628519535, 0.6027606725692749, -0.28578981757164, 0.02004590816795826, -0.38425877690315247, 0.013763216324150562, -0.008798475377261639, 0.6086324453353882, -0.29151612520217896, -0.012896709144115448, 0.003468500915914774, 0.006648661568760872, -0.020292583853006363, -2.8996431827545166, 0.7556413412094116, -0.1046941950917244, 1.3574771881103516, 0.4931628406047821, -0.021403826773166656, -0.07136606425046921, -0.2957586944103241, -0.255863219499588, 0.2741391658782959, 1.4021663665771484, -0.6667184233665466, -0.29621410369873047, -0.25902703404426575]} +{"t": 9.0843, "q": [-0.3632858693599701, -0.025399314239621162, 0.01663273386657238, 0.6027606725692749, -0.2857814431190491, 0.020060403272509575, -0.38426730036735535, 0.013763216324150562, -0.00881186779588461, 0.6086665391921997, -0.2915078401565552, -0.012882283888757229, 0.0034952848218381405, 0.006663846783339977, -0.02030239813029766, -2.8986124992370605, 0.7556413412094116, -0.10468220710754395, 1.3571295738220215, 0.49312689900398254, -0.0216554943472147, -0.07142598181962967, -0.29574671387672424, -0.25587520003318787, 0.2741391658782959, 1.4021663665771484, -0.6667184233665466, -0.29621410369873047, -0.25902703404426575]} +{"t": 9.101, "q": [-0.36325177550315857, -0.02539079077541828, 0.01665951870381832, 0.6028032898902893, -0.2857814431190491, 0.020060403272509575, -0.38422468304634094, 0.013737649656832218, -0.008798475377261639, 0.6087347269058228, -0.29151198267936707, -0.012903956696391106, 0.0035086767747998238, 0.00667903246358037, -0.020312214270234108, -2.8975579738616943, 0.7556413412094116, -0.1046941950917244, 1.3571535348892212, 0.49312689900398254, -0.02171541564166546, -0.07147391885519028, -0.29574671387672424, -0.255863219499588, 0.2741391658782959, 1.4021543264389038, -0.6667064428329468, -0.2962260842323303, -0.25902703404426575]} +{"t": 9.1179, "q": [-0.3632347285747528, -0.025407835841178894, 0.01664612628519535, 0.602828860282898, -0.28578981757164, 0.02004590816795826, -0.38420766592025757, 0.013729128055274487, -0.008771691471338272, 0.608802855014801, -0.2915036678314209, -0.012903992086648941, 0.0036024199798703194, 0.00667143939062953, -0.020307306200265884, -2.895928144454956, 0.7556653022766113, -0.10462228953838348, 1.3569378852844238, 0.49310293793678284, -0.02184724248945713, -0.0716177299618721, -0.2957347333431244, -0.25587520003318787, 0.27412715554237366, 1.4021782875061035, -0.6667184233665466, -0.29625004529953003, -0.2590630054473877]} +{"t": 9.1347, "q": [-0.36325177550315857, -0.02539079077541828, 0.01663273386657238, 0.602897047996521, -0.2857772707939148, 0.020053181797266006, -0.38422468304634094, 0.013729128055274487, -0.008798475377261639, 0.6088966131210327, -0.29151612520217896, -0.012896709144115448, 0.0036024199798703194, 0.006663846783339977, -0.02030239813029766, -2.8945260047912598, 0.7556653022766113, -0.10457435250282288, 1.3570337295532227, 0.4930669665336609, -0.021871211007237434, -0.07171360403299332, -0.2957586944103241, -0.25587520003318787, 0.27417510747909546, 1.4021663665771484, -0.6667304039001465, -0.2962620258331299, -0.2590869665145874]} +{"t": 9.1514, "q": [-0.3632432520389557, -0.025399314239621162, 0.01661934331059456, 0.6029481887817383, -0.28578564524650574, 0.02003868669271469, -0.3842332065105438, 0.013737649656832218, -0.008785083889961243, 0.6088966131210327, -0.2915078103542328, -0.012911204248666763, 0.003589028026908636, 0.00667903246358037, -0.020312214270234108, -2.8928961753845215, 0.755905032157898, -0.10435863584280014, 1.357069730758667, 0.4927913546562195, -0.021919148042798042, -0.07214503735303879, -0.29572275280952454, -0.255863219499588, 0.27415114641189575, 1.4021543264389038, -0.6667184233665466, -0.2962620258331299, -0.2590869665145874]} +{"t": 9.1681, "q": [-0.3632432520389557, -0.025407835841178894, 0.01664612628519535, 0.6029481887817383, -0.28578564524650574, 0.02003868669271469, -0.38425877690315247, 0.013746172189712524, -0.008771691471338272, 0.6089903712272644, -0.2915078103542328, -0.012911204248666763, 0.003468500915914774, 0.00667902547866106, -0.020302455872297287, -2.891613721847534, 0.7563604116439819, -0.10380735993385315, 1.3570936918258667, 0.4922879934310913, -0.02178732119500637, -0.07280416786670685, -0.29574671387672424, -0.2558871805667877, 0.27412715554237366, 1.4021663665771484, -0.6667543649673462, -0.2962859869003296, -0.2591109275817871]} +{"t": 9.1848, "q": [-0.3632347285747528, -0.025365225970745087, 0.016672909259796143, 0.6030078530311584, -0.2857814431190491, 0.020060403272509575, -0.3842502534389496, 0.013729128055274487, -0.008744907565414906, 0.6089988946914673, -0.29151198267936707, -0.012889496050775051, 0.0034015413839370012, 0.00667903246358037, -0.020312214270234108, -2.890235662460327, 0.7569356560707092, -0.10280068218708038, 1.3570218086242676, 0.491113543510437, -0.021799305453896523, -0.07449394464492798, -0.29572275280952454, -0.2558871805667877, 0.27415114641189575, 1.4021782875061035, -0.666766345500946, -0.2962859869003296, -0.25912290811538696]} +{"t": 9.2016, "q": [-0.3631835877895355, -0.02538226917386055, 0.016699694097042084, 0.6029908061027527, -0.2857814431190491, 0.020060403272509575, -0.3842332065105438, 0.013729128055274487, -0.008691340684890747, 0.6090415120124817, -0.29151612520217896, -0.012896709144115448, 0.0033881496638059616, 0.006701803766191006, -0.02031717821955681, -2.888833522796631, 0.7578344941139221, -0.1022733747959137, 1.3570337295532227, 0.49095776677131653, -0.021691447123885155, -0.07571633160114288, -0.2956867814064026, -0.2558991611003876, 0.27415114641189575, 1.4021663665771484, -0.6667543649673462, -0.29629799723625183, -0.25914689898490906]} +{"t": 9.2183, "q": [-0.36317506432533264, -0.02537374757230282, 0.016699694097042084, 0.6029908061027527, -0.28578564524650574, 0.02003868669271469, -0.38425877690315247, 0.01372060552239418, -0.008718123659491539, 0.609015941619873, -0.29151612520217896, -0.012896709144115448, 0.0033881496638059616, 0.006754952948540449, -0.020351529121398926, -2.88667631149292, 0.7598118782043457, -0.10272877663373947, 1.356338620185852, 0.49105364084243774, -0.022074943408370018, -0.08172043412923813, -0.2956628203392029, -0.2558991611003876, 0.2741870880126953, 1.4021663665771484, -0.6668621897697449, -0.2963099777698517, -0.25923076272010803]} +{"t": 9.235, "q": [-0.363106906414032, -0.02539079077541828, 0.016713086515665054, 0.602965235710144, -0.28578981757164, 0.02004590816795826, -0.3842417299747467, 0.013729128055274487, -0.008691340684890747, 0.6090756058692932, -0.2915244400501251, -0.012882213108241558, 0.003441717242822051, 0.006830880418419838, -0.020400604233145714, -2.8840997219085693, 0.7623405456542969, -0.1028965562582016, 1.3562787771224976, 0.49105364084243774, -0.02231462672352791, -0.0881439745426178, -0.2956628203392029, -0.2558991611003876, 0.2741870880126953, 1.4021663665771484, -0.6668262481689453, -0.2963099777698517, -0.2592906951904297]} +{"t": 9.2518, "q": [-0.36311542987823486, -0.02539079077541828, 0.016699694097042084, 0.6029822826385498, -0.28578564524650574, 0.02003868669271469, -0.3842502534389496, 0.01372060552239418, -0.008677948266267776, 0.6091011762619019, -0.2915327548980713, -0.012867698445916176, 0.0034149333368986845, 0.006929586175829172, -0.020464401692152023, -2.881307363510132, 0.7652407288551331, -0.10282465070486069, 1.355811357498169, 0.4910176694393158, -0.022374548017978668, -0.09323727339506149, -0.2956028878688812, -0.2558991611003876, 0.2742949426174164, 1.4021663665771484, -0.6668382287025452, -0.2963099777698517, -0.25935062766075134]} +{"t": 9.2686, "q": [-0.363149493932724, -0.02538226917386055, 0.01663273386657238, 0.6029737591743469, -0.2857773005962372, 0.02002427726984024, -0.38426730036735535, 0.013686517253518105, -0.00873151607811451, 0.609092652797699, -0.2915327548980713, -0.012882177717983723, 0.0035220684949308634, 0.0069219935685396194, -0.0204594936221838, -2.8786227703094482, 0.7680450081825256, -0.10278870165348053, 1.3557155132293701, 0.4909937083721161, -0.02238653227686882, -0.09602959454059601, -0.2955789268016815, -0.255863219499588, 0.2743908166885376, 1.4021782875061035, -0.666850209236145, -0.2963578999042511, -0.25937458872795105]} +{"t": 9.2853, "q": [-0.3632262051105499, -0.02538226917386055, 0.016552383080124855, 0.6029822826385498, -0.2857773005962372, 0.02002427726984024, -0.38425877690315247, 0.01369503978639841, -0.008838650770485401, 0.6090585589408875, -0.2915368974208832, -0.012889389880001545, 0.0036425956059247255, 0.00692198658362031, -0.02044973522424698, -2.875399112701416, 0.7713886499404907, -0.10253702849149704, 1.3553918600082397, 0.49057427048683167, -0.022062959149479866, -0.10003232955932617, -0.29554298520088196, -0.2558871805667877, 0.2745106518268585, 1.4021543264389038, -0.6668621897697449, -0.2963818609714508, -0.25947046279907227]} +{"t": 9.3021, "q": [-0.3632347285747528, -0.025365225970745087, 0.016538990661501884, 0.6029396653175354, -0.2857773005962372, 0.02002427726984024, -0.3843269646167755, 0.013712083920836449, -0.008865434676408768, 0.6090841293334961, -0.2915535271167755, -0.012874840758740902, 0.0036827712319791317, 0.0069295791909098625, -0.020454643294215202, -2.871959686279297, 0.7755711078643799, -0.102297343313694, 1.3552840948104858, 0.49020275473594666, -0.022050974890589714, -0.10606039315462112, -0.2955549657344818, -0.25587520003318787, 0.27454662322998047, 1.4021424055099487, -0.6668382287025452, -0.2964058518409729, -0.25957831740379333]} +{"t": 9.3188, "q": [-0.3632347285747528, -0.02532261423766613, 0.016512207686901093, 0.6029140949249268, -0.2857773005962372, 0.02002427726984024, -0.3843354880809784, 0.013729128055274487, -0.008878827095031738, 0.6090585589408875, -0.29154521226882935, -0.012874876148998737, 0.003696163184940815, 0.006937178783118725, -0.020469309762120247, -2.868208646774292, 0.7801251411437988, -0.10209361463785172, 1.3547567129135132, 0.4898432195186615, -0.02202700637280941, -0.11136940866708755, -0.29550701379776, -0.25587520003318787, 0.2745945453643799, 1.4021543264389038, -0.666850209236145, -0.2964298129081726, -0.2596861720085144]} +{"t": 9.3355, "q": [-0.36325177550315857, -0.025348180904984474, 0.01647203229367733, 0.6029567122459412, -0.28578150272369385, 0.020017029717564583, -0.3843354880809784, 0.013746172189712524, -0.0089190024882555, 0.6090670824050903, -0.2915576696395874, -0.012896513566374779, 0.003696163184940815, 0.00692198658362031, -0.02044973522424698, -2.864457607269287, 0.7844993472099304, -0.10187789797782898, 1.3545889854431152, 0.4894956946372986, -0.02196708507835865, -0.11438942700624466, -0.2953871786594391, -0.255863219499588, 0.274618536233902, 1.4021782875061035, -0.6668741703033447, -0.296477735042572, -0.25969815254211426]} +{"t": 9.3523, "q": [-0.36331140995025635, -0.02532261423766613, 0.016378289088606834, 0.602965235710144, -0.2857773005962372, 0.02002427726984024, -0.38436105847358704, 0.013771738857030869, -0.008972570300102234, 0.6090329885482788, -0.2915410101413727, -0.012925523333251476, 0.0036292036529630423, 0.006808102130889893, -0.020385881885886192, -2.8609461784362793, 0.7886099815368652, -0.1010749563574791, 1.3546488285064697, 0.4888485372066498, -0.021439779549837112, -0.11676230281591415, -0.2953512370586395, -0.25587520003318787, 0.2746904194355011, 1.4021543264389038, -0.6669101715087891, -0.296477735042572, -0.2597341239452362]} +{"t": 9.369, "q": [-0.36349889636039734, -0.025305571034550667, 0.016364896669983864, 0.6029908061027527, -0.28577733039855957, 0.020009826868772507, -0.38445478677749634, 0.013831393793225288, -0.0089993542060256, 0.6089903712272644, -0.2915327250957489, -0.012911098077893257, 0.0034551091957837343, 0.006709396373480558, -0.020322084426879883, -2.8579859733581543, 0.7923490405082703, -0.10051169991493225, 1.354684829711914, 0.48815345764160156, -0.0213678739964962, -0.11872772127389908, -0.2953392565250397, -0.25587520003318787, 0.2747623324394226, 1.4021663665771484, -0.6668862104415894, -0.2965017259120941, -0.25977006554603577]} +{"t": 9.3857, "q": [-0.36363527178764343, -0.02532261423766613, 0.016418464481830597, 0.6030248999595642, -0.2857773005962372, 0.02002427726984024, -0.38453149795532227, 0.013865482062101364, -0.008972570300102234, 0.6089648008346558, -0.29152023792266846, -0.012932841666042805, 0.0034015413839370012, 0.00663346191868186, -0.020263252779841423, -2.855217695236206, 0.796855092048645, -0.09972073882818222, 1.3546369075775146, 0.48663145303726196, -0.021260015666484833, -0.12110059708356857, -0.2953272759914398, -0.2558871805667877, 0.27482226490974426, 1.4021782875061035, -0.6668621897697449, -0.2965256869792938, -0.2598060071468353]} +{"t": 9.4024, "q": [-0.3637375235557556, -0.025288525968790054, 0.01647203229367733, 0.6030163764953613, -0.28578564524650574, 0.02003868669271469, -0.3846593201160431, 0.013848437927663326, -0.008945786394178867, 0.6089307069778442, -0.29152441024780273, -0.012940054759383202, 0.0033881496638059616, 0.006603085435926914, -0.020233863964676857, -2.8535878658294678, 0.8007859587669373, -0.09890580922365189, 1.3547567129135132, 0.48563677072525024, -0.02082858420908451, -0.123964823782444, -0.2953152656555176, -0.255863219499588, 0.2748342454433441, 1.4021424055099487, -0.6668981909751892, -0.2965616285800934, -0.25981801748275757]} +{"t": 9.4192, "q": [-0.36381423473358154, -0.025280004367232323, 0.016525600105524063, 0.6030078530311584, -0.28578564524650574, 0.02003868669271469, -0.384736031293869, 0.013865482062101364, -0.008892218582332134, 0.6088113784790039, -0.29151609539985657, -0.012940090149641037, 0.0031872710678726435, 0.00654235016554594, -0.020204363390803337, -2.8524253368377686, 0.8056994676589966, -0.098102867603302, 1.3545290231704712, 0.48526525497436523, -0.02093644067645073, -0.12860272824764252, -0.29519543051719666, -0.255863219499588, 0.2749421000480652, 1.4021663665771484, -0.6668862104415894, -0.29657360911369324, -0.2598299980163574]} +{"t": 9.4359, "q": [-0.3637971878051758, -0.02538226917386055, 0.01664612628519535, 0.602965235710144, -0.28579819202423096, 0.020031414926052094, -0.3848041892051697, 0.01389957033097744, -0.008704732172191143, 0.6088113784790039, -0.29152441024780273, -0.012940054759383202, 0.0030801359098404646, 0.00645881611853838, -0.020130863413214684, -2.8516223430633545, 0.8091988563537598, -0.09719206392765045, 1.3545650243759155, 0.4851214289665222, -0.020780647173523903, -0.13044829666614532, -0.29489582777023315, -0.25587520003318787, 0.27493011951446533, 1.4021424055099487, -0.6668621897697449, -0.2965856194496155, -0.25987792015075684]} +{"t": 9.4526, "q": [-0.36386537551879883, -0.025365225970745087, 0.01665951870381832, 0.602965235710144, -0.2858189642429352, 0.020081888884305954, -0.38481271266937256, 0.013848437927663326, -0.008677948266267776, 0.6086665391921997, -0.2915327250957489, -0.012925558723509312, 0.003026568330824375, 0.00634492514654994, -0.020057251676917076, -2.850639820098877, 0.8129379153251648, -0.09620936214923859, 1.3542174100875854, 0.48483380675315857, -0.020804615691304207, -0.13158679008483887, -0.2944883704185486, -0.25587520003318787, 0.2749421000480652, 1.4021782875061035, -0.666850209236145, -0.2965616285800934, -0.25987792015075684]} +{"t": 9.4695, "q": [-0.36381423473358154, -0.02539079077541828, 0.016672909259796143, 0.6028373837471008, -0.2858189642429352, 0.020081888884305954, -0.3847956657409668, 0.013933658599853516, -0.00866455677896738, 0.6085472106933594, -0.29152023792266846, -0.012932841666042805, 0.002986392704769969, 0.006299375556409359, -0.020037565380334854, -2.849381446838379, 0.8166410326957703, -0.09517871588468552, 1.3537380695343018, 0.4846061170101166, -0.02099636197090149, -0.1329769641160965, -0.2941048741340637, -0.2558871805667877, 0.27495408058166504, 1.4021782875061035, -0.666850209236145, -0.2966095805168152, -0.2598899006843567]} +{"t": 9.4862, "q": [-0.36385685205459595, -0.025399314239621162, 0.016699694097042084, 0.6028544306755066, -0.285831481218338, 0.020103519782423973, -0.3847871422767639, 0.013882526196539402, -0.00873151607811451, 0.6085131168365479, -0.29152441024780273, -0.012940054759383202, 0.0031203117687255144, 0.006238626316189766, -0.019988548010587692, -2.8476316928863525, 0.8210152983665466, -0.09412410855293274, 1.353318691253662, 0.48464205861091614, -0.020780647173523903, -0.1347985714673996, -0.2935895621776581, -0.25587520003318787, 0.27493011951446533, 1.4021782875061035, -0.6668741703033447, -0.29662156105041504, -0.25987792015075684]} +{"t": 9.503, "q": [-0.36384832859039307, -0.025407835841178894, 0.016672909259796143, 0.6028203368186951, -0.285831481218338, 0.020103519782423973, -0.38477012515068054, 0.013822871260344982, -0.008744907565414906, 0.6084960699081421, -0.2915285527706146, -0.01293280627578497, 0.0032274469267576933, 0.00621585501357913, -0.019983584061264992, -2.8453307151794434, 0.8253176212310791, -0.09323727339506149, 1.3529231548309326, 0.48464205861091614, -0.020900487899780273, -0.13658422231674194, -0.2931820750236511, -0.25587520003318787, 0.2749421000480652, 1.4022022485733032, -0.6668621897697449, -0.29664552211761475, -0.25987792015075684]} +{"t": 9.5198, "q": [-0.3639335334300995, -0.025458969175815582, 0.016592558473348618, 0.6028544306755066, -0.28584399819374084, 0.020110679790377617, -0.384736031293869, 0.013763216324150562, -0.008825259283185005, 0.6084875464439392, -0.2915285527706146, -0.01291834656149149, 0.003321190131828189, 0.006132329348474741, -0.01991984434425831, -2.8430657386779785, 0.829272449016571, -0.09274592250585556, 1.3527673482894897, 0.48471397161483765, -0.020624851807951927, -0.1372433453798294, -0.29300233721733093, -0.255863219499588, 0.2749421000480652, 1.4021663665771484, -0.6668741703033447, -0.29666948318481445, -0.25987792015075684]} +{"t": 9.5365, "q": [-0.363967627286911, -0.025484533980488777, 0.016592558473348618, 0.602828860282898, -0.2858397960662842, 0.020117927342653275, -0.38476160168647766, 0.01375469472259283, -0.008825259283185005, 0.6084619760513306, -0.2915285527706146, -0.01291834656149149, 0.003334582084789872, 0.0060640014708042145, -0.019885435700416565, -2.8404171466827393, 0.8333351016044617, -0.09248226881027222, 1.3524317741394043, 0.4847499132156372, -0.02069675736129284, -0.13772271573543549, -0.2929424047470093, -0.2558871805667877, 0.2749421000480652, 1.4021782875061035, -0.666850209236145, -0.2967533767223358, -0.259865939617157]} +{"t": 9.5532, "q": [-0.36395910382270813, -0.02550157904624939, 0.01661934331059456, 0.6028544306755066, -0.2858356535434723, 0.020096272230148315, -0.384736031293869, 0.013737649656832218, -0.008825259283185005, 0.6084449291229248, -0.29152023792266846, -0.012932841666042805, 0.003361365757882595, 0.006041223183274269, -0.019870713353157043, -2.8369297981262207, 0.8381527662277222, -0.09163138270378113, 1.3516288995742798, 0.4845222234725952, -0.02052897773683071, -0.13796240091323853, -0.292966365814209, -0.25587520003318787, 0.2748941481113434, 1.4021663665771484, -0.6668382287025452, -0.2967533767223358, -0.259865939617157]} +{"t": 9.5702, "q": [-0.3638398051261902, -0.02551010064780712, 0.016672909259796143, 0.6028629541397095, -0.285831481218338, 0.020103519782423973, -0.3847019374370575, 0.013712083920836449, -0.008758299984037876, 0.6085983514785767, -0.29152441024780273, -0.012911133468151093, 0.0034149333368986845, 0.006063987500965595, -0.019865918904542923, -2.832747220993042, 0.8437134027481079, -0.09064868092536926, 1.350741982460022, 0.48448628187179565, -0.020361198112368584, -0.138022318482399, -0.29300233721733093, -0.2558871805667877, 0.27490612864494324, 1.4021424055099487, -0.6668621897697449, -0.2968252897262573, -0.25987792015075684]} +{"t": 9.5869, "q": [-0.3638823926448822, -0.025527145713567734, 0.01661934331059456, 0.6028800010681152, -0.28582730889320374, 0.02011076733469963, -0.38466784358024597, 0.01372060552239418, -0.008852043189108372, 0.6086409687995911, -0.2915327250957489, -0.012925558723509312, 0.0035220684949308634, 0.0060564083978533745, -0.01988052763044834, -2.829116106033325, 0.8490703701972961, -0.08933041244745255, 1.3500109910964966, 0.484198659658432, -0.01979793980717659, -0.13825002312660217, -0.29297834634780884, -0.25582724809646606, 0.27490612864494324, 1.402118444442749, -0.6668741703033447, -0.2969810962677002, -0.2598299980163574]} +{"t": 9.6036, "q": [-0.36384832859039307, -0.025527145713567734, 0.016525600105524063, 0.6028885245323181, -0.2858106195926666, 0.02009638212621212, -0.38463374972343445, 0.013703561387956142, -0.0089190024882555, 0.6085898280143738, -0.2915327250957489, -0.012925558723509312, 0.0037095551379024982, 0.0060640014708042145, -0.019885435700416565, -2.824753761291504, 0.854978621006012, -0.08782040327787399, 1.3488484621047974, 0.484054833650589, -0.01985786110162735, -0.13868145644664764, -0.2929903268814087, -0.25585123896598816, 0.27490612864494324, 1.4021424055099487, -0.6668741703033447, -0.29699307680130005, -0.2598299980163574]} +{"t": 9.6204, "q": [-0.36384832859039307, -0.02551010064780712, 0.01644524745643139, 0.6029993295669556, -0.2858189642429352, 0.020081888884305954, -0.38462522625923157, 0.01372060552239418, -0.009012745693325996, 0.6086921095848083, -0.29151609539985657, -0.012925629504024982, 0.003669379511848092, 0.006064008455723524, -0.019895194098353386, -2.82053542137146, 0.8613062500953674, -0.0863223746418953, 1.3483332395553589, 0.48398295044898987, -0.01918674446642399, -0.13905297219753265, -0.2930143177509308, -0.25587520003318787, 0.2748701870441437, 1.4020824432373047, -0.6667903065681458, -0.2970529794692993, -0.2598299980163574]} +{"t": 9.6371, "q": [-0.36372047662734985, -0.025484533980488777, 0.01644524745643139, 0.6029822826385498, -0.285810649394989, 0.020067479461431503, -0.3845144510269165, 0.013746172189712524, -0.00898596178740263, 0.6087262034416199, -0.2915327250957489, -0.012911098077893257, 0.0037631227169185877, 0.00604884373024106, -0.01991465501487255, -2.8153340816497803, 0.8679695129394531, -0.08498013764619827, 1.3472425937652588, 0.4839589595794678, -0.019282618537545204, -0.1395443230867386, -0.29300233721733093, -0.2558871805667877, 0.27482226490974426, 1.402118444442749, -0.6667543649673462, -0.29706498980522156, -0.25981801748275757]} +{"t": 9.6538, "q": [-0.36385685205459595, -0.025433402508497238, 0.016338111832737923, 0.6031441688537598, -0.2858189642429352, 0.020081888884305954, -0.38454002141952515, 0.013805827125906944, -0.009079704992473125, 0.6087432503700256, -0.29154521226882935, -0.012889335863292217, 0.00354885240085423, 0.005950213875621557, -0.01995820179581642, -2.810157060623169, 0.8746926188468933, -0.08416521549224854, 1.3466434478759766, 0.4838990569114685, -0.018575549125671387, -0.14039519429206848, -0.29297834634780884, -0.2558871805667877, 0.2747862935066223, 1.4020944833755493, -0.6667304039001465, -0.2971728444099426, -0.25981801748275757]} +{"t": 9.6706, "q": [-0.36372047662734985, -0.02544192411005497, 0.016338111832737923, 0.603110134601593, -0.28580647706985474, 0.02007472701370716, -0.3845059275627136, 0.013814348727464676, -0.009093097411096096, 0.6087688207626343, -0.2915368676185608, -0.01291831023991108, 0.0036292036529630423, 0.005942642223089933, -0.01998256891965866, -2.8045125007629395, 0.881583571434021, -0.08372179418802261, 1.3459603786468506, 0.48374325037002563, -0.01877928152680397, -0.14156965911388397, -0.292966365814209, -0.25603097677230835, 0.2747862935066223, 1.4021424055099487, -0.666766345500946, -0.2971728444099426, -0.25977006554603577]} +{"t": 9.6873, "q": [-0.3637545704841614, -0.025433402508497238, 0.016364896669983864, 0.6031441688537598, -0.285810649394989, 0.020067479461431503, -0.38449740409851074, 0.013788782991468906, -0.009093097411096096, 0.6088369488716125, -0.29154932498931885, -0.012911027297377586, 0.0036292036529630423, 0.005919946823269129, -0.02008494921028614, -2.796578884124756, 0.88950514793396, -0.0839255303144455, 1.3446780443191528, 0.48416268825531006, -0.018611501902341843, -0.14557237923145294, -0.2928585112094879, -0.25615084171295166, 0.2746904194355011, 1.4021782875061035, -0.6667903065681458, -0.29722076654434204, -0.25977006554603577]} +{"t": 9.704, "q": [-0.3635585606098175, -0.025433402508497238, 0.01631132885813713, 0.6031356453895569, -0.28581902384757996, 0.020052984356880188, -0.3843440115451813, 0.013763216324150562, -0.009093097411096096, 0.6088539958000183, -0.29157429933547974, -0.012853060849010944, 0.003923825453966856, 0.00584426149725914, -0.020377419888973236, -2.787806510925293, 0.8970192670822144, -0.08410529047250748, 1.3442585468292236, 0.4842465817928314, -0.01913880743086338, -0.15173228085041046, -0.29261884093284607, -0.2563425898551941, 0.2746904194355011, 1.4022142887115479, -0.6667543649673462, -0.2972087860107422, -0.2597580850124359]} +{"t": 9.7207, "q": [-0.36367788910865784, -0.025356702506542206, 0.01613723486661911, 0.6032208800315857, -0.2858273983001709, 0.020038489252328873, -0.3843354880809784, 0.013729128055274487, -0.009347543120384216, 0.6089648008346558, -0.29157015681266785, -0.012860309332609177, 0.003910433501005173, 0.005601508542895317, -0.020522894337773323, -2.7788901329040527, 0.9035027027130127, -0.08470450341701508, 1.3443783521652222, 0.48469001054763794, -0.018731344491243362, -0.15598668158054352, -0.2926667630672455, -0.25633057951927185, 0.2746904194355011, 1.4021782875061035, -0.666766345500946, -0.29729267954826355, -0.2597341239452362]} +{"t": 9.7375, "q": [-0.36380571126937866, -0.025280004367232323, 0.01593635603785515, 0.6031356453895569, -0.2858315706253052, 0.020031224936246872, -0.3843866288661957, 0.013737649656832218, -0.009454678744077682, 0.6087858080863953, -0.29161587357521057, -0.012795023620128632, 0.004151487722992897, 0.0053055863827466965, -0.020732082426548004, -2.7694106101989746, 0.9100341200828552, -0.08554340153932571, 1.3438271284103394, 0.4851454198360443, -0.01967809721827507, -0.16102005541324615, -0.2926667630672455, -0.25635457038879395, 0.2746424973011017, 1.4021424055099487, -0.6667184233665466, -0.29734060168266296, -0.2597341239452362]} +{"t": 9.7542, "q": [-0.3639761507511139, -0.025160694494843483, 0.015695301815867424, 0.6032038331031799, -0.2858274281024933, 0.020024020224809647, -0.38448888063430786, 0.013712083920836449, -0.009535029530525208, 0.6087432503700256, -0.29162004590034485, -0.012802254408597946, 0.004097919911146164, 0.004994383081793785, -0.020745854824781418, -2.761596918106079, 0.9154749512672424, -0.08590292930603027, 1.3442825078964233, 0.48526525497436523, -0.01931857131421566, -0.16381236910820007, -0.2927626371383667, -0.2563665509223938, 0.274618536233902, 1.4020105600357056, -0.6666824221611023, -0.29749640822410583, -0.2597580850124359]} +{"t": 9.7709, "q": [-0.3640102446079254, -0.025118084624409676, 0.01562834158539772, 0.6031867861747742, -0.28583577275276184, 0.020023977383971214, -0.3845229744911194, 0.013712083920836449, -0.009508245624601841, 0.6084364056587219, -0.29162004590034485, -0.012802254408597946, 0.004231838975101709, 0.0046908557415008545, -0.02095019817352295, -2.749864339828491, 0.9223898649215698, -0.08583102375268936, 1.3423171043395996, 0.4852292835712433, -0.01997770369052887, -0.1700681447982788, -0.2926667630672455, -0.256462424993515, 0.27458256483078003, 1.4022022485733032, -0.6667423844337463, -0.29752036929130554, -0.25969815254211426]} +{"t": 9.7877, "q": [-0.3640784025192261, -0.025058429688215256, 0.015681909397244453, 0.6032549738883972, -0.2858315706253052, 0.020031224936246872, -0.38458263874053955, 0.013712083920836449, -0.009441286325454712, 0.6084619760513306, -0.29161587357521057, -0.012809501960873604, 0.0039506093598902225, 0.004554241895675659, -0.020979125052690506, -2.7395339012145996, 0.929256796836853, -0.08563927561044693, 1.3422212600708008, 0.48508548736572266, -0.01960619166493416, -0.1745142936706543, -0.2927147150039673, -0.25645044445991516, 0.2745705842971802, 1.4020824432373047, -0.6666944622993469, -0.29761624336242676, -0.2597341239452362]} +{"t": 9.8044, "q": [-0.3640613555908203, -0.024802764877676964, 0.01578904502093792, 0.6032464504241943, -0.2858315706253052, 0.020031224936246872, -0.3845996558666229, 0.013686517253518105, -0.00932075921446085, 0.6083000898361206, -0.2916117310523987, -0.012816750444471836, 0.0038300822488963604, 0.0043797241523861885, -0.021120350807905197, -2.7287721633911133, 0.9358001947402954, -0.08538760244846344, 1.3408191204071045, 0.48473793268203735, -0.019941750913858414, -0.1795836091041565, -0.29265478253364563, -0.2564983665943146, 0.2745705842971802, 1.4021663665771484, -0.6667543649673462, -0.2976522147655487, -0.25967419147491455]} +{"t": 9.8211, "q": [-0.36417216062545776, -0.02447892539203167, 0.015896180644631386, 0.6033061146736145, -0.2858482599258423, 0.020031139254570007, -0.3846934139728546, 0.013712083920836449, -0.009280583821237087, 0.6083256602287292, -0.29161587357521057, -0.012795023620128632, 0.003589028026908636, 0.004227877128869295, -0.021041857078671455, -2.7196521759033203, 0.941876232624054, -0.08531569689512253, 1.3408910036087036, 0.48469001054763794, -0.019390476867556572, -0.18199244141578674, -0.2926907241344452, -0.2564983665943146, 0.27452266216278076, 1.402130365371704, -0.666766345500946, -0.2977240979671478, -0.25969815254211426]} +{"t": 9.8381, "q": [-0.36427441239356995, -0.02441927045583725, 0.01597653143107891, 0.6033231616020203, -0.2858482599258423, 0.020031139254570007, -0.3847871422767639, 0.013712083920836449, -0.009186840616166592, 0.6080870032310486, -0.2916117310523987, -0.012802272103726864, 0.0035086767747998238, 0.00403812387958169, -0.021065887063741684, -2.707871675491333, 0.9487311840057373, -0.08496815711259842, 1.3392372131347656, 0.4841746985912323, -0.020193420350551605, -0.18588732182979584, -0.29249897599220276, -0.25658226013183594, 0.27454662322998047, 1.4022501707077026, -0.6667423844337463, -0.2977480888366699, -0.2596622109413147]} +{"t": 9.8548, "q": [-0.3643852174282074, -0.02442779205739498, 0.016056882217526436, 0.6033572554588318, -0.2858524024486542, 0.020067265257239342, -0.3847956657409668, 0.013703561387956142, -0.009146664291620255, 0.6079933047294617, -0.29161587357521057, -0.012795023620128632, 0.003441717242822051, 0.003848303807899356, -0.02094334177672863, -2.6991591453552246, 0.9545195698738098, -0.08477640897035599, 1.3390933275222778, 0.48413872718811035, -0.019869845360517502, -0.1895664781332016, -0.2925349473953247, -0.25663021206855774, 0.27452266216278076, 1.402226209640503, -0.6667064428329468, -0.29779601097106934, -0.2596861720085144]} +{"t": 9.8716, "q": [-0.36445337533950806, -0.024453358724713326, 0.016070274636149406, 0.6033146381378174, -0.2858524024486542, 0.020067265257239342, -0.38489794731140137, 0.01369503978639841, -0.009093097411096096, 0.6078654527664185, -0.2916034460067749, -0.01277338620275259, 0.0034551091957837343, 0.0037040552124381065, -0.02087952196598053, -2.6888527870178223, 0.9614584445953369, -0.08358997106552124, 1.338194489479065, 0.48296427726745605, -0.020013656467199326, -0.19591811299324036, -0.29254692792892456, -0.2566421926021576, 0.2745586037635803, 1.4021903276443481, -0.6667184233665466, -0.29784396290779114, -0.25967419147491455]} +{"t": 9.8884, "q": [-0.3645130395889282, -0.024504492059350014, 0.016164017841219902, 0.6033316850662231, -0.28585657477378845, 0.020060017704963684, -0.38491499423980713, 0.01366095058619976, -0.009039529599249363, 0.6078398823738098, -0.29156598448753357, -0.012867556884884834, 0.003481892868876457, 0.0031953451689332724, -0.020541755482554436, -2.6810989379882812, 0.9671509265899658, -0.08319449424743652, 1.3382185697555542, 0.4822092652320862, -0.01967809721827507, -0.19951337575912476, -0.29254692792892456, -0.25663021206855774, 0.27452266216278076, 1.4021782875061035, -0.6667184233665466, -0.29791584610939026, -0.25967419147491455]} +{"t": 9.9051, "q": [-0.36458975076675415, -0.024572668597102165, 0.016217585653066635, 0.603272020816803, -0.2858648896217346, 0.02008887752890587, -0.38499167561531067, 0.013677995651960373, -0.009012745693325996, 0.6076694130897522, -0.29157429933547974, -0.012853060849010944, 0.003321190131828189, 0.002610856667160988, -0.02013191394507885, -2.671847105026245, 0.9731910228729248, -0.08174440264701843, 1.3371039628982544, 0.48054346442222595, -0.019570238888263702, -0.20356404781341553, -0.29245105385780334, -0.25663021206855774, 0.27454662322998047, 1.4022022485733032, -0.6667184233665466, -0.2979997396469116, -0.2596622109413147]} +{"t": 9.9218, "q": [-0.3647090494632721, -0.024615278467535973, 0.016244368627667427, 0.6032634973526001, -0.2858690321445465, 0.02011055126786232, -0.3850172460079193, 0.01372060552239418, -0.0089993542060256, 0.607524573802948, -0.2915618419647217, -0.012874804437160492, 0.0032274469267576933, 0.0022009601816534996, -0.019861984997987747, -2.664081335067749, 0.9788715243339539, -0.08077368140220642, 1.336540699005127, 0.4796326756477356, -0.019534287974238396, -0.20612867176532745, -0.2922952473163605, -0.2567140758037567, 0.2745586037635803, 1.4022142887115479, -0.6667184233665466, -0.2980476915836334, -0.25967419147491455]} +{"t": 9.9386, "q": [-0.36477723717689514, -0.024615278467535973, 0.016271153464913368, 0.603272020816803, -0.28584396839141846, 0.0201251320540905, -0.38505133986473083, 0.013737649656832218, -0.009026138111948967, 0.6073967218399048, -0.29154521226882935, -0.012889335863292217, 0.00321405497379601, 0.0017075714422389865, -0.01954461820423603, -2.6563034057617188, 0.9840367436408997, -0.07922771573066711, 1.3360373973846436, 0.47777509689331055, -0.01907888613641262, -0.20910076797008514, -0.2922952473163605, -0.25672608613967896, 0.27452266216278076, 1.402226209640503, -0.666766345500946, -0.29811957478523254, -0.2596861720085144]} +{"t": 9.9553, "q": [-0.36481133103370667, -0.024674933403730392, 0.016257761046290398, 0.6032549738883972, -0.285852313041687, 0.020125089213252068, -0.38505133986473083, 0.013874003663659096, -0.009012745693325996, 0.6072944402694702, -0.29154518246650696, -0.012903815135359764, 0.003066744189709425, 0.0010699575068429112, -0.019123652949929237, -2.6500236988067627, 0.9888423681259155, -0.07689078897237778, 1.3360613584518433, 0.4726938009262085, -0.01894705928862095, -0.2141581028699875, -0.2923072278499603, -0.256690114736557, 0.2745346426963806, 1.4022022485733032, -0.666766345500946, -0.29819148778915405, -0.2596861720085144]} +{"t": 9.972, "q": [-0.36490505933761597, -0.02472606673836708, 0.016257761046290398, 0.6032294034957886, -0.2858564853668213, 0.020132293924689293, -0.38505133986473083, 0.013942181132733822, -0.009052921086549759, 0.6070473194122314, -0.2915285527706146, -0.01291834656149149, 0.002959609031677246, 0.000607067602686584, -0.018822014331817627, -2.642174005508423, 0.9943431615829468, -0.07292401045560837, 1.3349708318710327, 0.46806788444519043, -0.018803250044584274, -0.21884393692016602, -0.29227128624916077, -0.25685790181159973, 0.2744866907596588, 1.4022142887115479, -0.6666944622993469, -0.298311322927475, -0.2596861720085144]} +{"t": 9.9888, "q": [-0.36490505933761597, -0.02477720007300377, 0.0163247212767601, 0.6031271815299988, -0.28588148951530457, 0.020161086693406105, -0.38500872254371643, 0.014010357670485973, -0.009039529599249363, 0.60685133934021, -0.2915119230747223, -0.012961816042661667, 0.0028926494996994734, 0.00040977104799821973, -0.01869344338774681, -2.6345162391662598, 0.999783992767334, -0.06956842541694641, 1.334275722503662, 0.4624353051185608, -0.01883920282125473, -0.222019761800766, -0.29215145111083984, -0.2572653591632843, 0.27449867129325867, 1.402286171913147, -0.6667903065681458, -0.2983233332633972, -0.2596861720085144]} +{"t": 10.0055, "q": [-0.36482834815979004, -0.02495616301894188, 0.01629793643951416, 0.602897047996521, -0.2858981490135193, 0.020189903676509857, -0.3849320411682129, 0.014001836068928242, -0.00906631350517273, 0.6065956354141235, -0.2915160655975342, -0.012954550795257092, 0.0031470954418182373, 0.00020488494192250073, -0.01855003833770752, -2.621764898300171, 1.0068546533584595, -0.06476275622844696, 1.3306084871292114, 0.45897185802459717, -0.01871936023235321, -0.2274605929851532, -0.2918398678302765, -0.2578166425228119, 0.27447471022605896, 1.4022622108459473, -0.6666824221611023, -0.2983832359313965, -0.25972214341163635]} +{"t": 10.0224, "q": [-0.36463233828544617, -0.025245916098356247, 0.01628454588353634, 0.6027181148529053, -0.28590232133865356, 0.020197108387947083, -0.3847871422767639, 0.013856959529221058, -0.009106488898396492, 0.6067831516265869, -0.2915119230747223, -0.012961816042661667, 0.003254230599850416, 0.0002580035652499646, -0.01851542294025421, -2.6090617179870605, 1.0144646167755127, -0.06217416003346443, 1.3285112380981445, 0.4529198110103607, -0.019965719431638718, -0.23406390845775604, -0.2918158769607544, -0.25824806094169617, 0.2744627296924591, 1.4022982120513916, -0.6667304039001465, -0.2984311878681183, -0.25967419147491455]} +{"t": 10.0391, "q": [-0.36445337533950806, -0.025467490777373314, 0.016056882217526436, 0.6025732159614563, -0.28590232133865356, 0.020197108387947083, -0.3845570683479309, 0.01369503978639841, -0.009240408428013325, 0.6066893935203552, -0.2915078103542328, -0.012925664894282818, 0.0032944062259048223, 0.00040977104799821973, -0.01857476308941841, -2.5907976627349854, 1.0233089923858643, -0.05766809359192848, 1.3240171670913696, 0.4453098475933075, -0.019714049994945526, -0.24444223940372467, -0.2916840612888336, -0.2584877610206604, 0.2744147777557373, 1.402358055114746, -0.6667304039001465, -0.2986109256744385, -0.25977006554603577]} +{"t": 10.0558, "q": [-0.36418068408966064, -0.025612367317080498, 0.016217585653066635, 0.6024453639984131, -0.28590649366378784, 0.02020432986319065, -0.38448888063430786, 0.013558685779571533, -0.009039529599249363, 0.6070728898048401, -0.29151612520217896, -0.012911168858408928, 0.003441717242822051, 0.0005691269179806113, -0.018500588834285736, -2.573660373687744, 1.0317819118499756, -0.053233928978443146, 1.3237296342849731, 0.4411153495311737, -0.020313261076807976, -0.25140509009361267, -0.2917200028896332, -0.258667528629303, 0.27447471022605896, 1.4022622108459473, -0.6667543649673462, -0.29868283867836, -0.25967419147491455]} +{"t": 10.0727, "q": [-0.3642573654651642, -0.025578279048204422, 0.01597653143107891, 0.6024879813194275, -0.2858939468860626, 0.020211603492498398, -0.38445478677749634, 0.013609818182885647, -0.009414502419531345, 0.6069876551628113, -0.2915078103542328, -0.012925664894282818, 0.0038434739690274, 0.0006525990320369601, -0.018505534157156944, -2.551861047744751, 1.0418007373809814, -0.04639093577861786, 1.320182204246521, 0.4339008629322052, -0.02004960924386978, -0.2624785006046295, -0.2918158769607544, -0.25857165455818176, 0.27447471022605896, 1.4021663665771484, -0.6666704416275024, -0.2989824414253235, -0.2597101330757141]} +{"t": 10.0894, "q": [-0.36435964703559875, -0.025586800649762154, 0.015896180644631386, 0.6024453639984131, -0.28586894273757935, 0.020182829350233078, -0.3845229744911194, 0.013618340715765953, -0.009535029530525208, 0.6072433590888977, -0.29152023792266846, -0.012932841666042805, 0.004258622881025076, 0.0007057164912112057, -0.018372192978858948, -2.5340044498443604, 1.0511484146118164, -0.042208440601825714, 1.3197628259658813, 0.4246130883693695, -0.020289292559027672, -0.26968100666999817, -0.29203158617019653, -0.25842782855033875, 0.2745106518268585, 1.401902675628662, -0.6667184233665466, -0.2991741895675659, -0.2597101330757141]} +{"t": 10.1062, "q": [-0.36469200253486633, -0.025518624112010002, 0.015588166192173958, 0.6028032898902893, -0.2858731150627136, 0.02017558179795742, -0.3846167027950287, 0.013797304593026638, -0.010017137974500656, 0.607379674911499, -0.2915119230747223, -0.012961816042661667, 0.0038970415480434895, 0.0001821209880290553, -0.017720108851790428, -2.5165674686431885, 1.0611552000045776, -0.03906857594847679, 1.319954514503479, 0.42028677463531494, -0.01913880743086338, -0.2752656638622284, -0.2923192083835602, -0.2580922842025757, 0.2745106518268585, 1.4014592170715332, -0.6666345000267029, -0.2997734248638153, -0.2597101330757141]} +{"t": 10.123, "q": [-0.364785760641098, -0.025493057444691658, 0.015467639081180096, 0.6027266383171082, -0.2858606278896332, 0.020153967663645744, -0.3845655918121338, 0.014121145009994507, -0.01024479977786541, 0.6070217490196228, -0.29144954681396484, -0.013056093826889992, 0.004057744517922401, -0.00012900236470159143, -0.01756071113049984, -2.4977402687072754, 1.070155382156372, -0.033244241029024124, 1.3164311647415161, 0.41162219643592834, -0.020433103665709496, -0.2848770320415497, -0.2921154797077179, -0.2581402063369751, 0.2745106518268585, 1.4017109870910645, -0.6666584610939026, -0.3000730276107788, -0.2596622109413147]} +{"t": 10.1397, "q": [-0.36476871371269226, -0.025484533980488777, 0.01538728829473257, 0.602828860282898, -0.2858690023422241, 0.02013947255909443, -0.3845144510269165, 0.014172278344631195, -0.01033854391425848, 0.6071922183036804, -0.2914578914642334, -0.013012676499783993, 0.003655987558886409, -0.0006980879697948694, -0.01725587248802185, -2.477630615234375, 1.0798625946044922, -0.02569417841732502, 1.313219428062439, 0.40226250886917114, -0.02004960924386978, -0.29406893253326416, -0.29194772243499756, -0.2583199739456177, 0.27447471022605896, 1.4017229080200195, -0.6665745973587036, -0.30028873682022095, -0.2597820460796356]} +{"t": 10.1564, "q": [-0.3643937408924103, -0.025467490777373314, 0.015507815405726433, 0.6027436852455139, -0.2858731746673584, 0.020146677270531654, -0.3843269646167755, 0.014342720620334148, -0.01032515149563551, 0.6071922183036804, -0.2914661765098572, -0.013027101755142212, 0.0035354604478925467, -0.0007511993171647191, -0.017260607331991196, -2.4553279876708984, 1.0906484127044678, -0.02004960924386978, 1.3098039627075195, 0.3960306942462921, -0.02148771658539772, -0.3032967746257782, -0.2918638288974762, -0.2588352859020233, 0.27445074915885925, 1.4019147157669067, -0.6665865778923035, -0.30031269788742065, -0.2596622109413147]} +{"t": 10.1731, "q": [-0.3645641803741455, -0.025424880906939507, 0.015427463687956333, 0.6028373837471008, -0.28588569164276123, 0.020139386877417564, -0.38444626331329346, 0.014334198087453842, -0.01033854391425848, 0.6073541045188904, -0.2914827764034271, -0.013027030974626541, 0.0034149333368986845, -0.001359752961434424, -0.016851849853992462, -2.438418388366699, 1.1003316640853882, -0.017005614936351776, 1.3098039627075195, 0.39230361580848694, -0.020085562020540237, -0.3094926178455353, -0.2919597029685974, -0.25887125730514526, 0.2744147777557373, 1.4016270637512207, -0.666538655757904, -0.3006003201007843, -0.25981801748275757]} +{"t": 10.1899, "q": [-0.364530086517334, -0.025424880906939507, 0.01538728829473257, 0.6026925444602966, -0.28586071729660034, 0.02009614370763302, -0.38435253500938416, 0.014504640363156796, -0.010405503213405609, 0.6069535613059998, -0.291407972574234, -0.01309967041015625, 0.0034149333368986845, -0.0017418372444808483, -0.016656557098031044, -2.4156363010406494, 1.1101826429367065, -0.010366355068981647, 1.305309772491455, 0.3804751932621002, -0.02105628326535225, -0.31721046566963196, -0.2915162742137909, -0.2590630054473877, 0.27442678809165955, 1.4019266366958618, -0.6665146946907043, -0.300768107175827, -0.2597820460796356]} +{"t": 10.2066, "q": [-0.3645727038383484, -0.025433402508497238, 0.015521206893026829, 0.6029311418533325, -0.2858690321445465, 0.02011055126786232, -0.3845059275627136, 0.014658038504421711, -0.010405503213405609, 0.6073626279830933, -0.29139962792396545, -0.013128644786775112, 0.0031470954418182373, -0.002645438304170966, -0.01606146991252899, -2.3984389305114746, 1.1188832521438599, -0.003930825740098953, 1.3049023151397705, 0.3741834759712219, -0.02063683606684208, -0.32502418756484985, -0.2915402352809906, -0.2590630054473877, 0.2744147777557373, 1.4018787145614624, -0.6664547324180603, -0.3010437488555908, -0.2597580850124359]} +{"t": 10.2233, "q": [-0.364530086517334, -0.025365225970745087, 0.015481031499803066, 0.6028629541397095, -0.28587737679481506, 0.020110491663217545, -0.38436105847358704, 0.014623950235545635, -0.010405503213405609, 0.6068683862686157, -0.2913913130760193, -0.013143140822649002, 0.003093527862802148, -0.0028129001148045063, -0.016022220253944397, -2.375201463699341, 1.1276795864105225, 0.003978762775659561, 1.2996172904968262, 0.36367329955101013, -0.021403826773166656, -0.33286187052726746, -0.29085713624954224, -0.2594105303287506, 0.2743908166885376, 1.402118444442749, -0.6664547324180603, -0.3012474775314331, -0.2597341239452362]} +{"t": 10.24, "q": [-0.3645130395889282, -0.02538226917386055, 0.015561383217573166, 0.602828860282898, -0.28588154911994934, 0.020117713138461113, -0.38435253500938416, 0.014538728632032871, -0.010298367589712143, 0.6068001985549927, -0.29140380024909973, -0.013106917962431908, 0.002839081920683384, -0.0029407229740172625, -0.016104605048894882, -2.349555253982544, 1.1372790336608887, 0.011948272585868835, 1.295374870300293, 0.3540020287036896, -0.02087652124464512, -0.3391176164150238, -0.2904856503009796, -0.25972214341163635, 0.2742949426174164, 1.4021663665771484, -0.6663708686828613, -0.30139127373695374, -0.2597580850124359]} +{"t": 10.2569, "q": [-0.36464086174964905, -0.025339659303426743, 0.01578904502093792, 0.6028459072113037, -0.2859107553958893, 0.020139239728450775, -0.38454002141952515, 0.014479073695838451, -0.009976962581276894, 0.606936514377594, -0.2914287745952606, -0.013063430786132812, 0.0025176764465868473, -0.002971344394609332, -0.01608509197831154, -2.328247308731079, 1.146087408065796, 0.018623486161231995, 1.2948955297470093, 0.3441869616508484, -0.020493024960160255, -0.34599655866622925, -0.2904856503009796, -0.25985395908355713, 0.27433091402053833, 1.402118444442749, -0.6664187908172607, -0.301595002412796, -0.25972214341163635]} +{"t": 10.2736, "q": [-0.36490505933761597, -0.02532261423766613, 0.015762262046337128, 0.6028800010681152, -0.2859107553958893, 0.020139239728450775, -0.38476160168647766, 0.014547251164913177, -0.00999035406857729, 0.6068342924118042, -0.29142874479293823, -0.013077890500426292, 0.002356973709538579, -0.0035631265491247177, -0.01572609692811966, -2.3109421730041504, 1.153098225593567, 0.0231774915009737, 1.2948715686798096, 0.33970484137535095, -0.01913880743086338, -0.34975960850715637, -0.2903897762298584, -0.2597580850124359, 0.27435487508773804, 1.4020705223083496, -0.6664068102836609, -0.3021942377090454, -0.25974610447883606]} +{"t": 10.2903, "q": [-0.365203320980072, -0.02532261423766613, 0.015748869627714157, 0.602828860282898, -0.28589826822280884, 0.02011762745678425, -0.38485532999038696, 0.01458986196666956, -0.010017137974500656, 0.6063911318778992, -0.291407972574234, -0.01309967041015625, 0.0024775005877017975, -0.004422228783369064, -0.015169703401625156, -2.294607639312744, 1.15922212600708, 0.027359986677765846, 1.292810320854187, 0.3318072557449341, -0.01876729726791382, -0.35410988330841064, -0.28995832800865173, -0.2597580850124359, 0.2743908166885376, 1.402118444442749, -0.6663828492164612, -0.3026975691318512, -0.25972214341163635]} +{"t": 10.3072, "q": [-0.36541637778282166, -0.025280004367232323, 0.015681909397244453, 0.6029226183891296, -0.2859107553958893, 0.020139239728450775, -0.38489794731140137, 0.014623950235545635, -0.010124272666871548, 0.6063144207000732, -0.29139965772628784, -0.013114184141159058, 0.0024775005877017975, -0.005749329924583435, -0.014331333339214325, -2.2825396060943604, 1.1634525060653687, 0.030475884675979614, 1.2909526824951172, 0.327181339263916, -0.01746101677417755, -0.3562191128730774, -0.2898145318031311, -0.2597580850124359, 0.2743908166885376, 1.4021424055099487, -0.6664667129516602, -0.3031529486179352, -0.25969815254211426]} +{"t": 10.324, "q": [-0.3657572567462921, -0.025160694494843483, 0.015574774704873562, 0.6027777194976807, -0.2859024107456207, 0.020124832168221474, -0.3851195275783539, 0.014623950235545635, -0.010218016803264618, 0.605888307094574, -0.29139965772628784, -0.013114184141159058, 0.0024105412885546684, -0.007076323498040438, -0.01395166851580143, -2.2706871032714844, 1.1670957803726196, 0.03450258448719978, 1.2878727912902832, 0.32237565517425537, -0.017305221408605576, -0.35800474882125854, -0.28968268632888794, -0.2597341239452362, 0.2743908166885376, 1.4021663665771484, -0.666394829750061, -0.3033926486968994, -0.25969815254211426]} +{"t": 10.3407, "q": [-0.3659958839416504, -0.02514364942908287, 0.015494422987103462, 0.6027606725692749, -0.2859148681163788, 0.020175348967313766, -0.3851621150970459, 0.014666561037302017, -0.010298367589712143, 0.6053855419158936, -0.2913622558116913, -0.01310709584504366, 0.0023435817565768957, -0.008524677716195583, -0.013690167106688023, -2.2630531787872314, 1.1696484088897705, 0.0369953028857708, 1.2863867282867432, 0.32073381543159485, -0.01619068905711174, -0.35890358686447144, -0.28961077332496643, -0.2597940266132355, 0.2743668556213379, 1.4021663665771484, -0.6663469076156616, -0.30360835790634155, -0.2597101330757141]} +{"t": 10.3574, "q": [-0.36624303460121155, -0.025126606225967407, 0.015400679782032967, 0.6026584506034851, -0.2859315872192383, 0.020175280049443245, -0.3851195275783539, 0.014726215042173862, -0.010445678606629372, 0.6048145294189453, -0.2913000285625458, -0.013056732714176178, 0.0023435817565768957, -0.010116997174918652, -0.013543064706027508, -2.2580437660217285, 1.1709307432174683, 0.03868507966399193, 1.283918023109436, 0.3160479962825775, -0.015004250220954418, -0.3603057265281677, -0.2896347641944885, -0.2598060071468353, 0.2743668556213379, 1.4021903276443481, -0.6663828492164612, -0.30370423197746277, -0.2597101330757141]} +{"t": 10.3741, "q": [-0.366583913564682, -0.02514364942908287, 0.015146234072744846, 0.6024624109268188, -0.2859523892402649, 0.020211301743984222, -0.3850342929363251, 0.014751781709492207, -0.010713516734540462, 0.603715181350708, -0.29110071063041687, -0.012956344522535801, 0.002356973709538579, -0.011361125856637955, -0.013813418336212635, -2.2537293434143066, 1.17157781124115, 0.040111202746629715, 1.279687523841858, 0.31257256865501404, -0.013793842867016792, -0.3620554208755493, -0.2896347641944885, -0.2598060071468353, 0.27437883615493774, 1.4022022485733032, -0.6663469076156616, -0.30381208658218384, -0.2597101330757141]} +{"t": 10.391, "q": [-0.36660948395729065, -0.02514364942908287, 0.014824828132987022, 0.6021385788917542, -0.2859898805618286, 0.020276159048080444, -0.3846081793308258, 0.014819959178566933, -0.011088489554822445, 0.602360188961029, -0.29078540205955505, -0.012596148997545242, 0.0024507169146090746, -0.012097128666937351, -0.014095698483288288, -2.250577688217163, 1.1722010374069214, 0.04180097579956055, 1.2761162519454956, 0.30792269110679626, -0.012631373479962349, -0.3643803596496582, -0.28968268632888794, -0.25994983315467834, 0.27430692315101624, 1.4021782875061035, -0.6663349270820618, -0.30388399958610535, -0.25972214341163635]} +{"t": 10.4077, "q": [-0.3665327727794647, -0.025160694494843483, 0.014757868833839893, 0.6017465591430664, -0.28602319955825806, 0.02033381350338459, -0.3843866288661957, 0.014794392511248589, -0.011463462375104427, 0.6018658876419067, -0.29038751125335693, -0.01225131843239069, 0.002651595277711749, -0.01260568667203188, -0.0144348731264472, -2.248528242111206, 1.17266845703125, 0.0430113859474659, 1.2730722427368164, 0.3051663041114807, -0.011205250397324562, -0.3660701513290405, -0.2897426187992096, -0.26002174615859985, 0.27430692315101624, 1.4021543264389038, -0.6662749648094177, -0.3039678931236267, -0.25972214341163635]} +{"t": 10.4244, "q": [-0.3663623332977295, -0.02519478276371956, 0.014744477346539497, 0.6017209887504578, -0.2861602008342743, 0.02061501145362854, -0.38398608565330505, 0.014555772766470909, -0.011731300503015518, 0.6017891764640808, -0.28998175263404846, -0.01157403364777565, 0.0027855143416672945, -0.012734725140035152, -0.014518476091325283, -2.245556116104126, 1.1732796430587769, 0.04392218589782715, 1.2678471803665161, 0.30353644490242004, -0.009635317139327526, -0.3671247661113739, -0.28980252146720886, -0.26006966829299927, 0.2742709815502167, 1.4021424055099487, -0.6662749648094177, -0.30408772826194763, -0.25972214341163635]} +{"t": 10.4412, "q": [-0.3661322295665741, -0.025356702506542206, 0.014811436645686626, 0.6017209887504578, -0.2864844501018524, 0.02116319164633751, -0.38379859924316406, 0.014180799946188927, -0.012039314024150372, 0.6018573641777039, -0.2899486720561981, -0.011487482115626335, 0.003093527862802148, -0.012681589461863041, -0.0144840432330966, -2.2442378997802734, 1.1737110614776611, 0.04441354051232338, 1.2645634412765503, 0.30153509974479675, -0.008448879234492779, -0.3677479326725006, -0.289790540933609, -0.26006966829299927, 0.2742709815502167, 1.4020824432373047, -0.6662749648094177, -0.30420756340026855, -0.25972214341163635]} +{"t": 10.458, "q": [-0.36587658524513245, -0.02562941052019596, 0.015159625560045242, 0.6017295122146606, -0.2868516445159912, 0.02179819718003273, -0.38358554244041443, 0.013942181132733822, -0.012052706442773342, 0.6018829345703125, -0.2899032235145569, -0.011335945688188076, 0.003254230599850416, -0.012393185868859291, -0.014316664077341557, -2.2429914474487305, 1.1739387512207031, 0.04472512751817703, 1.2611359357833862, 0.29964157938957214, -0.0076579200103878975, -0.3681314289569855, -0.28980252146720886, -0.25999775528907776, 0.27430692315101624, 1.4020824432373047, -0.6662869453430176, -0.30438733100891113, -0.25972214341163635]} +{"t": 10.4747, "q": [-0.36574023962020874, -0.025816896930336952, 0.015467639081180096, 0.6018658876419067, -0.28719794750213623, 0.022397134453058243, -0.3834491968154907, 0.013737649656832218, -0.012025922536849976, 0.6018999814987183, -0.2897997796535492, -0.011126874946057796, 0.003321190131828189, -0.011915051378309727, -0.014045825228095055, -2.2422845363616943, 1.1739866733551025, 0.0448329858481884, 1.258151888847351, 0.2965017259120941, -0.007022756151854992, -0.36833515763282776, -0.2898145318031311, -0.25997379422187805, 0.27430692315101624, 1.401998519897461, -0.6662629842758179, -0.30457907915115356, -0.2597101330757141]} +{"t": 10.4916, "q": [-0.3655186593532562, -0.026081083342432976, 0.01577565260231495, 0.6018744111061096, -0.28733983635902405, 0.0226424727588892, -0.3833213448524475, 0.013379720970988274, -0.01193217933177948, 0.601917028427124, -0.289737731218338, -0.010989878326654434, 0.0036158119328320026, -0.01157351490110159, -0.013844026252627373, -2.2419848442077637, 1.1739987134933472, 0.04494084417819977, 1.2563302516937256, 0.29529130458831787, -0.006663229316473007, -0.36853888630867004, -0.28982651233673096, -0.25994983315467834, 0.27433091402053833, 1.4020105600357056, -0.6663109660148621, -0.30473488569259644, -0.2597101330757141]} +{"t": 10.5083, "q": [-0.36522889137268066, -0.026370834559202194, 0.01581582799553871, 0.6019255518913269, -0.2874066233634949, 0.0227724090218544, -0.38284412026405334, 0.013141102157533169, -0.011972354725003242, 0.6019511222839355, -0.28972122073173523, -0.01090323831886053, 0.0036827712319791317, -0.01105737965553999, -0.013509669341146946, -2.241589307785034, 1.1739987134933472, 0.044916875660419464, 1.2550839185714722, 0.2947879731655121, -0.005800365004688501, -0.36861079931259155, -0.2898384928703308, -0.25990188121795654, 0.27433091402053833, 1.4019745588302612, -0.6662869453430176, -0.30492663383483887, -0.2597101330757141]} +{"t": 10.525, "q": [-0.3648794889450073, -0.026617975905537605, 0.01581582799553871, 0.6019085049629211, -0.2874942123889923, 0.02290945313870907, -0.38239243626594543, 0.012859872542321682, -0.012079490348696709, 0.6019340753555298, -0.28975456953048706, -0.010816315189003944, 0.0036425956059247255, -0.010677874088287354, -0.01327382680028677, -2.2406067848205566, 1.1739987134933472, 0.044916875660419464, 1.2534900903701782, 0.29394906759262085, -0.004661863669753075, -0.3687785863876343, -0.2898145318031311, -0.25985395908355713, 0.27435487508773804, 1.4019865989685059, -0.6662989258766174, -0.3050704300403595, -0.25969815254211426]} +{"t": 10.5418, "q": [-0.364530086517334, -0.026754330843687057, 0.01581582799553871, 0.6019340753555298, -0.28754010796546936, 0.02298883907496929, -0.38197484612464905, 0.012808739207684994, -0.012039314024150372, 0.6019425988197327, -0.28977951407432556, -0.010758339427411556, 0.003589028026908636, -0.010472933761775494, -0.013141220435500145, -2.2399237155914307, 1.1739987134933472, 0.04490489140152931, 1.252615213394165, 0.29327794909477234, -0.0038469363935291767, -0.36883848905563354, -0.28982651233673096, -0.25969815254211426, 0.2743668556213379, 1.4019865989685059, -0.6663109660148621, -0.30522623658180237, -0.25969815254211426]} +{"t": 10.5585, "q": [-0.36431702971458435, -0.026754330843687057, 0.015882788226008415, 0.6019852161407471, -0.2875526249408722, 0.023010481148958206, -0.3817277252674103, 0.012783173471689224, -0.011985746212303638, 0.60199373960495, -0.289792001247406, -0.010736595839262009, 0.003481892868876457, -0.010404695756733418, -0.013155419379472733, -2.23892879486084, 1.1739987134933472, 0.044868938624858856, 1.251524567604065, 0.29265478253364563, -0.0033555831760168076, -0.36891040205955505, -0.2898145318031311, -0.25967419147491455, 0.27437883615493774, 1.401998519897461, -0.6663229465484619, -0.3053460717201233, -0.25972214341163635]} +{"t": 10.5753, "q": [-0.36412954330444336, -0.026737285777926445, 0.015856005251407623, 0.6021044850349426, -0.2875608801841736, 0.022995982319116592, -0.38155728578567505, 0.012800217606127262, -0.012025922536849976, 0.6021215319633484, -0.289792001247406, -0.010736595839262009, 0.0033881496638059616, -0.010412286035716534, -0.013160331174731255, -2.2379581928253174, 1.1739987134933472, 0.044856954365968704, 1.2507336139678955, 0.29237914085388184, -0.0031158984638750553, -0.36895835399627686, -0.2898145318031311, -0.25962626934051514, 0.27433091402053833, 1.4019865989685059, -0.6662869453430176, -0.30542996525764465, -0.2597101330757141]} +{"t": 10.592, "q": [-0.36395910382270813, -0.02664354257285595, 0.015574774704873562, 0.6020362973213196, -0.28755253553390503, 0.02298155426979065, -0.38096925616264343, 0.012800217606127262, -0.012307152152061462, 0.6015761494636536, -0.28964290022850037, -0.010520542040467262, 0.0034015413839370012, -0.009359070099890232, -0.013918211683630943, -2.2197062969207764, 1.1785407066345215, 0.05631387606263161, 1.2479772567749023, 0.2811499238014221, -0.012259862385690212, -0.3731408417224884, -0.2895388901233673, -0.26032134890556335, 0.27400732040405273, 1.402118444442749, -0.6661791205406189, -0.305513858795166, -0.260237455368042]} +{"t": 10.6087, "q": [-0.3615899682044983, -0.026899205520749092, 0.016056882217526436, 0.6016868948936462, -0.2875608801841736, 0.022995982319116592, -0.37922221422195435, 0.012621252797544003, -0.011784868314862251, 0.6022152900695801, -0.2896845042705536, -0.010433592833578587, 0.003776514669880271, -0.007243300322443247, -0.014108098112046719, -2.1942636966705322, 1.1831066608428955, 0.06690792739391327, 1.2452927827835083, 0.26729616522789, -0.028570393100380898, -0.3779345154762268, -0.29015007615089417, -0.26149579882621765, 0.27382755279541016, 1.4020345211029053, -0.6661431789398193, -0.3055498003959656, -0.2603932321071625]} +{"t": 10.6255, "q": [-0.36093375086784363, -0.026984427124261856, 0.01612384244799614, 0.6017891764640808, -0.2877148985862732, 0.023118313401937485, -0.3786000907421112, 0.012297412380576134, -0.01151703018695116, 0.6025732159614563, -0.2902413308620453, -0.009881304576992989, 0.003468500915914774, -0.004588279407471418, -0.01515988539904356, -2.1679344177246094, 1.1921308040618896, 0.07950334995985031, 1.2457722425460815, 0.25236380100250244, -0.04302337020635605, -0.381350040435791, -0.29122865200042725, -0.261579692363739, 0.2734920084476471, 1.4013274908065796, -0.6660712361335754, -0.30572956800460815, -0.2609325349330902]} +{"t": 10.6422, "q": [-0.36014971137046814, -0.026924772188067436, 0.016391679644584656, 0.601635754108429, -0.2876982092857361, 0.023089440539479256, -0.3783614933490753, 0.012399678118526936, -0.011155448853969574, 0.6028203368186951, -0.2902163863182068, -0.009895906783640385, 0.003361365757882595, -0.0022848201915621758, -0.016349095851182938, -2.1421802043914795, 1.2017182111740112, 0.09006145596504211, 1.2475578784942627, 0.2430880218744278, -0.05249090492725372, -0.38541269302368164, -0.2924869954586029, -0.2613160312175751, 0.2734440565109253, 1.4003087282180786, -0.6660472750663757, -0.3061490058898926, -0.26105237007141113]} +{"t": 10.6589, "q": [-0.35959577560424805, -0.026796940714120865, 0.016726477071642876, 0.601618766784668, -0.2876981198787689, 0.023060515522956848, -0.37840408086776733, 0.012484898790717125, -0.010860827751457691, 0.6035617589950562, -0.29032835364341736, -0.009960344061255455, 0.0031203117687255144, -0.000620081729721278, -0.016346970573067665, -2.111788272857666, 1.2163029909133911, 0.1043706163764, 1.2484326362609863, 0.2259625643491745, -0.06762698292732239, -0.3915845453739166, -0.2938052713871002, -0.260980486869812, 0.2732643187046051, 1.3987268209457397, -0.6659274697303772, -0.30713173747062683, -0.261208176612854]} +{"t": 10.6758, "q": [-0.35968101024627686, -0.02640492282807827, 0.01698092371225357, 0.6016613245010376, -0.28766483068466187, 0.02303171344101429, -0.37899211049079895, 0.012979181483387947, -0.010365326888859272, 0.6043457984924316, -0.290373831987381, -0.01008299458771944, 0.0024373249616473913, 0.0004363534681033343, -0.01616157591342926, -2.086717367172241, 1.2267652750015259, 0.11471300572156906, 1.2509373426437378, 0.21488913893699646, -0.07766976207494736, -0.39668983221054077, -0.29489582777023315, -0.26071682572364807, 0.27315643429756165, 1.3973127603530884, -0.6658914685249329, -0.3079706132411957, -0.2613040506839752]} +{"t": 10.6925, "q": [-0.3599281311035156, -0.02617482654750347, 0.017101449891924858, 0.6015079617500305, -0.2876189351081848, 0.02295234426856041, -0.3797591030597687, 0.013405287638306618, -0.009682340547442436, 0.604388415813446, -0.29039016366004944, -0.010299736633896828, 0.0023034061305224895, 0.0006736679933965206, -0.0161469504237175, -2.0579192638397217, 1.2416017055511475, 0.1287585198879242, 1.2515126466751099, 0.2001485526561737, -0.09225456416606903, -0.4010041654109955, -0.29507559537887573, -0.26080071926116943, 0.27292874455451965, 1.3969292640686035, -0.6657357215881348, -0.3084380030632019, -0.2613879442214966]} +{"t": 10.7093, "q": [-0.36037981510162354, -0.026251524686813354, 0.017208585515618324, 0.6016868948936462, -0.28761476278305054, 0.022945130243897438, -0.38078176975250244, 0.01398479100316763, -0.00839671865105629, 0.6049509048461914, -0.29089516401290894, -0.011207791976630688, 0.001607027486898005, 0.0005741496570408344, -0.015946922823786736, -2.0319254398345947, 1.2545087337493896, 0.13821406662464142, 1.2542210817337036, 0.1866183578968048, -0.1019977405667305, -0.4048750698566437, -0.29542315006256104, -0.2608606219291687, 0.2726890742778778, 1.3967374563217163, -0.6656877398490906, -0.30860579013824463, -0.26142388582229614]} +{"t": 10.726, "q": [-0.3616240322589874, -0.02617482654750347, 0.017235370352864265, 0.60199373960495, -0.28755202889442444, 0.0227934829890728, -0.3818981647491455, 0.014402374625205994, -0.007887826301157475, 0.604908287525177, -0.29091930389404297, -0.011785891838371754, 0.001232054433785379, 0.00041338743176311255, -0.015961553901433945, -2.0004427433013916, 1.2698605060577393, 0.15306252241134644, 1.2563902139663696, 0.1730162650346756, -0.11594738066196442, -0.40977662801742554, -0.29526734352111816, -0.26099246740341187, 0.2724373936653137, 1.3967974185943604, -0.6656278371810913, -0.30874958634376526, -0.2614838182926178]} +{"t": 10.7427, "q": [-0.3623228669166565, -0.025885073468089104, 0.017195194959640503, 0.602147102355957, -0.2874685227870941, 0.022620227187871933, -0.38329577445983887, 0.01435124222189188, -0.007526245433837175, 0.6053770184516907, -0.2907484471797943, -0.012314448133111, 0.0009642164804972708, -0.0001148301744251512, -0.0157224889844656, -1.9729989767074585, 1.2839778661727905, 0.16441158950328827, 1.2599256038665771, 0.16081631183624268, -0.12844692170619965, -0.41419878602027893, -0.295279324054718, -0.26142388582229614, 0.27230557799339294, 1.3967734575271606, -0.6656158566474915, -0.30882149934768677, -0.26149579882621765]} +{"t": 10.7596, "q": [-0.3641039729118347, -0.025348180904984474, 0.017181802541017532, 0.6023772358894348, -0.28734326362609863, 0.022374818101525307, -0.38559675216674805, 0.014376808889210224, -0.007512853480875492, 0.6065104603767395, -0.29079338908195496, -0.012899798341095448, 0.000897257006727159, -0.0013856139266863465, -0.0158005990087986, -1.9435657262802124, 1.299485445022583, 0.1775343120098114, 1.2618789672851562, 0.1469026356935501, -0.138022318482399, -0.4178779423236847, -0.2951834499835968, -0.2616036534309387, 0.2721497714519501, 1.3967974185943604, -0.6655319929122925, -0.30886945128440857, -0.26159167289733887]} +{"t": 10.7763, "q": [-0.3650754988193512, -0.025101039558649063, 0.017235370352864265, 0.6032038331031799, -0.287072092294693, 0.02192024514079094, -0.38661089539527893, 0.014248977415263653, -0.007499461527913809, 0.6072518825531006, -0.2907722592353821, -0.01335553452372551, 0.0007365542696788907, -0.0028661666437983513, -0.014965140260756016, -1.91575026512146, 1.313387155532837, 0.189015194773674, 1.2648390531539917, 0.13557754456996918, -0.1489039957523346, -0.42100584506988525, -0.2951834499835968, -0.26227477192878723, 0.27198198437690735, 1.39682137966156, -0.6655319929122925, -0.30886945128440857, -0.2616276144981384]} +{"t": 10.793, "q": [-0.36629417538642883, -0.024623801931738853, 0.01732911355793476, 0.6035873293876648, -0.28696778416633606, 0.02173984795808792, -0.3875994384288788, 0.014368286356329918, -0.008222623728215694, 0.6076012849807739, -0.29086747765541077, -0.013738434761762619, 0.0008302975329570472, -0.004076897632330656, -0.014440574683248997, -1.883021354675293, 1.3297696113586426, 0.2027491182088852, 1.2671400308609009, 0.12289822846651077, -0.16099607944488525, -0.4228394329547882, -0.29491978883743286, -0.2631016671657562, 0.27182620763778687, 1.3970370292663574, -0.665567934513092, -0.30886945128440857, -0.26159167289733887]} +{"t": 10.8098, "q": [-0.366396427154541, -0.024052819237113, 0.017288938164711, 0.6036981344223022, -0.28648796677589417, 0.020924463868141174, -0.38775286078453064, 0.014419419690966606, -0.008383326232433319, 0.6079592108726501, -0.2908463180065155, -0.01423755194991827, 0.0009106489014811814, -0.005422727670520544, -0.013721869327127934, -1.854007601737976, 1.3420894145965576, 0.21491311490535736, 1.2712746858596802, 0.11124956607818604, -0.1721653789281845, -0.4243853986263275, -0.29509955644607544, -0.26374882459640503, 0.27165842056274414, 1.3970011472702026, -0.6655439734458923, -0.3088934123516083, -0.2616276144981384]} +{"t": 10.8266, "q": [-0.366583913564682, -0.023780111223459244, 0.0169675312936306, 0.6037663221359253, -0.28650879859924316, 0.020946087315678596, -0.3878210186958313, 0.014274543151259422, -0.008758299984037876, 0.6079592108726501, -0.29099148511886597, -0.014475598931312561, 0.0014061490073800087, -0.006636057980358601, -0.013472896069288254, -1.8215782642364502, 1.3561588525772095, 0.22674153745174408, 1.2735875844955444, 0.09691642969846725, -0.1820283979177475, -0.4253561198711395, -0.29509955644607544, -0.2643600106239319, 0.2715745270252228, 1.396977186203003, -0.6655199527740479, -0.308917373418808, -0.2616276144981384]} +{"t": 10.8433, "q": [-0.36674582958221436, -0.023422183468937874, 0.016579166054725647, 0.6040049195289612, -0.28651297092437744, 0.020953301340341568, -0.3877869248390198, 0.014385330490767956, -0.009093097411096096, 0.6081381440162659, -0.2910163402557373, -0.014576769433915615, 0.0017409464344382286, -0.007819277234375477, -0.0135361822322011, -1.7932475805282593, 1.3683828115463257, 0.23868981003761292, 1.2792800664901733, 0.08765262365341187, -0.19094465672969818, -0.4273574650287628, -0.29512351751327515, -0.2649352550506592, 0.2714906334877014, 1.3969411849975586, -0.6655199527740479, -0.30890539288520813, -0.26159167289733887]} +{"t": 10.86, "q": [-0.36683106422424316, -0.023311395198106766, 0.01598992384970188, 0.6040134429931641, -0.2865212559700012, 0.020938802510499954, -0.3875824213027954, 0.014359764754772186, -0.009722515940666199, 0.6079165935516357, -0.2909955680370331, -0.014584070071578026, 0.0021828790195286274, -0.008767591789364815, -0.013934445567429066, -1.7605905532836914, 1.381074070930481, 0.25223198533058167, 1.2815570831298828, 0.07445798814296722, -0.20200610160827637, -0.43026962876319885, -0.2951355278491974, -0.265582412481308, 0.2713228464126587, 1.3969532251358032, -0.6655439734458923, -0.308917373418808, -0.2616036534309387]} +{"t": 10.8767, "q": [-0.3666861951351166, -0.02333696186542511, 0.015748869627714157, 0.604158341884613, -0.2865462005138397, 0.02095317654311657, -0.38728412985801697, 0.014419419690966606, -0.010110881179571152, 0.6082233786582947, -0.29089152812957764, -0.01482320111244917, 0.00254446011967957, -0.010034102015197277, -0.013956247828900814, -1.733518123626709, 1.391512393951416, 0.2636050283908844, 1.285727620124817, 0.0638279840350151, -0.21014338731765747, -0.43393680453300476, -0.2953632175922394, -0.2662295699119568, 0.2712629437446594, 1.396881341934204, -0.6654840111732483, -0.3089413344860077, -0.26159167289733887]} +{"t": 10.8935, "q": [-0.3668566346168518, -0.023447750136256218, 0.014891788363456726, 0.6044566035270691, -0.28655871748924255, 0.020974816754460335, -0.38683247566223145, 0.014402374625205994, -0.011061705648899078, 0.6079847812652588, -0.2908749282360077, -0.01482327189296484, 0.0028926494996994734, -0.010777708142995834, -0.014242889359593391, -1.7031381130218506, 1.4030652046203613, 0.274618536233902, 1.2881484031677246, 0.05075319483876228, -0.2193233072757721, -0.4360939860343933, -0.29542315006256104, -0.2670444846153259, 0.2711910307407379, 1.3968932628631592, -0.6654840111732483, -0.30895331501960754, -0.26159167289733887]} +{"t": 10.9102, "q": [-0.3665753901004791, -0.023669324815273285, 0.014409679919481277, 0.6044736504554749, -0.2865670621395111, 0.020989244803786278, -0.3860740065574646, 0.014444985426962376, -0.011664341203868389, 0.6078057885169983, -0.29087910056114197, -0.014787085354328156, 0.003133703488856554, -0.0112935621291399, -0.014353174716234207, -1.675742268562317, 1.4123049974441528, 0.2868663966655731, 1.2912044525146484, 0.04171708971261978, -0.22672955691814423, -0.43900614976882935, -0.2956268787384033, -0.2679672837257385, 0.271071195602417, 1.3968573808670044, -0.6654840111732483, -0.30895331501960754, -0.26159167289733887]} +{"t": 10.9269, "q": [-0.36670321226119995, -0.024103952571749687, 0.013673125766217709, 0.604610025882721, -0.28657957911491394, 0.021010903641581535, -0.385716050863266, 0.014581339433789253, -0.012481247074902058, 0.6075586676597595, -0.2908957302570343, -0.014758075587451458, 0.003254230599850416, -0.012105404399335384, -0.014635957777500153, -1.6440080404281616, 1.4205021858215332, 0.29929405450820923, 1.2935892343521118, 0.02719220705330372, -0.23453128337860107, -0.44170260429382324, -0.29561489820480347, -0.2687702178955078, 0.2708434760570526, 1.3968093395233154, -0.6654600501060486, -0.30895331501960754, -0.2615317404270172]} +{"t": 10.9437, "q": [-0.3665924370288849, -0.024521535262465477, 0.01352581474930048, 0.6047463417053223, -0.2866046130657196, 0.021054185926914215, -0.3852899670600891, 0.014751781709492207, -0.01258838176727295, 0.6075842380523682, -0.290912389755249, -0.014714605174958706, 0.003964001312851906, -0.012401435524225235, -0.014818068593740463, -1.6163244247436523, 1.4263265132904053, 0.3102116584777832, 1.2962497472763062, 0.016933709383010864, -0.24356739223003387, -0.44379982352256775, -0.2961901128292084, -0.26953721046447754, 0.2707236409187317, 1.3967734575271606, -0.665424108505249, -0.30897730588912964, -0.2615077793598175]} +{"t": 10.9604, "q": [-0.36660948395729065, -0.02520330436527729, 0.013097274117171764, 0.6048827171325684, -0.286625474691391, 0.021090272814035416, -0.3850172460079193, 0.014794392511248589, -0.01317762490361929, 0.6074478626251221, -0.2909623384475708, -0.01458423025906086, 0.004071136470884085, -0.012780982069671154, -0.015015583485364914, -1.5857646465301514, 1.4327261447906494, 0.32275915145874023, 1.2967650890350342, 0.00436225812882185, -0.2500508725643158, -0.445010244846344, -0.2971248924732208, -0.2697768807411194, 0.27050793170928955, 1.3966655731201172, -0.6654121279716492, -0.3090132474899292, -0.2614598274230957]} +{"t": 10.9771, "q": [-0.3661748468875885, -0.025544188916683197, 0.01311066560447216, 0.6049679517745972, -0.2866339087486267, 0.021133625879883766, -0.38449740409851074, 0.015033011324703693, -0.013097274117171764, 0.6077290773391724, -0.29104140400886536, -0.014374145306646824, 0.004553244449198246, -0.01290244609117508, -0.015084633603692055, -1.5568946599960327, 1.4372202157974243, 0.33324533700942993, 1.2984788417816162, -0.007933557033538818, -0.2565702795982361, -0.4465082585811615, -0.2978079915046692, -0.27020832896232605, 0.27028024196624756, 1.3963899612426758, -0.6652443408966064, -0.3090851604938507, -0.261435866355896]} +{"t": 10.9939, "q": [-0.3664134740829468, -0.02538226917386055, 0.012668733485043049, 0.6055303812026978, -0.28669649362564087, 0.021241867914795876, -0.3841906189918518, 0.01477734837681055, -0.01344546303153038, 0.6076694130897522, -0.2911454439163208, -0.014149492606520653, 0.0047541228123009205, -0.01306195929646492, -0.015236749313771725, -1.5267902612686157, 1.440443992614746, 0.34560108184814453, 1.298179268836975, -0.020600883290171623, -0.2630297839641571, -0.44762280583381653, -0.29809561371803284, -0.2704240381717682, 0.26993268728256226, 1.396366000175476, -0.6653042435646057, -0.30912110209465027, -0.2613280117511749]} +{"t": 11.0106, "q": [-0.36601293087005615, -0.025424880906939507, 0.012722301296889782, 0.6056156158447266, -0.2867299020290375, 0.02131405845284462, -0.3836366832256317, 0.014385330490767956, -0.01319101732224226, 0.6077120304107666, -0.2911331057548523, -0.013997675850987434, 0.005276407115161419, -0.013099920935928822, -0.015261371619999409, -1.49956214427948, 1.442325472831726, 0.35528433322906494, 1.2986825704574585, -0.030991205945611, -0.2687462568283081, -0.45126599073410034, -0.2983592748641968, -0.2706157863140106, 0.26942935585975647, 1.3961981534957886, -0.6652683019638062, -0.3092169761657715, -0.2613040506839752]} +{"t": 11.0274, "q": [-0.36624303460121155, -0.02537374757230282, 0.012548206374049187, 0.6062462329864502, -0.28690510988235474, 0.021602662280201912, -0.3834151029586792, 0.01389957033097744, -0.013432071544229984, 0.6075671911239624, -0.29119154810905457, -0.013621330261230469, 0.005303190555423498, -0.013244250789284706, -0.015403639525175095, -1.4706202745437622, 1.443907380104065, 0.36828723549842834, 1.297592043876648, -0.04225637763738632, -0.273384153842926, -0.4543219804763794, -0.29841920733451843, -0.27068769931793213, 0.26921364665031433, 1.3961862325668335, -0.6652922630310059, -0.3092409372329712, -0.2611123025417328]} +{"t": 11.0441, "q": [-0.3658169209957123, -0.025467490777373314, 0.012708908878266811, 0.6065104603767395, -0.28697603940963745, 0.021725349128246307, -0.3828185498714447, 0.013550163246691227, -0.01311066560447216, 0.6075330972671509, -0.29106730222702026, -0.013202385045588017, 0.00546389352530241, -0.013282299041748047, -0.01548672467470169, -1.4390058517456055, 1.4442429542541504, 0.37864160537719727, 1.297532081604004, -0.05471997335553169, -0.2808503210544586, -0.4587920904159546, -0.2984791100025177, -0.27083149552345276, 0.2689499855041504, 1.3961862325668335, -0.6652563214302063, -0.3093128502368927, -0.2610883414745331]} +{"t": 11.061, "q": [-0.3658424913883209, -0.02568906545639038, 0.012695517390966415, 0.6071751713752747, -0.28715965151786804, 0.02204284258186817, -0.38246914744377136, 0.013038836419582367, -0.013204408809542656, 0.6076268553733826, -0.2910430133342743, -0.01240693498402834, 0.005155880004167557, -0.013312682509422302, -0.015516186133027077, -1.408266305923462, 1.4440631866455078, 0.39112916588783264, 1.2967051267623901, -0.06727944314479828, -0.28528448939323425, -0.46124887466430664, -0.29846712946891785, -0.2708195149898529, 0.26873427629470825, 1.3961262702941895, -0.6652683019638062, -0.3094087243080139, -0.2608846127986908]} +{"t": 11.0779, "q": [-0.365578293800354, -0.025697587057948112, 0.013070490211248398, 0.6073881983757019, -0.2873973548412323, 0.022410763427615166, -0.38210269808769226, 0.013021792285144329, -0.012802652083337307, 0.6073967218399048, -0.29108062386512756, -0.012168128043413162, 0.005263015162199736, -0.013320348225533962, -0.015569821000099182, -1.3774428367614746, 1.443284273147583, 0.40178313851356506, 1.296693205833435, -0.07741809636354446, -0.28813672065734863, -0.4639093577861786, -0.2984071969985962, -0.2708914279937744, 0.26853054761886597, 1.3961862325668335, -0.6652083992958069, -0.3094566762447357, -0.2607647478580475]} +{"t": 11.0946, "q": [-0.36591920256614685, -0.025646455585956573, 0.01311066560447216, 0.6079506874084473, -0.28780606389045715, 0.023045573383569717, -0.382051557302475, 0.012945093214511871, -0.012668733485043049, 0.6071325540542603, -0.291151762008667, -0.011726830154657364, 0.005021960940212011, -0.013267290778458118, -0.0155937559902668, -1.3495076894760132, 1.4420738220214844, 0.4134317934513092, 1.2957823276519775, -0.08869525045156479, -0.2883164882659912, -0.46482014656066895, -0.2983832359313965, -0.2709153890609741, 0.2683987021446228, 1.396294116973877, -0.6652083992958069, -0.3094806373119354, -0.26057299971580505]} +{"t": 11.1113, "q": [-0.3656805753707886, -0.025654977187514305, 0.013432071544229984, 0.6080273985862732, -0.2878352999687195, 0.02309608645737171, -0.381864070892334, 0.01296213734894991, -0.012467854656279087, 0.6066382527351379, -0.2910939157009125, -0.01153923012316227, 0.0049148257821798325, -0.013282636180520058, -0.01571076549589634, -1.3207454681396484, 1.4400125741958618, 0.4230431616306305, 1.2954827547073364, -0.10023605823516846, -0.2898145318031311, -0.46664175391197205, -0.29837125539779663, -0.27103522419929504, 0.26801520586013794, 1.396246075630188, -0.6651484966278076, -0.3095405399799347, -0.2605849802494049]} +{"t": 11.1283, "q": [-0.3660470247268677, -0.02562088891863823, 0.013766868971288204, 0.6081892848014832, -0.2879519462585449, 0.02322579175233841, -0.3820345103740692, 0.012911004945635796, -0.012387503869831562, 0.6065871119499207, -0.2910899817943573, -0.011387436650693417, 0.004740730859339237, -0.013305427506566048, -0.01573529653251171, -1.2931578159332275, 1.4374239444732666, 0.4345959424972534, 1.2943203449249268, -0.11020693182945251, -0.28975459933280945, -0.46736082434654236, -0.2983472943305969, -0.271071195602417, 0.267667680978775, 1.3965097665786743, -0.6651844382286072, -0.3095405399799347, -0.2603812515735626]} +{"t": 11.145, "q": [-0.365953266620636, -0.02562941052019596, 0.013994530774652958, 0.6081892848014832, -0.28796449303627014, 0.023261895403265953, -0.3818981647491455, 0.012953615747392178, -0.0121866250410676, 0.6057775020599365, -0.2909491956233978, -0.011156887747347355, 0.004405933897942305, -0.013214553706347942, -0.015832021832466125, -1.262873649597168, 1.4332294464111328, 0.44647231698036194, 1.2929900884628296, -0.12303005903959274, -0.29162412881851196, -0.4697696566581726, -0.298311322927475, -0.2712269723415375, 0.2669486105442047, 1.3964738845825195, -0.6651244759559631, -0.3095884919166565, -0.2604052424430847]} +{"t": 11.1617, "q": [-0.3661237359046936, -0.02562941052019596, 0.014222193509340286, 0.6084108352661133, -0.2879686653614044, 0.023269128054380417, -0.38200893998146057, 0.012953615747392178, -0.012039314024150372, 0.6057434678077698, -0.2907007038593292, -0.01079682819545269, 0.004392541944980621, -0.013366312719881535, -0.01587214507162571, -1.2352739572525024, 1.4276208877563477, 0.4573659598827362, 1.2926784753799438, -0.13298894464969635, -0.29169604182243347, -0.4712676703929901, -0.2982753813266754, -0.27140673995018005, 0.2666250467300415, 1.396653652191162, -0.6651244759559631, -0.30960047245025635, -0.26032134890556335]} +{"t": 11.1786, "q": [-0.36625155806541443, -0.025595322251319885, 0.014168625697493553, 0.6084108352661133, -0.28795626759529114, 0.02329089306294918, -0.38206008076667786, 0.012996225617825985, -0.012052706442773342, 0.6051042675971985, -0.2904977798461914, -0.010487089864909649, 0.003923825453966856, -0.013480224646627903, -0.015965577214956284, -1.2076983451843262, 1.4224915504455566, 0.4665219187736511, 1.2907609939575195, -0.14629143476486206, -0.29337382316589355, -0.474934846162796, -0.2982753813266754, -0.2715625464916229, 0.2660977244377136, 1.3966056108474731, -0.6651124954223633, -0.3096124529838562, -0.2603093683719635]} +{"t": 11.1953, "q": [-0.3663197457790375, -0.025552712380886078, 0.014182017184793949, 0.6085386872291565, -0.2879562973976135, 0.02330535650253296, -0.3819577991962433, 0.013013270683586597, -0.011999138630926609, 0.6050275564193726, -0.29035285115242004, -0.010263806208968163, 0.004030960611999035, -0.013761182315647602, -0.016177212819457054, -1.1787563562393188, 1.4150134325027466, 0.47867393493652344, 1.288124442100525, -0.15567508339881897, -0.2938172519207001, -0.47749948501586914, -0.29819148778915405, -0.2719101011753082, 0.2657501995563507, 1.396881341934204, -0.6651244759559631, -0.30960047245025635, -0.260237455368042]} +{"t": 11.2121, "q": [-0.3661322295665741, -0.025552712380886078, 0.014182017184793949, 0.6085642576217651, -0.28794798254966736, 0.023305391892790794, -0.3818129301071167, 0.013107013888657093, -0.011865219101309776, 0.6046525835990906, -0.29026588797569275, -0.010126924142241478, 0.0042854067869484425, -0.014049687422811985, -0.016364555805921555, -1.1503658294677734, 1.4056657552719116, 0.48733851313591003, 1.2864586114883423, -0.16938504576683044, -0.29701703786849976, -0.4806273579597473, -0.2980476915836334, -0.27235350012779236, 0.2652228772640228, 1.3969532251358032, -0.6650046706199646, -0.30960047245025635, -0.26022547483444214]} +{"t": 11.2288, "q": [-0.3664901852607727, -0.025535667315125465, 0.013833828270435333, 0.6089562773704529, -0.2879272997379303, 0.023341655731201172, -0.3817788362503052, 0.013004748150706291, -0.011744692921638489, 0.6045588850975037, -0.29013732075691223, -0.010077009908854961, 0.00416487967595458, -0.014391511678695679, -0.016655080020427704, -1.1202374696731567, 1.3952394723892212, 0.4977288544178009, 1.2823361158370972, -0.18024274706840515, -0.2985510230064392, -0.4825088679790497, -0.29811957478523254, -0.2724613547325134, 0.2649592459201813, 1.3969532251358032, -0.6650885343551636, -0.30962443351745605, -0.2601655423641205]} +{"t": 11.2455, "q": [-0.36643052101135254, -0.025535667315125465, 0.013699909672141075, 0.6089988946914673, -0.28791487216949463, 0.02334892377257347, -0.3814123868942261, 0.013055880554020405, -0.011624165810644627, 0.6040731072425842, -0.2900669276714325, -0.009954509325325489, 0.0045264605432748795, -0.014550970867276192, -0.016749130561947823, -1.092889428138733, 1.3833870887756348, 0.5063934326171875, 1.2796037197113037, -0.19008179008960724, -0.3045191764831543, -0.4843065142631531, -0.29811957478523254, -0.2726890742778778, 0.26458773016929626, 1.3968573808670044, -0.6650286316871643, -0.30962443351745605, -0.2602134943008423]} +{"t": 11.2622, "q": [-0.36675435304641724, -0.025493057444691658, 0.013150841929018497, 0.6094591021537781, -0.2879190444946289, 0.023356154561042786, -0.3813101351261139, 0.013021792285144329, -0.012052706442773342, 0.6040645837783813, -0.29005444049835205, -0.009976270608603954, 0.004620204214006662, -0.01477115135639906, -0.01686321757733822, -1.0636719465255737, 1.3704081773757935, 0.5152258276939392, 1.2753732204437256, -0.19996878504753113, -0.30685609579086304, -0.48461809754371643, -0.29811957478523254, -0.2727130353450775, 0.26439598202705383, 1.3969411849975586, -0.6650166511535645, -0.3096364140510559, -0.26015356183052063]} +{"t": 11.279, "q": [-0.3665412962436676, -0.025527145713567734, 0.012990138493478298, 0.6095017194747925, -0.28791069984436035, 0.0233417097479105, -0.38086697459220886, 0.013107013888657093, -0.012079490348696709, 0.6036896109580994, -0.28995072841644287, -0.009969579055905342, 0.005048744846135378, -0.014847010374069214, -0.016863878816366196, -1.0367313623428345, 1.3556915521621704, 0.5240581631660461, 1.2694649696350098, -0.21172530949115753, -0.311230331659317, -0.4856007993221283, -0.29809561371803284, -0.27283287048339844, 0.2641562819480896, 1.3969172239303589, -0.6649926900863647, -0.30962443351745605, -0.26017752289772034]} +{"t": 11.2957, "q": [-0.3671804666519165, -0.025484533980488777, 0.012427679263055325, 0.6103879809379578, -0.287914901971817, 0.023363403975963593, -0.3808073401451111, 0.013072924688458443, -0.012682124972343445, 0.6037577986717224, -0.2899465560913086, -0.009976827539503574, 0.00512909609824419, -0.014930477365851402, -0.016879234462976456, -1.008232831954956, 1.3395487070083618, 0.5315243601799011, 1.2633531093597412, -0.2217680811882019, -0.31216511130332947, -0.48540905117988586, -0.298227459192276, -0.27285683155059814, 0.2640604078769684, 1.3969532251358032, -0.665052592754364, -0.30964842438697815, -0.2598899006843567]} +{"t": 11.3124, "q": [-0.36693331599235535, -0.025544188916683197, 0.012374111451208591, 0.6104135513305664, -0.2879066467285156, 0.023377902805805206, -0.3805346190929413, 0.013158146291971207, -0.012722301296889782, 0.6037066578865051, -0.2899216115474701, -0.010005881078541279, 0.00542371766641736, -0.014922883361577988, -0.016874292865395546, -0.9798542261123657, 1.3219798803329468, 0.5396137237548828, 1.2565699815750122, -0.23042069375514984, -0.3173303008079529, -0.4857805669307709, -0.298311322927475, -0.272868812084198, 0.2637368440628052, 1.3968093395233154, -0.6649567484855652, -0.309660404920578, -0.2599618136882782]} +{"t": 11.3291, "q": [-0.36707818508148193, -0.025552712380886078, 0.012320543639361858, 0.6106947660446167, -0.2879066467285156, 0.023377902805805206, -0.3805346190929413, 0.013141102157533169, -0.012802652083337307, 0.6039878726005554, -0.28990083932876587, -0.010027669370174408, 0.005182663444429636, -0.01493046060204506, -0.016869481652975082, -0.9538365006446838, 1.3047106266021729, 0.5471158623695374, 1.2531545162200928, -0.23839020729064941, -0.3201465904712677, -0.48540905117988586, -0.2985510230064392, -0.272868812084198, 0.26366493105888367, 1.3967374563217163, -0.6650166511535645, -0.30969634652137756, -0.25985395908355713]} +{"t": 11.3459, "q": [-0.3666691482067108, -0.025578279048204422, 0.012481247074902058, 0.6106351613998413, -0.2879066467285156, 0.023377902805805206, -0.38023635745048523, 0.01320927869528532, -0.012574990279972553, 0.6036043763160706, -0.28990501165390015, -0.010020420886576176, 0.005289798602461815, -0.014702738262712955, -0.016779715195298195, -0.9237440824508667, 1.284385323524475, 0.5539588332176208, 1.2452329397201538, -0.25070998072624207, -0.3272172808647156, -0.48480984568595886, -0.2985749840736389, -0.27306056022644043, 0.2633054256439209, 1.396761417388916, -0.6649926900863647, -0.3096843659877777, -0.2598299980163574]} +{"t": 11.3626, "q": [-0.3665924370288849, -0.025782808661460876, 0.012682124972343445, 0.6108652353286743, -0.287927508354187, 0.023413971066474915, -0.38022783398628235, 0.013089969754219055, -0.012548206374049187, 0.6043713688850403, -0.2899174690246582, -0.010013129562139511, 0.005222839303314686, -0.01448240876197815, -0.016577843576669693, -0.9006025195121765, 1.2651866674423218, 0.5589922070503235, 1.241481900215149, -0.25727733969688416, -0.32954221963882446, -0.48473793268203735, -0.2985989451408386, -0.27327629923820496, 0.2631376385688782, 1.396761417388916, -0.6649567484855652, -0.3096843659877777, -0.2597341239452362]} +{"t": 11.3793, "q": [-0.3664901852607727, -0.025833941996097565, 0.012789260596036911, 0.6107800006866455, -0.2879233956336975, 0.023435700684785843, -0.38018521666526794, 0.013166667893528938, -0.012494638562202454, 0.604158341884613, -0.2898925244808197, -0.010042183101177216, 0.004566636402159929, -0.014285060577094555, -0.016507847234606743, -0.8700907230377197, 1.2421410083770752, 0.5663025975227356, 1.2336920499801636, -0.2658580541610718, -0.3323345482349396, -0.48333579301834106, -0.29868283867836, -0.27330026030540466, 0.2628380358219147, 1.3967015743255615, -0.6649327278137207, -0.3097083270549774, -0.25962626934051514]} +{"t": 11.3961, "q": [-0.3664816617965698, -0.025893596932291985, 0.013124058023095131, 0.6109334230422974, -0.28795671463012695, 0.023464486002922058, -0.38022783398628235, 0.013166667893528938, -0.012360719963908195, 0.6048145294189453, -0.28987592458724976, -0.010042271576821804, 0.004566636402159929, -0.013950957916676998, -0.01628098264336586, -0.8413764834403992, 1.2173576354980469, 0.5708206295967102, 1.2283830642700195, -0.2727130353450775, -0.33336520195007324, -0.48164600133895874, -0.29867085814476013, -0.27373167872428894, 0.2624785006046295, 1.39682137966156, -0.6649807095527649, -0.3097083270549774, -0.2594345211982727]} +{"t": 11.4128, "q": [-0.36624303460121155, -0.02598734013736248, 0.013324935920536518, 0.6109334230422974, -0.28796088695526123, 0.02347169816493988, -0.38014259934425354, 0.013192234560847282, -0.012454463168978691, 0.6047719120979309, -0.28988420963287354, -0.010056679137051105, 0.004446109291166067, -0.013829555362462997, -0.01625080592930317, -0.8156343698501587, 1.191663384437561, 0.5744638442993164, 1.2221752405166626, -0.2802750766277313, -0.3368166387081146, -0.47992029786109924, -0.2986588776111603, -0.27433091402053833, 0.2620830237865448, 1.3969411849975586, -0.6649447083473206, -0.30969634652137756, -0.25935062766075134]} +{"t": 11.4295, "q": [-0.36614927649497986, -0.02609812654554844, 0.013659733347594738, 0.6109760403633118, -0.2879817485809326, 0.02350778505206108, -0.3803045153617859, 0.013115535490214825, -0.012467854656279087, 0.6054536700248718, -0.28989672660827637, -0.010020465590059757, 0.004419325385242701, -0.013897724449634552, -0.01618802733719349, -0.788933515548706, 1.1628773212432861, 0.5760936737060547, 1.2198742628097534, -0.285643994808197, -0.34010031819343567, -0.4782305061817169, -0.29869481921195984, -0.2749421000480652, 0.26177144050598145, 1.3968932628631592, -0.664968729019165, -0.30969634652137756, -0.2592427730560303]} +{"t": 11.4464, "q": [-0.36615779995918274, -0.026140738278627396, 0.01379365287721157, 0.6110016107559204, -0.288002610206604, 0.02354385331273079, -0.3803045153617859, 0.013098491355776787, -0.012427679263055325, 0.6053088307380676, -0.2898842394351959, -0.010027775540947914, 0.004017568659037352, -0.013882642611861229, -0.016246352344751358, -0.7638266086578369, 1.1347143650054932, 0.577100396156311, 1.2163629531860352, -0.2911088168621063, -0.347135066986084, -0.4752824008464813, -0.29879069328308105, -0.275589257478714, 0.2613399922847748, 1.3968932628631592, -0.6649567484855652, -0.3097083270549774, -0.25912290811538696]} +{"t": 11.4631, "q": [-0.3660725951194763, -0.02634526789188385, 0.014235584996640682, 0.61104416847229, -0.2880234718322754, 0.02357994019985199, -0.3805601894855499, 0.013098491355776787, -0.01252142246812582, 0.605888307094574, -0.28990083932876587, -0.010027669370174408, 0.0037497307639569044, -0.013897622935473919, -0.01611984148621559, -0.7411763668060303, 1.1055448055267334, 0.5774958729743958, 1.216470718383789, -0.2941887676715851, -0.35194075107574463, -0.4728855490684509, -0.2989464998245239, -0.2760566174983978, 0.2610763609409332, 1.3968333005905151, -0.6649807095527649, -0.30969634652137756, -0.2590630054473877]} +{"t": 11.4798, "q": [-0.3662686049938202, -0.02634526789188385, 0.014423071406781673, 0.61104416847229, -0.2880401611328125, 0.02360881306231022, -0.3810288906097412, 0.013115535490214825, -0.012481247074902058, 0.606033205986023, -0.2899133265018463, -0.01000592578202486, 0.0035354604478925467, -0.013897579163312912, -0.016090618446469307, -0.7173157930374146, 1.0739424228668213, 0.5776036977767944, 1.2154161930084229, -0.2953152656555176, -0.35560792684555054, -0.4667496085166931, -0.2989584803581238, -0.2761405110359192, 0.26066887378692627, 1.396881341934204, -0.6649327278137207, -0.30969634652137756, -0.2590150535106659]} +{"t": 11.4966, "q": [-0.3663026988506317, -0.026311179623007774, 0.01470430102199316, 0.6110526919364929, -0.2880735397338867, 0.023666542023420334, -0.3812504708766937, 0.01318371295928955, -0.012427679263055325, 0.6062291860580444, -0.28990504145622253, -0.010005969554185867, 0.003173879347741604, -0.013836797326803207, -0.016021955758333206, -0.6938866376876831, 1.0424119234085083, 0.5771722793579102, 1.2157517671585083, -0.29726871848106384, -0.35862794518470764, -0.4604698717594147, -0.2989345192909241, -0.276416152715683, 0.26032134890556335, 1.3968573808670044, -0.6649807095527649, -0.30974429845809937, -0.2588592767715454]} +{"t": 11.5133, "q": [-0.3661833703517914, -0.026311179623007774, 0.014958747662603855, 0.6109930872917175, -0.28809019923210144, 0.023680932819843292, -0.3812589943408966, 0.013354155234992504, -0.012320543639361858, 0.6061695218086243, -0.28990089893341064, -0.009998765774071217, 0.0028122980147600174, -0.013745719566941261, -0.01598227582871914, -0.6740167737007141, 1.0113247632980347, 0.5767887830734253, 1.21600341796875, -0.29904237389564514, -0.3642365634441376, -0.4540702998638153, -0.298826664686203, -0.2770872712135315, 0.2598419785499573, 1.3971809148788452, -0.6650046706199646, -0.30969634652137756, -0.2587634027004242]} +{"t": 11.5301, "q": [-0.3662686049938202, -0.02628561295568943, 0.015467639081180096, 0.6110016107559204, -0.288161039352417, 0.023774676024913788, -0.38182997703552246, 0.01341380923986435, -0.012200016528367996, 0.6066723465919495, -0.2899174988269806, -0.009998677298426628, 0.0021159194875508547, -0.013745587319135666, -0.015894608572125435, -0.6527208089828491, 0.9777210354804993, 0.5748952627182007, 1.217201828956604, -0.2998333275318146, -0.3677239716053009, -0.4490249454975128, -0.29891055822372437, -0.2775546610355377, 0.25932663679122925, 1.3970850706100464, -0.664908766746521, -0.30969634652137756, -0.2586195766925812]} +{"t": 11.5468, "q": [-0.3663026988506317, -0.026260048151016235, 0.01565512642264366, 0.6109760403633118, -0.2881985008716583, 0.02379622869193554, -0.3820004165172577, 0.013558685779571533, -0.01193217933177948, 0.6065189838409424, -0.2898925542831421, -0.010027731768786907, 0.0020757438614964485, -0.013684878125786781, -0.015874650329351425, -0.6343609690666199, 0.9460467100143433, 0.5730617046356201, 1.2177411317825317, -0.29994118213653564, -0.3730928897857666, -0.43914994597435, -0.29881468415260315, -0.2784534692764282, 0.25877538323402405, 1.397336721420288, -0.6649327278137207, -0.30969634652137756, -0.2584158480167389]} +{"t": 11.5636, "q": [-0.36633676290512085, -0.026268569752573967, 0.01598992384970188, 0.6109845638275146, -0.28828194737434387, 0.023940538987517357, -0.3822731375694275, 0.013584252446889877, -0.011744692921638489, 0.6068342924118042, -0.28990504145622253, -0.010005969554185867, 0.0017141626449301839, -0.013533034361898899, -0.015776049345731735, -0.6151742339134216, 0.9112924933433533, 0.5704251527786255, 1.2195746898651123, -0.29976141452789307, -0.3741115629673004, -0.43142011761665344, -0.2988506257534027, -0.2793762683868408, 0.2583679258823395, 1.3973606824874878, -0.6649327278137207, -0.30967238545417786, -0.25817617774009705]} +{"t": 11.5804, "q": [-0.36628565192222595, -0.026251524686813354, 0.01612384244799614, 0.6109163761138916, -0.28834035992622375, 0.024041566997766495, -0.3823668658733368, 0.013609818182885647, -0.01158398948609829, 0.6067831516265869, -0.2898883819580078, -0.010034979321062565, 0.0018480815924704075, -0.013396402820944786, -0.01570678874850273, -0.5983483791351318, 0.877245306968689, 0.5681121945381165, 1.2208449840545654, -0.2996775507926941, -0.3752860128879547, -0.42065829038619995, -0.298826664686203, -0.28053873777389526, 0.25792449712753296, 1.3975164890289307, -0.6648967862129211, -0.30964842438697815, -0.2577447295188904]} +{"t": 11.5972, "q": [-0.36638790369033813, -0.02628561295568943, 0.016364896669983864, 0.6108652353286743, -0.28840285539627075, 0.024120846763253212, -0.38275036215782166, 0.013584252446889877, -0.011450070887804031, 0.6071751713752747, -0.28990498185157776, -0.010034873150289059, 0.001607027486898005, -0.01330526638776064, -0.01562814600765705, -0.5805158615112305, 0.8412327170372009, 0.5648884177207947, 1.224452257156372, -0.29916220903396606, -0.3758133053779602, -0.4106874167919159, -0.29897046089172363, -0.2812577784061432, 0.2574690878391266, 1.3974446058273315, -0.6648368835449219, -0.30964842438697815, -0.2571694850921631]} +{"t": 11.6139, "q": [-0.36638790369033813, -0.02628561295568943, 0.016391679644584656, 0.6108055710792542, -0.28845712542533875, 0.024214662611484528, -0.38289523124694824, 0.013558685779571533, -0.011369719170033932, 0.6070899367332458, -0.289896696805954, -0.010034935548901558, 0.0017811221769079566, -0.013183832168579102, -0.015578542836010456, -0.5631986856460571, 0.8047287464141846, 0.5625275373458862, 1.2282991409301758, -0.2989584803581238, -0.37722745537757874, -0.39756467938423157, -0.2989345192909241, -0.2820487320423126, 0.25702568888664246, 1.397504448890686, -0.6648488640785217, -0.30964842438697815, -0.255719393491745]} +{"t": 11.6307, "q": [-0.36650723218917847, -0.026319703087210655, 0.01648542284965515, 0.6107970476150513, -0.28851136565208435, 0.024308476597070694, -0.38324466347694397, 0.013516074977815151, -0.011275975964963436, 0.6074990034103394, -0.28990498185157776, -0.010034873150289059, 0.0017007706919685006, -0.013085073791444302, -0.015475562773644924, -0.5465406179428101, 0.7686561942100525, 0.5595434904098511, 1.235154151916504, -0.2974364757537842, -0.37737128138542175, -0.3861197531223297, -0.29899442195892334, -0.28246819972991943, 0.2568698823451996, 1.3974086046218872, -0.6647769808769226, -0.30964842438697815, -0.2538977861404419]} +{"t": 11.6474, "q": [-0.3668054938316345, -0.026328224688768387, 0.016498815268278122, 0.6107373833656311, -0.28854891657829285, 0.02437341772019863, -0.3836537003517151, 0.013524597510695457, -0.011222408153116703, 0.6074649095535278, -0.2898883819580078, -0.010034979321062565, 0.0016338112764060497, -0.013085102662444115, -0.01549504417926073, -0.530421793460846, 0.7352442145347595, 0.5536232590675354, 1.241050362586975, -0.2936135232448578, -0.37904906272888184, -0.370516300201416, -0.29901841282844543, -0.282731831073761, 0.25637853145599365, 1.3974565267562866, -0.6646690964698792, -0.3096364140510559, -0.25128522515296936]} +{"t": 11.6642, "q": [-0.3669929802417755, -0.026328224688768387, 0.016766652464866638, 0.6106947660446167, -0.28858229517936707, 0.024431144818663597, -0.38398608565330505, 0.013516074977815151, -0.011048314161598682, 0.607822835445404, -0.28988006711006165, -0.010049475356936455, 0.0015936355339363217, -0.012993979267776012, -0.015426211059093475, -0.5126132369041443, 0.7005618810653687, 0.5466843843460083, 1.2483967542648315, -0.29152825474739075, -0.3797561228275299, -0.35648277401924133, -0.299054354429245, -0.28311532735824585, 0.25582724809646606, 1.3975404500961304, -0.6645852327346802, -0.3096124529838562, -0.24832512438297272]} +{"t": 11.681, "q": [-0.3669162690639496, -0.02639640122652054, 0.016860397532582283, 0.6106266379356384, -0.28862401843070984, 0.024503301829099655, -0.3841480016708374, 0.013490508310496807, -0.01091439463198185, 0.6078824996948242, -0.2898344397544861, -0.010042492300271988, 0.0014731085393577814, -0.012811805121600628, -0.015337248332798481, -0.49400174617767334, 0.6639739871025085, 0.5401409864425659, 1.2555392980575562, -0.28627917170524597, -0.3811822533607483, -0.3386382460594177, -0.29904237389564514, -0.2837744653224945, 0.2549164593219757, 1.3976483345031738, -0.6643335223197937, -0.3096124529838562, -0.24362730979919434]} +{"t": 11.6977, "q": [-0.36687368154525757, -0.026447534561157227, 0.017208585515618324, 0.610515832901001, -0.28868651390075684, 0.024582616984844208, -0.3843440115451813, 0.013447898440063, -0.010646557435393333, 0.6083256602287292, -0.2898552417755127, -0.010006234981119633, 0.001566851744428277, -0.01262954343110323, -0.015189840458333492, -0.4770081043243408, 0.628524661064148, 0.5349279046058655, 1.2641080617904663, -0.2823243737220764, -0.3802834451198578, -0.3231905996799469, -0.29904237389564514, -0.284673273563385, 0.2542932629585266, 1.3978400230407715, -0.6642616391181946, -0.3096124529838562, -0.23952871561050415]} +{"t": 11.7145, "q": [-0.3668651580810547, -0.026609454303979874, 0.017061274498701096, 0.6104987859725952, -0.2887657880783081, 0.024719713255763054, -0.3843781054019928, 0.01338824350386858, -0.010726908221840858, 0.6083086133003235, -0.28985103964805603, -0.010027933865785599, 0.0017543383873999119, -0.0123258326202631, -0.014983123168349266, -0.4592594802379608, 0.5927757620811462, 0.5293312668800354, 1.2724850177764893, -0.2798795998096466, -0.3796602487564087, -0.3055857717990875, -0.29901841282844543, -0.2859915494918823, 0.25370603799819946, 1.398475170135498, -0.6638901233673096, -0.3095645308494568, -0.23672440648078918]} +{"t": 11.7314, "q": [-0.3668651580810547, -0.02670319750905037, 0.01711484231054783, 0.6104732155799866, -0.2887824773788452, 0.02474856935441494, -0.38445478677749634, 0.013294500298798084, -0.010713516734540462, 0.6087262034416199, -0.28986766934394836, -0.009998942725360394, 0.0019150411244481802, -0.011847574263811111, -0.01465371623635292, -0.44255346059799194, 0.5537071824073792, 0.5243937373161316, 1.2838340997695923, -0.27585288882255554, -0.3762687146663666, -0.2894669771194458, -0.299054354429245, -0.2878131568431854, 0.25296303629875183, 1.398690938949585, -0.6635785102844238, -0.3095405399799347, -0.23426763713359833]} +{"t": 11.7482, "q": [-0.3669077455997467, -0.026728764176368713, 0.017074666917324066, 0.6104646921157837, -0.2888033390045166, 0.02478465437889099, -0.38454002141952515, 0.013200757093727589, -0.010780476033687592, 0.6086835861206055, -0.2898842990398407, -0.009998836554586887, 0.0019552167505025864, -0.011604673229157925, -0.014486637897789478, -0.4268421530723572, 0.5214695930480957, 0.5210980772972107, 1.2921031713485718, -0.27143073081970215, -0.37225401401519775, -0.2733961343765259, -0.2991741895675659, -0.2896946668624878, 0.2519204020500183, 1.3987988233566284, -0.6635545492172241, -0.309516578912735, -0.23097197711467743]} +{"t": 11.7649, "q": [-0.36692479252815247, -0.0267117191106081, 0.017088059335947037, 0.6104220747947693, -0.2887992262840271, 0.024791903793811798, -0.3846507966518402, 0.013226322829723358, -0.010726908221840858, 0.6089562773704529, -0.28989261388778687, -0.009969888255000114, 0.001834689755924046, -0.011551231145858765, -0.014208882115781307, -0.4112147092819214, 0.4893398880958557, 0.5176226496696472, 1.302157998085022, -0.26836276054382324, -0.3699650168418884, -0.2612800896167755, -0.2994737923145294, -0.2914204001426697, 0.25103357434272766, 1.3987507820129395, -0.6634946465492249, -0.30952855944633484, -0.2292822003364563]} +{"t": 11.7816, "q": [-0.367214560508728, -0.026609454303979874, 0.016940748319029808, 0.6104561686515808, -0.2888116240501404, 0.024770157411694527, -0.38491499423980713, 0.013379720970988274, -0.010981354862451553, 0.6089392304420471, -0.28989675641059875, -0.009977092035114765, 0.0019284329609945416, -0.01167989056557417, -0.014000466093420982, -0.3964022099971771, 0.45922353863716125, 0.5162324905395508, 1.3089770078659058, -0.265953928232193, -0.36641767621040344, -0.24914005398750305, -0.29950976371765137, -0.29309821128845215, 0.24999094009399414, 1.3989425897598267, -0.663482666015625, -0.30950459837913513, -0.228107750415802]} +{"t": 11.7983, "q": [-0.36730828881263733, -0.026507189497351646, 0.016753261908888817, 0.6104561686515808, -0.28879496455192566, 0.02475576475262642, -0.3850172460079193, 0.013601296581327915, -0.011115273460745811, 0.6090500354766846, -0.2898884415626526, -0.010006058029830456, 0.0018882573349401355, -0.012081549502909184, -0.013774393126368523, -0.38371092081069946, 0.4353988766670227, 0.514578640460968, 1.3147534132003784, -0.2648753523826599, -0.3628104329109192, -0.24222515523433685, -0.2995217442512512, -0.29466813802719116, 0.24927188456058502, 1.3990144729614258, -0.6634107828140259, -0.3094806373119354, -0.22722090780735016]} +{"t": 11.815, "q": [-0.3674105703830719, -0.026481622830033302, 0.016378289088606834, 0.6105414032936096, -0.2887741029262543, 0.02471967786550522, -0.38500872254371643, 0.013925136998295784, -0.011624165810644627, 0.6091182231903076, -0.2898842394351959, -0.010027775540947914, 0.0022096626926213503, -0.01231645978987217, -0.013625082559883595, -0.37252965569496155, 0.41252100467681885, 0.5153576135635376, 1.3204339742660522, -0.26516297459602356, -0.3569861054420471, -0.2347709685564041, -0.29948580265045166, -0.2965256869792938, 0.2485528290271759, 1.399218201637268, -0.6634107828140259, -0.30950459837913513, -0.22586669027805328]} +{"t": 11.8318, "q": [-0.3674105703830719, -0.026481622830033302, 0.016217585653066635, 0.6105328798294067, -0.2887323796749115, 0.02464752271771431, -0.38499167561531067, 0.014240454882383347, -0.011825043708086014, 0.6093142032623291, -0.2898924946784973, -0.010071086697280407, 0.0027051628567278385, -0.012346820905804634, -0.013644751161336899, -0.3639848828315735, 0.39419710636138916, 0.5158729553222656, 1.3258267641067505, -0.26534274220466614, -0.3517250120639801, -0.22637003660202026, -0.2995337247848511, -0.2983472943305969, 0.2476540207862854, 1.3993860483169556, -0.6634227633476257, -0.3094566762447357, -0.2241169959306717]} +{"t": 11.8485, "q": [-0.3671804666519165, -0.026311179623007774, 0.016030099242925644, 0.610515832901001, -0.2886572778224945, 0.024517640471458435, -0.3848382830619812, 0.014283065684139729, -0.011878611519932747, 0.6094335317611694, -0.2899297773838043, -0.010107035748660564, 0.0027855143416672945, -0.012179972603917122, -0.013643644750118256, -0.35528433322906494, 0.37822213768959045, 0.5170114636421204, 1.3290146589279175, -0.26548653841018677, -0.3503707945346832, -0.2171781361103058, -0.300025075674057, -0.3001689016819, 0.24697090685367584, 1.3993500471115112, -0.6633987426757812, -0.3094446659088135, -0.222618967294693]} +{"t": 11.8652, "q": [-0.3668140172958374, -0.02628561295568943, 0.01611045002937317, 0.6104817390441895, -0.288619726896286, 0.024452680721879005, -0.3848468065261841, 0.014334198087453842, -0.011691125109791756, 0.6102260947227478, -0.29012027382850647, -0.010395126417279243, 0.0027453387156128883, -0.011937198229134083, -0.013573901727795601, -0.34708714485168457, 0.3646320402622223, 0.5171073079109192, 1.3312677145004272, -0.2651030421257019, -0.3498075604438782, -0.21113808453083038, -0.3009718358516693, -0.3015470802783966, 0.24651551246643066, 1.3993620872497559, -0.6633867621421814, -0.3094446659088135, -0.2218399941921234]} +{"t": 11.882, "q": [-0.36651572585105896, -0.026208914816379547, 0.016083667054772377, 0.610515832901001, -0.2886195778846741, 0.02439481019973755, -0.3848382830619812, 0.01447055209428072, -0.011490246281027794, 0.6106777191162109, -0.29028597474098206, -0.010625561699271202, 0.0027721223887056112, -0.01145175937563181, -0.013522016815841198, -0.34010031819343567, 0.35427767038345337, 0.5172990560531616, 1.3316631317138672, -0.2648274004459381, -0.3497835695743561, -0.2030487209558487, -0.3017508089542389, -0.3023739755153656, 0.24586836993694305, 1.3993260860443115, -0.6633628010749817, -0.30946865677833557, -0.22115689516067505]} +{"t": 11.8987, "q": [-0.36632823944091797, -0.026123693212866783, 0.016030099242925644, 0.6105073094367981, -0.28857356309890747, 0.02427203394472599, -0.3848723769187927, 0.014555772766470909, -0.011275975964963436, 0.6111975908279419, -0.29053032398223877, -0.010978435166180134, 0.0029997846577316523, -0.010875310748815536, -0.013469655998051167, -0.3342040777206421, 0.3446543216705322, 0.5172391533851624, 1.3328016996383667, -0.2639285922050476, -0.34968769550323486, -0.19626565277576447, -0.3023979663848877, -0.3030211329460144, 0.24476581811904907, 1.3993620872497559, -0.6633987426757812, -0.3094446659088135, -0.22072546184062958]} +{"t": 11.9156, "q": [-0.3662686049938202, -0.0260469950735569, 0.015762262046337128, 0.6104987859725952, -0.2885151505470276, 0.024171005934476852, -0.3848382830619812, 0.014538728632032871, -0.011222408153116703, 0.6114106774330139, -0.29082438349723816, -0.0113888680934906, 0.0030131766106933355, -0.009851758368313313, -0.013702106662094593, -0.32859545946121216, 0.336529016494751, 0.5172032117843628, 1.333005428314209, -0.2627301812171936, -0.3497476279735565, -0.18971028923988342, -0.3028533458709717, -0.3033686876296997, 0.2436632663011551, 1.3993260860443115, -0.6633508205413818, -0.3094566762447357, -0.22042585909366608]} +{"t": 11.9323, "q": [-0.3662686049938202, -0.025850985199213028, 0.015547990798950195, 0.6104987859725952, -0.2884775996208191, 0.024106064811348915, -0.38485532999038696, 0.014479073695838451, -0.011142057366669178, 0.6117600798606873, -0.2912220060825348, -0.011950528249144554, 0.0029997846577316523, -0.008691811934113503, -0.013982723467051983, -0.3229389190673828, 0.3290868103504181, 0.5169155597686768, 1.333005428314209, -0.26129207015037537, -0.3496997058391571, -0.18343055248260498, -0.3034166097640991, -0.30345258116722107, 0.24233302474021912, 1.3993380069732666, -0.6634107828140259, -0.3094566762447357, -0.2201981544494629]} +{"t": 11.9491, "q": [-0.3661833703517914, -0.02586803026497364, 0.015507815405726433, 0.6104561686515808, -0.28847333788871765, 0.024069925770163536, -0.38494056463241577, 0.014427941292524338, -0.011034921742975712, 0.611777126789093, -0.2916535437107086, -0.012454936280846596, 0.0029328251257538795, -0.007145027630031109, -0.014531111344695091, -0.3170067369937897, 0.321920245885849, 0.5169994831085205, 1.3331491947174072, -0.26110032200813293, -0.349675714969635, -0.17639581859111786, -0.30375218391418457, -0.30345258116722107, 0.24112261831760406, 1.3993260860443115, -0.6633628010749817, -0.30946865677833557, -0.22007831931114197]} +{"t": 11.9658, "q": [-0.36606407165527344, -0.025782808661460876, 0.015561383217573166, 0.6104561686515808, -0.28846070170402527, 0.024004876613616943, -0.38494908809661865, 0.014274543151259422, -0.010807259939610958, 0.6117941737174988, -0.2918650805950165, -0.012808418832719326, 0.002959609031677246, -0.00564418314024806, -0.014993301592767239, -0.3110146224498749, 0.3158082962036133, 0.5168676376342773, 1.3332570791244507, -0.260836660861969, -0.34966373443603516, -0.17310014367103577, -0.3038959801197052, -0.30345258116722107, 0.23994815349578857, 1.3993021249771118, -0.6633867621421814, -0.3094566762447357, -0.2199704498052597]} +{"t": 11.9825, "q": [-0.36605554819107056, -0.025672022253274918, 0.01562834158539772, 0.6103965044021606, -0.2884356677532196, 0.02396157756447792, -0.38508543372154236, 0.014257499016821384, -0.010566205717623234, 0.6118026375770569, -0.29194390773773193, -0.012945509515702724, 0.002946217078715563, -0.004024681635200977, -0.015585431829094887, -0.30397987365722656, 0.3086417317390442, 0.5163163542747498, 1.33330500125885, -0.25900307297706604, -0.3496038317680359, -0.1688697189092636, -0.30388399958610535, -0.30345258116722107, 0.2389175146818161, 1.3993620872497559, -0.6633628010749817, -0.30946865677833557, -0.21975474059581757]} +{"t": 11.9993, "q": [-0.3659873604774475, -0.02556975558400154, 0.015722084790468216, 0.6102687120437622, -0.2884064316749573, 0.023896582424640656, -0.38523030281066895, 0.01423193234950304, -0.010298367589712143, 0.6118367314338684, -0.29196465015411377, -0.01298157125711441, 0.003026568330824375, -0.002684124046936631, -0.016007903963327408, -0.2979278266429901, 0.30243390798568726, 0.5160766839981079, 1.3340359926223755, -0.2567620277404785, -0.3495558798313141, -0.16647286713123322, -0.30383604764938354, -0.30345258116722107, 0.23819845914840698, 1.3993979692459106, -0.6634706854820251, -0.3094566762447357, -0.2196229100227356]} +{"t": 12.016, "q": [-0.3659958839416504, -0.02556123398244381, 0.01578904502093792, 0.6101067662239075, -0.2883397340774536, 0.023810088634490967, -0.3854007422924042, 0.014214888215065002, -0.010137665085494518, 0.6118793487548828, -0.29197707772254944, -0.013017687015235424, 0.002959609031677246, -0.0013503055088222027, -0.01644345000386238, -0.2913125455379486, 0.2953152656555176, 0.5141352415084839, 1.3340001106262207, -0.2535262703895569, -0.3500592112541199, -0.16116386651992798, -0.30383604764938354, -0.30345258116722107, 0.2373715490102768, 1.3995177745819092, -0.663566529750824, -0.3094566762447357, -0.2192993313074112]} +{"t": 12.0327, "q": [-0.3656635284423828, -0.0254504457116127, 0.016030099242925644, 0.6096295118331909, -0.28824377059936523, 0.02364411950111389, -0.3855200707912445, 0.01426602154970169, -0.00973590835928917, 0.6121180057525635, -0.291993647813797, -0.013060997240245342, 0.002959609031677246, -0.0003751107142306864, -0.016707977280020714, -0.28385835886001587, 0.287992924451828, 0.5127450823783875, 1.3346232175827026, -0.25243571400642395, -0.35001128911972046, -0.15658588707447052, -0.3038720190525055, -0.303428590297699, 0.23688019812107086, 1.3995177745819092, -0.6636744141578674, -0.3094806373119354, -0.21915552020072937]} +{"t": 12.0496, "q": [-0.3657146692276001, -0.02527148276567459, 0.016056882217526436, 0.6094079613685608, -0.2882270812988281, 0.023615246638655663, -0.385716050863266, 0.014197844080626965, -0.009508245624601841, 0.6121435761451721, -0.29201027750968933, -0.013075404800474644, 0.00287925754673779, 0.00044076924677938223, -0.017159337177872658, -0.2760566174983978, 0.28089824318885803, 0.511726438999176, 1.3346831798553467, -0.2518964409828186, -0.350274920463562, -0.15405721962451935, -0.3038480579853058, -0.3034166097640991, 0.23664051294326782, 1.3994818925857544, -0.6637223362922668, -0.30946865677833557, -0.2190716415643692]} +{"t": 12.0666, "q": [-0.36556127667427063, -0.025305571034550667, 0.016083667054772377, 0.6093653440475464, -0.28819796442985535, 0.02359367534518242, -0.38577571511268616, 0.014197844080626965, -0.009293975308537483, 0.6122457981109619, -0.2920144200325012, -0.013068156316876411, 0.00287925754673779, 0.0008135359967127442, -0.017260100692510605, -0.2688421308994293, 0.27412715554237366, 0.5104201436042786, 1.3352583646774292, -0.251345157623291, -0.35026293992996216, -0.15205584466457367, -0.30386003851890564, -0.30351248383522034, 0.23646074533462524, 1.3995177745819092, -0.6636504530906677, -0.3094566762447357, -0.2189997285604477]} +{"t": 12.0833, "q": [-0.36560386419296265, -0.025288525968790054, 0.016097059473395348, 0.6092715859413147, -0.28820207715034485, 0.023586425930261612, -0.38581833243370056, 0.014257499016821384, -0.009293975308537483, 0.6123480796813965, -0.29201024770736694, -0.013089865446090698, 0.002946217078715563, 0.0008976778481155634, -0.017216147854924202, -0.26192721724510193, 0.2674998939037323, 0.5092456936836243, 1.3359774351119995, -0.25068601965904236, -0.3502030372619629, -0.149826779961586, -0.30386003851890564, -0.3034765422344208, 0.23625701665878296, 1.3995177745819092, -0.6638062596321106, -0.3094566762447357, -0.21890385448932648]} +{"t": 12.1001, "q": [-0.3657061457633972, -0.025305571034550667, 0.016097059473395348, 0.6092630624771118, -0.28819793462753296, 0.02357921190559864, -0.38582685589790344, 0.01426602154970169, -0.009468070231378078, 0.6123310327529907, -0.29201024770736694, -0.013104325160384178, 0.003133703488856554, 0.0008142057340592146, -0.01716301403939724, -0.2561628222465515, 0.2613879442214966, 0.5080952048301697, 1.337283730506897, -0.2500508725643158, -0.3500951826572418, -0.14876018464565277, -0.3038480579853058, -0.3034765422344208, 0.23620907962322235, 1.3995658159255981, -0.66385418176651, -0.3094566762447357, -0.21883195638656616]} +{"t": 12.1171, "q": [-0.3659873604774475, -0.025305571034550667, 0.016016706824302673, 0.6092886328697205, -0.28817710280418396, 0.023557588458061218, -0.3858353793621063, 0.01432567648589611, -0.009776083752512932, 0.6121946573257446, -0.2919936180114746, -0.013118875212967396, 0.0030801359098404646, 0.0006924568442627788, -0.017134273424744606, -0.2497033178806305, 0.2551681101322174, 0.506501317024231, 1.3374634981155396, -0.2479056864976883, -0.3502509593963623, -0.1474778801202774, -0.3039199411869049, -0.30348852276802063, 0.2362210601568222, 1.3996137380599976, -0.6638182401657104, -0.3094446659088135, -0.2187241017818451]} +{"t": 12.1338, "q": [-0.36596179008483887, -0.025305571034550667, 0.016030099242925644, 0.6092630624771118, -0.2881687581539154, 0.023543162271380424, -0.3857927620410919, 0.014479073695838451, -0.009776083752512932, 0.6121691465377808, -0.29198113083839417, -0.013155079446732998, 0.0031203117687255144, 0.0005702392081730068, -0.017173491418361664, -0.24339962005615234, 0.2499549835920334, 0.5055186152458191, 1.3379428386688232, -0.24592828750610352, -0.35019105672836304, -0.14671088755130768, -0.30418360233306885, -0.3034765422344208, 0.2359693944454193, 1.399601697921753, -0.6638422012329102, -0.30946865677833557, -0.2187241017818451]} +{"t": 12.1505, "q": [-0.36583396792411804, -0.025305571034550667, 0.016097059473395348, 0.6092886328697205, -0.2881604731082916, 0.02355766110122204, -0.3856990337371826, 0.014444985426962376, -0.009762692265212536, 0.6121435761451721, -0.29198944568634033, -0.013140583410859108, 0.0030533522367477417, 0.0005088625475764275, -0.017231935635209084, -0.2361970990896225, 0.24522121250629425, 0.5043801069259644, 1.3379069566726685, -0.24365128576755524, -0.3502269983291626, -0.1450330913066864, -0.30457907915115356, -0.30348852276802063, 0.23590947687625885, 1.3995658159255981, -0.6638302206993103, -0.3094566762447357, -0.2187241017818451]} +{"t": 12.1674, "q": [-0.3656294345855713, -0.0253140926361084, 0.016190802678465843, 0.6092630624771118, -0.2881688177585602, 0.023572087287902832, -0.38554561138153076, 0.014436463825404644, -0.00966894906014204, 0.612152099609375, -0.29198530316352844, -0.013133371248841286, 0.002959609031677246, 0.000516517844516784, -0.017227057367563248, -0.22948592901229858, 0.24105070531368256, 0.5040445327758789, 1.3381346464157104, -0.243183895945549, -0.35021501779556274, -0.14300775527954102, -0.3048906624317169, -0.30348852276802063, 0.23578962683677673, 1.3995417356491089, -0.6638062596321106, -0.3094566762447357, -0.21871210634708405]} +{"t": 12.1841, "q": [-0.3655697703361511, -0.025348180904984474, 0.0163247212767601, 0.6092715859413147, -0.2881605327129364, 0.023572122678160667, -0.38550302386283875, 0.014402374625205994, -0.00965555664151907, 0.6121861338615417, -0.291972815990448, -0.013155114836990833, 0.002959609031677246, 0.000516517844516784, -0.017227057367563248, -0.2230144441127777, 0.23733559250831604, 0.5035531520843506, 1.3381825685501099, -0.24257270991802216, -0.35028693079948425, -0.13883724808692932, -0.30503448843955994, -0.30351248383522034, 0.23568177223205566, 1.3995417356491089, -0.6638422012329102, -0.30946865677833557, -0.2187001258134842]} +{"t": 12.2009, "q": [-0.3655697703361511, -0.025476012378931046, 0.016364896669983864, 0.6092630624771118, -0.2881564199924469, 0.023593835532665253, -0.3854774534702301, 0.014376808889210224, -0.009642165154218674, 0.612237274646759, -0.29196035861968994, -0.013147938065230846, 0.0030399602837860584, 0.0005318285548128188, -0.017217300832271576, -0.21703432500362396, 0.23381222784519196, 0.5034093856811523, 1.3387937545776367, -0.2422850877046585, -0.3502509593963623, -0.13611683249473572, -0.30501052737236023, -0.30351248383522034, 0.23560987412929535, 1.3996137380599976, -0.66385418176651, -0.3094326853752136, -0.21867616474628448]} +{"t": 12.2177, "q": [-0.3656123876571655, -0.0254504457116127, 0.0163247212767601, 0.6092630624771118, -0.2881564199924469, 0.023593835532665253, -0.3854689300060272, 0.01429158728569746, -0.009695732034742832, 0.6122287511825562, -0.29196035861968994, -0.013147938065230846, 0.0031470954418182373, 0.0005395508487708867, -0.01720271445810795, -0.21194101870059967, 0.2311517298221588, 0.5031097531318665, 1.3389495611190796, -0.24123047292232513, -0.35023897886276245, -0.1345708668231964, -0.30501052737236023, -0.3034765422344208, 0.23565781116485596, 1.3996256589889526, -0.6638661623001099, -0.3094566762447357, -0.21855631470680237]} +{"t": 12.2345, "q": [-0.365578293800354, -0.025467490777373314, 0.016364896669983864, 0.6092545390129089, -0.28813570737838745, 0.023615635931491852, -0.3854007422924042, 0.014240454882383347, -0.009695732034742832, 0.6122628450393677, -0.2919437885284424, -0.013104609213769436, 0.003106919815763831, 0.0005396178457885981, -0.017193004488945007, -0.20682376623153687, 0.22894664108753204, 0.5029539465904236, 1.3393090963363647, -0.2394927591085434, -0.35011914372444153, -0.13331252336502075, -0.30503448843955994, -0.3034765422344208, 0.23558589816093445, 1.3996256589889526, -0.6639140844345093, -0.3094566762447357, -0.21854433417320251]} +{"t": 12.2512, "q": [-0.3654845654964447, -0.025467490777373314, 0.016391679644584656, 0.6092545390129089, -0.28813987970352173, 0.023622849956154823, -0.38527292013168335, 0.014223410747945309, -0.009695732034742832, 0.6122287511825562, -0.29192307591438293, -0.013039608485996723, 0.0031872710678726435, 0.0005395508487708867, -0.01720271445810795, -0.20139490067958832, 0.22734075784683228, 0.5027621984481812, 1.3394169807434082, -0.23720377683639526, -0.35008320212364197, -0.13229386508464813, -0.3051183819770813, -0.30348852276802063, 0.23547804355621338, 1.3995897769927979, -0.6639021039009094, -0.3094446659088135, -0.21850837767124176]} +{"t": 12.2682, "q": [-0.3653396964073181, -0.0254504457116127, 0.01644524745643139, 0.6092630624771118, -0.28813987970352173, 0.023622849956154823, -0.3851024806499481, 0.014146711677312851, -0.009695732034742832, 0.6122457981109619, -0.29192307591438293, -0.013025147840380669, 0.0031872710678726435, 0.0005319624906405807, -0.017197882756590843, -0.19654129445552826, 0.22609439492225647, 0.5018993616104126, 1.3395007848739624, -0.23353660106658936, -0.3500711917877197, -0.13075987994670868, -0.30520227551460266, -0.3034765422344208, 0.2352743148803711, 1.3995897769927979, -0.663938045501709, -0.30946865677833557, -0.21848441660404205]} +{"t": 12.2851, "q": [-0.36518630385398865, -0.0254504457116127, 0.01644524745643139, 0.6092545390129089, -0.288144052028656, 0.023630063980817795, -0.3849320411682129, 0.014044445939362049, -0.009682340547442436, 0.6121861338615417, -0.29191479086875916, -0.012981784529983997, 0.0033077981788665056, 0.0005090634222142398, -0.01720280945301056, -0.19172362983226776, 0.2254352569580078, 0.5000897645950317, 1.3395487070083618, -0.2299533188343048, -0.3500951826572418, -0.1290820837020874, -0.30526217818260193, -0.3034765422344208, 0.23523835837841034, 1.3995897769927979, -0.6638901233673096, -0.30942070484161377, -0.2184244841337204]} +{"t": 12.3019, "q": [-0.3651266396045685, -0.025467490777373314, 0.016405072063207626, 0.6092630624771118, -0.28813987970352173, 0.023622849956154823, -0.3847956657409668, 0.013942181132733822, -0.00973590835928917, 0.6122031807899475, -0.2919231057167053, -0.01296727079898119, 0.0035220684949308634, 0.0005242401966825128, -0.01721247099339962, -0.18740931153297424, 0.22475215792655945, 0.4971536099910736, 1.339572787284851, -0.22447651624679565, -0.35016706585884094, -0.12767992913722992, -0.30528613924980164, -0.30348852276802063, 0.23514248430728912, 1.3996137380599976, -0.66385418176651, -0.3094566762447357, -0.2183765470981598]} +{"t": 12.3186, "q": [-0.3651095926761627, -0.025458969175815582, 0.016338111832737923, 0.6092374920845032, -0.28813987970352173, 0.023622849956154823, -0.3846934139728546, 0.013805827125906944, -0.009802867658436298, 0.6121861338615417, -0.29191064834594727, -0.01296011172235012, 0.003736338810995221, 0.0005166517803445458, -0.017207639291882515, -0.183298721909523, 0.22452445328235626, 0.4945410490036011, 1.3396326303482056, -0.22125276923179626, -0.35026293992996216, -0.12660135328769684, -0.305370032787323, -0.3034765422344208, 0.23511850833892822, 1.3995777368545532, -0.6638781428337097, -0.30942070484161377, -0.21829266846179962]} +{"t": 12.3354, "q": [-0.3650669753551483, -0.025493057444691658, 0.016257761046290398, 0.6092545390129089, -0.28813987970352173, 0.023622849956154823, -0.38458263874053955, 0.013686517253518105, -0.009802867658436298, 0.6121776103973389, -0.29193559288978577, -0.012931066565215588, 0.003990784753113985, 0.0005242401966825128, -0.01721247099339962, -0.18011091649532318, 0.22369754314422607, 0.4913891851902008, 1.3398483991622925, -0.2178492397069931, -0.3503707945346832, -0.12528309226036072, -0.3054419457912445, -0.3035005033016205, 0.23505859076976776, 1.3995897769927979, -0.6638661623001099, -0.3094326853752136, -0.21816083788871765]} +{"t": 12.3522, "q": [-0.36501583456993103, -0.0254504457116127, 0.016230978071689606, 0.6092715859413147, -0.28813156485557556, 0.02362288534641266, -0.38454002141952515, 0.013558685779571533, -0.009816259145736694, 0.6121606230735779, -0.2919439673423767, -0.012873170897364616, 0.004218447022140026, 0.0005165848415344954, -0.017217349261045456, -0.17754629254341125, 0.2229665070772171, 0.4875542223453522, 1.3398483991622925, -0.21299563348293304, -0.3504546880722046, -0.12307799607515335, -0.30552583932876587, -0.30348852276802063, 0.23493875563144684, 1.3995897769927979, -0.6638901233673096, -0.3094326853752136, -0.21801702678203583]} +{"t": 12.3689, "q": [-0.3649902939796448, -0.025433402508497238, 0.016204193234443665, 0.6092374920845032, -0.2881316542625427, 0.023651812225580215, -0.38444626331329346, 0.013447898440063, -0.009829651564359665, 0.6121435761451721, -0.2919439971446991, -0.012844250537455082, 0.0043523660860955715, 0.0004936857731081545, -0.017222274094820023, -0.17502960562705994, 0.22200776636600494, 0.48494166135787964, 1.3398842811584473, -0.2112099826335907, -0.35046666860580444, -0.11931494623422623, -0.3055977523326874, -0.30348852276802063, 0.23486684262752533, 1.3995897769927979, -0.6638781428337097, -0.3094326853752136, -0.21796908974647522]} +{"t": 12.3856, "q": [-0.3649306297302246, -0.025424880906939507, 0.01615062542259693, 0.6092374920845032, -0.28815245628356934, 0.02365897223353386, -0.38435253500938416, 0.013396765105426311, -0.009816259145736694, 0.6120753884315491, -0.29196897149086, -0.012771805748343468, 0.004432717338204384, 0.00050120719242841, -0.01723681390285492, -0.17327991127967834, 0.22060561180114746, 0.48353952169418335, 1.3398483991622925, -0.20735105872154236, -0.3508022427558899, -0.11471300572156906, -0.30565765500068665, -0.3034765422344208, 0.23471105098724365, 1.3995777368545532, -0.6638901233673096, -0.3094326853752136, -0.21781329810619354]} +{"t": 12.4023, "q": [-0.3648794889450073, -0.0254504457116127, 0.016164017841219902, 0.609246015548706, -0.28814828395843506, 0.023651758208870888, -0.38430991768836975, 0.013354155234992504, -0.009776083752512932, 0.6119816303253174, -0.2919647991657257, -0.012793531641364098, 0.004446109291166067, 0.0005163169698789716, -0.017256183549761772, -0.17173394560813904, 0.2178013026714325, 0.4827485680580139, 1.3398723602294922, -0.20495422184467316, -0.3508022427558899, -0.11202853918075562, -0.30577751994132996, -0.3034765422344208, 0.23448334634304047, 1.3995897769927979, -0.6638661623001099, -0.3094326853752136, -0.2177533656358719]} +{"t": 12.4193, "q": [-0.3647942841053009, -0.025467490777373314, 0.016271153464913368, 0.6092374920845032, -0.28814828395843506, 0.023651758208870888, -0.3842332065105438, 0.013320066034793854, -0.009682340547442436, 0.6120157241821289, -0.2919315993785858, -0.01276475377380848, 0.004419325385242701, 0.0005163169698789716, -0.017256183549761772, -0.1703198105096817, 0.21536850929260254, 0.4823770523071289, 1.3398842811584473, -0.20428310334682465, -0.3509460389614105, -0.11005114018917084, -0.3059692680835724, -0.30348852276802063, 0.23442342877388, 1.3995897769927979, -0.6638781428337097, -0.30942070484161377, -0.2176215499639511]} +{"t": 12.4361, "q": [-0.36473461985588074, -0.025433402508497238, 0.016244368627667427, 0.6092374920845032, -0.28815245628356934, 0.02365897223353386, -0.38422468304634094, 0.013311544433236122, -0.009628772735595703, 0.6119645833969116, -0.291939914226532, -0.012735779397189617, 0.004218447022140026, 0.000516184198204428, -0.017275599762797356, -0.1687259078025818, 0.2120848298072815, 0.48222124576568604, 1.3399202823638916, -0.20411533117294312, -0.3508981168270111, -0.10880477726459503, -0.3061490058898926, -0.30348852276802063, 0.23442342877388, 1.3995897769927979, -0.6638901233673096, -0.30942070484161377, -0.2175496369600296]} +{"t": 12.4528, "q": [-0.364717572927475, -0.025407835841178894, 0.01628454588353634, 0.6092033982276917, -0.2881565988063812, 0.02366618625819683, -0.3842332065105438, 0.013311544433236122, -0.009521638043224812, 0.6118878722190857, -0.2919524013996124, -0.01269957423210144, 0.004044352564960718, 0.0004249477933626622, -0.017333688214421272, -0.16741962730884552, 0.20877718925476074, 0.48229315876960754, 1.3399202823638916, -0.20416326820850372, -0.35091009736061096, -0.10822954028844833, -0.3061969578266144, -0.3034765422344208, 0.23429159820079803, 1.3995897769927979, -0.6638661623001099, -0.30942070484161377, -0.21751369535923004]} +{"t": 12.4696, "q": [-0.36473461985588074, -0.025339659303426743, 0.0163247212767601, 0.6091863512992859, -0.28816911578178406, 0.023687826469540596, -0.3842332065105438, 0.013320066034793854, -0.009454678744077682, 0.6117345094680786, -0.2919524013996124, -0.012714034877717495, 0.0037229470908641815, 0.00040977104799821973, -0.017353009432554245, -0.1660773903131485, 0.20509803295135498, 0.4824010133743286, 1.3399322032928467, -0.20415127277374268, -0.3508981168270111, -0.10795389860868454, -0.30623289942741394, -0.30348852276802063, 0.2341717630624771, 1.3995777368545532, -0.66385418176651, -0.30942070484161377, -0.21748971939086914]} +{"t": 12.4863, "q": [-0.36473461985588074, -0.025288525968790054, 0.016338111832737923, 0.6091523170471191, -0.2881649434566498, 0.023680614307522774, -0.3842417299747467, 0.013379720970988274, -0.009374327026307583, 0.6115384697914124, -0.29194411635398865, -0.01269961055368185, 0.003575636073946953, 0.0004021826898679137, -0.017367500811815262, -0.16502277553081512, 0.20210197567939758, 0.48254483938217163, 1.3399442434310913, -0.20421120524406433, -0.35091009736061096, -0.10763032734394073, -0.30623289942741394, -0.30348852276802063, 0.234051913022995, 1.399601697921753, -0.6638781428337097, -0.30942070484161377, -0.21739384531974792]} +{"t": 12.503, "q": [-0.3647431433200836, -0.025280004367232323, 0.0163247212767601, 0.6090500354766846, -0.28817328810691833, 0.023695040494203568, -0.384292870759964, 0.013396765105426311, -0.009347543120384216, 0.6114276647567749, -0.29193994402885437, -0.012706858105957508, 0.0034952848218381405, 0.0004173594352323562, -0.0173578392714262, -0.16406404972076416, 0.19838686287403107, 0.48268863558769226, 1.3399202823638916, -0.20417524874210358, -0.3508981168270111, -0.10748651623725891, -0.3062209188938141, -0.30348852276802063, 0.23376429080963135, 1.3996256589889526, -0.6638901233673096, -0.30942070484161377, -0.21728599071502686]} +{"t": 12.5198, "q": [-0.36472609639167786, -0.025245916098356247, 0.016338111832737923, 0.6088710427284241, -0.28816911578178406, 0.023687826469540596, -0.38425877690315247, 0.013362676836550236, -0.009280583821237087, 0.6112998723983765, -0.2919358015060425, -0.012699627317488194, 0.0035086767747998238, 0.0004249477933626622, -0.017353009432554245, -0.16353674232959747, 0.19483953714370728, 0.4829283356666565, 1.3399322032928467, -0.2042471468448639, -0.3508981168270111, -0.10721088200807571, -0.3062209188938141, -0.3035484552383423, 0.23360849916934967, 1.3996137380599976, -0.6638901233673096, -0.30939674377441406, -0.2172260731458664]} +{"t": 12.5365, "q": [-0.36469200253486633, -0.02526295930147171, 0.016338111832737923, 0.6086750626564026, -0.28816500306129456, 0.023695075884461403, -0.38431844115257263, 0.013371199369430542, -0.009280583821237087, 0.6112316846847534, -0.29191917181015015, -0.012714158743619919, 0.0034952848218381405, 0.00040977104799821973, -0.017343349754810333, -0.1630333960056305, 0.19087275862693787, 0.4829762578010559, 1.3399442434310913, -0.20445087552070618, -0.35088613629341125, -0.10718691349029541, -0.30625689029693604, -0.3035244643688202, 0.2332250028848648, 1.399601697921753, -0.6638901233673096, -0.3094087243080139, -0.21713019907474518]} +{"t": 12.5533, "q": [-0.3647005259990692, -0.025228871032595634, 0.016378289088606834, 0.6085386872291565, -0.2881525158882141, 0.023687899112701416, -0.38431844115257263, 0.013362676836550236, -0.009240408428013325, 0.6110357046127319, -0.29192331433296204, -0.012721371836960316, 0.0034952848218381405, 0.0004173594352323562, -0.0173578392714262, -0.1630333960056305, 0.18743328750133514, 0.4833837151527405, 1.3399322032928467, -0.20467858016490936, -0.35088613629341125, -0.10719889402389526, -0.30623289942741394, -0.3035244643688202, 0.2329014390707016, 1.3996137380599976, -0.6638901233673096, -0.30942070484161377, -0.21701034903526306]} +{"t": 12.5701, "q": [-0.36464938521385193, -0.025237392634153366, 0.016364896669983864, 0.6082915663719177, -0.2881358861923218, 0.02368798665702343, -0.3842843472957611, 0.01338824350386858, -0.009240408428013325, 0.6108822822570801, -0.29191917181015015, -0.012714158743619919, 0.0034952848218381405, 0.00040977104799821973, -0.017353009432554245, -0.16304539144039154, 0.18376611173152924, 0.48349156975746155, 1.3399442434310913, -0.2046426236629486, -0.35088613629341125, -0.10719889402389526, -0.3063167929649353, -0.303572416305542, 0.23238611221313477, 1.3996137380599976, -0.66385418176651, -0.30939674377441406, -0.2169264554977417]} +{"t": 12.5868, "q": [-0.3646664321422577, -0.02520330436527729, 0.016364896669983864, 0.6081381440162659, -0.28814834356307983, 0.023680685088038445, -0.384292870759964, 0.013430854305624962, -0.009293975308537483, 0.6107032895088196, -0.29191914200782776, -0.012743116356432438, 0.003468500915914774, 0.0004173594352323562, -0.0173578392714262, -0.1630813330411911, 0.18118950724601746, 0.4837192893028259, 1.3399322032928467, -0.2046426236629486, -0.35088613629341125, -0.10719889402389526, -0.306484580039978, -0.303572416305542, 0.23215840756893158, 1.399601697921753, -0.6638661623001099, -0.3093847632408142, -0.21686653792858124]} +{"t": 12.6035, "q": [-0.3646067976951599, -0.025186261162161827, 0.016351504251360893, 0.6077802181243896, -0.28814002871513367, 0.02368072047829628, -0.384292870759964, 0.013447898440063, -0.00933415163308382, 0.610515832901001, -0.29191499948501587, -0.012735885567963123, 0.0034952848218381405, 0.00040977104799821973, -0.017353009432554245, -0.16311728954315186, 0.1782054305076599, 0.4837791919708252, 1.3399322032928467, -0.2046426236629486, -0.3508741557598114, -0.10721088200807571, -0.3067362308502197, -0.303572416305542, 0.23185880482196808, 1.3996137380599976, -0.66385418176651, -0.30939674377441406, -0.21678264439105988]} +{"t": 12.6203, "q": [-0.3645556569099426, -0.025177739560604095, 0.016391679644584656, 0.6075330972671509, -0.2881275415420532, 0.023673541843891144, -0.3842332065105438, 0.013558685779571533, -0.009360934607684612, 0.6102005243301392, -0.2919066846370697, -0.012750381603837013, 0.0035086767747998238, 0.0004173594352323562, -0.0173578392714262, -0.1631532460451126, 0.1759883463382721, 0.4839949309825897, 1.3399322032928467, -0.20467858016490936, -0.3508741557598114, -0.10721088200807571, -0.3068920373916626, -0.3036443293094635, 0.23153522610664368, 1.399601697921753, -0.6637822389602661, -0.30939674377441406, -0.2166747897863388]} +{"t": 12.637, "q": [-0.36445337533950806, -0.02519478276371956, 0.016405072063207626, 0.6072177886962891, -0.28812336921691895, 0.023666327819228172, -0.38420766592025757, 0.013567207381129265, -0.009387718513607979, 0.6099703907966614, -0.2919108271598816, -0.012757611460983753, 0.0035086767747998238, 0.00043253618059679866, -0.0173578392714262, -0.16317720711231232, 0.17319601774215698, 0.4839589595794678, 1.3399322032928467, -0.2046186625957489, -0.3508741557598114, -0.10722286254167557, -0.3071437180042267, -0.3037761449813843, 0.2310318946838379, 1.399601697921753, -0.6637822389602661, -0.30939674377441406, -0.21659089624881744]} +{"t": 12.6538, "q": [-0.3644363582134247, -0.025160694494843483, 0.016378289088606834, 0.6069791316986084, -0.2881150245666504, 0.02365190163254738, -0.3841906189918518, 0.01366095058619976, -0.009441286325454712, 0.6098255515098572, -0.29189836978912354, -0.012779355980455875, 0.0034952848218381405, 0.00043253618059679866, -0.0173578392714262, -0.16317720711231232, 0.1711946576833725, 0.4839709401130676, 1.3399322032928467, -0.20465461909770966, -0.35086217522621155, -0.10722286254167557, -0.3072875142097473, -0.3037641644477844, 0.2302529215812683, 1.3996137380599976, -0.6637942790985107, -0.30939674377441406, -0.21645908057689667]} +{"t": 12.6705, "q": [-0.3644193112850189, -0.02514364942908287, 0.016418464481830597, 0.6068172454833984, -0.2881067395210266, 0.023651937022805214, -0.3841480016708374, 0.013729128055274487, -0.009494854137301445, 0.609697699546814, -0.2918775677680969, -0.012801134958863258, 0.0034952848218381405, 0.0004477129259612411, -0.01734817959368229, -0.16324912011623383, 0.16901353001594543, 0.48388707637786865, 1.3399322032928467, -0.20458270609378815, -0.3508262038230896, -0.10723485052585602, -0.30750322341918945, -0.30381208658218384, 0.22948592901229858, 1.399601697921753, -0.6637702584266663, -0.30937278270721436, -0.21641114354133606]} +{"t": 12.6873, "q": [-0.36440226435661316, -0.025126606225967407, 0.016391679644584656, 0.6067490577697754, -0.28809428215026855, 0.023659221827983856, -0.38408833742141724, 0.013797304593026638, -0.009508245624601841, 0.6095102429389954, -0.29186925292015076, -0.01283010933548212, 0.00354885240085423, 0.0004553013131953776, -0.017343349754810333, -0.1633809357881546, 0.16696423292160034, 0.48388707637786865, 1.3399322032928467, -0.20453476905822754, -0.3508022427558899, -0.10724683105945587, -0.30762308835983276, -0.3039918541908264, 0.22882679104804993, 1.3995897769927979, -0.6637582778930664, -0.3093847632408142, -0.21617145836353302]} +{"t": 12.7041, "q": [-0.36423182487487793, -0.02514364942908287, 0.016378289088606834, 0.6065871119499207, -0.2880901098251343, 0.023652007803320885, -0.38394346833229065, 0.013805827125906944, -0.009494854137301445, 0.609467625617981, -0.29186925292015076, -0.01283010933548212, 0.0036024199798703194, 0.00047047805855982006, -0.01732402853667736, -0.16354872286319733, 0.1642318218946457, 0.48356348276138306, 1.3399322032928467, -0.20430707931518555, -0.3506224751472473, -0.10723485052585602, -0.3078387975692749, -0.30425551533699036, 0.22825154662132263, 1.3995897769927979, -0.6638062596321106, -0.30937278270721436, -0.21594375371932983]} +{"t": 12.7208, "q": [-0.3641124963760376, -0.02515217289328575, 0.016364896669983864, 0.6064934134483337, -0.2880901098251343, 0.023652007803320885, -0.38379859924316406, 0.013788782991468906, -0.009521638043224812, 0.6093994379043579, -0.29186925292015076, -0.01283010933548212, 0.0036425956059247255, 0.00047806641669012606, -0.017319198697805405, -0.16371649503707886, 0.16184696555137634, 0.48339569568634033, 1.3399322032928467, -0.20416326820850372, -0.35046666860580444, -0.10719889402389526, -0.3080185651779175, -0.304543137550354, 0.22791600227355957, 1.3996137380599976, -0.6637942790985107, -0.3093847632408142, -0.21558423340320587]} +{"t": 12.7376, "q": [-0.3639335334300995, -0.025237392634153366, 0.016364896669983864, 0.6063229441642761, -0.2880901098251343, 0.023652007803320885, -0.38361963629722595, 0.013771738857030869, -0.009548421949148178, 0.6093568205833435, -0.2918567657470703, -0.012837374582886696, 0.003669379511848092, 0.00047806641669012606, -0.017328858375549316, -0.1639322191476822, 0.15880297124385834, 0.48296427726745605, 1.3399802446365356, -0.203995481133461, -0.3503228724002838, -0.10715095698833466, -0.3082582354545593, -0.3048667013645172, 0.22767631709575653, 1.399601697921753, -0.6637942790985107, -0.30937278270721436, -0.21527263522148132]} +{"t": 12.7545, "q": [-0.36380571126937866, -0.025228871032595634, 0.016378289088606834, 0.6061695218086243, -0.2880901098251343, 0.023652007803320885, -0.38349178433418274, 0.013737649656832218, -0.009615381248295307, 0.6092801094055176, -0.2918609380722046, -0.012830127030611038, 0.0036425956059247255, 0.00047047805855982006, -0.01732402853667736, -0.16419586539268494, 0.15587881207466125, 0.4819096624851227, 1.3401119709014893, -0.20319253206253052, -0.3498794436454773, -0.10691127181053162, -0.3085578382015228, -0.3051902651786804, 0.2274126559495926, 1.3996137380599976, -0.6637942790985107, -0.3093847632408142, -0.21473334729671478]} +{"t": 12.7713, "q": [-0.3637034296989441, -0.025245916098356247, 0.016364896669983864, 0.6059479713439941, -0.28809425234794617, 0.023644758388400078, -0.38334691524505615, 0.013729128055274487, -0.009642165154218674, 0.6091011762619019, -0.2918775677680969, -0.01281561329960823, 0.003589028026908636, 0.0004856548039242625, -0.017333688214421272, -0.1642318218946457, 0.15267902612686157, 0.48063933849334717, 1.3403996229171753, -0.2025214284658432, -0.3495079576969147, -0.1067914292216301, -0.3089892864227295, -0.30547788739204407, 0.22732876241207123, 1.3996137380599976, -0.6637702584266663, -0.30934879183769226, -0.21424199640750885]} +{"t": 12.788, "q": [-0.36357560753822327, -0.02526295930147171, 0.016338111832737923, 0.6057178974151611, -0.28809845447540283, 0.02366643399000168, -0.3831935226917267, 0.01372060552239418, -0.00966894906014204, 0.6088539958000183, -0.2918567955493927, -0.012808454222977161, 0.0035354604478925467, 0.00047806641669012606, -0.017328858375549316, -0.1643516719341278, 0.14940734207630157, 0.4767324924468994, 1.3406273126602173, -0.19813519716262817, -0.3489087224006653, -0.10612031817436218, -0.3094806373119354, -0.305741548538208, 0.22700519859790802, 1.3996137380599976, -0.6637942790985107, -0.30932483077049255, -0.21345104277133942]} +{"t": 12.8048, "q": [-0.3634563088417053, -0.025245916098356247, 0.01629793643951416, 0.6054621934890747, -0.28810256719589233, 0.023644722998142242, -0.38298898935317993, 0.013703561387956142, -0.009709124453365803, 0.6085557341575623, -0.29184848070144653, -0.012808489613234997, 0.00354885240085423, 0.0004856548039242625, -0.017333688214421272, -0.1643516719341278, 0.14603976905345917, 0.4747191369533539, 1.340927004814148, -0.19268237054347992, -0.34853723645210266, -0.10586864501237869, -0.3098401725292206, -0.3061370253562927, 0.2268134504556656, 1.3996256589889526, -0.6638062596321106, -0.3093368113040924, -0.21258817613124847]} +{"t": 12.8216, "q": [-0.36317506432533264, -0.025237392634153366, 0.01629793643951416, 0.6052235960960388, -0.28810256719589233, 0.023644722998142242, -0.38265663385391235, 0.013712083920836449, -0.009709124453365803, 0.608342707157135, -0.2918568253517151, -0.012779532931745052, 0.003575636073946953, 0.0004856548039242625, -0.01732402853667736, -0.1643037348985672, 0.14304371178150177, 0.4685232937335968, 1.3414782285690308, -0.1838979423046112, -0.347878098487854, -0.10445450991392136, -0.3100678622722626, -0.306484580039978, 0.22640597820281982, 1.399601697921753, -0.6637702584266663, -0.30930086970329285, -0.21131783723831177]} +{"t": 12.8384, "q": [-0.3627489507198334, -0.025245916098356247, 0.016217585653066635, 0.6049849987030029, -0.28809839487075806, 0.02363750897347927, -0.38216233253479004, 0.013712083920836449, -0.009789476171135902, 0.6080188751220703, -0.29186511039733887, -0.012793958187103271, 0.0037095551379024982, 0.0004932431620545685, -0.017309537157416344, -0.16424380242824554, 0.14062289893627167, 0.462531179189682, 1.3423770666122437, -0.1793798804283142, -0.3468354642391205, -0.10312426090240479, -0.3102116584777832, -0.30690401792526245, 0.22622622549533844, 1.3996256589889526, -0.6637462973594666, -0.30930086970329285, -0.21020330488681793]} +{"t": 12.8551, "q": [-0.36224615573883057, -0.025237392634153366, 0.016043491661548615, 0.6046270728111267, -0.2881067395210266, 0.023651937022805214, -0.3815317153930664, 0.01366095058619976, -0.00992339476943016, 0.6075160503387451, -0.29186928272247314, -0.01277224998921156, 0.0037229470908641815, 0.0004932431620545685, -0.017328858375549316, -0.164076030254364, 0.1374710500240326, 0.45359092950820923, 1.3433717489242554, -0.1687978059053421, -0.3458527624607086, -0.09922938793897629, -0.31027159094810486, -0.30725157260894775, 0.2259625643491745, 1.3996256589889526, -0.6636504530906677, -0.309288889169693, -0.20926854014396667]} +{"t": 12.8719, "q": [-0.3615814447402954, -0.025228871032595634, 0.016003314405679703, 0.6041753888130188, -0.28809839487075806, 0.02363750897347927, -0.3807050585746765, 0.01366095058619976, -0.009950178675353527, 0.6071155071258545, -0.29186514019966125, -0.012765037827193737, 0.003669379511848092, 0.0005235966527834535, -0.01734817959368229, -0.1640280932188034, 0.13496634364128113, 0.44654422998428345, 1.3448338508605957, -0.1613076776266098, -0.3451097309589386, -0.09405220299959183, -0.3105112612247467, -0.30747926235198975, 0.22572287917137146, 1.3996137380599976, -0.6636384725570679, -0.30927690863609314, -0.20875321328639984]} +{"t": 12.8886, "q": [-0.36065253615379333, -0.025220349431037903, 0.01598992384970188, 0.6036640405654907, -0.28810256719589233, 0.023644722998142242, -0.37981024384498596, 0.01366095058619976, -0.009936786256730556, 0.6067234873771667, -0.2918776273727417, -0.012743275612592697, 0.003669379511848092, 0.0005311850691214204, -0.017353009432554245, -0.16348880529403687, 0.13168266415596008, 0.4332297444343567, 1.3460801839828491, -0.14562031626701355, -0.34377947449684143, -0.08850350230932236, -0.31079888343811035, -0.30782681703567505, 0.2254592329263687, 1.3996256589889526, -0.6635785102844238, -0.309288889169693, -0.2082379013299942]} +{"t": 12.9054, "q": [-0.35982587933540344, -0.025186261162161827, 0.016030099242925644, 0.6030760407447815, -0.288114994764328, 0.023637419566512108, -0.3789154291152954, 0.013643906451761723, -0.009869826957583427, 0.6062036156654358, -0.2918817698955536, -0.012736027128994465, 0.003655987558886409, 0.0005767152761109173, -0.01739165186882019, -0.1625060886144638, 0.12892629206180573, 0.42197656631469727, 1.3467872142791748, -0.13158679008483887, -0.34262898564338684, -0.08329036831855774, -0.3110385835170746, -0.3083660900592804, 0.22530344128608704, 1.3996256589889526, -0.6635545492172241, -0.30927690863609314, -0.20773455500602722]} +{"t": 12.9221, "q": [-0.3587009608745575, -0.025237392634153366, 0.01613723486661911, 0.6023431420326233, -0.2881025969982147, 0.02365918643772602, -0.37792685627937317, 0.013618340715765953, -0.009722515940666199, 0.6055985689163208, -0.2918776273727417, -0.012728814966976643, 0.0036827712319791317, 0.0006753641646355391, -0.017454445362091064, -0.16042083501815796, 0.12525911629199982, 0.40485110878944397, 1.347218632698059, -0.11240004748106003, -0.3392614424228668, -0.0767110288143158, -0.31129026412963867, -0.30912110209465027, 0.22502779960632324, 1.3996376991271973, -0.6635066270828247, -0.309288889169693, -0.20725518465042114]} +{"t": 12.9389, "q": [-0.3577464818954468, -0.025228871032595634, 0.016217585653066635, 0.6016102433204651, -0.28811508417129517, 0.023666363209486008, -0.3769382834434509, 0.013601296581327915, -0.009601988829672337, 0.6048486232757568, -0.29186931252479553, -0.012728850357234478, 0.003575636073946953, 0.0010547817219048738, -0.017715279012918472, -0.15820375084877014, 0.12191552668809891, 0.39048200845718384, 1.347829818725586, -0.09347695857286453, -0.3334011435508728, -0.06850183010101318, -0.3115778863430023, -0.30990007519721985, 0.22488398849964142, 1.3996137380599976, -0.6635066270828247, -0.30925291776657104, -0.20653614401817322]} +{"t": 12.9559, "q": [-0.3567664325237274, -0.025280004367232323, 0.01628454588353634, 0.600885808467865, -0.28811922669410706, 0.02367357723414898, -0.37583041191101074, 0.013626862317323685, -0.009575205855071545, 0.6038174629211426, -0.2918153405189514, -0.012707390822470188, 0.003481892868876457, 0.0014873178442940116, -0.01800992526113987, -0.15465642511844635, 0.11701397597789764, 0.37197837233543396, 1.3485609292984009, -0.0728640928864479, -0.32891905307769775, -0.06203034892678261, -0.3121890723705292, -0.3106071352958679, 0.22468025982379913, 1.3996256589889526, -0.6634946465492249, -0.30925291776657104, -0.20561335980892181]} +{"t": 12.9726, "q": [-0.355863094329834, -0.025305571034550667, 0.016391679644584656, 0.6000677347183228, -0.28812339901924133, 0.02368079125881195, -0.3748503625392914, 0.013609818182885647, -0.009535029530525208, 0.6031356453895569, -0.2918153405189514, -0.012678451836109161, 0.003441717242822051, 0.0018439702689647675, -0.01825626753270626, -0.15053385496139526, 0.1134067252278328, 0.35925111174583435, 1.350058913230896, -0.056829195469617844, -0.3274569809436798, -0.056050222367048264, -0.31312382221221924, -0.3110625445842743, 0.2244405746459961, 1.399601697921753, -0.6635305881500244, -0.30925291776657104, -0.20458270609378815]} +{"t": 12.9894, "q": [-0.3548319339752197, -0.025365225970745087, 0.01663273386657238, 0.5994029641151428, -0.288127601146698, 0.023688022047281265, -0.374202698469162, 0.013618340715765953, -0.009414502419531345, 0.6029226183891296, -0.29183200001716614, -0.012663920409977436, 0.003133703488856554, 0.0019198540830984712, -0.018304569646716118, -0.14611166715621948, 0.10851716250181198, 0.3468115031719208, 1.3518685102462769, -0.04530037194490433, -0.32585108280181885, -0.05098089575767517, -0.3142503499984741, -0.31154191493988037, 0.22423683106899261, 1.3996256589889526, -0.6635066270828247, -0.30927690863609314, -0.20308467745780945]} +{"t": 13.0061, "q": [-0.35440582036972046, -0.025365225970745087, 0.016860397532582283, 0.5989598631858826, -0.2881483733654022, 0.023695146664977074, -0.3741515576839447, 0.013712083920836449, -0.009427894838154316, 0.6028714776039124, -0.29182368516921997, -0.012678416445851326, 0.0029328251257538795, 0.0018819122342392802, -0.018367363139986992, -0.14204901456832886, 0.1041189506649971, 0.33104026317596436, 1.3534743785858154, -0.02696450613439083, -0.324640691280365, -0.04446147382259369, -0.31511321663856506, -0.312057226896286, 0.22402112185955048, 1.3996137380599976, -0.6634706854820251, -0.30925291776657104, -0.20168252289295197]} +{"t": 13.0229, "q": [-0.3541245758533478, -0.02544192411005497, 0.01711484231054783, 0.598857581615448, -0.28814005851745605, 0.0236952006816864, -0.374057799577713, 0.013805827125906944, -0.009468070231378078, 0.6028800010681152, -0.2918195128440857, -0.012685682624578476, 0.002865865593776107, 0.0018895005341619253, -0.018362533301115036, -0.13693176209926605, 0.10033193230628967, 0.3198230266571045, 1.3557155132293701, -0.014452975243330002, -0.32292693853378296, -0.040830254554748535, -0.31591615080833435, -0.3129321038722992, 0.22344587743282318, 1.3996256589889526, -0.6634706854820251, -0.30925291776657104, -0.20090354979038239]} +{"t": 13.0396, "q": [-0.3541501462459564, -0.025484533980488777, 0.01748981513082981, 0.598712682723999, -0.28814011812210083, 0.02370966412127018, -0.3741515576839447, 0.013831393793225288, -0.009535029530525208, 0.6029311418533325, -0.29183197021484375, -0.01267838105559349, 0.0027453387156128883, 0.0019122656667605042, -0.01834804192185402, -0.1321500539779663, 0.09642507880926132, 0.304171621799469, 1.3563865423202515, 0.0011984225129708648, -0.32147684693336487, -0.03600061312317848, -0.316347599029541, -0.3137110769748688, 0.2223673015832901, 1.3996376991271973, -0.6634467244148254, -0.30925291776657104, -0.20031632483005524]} +{"t": 13.0564, "q": [-0.3540564179420471, -0.02551010064780712, 0.017717478796839714, 0.5985593199729919, -0.28813594579696655, 0.023702450096607208, -0.37413451075553894, 0.013822871260344982, -0.009575205855071545, 0.6029737591743469, -0.291836142539978, -0.012685593217611313, 0.002758730435743928, 0.0019350307993590832, -0.01832389086484909, -0.127188578248024, 0.09243433177471161, 0.29305025935173035, 1.3576809167861938, 0.014764565043151379, -0.31963127851486206, -0.03208177164196968, -0.31653934717178345, -0.3145020306110382, 0.2214924544095993, 1.3996256589889526, -0.6634347438812256, -0.30925291776657104, -0.19998076558113098]} +{"t": 13.0731, "q": [-0.3541245758533478, -0.025544188916683197, 0.017570167779922485, 0.5985934138298035, -0.28814011812210083, 0.02370966412127018, -0.37413451075553894, 0.013848437927663326, -0.009615381248295307, 0.6029822826385498, -0.2918277978897095, -0.012700107879936695, 0.0027721223887056112, 0.0019502075156196952, -0.01832389086484909, -0.1209447979927063, 0.0878683403134346, 0.2820487320423126, 1.358435869216919, 0.02540655806660652, -0.3160000443458557, -0.02720419131219387, -0.31669512391090393, -0.3151851296424866, 0.22055767476558685, 1.3996137380599976, -0.6634227633476257, -0.3092409372329712, -0.19963322579860687]} +{"t": 13.09, "q": [-0.35403937101364136, -0.025714632123708725, 0.017570167779922485, 0.5985507965087891, -0.28814005851745605, 0.0236952006816864, -0.37409189343452454, 0.01395922526717186, -0.009695732034742832, 0.6030589938163757, -0.2918236553668976, -0.012692894786596298, 0.00287925754673779, 0.0019502075156196952, -0.01832389086484909, -0.11413776129484177, 0.08412925899028778, 0.27320438623428345, 1.3589991331100464, 0.03407115116715431, -0.3121531009674072, -0.024471787735819817, -0.31686291098594666, -0.31582027673721313, 0.21988657116889954, 1.3996137380599976, -0.6634347438812256, -0.30920499563217163, -0.19939354062080383]} +{"t": 13.1067, "q": [-0.3539882302284241, -0.025714632123708725, 0.017529990524053574, 0.5985593199729919, -0.28814005851745605, 0.0236952006816864, -0.3740663230419159, 0.01398479100316763, -0.009722515940666199, 0.6031271815299988, -0.29183194041252136, -0.012707320041954517, 0.0029060414526611567, 0.002010913332924247, -0.018352871760725975, -0.10764230787754059, 0.08036621659994125, 0.2646236717700958, 1.3595384359359741, 0.04422179237008095, -0.3082582354545593, -0.02147573232650757, -0.3169707655906677, -0.31644347310066223, 0.2193952053785324, 1.3996256589889526, -0.6633987426757812, -0.30922895669937134, -0.19921377301216125]} +{"t": 13.1235, "q": [-0.353920042514801, -0.02580837532877922, 0.01746303215622902, 0.5986019372940063, -0.2881358861923218, 0.02368798665702343, -0.3740237355232239, 0.014001836068928242, -0.009762692265212536, 0.6033572554588318, -0.2918277978897095, -0.012714567594230175, 0.0032274469267576933, 0.0020640320144593716, -0.018309399485588074, -0.10065551102161407, 0.0758122056722641, 0.2577327489852905, 1.3618274927139282, 0.05374924838542938, -0.30570560693740845, -0.019534287974238396, -0.3169947564601898, -0.3174501359462738, 0.21891583502292633, 1.3996256589889526, -0.6634347438812256, -0.3092409372329712, -0.19906996190547943]} +{"t": 13.1402, "q": [-0.3540564179420471, -0.025893596932291985, 0.017369288951158524, 0.5986956357955933, -0.2881358563899994, 0.02367350645363331, -0.37404927611351013, 0.013976269401609898, -0.00973590835928917, 0.6034510135650635, -0.29183194041252136, -0.012707320041954517, 0.0033077981788665056, 0.0021250476129353046, -0.01828019693493843, -0.09419600665569305, 0.07226487994194031, 0.24981117248535156, 1.3636729717254639, 0.062258049845695496, -0.30378812551498413, -0.01806022785604, -0.3170187175273895, -0.31836095452308655, 0.21854433417320251, 1.3996256589889526, -0.6634347438812256, -0.3092409372329712, -0.19879433512687683]} +{"t": 13.157, "q": [-0.35404789447784424, -0.025910640135407448, 0.017235370352864265, 0.598789393901825, -0.28811922669410706, 0.02367357723414898, -0.37404075264930725, 0.013993313536047935, -0.009709124453365803, 0.603570282459259, -0.2918277978897095, -0.012714567594230175, 0.0032944062259048223, 0.0021556690335273743, -0.018260683864355087, -0.08813199400901794, 0.06898120045661926, 0.24432240426540375, 1.3661776781082153, 0.06789063662290573, -0.3024458885192871, -0.01788046397268772, -0.31706663966178894, -0.3190919756889343, 0.21834060549736023, 1.3996256589889526, -0.6634347438812256, -0.30925291776657104, -0.19867448508739471]} +{"t": 13.1737, "q": [-0.35403937101364136, -0.025953251868486404, 0.017181802541017532, 0.5989854335784912, -0.288127601146698, 0.023688022047281265, -0.3740237355232239, 0.014044445939362049, -0.009722515940666199, 0.6037918925285339, -0.29184025526046753, -0.012721744365990162, 0.0034015413839370012, 0.00216332427226007, -0.01825580559670925, -0.08130098134279251, 0.06496648490428925, 0.23845012485980988, 1.3677716255187988, 0.07408647984266281, -0.30133137106895447, -0.016346482560038567, -0.3170786201953888, -0.31999078392982483, 0.2181009203195572, 1.3996137380599976, -0.6633987426757812, -0.30925291776657104, -0.19854265451431274]} +{"t": 13.1904, "q": [-0.35403937101364136, -0.025970295071601868, 0.017061274498701096, 0.59923255443573, -0.28811508417129517, 0.023666363209486008, -0.37395554780960083, 0.014070012606680393, -0.009722515940666199, 0.6041327714920044, -0.29183194041252136, -0.012721780687570572, 0.003803298342972994, 0.0021557360887527466, -0.018250973895192146, -0.0752609372138977, 0.06085589528083801, 0.23398001492023468, 1.3684067726135254, 0.07999470084905624, -0.3001568913459778, -0.015052187256515026, -0.3170786201953888, -0.3207937479019165, 0.2178492397069931, 1.3996256589889526, -0.6634587049484253, -0.30925291776657104, -0.19842281937599182]} +{"t": 13.2072, "q": [-0.354107528924942, -0.026012906804680824, 0.01678004488348961, 0.5994881987571716, -0.28809839487075806, 0.02363750897347927, -0.373870313167572, 0.01398479100316763, -0.009601988829672337, 0.604465126991272, -0.29183611273765564, -0.012700053863227367, 0.0041916631162166595, 0.0021709126885980368, -0.018260635435581207, -0.0704193040728569, 0.05699697509407997, 0.23009712994098663, 1.368754267692566, 0.0854475274682045, -0.2996056377887726, -0.012859073467552662, -0.31716251373291016, -0.3214169144630432, 0.21772940456867218, 1.3996137380599976, -0.6634227633476257, -0.30925291776657104, -0.19838686287403107]} +{"t": 13.2239, "q": [-0.35421833395957947, -0.025970295071601868, 0.01644524745643139, 0.5998461246490479, -0.28809839487075806, 0.02363750897347927, -0.37389588356018066, 0.013891047798097134, -0.00973590835928917, 0.6049253344535828, -0.29185688495635986, -0.012692734599113464, 0.004713947419077158, 0.0022388154175132513, -0.018323585391044617, -0.06648848205804825, 0.05325789749622345, 0.2278321087360382, 1.3689939975738525, 0.09096027165651321, -0.2995217442512512, -0.008928247727453709, -0.3173063397407532, -0.3218483626842499, 0.21758559346199036, 1.3996137380599976, -0.6634347438812256, -0.3092649281024933, -0.19827900826931]} +{"t": 13.2408, "q": [-0.3544313907623291, -0.02598734013736248, 0.016164017841219902, 0.6005193591117859, -0.28810250759124756, 0.023630259558558464, -0.37390440702438354, 0.013797304593026638, -0.00991000235080719, 0.6053684949874878, -0.29189011454582214, -0.01269261073321104, 0.005249623209238052, 0.0024434737861156464, -0.01843603141605854, -0.06461894512176514, 0.05048954114317894, 0.2259625643491745, 1.3689221143722534, 0.09261409193277359, -0.3001209497451782, -0.0055486964993178844, -0.3174022138118744, -0.32205209136009216, 0.21738186478614807, 1.3996137380599976, -0.663482666015625, -0.3092649281024933, -0.19812321662902832]} +{"t": 13.2576, "q": [-0.35463592410087585, -0.025936206802725792, 0.015842612832784653, 0.6011756062507629, -0.28810250759124756, 0.023630259558558464, -0.3739725947380066, 0.013737649656832218, -0.010151056572794914, 0.6059650182723999, -0.29199397563934326, -0.012655997648835182, 0.005624596029520035, 0.0028002322651445866, -0.018666066229343414, -0.06448711454868317, 0.04921921342611313, 0.22420088946819305, 1.3686344623565674, 0.09306949377059937, -0.3006722331047058, -0.0035473306197673082, -0.31751006841659546, -0.3221000134944916, 0.21738186478614807, 1.3996137380599976, -0.6634946465492249, -0.30927690863609314, -0.19799138605594635]} +{"t": 13.2743, "q": [-0.3547126054763794, -0.025910640135407448, 0.015722084790468216, 0.6017976999282837, -0.28812748193740845, 0.023644598200917244, -0.3740066885948181, 0.013643906451761723, -0.01025819219648838, 0.6066552996635437, -0.29199811816215515, -0.012677670456469059, 0.0056112040765583515, 0.0033088172785937786, -0.019023258239030838, -0.06512227654457092, 0.04869190603494644, 0.22312229871749878, 1.367915391921997, 0.09393236041069031, -0.30155906081199646, -0.0019654128700494766, -0.3178575932979584, -0.3220880329608917, 0.21734590828418732, 1.3996137380599976, -0.663482666015625, -0.309288889169693, -0.19766780734062195]} +{"t": 13.2912, "q": [-0.35463592410087585, -0.025876551866531372, 0.015869395807385445, 0.6023346185684204, -0.2881399095058441, 0.0236373133957386, -0.3741089403629303, 0.013558685779571533, -0.010057313367724419, 0.6072773933410645, -0.2920687794685364, -0.012626739218831062, 0.00546389352530241, 0.004045125562697649, -0.01953703723847866, -0.06626078486442566, 0.04857206344604492, 0.22225944697856903, 1.3673162460327148, 0.09447164833545685, -0.3020264506340027, -0.0013781859306618571, -0.3183729350566864, -0.3220880329608917, 0.21730995178222656, 1.3995777368545532, -0.6635305881500244, -0.309288889169693, -0.19739218056201935]} +{"t": 13.308, "q": [-0.35465294122695923, -0.025833941996097565, 0.016083667054772377, 0.6027777194976807, -0.2881690263748169, 0.02364443801343441, -0.37430495023727417, 0.01350755337625742, -0.009682340547442436, 0.6076608896255493, -0.29226401448249817, -0.012575275264680386, 0.005008568987250328, 0.005145988427102566, -0.020296785980463028, -0.06705173850059509, 0.048524126410484314, 0.22185197472572327, 1.3672922849655151, 0.09552625566720963, -0.30206239223480225, -0.0010306433541700244, -0.31870847940444946, -0.32215994596481323, 0.2172260731458664, 1.3995777368545532, -0.6635425686836243, -0.30930086970329285, -0.19724836945533752]} +{"t": 13.3247, "q": [-0.3546188771724701, -0.0257487203925848, 0.01628454588353634, 0.6030760407447815, -0.28823980689048767, 0.023709220811724663, -0.37436461448669434, 0.01347346417605877, -0.00932075921446085, 0.6078824996948242, -0.29229724407196045, -0.012589612044394016, 0.004379149992018938, 0.006277317646890879, -0.021057311445474625, -0.06777079403400421, 0.04824849218130112, 0.22158832848072052, 1.3672802448272705, 0.09668873250484467, -0.30206239223480225, -0.0008029430755414069, -0.3188523054122925, -0.3223157525062561, 0.2171781361103058, 1.3995658159255981, -0.6635186076164246, -0.30930086970329285, -0.19714049994945526]} +{"t": 13.3415, "q": [-0.3545336425304413, -0.025731675326824188, 0.01661934331059456, 0.6031612157821655, -0.2882772386074066, 0.023730771616101265, -0.3745094835758209, 0.013422331772744656, -0.008852043189108372, 0.6081040501594543, -0.2923097312450409, -0.012582310475409031, 0.003990784753113985, 0.007067086640745401, -0.02156847156584263, -0.06852579861879349, 0.04800880700349808, 0.22168420255184174, 1.3671844005584717, 0.09729992598295212, -0.3022781014442444, -0.0008149273344315588, -0.3188283145427704, -0.322435587644577, 0.21710622310638428, 1.3996137380599976, -0.663566529750824, -0.309288889169693, -0.19704462587833405]} +{"t": 13.3583, "q": [-0.3545677363872528, -0.025706110522150993, 0.01680682972073555, 0.6033146381378174, -0.2882772386074066, 0.023730771616101265, -0.3748929798603058, 0.013371199369430542, -0.00832975935190916, 0.6084364056587219, -0.2923263609409332, -0.012553318403661251, 0.003655987558886409, 0.007841747254133224, -0.02207035943865776, -0.069196917116642, 0.04760134220123291, 0.22175610065460205, 1.3670885562896729, 0.09767143428325653, -0.3025178015232086, -0.0008269115351140499, -0.3188043534755707, -0.3224954903125763, 0.21710622310638428, 1.399601697921753, -0.6635425686836243, -0.309288889169693, -0.19686487317085266]} +{"t": 13.3751, "q": [-0.3546103537082672, -0.025697587057948112, 0.01680682972073555, 0.6034083962440491, -0.28827306628227234, 0.023723559454083443, -0.3754810094833374, 0.013371199369430542, -0.007700339891016483, 0.6089051365852356, -0.29234299063682556, -0.012524308636784554, 0.00354885240085423, 0.008160723373293877, -0.022277018055319786, -0.07002382725477219, 0.04733768850564957, 0.22192388772964478, 1.367100477218628, 0.09791111946105957, -0.30293723940849304, -0.0008388957940042019, -0.31878039240837097, -0.3224954903125763, 0.21708226203918457, 1.3996256589889526, -0.6635904908180237, -0.309288889169693, -0.19672106206417084]} +{"t": 13.3918, "q": [-0.35495975613594055, -0.025697587057948112, 0.01664612628519535, 0.6037748456001282, -0.2882814109325409, 0.023737985640764236, -0.3760434687137604, 0.013251889497041702, -0.007231623865664005, 0.6092289686203003, -0.29233884811401367, -0.012517096474766731, 0.00354885240085423, 0.008365768007934093, -0.02239031158387661, -0.07087470591068268, 0.047086022794246674, 0.22200776636600494, 1.3670645952224731, 0.0980549305677414, -0.30335670709609985, -0.0009587380336597562, -0.3187684118747711, -0.3224954903125763, 0.21708226203918457, 1.3996496200561523, -0.6635785102844238, -0.30930086970329285, -0.196577250957489]} +{"t": 13.4086, "q": [-0.35542845726013184, -0.025697587057948112, 0.01664612628519535, 0.6043457984924316, -0.2882731258869171, 0.02375248447060585, -0.3765718340873718, 0.01326893363147974, -0.007084312848746777, 0.609620988368988, -0.2923305332660675, -0.012531610205769539, 0.003562244353815913, 0.008403735235333443, -0.02240513451397419, -0.07162971794605255, 0.04705007001757622, 0.2219957858324051, 1.3670525550842285, 0.0981268361210823, -0.30390796065330505, -0.0011025486746802926, -0.31875643134117126, -0.3224954903125763, 0.21710622310638428, 1.3996376991271973, -0.6636504530906677, -0.30930086970329285, -0.1965053379535675]} +{"t": 13.4253, "q": [-0.35629773139953613, -0.025654977187514305, 0.01661934331059456, 0.605283260345459, -0.2882772982120514, 0.02375969849526882, -0.3773217797279358, 0.013251889497041702, -0.007151272147893906, 0.6102516651153564, -0.29231804609298706, -0.012553353793919086, 0.0035220684949308634, 0.008380964398384094, -0.02240993268787861, -0.07260043919086456, 0.04724181443452835, 0.22155237197875977, 1.367100477218628, 0.09860620647668839, -0.30455511808395386, -0.0011025486746802926, -0.3187204599380493, -0.3224954903125763, 0.21709424257278442, 1.399661660194397, -0.6636384725570679, -0.30930086970329285, -0.1964334398508072]} +{"t": 13.4423, "q": [-0.35739707946777344, -0.02562941052019596, 0.016565775498747826, 0.6066552996635437, -0.2883022725582123, 0.023774072527885437, -0.37821659445762634, 0.013277456164360046, -0.007311975117772818, 0.6109334230422974, -0.2923263609409332, -0.012538857758045197, 0.0032676225528120995, 0.008365781046450138, -0.022409869357943535, -0.07347528636455536, 0.04737364128232002, 0.2210969775915146, 1.3670525550842285, 0.099624864757061, -0.30552583932876587, -0.0010905645322054625, -0.31875643134117126, -0.32260334491729736, 0.21703432500362396, 1.399661660194397, -0.6636025309562683, -0.30930086970329285, -0.19639748334884644]} +{"t": 13.4591, "q": [-0.35895663499832153, -0.025493057444691658, 0.016579166054725647, 0.6080358624458313, -0.2883314788341522, 0.02382458746433258, -0.3796653747558594, 0.013294500298798084, -0.007445894181728363, 0.6116833686828613, -0.29232218861579895, -0.012560565955936909, 0.003240838646888733, 0.008274722844362259, -0.022468173876404762, -0.07462576776742935, 0.04788896441459656, 0.22023411095142365, 1.367004632949829, 0.10057161748409271, -0.30625689029693604, -0.0009347695740871131, -0.31873244047164917, -0.322890967130661, 0.21701034903526306, 1.399661660194397, -0.663626492023468, -0.30930086970329285, -0.19634954631328583]} +{"t": 13.4759, "q": [-0.3604309558868408, -0.02550157904624939, 0.016552383080124855, 0.6087347269058228, -0.2883314788341522, 0.02382458746433258, -0.3811737895011902, 0.013277456164360046, -0.00735215051099658, 0.6125781536102295, -0.29232221841812134, -0.012546106241643429, 0.0033077981788665056, 0.008009050972759724, -0.02251109853386879, -0.0755365714430809, 0.048655953258275986, 0.21871210634708405, 1.3668608665466309, 0.10200972855091095, -0.3072156012058258, -0.0007669904152862728, -0.3187684118747711, -0.3230467736721039, 0.21702232956886292, 1.399661660194397, -0.663626492023468, -0.309288889169693, -0.19630160927772522]} +{"t": 13.4927, "q": [-0.36199048161506653, -0.025348180904984474, 0.01648542284965515, 0.6096039414405823, -0.28833144903182983, 0.023810124024748802, -0.3824435770511627, 0.013285977765917778, -0.007405718322843313, 0.6130468845367432, -0.2923097312450409, -0.012553389184176922, 0.0032676225528120995, 0.007933162152767181, -0.022549906745553017, -0.07629157602787018, 0.049554772675037384, 0.21740582585334778, 1.366705060005188, 0.1032441034913063, -0.30764704942703247, -0.0006831008358858526, -0.3187684118747711, -0.32329845428466797, 0.21698638796806335, 1.399661660194397, -0.6636145114898682, -0.309288889169693, -0.19632558524608612]} +{"t": 13.5096, "q": [-0.363336980342865, -0.02539079077541828, 0.016525600105524063, 0.6104050278663635, -0.2883106768131256, 0.023817425593733788, -0.3840031325817108, 0.013303021900355816, -0.00743250222876668, 0.6137115955352783, -0.2922723591327667, -0.012546319514513016, 0.003334582084789872, 0.007857280783355236, -0.022598491981625557, -0.07687880843877792, 0.05102883279323578, 0.21601566672325134, 1.3666690587997437, 0.1059405505657196, -0.3080664873123169, -0.0003115898580290377, -0.3187684118747711, -0.3234422504901886, 0.2169983685016632, 1.3996376991271973, -0.6636983752250671, -0.309288889169693, -0.19631358981132507]} +{"t": 13.5264, "q": [-0.3646153211593628, -0.02544192411005497, 0.016565775498747826, 0.6111549735069275, -0.28829002380371094, 0.023853691294789314, -0.38546040654182434, 0.013226322829723358, -0.007204839959740639, 0.6145638227462769, -0.29226821660995483, -0.012539106421172619, 0.0034283252898603678, 0.007667477708309889, -0.02257327176630497, -0.07743007689714432, 0.052742574363946915, 0.21449366211891174, 1.3666930198669434, 0.10905645042657852, -0.30822229385375977, -0.00016777915880084038, -0.3187923729419708, -0.32345423102378845, 0.21698638796806335, 1.3996496200561523, -0.6636744141578674, -0.30927690863609314, -0.19630160927772522]} +{"t": 13.5432, "q": [-0.3649817705154419, -0.0254504457116127, 0.016605950891971588, 0.6114106774330139, -0.2882816195487976, 0.023824799805879593, -0.3859376311302185, 0.013217801228165627, -0.0071914480067789555, 0.614998459815979, -0.29226404428482056, -0.012546354904770851, 0.0034283252898603678, 0.007469971664249897, -0.022376887500286102, -0.07777762413024902, 0.05523529276251793, 0.2130555510520935, 1.3667290210723877, 0.11042264848947525, -0.30833014845848083, 2.3968450477696024e-05, -0.31875643134117126, -0.3234662115573883, 0.2169983685016632, 1.399661660194397, -0.663710355758667, -0.309288889169693, -0.19628962874412537]} +{"t": 13.5601, "q": [-0.36504992842674255, -0.025458969175815582, 0.01663273386657238, 0.6114106774330139, -0.28826504945755005, 0.023839334025979042, -0.3859802484512329, 0.013192234560847282, -0.0071914480067789555, 0.6149814128875732, -0.2922267019748688, -0.012524805963039398, 0.003441717242822051, 0.007462337613105774, -0.02231329120695591, -0.07774166762828827, 0.05764412507414818, 0.21271999180316925, 1.366812825202942, 0.1104346364736557, -0.3083660900592804, 0.00011984225420746952, -0.3186725378036499, -0.3234422504901886, 0.21705828607082367, 1.3997935056686401, -0.6636983752250671, -0.30930086970329285, -0.1961098611354828]} +{"t": 13.5768, "q": [-0.3649306297302246, -0.025484533980488777, 0.016726477071642876, 0.6113936305046082, -0.28826916217803955, 0.023817621171474457, -0.38595467805862427, 0.01318371295928955, -0.007137880194932222, 0.6150325536727905, -0.29223498702049255, -0.012524770572781563, 0.0034283252898603678, 0.007462337613105774, -0.02231329120695591, -0.07772968709468842, 0.06090383231639862, 0.21339111030101776, 1.3668488264083862, 0.11023090034723282, -0.30830618739128113, 0.0002037318336078897, -0.31866055727005005, -0.3234422504901886, 0.21703432500362396, 1.399889349937439, -0.6637343168258667, -0.309288889169693, -0.19609788060188293]} +{"t": 13.5936, "q": [-0.3648453950881958, -0.025467490777373314, 0.016726477071642876, 0.6113936305046082, -0.2882692217826843, 0.023846548050642014, -0.3858439028263092, 0.013192234560847282, -0.007151272147893906, 0.6150581240653992, -0.2922474443912506, -0.012517486698925495, 0.0034551091957837343, 0.00747754005715251, -0.02234269119799137, -0.07786151021718979, 0.06411560624837875, 0.21383452415466309, 1.3668009042739868, 0.1101350262761116, -0.30830618739128113, 0.0003115898580290377, -0.31868451833724976, -0.3234662115573883, 0.2169743925333023, 1.3998773097991943, -0.6637343168258667, -0.30927690863609314, -0.1961098611354828]} +{"t": 13.6104, "q": [-0.3647942841053009, -0.025467490777373314, 0.016713086515665054, 0.611402153968811, -0.28826919198036194, 0.023832084611058235, -0.38573309779167175, 0.013192234560847282, -0.007245015352964401, 0.6149558424949646, -0.2922516167163849, -0.012510239146649837, 0.003441717242822051, 0.0074623702093958855, -0.02236218750476837, -0.07872437685728073, 0.06884937733411789, 0.2155003398656845, 1.366872787475586, 0.10967963188886642, -0.30789870023727417, 0.0005752427969127893, -0.31870847940444946, -0.32345423102378845, 0.2169743925333023, 1.3998533487319946, -0.663710355758667, -0.309288889169693, -0.1961098611354828]} +{"t": 13.6272, "q": [-0.3648368716239929, -0.02544192411005497, 0.016699694097042084, 0.6113680601119995, -0.28826916217803955, 0.023817621171474457, -0.385673463344574, 0.013294500298798084, -0.007459285669028759, 0.6149387955665588, -0.2922474443912506, -0.012531965039670467, 0.003468500915914774, 0.007409213576465845, -0.022337524220347404, -0.07983890920877457, 0.073762908577919, 0.21713019907474518, 1.3668248653411865, 0.10940399020910263, -0.3077668845653534, 0.0007909588748589158, -0.31870847940444946, -0.32345423102378845, 0.2169743925333023, 1.3998653888702393, -0.663710355758667, -0.30930086970329285, -0.1961098611354828]} +{"t": 13.644, "q": [-0.36486244201660156, -0.02539079077541828, 0.016699694097042084, 0.6113510131835938, -0.288260817527771, 0.023803194984793663, -0.385673463344574, 0.013354155234992504, -0.007553029339760542, 0.6149132251739502, -0.2922433018684387, -0.012524735182523727, 0.0034015413839370012, 0.007219351828098297, -0.022224290296435356, -0.08172043412923813, 0.08089352399110794, 0.22025807201862335, 1.3669207096099854, 0.10898454487323761, -0.3072156012058258, 0.0010785802733153105, -0.31870847940444946, -0.32347822189331055, 0.21693845093250275, 1.3998653888702393, -0.6637343168258667, -0.309288889169693, -0.1961098611354828]} +{"t": 13.6608, "q": [-0.36491358280181885, -0.02537374757230282, 0.016739869490265846, 0.6113169193267822, -0.28824830055236816, 0.023781534284353256, -0.38569051027297974, 0.01341380923986435, -0.0076467725448310375, 0.6148876547813416, -0.2922515869140625, -0.01253917720168829, 0.003441717242822051, 0.007044659927487373, -0.022091561928391457, -0.0839255303144455, 0.0881200060248375, 0.22213959693908691, 1.366872787475586, 0.10851716250181198, -0.3067961633205414, 0.00173771264962852, -0.31870847940444946, -0.32347822189331055, 0.21696241199970245, 1.3998653888702393, -0.6637343168258667, -0.30930086970329285, -0.1961338371038437]} +{"t": 13.6776, "q": [-0.3648965358734131, -0.025297047570347786, 0.016726477071642876, 0.6112572550773621, -0.28824830055236816, 0.023781534284353256, -0.3856649398803711, 0.013447898440063, -0.007794083096086979, 0.6148109436035156, -0.29224327206611633, -0.01255367323756218, 0.003696163184940815, 0.006968712899833918, -0.022042356431484222, -0.08611864596605301, 0.0965569019317627, 0.2247162014245987, 1.3668488264083862, 0.1073906421661377, -0.306340754032135, 0.001761681167408824, -0.3186964988708496, -0.3234422504901886, 0.21701034903526306, 1.3998653888702393, -0.6637343168258667, -0.3093128502368927, -0.19612184166908264]} +{"t": 13.6943, "q": [-0.3649391531944275, -0.025280004367232323, 0.016726477071642876, 0.6112231612205505, -0.2882441282272339, 0.023774322122335434, -0.3856052756309509, 0.013447898440063, -0.00799496192485094, 0.614700198173523, -0.2922515869140625, -0.012553637847304344, 0.0037095551379024982, 0.006961117964237928, -0.022037435322999954, -0.08864731341600418, 0.10520951449871063, 0.2280837744474411, 1.366705060005188, 0.10556904226541519, -0.3060651421546936, 0.0019174760673195124, -0.31873244047164917, -0.32345423102378845, 0.21701034903526306, 1.3998533487319946, -0.6637223362922668, -0.309288889169693, -0.1961338371038437]} +{"t": 13.7112, "q": [-0.36486244201660156, -0.025245916098356247, 0.016753261908888817, 0.6111549735069275, -0.2882441282272339, 0.023774322122335434, -0.3855200707912445, 0.01347346417605877, -0.008035137318074703, 0.6146064400672913, -0.2922515869140625, -0.012568098492920399, 0.0037631227169185877, 0.0069763073697686195, -0.02204727753996849, -0.09094828367233276, 0.11423363536596298, 0.23291341960430145, 1.3662736415863037, 0.10313624143600464, -0.305885374546051, 0.0019773971289396286, -0.3187444508075714, -0.32350218296051025, 0.2169983685016632, 1.3998653888702393, -0.6637343168258667, -0.309288889169693, -0.19614581763744354]} +{"t": 13.7282, "q": [-0.3648794889450073, -0.025237392634153366, 0.016753261908888817, 0.6111123561859131, -0.2882399559020996, 0.023767108097672462, -0.3855115473270416, 0.013422331772744656, -0.008048529736697674, 0.614555299282074, -0.29226404428482056, -0.012560814619064331, 0.0037631227169185877, 0.0069763073697686195, -0.02204727753996849, -0.09334512799978256, 0.12301807105541229, 0.23728765547275543, 1.366201639175415, 0.09921739995479584, -0.30538201332092285, 0.002037318190559745, -0.31873244047164917, -0.3234902024269104, 0.21701034903526306, 1.3998533487319946, -0.6637223362922668, -0.309288889169693, -0.19619375467300415]} +{"t": 13.7449, "q": [-0.3648453950881958, -0.02520330436527729, 0.016726477071642876, 0.6110016107559204, -0.2882441282272339, 0.023774322122335434, -0.385528564453125, 0.01338824350386858, -0.008021745830774307, 0.6144530177116394, -0.29226404428482056, -0.012560814619064331, 0.0038300822488963604, 0.006999072153121233, -0.02203270047903061, -0.09581387788057327, 0.131203293800354, 0.24210532009601593, 1.3660458326339722, 0.0977792963385582, -0.30520227551460266, 0.002049302449449897, -0.3187204599380493, -0.32347822189331055, 0.21701034903526306, 1.3998533487319946, -0.6637223362922668, -0.309288889169693, -0.1961817741394043]} +{"t": 13.7618, "q": [-0.3648880124092102, -0.02519478276371956, 0.016753261908888817, 0.610890805721283, -0.2882441282272339, 0.023774322122335434, -0.38554561138153076, 0.013354155234992504, -0.007968178018927574, 0.6143763661384583, -0.2922557294368744, -0.012560850009322166, 0.003736338810995221, 0.007006673142313957, -0.02204740047454834, -0.09813882410526276, 0.13830994069576263, 0.24488565325737, 1.3659380674362183, 0.09606555104255676, -0.304914653301239, 0.0020732709672302008, -0.31873244047164917, -0.32345423102378845, 0.21701034903526306, 1.3998773097991943, -0.6637343168258667, -0.30927690863609314, -0.1961817741394043]} +{"t": 13.7785, "q": [-0.36487096548080444, -0.02513512782752514, 0.016726477071642876, 0.6108737587928772, -0.2882441282272339, 0.023774322122335434, -0.38550302386283875, 0.013439375907182693, -0.007887826301157475, 0.6141632795333862, -0.2922474443912506, -0.012560886330902576, 0.0036827712319791317, 0.007006660103797913, -0.022027842700481415, -0.10060757398605347, 0.14548850059509277, 0.24783377349376678, 1.3656504154205322, 0.09376458078622818, -0.3048906624317169, 0.002061286708340049, -0.31873244047164917, -0.3234662115573883, 0.21704630553722382, 1.3998773097991943, -0.6637582778930664, -0.30927690863609314, -0.19619375467300415]} +{"t": 13.7953, "q": [-0.36487096548080444, -0.025160694494843483, 0.016726477071642876, 0.6108396649360657, -0.2882566452026367, 0.0237959623336792, -0.38550302386283875, 0.01341380923986435, -0.007834259420633316, 0.6140525341033936, -0.2922557592391968, -0.012546390295028687, 0.0037229470908641815, 0.007006666623055935, -0.022037621587514877, -0.10325608402490616, 0.15144465863704681, 0.25084182620048523, 1.3653388023376465, 0.09187106788158417, -0.3048427402973175, 0.002061286708340049, -0.31870847940444946, -0.32347822189331055, 0.21704630553722382, 1.3998773097991943, -0.6637343168258667, -0.30927690863609314, -0.196205735206604]} +{"t": 13.8121, "q": [-0.3648794889450073, -0.02520330436527729, 0.016726477071642876, 0.6107800006866455, -0.2882567048072815, 0.0238249059766531, -0.3853922188282013, 0.013362676836550236, -0.007807475049048662, 0.6136945486068726, -0.2922515869140625, -0.01253917720168829, 0.0037095551379024982, 0.007006666623055935, -0.022037621587514877, -0.1059405505657196, 0.1567656546831131, 0.2527472972869873, 1.3648474216461182, 0.09142765402793884, -0.30483075976371765, 0.002061286708340049, -0.3187204599380493, -0.3234422504901886, 0.21707026660442352, 1.3998773097991943, -0.6637942790985107, -0.3092649281024933, -0.19621771574020386]} +{"t": 13.8288, "q": [-0.3648794889450073, -0.025245916098356247, 0.016753261908888817, 0.61066073179245, -0.2882649898529053, 0.023810407146811485, -0.38527292013168335, 0.013362676836550236, -0.007753907702863216, 0.6134644746780396, -0.2922225594520569, -0.012503133155405521, 0.003669379511848092, 0.006999078672379255, -0.02204247936606407, -0.10822954028844833, 0.1606844961643219, 0.2541973888874054, 1.3641043901443481, 0.09133177995681763, -0.30483075976371765, 0.002037318190559745, -0.3187204599380493, -0.3234422504901886, 0.21708226203918457, 1.3998773097991943, -0.6638062596321106, -0.3092409372329712, -0.196205735206604]} +{"t": 13.8456, "q": [-0.36481133103370667, -0.025305571034550667, 0.016753261908888817, 0.6106436848640442, -0.2882733643054962, 0.023839298635721207, -0.3851962089538574, 0.013303021900355816, -0.007593204732984304, 0.6132599711418152, -0.2922101318836212, -0.012438096106052399, 0.003669379511848092, 0.006999078672379255, -0.02204247936606407, -0.11008709669113159, 0.16359665989875793, 0.2558392286300659, 1.3634213209152222, 0.09130781143903732, -0.30483075976371765, 0.002037318190559745, -0.3187204599380493, -0.3234422504901886, 0.21713019907474518, 1.3998653888702393, -0.6638182401657104, -0.3092649281024933, -0.1962297111749649]} +{"t": 13.8623, "q": [-0.36481133103370667, -0.025339659303426743, 0.016726477071642876, 0.6106266379356384, -0.2882942259311676, 0.023875385522842407, -0.3851024806499481, 0.013243366964161396, -0.007459285669028759, 0.6130383610725403, -0.29219356179237366, -0.01239478588104248, 0.0036425956059247255, 0.006991483736783266, -0.022037560120224953, -0.11170496046543121, 0.1654542088508606, 0.2576129138469696, 1.3630259037017822, 0.0911640003323555, -0.3047947883605957, 0.0020253341645002365, -0.31873244047164917, -0.32340630888938904, 0.21713019907474518, 1.3998414278030396, -0.6638422012329102, -0.30927690863609314, -0.1962297111749649]} +{"t": 13.8792, "q": [-0.36481133103370667, -0.025348180904984474, 0.016699694097042084, 0.6106181144714355, -0.2883359491825104, 0.023947540670633316, -0.38504281640052795, 0.013226322829723358, -0.007311975117772818, 0.6127230525016785, -0.29216042160987854, -0.012279191054403782, 0.0036292036529630423, 0.006976294331252575, -0.022027717903256416, -0.11309513449668884, 0.16685636341571808, 0.2594105303287506, 1.3627382516860962, 0.09092431515455246, -0.3046509921550751, 0.002049302449449897, -0.31870847940444946, -0.32340630888938904, 0.21715416014194489, 1.3998773097991943, -0.6638422012329102, -0.3092649281024933, -0.1962776482105255]} +{"t": 13.896, "q": [-0.36481133103370667, -0.02539079077541828, 0.01665951870381832, 0.6105754971504211, -0.2883484661579132, 0.02396918088197708, -0.3850257694721222, 0.013217801228165627, -0.007164664100855589, 0.6124929785728455, -0.2920816242694855, -0.012142118066549301, 0.003575636073946953, 0.006907954812049866, -0.022002993151545525, -0.1143534779548645, 0.16751550137996674, 0.260836660861969, 1.3627382516860962, 0.09046891331672668, -0.3042435348033905, 0.002061286708340049, -0.31873244047164917, -0.32338234782218933, 0.21715416014194489, 1.3998653888702393, -0.6638302206993103, -0.3092649281024933, -0.1962776482105255]} +{"t": 13.9128, "q": [-0.3647516667842865, -0.025433402508497238, 0.016699694097042084, 0.6104561686515808, -0.28835687041282654, 0.023998089134693146, -0.38491499423980713, 0.013226322829723358, -0.007231623865664005, 0.6121946573257446, -0.2920110821723938, -0.012048391625285149, 0.0035086767747998238, 0.0067560626193881035, -0.021904584020376205, -0.11544404178857803, 0.16806676983833313, 0.26259833574295044, 1.3627382516860962, 0.09000153094530106, -0.3038959801197052, 0.002061286708340049, -0.3187444508075714, -0.32335835695266724, 0.21715416014194489, 1.3998653888702393, -0.6638302206993103, -0.30927690863609314, -0.19628962874412537]} +{"t": 13.9297, "q": [-0.3647005259990692, -0.025476012378931046, 0.016672909259796143, 0.6102175712585449, -0.2883818745613098, 0.024041371420025826, -0.38486385345458984, 0.013217801228165627, -0.007365542463958263, 0.6118793487548828, -0.2919986844062805, -0.011954434216022491, 0.003481892868876457, 0.0064674741588532925, -0.02173728682100773, -0.11627095192670822, 0.1682705134153366, 0.26416826248168945, 1.362762212753296, 0.0890427902340889, -0.30326083302497864, 0.002061286708340049, -0.3187204599380493, -0.3233463764190674, 0.21715416014194489, 1.3998653888702393, -0.6638302206993103, -0.30927690863609314, -0.19628962874412537]} +{"t": 13.9465, "q": [-0.3647005259990692, -0.025467490777373314, 0.01663273386657238, 0.6099703907966614, -0.2883818745613098, 0.024041371420025826, -0.38476160168647766, 0.013217801228165627, -0.007365542463958263, 0.6114447116851807, -0.2918700575828552, -0.011803096160292625, 0.003481892868876457, 0.006262420676648617, -0.02161436527967453, -0.11679825931787491, 0.16861805319786072, 0.2651749551296234, 1.362762212753296, 0.088791124522686, -0.3029012978076935, 0.002061286708340049, -0.3187444508075714, -0.3233463764190674, 0.21714217960834503, 1.3998773097991943, -0.6638302206993103, -0.30927690863609314, -0.19630160927772522]} +{"t": 13.9632, "q": [-0.3646664321422577, -0.025476012378931046, 0.01664612628519535, 0.6097573637962341, -0.288361132144928, 0.024048691615462303, -0.38458263874053955, 0.013243366964161396, -0.007378934416919947, 0.6110357046127319, -0.2918161153793335, -0.011723758652806282, 0.003468500915914774, 0.005973867140710354, -0.02142777480185032, -0.11730159819126129, 0.1690494865179062, 0.26696059107780457, 1.3627982139587402, 0.08831175416707993, -0.3023500144481659, 0.002061286708340049, -0.3187444508075714, -0.3233463764190674, 0.21716614067554474, 1.3998653888702393, -0.6638422012329102, -0.3092649281024933, -0.19632558524608612]} +{"t": 13.9801, "q": [-0.3647090494632721, -0.025467490777373314, 0.016672909259796143, 0.6096806526184082, -0.2883777618408203, 0.024048620834946632, -0.3844377398490906, 0.013234845362603664, -0.007499461527913809, 0.610745906829834, -0.2918119728565216, -0.01171654649078846, 0.0034551091957837343, 0.00571572408080101, -0.02128046564757824, -0.11774501204490662, 0.16966067254543304, 0.2683267891407013, 1.3627982139587402, 0.08803611993789673, -0.3020264506340027, 0.002061286708340049, -0.3187444508075714, -0.32333439588546753, 0.21715416014194489, 1.3998773097991943, -0.6638302206993103, -0.30925291776657104, -0.19634954631328583]} +{"t": 13.9971, "q": [-0.36469200253486633, -0.0254504457116127, 0.016686301678419113, 0.6095272898674011, -0.2883652448654175, 0.024026980623602867, -0.38430991768836975, 0.013234845362603664, -0.007526245433837175, 0.6104987859725952, -0.2918119430541992, -0.011745485477149487, 0.003468500915914774, 0.005457570310682058, -0.02111361175775528, -0.118248350918293, 0.17055949568748474, 0.2697529196739197, 1.3628820180892944, 0.08782040327787399, -0.3015470802783966, 0.002037318190559745, -0.3187204599380493, -0.32333439588546753, 0.21716614067554474, 1.399889349937439, -0.6638661623001099, -0.30925291776657104, -0.19634954631328583]} +{"t": 14.0138, "q": [-0.36469200253486633, -0.025416357442736626, 0.01664612628519535, 0.6093738675117493, -0.2883693277835846, 0.024005267769098282, -0.3842332065105438, 0.013260412029922009, -0.007606596685945988, 0.6102260947227478, -0.29180362820625305, -0.011759981513023376, 0.003481892868876457, 0.005313309375196695, -0.021020369604229927, -0.11872772127389908, 0.1715421974658966, 0.2706757187843323, 1.3628580570220947, 0.08771254122257233, -0.301223486661911, 0.002049302449449897, -0.31873244047164917, -0.3233463764190674, 0.21714217960834503, 1.3998773097991943, -0.6638422012329102, -0.30925291776657104, -0.19633756577968597]} +{"t": 14.0306, "q": [-0.36468347907066345, -0.02538226917386055, 0.016699694097042084, 0.6091267466545105, -0.28834855556488037, 0.023998107761144638, -0.38404572010040283, 0.013362676836550236, -0.007780691608786583, 0.6098170280456543, -0.2917953133583069, -0.011774477548897266, 0.003481892868876457, 0.00529053108766675, -0.021005647256970406, -0.11918312311172485, 0.17277657985687256, 0.27145469188690186, 1.36282217502594, 0.08773650974035263, -0.3009718358516693, 0.002049302449449897, -0.3187444508075714, -0.32333439588546753, 0.21714217960834503, 1.3998653888702393, -0.6638182401657104, -0.30925291776657104, -0.19634954631328583]} +{"t": 14.0473, "q": [-0.36454713344573975, -0.0253140926361084, 0.016699694097042084, 0.6088199019432068, -0.28833603858947754, 0.023976465687155724, -0.3838241696357727, 0.013405287638306618, -0.007928002625703812, 0.6094505786895752, -0.29178285598754883, -0.01176730077713728, 0.0034952848218381405, 0.005313309375196695, -0.021020369604229927, -0.11967447400093079, 0.17420269548892975, 0.2718741297721863, 1.3628101348876953, 0.08785635232925415, -0.3009238839149475, 0.002061286708340049, -0.31873244047164917, -0.3233463764190674, 0.21716614067554474, 1.3998653888702393, -0.66385418176651, -0.30925291776657104, -0.19637350738048553]} +{"t": 14.0641, "q": [-0.3643766939640045, -0.02526295930147171, 0.016726477071642876, 0.6085813045501709, -0.28833186626434326, 0.023969251662492752, -0.38367927074432373, 0.013524597510695457, -0.00799496192485094, 0.6092971563339233, -0.291791170835495, -0.01176726445555687, 0.0035086767747998238, 0.005328495055437088, -0.021030185744166374, -0.12017781287431717, 0.1754370778799057, 0.2720658779144287, 1.3627861738204956, 0.0878683403134346, -0.3009238839149475, 0.002061286708340049, -0.3187204599380493, -0.32333439588546753, 0.21716614067554474, 1.3998653888702393, -0.6638302206993103, -0.30922895669937134, -0.19637350738048553]} +{"t": 14.0809, "q": [-0.3642403483390808, -0.025228871032595634, 0.016726477071642876, 0.6083341836929321, -0.28831934928894043, 0.023947611451148987, -0.38361111283302307, 0.013541641645133495, -0.008008353412151337, 0.6092289686203003, -0.2917869985103607, -0.011788973584771156, 0.003468500915914774, 0.005358857102692127, -0.02103027142584324, -0.12087289243936539, 0.17661152780056, 0.27212581038475037, 1.3627861738204956, 0.08792825788259506, -0.3009478747844696, 0.0020732709672302008, -0.3187204599380493, -0.3233463764190674, 0.21716614067554474, 1.3998653888702393, -0.6638661623001099, -0.3092409372329712, -0.19636152684688568]} +{"t": 14.0977, "q": [-0.36421477794647217, -0.02521182782948017, 0.016739869490265846, 0.6081125736236572, -0.28831514716148376, 0.023940378800034523, -0.3835940659046173, 0.013609818182885647, -0.008021745830774307, 0.6091267466545105, -0.2917869985103607, -0.011788973584771156, 0.0036292036529630423, 0.005358857102692127, -0.02103027142584324, -0.12174774706363678, 0.1774863749742508, 0.2718741297721863, 1.362774133682251, 0.08863533288240433, -0.3009478747844696, 0.002181129064410925, -0.31873244047164917, -0.3233463764190674, 0.21715416014194489, 1.3998773097991943, -0.66385418176651, -0.3092169761657715, -0.19638550281524658]} +{"t": 14.1145, "q": [-0.3642062544822693, -0.025220349431037903, 0.016753261908888817, 0.6078313589096069, -0.28827768564224243, 0.023904381319880486, -0.3835940659046173, 0.013626862317323685, -0.008182448334991932, 0.6090500354766846, -0.29178696870803833, -0.011803451925516129, 0.003816690295934677, 0.0053892177529633045, -0.021030357107520103, -0.12264656275510788, 0.17802566289901733, 0.2715984880924225, 1.3627861738204956, 0.08919858932495117, -0.3009478747844696, 0.002265018643811345, -0.3187444508075714, -0.3233104348182678, 0.21716614067554474, 1.3998653888702393, -0.6638422012329102, -0.3092409372329712, -0.19638550281524658]} +{"t": 14.1312, "q": [-0.36422330141067505, -0.02521182782948017, 0.016713086515665054, 0.6076098084449768, -0.2882443070411682, 0.02384665422141552, -0.38353440165519714, 0.013609818182885647, -0.008369934745132923, 0.6088966131210327, -0.2917745113372803, -0.011825195513665676, 0.003937217406928539, 0.005366445519030094, -0.021025406196713448, -0.12347347289323807, 0.17839717864990234, 0.2712749242782593, 1.3627861738204956, 0.08967795968055725, -0.3009478747844696, 0.0023129554465413094, -0.31875643134117126, -0.3233224153518677, 0.21721407771110535, 1.3998653888702393, -0.66385418176651, -0.30922895669937134, -0.19638550281524658]} +{"t": 14.1482, "q": [-0.36422330141067505, -0.025177739560604095, 0.016699694097042084, 0.6074904799461365, -0.2882235050201416, 0.02383951097726822, -0.38344067335128784, 0.013643906451761723, -0.008637772873044014, 0.6087773442268372, -0.2917661964893341, -0.011854169890284538, 0.003964001312851906, 0.005366445519030094, -0.021025406196713448, -0.12430038303136826, 0.17846907675266266, 0.27117905020713806, 1.3628101348876953, 0.08989367634057999, -0.30093589425086975, 0.0023129554465413094, -0.31878039240837097, -0.3233224153518677, 0.21716614067554474, 1.3998414278030396, -0.6638422012329102, -0.30922895669937134, -0.19638550281524658]} +{"t": 14.165, "q": [-0.364155113697052, -0.025101039558649063, 0.016672909259796143, 0.607379674911499, -0.2882235050201416, 0.02383951097726822, -0.38339805603027344, 0.013712083920836449, -0.00873151607811451, 0.6086750626564026, -0.291770339012146, -0.011846921406686306, 0.0039506093598902225, 0.005374038126319647, -0.02103031426668167, -0.12500745058059692, 0.1784331351518631, 0.27115508913993835, 1.3628101348876953, 0.0899895504117012, -0.3009478747844696, 0.0023369239643216133, -0.3188043534755707, -0.32333439588546753, 0.21716614067554474, 1.3998414278030396, -0.66385418176651, -0.30922895669937134, -0.19638550281524658]} +{"t": 14.1817, "q": [-0.3641210198402405, -0.024981729686260223, 0.016672909259796143, 0.6072859168052673, -0.288231760263443, 0.023810531944036484, -0.3832702040672302, 0.013805827125906944, -0.008744907565414906, 0.608504593372345, -0.29178282618522644, -0.011825177818536758, 0.00388364982791245, 0.005358857102692127, -0.02103027142584324, -0.12577444314956665, 0.17831328511238098, 0.27101126313209534, 1.3628101348876953, 0.09010939300060272, -0.30095985531806946, 0.0023369239643216133, -0.3188043534755707, -0.3233104348182678, 0.2171781361103058, 1.3998533487319946, -0.6638422012329102, -0.3092169761657715, -0.19639748334884644]} +{"t": 14.1985, "q": [-0.36403581500053406, -0.024930598214268684, 0.016699694097042084, 0.6071836948394775, -0.28823596239089966, 0.023832209408283234, -0.3831849992275238, 0.013916614465415478, -0.008691340684890747, 0.6083768010139465, -0.29175785183906555, -0.011868683621287346, 0.0037497307639569044, 0.0053512644954025745, -0.021025363355875015, -0.12648151814937592, 0.17824138700962067, 0.27095136046409607, 1.36282217502594, 0.0902651846408844, -0.3009478747844696, 0.0023608924821019173, -0.31881633400917053, -0.3233224153518677, 0.21715416014194489, 1.3998533487319946, -0.6638182401657104, -0.3092409372329712, -0.19637350738048553]} +{"t": 14.2155, "q": [-0.36395910382270813, -0.02490503154695034, 0.016726477071642876, 0.6071069836616516, -0.2882317900657654, 0.023824995383620262, -0.38312533497810364, 0.013967746868729591, -0.008677948266267776, 0.608274519443512, -0.29175370931625366, -0.011875932104885578, 0.003562244353815913, 0.005358857102692127, -0.02103027142584324, -0.12709270417690277, 0.1781574934720993, 0.27095136046409607, 1.362774133682251, 0.09046891331672668, -0.30095985531806946, 0.0023728765081614256, -0.3188043534755707, -0.32333439588546753, 0.21716614067554474, 1.3998533487319946, -0.66385418176651, -0.30925291776657104, -0.19638550281524658]} +{"t": 14.2322, "q": [-0.3639164865016937, -0.02489650808274746, 0.016726477071642876, 0.6070132255554199, -0.28823596239089966, 0.023832209408283234, -0.38306570053100586, 0.014010357670485973, -0.008677948266267776, 0.6081722378730774, -0.2917536795139313, -0.011890391819179058, 0.003575636073946953, 0.005366445519030094, -0.021025406196713448, -0.12759605050086975, 0.1781335175037384, 0.27095136046409607, 1.3627501726150513, 0.09052883833646774, -0.3009478747844696, 0.0024208135437220335, -0.3188043534755707, -0.32329845428466797, 0.21716614067554474, 1.3998653888702393, -0.6638422012329102, -0.30920499563217163, -0.19638550281524658]} +{"t": 14.249, "q": [-0.3638909161090851, -0.02489650808274746, 0.016739869490265846, 0.6069024205207825, -0.2882317900657654, 0.023824995383620262, -0.3829975128173828, 0.013993313536047935, -0.008677948266267776, 0.6080614328384399, -0.29175370931625366, -0.011875932104885578, 0.003481892868876457, 0.005366445519030094, -0.021025406196713448, -0.12805144488811493, 0.1781335175037384, 0.27093935012817383, 1.362762212753296, 0.09055280685424805, -0.30095985531806946, 0.0024567660875618458, -0.31881633400917053, -0.32333439588546753, 0.21714217960834503, 1.3998533487319946, -0.66385418176651, -0.3092169761657715, -0.19637350738048553]} +{"t": 14.2659, "q": [-0.3638398051261902, -0.024922074750065804, 0.016753261908888817, 0.6067234873771667, -0.2882276177406311, 0.02381778135895729, -0.38298046588897705, 0.01398479100316763, -0.00865116436034441, 0.6079080700874329, -0.29175370931625366, -0.011875932104885578, 0.0034952848218381405, 0.005366445519030094, -0.021025406196713448, -0.12844692170619965, 0.17809757590293884, 0.27093935012817383, 1.3627382516860962, 0.09073256701231003, -0.3009478747844696, 0.002576608443632722, -0.3188043534755707, -0.32333439588546753, 0.21716614067554474, 1.3998533487319946, -0.6638422012329102, -0.30920499563217163, -0.19636152684688568]} +{"t": 14.2826, "q": [-0.3638227581977844, -0.024913553148508072, 0.01678004488348961, 0.6066893935203552, -0.2882317900657654, 0.023824995383620262, -0.382869690656662, 0.013993313536047935, -0.00865116436034441, 0.6078313589096069, -0.2917453646659851, -0.011904887855052948, 0.003468500915914774, 0.005366445519030094, -0.021025406196713448, -0.12869858741760254, 0.17807359993457794, 0.2709153890609741, 1.362762212753296, 0.09079249203205109, -0.30098381638526917, 0.002636529505252838, -0.3187923729419708, -0.32333439588546753, 0.21715416014194489, 1.3998533487319946, -0.6638422012329102, -0.30920499563217163, -0.19636152684688568]} +{"t": 14.2994, "q": [-0.36376309394836426, -0.024930598214268684, 0.016766652464866638, 0.6066638231277466, -0.28823596239089966, 0.023832209408283234, -0.38279297947883606, 0.01398479100316763, -0.00865116436034441, 0.6077461242675781, -0.29175370931625366, -0.011875932104885578, 0.003441717242822051, 0.00536644970998168, -0.021035179495811462, -0.12886637449264526, 0.1778578907251358, 0.2708914279937744, 1.362774133682251, 0.09082844108343124, -0.30095985531806946, 0.0029241510201245546, -0.3187923729419708, -0.32333439588546753, 0.21714217960834503, 1.3998773097991943, -0.6638661623001099, -0.30920499563217163, -0.19631358981132507]} +{"t": 14.3164, "q": [-0.36366936564445496, -0.02495616301894188, 0.016753261908888817, 0.6065444946289062, -0.28824010491371155, 0.023824959993362427, -0.38261401653289795, 0.01398479100316763, -0.008677948266267776, 0.6075416207313538, -0.29175785183906555, -0.011868683621287346, 0.003441717242822051, 0.005374038126319647, -0.02103031426668167, -0.12899820506572723, 0.17764216661453247, 0.27087944746017456, 1.3627861738204956, 0.09087637811899185, -0.3009718358516693, 0.003067961661145091, -0.3187923729419708, -0.32333439588546753, 0.21715416014194489, 1.3998653888702393, -0.6638422012329102, -0.3091930150985718, -0.19630160927772522]} +{"t": 14.3331, "q": [-0.36353299021720886, -0.024939119815826416, 0.016726477071642876, 0.6064081788063049, -0.28823596239089966, 0.023832209408283234, -0.38242653012275696, 0.013976269401609898, -0.008677948266267776, 0.6073455810546875, -0.29175370931625366, -0.011875932104885578, 0.0034015413839370012, 0.00536644970998168, -0.021035179495811462, -0.1289862096309662, 0.177210733294487, 0.27071166038513184, 1.362762212753296, 0.0909123346209526, -0.30098381638526917, 0.0032597093377262354, -0.3188043534755707, -0.32333439588546753, 0.21714217960834503, 1.3998653888702393, -0.6637822389602661, -0.3091810345649719, -0.19628962874412537]} +{"t": 14.3499, "q": [-0.36336255073547363, -0.02495616301894188, 0.016699694097042084, 0.6062547564506531, -0.2882443070411682, 0.02384665422141552, -0.3821708559989929, 0.01395922526717186, -0.008691340684890747, 0.6071069836616516, -0.29175785183906555, -0.011868683621287346, 0.0034283252898603678, 0.005366445519030094, -0.021025406196713448, -0.12892629206180573, 0.1766834259033203, 0.2705199122428894, 1.362774133682251, 0.09108011424541473, -0.300995796918869, 0.0034274884965270758, -0.31881633400917053, -0.3233224153518677, 0.21714217960834503, 1.3998653888702393, -0.6638182401657104, -0.3091810345649719, -0.19626565277576447]} +{"t": 14.3666, "q": [-0.3631580173969269, -0.02495616301894188, 0.01665951870381832, 0.6060076355934143, -0.2882484197616577, 0.023824941366910934, -0.38188111782073975, 0.013908091932535172, -0.008771691471338272, 0.6068769097328186, -0.29175785183906555, -0.011868683621287346, 0.0034551091957837343, 0.005366445519030094, -0.021025406196713448, -0.1288304179906845, 0.17622803151607513, 0.27028024196624756, 1.3627861738204956, 0.09134376794099808, -0.30098381638526917, 0.0036312201991677284, -0.3187923729419708, -0.3233224153518677, 0.21709424257278442, 1.3998653888702393, -0.6637942790985107, -0.30916905403137207, -0.19621771574020386]} +{"t": 14.3834, "q": [-0.3628597557544708, -0.024981729686260223, 0.01664612628519535, 0.6057690382003784, -0.2882443070411682, 0.02384665422141552, -0.3815913498401642, 0.013882526196539402, -0.008785083889961243, 0.6066723465919495, -0.29175788164138794, -0.011854187585413456, 0.0034952848218381405, 0.005374033469706774, -0.021020542830228806, -0.12877050042152405, 0.17565278708934784, 0.27002856135368347, 1.3627982139587402, 0.0914396420121193, -0.30100777745246887, 0.0037151097785681486, -0.3188043534755707, -0.3233224153518677, 0.21707026660442352, 1.3998653888702393, -0.6637462973594666, -0.30915704369544983, -0.19621771574020386]} +{"t": 14.4001, "q": [-0.3627234101295471, -0.024998774752020836, 0.016592558473348618, 0.6055900454521179, -0.28825676441192627, 0.023839369416236877, -0.3813442289829254, 0.013865482062101364, -0.008785083889961243, 0.6064252257347107, -0.2917661964893341, -0.011825230903923512, 0.00354885240085423, 0.005358857102692127, -0.02103027142584324, -0.12867462635040283, 0.17500564455986023, 0.26960912346839905, 1.36282217502594, 0.0917392447590828, -0.30100777745246887, 0.0038469363935291767, -0.3188043534755707, -0.3233224153518677, 0.21707026660442352, 1.3998653888702393, -0.6637343168258667, -0.3091330826282501, -0.19619375467300415]} +{"t": 14.4169, "q": [-0.36243364214897156, -0.0250158179551363, 0.016565775498747826, 0.6053770184516907, -0.2882443070411682, 0.02384665422141552, -0.38096925616264343, 0.013865482062101364, -0.008838650770485401, 0.6061780452728271, -0.29176202416419983, -0.011846939101815224, 0.003468500915914774, 0.00536644970998168, -0.021035179495811462, -0.12867462635040283, 0.17447833716869354, 0.2692495882511139, 1.36282217502594, 0.09177519381046295, -0.30100777745246887, 0.003942809998989105, -0.3188043534755707, -0.3233224153518677, 0.21707026660442352, 1.3998653888702393, -0.6637822389602661, -0.3091330826282501, -0.19616977870464325]} +{"t": 14.4336, "q": [-0.3621950149536133, -0.02503286302089691, 0.01648542284965515, 0.6051724553108215, -0.2882484495639801, 0.023839404806494713, -0.38059428334236145, 0.013856959529221058, -0.008905611000955105, 0.6059138774871826, -0.29176202416419983, -0.011861417442560196, 0.0034952848218381405, 0.005366445519030094, -0.021025406196713448, -0.12861470878124237, 0.17387911677360535, 0.2688421308994293, 1.3628461360931396, 0.0918111503124237, -0.3010197579860687, 0.00407463638111949, -0.3188043534755707, -0.3233224153518677, 0.21705828607082367, 1.3998653888702393, -0.6638182401657104, -0.30914506316185, -0.19609788060188293]} +{"t": 14.4504, "q": [-0.3619478940963745, -0.025049906224012375, 0.016418464481830597, 0.6050275564193726, -0.2882443070411682, 0.02384665422141552, -0.3802022635936737, 0.013848437927663326, -0.009012745693325996, 0.6056411862373352, -0.29176202416419983, -0.011846939101815224, 0.0035354604478925467, 0.005366445519030094, -0.021025406196713448, -0.12854279577732086, 0.17347165942192078, 0.26848259568214417, 1.3628580570220947, 0.09184709936380386, -0.3010197579860687, 0.0041465419344604015, -0.3188283145427704, -0.3233224153518677, 0.21704630553722382, 1.3998533487319946, -0.6637822389602661, -0.3091330826282501, -0.19608590006828308]} +{"t": 14.4671, "q": [-0.36174336075782776, -0.025041384622454643, 0.01629793643951416, 0.6047719120979309, -0.2882484793663025, 0.02385386824607849, -0.37994658946990967, 0.013856959529221058, -0.009093097411096096, 0.6053940057754517, -0.29175788164138794, -0.011839726939797401, 0.003562244353815913, 0.005358857102692127, -0.02103027142584324, -0.12826716899871826, 0.17311213910579681, 0.268123060464859, 1.3628461360931396, 0.09191900491714478, -0.30103176832199097, 0.004230431281030178, -0.3188403248786926, -0.32333439588546753, 0.21704630553722382, 1.3998653888702393, -0.6638182401657104, -0.3091330826282501, -0.19601398706436157]} +{"t": 14.4839, "q": [-0.3614024817943573, -0.025041384622454643, 0.016244368627667427, 0.6045588850975037, -0.2882443070411682, 0.02384665422141552, -0.3795716166496277, 0.013865482062101364, -0.009240408428013325, 0.60513836145401, -0.2917495369911194, -0.011868701316416264, 0.003669379511848092, 0.005358857102692127, -0.02103027142584324, -0.12789565324783325, 0.17290839552879333, 0.267667680978775, 1.3628461360931396, 0.09202686697244644, -0.3010557293891907, 0.004290352575480938, -0.31903207302093506, -0.32333439588546753, 0.21703432500362396, 1.3998414278030396, -0.6637822389602661, -0.30912110209465027, -0.19596605002880096]} diff --git a/Data/G1/photo_G1.jsonl b/Data/G1/photo_G1.jsonl new file mode 100644 index 0000000..1884a8e --- /dev/null +++ b/Data/G1/photo_G1.jsonl @@ -0,0 +1,1235 @@ +{"meta": {"hz": 60.0, "motors": 29}} +{"t": 0.0, "q": [-0.36469200253486633, 0.005024638492614031, -0.0068030827678740025, 0.6281225085258484, -0.2959901988506317, 0.0030578807927668095, -0.35720106959342957, -0.018075406551361084, 0.0067896912805736065, 0.616123378276825, -0.32192370295524597, 0.021264642477035522, 0.0025712440256029367, 0.008166499435901642, -0.04197746515274048, 0.2890954613685608, 0.2169743925333023, -0.005261074751615524, 0.9791111946105957, 0.16600549221038818, 0.06187455356121063, -0.04878778010606766, 0.29237914085388184, -0.22161228954792023, 0.027479829266667366, 0.979458749294281, -0.176012322306633, 0.034334804862737656, 0.0033076461404561996]} +{"t": 0.0167, "q": [-0.3647516667842865, 0.005033161025494337, -0.006829866673797369, 0.6281054615974426, -0.2959860861301422, 0.0030506770126521587, -0.35724368691444397, -0.018066884949803352, 0.00676290737465024, 0.6160637140274048, -0.3219235837459564, 0.021250111982226372, 0.003240838646888733, 0.008668643422424793, -0.042542554438114166, 0.2880648076534271, 0.21500898897647858, -0.005045359022915363, 0.9801898002624512, 0.16608937084674835, 0.06235392391681671, -0.04893159121274948, 0.2917439937591553, -0.22042585909366608, 0.02816293016076088, 0.9806691408157349, -0.17618009448051453, 0.03450258448719978, 0.0032836776226758957]} +{"t": 0.0335, "q": [-0.3648028075695038, 0.005016116891056299, -0.006816474720835686, 0.6281225085258484, -0.29597359895706177, 0.0030724613461643457, -0.3573288917541504, -0.018066884949803352, 0.00676290737465024, 0.6161063313484192, -0.3218702971935272, 0.021300384774804115, 0.0036024199798703194, 0.008858924731612206, -0.04290411248803139, 0.28708210587501526, 0.2136307954788208, -0.0049614692106842995, 0.9816518425941467, 0.16622120141983032, 0.06284527480602264, -0.04897952824831009, 0.2911088168621063, -0.2189997285604477, 0.028618330135941505, 0.982454776763916, -0.17618009448051453, 0.03464639559388161, 0.0032716935966163874]} +{"t": 0.0504, "q": [-0.36476871371269226, 0.004999072756618261, -0.0068030827678740025, 0.6281139850616455, -0.29598185420036316, 0.0030724038369953632, -0.3573203682899475, -0.018066884949803352, 0.006776299327611923, 0.6161319017410278, -0.32188284397125244, 0.021322278305888176, 0.0036827712319791317, 0.009201307781040668, -0.04323715344071388, 0.2862911522388458, 0.21144966781139374, -0.005021390505135059, 0.9824068546295166, 0.16623318195343018, 0.06297710537910461, -0.049015481024980545, 0.2905695140361786, -0.2169743925333023, 0.029205556958913803, 0.9835094213485718, -0.176240012049675, 0.03464639559388161, 0.0032477250788360834]} +{"t": 0.0673, "q": [-0.36476871371269226, 0.005016116891056299, -0.006829866673797369, 0.6281139850616455, -0.29598185420036316, 0.0030724038369953632, -0.35730332136154175, -0.018075406551361084, 0.006776299327611923, 0.6161148548126221, -0.32189109921455383, 0.02132236398756504, 0.0037229470908641815, 0.009688233025372028, -0.0436747707426548, 0.28576385974884033, 0.20865733921527863, -0.005165201146155596, 0.9827903509140015, 0.16614930331707, 0.06301305443048477, -0.04909937083721161, 0.29015007615089417, -0.2143258899450302, 0.02990064211189747, 0.9841924905776978, -0.1762879490852356, 0.0346224270761013, 0.0033196303993463516]} +{"t": 0.0841, "q": [-0.3647601902484894, 0.005007594358175993, -0.0068030827678740025, 0.6281054615974426, -0.2959984242916107, 0.0030722888186573982, -0.357286274433136, -0.018083928152918816, 0.00676290737465024, 0.6161148548126221, -0.32188692688941956, 0.02131504751741886, 0.003776514669880271, 0.01000784058123827, -0.04408187046647072, 0.28530845046043396, 0.20546954870224, -0.00529702752828598, 0.9830660223960876, 0.16619724035263062, 0.06303702294826508, -0.04909937083721161, 0.28968268632888794, -0.21177324652671814, 0.03075152263045311, 0.9846958518028259, -0.17627596855163574, 0.034598458558321, 0.0033435989171266556]} +{"t": 0.1008, "q": [-0.3647005259990692, 0.005007594358175993, -0.0068030827678740025, 0.6281054615974426, -0.29600268602371216, 0.0030505438335239887, -0.3572692573070526, -0.018083928152918816, 0.006816474720835686, 0.6161745190620422, -0.32188692688941956, 0.02131504751741886, 0.0037631227169185877, 0.010228587314486504, -0.04448351636528969, 0.2849968671798706, 0.20265324413776398, -0.005344964563846588, 0.9832097887992859, 0.16619724035263062, 0.06300107389688492, -0.04911135509610176, 0.2892392873764038, -0.20960409939289093, 0.031254857778549194, 0.9848636388778687, -0.17618009448051453, 0.03461044281721115, 0.003403519978746772]} +{"t": 0.1175, "q": [-0.3647431433200836, 0.004999072756618261, -0.0067896912805736065, 0.6281054615974426, -0.2959901988506317, 0.0030578807927668095, -0.3572692573070526, -0.018075406551361084, 0.006829866673797369, 0.6161489486694336, -0.3219071924686432, 0.021264471113681793, 0.0037631227169185877, 0.010274476371705532, -0.04491918534040451, 0.2847691476345062, 0.2001485526561737, -0.00535694882273674, 0.9832697510719299, 0.16618524491786957, 0.06302504241466522, -0.049135323613882065, 0.28890371322631836, -0.2079143226146698, 0.031446605920791626, 0.9849954843521118, -0.17620407044887543, 0.034598458558321, 0.003367567202076316]} +{"t": 0.1343, "q": [-0.36473461985588074, 0.004999072756618261, -0.006816474720835686, 0.6281054615974426, -0.2959901988506317, 0.0030578807927668095, -0.35726073384284973, -0.018075406551361084, 0.006829866673797369, 0.6161574721336365, -0.3219235837459564, 0.021250111982226372, 0.003776514669880271, 0.010183488950133324, -0.04534442350268364, 0.2846013903617859, 0.19758392870426178, -0.00535694882273674, 0.9833056926727295, 0.16624517738819122, 0.06301305443048477, -0.04912333935499191, 0.28873592615127563, -0.20654812455177307, 0.03154247999191284, 0.9850913286209106, -0.17625200748443604, 0.03461044281721115, 0.003367567202076316]} +{"t": 0.151, "q": [-0.36473461985588074, 0.004999072756618261, -0.006816474720835686, 0.6281139850616455, -0.2959819734096527, 0.0030434729997068644, -0.3572692573070526, -0.018066884949803352, 0.0068030827678740025, 0.6161574721336365, -0.3219154179096222, 0.021264556795358658, 0.0037229470908641815, 0.01026742160320282, -0.04577545449137688, 0.2844815254211426, 0.19537882506847382, -0.005380917340517044, 0.9834135174751282, 0.16620922088623047, 0.06302504241466522, -0.04914730787277222, 0.28862807154655457, -0.2055414468050003, 0.031554464250802994, 0.9853429794311523, -0.176240012049675, 0.034598458558321, 0.003367567202076316]} +{"t": 0.1677, "q": [-0.3647431433200836, 0.004999072756618261, -0.006816474720835686, 0.6281139850616455, -0.29600268602371216, 0.0030505438335239887, -0.357286274433136, -0.01805836334824562, 0.006829866673797369, 0.6161659955978394, -0.32192370295524597, 0.021264642477035522, 0.003776514669880271, 0.010320991277694702, -0.046275269240140915, 0.2844815254211426, 0.19356921315193176, -0.005464806687086821, 0.9834614992141724, 0.16616128385066986, 0.06303702294826508, -0.049195244908332825, 0.28865206241607666, -0.2046665996313095, 0.0315784327685833, 0.9856905341148376, -0.176240012049675, 0.03458647429943085, 0.0033316146582365036]} +{"t": 0.1845, "q": [-0.3647431433200836, 0.005007594358175993, -0.006829866673797369, 0.6281054615974426, -0.2959944009780884, 0.0030506013426929712, -0.357286274433136, -0.018075406551361084, 0.006776299327611923, 0.6161830425262451, -0.3219360113143921, 0.021257514134049416, 0.003776514669880271, 0.010473380796611309, -0.046731263399124146, 0.2844815254211426, 0.19238276779651642, -0.005560680292546749, 0.9836052656173706, 0.16614930331707, 0.06304901093244553, -0.04920722916722298, 0.2886640429496765, -0.2039475440979004, 0.0315784327685833, 0.9860860109329224, -0.176240012049675, 0.03464639559388161, 0.003367567202076316]} +{"t": 0.2013, "q": [-0.36476871371269226, 0.005016116891056299, -0.006829866673797369, 0.6281139850616455, -0.29599863290786743, 0.0030288745183497667, -0.3572692573070526, -0.018075406551361084, 0.006776299327611923, 0.6161830425262451, -0.321960985660553, 0.021286791190505028, 0.0037899063900113106, 0.010694136843085289, -0.047113679349422455, 0.2844935357570648, 0.19175958633422852, -0.005608617328107357, 0.9837011694908142, 0.16617326438426971, 0.06307297945022583, -0.04920722916722298, 0.28867602348327637, -0.20340825617313385, 0.0315784327685833, 0.9864215850830078, -0.17620407044887543, 0.03464639559388161, 0.0033555831760168076]} +{"t": 0.2181, "q": [-0.36473461985588074, 0.005007594358175993, -0.0068566505797207355, 0.6281054615974426, -0.2960110604763031, 0.003021555719897151, -0.3572777807712555, -0.018066884949803352, 0.0067896912805736065, 0.6162086129188538, -0.32197320461273193, 0.021265152841806412, 0.003776514669880271, 0.010846433229744434, -0.04743153974413872, 0.2844815254211426, 0.19154387712478638, -0.0055486964993178844, 0.9837011694908142, 0.16613730788230896, 0.06308495998382568, -0.04921921342611313, 0.2886880040168762, -0.20308467745780945, 0.0315784327685833, 0.9867451786994934, -0.17621605098247528, 0.03464639559388161, 0.0033316146582365036]} +{"t": 0.2348, "q": [-0.364717572927475, 0.005016116891056299, -0.006843258626759052, 0.6281054615974426, -0.2959986627101898, 0.003014409216120839, -0.3572692573070526, -0.01804983988404274, 0.0067896912805736065, 0.616191565990448, -0.32199347019195557, 0.021214559674263, 0.0037631227169185877, 0.011013918556272984, -0.04768023639917374, 0.28445756435394287, 0.19150792062282562, -0.0055367122404277325, 0.9836891889572144, 0.16613730788230896, 0.06304901093244553, -0.049195244908332825, 0.2886160910129547, -0.20280905067920685, 0.031566448509693146, 0.9869968295097351, -0.1762639880180359, 0.03464639559388161, 0.0033196303993463516]} +{"t": 0.2516, "q": [-0.3647090494632721, 0.005024638492614031, -0.006816474720835686, 0.6281054615974426, -0.29600274562835693, 0.003036078531295061, -0.3572692573070526, -0.018075406551361084, 0.0067896912805736065, 0.6162341833114624, -0.3219852149486542, 0.021214473992586136, 0.0037497307639569044, 0.011067313142120838, -0.04793325439095497, 0.28445756435394287, 0.19149594008922577, -0.005476790945976973, 0.9837011694908142, 0.16616128385066986, 0.06303702294826508, -0.04918326064944267, 0.28860411047935486, -0.20265324413776398, 0.031554464250802994, 0.9873204231262207, -0.17627596855163574, 0.03464639559388161, 0.003367567202076316]} +{"t": 0.2683, "q": [-0.3647005259990692, 0.005016116891056299, -0.006829866673797369, 0.6281054615974426, -0.2960069179534912, 0.0030288170091807842, -0.3572692573070526, -0.018075406551361084, 0.0068030827678740025, 0.6162682771682739, -0.3219852149486542, 0.021214473992586136, 0.003776514669880271, 0.01110542006790638, -0.04805736988782883, 0.2844815254211426, 0.19151990115642548, -0.005452822428196669, 0.9836891889572144, 0.16619724035263062, 0.06308495998382568, -0.04918326064944267, 0.2886160910129547, -0.20258134603500366, 0.031554464250802994, 0.9875361323356628, -0.176240012049675, 0.03464639559388161, 0.0033555831760168076]} +{"t": 0.285, "q": [-0.3647005259990692, 0.005007594358175993, -0.006829866673797369, 0.6281139850616455, -0.2960110306739807, 0.0030360210221260786, -0.3572777807712555, -0.018075406551361084, 0.006816474720835686, 0.6162768006324768, -0.32198941707611084, 0.021221771836280823, 0.0037631227169185877, 0.01112067699432373, -0.04813675209879875, 0.2844815254211426, 0.19151990115642548, -0.005452822428196669, 0.9837011694908142, 0.16623318195343018, 0.06308495998382568, -0.04917127639055252, 0.2886400520801544, -0.2025453895330429, 0.031554464250802994, 0.9877278804779053, -0.17615613341331482, 0.03464639559388161, 0.0033435989171266556]} +{"t": 0.3018, "q": [-0.3647090494632721, 0.005016116891056299, -0.006816474720835686, 0.6281225085258484, -0.2960151433944702, 0.0030432248022407293, -0.3572692573070526, -0.018075406551361084, 0.0068030827678740025, 0.6163108944892883, -0.32197698950767517, 0.02121438831090927, 0.0037631227169185877, 0.01106746681034565, -0.04819093644618988, 0.2845055162906647, 0.19149594008922577, -0.005464806687086821, 0.9837490916252136, 0.16622120141983032, 0.06309694796800613, -0.04918326064944267, 0.2886160910129547, -0.2025214284658432, 0.03154247999191284, 0.987895667552948, -0.17621605098247528, 0.03464639559388161, 0.003367567202076316]} +{"t": 0.3185, "q": [-0.36472609639167786, 0.005024638492614031, -0.006829866673797369, 0.6281310319900513, -0.29600274562835693, 0.003036078531295061, -0.3572692573070526, -0.018066884949803352, 0.0067896912805736065, 0.6162853240966797, -0.3219853341579437, 0.021228983998298645, 0.0037899063900113106, 0.011052276007831097, -0.04823049157857895, 0.2844935357570648, 0.19148394465446472, -0.005452822428196669, 0.9837850332260132, 0.16620922088623047, 0.06310892850160599, -0.049195244908332825, 0.2886400520801544, -0.2025214284658432, 0.031566448509693146, 0.9879915118217468, -0.17625200748443604, 0.03464639559388161, 0.0033196303993463516]} +{"t": 0.3352, "q": [-0.3647431433200836, 0.005007594358175993, -0.006829866673797369, 0.6281225085258484, -0.2960069179534912, 0.0030288170091807842, -0.3572692573070526, -0.018083928152918816, 0.0068030827678740025, 0.6162853240966797, -0.3219852149486542, 0.021214473992586136, 0.003736338810995221, 0.011052307672798634, -0.04828004911541939, 0.2844935357570648, 0.19149594008922577, -0.005476790945976973, 0.9838089942932129, 0.16619724035263062, 0.06314488500356674, -0.04920722916722298, 0.28865206241607666, -0.2025214284658432, 0.03145859017968178, 0.9880993962287903, -0.17625200748443604, 0.03464639559388161, 0.0033316146582365036]} +{"t": 0.352, "q": [-0.36472609639167786, 0.005007594358175993, -0.006816474720835686, 0.6281395554542542, -0.2960151433944702, 0.0030432248022407293, -0.357286274433136, -0.018092451617121696, 0.006829866673797369, 0.6162938475608826, -0.3219853341579437, 0.021228983998298645, 0.0037497307639569044, 0.011044731363654137, -0.0483345128595829, 0.2844935357570648, 0.19149594008922577, -0.005440838169306517, 0.9838089942932129, 0.16616128385066986, 0.0631568655371666, -0.04920722916722298, 0.2886400520801544, -0.2025214284658432, 0.031506527215242386, 0.9881952404975891, -0.1762639880180359, 0.03464639559388161, 0.0033316146582365036]} +{"t": 0.3687, "q": [-0.364717572927475, 0.005007594358175993, -0.006816474720835686, 0.6281395554542542, -0.2960151433944702, 0.0030432248022407293, -0.35730332136154175, -0.018066884949803352, 0.0067896912805736065, 0.6162853240966797, -0.3219936788082123, 0.021243581548333168, 0.0037631227169185877, 0.011090386658906937, -0.048364508897066116, 0.2844935357570648, 0.19149594008922577, -0.005440838169306517, 0.9838089942932129, 0.16618524491786957, 0.0631568655371666, -0.04920722916722298, 0.2886400520801544, -0.2024974524974823, 0.031494542956352234, 0.9882671236991882, -0.17622803151607513, 0.03464639559388161, 0.0033076461404561996]} +{"t": 0.3856, "q": [-0.3647431433200836, 0.005007594358175993, -0.006816474720835686, 0.6281225085258484, -0.2960193157196045, 0.003035963512957096, -0.3573203682899475, -0.01805836334824562, 0.006829866673797369, 0.6162853240966797, -0.32198941707611084, 0.021221771836280823, 0.0037899063900113106, 0.011120842769742012, -0.04841425269842148, 0.2844815254211426, 0.19149594008922577, -0.005440838169306517, 0.9838209748268127, 0.16620922088623047, 0.06312091648578644, -0.049195244908332825, 0.28860411047935486, -0.20248547196388245, 0.03151851147413254, 0.9883630275726318, -0.17616811394691467, 0.03464639559388161, 0.0033435989171266556]} +{"t": 0.4023, "q": [-0.36476871371269226, 0.005007594358175993, -0.006843258626759052, 0.6281395554542542, -0.2960193157196045, 0.003035963512957096, -0.35733741521835327, -0.018075406551361084, 0.0068030827678740025, 0.6163023710250854, -0.3219936788082123, 0.021243581548333168, 0.0037497307639569044, 0.011136049404740334, -0.04840443655848503, 0.2844815254211426, 0.19149594008922577, -0.005440838169306517, 0.9838330149650574, 0.16614930331707, 0.0631568655371666, -0.049195244908332825, 0.2886160910129547, -0.20242555439472198, 0.03154247999191284, 0.9885427951812744, -0.17625200748443604, 0.03464639559388161, 0.0033076461404561996]} +{"t": 0.419, "q": [-0.36481982469558716, 0.005024638492614031, -0.006829866673797369, 0.6281310319900513, -0.296023428440094, 0.003043185221031308, -0.35735446214675903, -0.018092451617121696, 0.0068030827678740025, 0.616259753704071, -0.3219977617263794, 0.021236367523670197, 0.003776514669880271, 0.011128457263112068, -0.04842916876077652, 0.2844815254211426, 0.19150792062282562, -0.005440838169306517, 0.9838089942932129, 0.16616128385066986, 0.0631808340549469, -0.04918326064944267, 0.28860411047935486, -0.20242555439472198, 0.03151851147413254, 0.9886386394500732, -0.17625200748443604, 0.03464639559388161, 0.0033196303993463516]} +{"t": 0.4359, "q": [-0.36481982469558716, 0.005007594358175993, -0.0068030827678740025, 0.6281225085258484, -0.2960275411605835, 0.0030503892339766026, -0.3573800325393677, -0.018075406551361084, 0.0068030827678740025, 0.6162682771682739, -0.3220018446445465, 0.021229155361652374, 0.0037899063900113106, 0.011120842769742012, -0.04841425269842148, 0.2844815254211426, 0.19149594008922577, -0.005464806687086821, 0.9838089942932129, 0.1661013662815094, 0.06313289701938629, -0.04920722916722298, 0.28862807154655457, -0.20242555439472198, 0.03151851147413254, 0.988662600517273, -0.17625200748443604, 0.0346224270761013, 0.0033076461404561996]} +{"t": 0.4526, "q": [-0.3648368716239929, 0.005016116891056299, -0.006843258626759052, 0.6281310319900513, -0.2960275411605835, 0.0030503892339766026, -0.3574141263961792, -0.018075406551361084, 0.0068030827678740025, 0.6162682771682739, -0.32200172543525696, 0.021214643493294716, 0.0037899063900113106, 0.011113239452242851, -0.04841916263103485, 0.2844815254211426, 0.19149594008922577, -0.005440838169306517, 0.9838209748268127, 0.16613730788230896, 0.0631808340549469, -0.04920722916722298, 0.2886400520801544, -0.20242555439472198, 0.031506527215242386, 0.9887105822563171, -0.17621605098247528, 0.03465837985277176, 0.0033196303993463516]} +{"t": 0.4693, "q": [-0.3648453950881958, 0.004990550223737955, -0.006829866673797369, 0.6281225085258484, -0.2960234582424164, 0.003028701990842819, -0.35743969678878784, -0.018075406551361084, 0.006816474720835686, 0.6162938475608826, -0.3220100998878479, 0.021229257807135582, 0.0037497307639569044, 0.011136049404740334, -0.04840443655848503, 0.2844815254211426, 0.19149594008922577, -0.005464806687086821, 0.9838330149650574, 0.16614930331707, 0.0631568655371666, -0.04920722916722298, 0.28862807154655457, -0.20242555439472198, 0.031506527215242386, 0.9888184070587158, -0.176240012049675, 0.03464639559388161, 0.0033196303993463516]} +{"t": 0.4862, "q": [-0.36481982469558716, 0.005007594358175993, -0.006829866673797369, 0.6281310319900513, -0.2960193157196045, 0.003035963512957096, -0.3574226498603821, -0.018083928152918816, 0.006816474720835686, 0.6162768006324768, -0.3220100998878479, 0.021229257807135582, 0.003736338810995221, 0.011128446087241173, -0.048409346491098404, 0.2844815254211426, 0.19149594008922577, -0.005464806687086821, 0.9838089942932129, 0.16619724035263062, 0.0632048025727272, -0.049195244908332825, 0.2886160910129547, -0.20241355895996094, 0.031506527215242386, 0.9889023303985596, -0.17625200748443604, 0.03464639559388161, 0.0033196303993463516]} +{"t": 0.503, "q": [-0.36481982469558716, 0.005016116891056299, -0.006829866673797369, 0.6281225085258484, -0.2960151433944702, 0.0030432248022407293, -0.357473760843277, -0.01805836334824562, 0.006829866673797369, 0.6162682771682739, -0.32200977206230164, 0.02118568867444992, 0.0037631227169185877, 0.011136049404740334, -0.04840443655848503, 0.2844815254211426, 0.19150792062282562, -0.005440838169306517, 0.9838089942932129, 0.16620922088623047, 0.0631808340549469, -0.04923119768500328, 0.28860411047935486, -0.20242555439472198, 0.03151851147413254, 0.9890581369400024, -0.1763119250535965, 0.03464639559388161, 0.0033316146582365036]} +{"t": 0.5197, "q": [-0.3648368716239929, 0.005007594358175993, -0.006816474720835686, 0.6281225085258484, -0.2960193157196045, 0.003035963512957096, -0.3574652671813965, -0.018075406551361084, 0.006816474720835686, 0.6162853240966797, -0.32201406359672546, 0.021207517012953758, 0.0037631227169185877, 0.01114365179091692, -0.04839953035116196, 0.2844815254211426, 0.19149594008922577, -0.005440838169306517, 0.9838089942932129, 0.16622120141983032, 0.06319282203912735, -0.04921921342611313, 0.28862807154655457, -0.20242555439472198, 0.03151851147413254, 0.9891420006752014, -0.1762639880180359, 0.034634411334991455, 0.0033076461404561996]} +{"t": 0.5368, "q": [-0.36487096548080444, 0.005007594358175993, -0.006816474720835686, 0.6281395554542542, -0.29603999853134155, 0.003043070202693343, -0.35748228430747986, -0.018075406551361084, 0.006816474720835686, 0.6162768006324768, -0.3220262825489044, 0.02118586003780365, 0.003736338810995221, 0.011136049404740334, -0.04840443655848503, 0.2844695448875427, 0.19149594008922577, -0.005440838169306517, 0.9838330149650574, 0.16619724035263062, 0.0632048025727272, -0.04921921342611313, 0.2886160910129547, -0.20242555439472198, 0.03153049573302269, 0.9892138838768005, -0.1762639880180359, 0.034634411334991455, 0.0033316146582365036]} +{"t": 0.5537, "q": [-0.3648794889450073, 0.005007594358175993, -0.006816474720835686, 0.6281395554542542, -0.29603588581085205, 0.0030358664225786924, -0.3575163781642914, -0.018075406551361084, 0.006843258626759052, 0.6162768006324768, -0.3220181465148926, 0.021200286224484444, 0.0037899063900113106, 0.011128433980047703, -0.04838952422142029, 0.28445756435394287, 0.19149594008922577, -0.005440838169306517, 0.9838330149650574, 0.16622120141983032, 0.06319282203912735, -0.04920722916722298, 0.2886160910129547, -0.20242555439472198, 0.03151851147413254, 0.9892738461494446, -0.17621605098247528, 0.03464639559388161, 0.0033555831760168076]} +{"t": 0.5705, "q": [-0.3648880124092102, 0.005007594358175993, -0.006816474720835686, 0.6281395554542542, -0.2960358262062073, 0.00305033172480762, -0.35753342509269714, -0.018100973218679428, 0.0068566505797207355, 0.6162768006324768, -0.3220181465148926, 0.021200286224484444, 0.0037899063900113106, 0.011128433980047703, -0.04838952422142029, 0.2844815254211426, 0.19150792062282562, -0.005440838169306517, 0.9838330149650574, 0.16622120141983032, 0.0631568655371666, -0.04920722916722298, 0.2886160910129547, -0.20241355895996094, 0.031494542956352234, 0.9892858266830444, -0.17621605098247528, 0.03464639559388161, 0.0033196303993463516]} +{"t": 0.5872, "q": [-0.36490505933761597, 0.005007594358175993, -0.0068030827678740025, 0.6281566023826599, -0.29603588581085205, 0.0030358664225786924, -0.3575419485569, -0.018075406551361084, 0.006843258626759052, 0.6162768006324768, -0.3220181465148926, 0.021200286224484444, 0.003776514669880271, 0.01114365179091692, -0.04839953035116196, 0.28445756435394287, 0.19150792062282562, -0.005440838169306517, 0.9838330149650574, 0.16626913845539093, 0.06319282203912735, -0.04920722916722298, 0.28860411047935486, -0.20241355895996094, 0.031506527215242386, 0.9893577098846436, -0.17622803151607513, 0.03464639559388161, 0.0033076461404561996]} +{"t": 0.6041, "q": [-0.36487096548080444, 0.004999072756618261, -0.006816474720835686, 0.628148078918457, -0.2960275411605835, 0.0030503892339766026, -0.3575163781642914, -0.018066884949803352, 0.006829866673797369, 0.6162938475608826, -0.3220181465148926, 0.021200286224484444, 0.0037899063900113106, 0.01114365179091692, -0.04839953035116196, 0.2844815254211426, 0.19149594008922577, -0.005440838169306517, 0.9838330149650574, 0.16626913845539093, 0.0631808340549469, -0.04920722916722298, 0.2886160910129547, -0.20242555439472198, 0.031506527215242386, 0.9893696904182434, -0.17622803151607513, 0.03464639559388161, 0.0033316146582365036]} +{"t": 0.6209, "q": [-0.36490505933761597, 0.005007594358175993, -0.006816474720835686, 0.6281651258468628, -0.29603999853134155, 0.003043070202693343, -0.3575078547000885, -0.01805836334824562, 0.006816474720835686, 0.6162768006324768, -0.3220181465148926, 0.021200286224484444, 0.0037631227169185877, 0.011136052198708057, -0.04841434583067894, 0.2844815254211426, 0.19149594008922577, -0.005428853910416365, 0.9838330149650574, 0.16623318195343018, 0.0631808340549469, -0.04921921342611313, 0.28862807154655457, -0.20241355895996094, 0.031494542956352234, 0.9893936514854431, -0.1762639880180359, 0.0346224270761013, 0.0033196303993463516]} +{"t": 0.6376, "q": [-0.3648965358734131, 0.005007594358175993, -0.006816474720835686, 0.6281821727752686, -0.2960317134857178, 0.0030431277118623257, -0.35753342509269714, -0.01804983988404274, 0.0068030827678740025, 0.6162768006324768, -0.3220181465148926, 0.021200286224484444, 0.003803298342972994, 0.01114366389811039, -0.04841935262084007, 0.2844815254211426, 0.19149594008922577, -0.005452822428196669, 0.9838330149650574, 0.16625715792179108, 0.0632048025727272, -0.04921921342611313, 0.28860411047935486, -0.20241355895996094, 0.031506527215242386, 0.9893816709518433, -0.17625200748443604, 0.03465837985277176, 0.0033076461404561996]} +{"t": 0.6544, "q": [-0.36487096548080444, 0.005007594358175993, -0.006816474720835686, 0.6281821727752686, -0.2960275411605835, 0.0030503892339766026, -0.35753342509269714, -0.018075406551361084, 0.0067896912805736065, 0.6163193583488464, -0.3220058083534241, 0.021207431331276894, 0.003776514669880271, 0.011158870533108711, -0.048409536480903625, 0.2844935357570648, 0.19150792062282562, -0.005428853910416365, 0.9838569760322571, 0.16618524491786957, 0.0632048025727272, -0.04923119768500328, 0.28862807154655457, -0.20242555439472198, 0.031506527215242386, 0.9893816709518433, -0.176240012049675, 0.03464639559388161, 0.0033196303993463516]} +{"t": 0.6711, "q": [-0.3648880124092102, 0.005007594358175993, -0.006816474720835686, 0.6281992197036743, -0.2960317134857178, 0.0030431277118623257, -0.3575419485569, -0.01805836334824562, 0.006816474720835686, 0.6163619756698608, -0.3220139741897583, 0.021192986518144608, 0.003803298342972994, 0.011143655516207218, -0.048409439623355865, 0.2844815254211426, 0.19150792062282562, -0.005440838169306517, 0.9838929176330566, 0.16622120141983032, 0.0632048025727272, -0.04920722916722298, 0.28860411047935486, -0.20241355895996094, 0.031494542956352234, 0.9894295930862427, -0.17618009448051453, 0.03464639559388161, 0.0033316146582365036]} +{"t": 0.6878, "q": [-0.3648794889450073, 0.005007594358175993, -0.0068030827678740025, 0.6282077431678772, -0.29603588581085205, 0.0030358664225786924, -0.35753342509269714, -0.01804983988404274, 0.0068030827678740025, 0.616353452205658, -0.3220181465148926, 0.021200286224484444, 0.0037899063900113106, 0.011151270940899849, -0.04842435196042061, 0.2844815254211426, 0.19150792062282562, -0.005428853910416365, 0.9839168787002563, 0.16613730788230896, 0.0631808340549469, -0.04921921342611313, 0.2886160910129547, -0.20242555439472198, 0.03147057443857193, 0.9894176125526428, -0.17625200748443604, 0.03464639559388161, 0.0033196303993463516]} +{"t": 0.7047, "q": [-0.3648539185523987, 0.004990550223737955, -0.006829866673797369, 0.6282077431678772, -0.2960234582424164, 0.003028701990842819, -0.35752490162849426, -0.018075406551361084, 0.0067896912805736065, 0.6163790225982666, -0.3220221996307373, 0.021193072199821472, 0.0037631227169185877, 0.011158870533108711, -0.048409536480903625, 0.28445756435394287, 0.19150792062282562, -0.005440838169306517, 0.9838929176330566, 0.16616128385066986, 0.0632048025727272, -0.04921921342611313, 0.288592129945755, -0.20243753492832184, 0.031434621661901474, 0.9894416332244873, -0.17622803151607513, 0.03465837985277176, 0.0033435989171266556]} +{"t": 0.7214, "q": [-0.36487096548080444, 0.005007594358175993, -0.0068566505797207355, 0.6282162666320801, -0.2960193157196045, 0.003035963512957096, -0.3575163781642914, -0.01805836334824562, 0.0067896912805736065, 0.616421639919281, -0.32200977206230164, 0.02118568867444992, 0.003776514669880271, 0.011151270940899849, -0.04842435196042061, 0.2844695448875427, 0.19149594008922577, -0.005440838169306517, 0.9839048981666565, 0.16614930331707, 0.0631808340549469, -0.04920722916722298, 0.28860411047935486, -0.2024495154619217, 0.031446605920791626, 0.9894176125526428, -0.17629994451999664, 0.03464639559388161, 0.0033555831760168076]} +{"t": 0.7382, "q": [-0.36486244201660156, 0.005024638492614031, -0.006829866673797369, 0.6282162666320801, -0.2960234582424164, 0.003028701990842819, -0.35752490162849426, -0.018066884949803352, 0.006776299327611923, 0.616421639919281, -0.3220181465148926, 0.021200286224484444, 0.0037899063900113106, 0.01114366389811039, -0.04841935262084007, 0.28445756435394287, 0.19149594008922577, -0.005440838169306517, 0.9839048981666565, 0.16624517738819122, 0.06319282203912735, -0.04920722916722298, 0.28860411047935486, -0.2024734914302826, 0.03142263740301132, 0.9894536137580872, -0.17625200748443604, 0.03464639559388161, 0.0033196303993463516]} +{"t": 0.7549, "q": [-0.3648880124092102, 0.005016116891056299, -0.006843258626759052, 0.6282333135604858, -0.2960234582424164, 0.003028701990842819, -0.35752490162849426, -0.018075406551361084, 0.006749515421688557, 0.6164386868476868, -0.3220262825489044, 0.02118586003780365, 0.003736338810995221, 0.011151270940899849, -0.04842435196042061, 0.2844695448875427, 0.19149594008922577, -0.005440838169306517, 0.9839168787002563, 0.16622120141983032, 0.06319282203912735, -0.04920722916722298, 0.28860411047935486, -0.20264126360416412, 0.031386684626340866, 0.9894895553588867, -0.1762879490852356, 0.03465837985277176, 0.0032716935966163874]} +{"t": 0.7716, "q": [-0.3648880124092102, 0.005024638492614031, -0.0068566505797207355, 0.6282503604888916, -0.2960275411605835, 0.0030503892339766026, -0.35752490162849426, -0.018041318282485008, 0.006736123468726873, 0.6164642572402954, -0.3220260739326477, 0.021156838163733482, 0.0037899063900113106, 0.01114366389811039, -0.04841935262084007, 0.28445756435394287, 0.19149594008922577, -0.005464806687086821, 0.9839168787002563, 0.16630509495735168, 0.06319282203912735, -0.04921921342611313, 0.28860411047935486, -0.20310865342617035, 0.031254857778549194, 0.9895614385604858, -0.17629994451999664, 0.03468234837055206, 0.0032597093377262354]} +{"t": 0.7884, "q": [-0.3648880124092102, 0.005041682627052069, -0.006883434485644102, 0.6282503604888916, -0.2960234582424164, 0.003028701990842819, -0.35753342509269714, -0.018041318282485008, 0.006695947609841824, 0.6164642572402954, -0.32203036546707153, 0.02117864601314068, 0.0037631227169185877, 0.011136049404740334, -0.04840443655848503, 0.2844815254211426, 0.19149594008922577, -0.005440838169306517, 0.9839168787002563, 0.16630509495735168, 0.06325273960828781, -0.04920722916722298, 0.28858014941215515, -0.20361198484897614, 0.03118295408785343, 0.989549458026886, -0.1764077991247177, 0.03465837985277176, 0.0032716935966163874]} +{"t": 0.8051, "q": [-0.36487096548080444, 0.005033161025494337, -0.006870042532682419, 0.6282503604888916, -0.2960193157196045, 0.003035963512957096, -0.3575419485569, -0.018024273216724396, 0.006695947609841824, 0.6164727807044983, -0.3220508396625519, 0.02115711010992527, 0.0038300822488963604, 0.011128457263112068, -0.04842916876077652, 0.2844815254211426, 0.19149594008922577, -0.005440838169306517, 0.9839168787002563, 0.16620922088623047, 0.06321679055690765, -0.04920722916722298, 0.2885202169418335, -0.20416326820850372, 0.031027158722281456, 0.989549458026886, -0.17650367319583893, 0.03467036411166191, 0.0032956618815660477]} +{"t": 0.8218, "q": [-0.36487096548080444, 0.005058727692812681, -0.006883434485644102, 0.6282418370246887, -0.2960234582424164, 0.003028701990842819, -0.3575419485569, -0.0179987084120512, 0.006669164169579744, 0.6165239214897156, -0.32205888628959656, 0.021128138527274132, 0.003803298342972994, 0.01111325528472662, -0.04844889044761658, 0.2844695448875427, 0.19149594008922577, -0.005440838169306517, 0.9839168787002563, 0.16624517738819122, 0.0632048025727272, -0.04920722916722298, 0.28843632340431213, -0.20518192648887634, 0.030919300392270088, 0.9895614385604858, -0.17650367319583893, 0.03465837985277176, 0.0032237565610557795]} +{"t": 0.8386, "q": [-0.3648539185523987, 0.005101337563246489, -0.006910218391567469, 0.6282503604888916, -0.2960152328014374, 0.003014294197782874, -0.3575419485569, -0.017947575077414513, 0.0066289883106946945, 0.6165153980255127, -0.32205063104629517, 0.021128052845597267, 0.003776514669880271, 0.01106002926826477, -0.04847335070371628, 0.2844815254211426, 0.19150792062282562, -0.005452822428196669, 0.983940839767456, 0.16620922088623047, 0.0632048025727272, -0.049255166202783585, 0.28832846879959106, -0.20654812455177307, 0.03085937909781933, 0.989549458026886, -0.1765396147966385, 0.034694332629442215, 0.0032237565610557795]} +{"t": 0.8553, "q": [-0.36486244201660156, 0.0051439483650028706, -0.006963785737752914, 0.6282418370246887, -0.2960152328014374, 0.003014294197782874, -0.35752490162849426, -0.017904965206980705, 0.006602204404771328, 0.6165324449539185, -0.3220422863960266, 0.021113457158207893, 0.003816690295934677, 0.010999205522239208, -0.04852256551384926, 0.2844815254211426, 0.19149594008922577, -0.005440838169306517, 0.983940839767456, 0.16624517738819122, 0.06319282203912735, -0.04923119768500328, 0.2880168855190277, -0.20900489389896393, 0.030583743005990982, 0.9894895553588867, -0.17659954726696014, 0.03468234837055206, 0.003091930178925395]} +{"t": 0.8721, "q": [-0.3648539185523987, 0.005195080768316984, -0.006990569643676281, 0.6282503604888916, -0.2960069477558136, 0.0030143517069518566, -0.35752490162849426, -0.017853831872344017, 0.006535245105624199, 0.6165324449539185, -0.32204633951187134, 0.02110624499619007, 0.003803298342972994, 0.010854754596948624, -0.04863573983311653, 0.2844815254211426, 0.19149594008922577, -0.005428853910416365, 0.983940839767456, 0.16619724035263062, 0.06319282203912735, -0.04923119768500328, 0.2872259318828583, -0.21197697520256042, 0.030427947640419006, 0.9892858266830444, -0.17667144536972046, 0.03464639559388161, 0.003043993143364787]} +{"t": 0.8892, "q": [-0.36487096548080444, 0.0052291699685156345, -0.00709770480170846, 0.6282503604888916, -0.2960028350353241, 0.0030071476940065622, -0.3575078547000885, -0.01781122200191021, 0.00646828580647707, 0.6165239214897156, -0.32204216718673706, 0.021098945289850235, 0.003964001312851906, 0.010619075037539005, -0.04881778731942177, 0.284445583820343, 0.19150792062282562, -0.005440838169306517, 0.983940839767456, 0.16619724035263062, 0.0632048025727272, -0.04924318194389343, 0.28606346249580383, -0.21444572508335114, 0.030463900417089462, 0.9891300201416016, -0.17677929997444153, 0.03461044281721115, 0.0029361352790147066]} +{"t": 0.906, "q": [-0.3648539185523987, 0.005280302371829748, -0.007218231912702322, 0.6282674074172974, -0.2959987223148346, 0.0029999439138919115, -0.357473760843277, -0.017785655334591866, 0.006294190883636475, 0.6165494918823242, -0.3220582604408264, 0.021041054278612137, 0.004446109291166067, 0.010406194254755974, -0.048975180834531784, 0.2843017876148224, 0.19148394465446472, -0.005452822428196669, 0.9839168787002563, 0.16622120141983032, 0.06319282203912735, -0.04924318194389343, 0.28508076071739197, -0.2177533656358719, 0.030415963381528854, 0.9888543486595154, -0.1769590675830841, 0.034574490040540695, 0.002948119305074215]} +{"t": 0.9227, "q": [-0.36487096548080444, 0.005305869039148092, -0.007378934416919947, 0.6282503604888916, -0.2959987223148346, 0.0029999439138919115, -0.3574056029319763, -0.017768610268831253, 0.0060933125205338, 0.6165835857391357, -0.3221361041069031, 0.02096201665699482, 0.005021960940212011, 0.010018425062298775, -0.049225758761167526, 0.28428977727890015, 0.19151990115642548, -0.005380917340517044, 0.9839528203010559, 0.16622120141983032, 0.06321679055690765, -0.049255166202783585, 0.28396621346473694, -0.22246317565441132, 0.029948579147458076, 0.9883630275726318, -0.1772826462984085, 0.03455052152276039, 0.0027204190846532583]} +{"t": 0.9395, "q": [-0.3648965358734131, 0.005416656378656626, -0.0076869479380548, 0.6282503604888916, -0.29599055647850037, 0.002971052657812834, -0.35739707946777344, -0.01768338866531849, 0.00575851509347558, 0.616634726524353, -0.32214391231536865, 0.020889490842819214, 0.005571028683334589, 0.009326319210231304, -0.04949500411748886, 0.2843976616859436, 0.19211912155151367, -0.005117264110594988, 0.9841445684432983, 0.16623318195343018, 0.06331266462802887, -0.04923119768500328, 0.28293555974960327, -0.22699320316314697, 0.029385320842266083, 0.9876918792724609, -0.1774863749742508, 0.03452655300498009, 0.0024927188642323017]} +{"t": 0.9562, "q": [-0.36494767665863037, 0.005595620255917311, -0.008115489035844803, 0.6282588839530945, -0.29597410559654236, 0.0029422370716929436, -0.35733741521835327, -0.017581123858690262, 0.005276407115161419, 0.6166602969169617, -0.32214391231536865, 0.020889490842819214, 0.006120096426457167, 0.00848965160548687, -0.04970923811197281, 0.2845773994922638, 0.19328159093856812, -0.004841627087444067, 0.9844322204589844, 0.16614930331707, 0.06349242478609085, -0.04918326064944267, 0.2821086645126343, -0.23090006411075592, 0.029277462512254715, 0.9871166348457336, -0.1777620166540146, 0.03449060022830963, 0.002253034384921193]} +{"t": 0.9729, "q": [-0.36505845189094543, 0.00577458506450057, -0.00865116436034441, 0.6282674074172974, -0.2959741950035095, 0.0029133062344044447, -0.3572266399860382, -0.017529990524053574, 0.004553244449198246, 0.6166943311691284, -0.3221520781517029, 0.020875053480267525, 0.006709339562803507, 0.007706195116043091, -0.04986948147416115, 0.2848051190376282, 0.19448000192642212, -0.004637895151972771, 0.9846359491348267, 0.16614930331707, 0.06366020441055298, -0.04918326064944267, 0.2813776135444641, -0.23430359363555908, 0.029217541217803955, 0.9865893721580505, -0.17831328511238098, 0.03446663171052933, 0.002049302449449897]} +{"t": 0.99, "q": [-0.3650414049625397, 0.00589389493688941, -0.009093097411096096, 0.6282674074172974, -0.2959578037261963, 0.0028699892573058605, -0.35711583495140076, -0.01751294732093811, 0.003776514669880271, 0.6167284250259399, -0.32215625047683716, 0.02088235132396221, 0.007271799258887768, 0.006626088637858629, -0.050152737647295, 0.28491297364234924, 0.19481556117534637, -0.004554005805402994, 0.9848037362098694, 0.1660773903131485, 0.06364822387695312, -0.04921921342611313, 0.2805027663707733, -0.23702400922775269, 0.02919357270002365, 0.9853909611701965, -0.17888852953910828, 0.033963292837142944, 0.0019174760673195124]} +{"t": 1.0067, "q": [-0.36494767665863037, 0.006132513750344515, -0.009414502419531345, 0.6282759308815002, -0.29594141244888306, 0.0028266902081668377, -0.357098788022995, -0.01751294732093811, 0.003026568330824375, 0.6167199015617371, -0.3221111595630646, 0.020932745188474655, 0.007861042395234108, 0.005583996884524822, -0.05068037658929825, 0.2848770320415497, 0.19483953714370728, -0.004506068769842386, 0.9847557544708252, 0.16598151624202728, 0.06356433033943176, -0.04924318194389343, 0.2789328396320343, -0.23909728229045868, 0.02912166714668274, 0.9837371110916138, -0.17931996285915375, 0.03326820954680443, 0.0018216022290289402]} +{"t": 1.0234, "q": [-0.3649306297302246, 0.00628591189160943, -0.009749299846589565, 0.6282759308815002, -0.2959580421447754, 0.0028121278155595064, -0.3570817708969116, -0.01751294732093811, 0.002397149335592985, 0.6167284250259399, -0.32211124897003174, 0.02094726264476776, 0.008503853343427181, 0.004503928124904633, -0.05140147730708122, 0.28454145789146423, 0.19481556117534637, -0.004446147475391626, 0.9845280647277832, 0.1660294532775879, 0.0632048025727272, -0.04921921342611313, 0.27701535820961, -0.24057133495807648, 0.029025793075561523, 0.9824787974357605, -0.1795596480369568, 0.03278883919119835, 0.001785649568773806]} +{"t": 1.0402, "q": [-0.36494767665863037, 0.00640522176399827, -0.00999035406857729, 0.6282588839530945, -0.2959705591201782, 0.0027903434820473194, -0.3570817708969116, -0.017478859052062035, 0.002022176282480359, 0.6167539954185486, -0.322115421295166, 0.020954560488462448, 0.008704732172191143, 0.003256352385506034, -0.052412085235118866, 0.2841819226741791, 0.19446802139282227, -0.0047098007053136826, 0.9843602776527405, 0.1660773903131485, 0.06303702294826508, -0.04927913472056389, 0.2744627296924591, -0.24175778031349182, 0.029037777334451675, 0.9812204241752625, -0.1799551248550415, 0.03212970867753029, 0.001749696908518672]} +{"t": 1.057, "q": [-0.36495620012283325, 0.006652363110333681, -0.010043921880424023, 0.6282418370246887, -0.2960163950920105, 0.0027248968835920095, -0.35697096586227417, -0.017359549179673195, 0.001901649171486497, 0.6169244647026062, -0.32197290658950806, 0.021221602335572243, 0.00873151607811451, 0.002625006018206477, -0.05327015742659569, 0.2838224172592163, 0.19385682046413422, -0.004829642828553915, 0.9839528203010559, 0.1660773903131485, 0.062557652592659, -0.049255166202783585, 0.27163445949554443, -0.24230904877185822, 0.02912166714668274, 0.9797343611717224, -0.18017084896564484, 0.031194938346743584, 0.001761681167408824]} +{"t": 1.0737, "q": [-0.3649306297302246, 0.006908026058226824, -0.010084097273647785, 0.6282162666320801, -0.2960664629936218, 0.0026377416215837, -0.3565533757209778, -0.017112407833337784, 0.001794514013454318, 0.6169926524162292, -0.3218711316585541, 0.02141650766134262, 0.008718123659491539, 0.001970738871023059, -0.05437266454100609, 0.2825281023979187, 0.19368904829025269, -0.004985437728464603, 0.9831618666648865, 0.16608937084674835, 0.06210225448012352, -0.04926715046167374, 0.26848259568214417, -0.24238096177577972, 0.02931341528892517, 0.9776491522789001, -0.18037457764148712, 0.030284136533737183, 0.0018455706303939223]} +{"t": 1.0906, "q": [-0.364785760641098, 0.007189255673438311, -0.010137665085494518, 0.6281992197036743, -0.2968546748161316, 0.0013372412649914622, -0.35639145970344543, -0.016805611550807953, 0.0018212978029623628, 0.6170437932014465, -0.3218632936477661, 0.02147446572780609, 0.008584205061197281, 0.0019099739147350192, -0.05580417439341545, 0.28126975893974304, 0.1937849223613739, -0.0049494849517941475, 0.9831019639968872, 0.1661013662815094, 0.06229400262236595, -0.04927913472056389, 0.2652828097343445, -0.24230904877185822, 0.029625004157423973, 0.9749646782875061, -0.18056632578372955, 0.02912166714668274, 0.0019534286111593246]} +{"t": 1.1076, "q": [-0.3644448518753052, 0.007436397019773722, -0.01007070578634739, 0.6282077431678772, -0.2970463037490845, 0.0010754696559160948, -0.3561784029006958, -0.01654142513871193, 0.0020623519085347652, 0.6173335313796997, -0.32190078496932983, 0.021525654941797256, 0.008557421155273914, 0.0018948485376313329, -0.05694881081581116, 0.2805866599082947, 0.19400063157081604, -0.004697816446423531, 0.9831618666648865, 0.16614930331707, 0.06248575076460838, -0.04920722916722298, 0.2621309459209442, -0.2422611117362976, 0.029876673594117165, 0.9718607664108276, -0.18073409795761108, 0.027647607028484344, 0.0020013656467199326]} +{"t": 1.1243, "q": [-0.36440226435661316, 0.0075812735594809055, -0.010124272666871548, 0.6281992197036743, -0.29718804359436035, 0.0008574392413720489, -0.35614433884620667, -0.016388028860092163, 0.001982000656425953, 0.6174868941307068, -0.3220137357711792, 0.02167925238609314, 0.008490461856126785, 0.001955859363079071, -0.058860406279563904, 0.2796279191970825, 0.19458787143230438, -0.004446147475391626, 0.9832097887992859, 0.1660534292459488, 0.06250971555709839, -0.04900349676609039, 0.2595423758029938, -0.24227309226989746, 0.03003246895968914, 0.9686369895935059, -0.18099775910377502, 0.025011077523231506, 0.002181129064410925]} +{"t": 1.1411, "q": [-0.3643852174282074, 0.007734671700745821, -0.010459070093929768, 0.6281821727752686, -0.2972881495952606, 0.0006831105565652251, -0.35588014125823975, -0.016200540587306023, 0.0015936355339363217, 0.6175039410591125, -0.3220134377479553, 0.021650206297636032, 0.008584205061197281, 0.001788566936738789, -0.060883779078722, 0.2781658470630646, 0.19642144441604614, -0.003583283396437764, 0.9832097887992859, 0.16606540977954865, 0.06276138871908188, -0.04881174862384796, 0.25722941756248474, -0.24220119416713715, 0.030403979122638702, 0.966228187084198, -0.181357279419899, 0.02135588973760605, 0.0023728765081614256]} +{"t": 1.1581, "q": [-0.36431702971458435, 0.0077602374367415905, -0.010834043845534325, 0.6281736493110657, -0.2975049316883087, 0.0003488214570097625, -0.35564151406288147, -0.016174975782632828, 0.0012052706442773342, 0.6175295114517212, -0.32215988636016846, 0.02140495739877224, 0.00866455677896738, 0.0018571423133835196, -0.06257537007331848, 0.277614563703537, 0.19819511473178864, -0.003043993143364787, 0.9834015369415283, 0.16617326438426971, 0.06308495998382568, -0.048703890293836594, 0.2548445463180542, -0.24211730062961578, 0.030883347615599632, 0.9635676741600037, -0.18176473677158356, 0.01828792691230774, 0.0025286716409027576]} +{"t": 1.1748, "q": [-0.36423182487487793, 0.007794326636940241, -0.01099474634975195, 0.6281736493110657, -0.29766735434532166, 0.00013787999341730028, -0.3554795980453491, -0.016174975782632828, 0.0010981354862451553, 0.6175721287727356, -0.3221924901008606, 0.02134723588824272, 0.008838650770485401, 0.0018039626302197576, -0.06429688632488251, 0.27762657403945923, 0.20038822293281555, -0.0028762139845639467, 0.9833775758743286, 0.16613730788230896, 0.06289321184158325, -0.0487278588116169, 0.2524476945400238, -0.24210532009601593, 0.031015174463391304, 0.9603558778762817, -0.18206435441970825, 0.015483618713915348, 0.002552639925852418]} +{"t": 1.1916, "q": [-0.3642488718032837, 0.007751715835183859, -0.011008137837052345, 0.6281225085258484, -0.2977338433265686, 9.400561975780874e-05, -0.3554966449737549, -0.01619201898574829, 0.0010713516967371106, 0.617546558380127, -0.32222121953964233, 0.021325768902897835, 0.009106488898396492, 0.0018497119890525937, -0.06623586267232895, 0.2775666415691376, 0.20300078392028809, -0.0027324033435434103, 0.9832697510719299, 0.16616128385066986, 0.06277336925268173, -0.0487278588116169, 0.24990704655647278, -0.24211730062961578, 0.03093128465116024, 0.9576115012168884, -0.18226808309555054, 0.013050821609795094, 0.00256462418474257]} +{"t": 1.2083, "q": [-0.36421477794647217, 0.007726149167865515, -0.01099474634975195, 0.6279861927032471, -0.29783716797828674, 0.0001583986886544153, -0.35550516843795776, -0.016226107254624367, 0.0011517030652612448, 0.6175124645233154, -0.3221924901008606, 0.02134723588824272, 0.009387718513607979, 0.0017432013992220163, -0.06810609251260757, 0.27762657403945923, 0.20435500144958496, -0.0027563718613237143, 0.9832337498664856, 0.1663530319929123, 0.06272543221712112, -0.048775795847177505, 0.24764202535152435, -0.2421652376651764, 0.030955253168940544, 0.9547472596168518, -0.18248379230499268, 0.011241203173995018, 0.002588592702522874]} +{"t": 1.225, "q": [-0.3641977310180664, 0.007675016764551401, -0.011008137837052345, 0.6278839111328125, -0.29793649911880493, 0.00018665709649212658, -0.3554966449737549, -0.016226107254624367, 0.0011383111122995615, 0.6175039410591125, -0.3222210109233856, 0.021296728402376175, 0.009615381248295307, 0.0013930931454524398, -0.0701981782913208, 0.27774640917778015, 0.20483437180519104, -0.0029121667612344027, 0.9832337498664856, 0.16631707549095154, 0.06268948316574097, -0.04881174862384796, 0.24526914954185486, -0.2421652376651764, 0.03093128465116024, 0.9523504376411438, -0.1825796663761139, 0.009551427327096462, 0.00256462418474257]} +{"t": 1.2418, "q": [-0.3641636371612549, 0.007675016764551401, -0.011034921742975712, 0.6278412938117981, -0.2980981171131134, 0.00020734079589601606, -0.35541993379592896, -0.016234630718827248, 0.0011115273227915168, 0.6175636053085327, -0.322347491979599, 0.021072925999760628, 0.009883219376206398, 0.0008374041644856334, -0.07205667346715927, 0.27769845724105835, 0.20520588755607605, -0.002960103563964367, 0.9832337498664856, 0.16634105145931244, 0.06270146369934082, -0.048763811588287354, 0.242812380194664, -0.24215325713157654, 0.031003190204501152, 0.9491745829582214, -0.1826755404472351, 0.00794554129242897, 0.002552639925852418]} +{"t": 1.2587, "q": [-0.3641210198402405, 0.007683538366109133, -0.011168841272592545, 0.6278242468833923, -0.2983308732509613, 6.116589065641165e-05, -0.35536882281303406, -0.016234630718827248, 0.0009508245857432485, 0.617759644985199, -0.322511225938797, 0.020914768800139427, 0.010057313367724419, 1.5225615243252832e-05, -0.07374133914709091, 0.27765053510665894, 0.20592494308948517, -0.0027443876024335623, 0.9837730526924133, 0.16648486256599426, 0.06333663314580917, -0.04862000048160553, 0.24037958681583405, -0.24212928116321564, 0.031123032793402672, 0.946442186832428, -0.18273547291755676, 0.006495450157672167, 0.00264851376414299]} +{"t": 1.2754, "q": [-0.3640528619289398, 0.007700583431869745, -0.011423286981880665, 0.6278839111328125, -0.2986925542354584, -0.0003254478797316551, -0.35533472895622253, -0.016217585653066635, 0.0007767299539409578, 0.6179556250572205, -0.32274487614631653, 0.020851606503129005, 0.010432287119328976, -0.00139316834975034, -0.07552338391542435, 0.2780340313911438, 0.20727916061878204, -0.002624545246362686, 0.9841086268424988, 0.16654478013515472, 0.06358829885721207, -0.04848817363381386, 0.2380426675081253, -0.24205738306045532, 0.031218906864523888, 0.9445966482162476, -0.18278340995311737, 0.0049255164340138435, 0.0026964505668729544]} +{"t": 1.2922, "q": [-0.3640528619289398, 0.007709105033427477, -0.011717909015715122, 0.6278839111328125, -0.3005489408969879, -0.003382467431947589, -0.35532620549201965, -0.016217585653066635, 0.0004955001641064882, 0.6181431412696838, -0.3231000602245331, 0.020971594378352165, 0.011075098067522049, -0.003083236049860716, -0.07703211158514023, 0.2784295082092285, 0.2081659883260727, -0.002600576961413026, 0.9846239686012268, 0.16664065420627594, 0.06416354328393936, -0.04850015789270401, 0.23606526851654053, -0.24204540252685547, 0.03123089112341404, 0.9430866241455078, -0.18283134698867798, 0.0031398669816553593, 0.0027563718613237143]} +{"t": 1.3091, "q": [-0.3641124963760376, 0.0077602374367415905, -0.012119665741920471, 0.627918004989624, -0.30256128311157227, -0.004774255678057671, -0.3553176820278168, -0.016157930716872215, 0.0001740946463542059, 0.6181431412696838, -0.3240773379802704, 0.022420860826969147, 0.011704516597092152, -0.004895102232694626, -0.07833226025104523, 0.2791845202445984, 0.20935243368148804, -0.002612560987472534, 0.9850194454193115, 0.16656874120235443, 0.06436727195978165, -0.04860801622271538, 0.2344474047422409, -0.24215325713157654, 0.0313027948141098, 0.9411332011222839, -0.18303507566452026, 0.0008029430755414069, 0.0028043086640536785]} +{"t": 1.3258, "q": [-0.3641039729118347, 0.007879547774791718, -0.012280368246138096, 0.6279776692390442, -0.30287858843803406, -0.004508569836616516, -0.3553176820278168, -0.016106797382235527, 0.0, 0.6182794570922852, -0.32413429021835327, 0.022334294393658638, 0.012427679263055325, -0.00697337556630373, -0.07957043498754501, 0.27991554141044617, 0.2105868011713028, -0.002576608443632722, 0.9854628443717957, 0.16659271717071533, 0.06449910253286362, -0.04867992177605629, 0.2325299233198166, -0.24227309226989746, 0.03136271610856056, 0.9390119910240173, -0.18328674137592316, -0.0019174760673195124, 0.0028282771818339825]} +{"t": 1.3425, "q": [-0.3641892075538635, 0.007939202710986137, -0.012467854656279087, 0.6279861927032471, -0.30320075154304504, -0.004366105888038874, -0.355300635099411, -0.016098275780677795, -0.00013391896209213883, 0.618287980556488, -0.32423192262649536, 0.022190038114786148, 0.013217801228165627, -0.009592035785317421, -0.0811811238527298, 0.28059864044189453, 0.21149760484695435, -0.0025047031231224537, 0.9854748249053955, 0.1666286736726761, 0.06416354328393936, -0.048584047704935074, 0.2304566502571106, -0.2422611117362976, 0.031566448509693146, 0.937094509601593, -0.18339459598064423, -0.0043982104398310184, 0.002948119305074215]} +{"t": 1.3593, "q": [-0.364155113697052, 0.007998857647180557, -0.012548206374049187, 0.6280287504196167, -0.30508095026016235, -0.0015546508366242051, -0.35519838333129883, -0.016106797382235527, -0.0002812298189383, 0.6182709336280823, -0.32433822751045227, 0.022089459002017975, 0.014610557816922665, -0.012111537158489227, -0.08288145810365677, 0.2802750766277313, 0.212384432554245, -0.002624545246362686, 0.9851272702217102, 0.16668859124183655, 0.06363623589277267, -0.04850015789270401, 0.22847925126552582, -0.24222515523433685, 0.03181811794638634, 0.9346616864204407, -0.1835024505853653, -0.0068669612519443035, 0.0032477250788360834]} +{"t": 1.3761, "q": [-0.36408692598342896, 0.008032945916056633, -0.012548206374049187, 0.6281395554542542, -0.30657830834388733, 0.0007380224415101111, -0.35518133640289307, -0.016089754179120064, -0.00018748654110822827, 0.6182624101638794, -0.32437893748283386, 0.022031771019101143, 0.015668518841266632, -0.01442525815218687, -0.0847005620598793, 0.2795560359954834, 0.21309150755405426, -0.0027803401462733746, 0.9846838712692261, 0.16676048934459686, 0.06333663314580917, -0.048536110669374466, 0.22620224952697754, -0.2422371506690979, 0.03183010220527649, 0.9317375421524048, -0.1835983246564865, -0.008856342174112797, 0.0034394727554172277]} +{"t": 1.3928, "q": [-0.3640698790550232, 0.008084077388048172, -0.01252142246812582, 0.6282759308815002, -0.306955486536026, 0.0005975222447887063, -0.3551642894744873, -0.016081232577562332, -0.00013391896209213883, 0.6182624101638794, -0.3250288963317871, 0.02094888873398304, 0.016418464481830597, -0.01689080335199833, -0.08697879314422607, 0.27887290716171265, 0.2136787325143814, -0.002948119305074215, 0.9845640063285828, 0.16706010699272156, 0.06319282203912735, -0.048476189374923706, 0.2238173931837082, -0.24236896634101868, 0.0318780392408371, 0.9281183481216431, -0.18367023766040802, -0.011025487445294857, 0.0035353463608771563]} +{"t": 1.4096, "q": [-0.3640613555908203, 0.008092600852251053, -0.012508030980825424, 0.6283441185951233, -0.3071790039539337, 0.0006392933428287506, -0.3551557660102844, -0.01606418751180172, -0.00013391896209213883, 0.6182538866996765, -0.3274737000465393, 0.016790099442005157, 0.0171282347291708, -0.019447071477770805, -0.08931420743465424, 0.27839356660842896, 0.21442176401615143, -0.003008040599524975, 0.9844442009925842, 0.16735970973968506, 0.06308495998382568, -0.04836833477020264, 0.2220916599035263, -0.24236896634101868, 0.0318780392408371, 0.92500239610672, -0.18367023766040802, -0.013014868833124638, 0.0036551887169480324]} +{"t": 1.4264, "q": [-0.3641210198402405, 0.008160777390003204, -0.012534813955426216, 0.6284974813461304, -0.3075305223464966, 0.0008322735084220767, -0.35510462522506714, -0.016055665910243988, -0.00018748654110822827, 0.6182538866996765, -0.3276718258857727, 0.016821300610899925, 0.018266545608639717, -0.022413400933146477, -0.0922442078590393, 0.2778303027153015, 0.2154044657945633, -0.003067961661145091, 0.9843722581863403, 0.16753946244716644, 0.06297710537910461, -0.04822452366352081, 0.22092919051647186, -0.24234500527381897, 0.032105740159749985, 0.9221262335777283, -0.18379007279872894, -0.01474059745669365, 0.0038349521346390247]} +{"t": 1.4431, "q": [-0.3641039729118347, 0.008237475529313087, -0.012548206374049187, 0.6287276148796082, -0.3082582354545593, 0.0012759914388880134, -0.35495975613594055, -0.0160045325756073, -0.0002410541201243177, 0.6182453632354736, -0.3278416693210602, 0.01691758818924427, 0.01949859969317913, -0.02543158084154129, -0.09542183578014374, 0.27751868963241577, 0.21638716757297516, -0.003067961661145091, 0.9842404723167419, 0.16779114305973053, 0.06284527480602264, -0.04806872829794884, 0.22009029984474182, -0.24236896634101868, 0.03221359848976135, 0.9197893142700195, -0.18381404876708984, -0.01635846681892872, 0.0041824947111308575]} +{"t": 1.46, "q": [-0.3639846742153168, 0.008450528606772423, -0.012561597861349583, 0.629196286201477, -0.30889248847961426, 0.001003122772090137, -0.35464444756507874, -0.01587670110166073, -0.00021427033061627299, 0.6182368397712708, -0.3280290365219116, 0.01713034324347973, 0.02097170799970627, -0.028038112446665764, -0.09818577021360397, 0.27730298042297363, 0.21726201474666595, -0.003067961661145091, 0.9841924905776978, 0.16797089576721191, 0.06284527480602264, -0.047924917191267014, 0.21961092948913574, -0.24241690337657928, 0.03221359848976135, 0.917224645614624, -0.18388594686985016, -0.01800030656158924, 0.004494084510952234]} +{"t": 1.4767, "q": [-0.36368638277053833, 0.008629493415355682, -0.012561597861349583, 0.6298184394836426, -0.30961325764656067, 0.0009252578602172434, -0.35418424010276794, -0.015663648024201393, -0.00012052706006215885, 0.6182112693786621, -0.3282276690006256, 0.017219698056578636, 0.023248331621289253, -0.03051437996327877, -0.10082624107599258, 0.2769794166088104, 0.21794511377811432, -0.0031278827227652073, 0.9840607047080994, 0.16825851798057556, 0.06284527480602264, -0.047805074602365494, 0.21883195638656616, -0.24260865151882172, 0.032297488301992416, 0.9156427383422852, -0.18386198580265045, -0.020792631432414055, 0.004877579864114523]} +{"t": 1.4934, "q": [-0.3636011779308319, 0.008697669953107834, -0.012467854656279087, 0.6301167011260986, -0.31011074781417847, 0.0008494489593431354, -0.35413309931755066, -0.015544338151812553, 0.00016070275160018355, 0.6181516647338867, -0.3283977806568146, 0.017345061525702477, 0.025953494012355804, -0.03311050310730934, -0.10382034629583359, 0.2763802111148834, 0.2184244841337204, -0.0033076461404561996, 0.9838929176330566, 0.1685221791267395, 0.06284527480602264, -0.04778110608458519, 0.21831662952899933, -0.24295619130134583, 0.03236939385533333, 0.914911687374115, -0.18388594686985016, -0.023788686841726303, 0.005309011787176132]} +{"t": 1.5104, "q": [-0.36358413100242615, 0.008689148351550102, -0.012454463168978691, 0.630389392375946, -0.31035056710243225, 0.0009493542602285743, -0.353920042514801, -0.015544338151812553, 0.00022766222537029535, 0.6180408596992493, -0.3284980356693268, 0.017549581825733185, 0.028136372566223145, -0.035067636519670486, -0.10625025629997253, 0.2757689952850342, 0.2181728184223175, -0.0037031255196779966, 0.9834614992141724, 0.1687259078025818, 0.06266551464796066, -0.047757137566804886, 0.21795710921287537, -0.24317191541194916, 0.03244129940867424, 0.9144443273544312, -0.1838500052690506, -0.026317358016967773, 0.005692507140338421]} +{"t": 1.5272, "q": [-0.36372047662734985, 0.00868062674999237, -0.012467854656279087, 0.6306535601615906, -0.3105807602405548, 0.001223236438818276, -0.3538433611392975, -0.015578427352011204, 0.00016070275160018355, 0.6179641485214233, -0.32865166664123535, 0.017776448279619217, 0.03025229275226593, -0.037107277661561966, -0.10873065888881683, 0.27518177032470703, 0.21736988425254822, -0.004206463228911161, 0.9828382730484009, 0.1688457429409027, 0.0622820183634758, -0.04779309034347534, 0.21740582585334778, -0.2432078719139099, 0.032513201236724854, 0.9139170050621033, -0.1838739663362503, -0.02805507183074951, 0.006099970545619726]} +{"t": 1.5439, "q": [-0.36377161741256714, 0.008697669953107834, -0.012467854656279087, 0.6309859752655029, -0.31085261702537537, 0.0012648842530325055, -0.3537155091762543, -0.015595471486449242, 0.00010713516530813649, 0.6177681684494019, -0.32876279950141907, 0.01782846264541149, 0.03175218403339386, -0.038348473608493805, -0.11099273711442947, 0.2748582065105438, 0.21680662035942078, -0.004565989598631859, 0.982370913028717, 0.16891765594482422, 0.06205431744456291, -0.04778110608458519, 0.21653097867965698, -0.2432078719139099, 0.032645028084516525, 0.9134736061096191, -0.18386198580265045, -0.029097698628902435, 0.0063276709988713264]} +{"t": 1.5607, "q": [-0.3638909161090851, 0.00874028168618679, -0.012508030980825424, 0.6314290761947632, -0.3112153708934784, 0.0012623503571376204, -0.3536558747291565, -0.015586948953568935, 4.017568790004589e-05, 0.6175550818443298, -0.3288370668888092, 0.017887389287352562, 0.032689616084098816, -0.03888982906937599, -0.11333627998828888, 0.27467843890190125, 0.21654295921325684, -0.004829642828553915, 0.9821192622184753, 0.16896559298038483, 0.06193447485566139, -0.04776912182569504, 0.21530859172344208, -0.24317191541194916, 0.03272891789674759, 0.9130182266235352, -0.1838260293006897, -0.030044453218579292, 0.006579339504241943]} +{"t": 1.5774, "q": [-0.36390796303749084, 0.008757324889302254, -0.012534813955426216, 0.6318040490150452, -0.31152576208114624, 0.001238075434230268, -0.353502482175827, -0.015586948953568935, 4.017568790004589e-05, 0.617546558380127, -0.3289809823036194, 0.017939748242497444, 0.033024415373802185, -0.03905939683318138, -0.11534350365400314, 0.27435487508773804, 0.21644708514213562, -0.005033374764025211, 0.9820233583450317, 0.1691693216562271, 0.061946459114551544, -0.047817058861255646, 0.21384651958942413, -0.24317191541194916, 0.032824791967868805, 0.9119036793708801, -0.18383800983428955, -0.031027158722281456, 0.0068429927341639996]} +{"t": 1.5942, "q": [-0.363967627286911, 0.008765848353505135, -0.012508030980825424, 0.6321449279785156, -0.31201881170272827, 0.0010816939175128937, -0.3535110056400299, -0.015578427352011204, 6.695948104606941e-05, 0.6175295114517212, -0.32957276701927185, 0.01719028316438198, 0.0329708456993103, -0.03876528516411781, -0.11742088943719864, 0.2741631269454956, 0.2162553369998932, -0.0051891696639359, 0.9819155335426331, 0.16930115222930908, 0.06197042763233185, -0.047805074602365494, 0.21227657794952393, -0.24307604134082794, 0.0331004299223423, 0.9103577136993408, -0.18383800983428955, -0.03205780312418938, 0.00701077189296484]} +{"t": 1.6109, "q": [-0.36394205689430237, 0.008927768096327782, -0.012508030980825424, 0.632562518119812, -0.31246164441108704, 0.001056301174685359, -0.3534769117832184, -0.015450594946742058, 0.00010713516530813649, 0.6175209879875183, -0.32977187633514404, 0.016996195539832115, 0.03291727975010872, -0.038220424205064774, -0.11944989114999771, 0.27389946579933167, 0.2162793129682541, -0.00535694882273674, 0.9817357659339905, 0.16945694386959076, 0.062018364667892456, -0.047805074602365494, 0.21081450581550598, -0.24280039966106415, 0.03329217806458473, 0.9090753793716431, -0.18381404876708984, -0.03259709104895592, 0.007262440398335457]} +{"t": 1.6276, "q": [-0.3640698790550232, 0.009208997711539268, -0.012641949579119682, 0.6331931948661804, -0.31342822313308716, 0.00047530626761727035, -0.35348543524742126, -0.015109710395336151, 9.374327055411413e-05, 0.6175209879875183, -0.3300384283065796, 0.016548488289117813, 0.032997630536556244, -0.037659574300050735, -0.12171550840139389, 0.27362382411956787, 0.21626733243465424, -0.005416869651526213, 0.9817118048667908, 0.16970860958099365, 0.06210225448012352, -0.0478290431201458, 0.20953220129013062, -0.24254873394966125, 0.03329217806458473, 0.9085840582847595, -0.18368221819400787, -0.03262105956673622, 0.007514109369367361]} +{"t": 1.6449, "q": [-0.36422330141067505, 0.009660668671131134, -0.012789260596036911, 0.6342499256134033, -0.314375638961792, 0.0004893233999609947, -0.3533746302127838, -0.014598383568227291, 4.017568790004589e-05, 0.6175380349159241, -0.3302595913410187, 0.016063986346125603, 0.03330564498901367, -0.036992672830820084, -0.12388907372951508, 0.2735399305820465, 0.21624335646629333, -0.005452822428196669, 0.9816998243331909, 0.16985242068767548, 0.062066301703453064, -0.047805074602365494, 0.20901687443256378, -0.24241690337657928, 0.03322027251124382, 0.9085720777511597, -0.18356238305568695, -0.03262105956673622, 0.00760998297482729]} +{"t": 1.6616, "q": [-0.36422330141067505, 0.010137908160686493, -0.01319101732224226, 0.6356560587882996, -0.3160346746444702, 0.0005120316636748612, -0.3529229760169983, -0.014095579273998737, -0.00018748654110822827, 0.6176232695579529, -0.3307323157787323, 0.015291460789740086, 0.03347973898053169, -0.03578834608197212, -0.1255083829164505, 0.273611843585968, 0.21643510460853577, -0.005476790945976973, 0.9817357659339905, 0.1699482947587967, 0.062078285962343216, -0.047817058861255646, 0.20905283093452454, -0.24239294230937958, 0.03314836695790291, 0.9086439609527588, -0.1835264265537262, -0.032585106790065765, 0.00760998297482729]} +{"t": 1.6785, "q": [-0.3644363582134247, 0.01083672046661377, -0.013713301159441471, 0.63770991563797, -0.31756556034088135, -0.00020416967163328081, -0.3524201512336731, -0.013251889497041702, -0.0004151487664785236, 0.617682933807373, -0.3310476243495941, 0.014742250554263592, 0.03339938819408417, -0.03426690399646759, -0.12662266194820404, 0.2737196981906891, 0.21674670279026031, -0.005452822428196669, 0.9818675518035889, 0.17003218829631805, 0.062126222997903824, -0.047805074602365494, 0.2090887725353241, -0.24238096177577972, 0.03301654011011124, 0.9087158441543579, -0.1835264265537262, -0.03253716975450516, 0.007586014457046986]} +{"t": 1.6953, "q": [-0.3648368716239929, 0.011612232774496078, -0.014208801090717316, 0.6399938464164734, -0.3199513852596283, -0.0011304572690278292, -0.3523775637149811, -0.012109925970435143, -0.00030801360844634473, 0.6178874373435974, -0.3313589096069336, 0.014200221747159958, 0.03345295414328575, -0.03262430801987648, -0.12767541408538818, 0.27389946579933167, 0.21693845093250275, -0.005404885392636061, 0.982083261013031, 0.17008012533187866, 0.062258049845695496, -0.047805074602365494, 0.2090887725353241, -0.24234500527381897, 0.032944634556770325, 0.9087638258934021, -0.18349047005176544, -0.032525185495615005, 0.007454188074916601]} +{"t": 1.712, "q": [-0.36496472358703613, 0.012268437072634697, -0.014731084927916527, 0.6420732140541077, -0.32206103205680847, -0.0015545125352218747, -0.3523349463939667, -0.010942395776510239, 1.3391895663517062e-05, 0.6181090474128723, -0.33165404200553894, 0.013687150552868843, 0.03349313139915466, -0.03108833357691765, -0.12863841652870178, 0.2740912139415741, 0.21719011664390564, -0.005285043269395828, 0.9823229908943176, 0.17005614936351776, 0.06242582947015762, -0.04779309034347534, 0.20910076797008514, -0.24206936359405518, 0.03283677622675896, 0.908775806427002, -0.1835024505853653, -0.032501220703125, 0.007346330210566521]} +{"t": 1.7287, "q": [-0.36514368653297424, 0.013086559250950813, -0.015106058679521084, 0.643913984298706, -0.3238619863986969, -0.002260919427499175, -0.35230937600135803, -0.009740778245031834, 0.00021427033061627299, 0.6181516647338867, -0.3318636119365692, 0.013238582760095596, 0.03342617303133011, -0.02997056394815445, -0.12936775386333466, 0.27430692315101624, 0.21751369535923004, -0.005165201146155596, 0.9824068546295166, 0.17008012533187866, 0.06252170354127884, -0.04776912182569504, 0.2091367095708847, -0.2417098432779312, 0.03284876048564911, 0.9088956117630005, -0.18351444602012634, -0.03245328366756439, 0.007142598275095224]} +{"t": 1.7455, "q": [-0.3654078543186188, 0.014654628932476044, -0.015132841654121876, 0.6459848880767822, -0.3262750208377838, -0.003052009968087077, -0.35226675868034363, -0.00806192122399807, 0.0002544460294302553, 0.6182027459144592, -0.33200836181640625, 0.012891148217022419, 0.0333859957754612, -0.028754152357578278, -0.13012155890464783, 0.27447471022605896, 0.21788519620895386, -0.0049255164340138435, 0.9825147390365601, 0.17008012533187866, 0.0625816211104393, -0.04767324775457382, 0.2091606855392456, -0.24121849238872528, 0.03283677622675896, 0.9089915156364441, -0.1835264265537262, -0.03238137811422348, 0.006962834857404232]} +{"t": 1.7623, "q": [-0.36528003215789795, 0.017006732523441315, -0.014423071406781673, 0.648098349571228, -0.3281542658805847, -0.0032501346431672573, -0.352241188287735, -0.006178533658385277, 0.0004151487664785236, 0.6181942820549011, -0.3319302499294281, 0.012868570163846016, 0.03341278061270714, -0.02787979133427143, -0.13070142269134521, 0.27463051676750183, 0.21843647956848145, -0.004661863669753075, 0.9826585054397583, 0.17005614936351776, 0.062557652592659, -0.04754142090678215, 0.2091606855392456, -0.24083499610424042, 0.0328008234500885, 0.9090274572372437, -0.1835264265537262, -0.03230947256088257, 0.00672315014526248]} +{"t": 1.779, "q": [-0.3651181161403656, 0.01824243925511837, -0.013807044364511967, 0.6489335298538208, -0.3295009732246399, -0.003719528205692768, -0.35197702050209045, -0.005096225067973137, 0.0006963785854168236, 0.6181772351264954, -0.33181634545326233, 0.01298372633755207, 0.033345818519592285, -0.027788469567894936, -0.1307927519083023, 0.2747623324394226, 0.21908362209796906, -0.004565989598631859, 0.982742428779602, 0.17003218829631805, 0.06259360909461975, -0.04742157831788063, 0.2091606855392456, -0.24025975167751312, 0.03278883919119835, 0.9090514183044434, -0.1835264265537262, -0.032285504043102264, 0.006615292280912399]} +{"t": 1.7957, "q": [-0.3653993308544159, 0.018762288615107536, -0.013874003663659096, 0.6493766903877258, -0.3305242955684662, -0.00439672265201807, -0.351005494594574, -0.004295146092772484, 0.0007231623749248683, 0.6180834770202637, -0.3311992287635803, 0.014234976842999458, 0.03310476616024971, -0.02786443941295147, -0.13076286017894745, 0.27475035190582275, 0.21958695352077484, -0.004446147475391626, 0.9828143119812012, 0.17005614936351776, 0.0626055896282196, -0.04736165702342987, 0.20914870500564575, -0.24002006649971008, 0.03274090215563774, 0.9090514183044434, -0.1835264265537262, -0.03226153552532196, 0.006567355245351791]} +{"t": 1.8127, "q": [-0.36514368653297424, 0.019179871305823326, -0.0138606121763587, 0.6495556235313416, -0.3314766585826874, -0.004230796359479427, -0.34986352920532227, -0.0038860845379531384, 0.0006562029011547565, 0.6180664300918579, -0.3309939503669739, 0.015192355960607529, 0.03279675170779228, -0.027948133647441864, -0.13068686425685883, 0.27475035190582275, 0.22015021741390228, -0.00441019469872117, 0.9829820990562439, 0.17005614936351776, 0.06264154613018036, -0.04731371998786926, 0.2091606855392456, -0.2400919646024704, 0.03269296512007713, 0.9090633988380432, -0.18351444602012634, -0.03224955126643181, 0.006507434416562319]} +{"t": 1.8296, "q": [-0.36435964703559875, 0.019469624385237694, -0.013820436783134937, 0.6497857570648193, -0.33243799209594727, -0.004268622025847435, -0.3487045168876648, -0.0036133769899606705, 0.0004821082402486354, 0.6180834770202637, -0.3316582441329956, 0.015169903635978699, 0.032542306929826736, -0.027948133647441864, -0.13068686425685883, 0.27479827404022217, 0.22080935537815094, -0.004422178957611322, 0.9830660223960876, 0.17008012533187866, 0.06270146369934082, -0.047265782952308655, 0.20919664204120636, -0.24052339792251587, 0.032285504043102264, 0.9090633988380432, -0.1835024505853653, -0.03221359848976135, 0.006435528863221407]} +{"t": 1.8464, "q": [-0.3637971878051758, 0.019759375602006912, -0.013807044364511967, 0.6500840187072754, -0.3332083523273468, -0.004116418771445751, -0.3479630947113037, -0.0033662356436252594, 0.0001740946463542059, 0.6181687116622925, -0.3323901295661926, 0.014893759042024612, 0.032528914511203766, -0.027910007163882256, -0.13075315952301025, 0.27488216757774353, 0.22162427008152008, -0.004434163216501474, 0.9832937121391296, 0.17005614936351776, 0.0628572627902031, -0.047265782952308655, 0.20917266607284546, -0.24109864234924316, 0.03194994479417801, 0.9090633988380432, -0.1834545135498047, -0.032225582748651505, 0.0062917182222008705]} +{"t": 1.8631, "q": [-0.3636437952518463, 0.02010878175497055, -0.013900787569582462, 0.6504504680633545, -0.3329043388366699, -0.004026181995868683, -0.34749436378479004, -0.0030423952266573906, -0.00016070275160018355, 0.6182453632354736, -0.3330181837081909, 0.014950907789170742, 0.0326494425535202, -0.02791755087673664, -0.13076865673065186, 0.27495408058166504, 0.22243919968605042, -0.004518053028732538, 0.9833775758743286, 0.17005614936351776, 0.0628572627902031, -0.047265782952308655, 0.2091367095708847, -0.24185365438461304, 0.03163835406303406, 0.9090394377708435, -0.18335863947868347, -0.032237567007541656, 0.006147907581180334]} +{"t": 1.8799, "q": [-0.3636949062347412, 0.020381489768624306, -0.014235584996640682, 0.6508169174194336, -0.3314225673675537, -0.004782285541296005, -0.3471875786781311, -0.002778209513053298, -0.0007499461644329131, 0.6183050274848938, -0.33338308334350586, 0.014932733029127121, 0.03291727975010872, -0.027932751923799515, -0.13075856864452362, 0.27500200271606445, 0.22314627468585968, -0.004554005805402994, 0.9834135174751282, 0.17008012533187866, 0.06277336925268173, -0.047265782952308655, 0.2091606855392456, -0.24233302474021912, 0.03136271610856056, 0.9090394377708435, -0.18335863947868347, -0.032225582748651505, 0.005992112681269646]} +{"t": 1.8966, "q": [-0.363711953163147, 0.02064567618072033, -0.01446324773132801, 0.6512600779533386, -0.3304004669189453, -0.0056303078308701515, -0.3468126058578491, -0.002522546099498868, -0.0011784868547692895, 0.6184925436973572, -0.33368173241615295, 0.014841237105429173, 0.03307798132300377, -0.02806207165122032, -0.1306523084640503, 0.2753136157989502, 0.2238892912864685, -0.004565989598631859, 0.9834495186805725, 0.17008012533187866, 0.06274940073490143, -0.0472537986934185, 0.2091367095708847, -0.24290825426578522, 0.031314779072999954, 0.9090633988380432, -0.18334665894508362, -0.032237567007541656, 0.005932191386818886]} +{"t": 1.9133, "q": [-0.36357560753822327, 0.02071385271847248, -0.014610557816922665, 0.6514560580253601, -0.3303796052932739, -0.005579282063990831, -0.34639501571655273, -0.002454369328916073, -0.0015266761183738708, 0.6186032891273499, -0.3341872990131378, 0.014969823881983757, 0.03314494341611862, -0.028100084513425827, -0.1306270956993103, 0.2757810056209564, 0.22470422089099884, -0.004577973857522011, 0.9834854602813721, 0.17008012533187866, 0.06272543221712112, -0.047205861657857895, 0.20912472903728485, -0.24337564408779144, 0.03111104853451252, 0.9090154767036438, -0.18333467841148376, -0.032237567007541656, 0.005932191386818886]} +{"t": 1.93, "q": [-0.3630898594856262, 0.0207735076546669, -0.01470430102199316, 0.651464581489563, -0.3305857181549072, -0.005682780407369137, -0.34583255648612976, -0.0024202808272093534, -0.0018212978029623628, 0.618739664554596, -0.33467110991477966, 0.014945588074624538, 0.03326546773314476, -0.028100112453103065, -0.13061681389808655, 0.2761405110359192, 0.22553113102912903, -0.004565989598631859, 0.9834974408149719, 0.17010408639907837, 0.06267749518156052, -0.04718189314007759, 0.209112748503685, -0.24380707740783691, 0.031075095757842064, 0.9089675545692444, -0.18331070244312286, -0.032237567007541656, 0.005980128422379494]} +{"t": 1.9468, "q": [-0.36239954829216003, 0.020739419385790825, -0.01486500445753336, 0.6514390110969543, -0.3310835659503937, -0.0057815671898424625, -0.3448013961315155, -0.002403236459940672, -0.0020623519085347652, 0.6187993288040161, -0.3354676365852356, 0.015040748752653599, 0.03349313139915466, -0.028084930032491684, -0.13061663508415222, 0.27635622024536133, 0.22650185227394104, -0.004565989598631859, 0.9835813045501709, 0.1702478975057602, 0.06267749518156052, -0.047145940363407135, 0.20910076797008514, -0.24414263665676117, 0.031075095757842064, 0.9089195728302002, -0.1831549108028412, -0.032237567007541656, 0.006004096940159798]} +{"t": 1.9637, "q": [-0.36147063970565796, 0.020739419385790825, -0.015092666260898113, 0.6514560580253601, -0.33177313208580017, -0.005788199603557587, -0.34364238381385803, -0.0024288028944283724, -0.0023703654296696186, 0.6188334226608276, -0.3364664614200592, 0.014803599566221237, 0.03345295414328575, -0.028122982010245323, -0.13058115541934967, 0.27661988139152527, 0.22755646705627441, -0.00453003728762269, 0.9836891889572144, 0.1703198105096817, 0.06277336925268173, -0.04710998758673668, 0.20910076797008514, -0.24451415240764618, 0.030835412442684174, 0.9089195728302002, -0.18308301270008087, -0.03224955126643181, 0.005980128422379494]} +{"t": 1.9804, "q": [-0.35962986946105957, 0.020747940987348557, -0.015280152671039104, 0.6514390110969543, -0.33279359340667725, -0.005616696085780859, -0.34166523814201355, -0.0024202808272093534, -0.0027051628567278385, 0.6188248991966248, -0.3375229835510254, 0.014596089720726013, 0.03343956172466278, -0.028252290561795235, -0.13047488033771515, 0.27702733874320984, 0.2287548929452896, -0.004434163216501474, 0.9838689565658569, 0.17045164108276367, 0.06286924332380295, -0.04709800332784653, 0.20910076797008514, -0.245257169008255, 0.030667632818222046, 0.9088956117630005, -0.18307103216648102, -0.03226153552532196, 0.005992112681269646]} +{"t": 1.9971, "q": [-0.35767829418182373, 0.0207735076546669, -0.015440856106579304, 0.6514560580253601, -0.33391425013542175, -0.005780489183962345, -0.3397477865219116, -0.0024117587599903345, -0.002946217078715563, 0.6188845634460449, -0.3386920094490051, 0.014688096940517426, 0.03346634656190872, -0.028358615934848785, -0.13044537603855133, 0.27777037024497986, 0.22997727990150452, -0.004374242387712002, 0.9841565489768982, 0.1705714762210846, 0.06289321184158325, -0.04710998758673668, 0.20910076797008514, -0.24597622454166412, 0.030607711523771286, 0.9089195728302002, -0.18303507566452026, -0.03226153552532196, 0.005932191386818886]} +{"t": 2.0139, "q": [-0.3558119535446167, 0.020739419385790825, -0.015414072200655937, 0.6516180038452148, -0.3351915776729584, -0.006105738691985607, -0.3380092680454254, -0.0024202808272093534, -0.0028926494996994734, 0.6193447113037109, -0.34010446071624756, 0.014710940420627594, 0.03354669734835625, -0.028366198763251305, -0.13045060634613037, 0.2784534692764282, 0.2310798317193985, -0.004386226646602154, 0.9843602776527405, 0.17060743272304535, 0.06297710537910461, -0.04709800332784653, 0.20910076797008514, -0.24663536250591278, 0.030463900417089462, 0.9088476896286011, -0.1829751580953598, -0.03226153552532196, 0.00589623861014843]} +{"t": 2.0306, "q": [-0.3543376326560974, 0.02069680765271187, -0.01538728829473257, 0.6520867347717285, -0.3364011347293854, -0.0060087935999035835, -0.3367905914783478, -0.0024202808272093534, -0.002852473873645067, 0.6199498176574707, -0.3413865268230438, 0.014819608069956303, 0.03358687460422516, -0.02837374247610569, -0.13046610355377197, 0.27889689803123474, 0.23199063539505005, -0.004386226646602154, 0.9844921231269836, 0.1706194132566452, 0.06304901093244553, -0.04709800332784653, 0.20905283093452454, -0.24706678092479706, 0.0303800106048584, 0.9087997674942017, -0.18273547291755676, -0.032285504043102264, 0.005884254816919565]} +{"t": 2.0474, "q": [-0.35294002294540405, 0.02071385271847248, -0.015400679782032967, 0.6527684926986694, -0.3376813530921936, -0.0060650440864264965, -0.33556342124938965, -0.0024373249616473913, -0.0028926494996994734, 0.6206656694412231, -0.3427143692970276, 0.015008705668151379, 0.03358687460422516, -0.028373800218105316, -0.13044556975364685, 0.27924442291259766, 0.232853502035141, -0.004386226646602154, 0.9845041036605835, 0.1706433892250061, 0.06307297945022583, -0.04706205427646637, 0.20907679200172424, -0.24749821424484253, 0.030296120792627335, 0.9088117480278015, -0.18247181177139282, -0.032285504043102264, 0.005884254816919565]} +{"t": 2.0642, "q": [-0.3509969711303711, 0.02070533111691475, -0.015400679782032967, 0.6533138751983643, -0.3389248251914978, -0.006040437612682581, -0.33364593982696533, -0.0024373249616473913, -0.00287925754673779, 0.6211258769035339, -0.34400084614753723, 0.015051414258778095, 0.03356008976697922, -0.028525948524475098, -0.130313903093338, 0.27947214245796204, 0.23360849916934967, -0.00430233683437109, 0.9845759868621826, 0.1706913262605667, 0.06310892850160599, -0.04705007001757622, 0.20910076797008514, -0.24783377349376678, 0.030140327289700508, 0.9088117480278015, -0.18223212659358978, -0.032285504043102264, 0.00589623861014843]} +{"t": 2.081, "q": [-0.3484147787094116, 0.020730897784233093, -0.01538728829473257, 0.6537399888038635, -0.3401523232460022, -0.006102927029132843, -0.3314642906188965, -0.0024288028944283724, -0.002865865593776107, 0.6215349435806274, -0.3452378809452057, 0.015049930661916733, 0.03342617303133011, -0.02855638973414898, -0.13028346002101898, 0.2801552414894104, 0.23419572412967682, -0.004206463228911161, 0.9846599102020264, 0.17075124382972717, 0.06314488500356674, -0.047026101499795914, 0.209112748503685, -0.24801354110240936, 0.030140327289700508, 0.9088476896286011, -0.18216022849082947, -0.03226153552532196, 0.005920207127928734]} +{"t": 2.0977, "q": [-0.3463098108768463, 0.0207735076546669, -0.015400679782032967, 0.6546263098716736, -0.34163081645965576, -0.006175035145133734, -0.32960644364356995, -0.0024202808272093534, -0.0028926494996994734, 0.6221229434013367, -0.3468356430530548, 0.014928518794476986, 0.03327886015176773, -0.02846498042345047, -0.13040558993816376, 0.2808263599872589, 0.2344474047422409, -0.004230431281030178, 0.9848037362098694, 0.17073926329612732, 0.0631568655371666, -0.047026101499795914, 0.20910076797008514, -0.24801354110240936, 0.030164295807480812, 0.9088237285614014, -0.18213625252246857, -0.03227351978421211, 0.00589623861014843]} +{"t": 2.1145, "q": [-0.3450911343097687, 0.020875772461295128, -0.015735477209091187, 0.6562114357948303, -0.3437921404838562, -0.006734534632414579, -0.32789352536201477, -0.002377670258283615, -0.003133703488856554, 0.6228814125061035, -0.3483392894268036, 0.015009594149887562, 0.033359210938215256, -0.02835099771618843, -0.1304606944322586, 0.2809102535247803, 0.23456723988056183, -0.00430233683437109, 0.9848276972770691, 0.17073926329612732, 0.0631808340549469, -0.047026101499795914, 0.20910076797008514, -0.24801354110240936, 0.03021223098039627, 0.9088476896286011, -0.18211229145526886, -0.032285504043102264, 0.005872270558029413]} +{"t": 2.1312, "q": [-0.3445712924003601, 0.020986560732126236, -0.016565775498747826, 0.6586146354675293, -0.3454911708831787, -0.006010520271956921, -0.32643622159957886, -0.0023180153220891953, -0.0038970415480434895, 0.6237762570381165, -0.3497041165828705, 0.015045630745589733, 0.03333242982625961, -0.0282597579061985, -0.13052119314670563, 0.2808023691177368, 0.23455525934696198, -0.004290352575480938, 0.9847437739372253, 0.17072726786136627, 0.06302504241466522, -0.047026101499795914, 0.20914870500564575, -0.24798958003520966, 0.030248183757066727, 0.9088956117630005, -0.18211229145526886, -0.03226153552532196, 0.005836317781358957]} +{"t": 2.1479, "q": [-0.3444264233112335, 0.02113143727183342, -0.01744963973760605, 0.6615121364593506, -0.34735873341560364, -0.006284661591053009, -0.3254562020301819, -0.0021646174136549234, -0.004646987654268742, 0.6250119209289551, -0.35118669271469116, 0.01506955735385418, 0.03333242982625961, -0.0281533095985651, -0.13059179484844208, 0.2806825339794159, 0.23453128337860107, -0.004290352575480938, 0.9846718907356262, 0.17071528732776642, 0.0628812313079834, -0.047026101499795914, 0.2091367095708847, -0.2479775846004486, 0.03033207356929779, 0.9088956117630005, -0.1821002960205078, -0.03226153552532196, 0.005836317781358957]} +{"t": 2.1647, "q": [-0.3446139097213745, 0.021157002076506615, -0.018038883805274963, 0.6642307043075562, -0.3495800793170929, -0.00643137888982892, -0.32511529326438904, -0.002130528911948204, -0.005062136333435774, 0.6269720196723938, -0.3527781069278717, 0.015102318488061428, 0.03345295414328575, -0.028160909190773964, -0.13058675825595856, 0.28056269884109497, 0.23454327881336212, -0.004254399798810482, 0.9844921231269836, 0.17071528732776642, 0.06282130628824234, -0.04701411724090576, 0.209112748503685, -0.24794164299964905, 0.030487868934869766, 0.9089195728302002, -0.18208831548690796, -0.03227351978421211, 0.005848302040249109]} +{"t": 2.1814, "q": [-0.34459686279296875, 0.021088825538754463, -0.018092451617121696, 0.6667618155479431, -0.3521409332752228, -0.006115313619375229, -0.3250982463359833, -0.0021901836153119802, -0.0049817850813269615, 0.629503071308136, -0.35483941435813904, 0.014928827062249184, 0.03349313139915466, -0.02821407839655876, -0.13057199120521545, 0.2805866599082947, 0.23451930284500122, -0.00430233683437109, 0.9844442009925842, 0.17073926329612732, 0.06277336925268173, -0.04699014872312546, 0.20912472903728485, -0.24780981242656708, 0.030475884675979614, 0.9089435338973999, -0.18208831548690796, -0.032237567007541656, 0.005872270558029413]} +{"t": 2.1981, "q": [-0.3444775342941284, 0.020926905795931816, -0.017838004976511, 0.6691309213638306, -0.35393014550209045, -0.005456691607832909, -0.32505565881729126, -0.0023521038237959146, -0.004593420308083296, 0.6319319009780884, -0.35661187767982483, 0.015283345244824886, 0.03342617303133011, -0.028214106336236, -0.1305617243051529, 0.2806825339794159, 0.2340998500585556, -0.004518053028732538, 0.9844801425933838, 0.17073926329612732, 0.06277336925268173, -0.04700213298201561, 0.2091367095708847, -0.24771393835544586, 0.030535805970430374, 0.909003496170044, -0.18208831548690796, -0.032225582748651505, 0.005860286299139261]} +{"t": 2.2149, "q": [-0.34423041343688965, 0.020807595923542976, -0.01750320754945278, 0.6708438992500305, -0.3552178144454956, -0.005316876340657473, -0.3249448537826538, -0.0024288028944283724, -0.0041916631162166595, 0.6336789131164551, -0.3577723801136017, 0.015601951628923416, 0.03333242982625961, -0.028206439688801765, -0.13058730959892273, 0.2806825339794159, 0.23363247513771057, -0.004649879410862923, 0.9844921231269836, 0.17073926329612732, 0.06279733777046204, -0.04701411724090576, 0.20917266607284546, -0.24768996238708496, 0.030595727264881134, 0.9090633988380432, -0.1820763349533081, -0.03218962997198105, 0.005872270558029413]} +{"t": 2.2316, "q": [-0.3438383936882019, 0.0207735076546669, -0.017047883942723274, 0.6717216372489929, -0.35609447956085205, -0.00486040860414505, -0.3247658908367157, -0.0024714134633541107, -0.0037631227169185877, 0.6345993280410767, -0.3584173917770386, 0.015885688364505768, 0.033185116946697235, -0.028168482705950737, -0.1305919885635376, 0.2806585729122162, 0.2334766834974289, -0.004685832187533379, 0.9844801425933838, 0.17072726786136627, 0.0628572627902031, -0.047026101499795914, 0.20917266607284546, -0.24757012724876404, 0.030535805970430374, 0.909147322177887, -0.1820763349533081, -0.03215367719531059, 0.005872270558029413]} +{"t": 2.2483, "q": [-0.343574196100235, 0.020782029256224632, -0.016860397532582283, 0.6720539927482605, -0.3565468490123749, -0.00481444550678134, -0.3244931995868683, -0.0024458470288664103, -0.0036425956059247255, 0.634718656539917, -0.3586246371269226, 0.015938905999064445, 0.03293067216873169, -0.028168482705950737, -0.1305919885635376, 0.2806226313114166, 0.23353660106658936, -0.004685832187533379, 0.9845160841941833, 0.17073926329612732, 0.0629051998257637, -0.04701411724090576, 0.20917266607284546, -0.2473544031381607, 0.030643664300441742, 0.9092192053794861, -0.18206435441970825, -0.03211772441864014, 0.005872270558029413]} +{"t": 2.265, "q": [-0.34354010224342346, 0.020807595923542976, -0.016847005113959312, 0.6721818447113037, -0.3566896915435791, -0.004823342431336641, -0.3243994414806366, -0.0024288028944283724, -0.0036827712319791317, 0.634718656539917, -0.3586369454860687, 0.015960874035954475, 0.032703008502721786, -0.028198933228850365, -0.13056154549121857, 0.2806106209754944, 0.23374032974243164, -0.004613926634192467, 0.9844801425933838, 0.17075124382972717, 0.06289321184158325, -0.047026101499795914, 0.2091846466064453, -0.2471027374267578, 0.030679617077112198, 0.9093630313873291, -0.1820283979177475, -0.03208177164196968, 0.005872270558029413]} +{"t": 2.2818, "q": [-0.3436168134212494, 0.0207735076546669, -0.016860397532582283, 0.6722926497459412, -0.3567466735839844, -0.00480941915884614, -0.32437387108802795, -0.0024202808272093534, -0.003696163184940815, 0.6346675157546997, -0.35865727066993713, 0.01596837118268013, 0.03260926529765129, -0.02828264608979225, -0.1304752677679062, 0.2805866599082947, 0.2338481843471527, -0.004589958116412163, 0.9844921231269836, 0.17073926329612732, 0.0628572627902031, -0.047026101499795914, 0.20923258364200592, -0.246958926320076, 0.030655648559331894, 0.9095547795295715, -0.18196848034858704, -0.03202185034751892, 0.005932191386818886]} +{"t": 2.2985, "q": [-0.34354862570762634, 0.020790552720427513, -0.016713086515665054, 0.6723352670669556, -0.3567344844341278, -0.004816561471670866, -0.32428866624832153, -0.002394714392721653, -0.003669379511848092, 0.6347016096115112, -0.35864517092704773, 0.01597551815211773, 0.03256909176707268, -0.028335899114608765, -0.1304297000169754, 0.2806106209754944, 0.2338721603155136, -0.004565989598631859, 0.9845041036605835, 0.17073926329612732, 0.06289321184158325, -0.047026101499795914, 0.20925655961036682, -0.24694694578647614, 0.030655648559331894, 0.9099143147468567, -0.181956484913826, -0.03197391331195831, 0.005920207127928734]} +{"t": 2.3152, "q": [-0.34340375661849976, 0.020782029256224632, -0.016713086515665054, 0.67237788438797, -0.3567427396774292, -0.004831207916140556, -0.32409265637397766, -0.0024117587599903345, -0.0037095551379024982, 0.634718656539917, -0.3586490750312805, 0.015953727066516876, 0.03263605013489723, -0.028313172981142998, -0.13041400909423828, 0.28064659237861633, 0.23390810191631317, -0.004565989598631859, 0.9845160841941833, 0.17073926329612732, 0.06294114887714386, -0.04700213298201561, 0.20924457907676697, -0.24691098928451538, 0.030643664300441742, 0.9105015397071838, -0.18192054331302643, -0.03184208646416664, 0.005980128422379494]} +{"t": 2.332, "q": [-0.3432077467441559, 0.020782029256224632, -0.016713086515665054, 0.67237788438797, -0.3567347824573517, -0.004860229324549437, -0.3238881230354309, -0.002403236459940672, -0.0037899063900113106, 0.6347101330757141, -0.35864508152008057, 0.01596096158027649, 0.03266283497214317, -0.028328346088528633, -0.1304141879081726, 0.28069451451301575, 0.23394405841827393, -0.004565989598631859, 0.9845520257949829, 0.17076322436332703, 0.06298908591270447, -0.047026101499795914, 0.20926854014396667, -0.24688702821731567, 0.030595727264881134, 0.91117262840271, -0.18190854787826538, -0.03166232258081436, 0.005992112681269646]} +{"t": 2.3487, "q": [-0.3429606258869171, 0.0207735076546669, -0.016726477071642876, 0.6723693609237671, -0.3567432463169098, -0.004903987515717745, -0.32363244891166687, -0.0023606258910149336, -0.003776514669880271, 0.6347101330757141, -0.35865727066993713, 0.01596837118268013, 0.03271640092134476, -0.028358757495880127, -0.13039402663707733, 0.28076642751693726, 0.23394405841827393, -0.004554005805402994, 0.9845520257949829, 0.17076322436332703, 0.06300107389688492, -0.04701411724090576, 0.20926854014396667, -0.24691098928451538, 0.03063168004155159, 0.9119755625724792, -0.18190854787826538, -0.031434621661901474, 0.00601608119904995]} +{"t": 2.3655, "q": [-0.3427390456199646, 0.020816117525100708, -0.016766652464866638, 0.6723267436027527, -0.356747567653656, -0.004940422717481852, -0.32346200942993164, -0.0023435817565768957, -0.0038702578749507666, 0.634718656539917, -0.35866138339042664, 0.015975695103406906, 0.03276996687054634, -0.028351271525025368, -0.13035798072814941, 0.2809102535247803, 0.23394405841827393, -0.004554005805402994, 0.9845520257949829, 0.17073926329612732, 0.06307297945022583, -0.04699014872312546, 0.20928052067756653, -0.24689900875091553, 0.030619695782661438, 0.9128504395484924, -0.18190854787826538, -0.031099064275622368, 0.00606401776894927]} +{"t": 2.3822, "q": [-0.3425515592098236, 0.02082464098930359, -0.01682022027671337, 0.672301173210144, -0.3567437529563904, -0.004976839758455753, -0.3233512341976166, -0.0023180153220891953, -0.003910433501005173, 0.6347527503967285, -0.3586615025997162, 0.015990249812602997, 0.032850321382284164, -0.028351271525025368, -0.13035798072814941, 0.28104206919670105, 0.23394405841827393, -0.004494084510952234, 0.9845879673957825, 0.17072726786136627, 0.06312091648578644, -0.046978164464235306, 0.20926854014396667, -0.24689900875091553, 0.03063168004155159, 0.9139529466629028, -0.18190854787826538, -0.03082342818379402, 0.00606401776894927]} +{"t": 2.399, "q": [-0.3423811197280884, 0.020909860730171204, -0.016847005113959312, 0.6722841262817383, -0.3567236363887787, -0.00501300347968936, -0.3231040835380554, -0.002258360618725419, -0.003964001312851906, 0.6348123550415039, -0.3586652874946594, 0.01595388725399971, 0.03289049491286278, -0.028313370421528816, -0.13034211099147797, 0.2811259627342224, 0.23393207788467407, -0.004458131734281778, 0.9845999479293823, 0.17071528732776642, 0.0631808340549469, -0.046966180205345154, 0.20930449664592743, -0.24691098928451538, 0.030667632818222046, 0.9152472615242004, -0.18190854787826538, -0.0303800106048584, 0.006076002027839422]} +{"t": 2.4158, "q": [-0.3422788381576538, 0.020960994064807892, -0.016913963481783867, 0.6722926497459412, -0.3567115366458893, -0.005034701898694038, -0.3230358958244324, -0.0022413162514567375, -0.004030960611999035, 0.6348464488983154, -0.3586652874946594, 0.01595388725399971, 0.03289049491286278, -0.02831333316862583, -0.13035237789154053, 0.28134167194366455, 0.23396803438663483, -0.0043982104398310184, 0.984611988067627, 0.17071528732776642, 0.06322877109050751, -0.04699014872312546, 0.20944830775260925, -0.24685107171535492, 0.030655648559331894, 0.9165056347846985, -0.18190854787826538, -0.029529130086302757, 0.006076002027839422]} +{"t": 2.4329, "q": [-0.342151015996933, 0.020978039130568504, -0.01695414073765278, 0.6722841262817383, -0.3567119538784027, -0.005092925857752562, -0.3229677379131317, -0.0022072279825806618, -0.004044352564960718, 0.6349743008613586, -0.35867732763290405, 0.01593218557536602, 0.032863713800907135, -0.02826783061027527, -0.1303415447473526, 0.28166523575782776, 0.23395603895187378, -0.004338289611041546, 0.9846599102020264, 0.17072726786136627, 0.06322877109050751, -0.04699014872312546, 0.20986774563789368, -0.2466832995414734, 0.030667632818222046, 0.9177280068397522, -0.18193252384662628, -0.028270786628127098, 0.006052033975720406]} +{"t": 2.4496, "q": [-0.3420998752117157, 0.020986560732126236, -0.01695414073765278, 0.6722670793533325, -0.3567369282245636, -0.0051659769378602505, -0.3229762613773346, -0.0022242721170186996, -0.004030960611999035, 0.6351277232170105, -0.3586811125278473, 0.015895839780569077, 0.032850321382284164, -0.028260231018066406, -0.13034658133983612, 0.2820966839790344, 0.23394405841827393, -0.004326305352151394, 0.9846718907356262, 0.17072726786136627, 0.06325273960828781, -0.04699014872312546, 0.21049092710018158, -0.2464076578617096, 0.030607711523771286, 0.9188185930252075, -0.18190854787826538, -0.027000458911061287, 0.00601608119904995]} +{"t": 2.4664, "q": [-0.3420657813549042, 0.0210036039352417, -0.0169675312936306, 0.6722841262817383, -0.3567449748516083, -0.0051515111699700356, -0.3229677379131317, -0.0022413162514567375, -0.004044352564960718, 0.635246992111206, -0.3586973547935486, 0.01589599810540676, 0.032863713800907135, -0.028207119554281235, -0.1303407996892929, 0.28249216079711914, 0.23392009735107422, -0.00436225812882185, 0.9846838712692261, 0.17071528732776642, 0.06325273960828781, -0.046978164464235306, 0.21132983267307281, -0.24625186622142792, 0.030619695782661438, 0.9200289845466614, -0.18190854787826538, -0.02618553303182125, 0.006040049716830254]} +{"t": 2.4832, "q": [-0.3420657813549042, 0.02102064900100231, -0.0169675312936306, 0.672301173210144, -0.35677802562713623, -0.005210133269429207, -0.3229336440563202, -0.0022413162514567375, -0.004044352564960718, 0.6352555155754089, -0.3587011396884918, 0.015859652310609818, 0.032850321382284164, -0.028199518099427223, -0.13034583628177643, 0.28279176354408264, 0.23389612138271332, -0.004374242387712002, 0.9846599102020264, 0.17070330679416656, 0.06322877109050751, -0.046978164464235306, 0.21225261688232422, -0.2462039291858673, 0.030655648559331894, 0.9213472604751587, -0.18190854787826538, -0.025742115452885628, 0.006052033975720406]} +{"t": 2.4999, "q": [-0.3420572578907013, 0.02101212739944458, -0.017007706686854362, 0.6722926497459412, -0.35678213834762573, -0.005217456258833408, -0.32290807366371155, -0.0022413162514567375, -0.004057744517922401, 0.6352555155754089, -0.3587011396884918, 0.015859652310609818, 0.032836928963661194, -0.02819949947297573, -0.13035611808300018, 0.28306740522384644, 0.23389612138271332, -0.004386226646602154, 0.9846718907356262, 0.17071528732776642, 0.0632048025727272, -0.04700213298201561, 0.21306754648685455, -0.24606011807918549, 0.03063168004155159, 0.9224737286567688, -0.18190854787826538, -0.02545449510216713, 0.00606401776894927]} +{"t": 2.5166, "q": [-0.34208282828330994, 0.021071782335639, -0.017034491524100304, 0.6722926497459412, -0.3568105399608612, -0.005195938982069492, -0.32295069098472595, -0.0022413162514567375, -0.004030960611999035, 0.6352384686470032, -0.3587173819541931, 0.015859829261898994, 0.032850321382284164, -0.02820703387260437, -0.13037161529064178, 0.2833550274372101, 0.23389612138271332, -0.004326305352151394, 0.9846718907356262, 0.1706673502922058, 0.06314488500356674, -0.046978164464235306, 0.21381056308746338, -0.2458084374666214, 0.03076350688934326, 0.9235882759094238, -0.18188458681106567, -0.02503504604101181, 0.006040049716830254]} +{"t": 2.5334, "q": [-0.34211692214012146, 0.021071782335639, -0.017021099105477333, 0.672301173210144, -0.3568510115146637, -0.00515272282063961, -0.3230273723602295, -0.0022327941842377186, -0.003977392800152302, 0.6352128982543945, -0.3587173819541931, 0.015859829261898994, 0.03279675170779228, -0.02818428725004196, -0.13036620616912842, 0.283618688583374, 0.23389612138271332, -0.00436225812882185, 0.9846838712692261, 0.1706673502922058, 0.06314488500356674, -0.046978164464235306, 0.2145296186208725, -0.2455567717552185, 0.030679617077112198, 0.924547016620636, -0.18187260627746582, -0.024663535878062248, 0.00601608119904995]} +{"t": 2.5501, "q": [-0.3421765863895416, 0.021071782335639, -0.017021099105477333, 0.672301173210144, -0.3568715751171112, -0.005174746736884117, -0.32309556007385254, -0.002258360618725419, -0.003964001312851906, 0.6351447105407715, -0.35872137546539307, 0.01585259474813938, 0.03276996687054634, -0.028191888704895973, -0.1303611695766449, 0.28385835886001587, 0.23390810191631317, -0.004326305352151394, 0.9846599102020264, 0.1706433892250061, 0.06314488500356674, -0.04700213298201561, 0.2153804898262024, -0.24541296064853668, 0.03063168004155159, 0.9254817962646484, -0.1818246692419052, -0.024327976629137993, 0.00601608119904995]} +{"t": 2.5669, "q": [-0.3422362208366394, 0.021088825538754463, -0.017007706686854362, 0.672301173210144, -0.3569083511829376, -0.005182467866688967, -0.3231211304664612, -0.002283926820382476, -0.003937217406928539, 0.6350851058959961, -0.35872557759284973, 0.015874473378062248, 0.03271640092134476, -0.02818428725004196, -0.13036620616912842, 0.284074068069458, 0.23390810191631317, -0.00430233683437109, 0.9846599102020264, 0.1706673502922058, 0.06319282203912735, -0.046966180205345154, 0.21619541943073273, -0.24529312551021576, 0.030619695782661438, 0.9262847304344177, -0.18181267380714417, -0.02395646646618843, 0.006004096940159798]} +{"t": 2.5836, "q": [-0.34230440855026245, 0.021088825538754463, -0.017007706686854362, 0.672301173210144, -0.3569444715976715, -0.005102816969156265, -0.32317227125167847, -0.002275404753163457, -0.003910433501005173, 0.63494873046875, -0.3587295711040497, 0.015867238864302635, 0.0327431857585907, -0.02819949947297573, -0.13035611808300018, 0.2843017876148224, 0.23389612138271332, -0.004314321093261242, 0.9846838712692261, 0.1706673502922058, 0.0632048025727272, -0.046978164464235306, 0.2169264554977417, -0.2451852709054947, 0.030595727264881134, 0.9267401099205017, -0.1817767322063446, -0.023608922958374023, 0.005992112681269646]} +{"t": 2.6003, "q": [-0.3424237072467804, 0.021097347140312195, -0.017007706686854362, 0.672301173210144, -0.3569648265838623, -0.005095729138702154, -0.32323190569877625, -0.0022924491204321384, -0.00388364982791245, 0.6347867846488953, -0.35872969031333923, 0.015881795436143875, 0.03263605013489723, -0.02819949947297573, -0.13035611808300018, 0.2845055162906647, 0.23390810191631317, -0.004266384057700634, 0.9846838712692261, 0.17065536975860596, 0.0632048025727272, -0.046978164464235306, 0.2174777388572693, -0.24511335790157318, 0.030535805970430374, 0.9272913932800293, -0.181728795170784, -0.023273365572094917, 0.005908222869038582]} +{"t": 2.6171, "q": [-0.34257712960243225, 0.021088825538754463, -0.017007706686854362, 0.6723096966743469, -0.35701748728752136, -0.005045370664447546, -0.3233512341976166, -0.0022924491204321384, -0.0038702578749507666, 0.6345822811126709, -0.35872969031333923, 0.015881795436143875, 0.03258248046040535, -0.02819949947297573, -0.13035611808300018, 0.2847212255001068, 0.23392009735107422, -0.004290352575480938, 0.9846838712692261, 0.1706673502922058, 0.06321679055690765, -0.046978164464235306, 0.21795710921287537, -0.24507740139961243, 0.03051183745265007, 0.9277468323707581, -0.181728795170784, -0.02287788689136505, 0.005860286299139261]} +{"t": 2.6338, "q": [-0.3426538109779358, 0.021088825538754463, -0.017007706686854362, 0.6722841262817383, -0.3570133447647095, -0.0050380476750433445, -0.3233768045902252, -0.0023009711876511574, -0.0038702578749507666, 0.6344203352928162, -0.35873812437057495, 0.015925588086247444, 0.03258248046040535, -0.02819191664457321, -0.13035088777542114, 0.284817099571228, 0.23392009735107422, -0.004266384057700634, 0.9846958518028259, 0.1706433892250061, 0.06324075907468796, -0.04699014872312546, 0.21828067302703857, -0.2449815273284912, 0.030475884675979614, 0.9280823469161987, -0.18169283866882324, -0.022518359124660492, 0.005836317781358957]} +{"t": 2.6505, "q": [-0.3427475690841675, 0.021088825538754463, -0.017021099105477333, 0.6722756028175354, -0.35703349113464355, -0.005001847632229328, -0.3233938217163086, -0.0023094932548701763, -0.0038568659219890833, 0.6342328786849976, -0.3587624430656433, 0.015925852581858635, 0.03255569934844971, -0.028222329914569855, -0.13033071160316467, 0.28496089577674866, 0.2338721603155136, -0.004266384057700634, 0.9847437739372253, 0.1706433892250061, 0.06325273960828781, -0.046978164464235306, 0.21854433417320251, -0.24484971165657043, 0.03045191615819931, 0.9284418821334839, -0.18159696459770203, -0.022098911926150322, 0.005836317781358957]} +{"t": 2.6673, "q": [-0.342824250459671, 0.02108030393719673, -0.017034491524100304, 0.672232985496521, -0.35706984996795654, -0.004951308947056532, -0.3234279155731201, -0.002275404753163457, -0.0038702578749507666, 0.6339942812919617, -0.35875844955444336, 0.015933087095618248, 0.032542306929826736, -0.02823753096163273, -0.13032063841819763, 0.2850927412509918, 0.23388414084911346, -0.004254399798810482, 0.9847557544708252, 0.1706433892250061, 0.06327670812606812, -0.04699014872312546, 0.2187720388174057, -0.24472986161708832, 0.030403979122638702, 0.9287175536155701, -0.1815250664949417, -0.0216554943472147, 0.005812349263578653]} +{"t": 2.684, "q": [-0.34289243817329407, 0.021105870604515076, -0.017021099105477333, 0.6722074151039124, -0.35710227489471436, -0.004922558553516865, -0.3234023451805115, -0.002275404753163457, -0.00388364982791245, 0.6337811946868896, -0.35875844955444336, 0.015933087095618248, 0.03255569934844971, -0.02821478620171547, -0.13031521439552307, 0.2852005958557129, 0.2338721603155136, -0.004290352575480938, 0.9847797155380249, 0.1706433892250061, 0.06328869611024857, -0.04699014872312546, 0.21898774802684784, -0.24462200701236725, 0.0303800106048584, 0.9290770888328552, -0.18144117295742035, -0.021140173077583313, 0.005824333522468805]} +{"t": 2.7008, "q": [-0.34289243817329407, 0.021088825538754463, -0.01699431613087654, 0.6721903681755066, -0.3571104109287262, -0.0049226488918066025, -0.3233768045902252, -0.002275404753163457, -0.003910433501005173, 0.6336789131164551, -0.3587624430656433, 0.015925852581858635, 0.03256909176707268, -0.028214946389198303, -0.1302535980939865, 0.28521257638931274, 0.23386016488075256, -0.004278368316590786, 0.9848037362098694, 0.1706433892250061, 0.06327670812606812, -0.04699014872312546, 0.21916751563549042, -0.2445620894432068, 0.030368026345968246, 0.9295684099197388, -0.18129736185073853, -0.02052897773683071, 0.005812349263578653]} +{"t": 2.7175, "q": [-0.34289243817329407, 0.02108030393719673, -0.01699431613087654, 0.672164797782898, -0.3571145534515381, -0.004929971881210804, -0.3233512341976166, -0.002258360618725419, -0.003910433501005173, 0.6335852146148682, -0.3587626516819, 0.015954965725541115, 0.03259587287902832, -0.028215153142809868, -0.1301816999912262, 0.28523653745651245, 0.2338481843471527, -0.004266384057700634, 0.9848157167434692, 0.1706194132566452, 0.06327670812606812, -0.04699014872312546, 0.21938322484493256, -0.24452613294124603, 0.030296120792627335, 0.929999828338623, -0.18121346831321716, -0.01992976665496826, 0.005788380745798349]} +{"t": 2.7343, "q": [-0.34280720353126526, 0.021105870604515076, -0.01698092371225357, 0.6721051335334778, -0.3571147620677948, -0.004959084093570709, -0.323248952627182, -0.0022413162514567375, -0.003923825453966856, 0.6334147453308105, -0.3587706685066223, 0.015940498560667038, 0.032542306929826736, -0.028230469673871994, -0.13013052940368652, 0.28523653745651245, 0.23386016488075256, -0.004254399798810482, 0.9848157167434692, 0.17063139379024506, 0.06325273960828781, -0.04700213298201561, 0.21953901648521423, -0.24451415240764618, 0.030236199498176575, 0.9305870532989502, -0.18121346831321716, -0.019294602796435356, 0.005704491399228573]} +{"t": 2.751, "q": [-0.342781662940979, 0.021105870604515076, -0.01698092371225357, 0.6720199584960938, -0.35710659623146057, -0.0049589937552809715, -0.3231978416442871, -0.0022072279825806618, -0.003937217406928539, 0.6332954168319702, -0.35875844955444336, 0.015933087095618248, 0.032528914511203766, -0.028253300115466118, -0.130105122923851, 0.2851766347885132, 0.23378826677799225, -0.00430233683437109, 0.9848157167434692, 0.17060743272304535, 0.06324075907468796, -0.04699014872312546, 0.21963489055633545, -0.24451415240764618, 0.030236199498176575, 0.9312821626663208, -0.1811775118112564, -0.018815234303474426, 0.005644570104777813]} +{"t": 2.7677, "q": [-0.34275609254837036, 0.021088825538754463, -0.0169675312936306, 0.6719347238540649, -0.35711103677749634, -0.005009984597563744, -0.32318931818008423, -0.002198705682530999, -0.0039506093598902225, 0.6332443356513977, -0.3587544560432434, 0.01594032160937786, 0.03244856372475624, -0.02826102264225483, -0.13005900382995605, 0.28511670231819153, 0.2338002473115921, -0.004266384057700634, 0.9848157167434692, 0.17058345675468445, 0.06324075907468796, -0.04699014872312546, 0.21977870166301727, -0.24450215697288513, 0.030176280066370964, 0.9319652318954468, -0.18118950724601746, -0.018216023221611977, 0.0055247279815375805]} +{"t": 2.7845, "q": [-0.3426452875137329, 0.021088825538754463, -0.0169675312936306, 0.6718239188194275, -0.35712334513664246, -0.00501743471249938, -0.32305294275283813, -0.0021816615480929613, -0.003937217406928539, 0.6331931948661804, -0.35876256227493286, 0.015940409153699875, 0.03246195614337921, -0.02828405238687992, -0.12996171414852142, 0.28503280878067017, 0.23378826677799225, -0.004290352575480938, 0.9848157167434692, 0.17060743272304535, 0.06321679055690765, -0.04700213298201561, 0.21995846927165985, -0.24450215697288513, 0.030188262462615967, 0.9326483607292175, -0.1811775118112564, -0.017437048256397247, 0.005440838169306517]} +{"t": 2.8015, "q": [-0.3425004184246063, 0.021088825538754463, -0.016900572925806046, 0.6716960668563843, -0.35711124539375305, -0.005039133131504059, -0.3228910267353058, -0.002156095113605261, -0.003937217406928539, 0.6331420540809631, -0.35875844955444336, 0.015933087095618248, 0.03247534856200218, -0.028269020840525627, -0.1299101710319519, 0.28493693470954895, 0.2337283492088318, -0.004254399798810482, 0.9847916960716248, 0.17058345675468445, 0.0632048025727272, -0.04701411724090576, 0.22018617391586304, -0.24449017643928528, 0.030176280066370964, 0.9331037402153015, -0.18116553127765656, -0.01661013625562191, 0.005392901133745909]} +{"t": 2.8182, "q": [-0.34239816665649414, 0.021088825538754463, -0.016900572925806046, 0.6716023683547974, -0.35709917545318604, -0.00506083108484745, -0.3227376341819763, -0.002156095113605261, -0.003937217406928539, 0.6330397725105286, -0.3587544560432434, 0.01594032160937786, 0.032381605356931686, -0.028269020840525627, -0.1299101710319519, 0.2848530411720276, 0.23364445567131042, -0.00430233683437109, 0.9847916960716248, 0.17058345675468445, 0.06310892850160599, -0.04701411724090576, 0.22050973773002625, -0.24446621537208557, 0.03015231154859066, 0.933355450630188, -0.1811535507440567, -0.015483618713915348, 0.005332980304956436]} +{"t": 2.835, "q": [-0.34225326776504517, 0.021071782335639, -0.016913963481783867, 0.6715256571769714, -0.3571074306964874, -0.005075477529317141, -0.3226183354854584, -0.002130528911948204, -0.003910433501005173, 0.6330397725105286, -0.3587544560432434, 0.01594032160937786, 0.03226107731461525, -0.028269020840525627, -0.1299101710319519, 0.28478115797042847, 0.23360849916934967, -0.004326305352151394, 0.9847916960716248, 0.1705714762210846, 0.06306099146604538, -0.04701411724090576, 0.22076141834259033, -0.24447819590568542, 0.030128343030810356, 0.9335591793060303, -0.18106965720653534, -0.014452975243330002, 0.005320996046066284]} +{"t": 2.8519, "q": [-0.3421083986759186, 0.021114392206072807, -0.016887180507183075, 0.6714745163917542, -0.35709938406944275, -0.0050899432972073555, -0.3224649131298065, -0.0020793962758034468, -0.003910433501005173, 0.6330312490463257, -0.3587462306022644, 0.015925677493214607, 0.03214054927229881, -0.028269020840525627, -0.1299101710319519, 0.2846013903617859, 0.23357254266738892, -0.004326305352151394, 0.984767735004425, 0.17058345675468445, 0.06302504241466522, -0.047026101499795914, 0.22106102108955383, -0.24449017643928528, 0.030104374513030052, 0.9337868690490723, -0.18093782663345337, -0.013458284549415112, 0.005249090492725372]} +{"t": 2.8686, "q": [-0.34198057651519775, 0.021148480474948883, -0.016913963481783867, 0.6714233756065369, -0.3571077287197113, -0.005119145382195711, -0.32235413789749146, -0.002070873975753784, -0.003923825453966856, 0.6330653429031372, -0.35875433683395386, 0.01592576503753662, 0.032020021229982376, -0.028261419385671616, -0.12991520762443542, 0.2844815254211426, 0.23356056213378906, -0.004314321093261242, 0.9847557544708252, 0.17058345675468445, 0.06298908591270447, -0.047038085758686066, 0.2213965803384781, -0.24449017643928528, 0.030080405995249748, 0.9339786171913147, -0.18093782663345337, -0.012739231809973717, 0.005213138181716204]} +{"t": 2.8853, "q": [-0.34184420108795166, 0.02113995887339115, -0.016927355900406837, 0.6713892817497253, -0.3571077287197113, -0.005119145382195711, -0.3222774267196655, -0.0020793962758034468, -0.003923825453966856, 0.633082389831543, -0.35875022411346436, 0.015918442979454994, 0.03197984769940376, -0.028261391445994377, -0.12992547452449799, 0.2843976616859436, 0.23356056213378906, -0.004326305352151394, 0.9847198128700256, 0.17058345675468445, 0.06289321184158325, -0.047026101499795914, 0.2216722071170807, -0.24450215697288513, 0.030080405995249748, 0.9343980550765991, -0.18084195256233215, -0.012223909609019756, 0.005201153922826052]} +{"t": 2.9021, "q": [-0.3418271839618683, 0.02118256874382496, -0.016913963481783867, 0.6713637113571167, -0.35712021589279175, -0.005155670922249556, -0.3222518861293793, -0.0020623519085347652, -0.003910433501005173, 0.633082389831543, -0.35875022411346436, 0.015918442979454994, 0.03193967044353485, -0.028238579630851746, -0.12994059920310974, 0.28428977727890015, 0.23357254266738892, -0.004338289611041546, 0.9846838712692261, 0.17060743272304535, 0.06282130628824234, -0.047026101499795914, 0.2218160182237625, -0.24450215697288513, 0.030080405995249748, 0.9349852800369263, -0.1807820349931717, -0.011732556857168674, 0.005201153922826052]} +{"t": 2.9188, "q": [-0.34180161356925964, 0.021267790347337723, -0.016913963481783867, 0.6713381409645081, -0.35715728998184204, -0.005207059904932976, -0.3222518861293793, -0.002070873975753784, -0.003910433501005173, 0.633082389831543, -0.35875844955444336, 0.015933087095618248, 0.03179236128926277, -0.028223378583788872, -0.12995068728923798, 0.2842298746109009, 0.23359651863574982, -0.004338289611041546, 0.9846718907356262, 0.17060743272304535, 0.06284527480602264, -0.04701411724090576, 0.22197182476520538, -0.24450215697288513, 0.030068421736359596, 0.9356204271316528, -0.18067418038845062, -0.011385014280676842, 0.005165201146155596]} +{"t": 2.9356, "q": [-0.34179309010505676, 0.021293357014656067, -0.016900572925806046, 0.6712870597839355, -0.35716956853866577, -0.005214473698288202, -0.32226037979125977, -0.002028263406828046, -0.003937217406928539, 0.6330738663673401, -0.3587542474269867, 0.01591120846569538, 0.03171201050281525, -0.028238579630851746, -0.12994059920310974, 0.2841459810733795, 0.23358453810214996, -0.004314321093261242, 0.9846838712692261, 0.17060743272304535, 0.06283329427242279, -0.04700213298201561, 0.22212761640548706, -0.2445381134748459, 0.029984531924128532, 0.936123788356781, -0.1805783063173294, -0.011013503186404705, 0.005153216887265444]} +{"t": 2.9523, "q": [-0.3418271839618683, 0.021404143422842026, -0.016927355900406837, 0.671252965927124, -0.3571982681751251, -0.0052366238087415695, -0.3222859501838684, -0.0019856528379023075, -0.003937217406928539, 0.6330397725105286, -0.35875844955444336, 0.015933087095618248, 0.031658440828323364, -0.02825373411178589, -0.12995105981826782, 0.2841459810733795, 0.23357254266738892, -0.004290352575480938, 0.9846599102020264, 0.17058345675468445, 0.06279733777046204, -0.04700213298201561, 0.22230738401412964, -0.2445620894432068, 0.029744846746325493, 0.9365072846412659, -0.18054234981536865, -0.010665960609912872, 0.00512924836948514]} +{"t": 2.9691, "q": [-0.3418271839618683, 0.021421188488602638, -0.016927355900406837, 0.6712359189987183, -0.35720258951187134, -0.005273059010505676, -0.32232004404067993, -0.0019856528379023075, -0.0038970415480434895, 0.6330227255821228, -0.35876646637916565, 0.01591860130429268, 0.03161826729774475, -0.028238579630851746, -0.12994059920310974, 0.2841819226741791, 0.23362047970294952, -0.004326305352151394, 0.9846838712692261, 0.17058345675468445, 0.06282130628824234, -0.046978164464235306, 0.22251111268997192, -0.24466994404792786, 0.02942127361893654, 0.9369986057281494, -0.18047045171260834, -0.010282465256750584, 0.005105279851704836]} +{"t": 2.9858, "q": [-0.3418612480163574, 0.02154901996254921, -0.016940748319029808, 0.6711933016777039, -0.3572106659412384, -0.005258593708276749, -0.32236266136169434, -0.0019686087034642696, -0.003910433501005173, 0.6329630613327026, -0.35877448320388794, 0.015904134139418602, 0.031511131674051285, -0.028238551691174507, -0.1299508810043335, 0.2841819226741791, 0.23362047970294952, -0.004254399798810482, 0.9846718907356262, 0.17060743272304535, 0.06284527480602264, -0.046978164464235306, 0.222618967294693, -0.2448377162218094, 0.02907373011112213, 0.9376697540283203, -0.1803026646375656, -0.009875001385807991, 0.005045359022915363]} +{"t": 3.0026, "q": [-0.3419123888015747, 0.021566065028309822, -0.01695414073765278, 0.671184778213501, -0.3572309911251068, -0.00525154173374176, -0.32239675521850586, -0.0019174759509041905, -0.003937217406928539, 0.6328352689743042, -0.3587786853313446, 0.01592601276934147, 0.0314575619995594, -0.02824610471725464, -0.1299663782119751, 0.2842298746109009, 0.23364445567131042, -0.004230431281030178, 0.9846479296684265, 0.17058345675468445, 0.06280932575464249, -0.04699014872312546, 0.22275079786777496, -0.24512533843517303, 0.028810078278183937, 0.9383648633956909, -0.18019481003284454, -0.009431585669517517, 0.004997421987354755]} +{"t": 3.0193, "q": [-0.3419550061225891, 0.021651284769177437, -0.016927355900406837, 0.6711933016777039, -0.35726362466812134, -0.005251939408481121, -0.3225075304508209, -0.0018152105621993542, -0.0038970415480434895, 0.6328267455101013, -0.3587906062602997, 0.01588975451886654, 0.030787969008088112, -0.028208520263433456, -0.12982727587223053, 0.28415796160697937, 0.23479494452476501, -0.0041824947111308575, 0.9855586886405945, 0.17103886604309082, 0.06291718035936356, -0.046618636697530746, 0.22048577666282654, -0.247701957821846, 0.029325399547815323, 0.9377776384353638, -0.18067418038845062, -0.014848454855382442, 0.005464806687086821]} +{"t": 3.036, "q": [-0.34215953946113586, 0.0217365063726902, -0.016726477071642876, 0.6711592078208923, -0.3572515547275543, -0.0052736378274858, -0.3229336440563202, -0.0018152105621993542, -0.0036292036529630423, 0.6328182220458984, -0.3587864935398102, 0.015882432460784912, 0.028859535232186317, -0.027746716514229774, -0.12933410704135895, 0.2843976616859436, 0.23623304069042206, -0.004254399798810482, 0.9873324036598206, 0.17125457525253296, 0.06300107389688492, -0.04640292003750801, 0.21771742403507233, -0.2504703104496002, 0.02997254766523838, 0.9359679818153381, -0.1816568821668625, -0.022841934114694595, 0.006171876098960638]} +{"t": 3.0528, "q": [-0.3423214554786682, 0.02179616130888462, -0.01647203229367733, 0.6710995435714722, -0.35724732279777527, -0.005251758731901646, -0.3232915699481964, -0.0018066884949803352, -0.0034015413839370012, 0.6326818466186523, -0.3587784767150879, 0.01589689962565899, 0.02690431848168373, -0.02688276208937168, -0.1287693977355957, 0.2844935357570648, 0.2376711517572403, -0.0041705104522407055, 0.9891659617424011, 0.1714463233947754, 0.06298908591270447, -0.04621117189526558, 0.21357087790966034, -0.2540895342826843, 0.030068421736359596, 0.9342302680015564, -0.1823759377002716, -0.030296120792627335, 0.006375608034431934]} +{"t": 3.0696, "q": [-0.3423214554786682, 0.021821727976202965, -0.01611045002937317, 0.6711336374282837, -0.3572431802749634, -0.005244398955255747, -0.3233938217163086, -0.0017811221769079566, -0.003133703488856554, 0.632707417011261, -0.3587864935398102, 0.015882432460784912, 0.025672264397144318, -0.025874750688672066, -0.12808562815189362, 0.2836066782474518, 0.23931299149990082, -0.00407463638111949, 0.9922818541526794, 0.17160211503505707, 0.06298908591270447, -0.046055376529693604, 0.2087652087211609, -0.25824806094169617, 0.030236199498176575, 0.9321690201759338, -0.18310697376728058, -0.0357968807220459, 0.006639260798692703]} +{"t": 3.0863, "q": [-0.3422703146934509, 0.021813206374645233, -0.01580243743956089, 0.6711165904998779, -0.35724306106567383, -0.0052298433147370815, -0.3234449625015259, -0.0018152105621993542, -0.002865865593776107, 0.6326818466186523, -0.3587704598903656, 0.015911368653178215, 0.024962494149804115, -0.024896137416362762, -0.12771080434322357, 0.2826479375362396, 0.24118253588676453, -0.00407463638111949, 0.9953737854957581, 0.17170998454093933, 0.06296511739492416, -0.04592354968190193, 0.20255737006664276, -0.26289793848991394, 0.03002048470079899, 0.9306949377059937, -0.18346650898456573, -0.04025501385331154, 0.006962834857404232]} +{"t": 3.1031, "q": [-0.34221068024635315, 0.021813206374645233, -0.015588166192173958, 0.6711421608924866, -0.35725918412208557, -0.005200912244617939, -0.3234279155731201, -0.0018066884949803352, -0.002691771136596799, 0.6326988935470581, -0.35878247022628784, 0.015889666974544525, 0.02435985766351223, -0.024046197533607483, -0.12751689553260803, 0.2814255654811859, 0.2439868450164795, -0.004122573416680098, 0.9976867437362671, 0.17198561131954193, 0.06272543221712112, -0.04586362838745117, 0.19716447591781616, -0.2677036225795746, 0.029804768040776253, 0.9295923709869385, -0.1834784895181656, -0.046307045966386795, 0.007226487621665001]} +{"t": 3.1198, "q": [-0.34216806292533875, 0.02179616130888462, -0.0155345993116498, 0.6710569262504578, -0.35726311802864075, -0.0051790871657431126, -0.32341939210891724, -0.0018152105621993542, -0.002624811604619026, 0.6326733231544495, -0.3587784767150879, 0.01589689962565899, 0.02386435866355896, -0.023484637960791588, -0.12738767266273499, 0.28009530901908875, 0.24711471796035767, -0.004350273869931698, 0.9991608262062073, 0.17235712707042694, 0.062258049845695496, -0.04585164412856102, 0.19156783819198608, -0.2725452482700348, 0.02967294119298458, 0.9286096692085266, -0.18339459598064423, -0.05116065591573715, 0.007921572774648666]} +{"t": 3.1367, "q": [-0.34216806292533875, 0.02179616130888462, -0.015561383217573166, 0.6709461212158203, -0.35725101828575134, -0.005200821440666914, -0.323436439037323, -0.0018066884949803352, -0.002691771136596799, 0.6326562762260437, -0.35878658294677734, 0.015896989032626152, 0.02354295179247856, -0.023241978138685226, -0.12725162506103516, 0.2782377600669861, 0.2499789595603943, -0.00447011599317193, 1.0000956058502197, 0.17310014367103577, 0.061778679490089417, -0.04583965986967087, 0.18563565611839294, -0.27744680643081665, 0.02966095693409443, 0.9279385805130005, -0.18334665894508362, -0.05617006495594978, 0.00860467366874218]} +{"t": 3.1535, "q": [-0.3421936333179474, 0.021830249577760696, -0.015561383217573166, 0.6706308126449585, -0.3572227358818054, -0.00523689528927207, -0.32353872060775757, -0.0017725999932736158, -0.0027051628567278385, 0.6325795650482178, -0.35878247022628784, 0.015889666974544525, 0.02320815436542034, -0.02316615730524063, -0.12719953060150146, 0.2760086953639984, 0.25305891036987305, -0.004422178957611322, 1.0007067918777466, 0.1745861917734146, 0.06133526563644409, -0.045827675610780716, 0.17909225821495056, -0.2822284996509552, 0.02954111434519291, 0.9267281293869019, -0.18331070244312286, -0.060208749026060104, 0.009407617151737213]} +{"t": 3.1703, "q": [-0.342151015996933, 0.022077390924096107, -0.015668518841266632, 0.6703410744667053, -0.35721054673194885, -0.005244037602096796, -0.32346200942993164, -0.0015425028977915645, -0.0027989062946289778, 0.6322983503341675, -0.3587782680988312, 0.01586778834462166, 0.022940317168831825, -0.023173758760094643, -0.12719447910785675, 0.27377963066101074, 0.2559710741043091, -0.0041465419344604015, 1.0008265972137451, 0.17625200748443604, 0.060987722128629684, -0.045767758041620255, 0.17288443446159363, -0.28663870692253113, 0.029325399547815323, 0.925433874130249, -0.18323880434036255, -0.06675213575363159, 0.009910954162478447]} +{"t": 3.187, "q": [-0.34204021096229553, 0.022316010668873787, -0.015708694234490395, 0.6701450943946838, -0.35718590021133423, -0.005214654374867678, -0.32332566380500793, -0.0012953615514561534, -0.00287925754673779, 0.632102370262146, -0.35877007246017456, 0.015853144228458405, 0.02251177653670311, -0.023204093798995018, -0.12721529603004456, 0.27087944746017456, 0.2584158480167389, -0.004086620640009642, 1.0008984804153442, 0.17904432117938995, 0.060748036950826645, -0.04571982100605965, 0.16592159867286682, -0.29130056500434875, 0.02936135232448578, 0.9230849742889404, -0.1832747608423233, -0.07321163266897202, 0.010749850422143936]} +{"t": 3.2038, "q": [-0.34198909997940063, 0.02239270880818367, -0.015735477209091187, 0.6700001955032349, -0.35718196630477905, -0.005236443132162094, -0.32326599955558777, -0.0012186624808236957, -0.002946217078715563, 0.631957471370697, -0.35877007246017456, 0.015853144228458405, 0.02249838411808014, -0.023211704567074776, -0.12721024453639984, 0.26700854301452637, 0.2610164284706116, -0.003990747034549713, 1.0009344816207886, 0.18084195256233215, 0.06059224158525467, -0.04561196267604828, 0.15832360088825226, -0.2960822582244873, 0.029469210654497147, 0.9202806353569031, -0.18331070244312286, -0.07911985367536545, 0.011672635562717915]} +{"t": 3.2205, "q": [-0.341963529586792, 0.02244384214282036, -0.015695301815867424, 0.6698297262191772, -0.35715365409851074, -0.005272552836686373, -0.32328304648399353, -0.0011504855938255787, -0.0029328251257538795, 0.6318466663360596, -0.3587537109851837, 0.015838375315070152, 0.022284114733338356, -0.023234549909830093, -0.12717458605766296, 0.26311367750167847, 0.2638566792011261, -0.004014715552330017, 1.0009584426879883, 0.18214823305606842, 0.06059224158525467, -0.045587994158267975, 0.15036606788635254, -0.30103176832199097, 0.02990064211189747, 0.9165056347846985, -0.18344253301620483, -0.08408132195472717, 0.012942963279783726]} +{"t": 3.2372, "q": [-0.34193795919418335, 0.022418275475502014, -0.015668518841266632, 0.6696763634681702, -0.35710906982421875, -0.005308445543050766, -0.32322338223457336, -0.0011504855938255787, -0.0028926494996994734, 0.6317614316940308, -0.35873740911483765, 0.015823641791939735, 0.021400248631834984, -0.023249801248311996, -0.1271439641714096, 0.25932663679122925, 0.2669486105442047, -0.004014715552330017, 1.0010902881622314, 0.18448516726493835, 0.06055628880858421, -0.045587994158267975, 0.14213290810585022, -0.3049505949020386, 0.029936594888567924, 0.9142046570777893, -0.18363428115844727, -0.09050486981868744, 0.014033528044819832]} +{"t": 3.254, "q": [-0.34192943572998047, 0.022409753873944283, -0.01565512642264366, 0.6695399880409241, -0.35708871483802795, -0.005315497517585754, -0.32318079471588135, -0.001141963410191238, -0.0029328251257538795, 0.6316677331924438, -0.35872116684913635, 0.01582346484065056, 0.02019497938454151, -0.023394277319312096, -0.12704798579216003, 0.254976361989975, 0.2699926197528839, -0.004518053028732538, 1.001437783241272, 0.18756510317325592, 0.06055628880858421, -0.04574378952383995, 0.1342712640762329, -0.30844998359680176, 0.03002048470079899, 0.9105973839759827, -0.18408969044685364, -0.096580870449543, 0.015207981690764427]} +{"t": 3.2709, "q": [-0.3419123888015747, 0.022409753873944283, -0.015668518841266632, 0.6694803237915039, -0.3570723831653595, -0.005315315909683704, -0.3230785131454468, -0.0011590076610445976, -0.002959609031677246, 0.6315569281578064, -0.35874131321907043, 0.01580185256898403, 0.018775437027215958, -0.023652803152799606, -0.12687624990940094, 0.2506261169910431, 0.27248531579971313, -0.004697816446423531, 1.0016415119171143, 0.1889912337064743, 0.06052033603191376, -0.04579172283411026, 0.12720057368278503, -0.3109067678451538, 0.030655648559331894, 0.9057198166847229, -0.18429341912269592, -0.10280068218708038, 0.016334498301148415]} +{"t": 3.2877, "q": [-0.34188681840896606, 0.02239270880818367, -0.015668518841266632, 0.6694632768630981, -0.3570723831653595, -0.005315315909683704, -0.3229251205921173, -0.0011675298446789384, -0.003026568330824375, 0.6313353776931763, -0.35872116684913635, 0.01582346484065056, 0.017168410122394562, -0.023926541209220886, -0.12669439613819122, 0.2467072606086731, 0.27419906854629517, -0.004793690051883459, 1.0017614364624023, 0.18994997441768646, 0.060376524925231934, -0.045827675610780716, 0.12072908133268356, -0.3129560649394989, 0.030991205945611, 0.9004347920417786, -0.18438929319381714, -0.10948788374662399, 0.017173394560813904]} +{"t": 3.3045, "q": [-0.3415374159812927, 0.022375665605068207, -0.015547990798950195, 0.669318437576294, -0.35706019401550293, -0.0053224582225084305, -0.32264387607574463, -0.0011504855938255787, -0.0029328251257538795, 0.6312160491943359, -0.3586726188659668, 0.01583750918507576, 0.014570382423698902, -0.02446642890572548, -0.126336008310318, 0.2430640608072281, 0.2753615379333496, -0.004877579864114523, 1.0015935897827148, 0.1910405308008194, 0.059969063848257065, -0.04583965986967087, 0.11404188722372055, -0.31501734256744385, 0.03196192905306816, 0.8936037421226501, -0.18468889594078064, -0.11726564168930054, 0.018275942653417587]} +{"t": 3.3214, "q": [-0.34124767780303955, 0.022350098937749863, -0.015467639081180096, 0.6691564917564392, -0.3570599853992462, -0.0052933464758098125, -0.3223456144332886, -0.0011675298446789384, -0.0028256899677217007, 0.6310796737670898, -0.3586563766002655, 0.015837332233786583, 0.011128664948046207, -0.02515847235918045, -0.12587735056877136, 0.23970846831798553, 0.27590084075927734, -0.004985437728464603, 1.0015456676483154, 0.19245466589927673, 0.05946572497487068, -0.04585164412856102, 0.10819358378648758, -0.3155086934566498, 0.03275288641452789, 0.8859098553657532, -0.18485666811466217, -0.12442022562026978, 0.019510319456458092]} +{"t": 3.3382, "q": [-0.3411027789115906, 0.02232453227043152, -0.0153738958761096, 0.669096827507019, -0.35704389214515686, -0.005322277545928955, -0.32217517495155334, -0.001201618229970336, -0.0027855143416672945, 0.6309518814086914, -0.3586162328720093, 0.01589515060186386, 0.0074860695749521255, -0.025956936180591583, -0.1253686100244522, 0.23616114258766174, 0.27599671483039856, -0.005165201146155596, 1.0015696287155151, 0.1943122297525406, 0.05890246853232384, -0.04585164412856102, 0.10191385447978973, -0.3154008388519287, 0.03326820954680443, 0.8772572875022888, -0.18489262461662292, -0.13324061036109924, 0.02172739990055561]} +{"t": 3.355, "q": [-0.3406681716442108, 0.022316010668873787, -0.015065882354974747, 0.6690201759338379, -0.3570520281791687, -0.005322367884218693, -0.3219621181488037, -0.0012101404136046767, -0.002504284493625164, 0.6309433579444885, -0.3585634231567383, 0.015887262299656868, 0.005316582508385181, -0.027257392182946205, -0.12452826648950577, 0.23269769549369812, 0.2757929861545563, -0.005344964563846588, 1.0015696287155151, 0.19759590923786163, 0.05824333429336548, -0.04585164412856102, 0.09617340564727783, -0.3151971101760864, 0.03381948545575142, 0.868952214717865, -0.18489262461662292, -0.14246846735477448, 0.023980434983968735]} +{"t": 3.3717, "q": [-0.3400375247001648, 0.022367144003510475, -0.014382896013557911, 0.6688838005065918, -0.35706019401550293, -0.0053224582225084305, -0.32184281945228577, -0.0011504855938255787, -0.001794514013454318, 0.6309518814086914, -0.3584417402744293, 0.015885936096310616, 0.002531068166717887, -0.028725238516926765, -0.12357813864946365, 0.2277841717004776, 0.27532559633255005, -0.0054887752048671246, 1.0014737844467163, 0.2004481554031372, 0.05733253434300423, -0.04585164412856102, 0.09212274104356766, -0.3150532841682434, 0.03470631688833237, 0.8580945134162903, -0.18486866354942322, -0.15205584466457367, 0.02551441639661789]} +{"t": 3.3886, "q": [-0.3393898606300354, 0.02239270880818367, -0.013807044364511967, 0.6686792373657227, -0.35705193877220154, -0.0053078122437000275, -0.32167237997055054, -0.0010908307740464807, -0.0011517030652612448, 0.6309518814086914, -0.3583809435367584, 0.015892568975687027, 0.0009776083752512932, -0.030238622799515724, -0.12268199026584625, 0.22260698676109314, 0.27467843890190125, -0.005632585845887661, 1.0013539791107178, 0.20331238210201263, 0.05633784458041191, -0.04585164412856102, 0.08900684118270874, -0.3150293231010437, 0.03615640848875046, 0.8477640748023987, -0.18478477001190186, -0.16268585622310638, 0.02732403390109539]} +{"t": 3.4054, "q": [-0.33859729766845703, 0.02244384214282036, -0.013150841929018497, 0.6685770153999329, -0.3570559620857239, -0.005300579126924276, -0.3211780786514282, -0.0010396981379017234, -0.0005490677431225777, 0.6309007406234741, -0.3582758903503418, 0.015949644148349762, 0.0002544460294302553, -0.0318966805934906, -0.12166100740432739, 0.21560819447040558, 0.2742709815502167, -0.0057284594513475895, 1.001497745513916, 0.2066200226545334, 0.05481584742665291, -0.045887596905231476, 0.08674181997776031, -0.31496942043304443, 0.0376184843480587, 0.8347731828689575, -0.18473683297634125, -0.17378325760364532, 0.030535805970430374]} +{"t": 3.4221, "q": [-0.33823084831237793, 0.02244384214282036, -0.012963354587554932, 0.6685258746147156, -0.3570763170719147, -0.005293491296470165, -0.32075196504592896, -0.0010482202051207423, -0.00026783792418427765, 0.6305598616600037, -0.3581949770450592, 0.015977907925844193, -2.6783791327034123e-05, -0.03386570140719414, -0.12079492211341858, 0.2079862356185913, 0.2742709815502167, -0.0057524279691278934, 1.001497745513916, 0.20857346057891846, 0.05309011787176132, -0.045827675610780716, 0.08498013764619827, -0.3148735463619232, 0.039320241659879684, 0.8222496509552002, -0.18462897837162018, -0.18698987364768982, 0.034214962273836136]} +{"t": 3.439, "q": [-0.33813709020614624, 0.02244384214282036, -0.01293657161295414, 0.66856849193573, -0.35708436369895935, -0.005279025994241238, -0.3203258812427521, -0.0010567422723397613, -0.00026783792418427765, 0.6299973726272583, -0.3581545948982239, 0.01602114550769329, -0.0002410541201243177, -0.03579498454928398, -0.1205904483795166, 0.20063990354537964, 0.27383953332901, -0.005788380745798349, 1.001509666442871, 0.20990370213985443, 0.05122057721018791, -0.04579172283411026, 0.08374576270580292, -0.3148735463619232, 0.040590569376945496, 0.8077967166900635, -0.18464095890522003, -0.19958528876304626, 0.038121819496154785]} +{"t": 3.4558, "q": [-0.3377535939216614, 0.022486452013254166, -0.01293657161295414, 0.66856849193573, -0.35707610845565796, -0.005264379549771547, -0.3196185529232025, -0.0010482202051207423, -0.00026783792418427765, 0.6292644739151001, -0.35800492763519287, 0.016201458871364594, -0.0003481892927084118, -0.03691844269633293, -0.12073109298944473, 0.19421635568141937, 0.27302461862564087, -0.005848302040249109, 1.0015337467193604, 0.21083848178386688, 0.04860801622271538, -0.04574378952383995, 0.08210393041372299, -0.3152570426464081, 0.0409141443669796, 0.7941107153892517, -0.18465293943881989, -0.21184514462947845, 0.04198073968291283]} +{"t": 3.4725, "q": [-0.33698660135269165, 0.022648373618721962, -0.012963354587554932, 0.6685599684715271, -0.35708025097846985, -0.005271702539175749, -0.3185617923736572, -0.0009544769418425858, -0.00030801360844634473, 0.6283270716667175, -0.3576870262622833, 0.016227060928940773, -0.00037497308221645653, -0.03796578198671341, -0.12088131159543991, 0.18794859945774078, 0.27237746119499207, -0.005908222869038582, 1.001509666442871, 0.2118331640958786, 0.045216482132673264, -0.04571982100605965, 0.07956327497959137, -0.3154487907886505, 0.04110589250922203, 0.7804366946220398, -0.18466491997241974, -0.22634606063365936, 0.045947518199682236]} +{"t": 3.4894, "q": [-0.33656901121139526, 0.023031868040561676, -0.013030314818024635, 0.6685429215431213, -0.35710451006889343, -0.005242861807346344, -0.3177947998046875, -0.000690291344653815, -0.00033479739795438945, 0.6271595358848572, -0.3576505482196808, 0.01626306213438511, -0.0005088920588605106, -0.039871878921985626, -0.1206752136349678, 0.18313094973564148, 0.2719460427761078, -0.00595615990459919, 1.001509666442871, 0.21324729919433594, 0.04175304248929024, -0.04559997841715813, 0.0770585685968399, -0.3154008388519287, 0.04175304248929024, 0.7673978805541992, -0.18465293943881989, -0.23847410082817078, 0.04814063385128975]} +{"t": 3.5062, "q": [-0.3364582359790802, 0.023389797657728195, -0.013097274117171764, 0.6685343980789185, -0.35710451006889343, -0.005242861807346344, -0.3174198269844055, -0.0003920173039659858, -0.00040175687172450125, 0.6258726716041565, -0.3570267856121063, 0.016292516142129898, -0.00042854066123254597, -0.0420883446931839, -0.12075592577457428, 0.17739050090312958, 0.2716943621635437, -0.006052033975720406, 1.001509666442871, 0.21590779721736908, 0.03983556479215622, -0.045587994158267975, 0.074913389980793, -0.31513717770576477, 0.04219645634293556, 0.7535440921783447, -0.18466491997241974, -0.2520282566547394, 0.05083708465099335]} +{"t": 3.523, "q": [-0.3364582359790802, 0.023500584065914154, -0.013365112245082855, 0.6685258746147156, -0.35710853338241577, -0.00523562915623188, -0.31703633069992065, -0.00017896443023346364, -0.00044193255598656833, 0.6247307062149048, -0.35633453726768494, 0.016445018351078033, -0.00042854066123254597, -0.04430539533495903, -0.12048298120498657, 0.1712665557861328, 0.27140673995018005, -0.006195844616740942, 1.001509666442871, 0.22060561180114746, 0.03930825740098953, -0.045468151569366455, 0.07224091142416, -0.31496942043304443, 0.043239083141088486, 0.7407689094543457, -0.18466491997241974, -0.2658221125602722, 0.05349758267402649]} +{"t": 3.5397, "q": [-0.3365945816040039, 0.023679548874497414, -0.013432071544229984, 0.6685599684715271, -0.3571247458457947, -0.00522125419229269, -0.3168317973613739, -1.704423084447626e-05, -0.00042854066123254597, 0.6236910223960876, -0.35543885827064514, 0.016668038442730904, -0.0006026353221386671, -0.04622610658407211, -0.12030192464590073, 0.16514262557029724, 0.2711670696735382, -0.006339655257761478, 1.001509666442871, 0.22722090780735016, 0.03921238332986832, -0.04544418305158615, 0.06877747178077698, -0.31492146849632263, 0.044737111777067184, 0.7248778343200684, -0.18476079404354095, -0.28106603026390076, 0.05555886775255203]} +{"t": 3.5564, "q": [-0.33684173226356506, 0.023824425414204597, -0.013405287638306618, 0.6685770153999329, -0.3571527302265167, -0.005141476634889841, -0.31681475043296814, 0.00020453077740967274, -0.00030801360844634473, 0.6226513385772705, -0.35445642471313477, 0.017348552122712135, -0.0010981354862451553, -0.047675613313913345, -0.12027643620967865, 0.1606844961643219, 0.27105921506881714, -0.006555370986461639, 1.0015337467193604, 0.22968965768814087, 0.03906857594847679, -0.045468151569366455, 0.06523013859987259, -0.314861536026001, 0.04655871540307999, 0.710412859916687, -0.18483270704746246, -0.2969091832637787, 0.05717673897743225]} +{"t": 3.5732, "q": [-0.3371996581554413, 0.02384999208152294, -0.013432071544229984, 0.6685770153999329, -0.35715264081954956, -0.0051269205287098885, -0.31680622696876526, 0.0002641855680849403, -0.0001740946463542059, 0.6213985681533813, -0.35356268286705017, 0.017869925126433372, -0.0014998923288658261, -0.048881981521844864, -0.12026704102754593, 0.15580691397190094, 0.27055588364601135, -0.006831008475273848, 1.0015337467193604, 0.23254190385341644, 0.03899667039513588, -0.04550410434603691, 0.06191050633788109, -0.31481361389160156, 0.05018993467092514, 0.6945217847824097, -0.18485666811466217, -0.31269240379333496, 0.059297945350408554]} +{"t": 3.5899, "q": [-0.3377365469932556, 0.02384146861732006, -0.013405287638306618, 0.6686962842941284, -0.35715624690055847, -0.0050614639185369015, -0.3167977035045624, 0.00027270769351162016, -9.374327055411413e-05, 0.6203333139419556, -0.3525363802909851, 0.018571769818663597, -0.002048959955573082, -0.04981578513979912, -0.12010864913463593, 0.15096528828144073, 0.26988476514816284, -0.0070946612395346165, 1.001497745513916, 0.23655661940574646, 0.038900796324014664, -0.045528072863817215, 0.05874667316675186, -0.3152570426464081, 0.054983627051115036, 0.6775161623954773, -0.18486866354942322, -0.32762473821640015, 0.06266551464796066]} +{"t": 3.6066, "q": [-0.33845239877700806, 0.023798858746886253, -0.013405287638306618, 0.6689008474349976, -0.35713160037994385, -0.0050320811569690704, -0.31689146161079407, 0.00027270769351162016, 2.6783791327034123e-05, 0.6193192005157471, -0.3516238033771515, 0.019209155812859535, -0.0032006630208343267, -0.05044572800397873, -0.12004631757736206, 0.14697453379631042, 0.2692256271839142, -0.007753793615847826, 1.0011742115020752, 0.24023577570915222, 0.03868507966399193, -0.04567188397049904, 0.05510346591472626, -0.31571242213249207, 0.059357866644859314, 0.6624040603637695, -0.18494056165218353, -0.3423413634300232, 0.06609300523996353]} +{"t": 3.6234, "q": [-0.33904895186424255, 0.02377329207956791, -0.013405287638306618, 0.6691053509712219, -0.35713139176368713, -0.005002968944609165, -0.3169170320034027, 0.00024714134633541107, 6.695948104606941e-05, 0.6183135509490967, -0.35082679986953735, 0.019680360332131386, -0.005102312192320824, -0.05084044486284256, -0.11999398469924927, 0.14312760531902313, 0.2683987021446228, -0.00882038939744234, 1.0008026361465454, 0.2453290820121765, 0.038121819496154785, -0.04586362838745117, 0.051064785569906235, -0.31584426760673523, 0.06392385810613632, 0.6453744769096375, -0.18513230979442596, -0.35715389251708984, 0.06878945231437683]} +{"t": 3.6401, "q": [-0.33959436416625977, 0.023628415539860725, -0.013391895219683647, 0.6693951487541199, -0.35707738995552063, -0.0048640635795891285, -0.31698518991470337, 0.00013635384675581008, 0.0001473108568461612, 0.6177170276641846, -0.3502137064933777, 0.020146414637565613, -0.007566420827060938, -0.051038019359111786, -0.11990663409233093, 0.1390170156955719, 0.2676796615123749, -0.010570086538791656, 1.0008984804153442, 0.24814537167549133, 0.03773832693696022, -0.04609132930636406, 0.046858321875333786, -0.31554466485977173, 0.06809436529874802, 0.6278655529022217, -0.18518024682998657, -0.37107956409454346, 0.07117431610822678]} +{"t": 3.6568, "q": [-0.3401823937892914, 0.023568760603666306, -0.013351719826459885, 0.6698979139328003, -0.3570978343486786, -0.004871531389653683, -0.3171130418777466, 5.965480886516161e-05, 0.0002812298189383, 0.6172482967376709, -0.3496495187282562, 0.020598482340574265, -0.010151056572794914, -0.05117490887641907, -0.11981789767742157, 0.13434316217899323, 0.2671044170856476, -0.014153369702398777, 1.0011142492294312, 0.25033849477767944, 0.03772634267807007, -0.04640292003750801, 0.04295146465301514, -0.31543678045272827, 0.07158178091049194, 0.6089544296264648, -0.18524016439914703, -0.38718634843826294, 0.0743381455540657]} +{"t": 3.6736, "q": [-0.34065112471580505, 0.023492062464356422, -0.013298152014613152, 0.6704092621803284, -0.35712602734565735, -0.0048209019005298615, -0.31722381711006165, 8.52211542223813e-06, 0.00037497308221645653, 0.6169159412384033, -0.3490979075431824, 0.021087059751152992, -0.012949963100254536, -0.05122814700007439, -0.11978338658809662, 0.1294775754213333, 0.2669006884098053, -0.018911106511950493, 1.0012580156326294, 0.25303491950035095, 0.03773832693696022, -0.04689427465200424, 0.039092544466257095, -0.3153529167175293, 0.07529688626527786, 0.5896238684654236, -0.1853000968694687, -0.40306544303894043, 0.07693872600793839]} +{"t": 3.6903, "q": [-0.3410090506076813, 0.023432407528162003, -0.013257976621389389, 0.670971691608429, -0.35712602734565735, -0.0048209019005298615, -0.3172834813594818, -8.52211542223813e-06, 0.0005356758483685553, 0.6167795658111572, -0.3486093282699585, 0.021299809217453003, -0.016565775498747826, -0.05131937190890312, -0.11973445117473602, 0.12622983753681183, 0.26658910512924194, -0.022518359124660492, 1.001281976699829, 0.2568459212779999, 0.03778626397252083, -0.04734967276453972, 0.03456250578165054, -0.31513717770576477, 0.07864048331975937, 0.5720669627189636, -0.1853480339050293, -0.41835731267929077, 0.07998272031545639]} +{"t": 3.707, "q": [-0.3410857617855072, 0.023457974195480347, -0.012963354587554932, 0.6714574694633484, -0.3571421504020691, -0.004791970830410719, -0.3174368739128113, -1.704423084447626e-05, 0.0010311759542673826, 0.6167625188827515, -0.34823930263519287, 0.02152118645608425, -0.019900357350707054, -0.051577940583229065, -0.11956684291362762, 0.12319783866405487, 0.26598986983299255, -0.02521480992436409, 1.001281976699829, 0.2616635859012604, 0.03781023249030113, -0.048056744039058685, 0.029684925451874733, -0.3129321038722992, 0.0812290757894516, 0.5527604222297668, -0.185371994972229, -0.43326568603515625, 0.08441688120365143]} +{"t": 3.7238, "q": [-0.3411880135536194, 0.023449452593922615, -0.01277586817741394, 0.6718324422836304, -0.3572147488594055, -0.004676301032304764, -0.3175050616264343, 4.261057620169595e-05, 0.0014597165863960981, 0.6167113780975342, -0.347855806350708, 0.021604076027870178, -0.022391250357031822, -0.051844146102666855, -0.11938408017158508, 0.11996209621429443, 0.2647075653076172, -0.02755173295736313, 1.001281976699829, 0.2674519419670105, 0.03779824823141098, -0.04896754398941994, 0.025430526584386826, -0.3112662732601166, 0.0839494988322258, 0.5348919034004211, -0.1853240579366684, -0.44811415672302246, 0.08861136436462402]} +{"t": 3.7405, "q": [-0.34123915433883667, 0.02348354086279869, -0.012414286844432354, 0.672232985496521, -0.3572631776332855, -0.004604027606546879, -0.3175646960735321, 6.817692337790504e-05, 0.0019284329609945416, 0.6166517734527588, -0.3475135564804077, 0.02173115871846676, -0.02383757382631302, -0.05225462466478348, -0.11916894465684891, 0.11595936119556427, 0.262406587600708, -0.029157619923353195, 1.0012580156326294, 0.2713947594165802, 0.03778626397252083, -0.049674615263938904, 0.0225662961602211, -0.31072700023651123, 0.08788032084703445, 0.5144109129905701, -0.18531207740306854, -0.4634539484977722, 0.09155947715044022]} +{"t": 3.7572, "q": [-0.3413243591785431, 0.023526150733232498, -0.0122669767588377, 0.6727272868156433, -0.35730355978012085, -0.0045462194830179214, -0.31758174300193787, 0.00011078749957960099, 0.0021427033934742212, 0.6166091561317444, -0.3471112549304962, 0.021995825693011284, -0.024212546646595, -0.05275653302669525, -0.11884409934282303, 0.11142932623624802, 0.26010560989379883, -0.03275288641452789, 1.0010184049606323, 0.2765120267868042, 0.03748665750026703, -0.0499502494931221, 0.020744694396853447, -0.3107389807701111, 0.09245830029249191, 0.4945410490036011, -0.1853000968694687, -0.4773316979408264, 0.09426791220903397]} +{"t": 3.774, "q": [-0.3418186604976654, 0.02353467233479023, -0.012293760664761066, 0.67342609167099, -0.3573155403137207, -0.004509965423494577, -0.31764140725135803, 0.00016192019393201917, 0.002169487066566944, 0.6165835857391357, -0.34675344824790955, 0.02221008576452732, -0.02450716868042946, -0.053098540753126144, -0.11867380142211914, 0.10675548017024994, 0.2574091851711273, -0.03917643055319786, 1.0005030632019043, 0.2808023691177368, 0.036491964012384415, -0.05056144669651985, 0.018851187080144882, -0.31079888343811035, 0.09849834442138672, 0.4744195342063904, -0.18521620333194733, -0.4925875961780548, 0.09666476398706436]} +{"t": 3.7907, "q": [-0.3421339690685272, 0.023611372336745262, -0.012333936057984829, 0.6741078495979309, -0.35736820101737976, -0.004459606949239969, -0.3176584541797638, 0.00020453077740967274, 0.002129311440512538, 0.6165750622749329, -0.34635403752326965, 0.022321810945868492, -0.024466993287205696, -0.0534711591899395, -0.11843283474445343, 0.10181798040866852, 0.2538738250732422, -0.045468151569366455, 1.0000596046447754, 0.2866027355194092, 0.03413107246160507, -0.051184624433517456, 0.01722133159637451, -0.3109307289123535, 0.10368751734495163, 0.4533512592315674, -0.18520422279834747, -0.5085386037826538, 0.09956493973731995]} +{"t": 3.8075, "q": [-0.3425515592098236, 0.023611372336745262, -0.012414286844432354, 0.6746532917022705, -0.3574497699737549, -0.004460511729121208, -0.31776922941207886, 0.00020453077740967274, 0.0021159194875508547, 0.6165239214897156, -0.3461867570877075, 0.022341659292578697, -0.024453600868582726, -0.0536307692527771, -0.11834996193647385, 0.09712015837430954, 0.2497272789478302, -0.050165966153144836, 0.9999637603759766, 0.29017403721809387, 0.031194938346743584, -0.05211939662694931, 0.015387745574116707, -0.3109067678451538, 0.10845723748207092, 0.43261855840682983, -0.1850484162569046, -0.5232192873954773, 0.10284861922264099]} +{"t": 3.8242, "q": [-0.3428327739238739, 0.023645460605621338, -0.012494638562202454, 0.6751304864883423, -0.3575974106788635, -0.004578586667776108, -0.3178033232688904, 0.00018748654110822827, 0.002048959955573082, 0.6164557337760925, -0.3458034098148346, 0.022453673183918, -0.024333074688911438, -0.053699295967817307, -0.11828530579805374, 0.09163138270378113, 0.2453290820121765, -0.056301891803741455, 1.0001195669174194, 0.29542315006256104, 0.028546424582600594, -0.053174007683992386, 0.013458284549415112, -0.31089475750923157, 0.11207647621631622, 0.4099084436893463, -0.185000479221344, -0.5403207540512085, 0.10722286254167557]} +{"t": 3.8409, "q": [-0.34304583072662354, 0.023679548874497414, -0.012548206374049187, 0.6754202842712402, -0.3582982122898102, -0.005794767756015062, -0.3179396688938141, 0.00022157499915920198, 0.002048959955573082, 0.6163193583488464, -0.34548038244247437, 0.02248648926615715, -0.024480385705828667, -0.05371442064642906, -0.11829586327075958, 0.08683769404888153, 0.24145816266536713, -0.06496648490428925, 0.999927818775177, 0.3002048432826996, 0.025682194158434868, -0.05421663448214531, 0.010210559703409672, -0.31089475750923157, 0.11586348712444305, 0.3861676752567291, -0.18491660058498383, -0.5568949580192566, 0.1119566336274147]} +{"t": 3.8577, "q": [-0.34304583072662354, 0.02384999208152294, -0.012467854656279087, 0.675667405128479, -0.35885658860206604, -0.006761761382222176, -0.3179396688938141, 0.0002300971100339666, 0.002156095113605261, 0.6161404252052307, -0.3452797830104828, 0.022091498598456383, -0.024466993287205696, -0.05365362390875816, -0.11832500994205475, 0.08219980448484421, 0.23662853240966797, -0.06898120045661926, 0.999496340751648, 0.3061370253562927, 0.022182801738381386, -0.0565655417740345, 0.006771087180823088, -0.31087079644203186, 0.11948272585868835, 0.36344560980796814, -0.18496453762054443, -0.5715996026992798, 0.1155039593577385]} +{"t": 3.8744, "q": [-0.3434719443321228, 0.023935211822390556, -0.012574990279972553, 0.6760594248771667, -0.3589843213558197, -0.007047045044600964, -0.31794819235801697, 0.00032384038786403835, 0.0020623519085347652, 0.6157654523849487, -0.3456292450428009, 0.020728064700961113, -0.024413425475358963, -0.053668417036533356, -0.11842738091945648, 0.07732222229242325, 0.231750950217247, -0.07480553537607193, 0.9981301426887512, 0.3097802400588989, 0.019270634278655052, -0.06079597398638725, 0.0036551887169480324, -0.30987611413002014, 0.12148409336805344, 0.33915358781814575, -0.18488064408302307, -0.5861005187034607, 0.11980629712343216]} +{"t": 3.8913, "q": [-0.34382134675979614, 0.024046000093221664, -0.012708908878266811, 0.6765962839126587, -0.3589716851711273, -0.006981411017477512, -0.31796523928642273, 0.00044314999831840396, 0.002008784329518676, 0.6154671907424927, -0.34567832946777344, 0.019535616040229797, -0.024333074688911438, -0.053713809698820114, -0.1184590682387352, 0.07228884845972061, 0.22729282081127167, -0.08237956464290619, 0.9964284300804138, 0.3133515417575836, 0.017712684348225594, -0.0646788626909256, -3.5952674807049334e-05, -0.3087615668773651, 0.12300609052181244, 0.31656330823898315, -0.18480873107910156, -0.5986599922180176, 0.12439625710248947]} +{"t": 3.908, "q": [-0.34451162815093994, 0.024276096373796463, -0.012802652083337307, 0.6773888468742371, -0.35906481742858887, -0.00696055730804801, -0.3182123899459839, 0.000570981705095619, 0.001941824913956225, 0.6152541041374207, -0.3452945053577423, 0.01911693625152111, -0.024319682270288467, -0.05362997576594353, -0.118564173579216, 0.06693189591169357, 0.22270286083221436, -0.08940231800079346, 0.9944270253181458, 0.3175699710845947, 0.01641838811337948, -0.06937667727470398, -0.005273059010505676, -0.30835410952568054, 0.12537896633148193, 0.2924869954586029, -0.1848207265138626, -0.6109917759895325, 0.12952551245689392]} +{"t": 3.9248, "q": [-0.3448951244354248, 0.024352796375751495, -0.012816044501960278, 0.6781899333000183, -0.3594466745853424, -0.00646243104711175, -0.31836578249931335, 0.0006391586503013968, 0.0019686087034642696, 0.6151859164237976, -0.34476330876350403, 0.01871122419834137, -0.02438664250075817, -0.053622402250766754, -0.11855888366699219, 0.06103565916419029, 0.21751369535923004, -0.09578990936279297, 0.9926773309707642, 0.32205209136009216, 0.014704644680023193, -0.0731397271156311, -0.012775183655321598, -0.3081863224506378, 0.12948955595493317, 0.2690458595752716, -0.1847008764743805, -0.6240545511245728, 0.13373197615146637]} +{"t": 3.9415, "q": [-0.3457303047180176, 0.0244891494512558, -0.012909787707030773, 0.6791188716888428, -0.3611389696598053, -0.0036343438550829887, -0.31868961453437805, 0.0006817692192271352, 0.0019150411244481802, 0.6150751709938049, -0.3444688618183136, 0.018766237422823906, -0.02418576367199421, -0.0536222942173481, -0.11858948320150375, 0.05440838262438774, 0.21289975941181183, -0.10631205886602402, 0.9913590550422668, 0.32684576511383057, 0.012811136431992054, -0.07642340660095215, -0.019809924066066742, -0.3080664873123169, 0.13520602881908417, 0.24517327547073364, -0.18461698293685913, -0.6355234384536743, 0.13653628528118134]} +{"t": 3.9582, "q": [-0.3467188775539398, 0.024548804387450218, -0.013284760527312756, 0.6802523136138916, -0.36219969391822815, -0.001862125936895609, -0.3189793825149536, 0.0008351673022843897, 0.0016873788554221392, 0.6150240302085876, -0.3442396819591522, 0.019338244572281837, -0.024145588278770447, -0.05358407646417618, -0.11866507679224014, 0.04840428754687309, 0.20830979943275452, -0.11361045390367508, 0.989920973777771, 0.33048897981643677, 0.010006828233599663, -0.08168447762727737, -0.02671283856034279, -0.3079945743083954, 0.14073075354099274, 0.22132466733455658, -0.18441325426101685, -0.646968424320221, 0.1401914656162262]} +{"t": 3.9749, "q": [-0.34767335653305054, 0.024693680927157402, -0.013391895219683647, 0.6810959577560425, -0.36229372024536133, -0.0019432317931205034, -0.3192691206932068, 0.000945954816415906, 0.0015802436973899603, 0.6149473190307617, -0.34394463896751404, 0.019865885376930237, -0.023904534056782722, -0.05361442267894745, -0.11866580694913864, 0.04267582669854164, 0.20373183488845825, -0.12048940360546112, 0.9867211580276489, 0.33668482303619385, 0.006411560345441103, -0.08785635232925415, -0.034023214131593704, -0.3078387975692749, 0.144709512591362, 0.19755995273590088, -0.18446119129657745, -0.6585451364517212, 0.14462563395500183]} +{"t": 3.9916, "q": [-0.3483806848526001, 0.024778902530670166, -0.013499030843377113, 0.6816243529319763, -0.3623338043689728, -0.0018271800363436341, -0.3195418417453766, 0.0009544769418425858, 0.0014731085393577814, 0.6146575808525085, -0.3438569903373718, 0.020199423655867577, -0.023917926475405693, -0.053659744560718536, -0.11871790140867233, 0.03816975653171539, 0.2007237821817398, -0.12830311059951782, 0.9830660223960876, 0.34222152829170227, 0.001342233270406723, -0.0927099660038948, -0.040578585118055344, -0.30764704942703247, 0.1483527272939682, 0.17591644823551178, -0.18435333669185638, -0.6674613952636719, 0.14974290132522583]} +{"t": 4.0083, "q": [-0.34862780570983887, 0.024770379066467285, -0.013405287638306618, 0.6818629503250122, -0.36236563324928284, -0.0016964474925771356, -0.31960150599479675, 0.0009374326909892261, 0.0016204193234443665, 0.6141377091407776, -0.3435092270374298, 0.020791951566934586, -0.023917926475405693, -0.05365210026502609, -0.11873301863670349, 0.03281280770897865, 0.19709256291389465, -0.13473863899707794, 0.9806092381477356, 0.3462841808795929, -0.0033196303993463516, -0.09650896489620209, -0.04749348387122154, -0.3074672818183899, 0.15173228085041046, 0.15574699640274048, -0.18426944315433502, -0.6746999025344849, 0.15557920932769775]} +{"t": 4.0252, "q": [-0.3490368723869324, 0.02479594573378563, -0.013338328339159489, 0.6819140911102295, -0.3623855710029602, -0.0016166046261787415, -0.3196185529232025, 0.0009289105655625463, 0.0017409464344382286, 0.6133195757865906, -0.34302428364753723, 0.02165929228067398, -0.023891141638159752, -0.053545672446489334, -0.11879166960716248, 0.027599669992923737, 0.19394071400165558, -0.1404431313276291, 0.9770739078521729, 0.3489806354045868, -0.005632585845887661, -0.09968478232622147, -0.05344964563846588, -0.3059932291507721, 0.15495602786540985, 0.13668008148670197, -0.1841735690832138, -0.6814709901809692, 0.15984559059143066]} +{"t": 4.0421, "q": [-0.3496078550815582, 0.024753335863351822, -0.013338328339159489, 0.6819311380386353, -0.36240145564079285, -0.001543960184790194, -0.31960150599479675, 0.0008948221220634878, 0.0017543383873999119, 0.6123906970024109, -0.3423728048801422, 0.022815918549895287, -0.023449208587408066, -0.05350004509091377, -0.1188211739063263, 0.021092236042022705, 0.19186744093894958, -0.1490238457918167, 0.9733587503433228, 0.35322305560112, -0.008628642186522484, -0.1052934005856514, -0.058039601892232895, -0.3015710413455963, 0.1567656546831131, 0.11575563251972198, -0.18370619416236877, -0.6882300972938538, 0.1645793616771698]} +{"t": 4.0588, "q": [-0.35014474391937256, 0.024693680927157402, -0.013338328339159489, 0.6820078492164612, -0.3623971939086914, -0.0015075246337801218, -0.31960150599479675, 0.000818123109638691, 0.0017677302239462733, 0.6114106774330139, -0.3418131172657013, 0.023318927735090256, -0.02336885780096054, -0.05334038287401199, -0.11891424655914307, 0.014764565043151379, 0.19006980955600739, -0.15468040108680725, 0.9712015986442566, 0.35602736473083496, -0.011900335550308228, -0.11085408180952072, -0.062377892434597015, -0.29779601097106934, 0.15770041942596436, 0.09618539363145828, -0.1833226978778839, -0.694186270236969, 0.16868995130062103]} +{"t": 4.0756, "q": [-0.35074982047080994, 0.024693680927157402, -0.013338328339159489, 0.6821186542510986, -0.3623969852924347, -0.0014638544525951147, -0.31959298253059387, 0.0008096009842120111, 0.0017543383873999119, 0.610140860080719, -0.3409927189350128, 0.02433551289141178, -0.023315289989113808, -0.0530514121055603, -0.11910111457109451, 0.008748484775424004, 0.18738535046577454, -0.15997742116451263, 0.9679179191589355, 0.3579328656196594, -0.015315840020775795, -0.11564777046442032, -0.0659252256155014, -0.2947040796279907, 0.15779629349708557, 0.07542871683835983, -0.18298713862895966, -0.7009932994842529, 0.17288443446159363]} +{"t": 4.0923, "q": [-0.35115888714790344, 0.024693680927157402, -0.013298152014613152, 0.6821527481079102, -0.3624131679534912, -0.0014494728529825807, -0.3195333182811737, 0.0008351673022843897, 0.0018748653819784522, 0.6086580157279968, -0.34016337990760803, 0.025279248133301735, -0.023569736629724503, -0.052648451179265976, -0.11934151500463486, 0.004122573416680098, 0.18459302186965942, -0.1637764275074005, 0.9633998870849609, 0.3597065210342407, -0.019546272233128548, -0.11901534348726273, -0.06881342083215714, -0.2919357120990753, 0.15750867128372192, 0.0544683039188385, -0.18159696459770203, -0.7067457437515259, 0.17535318434238434]} +{"t": 4.1091, "q": [-0.35147419571876526, 0.024710724130272865, -0.01319101732224226, 0.6821442246437073, -0.3623764216899872, -0.0014272071421146393, -0.3194054961204529, 0.0008862999966368079, 0.002008784329518676, 0.6072859168052673, -0.3391999900341034, 0.02593056485056877, -0.02385096624493599, -0.052230097353458405, -0.11963307112455368, -0.000898816913831979, 0.18162094056606293, -0.16777914762496948, 0.9594210982322693, 0.36134836077690125, -0.02340519241988659, -0.12174774706363678, -0.07103050500154495, -0.28875991702079773, 0.15723302960395813, 0.0322016142308712, -0.17911623418331146, -0.7122344970703125, 0.17651565372943878]} +{"t": 4.1259, "q": [-0.3518321216106415, 0.024710724130272865, -0.013070490211248398, 0.6821783185005188, -0.36219799518585205, -0.0015417692484334111, -0.3193032145500183, 0.0008607336785644293, 0.0021159194875508547, 0.6063655614852905, -0.33855801820755005, 0.026389000937342644, -0.023958101868629456, -0.051918335258960724, -0.11982497572898865, -0.006087986286729574, 0.17837320268154144, -0.17185379564762115, 0.9551786780357361, 0.3623071014881134, -0.025382589548826218, -0.125858336687088, -0.0731397271156311, -0.2853204309940338, 0.1566937416791916, 0.012295815162360668, -0.17650367319583893, -0.7143557071685791, 0.1771867722272873]} +{"t": 4.1428, "q": [-0.35239458084106445, 0.024710724130272865, -0.013070490211248398, 0.6822549700737, -0.3621090352535248, -0.0016427385853603482, -0.31922653317451477, 0.0008522115531377494, 0.0021427033934742212, 0.6053258776664734, -0.33803004026412964, 0.026790520176291466, -0.023971492424607277, -0.05181175470352173, -0.1199246346950531, -0.011720572598278522, 0.1733638048171997, -0.17254887521266937, 0.9506846070289612, 0.3622351884841919, -0.026736807078123093, -0.12944161891937256, -0.07662713527679443, -0.2814734876155853, 0.1556151658296585, -0.006028065457940102, -0.17482587695121765, -0.7159256339073181, 0.17881663143634796]} +{"t": 4.1595, "q": [-0.35311898589134216, 0.024710724130272865, -0.013298152014613152, 0.6824851036071777, -0.36121392250061035, -0.0031910876277834177, -0.3189879059791565, 0.0009033442474901676, 0.001834689755924046, 0.6038515567779541, -0.33736443519592285, 0.02732134610414505, -0.023730438202619553, -0.05184977874159813, -0.11989998072385788, -0.018455706536769867, 0.1676473319530487, -0.17275260388851166, 0.945471465587616, 0.36189964413642883, -0.027959197759628296, -0.13111941516399384, -0.08083359897136688, -0.27934029698371887, 0.15565112233161926, -0.023009711876511574, -0.17473000288009644, -0.7174835801124573, 0.18390992283821106]} +{"t": 4.1763, "q": [-0.3542439043521881, 0.024719247594475746, -0.013807044364511967, 0.6826299428939819, -0.35920101404190063, -0.006714536342769861, -0.31892824172973633, 0.0009970874525606632, 0.0013525814283639193, 0.6021897196769714, -0.33656981587409973, 0.02796669863164425, -0.022967100143432617, -0.051895368844270706, -0.11988061666488647, -0.025382589548826218, 0.161032035946846, -0.17268070578575134, 0.9394553899765015, 0.3614322543144226, -0.030356042087078094, -0.13197028636932373, -0.08382965624332428, -0.2792324423789978, 0.15571103990077972, -0.03886484354734421, -0.17498166859149933, -0.719305157661438, 0.19154387712478638]} +{"t": 4.1931, "q": [-0.3552494943141937, 0.02467663586139679, -0.014409679919481277, 0.6828004121780396, -0.35912543535232544, -0.00634973356500268, -0.31886857748031616, 0.0010226538870483637, 0.0007499461644329131, 0.6009795665740967, -0.33531317114830017, 0.028628600761294365, -0.022779613733291626, -0.05200936645269394, -0.11982709914445877, -0.03272891789674759, 0.15315839648246765, -0.17228522896766663, 0.9303473830223083, 0.3601858913898468, -0.03530552610754967, -0.1327252984046936, -0.08806008845567703, -0.2793762683868408, 0.15569905936717987, -0.055642757564783096, -0.1753891408443451, -0.7215941548347473, 0.20029236376285553]} +{"t": 4.2098, "q": [-0.35579490661621094, 0.02462550438940525, -0.014396287500858307, 0.6831071972846985, -0.3590811789035797, -0.0064002289436757565, -0.3189964294433594, 0.0009800433181226254, 0.0007767299539409578, 0.6006727814674377, -0.3341628611087799, 0.02795349434018135, -0.02271265536546707, -0.05230603367090225, -0.11961441487073898, -0.04080628603696823, 0.14451777935028076, -0.17230919003486633, 0.9209277629852295, 0.35817253589630127, -0.0430353544652462, -0.1330249011516571, -0.09429188072681427, -0.2797118127346039, 0.15610651671886444, -0.07321163266897202, -0.1764077991247177, -0.7237273454666138, 0.20822592079639435]} +{"t": 4.2266, "q": [-0.35625511407852173, 0.024574371054768562, -0.01436950359493494, 0.6837378144264221, -0.35931771993637085, -0.006002403330057859, -0.31905609369277954, 0.0009629990672692657, 0.0006963785854168236, 0.6006131172180176, -0.3311874568462372, 0.024633217602968216, -0.022471601143479347, -0.05273183807730675, -0.11935877799987793, -0.04996223375201225, 0.13548167049884796, -0.1723930835723877, 0.9102618098258972, 0.355763703584671, -0.04996223375201225, -0.1330249011516571, -0.10123074799776077, -0.28184500336647034, 0.15737684071063995, -0.08852747082710266, -0.17765416204929352, -0.7253092527389526, 0.21711820363998413]} +{"t": 4.2433, "q": [-0.3566300868988037, 0.02456584945321083, -0.014503423124551773, 0.6842235922813416, -0.359485924243927, -0.0056985123082995415, -0.3189879059791565, 0.0009885653853416443, 0.0004553244507405907, 0.6004171371459961, -0.33116617798805237, 0.025010844692587852, -0.02202966809272766, -0.05320266634225845, -0.11922717094421387, -0.05977731570601463, 0.12732040882110596, -0.17217735946178436, 0.8995958566665649, 0.354421466588974, -0.055690694600343704, -0.13303688168525696, -0.10760635882616043, -0.28348684310913086, 0.15749669075012207, -0.10209361463785172, -0.1802067905664444, -0.7262920141220093, 0.22671757638454437]} +{"t": 4.2601, "q": [-0.3569198250770569, 0.024514716118574142, -0.014583774842321873, 0.684402585029602, -0.35958215594291687, -0.005539385136216879, -0.319021999835968, 0.0009544769418425858, 0.0003481892927084118, 0.6003745198249817, -0.32973822951316833, 0.027611661702394485, -0.02134668081998825, -0.05404596030712128, -0.1188955083489418, -0.07073089480400085, 0.11933891475200653, -0.1720455437898636, 0.8894452452659607, 0.35418179631233215, -0.062258049845695496, -0.13298894464969635, -0.11423363536596298, -0.2857039272785187, 0.15760454535484314, -0.11558785289525986, -0.18468889594078064, -0.7273585796356201, 0.23879767954349518]} +{"t": 4.2769, "q": [-0.3571925461292267, 0.0244891494512558, -0.01479804515838623, 0.6844537258148193, -0.359590083360672, -0.005510361865162849, -0.3190390467643738, 0.0009800433181226254, 0.00018748654110822827, 0.6000933051109314, -0.329068660736084, 0.028839873149991035, -0.0211859792470932, -0.054783519357442856, -0.11843890696763992, -0.07907191663980484, 0.11304719746112823, -0.17193767428398132, 0.8806607723236084, 0.3538462221622467, -0.06888532638549805, -0.13291704654693604, -0.12050138413906097, -0.2887958586215973, 0.15871907770633698, -0.12827914953231812, -0.18881146609783173, -0.7283173203468323, 0.25026658177375793]} +{"t": 4.2936, "q": [-0.3574141263961792, 0.024455061182379723, -0.014811436645686626, 0.6844537258148193, -0.3596021831035614, -0.005503216292709112, -0.31914982199668884, 0.0009970874525606632, 0.00012052706006215885, 0.599982500076294, -0.3290155827999115, 0.02886110544204712, -0.021132411435246468, -0.055681049823760986, -0.11779802292585373, -0.08521982282400131, 0.10788199305534363, -0.171494260430336, 0.8722838163375854, 0.35367846488952637, -0.0739906057715416, -0.13284513354301453, -0.12776382267475128, -0.29270270466804504, 0.1598336100578308, -0.14250442385673523, -0.1949114352464676, -0.7305464148521423, 0.2622148394584656]} +{"t": 4.3103, "q": [-0.3580617904663086, 0.024420972913503647, -0.014958747662603855, 0.6845048069953918, -0.3593066930770874, -0.00500498665496707, -0.31960150599479675, 0.0009970874525606632, -8.035137580009177e-05, 0.5999484062194824, -0.32893046736717224, 0.028969207778573036, -0.020717263221740723, -0.056487102061510086, -0.11726783961057663, -0.08868326991796494, 0.10422680526971817, -0.17070330679416656, 0.8644940853118896, 0.353450745344162, -0.08076169341802597, -0.13231782615184784, -0.13527794182300568, -0.2978799045085907, 0.16054068505764008, -0.1570412814617157, -0.1994774341583252, -0.7336023449897766, 0.27440279722213745]} +{"t": 4.3272, "q": [-0.3586498200893402, 0.024335751309990883, -0.015306936576962471, 0.6845729947090149, -0.35907289385795593, -0.004631181713193655, -0.3198912441730499, 0.0009800433181226254, -0.0004821082402486354, 0.5999484062194824, -0.3288577198982239, 0.0290847010910511, -0.01964591071009636, -0.056973788887262344, -0.11694368720054626, -0.09060074388980865, 0.10163821280002594, -0.17040370404720306, 0.8583341836929321, 0.35343876481056213, -0.08881509304046631, -0.13139504194259644, -0.14299577474594116, -0.30386003851890564, 0.1603369563817978, -0.171865776181221, -0.20537367463111877, -0.7358793616294861, 0.2869502902030945]} +{"t": 4.3439, "q": [-0.3589736819267273, 0.024284619837999344, -0.015561383217573166, 0.6846070885658264, -0.35907697677612305, -0.004638504236936569, -0.3200531601905823, 0.0009629990672692657, -0.0007633380591869354, 0.5999313592910767, -0.3288535475730896, 0.02907739393413067, -0.018520992249250412, -0.05737675726413727, -0.1166938841342926, -0.09109209477901459, 0.10002034157514572, -0.1703437715768814, 0.8515870571136475, 0.35351067781448364, -0.09339306503534317, -0.13067598640918732, -0.1516723483800888, -0.30990007519721985, 0.15996544063091278, -0.18513230979442596, -0.21166539192199707, -0.7380365133285522, 0.29669347405433655]} +{"t": 4.3607, "q": [-0.35909298062324524, 0.024284619837999344, -0.015842612832784653, 0.6846326589584351, -0.3590236008167267, -0.00454327929764986, -0.32002758979797363, 0.0009715211344882846, -0.001084743533283472, 0.5999228358268738, -0.3288577198982239, 0.0290847010910511, -0.016900572925806046, -0.05770370364189148, -0.11648327112197876, -0.0911640003323555, 0.09915748238563538, -0.17037972807884216, 0.8449358344078064, 0.3537024259567261, -0.09695237874984741, -0.13011273741722107, -0.16129568219184875, -0.3166232407093048, 0.1594860702753067, -0.19838686287403107, -0.21915552020072937, -0.7421111464500427, 0.30890539288520813]} +{"t": 4.3775, "q": [-0.3591611683368683, 0.024259053170681, -0.016003314405679703, 0.6847008466720581, -0.3590070605278015, -0.0044994349591434, -0.3199935257434845, 0.0009629990672692657, -0.0012856220128014684, 0.5999484062194824, -0.3288617432117462, 0.029077479615807533, -0.01577565260231495, -0.05781790241599083, -0.11636912822723389, -0.09117598831653595, 0.09907358884811401, -0.17070330679416656, 0.8416281938552856, 0.35397806763648987, -0.10048773139715195, -0.13010074198246002, -0.17208148539066315, -0.3234902024269104, 0.1598096489906311, -0.21067069470882416, -0.2270890772342682, -0.7461378574371338, 0.31976309418678284]} +{"t": 4.3942, "q": [-0.3592548966407776, 0.024259053170681, -0.01615062542259693, 0.6846667528152466, -0.359011173248291, -0.004506757017225027, -0.32001906633377075, 0.0009885653853416443, -0.0014731085393577814, 0.5999313592910767, -0.32889842987060547, 0.02905605547130108, -0.015065882354974747, -0.05781794711947441, -0.11635894328355789, -0.09099622070789337, 0.09909755736589432, -0.17090703547000885, 0.8392912745475769, 0.3543255925178528, -0.10401108860969543, -0.13010074198246002, -0.18335863947868347, -0.3298777937889099, 0.1597377359867096, -0.2229665070772171, -0.2343275547027588, -0.7502244710922241, 0.33133986592292786]} +{"t": 4.411, "q": [-0.3593827188014984, 0.02426757477223873, -0.016338111832737923, 0.6846923232078552, -0.3590070605278015, -0.0044994349591434, -0.32011282444000244, 0.001005609636195004, -0.0016605950659140944, 0.5999654531478882, -0.32889413833618164, 0.029034219682216644, -0.014610557816922665, -0.057841021567583084, -0.11627296358346939, -0.09044494479894638, 0.09914549440145493, -0.17105084657669067, 0.8368704319000244, 0.3549727499485016, -0.10844525694847107, -0.13038836419582367, -0.19458787143230438, -0.3368166387081146, 0.1594381332397461, -0.23503462970256805, -0.24155403673648834, -0.7533883452415466, 0.34189796447753906]} +{"t": 4.4277, "q": [-0.35954463481903076, 0.024242008104920387, -0.01665951870381832, 0.6846752762794495, -0.3590070605278015, -0.0044994349591434, -0.32010430097579956, 0.0009970874525606632, -0.0019686087034642696, 0.5999739766120911, -0.3289104104042053, 0.029019862413406372, -0.014034707099199295, -0.057788144797086716, -0.11621555685997009, -0.09003748744726181, 0.10037986934185028, -0.1753891408443451, 0.8344136476516724, 0.35687825083732605, -0.11314307153224945, -0.13339641690254211, -0.20640431344509125, -0.3438633680343628, 0.15937821567058563, -0.24501748383045197, -0.250374436378479, -0.7551620006561279, 0.35378631949424744]} +{"t": 4.4444, "q": [-0.35963839292526245, 0.024259053170681, -0.016766652464866638, 0.6846582293510437, -0.3590191900730133, -0.004492289386689663, -0.32029178738594055, 0.001014131703414023, -0.0020757438614964485, 0.6000165939331055, -0.3289344906806946, 0.028961986303329468, -0.014007923193275928, -0.05778856202960014, -0.11610352247953415, -0.08941430598497391, 0.10217750072479248, -0.18204037845134735, 0.8313097357749939, 0.35989826917648315, -0.11861985921859741, -0.13762684166431427, -0.21816083788871765, -0.3508501648902893, 0.15935423970222473, -0.25492843985557556, -0.2590150535106659, -0.7561926245689392, 0.365399032831192]} +{"t": 4.4612, "q": [-0.3600730299949646, 0.024293141439557076, -0.016927355900406837, 0.6846582293510437, -0.3590191900730133, -0.004492289386689663, -0.32066676020622253, 0.0010823087068274617, -0.0022096626926213503, 0.6000080704689026, -0.32894256711006165, 0.02894754335284233, -0.013900787569582462, -0.05783418193459511, -0.11607415974140167, -0.0890427902340889, 0.10228536278009415, -0.19077688455581665, 0.8264321684837341, 0.3643324375152588, -0.1252111792564392, -0.14188124239444733, -0.22897060215473175, -0.3571658730506897, 0.15895876288414001, -0.26361700892448425, -0.2672722041606903, -0.7583737373352051, 0.37492647767066956]} +{"t": 4.4779, "q": [-0.3604991137981415, 0.024250531569123268, -0.016913963481783867, 0.6846326589584351, -0.3590230941772461, -0.004470499698072672, -0.32116955518722534, 0.0010567422723397613, -0.0022096626926213503, 0.6000165939331055, -0.3289506435394287, 0.028933098539710045, -0.013833828270435333, -0.057758528739213943, -0.11602123826742172, -0.0890427902340889, 0.10147043317556381, -0.19868646562099457, 0.822932779788971, 0.36729252338409424, -0.13193432986736298, -0.14781343936920166, -0.2392171174287796, -0.36252281069755554, 0.1586112231016159, -0.2702922224998474, -0.2745106518268585, -0.7625802159309387, 0.3833993375301361]} +{"t": 4.4947, "q": [-0.3610275089740753, 0.024250531569123268, -0.01678004488348961, 0.6846326589584351, -0.3589858114719391, -0.004360896069556475, -0.32176610827445984, 0.0010396981379017234, -0.0021427033934742212, 0.6000251173973083, -0.32894256711006165, 0.02894754335284233, -0.014034707099199295, -0.057395387440919876, -0.11577742546796799, -0.0887431874871254, 0.10083527117967606, -0.20689566433429718, 0.8202243447303772, 0.37061217427253723, -0.13708755373954773, -0.1550159603357315, -0.2494995892047882, -0.36798763275146484, 0.15840749442577362, -0.27615249156951904, -0.2794601619243622, -0.7674577832221985, 0.3933342695236206]} +{"t": 4.5114, "q": [-0.3613939583301544, 0.024242008104920387, -0.01647203229367733, 0.6845985651016235, -0.35899803042411804, -0.00436830660328269, -0.32240527868270874, 0.0010482202051207423, -0.0018882573349401355, 0.6000421643257141, -0.3289344906806946, 0.028961986303329468, -0.015280152671039104, -0.05701768025755882, -0.1153702512383461, -0.08837167918682098, 0.10039185732603073, -0.2178492397069931, 0.8172283172607422, 0.3773353099822998, -0.14160560071468353, -0.16318918764591217, -0.25837990641593933, -0.3738119602203369, 0.15620239078998566, -0.2823243737220764, -0.28730982542037964, -0.771592378616333, 0.4027538597583771]} +{"t": 4.5281, "q": [-0.3616325557231903, 0.024259053170681, -0.016271153464913368, 0.6845559477806091, -0.35899391770362854, -0.004360984545201063, -0.3228484094142914, 0.001065264455974102, -0.0017007706919685006, 0.6000677347183228, -0.3289261758327484, 0.028947370126843452, -0.01645863987505436, -0.05705028772354126, -0.11477996408939362, -0.08803611993789673, 0.10021208971738815, -0.2280837744474411, 0.8152868151664734, 0.38444197177886963, -0.14844860136508942, -0.17316007614135742, -0.2658460736274719, -0.3798999488353729, 0.15486015379428864, -0.288819819688797, -0.29404494166374207, -0.7747801542282104, 0.41022002696990967]} +{"t": 4.5449, "q": [-0.36180299520492554, 0.02431870810687542, -0.01628454588353634, 0.6845303773880005, -0.35895243287086487, -0.0042294664308428764, -0.323061466217041, 0.001193096162751317, -0.0017007706919685006, 0.6000677347183228, -0.32893839478492737, 0.02894023433327675, -0.01763712614774704, -0.05712134763598442, -0.1140630692243576, -0.08776047825813293, 0.100176140666008, -0.24102674424648285, 0.8132854700088501, 0.38830089569091797, -0.15746073424816132, -0.18353840708732605, -0.2715625464916229, -0.3862515687942505, 0.15388943254947662, -0.2958545684814453, -0.2971848249435425, -0.7779080271720886, 0.4177221655845642]} +{"t": 4.5616, "q": [-0.3618200421333313, 0.024335751309990883, -0.016257761046290398, 0.6845389008522034, -0.3580232560634613, -0.002486797049641609, -0.32313817739486694, 0.0013038836186751723, -0.0015936355339363217, 0.6000762581825256, -0.3289261758327484, 0.028947370126843452, -0.018869180232286453, -0.05710136517882347, -0.11328333616256714, -0.08750881254673004, 0.10060757398605347, -0.25128522515296936, 0.8097261786460876, 0.39424505829811096, -0.16480706632137299, -0.19446802139282227, -0.27640417218208313, -0.391812264919281, 0.15338610112667084, -0.3014032542705536, -0.2991741895675659, -0.7812995910644531, 0.4240857660770416]} +{"t": 4.5783, "q": [-0.3618115186691284, 0.02431870810687542, -0.016097059473395348, 0.684479296207428, -0.3574579060077667, -0.0014252102700993419, -0.32326599955558777, 0.001312405802309513, -0.0014865003759041429, 0.60011887550354, -0.32893839478492737, 0.02894023433327675, -0.019766438752412796, -0.05686851218342781, -0.11261077970266342, -0.0875926986336708, 0.10224940627813339, -0.26404842734336853, 0.8066941499710083, 0.3999015986919403, -0.17342372238636017, -0.20633240044116974, -0.2812817394733429, -0.39694151282310486, 0.15163640677928925, -0.3071916401386261, -0.3031529486179352, -0.7860813140869141, 0.4315519630908966]} +{"t": 4.595, "q": [-0.36178597807884216, 0.02431870810687542, -0.015922963619232178, 0.684479296207428, -0.3574565052986145, -0.0011487359879538417, -0.323248952627182, 0.0012868394842371345, -0.001379365217871964, 0.6001870036125183, -0.3289426863193512, 0.028962071985006332, -0.02063691057264805, -0.05651396885514259, -0.11203660815954208, -0.08808405697345734, 0.1037714034318924, -0.274618536233902, 0.8038658499717712, 0.40493497252464294, -0.18068616092205048, -0.2187001258134842, -0.28578782081604004, -0.4021426737308502, 0.15022225677967072, -0.3127283453941345, -0.30674824118614197, -0.7907311916351318, 0.4392218589782715]} +{"t": 4.6118, "q": [-0.36174336075782776, 0.02431870810687542, -0.015748869627714157, 0.684479296207428, -0.357500821352005, -0.0010691394563764334, -0.3232404291629791, 0.0012953615514561534, -0.001272230059839785, 0.6001870036125183, -0.3289508819580078, 0.028962157666683197, -0.02131989784538746, -0.05623502656817436, -0.11154555529356003, -0.08922255784273148, 0.10554507374763489, -0.2860395014286041, 0.8009896874427795, 0.40752357244491577, -0.18752916157245636, -0.23033681511878967, -0.2893950641155243, -0.406648725271225, 0.14909574389457703, -0.3184208571910858, -0.31109851598739624, -0.7942066192626953, 0.44562143087387085]} +{"t": 4.6285, "q": [-0.36166664958000183, 0.024301663041114807, -0.015521206893026829, 0.6844366788864136, -0.35754111409187317, -0.0009967756923288107, -0.32326599955558777, 0.0013038836186751723, -0.001084743533283472, 0.6001870036125183, -0.32895907759666443, 0.02896224334836006, -0.021775221452116966, -0.05596303194761276, -0.11117251217365265, -0.09075653553009033, 0.1079898551106453, -0.2976522147655487, 0.7988444566726685, 0.41141843795776367, -0.1976797878742218, -0.2439868450164795, -0.29275065660476685, -0.4119817018508911, 0.14908376336097717, -0.3242451846599579, -0.31432226300239563, -0.7974183559417725, 0.45156559348106384]} +{"t": 4.6454, "q": [-0.3616751730442047, 0.02431018464267254, -0.015440856106579304, 0.6844196319580078, -0.3576216697692871, -0.0008520841365680099, -0.3232915699481964, 0.0012783173006027937, -0.0010177841177210212, 0.6002040505409241, -0.3289632499217987, 0.028969550505280495, -0.021909141913056374, -0.055880580097436905, -0.11085007339715958, -0.0929376631975174, 0.1106863021850586, -0.30985215306282043, 0.7956447005271912, 0.41733866930007935, -0.20593692362308502, -0.2577447295188904, -0.2953871786594391, -0.41719484329223633, 0.14903582632541656, -0.3290868103504181, -0.31566449999809265, -0.8004144430160522, 0.45947518944740295]} +{"t": 4.6621, "q": [-0.3616751730442047, 0.024293141439557076, -0.015293545089662075, 0.6843684911727905, -0.35767796635627747, -0.0007362418109551072, -0.32332566380500793, 0.001252750982530415, -0.0009642164804972708, 0.6001699566841125, -0.32896754145622253, 0.02899140678346157, -0.02201627567410469, -0.05585874617099762, -0.11055956780910492, -0.0951068103313446, 0.11237607896327972, -0.31921181082725525, 0.79311603307724, 0.42355847358703613, -0.21417008340358734, -0.27083149552345276, -0.2977480888366699, -0.4218926727771759, 0.14859241247177124, -0.33271804451942444, -0.3175699710845947, -0.8023678660392761, 0.4675765335559845]} +{"t": 4.6788, "q": [-0.36164960265159607, 0.024284619837999344, -0.015186409465968609, 0.6843514442443848, -0.3577302098274231, -0.0006130847614258528, -0.3233086168766022, 0.001252750982530415, -0.000897257006727159, 0.6001784801483154, -0.32898014783859253, 0.02902785874903202, -0.022123411297798157, -0.05595114454627037, -0.11015478521585464, -0.09689246118068695, 0.11504856497049332, -0.3296380937099457, 0.7891013026237488, 0.4265305697917938, -0.22308635711669922, -0.28526049852371216, -0.2997734248638153, -0.42702192068099976, 0.14816097915172577, -0.33580997586250305, -0.3200147747993469, -0.8048965334892273, 0.47562992572784424]} +{"t": 4.6958, "q": [-0.3616325557231903, 0.024284619837999344, -0.015173017978668213, 0.684334397315979, -0.35779470205307007, -0.0005118718254379928, -0.32331714034080505, 0.001261273049749434, -0.000897257006727159, 0.6001273393630981, -0.32898420095443726, 0.029020637273788452, -0.022056452929973602, -0.05599801614880562, -0.10974884033203125, -0.09861818701028824, 0.11818842589855194, -0.3402681052684784, 0.784223735332489, 0.4283521771430969, -0.23206253349781036, -0.2988985478878021, -0.30123549699783325, -0.43241482973098755, 0.14781343936920166, -0.33866220712661743, -0.32218390703201294, -0.8089112639427185, 0.4825568199157715]} +{"t": 4.7125, "q": [-0.36159849166870117, 0.024216441437602043, -0.015159625560045242, 0.6843258738517761, -0.3578147888183594, -0.00046116046723909676, -0.32327452301979065, 0.0012186624808236957, -0.0009106489014811814, 0.6001273393630981, -0.32900071144104004, 0.029035355895757675, -0.02202966809272766, -0.05592373013496399, -0.10924875736236572, -0.10126670449972153, 0.12117250263690948, -0.35016706585884094, 0.7801491022109985, 0.43001797795295715, -0.24399882555007935, -0.3132077157497406, -0.30270954966545105, -0.4378436803817749, 0.14781343936920166, -0.34115493297576904, -0.32365795969963074, -0.8133333921432495, 0.48796170949935913]} +{"t": 4.7292, "q": [-0.36159849166870117, 0.024114176630973816, -0.015132841654121876, 0.6842406392097473, -0.35780617594718933, -0.0003737573279067874, -0.3232574760913849, 0.0011249192757532, -0.000897257006727159, 0.600135862827301, -0.3290298581123352, 0.029086509719491005, -0.021949317306280136, -0.05580354854464531, -0.10886929929256439, -0.1041189506649971, 0.12326974421739578, -0.35775309801101685, 0.7753074765205383, 0.4318515658378601, -0.2542693018913269, -0.32776856422424316, -0.30378812551498413, -0.4420381486415863, 0.1473580300807953, -0.3434678912162781, -0.3244848847389221, -0.816497266292572, 0.49294713139533997]} +{"t": 4.746, "q": [-0.3615899682044983, 0.02407156676054001, -0.015079274773597717, 0.6841980218887329, -0.35781827569007874, -0.0003520230238791555, -0.3232915699481964, 0.001065264455974102, -0.0008704732172191143, 0.600135862827301, -0.32905471324920654, 0.029115844517946243, -0.021935924887657166, -0.055622171610593796, -0.10860054194927216, -0.10733072459697723, 0.1257864236831665, -0.36491966247558594, 0.771532416343689, 0.4335293471813202, -0.26439598202705383, -0.34143057465553284, -0.30471092462539673, -0.44524991512298584, 0.14666295051574707, -0.3452775180339813, -0.325611412525177, -0.8190618753433228, 0.4989751875400543]} +{"t": 4.7627, "q": [-0.36137691140174866, 0.024054521694779396, -0.014838220551609993, 0.6841042637825012, -0.35781827569007874, -0.0003520230238791555, -0.3232915699481964, 0.0010567422723397613, -0.0007767299539409578, 0.6001443862915039, -0.32905900478363037, 0.029137680307030678, -0.022083235904574394, -0.05543304607272148, -0.10838745534420013, -0.11054249107837677, 0.12952551245689392, -0.3723618686199188, 0.7656122446060181, 0.43476372957229614, -0.27484622597694397, -0.3573096692562103, -0.3058374226093292, -0.4482100307941437, 0.14609968662261963, -0.3475545048713684, -0.32841572165489197, -0.8208954334259033, 0.5060698390007019]} +{"t": 4.7797, "q": [-0.3611723780632019, 0.02408008836209774, -0.014583774842321873, 0.6839082837104797, -0.3578222393989563, -0.00033024276490323246, -0.32328304648399353, 0.0010823087068274617, -0.0004955001641064882, 0.6001018285751343, -0.32906290888786316, 0.029115911573171616, -0.022096628323197365, -0.055296819657087326, -0.1082518994808197, -0.1143774464726448, 0.13338442146778107, -0.380607008934021, 0.761297881603241, 0.4362018406391144, -0.2868184745311737, -0.3729730546474457, -0.30637672543525696, -0.4518772065639496, 0.14601579308509827, -0.3495319187641144, -0.3302493095397949, -0.8220819234848022, 0.5110193490982056]} +{"t": 4.7965, "q": [-0.36096784472465515, 0.02407156676054001, -0.014396287500858307, 0.6837804317474365, -0.3578181266784668, -0.0003229280700907111, -0.3232404291629791, 0.001073786523193121, -0.0004151487664785236, 0.6001103520393372, -0.3290795683860779, 0.02914516068994999, -0.022230546921491623, -0.055168140679597855, -0.1081317812204361, -0.11820041388273239, 0.13830994069576263, -0.38945135474205017, 0.7545747756958008, 0.4378196895122528, -0.2977480888366699, -0.389870822429657, -0.3067362308502197, -0.4559638202190399, 0.14552444219589233, -0.3518688380718231, -0.33181923627853394, -0.8231724500656128, 0.5165680646896362]} +{"t": 4.8132, "q": [-0.3607121706008911, 0.024046000093221664, -0.014248977415263653, 0.6836100220680237, -0.3578140437602997, -0.0003156133752781898, -0.32327452301979065, 0.001065264455974102, -0.00030801360844634473, 0.600135862827301, -0.32910844683647156, 0.029167255386710167, -0.022230546921491623, -0.05510023981332779, -0.10799290984869003, -0.12106464058160782, 0.14186926186084747, -0.39426901936531067, 0.7491938471794128, 0.4390420913696289, -0.3094566762447357, -0.4041919708251953, -0.3067961633205414, -0.45927146077156067, 0.14499713480472565, -0.35388219356536865, -0.3321787416934967, -0.824418842792511, 0.5222964882850647]} +{"t": 4.8299, "q": [-0.36032867431640625, 0.024063043296337128, -0.014262368902564049, 0.6834225058555603, -0.35781002044677734, -0.00032284617191180587, -0.3232404291629791, 0.001073786523193121, -0.0002946217136923224, 0.60011887550354, -0.3291696012020111, 0.029131578281521797, -0.022110018879175186, -0.05498732253909111, -0.10767002403736115, -0.12430038303136826, 0.1456323117017746, -0.398355633020401, 0.7425905466079712, 0.4407678246498108, -0.32135701179504395, -0.41893255710601807, -0.3065205216407776, -0.4621357023715973, 0.14310362935066223, -0.3565426766872406, -0.3322506546974182, -0.8266957998275757, 0.5270782113075256]} +{"t": 4.8466, "q": [-0.36000484228134155, 0.024037478491663933, -0.014248977415263653, 0.6833373308181763, -0.3578018844127655, -0.00032276424462907016, -0.32327452301979065, 0.0010567422723397613, -0.00030801360844634473, 0.6001614332199097, -0.3292188048362732, 0.029132094234228134, -0.022150196135044098, -0.05482891574501991, -0.10734570771455765, -0.12690095603466034, 0.14945527911186218, -0.4003570079803467, 0.7367422580718994, 0.4416426718235016, -0.3330296277999878, -0.43306195735931396, -0.30655649304389954, -0.4645565152168274, 0.1408625841140747, -0.3587837219238281, -0.33278995752334595, -0.8293922543525696, 0.5308412313461304]} +{"t": 4.8634, "q": [-0.3592122793197632, 0.024037478491663933, -0.01419540960341692, 0.6831668615341187, -0.3577978312969208, -0.0003300330135971308, -0.32328304648399353, 0.0010482202051207423, -0.00030801360844634473, 0.6001273393630981, -0.32922685146331787, 0.029117651283740997, -0.022069843485951424, -0.05467817187309265, -0.10699616372585297, -0.1296813040971756, 0.15364974737167358, -0.402046799659729, 0.7298632860183716, 0.4420141875743866, -0.3436117172241211, -0.4483778178691864, -0.3068201243877411, -0.4674566984176636, 0.1390649527311325, -0.3612045347690582, -0.3328019380569458, -0.8317891359329224, 0.5352394580841064]} +{"t": 4.8802, "q": [-0.3580192029476166, 0.02401191182434559, -0.014168625697493553, 0.6829282641410828, -0.3577897846698761, -0.00034449854865670204, -0.3233086168766022, 0.0009885653853416443, -0.00030801360844634473, 0.600135862827301, -0.3292553722858429, 0.029096141457557678, -0.022056452929973602, -0.05461779609322548, -0.10688277333974838, -0.13314473628997803, 0.1588628888130188, -0.40495896339416504, 0.7253332734107971, 0.44232577085494995, -0.35512855648994446, -0.46359777450561523, -0.3072875142097473, -0.4701171815395355, 0.1380942314863205, -0.3631100356578827, -0.332670122385025, -0.833538830280304, 0.5391223430633545]} +{"t": 4.897, "q": [-0.35730332136154175, 0.0239607784897089, -0.014182017184793949, 0.6828089356422424, -0.3577694296836853, -0.00033702002838253975, -0.3232915699481964, 0.0009715211344882846, -0.00030801360844634473, 0.60011887550354, -0.3292716145515442, 0.029081784188747406, -0.021815398707985878, -0.05454988032579422, -0.10675394535064697, -0.13762684166431427, 0.16511864960193634, -0.41022002696990967, 0.7209709882736206, 0.4422898292541504, -0.3660821318626404, -0.4791053533554077, -0.3076949715614319, -0.4730892777442932, 0.13748303055763245, -0.36494362354278564, -0.3324064612388611, -0.8349170088768005, 0.544167697429657]} +{"t": 4.9137, "q": [-0.3566300868988037, 0.02390964701771736, -0.014182017184793949, 0.682766318321228, -0.3577326536178589, -0.0003002463490702212, -0.3232404291629791, 0.0009629990672692657, -0.0003214055032003671, 0.600135862827301, -0.32929596304893494, 0.029052967205643654, -0.02166808769106865, -0.054535333067178726, -0.10650992393493652, -0.14117416739463806, 0.17103886604309082, -0.4135276675224304, 0.7165128588676453, 0.4418104588985443, -0.376831978559494, -0.494289368391037, -0.30835410952568054, -0.47533032298088074, 0.13683588802814484, -0.36686110496520996, -0.3323825001716614, -0.8367385864257812, 0.5478468537330627]} +{"t": 4.9306, "q": [-0.3562636375427246, 0.02389260195195675, -0.014182017184793949, 0.6826555132865906, -0.35773661732673645, -0.0002784660900942981, -0.32318079471588135, 0.0009629990672692657, -0.00033479739795438945, 0.600135862827301, -0.3293042778968811, 0.02906758151948452, -0.021427033469080925, -0.0546499527990818, -0.10622343420982361, -0.14389459788799286, 0.17614413797855377, -0.4154810905456543, 0.711755096912384, 0.44133108854293823, -0.3873661160469055, -0.5083947777748108, -0.3086656928062439, -0.47722384333610535, 0.13645239174365997, -0.3684549927711487, -0.33244240283966064, -0.8384403586387634, 0.5502557158470154]} +{"t": 4.9473, "q": [-0.35614433884620667, 0.02384146861732006, -0.014182017184793949, 0.6825959086418152, -0.3577122390270233, -0.0002782203664537519, -0.32312965393066406, 0.0009629990672692657, -0.0003481892927084118, 0.6001443862915039, -0.3293042778968811, 0.02906758151948452, -0.021212762221693993, -0.0546962134540081, -0.10596038401126862, -0.14603976905345917, 0.18163292109966278, -0.41606834530830383, 0.7068296074867249, 0.44043225049972534, -0.40069258213043213, -0.5228477716445923, -0.30902522802352905, -0.47812265157699585, 0.1363684982061386, -0.36955755949020386, -0.3323825001716614, -0.840190052986145, 0.5535513758659363]} +{"t": 4.964, "q": [-0.3558886647224426, 0.02377329207956791, -0.014182017184793949, 0.6825191974639893, -0.3577081263065338, -0.0002709056716412306, -0.3230188488960266, 0.0009203884401358664, -0.0003481892927084118, 0.6001443862915039, -0.3293001353740692, 0.029060274362564087, -0.020904749631881714, -0.054757729172706604, -0.10566747188568115, -0.1478014439344406, 0.18681010603904724, -0.4167514443397522, 0.7014366984367371, 0.44018059968948364, -0.41256892681121826, -0.5372408628463745, -0.3094446659088135, -0.47782304883003235, 0.1362966001033783, -0.3705762028694153, -0.33239448070526123, -0.8410769104957581, 0.55625981092453]} +{"t": 4.9809, "q": [-0.3556670844554901, 0.023636939004063606, -0.014141841791570187, 0.6824936270713806, -0.3577040433883667, -0.00026359097682870924, -0.32294216752052307, 0.0007584682898595929, -0.00037497308221645653, 0.600135862827301, -0.3293042778968811, 0.02906758151948452, -0.02051638439297676, -0.05478120595216751, -0.10538910329341888, -0.14879614114761353, 0.1910405308008194, -0.4168233275413513, 0.6964033246040344, 0.43970122933387756, -0.4222162365913391, -0.5496565103530884, -0.31001991033554077, -0.4770919978618622, 0.13626064360141754, -0.371487021446228, -0.3324783742427826, -0.8413525223731995, 0.5579735636711121]} +{"t": 4.9977, "q": [-0.3553943932056427, 0.023440929129719734, -0.014034707099199295, 0.6824083924293518, -0.3576918840408325, -0.00027074181707575917, -0.32281434535980225, 0.0006135923322290182, -0.0003481892927084118, 0.6001443862915039, -0.32931262254714966, 0.02908221445977688, -0.020034275949001312, -0.0547441802918911, -0.10502801090478897, -0.14961107075214386, 0.19517509639263153, -0.41685929894447327, 0.6916576027870178, 0.4394495487213135, -0.4329061806201935, -0.5631986856460571, -0.3109307289123535, -0.4769601821899414, 0.1362486630678177, -0.372313916683197, -0.33253827691078186, -0.8414963483810425, 0.560454249382019]} +{"t": 5.0144, "q": [-0.3552069067955017, 0.023279009386897087, -0.013954355381429195, 0.6823828220367432, -0.357687771320343, -0.0002634271513670683, -0.3226609230041504, 0.00046871634549461305, -0.0003214055032003671, 0.6001529097557068, -0.3293209373950958, 0.029096830636262894, -0.019592342898249626, -0.054684437811374664, -0.10465102642774582, -0.1503780633211136, 0.1989261507987976, -0.41641587018966675, 0.6881821751594543, 0.4376399517059326, -0.44317665696144104, -0.5755664110183716, -0.3122369945049286, -0.4764568507671356, 0.13617675006389618, -0.37350037693977356, -0.3325742483139038, -0.8415083289146423, 0.5633904337882996]} +{"t": 5.0313, "q": [-0.3550279140472412, 0.02312561124563217, -0.013833828270435333, 0.6823487281799316, -0.357695996761322, -0.0002780565118882805, -0.3224649131298065, 0.0002641855680849403, -0.0002946217136923224, 0.600135862827301, -0.32933342456817627, 0.029118752107024193, -0.018936140462756157, -0.054640237241983414, -0.10415233671665192, -0.15125291049480438, 0.2021259367465973, -0.41664355993270874, 0.68552166223526, 0.43409261107444763, -0.45233258605003357, -0.5867716073989868, -0.31377097964286804, -0.47482699155807495, 0.1365962028503418, -0.3743632137775421, -0.33320939540863037, -0.841532289981842, 0.5657872557640076]} +{"t": 5.048, "q": [-0.3548319339752197, 0.022904036566615105, -0.01379365287721157, 0.6823487281799316, -0.357687771320343, -0.0002634271513670683, -0.32230299711227417, 5.1132694352418184e-05, -0.00033479739795438945, 0.6001443862915039, -0.3293295204639435, 0.029140520840883255, -0.01817280240356922, -0.05474159121513367, -0.10308437049388885, -0.1516963243484497, 0.204966202378273, -0.4167993664741516, 0.6826334595680237, 0.4297782778739929, -0.46279484033584595, -0.5981926321983337, -0.315832257270813, -0.4726698398590088, 0.13700366020202637, -0.3759331703186035, -0.3334011435508728, -0.8415442705154419, 0.5678246021270752]} +{"t": 5.0647, "q": [-0.35472965240478516, 0.022656895220279694, -0.013699909672141075, 0.6823402047157288, -0.3576919436454773, -0.0002852893085218966, -0.3221836984157562, -0.0001704423048067838, -0.0002946217136923224, 0.6001529097557068, -0.3293459117412567, 0.029140694066882133, -0.017262153327465057, -0.05517728999257088, -0.10179338604211807, -0.15155251324176788, 0.2066919356584549, -0.41655969619750977, 0.6783550977706909, 0.42397791147232056, -0.4723702073097229, -0.6075403094291687, -0.31863656640052795, -0.47086021304130554, 0.13731525838375092, -0.37806636095046997, -0.3336767852306366, -0.8415203094482422, 0.5691547989845276]} +{"t": 5.0815, "q": [-0.354857474565506, 0.022477930411696434, -0.013673125766217709, 0.6823487281799316, -0.3576918840408325, -0.00027074181707575917, -0.32221779227256775, -0.00034940673504024744, -0.00026783792418427765, 0.60011887550354, -0.3293418884277344, 0.029147915542125702, -0.016177410259842873, -0.05571947991847992, -0.10045385360717773, -0.15152853727340698, 0.20610471069812775, -0.4161282479763031, 0.673717200756073, 0.41898050904273987, -0.48284444212913513, -0.6130889654159546, -0.3217405080795288, -0.46948203444480896, 0.1374470740556717, -0.38082271814346313, -0.33424004912376404, -0.8414963483810425, 0.5703412890434265]} +{"t": 5.0982, "q": [-0.3548319339752197, 0.022290444001555443, -0.013673125766217709, 0.6823572516441345, -0.35768383741378784, -0.0002852073812391609, -0.32217517495155334, -0.0004857605672441423, -0.0002812298189383, 0.600135862827301, -0.3293377161026001, 0.029140589758753777, -0.0153738958761096, -0.056663308292627335, -0.09931459277868271, -0.1501743197441101, 0.20552946627140045, -0.4130842685699463, 0.6678448915481567, 0.412137508392334, -0.4882493317127228, -0.6155457496643066, -0.32490432262420654, -0.46860718727111816, 0.1375669240951538, -0.38331544399261475, -0.3350909352302551, -0.8414723873138428, 0.5722947120666504]} +{"t": 5.1149, "q": [-0.3548319339752197, 0.02222226746380329, -0.013726692646741867, 0.6823316812515259, -0.357675701379776, -0.00028512548306025565, -0.32212403416633606, -0.0005454153870232403, -0.0002544460294302553, 0.60011887550354, -0.3293295204639435, 0.029140520840883255, -0.014356112107634544, -0.058046817779541016, -0.09841086715459824, -0.14946725964546204, 0.20087958872318268, -0.4099923372268677, 0.6633867621421814, 0.4031732976436615, -0.4926355481147766, -0.6158573627471924, -0.32794833183288574, -0.4683794677257538, 0.13755494356155396, -0.38529282808303833, -0.33569014072418213, -0.8414244651794434, 0.5752308368682861]} +{"t": 5.1316, "q": [-0.3545592129230499, 0.022230789065361023, -0.013981139287352562, 0.6822975873947144, -0.35766369104385376, -0.0003214072494301945, -0.32172349095344543, -0.0005198490689508617, -0.000522283953614533, 0.60011887550354, -0.329350084066391, 0.029148001223802567, -0.012280368246138096, -0.05963520333170891, -0.09746863692998886, -0.149227574467659, 0.195235013961792, -0.40795502066612244, 0.6567834615707397, 0.39691755175590515, -0.49706971645355225, -0.6154738664627075, -0.33122003078460693, -0.46766042709350586, 0.13763882219791412, -0.38658714294433594, -0.3368166387081146, -0.8413285613059998, 0.5779033303260803]} +{"t": 5.1484, "q": [-0.3543376326560974, 0.02232453227043152, -0.014262368902564049, 0.6822975873947144, -0.35763952136039734, -0.0003648039128165692, -0.32139113545417786, -0.0005198490689508617, -0.0007499461644329131, 0.6001784801483154, -0.32937896251678467, 0.029170095920562744, -0.009441286325454712, -0.061154868453741074, -0.09659259021282196, -0.1491556614637375, 0.1886676549911499, -0.4057738780975342, 0.6490536332130432, 0.3904939889907837, -0.502402663230896, -0.6137121915817261, -0.33525869250297546, -0.4662822484970093, 0.13793843984603882, -0.3874260187149048, -0.33878207206726074, -0.8410529494285583, 0.5815464854240417]} +{"t": 5.1651, "q": [-0.35409048199653625, 0.02245236374437809, -0.014396287500858307, 0.6822805404663086, -0.35762354731559753, -0.0004228299658279866, -0.32116103172302246, -0.0004346278728917241, -0.0009374326909892261, 0.6002040505409241, -0.3293788433074951, 0.029155567288398743, -0.006039745174348354, -0.06280344724655151, -0.09565605223178864, -0.14904780685901642, 0.18044647574424744, -0.4047432243824005, 0.6431933641433716, 0.3837948143482208, -0.5075319409370422, -0.6115190386772156, -0.33958500623703003, -0.4645325243473053, 0.13850168883800507, -0.3881690502166748, -0.3413107395172119, -0.8408372402191162, 0.5866877436637878]} +{"t": 5.1819, "q": [-0.3540308475494385, 0.022648373618721962, -0.014556990936398506, 0.6822124123573303, -0.3576156198978424, -0.00046642645611427724, -0.32116955518722534, -0.0002897519152611494, -0.001044567907229066, 0.6003745198249817, -0.3293950855731964, 0.02914121001958847, -0.0034149333368986845, -0.06429999321699142, -0.09476691484451294, -0.15175624191761017, 0.17081116139888763, -0.4027778208255768, 0.6352598071098328, 0.38046321272850037, -0.511726438999176, -0.6088466048240662, -0.34417495131492615, -0.46254315972328186, 0.1393405795097351, -0.3882888853549957, -0.34424686431884766, -0.8405136466026306, 0.5913496017456055]} +{"t": 5.1986, "q": [-0.3537410795688629, 0.02281029336154461, -0.014570382423698902, 0.681948184967041, -0.35759153962135315, -0.0005243705818429589, -0.321195125579834, -0.0001960086519829929, -0.0010177841177210212, 0.600510835647583, -0.3294515907764435, 0.029040072113275528, 0.0006294191116467118, -0.06584188342094421, -0.09378071129322052, -0.15663382411003113, 0.15868312120437622, -0.39784032106399536, 0.6261278390884399, 0.37644848227500916, -0.5158370137214661, -0.6069051623344421, -0.34744665026664734, -0.4600864052772522, 0.14008361101150513, -0.38873231410980225, -0.34846532344818115, -0.8402020335197449, 0.59548419713974]} +{"t": 5.2154, "q": [-0.35330647230148315, 0.023023346439003944, -0.014597166329622269, 0.6816925406455994, -0.3575592637062073, -0.0005676853470504284, -0.32102468609809875, 1.704423084447626e-05, -0.0010579597437754273, 0.6005193591117859, -0.3294432759284973, 0.029025457799434662, 0.0035354604478925467, -0.06739107519388199, -0.09282147139310837, -0.16244617104530334, 0.14778946340084076, -0.39352601766586304, 0.6202076077461243, 0.3730689287185669, -0.5201632976531982, -0.6056228280067444, -0.34874096512794495, -0.4575697183609009, 0.14037123322486877, -0.3895472288131714, -0.3529234528541565, -0.8400822281837463, 0.5996187329292297]} +{"t": 5.2321, "q": [-0.3531104624271393, 0.02312561124563217, -0.014972139149904251, 0.681573212146759, -0.3575350046157837, -0.0005965705495327711, -0.32070085406303406, 6.817692337790504e-05, -0.0013927571708336473, 0.6005193591117859, -0.32950377464294434, 0.02891709841787815, 0.005182663444429636, -0.06840864568948746, -0.09214857220649719, -0.16703613102436066, 0.13884922862052917, -0.3899906575679779, 0.6147188544273376, 0.37070804834365845, -0.5237346291542053, -0.6053231954574585, -0.3500592112541199, -0.45463356375694275, 0.14050306379795074, -0.3898108899593353, -0.35630300641059875, -0.8397586345672607, 0.6038011908531189]} +{"t": 5.2488, "q": [-0.35304227471351624, 0.023100044578313828, -0.015132841654121876, 0.6813175678253174, -0.35750675201416016, -0.000632652489002794, -0.3206752836704254, 9.374327055411413e-05, -0.0015936355339363217, 0.6005193591117859, -0.32959645986557007, 0.0287364199757576, 0.005892434157431126, -0.06885670870542526, -0.09181547164916992, -0.16888169944286346, 0.132677361369133, -0.3884686529636383, 0.6102607250213623, 0.36823928356170654, -0.5257719159126282, -0.6054071187973022, -0.35101795196533203, -0.45211687684059143, 0.14161759614944458, -0.3898228704929352, -0.3613363802433014, -0.8394230604171753, 0.6079118251800537]} +{"t": 5.2656, "q": [-0.3528803586959839, 0.02310856804251671, -0.015106058679521084, 0.681130051612854, -0.35750675201416016, -0.000632652489002794, -0.3206411898136139, 7.669904152862728e-05, -0.0016204193234443665, 0.6005023121833801, -0.3296893835067749, 0.0285848006606102, 0.006495069246739149, -0.0690697729587555, -0.09132897853851318, -0.16890567541122437, 0.12916597723960876, -0.388264924287796, 0.6091581583023071, 0.3657225966453552, -0.526526927947998, -0.6061021685600281, -0.35136550664901733, -0.45055893063545227, 0.14267219603061676, -0.38995471596717834, -0.3660341799259186, -0.8393871188163757, 0.612597644329071]} +{"t": 5.2824, "q": [-0.35267582535743713, 0.023065956309437752, -0.01503909844905138, 0.6807976961135864, -0.35748645663261414, -0.0006397214601747692, -0.320632666349411, 4.261057620169595e-05, -0.0015400679549202323, 0.6004427075386047, -0.3297138512134552, 0.02857052907347679, 0.006749515421688557, -0.0689799040555954, -0.09049005061388016, -0.16871392726898193, 0.12767992913722992, -0.38795334100723267, 0.6092180609703064, 0.3641526699066162, -0.5265748500823975, -0.6068092584609985, -0.35153329372406006, -0.44944441318511963, 0.14365491271018982, -0.39035019278526306, -0.3725895583629608, -0.8394590020179749, 0.6170198321342468]} +{"t": 5.2993, "q": [-0.35235199332237244, 0.023040389642119408, -0.014945355243980885, 0.6805505752563477, -0.35746604204177856, -0.0006176954484544694, -0.3205389380455017, 5.1132694352418184e-05, -0.0014597165863960981, 0.6003915667533875, -0.32972607016563416, 0.028563395142555237, 0.006776299327611923, -0.06901197135448456, -0.08936208486557007, -0.16344086825847626, 0.12777580320835114, -0.3879773020744324, 0.6093618869781494, 0.36339765787124634, -0.5270183086395264, -0.6073485612869263, -0.3514973223209381, -0.4493245482444763, 0.1446615755558014, -0.3904460668563843, -0.37652039527893066, -0.8394709825515747, 0.6228561401367188]} +{"t": 5.3162, "q": [-0.35216450691223145, 0.023040389642119408, -0.014905179850757122, 0.6804823875427246, -0.3574455976486206, -0.0005956330569460988, -0.3203088343143463, 5.1132694352418184e-05, -0.0014463247498497367, 0.6003319025039673, -0.3297218084335327, 0.02854153886437416, 0.006816474720835686, -0.06902899593114853, -0.08774242550134659, -0.15494404733181, 0.1279555708169937, -0.38806119561195374, 0.6095536351203918, 0.3629782199859619, -0.5278691649436951, -0.6075283288955688, -0.3515212833881378, -0.4498039186000824, 0.14494919776916504, -0.3906378149986267, -0.380834698677063, -0.8394830226898193, 0.6293635964393616]} +{"t": 5.333, "q": [-0.351866215467453, 0.02304891310632229, -0.014891788363456726, 0.6803886294364929, -0.35744166374206543, -0.0006174496957100928, -0.319959431886673, 8.52211524033919e-05, -0.0014865003759041429, 0.60028076171875, -0.3297218084335327, 0.02854153886437416, 0.0068030827678740025, -0.06934972107410431, -0.08572065830230713, -0.14559635519981384, 0.1281832754611969, -0.38813310861587524, 0.6095536351203918, 0.36284637451171875, -0.5288398861885071, -0.6074683666229248, -0.3514494001865387, -0.4505709111690521, 0.14493721723556519, -0.3906378149986267, -0.3833993375301361, -0.839506983757019, 0.6359788775444031]} +{"t": 5.3497, "q": [-0.3514571487903595, 0.02304891310632229, -0.014958747662603855, 0.6803460121154785, -0.35737675428390503, -0.0006458889110945165, -0.31932878494262695, 7.669904152862728e-05, -0.001566851744428277, 0.6002210974693298, -0.3297218084335327, 0.02854153886437416, 0.007271799258887768, -0.06952576339244843, -0.08348062634468079, -0.1378665268421173, 0.13013669848442078, -0.3880252540111542, 0.609026312828064, 0.36291828751564026, -0.530110239982605, -0.607228696346283, -0.35098201036453247, -0.45181727409362793, 0.14494919776916504, -0.3905179500579834, -0.38548457622528076, -0.8394950032234192, 0.6411920189857483]} +{"t": 5.3665, "q": [-0.3508521020412445, 0.023040389642119408, -0.014985531568527222, 0.6803205013275146, -0.3573726713657379, -0.0006385742453858256, -0.3185191750526428, 5.965480886516161e-05, -0.0016338112764060497, 0.6000762581825256, -0.3297218084335327, 0.02854153886437416, 0.00799496192485094, -0.0694810152053833, -0.08173246681690216, -0.132905051112175, 0.13204219937324524, -0.38795334100723267, 0.6081514954566956, 0.36294224858283997, -0.5312007665634155, -0.6068332195281982, -0.3508981168270111, -0.45283594727516174, 0.14494919776916504, -0.3903861343860626, -0.3892116844654083, -0.8395189642906189, 0.6451108455657959]} +{"t": 5.3833, "q": [-0.3499317169189453, 0.022972213104367256, -0.014958747662603855, 0.6801074147224426, -0.35736051201820374, -0.0006457250565290451, -0.3176499307155609, 3.408846168895252e-05, -0.0016338112764060497, 0.5998290777206421, -0.3297218084335327, 0.02854153886437416, 0.00865116436034441, -0.06934494525194168, -0.08063332736492157, -0.12999288737773895, 0.13435514271259308, -0.3882769048213959, 0.606773316860199, 0.36358940601348877, -0.532279372215271, -0.6067613363265991, -0.35111382603645325, -0.4530516564846039, 0.14497317373752594, -0.3901464641094208, -0.3929387629032135, -0.8394590020179749, 0.6493293046951294]} +{"t": 5.4, "q": [-0.34872156381607056, 0.022852903231978416, -0.014851612038910389, 0.6796301603317261, -0.35735639929771423, -0.0006384103908203542, -0.31675511598587036, -5.1132694352418184e-05, -0.0015400679549202323, 0.5995819568634033, -0.3297259509563446, 0.028548847883939743, 0.009012745693325996, -0.069094717502594, -0.08028871566057205, -0.12844692170619965, 0.13792644441127777, -0.38972699642181396, 0.6052752733230591, 0.36429646611213684, -0.5325190424919128, -0.6068931221961975, -0.35138946771621704, -0.4523445963859558, 0.14603976905345917, -0.3900625705718994, -0.3956112563610077, -0.8394709825515747, 0.654362678527832]} +{"t": 5.4167, "q": [-0.34768185019493103, 0.02281029336154461, -0.014744477346539497, 0.6793148517608643, -0.35736051201820374, -0.0006457250565290451, -0.315775066614151, -0.00011930961773032323, -0.001419540960341692, 0.5993348360061646, -0.32973024249076843, 0.028570720925927162, 0.00898596178740263, -0.06870795041322708, -0.08005958050489426, -0.12686501443386078, 0.1408146470785141, -0.39217180013656616, 0.6051554083824158, 0.3657225966453552, -0.5324831008911133, -0.6077200770378113, -0.351653128862381, -0.45073869824409485, 0.1489279717206955, -0.3898947834968567, -0.4001293182373047, -0.8394950032234192, 0.658557116985321]} +{"t": 5.4335, "q": [-0.3468296527862549, 0.022784726694226265, -0.014543598517775536, 0.6791188716888428, -0.35736051201820374, -0.0006457250565290451, -0.31523817777633667, -0.00013635384675581008, -0.0012454462703317404, 0.5992666482925415, -0.32973846793174744, 0.028570787981152534, 0.008865434676408768, -0.06830588728189468, -0.07976026087999344, -0.1258343607187271, 0.14434999227523804, -0.3964262008666992, 0.6055269241333008, 0.36759212613105774, -0.5324591398239136, -0.608487069606781, -0.3517969250679016, -0.4488331973552704, 0.1521756947040558, -0.38988280296325684, -0.40346091985702515, -0.839506983757019, 0.6630032658576965]} +{"t": 5.4502, "q": [-0.34657397866249084, 0.022725071758031845, -0.014315936714410782, 0.6788972616195679, -0.357340008020401, -0.0006091516115702689, -0.315212607383728, -0.0001704423048067838, -0.0010713516967371106, 0.5992751717567444, -0.32973846793174744, 0.028570787981152534, 0.008302975445985794, -0.0679721012711525, -0.07950837910175323, -0.12552277743816376, 0.14786137640476227, -0.4023224115371704, 0.6056348085403442, 0.3707200288772583, -0.5329264998435974, -0.6099371314048767, -0.35203662514686584, -0.4460888206958771, 0.15553127229213715, -0.3897989094257355, -0.40608546137809753, -0.8395189642906189, 0.6665745973587036]} +{"t": 5.4674, "q": [-0.3464632034301758, 0.022733593359589577, -0.014034707099199295, 0.6786842346191406, -0.35733187198638916, -0.0006090697133913636, -0.31528931856155396, -0.0002300971100339666, -0.0008302975329570472, 0.5992410778999329, -0.32973039150238037, 0.028585249558091164, 0.007579812780022621, -0.06772174686193466, -0.0791240930557251, -0.12558269500732422, 0.1507735401391983, -0.4096687436103821, 0.6052632927894592, 0.37600505352020264, -0.5340530276298523, -0.6107520461082458, -0.35224035382270813, -0.4424575865268707, 0.15728096663951874, -0.3899906575679779, -0.40989646315574646, -0.8395309448242188, 0.6703615784645081]} +{"t": 5.4843, "q": [-0.34607118368148804, 0.0226995050907135, -0.013686517253518105, 0.6783774495124817, -0.3572874367237091, -0.000659571320284158, -0.3152807950973511, -0.00022157499915920198, -0.000522283953614533, 0.5992496013641357, -0.3297096788883209, 0.02856322191655636, 0.0066289883106946945, -0.06723622977733612, -0.07860644906759262, -0.12560667097568512, 0.15452459454536438, -0.4197235107421875, 0.6052752733230591, 0.382320761680603, -0.535874605178833, -0.6117347478866577, -0.35318711400032043, -0.4374721646308899, 0.15889884531497955, -0.390098512172699, -0.4126528203487396, -0.8395788669586182, 0.6754429340362549]} +{"t": 5.501, "q": [-0.3456365466117859, 0.022682461887598038, -0.013257976621389389, 0.6779513359069824, -0.35723885893821716, -0.0007026858511380851, -0.3152211308479309, -0.0002897519152611494, -0.00021427033061627299, 0.5992496013641357, -0.32970136404037476, 0.028548607602715492, 0.005959393456578255, -0.06683416664600372, -0.07815665751695633, -0.12566658854484558, 0.15783224999904633, -0.4262908697128296, 0.6055509448051453, 0.3860478401184082, -0.5379718542098999, -0.6129811406135559, -0.3542416989803314, -0.43248671293258667, 0.15964186191558838, -0.390098512172699, -0.4153972268104553, -0.8396148085594177, 0.6789543032646179]} +{"t": 5.5177, "q": [-0.3449803590774536, 0.02257167361676693, -0.01284282747656107, 0.6772866249084473, -0.35718217492103577, -0.0007457908359356225, -0.3149910271167755, -0.0003834952076431364, 0.00020087843586225063, 0.5992410778999329, -0.32970163226127625, 0.028577664867043495, 0.005704947747290134, -0.06630297750234604, -0.07763795554637909, -0.12626579403877258, 0.16242220997810364, -0.4339008629322052, 0.6058145761489868, 0.3873900771141052, -0.541770875453949, -0.6141316294670105, -0.3554880619049072, -0.42762112617492676, 0.16027702391147614, -0.390242338180542, -0.41886064410209656, -0.8396148085594177, 0.6811234354972839]} +{"t": 5.5345, "q": [-0.34431561827659607, 0.022486452013254166, -0.012427679263055325, 0.6766815185546875, -0.3571457266807556, -0.0007672433857806027, -0.31478649377822876, -0.0004516721237450838, 0.0005892434273846447, 0.5991899371147156, -0.32969343662261963, 0.02857757918536663, 0.005450501572340727, -0.06581727415323257, -0.07716108113527298, -0.1266373097896576, 0.1672997772693634, -0.43950948119163513, 0.6059823632240295, 0.38912779092788696, -0.5469120740890503, -0.6154858469963074, -0.3571658730506897, -0.4233187735080719, 0.1613556146621704, -0.39020636677742004, -0.4220244884490967, -0.8396387696266174, 0.6828611493110657]} +{"t": 5.5512, "q": [-0.3435656726360321, 0.022307489067316055, -0.011878611519932747, 0.6758633852005005, -0.3571174442768097, -0.000803361355792731, -0.31460753083229065, -0.0005368932615965605, 0.0011650949018076062, 0.5991387963294983, -0.329685240983963, 0.028577493503689766, 0.004995177034288645, -0.06541504710912704, -0.07673204690217972, -0.12652945518493652, 0.17282451689243317, -0.44474658370018005, 0.6044244170188904, 0.39020636677742004, -0.5514541268348694, -0.6164685487747192, -0.3584122359752655, -0.41816556453704834, 0.1621825248003006, -0.39023032784461975, -0.42520031332969666, -0.8396148085594177, 0.6843352317810059]} +{"t": 5.5681, "q": [-0.3426538109779358, 0.02210295759141445, -0.011664341203868389, 0.6751304864883423, -0.35708895325660706, -0.0007958009373396635, -0.3138149678707123, -0.0007158577209338546, 0.0013927571708336473, 0.5987723469734192, -0.3296850919723511, 0.028562963008880615, 0.004995177034288645, -0.0648912638425827, -0.07619930803775787, -0.12801548838615417, 0.17867282032966614, -0.4504750370979309, 0.6033098697662354, 0.39235153794288635, -0.5559242367744446, -0.6172834634780884, -0.35945484042167664, -0.412964403629303, 0.163105309009552, -0.39018240571022034, -0.4286397695541382, -0.8396267890930176, 0.6854617595672607]} +{"t": 5.5849, "q": [-0.3417845666408539, 0.021625719964504242, -0.011490246281027794, 0.6742016077041626, -0.35706061124801636, -0.0008172990055754781, -0.31319287419319153, -0.0010993528412654996, 0.0014731085393577814, 0.5984570384025574, -0.329685240983963, 0.028577493503689766, 0.005062136333435774, -0.06430674344301224, -0.07578510046005249, -0.13079583644866943, 0.18683406710624695, -0.45942726731300354, 0.6023032069206238, 0.3947124481201172, -0.5627073049545288, -0.6179066300392151, -0.36097684502601624, -0.40730786323547363, 0.1648310273885727, -0.39018240571022034, -0.43227100372314453, -0.8396267890930176, 0.68626469373703]} +{"t": 5.6016, "q": [-0.34075337648391724, 0.021216657012701035, -0.011342935264110565, 0.6734346151351929, -0.3570323884487152, -0.0008679644670337439, -0.31236621737480164, -0.0014317154418677092, 0.0015802436973899603, 0.5982099175453186, -0.32967299222946167, 0.028584646061062813, 0.00508892023935914, -0.06358562409877777, -0.07522595673799515, -0.1335522085428238, 0.19365309178829193, -0.46514374017715454, 0.6009849309921265, 0.3962584137916565, -0.5701135396957397, -0.6189373135566711, -0.3636133670806885, -0.40278980135917664, 0.1681986004114151, -0.3900386095046997, -0.43481165170669556, -0.8396387696266174, 0.6868878602981567]} +{"t": 5.6183, "q": [-0.33956030011177063, 0.020807595923542976, -0.011075098067522049, 0.6723693609237671, -0.357015997171402, -0.0008387056877836585, -0.311292439699173, -0.001823732745833695, 0.0017007706919685006, 0.5976133346557617, -0.3296728730201721, 0.02857009880244732, 0.005276407115161419, -0.06289462745189667, -0.07442809641361237, -0.1366681009531021, 0.20018449425697327, -0.47118377685546875, 0.5985041856765747, 0.39721715450286865, -0.5757461786270142, -0.6195724606513977, -0.36656150221824646, -0.39709728956222534, 0.1720934808254242, -0.39002659916877747, -0.4401686191558838, -0.8396148085594177, 0.6873672008514404]} +{"t": 5.6351, "q": [-0.33767691254615784, 0.02029627002775669, -0.010767084546387196, 0.6707245707511902, -0.35690635442733765, -0.0008594206301495433, -0.3086335361003876, -0.002386192325502634, 0.001941824913956225, 0.5966674089431763, -0.3296811878681183, 0.028584714978933334, 0.00605313666164875, -0.06243126094341278, -0.07372795045375824, -0.1402633786201477, 0.206667959690094, -0.4780627191066742, 0.5962271690368652, 0.3973250091075897, -0.5821936726570129, -0.619632363319397, -0.3688744604587555, -0.3909134566783905, 0.1769590675830841, -0.39002659916877747, -0.4450821280479431, -0.839590847492218, 0.687774658203125]} +{"t": 5.6518, "q": [-0.33468562364578247, 0.019657110795378685, -0.010619773529469967, 0.6688070893287659, -0.356865793466568, -0.0008735585142858326, -0.30317938327789307, -0.0029912625905126333, 0.001982000656425953, 0.5955254435539246, -0.3296811878681183, 0.028584714978933334, 0.00676290737465024, -0.062028367072343826, -0.0725090280175209, -0.14287593960762024, 0.21351096034049988, -0.4824010133743286, 0.5930274128913879, 0.39724111557006836, -0.5914215445518494, -0.620063841342926, -0.3709237575531006, -0.38411837816238403, 0.18242387473583221, -0.39002659916877747, -0.4508945047855377, -0.839590847492218, 0.6883739233016968]} +{"t": 5.6686, "q": [-0.3317369818687439, 0.019248049706220627, -0.0105929896235466, 0.6672901511192322, -0.35687392950057983, -0.0008736404124647379, -0.3018243610858917, -0.0033747577108442783, 0.0019686087034642696, 0.5942130088806152, -0.32967716455459595, 0.028591953217983246, 0.007847650907933712, -0.061405085027217865, -0.07154034823179245, -0.14454174041748047, 0.22064156830310822, -0.48603224754333496, 0.5884973406791687, 0.3962104618549347, -0.5990914106369019, -0.6202675700187683, -0.3721461594104767, -0.37720349431037903, 0.18738535046577454, -0.3899906575679779, -0.4565630257129669, -0.839590847492218, 0.6895123720169067]} +{"t": 5.6853, "q": [-0.329299658536911, 0.018821943551301956, -0.010619773529469967, 0.6658584475517273, -0.35687804222106934, -0.0008809551363810897, -0.30130451917648315, -0.003783819265663624, 0.001941824913956225, 0.5930625200271606, -0.3296935558319092, 0.028592107817530632, 0.009173448197543621, -0.06104831025004387, -0.0715041384100914, -0.1453806310892105, 0.22642995417118073, -0.4874224066734314, 0.5834400057792664, 0.3942570388317108, -0.6086188554763794, -0.6205312013626099, -0.37255361676216125, -0.3697972297668457, 0.19077688455581665, -0.3899666965007782, -0.46329817175865173, -0.8395788669586182, 0.6913699507713318]} +{"t": 5.7021, "q": [-0.3271521031856537, 0.018148696050047874, -0.010767084546387196, 0.6648869514465332, -0.356886088848114, -0.0008664895431138575, -0.299446702003479, -0.004431500099599361, 0.0017007706919685006, 0.5928153991699219, -0.3296975791454315, 0.028584886342287064, 0.010418894700706005, -0.06095719709992409, -0.07146131992340088, -0.1455603986978531, 0.23199063539505005, -0.4869430363178253, 0.5749911665916443, 0.3893195390701294, -0.6198360919952393, -0.6206270456314087, -0.37322473526000977, -0.36229512095451355, 0.1940605640411377, -0.38997867703437805, -0.47026100754737854, -0.8396148085594177, 0.6935151219367981]} +{"t": 5.719, "q": [-0.3265044093132019, 0.01787598803639412, -0.01092778705060482, 0.6646568179130554, -0.3568779528141022, -0.0008664076449349523, -0.2982962131500244, -0.004729773849248886, 0.0014998923288658261, 0.5926193594932556, -0.32971423864364624, 0.028614135459065437, 0.011731300503015518, -0.060941994190216064, -0.07144085317850113, -0.14611166715621948, 0.2353222519159317, -0.48554089665412903, 0.5667459964752197, 0.3833034634590149, -0.6298429369926453, -0.6208667755126953, -0.3738958537578583, -0.3548169434070587, 0.19696074724197388, -0.3899187445640564, -0.4745872914791107, -0.8396028280258179, 0.6957801580429077]} +{"t": 5.7358, "q": [-0.3261379599571228, 0.017552148550748825, -0.011155448853969574, 0.6648187637329102, -0.3568696975708008, -0.0008372308220714331, -0.29764851927757263, -0.0049428269267082214, 0.0012454462703317404, 0.5925512313842773, -0.32971423864364624, 0.028614135459065437, 0.013579382561147213, -0.06100273132324219, -0.07145276665687561, -0.14882010221481323, 0.2391452193260193, -0.4807112514972687, 0.5569189190864563, 0.37649643421173096, -0.6396220922470093, -0.6212742328643799, -0.37420743703842163, -0.3459845781326294, 0.19819511473178864, -0.3897869288921356, -0.4825328588485718, -0.8396267890930176, 0.698069155216217]} +{"t": 5.7525, "q": [-0.3258056044578552, 0.01721978560090065, -0.011209016665816307, 0.66475909948349, -0.35687774419784546, -0.0008227652288042009, -0.29713720083236694, -0.00520701240748167, 0.0011650949018076062, 0.5923978090286255, -0.32970187067985535, 0.028606723994016647, 0.01597653143107891, -0.0610937662422657, -0.07140567153692245, -0.15306252241134644, 0.241841658949852, -0.4774395525455475, 0.545282244682312, 0.36838310956954956, -0.6480589509010315, -0.6225565075874329, -0.3750942647457123, -0.3365410268306732, 0.19928568601608276, -0.3896431028842926, -0.49050235748291016, -0.8396148085594177, 0.7001783847808838]} +{"t": 5.7693, "q": [-0.3256266415119171, 0.016657326370477676, -0.010941178537905216, 0.6647420525550842, -0.35687774419784546, -0.0008227652288042009, -0.29694971442222595, -0.005786516238003969, 0.0011784868547692895, 0.5923466682434082, -0.3296937942504883, 0.028621183708310127, 0.018105842173099518, -0.06116963177919388, -0.07136809825897217, -0.15732890367507935, 0.24257270991802216, -0.47574976086616516, 0.5336575508117676, 0.35717785358428955, -0.6566756367683411, -0.6245579123497009, -0.3761368989944458, -0.3273611068725586, 0.1994294971227646, -0.3877376317977905, -0.49534398317337036, -0.8389796614646912, 0.7011011242866516]} +{"t": 5.786, "q": [-0.3253198266029358, 0.015796592459082603, -0.010767084546387196, 0.6647079586982727, -0.3568776547908783, -0.0008082177955657244, -0.29640430212020874, -0.00666429428383708, 0.001084743533283472, 0.5924404263496399, -0.32968953251838684, 0.0285993292927742, 0.020047668367624283, -0.06125302240252495, -0.07125583291053772, -0.1614874303340912, 0.24210532009601593, -0.4752943813800812, 0.520331084728241, 0.34491798281669617, -0.6645852327346802, -0.6279134750366211, -0.37755101919174194, -0.31665918231010437, 0.1991778165102005, -0.38516101241111755, -0.5012162327766418, -0.8381527662277222, 0.7013767957687378]} +{"t": 5.8027, "q": [-0.32511529326438904, 0.014663150534033775, -0.010700124315917492, 0.6644267439842224, -0.35687363147735596, -0.00081545056309551, -0.2959611415863037, -0.007669903803616762, 0.001084743533283472, 0.5928153991699219, -0.32968130707740784, 0.028599262237548828, 0.021909141913056374, -0.061253007501363754, -0.07124584168195724, -0.1658257246017456, 0.24119451642036438, -0.47498276829719543, 0.5081910490989685, 0.33308956027030945, -0.6729022860527039, -0.6311731934547424, -0.3793366849422455, -0.3061490058898926, 0.19851869344711304, -0.3833513855934143, -0.5064533352851868, -0.8373258113861084, 0.7013887763023376]} +{"t": 5.8195, "q": [-0.324442058801651, 0.01354675367474556, -0.010365326888859272, 0.6640688180923462, -0.35684508085250854, -0.000793342653196305, -0.2955435514450073, -0.008803345263004303, 0.0011517030652612448, 0.5932670831680298, -0.32968536019325256, 0.028592022135853767, 0.02452056109905243, -0.0612226277589798, -0.07122490555047989, -0.16898955404758453, 0.23934894800186157, -0.4748869240283966, 0.49736931920051575, 0.3195473849773407, -0.6797093152999878, -0.6336778998374939, -0.3814578950405121, -0.29611822962760925, 0.19789551198482513, -0.38246455788612366, -0.510240375995636, -0.8364270329475403, 0.7013408541679382]} +{"t": 5.8362, "q": [-0.3237943649291992, 0.012242870405316353, -0.010164448991417885, 0.66371089220047, -0.35684099793434143, -0.0007860279292799532, -0.2936857342720032, -0.010064618661999702, 0.0012186624808236957, 0.5936676263809204, -0.3296772837638855, 0.028606483712792397, 0.027493562549352646, -0.061222612857818604, -0.07120492309331894, -0.17280054092407227, 0.23426763713359833, -0.4749947786331177, 0.4861760437488556, 0.3054179847240448, -0.6841554641723633, -0.636889636516571, -0.38465768098831177, -0.28708210587501526, 0.19750003516674042, -0.3821290135383606, -0.5116544961929321, -0.8351806402206421, 0.7013408541679382]} +{"t": 5.853, "q": [-0.32272058725357056, 0.011041251942515373, -0.01017784047871828, 0.6631654500961304, -0.3568245768547058, -0.000756732770241797, -0.29186201095581055, -0.01118953712284565, 0.0011383111122995615, 0.5938636064529419, -0.3296814560890198, 0.02861379086971283, 0.029609480872750282, -0.061237722635269165, -0.07111542671918869, -0.17739050090312958, 0.2284073531627655, -0.4756419062614441, 0.4746592044830322, 0.292738676071167, -0.6873791813850403, -0.6397059559822083, -0.3891397714614868, -0.2776385545730591, 0.19524699449539185, -0.3816855847835541, -0.5119181871414185, -0.8330954313278198, 0.7013408541679382]} +{"t": 5.8697, "q": [-0.3211354613304138, 0.010154951363801956, -0.010164448991417885, 0.6625092625617981, -0.35681241750717163, -0.0007638836395926774, -0.2907882332801819, -0.012016182765364647, 0.0011650949018076062, 0.5942811965942383, -0.3296814560890198, 0.02861379086971283, 0.030814751982688904, -0.061169322580099106, -0.07099826633930206, -0.18116553127765656, 0.22308635711669922, -0.47590556740760803, 0.4649519920349121, 0.27871713042259216, -0.6906388998031616, -0.6415395736694336, -0.39482030272483826, -0.2699446678161621, 0.19374896585941315, -0.38142192363739014, -0.5119421482086182, -0.8309742212295532, 0.7013887763023376]} +{"t": 5.8865, "q": [-0.3183998763561249, 0.009353874251246452, -0.009615381248295307, 0.6616485118865967, -0.35681650042533875, -0.0007711983053013682, -0.2892712950706482, -0.013038836419582367, 0.0011383111122995615, 0.5948010683059692, -0.32967740297317505, 0.028621012344956398, 0.03163165599107742, -0.06122981011867523, -0.07070015370845795, -0.18363428115844727, 0.21804098784923553, -0.4762171506881714, 0.4548492729663849, 0.2628619968891144, -0.6949652433395386, -0.643013596534729, -0.4029456079006195, -0.2623107135295868, 0.19277824461460114, -0.38114631175994873, -0.5122897028923035, -0.8299435377120972, 0.7015326023101807]} +{"t": 5.9032, "q": [-0.31548529863357544, 0.008944811299443245, -0.008825259283185005, 0.6604213118553162, -0.3568287491798401, -0.0007786313071846962, -0.28737086057662964, -0.013882526196539402, 0.0010981354862451553, 0.5949203372001648, -0.32968953251838684, 0.0285993292927742, 0.03188610449433327, -0.06120691075921059, -0.0705244317650795, -0.18460500240325928, 0.21234849095344543, -0.4764088988304138, 0.44562143087387085, 0.24692296981811523, -0.6993753910064697, -0.64481121301651, -0.41180193424224854, -0.2545449435710907, 0.19195133447647095, -0.38084667921066284, -0.5135719776153564, -0.8293682932853699, 0.7020359039306641]} +{"t": 5.9199, "q": [-0.3117440938949585, 0.008578360080718994, -0.008088705129921436, 0.6589469909667969, -0.3568328022956848, -0.0007713985396549106, -0.28705552220344543, -0.014555772766470909, 0.0011249192757532, 0.5946646928787231, -0.32968953251838684, 0.0285993292927742, 0.03189949691295624, -0.06129799410700798, -0.07053729146718979, -0.18473683297634125, 0.20730312168598175, -0.4764088988304138, 0.4358183443546295, 0.231379434466362, -0.7015206217765808, -0.6478073000907898, -0.4200710654258728, -0.24954752624034882, 0.19144800305366516, -0.3810384273529053, -0.5157051682472229, -0.828984797000885, 0.7027909159660339]} +{"t": 5.9366, "q": [-0.30942609906196594, 0.008322697132825851, -0.0072584073059260845, 0.6576942801475525, -0.35685718059539795, -0.0007716442923992872, -0.2852829396724701, -0.015177887864410877, 0.0010713516967371106, 0.5947328805923462, -0.32968536019325256, 0.028592022135853767, 0.03193967044353485, -0.061571553349494934, -0.070935919880867, -0.1847488135099411, 0.20280905067920685, -0.4764088988304138, 0.42551189661026, 0.2151048630475998, -0.7030905485153198, -0.6520137786865234, -0.42892739176750183, -0.245257169008255, 0.1910165697336197, -0.3811822533607483, -0.5197678208351135, -0.8289608359336853, 0.7041930556297302]} +{"t": 5.9534, "q": [-0.3089488446712494, 0.007853981107473373, -0.006588812451809645, 0.6571658849716187, -0.35685718059539795, -0.0007716442923992872, -0.2849676311016083, -0.015970444306731224, 0.0011650949018076062, 0.5951504707336426, -0.3296935558319092, 0.028592107817530632, 0.0317789688706398, -0.0619516558945179, -0.07162747532129288, -0.18480873107910156, 0.1994534581899643, -0.4764328598976135, 0.41614022850990295, 0.1979554295539856, -0.7035818696022034, -0.655788779258728, -0.43755605816841125, -0.24190159142017365, 0.19059711694717407, -0.3812781274318695, -0.5245255827903748, -0.8289728164672852, 0.7064700722694397]} +{"t": 5.9701, "q": [-0.30896589159965515, 0.007666494231671095, -0.00613348837941885, 0.6572170257568359, -0.3568531274795532, -0.0007788770599290729, -0.2850613594055176, -0.016234630718827248, 0.0012454462703317404, 0.5953379273414612, -0.3296854794025421, 0.02860656939446926, 0.03160487487912178, -0.06193649768829346, -0.0716569647192955, -0.18485666811466217, 0.19511516392230988, -0.4764688313007355, 0.40705618262290955, 0.18043449521064758, -0.7036897540092468, -0.6600911021232605, -0.44670000672340393, -0.23940886557102203, 0.18937472999095917, -0.3813740015029907, -0.5298345685005188, -0.8290207386016846, 0.7098975777626038]} +{"t": 5.9869, "q": [-0.30929824709892273, 0.007572751026600599, -0.005637987982481718, 0.6572425961494446, -0.3568491041660309, -0.0007861098856665194, -0.28571757674217224, -0.016515860334038734, 0.0012856220128014684, 0.5951334238052368, -0.3296935558319092, 0.028592107817530632, 0.031511131674051285, -0.06200473755598068, -0.07158417999744415, -0.18494056165218353, 0.19117236137390137, -0.4764328598976135, 0.3992305099964142, 0.1613076776266098, -0.7030066251754761, -0.6625598669052124, -0.4550650119781494, -0.23810258507728577, 0.1877928078174591, -0.38142192363739014, -0.5326748490333557, -0.8290807008743286, 0.7139242887496948]} +{"t": 6.0036, "q": [-0.30969879031181335, 0.0075812735594809055, -0.00512909609824419, 0.6573193073272705, -0.35683688521385193, -0.0007787132635712624, -0.28616923093795776, -0.016584036871790886, 0.0013927571708336473, 0.5948351621627808, -0.32968536019325256, 0.028592022135853767, 0.03140399605035782, -0.06216387823224068, -0.07130446285009384, -0.184772789478302, 0.18798455595970154, -0.47652873396873474, 0.39087748527526855, 0.14431403577327728, -0.7022995948791504, -0.6640219688415527, -0.4615125060081482, -0.23781496286392212, 0.18635469675064087, -0.3814818561077118, -0.5349878072738647, -0.829128623008728, 0.7176873087882996]} +{"t": 6.0203, "q": [-0.30992037057876587, 0.007598317693918943, -0.004553244449198246, 0.6573363542556763, -0.3568287491798401, -0.0007786313071846962, -0.2863311469554901, -0.01666073501110077, 0.0015534599078819156, 0.5944260954856873, -0.32968536019325256, 0.028592022135853767, 0.031216509640216827, -0.062224410474300385, -0.07108645886182785, -0.18464095890522003, 0.18452110886573792, -0.4764328598976135, 0.3834232985973358, 0.12697286903858185, -0.7015085816383362, -0.6653042435646057, -0.4667496085166931, -0.2379228174686432, 0.185371994972229, -0.38149383664131165, -0.5373726487159729, -0.8293802738189697, 0.7215701937675476]} +{"t": 6.037, "q": [-0.30978402495384216, 0.007709105033427477, -0.004111311864107847, 0.6573363542556763, -0.35683688521385193, -0.0007787132635712624, -0.2864163815975189, -0.01666925847530365, 0.0017677302239462733, 0.5943664312362671, -0.32968953251838684, 0.0285993292927742, 0.030787969008088112, -0.062087684869766235, -0.07094215601682663, -0.18430539965629578, 0.1826515793800354, -0.4764328598976135, 0.3777427673339844, 0.11086606979370117, -0.7004060745239258, -0.6665985584259033, -0.47060853242874146, -0.23798274993896484, 0.1853000968694687, -0.38069090247154236, -0.5385470986366272, -0.8297757506370544, 0.7231401205062866]} +{"t": 6.0542, "q": [-0.3096902668476105, 0.007785804104059935, -0.0038970415480434895, 0.6573874354362488, -0.35682061314582825, -0.00077851302921772, -0.2864845395088196, -0.01667778007686138, 0.0018480815924704075, 0.5944857001304626, -0.32968953251838684, 0.0285993292927742, 0.030453171581029892, -0.06204967573285103, -0.07087595015764236, -0.18225610256195068, 0.1817767322063446, -0.47642087936401367, 0.37292513251304626, 0.09726396948099136, -0.6995431780815125, -0.6681325435638428, -0.4726698398590088, -0.23818647861480713, 0.18485666811466217, -0.3793846070766449, -0.5401050448417664, -0.8298956155776978, 0.7240269780158997]} +{"t": 6.071, "q": [-0.30970731377601624, 0.00789659097790718, -0.003977392800152302, 0.6574215292930603, -0.35681256651878357, -0.0007929785642772913, -0.28649306297302246, -0.016635170206427574, 0.0017677302239462733, 0.5945538878440857, -0.329697847366333, 0.028613945469260216, 0.030520129948854446, -0.06198130175471306, -0.07078880071640015, -0.18021878600120544, 0.181956484913826, -0.4764568507671356, 0.36823928356170654, 0.07690277695655823, -0.6991836428642273, -0.6712843775749207, -0.47392818331718445, -0.23819845914840698, 0.18388594686985016, -0.3792887330055237, -0.5424419641494751, -0.8303390145301819, 0.7246381640434265]} +{"t": 6.0877, "q": [-0.3096732199192047, 0.007998857647180557, -0.004057744517922401, 0.6574556231498718, -0.35678839683532715, -0.000836375227663666, -0.2865101099014282, -0.01654142513871193, 0.0017275545978918672, 0.5947754979133606, -0.329697847366333, 0.028613945469260216, 0.030654048547148705, -0.06187496706843376, -0.07069544494152069, -0.17832526564598083, 0.18220816552639008, -0.4764328598976135, 0.36326584219932556, 0.06334861367940903, -0.6989319920539856, -0.6741605997085571, -0.47450342774391174, -0.2382463961839676, 0.18373015522956848, -0.3793007433414459, -0.5444433689117432, -0.8307824730873108, 0.7247340083122253]} +{"t": 6.1047, "q": [-0.3096306324005127, 0.008152255788445473, -0.004097919911146164, 0.6574556231498718, -0.35676810145378113, -0.0008434801711700857, -0.28649306297302246, -0.016447681933641434, 0.001673986902460456, 0.5950226187705994, -0.32971853017807007, 0.028635971248149872, 0.0307477917522192, -0.06166234612464905, -0.07055875658988953, -0.17661152780056, 0.1825796663761139, -0.4764568507671356, 0.3585200905799866, 0.04574378952383995, -0.6983088254928589, -0.6768450736999512, -0.47485095262527466, -0.23822243511676788, 0.18363428115844727, -0.3789292275905609, -0.5471757650375366, -0.8311419486999512, 0.7247819900512695]} +{"t": 6.1214, "q": [-0.3096306324005127, 0.008331218734383583, -0.004097919911146164, 0.6574897170066833, -0.35671114921569824, -0.0008283592760562897, -0.2864845395088196, -0.01624315232038498, 0.0016472031129524112, 0.5952271223068237, -0.329710453748703, 0.0286504328250885, 0.0307477917522192, -0.06132059544324875, -0.0703129917383194, -0.17482587695121765, 0.184772789478302, -0.4764328598976135, 0.35383424162864685, 0.031015174463391304, -0.6979133486747742, -0.679026186466217, -0.4747191369533539, -0.2382463961839676, 0.18386198580265045, -0.37900111079216003, -0.5484580397605896, -0.8319089412689209, 0.7248778343200684]} +{"t": 6.1381, "q": [-0.3096306324005127, 0.008586883544921875, -0.004084527958184481, 0.6574897170066833, -0.35668280720710754, -0.0008498937822878361, -0.2864760458469391, -0.016038620844483376, 0.0016472031129524112, 0.5952953100204468, -0.32972270250320435, 0.028643280267715454, 0.030801359564065933, -0.06078885495662689, -0.06995712220668793, -0.17307618260383606, 0.18670225143432617, -0.4756658971309662, 0.34996333718299866, 0.017844511196017265, -0.6976017355918884, -0.6804163455963135, -0.47422778606414795, -0.23825837671756744, 0.18388594686985016, -0.37919285893440247, -0.5497283935546875, -0.8322205543518066, 0.7254530787467957]} +{"t": 6.155, "q": [-0.30965617299079895, 0.00873175822198391, -0.004111311864107847, 0.6575067639350891, -0.35661402344703674, -0.0009146607480943203, -0.28645047545433044, -0.01587670110166073, 0.0016472031129524112, 0.5953805446624756, -0.3297269940376282, 0.02866511605679989, 0.030707616358995438, -0.060416605323553085, -0.0697011649608612, -0.17227323353290558, 0.1889432966709137, -0.474934846162796, 0.34632015228271484, 0.003583283396437764, -0.6966310143470764, -0.6809077262878418, -0.47383230924606323, -0.23821043968200684, 0.1838260293006897, -0.3792887330055237, -0.5509268045425415, -0.8321726322174072, 0.7267473936080933]} +{"t": 6.1717, "q": [-0.30964764952659607, 0.00885106809437275, -0.004111311864107847, 0.6574897170066833, -0.35654547810554504, -0.0010231065098196268, -0.28632262349128723, -0.015723302960395813, 0.0016472031129524112, 0.5954146385192871, -0.32973936200141907, 0.02867252752184868, 0.030654048547148705, -0.05985450744628906, -0.06934422254562378, -0.17197363078594208, 0.1913641095161438, -0.47489890456199646, 0.3431922495365143, -0.01011468656361103, -0.6950730681419373, -0.6810755133628845, -0.47344881296157837, -0.23822243511676788, 0.18381404876708984, -0.3792887330055237, -0.552089273929596, -0.8321846127510071, 0.7292041778564453]} +{"t": 6.1884, "q": [-0.30961358547210693, 0.008927768096327782, -0.004111311864107847, 0.6574897170066833, -0.35647648572921753, -0.0010442673228681087, -0.28631410002708435, -0.015586948953568935, 0.0016472031129524112, 0.595568060874939, -0.32974350452423096, 0.02867983654141426, 0.030453171581029892, -0.05927719920873642, -0.06894683837890625, -0.17197363078594208, 0.19379690289497375, -0.4750666618347168, 0.34157440066337585, -0.02141581103205681, -0.6932514905929565, -0.6810755133628845, -0.4732930064201355, -0.2382703721523285, 0.18369419872760773, -0.3792048692703247, -0.5522690415382385, -0.8323044180870056, 0.73148113489151]} +{"t": 6.2052, "q": [-0.3096391558647156, 0.00897889956831932, -0.004084527958184481, 0.6574726700782776, -0.3564198315143585, -0.0010873363353312016, -0.2862544655799866, -0.015544338151812553, 0.001673986902460456, 0.5958407521247864, -0.3297354280948639, 0.02869429625570774, 0.02971661649644375, -0.058525022119283676, -0.06844010204076767, -0.17182981967926025, 0.19573834538459778, -0.47519850730895996, 0.3399685025215149, -0.03395130857825279, -0.6914658546447754, -0.6811593770980835, -0.47325706481933594, -0.23848608136177063, 0.18349047005176544, -0.3793007433414459, -0.5522211194038391, -0.8325441479682922, 0.7332188487052917]} +{"t": 6.222, "q": [-0.309536874294281, 0.009064121171832085, -0.004044352564960718, 0.6574897170066833, -0.3563550114631653, -0.0011303230421617627, -0.28622037172317505, -0.015450594946742058, 0.0016605950659140944, 0.5960793495178223, -0.32974767684936523, 0.028687143698334694, 0.028832752257585526, -0.057529620826244354, -0.06774677336215973, -0.17137442529201508, 0.19676899909973145, -0.47522246837615967, 0.3371761739253998, -0.046067360788583755, -0.6886135935783386, -0.681267261505127, -0.47323307394981384, -0.24022379517555237, 0.18250776827335358, -0.3795523941516876, -0.5517657399177551, -0.8329516053199768, 0.735663652420044]} +{"t": 6.2387, "q": [-0.309536874294281, 0.009106732904911041, -0.003964001312851906, 0.6574556231498718, -0.3562217950820923, -0.0013108868151903152, -0.2861607074737549, -0.015382418408989906, 0.0017677302239462733, 0.5963861346244812, -0.3297518491744995, 0.028694450855255127, 0.027453385293483734, -0.05654941871762276, -0.06710397452116013, -0.1711467206478119, 0.19698470830917358, -0.47555801272392273, 0.33373671770095825, -0.05620601773262024, -0.6854977011680603, -0.6813511252403259, -0.47320911288261414, -0.24202142655849457, 0.1804824322462082, -0.37974414229393005, -0.5512743592262268, -0.8332871198654175, 0.7392829060554504]} +{"t": 6.2554, "q": [-0.30941757559776306, 0.009226040914654732, -0.0038970415480434895, 0.6574641466140747, -0.35611283779144287, -0.001462565385736525, -0.28607550263404846, -0.015314241871237755, 0.001794514013454318, 0.5966674089431763, -0.32974350452423096, 0.02867983654141426, 0.025980276986956596, -0.05528787896037102, -0.06632979214191437, -0.17107482254505157, 0.19669708609580994, -0.47592952847480774, 0.331327885389328, -0.06688395887613297, -0.6822020411491394, -0.6813391447067261, -0.47323307394981384, -0.2437591403722763, 0.17741447687149048, -0.37972018122673035, -0.5506991147994995, -0.8334668874740601, 0.7426504492759705]} +{"t": 6.2722, "q": [-0.3094090521335602, 0.009345350787043571, -0.0037899063900113106, 0.6574385762214661, -0.3560200333595276, -0.0015998962335288525, -0.28603288531303406, -0.015169365331530571, 0.0018212978029623628, 0.5969230532646179, -0.3297601640224457, 0.028709067031741142, 0.024614304304122925, -0.053745292127132416, -0.06554292142391205, -0.17101489007472992, 0.19603796303272247, -0.47609731554985046, 0.32739704847335815, -0.07871238887310028, -0.6781033873558044, -0.681267261505127, -0.473364919424057, -0.24570058286190033, 0.1736634075641632, -0.3798999488353729, -0.5503755211830139, -0.8336107134819031, 0.7445439696311951]} +{"t": 6.2889, "q": [-0.3092726767063141, 0.009583970531821251, -0.003562244353815913, 0.6573448777198792, -0.3558949828147888, -0.0017805059906095266, -0.2859817445278168, -0.01492222398519516, 0.002089135814458132, 0.5972127914428711, -0.3297601640224457, 0.028709067031741142, 0.021909141913056374, -0.05193650349974632, -0.0646858662366867, -0.17107482254505157, 0.19517509639263153, -0.47694820165634155, 0.32389765977859497, -0.08801215142011642, -0.676173985004425, -0.681039571762085, -0.4734128415584564, -0.2476060837507248, 0.1682465374469757, -0.381577730178833, -0.5500160455703735, -0.8338863849639893, 0.7455626130104065]} +{"t": 6.3057, "q": [-0.3092045187950134, 0.010044164955615997, -0.0032006630208343267, 0.6573193073272705, -0.35575369000434875, -0.0019754988607019186, -0.28584539890289307, -0.014479073695838451, 0.002504284493625164, 0.5973747372627258, -0.3297601640224457, 0.028709067031741142, 0.01613723486661911, -0.04985420033335686, -0.06400325149297714, -0.17081116139888763, 0.19483953714370728, -0.47727176547050476, 0.32015857100486755, -0.0968565046787262, -0.6751073598861694, -0.6808837652206421, -0.4736884832382202, -0.24891236424446106, 0.15964186191558838, -0.3849692642688751, -0.5497523546218872, -0.8343777060508728, 0.7470726370811462]} +{"t": 6.3224, "q": [-0.3091192841529846, 0.010393571108579636, -0.003106919815763831, 0.6571829319000244, -0.3553949296474457, -0.002561242086812854, -0.28576868772506714, -0.014061490073800087, 0.0026783791836351156, 0.5978519916534424, -0.3297601640224457, 0.028709067031741142, 0.008222623728215694, -0.04754367098212242, -0.06332703679800034, -0.17028385400772095, 0.19404856860637665, -0.4776313006877899, 0.31776171922683716, -0.10712698847055435, -0.673861026763916, -0.6807279586791992, -0.47404801845550537, -0.24966736137866974, 0.14945527911186218, -0.38691070675849915, -0.5496445298194885, -0.8343297839164734, 0.7495893239974976]} +{"t": 6.3391, "q": [-0.30892327427864075, 0.010768543928861618, -0.0027051628567278385, 0.6566289663314819, -0.3549233078956604, -0.003334973705932498, -0.28593912720680237, -0.01372060552239418, 0.0032944062259048223, 0.5985252261161804, -0.3297683596611023, 0.028709152713418007, 0.0009776083752512932, -0.04567335918545723, -0.06251443922519684, -0.16991233825683594, 0.1925145983695984, -0.47869789600372314, 0.31601202487945557, -0.11565975844860077, -0.6725547313690186, -0.6808717846870422, -0.47402405738830566, -0.25133317708969116, 0.14037123322486877, -0.3884926438331604, -0.5495486259460449, -0.8342338800430298, 0.7521419525146484]} +{"t": 6.3559, "q": [-0.30901703238487244, 0.011646322906017303, -0.0004821082402486354, 0.6553251147270203, -0.3543350398540497, -0.004347640555351973, -0.2862970530986786, -0.012928049080073833, 0.005490677431225777, 0.5990706086158752, -0.3297848701477051, 0.02872387133538723, -0.005865650251507759, -0.04425100237131119, -0.061539746820926666, -0.16990035772323608, 0.19088473916053772, -0.4815860986709595, 0.3144301176071167, -0.12485165894031525, -0.6712723970413208, -0.6810635328292847, -0.47332894802093506, -0.2558392286300659, 0.1309276670217514, -0.39108121395111084, -0.549464762210846, -0.8341020941734314, 0.7544069886207581]} +{"t": 6.3727, "q": [-0.30919599533081055, 0.012822374701499939, 0.002048959955573082, 0.6533479690551758, -0.35356074571609497, -0.005547576118260622, -0.2862544655799866, -0.01187982875853777, 0.007700339891016483, 0.5991217494010925, -0.32977238297462463, 0.02870193123817444, -0.012909787707030773, -0.04309473931789398, -0.0607367604970932, -0.16960075497627258, 0.18855980038642883, -0.4850015938282013, 0.3128841519355774, -0.13139504194259644, -0.6705173850059509, -0.6811473965644836, -0.4721904695034027, -0.26075276732444763, 0.12132829427719116, -0.39338219165802, -0.549392819404602, -0.8341739773750305, 0.757702648639679]} +{"t": 6.3896, "q": [-0.308156281709671, 0.014279656112194061, 0.004178271628916264, 0.6508851051330566, -0.3526013195514679, -0.00630184356123209, -0.2865101099014282, -0.010882741771638393, 0.00940111093223095, 0.5990706086158752, -0.32976797223091125, 0.028665564954280853, -0.0218287892639637, -0.04206093028187752, -0.0605943463742733, -0.16878582537174225, 0.18488064408302307, -0.48898035287857056, 0.3109666705131531, -0.1398439258337021, -0.6689714193344116, -0.6812552809715271, -0.46763646602630615, -0.265210896730423, 0.1080138236284256, -0.39574307203292847, -0.5496085286140442, -0.8341619968414307, 0.7619929909706116]} +{"t": 6.4063, "q": [-0.30676719546318054, 0.015864768996834755, 0.006187055725604296, 0.6487715840339661, -0.3515067398548126, -0.006778272334486246, -0.28686803579330444, -0.009825998917222023, 0.010713516734540462, 0.599019467830658, -0.3297552168369293, 0.02861456573009491, -0.028430994600057602, -0.04139217361807823, -0.06065963953733444, -0.16867797076702118, 0.18096180260181427, -0.49400174617767334, 0.3093368113040924, -0.14941932260990143, -0.6670299768447876, -0.6810515522956848, -0.46157243847846985, -0.2706517279148102, 0.09594570845365524, -0.39851143956184387, -0.5495725870132446, -0.8337185978889465, 0.7653365731239319]} +{"t": 6.423, "q": [-0.3058127164840698, 0.017910076305270195, 0.006910218391567469, 0.6475444436073303, -0.3507939279079437, -0.008066128008067608, -0.2868936061859131, -0.007976699620485306, 0.011396503075957298, 0.5987467765808105, -0.3296835720539093, 0.028388559818267822, -0.03613133355975151, -0.040335703641176224, -0.06067178025841713, -0.16883376240730286, 0.17625200748443604, -0.49926280975341797, 0.3064965605735779, -0.15820375084877014, -0.6646930575370789, -0.6809556484222412, -0.4549211859703064, -0.27841752767562866, 0.08475244045257568, -0.4015194773674011, -0.5495965480804443, -0.833311140537262, 0.7683566212654114]} +{"t": 6.4398, "q": [-0.30553147196769714, 0.019375881180167198, 0.006294190883636475, 0.6468115448951721, -0.35022127628326416, -0.009093248285353184, -0.2871237099170685, -0.006204099860042334, 0.011302759870886803, 0.5987723469734192, -0.32995083928108215, 0.02755574882030487, -0.0457199327647686, -0.03959866240620613, -0.0609305277466774, -0.16894161701202393, 0.17070330679416656, -0.503061830997467, 0.3043394088745117, -0.16661667823791504, -0.6620205640792847, -0.6809197068214417, -0.4487972557544708, -0.28484106063842773, 0.07292401045560837, -0.4052945077419281, -0.5496684908866882, -0.8330474495887756, 0.7726110219955444]} +{"t": 6.4565, "q": [-0.3047730028629303, 0.021233702078461647, 0.006200447678565979, 0.645857036113739, -0.34926754236221313, -0.010792841203510761, -0.28749868273735046, -0.0043718451634049416, 0.011356327682733536, 0.5991643667221069, -0.3304084539413452, 0.025998346507549286, -0.05382202938199043, -0.03933288902044296, -0.061179276555776596, -0.16896559298038483, 0.16408801078796387, -0.5069087743759155, 0.30323684215545654, -0.17284847795963287, -0.6570711135864258, -0.6808598041534424, -0.44257745146751404, -0.29109683632850647, 0.060999706387519836, -0.408590167760849, -0.5487816333770752, -0.8328916430473328, 0.7762062549591064]} +{"t": 6.4732, "q": [-0.30374184250831604, 0.024088609963655472, 0.006254015490412712, 0.6453116536140442, -0.3487806022167206, -0.011653422378003597, -0.28759244084358215, -0.0019089538836851716, 0.011369719170033932, 0.5992155075073242, -0.3306342363357544, 0.02417691983282566, -0.05948679894208908, -0.03888455778360367, -0.061334628611803055, -0.16951686143875122, 0.1567656546831131, -0.5109474658966064, 0.3032967746257782, -0.18100973963737488, -0.6530923247337341, -0.6807399392127991, -0.43845486640930176, -0.29802370071411133, 0.05096891149878502, -0.4115862250328064, -0.5472596287727356, -0.8327478766441345, 0.780113160610199]} +{"t": 6.49, "q": [-0.3031197190284729, 0.02528170682489872, 0.005289798602461815, 0.6441696882247925, -0.348164439201355, -0.012687248177826405, -0.2880696654319763, -0.0004005394293926656, 0.010887610726058483, 0.5993348360061646, -0.3315950036048889, 0.022043511271476746, -0.06536584347486496, -0.038383305072784424, -0.06173308566212654, -0.17137442529201508, 0.14958709478378296, -0.5158130526542664, 0.30330875515937805, -0.18992599844932556, -0.6492693424224854, -0.6804882884025574, -0.4349554777145386, -0.3040637671947479, 0.040231045335531235, -0.41516950726509094, -0.5461331009864807, -0.8327718377113342, 0.7830013632774353]} +{"t": 6.5067, "q": [-0.30184993147850037, 0.02600608579814434, 0.0038568659219890833, 0.6419879794120789, -0.34688302874565125, -0.014710773713886738, -0.2879503667354584, 0.0005795038305222988, 0.009869826957583427, 0.5996842384338379, -0.3326627314090729, 0.01995478942990303, -0.071352019906044, -0.038391076028347015, -0.06187775358557701, -0.17362745106220245, 0.14149774610996246, -0.5209422707557678, 0.3032728135585785, -0.1979314684867859, -0.6451228260993958, -0.6803444623947144, -0.4310366213321686, -0.3084140419960022, 0.028390629217028618, -0.4196036756038666, -0.5449586510658264, -0.8326998949050903, 0.7853742241859436]} +{"t": 6.5234, "q": [-0.3007846772670746, 0.02630436047911644, 0.002731946762651205, 0.6394228339195251, -0.3457077443599701, -0.016066037118434906, -0.28833386301994324, 0.0008862999966368079, 0.009119881317019463, 0.5999398827552795, -0.3335352838039398, 0.0184230487793684, -0.07494104653596878, -0.03807208314538002, -0.06212044507265091, -0.17583255469799042, 0.13358816504478455, -0.5270183086395264, 0.30260169506073, -0.2052178680896759, -0.6404370069503784, -0.6805242300033569, -0.42747730016708374, -0.31264448165893555, 0.018156101927161217, -0.42480483651161194, -0.5424299836158752, -0.8326160311698914, 0.7871478796005249]} +{"t": 6.5401, "q": [-0.29988130927085876, 0.026457756757736206, 0.0015132841654121876, 0.6369514465332031, -0.3434296250343323, -0.014186987653374672, -0.2888196110725403, 0.0015169365797191858, 0.008892218582332134, 0.5999484062194824, -0.3339838683605194, 0.017620738595724106, -0.07716410607099533, -0.036787863820791245, -0.06282898038625717, -0.17879265546798706, 0.12415657192468643, -0.5342447757720947, 0.3019545376300812, -0.21032315492630005, -0.634636640548706, -0.6805481910705566, -0.42388203740119934, -0.3183968961238861, 0.00866459496319294, -0.43054527044296265, -0.537816047668457, -0.8326040506362915, 0.7882863879203796]} +{"t": 6.5569, "q": [-0.29948076605796814, 0.02653445675969124, -0.00036158118746243417, 0.6344373822212219, -0.3416880667209625, -0.01519384328275919, -0.29002124071121216, 0.001891909632831812, 0.008584205061197281, 0.5999569296836853, -0.3341042995452881, 0.016815153881907463, -0.07827562838792801, -0.03479611128568649, -0.06325084716081619, -0.18271149694919586, 0.11346664279699326, -0.542969286441803, 0.3019185960292816, -0.21621939539909363, -0.6306219100952148, -0.680596113204956, -0.42100584506988525, -0.32370591163635254, -0.0029241510201245546, -0.4374002516269684, -0.533250093460083, -0.8326160311698914, 0.7893409729003906]} +{"t": 6.5736, "q": [-0.2992165982723236, 0.026798643171787262, -0.001566851744428277, 0.6328011751174927, -0.34046509861946106, -0.015333089977502823, -0.29269716143608093, 0.0017044231062754989, 0.008436894044280052, 0.5999569296836853, -0.3339518904685974, 0.015759728848934174, -0.07938715815544128, -0.031944215297698975, -0.06318695843219757, -0.1855757236480713, 0.10367552936077118, -0.5498242974281311, 0.3019545376300812, -0.2214924544095993, -0.6269667148590088, -0.6808238625526428, -0.4198193848133087, -0.3273611068725586, -0.013997575268149376, -0.4439676105976105, -0.5292713046073914, -0.8325321674346924, 0.7902158498764038]} +{"t": 6.5903, "q": [-0.2999580204486847, 0.027131006121635437, -0.0028256899677217007, 0.6317699551582336, -0.3400019705295563, -0.015822507441043854, -0.29575660824775696, 0.0015254586469382048, 0.008530637249350548, 0.5999739766120911, -0.3337309658527374, 0.014841710217297077, -0.07976213097572327, -0.028780432417988777, -0.06353618949651718, -0.18778082728385925, 0.09309346228837967, -0.5564755201339722, 0.30190661549568176, -0.22819162905216217, -0.6231797337532043, -0.6809077262878418, -0.4198193848133087, -0.33141177892684937, -0.02551441639661789, -0.45161354541778564, -0.5270063281059265, -0.832496166229248, 0.7908150553703308]} +{"t": 6.607, "q": [-0.30117666721343994, 0.02761676535010338, -0.004111311864107847, 0.6317188739776611, -0.3397786319255829, -0.016074595972895622, -0.29723092913627625, 0.0015169365797191858, 0.00865116436034441, 0.5999739766120911, -0.33298805356025696, 0.01330795232206583, -0.07985587418079376, -0.025022543966770172, -0.06365381181240082, -0.18997393548488617, 0.08441688120365143, -0.5641094446182251, 0.30166691541671753, -0.23489081859588623, -0.6179186105728149, -0.6814590096473694, -0.41987931728363037, -0.33580997586250305, -0.03543735295534134, -0.4588160514831543, -0.5250529050827026, -0.8324602246284485, 0.7914502024650574]} +{"t": 6.6238, "q": [-0.3024294376373291, 0.027949128299951553, -0.005383542273193598, 0.6318040490150452, -0.33959251642227173, -0.016377968713641167, -0.29886719584465027, 0.002139050979167223, 0.008463677950203419, 0.6000677347183228, -0.3326588273048401, 0.01268687006086111, -0.07980230450630188, -0.021355027332901955, -0.06312108039855957, -0.1931138038635254, 0.07457783073186874, -0.5719711184501648, 0.30066025257110596, -0.23876172304153442, -0.6110876202583313, -0.681866466999054, -0.4199991524219513, -0.3398366868495941, -0.04677443206310272, -0.465299516916275, -0.5228837132453918, -0.8324482440948486, 0.7924928665161133]} +{"t": 6.6407, "q": [-0.304048627614975, 0.028179224580526352, -0.005905826110392809, 0.6317018270492554, -0.3388020694255829, -0.017452869564294815, -0.30075910687446594, 0.0026674221735447645, 0.008128880523145199, 0.6004682779312134, -0.3324950337409973, 0.01222732849419117, -0.07980230450630188, -0.01812874525785446, -0.06301802396774292, -0.19667312502861023, 0.06623681634664536, -0.57980877161026, 0.2995457053184509, -0.24392692744731903, -0.6055868864059448, -0.6820462346076965, -0.42005908489227295, -0.3443906903266907, -0.056241970509290695, -0.47100400924682617, -0.5186653137207031, -0.8323883414268494, 0.7940508127212524]} +{"t": 6.6574, "q": [-0.3060002028942108, 0.028366710990667343, -0.006254015490412712, 0.6316421627998352, -0.3383558392524719, -0.018015213310718536, -0.30277031660079956, 0.0030338731594383717, 0.007941394113004208, 0.6009710431098938, -0.3324246108531952, 0.012146662920713425, -0.07980230450630188, -0.01308369915932417, -0.06400080025196075, -0.2006279081106186, 0.05764412507414818, -0.5875746011734009, 0.2989824414253235, -0.24786972999572754, -0.5992112755775452, -0.6822020411491394, -0.42162901163101196, -0.3499993085861206, -0.06533799320459366, -0.47717589139938354, -0.5128889083862305, -0.8322445154190063, 0.7957165837287903]} +{"t": 6.6742, "q": [-0.3078068792819977, 0.028400801122188568, -0.006347758695483208, 0.6316421627998352, -0.3375891149044037, -0.018414003774523735, -0.3044406473636627, 0.0031105722300708294, 0.007753907702863216, 0.6017465591430664, -0.3322705924510956, 0.011876208707690239, -0.07981570065021515, -0.007908419705927372, -0.06464208662509918, -0.20497818291187286, 0.049434930086135864, -0.5953044295310974, 0.2987547516822815, -0.251716673374176, -0.5916731953620911, -0.6824177503585815, -0.4234146475791931, -0.35540419816970825, -0.07704658061265945, -0.4835275411605835, -0.5070046186447144, -0.8320527672767639, 0.797825813293457]} +{"t": 6.6909, "q": [-0.30947721004486084, 0.028392277657985687, -0.006361150648444891, 0.631582498550415, -0.3368198275566101, -0.019023695960640907, -0.30474743247032166, 0.00333214714191854, 0.007472677621990442, 0.6024709343910217, -0.3318437933921814, 0.011355895549058914, -0.07978891581296921, -0.0026184464804828167, -0.06502225250005722, -0.20889702439308167, 0.04111787676811218, -0.601847767829895, 0.29869481921195984, -0.25603097677230835, -0.585932731628418, -0.682753324508667, -0.4253081679344177, -0.3614921569824219, -0.089342400431633, -0.49059823155403137, -0.502690315246582, -0.831741213798523, 0.8010855317115784]} +{"t": 6.7077, "q": [-0.31010785698890686, 0.028255924582481384, -0.006160271819680929, 0.6314887404441833, -0.3361993432044983, -0.019264135509729385, -0.3040401041507721, 0.0038860845379531384, 0.0074860695749521255, 0.6032975912094116, -0.33151745796203613, 0.011083722114562988, -0.07977551966905594, 0.0027021202258765697, -0.06431794911623001, -0.21357087790966034, 0.03298058733344078, -0.6086068749427795, 0.29971349239349365, -0.2609325349330902, -0.579952597618103, -0.6827173233032227, -0.4274293780326843, -0.36971333622932434, -0.1004757434129715, -0.4964105784893036, -0.4966262876987457, -0.8311779499053955, 0.8039138317108154]} +{"t": 6.7245, "q": [-0.31020161509513855, 0.028196271508932114, -0.005785298999398947, 0.6313268542289734, -0.33598336577415466, -0.01939992420375347, -0.3044150769710541, 0.005224056541919708, 0.007633380591869354, 0.6043798923492432, -0.3314226567745209, 0.011002836748957634, -0.07981570065021515, 0.006682846695184708, -0.06381324678659439, -0.21832861006259918, 0.027587685734033585, -0.6153540015220642, 0.30095985531806946, -0.26589399576187134, -0.5712161064147949, -0.6826813817024231, -0.429658442735672, -0.37937262654304504, -0.10970360040664673, -0.5010244846343994, -0.488800585269928, -0.8310580849647522, 0.8074252009391785]} +{"t": 6.7412, "q": [-0.3102782964706421, 0.028136614710092545, -0.005557636730372906, 0.631284236907959, -0.3359549641609192, -0.019435962662100792, -0.30487528443336487, 0.007644337601959705, 0.007887826301157475, 0.6055218577384949, -0.3314021825790405, 0.011009879410266876, -0.07980230450630188, 0.0095370439812541, -0.06387031078338623, -0.22312229871749878, 0.022050974890589714, -0.6205312013626099, 0.3019185960292816, -0.27030420303344727, -0.5634143948554993, -0.6830049753189087, -0.43086886405944824, -0.3890678584575653, -0.1212683767080307, -0.5061417818069458, -0.48301219940185547, -0.8311060070991516, 0.8105530738830566]} +{"t": 6.7579, "q": [-0.31020161509513855, 0.027795732021331787, -0.005182663444429636, 0.6312586665153503, -0.3359549641609192, -0.019435962662100792, -0.30575305223464966, 0.007158576976507902, 0.008182448334991932, 0.6071922183036804, -0.33143913745880127, 0.011017532087862492, -0.07981570065021515, 0.01156922709196806, -0.06417573243379593, -0.2272089272737503, 0.017604826018214226, -0.6246417760848999, 0.3024219274520874, -0.2759367823600769, -0.557086706161499, -0.6830169558525085, -0.43151599168777466, -0.39831969141960144, -0.13161076605319977, -0.5104441046714783, -0.47655272483825684, -0.8308423757553101, 0.8126383423805237]} +{"t": 6.7747, "q": [-0.31011638045310974, 0.027523022145032883, -0.0044996771030128, 0.6312416195869446, -0.3359468877315521, -0.019450414925813675, -0.30663082003593445, 0.006937001831829548, 0.008852043189108372, 0.6094164848327637, -0.3317142426967621, 0.011071153916418552, -0.07980230450630188, 0.013989378698170185, -0.064082071185112, -0.2322542816400528, 0.013805827125906944, -0.6289920806884766, 0.3024458885192871, -0.2803110182285309, -0.5493568778038025, -0.6829450726509094, -0.432199090719223, -0.4078591465950012, -0.14110226929187775, -0.5149981379508972, -0.46736082434654236, -0.8305187821388245, 0.8155864477157593]} +{"t": 6.7915, "q": [-0.3099885582923889, 0.027403712272644043, -0.004178271628916264, 0.6312586665153503, -0.3359468877315521, -0.019450414925813675, -0.3070995509624481, 0.0067750816233456135, 0.009052921086549759, 0.6110697388648987, -0.33196109533309937, 0.011160828173160553, -0.07978891581296921, 0.016074543818831444, -0.06398818641901016, -0.23703598976135254, 0.010641992092132568, -0.6321079730987549, 0.30360835790634155, -0.2837265431880951, -0.5427775382995605, -0.6825615763664246, -0.43246275186538696, -0.41741055250167847, -0.14896391332149506, -0.5190128087997437, -0.45970290899276733, -0.8304468989372253, 0.8189899921417236]} +{"t": 6.8083, "q": [-0.3099885582923889, 0.027361102402210236, -0.004084527958184481, 0.6311649084091187, -0.3358903229236603, -0.019551610574126244, -0.3075682818889618, 0.006732471287250519, 0.009079704992473125, 0.612237274646759, -0.3322674334049225, 0.010967657901346684, -0.07962821424007416, 0.01782466471195221, -0.06364401429891586, -0.2415660321712494, 0.007310377433896065, -0.6327910423278809, 0.3055977523326874, -0.28615933656692505, -0.5354072451591492, -0.6818544864654541, -0.43246275186538696, -0.4269619882106781, -0.15758058428764343, -0.5225362181663513, -0.4504510760307312, -0.8303509950637817, 0.8229567408561707]} +{"t": 6.825, "q": [-0.31007376313209534, 0.027352578938007355, -0.004151487722992897, 0.6310626268386841, -0.3355792462825775, -0.02012273296713829, -0.3080284595489502, 0.006800648290663958, 0.008932393975555897, 0.6132855415344238, -0.33257341384887695, 0.010643661953508854, -0.07925324141979218, 0.018813593313097954, -0.0630849301815033, -0.24590431153774261, 0.005416869651526213, -0.6319401860237122, 0.3068441152572632, -0.28975459933280945, -0.5265628695487976, -0.6813870668411255, -0.43229496479034424, -0.4356505572795868, -0.1663530319929123, -0.5248611569404602, -0.4413191080093384, -0.8302431702613831, 0.8271512389183044]} +{"t": 6.8418, "q": [-0.31015899777412415, 0.027344059199094772, -0.004272014833986759, 0.6307558417320251, -0.33528006076812744, -0.020643040537834167, -0.3085227310657501, 0.006834736559540033, 0.008744907565414906, 0.6140013933181763, -0.3327935039997101, 0.01036970317363739, -0.07895861566066742, 0.019171081483364105, -0.06283404678106308, -0.24966736137866974, 0.004637895151972771, -0.6315447092056274, 0.3076949715614319, -0.29424867033958435, -0.5208104848861694, -0.6810635328292847, -0.43227100372314453, -0.4434642791748047, -0.17401094734668732, -0.5262872576713562, -0.4329541027545929, -0.8300274610519409, 0.8313577175140381]} +{"t": 6.8585, "q": [-0.3101760447025299, 0.02738666906952858, -0.004472893197089434, 0.6305172443389893, -0.33498069643974304, -0.021134262904524803, -0.3088465929031372, 0.006996656768023968, 0.00865116436034441, 0.6144700646400452, -0.3329155743122101, 0.010181949473917484, -0.07867738604545593, 0.019269945099949837, -0.06273022294044495, -0.25268739461898804, 0.004014715552330017, -0.6313289999961853, 0.3085338771343231, -0.29706498980522156, -0.5174309015274048, -0.6808717846870422, -0.4322470426559448, -0.4508824944496155, -0.17912821471691132, -0.5272579789161682, -0.4243374466896057, -0.8293443322181702, 0.8334909081459045]} +{"t": 6.8753, "q": [-0.31021010875701904, 0.027437802404165268, -0.004620204214006662, 0.6301763653755188, -0.334612101316452, -0.021675651893019676, -0.30924713611602783, 0.006988134700804949, 0.008410110138356686, 0.6150410771369934, -0.3332046866416931, 0.009770583361387253, -0.07807475328445435, 0.01922428235411644, -0.06270978599786758, -0.25630661845207214, 0.0023848607670515776, -0.6307297945022583, 0.3094446659088135, -0.30125945806503296, -0.5134881138801575, -0.6807039976119995, -0.43197140097618103, -0.45901980996131897, -0.1829991191625595, -0.5285762548446655, -0.4156608581542969, -0.828673243522644, 0.8356121182441711]} +{"t": 6.8922, "q": [-0.3102782964706421, 0.027437802404165268, -0.005008568987250328, 0.6300740838050842, -0.3344106376171112, -0.021978843957185745, -0.30928972363471985, 0.007005178835242987, 0.00806192122399807, 0.6153478622436523, -0.33329838514328003, 0.009647971019148827, -0.0772712379693985, 0.019140582531690598, -0.06271391361951828, -0.26096847653388977, 0.0011504855938255787, -0.6308735609054565, 0.31070300936698914, -0.30330875515937805, -0.5079873204231262, -0.6806680560112, -0.431827574968338, -0.4650118947029114, -0.18710970878601074, -0.5295709371566772, -0.4059416651725769, -0.8283975720405579, 0.837649405002594]} +{"t": 6.909, "q": [-0.3103123903274536, 0.02744632214307785, -0.005263015162199736, 0.6298950910568237, -0.33429718017578125, -0.022137457504868507, -0.30934938788414, 0.006945523899048567, 0.007820867002010345, 0.6154160499572754, -0.3334085941314697, 0.009540054947137833, -0.07615970820188522, 0.019163424149155617, -0.06273911148309708, -0.2649232745170593, 0.0016538230702280998, -0.6308615803718567, 0.3135313093662262, -0.30438733100891113, -0.5014439821243286, -0.680596113204956, -0.4318036139011383, -0.46970972418785095, -0.19144800305366516, -0.5303738713264465, -0.39537158608436584, -0.8280500173568726, 0.8387998938560486]} +{"t": 6.9257, "q": [-0.31030386686325073, 0.027403712272644043, -0.0052094473503530025, 0.6297928690910339, -0.3342434763908386, -0.022115005180239677, -0.3094431459903717, 0.006843258626759052, 0.007847650907933712, 0.6154842376708984, -0.33343741297721863, 0.009562156163156033, -0.07469999045133591, 0.019155805930495262, -0.0627240538597107, -0.2674279808998108, 0.0009707222343422472, -0.6307777166366577, 0.3172703683376312, -0.30517828464508057, -0.4959072470664978, -0.6804763078689575, -0.4317556917667389, -0.47360458970069885, -0.19672106206417084, -0.5315243601799011, -0.3856523633003235, -0.8278462886810303, 0.8392672538757324]} +{"t": 6.9426, "q": [-0.31033796072006226, 0.02726735919713974, -0.005035352893173695, 0.6296905875205994, -0.334210067987442, -0.02207097038626671, -0.3096732199192047, 0.00666429428383708, 0.007928002625703812, 0.6156205534934998, -0.3335077166557312, 0.009671874344348907, -0.0731867104768753, 0.01920144446194172, -0.06269457191228867, -0.2685784697532654, -1.1984225238848012e-05, -0.6306818127632141, 0.3202904164791107, -0.30550187826156616, -0.48916012048721313, -0.6800328493118286, -0.43158790469169617, -0.4772597849369049, -0.200951486825943, -0.5325190424919128, -0.37570545077323914, -0.8273429870605469, 0.8395549058914185]} +{"t": 6.9593, "q": [-0.31057658791542053, 0.027020219713449478, -0.005008568987250328, 0.6296138763427734, -0.3341602385044098, -0.02199777588248253, -0.30987775325775146, 0.006400108803063631, 0.007914610207080841, 0.6156376004219055, -0.33351191878318787, 0.009693712927401066, -0.07168681919574738, 0.01917102001607418, -0.06271422654390335, -0.2694173753261566, -0.0007909588748589158, -0.6308016777038574, 0.3235620856285095, -0.30556178092956543, -0.4812745153903961, -0.6797692179679871, -0.43153995275497437, -0.4799802005290985, -0.20540961623191833, -0.5335137248039246, -0.36568665504455566, -0.8269954323768616, 0.8396387696266174]} +{"t": 6.976, "q": [-0.3107640743255615, 0.026747509837150574, -0.005035352893173695, 0.6295371651649475, -0.3340853154659271, -0.021866202354431152, -0.31001412868499756, 0.006127400789409876, 0.007834259420633316, 0.6156631708145142, -0.33353278040885925, 0.00975932739675045, -0.07072260230779648, 0.01912536658346653, -0.06271375715732574, -0.26972895860671997, -0.0009347695740871131, -0.6308016777038574, 0.32762473821640015, -0.3055378198623657, -0.47667255997657776, -0.6793737411499023, -0.43144407868385315, -0.4810587763786316, -0.20917266607284546, -0.5339451432228088, -0.35563188791275024, -0.8265040516853333, 0.8397706151008606]} +{"t": 6.9929, "q": [-0.31090041995048523, 0.0264151468873024, -0.004928217735141516, 0.6294264197349548, -0.33403950929641724, -0.021785782650113106, -0.3103209137916565, 0.005786516238003969, 0.007794083096086979, 0.6157910227775574, -0.3335781693458557, 0.009810655377805233, -0.07018692791461945, 0.019125357270240784, -0.06269378960132599, -0.2696211040019989, -0.0009347695740871131, -0.6308256387710571, 0.33108818531036377, -0.30552583932876587, -0.47302934527397156, -0.6792299151420593, -0.43137219548225403, -0.48146626353263855, -0.21156951785087585, -0.5342926979064941, -0.3480578660964966, -0.825844943523407, 0.839962363243103]} +{"t": 7.0097, "q": [-0.3111305236816406, 0.02612539753317833, -0.004780906718224287, 0.629272997379303, -0.33401036262512207, -0.021734630689024925, -0.310772567987442, 0.005428587552160025, 0.007834259420633316, 0.6158080697059631, -0.3336403965950012, 0.009949354454874992, -0.06978517025709152, 0.019140569493174553, -0.06268396228551865, -0.2694772779941559, -0.0006471481756307185, -0.6308016777038574, 0.33468344807624817, -0.3055378198623657, -0.46926629543304443, -0.6792898774147034, -0.43091678619384766, -0.48222124576568604, -0.21409818530082703, -0.5347720980644226, -0.3406875431537628, -0.8246105909347534, 0.8405735492706299]} +{"t": 7.0264, "q": [-0.3113776445388794, 0.025852687656879425, -0.004633595701307058, 0.6292048096656799, -0.3339727818965912, -0.021654296666383743, -0.31124982237815857, 0.005138835404068232, 0.007874434813857079, 0.6158421635627747, -0.33368179202079773, 0.010022439993917942, -0.06942358613014221, 0.019102519378066063, -0.06267857551574707, -0.26940539479255676, -0.0006950850365683436, -0.6308136582374573, 0.3373199999332428, -0.30552583932876587, -0.4650118947029114, -0.6792778968811035, -0.42856788635253906, -0.48339569568634033, -0.21562017500400543, -0.5350357294082642, -0.3335449695587158, -0.8224534392356873, 0.841388463973999]} +{"t": 7.0433, "q": [-0.3117355704307556, 0.02564815804362297, -0.004432717338204384, 0.6291621923446655, -0.3339686095714569, -0.02164698950946331, -0.31161627173423767, 0.004917260725051165, 0.00799496192485094, 0.6158762574195862, -0.3337147533893585, 0.010051848366856575, -0.06904861330986023, 0.018965505063533783, -0.06257731467485428, -0.2692975401878357, -0.0008269115351140499, -0.6308855414390564, 0.3385423719882965, -0.30550187826156616, -0.45972687005996704, -0.6791939735412598, -0.42584747076034546, -0.48471397161483765, -0.2166987657546997, -0.5354671478271484, -0.3292545974254608, -0.8199966549873352, 0.8421674370765686]} +{"t": 7.0601, "q": [-0.3120509088039398, 0.025392495095729828, -0.004138095770031214, 0.6290855407714844, -0.3339562714099884, -0.021639594808220863, -0.31212759017944336, 0.0046701193787157536, 0.008236016146838665, 0.6159103512763977, -0.3336985111236572, 0.010080747306346893, -0.06899504363536835, 0.01892743445932865, -0.0625319853425026, -0.26921364665031433, -0.000862864195369184, -0.630837619304657, 0.34028008580207825, -0.30550187826156616, -0.4563113749027252, -0.6792418956756592, -0.4230191707611084, -0.48614010214805603, -0.2178252786397934, -0.5356708765029907, -0.32607877254486084, -0.8183308243751526, 0.8435096740722656]} +{"t": 7.0768, "q": [-0.31222134828567505, 0.02516239695250988, -0.003776514669880271, 0.6289917826652527, -0.3339354395866394, -0.021603038534522057, -0.3124855160713196, 0.004320712294429541, 0.008436894044280052, 0.6160381436347961, -0.3337150514125824, 0.010109974071383476, -0.06894148141145706, 0.018858900293707848, -0.06242644041776657, -0.26908180117607117, -0.0007310377550311387, -0.6308495998382568, 0.34185001254081726, -0.30550187826156616, -0.45403435826301575, -0.6794576048851013, -0.42026281356811523, -0.4881174862384796, -0.218472421169281, -0.5356948971748352, -0.32200413942337036, -0.8174560070037842, 0.8459065556526184]} +{"t": 7.0938, "q": [-0.31258779764175415, 0.02480446733534336, -0.003562244353815913, 0.6289406418800354, -0.33392295241355896, -0.021581115201115608, -0.3129286766052246, 0.003988349810242653, 0.008503853343427181, 0.6162000894546509, -0.3337317109107971, 0.010153749957680702, -0.06888791173696518, 0.018805604428052902, -0.06237097084522247, -0.2689499855041504, -0.0007310377550311387, -0.6308855414390564, 0.342988520860672, -0.30550187826156616, -0.4522247314453125, -0.6796973347663879, -0.41738659143447876, -0.4901667833328247, -0.2193472683429718, -0.535934567451477, -0.3177018165588379, -0.8169766068458557, 0.8489025831222534]} +{"t": 7.1106, "q": [-0.3129372000694275, 0.02449767291545868, -0.0034952848218381405, 0.6289065480232239, -0.33387741446495056, -0.02152979001402855, -0.31355932354927063, 0.0036389431916177273, 0.008503853343427181, 0.6162682771682739, -0.33374425768852234, 0.010204769670963287, -0.0685129389166832, 0.018813207745552063, -0.062356073409318924, -0.26900991797447205, -0.0005632585962302983, -0.6308615803718567, 0.34362369775772095, -0.3054659068584442, -0.4507986307144165, -0.6797692179679871, -0.41392314434051514, -0.49345046281814575, -0.22037792205810547, -0.5363180637359619, -0.3124407231807709, -0.8165691494941711, 0.8521143794059753]} +{"t": 7.1274, "q": [-0.3131161630153656, 0.024224964901804924, -0.0032810145057737827, 0.6289065480232239, -0.3338150978088379, -0.021434668451547623, -0.3137553334236145, 0.003315103007480502, 0.008584205061197281, 0.6164557337760925, -0.3337402045726776, 0.01021199394017458, -0.06792369484901428, 0.018729444593191147, -0.06224054470658302, -0.2690458595752716, -0.0006711166352033615, -0.630837619304657, 0.34392330050468445, -0.3054659068584442, -0.44926464557647705, -0.6798291206359863, -0.4106155037879944, -0.49711763858795166, -0.2216961830854416, -0.5368093848228455, -0.3091810345649719, -0.8163893818855286, 0.8538401126861572]} +{"t": 7.1441, "q": [-0.3131673038005829, 0.02408008836209774, -0.0029997846577316523, 0.6288554072380066, -0.3335324227809906, -0.0209811944514513, -0.31373828649520874, 0.0031531827989965677, 0.008744907565414906, 0.6165409684181213, -0.33373621106147766, 0.010233750566840172, -0.06740140914916992, 0.018653269857168198, -0.06208024546504021, -0.2689979076385498, -0.0007310377550311387, -0.6308735609054565, 0.3441150486469269, -0.3054659068584442, -0.44774264097213745, -0.6798291206359863, -0.40737977623939514, -0.49958640336990356, -0.22314627468585968, -0.5369292497634888, -0.3055737614631653, -0.8162935376167297, 0.8553261160850525]} +{"t": 7.1608, "q": [-0.31319287419319153, 0.024003390222787857, -0.0027721223887056112, 0.6287957429885864, -0.3331451416015625, -0.020286841318011284, -0.31373828649520874, 0.002974218223243952, 0.008758299984037876, 0.6165835857391357, -0.33373215794563293, 0.010240974836051464, -0.06710679084062576, 0.01861511915922165, -0.06188540160655975, -0.2689499855041504, -0.0006950850365683436, -0.6308855414390564, 0.3443067967891693, -0.3054179847240448, -0.445980966091156, -0.6798411011695862, -0.4046713411808014, -0.500461220741272, -0.22539931535720825, -0.5371090173721313, -0.30173882842063904, -0.8161976337432861, 0.8574473261833191]} +{"t": 7.1776, "q": [-0.3131673038005829, 0.023875556886196136, -0.0026783791836351156, 0.628736138343811, -0.3330914378166199, -0.020235411822795868, -0.3137468099594116, 0.0028037759475409985, 0.008771691471338272, 0.6167199015617371, -0.3337198793888092, 0.010248118080198765, -0.06689251959323883, 0.018744338303804398, -0.061632316559553146, -0.2689499855041504, -0.0007190534961409867, -0.630837619304657, 0.3445105254650116, -0.3054179847240448, -0.4437878429889679, -0.6799130439758301, -0.4025980532169342, -0.5004132986068726, -0.22784408926963806, -0.5372648239135742, -0.299054354429245, -0.8161736726760864, 0.8599640130996704]} +{"t": 7.1943, "q": [-0.3131246864795685, 0.02383294701576233, -0.0025176764465868473, 0.6287276148796082, -0.3330252170562744, -0.020162075757980347, -0.3137468099594116, 0.0027441212441772223, 0.008852043189108372, 0.6168903708457947, -0.3337158262729645, 0.01025536097586155, -0.0662631019949913, 0.018698468804359436, -0.06123294308781624, -0.26898592710494995, -0.0007310377550311387, -0.630837619304657, 0.34472623467445374, -0.3053460717201233, -0.44137901067733765, -0.6799609661102295, -0.4008004367351532, -0.5003533959388733, -0.23051656782627106, -0.5372768044471741, -0.29517146944999695, -0.8161137700080872, 0.8618455529212952]} +{"t": 7.211, "q": [-0.3131246864795685, 0.023756248876452446, -0.0025176764465868473, 0.628736138343811, -0.33295947313308716, -0.020146841183304787, -0.31378090381622314, 0.0026759442407637835, 0.008838650770485401, 0.6171033978462219, -0.3337118327617645, 0.010277117602527142, -0.06528548896312714, 0.01872866228222847, -0.06077446788549423, -0.26903387904167175, -0.0007190534961409867, -0.630837619304657, 0.3449898958206177, -0.30526217818260193, -0.4394375681877136, -0.6800928115844727, -0.3987511396408081, -0.5002694725990295, -0.23366841673851013, -0.537360668182373, -0.2916121482849121, -0.816065788269043, 0.8634634017944336]} +{"t": 7.2278, "q": [-0.3131076395511627, 0.023739203810691833, -0.002531068166717887, 0.6287190914154053, -0.33286452293395996, -0.020065903663635254, -0.31373828649520874, 0.0025992451701313257, 0.00881186779588461, 0.6172056794166565, -0.3336954116821289, 0.01027695368975401, -0.06440162658691406, 0.018812144175171852, -0.06047153100371361, -0.2689499855041504, -0.0006831008358858526, -0.6308256387710571, 0.34509775042533875, -0.30517828464508057, -0.4386466145515442, -0.6802126169204712, -0.39686959981918335, -0.5002095699310303, -0.23672440648078918, -0.5374925136566162, -0.2898145318031311, -0.8159939050674438, 0.8650932908058167]} +{"t": 7.2446, "q": [-0.31299686431884766, 0.023739203810691833, -0.00258463597856462, 0.6287190914154053, -0.3327825367450714, -0.0200650617480278, -0.31373828649520874, 0.002582201035693288, 0.008758299984037876, 0.617316484451294, -0.3336954116821289, 0.01027695368975401, -0.06330349296331406, 0.018895665183663368, -0.06021839752793312, -0.26900991797447205, -0.0007070692954584956, -0.6308016777038574, 0.34504979848861694, -0.3051183819770813, -0.4384908080101013, -0.6804043650627136, -0.3946884870529175, -0.5001856088638306, -0.23888155817985535, -0.5374445915222168, -0.2874176800251007, -0.8158740997314453, 0.8672264814376831]} +{"t": 7.2614, "q": [-0.3129286766052246, 0.023730682209134102, -0.002651595277711749, 0.6287105679512024, -0.33272111415863037, -0.02007167972624302, -0.31373828649520874, 0.002582201035693288, 0.008691340684890747, 0.6174442768096924, -0.33370769023895264, 0.010269810445606709, -0.062058042734861374, 0.018979288637638092, -0.06011466309428215, -0.26903387904167175, -0.0007550062146037817, -0.630837619304657, 0.34489402174949646, -0.30508241057395935, -0.4385147988796234, -0.680596113204956, -0.3924833834171295, -0.5000417828559875, -0.24035562574863434, -0.5374205708503723, -0.284217894077301, -0.8157422542572021, 0.8689761757850647]} +{"t": 7.2781, "q": [-0.3128945827484131, 0.023730682209134102, -0.0026783791836351156, 0.6286594271659851, -0.33265188336372375, -0.020121818408370018, -0.31377238035202026, 0.0025566346012055874, 0.008637772873044014, 0.6175380349159241, -0.33372002840042114, 0.010277198627591133, -0.06003586947917938, 0.01904013194143772, -0.06007540598511696, -0.2689979076385498, -0.0007190534961409867, -0.6301665306091309, 0.3448101282119751, -0.30510640144348145, -0.4386945366859436, -0.6807519197463989, -0.3892236649990082, -0.49974218010902405, -0.24185365438461304, -0.5375404357910156, -0.28106603026390076, -0.8157182931900024, 0.870294451713562]} +{"t": 7.2949, "q": [-0.3128775358200073, 0.02372215874493122, -0.0028256899677217007, 0.6285997629165649, -0.3326033353805542, -0.020193947479128838, -0.3138490617275238, 0.002531068166717887, 0.008530637249350548, 0.617546558380127, -0.33371588587760925, 0.010269892401993275, -0.0575047992169857, 0.019100965932011604, -0.06002617999911308, -0.26896196603775024, -0.0005632585962302983, -0.6297710537910461, 0.34487006068229675, -0.30503448843955994, -0.4387424886226654, -0.6809676289558411, -0.38543665409088135, -0.49941861629486084, -0.2437591403722763, -0.5376363396644592, -0.27709925174713135, -0.8157182931900024, 0.8713250756263733]} +{"t": 7.3116, "q": [-0.31286048889160156, 0.023730682209134102, -0.002865865593776107, 0.6285827159881592, -0.3325462341308594, -0.02022242173552513, -0.31387463212013245, 0.002514024032279849, 0.008503853343427181, 0.6175891757011414, -0.33371588587760925, 0.010269892401993275, -0.054357703775167465, 0.01913895085453987, -0.05993184819817543, -0.2690458595752716, -0.0005033374764025211, -0.6293395757675171, 0.34487006068229675, -0.30510640144348145, -0.43886232376098633, -0.6812552809715271, -0.3817095458507538, -0.4991070330142975, -0.24472986161708832, -0.5373726487159729, -0.2721617519855499, -0.8157063126564026, 0.872547447681427]} +{"t": 7.3284, "q": [-0.3128860592842102, 0.023551717400550842, -0.002959609031677246, 0.628454864025116, -0.3324972987174988, -0.020250963047146797, -0.3140450716018677, 0.0023009711876511574, 0.008436894044280052, 0.6175976991653442, -0.3337324559688568, 0.010299119167029858, -0.050674933940172195, 0.019245337694883347, -0.05973352864384651, -0.26896196603775024, -0.00045540055725723505, -0.6286205649375916, 0.34461838006973267, -0.3050944209098816, -0.43950948119163513, -0.6814709901809692, -0.37914493680000305, -0.49879544973373413, -0.24502946436405182, -0.5373966097831726, -0.2690698206424713, -0.8156583309173584, 0.87343430519104]} +{"t": 7.3452, "q": [-0.31291162967681885, 0.02335570938885212, -0.003106919815763831, 0.6282759308815002, -0.33241555094718933, -0.020279178395867348, -0.31469276547431946, 0.0020367854740470648, 0.008169055916368961, 0.6175891757011414, -0.3337571322917938, 0.010313896462321281, -0.047286782413721085, 0.019374536350369453, -0.059500545263290405, -0.26896196603775024, -0.0003954794374294579, -0.6278056502342224, 0.34459441900253296, -0.3050944209098816, -0.439749151468277, -0.6816148161888123, -0.3771315813064575, -0.49859172105789185, -0.2451612949371338, -0.5373486876487732, -0.26573821902275085, -0.815610408782959, 0.8739496469497681]} +{"t": 7.3619, "q": [-0.3129798173904419, 0.023040389642119408, -0.0035354604478925467, 0.6281736493110657, -0.3322838842868805, -0.02021966688334942, -0.31607332825660706, 0.0017470336752012372, 0.0076467725448310375, 0.6175295114517212, -0.33379852771759033, 0.010386981070041656, -0.0439789853990078, 0.01924491487443447, -0.0590556338429451, -0.268494576215744, -0.0002996056282427162, -0.6267869472503662, 0.3444865643978119, -0.3051183819770813, -0.4400367736816406, -0.6817226409912109, -0.37580132484436035, -0.4983999729156494, -0.24514931440353394, -0.5372887849807739, -0.2626343071460724, -0.8155984282493591, 0.8743810653686523]} +{"t": 7.3787, "q": [-0.3132610321044922, 0.022725071758031845, -0.0039506093598902225, 0.6280713677406311, -0.3322301506996155, -0.020168254151940346, -0.31707894802093506, 0.0014658038271591067, 0.007178056053817272, 0.6174528002738953, -0.3339926302433014, 0.01064329594373703, -0.04048370197415352, 0.01916106604039669, -0.0588209368288517, -0.26771560311317444, -0.00027563716867007315, -0.6253129243850708, 0.3437075912952423, -0.3051183819770813, -0.44027647376060486, -0.682010293006897, -0.3752140998840332, -0.49822020530700684, -0.2452811449766159, -0.5373247265815735, -0.2613160312175751, -0.8155984282493591, 0.8745368719100952]} +{"t": 7.3954, "q": [-0.31349965929985046, 0.022503497079014778, -0.004151487722992897, 0.6280372738838196, -0.3322090804576874, -0.020102640613913536, -0.31707894802093506, 0.0012357067316770554, 0.006950393784791231, 0.617384672164917, -0.3340790569782257, 0.010695033706724644, -0.037242863327264786, 0.01903926022350788, -0.05871031805872917, -0.26688870787620544, -0.00016777915880084038, -0.623431384563446, 0.3425810635089874, -0.30508241057395935, -0.44043225049972534, -0.6823458075523376, -0.3753699064254761, -0.49771684408187866, -0.24529312551021576, -0.5373007655143738, -0.2601655423641205, -0.8155025839805603, 0.874632716178894]} +{"t": 7.4121, "q": [-0.3137638568878174, 0.02221374586224556, -0.0043523660860955715, 0.6279776692390442, -0.33221301436424255, -0.020080871880054474, -0.31713008880615234, 0.0009970874525606632, 0.006843258626759052, 0.6172823905944824, -0.3342237174510956, 0.010907227173447609, -0.033506523817777634, 0.01887178048491478, -0.05855933204293251, -0.2665291726589203, 7.190534961409867e-05, -0.6213700771331787, 0.34217360615730286, -0.30503448843955994, -0.44043225049972534, -0.682465672492981, -0.37550172209739685, -0.49716559052467346, -0.24524518847465515, -0.5373367071151733, -0.258667528629303, -0.8154306411743164, 0.874632716178894]} +{"t": 7.4289, "q": [-0.3139342963695526, 0.02191547118127346, -0.004365758039057255, 0.6279606223106384, -0.33221274614334106, -0.02005179598927498, -0.3171897232532501, 0.0007925567333586514, 0.006843258626759052, 0.617171585559845, -0.3342692255973816, 0.010987618938088417, -0.02906041406095028, 0.018818505108356476, -0.0585339292883873, -0.26633742451667786, 0.00013182648399379104, -0.6192368865013123, 0.34224551916122437, -0.30501052737236023, -0.44022852182388306, -0.6825135946273804, -0.3756095767021179, -0.4969858229160309, -0.24522121250629425, -0.537360668182373, -0.2566421926021576, -0.815382719039917, 0.874632716178894]} +{"t": 7.4456, "q": [-0.31401950120925903, 0.0217365063726902, -0.004205055069178343, 0.6279691457748413, -0.33224111795425415, -0.020015774294734, -0.31727495789527893, 0.0005368932615965605, 0.006977177690714598, 0.6170608401298523, -0.33429422974586487, 0.011060558259487152, -0.023663479834794998, 0.018711932003498077, -0.05844326317310333, -0.26624155044555664, 9.58738019107841e-05, -0.6165164709091187, 0.3422694802284241, -0.304914653301239, -0.43990495800971985, -0.6826214790344238, -0.3756934702396393, -0.49692589044570923, -0.24522121250629425, -0.5374205708503723, -0.25488048791885376, -0.815382719039917, 0.8746566772460938]} +{"t": 7.4623, "q": [-0.3144456148147583, 0.02119961380958557, -0.004258622881025076, 0.6279606223106384, -0.3322612941265106, -0.01997966691851616, -0.317385733127594, 0.00013635384675581008, 0.006937001831829548, 0.616864800453186, -0.3344023525714874, 0.011250605806708336, -0.019739653915166855, 0.01854448951780796, -0.0583520345389843, -0.2660258412361145, 0.000107858024421148, -0.6142634749412537, 0.3422814607620239, -0.304914653301239, -0.43955740332603455, -0.6826574206352234, -0.37704768776893616, -0.49684199690818787, -0.24507740139961243, -0.5373846292495728, -0.25321468710899353, -0.8153467774391174, 0.8747046589851379]} +{"t": 7.479, "q": [-0.3150421679019928, 0.020253658294677734, -0.004874649923294783, 0.6278668642044067, -0.33223655819892883, -0.019964860752224922, -0.3174198269844055, -0.0003664509567897767, 0.006655772216618061, 0.6169159412384033, -0.33464354276657104, 0.011645489372313023, -0.01714162714779377, 0.018262844532728195, -0.05813519284129143, -0.26576218008995056, 0.00037151097785681486, -0.6120942831039429, 0.3423653542995453, -0.3048906624317169, -0.43932971358299255, -0.6826334595680237, -0.3789052367210388, -0.49644652009010315, -0.24501748383045197, -0.5375164747238159, -0.2523278594017029, -0.8153587579727173, 0.8747046589851379]} +{"t": 7.4958, "q": [-0.31570687890052795, 0.019665632396936417, -0.00546389352530241, 0.6279606223106384, -0.33218660950660706, -0.019877150654792786, -0.31753063201904297, -0.0009203884401358664, 0.006146880332380533, 0.6169074177742004, -0.33496788144111633, 0.012172063812613487, -0.014985531568527222, 0.01782897673547268, -0.05782726779580116, -0.2654985189437866, 0.000898816913831979, -0.6100330352783203, 0.3423174023628235, -0.30490267276763916, -0.4392218589782715, -0.6826813817024231, -0.3808107376098633, -0.4960870146751404, -0.2450055032968521, -0.5375164747238159, -0.2520282566547394, -0.8153587579727173, 0.8747286200523376]} +{"t": 7.5127, "q": [-0.3161926567554474, 0.019043518230319023, -0.005812082905322313, 0.6279946565628052, -0.3321574628353119, -0.019825980067253113, -0.3175646960735321, -0.0016192019684240222, 0.005637987982481718, 0.6168477535247803, -0.33523809909820557, 0.012603584676980972, -0.012133057229220867, 0.01734180934727192, -0.05745409429073334, -0.26527082920074463, 0.001701759989373386, -0.608199417591095, 0.342161625623703, -0.30485472083091736, -0.4391379654407501, -0.6827053427696228, -0.38313567638397217, -0.4953799247741699, -0.2447059005498886, -0.5373367071151733, -0.2520522177219391, -0.8153467774391174, 0.8747765421867371]} +{"t": 7.5294, "q": [-0.3164653480052948, 0.01837027072906494, -0.00605313666164875, 0.6280202269554138, -0.33208227157592773, -0.01966533064842224, -0.31758174300193787, -0.0022327941842377186, 0.005410325713455677, 0.6168477535247803, -0.3354293406009674, 0.012910759076476097, -0.008838650770485401, 0.01679377630352974, -0.0570712573826313, -0.26506710052490234, 0.002684466540813446, -0.6064976453781128, 0.34214964509010315, -0.30485472083091736, -0.4390900433063507, -0.682693362236023, -0.38478949666023254, -0.4946369230747223, -0.244286447763443, -0.5373846292495728, -0.252315878868103, -0.8153467774391174, 0.8749443292617798]} +{"t": 7.5461, "q": [-0.3163290023803711, 0.017969731241464615, -0.006039745174348354, 0.6281736493110657, -0.3319447934627533, -0.019409578293561935, -0.3175135850906372, -0.002641855739057064, 0.005383542273193598, 0.6168733239173889, -0.3355169892311096, 0.013093357905745506, -0.004713947419077158, 0.01657292991876602, -0.05672602728009224, -0.26497122645378113, 0.0038109836168587208, -0.6053951382637024, 0.3419578969478607, -0.30485472083091736, -0.4391140043735504, -0.6827412843704224, -0.38555648922920227, -0.49402570724487305, -0.2440827190876007, -0.5375404357910156, -0.25245967507362366, -0.8154066801071167, 0.8752678632736206]} +{"t": 7.5629, "q": [-0.31561315059661865, 0.01764589175581932, -0.005664771888405085, 0.628361165523529, -0.33119991421699524, -0.01813017576932907, -0.3170278072357178, -0.002974218223243952, 0.005624596029520035, 0.6169670820236206, -0.33551710844039917, 0.01310789119452238, -0.00021427033061627299, 0.016070542857050896, -0.056333623826503754, -0.2648034393787384, 0.005320996046066284, -0.6045082807540894, 0.341790109872818, -0.3048667013645172, -0.43912598490715027, -0.682753324508667, -0.3858201503753662, -0.4935583174228668, -0.24397486448287964, -0.5377082228660583, -0.2525196075439453, -0.8154066801071167, 0.8755914568901062]} +{"t": 7.5796, "q": [-0.31524670124053955, 0.01722830720245838, -0.00546389352530241, 0.6286935210227966, -0.33102989196777344, -0.01790313795208931, -0.31616708636283875, -0.003195793367922306, 0.005852258298546076, 0.6172142028808594, -0.335415244102478, 0.013186818920075893, 0.004017568659037352, 0.01419041771441698, -0.05481206998229027, -0.2647075653076172, 0.007933557033538818, -0.6042087078094482, 0.3410950303077698, -0.3049386143684387, -0.4393656551837921, -0.6829210519790649, -0.3860238790512085, -0.49337857961654663, -0.2439628690481186, -0.5378760099411011, -0.2525675594806671, -0.8154066801071167, 0.8759749531745911]} +{"t": 7.5963, "q": [-0.31515294313430786, 0.01687037944793701, -0.005517460871487856, 0.6287701725959778, -0.33098849654197693, -0.017859119921922684, -0.31603074073791504, -0.003596332622691989, 0.005691555794328451, 0.6173676252365112, -0.33539479970932007, 0.013193881139159203, 0.006695947609841824, 0.012850621715188026, -0.053470905870199203, -0.26456376910209656, 0.011420967057347298, -0.6039689779281616, 0.3386861979961395, -0.3049745559692383, -0.439521461725235, -0.6831967234611511, -0.38647928833961487, -0.492719441652298, -0.24397486448287964, -0.5378400683403015, -0.25285518169403076, -0.8154066801071167, 0.8761906623840332]} +{"t": 7.6131, "q": [-0.31515294313430786, 0.016282353550195694, -0.005678163841366768, 0.6289235949516296, -0.3305825889110565, -0.0173752773553133, -0.3157665431499481, -0.004090615548193455, 0.005450501572340727, 0.6176403164863586, -0.335297554731369, 0.013338267803192139, 0.00839671865105629, 0.012035955674946308, -0.05239780992269516, -0.26456376910209656, 0.01450091227889061, -0.6030582189559937, 0.3358938694000244, -0.3050464689731598, -0.43955740332603455, -0.6833884716033936, -0.38663506507873535, -0.49160489439964294, -0.24391493201255798, -0.5377321839332581, -0.2533225417137146, -0.8153946995735168, 0.8763943910598755]} +{"t": 7.6298, "q": [-0.314769446849823, 0.016086343675851822, -0.005745123140513897, 0.6290003061294556, -0.33046239614486694, -0.017221419140696526, -0.31529781222343445, -0.004337756894528866, 0.005222839303314686, 0.6177681684494019, -0.3352935016155243, 0.01334549393504858, 0.009776083752512932, 0.009920019656419754, -0.050291452556848526, -0.2645038366317749, 0.018072212114930153, -0.6017998456954956, 0.3326341509819031, -0.3052741587162018, -0.43983304500579834, -0.6834843158721924, -0.3869946002960205, -0.4900110065937042, -0.24386699497699738, -0.5377202033996582, -0.2541135251522064, -0.815382719039917, 0.8765262365341187]} +{"t": 7.6465, "q": [-0.31511884927749634, 0.01577102579176426, -0.005919218063354492, 0.62904292345047, -0.3302767276763916, -0.01708141900599003, -0.3154512345790863, -0.004601942375302315, 0.004941609688103199, 0.6177852153778076, -0.33520448207855225, 0.013489980250597, 0.010686732828617096, 0.007150156423449516, -0.0479295514523983, -0.2644798755645752, 0.021583588793873787, -0.5990434885025024, 0.32935047149658203, -0.30538201332092285, -0.43997687101364136, -0.6834843158721924, -0.3870425522327423, -0.4874703586101532, -0.2430640608072281, -0.5376962423324585, -0.2549883723258972, -0.8153946995735168, 0.8765262365341187]} +{"t": 7.6633, "q": [-0.31487172842025757, 0.01560058444738388, -0.005959393456578255, 0.6290599703788757, -0.3301478326320648, -0.016869356855750084, -0.31519556045532227, -0.004738296382129192, 0.004928217735141516, 0.6177425980567932, -0.3351275622844696, 0.013612772338092327, 0.011356327682733536, 0.0033311876468360424, -0.04506690800189972, -0.2644558846950531, 0.024327976629137993, -0.5938423275947571, 0.325611412525177, -0.30545392632484436, -0.43995288014411926, -0.6835682392120361, -0.3871264159679413, -0.48436641693115234, -0.24176976084709167, -0.5376842617988586, -0.2555875778198242, -0.8154306411743164, 0.8765142560005188]} +{"t": 7.68, "q": [-0.3148120641708374, 0.015396052971482277, -0.005946001503616571, 0.6289917826652527, -0.3301437795162201, -0.016876578330993652, -0.3151870369911194, -0.004985437728464603, 0.004874649923294783, 0.6177340745925903, -0.3351275622844696, 0.013612772338092327, 0.012012530118227005, -0.0002965396561194211, -0.04201382026076317, -0.26446789503097534, 0.02774348109960556, -0.5887730121612549, 0.32175248861312866, -0.30644863843917847, -0.44002479314804077, -0.6835322976112366, -0.3870185613632202, -0.47954878211021423, -0.24055935442447662, -0.5376962423324585, -0.255719393491745, -0.815466582775116, 0.8764902949333191]} +{"t": 7.6968, "q": [-0.31451380252838135, 0.01523413322865963, -0.005946001503616571, 0.6289832592010498, -0.3301106095314026, -0.016832629218697548, -0.31492283940315247, -0.005113269202411175, 0.004874649923294783, 0.6176999807357788, -0.3351114094257355, 0.013641693629324436, 0.012213408946990967, -0.0034972666762769222, -0.03971203416585922, -0.2645277976989746, 0.03212970867753029, -0.5847463011741638, 0.31836095452308655, -0.3073714077472687, -0.4399408996105194, -0.6836161613464355, -0.3871384263038635, -0.4739401638507843, -0.23975640535354614, -0.5376722812652588, -0.25647440552711487, -0.8154426217079163, 0.8764663338661194]} +{"t": 7.7136, "q": [-0.3141814172267914, 0.015191521495580673, -0.005946001503616571, 0.6288724541664124, -0.33010658621788025, -0.016839850693941116, -0.31452232599258423, -0.00520701240748167, 0.004821082577109337, 0.6175039410591125, -0.3351033329963684, 0.013656144961714745, 0.012534813955426216, -0.007768666837364435, -0.037594571709632874, -0.2645517587661743, 0.03719903528690338, -0.5814865827560425, 0.3156764805316925, -0.31001991033554077, -0.43960535526275635, -0.6836401224136353, -0.38723430037498474, -0.46873900294303894, -0.2389414757490158, -0.5377202033996582, -0.25775671005249023, -0.8154785633087158, 0.8764543533325195]} +{"t": 7.7303, "q": [-0.3133377432823181, 0.014952903613448143, -0.005972785409539938, 0.628736138343811, -0.33011049032211304, -0.016818100586533546, -0.31364452838897705, -0.0054456316865980625, 0.004767514765262604, 0.6171460151672363, -0.33508312702178955, 0.013692273758351803, 0.01260177418589592, -0.011864325031638145, -0.03602524474263191, -0.2644319236278534, 0.04255598410964012, -0.5777475237846375, 0.31419044733047485, -0.3136870861053467, -0.4393177330493927, -0.683724045753479, -0.3874979317188263, -0.46394529938697815, -0.2377670258283615, -0.5377321839332581, -0.25893115997314453, -0.8154426217079163, 0.8763584494590759]} +{"t": 7.747, "q": [-0.3125622272491455, 0.014663150534033775, -0.005972785409539938, 0.6285827159881592, -0.33009785413742065, -0.016781629994511604, -0.31281790137290955, -0.0057524279691278934, 0.004780906718224287, 0.6167539954185486, -0.33500632643699646, 0.013829616829752922, 0.012735692784190178, -0.015670092776417732, -0.03474950045347214, -0.2645757496356964, 0.04701411724090576, -0.5727860331535339, 0.3130878806114197, -0.31469377875328064, -0.43875446915626526, -0.6839756965637207, -0.38780951499938965, -0.4588400423526764, -0.23643678426742554, -0.5377441644668579, -0.260608971118927, -0.8154785633087158, 0.8762506246566772]} +{"t": 7.7638, "q": [-0.3116844594478607, 0.014109212905168533, -0.005986177362501621, 0.6284292936325073, -0.33010175824165344, -0.016759879887104034, -0.3118208050727844, -0.006391586735844612, 0.004727339372038841, 0.6164983510971069, -0.33497828245162964, 0.013909281231462955, 0.012829435989260674, -0.019869951531291008, -0.03357534483075142, -0.2650551199913025, 0.053821153938770294, -0.5695742964744568, 0.3123568594455719, -0.31626370549201965, -0.43828707933425903, -0.684323251247406, -0.3884207308292389, -0.4517933130264282, -0.23466311395168304, -0.5377321839332581, -0.26269420981407166, -0.8154785633087158, 0.8760708570480347]} +{"t": 7.7805, "q": [-0.3113350570201874, 0.013393355533480644, -0.006213839631527662, 0.6281566023826599, -0.330076664686203, -0.016701485961675644, -0.311292439699173, -0.007107444107532501, 0.004553244449198246, 0.615978479385376, -0.334982693195343, 0.01394567359238863, 0.012829435989260674, -0.0234919972717762, -0.032826971262693405, -0.2651749551296234, 0.06164685636758804, -0.5671534538269043, 0.3106910288333893, -0.3177497386932373, -0.4378676414489746, -0.6853059530258179, -0.38863644003868103, -0.44592103362083435, -0.23238611221313477, -0.5376842617988586, -0.26384469866752625, -0.8154906034469604, 0.875831127166748]} +{"t": 7.7973, "q": [-0.3108237087726593, 0.012421835213899612, -0.006615596357733011, 0.6279350519180298, -0.32970190048217773, -0.016029054298996925, -0.3102782964706421, -0.008019310422241688, 0.004218447022140026, 0.6156461238861084, -0.33493050932884216, 0.01408324483782053, 0.01293657161295414, -0.02658108063042164, -0.03188164532184601, -0.2651509940624237, 0.06833405047655106, -0.564924418926239, 0.3084619641304016, -0.31965523958206177, -0.43735232949256897, -0.6861328482627869, -0.3888881206512451, -0.4399888515472412, -0.2305765002965927, -0.5376962423324585, -0.2652468681335449, -0.8154785633087158, 0.8756513595581055]} +{"t": 7.814, "q": [-0.31061917543411255, 0.011245783418416977, -0.007231623865664005, 0.627636730670929, -0.329306423664093, -0.015334615483880043, -0.30946868658065796, -0.00926353968679905, 0.003468500915914774, 0.6149814128875732, -0.3349085748195648, 0.014402822591364384, 0.01293657161295414, -0.0293502826243639, -0.030917886644601822, -0.26529479026794434, 0.07618372142314911, -0.5635941624641418, 0.30640068650245667, -0.321464866399765, -0.43668121099472046, -0.6866961121559143, -0.38910382986068726, -0.4327024221420288, -0.22886274755001068, -0.5376603007316589, -0.2673321068286896, -0.8154785633087158, 0.8754116892814636]} +{"t": 7.8308, "q": [-0.31038057804107666, 0.010163474828004837, -0.007887826301157475, 0.6275174617767334, -0.3288983702659607, -0.014603722840547562, -0.3082159459590912, -0.010490723885595798, 0.002691771136596799, 0.6142655611038208, -0.334769070148468, 0.014888419769704342, 0.01319101732224226, -0.031465690582990646, -0.029938146471977234, -0.2653786838054657, 0.08382965624332428, -0.5631986856460571, 0.304914653301239, -0.32200413942337036, -0.43638160824775696, -0.6876308917999268, -0.3890918493270874, -0.4263148307800293, -0.22609439492225647, -0.5376242995262146, -0.26965704560279846, -0.8154906034469604, 0.8752918839454651]} +{"t": 7.8475, "q": [-0.3101845681667328, 0.009166385978460312, -0.00814227294176817, 0.6274151802062988, -0.3287193775177002, -0.014289405196905136, -0.30741485953330994, -0.011632687412202358, 0.0021962709724903107, 0.6135667562484741, -0.33458107709884644, 0.01546072494238615, 0.014048098586499691, -0.03337510675191879, -0.028795382007956505, -0.26541462540626526, 0.09172725677490234, -0.5629469752311707, 0.3027215301990509, -0.3223876357078552, -0.43633365631103516, -0.6887214183807373, -0.38923564553260803, -0.419567734003067, -0.2211209386587143, -0.5374205708503723, -0.2721976935863495, -0.8154785633087158, 0.8751360774040222]} +{"t": 7.8642, "q": [-0.31021010875701904, 0.008331218734383583, -0.00806192122399807, 0.6273128986358643, -0.32865652441978455, -0.014136149547994137, -0.30708250403404236, -0.012672385200858116, 0.0021427033934742212, 0.612825334072113, -0.3343983292579651, 0.016171211376786232, 0.01580243743956089, -0.03486902266740799, -0.028396183624863625, -0.26534274220466614, 0.10099106281995773, -0.5630788207054138, 0.2992580831050873, -0.3223876357078552, -0.4362018406391144, -0.6906628608703613, -0.3894154131412506, -0.4121614694595337, -0.21371468901634216, -0.5371449589729309, -0.2737676501274109, -0.8154546022415161, 0.8751121163368225]} +{"t": 7.881, "q": [-0.31015899777412415, 0.007606839295476675, -0.007968178018927574, 0.6273469924926758, -0.32861047983169556, -0.01402668934315443, -0.3065115213394165, -0.013439375907182693, 0.002169487066566944, 0.6120157241821289, -0.3339214622974396, 0.017024118453264236, 0.018079059198498726, -0.03592223674058914, -0.027951454743742943, -0.265582412481308, 0.10876882821321487, -0.5631507039070129, 0.2967533767223358, -0.32245954871177673, -0.43603405356407166, -0.6939705014228821, -0.3894393742084503, -0.406049519777298, -0.20691964030265808, -0.5371449589729309, -0.2751578092575073, -0.815466582775116, 0.8751360774040222]} +{"t": 7.8977, "q": [-0.3101419508457184, 0.006626796443015337, -0.007874434813857079, 0.627261757850647, -0.3285976052284241, -0.013961142860352993, -0.30587238073349, -0.014504640363156796, 0.0021427033934742212, 0.6109504699707031, -0.33344849944114685, 0.017855247482657433, 0.02098510041832924, -0.036900077015161514, -0.027672190219163895, -0.26633742451667786, 0.11605523526668549, -0.5631267428398132, 0.2944404184818268, -0.3225434422492981, -0.4359022378921509, -0.6973141431808472, -0.3895112872123718, -0.3996499478816986, -0.20057997107505798, -0.5373007655143738, -0.27691948413848877, -0.81552654504776, 0.8753637671470642]} +{"t": 7.9145, "q": [-0.3100908100605011, 0.005535965319722891, -0.00772712379693985, 0.6272192001342773, -0.3285518288612366, -0.013880741782486439, -0.3052673041820526, -0.015442073345184326, 0.0022230546455830336, 0.6103368401527405, -0.333019882440567, 0.01859232597053051, 0.024788398295640945, -0.03768876940011978, -0.02755114808678627, -0.2674998939037323, 0.12269449979066849, -0.5631507039070129, 0.29217541217803955, -0.3225194811820984, -0.4355427026748657, -0.6995431780815125, -0.3896670937538147, -0.39279496669769287, -0.19539080560207367, -0.5373247265815735, -0.2803110182285309, -0.81552654504776, 0.8753637671470642]} +{"t": 7.9312, "q": [-0.30987775325775146, 0.0045900107361376286, -0.007445894181728363, 0.6272532343864441, -0.32853907346725464, -0.013829742558300495, -0.3044065535068512, -0.016336895525455475, 0.0023703654296696186, 0.6094591021537781, -0.3326401710510254, 0.019257020205259323, 0.02973000891506672, -0.03835542872548103, -0.027301162481307983, -0.26963308453559875, 0.1287824809551239, -0.5631747245788574, 0.2898624539375305, -0.3225194811820984, -0.43485960364341736, -0.7014366984367371, -0.38985884189605713, -0.38601189851760864, -0.19151990115642548, -0.537360668182373, -0.28514066338539124, -0.8154906034469604, 0.8754836320877075]} +{"t": 7.9479, "q": [-0.3097584545612335, 0.003720755223184824, -0.007553029339760542, 0.6272277235984802, -0.3285183906555176, -0.01380771491676569, -0.30313676595687866, -0.017061274498701096, 0.0022900141775608063, 0.6080103516578674, -0.3320671021938324, 0.020268253982067108, 0.03381453827023506, -0.03884819149971008, -0.02721891738474369, -0.2713468372821808, 0.13558952510356903, -0.5630548596382141, 0.2867944836616516, -0.3225194811820984, -0.4339008629322052, -0.7029946446418762, -0.3906857371330261, -0.37976810336112976, -0.18670225143432617, -0.5370610952377319, -0.2911447584629059, -0.8154906034469604, 0.8757233023643494]} +{"t": 7.9648, "q": [-0.3094857335090637, 0.0031156851910054684, -0.007847650907933712, 0.6271595358848572, -0.32845166325569153, -0.013676228001713753, -0.3017561733722687, -0.01764077879488468, 0.002022176282480359, 0.6066126823425293, -0.33131974935531616, 0.021502912044525146, 0.035689402371644974, -0.03905271366238594, -0.027140123769640923, -0.2722935676574707, 0.14373879134655, -0.5628631114959717, 0.28334304690361023, -0.3225434422492981, -0.4331817924976349, -0.7041690945625305, -0.393154501914978, -0.3737400472164154, -0.1801828294992447, -0.5370011329650879, -0.2962620258331299, -0.8155145645141602, 0.8763943910598755]} +{"t": 7.9815, "q": [-0.30934086441993713, 0.0026895790360867977, -0.007914610207080841, 0.6271510124206543, -0.32843098044395447, -0.01365421898663044, -0.30103179812431335, -0.018220283091068268, 0.0018882573349401355, 0.6053344011306763, -0.3307136297225952, 0.02248474210500717, 0.037390172481536865, -0.039257731288671494, -0.027198534458875656, -0.2725452482700348, 0.15271498262882233, -0.56186842918396, 0.2789328396320343, -0.3225434422492981, -0.43259456753730774, -0.7053076028823853, -0.39677372574806213, -0.3676760196685791, -0.17135044932365417, -0.5352394580841064, -0.30245786905288696, -0.81552654504776, 0.8767539262771606]} +{"t": 7.9982, "q": [-0.3092641830444336, 0.0022379071451723576, -0.007914610207080841, 0.6271851062774658, -0.32843098044395447, -0.01365421898663044, -0.29988130927085876, -0.01871456578373909, 0.0019284329609945416, 0.6039963960647583, -0.3303613066673279, 0.0229678675532341, 0.03972036391496658, -0.03968233987689018, -0.027149086818099022, -0.2731204926967621, 0.16196680068969727, -0.5608617663383484, 0.27490612864494324, -0.32278311252593994, -0.43227100372314453, -0.7061944603919983, -0.4004289209842682, -0.3617318570613861, -0.16441158950328827, -0.5329864621162415, -0.3118654787540436, -0.8154306411743164, 0.8773890733718872]} +{"t": 8.015, "q": [-0.30914485454559326, 0.0019055446609854698, -0.007914610207080841, 0.6271851062774658, -0.328431099653244, -0.013668748550117016, -0.29888424277305603, -0.019046928733587265, 0.0019686087034642696, 0.6026243567466736, -0.3297702968120575, 0.023804543539881706, 0.0418228916823864, -0.04011380672454834, -0.026898900046944618, -0.27392342686653137, 0.17051155865192413, -0.5597711801528931, 0.2721617519855499, -0.32295089960098267, -0.43199536204338074, -0.7068415880203247, -0.40431180596351624, -0.3551165759563446, -0.1591864675283432, -0.5315243601799011, -0.31960731744766235, -0.815466582775116, 0.8782998919487]} +{"t": 8.0318, "q": [-0.30900850892066956, 0.0015561380423605442, -0.007901218719780445, 0.6271424889564514, -0.32843929529190063, -0.01366883423179388, -0.2981683611869812, -0.01943894475698471, 0.002008784329518676, 0.6017465591430664, -0.32921040058135986, 0.024452613666653633, 0.04403255134820938, -0.04090135917067528, -0.026544108986854553, -0.2747143805027008, 0.17957162857055664, -0.5579255819320679, 0.2689499855041504, -0.32305875420570374, -0.43156394362449646, -0.7071651816368103, -0.4081587493419647, -0.3480578660964966, -0.15384149551391602, -0.5298465490341187, -0.3290628492832184, -0.8154546022415161, 0.8788272142410278]} +{"t": 8.0485, "q": [-0.3089914619922638, 0.0011044656857848167, -0.007847650907933712, 0.6271424889564514, -0.32843515276908875, -0.013661527074873447, -0.2980234920978546, -0.019873572513461113, 0.0022230546455830336, 0.6014653444290161, -0.3287452459335327, 0.0251525416970253, 0.04693859443068504, -0.042159367352724075, -0.026338692754507065, -0.2754693925380707, 0.188044473528862, -0.5549415349960327, 0.2651749551296234, -0.3231666088104248, -0.43121638894081116, -0.7072610259056091, -0.4114064574241638, -0.34113097190856934, -0.1498028188943863, -0.5285522937774658, -0.3374038636684418, -0.8154186606407166, 0.8796061873435974]} +{"t": 8.0652, "q": [-0.3088977038860321, 0.0007806252688169479, -0.007753907702863216, 0.6271424889564514, -0.3284434676170349, -0.013676142320036888, -0.29786157608032227, -0.020129237323999405, 0.0024507169146090746, 0.6014653444290161, -0.32858672738075256, 0.025303473696112633, 0.05012586712837219, -0.0435991995036602, -0.026088612154126167, -0.27650004625320435, 0.19584621489048004, -0.5515620112419128, 0.26223883032798767, -0.32335835695266724, -0.43096473813056946, -0.7074048519134521, -0.4141508638858795, -0.3356182277202606, -0.14518888294696808, -0.5268864631652832, -0.34422290325164795, -0.8153707385063171, 0.8803492188453674]} +{"t": 8.082, "q": [-0.30888068675994873, 0.00046530691906809807, -0.007780691608786583, 0.6271424889564514, -0.3284434676170349, -0.013676142320036888, -0.2975121736526489, -0.020418988540768623, 0.0024775005877017975, 0.6013801097869873, -0.3285094201564789, 0.025368036702275276, 0.05308547616004944, -0.0450625941157341, -0.026090241968631744, -0.27737489342689514, 0.20377977192401886, -0.5474873185157776, 0.25867950916290283, -0.3238137662410736, -0.4307250380516052, -0.7076325416564941, -0.41694319248199463, -0.330357164144516, -0.13916082680225372, -0.5250288844108582, -0.3522283732891083, -0.8152628540992737, 0.8810083270072937]} +{"t": 8.0989, "q": [-0.30869320034980774, 0.00025225430727005005, -0.007874434813857079, 0.6271339654922485, -0.3284476101398468, -0.013683449476957321, -0.29694119095802307, -0.020563865080475807, 0.002423933008685708, 0.6014227271080017, -0.32844412326812744, 0.025425484403967857, 0.055683501064777374, -0.04663138464093208, -0.0259687677025795, -0.2784534692764282, 0.21173729002475739, -0.5433168411254883, 0.25483256578445435, -0.3245927393436432, -0.430772989988327, -0.707872211933136, -0.419795423746109, -0.3254436254501343, -0.13249759376049042, -0.5229076743125916, -0.3593829572200775, -0.8150830864906311, 0.8816674947738647]} +{"t": 8.1156, "q": [-0.30831822752952576, 9.885616600513458e-05, -0.008155664429068565, 0.6271169185638428, -0.32844358682632446, -0.01369067095220089, -0.29631906747817993, -0.020614996552467346, 0.0023703654296696186, 0.6014142036437988, -0.3284197747707367, 0.025468822568655014, 0.05829492211341858, -0.04834342375397682, -0.02571038156747818, -0.28044286370277405, 0.2203179895877838, -0.5397695302963257, 0.2513211965560913, -0.32642632722854614, -0.43096473813056946, -0.7079920768737793, -0.42312705516815186, -0.31953540444374084, -0.12582238018512726, -0.5205228328704834, -0.36743634939193726, -0.8149872422218323, 0.8821348547935486]} +{"t": 8.1324, "q": [-0.3081648051738739, -0.00019089598208665848, -0.008785083889961243, 0.627099871635437, -0.32844358682632446, -0.01369067095220089, -0.29575660824775696, -0.020683174952864647, 0.002276622224599123, 0.6014142036437988, -0.32840341329574585, 0.02548317238688469, 0.060089435428380966, -0.04989644140005112, -0.025581786409020424, -0.2823004126548767, 0.22869497537612915, -0.535419225692749, 0.24718663096427917, -0.32845166325569153, -0.4307370185852051, -0.7079441547393799, -0.4268661141395569, -0.31276431679725647, -0.11933891475200653, -0.5178143978118896, -0.37584927678108215, -0.8148314356803894, 0.8822547197341919]} +{"t": 8.1493, "q": [-0.30813074111938477, -0.0004465593956410885, -0.00958859734237194, 0.6271339654922485, -0.3284434676170349, -0.013676142320036888, -0.29510894417762756, -0.020717263221740723, 0.002169487066566944, 0.6014227271080017, -0.32838720083236694, 0.025512052699923515, 0.06098669394850731, -0.051328644156455994, -0.025548622012138367, -0.2837984263896942, 0.23785091936588287, -0.5310329794883728, 0.2443343847990036, -0.33196303248405457, -0.4302097260951996, -0.7079082131385803, -0.4312523305416107, -0.30471092462539673, -0.11278354376554489, -0.5142790675163269, -0.3833034634590149, -0.8148074746131897, 0.8823505640029907]} +{"t": 8.1661, "q": [-0.3078750669956207, -0.0005743908695876598, -0.010030529461801052, 0.6271680593490601, -0.32844358682632446, -0.01369067095220089, -0.2944953441619873, -0.0207513514906168, 0.002156095113605261, 0.6014142036437988, -0.3283913731575012, 0.025519361719489098, 0.06161611154675484, -0.05257705599069595, -0.025198988616466522, -0.2838823199272156, 0.24538899958133698, -0.5257359743118286, 0.2424648404121399, -0.3350549638271332, -0.42897534370422363, -0.7078841924667358, -0.4359022378921509, -0.2970290184020996, -0.1059405505657196, -0.5104081630706787, -0.3903142213821411, -0.8145078420639038, 0.8824584484100342]} +{"t": 8.1828, "q": [-0.30745747685432434, -0.0007703998126089573, -0.010231408290565014, 0.6271595358848572, -0.32844358682632446, -0.01369067095220089, -0.2938902676105499, -0.020904749631881714, 0.002156095113605261, 0.6013715863227844, -0.32838311791419983, 0.025519290938973427, 0.062098219990730286, -0.05372581258416176, -0.02465631440281868, -0.2833310663700104, 0.2561388313770294, -0.5211340188980103, 0.24037958681583405, -0.33892586827278137, -0.42750129103660583, -0.7080519795417786, -0.4414389431476593, -0.2901141345500946, -0.09624531120061874, -0.5059620141983032, -0.397384911775589, -0.814124345779419, 0.8825662732124329]} +{"t": 8.1996, "q": [-0.30717626214027405, -0.000855620950460434, -0.010311760008335114, 0.6271595358848572, -0.32844358682632446, -0.01369067095220089, -0.2933448553085327, -0.020981447771191597, 0.002129311440512538, 0.6013545393943787, -0.3283751308917999, 0.025548260658979416, 0.06233927607536316, -0.05462456867098808, -0.024140814319252968, -0.28301945328712463, 0.26706844568252563, -0.5170474052429199, 0.2370719462633133, -0.34300050139427185, -0.426482617855072, -0.7085433602333069, -0.44739508628845215, -0.2831992208957672, -0.08601078391075134, -0.5010844469070435, -0.40428784489631653, -0.8140045404434204, 0.8826261758804321]} +{"t": 8.2168, "q": [-0.3069291114807129, -0.0008897092193365097, -0.010392110794782639, 0.6271424889564514, -0.3284476101398468, -0.013683449476957321, -0.2925693392753601, -0.02099849283695221, 0.0019686087034642696, 0.6014142036437988, -0.32835066318511963, 0.025577068328857422, 0.06296869367361069, -0.05553837865591049, -0.023676108568906784, -0.2827558219432831, 0.2780100703239441, -0.5139075517654419, 0.23376429080963135, -0.34514567255973816, -0.4258594512939453, -0.7091904878616333, -0.4526921212673187, -0.2745346426963806, -0.07778960466384888, -0.49644652009010315, -0.4113585352897644, -0.8139206171035767, 0.8825902342796326]} +{"t": 8.2339, "q": [-0.3066138029098511, -0.0010090190917253494, -0.010539421811699867, 0.6271083950996399, -0.32845166325569153, -0.013676228001713753, -0.2918790578842163, -0.02105814777314663, 0.0018882573349401355, 0.6012778282165527, -0.32831817865371704, 0.025634845718741417, 0.0638793408870697, -0.05645919218659401, -0.023098889738321304, -0.2826958894729614, 0.2866986095905304, -0.5113309621810913, 0.23152324557304382, -0.34661975502967834, -0.42505648732185364, -0.7097777128219604, -0.4572221636772156, -0.2668766975402832, -0.071869395673275, -0.4918326139450073, -0.4174225628376007, -0.8138726949691772, 0.8825662732124329]} +{"t": 8.2507, "q": [-0.30621325969696045, -0.001324336975812912, -0.010793867520987988, 0.6270657777786255, -0.32845166325569153, -0.013676228001713753, -0.29131659865379333, -0.021262677386403084, 0.001901649171486497, 0.6012693047523499, -0.3282816708087921, 0.02569984272122383, 0.064615897834301, -0.05761338397860527, -0.022379864007234573, -0.28261199593544006, 0.296477735042572, -0.5070645809173584, 0.22752051055431366, -0.35101795196533203, -0.4235464930534363, -0.7106166481971741, -0.462758868932724, -0.2576368749141693, -0.06424742937088013, -0.4863797724246979, -0.4249366521835327, -0.8136450052261353, 0.8825423121452332]} +{"t": 8.2674, "q": [-0.30565932393074036, -0.0016737438272684813, -0.011021530255675316, 0.6270487308502197, -0.32845568656921387, -0.013669006526470184, -0.29058369994163513, -0.02148425206542015, 0.0018614735454320908, 0.6013119220733643, -0.3282734155654907, 0.025699753314256668, 0.06527210026979446, -0.0588352344930172, -0.02158971317112446, -0.28198882937431335, 0.30427947640419006, -0.5023068189620972, 0.2238173931837082, -0.3568902313709259, -0.4218687117099762, -0.7122704386711121, -0.46779224276542664, -0.2508538067340851, -0.055151402950286865, -0.4814542531967163, -0.4307609796524048, -0.8132854700088501, 0.8824344277381897]} +{"t": 8.2842, "q": [-0.30520763993263245, -0.001989062177017331, -0.01124919205904007, 0.6270231604576111, -0.32845568656921387, -0.013669006526470184, -0.2899104356765747, -0.021688783541321754, 0.0018748653819784522, 0.6012778282165527, -0.3282531499862671, 0.025735853239893913, 0.06622292101383209, -0.05978523939847946, -0.02100711315870285, -0.28136563301086426, 0.3124527335166931, -0.49709367752075195, 0.2193233072757721, -0.36309805512428284, -0.41928011178970337, -0.7152904868125916, -0.4730413258075714, -0.2440108060836792, -0.04601942375302315, -0.4757138192653656, -0.4359501600265503, -0.8133094310760498, 0.8824584484100342]} +{"t": 8.3011, "q": [-0.3047815263271332, -0.0024066457990556955, -0.01177147589623928, 0.6269975900650024, -0.328471839427948, -0.013640101999044418, -0.2890326678752899, -0.021876269951462746, 0.0017543383873999119, 0.6012522578239441, -0.3282491862773895, 0.025757620111107826, 0.066999651491642, -0.06057696416974068, -0.020541604608297348, -0.2812098562717438, 0.32066190242767334, -0.4932347536087036, 0.21494905650615692, -0.36731651425361633, -0.417254775762558, -0.717795193195343, -0.4784342348575592, -0.23574168980121613, -0.03922436758875847, -0.47008123993873596, -0.44260141253471375, -0.8133214116096497, 0.8823865056037903]} +{"t": 8.3179, "q": [-0.303861141204834, -0.0029861496295779943, -0.012427679263055325, 0.6269123554229736, -0.32848408818244934, -0.013632984831929207, -0.28759244084358215, -0.0221489779651165, 0.0017677302239462733, 0.6011841297149658, -0.3282491862773895, 0.025757620111107826, 0.06785673648118973, -0.061345476657152176, -0.02003219537436962, -0.2814495265483856, 0.32905086874961853, -0.49035853147506714, 0.21149760484695435, -0.37213414907455444, -0.4151814877986908, -0.7191494107246399, -0.485169380903244, -0.22754448652267456, -0.03311241418123245, -0.46346592903137207, -0.4494563937187195, -0.8133813738822937, 0.8821228742599487]} +{"t": 8.3346, "q": [-0.3029833734035492, -0.0035912198945879936, -0.012802652083337307, 0.6266481876373291, -0.32848408818244934, -0.013632984831929207, -0.28685101866722107, -0.022600650787353516, 0.0018480815924704075, 0.6012267470359802, -0.3282491862773895, 0.025757620111107826, 0.06852632761001587, -0.06179755553603172, -0.019755894318223, -0.2808742821216583, 0.33783531188964844, -0.48625993728637695, 0.20822592079639435, -0.37729936838150024, -0.41332393884658813, -0.7204556465148926, -0.4925396740436554, -0.2187959998846054, -0.02653307467699051, -0.4556642174720764, -0.4548492729663849, -0.8133693933486938, 0.8816434741020203]} +{"t": 8.3514, "q": [-0.30204594135284424, -0.004059936385601759, -0.012896395288407803, 0.6265629529953003, -0.3285124599933624, -0.013596945442259312, -0.2866635322570801, -0.023001190274953842, 0.001941824913956225, 0.6012097001075745, -0.32824501395225525, 0.025750311091542244, 0.06941019743680954, -0.06197098270058632, -0.01966945081949234, -0.2793882489204407, 0.34576886892318726, -0.4822811782360077, 0.20591296255588531, -0.3833274245262146, -0.4123532176017761, -0.722217321395874, -0.5000178217887878, -0.2110062539577484, -0.017976338043808937, -0.4485815465450287, -0.4604578912258148, -0.8133214116096497, 0.8808285593986511]} +{"t": 8.3682, "q": [-0.30135565996170044, -0.004477520007640123, -0.012909787707030773, 0.6265629529953003, -0.3285609781742096, -0.013524798676371574, -0.2866635322570801, -0.02346990630030632, 0.0019953923765569925, 0.6012011766433716, -0.3282491862773895, 0.025757620111107826, 0.07107079029083252, -0.06197851896286011, -0.019664844498038292, -0.27769845724105835, 0.35393011569976807, -0.4785301089286804, 0.20320452749729156, -0.3892476260662079, -0.4114663898944855, -0.7249017953872681, -0.5074360370635986, -0.20400746166706085, -0.00938364863395691, -0.44222989678382874, -0.4671211242675781, -0.81329745054245, 0.8801814317703247]} +{"t": 8.385, "q": [-0.301057368516922, -0.004835448693484068, -0.012909787707030773, 0.6266055703163147, -0.3286536633968353, -0.013344120234251022, -0.2866550087928772, -0.023785224184393883, 0.0021159194875508547, 0.6011670827865601, -0.3282533884048462, 0.02576492913067341, 0.07322688400745392, -0.06197098270058632, -0.01966945081949234, -0.2756611406803131, 0.3615880310535431, -0.4754621386528015, 0.19910591840744019, -0.3947124481201172, -0.41069939732551575, -0.7269391417503357, -0.5139674544334412, -0.19600200653076172, -0.002624545246362686, -0.4367291331291199, -0.4716391861438751, -0.8133693933486938, 0.8798817992210388]} +{"t": 8.4017, "q": [-0.3010232746601105, -0.0052785989828407764, -0.012909787707030773, 0.6266993284225464, -0.3287546634674072, -0.013178057037293911, -0.28662943840026855, -0.024202806875109673, 0.0021828790195286274, 0.6011670827865601, -0.3282533884048462, 0.02576492913067341, 0.0759856179356575, -0.06197091564536095, -0.01965971291065216, -0.2733961343765259, 0.37033653259277344, -0.4741678535938263, 0.19422833621501923, -0.4018190801143646, -0.4103159010410309, -0.7286528944969177, -0.5216853022575378, -0.1871936023235321, 0.004218447487801313, -0.4289873242378235, -0.47560596466064453, -0.8134772181510925, 0.8792226910591125]} +{"t": 8.4184, "q": [-0.30103179812431335, -0.0057814037427306175, -0.01293657161295414, 0.6267589926719666, -0.32875844836235046, -0.013141777366399765, -0.2866550087928772, -0.024654479697346687, 0.0022498385515064, 0.6011244654655457, -0.3282491862773895, 0.025757620111107826, 0.07840955257415771, -0.06197085231542587, -0.01964998058974743, -0.2707236409187317, 0.378030389547348, -0.47328102588653564, 0.18938671052455902, -0.4057139754295349, -0.41012415289878845, -0.7297074794769287, -0.5290675759315491, -0.17896044254302979, 0.009167931973934174, -0.4218687117099762, -0.481250524520874, -0.8134891986846924, 0.8786594271659851]} +{"t": 8.4352, "q": [-0.3010232746601105, -0.006284208502620459, -0.012923179194331169, 0.6268442273139954, -0.3287666440010071, -0.01314186304807663, -0.2866464853286743, -0.025191372260451317, 0.002356973709538579, 0.601098895072937, -0.32825756072998047, 0.02577223815023899, 0.08165039122104645, -0.06197831779718399, -0.01963563822209835, -0.26829084753990173, 0.3856044411659241, -0.47323307394981384, 0.1856955736875534, -0.4109630584716797, -0.4099563658237457, -0.7309658527374268, -0.5365098118782043, -0.17136242985725403, 0.014704644680023193, -0.41491785645484924, -0.4875662326812744, -0.8134652376174927, 0.8778804540634155]} +{"t": 8.4519, "q": [-0.3010232746601105, -0.00672735832631588, -0.012909787707030773, 0.6269720196723938, -0.32876652479171753, -0.013127334415912628, -0.2866464853286743, -0.025677133351564407, 0.002356973709538579, 0.6010648012161255, -0.32825756072998047, 0.02577223815023899, 0.084288589656353, -0.06197831779718399, -0.01963563822209835, -0.26511502265930176, 0.3925912380218506, -0.4722743630409241, 0.1821002960205078, -0.4153852164745331, -0.40977662801742554, -0.73222416639328, -0.5441437363624573, -0.1652744561433792, 0.021763352677226067, -0.4070681929588318, -0.49170076847076416, -0.8135251402854919, 0.8771973252296448]} +{"t": 8.4687, "q": [-0.301057368516922, -0.007034154608845711, -0.013016922399401665, 0.6271254420280457, -0.32876259088516235, -0.013149084523320198, -0.28662943840026855, -0.025966886430978775, 0.0023435817565768957, 0.6010733246803284, -0.32825732231140137, 0.025743162259459496, 0.08645807951688766, -0.06199319288134575, -0.01959722489118576, -0.2609564960002899, 0.39931437373161316, -0.4705486297607422, 0.17729462683200836, -0.4225877523422241, -0.4097166955471039, -0.7350165247917175, -0.5513222813606262, -0.15829962491989136, 0.02810300886631012, -0.3987751007080078, -0.4953320026397705, -0.8136569857597351, 0.8767539262771606]} +{"t": 8.4854, "q": [-0.30108293890953064, -0.00729834008961916, -0.013257976621389389, 0.6273981332778931, -0.32876676321029663, -0.013156392611563206, -0.2866123914718628, -0.02617993950843811, 0.0023435817565768957, 0.601098895072937, -0.32825756072998047, 0.02577223815023899, 0.08844007551670074, -0.062128424644470215, -0.019455917179584503, -0.2573612332344055, 0.406049519777298, -0.4680798649787903, 0.1723930835723877, -0.430029958486557, -0.4097166955471039, -0.7383960485458374, -0.5579016208648682, -0.15083345770835876, 0.032884713262319565, -0.390697717666626, -0.5005810856819153, -0.813896656036377, 0.8761667013168335]} +{"t": 8.5021, "q": [-0.30112555623054504, -0.007545481435954571, -0.013472246937453747, 0.6275941729545593, -0.32876676321029663, -0.013156392611563206, -0.2866123914718628, -0.026375947520136833, 0.0023301898036152124, 0.6010903716087341, -0.3282533884048462, 0.02576492913067341, 0.08971230685710907, -0.06212835758924484, -0.01944616809487343, -0.25347834825515747, 0.4127127528190613, -0.46461641788482666, 0.16733573377132416, -0.435746431350708, -0.40950098633766174, -0.74006187915802, -0.5644330382347107, -0.14307966828346252, 0.036444030702114105, -0.38188931345939636, -0.5065372586250305, -0.814495861530304, 0.8758071660995483]} +{"t": 8.5189, "q": [-0.3011426031589508, -0.007758534513413906, -0.013632949441671371, 0.6278157234191895, -0.3287709355354309, -0.013163699768483639, -0.286527156829834, -0.026623088866472244, 0.0023435817565768957, 0.6009113788604736, -0.32825756072998047, 0.02577223815023899, 0.09085062146186829, -0.06215116009116173, -0.019461577758193016, -0.2496793419122696, 0.4190284311771393, -0.46092528104782104, 0.16352474689483643, -0.4417625069618225, -0.40922534465789795, -0.7415719032287598, -0.5709764361381531, -0.13561348617076874, 0.03924833610653877, -0.37435123324394226, -0.511726438999176, -0.814555823802948, 0.8751600384712219]} +{"t": 8.5356, "q": [-0.3011937141418457, -0.00798863172531128, -0.013646341860294342, 0.6279946565628052, -0.3287709355354309, -0.013163699768483639, -0.28650158643722534, -0.026895796880126, 0.002356973709538579, 0.600800633430481, -0.32825756072998047, 0.02577223815023899, 0.09106489270925522, -0.06214355677366257, -0.019456440582871437, -0.2452092319726944, 0.4258114993572235, -0.4560477137565613, 0.15869511663913727, -0.4461127817630768, -0.40848231315612793, -0.7426384687423706, -0.5767168998718262, -0.128159299492836, 0.0412377193570137, -0.36713674664497375, -0.514722466468811, -0.8150830864906311, 0.874632716178894]} +{"t": 8.5524, "q": [-0.3011937141418457, -0.008193162269890308, -0.013606165535748005, 0.6280884146690369, -0.3287709355354309, -0.013163699768483639, -0.2865101099014282, -0.027125893160700798, 0.0023435817565768957, 0.600800633430481, -0.3282491862773895, 0.025757620111107826, 0.09106489270925522, -0.06212835758924484, -0.01944616809487343, -0.24057133495807648, 0.434176504611969, -0.4523685574531555, 0.15400928258895874, -0.45278799533843994, -0.408134788274765, -0.7437889575958252, -0.5824453234672546, -0.11989019066095352, 0.041741058230400085, -0.360281765460968, -0.5196839570999146, -0.815610408782959, 0.8743451237678528]} +{"t": 8.5691, "q": [-0.3012022376060486, -0.00835508294403553, -0.013606165535748005, 0.6282333135604858, -0.3287709355354309, -0.013163699768483639, -0.28644195199012756, -0.027347467839717865, 0.002356973709538579, 0.6006642580032349, -0.3282533884048462, 0.02576492913067341, 0.09103810787200928, -0.062135960906744, -0.019451305270195007, -0.23630495369434357, 0.44147488474845886, -0.44847366213798523, 0.1486762911081314, -0.45897185802459717, -0.4074636697769165, -0.7450832724571228, -0.587131142616272, -0.11322695761919022, 0.04165716841816902, -0.35468512773513794, -0.5251727104187012, -0.8160058856010437, 0.8739975690841675]} +{"t": 8.5859, "q": [-0.3011851906776428, -0.008406215347349644, -0.013418679125607014, 0.6282674074172974, -0.32875868678092957, -0.013170835562050343, -0.2864760458469391, -0.02743268944323063, 0.002423933008685708, 0.6006727814674377, -0.3282533884048462, 0.02576492913067341, 0.09075687825679779, -0.06212835758924484, -0.01944616809487343, -0.2319546788930893, 0.44861748814582825, -0.44350022077560425, 0.14352308213710785, -0.46473628282546997, -0.4066127836704254, -0.7460659742355347, -0.5916252732276917, -0.10700714588165283, 0.041681136935949326, -0.3486331105232239, -0.529966413974762, -0.8169646263122559, 0.8737218976020813]} +{"t": 8.6026, "q": [-0.3011937141418457, -0.008389171212911606, -0.01319101732224226, 0.6285315752029419, -0.3287709355354309, -0.013163699768483639, -0.2864334285259247, -0.02744121104478836, 0.0025176764465868473, 0.6005704998970032, -0.32825756072998047, 0.02577223815023899, 0.0905693918466568, -0.06212835758924484, -0.01944616809487343, -0.2280837744474411, 0.45585596561431885, -0.4380474090576172, 0.13882526755332947, -0.47205862402915955, -0.4041680097579956, -0.7471445202827454, -0.5964189171791077, -0.10048773139715195, 0.04164518415927887, -0.34127476811408997, -0.5331422090530396, -0.8177435994148254, 0.8732185959815979]} +{"t": 8.6196, "q": [-0.3012278079986572, -0.008363604545593262, -0.013043706305325031, 0.6285997629165649, -0.32876676321029663, -0.013156392611563206, -0.2863737642765045, -0.02744121104478836, 0.0025578520726412535, 0.600579023361206, -0.3282659351825714, 0.025786856189370155, 0.09046225249767303, -0.06209796294569969, -0.01942562684416771, -0.22447651624679565, 0.46169227361679077, -0.4331817924976349, 0.13528992235660553, -0.4779309034347534, -0.40196290612220764, -0.7479115128517151, -0.6014522910118103, -0.09520268440246582, 0.0415373258292675, -0.3355942666530609, -0.5356948971748352, -0.8186304569244385, 0.8726433515548706]} +{"t": 8.6364, "q": [-0.3013215661048889, -0.008329516276717186, -0.012990138493478298, 0.6286168098449707, -0.32875868678092957, -0.013170835562050343, -0.28621184825897217, -0.02743268944323063, 0.0025578520726412535, 0.6005364060401917, -0.32825756072998047, 0.02577223815023899, 0.09036850929260254, -0.06208276376128197, -0.0194153543561697, -0.2213965803384781, 0.4686551094055176, -0.4294786751270294, 0.13047225773334503, -0.4834196865558624, -0.3998297154903412, -0.7482950091362, -0.6063778400421143, -0.08954612910747528, 0.041189782321453094, -0.33011746406555176, -0.5372768044471741, -0.8192176818847656, 0.8720321655273438]} +{"t": 8.6532, "q": [-0.30130451917648315, -0.008278382942080498, -0.012990138493478298, 0.6286594271659851, -0.32875868678092957, -0.013170835562050343, -0.2860073149204254, -0.027415646240115166, 0.0025176764465868473, 0.6005449295043945, -0.3282533884048462, 0.02576492913067341, 0.09030155092477798, -0.062097832560539246, -0.019406134262681007, -0.21926338970661163, 0.4746951758861542, -0.42627888917922974, 0.12642158567905426, -0.48845306038856506, -0.3972051739692688, -0.7489061951637268, -0.6107041239738464, -0.08386560529470444, 0.04105795547366142, -0.3243650496006012, -0.5386190414428711, -0.8198887705802917, 0.871121346950531]} +{"t": 8.6699, "q": [-0.30130451917648315, -0.00823577307164669, -0.013003530912101269, 0.6287190914154053, -0.3287627398967743, -0.013163614086806774, -0.2860073149204254, -0.027415646240115166, 0.002423933008685708, 0.6006216406822205, -0.3282701373100281, 0.025794167071580887, 0.09039529412984848, -0.06205996498465538, -0.01939995028078556, -0.21744178235530853, 0.4799322783946991, -0.42257577180862427, 0.12261060625314713, -0.4940137267112732, -0.3945326805114746, -0.749265730381012, -0.6141795516014099, -0.07776563614606857, 0.04114184528589249, -0.31898412108421326, -0.5399612784385681, -0.8204520344734192, 0.8694555163383484]} +{"t": 8.6866, "q": [-0.30131304264068604, -0.008142029866576195, -0.013057098723948002, 0.6287276148796082, -0.3287421762943268, -0.013156116008758545, -0.28599879145622253, -0.02738155610859394, 0.0023435817565768957, 0.6007494926452637, -0.3282701373100281, 0.025794167071580887, 0.09039529412984848, -0.06202943995594978, -0.01935991458594799, -0.2155003398656845, 0.4841507077217102, -0.41846516728401184, 0.11891946941614151, -0.4999219477176666, -0.39297473430633545, -0.7497571110725403, -0.6172954440116882, -0.07202519476413727, 0.041609231382608414, -0.31428632140159607, -0.5417109727859497, -0.8211471438407898, 0.8678736090660095]} +{"t": 8.7033, "q": [-0.30130451917648315, -0.008022719994187355, -0.013057098723948002, 0.6287190914154053, -0.32874634861946106, -0.01316344179213047, -0.2858198285102844, -0.02732190117239952, 0.0023034061305224895, 0.600800633430481, -0.328278511762619, 0.025808801874518394, 0.09036850929260254, -0.06196877360343933, -0.019338320940732956, -0.2134031057357788, 0.4892440140247345, -0.4147021174430847, 0.1149287223815918, -0.5048354864120483, -0.3922676742076874, -0.749924898147583, -0.6205791234970093, -0.06537394970655441, 0.042088598012924194, -0.3091091215610504, -0.5430532097816467, -0.8221298456192017, 0.8665193915367126]} +{"t": 8.7202, "q": [-0.3013215661048889, -0.007826711051166058, -0.013057098723948002, 0.6287105679512024, -0.3287421762943268, -0.013156116008758545, -0.2857942581176758, -0.027185548096895218, 0.0022498385515064, 0.6007835865020752, -0.3282826840877533, 0.025816112756729126, 0.09031494706869125, -0.06193077936768532, -0.019312644377350807, -0.21182118356227875, 0.4947088062763214, -0.4125329852104187, 0.11102186143398285, -0.5119062066078186, -0.3914886713027954, -0.7501166462898254, -0.6231677532196045, -0.05818341299891472, 0.04223240911960602, -0.3041236698627472, -0.5452223420143127, -0.8231604695320129, 0.8644461631774902]} +{"t": 8.7371, "q": [-0.30131304264068604, -0.0076647913083434105, -0.013043706305325031, 0.6287020444869995, -0.3287421762943268, -0.013156116008758545, -0.2857431173324585, -0.02702362835407257, 0.0022632302716374397, 0.6007580161094666, -0.32828688621520996, 0.025823421776294708, 0.09023459255695343, -0.061793990433216095, -0.019220203161239624, -0.21045498549938202, 0.4989033043384552, -0.4106874167919159, 0.10826548933982849, -0.5167478322982788, -0.3908655047416687, -0.7502124905586243, -0.6248095631599426, -0.052502889186143875, 0.042280346155166626, -0.30010896921157837, -0.5469720363616943, -0.825018048286438, 0.8613662123680115]} +{"t": 8.7538, "q": [-0.30130451917648315, -0.007536959368735552, -0.013043706305325031, 0.628667950630188, -0.32873812317848206, -0.013163337484002113, -0.2857005298137665, -0.026861708611249924, 0.0022632302716374397, 0.6007750630378723, -0.3282909393310547, 0.02581620216369629, 0.08975248783826828, -0.06164960190653801, -0.019122624769806862, -0.20845361053943634, 0.5030857920646667, -0.40899762511253357, 0.10637198388576508, -0.5204029679298401, -0.39035019278526306, -0.7502484321594238, -0.6261278390884399, -0.04619918763637543, 0.04224439337849617, -0.2952553629875183, -0.548050582408905, -0.8289368748664856, 0.8584780097007751]} +{"t": 8.7706, "q": [-0.3013215661048889, -0.007323906756937504, -0.012963354587554932, 0.6286849975585938, -0.3287421762943268, -0.013156116008758545, -0.2855641543865204, -0.02665717713534832, 0.0023034061305224895, 0.6007835865020752, -0.32828688621520996, 0.025823421776294708, 0.08917663246393204, -0.06148241460323334, -0.01900964044034481, -0.20538565516471863, 0.5073042511940002, -0.40715205669403076, 0.1041429191827774, -0.5233271718025208, -0.3900386095046997, -0.7503323554992676, -0.6267270445823669, -0.03960786387324333, 0.042328283190727234, -0.29095301032066345, -0.5487816333770752, -0.8327957987785339, 0.8565365672111511]} +{"t": 8.7873, "q": [-0.3013386130332947, -0.0070767649449408054, -0.012816044501960278, 0.6286594271659851, -0.3287421762943268, -0.013156116008758545, -0.2854619026184082, -0.02642708085477352, 0.0023435817565768957, 0.6007750630378723, -0.32828688621520996, 0.025823421776294708, 0.08861417323350906, -0.06141331419348717, -0.018856212496757507, -0.20225776731967926, 0.5115706324577332, -0.40592968463897705, 0.10154233872890472, -0.5277613401412964, -0.38990676403045654, -0.7504042387008667, -0.6268588900566101, -0.03428686782717705, 0.04338289424777031, -0.2871659994125366, -0.5492130517959595, -0.8356600403785706, 0.8544273376464844]} +{"t": 8.8041, "q": [-0.30144086480140686, -0.006880756467580795, -0.012802652083337307, 0.6286168098449707, -0.3287421762943268, -0.013156116008758545, -0.2853766679763794, -0.02617993950843811, 0.0023435817565768957, 0.6006813049316406, -0.32827863097190857, 0.025823332369327545, 0.08817224204540253, -0.0614502914249897, -0.01872595213353634, -0.19933362305164337, 0.5146745443344116, -0.40443164110183716, 0.09974470734596252, -0.5326029658317566, -0.3899187445640564, -0.7505121231079102, -0.6269667148590088, -0.029636988416314125, 0.04385028034448624, -0.28279176354408264, -0.5496325492858887, -0.8388957381248474, 0.852222204208374]} +{"t": 8.8208, "q": [-0.3015090525150299, -0.006761446595191956, -0.012802652083337307, 0.6285656690597534, -0.32874634861946106, -0.01316344179213047, -0.2853170335292816, -0.026026541367173195, 0.0023703654296696186, 0.6006983518600464, -0.32828283309936523, 0.025830641388893127, 0.08756960928440094, -0.061480049043893814, -0.018649034202098846, -0.1961577981710434, 0.5167118310928345, -0.40196290612220764, 0.09876199811697006, -0.5376722812652588, -0.3897629678249359, -0.7505720257759094, -0.6273861527442932, -0.02473544143140316, 0.04385028034448624, -0.2782856822013855, -0.5499081611633301, -0.8417360186576843, 0.8509638905525208]} +{"t": 8.8375, "q": [-0.301500529050827, -0.006625093054026365, -0.012749084271490574, 0.6285145282745361, -0.32873812317848206, -0.013163337484002113, -0.28529998660087585, -0.02587314322590828, 0.0023703654296696186, 0.6006727814674377, -0.32827863097190857, 0.025823332369327545, 0.08663216978311539, -0.061524685472249985, -0.018533656373620033, -0.1926584094762802, 0.5179103016853333, -0.3981039822101593, 0.09771937131881714, -0.5411596894264221, -0.3897629678249359, -0.7506799101829529, -0.6282011270523071, -0.020325245335698128, 0.04417385533452034, -0.2735399305820465, -0.5501358509063721, -0.8430662751197815, 0.850508451461792]} +{"t": 8.8543, "q": [-0.3015090525150299, -0.006403517909348011, -0.01277586817741394, 0.6285060048103333, -0.3287421762943268, -0.013156116008758545, -0.28529998660087585, -0.02562600187957287, 0.0023703654296696186, 0.6006813049316406, -0.3282829523086548, 0.02584517002105713, 0.08594918996095657, -0.0616220086812973, -0.01837625727057457, -0.19026155769824982, 0.5191925764083862, -0.39516785740852356, 0.09680857509374619, -0.5434126853942871, -0.3897989094257355, -0.7507398128509521, -0.6289681196212769, -0.016658073291182518, 0.044329650700092316, -0.26873427629470825, -0.550207793712616, -0.84392911195755, 0.8502568006515503]} +{"t": 8.871, "q": [-0.3015090525150299, -0.006207509431988001, -0.01277586817741394, 0.6284974813461304, -0.3287461996078491, -0.013148894533514977, -0.2852317988872528, -0.02539590373635292, 0.002356973709538579, 0.6006642580032349, -0.32827457785606384, 0.025830551981925964, 0.08554743230342865, -0.061742059886455536, -0.01822451874613762, -0.1889432966709137, 0.5207625031471252, -0.39347806572914124, 0.09613745659589767, -0.5483142733573914, -0.3897869288921356, -0.7508716583251953, -0.6296272277832031, -0.014548849314451218, 0.04478504881262779, -0.26391661167144775, -0.5503275990486145, -0.8448039889335632, 0.8502088785171509]} +{"t": 8.8877, "q": [-0.30149200558662415, -0.0060455892235040665, -0.01277586817741394, 0.628454864025116, -0.32873398065567017, -0.01315603032708168, -0.2852403223514557, -0.025233983993530273, 0.002356973709538579, 0.6006131172180176, -0.3282787501811981, 0.025837861001491547, 0.08494479209184647, -0.06177916005253792, -0.018113749101758003, -0.1871936023235321, 0.5220687985420227, -0.3910452723503113, 0.09522665292024612, -0.5530839562416077, -0.38975098729133606, -0.7509075999259949, -0.6305500268936157, -0.013038837350904942, 0.04609132930636406, -0.25782862305641174, -0.5505073666572571, -0.8460383415222168, 0.8502208590507507]} +{"t": 8.9046, "q": [-0.30148348212242126, -0.005943323951214552, -0.012762476690113544, 0.628454864025116, -0.3287380039691925, -0.013148808851838112, -0.2852317988872528, -0.025131719186902046, 0.0023703654296696186, 0.6006301641464233, -0.3282826840877533, 0.025816112756729126, 0.08418145775794983, -0.06171057000756264, -0.018038401380181313, -0.18518024682998657, 0.5231833457946777, -0.3888881206512451, 0.09437577426433563, -0.5576499700546265, -0.3896431028842926, -0.7509195804595947, -0.6316405534744263, -0.011301124468445778, 0.0475534051656723, -0.25084182620048523, -0.5504834055900574, -0.8489865064620972, 0.8501849174499512]} +{"t": 8.9214, "q": [-0.3014664351940155, -0.005858102813363075, -0.012749084271490574, 0.62837815284729, -0.3287421762943268, -0.013156116008758545, -0.28521475195884705, -0.025046497583389282, 0.002383757382631302, 0.6006045937538147, -0.32827457785606384, 0.025830551981925964, 0.08357881754636765, -0.06164126098155975, -0.0178560558706522, -0.1835024505853653, 0.524357795715332, -0.38703054189682007, 0.09314139932394028, -0.5599749088287354, -0.38958320021629333, -0.7509195804595947, -0.6320480108261108, -0.00953944306820631, 0.04927913472056389, -0.2452811449766159, -0.5505313277244568, -0.8522102236747742, 0.8501849174499512]} +{"t": 8.9381, "q": [-0.30148348212242126, -0.005730270873755217, -0.012749084271490574, 0.628292977809906, -0.3287380039691925, -0.013148808851838112, -0.28520622849464417, -0.024893099442124367, 0.002356973709538579, 0.6006131172180176, -0.3282787501811981, 0.025837861001491547, 0.08308332413434982, -0.06154767423868179, -0.017454367130994797, -0.18220816552639008, 0.5264071226119995, -0.386323481798172, 0.09171527624130249, -0.5620601773262024, -0.3894873261451721, -0.7509195804595947, -0.6320480108261108, -0.007538077887147665, 0.05192764848470688, -0.24057133495807648, -0.5505552887916565, -0.8548827171325684, 0.8501609563827515]} +{"t": 8.9549, "q": [-0.30148348212242126, -0.0055342623963952065, -0.012749084271490574, 0.6282418370246887, -0.3287338614463806, -0.013141500763595104, -0.2852317988872528, -0.0246715247631073, 0.002383757382631302, 0.6005960702896118, -0.32827457785606384, 0.025830551981925964, 0.0825476422905922, -0.06143060326576233, -0.016940103843808174, -0.18105767667293549, 0.5292233824729919, -0.38628754019737244, 0.09033709019422531, -0.5638218522071838, -0.38910382986068726, -0.750895619392395, -0.6321199536323547, -0.004649879410862923, 0.05513941869139671, -0.2355499416589737, -0.5505073666572571, -0.8577229976654053, 0.8501009941101074]} +{"t": 8.9716, "q": [-0.30144938826560974, -0.005295643117278814, -0.012722301296889782, 0.6281054615974426, -0.3287338614463806, -0.013141500763595104, -0.28525736927986145, -0.024458471685647964, 0.002383757382631302, 0.6006045937538147, -0.3282787501811981, 0.025837861001491547, 0.08198518306016922, -0.06138201430439949, -0.016481535509228706, -0.18014687299728394, 0.5317999720573425, -0.3862755596637726, 0.08955811709165573, -0.5660389065742493, -0.3884926438331604, -0.7508836388587952, -0.632323682308197, -0.001725728390738368, 0.058471035212278366, -0.22991736233234406, -0.5505193471908569, -0.8606231808662415, 0.8499931693077087]} +{"t": 8.9884, "q": [-0.3014749586582184, -0.005039979703724384, -0.012708908878266811, 0.6280117034912109, -0.3287380039691925, -0.013148808851838112, -0.2852744162082672, -0.02418576367199421, 0.002383757382631302, 0.6005023121833801, -0.32828283309936523, 0.025830641388893127, 0.08170395344495773, -0.061333075165748596, -0.015964193269610405, -0.17957162857055664, 0.5338013768196106, -0.3858920633792877, 0.08945025503635406, -0.5686514973640442, -0.3876177668571472, -0.7508716583251953, -0.6324315071105957, 0.001318264752626419, 0.062317971140146255, -0.22466826438903809, -0.5504953861236572, -0.8628761768341064, 0.8498014211654663]} +{"t": 9.0051, "q": [-0.3014579117298126, -0.004835448693484068, -0.012682124972343445, 0.6279350519180298, -0.3287298083305359, -0.013148722238838673, -0.2853170335292816, -0.023972710594534874, 0.0023703654296696186, 0.600493848323822, -0.3282829523086548, 0.02584517002105713, 0.08167716860771179, -0.06130584701895714, -0.015306893736124039, -0.17921210825443268, 0.535419225692749, -0.38516101241111755, 0.08940231800079346, -0.5711801648139954, -0.38665905594825745, -0.750835657119751, -0.6324315071105957, 0.004110589157789946, 0.06564958393573761, -0.2197187840938568, -0.5504474639892578, -0.8649255037307739, 0.849226176738739]} +{"t": 9.0219, "q": [-0.3014579117298126, -0.004665006417781115, -0.012708908878266811, 0.6277986764907837, -0.3287338614463806, -0.013141500763595104, -0.2853766679763794, -0.023802269250154495, 0.002356973709538579, 0.6004768013954163, -0.32829105854034424, 0.02583073079586029, 0.08167716860771179, -0.06131010130047798, -0.014825996942818165, -0.1787806749343872, 0.5368333458900452, -0.38444197177886963, 0.08945025503635406, -0.5748832821846008, -0.3850771188735962, -0.750895619392395, -0.6325393915176392, 0.006507434416562319, 0.06895723193883896, -0.21494905650615692, -0.5504115223884583, -0.8671785593032837, 0.8482674360275269]} +{"t": 9.0386, "q": [-0.3014664351940155, -0.004520130343735218, -0.012708908878266811, 0.6276196837425232, -0.3287298083305359, -0.013148722238838673, -0.28544485569000244, -0.023674435913562775, 0.002356973709538579, 0.6004427075386047, -0.32829105854034424, 0.02583073079586029, 0.08170395344495773, -0.061155278235673904, -0.014335441403090954, -0.1781095564365387, 0.538031816482544, -0.38359108567237854, 0.0893903374671936, -0.5783227682113647, -0.3823087811470032, -0.7508596777915955, -0.6326592564582825, 0.00911999586969614, 0.07139003276824951, -0.20953220129013062, -0.5504115223884583, -0.8712172508239746, 0.8469851016998291]} +{"t": 9.0559, "q": [-0.3014664351940155, -0.004468997940421104, -0.012708908878266811, 0.6274322271347046, -0.32873812317848206, -0.013163337484002113, -0.28552156686782837, -0.023614780977368355, 0.002316797850653529, 0.600425660610199, -0.3282994329929352, 0.025845348834991455, 0.08169056475162506, -0.06110776215791702, -0.01404269877821207, -0.17715081572532654, 0.5388227701187134, -0.38239264488220215, 0.08925850689411163, -0.5799885392189026, -0.3786535859107971, -0.7508236765861511, -0.6326832175254822, 0.012068115174770355, 0.07295996695756912, -0.20522986352443695, -0.5505552887916565, -0.8753278255462646, 0.8458825945854187]} +{"t": 9.0727, "q": [-0.301432341337204, -0.004358210135251284, -0.012708908878266811, 0.6273640394210815, -0.3287338614463806, -0.013141500763595104, -0.28553009033203125, -0.02352103777229786, 0.0023034061305224895, 0.6003404259681702, -0.3282952308654785, 0.025838039815425873, 0.08166377991437912, -0.060922857373952866, -0.01357028167694807, -0.17567676305770874, 0.5391343235969543, -0.37994787096977234, 0.08927049487829208, -0.5812469124794006, -0.3733924925327301, -0.7508596777915955, -0.6324794888496399, 0.015867114067077637, 0.07456585019826889, -0.20141887664794922, -0.5505792498588562, -0.8798099160194397, 0.8445523381233215]} +{"t": 9.0896, "q": [-0.3014238178730011, -0.004324121866375208, -0.012708908878266811, 0.6271424889564514, -0.3287298083305359, -0.013148722238838673, -0.2856493890285492, -0.02346990630030632, 0.0023034061305224895, 0.6003574728965759, -0.3282913267612457, 0.025859788060188293, 0.08157003670930862, -0.06072245165705681, -0.013038712553679943, -0.17420269548892975, 0.5392062664031982, -0.37785065174102783, 0.08921056985855103, -0.5827689170837402, -0.3707919418811798, -0.7508716583251953, -0.6323835849761963, 0.019414445385336876, 0.07592006772756577, -0.19831496477127075, -0.5505792498588562, -0.8843399286270142, 0.8428146243095398]} +{"t": 9.1064, "q": [-0.3013812005519867, -0.00430707773193717, -0.012708908878266811, 0.6270657777786255, -0.32872578501701355, -0.013155943714082241, -0.28567495942115784, -0.023435818031430244, 0.0023034061305224895, 0.60028076171875, -0.32829955220222473, 0.025859877467155457, 0.0812620222568512, -0.06051428243517876, -0.012483784928917885, -0.17300426959991455, 0.5392661690711975, -0.3761368989944458, 0.08923453837633133, -0.5851297974586487, -0.36983320116996765, -0.7509195804595947, -0.6323835849761963, 0.02274606004357338, 0.07679491490125656, -0.19545072317123413, -0.5505792498588562, -0.8882947564125061, 0.840333878993988]} +{"t": 9.1231, "q": [-0.3013812005519867, -0.004255944862961769, -0.012708908878266811, 0.6268953084945679, -0.3287298083305359, -0.013148722238838673, -0.2857431173324585, -0.023367639631032944, 0.0023034061305224895, 0.6002722382545471, -0.3282994329929352, 0.025845348834991455, 0.08102096617221832, -0.06043560057878494, -0.012054167687892914, -0.17200958728790283, 0.5393860340118408, -0.37502235174179077, 0.08930644392967224, -0.5881857872009277, -0.36923396587371826, -0.7509195804595947, -0.6325393915176392, 0.025909895077347755, 0.07698666304349899, -0.1922868937253952, -0.5506991147994995, -0.8928846716880798, 0.8379849791526794]} +{"t": 9.1398, "q": [-0.30131304264068604, -0.004290033131837845, -0.012682124972343445, 0.6266481876373291, -0.328725665807724, -0.01314141508191824, -0.28576868772506714, -0.023367639631032944, 0.002316797850653529, 0.6002381443977356, -0.3282913267612457, 0.025859788060188293, 0.0807129517197609, -0.06044209375977516, -0.011903918348252773, -0.17109878361225128, 0.5394339561462402, -0.3743872046470642, 0.08927049487829208, -0.589671790599823, -0.3686707317829132, -0.750895619392395, -0.6327071785926819, 0.02852245606482029, 0.07699864357709885, -0.18863169848918915, -0.5508189797401428, -0.8981817364692688, 0.8368943929672241]} +{"t": 9.1566, "q": [-0.3012874722480774, -0.004272988997399807, -0.012682124972343445, 0.6265714764595032, -0.3287298083305359, -0.013148722238838673, -0.28576016426086426, -0.02335059642791748, 0.0022900141775608063, 0.6002296209335327, -0.32829105854034424, 0.02583073079586029, 0.08037815988063812, -0.06040355563163757, -0.011800684034824371, -0.17063139379024506, 0.5394579172134399, -0.3741355240345001, 0.08916263282299042, -0.5908342599868774, -0.3679037392139435, -0.7508476376533508, -0.632839024066925, 0.030487868934869766, 0.0770346000790596, -0.18540795147418976, -0.5511425137519836, -0.90219646692276, 0.8360555171966553]} +{"t": 9.1733, "q": [-0.3011851906776428, -0.004281511064618826, -0.012708908878266811, 0.6264436841011047, -0.328725665807724, -0.01314141508191824, -0.28576868772506714, -0.023333551362156868, 0.002316797850653529, 0.6002722382545471, -0.3282994329929352, 0.025845348834991455, 0.0798826590180397, -0.0604182668030262, -0.01174293551594019, -0.1699722707271576, 0.5394339561462402, -0.3740156888961792, 0.08913866430521011, -0.5930274128913879, -0.3670049011707306, -0.7508236765861511, -0.632779061794281, 0.03293265029788017, 0.07704658061265945, -0.18241189420223236, -0.5513342618942261, -0.9059594869613647, 0.8352645635604858]} +{"t": 9.1901, "q": [-0.30103179812431335, -0.004281511064618826, -0.012682124972343445, 0.6262220740318298, -0.328725665807724, -0.01314141508191824, -0.2857431173324585, -0.023333551362156868, 0.0023435817565768957, 0.6002722382545471, -0.3282994329929352, 0.025845348834991455, 0.07906575500965118, -0.06046316400170326, -0.011676501482725143, -0.16890567541122437, 0.5394579172134399, -0.37365615367889404, 0.08933041244745255, -0.595568060874939, -0.3661300539970398, -0.750835657119751, -0.6327311396598816, 0.03560513257980347, 0.07698666304349899, -0.17983528971672058, -0.5514421463012695, -0.9088357090950012, 0.8345215320587158]} +{"t": 9.2068, "q": [-0.30089545249938965, -0.004290033131837845, -0.012641949579119682, 0.6260175704956055, -0.328725665807724, -0.01314141508191824, -0.2857431173324585, -0.023307986557483673, 0.0023034061305224895, 0.6004171371459961, -0.32828283309936523, 0.025830641388893127, 0.07767299562692642, -0.060461923480033875, -0.011501722037792206, -0.1670481115579605, 0.5394579172134399, -0.3729371130466461, 0.08954612910747528, -0.5977012515068054, -0.36511141061782837, -0.7508716583251953, -0.6327910423278809, 0.03846936300396919, 0.07702261209487915, -0.1775582879781723, -0.5514541268348694, -0.9114722609519958, 0.8336226940155029]} +{"t": 9.2235, "q": [-0.30071648955345154, -0.004298555664718151, -0.012668733485043049, 0.6257533431053162, -0.3287298083305359, -0.013148722238838673, -0.2857005298137665, -0.023307986557483673, 0.0023435817565768957, 0.6003830432891846, -0.32829511165618896, 0.02582351118326187, 0.07549011707305908, -0.06050587818026543, -0.011319170705974102, -0.16437563300132751, 0.539374053478241, -0.37181058526039124, 0.08931843191385269, -0.5987438559532166, -0.3641047179698944, -0.7508716583251953, -0.6329708099365234, 0.04099803417921066, 0.07698666304349899, -0.17452627420425415, -0.5514661073684692, -0.915798544883728, 0.8323883414268494]} +{"t": 9.2403, "q": [-0.3004693388938904, -0.004272988997399807, -0.012641949579119682, 0.6254380345344543, -0.328725665807724, -0.01314141508191824, -0.2857005298137665, -0.023307986557483673, 0.002356973709538579, 0.6004086136817932, -0.3282787501811981, 0.025837861001491547, 0.0736018568277359, -0.06056598573923111, -0.011272849515080452, -0.1615114063024521, 0.5391823053359985, -0.37077993154525757, 0.08921056985855103, -0.5995827913284302, -0.36328980326652527, -0.750895619392395, -0.6332464814186096, 0.042639873921871185, 0.07697467505931854, -0.17178188264369965, -0.5514181852340698, -0.9207000732421875, 0.8313577175140381]} +{"t": 9.257, "q": [-0.29992392659187317, -0.004272988997399807, -0.012360719963908195, 0.6249437928199768, -0.3287216126918793, -0.013148636557161808, -0.2856493890285492, -0.023299463093280792, 0.0024507169146090746, 0.6004768013954163, -0.32829105854034424, 0.02583073079586029, 0.07202161848545074, -0.0605725422501564, -0.011142298579216003, -0.15892280638217926, 0.5387988090515137, -0.36958152055740356, 0.08924652636051178, -0.6005415320396423, -0.36229512095451355, -0.7508836388587952, -0.6332584619522095, 0.04394615441560745, 0.07674697786569595, -0.16990035772323608, -0.5513822436332703, -0.9253140091896057, 0.8306865692138672]} +{"t": 9.2737, "q": [-0.2992762625217438, -0.004290033131837845, -0.011985746212303638, 0.6243813037872314, -0.3287214934825897, -0.013134106993675232, -0.2855641543865204, -0.023299463093280792, 0.0026382035575807095, 0.6004682779312134, -0.3282829523086548, 0.02584517002105713, 0.06998604536056519, -0.06056464836001396, -0.011098428629338741, -0.15598668158054352, 0.5384752154350281, -0.368431031703949, 0.08919858932495117, -0.6015122532844543, -0.36116859316825867, -0.7509195804595947, -0.6333543062210083, 0.044928859919309616, 0.0764593556523323, -0.1681506633758545, -0.5513222813606262, -0.9296643137931824, 0.8304828405380249]} +{"t": 9.2904, "q": [-0.2983047366142273, -0.00430707773193717, -0.011758084408938885, 0.6234609484672546, -0.32870081067085266, -0.013112080283463001, -0.28521475195884705, -0.023307986557483673, 0.0027855143416672945, 0.6005193591117859, -0.32828712463378906, 0.02585247904062271, 0.06651754677295685, -0.06054185703396797, -0.011083095334470272, -0.15245133638381958, 0.5383912920951843, -0.3674962520599365, 0.0884915217757225, -0.6028065085411072, -0.3603536784648895, -0.7509075999259949, -0.6335700154304504, 0.045767758041620255, 0.07647134363651276, -0.16685636341571808, -0.5512503981590271, -0.9325404763221741, 0.830470860004425]} +{"t": 9.3072, "q": [-0.297060489654541, -0.004298555664718151, -0.011610773392021656, 0.6225575804710388, -0.32867178320884705, -0.013075473718345165, -0.28480568528175354, -0.023316508159041405, 0.0029328251257538795, 0.6006642580032349, -0.3282829523086548, 0.02584517002105713, 0.06284816563129425, -0.060526810586452484, -0.01109225396066904, -0.15018631517887115, 0.5385231375694275, -0.3674004077911377, 0.08738896995782852, -0.604975700378418, -0.3598623275756836, -0.7509555220603943, -0.6336539387702942, 0.04622315615415573, 0.0760878473520279, -0.1663290560245514, -0.5512024760246277, -0.9365671873092651, 0.8304828405380249]} +{"t": 9.3239, "q": [-0.29585036635398865, -0.004230378661304712, -0.011396503075957298, 0.6219950914382935, -0.32866764068603516, -0.013068166561424732, -0.2844221889972687, -0.023307986557483673, 0.002959609031677246, 0.6007494926452637, -0.3282913267612457, 0.025859788060188293, 0.05919218063354492, -0.06054200604557991, -0.01110247615724802, -0.1483287513256073, 0.5385231375694275, -0.3671726882457733, 0.08689761906862259, -0.606917142868042, -0.359311044216156, -0.750979483127594, -0.6338576674461365, 0.04621117189526558, 0.0757882371544838, -0.16636501252651215, -0.5510945916175842, -0.9411571621894836, 0.8305667042732239]} +{"t": 9.3406, "q": [-0.2946913540363312, -0.00399175938218832, -0.010726908221840858, 0.6214838027954102, -0.32866358757019043, -0.0130753880366683, -0.2843966484069824, -0.023239808157086372, 0.0030131766106933355, 0.601030707359314, -0.3282911777496338, 0.025845259428024292, 0.055884379893541336, -0.06052703410387039, -0.011121324263513088, -0.14696255326271057, 0.5385231375694275, -0.36693301796913147, 0.08663396537303925, -0.6084031462669373, -0.3585320711135864, -0.7509914636611938, -0.6339295506477356, 0.046055376529693604, 0.07562046498060226, -0.16659271717071533, -0.5508549213409424, -0.9452557563781738, 0.8306027054786682]} +{"t": 9.3576, "q": [-0.29402661323547363, -0.0034037334844470024, -0.00965555664151907, 0.6210917830467224, -0.3286677598953247, -0.013082695193588734, -0.2844477593898773, -0.02279665879905224, 0.0033077981788665056, 0.6010562777519226, -0.3282952308654785, 0.025838039815425873, 0.053540799766778946, -0.060496795922517776, -0.011120260693132877, -0.1464831829071045, 0.5384153127670288, -0.3669569790363312, 0.0866219773888588, -0.6099371314048767, -0.3574175238609314, -0.7510034441947937, -0.633977472782135, 0.04604339227080345, 0.07554855942726135, -0.16678446531295776, -0.5504953861236572, -0.9491146802902222, 0.830698549747467]} +{"t": 9.3743, "q": [-0.2939073145389557, -0.002449256367981434, -0.008570813573896885, 0.6206997632980347, -0.32865968346595764, -0.013097139075398445, -0.28470343351364136, -0.022038189694285393, 0.004057744517922401, 0.6009710431098938, -0.3282952308654785, 0.025838039815425873, 0.05118382349610329, -0.060466405004262924, -0.011099816299974918, -0.14632739126682281, 0.5382595062255859, -0.36693301796913147, 0.08625046908855438, -0.6118785738945007, -0.3559674322605133, -0.7510753870010376, -0.6340494155883789, 0.0460314080119133, 0.07536879181861877, -0.16689231991767883, -0.5501717925071716, -0.9517871737480164, 0.8307704329490662]} +{"t": 9.391, "q": [-0.2938902676105499, -0.0012732045724987984, -0.0076869479380548, 0.6204696297645569, -0.32861819863319397, -0.013038573786616325, -0.28512102365493774, -0.021100757643580437, 0.004713947419077158, 0.6009113788604736, -0.3282870054244995, 0.02583795040845871, 0.04867954179644585, -0.06023096293210983, -0.010951066389679909, -0.14631541073322296, 0.5381636023521423, -0.3668970465660095, 0.08508799970149994, -0.6155337691307068, -0.35395410656929016, -0.7511113286018372, -0.634265124797821, 0.04568386822938919, 0.07524894922971725, -0.16798289120197296, -0.5495246648788452, -0.9544116854667664, 0.8307944536209106]} +{"t": 9.4078, "q": [-0.2936857342720032, 0.0001499885693192482, -0.006669164169579744, 0.620444118976593, -0.3286140263080597, -0.0130312480032444, -0.2853766679763794, -0.019933227449655533, 0.0053701503202319145, 0.6009113788604736, -0.32828688621520996, 0.025823421776294708, 0.04633595794439316, -0.06010933965444565, -0.010859550908207893, -0.1462794542312622, 0.538187563419342, -0.36676523089408875, 0.0839494988322258, -0.6178107857704163, -0.3523961305618286, -0.7511592507362366, -0.6346006989479065, 0.04536029323935509, 0.07512910664081573, -0.1688457429409027, -0.5493209362030029, -0.9585103392601013, 0.8308303952217102]} +{"t": 9.4245, "q": [-0.2933022379875183, 0.0015561380423605442, -0.0059995693154633045, 0.6203929781913757, -0.3286224901676178, -0.013060410507023335, -0.2854619026184082, -0.018748654052615166, 0.005571028683334589, 0.600868821144104, -0.3282826840877533, 0.025816112756729126, 0.04317547008395195, -0.060056161135435104, -0.010823734104633331, -0.14612366259098053, 0.5381156802177429, -0.36678919196128845, 0.08255932480096817, -0.6194286346435547, -0.35168907046318054, -0.7511592507362366, -0.6349722146987915, 0.04507267102599144, 0.07475759834051132, -0.16873788833618164, -0.5490573048591614, -0.9631482362747192, 0.8309502005577087]} +{"t": 9.4413, "q": [-0.2929784059524536, 0.0024680043570697308, -0.005959393456578255, 0.6201798915863037, -0.3285859227180481, -0.013096364215016365, -0.28548747301101685, -0.01787087693810463, 0.005437109619379044, 0.6009369492530823, -0.32828661799430847, 0.025794345885515213, 0.03927842900156975, -0.06003351882100105, -0.010827787220478058, -0.14581206440925598, 0.5381036996841431, -0.3668011724948883, 0.08131296932697296, -0.6204832792282104, -0.35146138072013855, -0.7511951923370361, -0.6351999044418335, 0.04477306455373764, 0.07473362982273102, -0.16864201426506042, -0.5487337112426758, -0.9677621126174927, 0.8309981822967529]} +{"t": 9.458, "q": [-0.29273977875709534, 0.0032605607993900776, -0.00605313666164875, 0.6199668645858765, -0.3284803628921509, -0.013211513869464397, -0.2854959964752197, -0.017078319564461708, 0.005222839303314686, 0.600953996181488, -0.32830312848091125, 0.02579452283680439, 0.035193901509046555, -0.06002592295408249, -0.01082267053425312, -0.14569222927093506, 0.5381036996841431, -0.3668011724948883, 0.08037819713354111, -0.6214300394058228, -0.3513295352458954, -0.7512191534042358, -0.6352238655090332, 0.04454536363482475, 0.07470966130495071, -0.16866599023342133, -0.5482662916183472, -0.9712135791778564, 0.8310820460319519]} +{"t": 9.4747, "q": [-0.29245004057884216, 0.004087206441909075, -0.00613348837941885, 0.619412899017334, -0.3282926082611084, -0.013354827649891376, -0.2857942581176758, -0.016319850459694862, 0.0052094473503530025, 0.6010477542877197, -0.32831528782844543, 0.025772863999009132, 0.03211376443505287, -0.059889476746320724, -0.010769377462565899, -0.1456802487373352, 0.5380677580833435, -0.36688506603240967, 0.08012653142213821, -0.6232635974884033, -0.3513055741786957, -0.7512551546096802, -0.6351639628410339, 0.044389571994543076, 0.07478156685829163, -0.16868995130062103, -0.5476311445236206, -0.9736943244934082, 0.8311179876327515]} +{"t": 9.4915, "q": [-0.2920324504375458, 0.00481158634647727, -0.0059995693154633045, 0.6188334226608276, -0.3278229236602783, -0.013378795236349106, -0.2860243618488312, -0.01571478135883808, 0.005236231256276369, 0.6009369492530823, -0.32834774255752563, 0.025715086609125137, 0.03060048073530197, -0.05944187194108963, -0.010545717552304268, -0.1458600014448166, 0.5371449589729309, -0.3671247661113739, 0.08024637401103973, -0.625900149345398, -0.3510778844356537, -0.7512551546096802, -0.6350680589675903, 0.04416187107563019, 0.07479354739189148, -0.1687259078025818, -0.5471038222312927, -0.9756956696510315, 0.8311899304389954]} +{"t": 9.5082, "q": [-0.29168304800987244, 0.005357001442462206, -0.005892434157431126, 0.6180067658424377, -0.3271171748638153, -0.013276700861752033, -0.2862970530986786, -0.015246064402163029, 0.005249623209238052, 0.600953996181488, -0.32839250564575195, 0.025650179013609886, 0.029127372428774834, -0.05893367901444435, -0.010310675017535686, -0.1459319144487381, 0.5349758267402649, -0.3673524558544159, 0.08022240549325943, -0.6276498436927795, -0.3508741557598114, -0.7512431144714355, -0.63509202003479, 0.04412591829895973, 0.07481751590967178, -0.1688457429409027, -0.5466005206108093, -0.9779367446899414, 0.8312138915061951]} +{"t": 9.5249, "q": [-0.29140180349349976, 0.0056978859938681126, -0.005919218063354492, 0.6168136596679688, -0.3259350061416626, -0.013352673500776291, -0.28668054938316345, -0.014947790652513504, 0.005249623209238052, 0.6009454727172852, -0.328424870967865, 0.025577854365110397, 0.02721233107149601, -0.05862293392419815, -0.01019851490855217, -0.1459798514842987, 0.5323033332824707, -0.36759212613105774, 0.08025835454463959, -0.628213107585907, -0.35074231028556824, -0.7512431144714355, -0.6351399421691895, 0.04410194978117943, 0.07479354739189148, -0.16890567541122437, -0.5463368892669678, -0.9813042879104614, 0.8312737941741943]} +{"t": 9.5417, "q": [-0.2912398874759674, 0.005885372404009104, -0.005959393456578255, 0.6155864596366882, -0.32487279176712036, -0.01355324313044548, -0.2870214581489563, -0.014819959178566933, 0.005155880004167557, 0.600868821144104, -0.32844528555870056, 0.025556283071637154, 0.0260472372174263, -0.05827362462878227, -0.009983347728848457, -0.14602778851985931, 0.5299544334411621, -0.36775991320610046, 0.08029431104660034, -0.628296971321106, -0.35074231028556824, -0.751207172870636, -0.6352478265762329, 0.04369448497891426, 0.07451791316270828, -0.1690255105495453, -0.5459054112434387, -0.9847797155380249, 0.8313336968421936]} +{"t": 9.5584, "q": [-0.2912910282611847, 0.006175124552100897, -0.006039745174348354, 0.6147087216377258, -0.323830783367157, -0.013703159987926483, -0.2874816358089447, -0.014623950235545635, 0.004928217735141516, 0.6008347272872925, -0.32846951484680176, 0.025498416274785995, 0.025096412748098373, -0.05774993449449539, -0.009699382819235325, -0.14603976905345917, 0.5279650688171387, -0.36863476037979126, 0.08010256290435791, -0.628296971321106, -0.350646436214447, -0.751207172870636, -0.6356672644615173, 0.04272376373410225, 0.07278019934892654, -0.16920527815818787, -0.5454021096229553, -0.9877398610115051, 0.8313456773757935]} +{"t": 9.5752, "q": [-0.2913677394390106, 0.006703495513647795, -0.00613348837941885, 0.6144615411758423, -0.3233919143676758, -0.013778908178210258, -0.2877628803253174, -0.014214888215065002, 0.004727339372038841, 0.600868821144104, -0.32852596044540405, 0.02538275718688965, 0.024319682270288467, -0.05664950609207153, -0.009116335771977901, -0.14609968662261963, 0.5251128077507019, -0.36916208267211914, 0.07995875179767609, -0.6282250881195068, -0.35056254267692566, -0.751207172870636, -0.6366020441055298, 0.041501373052597046, 0.07144995033740997, -0.16925321519374847, -0.5449946522712708, -0.9901127219200134, 0.8312857747077942]} +{"t": 9.5921, "q": [-0.29154670238494873, 0.007342653814703226, -0.006187055725604296, 0.6144871115684509, -0.323273241519928, -0.013843134045600891, -0.28814637660980225, -0.013686517253518105, 0.004606812261044979, 0.6009369492530823, -0.32866716384887695, 0.025129931047558784, 0.023583129048347473, -0.0549425445497036, -0.008291840553283691, -0.14641128480434418, 0.521757185459137, -0.36928191781044006, 0.07997073233127594, -0.628213107585907, -0.3504786789417267, -0.7511951923370361, -0.6377165913581848, 0.03994342312216759, 0.07019160687923431, -0.16927717626094818, -0.5442875623703003, -0.9922219514846802, 0.8312737941741943]} +{"t": 9.6089, "q": [-0.2917086184024811, 0.007905114442110062, -0.006160271819680929, 0.6145382523536682, -0.32318350672721863, -0.013929422944784164, -0.2884531617164612, -0.013047358952462673, 0.004660379607230425, 0.6009369492530823, -0.3288002014160156, 0.024877019226551056, 0.022431425750255585, -0.05338055640459061, -0.007653499487787485, -0.1468546986579895, 0.5181499719619751, -0.3693538308143616, 0.07999470084905624, -0.6281291842460632, -0.35038280487060547, -0.7511832118034363, -0.6386273503303528, 0.038001976907253265, 0.0691729485988617, -0.1693490892648697, -0.5422142744064331, -0.9942952394485474, 0.8312498331069946]} +{"t": 9.6256, "q": [-0.29195573925971985, 0.00843348540365696, -0.006187055725604296, 0.6145808696746826, -0.32307353615760803, -0.014066328294575214, -0.2887769937515259, -0.01257864199578762, 0.004646987654268742, 0.600953996181488, -0.32888898253440857, 0.024718092754483223, 0.02002088353037834, -0.051714230328798294, -0.007234848104417324, -0.14707040786743164, 0.5145906209945679, -0.369545578956604, 0.07992279529571533, -0.6280573010444641, -0.3502989113330841, -0.7511951923370361, -0.6393703818321228, 0.0358208492398262, 0.06820222735404968, -0.16950488090515137, -0.5389545559883118, -0.9960808753967285, 0.8311779499053955]} +{"t": 9.6425, "q": [-0.29209211468696594, 0.008663581684231758, -0.0064013260416686535, 0.6145893931388855, -0.3229595124721527, -0.014210471883416176, -0.28906676173210144, -0.012229235842823982, 0.004486285150051117, 0.6010733246803284, -0.3289855420589447, 0.02451564557850361, 0.016204193234443665, -0.04987552389502525, -0.007041011471301317, -0.14699850976467133, 0.5108635425567627, -0.3694976270198822, 0.07988684624433517, -0.6279733777046204, -0.35028693079948425, -0.7511592507362366, -0.6400774717330933, 0.03385543450713158, 0.06725547462701797, -0.16963671147823334, -0.5351316332817078, -0.9978545308113098, 0.8311659693717957]} +{"t": 9.6592, "q": [-0.29227960109710693, 0.008782891556620598, -0.006548637058585882, 0.6145808696746826, -0.32289040088653564, -0.014318711124360561, -0.28929686546325684, -0.01212697010487318, 0.004178271628916264, 0.6012693047523499, -0.32952219247817993, 0.023554876446723938, 0.013003530912101269, -0.04819592088460922, -0.0069649191573262215, -0.14693859219551086, 0.5082150101661682, -0.36985716223716736, 0.07981494069099426, -0.6278535723686218, -0.35023897886276245, -0.7511592507362366, -0.640928328037262, 0.032357409596443176, 0.06654839962720871, -0.1696726679801941, -0.5318719148635864, -0.9995443224906921, 0.831153929233551]} +{"t": 9.6759, "q": [-0.29240742325782776, 0.008816979825496674, -0.0067896912805736065, 0.614700198173523, -0.3228617310523987, -0.014325699768960476, -0.28960365056991577, -0.012041749432682991, 0.003910433501005173, 0.6017380356788635, -0.32986125349998474, 0.02296261675655842, 0.009039529599249363, -0.0463639535009861, -0.006721925921738148, -0.1469026356935501, 0.5062975883483887, -0.37038445472717285, 0.07963517308235168, -0.6276857852935791, -0.35019105672836304, -0.7511592507362366, -0.6418631076812744, 0.030979221686720848, 0.06599713116884232, -0.1697445660829544, -0.5288159251213074, -1.002528429031372, 0.8311659693717957]} +{"t": 9.6928, "q": [-0.29263752698898315, 0.008953334763646126, -0.006883434485644102, 0.6146490573883057, -0.32285767793655396, -0.014332919381558895, -0.2900638282299042, -0.011896872892975807, 0.003736338810995221, 0.6018658876419067, -0.3300589621067047, 0.022608652710914612, 0.0068566505797207355, -0.04449617117643356, -0.006832436192780733, -0.1468786597251892, 0.5044160485267639, -0.37073200941085815, 0.07967112958431244, -0.6276857852935791, -0.35016706585884094, -0.7511592507362366, -0.6422466039657593, 0.02943325787782669, 0.06554172933101654, -0.17017599940299988, -0.5274377465248108, -1.0069025754928589, 0.8311659693717957]} +{"t": 9.7095, "q": [-0.2928505837917328, 0.009191952645778656, -0.0068566505797207355, 0.614700198173523, -0.3228575587272644, -0.014318401925265789, -0.2904643714427948, -0.011573032476007938, 0.003803298342972994, 0.6020277738571167, -0.3301396667957306, 0.022464169189333916, 0.004847866017371416, -0.042544398456811905, -0.0069000013172626495, -0.14677080512046814, 0.5017914772033691, -0.37105557322502136, 0.07982692122459412, -0.6276618242263794, -0.35014310479164124, -0.7511592507362366, -0.6423185467720032, 0.027216175571084023, 0.06519418209791183, -0.17160211503505707, -0.5261434316635132, -1.0098507404327393, 0.8311779499053955]} +{"t": 9.7263, "q": [-0.2928931713104248, 0.009413527324795723, -0.006736123468726873, 0.6147428154945374, -0.32286587357521057, -0.014332996681332588, -0.2907711863517761, -0.011257714591920376, 0.004030960611999035, 0.6023175716400146, -0.3302445709705353, 0.02227635495364666, 0.002852473873645067, -0.04062792286276817, -0.006500826217234135, -0.14677080512046814, 0.4986037015914917, -0.37140312790870667, 0.07992279529571533, -0.6275659203529358, -0.3500592112541199, -0.7511592507362366, -0.6423544883728027, 0.02412424609065056, 0.06429536640644073, -0.17353157699108124, -0.5242259502410889, -1.0128108263015747, 0.831153929233551]} +{"t": 9.743, "q": [-0.2931147515773773, 0.009532837197184563, -0.006615596357733011, 0.6147598624229431, -0.3228617310523987, -0.014325699768960476, -0.29127398133277893, -0.01104466151446104, 0.004245230928063393, 0.6025817394256592, -0.33031314611434937, 0.022153552621603012, 0.001566851744428277, -0.03868165984749794, -0.006258424837142229, -0.14698652923107147, 0.49522414803504944, -0.3723738491535187, 0.07994676381349564, -0.6275179982185364, -0.34991541504859924, -0.7511832118034363, -0.6424024105072021, 0.021032314747571945, 0.06289321184158325, -0.17565278708934784, -0.5217812061309814, -1.0157948732376099, 0.8311179876327515]} +{"t": 9.7598, "q": [-0.29327666759490967, 0.009711802005767822, -0.006548637058585882, 0.6147854328155518, -0.3228617310523987, -0.014325699768960476, -0.2916489541530609, -0.01079752016812563, 0.004392541944980621, 0.6028373837471008, -0.3303655982017517, 0.02205965481698513, 0.0005758515326306224, -0.03656015917658806, -0.00577704980969429, -0.14849653840065002, 0.4912933111190796, -0.37427935004234314, 0.07998272031545639, -0.6272304058074951, -0.34968769550323486, -0.7512311339378357, -0.6424742937088013, 0.01720934733748436, 0.06167082488536835, -0.17896044254302979, -0.5175986886024475, -1.0177723169326782, 0.8311060070991516]} +{"t": 9.7765, "q": [-0.2934897243976593, 0.009754413738846779, -0.006441501900553703, 0.6148279905319214, -0.32286569476127625, -0.01430396270006895, -0.29212620854377747, -0.010661166161298752, 0.004593420308083296, 0.6031867861747742, -0.33045047521591187, 0.02192249707877636, -0.00040175687172450125, -0.03446117416024208, -0.005225727800279856, -0.14994663000106812, 0.48741042613983154, -0.37640056014060974, 0.07983890920877457, -0.6271225214004517, -0.3495798408985138, -0.751207172870636, -0.6424742937088013, 0.01342233270406723, 0.061179470270872116, -0.18337063491344452, -0.5129967331886292, -1.0191144943237305, 0.8311899304389954]} +{"t": 9.7933, "q": [-0.29356643557548523, 0.00982259027659893, -0.006320974789559841, 0.614930272102356, -0.32286569476127625, -0.01430396270006895, -0.2924756109714508, -0.010558901354670525, 0.004700555466115475, 0.6037237048149109, -0.33053910732269287, 0.021749021485447884, -0.001312405802309513, -0.032566219568252563, -0.0046374560333788395, -0.15155251324176788, 0.48421064019203186, -0.3785097599029541, 0.07969509810209274, -0.6270386576652527, -0.3495558798313141, -0.751207172870636, -0.6425222754478455, 0.010522149503231049, 0.060867879539728165, -0.18788868188858032, -0.5083947777748108, -1.0205886363983154, 0.8312019109725952]} +{"t": 9.81, "q": [-0.2936260998249054, 0.009899288415908813, -0.006294190883636475, 0.6151774525642395, -0.3228616416454315, -0.01431118231266737, -0.29268014430999756, -0.010431068949401379, 0.004821082577109337, 0.604320228099823, -0.3306036591529846, 0.021633440628647804, -0.00254446011967957, -0.030527397990226746, -0.0040059201419353485, -0.15306252241134644, 0.47996821999549866, -0.3796842098236084, 0.07985088974237442, -0.6270146369934082, -0.34949594736099243, -0.751207172870636, -0.6427379846572876, 0.007873635739088058, 0.060328591614961624, -0.19245466589927673, -0.5055785179138184, -1.0236445665359497, 0.8312019109725952]} +{"t": 9.8269, "q": [-0.2937624454498291, 0.009958943352103233, -0.006320974789559841, 0.6153990030288696, -0.32286569476127625, -0.01430396270006895, -0.29291874170303345, -0.010311760008335114, 0.00479429867118597, 0.6049423813819885, -0.3306804597377777, 0.021510742604732513, -0.0042854067869484425, -0.028754843398928642, -0.0036655941512435675, -0.15446467697620392, 0.4753662645816803, -0.3800557255744934, 0.07987485826015472, -0.6270026564598083, -0.34941208362579346, -0.7511832118034363, -0.6431813836097717, 0.005081311333924532, 0.059885174036026, -0.19691281020641327, -0.5033134818077087, -1.0270241498947144, 0.8313097357749939]} +{"t": 9.8436, "q": [-0.29382210969924927, 0.009958943352103233, -0.006320974789559841, 0.6156376004219055, -0.32285746932029724, -0.014303885400295258, -0.2932511270046234, -0.010311760008335114, 0.004780906718224287, 0.6059650182723999, -0.33078551292419434, 0.021337458863854408, -0.006923609878867865, -0.027467746287584305, -0.003577049355953932, -0.15535150468349457, 0.47035688161849976, -0.3801755905151367, 0.07982692122459412, -0.6269667148590088, -0.34941208362579346, -0.7511472702026367, -0.6434330344200134, 0.002121207769960165, 0.059669457376003265, -0.20188625156879425, -0.5005092024803162, -1.029384970664978, 0.8314415812492371]} +{"t": 9.8604, "q": [-0.29387322068214417, 0.00994190014898777, -0.0062272315844893456, 0.6161659955978394, -0.32286569476127625, -0.01430396270006895, -0.2938476502895355, -0.010328804142773151, 0.0049817850813269615, 0.6073881983757019, -0.33107638359069824, 0.020860934630036354, -0.00966894906014204, -0.02653600089251995, -0.003422100329771638, -0.1561184972524643, 0.46613842248916626, -0.3804871737957001, 0.07974303513765335, -0.6268109083175659, -0.34938809275627136, -0.751123309135437, -0.6435169577598572, -0.0007550062146037817, 0.05944175645709038, -0.2073151171207428, -0.4981482923030853, -1.0303317308425903, 0.8319689035415649]} +{"t": 9.8775, "q": [-0.2943163812160492, 0.009924855083227158, -0.005919218063354492, 0.6167028546333313, -0.32286152243614197, -0.014296665787696838, -0.2949555218219757, -0.010354369878768921, 0.005383542273193598, 0.6088284254074097, -0.33148545026779175, 0.020305747166275978, -0.013016922399401665, -0.025445889681577682, -0.0034545096568763256, -0.1564900130033493, 0.46309444308280945, -0.3807987570762634, 0.0797310471534729, -0.6266551613807678, -0.3494240641593933, -0.751123309135437, -0.6437805891036987, -0.003511378075927496, 0.059190087020397186, -0.21141371130943298, -0.49644652009010315, -1.0309189558029175, 0.8322804570198059]} +{"t": 9.8943, "q": [-0.29475101828575134, 0.00993337668478489, -0.00546389352530241, 0.6170863509178162, -0.32286569476127625, -0.01430396270006895, -0.296199768781662, -0.01034584827721119, 0.005932609550654888, 0.6105073094367981, -0.3318140506744385, 0.019924085587263107, -0.016927355900406837, -0.024091586470603943, -0.0036916485987603664, -0.15663382411003113, 0.46000251173973083, -0.3807987570762634, 0.07987485826015472, -0.6264873743057251, -0.34938809275627136, -0.7510274052619934, -0.6444756984710693, -0.006483465898782015, 0.05860286206007004, -0.21428993344306946, -0.4941096007823944, -1.031146764755249, 0.8325321674346924]} +{"t": 9.911, "q": [-0.29487884044647217, 0.009950421750545502, -0.004687163513153791, 0.6174102425575256, -0.32286569476127625, -0.01430396270006895, -0.297435462474823, -0.010328804142773151, 0.0068566505797207355, 0.612237274646759, -0.33207762241363525, 0.01959988847374916, -0.020074451342225075, -0.023032357916235924, -0.0039190929383039474, -0.15749669075012207, 0.4565390646457672, -0.38084667921066284, 0.0800785943865776, -0.6263675093650818, -0.3492562770843506, -0.7509315609931946, -0.6450389623641968, -0.010018812492489815, 0.05735650286078453, -0.21666280925273895, -0.48990315198898315, -1.0311226844787598, 0.8330115079879761]} +{"t": 9.9277, "q": [-0.2949555218219757, 0.010112341493368149, -0.003776514669880271, 0.6176658868789673, -0.32286974787712097, -0.014296742156147957, -0.2986370921134949, -0.010192450135946274, 0.007941394113004208, 0.6139246821403503, -0.33236485719680786, 0.01917419023811817, -0.022471601143479347, -0.02222282811999321, -0.004165433347225189, -0.15839549899101257, 0.452668160200119, -0.38087067008018494, 0.08018644899129868, -0.626271665096283, -0.34901657700538635, -0.750751793384552, -0.6455782055854797, -0.013793842867016792, 0.05516338720917702, -0.21880798041820526, -0.48782986402511597, -1.031086802482605, 0.833311140537262]} +{"t": 9.9446, "q": [-0.29497256875038147, 0.010333916172385216, -0.002865865593776107, 0.6179641485214233, -0.3228454887866974, -0.014354596845805645, -0.2996852993965149, -0.01002200786024332, 0.008838650770485401, 0.6153819561004639, -0.3326195776462555, 0.018777241930365562, -0.023917926475405693, -0.02121695876121521, -0.004592989105731249, -0.1601332128047943, 0.4485096335411072, -0.38133805990219116, 0.08024637401103973, -0.6260799169540405, -0.34876492619514465, -0.7506558895111084, -0.6457459926605225, -0.01841975376009941, 0.05197558552026749, -0.22104904055595398, -0.4865955114364624, -1.0308351516723633, 0.8337425589561462]} +{"t": 9.9614, "q": [-0.29526233673095703, 0.010691845789551735, -0.0022230546455830336, 0.6184499263763428, -0.32278451323509216, -0.01444841455668211, -0.3006056845188141, -0.009681123308837414, 0.009360934607684612, 0.6163108944892883, -0.3327648341655731, 0.01850256882607937, -0.024748222902417183, -0.020128030329942703, -0.005179797299206257, -0.16244617104530334, 0.444411039352417, -0.3829079866409302, 0.08021041750907898, -0.6259600520133972, -0.3484293520450592, -0.7505001425743103, -0.6458179354667664, -0.024148214608430862, 0.04779309034347534, -0.22315825521945953, -0.48494166135787964, -1.0303198099136353, 0.8344736099243164]} +{"t": 9.9781, "q": [-0.2955605983734131, 0.011186128482222557, -0.0020757438614964485, 0.6187481880187988, -0.3225897252559662, -0.01479507889598608, -0.3010232746601105, -0.009178318083286285, 0.009548421949148178, 0.6165921092033386, -0.3328130543231964, 0.018386757001280785, -0.0251767635345459, -0.019220585003495216, -0.005750759970396757, -0.1649508774280548, 0.4404442608356476, -0.3855445086956024, 0.08027034252882004, -0.6259600520133972, -0.34818968176841736, -0.750380277633667, -0.6458179354667664, -0.02960103563964367, 0.042100582271814346, -0.2250877171754837, -0.48321595788002014, -1.0297205448150635, 0.8355162143707275]} +{"t": 9.9951, "q": [-0.29585888981819153, 0.011450313031673431, -0.002129311440512538, 0.6186459064483643, -0.32221922278404236, -0.015437731519341469, -0.3013812005519867, -0.008905611000955105, 0.009575205855071545, 0.6166517734527588, -0.3328046202659607, 0.018357591703534126, -0.025297291576862335, -0.01838875003159046, -0.006284133531153202, -0.16710804402828217, 0.4367291331291199, -0.38848063349723816, 0.08018644899129868, -0.6257683038711548, -0.34796199202537537, -0.7502844333648682, -0.645781934261322, -0.03411908820271492, 0.03585680201649666, -0.22696924209594727, -0.48005211353302, -1.0290495157241821, 0.8365828394889832]} +{"t": 10.0121, "q": [-0.2959185242652893, 0.011595189571380615, -0.0024105412885546684, 0.6185010671615601, -0.321688175201416, -0.016318386420607567, -0.30154314637184143, -0.008709602057933807, 0.009535029530525208, 0.6167454719543457, -0.33280035853385925, 0.018335750326514244, -0.025270506739616394, -0.017480924725532532, -0.006876349449157715, -0.1690734475851059, 0.430856853723526, -0.390470027923584, 0.08017446845769882, -0.6255525946617126, -0.34756651520729065, -0.7502124905586243, -0.645781934261322, -0.03959587961435318, 0.02930143103003502, -0.2284073531627655, -0.47664859890937805, -1.027491569519043, 0.8373377919197083]} +{"t": 10.0288, "q": [-0.2961060106754303, 0.011723021045327187, -0.0028122980147600174, 0.618364691734314, -0.3212425410747528, -0.017003854736685753, -0.3017306327819824, -0.008547681383788586, 0.009441286325454712, 0.6167880892753601, -0.33279961347579956, 0.018248531967401505, -0.025163371115922928, -0.016391504555940628, -0.007563209626823664, -0.1706913262605667, 0.42485275864601135, -0.3922676742076874, 0.07928763329982758, -0.6253249049186707, -0.3470032513141632, -0.7501166462898254, -0.6460576057434082, -0.04537227749824524, 0.023549001663923264, -0.22877885401248932, -0.47180697321891785, -1.0264968872070312, 0.8379250168800354]} +{"t": 10.0456, "q": [-0.29631906747817993, 0.011884940788149834, -0.00321405497379601, 0.6181431412696838, -0.3208577036857605, -0.017508400604128838, -0.30190107226371765, -0.008343150839209557, 0.00932075921446085, 0.6166773438453674, -0.33281946182250977, 0.01816878467798233, -0.024775007739663124, -0.014999025501310825, -0.008511679247021675, -0.17288443446159363, 0.4193759858608246, -0.3955153822898865, 0.07916779071092606, -0.6251091957092285, -0.34652388095855713, -0.7501166462898254, -0.646153450012207, -0.05017795041203499, 0.018395785242319107, -0.22899457812309265, -0.4667016863822937, -1.025717854499817, 0.8381407856941223]} +{"t": 10.0626, "q": [-0.2965491712093353, 0.012089472264051437, -0.003441717242822051, 0.6179641485214233, -0.32042407989501953, -0.017511527985334396, -0.3019862771034241, -0.00812157616019249, 0.009106488898396492, 0.6166943311691284, -0.332798033952713, 0.01805952563881874, -0.02470804750919342, -0.01355320680886507, -0.009455528110265732, -0.17498166859149933, 0.4144744277000427, -0.3985713720321655, 0.07923969626426697, -0.624701738357544, -0.34532544016838074, -0.750152587890625, -0.64629727602005, -0.05408480763435364, 0.015303855761885643, -0.22915036976337433, -0.462531179189682, -1.0252264738082886, 0.8382246494293213]} +{"t": 10.0795, "q": [-0.2972905933856964, 0.012319568544626236, -0.0034952848218381405, 0.6175209879875183, -0.32021892070770264, -0.017712803557515144, -0.3022078573703766, -0.007959655486047268, 0.009133272804319859, 0.6166773438453674, -0.3329191505908966, 0.01782814972102642, -0.024627696722745895, -0.01209947094321251, -0.010425258427858353, -0.17699502408504486, 0.40860214829444885, -0.40120789408683777, 0.0794074758887291, -0.6236351132392883, -0.3426409959793091, -0.7501166462898254, -0.6463332176208496, -0.05796769633889198, 0.011960256844758987, -0.22946196794509888, -0.4578213691711426, -1.0249629020690918, 0.838248610496521]} +{"t": 10.0962, "q": [-0.2986200451850891, 0.012566709890961647, -0.003589028026908636, 0.6172653436660767, -0.320170134305954, -0.01781390607357025, -0.30287256836891174, -0.007772169075906277, 0.009119881317019463, 0.6164983510971069, -0.33299580216407776, 0.01767629012465477, -0.024574128910899162, -0.01063015777617693, -0.011504552327096462, -0.17912821471691132, 0.40355679392814636, -0.40458744764328003, 0.07981494069099426, -0.6225085854530334, -0.3389977812767029, -0.7499368786811829, -0.6462733149528503, -0.06158693507313728, 0.009036106057465076, -0.22971363365650177, -0.45426204800605774, -1.0248429775238037, 0.8383445143699646]} +{"t": 10.1129, "q": [-0.29992392659187317, 0.012728631496429443, -0.0037095551379024982, 0.6171289682388306, -0.32015812397003174, -0.01786460168659687, -0.30425316095352173, -0.0076187714003026485, 0.009119881317019463, 0.6163875460624695, -0.33318600058555603, 0.01736564002931118, -0.024466993287205696, -0.008501128293573856, -0.012926566414535046, -0.18183664977550507, 0.3991466164588928, -0.4096807539463043, 0.0800066888332367, -0.6209386587142944, -0.33331725001335144, -0.7493855953216553, -0.64629727602005, -0.06563760340213776, 0.0057524279691278934, -0.2298334687948227, -0.45001962780952454, -1.0246033668518066, 0.8388358354568481]} +{"t": 10.1297, "q": [-0.30048638582229614, 0.012856462970376015, -0.0038702578749507666, 0.6171033978462219, -0.32014599442481995, -0.017900751903653145, -0.30607688426971436, -0.007448328658938408, 0.009052921086549759, 0.6163704991340637, -0.3332667052745819, 0.01720653660595417, -0.024453600868582726, -0.006545538082718849, -0.014115013182163239, -0.18393388390541077, 0.3946884870529175, -0.4141748249530792, 0.07995875179767609, -0.6185418367385864, -0.3286074697971344, -0.7489181756973267, -0.6462493538856506, -0.06850183010101318, 0.0014620755100622773, -0.23004919290542603, -0.4478624761104584, -1.0245074033737183, 0.8396987318992615]} +{"t": 10.1464, "q": [-0.30117666721343994, 0.013043949380517006, -0.0038434739690274, 0.6170863509178162, -0.3201299011707306, -0.017958642914891243, -0.306733101606369, -0.007243798114359379, 0.00906631350517273, 0.6163875460624695, -0.33332303166389465, 0.017076274380087852, -0.024600911885499954, -0.004137659445405006, -0.015629040077328682, -0.18508437275886536, 0.38935548067092896, -0.41773414611816406, 0.08004263788461685, -0.6174153089523315, -0.3259828984737396, -0.7486066222190857, -0.6457100510597229, -0.07127019017934799, -0.002265018643811345, -0.23008513450622559, -0.44643634557724, -1.0239681005477905, 0.8403818011283875]} +{"t": 10.1633, "q": [-0.3020715117454529, 0.013342222198843956, -0.003736338810995221, 0.6171033978462219, -0.3201299011707306, -0.017958642914891243, -0.30731260776519775, -0.006962568499147892, 0.009186840616166592, 0.6163790225982666, -0.33338305354118347, 0.016895167529582977, -0.024815183132886887, -0.0019423146732151508, -0.016991546377539635, -0.185371994972229, 0.3839026689529419, -0.42035868763923645, 0.0800546258687973, -0.6163007616996765, -0.3239216208457947, -0.7483669519424438, -0.6443079113960266, -0.0746617242693901, -0.004350273869931698, -0.2301091104745865, -0.4452858865261078, -1.0234768390655518, 0.8413165807723999]} +{"t": 10.18, "q": [-0.30292370915412903, 0.0136660635471344, -0.003562244353815913, 0.6171630620956421, -0.32011768221855164, -0.01798028126358986, -0.3072870373725891, -0.00666429428383708, 0.009360934607684612, 0.6163875460624695, -0.33332085609436035, 0.01681460253894329, -0.024975884705781937, 0.0001593546912772581, -0.01804373599588871, -0.1856955736875534, 0.3782341182231903, -0.42275553941726685, 0.0800066888332367, -0.6152581572532654, -0.3220161199569702, -0.7482351064682007, -0.6423544883728027, -0.07905993610620499, -0.006363623775541782, -0.23024094104766846, -0.44427919387817383, -1.023165225982666, 0.8424191474914551]} +{"t": 10.1968, "q": [-0.30433839559555054, 0.014066603034734726, -0.003481892868876457, 0.617384672164917, -0.3201095163822174, -0.017994726076722145, -0.30718478560447693, -0.006229666527360678, 0.009374327026307583, 0.6164301633834839, -0.3331255614757538, 0.016514653339982033, -0.024949101731181145, 0.0025348167400807142, -0.01950742118060589, -0.18641462922096252, 0.37298503518104553, -0.4265665113925934, 0.08013851195573807, -0.6145989894866943, -0.32036229968070984, -0.7480912804603577, -0.6403530836105347, -0.08384163677692413, -0.008688563480973244, -0.23037275671958923, -0.44317665696144104, -1.0230214595794678, 0.8439171314239502]} +{"t": 10.2136, "q": [-0.3060939311981201, 0.014594973996281624, -0.003468500915914774, 0.6178703904151917, -0.3200482130050659, -0.0180739164352417, -0.30759382247924805, -0.0057012951001524925, 0.00925379991531372, 0.6165494918823242, -0.33272191882133484, 0.015820149332284927, -0.024975884705781937, 0.004440242424607277, -0.020670991390943527, -0.1868700236082077, 0.3686467409133911, -0.43031758069992065, 0.08023438602685928, -0.6143113970756531, -0.31828904151916504, -0.7478875517845154, -0.6384596228599548, -0.0881200060248375, -0.010833739303052425, -0.23033681511878967, -0.442433625459671, -1.022949457168579, 0.8463379740715027]} +{"t": 10.2303, "q": [-0.3076023459434509, 0.015370486304163933, -0.003441717242822051, 0.6185181140899658, -0.32001957297325134, -0.018109913915395737, -0.30849719047546387, -0.004917260725051165, 0.009173448197543621, 0.6165921092033386, -0.33236488699913025, 0.015307798981666565, -0.024975884705781937, 0.0062240916304290295, -0.020896028727293015, -0.18757709860801697, 0.36511141061782837, -0.4348236322402954, 0.08034224808216095, -0.6141196489334106, -0.3147057592868805, -0.7476838231086731, -0.6370454430580139, -0.09217067807912827, -0.012140019796788692, -0.23036077618598938, -0.4412711560726166, -1.02287757396698, 0.8492860794067383]} +{"t": 10.247, "q": [-0.30882102251052856, 0.016214175149798393, -0.003361365757882595, 0.6190123558044434, -0.3200075626373291, -0.018160590901970863, -0.30959653854370117, -0.0041161817498505116, 0.009079704992473125, 0.6166602969169617, -0.3320002555847168, 0.014868051744997501, -0.02488214150071144, 0.007574737537652254, -0.020559504628181458, -0.18812836706638336, 0.36125248670578003, -0.43805938959121704, 0.08053399622440338, -0.6137840747833252, -0.31082287430763245, -0.7477317452430725, -0.6357271671295166, -0.0962572991847992, -0.012271846644580364, -0.23037275671958923, -0.4403843283653259, -1.0229015350341797, 0.8521023988723755]} +{"t": 10.2639, "q": [-0.3097669780254364, 0.01673402450978756, -0.0032810145057737827, 0.6191743016242981, -0.3199871778488159, -0.018196657299995422, -0.31093451380729675, -0.003519633784890175, 0.00906631350517273, 0.616796612739563, -0.3318626582622528, 0.01459774374961853, -0.024614304304122925, 0.008212019689381123, -0.02024965174496174, -0.188415989279747, 0.3575133979320526, -0.43983304500579834, 0.0806778073310852, -0.6133885979652405, -0.3073714077472687, -0.7477317452430725, -0.6338097453117371, -0.10027201473712921, -0.011996209621429443, -0.23039673268795013, -0.4400487542152405, -1.0229135751724243, 0.8536244034767151]} +{"t": 10.2806, "q": [-0.31048282980918884, 0.017262395471334457, -0.0032274469267576933, 0.6193788051605225, -0.31981176137924194, -0.018477879464626312, -0.3119741976261139, -0.0029912625905126333, 0.008972570300102234, 0.6171033978462219, -0.33170056343078613, 0.014341740868985653, -0.02435985766351223, 0.00855326559394598, -0.019875172525644302, -0.18882344663143158, 0.3537144064903259, -0.44163069128990173, 0.08084558695554733, -0.6124657988548279, -0.304914653301239, -0.7476838231086731, -0.6311731934547424, -0.10482601821422577, -0.011696604080498219, -0.2304566502571106, -0.43980908393859863, -1.0230094194412231, 0.8551104068756104]} +{"t": 10.2973, "q": [-0.3106873631477356, 0.017858944833278656, -0.0032274469267576933, 0.6195663213729858, -0.31960394978523254, -0.01884586550295353, -0.3128775358200073, -0.0024202808272093534, 0.008691340684890747, 0.6173250079154968, -0.3315716087818146, 0.014129684306681156, -0.02419915609061718, 0.008621352724730968, -0.019597211852669716, -0.18893131613731384, 0.3500951826572418, -0.4427332282066345, 0.08100137859582901, -0.6102727055549622, -0.30328479409217834, -0.7477077841758728, -0.6280213594436646, -0.10845723748207092, -0.011744541116058826, -0.2305525243282318, -0.43958139419555664, -1.0230573415756226, 0.8569560050964355]} +{"t": 10.3143, "q": [-0.3106532692909241, 0.018276527523994446, -0.003254230599850416, 0.6197282075881958, -0.31945285201072693, -0.019069263711571693, -0.3134911358356476, -0.0019004317000508308, 0.008544029667973518, 0.6175209879875183, -0.3315051198005676, 0.014027259312570095, -0.024078628048300743, 0.00862883310765028, -0.019485116004943848, -0.1889432966709137, 0.34719499945640564, -0.443668007850647, 0.08110923320055008, -0.607228696346283, -0.3020264506340027, -0.7477197647094727, -0.6244620084762573, -0.11063836514949799, -0.011864382773637772, -0.23066037893295288, -0.4392697811126709, -1.023093342781067, 0.8588495254516602]} +{"t": 10.331, "q": [-0.3106532692909241, 0.01860889047384262, -0.0032944062259048223, 0.6197537779808044, -0.3194037675857544, -0.01912681572139263, -0.3137638568878174, -0.0015169365797191858, 0.008383326232433319, 0.6175806522369385, -0.33149251341819763, 0.013990803621709347, -0.02403845265507698, 0.008711992762982845, -0.019168632104992867, -0.189015194773674, 0.344558447599411, -0.4449023902416229, 0.08128900080919266, -0.6039689779281616, -0.30061230063438416, -0.7477317452430725, -0.6207588911056519, -0.11240004748106003, -0.011888351291418076, -0.23088808357715607, -0.43900614976882935, -1.0232491493225098, 0.8600000143051147]} +{"t": 10.3478, "q": [-0.31061917543411255, 0.01878785528242588, -0.003321190131828189, 0.61971116065979, -0.3194039762020111, -0.0191558375954628, -0.3137979209423065, -0.0013379721203818917, 0.008276191540062428, 0.6175891757011414, -0.33149251341819763, 0.013990803621709347, -0.023917926475405693, 0.008939327672123909, -0.018857738003134727, -0.1892189383506775, 0.34201779961586, -0.44631651043891907, 0.08163654059171677, -0.6008171439170837, -0.2988506257534027, -0.7477197647094727, -0.6169719099998474, -0.11353854835033417, -0.011804461479187012, -0.2311277687549591, -0.4388383626937866, -1.023560643196106, 0.8608748316764832]} +{"t": 10.3647, "q": [-0.3106362223625183, 0.018821943551301956, -0.0032944062259048223, 0.6195407509803772, -0.31939154863357544, -0.019148454070091248, -0.3137979209423065, -0.001320927869528532, 0.008262800052762032, 0.6175636053085327, -0.33150073885917664, 0.01399086695164442, -0.023784006014466286, 0.009189498610794544, -0.018620088696479797, -0.18957845866680145, 0.33990857005119324, -0.4477546215057373, 0.08188821375370026, -0.5977132320404053, -0.2959863841533661, -0.7477197647094727, -0.6135923266410828, -0.11449728906154633, -0.011744541116058826, -0.23134347796440125, -0.4387185275554657, -1.0238842964172363, 0.8615219593048096]} +{"t": 10.3816, "q": [-0.31053397059440613, 0.018821943551301956, -0.0033077981788665056, 0.619412899017334, -0.3194039762020111, -0.0191558375954628, -0.3137127161026001, -0.0013294500531628728, 0.008236016146838665, 0.6174868941307068, -0.3315132260322571, 0.014012790285050869, -0.02351616881787777, 0.009591417387127876, -0.018373405560851097, -0.19034545123577118, 0.3376914858818054, -0.44958820939064026, 0.0824275016784668, -0.5964428782463074, -0.29215145111083984, -0.747695803642273, -0.6101049184799194, -0.11564777046442032, -0.01176850963383913, -0.231750950217247, -0.43847882747650146, -1.0243756771087646, 0.8618695139884949]} +{"t": 10.3984, "q": [-0.3104657828807831, 0.01878785528242588, -0.0032810145057737827, 0.6193361878395081, -0.3194122314453125, -0.019155921414494514, -0.3137127161026001, -0.0014317154418677092, 0.008249407634139061, 0.6174528002738953, -0.3315092921257019, 0.014034567400813103, -0.023261722177267075, 0.009887157939374447, -0.018174754455685616, -0.1910165697336197, 0.3363252878189087, -0.4513498842716217, 0.08299075812101364, -0.595795750617981, -0.2884003818035126, -0.7475879788398743, -0.607456386089325, -0.11660651117563248, -0.01179247722029686, -0.23196665942668915, -0.43820318579673767, -1.0251306295394897, 0.862085223197937]} +{"t": 10.4151, "q": [-0.3103720545768738, 0.018677067011594772, -0.003254230599850416, 0.6193276643753052, -0.3194078505039215, -0.01911960169672966, -0.313721239566803, -0.0015254586469382048, 0.008249407634139061, 0.6173079609870911, -0.3315174877643585, 0.014034648425877094, -0.022967100143432617, 0.010190454311668873, -0.017941974103450775, -0.19207118451595306, 0.3356182277202606, -0.4539504647254944, 0.08423712104558945, -0.5953882932662964, -0.28498488664627075, -0.7474800944328308, -0.6049157381057739, -0.11752929538488388, -0.011780492961406708, -0.2320505529642105, -0.4379994571208954, -1.0258976221084595, 0.8621811270713806]} +{"t": 10.4323, "q": [-0.31029534339904785, 0.018583323806524277, -0.003254230599850416, 0.6192851066589355, -0.3194078505039215, -0.01911960169672966, -0.3137979209423065, -0.0016873788554221392, 0.008209232240915298, 0.6171886324882507, -0.33151763677597046, 0.014049200341105461, -0.022779613733291626, 0.010357080958783627, -0.017699267715215683, -0.19277824461460114, 0.3354264795780182, -0.4561915099620819, 0.08596284687519073, -0.59474116563797, -0.2831273078918457, -0.7473962306976318, -0.6026867032051086, -0.11809255182743073, -0.01170858833938837, -0.2320505529642105, -0.4377478063106537, -1.0265806913375854, 0.8622530102729797]} +{"t": 10.449, "q": [-0.31019309163093567, 0.018455492332577705, -0.003173879347741604, 0.6192851066589355, -0.31941190361976624, -0.019112389534711838, -0.3139513432979584, -0.0019004317000508308, 0.008276191540062428, 0.6170778274536133, -0.33150941133499146, 0.014049100689589977, -0.02271265536546707, 0.010364406742155552, -0.01748983934521675, -0.19273030757904053, 0.3350909352302551, -0.4569704830646515, 0.08867128193378448, -0.5936505794525146, -0.2818090617656708, -0.7473602294921875, -0.6004935503005981, -0.11808057129383087, -0.011301124468445778, -0.23211047053337097, -0.43748414516448975, -1.027719259262085, 0.8622889518737793]} +{"t": 10.4658, "q": [-0.31021010875701904, 0.018344704061746597, -0.003106919815763831, 0.6192936301231384, -0.31941598653793335, -0.019105175510048866, -0.31414735317230225, -0.0020538298413157463, 0.00831636693328619, 0.6169756054878235, -0.33150967955589294, 0.014078184962272644, -0.02271265536546707, 0.010364142246544361, -0.01727549359202385, -0.19264641404151917, 0.33493512868881226, -0.4573419988155365, 0.09207480400800705, -0.592356264591217, -0.2804548442363739, -0.747240424156189, -0.5983603596687317, -0.11800866574048996, -0.01091762911528349, -0.23218238353729248, -0.437316358089447, -1.0286179780960083, 0.8622889518737793]} +{"t": 10.4825, "q": [-0.3102271556854248, 0.018276527523994446, -0.0030399602837860584, 0.6193021535873413, -0.31942006945610046, -0.019097963348031044, -0.31423255801200867, -0.002156095113605261, 0.00831636693328619, 0.616864800453186, -0.3314933776855469, 0.014092554338276386, -0.022605519741773605, 0.010189201682806015, -0.016908951103687286, -0.1926104724407196, 0.3349950611591339, -0.45749780535697937, 0.09577792882919312, -0.5907983183860779, -0.2791126072406769, -0.7471684813499451, -0.5961073637008667, -0.11790081113576889, -0.01079778652638197, -0.23217038810253143, -0.4371965229511261, -1.0290974378585815, 0.8622649908065796]} +{"t": 10.4992, "q": [-0.31026124954223633, 0.01817426271736622, -0.003066744189709425, 0.6192936301231384, -0.3194241523742676, -0.01909073255956173, -0.31429222226142883, -0.0023009711876511574, 0.008276191540062428, 0.6166858673095703, -0.33148956298828125, 0.014128864742815495, -0.022230546921491623, 0.010052171535789967, -0.01651792973279953, -0.19255053997039795, 0.3350789248943329, -0.4575457274913788, 0.10024804621934891, -0.5879940390586853, -0.27799805998802185, -0.7471804618835449, -0.5934708118438721, -0.11788882315158844, -0.010689929127693176, -0.23217038810253143, -0.4370407164096832, -1.029540777206421, 0.8622410297393799]} +{"t": 10.516, "q": [-0.3102186322212219, 0.018089041113853455, -0.003066744189709425, 0.6192851066589355, -0.31942006945610046, -0.019097963348031044, -0.3143518567085266, -0.002394714392721653, 0.008182448334991932, 0.6165409684181213, -0.33147722482681274, 0.014121475629508495, -0.021721655502915382, 0.00994550995528698, -0.016117552295327187, -0.1926344335079193, 0.33523473143577576, -0.4575457274913788, 0.1043945848941803, -0.5852975845336914, -0.2763921916484833, -0.7471684813499451, -0.5898755788803101, -0.11775700002908707, -0.009886985644698143, -0.23217038810253143, -0.43698081374168396, -1.0303317308425903, 0.86222904920578]} +{"t": 10.5327, "q": [-0.31024420261383057, 0.017978252843022346, -0.003093527862802148, 0.6191998720169067, -0.3194282054901123, -0.019083520397543907, -0.3143603801727295, -0.0025395904667675495, 0.008102096617221832, 0.616353452205658, -0.33148160576820374, 0.014157850295305252, -0.02115919440984726, 0.009800611063838005, -0.015342348255217075, -0.19264641404151917, 0.3353545665740967, -0.45744985342025757, 0.10748651623725891, -0.5828168392181396, -0.27460652589797974, -0.7471925020217896, -0.5855252742767334, -0.11770906299352646, -0.008580705150961876, -0.23214642703533173, -0.43698081374168396, -1.0319496393203735, 0.8622530102729797]} +{"t": 10.5494, "q": [-0.31026124954223633, 0.017833378165960312, -0.003106919815763831, 0.6190634965896606, -0.3194282054901123, -0.019083520397543907, -0.31433483958244324, -0.0026674221735447645, 0.008035137318074703, 0.616123378276825, -0.3314736485481262, 0.014186852611601353, -0.020476208999753, 0.009686227887868881, -0.014742649160325527, -0.19255053997039795, 0.33547443151474, -0.45735397934913635, 0.11017098277807236, -0.5800125598907471, -0.2731684446334839, -0.7472164630889893, -0.5806237459182739, -0.11763715744018555, -0.0076339514926075935, -0.23218238353729248, -0.4368489682674408, -1.0345501899719238, 0.8621931076049805]} +{"t": 10.5662, "q": [-0.31025272607803345, 0.01769702322781086, -0.003106919815763831, 0.6189953088760376, -0.31942394375801086, -0.019061710685491562, -0.3143092691898346, -0.002846386516466737, 0.008021745830774307, 0.6160296201705933, -0.3314736485481262, 0.014186852611601353, -0.019873572513461113, 0.009525720961391926, -0.013763491064310074, -0.19244268536567688, 0.3355223536491394, -0.4572461247444153, 0.11226822435855865, -0.577699601650238, -0.2719101011753082, -0.7471804618835449, -0.5757701396942139, -0.11720572412014008, -0.00672315014526248, -0.23215840756893158, -0.4367530941963196, -1.038109540939331, 0.8621571660041809]} +{"t": 10.583, "q": [-0.31021010875701904, 0.017492493614554405, -0.003093527862802148, 0.6188504695892334, -0.31943219900131226, -0.019061796367168427, -0.3143092691898346, -0.00301682879216969, 0.008048529736697674, 0.6160125732421875, -0.33148613572120667, 0.014208775945007801, -0.01931111328303814, 0.009319608099758625, -0.012474103830754757, -0.1923108696937561, 0.3355463147163391, -0.4572221636772156, 0.11380220204591751, -0.5761416554450989, -0.27075961232185364, -0.7472164630889893, -0.5713120102882385, -0.11678627133369446, -0.005596633069217205, -0.23241007328033447, -0.4365973174571991, -1.0409737825393677, 0.8620732426643372]} +{"t": 10.5997, "q": [-0.31010785698890686, 0.017305007204413414, -0.003106919815763831, 0.6186373829841614, -0.3194238245487213, -0.019047198817133904, -0.31428369879722595, -0.0031872710678726435, 0.008021745830774307, 0.6159273982048035, -0.3315027952194214, 0.0142380241304636, -0.01866830326616764, 0.009135992266237736, -0.011023900471627712, -0.19240672886371613, 0.3355223536491394, -0.4572940766811371, 0.11574364453554153, -0.5750390887260437, -0.26891404390335083, -0.7473003268241882, -0.566350519657135, -0.11669040471315384, -0.004422178957611322, -0.23241007328033447, -0.436573326587677, -1.0457674264907837, 0.862001359462738]} +{"t": 10.6165, "q": [-0.310099333524704, 0.017253873869776726, -0.003106919815763831, 0.6185181140899658, -0.31940314173698425, -0.019039712846279144, -0.3143007457256317, -0.0032554480712860823, 0.00799496192485094, 0.615816593170166, -0.33149030804634094, 0.014216101728379726, -0.017918355762958527, 0.008830983191728592, -0.009371425025165081, -0.19244268536567688, 0.33546242117881775, -0.45723414421081543, 0.11806859076023102, -0.5742002129554749, -0.2660977244377136, -0.7473482489585876, -0.5610175132751465, -0.116726353764534, -0.002972087822854519, -0.23244602978229523, -0.4365493655204773, -1.0515438318252563, 0.8619773983955383]} +{"t": 10.6333, "q": [-0.31006523966789246, 0.01722830720245838, -0.003106919815763831, 0.6185010671615601, -0.31938663125038147, -0.019039560109376907, -0.31433483958244324, -0.0032384039368480444, 0.00798156950622797, 0.6158080697059631, -0.33149030804634094, 0.014216101728379726, -0.017396071925759315, 0.008897337131202221, -0.0076538450084626675, -0.19240672886371613, 0.3355703055858612, -0.4569944739341736, 0.1206212267279625, -0.5733852386474609, -0.2641323208808899, -0.7475040555000305, -0.5567991137504578, -0.11683420836925507, -0.0010186590952798724, -0.23244602978229523, -0.4364415109157562, -1.0573681592941284, 0.8618335723876953]} +{"t": 10.6501, "q": [-0.3099459409713745, 0.01722830720245838, -0.003093527862802148, 0.6184669733047485, -0.319369912147522, -0.019010350108146667, -0.3143007457256317, -0.0032469260040670633, 0.007941394113004208, 0.6158336400985718, -0.3314944803714752, 0.01422340888530016, -0.017168410122394562, 0.009019154123961926, -0.005349545273929834, -0.19245466589927673, 0.33558228611946106, -0.457042396068573, 0.12317387014627457, -0.5722827315330505, -0.26334136724472046, -0.7476838231086731, -0.5531918406486511, -0.11682222783565521, 0.0008388957940042019, -0.23280556499958038, -0.436345636844635, -1.0629887580871582, 0.8615819215774536]} +{"t": 10.6668, "q": [-0.3098607063293457, 0.017245352268218994, -0.003093527862802148, 0.6183817386627197, -0.319369912147522, -0.019010350108146667, -0.31428369879722595, -0.003229881636798382, 0.007928002625703812, 0.6158251166343689, -0.3314944803714752, 0.01422340888530016, -0.017074666917324066, 0.009094338864088058, -0.002880426123738289, -0.19240672886371613, 0.3356421887874603, -0.4570184350013733, 0.12565460801124573, -0.570461094379425, -0.26329341530799866, -0.7478036880493164, -0.5498122572898865, -0.11661849915981293, 0.0017137442482635379, -0.23329691588878632, -0.4363216757774353, -1.0699396133422852, 0.861342191696167]} +{"t": 10.6836, "q": [-0.309911847114563, 0.017253873869776726, -0.003106919815763831, 0.6181942820549011, -0.31937408447265625, -0.019017666578292847, -0.314394474029541, -0.0032554480712860823, 0.007887826301157475, 0.6157739758491516, -0.3315025568008423, 0.014208939857780933, -0.01682022027671337, 0.009015646763145924, -0.0009699175134301186, -0.19238276779651642, 0.3355942666530609, -0.45700645446777344, 0.12833906710147858, -0.5682080984115601, -0.2633054256439209, -0.7478156685829163, -0.5461451411247253, -0.1164267510175705, 0.0019174760673195124, -0.2343275547027588, -0.4363935887813568, -1.0771421194076538, 0.8612223863601685]} +{"t": 10.7004, "q": [-0.3099544644355774, 0.017253873869776726, -0.0031872710678726435, 0.6181090474128723, -0.3193492293357849, -0.0190028827637434, -0.3143689036369324, -0.003221359569579363, 0.007753907702863216, 0.6156376004219055, -0.331498384475708, 0.014201631769537926, -0.01644524745643139, 0.009124472737312317, 0.0008646179339848459, -0.19225093722343445, 0.3355703055858612, -0.4568746089935303, 0.1309276670217514, -0.5643011927604675, -0.2632574737071991, -0.7478875517845154, -0.5414592623710632, -0.11637881398200989, 0.0019174760673195124, -0.2356697916984558, -0.4363935887813568, -1.0843926668167114, 0.8611025214195251]} +{"t": 10.7171, "q": [-0.30993741750717163, 0.01727944053709507, -0.0031872710678726435, 0.6180408596992493, -0.3193616569042206, -0.019010266289114952, -0.3143603801727295, -0.0032554480712860823, 0.00772712379693985, 0.6155864596366882, -0.3314986228942871, 0.014230716973543167, -0.016083667054772377, 0.009341523982584476, 0.0027147193904966116, -0.19197531044483185, 0.3355703055858612, -0.45689859986305237, 0.13333648443222046, -0.5592678189277649, -0.26334136724472046, -0.7480313777923584, -0.5370491147041321, -0.11637881398200989, 0.0019654128700494766, -0.23702400922775269, -0.43642953038215637, -1.0928294658660889, 0.8609707355499268]} +{"t": 10.7338, "q": [-0.3098948001861572, 0.017253873869776726, -0.0031604873947799206, 0.6178874373435974, -0.31935736536979675, -0.018988456577062607, -0.3143433630466461, -0.0032469260040670633, 0.007713731843978167, 0.6154927611351013, -0.3315027952194214, 0.0142380241304636, -0.015896180644631386, 0.009686948731541634, 0.004163510166108608, -0.19174760580062866, 0.3355703055858612, -0.4570184350013733, 0.1359969824552536, -0.5569189190864563, -0.2634252607822418, -0.7483189702033997, -0.5333698987960815, -0.11641476303339005, 0.0023009711876511574, -0.2386658489704132, -0.43651342391967773, -1.1005833148956299, 0.8608987927436829]} +{"t": 10.7506, "q": [-0.30987775325775146, 0.017236828804016113, -0.0031604873947799206, 0.6177170276641846, -0.319353312253952, -0.01899566873908043, -0.3143177926540375, -0.0032554480712860823, 0.007740515749901533, 0.6153563857078552, -0.3315027952194214, 0.0142380241304636, -0.015681909397244453, 0.009897857904434204, 0.005880831740796566, -0.19151990115642548, 0.33560624718666077, -0.45705437660217285, 0.13962820172309875, -0.5556486248970032, -0.2637009024620056, -0.7487983703613281, -0.5294630527496338, -0.11641476303339005, 0.0032597093377262354, -0.24054737389087677, -0.4366692006587982, -1.1086606979370117, 0.8608508706092834]} +{"t": 10.7675, "q": [-0.309911847114563, 0.017194218933582306, -0.003173879347741604, 0.61761474609375, -0.31934505701065063, -0.018995584920048714, -0.3143603801727295, -0.003272492438554764, 0.00772712379693985, 0.6153052449226379, -0.3315027952194214, 0.0142380241304636, -0.015347111970186234, 0.009986373595893383, 0.007241381332278252, -0.1912921965122223, 0.3356302082538605, -0.4571742117404938, 0.1426602154970169, -0.5542824268341064, -0.2638566792011261, -0.7493736147880554, -0.5252446532249451, -0.11646270006895065, 0.00347542529925704, -0.24240492284297943, -0.43723246455192566, -1.1170496940612793, 0.860802948474884]} +{"t": 10.7842, "q": [-0.30992037057876587, 0.017177175730466843, -0.0031872710678726435, 0.6174868941307068, -0.3193367123603821, -0.01898098923265934, -0.3143689036369324, -0.003272492438554764, 0.0076869479380548, 0.6152370572090149, -0.3315027952194214, 0.0142380241304636, -0.014972139149904251, 0.009784013032913208, 0.008525350131094456, -0.19094465672969818, 0.33566614985466003, -0.4571622312068939, 0.14534468948841095, -0.5527963638305664, -0.2643240690231323, -0.7502124905586243, -0.520331084728241, -0.11636682599782944, 0.0037630468141287565, -0.24419057369232178, -0.4373762905597687, -1.1268646717071533, 0.8607909679412842]} +{"t": 10.801, "q": [-0.3099544644355774, 0.017168652266263962, -0.0032006630208343267, 0.6175209879875183, -0.31932416558265686, -0.018959077075123787, -0.3143518567085266, -0.003263970138505101, 0.007660164497792721, 0.6152796745300293, -0.3314986228942871, 0.014230716973543167, -0.01471769344061613, 0.009779971092939377, 0.009730810299515724, -0.19100458920001984, 0.33555829524993896, -0.45703041553497314, 0.14787335693836212, -0.5507950186729431, -0.2648993134498596, -0.751123309135437, -0.5152138471603394, -0.11639079451560974, 0.004254399798810482, -0.24547287821769714, -0.4374482035636902, -1.1356011629104614, 0.8607789874076843]} +{"t": 10.8178, "q": [-0.3099629878997803, 0.017168652266263962, -0.0032006630208343267, 0.6175380349159241, -0.31931987404823303, -0.01893726736307144, -0.3143603801727295, -0.0032810145057737827, 0.007633380591869354, 0.6152796745300293, -0.33150291442871094, 0.014252557419240475, -0.014490030705928802, 0.009667027741670609, 0.010902791284024715, -0.19140006601810455, 0.3356781601905823, -0.45700645446777344, 0.15018631517887115, -0.5483861565589905, -0.2649232745170593, -0.751950204372406, -0.510468065738678, -0.11633087694644928, 0.00436225812882185, -0.24671924114227295, -0.4375680387020111, -1.1441339254379272, 0.8607310056686401]} +{"t": 10.8345, "q": [-0.30998003482818604, 0.017126042395830154, -0.0032274469267576933, 0.6175380349159241, -0.3192993104457855, -0.018944310024380684, -0.3143433630466461, -0.0032895365729928017, 0.007619988638907671, 0.6153393387794495, -0.33149874210357666, 0.014245250262320042, -0.013954355381429195, 0.009400203824043274, 0.012347836047410965, -0.19145998358726501, 0.3355703055858612, -0.4569944739341736, 0.15193600952625275, -0.5464327335357666, -0.26497122645378113, -0.7535680532455444, -0.5052669048309326, -0.11594738066196442, 0.0043982104398310184, -0.248301163315773, -0.4377238154411316, -1.1510488986968994, 0.8606112003326416]} +{"t": 10.8512, "q": [-0.30998003482818604, 0.017083432525396347, -0.0033077981788665056, 0.6175380349159241, -0.3192867636680603, -0.01892239786684513, -0.31429222226142883, -0.00333214714191854, 0.007553029339760542, 0.6153393387794495, -0.3314906656742096, 0.01425970159471035, -0.013351719826459885, 0.00919446349143982, 0.013542469590902328, -0.19132815301418304, 0.33551037311553955, -0.4570184350013733, 0.1535179316997528, -0.5436763763427734, -0.2651749551296234, -0.7563364505767822, -0.4997301995754242, -0.11512047052383423, 0.004278368316590786, -0.2494516521692276, -0.4384908080101013, -1.1600490808486938, 0.8602995872497559]} +{"t": 10.868, "q": [-0.3100056052207947, 0.017049342393875122, -0.003321190131828189, 0.6175721287727356, -0.31928664445877075, -0.018907885998487473, -0.3142581284046173, -0.0033747577108442783, 0.0074860695749521255, 0.6153393387794495, -0.33148664236068726, 0.014266926795244217, -0.012722301296889782, 0.008852632716298103, 0.01475575752556324, -0.1910645067691803, 0.33551037311553955, -0.4571622312068939, 0.15562714636325836, -0.5396736264228821, -0.26543861627578735, -0.7597519159317017, -0.4944811165332794, -0.11412577331066132, 0.004518053028732538, -0.24987109005451202, -0.4391140043735504, -1.1685458421707153, 0.860143780708313]} +{"t": 10.8847, "q": [-0.30993741750717163, 0.016955599188804626, -0.003321190131828189, 0.6175806522369385, -0.31927016377449036, -0.018907716497778893, -0.3142240345478058, -0.003400324145331979, 0.007459285669028759, 0.6153649091720581, -0.3314785361289978, 0.0142813790589571, -0.012226800434291363, 0.008405229076743126, 0.01596861332654953, -0.19094465672969818, 0.33541449904441833, -0.45733001828193665, 0.15841947495937347, -0.5375164747238159, -0.2655584514141083, -0.7621128559112549, -0.4893758296966553, -0.1131550520658493, 0.005045359022915363, -0.25011077523231506, -0.43972519040107727, -1.1743582487106323, 0.8601318001747131]} +{"t": 10.9014, "q": [-0.3098948001861572, 0.01692151091992855, -0.0033747577108442783, 0.6176403164863586, -0.3192782998085022, -0.0188932903110981, -0.31413882970809937, -0.003459978848695755, 0.00743250222876668, 0.6154330968856812, -0.3314705789089203, 0.0143103813752532, -0.011704516597092152, 0.0080788005143404, 0.017304392531514168, -0.19082482159137726, 0.3353785574436188, -0.4573899507522583, 0.16086424887180328, -0.5358147025108337, -0.26566630601882935, -0.7641381621360779, -0.4843784272670746, -0.11187274008989334, 0.00512924836948514, -0.2500508725643158, -0.4405880570411682, -1.1810812950134277, 0.8601677417755127]} +{"t": 10.9182, "q": [-0.30969879031181335, 0.016895944252610207, -0.003334582084789872, 0.6176658868789673, -0.31928664445877075, -0.018907885998487473, -0.3140365481376648, -0.003468500915914774, 0.007459285669028759, 0.6155949831008911, -0.33145013451576233, 0.01431744359433651, -0.01126258447766304, 0.007668736856430769, 0.01889238879084587, -0.19063307344913483, 0.33548641204833984, -0.45737797021865845, 0.16262593865394592, -0.5346522331237793, -0.26576218008995056, -0.7664151787757874, -0.479908287525177, -0.11053051054477692, 0.005141232628375292, -0.25003886222839355, -0.44147488474845886, -1.1870614290237427, 0.8601797223091125]} +{"t": 10.9349, "q": [-0.3096221089363098, 0.016785157844424248, -0.003347973804920912, 0.6178022623062134, -0.31926587224006653, -0.018885908648371696, -0.3140365481376648, -0.003579288488253951, 0.007512853480875492, 0.6158336400985718, -0.33143800497055054, 0.01433912105858326, -0.010874219238758087, 0.007236475124955177, 0.020636390894651413, -0.19063307344913483, 0.33546242117881775, -0.4573899507522583, 0.16448348760604858, -0.5329984426498413, -0.26613369584083557, -0.7682847380638123, -0.47562992572784424, -0.10887668281793594, 0.005105279851704836, -0.24994300305843353, -0.441834419965744, -1.1925503015518188, 0.8601078391075134]} +{"t": 10.9516, "q": [-0.30960506200790405, 0.016699936240911484, -0.003347973804920912, 0.6178703904151917, -0.31924089789390564, -0.018856612965464592, -0.3140280246734619, -0.0036815537605434656, 0.0074860695749521255, 0.6160381436347961, -0.33142173290252686, 0.01435350812971592, -0.010472462512552738, 0.0068343826569616795, 0.022320952266454697, -0.19095665216445923, 0.33553433418273926, -0.45737797021865845, 0.1670001745223999, -0.5301222205162048, -0.26655313372612, -0.7699145674705505, -0.4709441065788269, -0.10719889402389526, 0.005033374764025211, -0.24982315301895142, -0.4416426718235016, -1.1975836753845215, 0.8598801493644714]} +{"t": 10.9683, "q": [-0.3095880150794983, 0.016631759703159332, -0.003334582084789872, 0.6179726719856262, -0.31923672556877136, -0.018849315121769905, -0.3140450716018677, -0.003766775131225586, 0.007526245433837175, 0.6162171363830566, -0.33141791820526123, 0.01438980083912611, -0.009816259145736694, 0.006357578095048666, 0.023652272298932076, -0.1913641095161438, 0.3354983925819397, -0.45730605721473694, 0.1699722707271576, -0.5264430642127991, -0.266780823469162, -0.7710291147232056, -0.4666297733783722, -0.10538927465677261, 0.00490154791623354, -0.24981117248535156, -0.4415707588195801, -1.2040671110153198, 0.8597363233566284]} +{"t": 10.9851, "q": [-0.3094942569732666, 0.0165550597012043, -0.003347973804920912, 0.6180749535560608, -0.3192283809185028, -0.018834717571735382, -0.3140450716018677, -0.003817907767370343, 0.007526245433837175, 0.6163875460624695, -0.33141791820526123, 0.01438980083912611, -0.009052921086549759, 0.005933826323598623, 0.02497655525803566, -0.19155585765838623, 0.33530664443969727, -0.457270085811615, 0.17250093817710876, -0.5210621356964111, -0.2669006884098053, -0.772275447845459, -0.4616083800792694, -0.10386727750301361, 0.004985437728464603, -0.2497752159833908, -0.44167861342430115, -1.2087289094924927, 0.8597962260246277]} +{"t": 11.0022, "q": [-0.3094857335090637, 0.01656358316540718, -0.003347973804920912, 0.6181005239486694, -0.3192242980003357, -0.018841931596398354, -0.31406211853027344, -0.003834951901808381, 0.007526245433837175, 0.6164472103118896, -0.33140984177589417, 0.014404252171516418, -0.008383326232433319, 0.00526167219504714, 0.026011012494564056, -0.19148394465446472, 0.3353186249732971, -0.457413911819458, 0.17447833716869354, -0.5170114636421204, -0.2669965624809265, -0.7734139561653137, -0.4568746089935303, -0.10274076461791992, 0.004997421987354755, -0.24978721141815186, -0.441690593957901, -1.2127556800842285, 0.8598202466964722]} +{"t": 11.0191, "q": [-0.3094431459903717, 0.01654653809964657, -0.003321190131828189, 0.6181090474128723, -0.3192077875137329, -0.018841778859496117, -0.3140365481376648, -0.0038434739690274, 0.007526245433837175, 0.6165494918823242, -0.33141815662384033, 0.01441886741667986, -0.007794083096086979, 0.004642862360924482, 0.02688751555979252, -0.19135212898254395, 0.33506694436073303, -0.4574858248233795, 0.17740248143672943, -0.5149381756782532, -0.267152339220047, -0.7747442126274109, -0.4520210027694702, -0.10220146924257278, 0.00490154791623354, -0.24955950677394867, -0.44165465235710144, -1.215559959411621, 0.8598082661628723]} +{"t": 11.0359, "q": [-0.3094346225261688, 0.01654653809964657, -0.003321190131828189, 0.6182538866996765, -0.31920769810676575, -0.018827231600880623, -0.31406211853027344, -0.0038434739690274, 0.007526245433837175, 0.6167284250259399, -0.3314220905303955, 0.014397107996046543, -0.007164664100855589, 0.004046687390655279, 0.0277873482555151, -0.19122029840946198, 0.3347553610801697, -0.45760565996170044, 0.18037457764148712, -0.5117024779319763, -0.2672002911567688, -0.7760265469551086, -0.4475628733634949, -0.10203369706869125, 0.004434163216501474, -0.24833711981773376, -0.44184640049934387, -1.2178369760513306, 0.8597842454910278]} +{"t": 11.0526, "q": [-0.3094431459903717, 0.01654653809964657, -0.003347973804920912, 0.6183561682701111, -0.3191952407360077, -0.018819866701960564, -0.31406211853027344, -0.0038519962690770626, 0.007526245433837175, 0.6168051362037659, -0.3314220905303955, 0.014397107996046543, -0.006615596357733011, 0.0034659402444958687, 0.028723763301968575, -0.1911364048719406, 0.33456361293792725, -0.4579172432422638, 0.18255570530891418, -0.508526623249054, -0.2671763300895691, -0.777572512626648, -0.4437399208545685, -0.1020217090845108, 0.003798999357968569, -0.2467072606086731, -0.44182243943214417, -1.2218517065048218, 0.859772264957428]} +{"t": 11.0695, "q": [-0.3094431459903717, 0.01654653809964657, -0.003361365757882595, 0.6184414029121399, -0.3191993236541748, -0.01881263591349125, -0.3140791654586792, -0.0038434739690274, 0.007539637386798859, 0.6169074177742004, -0.33141401410102844, 0.014411560259759426, -0.006280798930674791, 0.003088469849899411, 0.029645202681422234, -0.1907888650894165, 0.3344198167324066, -0.4579651951789856, 0.18483270704746246, -0.5070165991783142, -0.2673321068286896, -0.7796097993850708, -0.44128313660621643, -0.10205766558647156, 0.0035473306197673082, -0.24566462635993958, -0.4417625069618225, -1.2259262800216675, 0.8597962260246277]} +{"t": 11.0862, "q": [-0.3094346225261688, 0.016529494896531105, -0.003347973804920912, 0.6184243559837341, -0.3191952407360077, -0.018819866701960564, -0.3141558766365051, -0.0038605183362960815, 0.007526245433837175, 0.6170608401298523, -0.3314220905303955, 0.014397107996046543, -0.005905826110392809, 0.003042881842702627, 0.030375603586435318, -0.1907649040222168, 0.33428797125816345, -0.4582647979259491, 0.18822424113750458, -0.5051470994949341, -0.26803916692733765, -0.7820306420326233, -0.4394975006580353, -0.10212957113981247, 0.0032716935966163874, -0.24476581811904907, -0.44177448749542236, -1.2294737100601196, 0.859772264957428]} +{"t": 11.1029, "q": [-0.3094005286693573, 0.016512449830770493, -0.0033747577108442783, 0.6184499263763428, -0.31917017698287964, -0.018776077777147293, -0.3141217827796936, -0.0038690404035151005, 0.007526245433837175, 0.6171289682388306, -0.33141401410102844, 0.014411560259759426, -0.005437109619379044, 0.0031705782748758793, 0.031157691031694412, -0.1906929910182953, 0.3340243399143219, -0.4584205746650696, 0.1913401335477829, -0.5026423931121826, -0.26886609196662903, -0.7843195796012878, -0.4385627210140228, -0.10205766558647156, 0.0028881982434540987, -0.24415461719036102, -0.4417385458946228, -1.2329010963439941, 0.8597842454910278]} +{"t": 11.1198, "q": [-0.30929824709892273, 0.01649540476500988, -0.0033747577108442783, 0.6184499263763428, -0.3191661238670349, -0.018783291801810265, -0.31414735317230225, -0.0038860845379531384, 0.007553029339760542, 0.6173079609870911, -0.33141401410102844, 0.014411560259759426, -0.004874649923294783, 0.0031474516727030277, 0.03190171346068382, -0.19056116044521332, 0.3338086009025574, -0.45852842926979065, 0.19330555200576782, -0.4988793134689331, -0.2699686288833618, -0.785937488079071, -0.4378916025161743, -0.1020217090845108, 0.002552639925852418, -0.24414263665676117, -0.44177448749542236, -1.2349385023117065, 0.8597962260246277]} +{"t": 11.1365, "q": [-0.3090681731700897, 0.01648688316345215, -0.0033747577108442783, 0.6184243559837341, -0.3191661238670349, -0.018783291801810265, -0.3140876889228821, -0.0038690404035151005, 0.007526245433837175, 0.6175039410591125, -0.33141401410102844, 0.014411560259759426, -0.003910433501005173, 0.003169346833601594, 0.03272109851241112, -0.19057315587997437, 0.33341312408447266, -0.4586962163448334, 0.19539080560207367, -0.49681803584098816, -0.27173033356666565, -0.7874594926834106, -0.43753206729888916, -0.10200972855091095, 0.002193113323301077, -0.24416659772396088, -0.44175052642822266, -1.235897183418274, 0.8597602844238281]} +{"t": 11.1532, "q": [-0.3089999854564667, 0.01648688316345215, -0.0033747577108442783, 0.6184158325195312, -0.3191661238670349, -0.018783291801810265, -0.31410473585128784, -0.0038775624707341194, 0.007526245433837175, 0.6176062226295471, -0.33141401410102844, 0.014411560259759426, -0.0018882573349401355, 0.0031766153406351805, 0.033302899450063705, -0.19093267619609833, 0.332897812128067, -0.4587321877479553, 0.19785955548286438, -0.49591922760009766, -0.2736957371234894, -0.7887897491455078, -0.43746018409729004, -0.1020217090845108, 0.0018575548892840743, -0.24414263665676117, -0.4417385458946228, -1.2366762161254883, 0.8598082661628723]} +{"t": 11.1701, "q": [-0.3089488446712494, 0.01650392822921276, -0.0034015413839370012, 0.6183476448059082, -0.3191661238670349, -0.018783291801810265, -0.3141814172267914, -0.0038605183362960815, 0.007526245433837175, 0.6177340745925903, -0.3314223289489746, 0.014426175504922867, 0.0013525814283639193, 0.0031538768671453, 0.033648524433374405, -0.19130419194698334, 0.3324304223060608, -0.4588160514831543, 0.19926171004772186, -0.4952840507030487, -0.27539750933647156, -0.789976179599762, -0.4375200867652893, -0.10200972855091095, 0.0015939020086079836, -0.24414263665676117, -0.4417385458946228, -1.237155556678772, 0.859832227230072]} +{"t": 11.1868, "q": [-0.3087102174758911, 0.01650392822921276, -0.0034283252898603678, 0.6183050274848938, -0.31915774941444397, -0.0187686774879694, -0.3141558766365051, -0.0038690404035151005, 0.007526245433837175, 0.618057906627655, -0.33141815662384033, 0.01441886741667986, 0.00287925754673779, 0.0030859855469316244, 0.03397541120648384, -0.19154387712478638, 0.33181923627853394, -0.4589598774909973, 0.19968116283416748, -0.4946848452091217, -0.27790218591690063, -0.7911386489868164, -0.4376159608364105, -0.10218948870897293, 0.0006711166352033615, -0.2440347820520401, -0.4417385458946228, -1.2372634410858154, 0.8599400520324707]} +{"t": 11.2036, "q": [-0.30854830145835876, 0.01649540476500988, -0.003481892868876457, 0.6182624101638794, -0.3191620409488678, -0.018790503963828087, -0.31413882970809937, -0.003834951901808381, 0.007512853480875492, 0.618287980556488, -0.3314223289489746, 0.014426175504922867, 0.0033881496638059616, 0.003093464532867074, 0.03408433496952057, -0.19154387712478638, 0.3311481177806854, -0.45894789695739746, 0.19964520633220673, -0.49446913599967957, -0.28122183680534363, -0.7921213507652283, -0.4376639127731323, -0.1026448905467987, -0.00037151097785681486, -0.24347151815891266, -0.4417864680290222, -1.237215518951416, 0.8600359559059143]} +{"t": 11.2203, "q": [-0.3081648051738739, 0.01649540476500988, -0.003481892868876457, 0.6182112693786621, -0.3191579580307007, -0.01879771798849106, -0.3139428198337555, -0.0038434739690274, 0.007512853480875492, 0.6184669733047485, -0.33143457770347595, 0.014419031329452991, 0.00388364982791245, 0.0031160362996160984, 0.034107983112335205, -0.19162775576114655, 0.3302253186702728, -0.45894789695739746, 0.19946543872356415, -0.4942654073238373, -0.28456541895866394, -0.792888343334198, -0.43891027569770813, -0.10320814698934555, -0.000874848454259336, -0.24280039966106415, -0.4418703615665436, -1.237155556678772, 0.8600718975067139]} +{"t": 11.237, "q": [-0.30777278542518616, 0.01648688316345215, -0.0035220684949308634, 0.6180664300918579, -0.3191620409488678, -0.018790503963828087, -0.3136615753173828, -0.003826429834589362, 0.007472677621990442, 0.6185692548751831, -0.3314223289489746, 0.014426175504922867, 0.004673771560192108, 0.00310850259847939, 0.034122202545404434, -0.19172362983226776, 0.3291587233543396, -0.4588160514831543, 0.19901004433631897, -0.49422943592071533, -0.2862192392349243, -0.793715238571167, -0.44312870502471924, -0.1032441034913063, -0.001330249011516571, -0.24204540252685547, -0.4421340227127075, -1.236867904663086, 0.8601917624473572]} +{"t": 11.2538, "q": [-0.30732113122940063, 0.01648688316345215, -0.0037229470908641815, 0.6179471015930176, -0.3191620409488678, -0.018790503963828087, -0.3132951259613037, -0.0038434739690274, 0.00739232636988163, 0.61866295337677, -0.33143067359924316, 0.014440808445215225, 0.005450501572340727, 0.003040783107280731, 0.03406072407960892, -0.1917356252670288, 0.3276127576828003, -0.4587920904159546, 0.1985546499490738, -0.4942174553871155, -0.2868903577327728, -0.7942785024642944, -0.4478744566440582, -0.10325608402490616, -0.0020972394850105047, -0.24174578487873077, -0.44218194484710693, -1.2359092235565186, 0.8602516651153564]} +{"t": 11.2705, "q": [-0.3068268299102783, 0.016469839960336685, -0.003816690295934677, 0.6178193092346191, -0.3191620409488678, -0.018790503963828087, -0.31281790137290955, -0.0038434739690274, 0.007325367070734501, 0.6187822818756104, -0.3314265012741089, 0.0144334826618433, 0.0060933125205338, 0.0028526417445391417, 0.03396151587367058, -0.19179554283618927, 0.32577916979789734, -0.4587681293487549, 0.19848273694515228, -0.4942174553871155, -0.2869263291358948, -0.7944223284721375, -0.45311155915260315, -0.10328005254268646, -0.003103914437815547, -0.24176976084709167, -0.4421579837799072, -1.2346148490905762, 0.8603475093841553]} +{"t": 11.2873, "q": [-0.3062728941440582, 0.016461316496133804, -0.0038970415480434895, 0.6176658868789673, -0.3191620409488678, -0.018790503963828087, -0.3122895061969757, -0.0038434739690274, 0.007271799258887768, 0.6187652349472046, -0.33143875002861023, 0.014426357112824917, 0.006361150648444891, 0.002566681941971183, 0.03378192335367203, -0.19183149933815002, 0.3237658143043518, -0.45880407094955444, 0.19845877587795258, -0.49419349431991577, -0.28683045506477356, -0.7944462895393372, -0.45924749970436096, -0.10325608402490616, -0.004506068769842386, -0.24180571734905243, -0.4421939551830292, -1.2327812910079956, 0.8605272769927979]} +{"t": 11.3041, "q": [-0.3052673041820526, 0.016452794894576073, -0.00388364982791245, 0.6174442768096924, -0.3191620409488678, -0.018790503963828087, -0.3114969730377197, -0.0038434739690274, 0.007285191211849451, 0.6187311410903931, -0.3314265012741089, 0.0144334826618433, 0.006454893853515387, 0.0023032957687973976, 0.03361650928854942, -0.19267039000988007, 0.32186034321784973, -0.4587681293487549, 0.19811122119426727, -0.4942174553871155, -0.28678250312805176, -0.7944343090057373, -0.46611446142196655, -0.1032441034913063, -0.007586014457046986, -0.24157801270484924, -0.44352418184280396, -1.2304563522338867, 0.8611025214195251]} +{"t": 11.3208, "q": [-0.30396342277526855, 0.01644427329301834, -0.0038702578749507666, 0.6170608401298523, -0.31915390491485596, -0.01880493015050888, -0.3102186322212219, -0.0038605183362960815, 0.007298583164811134, 0.6186714768409729, -0.33143481612205505, 0.014448115602135658, 0.006521853152662516, 0.0017990702763199806, 0.033366236835718155, -0.1938328593969345, 0.319523423910141, -0.45843255519866943, 0.19727233052253723, -0.49430134892463684, -0.2867944836616516, -0.794458270072937, -0.473964124917984, -0.10296846181154251, -0.010989534668624401, -0.24147015810012817, -0.44576525688171387, -1.2271487712860107, 0.8618814945220947]} +{"t": 11.3375, "q": [-0.3018243610858917, 0.01643575169146061, -0.003816690295934677, 0.6163875460624695, -0.31917017698287964, -0.018776077777147293, -0.30808812379837036, -0.003894606838002801, 0.007365542463958263, 0.6183732151985168, -0.3314473032951355, 0.014470038935542107, 0.006508461199700832, 0.001279765972867608, 0.033182453364133835, -0.19501930475234985, 0.3163715600967407, -0.4576655924320221, 0.1964094638824463, -0.49460095167160034, -0.2867944836616516, -0.7944343090057373, -0.4831320643424988, -0.10307632386684418, -0.013050821609795094, -0.24085895717144012, -0.44762280583381653, -1.223026156425476, 0.8625885844230652]} +{"t": 11.3545, "q": [-0.299676775932312, 0.016333485022187233, -0.0036158119328320026, 0.6155098080635071, -0.3191620409488678, -0.018790503963828087, -0.3063410818576813, -0.004022438544780016, 0.007539637386798859, 0.6180834770202637, -0.33147621154785156, 0.014492143876850605, 0.00638793408870697, 0.00028612258029170334, 0.03252950683236122, -0.19624169170856476, 0.3134234547615051, -0.4573899507522583, 0.19552263617515564, -0.49510428309440613, -0.28666266798973083, -0.7943743467330933, -0.4923359453678131, -0.10323211550712585, -0.014992265962064266, -0.23990021646022797, -0.44856953620910645, -1.2201259136199951, 0.8634034991264343]} +{"t": 11.3712, "q": [-0.2975633144378662, 0.01620565354824066, -0.0032944062259048223, 0.6147172451019287, -0.3191661238670349, -0.018783291801810265, -0.30488380789756775, -0.004252535756677389, 0.00772712379693985, 0.6181857585906982, -0.33151355385780334, 0.014543396420776844, 0.0061736637726426125, -0.0015211331192404032, 0.031230885535478592, -0.1976558268070221, 0.311230331659317, -0.4575457274913788, 0.19361715018749237, -0.4957035183906555, -0.28625521063804626, -0.7941945791244507, -0.5027621984481812, -0.1032441034913063, -0.017365142703056335, -0.23920513689517975, -0.4487253427505493, -1.2158355712890625, 0.8645420074462891]} +{"t": 11.388, "q": [-0.29562026262283325, 0.016273830085992813, -0.0033077981788665056, 0.6143422722816467, -0.3191702961921692, -0.01879058964550495, -0.30317938327789307, -0.00424401368945837, 0.007700339891016483, 0.6181601881980896, -0.33155491948127747, 0.014587423764169216, 0.00605313666164875, -0.0032842617947608232, 0.029739664867520332, -0.19946543872356415, 0.30934879183769226, -0.45758169889450073, 0.19096863269805908, -0.4962068498134613, -0.28581178188323975, -0.7941466569900513, -0.5127690434455872, -0.10447847843170166, -0.019761987030506134, -0.23862989246845245, -0.44878527522087097, -1.2090644836425781, 0.8662437796592712]} +{"t": 11.4048, "q": [-0.2947595417499542, 0.01637609675526619, -0.003321190131828189, 0.614018440246582, -0.3191702961921692, -0.01879058964550495, -0.3026084005832672, -0.004201402887701988, 0.007566420827060938, 0.6182368397712708, -0.33158406615257263, 0.014638595283031464, 0.005785298999398947, -0.005184417124837637, 0.02795935608446598, -0.20131102204322815, 0.3076590299606323, -0.4572101831436157, 0.18840400874614716, -0.4971056580543518, -0.2856919467449188, -0.7940268516540527, -0.5229196548461914, -0.1055930107831955, -0.021823273971676826, -0.23715583980083466, -0.448749303817749, -1.203000545501709, 0.8682810664176941]} +{"t": 11.4215, "q": [-0.2944015860557556, 0.01644427329301834, -0.0034015413839370012, 0.6139672994613647, -0.3191622495651245, -0.018819525837898254, -0.30241239070892334, -0.004141747951507568, 0.0074860695749521255, 0.6182709336280823, -0.33159226179122925, 0.01463867723941803, 0.005584420636296272, -0.007622122764587402, 0.025397853925824165, -0.20386365056037903, 0.3051183819770813, -0.45668286085128784, 0.18615096807479858, -0.4975131154060364, -0.2856200337409973, -0.7940388321876526, -0.5335976481437683, -0.10710301995277405, -0.024268055334687233, -0.23538216948509216, -0.44868940114974976, -1.1973918676376343, 0.8701865673065186]} +{"t": 11.4383, "q": [-0.2943249046802521, 0.016657326370477676, -0.0034015413839370012, 0.6140440106391907, -0.3191172182559967, -0.01886986382305622, -0.3023782968521118, -0.003979827743023634, 0.007459285669028759, 0.6183135509490967, -0.33158811926841736, 0.014631370082497597, 0.005557636730372906, -0.009872490540146828, 0.02324426732957363, -0.20650018751621246, 0.3020264506340027, -0.4566349387168884, 0.18238791823387146, -0.49808835983276367, -0.2853204309940338, -0.7940028309822083, -0.5448148846626282, -0.1080617606639862, -0.02708434872329235, -0.23344072699546814, -0.4485815465450287, -1.1904770135879517, 0.8719602227210999]} +{"t": 11.4551, "q": [-0.29429933428764343, 0.016785157844424248, -0.0034149333368986845, 0.6141206622123718, -0.31905993819236755, -0.018941842019557953, -0.3023953437805176, -0.0038775624707341194, 0.007405718322843313, 0.618364691734314, -0.33158811926841736, 0.014631370082497597, 0.00546389352530241, -0.012328230775892735, 0.021154819056391716, -0.2091606855392456, 0.29927006363868713, -0.4560956358909607, 0.17819344997406006, -0.49866360425949097, -0.28468528389930725, -0.7936553359031677, -0.5552651286125183, -0.10800183564424515, -0.03179414942860603, -0.2316790372133255, -0.4486294686794281, -1.1834901571273804, 0.8735661506652832]} +{"t": 11.4718, "q": [-0.2943078577518463, 0.016904467716813087, -0.0034283252898603678, 0.6143507957458496, -0.3189985156059265, -0.01900652050971985, -0.3023782968521118, -0.003834951901808381, 0.007325367070734501, 0.6183902621269226, -0.3315839469432831, 0.014624044299125671, 0.005450501572340727, -0.014128046110272408, 0.019461331889033318, -0.2135828584432602, 0.2961781322956085, -0.4561435878276825, 0.17463412880897522, -0.4991549551486969, -0.284074068069458, -0.7934036254882812, -0.5671294927597046, -0.10785802453756332, -0.03921238332986832, -0.2301330715417862, -0.44861748814582825, -1.1767550706863403, 0.8747645616531372]} +{"t": 11.4886, "q": [-0.29433342814445496, 0.01691298931837082, -0.0034015413839370012, 0.6143848896026611, -0.3189328908920288, -0.019063901156187057, -0.3023868203163147, -0.003834951901808381, 0.007325367070734501, 0.6183817386627197, -0.33158811926841736, 0.014631370082497597, 0.0055978125892579556, -0.015090343542397022, 0.017958635464310646, -0.2178492397069931, 0.2932899296283722, -0.45622748136520386, 0.17168600857257843, -0.49958640336990356, -0.2829954922199249, -0.7930681109428406, -0.5764651894569397, -0.10849319398403168, -0.04659466817975044, -0.2286110818386078, -0.44854557514190674, -1.1689532995224, 0.8755315542221069]} +{"t": 11.5055, "q": [-0.2942226231098175, 0.01692151091992855, -0.0034015413839370012, 0.6145382523536682, -0.3188348114490509, -0.019193515181541443, -0.30227604508399963, -0.0038434739690274, 0.007325367070734501, 0.6183817386627197, -0.3315839469432831, 0.014624044299125671, 0.005678163841366768, -0.016537589952349663, 0.015970511361956596, -0.22318223118782043, 0.2914683520793915, -0.45620349049568176, 0.16763533651828766, -0.5001975893974304, -0.2819288969039917, -0.7922771573066711, -0.587790310382843, -0.10973954945802689, -0.05301821231842041, -0.2262142300605774, -0.4485575556755066, -1.1603366136550903, 0.8762026429176331]} +{"t": 11.5222, "q": [-0.2941374182701111, 0.01692151091992855, -0.0034283252898603678, 0.6146490573883057, -0.3187815248966217, -0.019243767485022545, -0.3021652400493622, -0.0038519962690770626, 0.007325367070734501, 0.6183561682701111, -0.3315797746181488, 0.014616736210882664, 0.005571028683334589, -0.018697429448366165, 0.013473350554704666, -0.22734075784683228, 0.2906653881072998, -0.4561915099620819, 0.1640041172504425, -0.5004852414131165, -0.2806585729122162, -0.7915341258049011, -0.5972338914871216, -0.11084210127592087, -0.05734451860189438, -0.2232421487569809, -0.4485575556755066, -1.1539371013641357, 0.8771733641624451]} +{"t": 11.5389, "q": [-0.29410332441329956, 0.01693003438413143, -0.0033747577108442783, 0.6147257685661316, -0.3187195658683777, -0.019235873594880104, -0.3021567165851593, -0.0038690404035151005, 0.007405718322843313, 0.6182453632354736, -0.33159202337265015, 0.01460957434028387, 0.005249623209238052, -0.02105598896741867, 0.010622122325003147, -0.2302049845457077, 0.29025793075561523, -0.45620349049568176, 0.15927034616470337, -0.5007848143577576, -0.2784654498100281, -0.7903716564178467, -0.6072047352790833, -0.11273560672998428, -0.059729378670454025, -0.21979069709777832, -0.4486055076122284, -1.1452844142913818, 0.8782879114151001]} +{"t": 11.5561, "q": [-0.2940948009490967, 0.01692151091992855, -0.003347973804920912, 0.6147172451019287, -0.3186328411102295, -0.01922772452235222, -0.3021226227283478, -0.003945739474147558, 0.00743250222876668, 0.6181175708770752, -0.33158788084983826, 0.014602267183363438, 0.004941609688103199, -0.023493489250540733, 0.007406637538224459, -0.23430359363555908, 0.2904137372970581, -0.4557361304759979, 0.15550731122493744, -0.5012401938438416, -0.2751338481903076, -0.7888975739479065, -0.6167201995849609, -0.11528825014829636, -0.06205431744456291, -0.21678264439105988, -0.44841375946998596, -1.1368834972381592, 0.8791148066520691]} +{"t": 11.5729, "q": [-0.2938902676105499, 0.01692151091992855, -0.003347973804920912, 0.6147769093513489, -0.3185499310493469, -0.019168810918927193, -0.30189254879951477, -0.003937217406928539, 0.00743250222876668, 0.6179556250572205, -0.33157145977020264, 0.014602120965719223, 0.0044996771030128, -0.02527170442044735, 0.004918672610074282, -0.23872576653957367, 0.29083317518234253, -0.4550650119781494, 0.1524992734193802, -0.5013360977172852, -0.2704479992389679, -0.7876752018928528, -0.6251331567764282, -0.11785287410020828, -0.06514624506235123, -0.21347500383853912, -0.4483059048652649, -1.1300644874572754, 0.8799657225608826]} +{"t": 11.5896, "q": [-0.29377949237823486, 0.01692151091992855, -0.003321190131828189, 0.614768385887146, -0.3185373842716217, -0.01914689876139164, -0.30181583762168884, -0.003971305675804615, 0.007472677621990442, 0.6177340745925903, -0.3315756320953369, 0.01460942905396223, 0.004298798739910126, -0.027369974181056023, 0.0021507113706320524, -0.24362730979919434, 0.2915881872177124, -0.4541182518005371, 0.14866431057453156, -0.5018274188041687, -0.26366493105888367, -0.7866805195808411, -0.6334022283554077, -0.12166385352611542, -0.0686216726899147, -0.2097598910331726, -0.44826993346214294, -1.1217114925384521, 0.8810083270072937]} +{"t": 11.6063, "q": [-0.2938561737537384, 0.01686185598373413, -0.003347973804920912, 0.6147428154945374, -0.31851670145988464, -0.019139448180794716, -0.30185845494270325, -0.004056526813656092, 0.007472677621990442, 0.6173335313796997, -0.3315715789794922, 0.014616654254496098, 0.0042854067869484425, -0.029197145253419876, -0.0007356238202191889, -0.24872061610221863, 0.29224732518196106, -0.45350706577301025, 0.1452368199825287, -0.5025584697723389, -0.2585836350917816, -0.7858056426048279, -0.641359806060791, -0.12688897550106049, -0.07245662808418274, -0.2055654227733612, -0.44831788539886475, -1.1138259172439575, 0.8823745250701904]} +{"t": 11.623, "q": [-0.2938902676105499, 0.016810724511742592, -0.003347973804920912, 0.6147087216377258, -0.3184874355792999, -0.019088344648480415, -0.30194365978240967, -0.004099137615412474, 0.007459285669028759, 0.6170182228088379, -0.331563264131546, 0.014602039009332657, 0.00445950124412775, -0.030834149569272995, -0.003125500399619341, -0.2544730305671692, 0.29252296686172485, -0.4533512592315674, 0.14225275814533234, -0.5035052299499512, -0.25275930762290955, -0.7849188446998596, -0.6476754546165466, -0.13179051876068115, -0.07766976207494736, -0.20236562192440033, -0.4484257400035858, -1.1060121059417725, 0.8841002583503723]} +{"t": 11.6398, "q": [-0.29383060336112976, 0.016768112778663635, -0.0034283252898603678, 0.6146916747093201, -0.3184914290904999, -0.019066601991653442, -0.3021652400493622, -0.004192880820482969, 0.00743250222876668, 0.6167625188827515, -0.3315756320953369, 0.01460942905396223, 0.004606812261044979, -0.03218936547636986, -0.005027233622968197, -0.2609564960002899, 0.29284653067588806, -0.45333927869796753, 0.1386694759130478, -0.5059859752655029, -0.24459803104400635, -0.7840200066566467, -0.6537754535675049, -0.13803429901599884, -0.08204400539398193, -0.19844678044319153, -0.44769468903541565, -1.095873475074768, 0.8858978748321533]} +{"t": 11.6567, "q": [-0.29383060336112976, 0.01674254611134529, -0.0036425956059247255, 0.6146746277809143, -0.31849151849746704, -0.0190811138600111, -0.30241239070892334, -0.004269579891115427, 0.007245015352964401, 0.6162000894546509, -0.3315839469432831, 0.014624044299125671, 0.005316582508385181, -0.03283301740884781, -0.006811108440160751, -0.26656511425971985, 0.2934577167034149, -0.4531954526901245, 0.13591310381889343, -0.5103362202644348, -0.2382463961839676, -0.7831931114196777, -0.659827470779419, -0.14403840899467468, -0.08573514968156815, -0.1935092806816101, -0.4472752511501312, -1.0885990858078003, 0.8886542916297913]} +{"t": 11.6736, "q": [-0.29388174414634705, 0.016699936240911484, -0.00388364982791245, 0.6145126819610596, -0.3184914290904999, -0.019066601991653442, -0.3027106523513794, -0.004405933897942305, 0.006816474720835686, 0.6154586672782898, -0.33156728744506836, 0.01459481380879879, 0.00571833923459053, -0.03347082436084747, -0.00902873557060957, -0.2710232436656952, 0.2938292324542999, -0.45218878984451294, 0.13253355026245117, -0.5134881138801575, -0.232350155711174, -0.7826418280601501, -0.6665027141571045, -0.15035408735275269, -0.08800016343593597, -0.1868939995765686, -0.44606485962867737, -1.0802221298217773, 0.8916143774986267]} +{"t": 11.6903, "q": [-0.2939840257167816, 0.016597671434283257, -0.004057744517922401, 0.6144275069236755, -0.3185078203678131, -0.019052261486649513, -0.3029748499393463, -0.004491155035793781, 0.006669164169579744, 0.614930272102356, -0.33160868287086487, 0.014638823457062244, 0.005905826110392809, -0.03359491750597954, -0.011559638194739819, -0.27435487508773804, 0.2939850389957428, -0.4511461555957794, 0.12777580320835114, -0.5173470377922058, -0.22477613389492035, -0.7822942733764648, -0.6732258200645447, -0.15645405650138855, -0.08871921896934509, -0.17981131374835968, -0.44472262263298035, -1.0716054439544678, 0.895185649394989]} +{"t": 11.707, "q": [-0.29414594173431396, 0.016520971432328224, -0.004111311864107847, 0.6141462326049805, -0.3185202479362488, -0.019059645012021065, -0.303298681974411, -0.004550809506326914, 0.006602204404771328, 0.6144871115684509, -0.3316044211387634, 0.014616982080042362, 0.006146880332380533, -0.03330139070749283, -0.013964910991489887, -0.2776625156402588, 0.2947400212287903, -0.4498518705368042, 0.12353339046239853, -0.5197678208351135, -0.215799942612648, -0.7820186614990234, -0.6799370050430298, -0.16260196268558502, -0.08858739584684372, -0.1729443520307541, -0.4426373541355133, -1.0635759830474854, 0.8978102207183838]} +{"t": 11.7238, "q": [-0.2942652404308319, 0.016461316496133804, -0.004205055069178343, 0.6138224005699158, -0.3185202479362488, -0.019059645012021065, -0.3033924400806427, -0.004559331573545933, 0.0065620290115475655, 0.6140269637107849, -0.3316124975681305, 0.014602530747652054, 0.0065620290115475655, -0.03312692046165466, -0.01588745228946209, -0.28111398220062256, 0.2954590916633606, -0.44843772053718567, 0.1209927350282669, -0.5209422707557678, -0.2076866179704666, -0.781826913356781, -0.685893177986145, -0.1685221791267395, -0.08821588009595871, -0.16666461527347565, -0.43962931632995605, -1.054935336112976, 0.8994160890579224]} +{"t": 11.7405, "q": [-0.29447829723358154, 0.016393139958381653, -0.004486285150051117, 0.6135667562484741, -0.3185202479362488, -0.019059645012021065, -0.3033157289028168, -0.004627508576959372, 0.006187055725604296, 0.6135838031768799, -0.3316245973110199, 0.014580853283405304, 0.007271799258887768, -0.032603584229946136, -0.017885129898786545, -0.28419390320777893, 0.2960582971572876, -0.44564539194107056, 0.1176731064915657, -0.5229196548461914, -0.19771574437618256, -0.781766951084137, -0.6923646330833435, -0.173939049243927, -0.08821588009595871, -0.16057662665843964, -0.43676507472991943, -1.0473732948303223, 0.9008062481880188]} +{"t": 11.7572, "q": [-0.2948532700538635, 0.01637609675526619, -0.004861257970333099, 0.6133877635002136, -0.3185202479362488, -0.019059645012021065, -0.3032475411891937, -0.004627508576959372, 0.005704947747290134, 0.6131065487861633, -0.3316286504268646, 0.014573628082871437, 0.007861042395234108, -0.03204809129238129, -0.01951334998011589, -0.28625521063804626, 0.2967054545879364, -0.4430448114871979, 0.11461713165044785, -0.5249330401420593, -0.1903933882713318, -0.781766951084137, -0.6984046697616577, -0.17846907675266266, -0.08807206898927689, -0.1552915871143341, -0.4328582286834717, -1.0415250062942505, 0.9021604657173157]} +{"t": 11.774, "q": [-0.2948276996612549, 0.01637609675526619, -0.005102312192320824, 0.6131917834281921, -0.3185202479362488, -0.019059645012021065, -0.30305153131484985, -0.004610464442521334, 0.005410325713455677, 0.6130042672157288, -0.33165279030799866, 0.014515722170472145, 0.00832975935190916, -0.031573809683322906, -0.02050502970814705, -0.28768134117126465, 0.29734060168266296, -0.4396652579307556, 0.11024288833141327, -0.5290555953979492, -0.18067418038845062, -0.781766951084137, -0.7046724557876587, -0.182699516415596, -0.0875447690486908, -0.1494792401790619, -0.42685413360595703, -1.0337952375411987, 0.9035866260528564]} +{"t": 11.7907, "q": [-0.29489588737487793, 0.016350530087947845, -0.005504068918526173, 0.613200306892395, -0.31852859258651733, -0.01907424069941044, -0.3029322326183319, -0.004593420308083296, 0.005035352893173695, 0.6129786968231201, -0.3316853642463684, 0.014486964792013168, 0.008597597479820251, -0.031029045581817627, -0.020925158634781837, -0.2891434133052826, 0.29749640822410583, -0.4361419081687927, 0.10644388943910599, -0.5329384803771973, -0.1706673502922058, -0.7817549705505371, -0.7113716006278992, -0.18615096807479858, -0.08738896995782852, -0.14373879134655, -0.4214732050895691, -1.0267364978790283, 0.9054681658744812]} +{"t": 11.8076, "q": [-0.2952197194099426, 0.01636757329106331, -0.005745123140513897, 0.6132088303565979, -0.3185245394706726, -0.01908145472407341, -0.30272769927978516, -0.004601942375302315, 0.004673771560192108, 0.6129616498947144, -0.33168914914131165, 0.014450672082602978, 0.008838650770485401, -0.03066566027700901, -0.021143589168787003, -0.2911207973957062, 0.2977001368999481, -0.43363720178604126, 0.10277671366930008, -0.5378879904747009, -0.1624341905117035, -0.7814793586730957, -0.718106746673584, -0.18915900588035583, -0.0872451588511467, -0.1386934369802475, -0.4173506498336792, -1.0211398601531982, 0.9072298407554626]} +{"t": 11.8243, "q": [-0.29590147733688354, 0.016359051689505577, -0.005959393456578255, 0.6132599711418152, -0.3185204565525055, -0.019088666886091232, -0.3023442029953003, -0.004593420308083296, 0.004338974133133888, 0.6130468845367432, -0.3316848576068878, 0.01442879531532526, 0.009347543120384216, -0.03019622713327408, -0.02140912413597107, -0.2942366898059845, 0.29789188504219055, -0.43167179822921753, 0.09948105365037918, -0.5415671467781067, -0.15308649837970734, -0.7809640169143677, -0.7245902419090271, -0.1926584094762802, -0.08596284687519073, -0.13513413071632385, -0.41272473335266113, -1.013985276222229, 0.9095067977905273]} +{"t": 11.841, "q": [-0.29631054401397705, 0.01636757329106331, -0.006187055725604296, 0.613362193107605, -0.3185122013092041, -0.019088581204414368, -0.30186697840690613, -0.004550809506326914, 0.003923825453966856, 0.6131832599639893, -0.3316766619682312, 0.014428731054067612, 0.010057313367724419, -0.02991561032831669, -0.02141902595758438, -0.2979278266429901, 0.29803571105003357, -0.43001797795295715, 0.09725198894739151, -0.5440718531608582, -0.14504507184028625, -0.780340850353241, -0.7309538722038269, -0.19479160010814667, -0.08523181080818176, -0.1308557540178299, -0.408590167760849, -1.0086402893066406, 0.9116759896278381]} +{"t": 11.8578, "q": [-0.29648950695991516, 0.01636757329106331, -0.006267406977713108, 0.6134559512138367, -0.3185039460659027, -0.019088497385382652, -0.3017561733722687, -0.004559331573545933, 0.0037229470908641815, 0.6133025288581848, -0.3316766619682312, 0.014428731054067612, 0.010700124315917492, -0.029497889801859856, -0.02125079371035099, -0.3015231192111969, 0.2980596721172333, -0.42792072892189026, 0.09580189734697342, -0.5494767427444458, -0.13453491032123566, -0.7797536253929138, -0.7369579672813416, -0.19608590006828308, -0.08481236547231674, -0.1273084282875061, -0.4048750698566437, -1.0047454833984375, 0.9138331413269043]} +{"t": 11.8745, "q": [-0.296830415725708, 0.01636757329106331, -0.00642810994759202, 0.6134474277496338, -0.31849172711372375, -0.01911015436053276, -0.3017306327819824, -0.004576376173645258, 0.0035086767747998238, 0.6132684946060181, -0.3316807150840759, 0.014421487227082253, 0.011383111588656902, -0.029043598100543022, -0.021506818011403084, -0.30427947640419006, 0.2981075942516327, -0.4251883327960968, 0.0942079946398735, -0.5539228916168213, -0.12554673850536346, -0.7788308262825012, -0.7424467206001282, -0.19702066481113434, -0.08370981365442276, -0.12319783866405487, -0.40048885345458984, -1.001893162727356, 0.9165295958518982]} +{"t": 11.8913, "q": [-0.2967792749404907, 0.01636757329106331, -0.00642810994759202, 0.6136178970336914, -0.3184795081615448, -0.019131792709231377, -0.3016453981399536, -0.004567853640764952, 0.0034952848218381405, 0.6134900450706482, -0.33166831731796265, 0.014414115808904171, 0.011664341203868389, -0.02867971733212471, -0.021588748320937157, -0.30552583932876587, 0.29844316840171814, -0.42130544781684875, 0.0914396420121193, -0.5587285757064819, -0.11670238524675369, -0.7779080271720886, -0.7473242878913879, -0.19747605919837952, -0.0818043202161789, -0.12001003324985504, -0.39772048592567444, -0.9987053871154785, 0.9185069799423218]} +{"t": 11.908, "q": [-0.2968218922615051, 0.016359051689505577, -0.0064013260416686535, 0.6136605143547058, -0.31848764419555664, -0.019117366522550583, -0.3016539216041565, -0.004576376173645258, 0.003481892868876457, 0.6136178970336914, -0.3316807150840759, 0.014421487227082253, 0.01185182761400938, -0.02842167392373085, -0.021555503830313683, -0.30593329668045044, 0.29851505160331726, -0.4169311821460724, 0.08779643476009369, -0.5619882345199585, -0.10781008750200272, -0.7770212292671204, -0.7510873675346375, -0.19815915822982788, -0.07927565276622772, -0.1179727166891098, -0.39601871371269226, -0.9943311810493469, 0.9192140698432922]} +{"t": 11.9247, "q": [-0.29685595631599426, 0.01630791835486889, -0.006374542135745287, 0.6137115955352783, -0.31848764419555664, -0.019117366522550583, -0.3016539216041565, -0.004610464442521334, 0.003481892868876457, 0.6135667562484741, -0.3316766619682312, 0.014428731054067612, 0.012119665741920471, -0.028247244656085968, -0.021577324718236923, -0.3065924346446991, 0.2989464998245239, -0.41379132866859436, 0.08378171920776367, -0.5654397010803223, -0.0999244675040245, -0.7759426236152649, -0.754119336605072, -0.19897408783435822, -0.07661515474319458, -0.11545602232217789, -0.3937896490097046, -0.9904243350028992, 0.9198252558708191]} +{"t": 11.9416, "q": [-0.29708606004714966, 0.016282353550195694, -0.006374542135745287, 0.6139587759971619, -0.31849172711372375, -0.01911015436053276, -0.3016539216041565, -0.004618986509740353, 0.003441717242822051, 0.6136008501052856, -0.3316724896430969, 0.014421423897147179, 0.012534813955426216, -0.028148440644145012, -0.02151240035891533, -0.30704784393310547, 0.29961761832237244, -0.4114304482936859, 0.07922771573066711, -0.5696222186088562, -0.09068462997674942, -0.7744206190109253, -0.756659984588623, -0.19905798137187958, -0.0752130001783371, -0.11241203546524048, -0.39182424545288086, -0.9881473183631897, 0.9201607704162598]} +{"t": 11.9583, "q": [-0.29720538854599, 0.01619713194668293, -0.00638793408870697, 0.6141036152839661, -0.31849172711372375, -0.01911015436053276, -0.3016624450683594, -0.004712729714810848, 0.0034283252898603678, 0.6136093735694885, -0.3316723704338074, 0.014406871981918812, 0.01317762490361929, -0.028148386627435684, -0.02149287424981594, -0.30803054571151733, 0.3004804849624634, -0.4100162982940674, 0.07687880843877792, -0.5741162896156311, -0.0836019515991211, -0.7728986144065857, -0.7577505707740784, -0.19898608326911926, -0.07478156685829163, -0.10852914303541183, -0.3903142213821411, -0.9865893721580505, 0.9202926158905029]} +{"t": 11.975, "q": [-0.29740139842033386, 0.016052255406975746, -0.00638793408870697, 0.614325225353241, -0.3184918165206909, -0.01912466436624527, -0.30167949199676514, -0.004849083721637726, 0.0034283252898603678, 0.6136605143547058, -0.3316766619682312, 0.014428731054067612, 0.013552598655223846, -0.02813313528895378, -0.021463360637426376, -0.3082342743873596, 0.3016429543495178, -0.4088418483734131, 0.07485347241163254, -0.5789698958396912, -0.07636348158121109, -0.7713406682014465, -0.7580861449241638, -0.1989501267671585, -0.0743381455540657, -0.10464625805616379, -0.3893435001373291, -0.9858822822570801, 0.9203405380249023]} +{"t": 11.9918, "q": [-0.29773375391960144, 0.015967033803462982, -0.0064013260416686535, 0.614555299282074, -0.318508118391037, -0.01909579522907734, -0.3017817437648773, -0.004959871061146259, 0.0034283252898603678, 0.6136349439620972, -0.3316808044910431, 0.01443603914231062, 0.014048098586499691, -0.02813313528895378, -0.021463360637426376, -0.3082462549209595, 0.3026496171951294, -0.4078831076622009, 0.07239670306444168, -0.5816903114318848, -0.06893326342105865, -0.7700344324111938, -0.7582659125328064, -0.19817115366458893, -0.07402656227350235, -0.10130265355110168, -0.3889120817184448, -0.9857504367828369, 0.9203645586967468]} +{"t": 12.0085, "q": [-0.29792124032974243, 0.01577954739332199, -0.006374542135745287, 0.6148109436035156, -0.3185039460659027, -0.019088497385382652, -0.3018414080142975, -0.005130313336849213, 0.003468500915914774, 0.6137115955352783, -0.33166858553886414, 0.01444318238645792, 0.014516814611852169, -0.028155801817774773, -0.021429510787129402, -0.3081623613834381, 0.3036682903766632, -0.407164067029953, 0.0697721615433693, -0.5859686732292175, -0.061886537820100784, -0.7690277099609375, -0.7565521597862244, -0.19661319255828857, -0.07266035676002502, -0.09817477315664291, -0.3885166049003601, -0.9857984185218811, 0.9203885197639465]} +{"t": 12.0252, "q": [-0.2982621192932129, 0.015481274574995041, -0.006347758695483208, 0.6150155067443848, -0.3185245394706726, -0.01908145472407341, -0.30208003520965576, -0.005385976750403643, 0.0035086767747998238, 0.6138224005699158, -0.33168497681617737, 0.014443346299231052, 0.014905179850757122, -0.028049349784851074, -0.021339964121580124, -0.30789870023727417, 0.3045191764831543, -0.40620532631874084, 0.06774682551622391, -0.5896118879318237, -0.05522330850362778, -0.7682487368583679, -0.7529089450836182, -0.19557057321071625, -0.06974819302558899, -0.09526260942220688, -0.38820502161979675, -0.9858343601226807, 0.9203765392303467]} +{"t": 12.0419, "q": [-0.2985859513282776, 0.015131866559386253, -0.006320974789559841, 0.615143358707428, -0.3185162842273712, -0.019081369042396545, -0.3022930920124054, -0.00571833923459053, 0.003575636073946953, 0.6139076352119446, -0.331672728061676, 0.014450490474700928, 0.015092666260898113, -0.027851751074194908, -0.021209971979260445, -0.3076949715614319, 0.3049625754356384, -0.40525856614112854, 0.0662008598446846, -0.5915892720222473, -0.048056744039058685, -0.7678053379058838, -0.748894214630127, -0.1953069120645523, -0.06542188674211502, -0.0932852104306221, -0.38788142800331116, -0.9859901666641235, 0.9203765392303467]} +{"t": 12.0587, "q": [-0.2989438772201538, 0.014739850535988808, -0.006374542135745287, 0.6153052449226379, -0.31851616501808167, -0.019066859036684036, -0.3025146424770355, -0.006110356654971838, 0.003589028026908636, 0.6139843463897705, -0.3316769003868103, 0.01445779763162136, 0.015106058679521084, -0.027426153421401978, -0.020929986611008644, -0.3075152337551117, 0.30520227551460266, -0.40413203835487366, 0.06485863029956818, -0.5953164100646973, -0.042280346155166626, -0.7673859000205994, -0.7441964149475098, -0.19518707692623138, -0.06031660735607147, -0.09243433177471161, -0.3877016603946686, -0.9862418174743652, 0.9203285574913025]} +{"t": 12.0756, "q": [-0.2994126081466675, 0.014347832649946213, -0.006361150648444891, 0.6153990030288696, -0.3184995651245117, -0.019052177667617798, -0.3029407560825348, -0.0065194182097911835, 0.003589028026908636, 0.6141547560691833, -0.3316810727119446, 0.014465123414993286, 0.015065882354974747, -0.02708439528942108, -0.020792970433831215, -0.3069159984588623, 0.3051902651786804, -0.40235838294029236, 0.06339655071496964, -0.5978091359138489, -0.03822967782616615, -0.767266035079956, -0.7386476993560791, -0.1946118324995041, -0.05511545017361641, -0.09244631230831146, -0.3874260187149048, -0.9864215850830078, 0.9202446937561035]} +{"t": 12.0925, "q": [-0.2998131513595581, 0.014006948098540306, -0.006441501900553703, 0.6156802177429199, -0.3184995651245117, -0.019052177667617798, -0.3032475411891937, -0.0068176924251019955, 0.00354885240085423, 0.6143593192100525, -0.331693559885025, 0.014487046748399734, 0.01511945016682148, -0.026445895433425903, -0.020333895459771156, -0.3044712245464325, 0.3051183819770813, -0.4003450274467468, 0.06236590817570686, -0.5988637208938599, -0.034382741898298264, -0.7672420740127563, -0.7324998378753662, -0.19352127611637115, -0.05119660869240761, -0.09257814288139343, -0.3871983289718628, -0.9878237247467041, 0.9201967716217041]} +{"t": 12.1093, "q": [-0.30057162046432495, 0.01378537341952324, -0.006548637058585882, 0.6161063313484192, -0.3185117840766907, -0.019030537456274033, -0.30386966466903687, -0.0070307450369000435, 0.0034952848218381405, 0.6145467758178711, -0.3317018747329712, 0.014501661993563175, 0.015106058679521084, -0.025754354894161224, -0.019869934767484665, -0.3016189932823181, 0.30501052737236023, -0.39831969141960144, 0.06203034892678261, -0.59959477186203, -0.028905950486660004, -0.767266035079956, -0.7258725166320801, -0.1923588067293167, -0.0463549830019474, -0.09285377711057663, -0.38617968559265137, -0.9892138838768005, 0.9200170040130615]} +{"t": 12.126, "q": [-0.30140677094459534, 0.013478577136993408, -0.006588812451809645, 0.6163960695266724, -0.318499356508255, -0.01902315579354763, -0.3046281337738037, -0.0073204971849918365, 0.0034952848218381405, 0.6147172451019287, -0.33170604705810547, 0.014508969150483608, 0.01519980188459158, -0.025131242349743843, -0.019451232627034187, -0.29964157938957214, 0.3050944209098816, -0.39684563875198364, 0.062126222997903824, -0.600050151348114, -0.02292582206428051, -0.7673259973526001, -0.7190415263175964, -0.19108846783638, -0.04224439337849617, -0.09304552525281906, -0.3842022716999054, -0.9901247024536133, 0.9199091196060181]} +{"t": 12.1429, "q": [-0.30213966965675354, 0.013078037649393082, -0.00676290737465024, 0.6167539954185486, -0.31848254799842834, -0.018979433923959732, -0.3053610324859619, -0.007635815534740686, 0.0034952848218381405, 0.6150155067443848, -0.3316977024078369, 0.014494353905320168, 0.015266761183738708, -0.024401472881436348, -0.01885533146560192, -0.29828736186027527, 0.30535805225372314, -0.39576706290245056, 0.062078285962343216, -0.6004815697669983, -0.01901896484196186, -0.7673739194869995, -0.7126179933547974, -0.1898421049118042, -0.03870904818177223, -0.09316536784172058, -0.38181743025779724, -0.9912991523742676, 0.9197893142700195]} +{"t": 12.1596, "q": [-0.30300042033195496, 0.012617843225598335, -0.006870042532682419, 0.6170693039894104, -0.3184032440185547, -0.018855245783925056, -0.3061962127685547, -0.008078965358436108, 0.0034551091957837343, 0.6153222918510437, -0.3317018747329712, 0.014501661993563175, 0.015347111970186234, -0.023459212854504585, -0.01817975752055645, -0.2967533767223358, 0.3054898977279663, -0.39447274804115295, 0.06276138871908188, -0.6007332801818848, -0.016502277925610542, -0.7674577832221985, -0.7062064409255981, -0.18816432356834412, -0.03615640848875046, -0.09329719096422195, -0.38027146458625793, -0.9927971959114075, 0.91939377784729]} +{"t": 12.1763, "q": [-0.3037674129009247, 0.012217303737998009, -0.006923609878867865, 0.6173761487007141, -0.31830716133117676, -0.018687337636947632, -0.30671605467796326, -0.00845393817871809, 0.0034551091957837343, 0.61551833152771, -0.33170199394226074, 0.01451619528234005, 0.015293545089662075, -0.022653726860880852, -0.01757439225912094, -0.29442843794822693, 0.30575352907180786, -0.3933582305908203, 0.06357631832361221, -0.6007212996482849, -0.014105432666838169, -0.7674458026885986, -0.6997829079627991, -0.18604311347007751, -0.03449060022830963, -0.09362076967954636, -0.3791808784008026, -0.9940075874328613, 0.9185788631439209]} +{"t": 12.1931, "q": [-0.3044065535068512, 0.01179971918463707, -0.006910218391567469, 0.6174783706665039, -0.3182234764099121, -0.01852681115269661, -0.3072444200515747, -0.00881186779588461, 0.0034551091957837343, 0.6155864596366882, -0.3317144811153412, 0.014538136310875416, 0.015132841654121876, -0.021529443562030792, -0.01683899387717247, -0.2906653881072998, 0.30582544207572937, -0.39168041944503784, 0.06363623589277267, -0.600649356842041, -0.011241203173995018, -0.7676615118980408, -0.6929638385772705, -0.18253172934055328, -0.03338805213570595, -0.09503490477800369, -0.37787461280822754, -0.9958171844482422, 0.9179317355155945]} +{"t": 12.2098, "q": [-0.30496901273727417, 0.011458834633231163, -0.006950393784791231, 0.617759644985199, -0.31821054220199585, -0.01844683662056923, -0.30750009417533875, -0.009110141545534134, 0.0034551091957837343, 0.6155779361724854, -0.3317105770111084, 0.014559894800186157, 0.014985531568527222, -0.020184995606541634, -0.015951046720147133, -0.28661471605300903, 0.3058374226093292, -0.39013445377349854, 0.06364822387695312, -0.6004935503005981, -0.008580705150961876, -0.7679970860481262, -0.6859650611877441, -0.17851701378822327, -0.03236939385533333, -0.09640111029148102, -0.3758133053779602, -0.9970755577087402, 0.9176201224327087]} +{"t": 12.2266, "q": [-0.305684894323349, 0.011211693286895752, -0.006990569643676281, 0.6181857585906982, -0.3182390630245209, -0.018396329134702682, -0.3078324496746063, -0.009382848627865314, 0.0034283252898603678, 0.6155864596366882, -0.33170652389526367, 0.014567120932042599, 0.014811436645686626, -0.018742047250270844, -0.01500046905130148, -0.2820727229118347, 0.3058374226093292, -0.38875627517700195, 0.06364822387695312, -0.6003497838973999, -0.006567355245351791, -0.7684045433998108, -0.6791460514068604, -0.1745861917734146, -0.031314779072999954, -0.09785120189189911, -0.37439918518066406, -0.9985136389732361, 0.9174283742904663]} +{"t": 12.2433, "q": [-0.30657118558883667, 0.010964551940560341, -0.00709770480170846, 0.6187737584114075, -0.318271666765213, -0.018338607624173164, -0.308113694190979, -0.00957033596932888, 0.0033747577108442783, 0.6156120300292969, -0.33169880509376526, 0.014625190757215023, 0.014744477346539497, -0.017701271921396255, -0.01412785705178976, -0.2778902053833008, 0.3060171902179718, -0.3877376317977905, 0.06361226737499237, -0.6002538800239563, -0.0049375006929039955, -0.7690637111663818, -0.6731299757957458, -0.17143434286117554, -0.029996516183018684, -0.09871406108140945, -0.3728412389755249, -1.0008984804153442, 0.9173085689544678]} +{"t": 12.26, "q": [-0.30785802006721497, 0.010760022327303886, -0.00739232636988163, 0.6195407509803772, -0.31830018758773804, -0.018288100138306618, -0.30882102251052856, -0.009791910648345947, 0.0030399602837860584, 0.6156290769577026, -0.3316704034805298, 0.014661255292594433, 0.014757868833839893, -0.016964638605713844, -0.013551897369325161, -0.2733481824398041, 0.3061370253562927, -0.3872222900390625, 0.06328869611024857, -0.6002059578895569, -0.003571299137547612, -0.7698666453361511, -0.666850209236145, -0.16863003373146057, -0.028330707922577858, -0.09986454993486404, -0.37163081765174866, -1.0046736001968384, 0.9170448780059814]} +{"t": 12.2768, "q": [-0.3088039755821228, 0.010495835915207863, -0.007566420827060938, 0.6201798915863037, -0.31832054257392883, -0.01825203374028206, -0.30951982736587524, -0.01014131773263216, 0.0027855143416672945, 0.615748405456543, -0.3316585123538971, 0.014711999334394932, 0.01470430102199316, -0.016667746007442474, -0.012980345636606216, -0.2693215012550354, 0.3061610162258148, -0.38703054189682007, 0.06306099146604538, -0.6000980734825134, -0.003032008884474635, -0.7707175016403198, -0.6614093780517578, -0.16608937084674835, -0.026521090418100357, -0.10106296837329865, -0.3711993992328644, -1.008508563041687, 0.91676926612854]} +{"t": 12.2936, "q": [-0.3095453977584839, 0.010274261236190796, -0.007753907702863216, 0.6208446025848389, -0.31834930181503296, -0.018230566754937172, -0.31007376313209534, -0.01028619334101677, 0.002624811604619026, 0.6159614324569702, -0.3316301107406616, 0.014748063869774342, 0.01470430102199316, -0.01686353236436844, -0.012340321205556393, -0.26504313945770264, 0.3061729967594147, -0.38705453276634216, 0.0631568655371666, -0.5999902486801147, -0.0027084348257631063, -0.7717361450195312, -0.655932605266571, -0.16266189515590668, -0.023848608136177063, -0.1020217090845108, -0.3706481158733368, -1.0115764141082764, 0.9164217114448547]} +{"t": 12.3103, "q": [-0.30984365940093994, 0.010163474828004837, -0.00772712379693985, 0.6213474273681641, -0.318377822637558, -0.018180057406425476, -0.31025272607803345, -0.010371414013206959, 0.0026649872306734324, 0.6162853240966797, -0.33159753680229187, 0.014776821248233318, 0.014677518047392368, -0.016800405457615852, -0.011066274717450142, -0.2609085738658905, 0.30628085136413574, -0.38721030950546265, 0.06360028684139252, -0.5994030237197876, -0.0025166873820126057, -0.7727788090705872, -0.6511748433113098, -0.1580359786748886, -0.020804615691304207, -0.10275274515151978, -0.37038445472717285, -1.014668345451355, 0.9161101579666138]} +{"t": 12.3271, "q": [-0.3104061186313629, 0.010103819891810417, -0.00772712379693985, 0.6217650175094604, -0.3183981776237488, -0.018143992871046066, -0.3107385039329529, -0.010456635616719723, 0.0026649872306734324, 0.6164727807044983, -0.33158159255981445, 0.014834809117019176, 0.014664125628769398, -0.016328060999512672, -0.00991591066122055, -0.2574211657047272, 0.30637672543525696, -0.3874020576477051, 0.06434330344200134, -0.598995566368103, -0.0024088292848318815, -0.7736296653747559, -0.6466088891029358, -0.15378157794475555, -0.018084196373820305, -0.103819340467453, -0.3703964352607727, -1.0170413255691528, 0.9159783124923706]} +{"t": 12.3438, "q": [-0.3110026717185974, 0.010052686557173729, -0.00772712379693985, 0.6220206618309021, -0.3183981776237488, -0.018143992871046066, -0.3114287853240967, -0.01053333468735218, 0.0026649872306734324, 0.6166773438453674, -0.3315572440624237, 0.014863629825413227, 0.01470430102199316, -0.015788136050105095, -0.009013190865516663, -0.2538259029388428, 0.30640068650245667, -0.38746199011802673, 0.06551776081323624, -0.5983004570007324, -0.0023608924821019173, -0.7744565606117249, -0.6415515542030334, -0.14884407818317413, -0.015447665937244892, -0.1052694320678711, -0.37045636773109436, -1.0186591148376465, 0.915882408618927]} +{"t": 12.3605, "q": [-0.31121572852134705, 0.01000155508518219, -0.007700339891016483, 0.6222081780433655, -0.3183981776237488, -0.018143992871046066, -0.31171852350234985, -0.010541857220232487, 0.002691771136596799, 0.6168562769889832, -0.33154094219207764, 0.014878017827868462, 0.01470430102199316, -0.015475207939743996, -0.007870301604270935, -0.24989506602287292, 0.3063887059688568, -0.3874020576477051, 0.06735134869813919, -0.5978450775146484, -0.0024927188642323017, -0.7751157283782959, -0.6372491717338562, -0.1434871256351471, -0.012679310515522957, -0.10638396441936493, -0.3705762028694153, -1.0201092958450317, 0.9157626032829285]} +{"t": 12.3773, "q": [-0.31135207414627075, 0.010010076686739922, -0.0076467725448310375, 0.6222252249717712, -0.31838980317115784, -0.0181293785572052, -0.31194010376930237, -0.010558901354670525, 0.0027453387156128883, 0.6169585585594177, -0.33154118061065674, 0.01490708440542221, 0.014650734141469002, -0.015276605263352394, -0.007033932022750378, -0.24596424400806427, 0.3064126670360565, -0.3871743679046631, 0.0691729485988617, -0.5974855422973633, -0.0027443876024335623, -0.7756670117378235, -0.6335460543632507, -0.1384657323360443, -0.009886985644698143, -0.10718691349029541, -0.37077993154525757, -1.0223982334136963, 0.9157626032829285]} +{"t": 12.3941, "q": [-0.3114117383956909, 0.010010076686739922, -0.0076869479380548, 0.6221996545791626, -0.31839796900749207, -0.018114935606718063, -0.31194010376930237, -0.01053333468735218, 0.0027051628567278385, 0.6169500350952148, -0.33154094219207764, 0.014878017827868462, 0.01470430102199316, -0.015108565799891949, -0.0063546933233737946, -0.2415899932384491, 0.3064965605735779, -0.3870425522327423, 0.0716416984796524, -0.5970900654792786, -0.002972087822854519, -0.7762062549591064, -0.6293755769729614, -0.13289307057857513, -0.007897604256868362, -0.10821755230426788, -0.37091177701950073, -1.0264968872070312, 0.9157386422157288]} +{"t": 12.4109, "q": [-0.31140321493148804, 0.010018598288297653, -0.007740515749901533, 0.6221826076507568, -0.3184022605419159, -0.018136780709028244, -0.31194010376930237, -0.010524812154471874, 0.002651595277711749, 0.616941511631012, -0.3315451145172119, 0.014885324984788895, 0.01471769344061613, -0.015130389481782913, -0.005914392881095409, -0.23725171387195587, 0.3068201243877411, -0.3867189586162567, 0.07417037338018417, -0.5968503952026367, -0.0031158984638750553, -0.7766616940498352, -0.6255645751953125, -0.12727247178554535, -0.006795055698603392, -0.10929613560438156, -0.37098369002342224, -1.029600739479065, 0.9157266616821289]} +{"t": 12.4276, "q": [-0.31135207414627075, 0.010018598288297653, -0.00772712379693985, 0.6221058964729309, -0.31838980317115784, -0.0181293785572052, -0.3118719458580017, -0.010541857220232487, 0.00258463597856462, 0.6168818473815918, -0.3315451145172119, 0.014885324984788895, 0.014677518047392368, -0.0151983005926013, -0.005784299224615097, -0.2326018214225769, 0.3070118725299835, -0.38580816984176636, 0.07732222229242325, -0.5967425107955933, -0.00347542529925704, -0.7773327827453613, -0.6214300394058228, -0.12113654613494873, -0.005932191386818886, -0.11079416424036026, -0.37095969915390015, -1.032117486000061, 0.9155228734016418]} +{"t": 12.4443, "q": [-0.3113350570201874, 0.010018598288297653, -0.007753907702863216, 0.6220888495445251, -0.31838980317115784, -0.0181293785572052, -0.3118293285369873, -0.01053333468735218, 0.0025712440256029367, 0.6169074177742004, -0.3315492570400238, 0.014892633073031902, 0.014637341722846031, -0.015250984579324722, -0.005615241825580597, -0.22822758555412292, 0.3071197271347046, -0.3847295939922333, 0.08124106377363205, -0.5967305302619934, -0.004014715552330017, -0.7783395051956177, -0.6179546117782593, -0.11521634459495544, -0.005800365004688501, -0.1125079095363617, -0.370887815952301, -1.0351613759994507, 0.9152352809906006]} +{"t": 12.4612, "q": [-0.3113265335559845, 0.010035643354058266, -0.007713731843978167, 0.6220718026161194, -0.31838563084602356, -0.018122080713510513, -0.31184637546539307, -0.010524812154471874, 0.0026382035575807095, 0.6168903708457947, -0.3315451145172119, 0.014885324984788895, 0.014409679919481277, -0.01530334074050188, -0.0052813091315329075, -0.22364960610866547, 0.3072635531425476, -0.38299188017845154, 0.08386560529470444, -0.5966706275939941, -0.0041824947111308575, -0.7792862057685852, -0.6153659820556641, -0.10973954945802689, -0.005824333522468805, -0.11444935202598572, -0.370887815952301, -1.0376421213150024, 0.9147679209709167]} +{"t": 12.4779, "q": [-0.3113180100917816, 0.010027119889855385, -0.007700339891016483, 0.6220718026161194, -0.3183732032775879, -0.018114697188138962, -0.3118208050727844, -0.010541857220232487, 0.002624811604619026, 0.616864800453186, -0.3315451145172119, 0.014885324984788895, 0.014208801090717316, -0.015476477332413197, -0.004735208116471767, -0.21945513784885406, 0.3073354661464691, -0.38004374504089355, 0.08660999685525894, -0.59662264585495, -0.004506068769842386, -0.7805206179618835, -0.6126335859298706, -0.10378339141607285, -0.005968144163489342, -0.11790081113576889, -0.37086382508277893, -1.039008378982544, 0.914228618144989]} +{"t": 12.4947, "q": [-0.3113265335559845, 0.010035643354058266, -0.007713731843978167, 0.6221144199371338, -0.31836915016174316, -0.018121911212801933, -0.31176114082336426, -0.010541857220232487, 0.002624811604619026, 0.6168818473815918, -0.33152884244918823, 0.014899695292115211, 0.014208801090717316, -0.015800565481185913, -0.003997397609055042, -0.2160036712884903, 0.30727553367614746, -0.3768919110298157, 0.0905647873878479, -0.5965747237205505, -0.004554005805402994, -0.7816471457481384, -0.6099371314048767, -0.09865414351224899, -0.00601608119904995, -0.12178369611501694, -0.37091177701950073, -1.0398712158203125, 0.9133777022361755]} +{"t": 12.5114, "q": [-0.31130096316337585, 0.010027119889855385, -0.00772712379693985, 0.6221314668655396, -0.31835252046585083, -0.018107229843735695, -0.3117440938949585, -0.010524812154471874, 0.002624811604619026, 0.616864800453186, -0.33151671290397644, 0.014921371825039387, 0.014021314680576324, -0.016048960387706757, -0.0032888504210859537, -0.21246832609176636, 0.30755117535591125, -0.37370410561561584, 0.0944356918334961, -0.5965627431869507, -0.004757737275213003, -0.7824860215187073, -0.6080436110496521, -0.0941600576043129, -0.00612393906340003, -0.12459999322891235, -0.3708997964859009, -1.0408779382705688, 0.9126227498054504]} +{"t": 12.5281, "q": [-0.31130096316337585, 0.010035643354058266, -0.007713731843978167, 0.6221399903297424, -0.31835252046585083, -0.018107229843735695, -0.3116503655910492, -0.010524812154471874, 0.002624811604619026, 0.6168818473815918, -0.3314760625362396, 0.014964580535888672, 0.01379365287721157, -0.016214249655604362, -0.0026714105624705553, -0.2089090198278427, 0.30794665217399597, -0.3699410557746887, 0.0998525619506836, -0.5965507626533508, -0.005033374764025211, -0.7833129167556763, -0.6062340140342712, -0.0893663689494133, -0.00618386035785079, -0.12722453474998474, -0.37093573808670044, -1.0421361923217773, 0.9116640090942383]} +{"t": 12.5449, "q": [-0.311292439699173, 0.010035643354058266, -0.007700339891016483, 0.6221314668655396, -0.31834834814071655, -0.018099932000041008, -0.31166741251945496, -0.010541857220232487, 0.002624811604619026, 0.6168733239173889, -0.3314680755138397, 0.014993583783507347, 0.01319101732224226, -0.016349269077181816, -0.0020633626263588667, -0.20422318577766418, 0.3083900809288025, -0.36579450964927673, 0.10495784133672714, -0.5965627431869507, -0.005392901133745909, -0.7836484909057617, -0.6044483780860901, -0.08344615995883942, -0.006507434416562319, -0.12948955595493317, -0.37100765109062195, -1.044317364692688, 0.9109928607940674]} +{"t": 12.5616, "q": [-0.311292439699173, 0.010035643354058266, -0.0076869479380548, 0.6221314668655396, -0.3183605670928955, -0.018078293651342392, -0.31162479519844055, -0.010541857220232487, 0.002611419651657343, 0.6168051362037659, -0.33145585656166077, 0.015000727958977222, 0.012628557160496712, -0.016431447118520737, -0.001614819630049169, -0.19953735172748566, 0.30946865677833557, -0.36302614212036133, 0.1095597892999649, -0.5965867042541504, -0.006219812668859959, -0.7838162779808044, -0.6029024124145508, -0.07864048331975937, -0.007262440398335457, -0.13101154565811157, -0.37098369002342224, -1.0474332571029663, 0.9101420044898987]} +{"t": 12.5783, "q": [-0.3112242519855499, 0.010027119889855385, -0.0076869479380548, 0.6220803260803223, -0.3183565139770508, -0.018085505813360214, -0.3115480840206146, -0.010550378821790218, 0.0026649872306734324, 0.6167539954185486, -0.33145180344581604, 0.01500795315951109, 0.011637557297945023, -0.016679732128977776, -0.0009843037696555257, -0.19392873346805573, 0.3109546899795532, -0.3592870831489563, 0.11416172981262207, -0.5965627431869507, -0.006699182093143463, -0.783936083316803, -0.6018957495689392, -0.07451791316270828, -0.007334345951676369, -0.13206616044044495, -0.37121137976646423, -1.049854040145874, 0.9095907211303711]} +{"t": 12.5953, "q": [-0.31120720505714417, 0.010018598288297653, -0.007660164497792721, 0.6220121383666992, -0.3183647394180298, -0.01808559149503708, -0.3115480840206146, -0.010567422956228256, 0.0026783791836351156, 0.6166943311691284, -0.33145204186439514, 0.015037019737064838, 0.0105126379057765, -0.01690524071455002, -0.00030060988501645625, -0.18884742259979248, 0.3122849464416504, -0.3558116555213928, 0.11945875734090805, -0.5965986847877502, -0.007574030198156834, -0.7839720845222473, -0.6010807752609253, -0.07085073739290237, -0.007358314469456673, -0.13294100761413574, -0.3714390695095062, -1.0513880252838135, 0.9091352820396423]} +{"t": 12.612, "q": [-0.31120720505714417, 0.010027119889855385, -0.0076467725448310375, 0.6219354867935181, -0.31835660338401794, -0.018100015819072723, -0.3115566074848175, -0.010567422956228256, 0.002691771136596799, 0.616634726524353, -0.3314480185508728, 0.01504424586892128, 0.009601988829672337, -0.017221199348568916, 0.0005362157244235277, -0.1836223006248474, 0.31359121203422546, -0.3517969250679016, 0.12612198293209076, -0.5966106653213501, -0.008412926457822323, -0.783708393573761, -0.6006014347076416, -0.06674014776945114, -0.007526093628257513, -0.13380387425422668, -0.37142708897590637, -1.052694320678711, 0.9087877869606018]} +{"t": 12.6287, "q": [-0.3111986815929413, 0.010035643354058266, -0.0076467725448310375, 0.6218587756156921, -0.31834834814071655, -0.018099932000041008, -0.31159070134162903, -0.010558901354670525, 0.0026783791836351156, 0.616634726524353, -0.33145204186439514, 0.015037019737064838, 0.009079704992473125, -0.017642224207520485, 0.001622270792722702, -0.17872075736522675, 0.3143582046031952, -0.34657180309295654, 0.13328854739665985, -0.5965867042541504, -0.008976184763014317, -0.7836125493049622, -0.6003497838973999, -0.06238987669348717, -0.00820919405668974, -0.13497832417488098, -0.37151098251342773, -1.053892731666565, 0.9082964062690735]} +{"t": 12.6454, "q": [-0.31112200021743774, 0.010044164955615997, -0.007660164497792721, 0.6217820644378662, -0.31834009289741516, -0.01809982769191265, -0.31157365441322327, -0.010558901354670525, 0.0026783791836351156, 0.6166006326675415, -0.3314480185508728, 0.01504424586892128, 0.008892218582332134, -0.018138181418180466, 0.0029190185014158487, -0.17462214827537537, 0.31501734256744385, -0.34242525696754456, 0.1411861628293991, -0.5965867042541504, -0.010126669891178608, -0.78339684009552, -0.5999423265457153, -0.05938183516263962, -0.008988169021904469, -0.13679993152618408, -0.37151098251342773, -1.055222988128662, 0.9076013565063477]} +{"t": 12.6622, "q": [-0.31111347675323486, 0.01006120815873146, -0.007660164497792721, 0.6217309236526489, -0.31832757592201233, -0.01807793416082859, -0.31159070134162903, -0.010567422956228256, 0.0026382035575807095, 0.6165921092033386, -0.3314562141895294, 0.015044327825307846, 0.008932393975555897, -0.01878548599779606, 0.004125474486500025, -0.17081116139888763, 0.3153529167175293, -0.33815887570381165, 0.14834074676036835, -0.5965747237205505, -0.011073424480855465, -0.7833608388900757, -0.5997505784034729, -0.05765610933303833, -0.00971920695155859, -0.13859756290912628, -0.37151098251342773, -1.0563974380493164, 0.9069182276725769]} +{"t": 12.6789, "q": [-0.3111305236816406, 0.010086774826049805, -0.007660164497792721, 0.6216115951538086, -0.31832757592201233, -0.01807793416082859, -0.31162479519844055, -0.010558901354670525, 0.002651595277711749, 0.6164727807044983, -0.33144789934158325, 0.015029712580144405, 0.008892218582332134, -0.0194401778280735, 0.005288408137857914, -0.16659271717071533, 0.31543678045272827, -0.33403632044792175, 0.15569905936717987, -0.596538782119751, -0.011816445738077164, -0.7830732464790344, -0.5995708107948303, -0.05620601773262024, -0.010414292104542255, -0.14029932022094727, -0.37155890464782715, -1.0571285486221313, 0.9058876037597656]} +{"t": 12.6957, "q": [-0.3110964298248291, 0.010086774826049805, -0.007633380591869354, 0.6214667558670044, -0.3183234930038452, -0.018085146322846413, -0.3115992248058319, -0.010550378821790218, 0.0026382035575807095, 0.6164131164550781, -0.33145204186439514, 0.015037019737064838, 0.00873151607811451, -0.019936267286539078, 0.006293292157351971, -0.1616072803735733, 0.3155326545238495, -0.3305129408836365, 0.16404007375240326, -0.5963590145111084, -0.011720572598278522, -0.7829294204711914, -0.5995468497276306, -0.05463608354330063, -0.010929613374173641, -0.14144980907440186, -0.37158289551734924, -1.0574880838394165, 0.9045573472976685]} +{"t": 12.7124, "q": [-0.3110879063606262, 0.010069731622934341, -0.007593204732984304, 0.6213303804397583, -0.31830698251724243, -0.018084995448589325, -0.31163331866264343, -0.010541857220232487, 0.0026783791836351156, 0.6163619756698608, -0.33144789934158325, 0.015029712580144405, 0.008383326232433319, -0.020333431661128998, 0.007408879231661558, -0.15553127229213715, 0.3156764805316925, -0.32695361971855164, 0.17489778995513916, -0.5961193442344666, -0.011385014280676842, -0.7826657891273499, -0.5996546745300293, -0.052155349403619766, -0.011780492961406708, -0.1426122784614563, -0.3715229630470276, -1.057775616645813, 0.9025559425354004]} +{"t": 12.7292, "q": [-0.3110111951828003, 0.010052686557173729, -0.007526245433837175, 0.621117353439331, -0.3183067739009857, -0.018055954948067665, -0.31163331866264343, -0.010550378821790218, 0.0027453387156128883, 0.6161319017410278, -0.3314521610736847, 0.015051553025841713, 0.007780691608786583, -0.02063247747719288, 0.00847181398421526, -0.14847256243228912, 0.3161558508872986, -0.32359805703163147, 0.18727748095989227, -0.5958436727523804, -0.011001518927514553, -0.782138466835022, -0.5996067523956299, -0.04873984307050705, -0.012871057726442814, -0.1437627673149109, -0.3714390695095062, -1.0578715801239014, 0.9003508687019348]} +{"t": 12.7461, "q": [-0.310960054397583, 0.010078253224492073, -0.007459285669028759, 0.6208105683326721, -0.3182944357395172, -0.018063083291053772, -0.31163331866264343, -0.010541857220232487, 0.0027721223887056112, 0.6159529089927673, -0.3314480185508728, 0.01504424586892128, 0.007245015352964401, -0.021134769544005394, 0.00968961138278246, -0.14142584800720215, 0.316347599029541, -0.32035031914711, 0.2000526785850525, -0.5956639051437378, -0.01025849673897028, -0.7812995910644531, -0.599307119846344, -0.044868938624858856, -0.0142971808090806, -0.14467357099056244, -0.3712713122367859, -1.0579553842544556, 0.8978461623191833]} +{"t": 12.7629, "q": [-0.31088337302207947, 0.010078253224492073, -0.007405718322843313, 0.6204526424407959, -0.318273663520813, -0.018041104078292847, -0.3117015063762665, -0.010524812154471874, 0.0027989062946289778, 0.6158506870269775, -0.33143967390060425, 0.01502963062375784, 0.006615596357733011, -0.021636074408888817, 0.011147494427859783, -0.13439109921455383, 0.316575288772583, -0.31778571009635925, 0.2154524028301239, -0.5954481959342957, -0.009515474550426006, -0.7802449464797974, -0.598707914352417, -0.040590569376945496, -0.016046877950429916, -0.1451050043106079, -0.3710435926914215, -1.058003306388855, 0.8953174948692322]} +{"t": 12.7796, "q": [-0.31084075570106506, 0.010103819891810417, -0.007405718322843313, 0.6201798915863037, -0.318273663520813, -0.018041104078292847, -0.3117867112159729, -0.010482202284038067, 0.0028122980147600174, 0.6157569289207458, -0.33143576979637146, 0.015051407739520073, 0.006079920567572117, -0.02233247458934784, 0.01283992175012827, -0.12773986160755157, 0.31651538610458374, -0.31561654806137085, 0.23093602061271667, -0.595424234867096, -0.009767143987119198, -0.7792981863021851, -0.5980607867240906, -0.036803554743528366, -0.01774863712489605, -0.1453806310892105, -0.37091177701950073, -1.058003306388855, 0.8934119939804077]} +{"t": 12.7965, "q": [-0.31080666184425354, 0.010103819891810417, -0.007405718322843313, 0.6199583411216736, -0.31824034452438354, -0.01799721270799637, -0.3117867112159729, -0.010456635616719723, 0.0028122980147600174, 0.6155949831008911, -0.33143967390060425, 0.01502963062375784, 0.005812082905322313, -0.02285580523312092, 0.014221847988665104, -0.12177171558141708, 0.3159281313419342, -0.3128122389316559, 0.24181769788265228, -0.5953643321990967, -0.010462228208780289, -0.778998613357544, -0.5971499681472778, -0.034334804862737656, -0.018971027806401253, -0.14551246166229248, -0.37091177701950073, -1.0580272674560547, 0.890847384929657]} +{"t": 12.8132, "q": [-0.3106532692909241, 0.010112341493368149, -0.007378934416919947, 0.6196089386940002, -0.31822800636291504, -0.018004339188337326, -0.3117526173591614, -0.010431068949401379, 0.002852473873645067, 0.6153563857078552, -0.3314233720302582, 0.015043999999761581, 0.005557636730372906, -0.02354520745575428, 0.015590573661029339, -0.11563578993082047, 0.3155806064605713, -0.30994802713394165, 0.2514769732952118, -0.5953164100646973, -0.0105341337621212, -0.7789506912231445, -0.5959275960922241, -0.031566448509693146, -0.020061593502759933, -0.14548850059509277, -0.37091177701950073, -1.0580393075942993, 0.8874678611755371]} +{"t": 12.8299, "q": [-0.31028681993484497, 0.010103819891810417, -0.007231623865664005, 0.6191402077674866, -0.3182196617126465, -0.017989743500947952, -0.3116844594478607, -0.010431068949401379, 0.0029328251257538795, 0.6153052449226379, -0.33142325282096863, 0.015029466710984707, 0.005075528286397457, -0.023977365344762802, 0.016931969672441483, -0.11017098277807236, 0.3154967129230499, -0.3077069818973541, 0.26234668493270874, -0.5951845645904541, -0.010977550409734249, -0.7786989808082581, -0.594141960144043, -0.028067056089639664, -0.02142779529094696, -0.14550048112869263, -0.3707919418811798, -1.0580153465270996, 0.8828898668289185]} +{"t": 12.8467, "q": [-0.3101419508457184, 0.010103819891810417, -0.007164664100855589, 0.6187567114830017, -0.3182196617126465, -0.017989743500947952, -0.31167593598365784, -0.010431068949401379, 0.0030131766106933355, 0.6152029633522034, -0.3314233720302582, 0.015043999999761581, 0.004660379607230425, -0.024230625480413437, 0.01774143986403942, -0.10602444410324097, 0.31546077132225037, -0.30628085136413574, 0.2717662751674652, -0.5950407385826111, -0.011145329102873802, -0.7786630392074585, -0.5919607877731323, -0.0240643247961998, -0.022722091525793076, -0.1456083357334137, -0.3706481158733368, -1.0580153465270996, 0.8778085708618164]} +{"t": 12.8634, "q": [-0.30983513593673706, 0.010086774826049805, -0.007137880194932222, 0.6183817386627197, -0.3181946873664856, -0.017960447818040848, -0.31162479519844055, -0.010431068949401379, 0.0030131766106933355, 0.6150496006011963, -0.3314152956008911, 0.01505845133215189, 0.004325582180172205, -0.024318043142557144, 0.01846586912870407, -0.10306433588266373, 0.315376877784729, -0.30526217818260193, 0.2824322283267975, -0.5948489904403687, -0.011169297620654106, -0.7786750197410583, -0.5891804695129395, -0.019546272233128548, -0.024507740512490273, -0.1459558755159378, -0.3704683482646942, -1.0580393075942993, 0.8726193904876709]} +{"t": 12.8802, "q": [-0.3094090521335602, 0.010078253224492073, -0.00709770480170846, 0.6182283163070679, -0.3181906044483185, -0.01796766184270382, -0.31140321493148804, -0.010422547347843647, 0.0030801359098404646, 0.6150922179222107, -0.3314111530780792, 0.015051144175231457, 0.004138095770031214, -0.02420130930840969, 0.019292624667286873, -0.10089518874883652, 0.31534090638160706, -0.30450716614723206, 0.2921154797077179, -0.5945494174957275, -0.010965566150844097, -0.7786270976066589, -0.5867716073989868, -0.015375761315226555, -0.02696450613439083, -0.1471303403377533, -0.37043240666389465, -1.0581111907958984, 0.8689641952514648]} +{"t": 12.897, "q": [-0.3091278076171875, 0.010103819891810417, -0.007003961596637964, 0.6178618669509888, -0.31817826628685, -0.01797480694949627, -0.3113691210746765, -0.01041402481496334, 0.003133703488856554, 0.6152370572090149, -0.3314233720302582, 0.015043999999761581, 0.004097919911146164, -0.024085231125354767, 0.019977007061243057, -0.09869009256362915, 0.3151251971721649, -0.30323684215545654, 0.30408772826194763, -0.5942977070808411, -0.010821755044162273, -0.7784832715988159, -0.5840032696723938, -0.011301124468445778, -0.03075152263045311, -0.1486762911081314, -0.3701927065849304, -1.0581830739974976, 0.8649494647979736]} +{"t": 12.9137, "q": [-0.3085227310657501, 0.010078253224492073, -0.006910218391567469, 0.6174868941307068, -0.31814923882484436, -0.017952725291252136, -0.3110964298248291, -0.01041402481496334, 0.0032810145057737827, 0.6153904795646667, -0.3314194679260254, 0.015065777115523815, 0.0036827712319791317, -0.02407378889620304, 0.02089846506714821, -0.09559816122055054, 0.31501734256744385, -0.3014751672744751, 0.3147057592868805, -0.5940700173377991, -0.010845723561942577, -0.7779080271720886, -0.5816423892974854, -0.006028065457940102, -0.03656386956572533, -0.15030615031719208, -0.37015676498413086, -1.0582070350646973, 0.8600838780403137]} +{"t": 12.9305, "q": [-0.3077131509780884, 0.010112341493368149, -0.006883434485644102, 0.6171204447746277, -0.3181450664997101, -0.01794542744755745, -0.31051692366600037, -0.010371414013206959, 0.0033077981788665056, 0.6154671907424927, -0.33142754435539246, 0.015051325783133507, 0.003575636073946953, -0.024143263697624207, 0.02223064936697483, -0.09323727339506149, 0.31508925557136536, -0.30008500814437866, 0.3245927393436432, -0.5937464833259583, -0.01125318743288517, -0.7768774032592773, -0.5796290636062622, -0.0005033374764025211, -0.0433349572122097, -0.1516723483800888, -0.36985716223716736, -1.058123230934143, 0.8559852838516235]} +{"t": 12.9472, "q": [-0.30690354108810425, 0.010137908160686493, -0.006883434485644102, 0.6167795658111572, -0.31812864542007446, -0.01795976795256138, -0.30993741750717163, -0.01034584827721119, 0.003321190131828189, 0.6156205534934998, -0.3314194679260254, 0.015065777115523815, 0.0032944062259048223, -0.02382105216383934, 0.023503173142671585, -0.09142765402793884, 0.3150772750377655, -0.299198180437088, 0.3344198167324066, -0.5934348702430725, -0.01197224110364914, -0.7751636505126953, -0.5781190395355225, 0.004062652587890625, -0.049614693969488144, -0.15255919098854065, -0.3694736659526825, -1.0580872297286987, 0.8511196970939636]} +{"t": 12.964, "q": [-0.3059064447879791, 0.010137908160686493, -0.006829866673797369, 0.616489827632904, -0.3181203007698059, -0.017945172265172005, -0.3092130422592163, -0.010328804142773151, 0.0034551091957837343, 0.6156546473503113, -0.33142364025115967, 0.015073085203766823, 0.003066744189709425, -0.023477261886000633, 0.02455940470099449, -0.08977383375167847, 0.31584426760673523, -0.298826664686203, 0.3443067967891693, -0.5931591987609863, -0.012739231809973717, -0.7731143832206726, -0.5773161053657532, 0.007130614016205072, -0.05517537146806717, -0.15360181033611298, -0.3690182566642761, -1.058063268661499, 0.847284734249115]} +{"t": 12.9808, "q": [-0.30479004979133606, 0.010154951363801956, -0.006588812451809645, 0.616046667098999, -0.31811216473579407, -0.0179595984518528, -0.30831822752952576, -0.010320281609892845, 0.003776514669880271, 0.6156376004219055, -0.33142364025115967, 0.015073085203766823, 0.0028926494996994734, -0.023179898038506508, 0.025319846346974373, -0.08725714683532715, 0.3168748915195465, -0.29736459255218506, 0.3543016314506531, -0.5927757620811462, -0.013410348445177078, -0.7710650563240051, -0.5766449570655823, 0.00848483107984066, -0.059238024055957794, -0.1544407159090042, -0.36819136142730713, -1.057895541191101, 0.8429224491119385]} +{"t": 12.9975, "q": [-0.30310267210006714, 0.010154951363801956, -0.006106704473495483, 0.6152541041374207, -0.3180999159812927, -0.017981253564357758, -0.30727851390838623, -0.010320281609892845, 0.0043523660860955715, 0.6156802177429199, -0.3314442038536072, 0.015080556273460388, 0.0030131766106933355, -0.023153623566031456, 0.02616170421242714, -0.08469252288341522, 0.3173782229423523, -0.29604631662368774, 0.36466798186302185, -0.5925120711326599, -0.014345117844641209, -0.7690996527671814, -0.575985848903656, 0.008988169021904469, -0.06221011281013489, -0.15508785843849182, -0.36699292063713074, -1.0578476190567017, 0.8385002613067627]} +{"t": 13.0143, "q": [-0.3012789487838745, 0.010163474828004837, -0.005731731187552214, 0.6145808696746826, -0.3180999159812927, -0.017981253564357758, -0.30602577328681946, -0.010320281609892845, 0.004928217735141516, 0.6156290769577026, -0.3314400315284729, 0.01507324818521738, 0.0032006630208343267, -0.02310595102608204, 0.026751646772027016, -0.08191218227148056, 0.31748610734939575, -0.2947040796279907, 0.3770357072353363, -0.5922724008560181, -0.014968297444283962, -0.7673259973526001, -0.5751948952674866, 0.01005476526916027, -0.06603308022022247, -0.15544737875461578, -0.3655308485031128, -1.0578595399856567, 0.8351806402206421]} +{"t": 13.0311, "q": [-0.30030742287635803, 0.010189041495323181, -0.005517460871487856, 0.6141377091407776, -0.31809574365615845, -0.01797395572066307, -0.3053184151649475, -0.01028619334101677, 0.005222839303314686, 0.6156887412071228, -0.3314688205718994, 0.015080783516168594, 0.0031470954418182373, -0.023135852068662643, 0.02680826559662819, -0.07862850278615952, 0.3173063397407532, -0.29287049174308777, 0.38947534561157227, -0.5920327305793762, -0.0154956029728055, -0.7661635279655457, -0.5742601156234741, 0.011480887420475483, -0.07017962634563446, -0.1556151658296585, -0.36381709575653076, -1.0577876567840576, 0.8318370580673218]} +{"t": 13.0478, "q": [-0.29956600069999695, 0.010316872969269753, -0.005383542273193598, 0.6138991117477417, -0.31809166073799133, -0.017981169745326042, -0.3047815263271332, -0.010200971737504005, 0.005343366414308548, 0.6158080697059631, -0.331489622592926, 0.015117339789867401, 0.002852473873645067, -0.023241501301527023, 0.026768803596496582, -0.0746617242693901, 0.3168269693851471, -0.2890715003013611, 0.40272989869117737, -0.5916971564292908, -0.015855129808187485, -0.7646535038948059, -0.5730377435684204, 0.013638048432767391, -0.07595601677894592, -0.15596270561218262, -0.3610846996307373, -1.057763695716858, 0.8292604684829712]} +{"t": 13.0646, "q": [-0.29932737350463867, 0.010487314313650131, -0.0053701503202319145, 0.6139076352119446, -0.318095862865448, -0.01798846758902073, -0.30446621775627136, -0.010004963725805283, 0.005343366414308548, 0.6157910227775574, -0.33148548007011414, 0.015110032632946968, 0.002758730435743928, -0.023422222584486008, 0.02679484896361828, -0.07153384387493134, 0.3168269693851471, -0.28668662905693054, 0.41749444603919983, -0.5909421443939209, -0.016562199220061302, -0.7630955576896667, -0.5713719129562378, 0.01543568167835474, -0.08221178501844406, -0.15672969818115234, -0.3589874804019928, -1.057607889175415, 0.828074038028717]} +{"t": 13.0818, "q": [-0.2992762625217438, 0.010564012452960014, -0.005383542273193598, 0.6139246821403503, -0.3180794417858124, -0.018002808094024658, -0.30447474122047424, -0.009945308789610863, 0.005329974461346865, 0.6158592104911804, -0.33149367570877075, 0.015110114589333534, 0.0027721223887056112, -0.023752957582473755, 0.026942092925310135, -0.06835801899433136, 0.3168030083179474, -0.2835707366466522, 0.4307010769844055, -0.5894680619239807, -0.016981646418571472, -0.7613219022750854, -0.5696701407432556, 0.016382435336709023, -0.08725714683532715, -0.15696938335895538, -0.3572976887226105, -1.0575239658355713, 0.8274627923965454]} +{"t": 13.0986, "q": [-0.2992677390575409, 0.010564012452960014, -0.0053701503202319145, 0.6139928698539734, -0.31807130575180054, -0.018017251044511795, -0.30450883507728577, -0.009945308789610863, 0.005343366414308548, 0.6160381436347961, -0.33149367570877075, 0.015110114589333534, 0.002758730435743928, -0.024038096889853477, 0.02717544324696064, -0.06489457935094833, 0.3168030083179474, -0.2800114154815674, 0.444267213344574, -0.588018000125885, -0.017353158444166183, -0.7594643235206604, -0.5675848722457886, 0.01647830940783024, -0.09109209477901459, -0.1571131944656372, -0.3543495833873749, -1.057320237159729, 0.8269355297088623]} +{"t": 13.1153, "q": [-0.29929327964782715, 0.010564012452960014, -0.005383542273193598, 0.6141206622123718, -0.3180466294288635, -0.018031489104032516, -0.3045429289340973, -0.009928264655172825, 0.005329974461346865, 0.6162427067756653, -0.3314895033836365, 0.015102806501090527, 0.003066744189709425, -0.02436802349984646, 0.027493441477417946, -0.06250971555709839, 0.31725838780403137, -0.27866917848587036, 0.4594152867794037, -0.5870233178138733, -0.01768871583044529, -0.7581580281257629, -0.5644569993019104, 0.016202673316001892, -0.09346497058868408, -0.15724502503871918, -0.3519766926765442, -1.0572603940963745, 0.8265999555587769]} +{"t": 13.132, "q": [-0.29929327964782715, 0.010555490851402283, -0.005410325713455677, 0.6142144203186035, -0.31803014874458313, -0.018031319603323936, -0.30455994606018066, -0.009945308789610863, 0.005316582508385181, 0.6164045929908752, -0.33149367570877075, 0.015110114589333534, 0.003361365757882595, -0.024637997150421143, 0.02774578519165516, -0.06001700088381767, 0.31758198142051697, -0.2776625156402588, 0.47597748041152954, -0.5858608484268188, -0.017784589901566505, -0.7566720247268677, -0.5609576106071472, 0.0162506103515625, -0.09496299922466278, -0.1573408991098404, -0.3506704270839691, -1.0572004318237305, 0.826587975025177]} +{"t": 13.1488, "q": [-0.2992762625217438, 0.010546969249844551, -0.005410325713455677, 0.6144104599952698, -0.3180217742919922, -0.018016723915934563, -0.3045769929885864, -0.009945308789610863, 0.005343366414308548, 0.61656653881073, -0.33149367570877075, 0.015110114589333534, 0.003441717242822051, -0.025034673511981964, 0.028285859152674675, -0.05700895935297012, 0.31798943877220154, -0.27661988139152527, 0.49017879366874695, -0.5845545530319214, -0.017964353784918785, -0.7548743486404419, -0.557542085647583, 0.016394419595599174, -0.09517871588468552, -0.15631024539470673, -0.3503588140010834, -1.0571883916854858, 0.82673180103302]} +{"t": 13.1655, "q": [-0.29929327964782715, 0.010546969249844551, -0.005410325713455677, 0.6146405339241028, -0.3180217742919922, -0.018016723915934563, -0.3045769929885864, -0.009945308789610863, 0.005316582508385181, 0.6167284250259399, -0.3314895033836365, 0.015102806501090527, 0.003816690295934677, -0.025715485215187073, 0.02915249578654766, -0.0547679103910923, 0.3181692063808441, -0.2755413055419922, 0.5053028464317322, -0.5835239291191101, -0.018455706536769867, -0.7522258758544922, -0.5523169636726379, 0.016406403854489326, -0.09490308165550232, -0.15207982063293457, -0.3503588140010834, -1.0561338663101196, 0.8273070454597473]} +{"t": 13.1823, "q": [-0.29930180311203003, 0.010529924184083939, -0.005437109619379044, 0.6147172451019287, -0.31798866391181946, -0.018001871183514595, -0.3045769929885864, -0.009945308789610863, 0.005329974461346865, 0.6168221831321716, -0.3314895033836365, 0.015102806501090527, 0.003923825453966856, -0.02697446569800377, 0.030290210619568825, -0.05261074751615524, 0.3181212544441223, -0.27403128147125244, 0.5194082856178284, -0.5824812650680542, -0.018803250044584274, -0.7487264275550842, -0.5456058382987976, 0.01672997884452343, -0.09490308165550232, -0.14898788928985596, -0.3498554825782776, -1.0551990270614624, 0.8274508118629456]} +{"t": 13.199, "q": [-0.2993529438972473, 0.01053844764828682, -0.00546389352530241, 0.6147939562797546, -0.3179802894592285, -0.01798727549612522, -0.30461108684539795, -0.009945308789610863, 0.005276407115161419, 0.6168477535247803, -0.3314895033836365, 0.015102806501090527, 0.004379149992018938, -0.028278572484850883, 0.031272903084754944, -0.04980643838644028, 0.3180733323097229, -0.27133485674858093, 0.5321235656738281, -0.5811629891395569, -0.018911106511950493, -0.7458742260932922, -0.5382834672927856, 0.01738911122083664, -0.09523864090442657, -0.1470584273338318, -0.3490045964717865, -1.0546118021011353, 0.8274508118629456]} +{"t": 13.2157, "q": [-0.2993614673614502, 0.01053844764828682, -0.005490677431225777, 0.6148706078529358, -0.3179512619972229, -0.017965193837881088, -0.30461961030960083, -0.009945308789610863, 0.005236231256276369, 0.6169329881668091, -0.3314895033836365, 0.015102806501090527, 0.004486285150051117, -0.029868045821785927, 0.032239001244306564, -0.04524045065045357, 0.3181212544441223, -0.2674279808998108, 0.5460851788520813, -0.5796050429344177, -0.01901896484196186, -0.7435013055801392, -0.5320037007331848, 0.01792840100824833, -0.09587380290031433, -0.1449851542711258, -0.3485492169857025, -1.0540964603424072, 0.8274388313293457]} +{"t": 13.2327, "q": [-0.2993529438972473, 0.010521402582526207, -0.005477285478264093, 0.6149558424949646, -0.3179554343223572, -0.017972508445382118, -0.30461961030960083, -0.0099623529240489, 0.005236231256276369, 0.6169329881668091, -0.3314895033836365, 0.015102806501090527, 0.004325582180172205, -0.031449347734451294, 0.033198606222867966, -0.04080628603696823, 0.31831300258636475, -0.26377278566360474, 0.5605860948562622, -0.5784305930137634, -0.01877928152680397, -0.740888774394989, -0.5258558392524719, 0.018072212114930153, -0.09619737416505814, -0.14403840899467468, -0.348249614238739, -1.053892731666565, 0.8274268507957458]} +{"t": 13.2495, "q": [-0.29934442043304443, 0.010521402582526207, -0.00546389352530241, 0.6149899363517761, -0.31796368956565857, -0.017972594127058983, -0.30461961030960083, -0.009945308789610863, 0.005222839303314686, 0.616941511631012, -0.33148130774497986, 0.01510272454470396, 0.0042854067869484425, -0.03322511166334152, 0.03419945761561394, -0.036024581640958786, 0.31840887665748596, -0.25932663679122925, 0.5760577321052551, -0.5775078535079956, -0.019090870395302773, -0.7372815012931824, -0.5189768671989441, 0.018335863947868347, -0.09647301584482193, -0.14347514510154724, -0.34804585576057434, -1.053725004196167, 0.8274268507957458]} +{"t": 13.2662, "q": [-0.2993699908256531, 0.010504359379410744, -0.005410325713455677, 0.6150410771369934, -0.31795534491539, -0.017957979813218117, -0.3046451807022095, -0.009928264655172825, 0.005303190555423498, 0.616941511631012, -0.3314895033836365, 0.015102806501090527, 0.0036425956059247255, -0.03500030189752579, 0.0351121686398983, -0.03293265029788017, 0.3194275498390198, -0.2575889229774475, 0.5921405553817749, -0.5768606662750244, -0.019702065736055374, -0.7343813180923462, -0.5112350583076477, 0.01870737597346306, -0.09683254361152649, -0.14301975071430206, -0.3476623594760895, -1.0536890029907227, 0.8273909091949463]} +{"t": 13.283, "q": [-0.2993955612182617, 0.010512880980968475, -0.005222839303314686, 0.6151007413864136, -0.31797173619270325, -0.017943639308214188, -0.3048070967197418, -0.009919742122292519, 0.005530852824449539, 0.6169329881668091, -0.3314771354198456, 0.015095417387783527, 0.00287925754673779, -0.03640910983085632, 0.03567627817392349, -0.030919300392270088, 0.32050612568855286, -0.2567859888076782, 0.6053231954574585, -0.5761056542396545, -0.020421119406819344, -0.7303786277770996, -0.5028221607208252, 0.019294602796435356, -0.09737183153629303, -0.14319950342178345, -0.3449779152870178, -1.053665041923523, 0.8270553350448608]} +{"t": 13.2997, "q": [-0.2993614673614502, 0.010512880980968475, -0.0049148257821798325, 0.6151604056358337, -0.31797581911087036, -0.017936427146196365, -0.3048497140407562, -0.009936786256730556, 0.0058388663455843925, 0.6169670820236206, -0.33148130774497986, 0.01510272454470396, 0.0020623519085347652, -0.037774957716464996, 0.035909656435251236, -0.029205556958913803, 0.3218243718147278, -0.25605496764183044, 0.6220532059669495, -0.5754225850105286, -0.020864536985754967, -0.7252852916717529, -0.49347445368766785, 0.0207566786557436, -0.09875001758337021, -0.1432833969593048, -0.3398965895175934, -1.053053855895996, 0.8261205554008484]} +{"t": 13.3164, "q": [-0.29905468225479126, 0.010512880980968475, -0.004472893197089434, 0.6152200102806091, -0.31797581911087036, -0.017936427146196365, -0.3048582375049591, -0.009928264655172825, 0.006294190883636475, 0.6171119213104248, -0.33148548007011414, 0.015110032632946968, 0.0008169056382030249, -0.038862284272909164, 0.03619122877717018, -0.02731204964220524, 0.3240174949169159, -0.25485652685165405, 0.6381240487098694, -0.5750271081924438, -0.021212078630924225, -0.7211148142814636, -0.48570865392684937, 0.022422485053539276, -0.0998765304684639, -0.1449611932039261, -0.33406028151512146, -1.052178978919983, 0.8244068622589111]} +{"t": 13.3334, "q": [-0.29846665263175964, 0.010512880980968475, -0.004030960611999035, 0.6151944398880005, -0.3179839551448822, -0.01792200095951557, -0.30473893880844116, -0.00990269798785448, 0.006883434485644102, 0.6173079609870911, -0.3314732313156128, 0.015117194503545761, -0.0002812298189383, -0.039783671498298645, 0.036494527012109756, -0.02594584785401821, 0.3266420364379883, -0.25340643525123596, 0.6529964804649353, -0.5743919610977173, -0.021871211007237434, -0.7171240448951721, -0.47930908203125, 0.02401638776063919, -0.10168614983558655, -0.14504507184028625, -0.33006954193115234, -1.051112413406372, 0.8221178650856018]} +{"t": 13.3501, "q": [-0.2981257736682892, 0.010521402582526207, -0.0036024199798703194, 0.6152370572090149, -0.3179839551448822, -0.01792200095951557, -0.30469632148742676, -0.009843043051660061, 0.0074191102758049965, 0.6174954175949097, -0.33146917819976807, 0.015124419704079628, -0.0010579597437754273, -0.040493957698345184, 0.03688748925924301, -0.02509496733546257, 0.3290868103504181, -0.250745952129364, 0.6679527759552002, -0.5734211802482605, -0.022722091525793076, -0.714367687702179, -0.47217848896980286, 0.025298699736595154, -0.10536530613899231, -0.14512896537780762, -0.3269416391849518, -1.0497342348098755, 0.8199247121810913]} +{"t": 13.3669, "q": [-0.297878623008728, 0.01053844764828682, -0.0034283252898603678, 0.6154075264930725, -0.31797561049461365, -0.017907386645674706, -0.3045769929885864, -0.009843043051660061, 0.007619988638907671, 0.6177681684494019, -0.3314690589904785, 0.015109886415302753, -0.0017141626449301839, -0.04116066172719002, 0.03710224851965904, -0.0243759136646986, 0.33221471309661865, -0.24796560406684875, 0.6821300983428955, -0.5714198350906372, -0.023668844252824783, -0.7111678719520569, -0.46503588557243347, 0.026497121900320053, -0.11139337718486786, -0.1453806310892105, -0.3230467736721039, -1.0487515926361084, 0.8176117539405823]} +{"t": 13.3836, "q": [-0.297622948884964, 0.010546969249844551, -0.003468500915914774, 0.6157654523849487, -0.3179549276828766, -0.01789991930127144, -0.30427873134613037, -0.009825998917222023, 0.007606596685945988, 0.618057906627655, -0.3314608633518219, 0.015109804458916187, -0.002169487066566944, -0.04188115522265434, 0.03715003281831741, -0.024088293313980103, 0.3354983925819397, -0.2443823218345642, 0.695840060710907, -0.566865861415863, -0.02449575625360012, -0.7058229446411133, -0.4573180377483368, 0.027455860748887062, -0.11901534348726273, -0.14544056355953217, -0.31951144337654114, -1.0482721328735352, 0.8155984282493591]} +{"t": 13.4003, "q": [-0.29731616377830505, 0.010589579120278358, -0.0035220684949308634, 0.6161319017410278, -0.3179590106010437, -0.017892705276608467, -0.3039463758468628, -0.009808954782783985, 0.007593204732984304, 0.6183732151985168, -0.3314608633518219, 0.015109804458916187, -0.002464108867570758, -0.04299437999725342, 0.0369507297873497, -0.024052340537309647, 0.3387221395969391, -0.24007998406887054, 0.7085074186325073, -0.5607898235321045, -0.02521480992436409, -0.7005858421325684, -0.449384480714798, 0.028007134795188904, -0.1252111792564392, -0.14522483944892883, -0.31474170088768005, -1.0473134517669678, 0.8134772181510925]} +{"t": 13.417, "q": [-0.2970093786716461, 0.01065775752067566, -0.003589028026908636, 0.6166262030601501, -0.3179630637168884, -0.017885493114590645, -0.303486168384552, -0.009800433181226254, 0.007579812780022621, 0.6185351610183716, -0.3314650058746338, 0.015117112547159195, -0.0029997846577316523, -0.04404151812195778, 0.03658789396286011, -0.024112261831760406, 0.3428686857223511, -0.2371438443660736, 0.7216541171073914, -0.55625981092453, -0.025670209899544716, -0.6948094367980957, -0.44177448749542236, 0.029109682887792587, -0.13137108087539673, -0.14518888294696808, -0.3109546899795532, -1.0459831953048706, 0.8096781969070435]} +{"t": 13.4338, "q": [-0.2967537045478821, 0.01072593405842781, -0.0036425956059247255, 0.6170863509178162, -0.3179630637168884, -0.017885493114590645, -0.3030771017074585, -0.009766343981027603, 0.007579812780022621, 0.6186544299125671, -0.3314608633518219, 0.015109804458916187, -0.004419325385242701, -0.044780708849430084, 0.036228105425834656, -0.024052340537309647, 0.347278892993927, -0.23521438241004944, 0.7344292998313904, -0.553203821182251, -0.02600576914846897, -0.6902194619178772, -0.4362737238407135, 0.030296120792627335, -0.13668008148670197, -0.14502111077308655, -0.30909714102745056, -1.0448806285858154, 0.8068858981132507]} +{"t": 13.4505, "q": [-0.2965576946735382, 0.01071741059422493, -0.0037095551379024982, 0.6174442768096924, -0.31791314482688904, -0.017826920375227928, -0.3027106523513794, -0.009791910648345947, 0.007593204732984304, 0.6187140941619873, -0.33142852783203125, 0.015167628414928913, -0.006883434485644102, -0.04549132287502289, 0.03573578596115112, -0.023728765547275543, 0.35226431488990784, -0.23327293992042542, 0.7484867572784424, -0.5490332841873169, -0.02599378488957882, -0.6832566261291504, -0.4312763214111328, 0.031326763331890106, -0.14077869057655334, -0.1449851542711258, -0.30688005685806274, -1.0423519611358643, 0.8042134046554565]} +{"t": 13.4674, "q": [-0.2963787317276001, 0.010734455659985542, -0.003736338810995221, 0.6181005239486694, -0.31784212589263916, -0.017702817916870117, -0.3023527264595032, -0.009808954782783985, 0.007593204732984304, 0.618807852268219, -0.3313716948032379, 0.015239722095429897, -0.009119881317019463, -0.046163834631443024, 0.035306159406900406, -0.02323741279542446, 0.3571658730506897, -0.23072031140327454, 0.7615975141525269, -0.545198380947113, -0.02575409971177578, -0.6770727634429932, -0.4264586567878723, 0.03257312253117561, -0.1443859487771988, -0.14529675245285034, -0.3044951856136322, -1.0385290384292603, 0.801780641078949]} +{"t": 13.4844, "q": [-0.2963702082633972, 0.010819677263498306, -0.0037631227169185877, 0.6185436844825745, -0.3177585303783417, -0.017556803300976753, -0.30231010913848877, -0.009817477315664291, 0.007579812780022621, 0.6188845634460449, -0.33135125041007996, 0.015246802009642124, -0.011463462375104427, -0.047078609466552734, 0.03468107804656029, -0.022793997079133987, 0.36236700415611267, -0.2271609902381897, 0.7755471467971802, -0.5398414134979248, -0.0258739423006773, -0.6715240478515625, -0.42206043004989624, 0.03449060022830963, -0.14812502264976501, -0.14553643763065338, -0.3008040487766266, -1.034969687461853, 0.7994197010993958]} +{"t": 13.5012, "q": [-0.2963702082633972, 0.010819677263498306, -0.0038434739690274, 0.6186800003051758, -0.3171149492263794, -0.016418050974607468, -0.302250474691391, -0.009860087186098099, 0.007539637386798859, 0.6189186573028564, -0.33128634095191956, 0.015333365648984909, -0.014155233278870583, -0.04830383136868477, 0.033832814544439316, -0.02263820171356201, 0.3678557872772217, -0.22230738401412964, 0.7900959849357605, -0.5363180637359619, -0.02594584785401821, -0.6657357215881348, -0.4191243052482605, 0.036911413073539734, -0.1522236317396164, -0.145584374666214, -0.2969091832637787, -1.0320215225219727, 0.797370433807373]} +{"t": 13.5179, "q": [-0.29643839597702026, 0.010768543928861618, -0.0038568659219890833, 0.6184925436973572, -0.31671831011772156, -0.01576809026300907, -0.30225899815559387, -0.009996441192924976, 0.007459285669028759, 0.6188845634460449, -0.3311527371406555, 0.01554282009601593, -0.01612384244799614, -0.049929484724998474, 0.03276780992746353, -0.02268613874912262, 0.37460291385650635, -0.21873608231544495, 0.8033625483512878, -0.5334418416023254, -0.02611362747848034, -0.6581137180328369, -0.41666755080223083, 0.03940413147211075, -0.15656191110610962, -0.14577612280845642, -0.29134848713874817, -1.0288337469100952, 0.7951293587684631]} +{"t": 13.5347, "q": [-0.2965236008167267, 0.010768543928861618, -0.0038568659219890833, 0.6184754967689514, -0.31645581126213074, -0.01540976483374834, -0.3023442029953003, -0.01002200786024332, 0.007459285669028759, 0.6187822818756104, -0.33101069927215576, 0.015723098069429398, -0.017168410122394562, -0.051547709852457047, 0.03172477334737778, -0.02281796559691429, 0.3806549608707428, -0.21571604907512665, 0.8158261179924011, -0.5289238095283508, -0.026269420981407166, -0.6517980694770813, -0.41496577858924866, 0.04114184528589249, -0.160432830452919, -0.14619556069374084, -0.2876933217048645, -1.026233196258545, 0.7925048470497131]} +{"t": 13.5515, "q": [-0.2965576946735382, 0.010768543928861618, -0.0038702578749507666, 0.6185010671615601, -0.3163851797580719, -0.015343723818659782, -0.30244648456573486, -0.010013485327363014, 0.007459285669028759, 0.6186118125915527, -0.3308929204940796, 0.01584538444876671, -0.017891572788357735, -0.053522251546382904, 0.030417244881391525, -0.023273365572094917, 0.38808515667915344, -0.21364277601242065, 0.8294761776924133, -0.5230395197868347, -0.026401247829198837, -0.6461055278778076, -0.4135276675224304, 0.04295146465301514, -0.16472317278385162, -0.14679478108882904, -0.2824562191963196, -1.0246152877807617, 0.7894608378410339]} +{"t": 13.5682, "q": [-0.2965576946735382, 0.01078558899462223, -0.00388364982791245, 0.6185010671615601, -0.31633931398391724, -0.015277937985956669, -0.3025572597980499, -0.010004963725805283, 0.007445894181728363, 0.6185777187347412, -0.33085206151008606, 0.015859482809901237, -0.018534382805228233, -0.05583813413977623, 0.028862832114100456, -0.023153522983193398, 0.39532363414764404, -0.2121327668428421, 0.8418199419975281, -0.5166159868240356, -0.026389263570308685, -0.6387352347373962, -0.4123532176017761, 0.04494084417819977, -0.16775518655776978, -0.14698652923107147, -0.2757450342178345, -1.0225300788879395, 0.7863449454307556]} +{"t": 13.5851, "q": [-0.2965236008167267, 0.010794110596179962, -0.004004176706075668, 0.6185522079467773, -0.3163225054740906, -0.015234217047691345, -0.30254021286964417, -0.010013485327363014, 0.007378934416919947, 0.6183135509490967, -0.3308279812335968, 0.015917358919978142, -0.018775437027215958, -0.057746242731809616, 0.02754608355462551, -0.02316550724208355, 0.4013996422290802, -0.21062275767326355, 0.8550744652748108, -0.5119900703430176, -0.02641323208808899, -0.6327191591262817, -0.4116101861000061, 0.04687030613422394, -0.16968464851379395, -0.14753779768943787, -0.2683028280735016, -1.019066572189331, 0.7834447622299194]} +{"t": 13.6019, "q": [-0.2964809834957123, 0.010794110596179962, -0.004178271628916264, 0.6186288595199585, -0.3163183331489563, -0.015226919203996658, -0.30272769927978516, -0.010030529461801052, 0.007218231912702322, 0.6180323362350464, -0.3308279812335968, 0.015917358919978142, -0.019043276086449623, -0.059767670929431915, 0.02621772326529026, -0.022997727617621422, 0.4079190492630005, -0.2100115567445755, 0.8679455518722534, -0.5072203278541565, -0.02611362747848034, -0.6271944046020508, -0.4112866222858429, 0.04963866248726845, -0.17159013450145721, -0.14842462539672852, -0.2613879442214966, -1.0150638818740845, 0.7807602882385254]} +{"t": 13.6186, "q": [-0.29653212428092957, 0.01078558899462223, -0.004231838975101709, 0.6186118125915527, -0.3163224160671234, -0.015219706110656261, -0.3028896152973175, -0.010013485327363014, 0.007178056053817272, 0.6177340745925903, -0.3307667076587677, 0.01593850739300251, -0.019096843898296356, -0.06227397918701172, 0.0245832372456789, -0.022482406347990036, 0.4143785536289215, -0.20959211885929108, 0.8796900510787964, -0.5024506449699402, -0.02594584785401821, -0.6210105419158936, -0.41125068068504333, 0.05276654288172722, -0.1742386519908905, -0.15004250407218933, -0.2532746195793152, -1.0119000673294067, 0.7783994078636169]} +{"t": 13.6355, "q": [-0.2966003119945526, 0.01077706553041935, -0.004272014833986759, 0.6186288595199585, -0.31631821393966675, -0.015212408266961575, -0.3029407560825348, -0.01002200786024332, 0.007151272147893906, 0.6173250079154968, -0.3306170105934143, 0.0161622054874897, -0.019123626872897148, -0.06442548334598541, 0.02313346229493618, -0.022110896185040474, 0.41966360807418823, -0.20937639474868774, 0.8920338153839111, -0.4970097839832306, -0.025909895077347755, -0.6136402487754822, -0.4113824963569641, 0.055331166833639145, -0.17669542133808136, -0.15195997059345245, -0.24592828750610352, -1.0090957880020142, 0.7749359607696533]} +{"t": 13.6523, "q": [-0.2964639365673065, 0.01078558899462223, -0.004298798739910126, 0.6186373829841614, -0.3163224160671234, -0.015219706110656261, -0.30292370915412903, -0.010013485327363014, 0.007137880194932222, 0.6170778274536133, -0.33058032393455505, 0.01618359424173832, -0.019619127735495567, -0.06666053831577301, 0.021643459796905518, -0.02094842493534088, 0.4258354902267456, -0.20944830775260925, 0.903766393661499, -0.4930430054664612, -0.025790052488446236, -0.6072047352790833, -0.41144242882728577, 0.05740443989634514, -0.17882861196994781, -0.15388943254947662, -0.2371438443660736, -1.0064711570739746, 0.7703459858894348]} +{"t": 13.6691, "q": [-0.2964639365673065, 0.01077706553041935, -0.004298798739910126, 0.6186373829841614, -0.31633055210113525, -0.015205280855298042, -0.30287256836891174, -0.010004963725805283, 0.007178056053817272, 0.616796612739563, -0.33053138852119446, 0.016212154179811478, -0.02034229040145874, -0.06912294775247574, 0.02003568410873413, -0.02003762498497963, 0.43193545937538147, -0.2092086225748062, 0.9160501956939697, -0.48693105578422546, -0.025622272863984108, -0.6014522910118103, -0.4115143120288849, 0.05872270464897156, -0.1804824322462082, -0.15657390654087067, -0.22770027816295624, -1.0047094821929932, 0.7651208639144897]} +{"t": 13.6858, "q": [-0.2965150773525238, 0.010768543928861618, -0.0043523660860955715, 0.6187055706977844, -0.31633463501930237, -0.015198049135506153, -0.3023442029953003, -0.009996441192924976, 0.007124488707631826, 0.6164813041687012, -0.3304215371608734, 0.0163054671138525, -0.02086457423865795, -0.07133371382951736, 0.01874361000955105, -0.019246665760874748, 0.4371006488800049, -0.20898091793060303, 0.9279984831809998, -0.47992029786109924, -0.02551441639661789, -0.5944175720214844, -0.4119577407836914, 0.059849221259355545, -0.18340657651424408, -0.16052870452404022, -0.21955101191997528, -1.003379225730896, 0.7603631615638733]} +{"t": 13.7025, "q": [-0.29649803042411804, 0.010760022327303886, -0.004419325385242701, 0.6187908053398132, -0.31633034348487854, -0.015176240354776382, -0.3021056056022644, -0.009979397058486938, 0.007044136989861727, 0.6161148548126221, -0.33019495010375977, 0.016637317836284637, -0.021025275811553, -0.07326322048902512, 0.01772218383848667, -0.0189590435475111, 0.44119924306869507, -0.20896893739700317, 0.939263641834259, -0.475534051656723, -0.02527473121881485, -0.5884973406791687, -0.41316816210746765, 0.061347249895334244, -0.1879965364933014, -0.16529841721057892, -0.21080252528190613, -1.0018812417984009, 0.7568877339363098]} +{"t": 13.7193, "q": [-0.29644691944122314, 0.01072593405842781, -0.004392541944980621, 0.6187822818756104, -0.3163387179374695, -0.01519083697348833, -0.30203741788864136, -0.009979397058486938, 0.007044136989861727, 0.6158933043479919, -0.330110102891922, 0.0167744942009449, -0.021293114870786667, -0.07520154863595963, 0.016607483848929405, -0.018251974135637283, 0.445465624332428, -0.2090648114681244, 0.9501572847366333, -0.47015315294265747, -0.025298699736595154, -0.5828048586845398, -0.414821982383728, 0.06278535723686218, -0.1946837455034256, -0.1697685420513153, -0.2016465812921524, -1.0004191398620605, 0.752609372138977]} +{"t": 13.736, "q": [-0.2964639365673065, 0.01072593405842781, -0.004365758039057255, 0.6188675165176392, -0.3163468539714813, -0.015176410786807537, -0.3017476499080658, -0.009979397058486938, 0.007137880194932222, 0.6157228350639343, -0.33001288771629333, 0.016904259100556374, -0.021574344485998154, -0.07739223539829254, 0.015168746002018452, -0.017796574160456657, 0.449983686208725, -0.20937639474868774, 0.9618179798126221, -0.4655272364616394, -0.02527473121881485, -0.5756622552871704, -0.41572079062461853, 0.06374409049749374, -0.20150277018547058, -0.17432254552841187, -0.19277824461460114, -0.9980223178863525, 0.7486904859542847]} +{"t": 13.7527, "q": [-0.29636168479919434, 0.01071741059422493, -0.004325582180172205, 0.6188930869102478, -0.3163508176803589, -0.015154686756432056, -0.3010914623737335, -0.009970875456929207, 0.007151272147893906, 0.6155949831008911, -0.32993608713150024, 0.0170269925147295, -0.021962709724903107, -0.07921162992715836, 0.013967803679406643, -0.017353158444166183, 0.45380666851997375, -0.20932845771312714, 0.9721962809562683, -0.46012234687805176, -0.025298699736595154, -0.5688192844390869, -0.4159005582332611, 0.06391187012195587, -0.20677582919597626, -0.17804963886737823, -0.1847008764743805, -0.9947146773338318, 0.7455626130104065]} +{"t": 13.7695, "q": [-0.29622533917427063, 0.010734455659985542, -0.004325582180172205, 0.6188845634460449, -0.31634676456451416, -0.015161899849772453, -0.30052047967910767, -0.009979397058486938, 0.007151272147893906, 0.6155949831008911, -0.3298749327659607, 0.01706266961991787, -0.022284114733338356, -0.08132533729076385, 0.012688876129686832, -0.017233315855264664, 0.45785731077194214, -0.20937639474868774, 0.9827304482460022, -0.45576009154319763, -0.025322668254375458, -0.5629589557647705, -0.41572079062461853, 0.06388790160417557, -0.21162943542003632, -0.18158498406410217, -0.17501762509346008, -0.9909036755561829, 0.7420752048492432]} +{"t": 13.7864, "q": [-0.29585036635398865, 0.010751500725746155, -0.004325582180172205, 0.6188675165176392, -0.31634676456451416, -0.015161899849772453, -0.3002222180366516, -0.009911220520734787, 0.007151272147893906, 0.6155949831008911, -0.3298462927341461, 0.017069634050130844, -0.022752830758690834, -0.08312640339136124, 0.011752136051654816, -0.016993630677461624, 0.4614885449409485, -0.20934045314788818, 0.9915868043899536, -0.44979193806648254, -0.025298699736595154, -0.5577098727226257, -0.41567283868789673, 0.06381599605083466, -0.21771742403507233, -0.1849525421857834, -0.16629311442375183, -0.9872724413871765, 0.7399539947509766]} +{"t": 13.8032, "q": [-0.29529643058776855, 0.01095603033900261, -0.004325582180172205, 0.6188419461250305, -0.31634268164634705, -0.01516911294311285, -0.29983872175216675, -0.009800433181226254, 0.007164664100855589, 0.6155524253845215, -0.3298215866088867, 0.017054827883839607, -0.023261722177267075, -0.0848311185836792, 0.010716837830841541, -0.017077520489692688, 0.4651796817779541, -0.20940037071704865, 1.0018333196640015, -0.4437399208545685, -0.025310683995485306, -0.5509507656097412, -0.41591253876686096, 0.0638040155172348, -0.22583073377609253, -0.18854781985282898, -0.1550399214029312, -0.9842764139175415, 0.7377249598503113]} +{"t": 13.8199, "q": [-0.29465726017951965, 0.011160561814904213, -0.004312190227210522, 0.6187140941619873, -0.31633034348487854, -0.015176240354776382, -0.29937851428985596, -0.009647035039961338, 0.0071914480067789555, 0.61551833152771, -0.3298007547855377, 0.017018290236592293, -0.02383757382631302, -0.08626455813646317, 0.009741566143929958, -0.017161410301923752, 0.46913447976112366, -0.20954418182373047, 1.011061191558838, -0.43886232376098633, -0.025047030299901962, -0.5449826717376709, -0.41655969619750977, 0.06158693507313728, -0.2353222519159317, -0.19217903912067413, -0.1483287513256073, -0.9827304482460022, 0.7365624904632568]} +{"t": 13.8366, "q": [-0.2940436601638794, 0.011518489569425583, -0.004446109291166067, 0.6186544299125671, -0.3163345158100128, -0.01518353819847107, -0.29842403531074524, -0.009272061288356781, 0.007151272147893906, 0.6152541041374207, -0.3297549784183502, 0.016937870532274246, -0.02387774921953678, -0.0873187780380249, 0.009023449383676052, -0.018024275079369545, 0.47196274995803833, -0.20953220129013062, 1.0199534893035889, -0.43499141931533813, -0.02502306178212166, -0.5393980145454407, -0.41683530807495117, 0.056781258434057236, -0.24083499610424042, -0.19462381303310394, -0.13974805176258087, -0.9809207916259766, 0.7363947033882141]} +{"t": 13.8534, "q": [-0.29360905289649963, 0.011833809316158295, -0.004740730859339237, 0.6186118125915527, -0.3163304626941681, -0.015190751291811466, -0.29786157608032227, -0.009007875807583332, 0.0067896912805736065, 0.6150410771369934, -0.3297175168991089, 0.016872083768248558, -0.023623304441571236, -0.08856310695409775, 0.008146388456225395, -0.01883920282125473, 0.4744434952735901, -0.20926854014396667, 1.0282105207443237, -0.4304613769054413, -0.024783378466963768, -0.5332261323928833, -0.41736263036727905, 0.05171193182468414, -0.2456047087907791, -0.19634954631328583, -0.1309036910533905, -0.979686439037323, 0.7359033226966858]} +{"t": 13.8705, "q": [-0.29314884543418884, 0.012055383995175362, -0.005062136333435774, 0.6185692548751831, -0.3163224160671234, -0.015219706110656261, -0.2975206971168518, -0.008828911930322647, 0.006441501900553703, 0.6150325536727905, -0.3297215402126312, 0.01686486229300499, -0.02352956123650074, -0.08952687680721283, 0.007450450211763382, -0.019702065736055374, 0.4764328598976135, -0.20926854014396667, 1.0352813005447388, -0.42862778902053833, -0.024759409949183464, -0.527198076248169, -0.41888463497161865, 0.047517452389001846, -0.2508298456668854, -0.1977277249097824, -0.1203935295343399, -0.9781284928321838, 0.7351962924003601]} +{"t": 13.8872, "q": [-0.2930721342563629, 0.012566709890961647, -0.005410325713455677, 0.6185095906257629, -0.31631016731262207, -0.015241345390677452, -0.29741841554641724, -0.008496548980474472, 0.006012961268424988, 0.6147854328155518, -0.32970893383026123, 0.01682841032743454, -0.023328682407736778, -0.09046164900064468, 0.006678303238004446, -0.021391842514276505, 0.4782904386520386, -0.20930449664592743, 1.0437061786651611, -0.4265904724597931, -0.02455567754805088, -0.5215055346488953, -0.42125749588012695, 0.04297543317079544, -0.25670209527015686, -0.2001485526561737, -0.10927216708660126, -0.9756237864494324, 0.7339139580726624]} +{"t": 13.9039, "q": [-0.2929016947746277, 0.013163259252905846, -0.005530852824449539, 0.6183902621269226, -0.31630203127861023, -0.015255770646035671, -0.2974866032600403, -0.007959655486047268, 0.005865650251507759, 0.6144359707832336, -0.32964232563972473, 0.01671145297586918, -0.023301897570490837, -0.09100854396820068, 0.0062470948323607445, -0.02189517952501774, 0.4797764718532562, -0.20925655961036682, 1.05014169216156, -0.42434942722320557, -0.0240643247961998, -0.5176226496696472, -0.4236663281917572, 0.03798999264836311, -0.2611842155456543, -0.20271317660808563, -0.10046376287937164, -0.972735583782196, 0.7328113913536072]} +{"t": 13.9207, "q": [-0.29296988248825073, 0.014296699315309525, -0.005571028683334589, 0.6182538866996765, -0.3162940740585327, -0.01529923640191555, -0.2975718379020691, -0.006988134700804949, 0.005557636730372906, 0.6134389042854309, -0.3293634057044983, 0.016221679747104645, -0.0228599663823843, -0.09135757386684418, 0.005998764652758837, -0.022973759099841118, 0.48086702823638916, -0.20922060310840607, 1.0571404695510864, -0.42180877923965454, -0.02388456091284752, -0.5135959386825562, -0.4253441095352173, 0.0319020077586174, -0.2652228772640228, -0.2055174857378006, -0.09190702438354492, -0.9707222580909729, 0.7320563793182373]} +{"t": 13.9374, "q": [-0.2929784059524536, 0.01583068072795868, -0.005624596029520035, 0.6179811954498291, -0.3162410259246826, -0.015378511510789394, -0.2976570427417755, -0.005829127039760351, 0.004955001175403595, 0.611939013004303, -0.3289180099964142, 0.015439529903233051, -0.02237785793840885, -0.09148760139942169, 0.005833993200212717, -0.02431599237024784, 0.48153814673423767, -0.2091846466064453, 1.064498782157898, -0.42058637738227844, -0.023872576653957367, -0.5081910490989685, -0.42632684111595154, 0.025921879336237907, -0.2694173753261566, -0.20745892822742462, -0.08539959043264389, -0.9696676135063171, 0.7316968441009521]} +{"t": 13.9541, "q": [-0.29300397634506226, 0.017679980024695396, -0.005664771888405085, 0.617682933807373, -0.3161884546279907, -0.015530377626419067, -0.2978360056877136, -0.0043803672306239605, 0.004218447022140026, 0.6098511219024658, -0.32823166251182556, 0.014393226243555546, -0.021949317306280136, -0.09170027822256088, 0.005669678095728159, -0.024879250675439835, 0.48268863558769226, -0.20907679200172424, 1.0699156522750854, -0.419939249753952, -0.02370479702949524, -0.5030857920646667, -0.42711779475212097, 0.019630160182714462, -0.27477431297302246, -0.20845361053943634, -0.07729825377464294, -0.9692841172218323, 0.731624960899353]} +{"t": 13.971, "q": [-0.2930295467376709, 0.0190776064991951, -0.006254015490412712, 0.6171289682388306, -0.31602567434310913, -0.01584802381694317, -0.2978445291519165, -0.0030338731594383717, 0.0030533522367477417, 0.6075160503387451, -0.3273983895778656, 0.01338145975023508, -0.02185557410120964, -0.09198836237192154, 0.005481805186718702, -0.025286715477705002, 0.4836713373661041, -0.20895695686340332, 1.0750929117202759, -0.4196755886077881, -0.023800671100616455, -0.4986995756626129, -0.42720168828964233, 0.012739231809973717, -0.2787650525569916, -0.20847758650779724, -0.07098256796598434, -0.9689845442771912, 0.731768786907196]} +{"t": 13.988, "q": [-0.29310622811317444, 0.020245136693120003, -0.006829866673797369, 0.6158506870269775, -0.31555330753326416, -0.016728507354855537, -0.2976059019565582, -0.0018066884949803352, 0.0019686087034642696, 0.6053003072738647, -0.32666894793510437, 0.012575468048453331, -0.021922532469034195, -0.09263292700052261, 0.0050492361187934875, -0.02575409971177578, 0.4852532744407654, -0.20899289846420288, 1.080761432647705, -0.41904041171073914, -0.023812655359506607, -0.4955836534500122, -0.42681819200515747, 0.005093295592814684, -0.28348684310913086, -0.20836971700191498, -0.06490656733512878, -0.968852698802948, 0.7330151200294495]} +{"t": 14.0049, "q": [-0.29341304302215576, 0.021404143422842026, -0.007365542463958263, 0.6144019365310669, -0.31496214866638184, -0.01773117110133171, -0.29758888483047485, -0.0007499461644329131, 0.0009508245857432485, 0.6028629541397095, -0.32595598697662354, 0.011566844768822193, -0.022123411297798157, -0.09323928505182266, 0.004661860875785351, -0.02606569044291973, 0.486966997385025, -0.20907679200172424, 1.086010456085205, -0.4188007414340973, -0.02371678128838539, -0.49135324358940125, -0.4257396161556244, -0.004434163216501474, -0.28705814480781555, -0.2082618623971939, -0.059357866644859314, -0.9688646793365479, 0.735579788684845]} +{"t": 14.0216, "q": [-0.29393288493156433, 0.02263985015451908, -0.00772712379693985, 0.6133366227149963, -0.3145752549171448, -0.018445637077093124, -0.297580361366272, 0.00015339808305725455, 0.00020087843586225063, 0.6014568209648132, -0.32528156042099, 0.01079817209392786, -0.022217154502868652, -0.09339762479066849, 0.004619768355041742, -0.026101643219590187, 0.48842906951904297, -0.20919664204120636, 1.0896177291870117, -0.4186569154262543, -0.023764718323946, -0.4864516854286194, -0.4245891273021698, -0.014369086362421513, -0.2892392873764038, -0.20824988186359406, -0.053233928978443146, -0.968996524810791, 0.7395704984664917]} +{"t": 14.0383, "q": [-0.2947254478931427, 0.023279009386897087, -0.007780691608786583, 0.612902045249939, -0.3144610524177551, -0.018633142113685608, -0.29695823788642883, 0.0007243797881528735, -0.00010713516530813649, 0.6013971567153931, -0.32519015669822693, 0.01063758134841919, -0.022150196135044098, -0.09349460899829865, 0.004667253699153662, -0.026161564514040947, 0.48950767517089844, -0.2091846466064453, 1.0932729244232178, -0.418453186750412, -0.023812655359506607, -0.4824249744415283, -0.42404982447624207, -0.024999093264341354, -0.2914923131465912, -0.2082379013299942, -0.048596031963825226, -0.9690923690795898, 0.74342942237854]} +{"t": 14.055, "q": [-0.2951430082321167, 0.023509107530117035, -0.007901218719780445, 0.6126804351806641, -0.3144407868385315, -0.01868373528122902, -0.29588446021080017, 0.0012697952333837748, -6.695948104606941e-05, 0.6017380356788635, -0.3252062201499939, 0.010579649358987808, -0.022243939340114594, -0.09338788688182831, 0.004778450354933739, -0.02623346820473671, 0.4901188611984253, -0.20924457907676697, 1.095933437347412, -0.4183692932128906, -0.02377670258283615, -0.47969257831573486, -0.4238221347332001, -0.034814175218343735, -0.29317009449005127, -0.2082379013299942, -0.044329650700092316, -0.9691882729530334, 0.7456465363502502]} +{"t": 14.0718, "q": [-0.2950918972492218, 0.023688070476055145, -0.008102096617221832, 0.6119645833969116, -0.31443649530410767, -0.018661925569176674, -0.2961486279964447, 0.0016106797847896814, -0.00013391896209213883, 0.6017124652862549, -0.32526716589927673, 0.010485849343240261, -0.02233768254518509, -0.09290233999490738, 0.005120961926877499, -0.026269420981407166, 0.49017879366874695, -0.20929251611232758, 1.099229097366333, -0.4183213710784912, -0.023848608136177063, -0.477367639541626, -0.4217488467693329, -0.0460314080119133, -0.29514750838279724, -0.20784242451190948, -0.038481347262859344, -0.969595730304718, 0.7489061951637268]} +{"t": 14.0885, "q": [-0.2949470281600952, 0.023858513683080673, -0.008222623728215694, 0.611564040184021, -0.3144201934337616, -0.01869077794253826, -0.2962338626384735, 0.0019430422689765692, -0.00030801360844634473, 0.6018658876419067, -0.3253406882286072, 0.010428440757095814, -0.022418033331632614, -0.09221959859132767, 0.005598726216703653, -0.02629338949918747, 0.4902147352695465, -0.2094363272190094, 1.1027164459228516, -0.41833335161209106, -0.023812655359506607, -0.4755820035934448, -0.4180457293987274, -0.0571647547185421, -0.29719680547714233, -0.20560136437416077, -0.032297488301992416, -0.9700630903244019, 0.7530527710914612]} +{"t": 14.1052, "q": [-0.2949129343032837, 0.024105655029416084, -0.008369934745132923, 0.6115469932556152, -0.3144243657588959, -0.01869807578623295, -0.2963446378707886, 0.0023350596893578768, -0.000522283953614533, 0.6020277738571167, -0.3253817558288574, 0.010428844019770622, -0.022444816306233406, -0.09130939841270447, 0.006221631541848183, -0.02635331079363823, 0.4902147352695465, -0.20952020585536957, 1.1058564186096191, -0.41830939054489136, -0.023788686841726303, -0.473964124917984, -0.4141508638858795, -0.0691729485988617, -0.29863491654396057, -0.2045467495918274, -0.025921879336237907, -0.9704346060752869, 0.7573550939559937]} +{"t": 14.122, "q": [-0.29492998123168945, 0.02438688464462757, -0.008503853343427181, 0.611419141292572, -0.3144161105155945, -0.018698008731007576, -0.29644691944122314, 0.0027952538803219795, -0.0006294191116467118, 0.6021811962127686, -0.32541877031326294, 0.010436450131237507, -0.022645695134997368, -0.09042172878980637, 0.006848047953099012, -0.02683268114924431, 0.49033457040786743, -0.20954418182373047, 1.109319806098938, -0.4182974100112915, -0.02377670258283615, -0.47213053703308105, -0.41095107793807983, -0.08239154517650604, -0.3001568913459778, -0.2037677764892578, -0.019162775948643684, -0.9711776375770569, 0.7626881003379822]} +{"t": 14.1388, "q": [-0.29479360580444336, 0.02474481426179409, -0.008584205061197281, 0.6114106774330139, -0.31441205739974976, -0.018705220893025398, -0.2965150773525238, 0.0032810145057737827, -0.0006294191116467118, 0.6024453639984131, -0.3254392445087433, 0.010429385118186474, -0.022900141775608063, -0.08942721039056778, 0.007594363298267126, -0.027851339429616928, 0.4903465509414673, -0.20956814289093018, 1.1128191947937012, -0.4183213710784912, -0.02377670258283615, -0.4698535203933716, -0.4081587493419647, -0.09533451497554779, -0.3023979663848877, -0.20325246453285217, -0.013398364186286926, -0.9723760485649109, 0.7668465971946716]} +{"t": 14.1556, "q": [-0.2947254478931427, 0.02498343214392662, -0.008677948266267776, 0.6114532351493835, -0.31442028284072876, -0.018705306574702263, -0.29663440585136414, 0.0036048549227416515, -0.000709770480170846, 0.602897047996521, -0.32548487186431885, 0.010495154187083244, -0.022953709587454796, -0.08850734680891037, 0.008374124765396118, -0.02883404679596424, 0.49035853147506714, -0.20954418182373047, 1.115659475326538, -0.4183692932128906, -0.023812655359506607, -0.4668215215206146, -0.4052465856075287, -0.1082894578576088, -0.30462703108787537, -0.20315659046173096, -0.007274424657225609, -0.9733947515487671, 0.770849347114563]} +{"t": 14.1723, "q": [-0.2945805490016937, 0.025179442018270493, -0.008704732172191143, 0.6114532351493835, -0.31442856788635254, -0.018705373629927635, -0.2967451810836792, 0.003766775131225586, -0.0008169056382030249, 0.6032805442810059, -0.3255550265312195, 0.010546638630330563, -0.02320815436542034, -0.08747542649507523, 0.009106431156396866, -0.0297927837818861, 0.4903705418109894, -0.20935243368148804, 1.11851167678833, -0.4184172451496124, -0.02401638776063919, -0.46314236521720886, -0.4023464024066925, -0.12051337212324142, -0.30828219652175903, -0.20297682285308838, -0.001701759989373386, -0.974533200263977, 0.7753673791885376]} +{"t": 14.1891, "q": [-0.2944953441619873, 0.025256140157580376, -0.008704732172191143, 0.611419141292572, -0.3144327402114868, -0.018712671473622322, -0.2968815267086029, 0.0038690404035151005, -0.0008302975329570472, 0.603646993637085, -0.3256128132343292, 0.010590730234980583, -0.023234939202666283, -0.08645154535770416, 0.00980388280004263, -0.031194938346743584, 0.4903465509414673, -0.20926854014396667, 1.1217114925384521, -0.41844120621681213, -0.024040356278419495, -0.4607095718383789, -0.3995540738105774, -0.1321500539779663, -0.31236883997917175, -0.2028210312128067, 0.003775030840188265, -0.9758155345916748, 0.7814313769340515]} +{"t": 14.2058, "q": [-0.29447829723358154, 0.025264661759138107, -0.008704732172191143, 0.6113936305046082, -0.3144243657588959, -0.01869807578623295, -0.29713720083236694, 0.003826429834589362, -0.0008169056382030249, 0.604158341884613, -0.3256746232509613, 0.010627619922161102, -0.023261722177267075, -0.08541262149810791, 0.010501740500330925, -0.032704949378967285, 0.4903465509414673, -0.20914870500564575, 1.1236768960952759, -0.41846516728401184, -0.0240643247961998, -0.45892393589019775, -0.3966059386730194, -0.14389459788799286, -0.316946804523468, -0.2025453895330429, 0.009155947715044022, -0.9768821597099304, 0.786992073059082]} +{"t": 14.2225, "q": [-0.2945038676261902, 0.025247618556022644, -0.008677948266267776, 0.6113680601119995, -0.31442028284072876, -0.018705306574702263, -0.297435462474823, 0.0037923413328826427, -0.0008169056382030249, 0.6048656702041626, -0.32575279474258423, 0.010650129057466984, -0.02318137139081955, -0.08405495434999466, 0.011433921754360199, -0.03476623818278313, 0.49084991216659546, -0.2090887725353241, 1.1254385709762573, -0.41844120621681213, -0.024100277572870255, -0.4569465219974518, -0.392555296421051, -0.15725700557231903, -0.3222438395023346, -0.2019461840391159, 0.016022909432649612, -0.9787756204605103, 0.7918696403503418]} +{"t": 14.2393, "q": [-0.2945805490016937, 0.025205006822943687, -0.008570813573896885, 0.6113936305046082, -0.3144244849681854, -0.01871260441839695, -0.2979808747768402, 0.00364746549166739, -0.0007767299539409578, 0.6057690382003784, -0.32584384083747864, 0.010752634145319462, -0.023101020604372025, -0.08294796943664551, 0.01216654758900404, -0.03712712973356247, 0.4917367398738861, -0.2087412327528, 1.1277395486831665, -0.41848915815353394, -0.02430400811135769, -0.4550650119781494, -0.38855254650115967, -0.16915734112262726, -0.3265102207660675, -0.20115521550178528, 0.022590264678001404, -0.9810166954994202, 0.7957285642623901]} +{"t": 14.256, "q": [-0.2945975959300995, 0.02510274201631546, -0.008249407634139061, 0.6114702820777893, -0.31443262100219727, -0.018698161467909813, -0.29855185747146606, 0.0034088462125509977, -0.0005624596378766, 0.6069876551628113, -0.3259755074977875, 0.010797438211739063, -0.023101020604372025, -0.08186366409063339, 0.012892311438918114, -0.03918841481208801, 0.4924677610397339, -0.20787836611270905, 1.1305079460144043, -0.41851311922073364, -0.024327976629137993, -0.45373475551605225, -0.38421425223350525, -0.18166887760162354, -0.3309803307056427, -0.20073577761650085, 0.028091024607419968, -0.9834734797477722, 0.7990841865539551]} +{"t": 14.2728, "q": [-0.2945805490016937, 0.025000477209687233, -0.007566420827060938, 0.61170893907547, -0.3144327402114868, -0.018712671473622322, -0.2994126081466675, 0.003085005795583129, -0.0003214055032003671, 0.6084875464439392, -0.32611891627311707, 0.010747961699962616, -0.023422425612807274, -0.08088579028844833, 0.013526459224522114, -0.04072239622473717, 0.4931388795375824, -0.20642827451229095, 1.1322815418243408, -0.41851311922073364, -0.024280039593577385, -0.4529438018798828, -0.38031938672065735, -0.1929340362548828, -0.334096223115921, -0.20038822293281555, 0.03574894368648529, -0.9857504367828369, 0.802152156829834]} +{"t": 14.2895, "q": [-0.2948276996612549, 0.024821512401103973, -0.0065620290115475655, 0.6117941737174988, -0.3144243657588959, -0.01869807578623295, -0.30092954635620117, 0.002633333671838045, 0.0003481892927084118, 0.6101749539375305, -0.32673221826553345, 0.010347150266170502, -0.02354295179247856, -0.08030254393815994, 0.013873686082661152, -0.04249606281518936, 0.49369016289711, -0.20419920980930328, 1.134055256843567, -0.41851311922073364, -0.024208135902881622, -0.45244044065475464, -0.37644848227500916, -0.20430707931518555, -0.3377154767513275, -0.20036426186561584, 0.04374242201447487, -0.9876439571380615, 0.8042014241218567]} +{"t": 14.3063, "q": [-0.29539015889167786, 0.02455732598900795, -0.005865650251507759, 0.6120412945747375, -0.3144244849681854, -0.01871260441839695, -0.3024635314941406, 0.002156095113605261, 0.000897257006727159, 0.6123395562171936, -0.32711687684059143, 0.010147486813366413, -0.023596519604325294, -0.07988573610782623, 0.01413672138005495, -0.044617269188165665, 0.49384593963623047, -0.2012510895729065, 1.1366318464279175, -0.4184771478176117, -0.02418416738510132, -0.45214083790779114, -0.37190645933151245, -0.21444572508335114, -0.34222152829170227, -0.20011259615421295, 0.051148671656847, -0.988950252532959, 0.806574285030365]} +{"t": 14.323, "q": [-0.2960463762283325, 0.024480627849698067, -0.005624596029520035, 0.6122798919677734, -0.3143838346004486, -0.01879926398396492, -0.3037588894367218, 0.00195156445261091, 0.0011517030652612448, 0.6137286424636841, -0.32744741439819336, 0.009838389232754707, -0.023636694997549057, -0.07941649109125137, 0.014387892559170723, -0.04699014872312546, 0.4940856397151947, -0.20016053318977356, 1.1388130187988281, -0.41851311922073364, -0.02419615164399147, -0.45178133249282837, -0.3663817346096039, -0.22396120429039001, -0.34694331884384155, -0.1989261507987976, 0.05946572497487068, -0.9899569153785706, 0.809031069278717]} +{"t": 14.3398, "q": [-0.2962849736213684, 0.024352796375751495, -0.0053701503202319145, 0.6123906970024109, -0.31413912773132324, -0.019203143194317818, -0.30461961030960083, 0.0017044231062754989, 0.0014061490073800087, 0.6148279905319214, -0.3277372717857361, 0.00955782737582922, -0.023931317031383514, -0.07908360660076141, 0.014556280337274075, -0.04899151250720024, 0.4943373203277588, -0.19904600083827972, 1.1406705379486084, -0.4185250997543335, -0.024292023852467537, -0.45138585567474365, -0.3602098524570465, -0.2317030131816864, -0.35452932119369507, -0.19642144441604614, 0.06397179514169693, -0.9916107654571533, 0.8107927441596985]} +{"t": 14.3565, "q": [-0.29648950695991516, 0.02438688464462757, -0.00512909609824419, 0.6124247908592224, -0.31382128596305847, -0.019765930250287056, -0.3054121732711792, 0.0016618125373497605, 0.0017677302239462733, 0.6153990030288696, -0.32794103026390076, 0.009283646941184998, -0.02419915609061718, -0.07872278988361359, 0.014563647098839283, -0.05048954114317894, 0.49443319439888, -0.19818313419818878, 1.1420128345489502, -0.4185011386871338, -0.024280039593577385, -0.45094242691993713, -0.3537024259567261, -0.23997212946414948, -0.36127644777297974, -0.19246666133403778, 0.0688973143696785, -0.993204653263092, 0.8125544190406799]} +{"t": 14.3732, "q": [-0.29681336879730225, 0.02437836304306984, -0.005021960940212011, 0.6124247908592224, -0.3133687973022461, -0.02053777687251568, -0.3060513436794281, 0.0016277240356430411, 0.0018748653819784522, 0.6158080697059631, -0.32803046703338623, 0.00912464689463377, -0.024292899295687675, -0.07839572429656982, 0.01429251953959465, -0.05193963274359703, 0.4944571554660797, -0.19744011759757996, 1.143307089805603, -0.41848915815353394, -0.02424408681690693, -0.4504271149635315, -0.34611642360687256, -0.24804949760437012, -0.36618998646736145, -0.18870361149311066, 0.07536879181861877, -0.9945349097251892, 0.8151190876960754]} +{"t": 14.39, "q": [-0.2969838082790375, 0.024403929710388184, -0.005276407115161419, 0.6123651266098022, -0.31295284628868103, -0.021230176091194153, -0.30626437067985535, 0.0016618125373497605, 0.0018212978029623628, 0.6160125732421875, -0.3280507028102875, 0.009073982946574688, -0.024480385705828667, -0.07823863625526428, 0.014237819239497185, -0.053713299334049225, 0.49444517493247986, -0.19663716852664948, 1.1448050737380981, -0.4184771478176117, -0.024208135902881622, -0.4495522677898407, -0.3380749821662903, -0.2570855915546417, -0.37170273065567017, -0.1854439079761505, 0.08265519887208939, -0.9958651661872864, 0.8178514838218689]} +{"t": 14.4068, "q": [-0.2974269390106201, 0.024472106248140335, -0.005490677431225777, 0.6121350526809692, -0.3126034438610077, -0.021821726113557816, -0.3069632053375244, 0.0017129451734945178, 0.0017811221769079566, 0.6161830425262451, -0.32826656103134155, 0.008763570338487625, -0.024493776261806488, -0.07791170477867126, 0.013957137241959572, -0.0553671196103096, 0.49444517493247986, -0.1956304907798767, 1.1461832523345947, -0.4184771478176117, -0.024220118299126625, -0.44829392433166504, -0.3300096094608307, -0.2663014829158783, -0.3762088119983673, -0.18256768584251404, 0.08895890414714813, -0.9965362548828125, 0.820464015007019]} +{"t": 14.4235, "q": [-0.297622948884964, 0.02450619451701641, -0.005865650251507759, 0.6121265292167664, -0.31223419308662415, -0.022420387715101242, -0.3072444200515747, 0.0017896442441269755, 0.0016472031129524112, 0.6162512302398682, -0.32831090688705444, 0.008625991642475128, -0.024574128910899162, -0.0777331292629242, 0.013822277076542377, -0.057500313967466354, 0.49439722299575806, -0.19446802139282227, 1.1486520767211914, -0.4184771478176117, -0.02424408681690693, -0.44647231698036194, -0.3227351903915405, -0.27548137307167053, -0.3811582922935486, -0.18062624335289001, 0.09412410855293274, -0.9979503750801086, 0.8240593075752258]} +{"t": 14.4402, "q": [-0.29799792170524597, 0.024634025990962982, -0.0062272315844893456, 0.6120157241821289, -0.31184500455856323, -0.023084132000803947, -0.30782392621040344, 0.0018407768802717328, 0.0014463247498497367, 0.6163449287414551, -0.32848966121673584, 0.008293470367789268, -0.024627696722745895, -0.07757692784070969, 0.013700692914426327, -0.060568273067474365, 0.4943852424621582, -0.19342540204524994, 1.1517919301986694, -0.41846516728401184, -0.024112261831760406, -0.44402754306793213, -0.315976083278656, -0.2854282855987549, -0.38603585958480835, -0.17902036011219025, 0.10093114525079727, -1.0007307529449463, 0.8294881582260132]} +{"t": 14.4573, "q": [-0.29841551184654236, 0.02468515932559967, -0.00672273151576519, 0.6118537783622742, -0.31134232878685, -0.023891549557447433, -0.30809664726257324, 0.0019089538836851716, 0.0011249192757532, 0.6163278818130493, -0.32854214310646057, 0.008141406811773777, -0.02456073649227619, -0.0775350034236908, 0.013464127667248249, -0.06338457018136978, 0.49444517493247986, -0.19277824461460114, 1.1544524431228638, -0.41844120621681213, -0.024052340537309647, -0.44220593571662903, -0.31017571687698364, -0.29385319352149963, -0.3929627537727356, -0.17834924161434174, 0.10433466732501984, -1.0051648616790771, 0.8323763608932495]} +{"t": 14.4741, "q": [-0.29901206493377686, 0.024787424132227898, -0.007499461527913809, 0.6118537783622742, -0.3110627830028534, -0.02433103509247303, -0.30830118060112, 0.0019771307706832886, 0.00040175687172450125, 0.6162853240966797, -0.32854992151260376, 0.008068851195275784, -0.024413425475358963, -0.07748346030712128, 0.013385479338467121, -0.06600911170244217, 0.4946369230747223, -0.19247864186763763, 1.1573166847229004, -0.41844120621681213, -0.02413623034954071, -0.44103148579597473, -0.303572416305542, -0.3037402033805847, -0.3987511396408081, -0.1772826462984085, 0.11063836514949799, -1.0090597867965698, 0.8339462876319885]} +{"t": 14.4908, "q": [-0.2995319068431854, 0.024881167337298393, -0.007914610207080841, 0.6118537783622742, -0.31094539165496826, -0.02452564798295498, -0.308906227350235, 0.0020623519085347652, 0.0001473108568461612, 0.6163278818130493, -0.3286350965499878, 0.007888014428317547, -0.024466993287205696, -0.07744880020618439, 0.013162747956812382, -0.06785468012094498, 0.49504438042640686, -0.19238276779651642, 1.1600010395050049, -0.4184172451496124, -0.024220118299126625, -0.44025251269340515, -0.29828736186027527, -0.31199732422828674, -0.4050188660621643, -0.17614413797855377, 0.11721770465373993, -1.011876106262207, 0.8362712264060974]} +{"t": 14.5075, "q": [-0.2999580204486847, 0.025128308683633804, -0.008021745830774307, 0.6118963956832886, -0.31087666749954224, -0.024648228660225868, -0.30938348174095154, 0.002258360618725419, 0.00016070275160018355, 0.6163278818130493, -0.32857251167297363, 0.007734955754131079, -0.02452056109905243, -0.07725707441568375, 0.012865612283349037, -0.06858572363853455, 0.49549978971481323, -0.19227491319179535, 1.1619185209274292, -0.41844120621681213, -0.02425607107579708, -0.4397971034049988, -0.293565571308136, -0.3209255635738373, -0.4102919399738312, -0.17402292788028717, 0.12468387931585312, -1.014560580253601, 0.8385841846466064]} +{"t": 14.5242, "q": [-0.30029889941215515, 0.025179442018270493, -0.007968178018927574, 0.6118963956832886, -0.31083205342292786, -0.02471303381025791, -0.3098692297935486, 0.0023009711876511574, 0.00020087843586225063, 0.6163449287414551, -0.32853907346725464, 0.007647516671568155, -0.024614304304122925, -0.07709290832281113, 0.012767946347594261, -0.06870556622743607, 0.495859295129776, -0.1922389566898346, 1.1633687019348145, -0.4184292256832123, -0.024208135902881622, -0.43955740332603455, -0.2894430160522461, -0.3299616873264313, -0.41397109627723694, -0.17222529649734497, 0.13129916787147522, -1.0164300203323364, 0.8399384021759033]} +{"t": 14.541, "q": [-0.3007761538028717, 0.025196485221385956, -0.007968178018927574, 0.6119560599327087, -0.3108154237270355, -0.024698343127965927, -0.3102782964706421, 0.002454369328916073, 0.00020087843586225063, 0.6164301633834839, -0.3284975290298462, 0.007574527524411678, -0.024734830483794212, -0.0769430547952652, 0.012726971879601479, -0.06881342083215714, 0.496230810880661, -0.1922149956226349, 1.1654419898986816, -0.418453186750412, -0.024160198867321014, -0.4393416941165924, -0.2859196364879608, -0.34028008580207825, -0.41844120621681213, -0.17101489007472992, 0.1389451026916504, -1.0175565481185913, 0.8406454920768738]} +{"t": 14.5577, "q": [-0.30148348212242126, 0.025179442018270493, -0.007928002625703812, 0.612007200717926, -0.31078290939331055, -0.024741504341363907, -0.31102824211120605, 0.0024799355305731297, 0.0001473108568461612, 0.6164813041687012, -0.3284727931022644, 0.007559770252555609, -0.024734830483794212, -0.07675539702177048, 0.012702057138085365, -0.06926882266998291, 0.4966862201690674, -0.19208316504955292, 1.1682581901550293, -0.4184771478176117, -0.02413623034954071, -0.43910202383995056, -0.28334304690361023, -0.3490045964717865, -0.4241456985473633, -0.17017599940299988, 0.145081028342247, -1.01876699924469, 0.8410049676895142]} +{"t": 14.5744, "q": [-0.30231863260269165, 0.02516239695250988, -0.007954785600304604, 0.6120242476463318, -0.31077465415000916, -0.024741413071751595, -0.311965674161911, 0.0025992451701313257, 0.0001473108568461612, 0.6165153980255127, -0.32847675681114197, 0.00753802340477705, -0.024574128910899162, -0.07673288881778717, 0.012698302045464516, -0.07008375227451324, 0.4974052608013153, -0.19204720854759216, 1.1718535423278809, -0.41848915815353394, -0.02401638776063919, -0.43893423676490784, -0.28212064504623413, -0.3567464053630829, -0.4328821897506714, -0.1693970263004303, 0.1514206826686859, -1.0199054479599, 0.8413165807723999]} +{"t": 14.5912, "q": [-0.303298681974411, 0.02516239695250988, -0.007941394113004208, 0.612313985824585, -0.3107787072658539, -0.02473420463502407, -0.31259632110595703, 0.002752643311396241, 0.00010713516530813649, 0.6165494918823242, -0.3284229338169098, 0.00747218681499362, -0.02452056109905243, -0.07669472694396973, 0.01274305023252964, -0.07026351243257523, 0.4986037015914917, -0.1920112520456314, 1.1743582487106323, -0.4184771478176117, -0.023932497948408127, -0.4387424886226654, -0.28173714876174927, -0.36386504769325256, -0.4408157467842102, -0.16843828558921814, 0.1603609174489975, -1.0216912031173706, 0.8412206768989563]} +{"t": 14.6079, "q": [-0.3041338622570038, 0.025119787082076073, -0.007820867002010345, 0.612527072429657, -0.3107580244541168, -0.02472672238945961, -0.31332921981811523, 0.002752643311396241, 4.017568790004589e-05, 0.616634726524353, -0.3283858001232147, 0.007450060453265905, -0.02456073649227619, -0.07672470062971115, 0.012751245871186256, -0.07015565782785416, 0.49976617097854614, -0.1920112520456314, 1.1775819063186646, -0.4185250997543335, -0.023860592395067215, -0.4385986626148224, -0.28173714876174927, -0.3703005611896515, -0.44834184646606445, -0.16698819398880005, 0.1697445660829544, -1.024819016456604, 0.8407772779464722]} +{"t": 14.6246, "q": [-0.3051820695400238, 0.0249919556081295, -0.007740515749901533, 0.6128849983215332, -0.3107618987560272, -0.024705005809664726, -0.3139513432979584, 0.0027355989441275597, 4.017568790004589e-05, 0.6167199015617371, -0.32836946845054626, 0.0074644554406404495, -0.024627696722745895, -0.0767020732164383, 0.012757053598761559, -0.06988001614809036, 0.5010005235671997, -0.19195133447647095, 1.1817524433135986, -0.41851311922073364, -0.023620907217264175, -0.4382631182670593, -0.28194087743759155, -0.37739524245262146, -0.45553237199783325, -0.16611334681510925, 0.1805543303489685, -1.0279709100723267, 0.839962363243103]} +{"t": 14.6415, "q": [-0.3059746325016022, 0.024889688938856125, -0.0077672996558249, 0.6132344007492065, -0.3107496201992035, -0.024712122976779938, -0.3145393431186676, 0.0027355989441275597, 0.0, 0.6169244647026062, -0.3283204138278961, 0.007507605478167534, -0.02452056109905243, -0.07666391134262085, 0.012801801785826683, -0.06960438191890717, 0.5021030902862549, -0.19184347987174988, 1.185096025466919, -0.4185250997543335, -0.023453129455447197, -0.4375680387020111, -0.28208470344543457, -0.3835551142692566, -0.4630584716796875, -0.16598151624202728, 0.19038140773773193, -1.0298763513565063, 0.8392552733421326]} +{"t": 14.6582, "q": [-0.30686092376708984, 0.02474481426179409, -0.007794083096086979, 0.6134133338928223, -0.3107534945011139, -0.024690406396985054, -0.31502512097358704, 0.0026929883752018213, -0.0001473108568461612, 0.6169244647026062, -0.32830822467803955, 0.007529279682785273, -0.024266114458441734, -0.07654917985200882, 0.012955172918736935, -0.06958041340112686, 0.5030258893966675, -0.19181950390338898, 1.1902732849121094, -0.41851311922073364, -0.02329733408987522, -0.4363695979118347, -0.28224048018455505, -0.3889120817184448, -0.47340086102485657, -0.16593357920646667, 0.20036426186561584, -1.0316740274429321, 0.838763952255249]} +{"t": 14.675, "q": [-0.3074319064617157, 0.02456584945321083, -0.007820867002010345, 0.6135156154632568, -0.3107492923736572, -0.024683088064193726, -0.3154086172580719, 0.0025481125339865685, -0.00021427033061627299, 0.6168903708457947, -0.3283000886440277, 0.007543729618191719, -0.024105412885546684, -0.0765414759516716, 0.01296986173838377, -0.06940064579248428, 0.5040205717086792, -0.19179554283618927, 1.1955822706222534, -0.41851311922073364, -0.0231774915009737, -0.4349434971809387, -0.28463733196258545, -0.3937656879425049, -0.48349156975746155, -0.16568191349506378, 0.21129387617111206, -1.0335675477981567, 0.8377093076705933]} +{"t": 14.6918, "q": [-0.3074233829975128, 0.024463582783937454, -0.007847650907933712, 0.6136860251426697, -0.3107534945011139, -0.024690406396985054, -0.31528931856155396, 0.0024884575977921486, -0.00026783792418427765, 0.6169244647026062, -0.3282879889011383, 0.007579943630844355, -0.023944709450006485, -0.07659383863210678, 0.012991374358534813, -0.069196917116642, 0.5051830410957336, -0.19177156686782837, 1.2005317211151123, -0.4185250997543335, -0.022961774840950966, -0.43366116285324097, -0.289335161447525, -0.39836764335632324, -0.492719441652298, -0.1658257246017456, 0.22230738401412964, -1.0357366800308228, 0.83645099401474]} +{"t": 14.7085, "q": [-0.30721884965896606, 0.024463582783937454, -0.007847650907933712, 0.6136860251426697, -0.3107492923736572, -0.024683088064193726, -0.31501659750938416, 0.0024799355305731297, -0.0002946217136923224, 0.6169670820236206, -0.3282838463783264, 0.007572646718472242, -0.023931317031383514, -0.07668495923280716, 0.0129203200340271, -0.0689452514052391, 0.5070645809173584, -0.19181950390338898, 1.2039473056793213, -0.4185250997543335, -0.022662170231342316, -0.43279829621315, -0.29561489820480347, -0.4035448133945465, -0.5007848143577576, -0.16619724035263062, 0.23485486209392548, -1.037582278251648, 0.8347012996673584]} +{"t": 14.7253, "q": [-0.3068353533744812, 0.024463582783937454, -0.007941394113004208, 0.6136519908905029, -0.3107573688030243, -0.024668671190738678, -0.31446266174316406, 0.0024799355305731297, -0.00046871634549461305, 0.616941511631012, -0.32827985286712646, 0.007594393566250801, -0.023422425612807274, -0.07688189297914505, 0.012806219048798084, -0.06842992454767227, 0.5090299844741821, -0.1919153779745102, 1.2081776857376099, -0.41848915815353394, -0.022542327642440796, -0.43227100372314453, -0.3026256561279297, -0.4084343910217285, -0.5106358528137207, -0.16646088659763336, 0.24590431153774261, -1.0382893085479736, 0.8320647478103638]} +{"t": 14.742, "q": [-0.3066990077495575, 0.024472106248140335, -0.008262800052762032, 0.613575279712677, -0.3107573688030243, -0.024668671190738678, -0.3140876889228821, 0.0024458470288664103, -0.000709770480170846, 0.6168988943099976, -0.3282963037490845, 0.0075945379212498665, -0.02249838411808014, -0.07710953056812286, 0.012642934918403625, -0.06811833381652832, 0.5104800462722778, -0.1919872909784317, 1.2129594087600708, -0.41846516728401184, -0.02238653227686882, -0.4318036139011383, -0.3094446659088135, -0.41394713521003723, -0.5190008282661438, -0.16656874120235443, 0.2586914896965027, -1.0385290384292603, 0.8300154805183411]} +{"t": 14.7587, "q": [-0.306477427482605, 0.024403929710388184, -0.008718123659491539, 0.6135497093200684, -0.3107573688030243, -0.024668671190738678, -0.3137468099594116, 0.0023180153220891953, -0.0011115273227915168, 0.6168988943099976, -0.3283129036426544, 0.00762372650206089, -0.021909141913056374, -0.0773446261882782, 0.012484085746109486, -0.06759103387594223, 0.511726438999176, -0.19192737340927124, 1.218184471130371, -0.41846516728401184, -0.022458437830209732, -0.43142011761665344, -0.31836095452308655, -0.419795423746109, -0.5263471603393555, -0.16660469770431519, 0.2710951566696167, -1.0386368036270142, 0.828673243522644]} +{"t": 14.7755, "q": [-0.3060939311981201, 0.024403929710388184, -0.00881186779588461, 0.6135497093200684, -0.3107408881187439, -0.024668488651514053, -0.3134740889072418, 0.0023180153220891953, -0.001191878691315651, 0.616941511631012, -0.3283129930496216, 0.007638248614966869, -0.021735046058893204, -0.07744333893060684, 0.012407907284796238, -0.06614094227552414, 0.5130206942558289, -0.1919153779745102, 1.2221872806549072, -0.418453186750412, -0.022134864702820778, -0.4305093288421631, -0.3297100067138672, -0.42517635226249695, -0.5314404964447021, -0.16666461527347565, 0.28343892097473145, -1.0386728048324585, 0.8271512389183044]} +{"t": 14.7923, "q": [-0.30571895837783813, 0.02443801797926426, -0.008838650770485401, 0.6133451461791992, -0.3107287585735321, -0.024690115824341774, -0.31322693824768066, 0.0022924491204321384, -0.001191878691315651, 0.6169500350952148, -0.32830479741096497, 0.007638175971806049, -0.021119019016623497, -0.0775647982954979, 0.012316358275711536, -0.06536196172237396, 0.5136918425559998, -0.19192737340927124, 1.226261854171753, -0.41844120621681213, -0.021931132301688194, -0.42969438433647156, -0.33970484137535095, -0.4301378130912781, -0.5361382961273193, -0.1666526347398758, 0.29561489820480347, -1.0387088060379028, 0.8255333304405212]} +{"t": 14.809, "q": [-0.30561670660972595, 0.02443801797926426, -0.00906631350517273, 0.6131747364997864, -0.3107038736343384, -0.024675333872437477, -0.3131076395511627, 0.0022242721170186996, -0.0013659733813256025, 0.617009699344635, -0.32833367586135864, 0.007660230156034231, -0.02018158696591854, -0.07776223123073578, 0.01216406561434269, -0.0652780756354332, 0.5138116478919983, -0.1919872909784317, 1.2310914993286133, -0.418453186750412, -0.021871211007237434, -0.4283641576766968, -0.3505745530128479, -0.4355546832084656, -0.542142391204834, -0.16668859124183655, 0.30658045411109924, -1.0387446880340576, 0.8230166435241699]} +{"t": 14.8257, "q": [-0.30538660287857056, 0.0244891494512558, -0.009307367727160454, 0.6130895018577576, -0.31067541241645813, -0.024711303412914276, -0.31280937790870667, 0.0021816615480929613, -0.0016472031129524112, 0.6170011758804321, -0.3283296227455139, 0.007667454890906811, -0.019230762496590614, -0.07792909443378448, 0.012051462195813656, -0.06520617008209229, 0.5137038230895996, -0.1920352280139923, 1.2360529899597168, -0.418453186750412, -0.021931132301688194, -0.4259073734283447, -0.3614921569824219, -0.43995288014411926, -0.5498242974281311, -0.1666766107082367, 0.3178216516971588, -1.0387567281723022, 0.8213388919830322]} +{"t": 14.8424, "q": [-0.3052673041820526, 0.02456584945321083, -0.009441286325454712, 0.6129360795021057, -0.31064680218696594, -0.024732748046517372, -0.3127411901950836, 0.002139050979167223, -0.0017677302239462733, 0.616941511631012, -0.32836267352104187, 0.007696806453168392, -0.018587950617074966, -0.07820214331150055, 0.011867200955748558, -0.06479870527982712, 0.5133323073387146, -0.19220300018787384, 1.2407747507095337, -0.418453186750412, -0.02171541564166546, -0.42192861437797546, -0.37294909358024597, -0.44280514121055603, -0.5567032098770142, -0.16671255230903625, 0.32787641882896423, -1.038720726966858, 0.8190618753433228]} +{"t": 14.8592, "q": [-0.3051905930042267, 0.024574371054768562, -0.009548421949148178, 0.6127400994300842, -0.3105979561805725, -0.02479025162756443, -0.312715619802475, 0.0020879183430224657, -0.0019284329609945416, 0.616864800453186, -0.3283749520778656, 0.007689653895795345, -0.01779782958328724, -0.07871813327074051, 0.011499247513711452, -0.06385195255279541, 0.5131165981292725, -0.19229887425899506, 1.2444778680801392, -0.41846516728401184, -0.021511685103178024, -0.4186688959598541, -0.38321956992149353, -0.4463404715061188, -0.562695324420929, -0.1664489060640335, 0.3404598534107208, -1.038720726966858, 0.816581130027771]} +{"t": 14.8759, "q": [-0.3051905930042267, 0.024651071056723595, -0.009682340547442436, 0.6126463413238525, -0.31059005856513977, -0.024819176644086838, -0.312715619802475, 0.0020623519085347652, -0.0021828790195286274, 0.6168733239173889, -0.3283791244029999, 0.007696950808167458, -0.017061274498701096, -0.07915803045034409, 0.011201336979866028, -0.06308495998382568, 0.512637197971344, -0.1926344335079193, 1.2492955923080444, -0.4184052646160126, -0.02118811011314392, -0.4162241220474243, -0.3924354314804077, -0.4501754343509674, -0.5685076713562012, -0.16619724035263062, 0.3513055741786957, -1.0385769605636597, 0.8137049078941345]} +{"t": 14.8926, "q": [-0.3052758276462555, 0.024668114259839058, -0.009789476171135902, 0.6123651266098022, -0.3105819523334503, -0.024833612143993378, -0.31286048889160156, 0.0019856528379023075, -0.002316797850653529, 0.6166688203811646, -0.32838740944862366, 0.0077115450985729694, -0.016592558473348618, -0.07962055504322052, 0.010897587053477764, -0.06121542304754257, 0.5119301676750183, -0.1925864964723587, 1.2544008493423462, -0.41844120621681213, -0.020924456417560577, -0.4134078323841095, -0.4021666347980499, -0.4551488757133484, -0.5722347497940063, -0.1654062718153, 0.3642245829105377, -1.03855299949646, 0.8096781969070435]} +{"t": 14.9095, "q": [-0.3053695559501648, 0.024668114259839058, -0.009816259145736694, 0.6122969388961792, -0.31057387590408325, -0.024848029017448425, -0.31296277046203613, 0.0019856528379023075, -0.002316797850653529, 0.6165239214897156, -0.3283873498439789, 0.007697005290538073, -0.01648542284965515, -0.07993152737617493, 0.010687037371098995, -0.05921405553817749, 0.5117623805999756, -0.19264641404151917, 1.260237216949463, -0.4184292256832123, -0.02058889903128147, -0.41095107793807983, -0.41180193424224854, -0.4598586857318878, -0.5758300423622131, -0.16497483849525452, 0.37550172209739685, -1.0385169982910156, 0.8068379759788513]} +{"t": 14.9262, "q": [-0.305684894323349, 0.02468515932559967, -0.009816259145736694, 0.6120498180389404, -0.3105740249156952, -0.024862537160515785, -0.31332921981811523, 0.0019771307706832886, -0.0023435817565768957, 0.6163364052772522, -0.3284118175506592, 0.007668178528547287, -0.016043491661548615, -0.08056869357824326, 0.010256065055727959, -0.05667340010404587, 0.5110073685646057, -0.19280222058296204, 1.2640241384506226, -0.4184292256832123, -0.020289292559027672, -0.4089377224445343, -0.420993834733963, -0.4639333188533783, -0.5802402496337891, -0.1652744561433792, 0.3871983289718628, -1.0385169982910156, 0.8043692111968994]} +{"t": 14.9429, "q": [-0.30598315596580505, 0.024651071056723595, -0.009963570162653923, 0.6119219660758972, -0.3105577230453491, -0.02487686276435852, -0.31345704197883606, 0.0019345202017575502, -0.0025578520726412535, 0.6162000894546509, -0.3284118175506592, 0.007668178528547287, -0.01564173400402069, -0.08125109225511551, 0.009811917319893837, -0.05415671318769455, 0.5094494223594666, -0.19294603168964386, 1.2681467533111572, -0.4184052646160126, -0.020289292559027672, -0.4066726863384247, -0.42989811301231384, -0.46763646602630615, -0.584590494632721, -0.16551414132118225, 0.39776840806007385, -1.038493037223816, 0.8016487956047058]} +{"t": 14.9596, "q": [-0.306545615196228, 0.02468515932559967, -0.010204624384641647, 0.6119219660758972, -0.31054961681365967, -0.02489129826426506, -0.31363600492477417, 0.00195156445261091, -0.002852473873645067, 0.6159699559211731, -0.3284118175506592, 0.007668178528547287, -0.015293545089662075, -0.08215270936489105, 0.009275853633880615, -0.05138835683465004, 0.5077835917472839, -0.19326959550380707, 1.2716940641403198, -0.4183213710784912, -0.02027730830013752, -0.4029935300350189, -0.4377478063106537, -0.47098004817962646, -0.589216411113739, -0.16529841721057892, 0.4069123864173889, -1.0383492708206177, 0.7998871207237244]} +{"t": 14.9763, "q": [-0.3074660003185272, 0.02468515932559967, -0.0105126379057765, 0.6118537783622742, -0.3105577230453491, -0.02487686276435852, -0.3141728937625885, 0.0019430422689765692, -0.0031470954418182373, 0.61551833152771, -0.3284118175506592, 0.007668178528547287, -0.015280152671039104, -0.08323733508586884, 0.008549118414521217, -0.04761332646012306, 0.5057822465896606, -0.19361715018749237, 1.2757208347320557, -0.41826143860816956, -0.02046905644237995, -0.39871516823768616, -0.446208655834198, -0.47450342774391174, -0.5924521684646606, -0.16442357003688812, 0.41729071736335754, -1.0380855798721313, 0.7975262403488159]} +{"t": 14.993, "q": [-0.3077642619609833, 0.024668114259839058, -0.01065994892269373, 0.6117600798606873, -0.3105659484863281, -0.024876954033970833, -0.31423255801200867, 0.0019686087034642696, -0.0032810145057737827, 0.615143358707428, -0.328403502702713, 0.007653584238141775, -0.015253368765115738, -0.08417099714279175, 0.008436259813606739, -0.0442337766289711, 0.5032655596733093, -0.19395269453525543, 1.2808979749679565, -0.4182015359401703, -0.020289292559027672, -0.39470046758651733, -0.45420214533805847, -0.47794288396835327, -0.5963350534439087, -0.16357268393039703, 0.42695000767707825, -1.0374504327774048, 0.7953810691833496]} +{"t": 15.0098, "q": [-0.30830118060112, 0.024659592658281326, -0.010860827751457691, 0.611632227897644, -0.3105740249156952, -0.024862537160515785, -0.3144370913505554, 0.002019741339609027, -0.0035086767747998238, 0.6146490573883057, -0.32839536666870117, 0.007668033707886934, -0.015092666260898113, -0.0851268395781517, 0.008336080238223076, -0.04066247493028641, 0.5005691051483154, -0.19422833621501923, 1.2844573259353638, -0.4181056618690491, -0.020193420350551605, -0.39127296209335327, -0.4606376588344574, -0.48089101910591125, -0.6004096865653992, -0.16318918764591217, 0.4358542859554291, -1.036971092224121, 0.7934396266937256]} +{"t": 15.0265, "q": [-0.3084716200828552, 0.024659592658281326, -0.010967962443828583, 0.6114788055419922, -0.31058210134506226, -0.024848120287060738, -0.3143092691898346, 0.002028263406828046, -0.0037631227169185877, 0.614248514175415, -0.3283912241458893, 0.007660736795514822, -0.015092666260898113, -0.08608859032392502, 0.00833533052355051, -0.03633617237210274, 0.49757304787635803, -0.19458787143230438, 1.2880765199661255, -0.4179977774620056, -0.020205404609441757, -0.3882888853549957, -0.4676244556903839, -0.48316800594329834, -0.6037412881851196, -0.16268585622310638, 0.4451300799846649, -1.0366953611373901, 0.7913064360618591]} +{"t": 15.0432, "q": [-0.30851420760154724, 0.024634025990962982, -0.010967962443828583, 0.6113510131835938, -0.31059035658836365, -0.02484821155667305, -0.31427517533302307, 0.0020453077740967274, -0.003803298342972994, 0.6139928698539734, -0.3283870816230774, 0.007653439417481422, -0.015213193371891975, -0.08705460280179977, 0.008568478748202324, -0.032285504043102264, 0.4942174553871155, -0.1950312852859497, 1.2914440631866455, -0.41786596179008484, -0.02003762498497963, -0.38495728373527527, -0.47417983412742615, -0.4849536716938019, -0.6051314473152161, -0.1621585488319397, 0.45535263419151306, -1.0365636348724365, 0.7893409729003906]} +{"t": 15.06, "q": [-0.30860796570777893, 0.024591416120529175, -0.010967962443828583, 0.6111123561859131, -0.31059426069259644, -0.024826476350426674, -0.3143007457256317, 0.0020538298413157463, -0.0037899063900113106, 0.6136945486068726, -0.3283829987049103, 0.007660664152354002, -0.015347111970186234, -0.0878949984908104, 0.008649945259094238, -0.028390629217028618, 0.49017879366874695, -0.195606529712677, 1.2953509092330933, -0.41780605912208557, -0.019941750913858414, -0.37997183203697205, -0.4815022051334381, -0.48640376329421997, -0.6068691611289978, -0.16189490258693695, 0.46366968750953674, -1.0365036725997925, 0.7869561314582825]} +{"t": 15.0767, "q": [-0.30859944224357605, 0.024531761184334755, -0.010967962443828583, 0.6110526919364929, -0.31059426069259644, -0.024826476350426674, -0.3141814172267914, 0.0020367854740470648, -0.0037899063900113106, 0.6134729981422424, -0.3283829092979431, 0.00764614250510931, -0.0154542475938797, -0.08885695040225983, 0.009130069985985756, -0.025586320087313652, 0.4864157438278198, -0.1971045583486557, 1.3001207113265991, -0.4175064265727997, -0.019630160182714462, -0.37497442960739136, -0.4887886047363281, -0.4874943196773529, -0.6077799797058105, -0.16167917847633362, 0.47390419244766235, -1.0364078283309937, 0.785709798336029]} +{"t": 15.0937, "q": [-0.30859944224357605, 0.024548804387450218, -0.010981354862451553, 0.6109845638275146, -0.31059426069259644, -0.024826476350426674, -0.31413882970809937, 0.0020793962758034468, -0.0038970415480434895, 0.6135582327842712, -0.3283829092979431, 0.00764614250510931, -0.0153738958761096, -0.08989925682544708, 0.009753827005624771, -0.0234770979732275, 0.4830242097377777, -0.19863852858543396, 1.3046506643295288, -0.41741055250167847, -0.019222697243094444, -0.37160685658454895, -0.4957874119281769, -0.48817741870880127, -0.6091821193695068, -0.16134361922740936, 0.4815860986709595, -1.0362639427185059, 0.784307599067688]} +{"t": 15.1104, "q": [-0.3085738718509674, 0.024531761184334755, -0.011075098067522049, 0.610958993434906, -0.31059426069259644, -0.024826476350426674, -0.31410473585128784, 0.0020879183430224657, -0.004017568659037352, 0.6135923266410828, -0.3283787667751312, 0.007638826966285706, -0.015079274773597717, -0.09085273742675781, 0.010256827808916569, -0.021799305453896523, 0.47932106256484985, -0.2001245766878128, 1.309923768043518, -0.4172068238258362, -0.018935075029730797, -0.36816737055778503, -0.5025584697723389, -0.48918408155441284, -0.6097094416618347, -0.16086424887180328, 0.49114951491355896, -1.0360482931137085, 0.7828934788703918]} +{"t": 15.1272, "q": [-0.30854830145835876, 0.024531761184334755, -0.01124919205904007, 0.610890805721283, -0.31059005856513977, -0.024819176644086838, -0.31401097774505615, 0.002130528911948204, -0.004205055069178343, 0.6136093735694885, -0.3283748924732208, 0.0076751140877604485, -0.014851612038910389, -0.0919405072927475, 0.010790068656206131, -0.020013656467199326, 0.4757377803325653, -0.20123910903930664, 1.3144657611846924, -0.4167993664741516, -0.018563564866781235, -0.36484774947166443, -0.5088741779327393, -0.4900229871273041, -0.6100929379463196, -0.15991750359535217, 0.4992508292198181, -1.0359283685684204, 0.7811078429222107]} +{"t": 15.144, "q": [-0.3084460496902466, 0.024531761184334755, -0.011450070887804031, 0.610890805721283, -0.3105902075767517, -0.02483370341360569, -0.3138575851917267, 0.002139050979167223, -0.004405933897942305, 0.6136605143547058, -0.3283788561820984, 0.00765336723998189, -0.01470430102199316, -0.09273669868707657, 0.011238324455916882, -0.017952369526028633, 0.47190284729003906, -0.20140689611434937, 1.3188519477844238, -0.4162960350513458, -0.01846769079566002, -0.3621033728122711, -0.5160167813301086, -0.49045440554618835, -0.6100929379463196, -0.1584913730621338, 0.5064054131507874, -1.0359643697738647, 0.780113160610199]} +{"t": 15.1607, "q": [-0.3084290027618408, 0.024540282785892487, -0.011530422605574131, 0.6108737587928772, -0.3105902075767517, -0.02483370341360569, -0.31383201479911804, 0.002122006844729185, -0.004446109291166067, 0.6137797832489014, -0.3283788561820984, 0.00765336723998189, -0.014570382423698902, -0.09320513159036636, 0.011503302492201328, -0.015723302960395813, 0.4676004946231842, -0.2016705423593521, 1.3223273754119873, -0.4155050814151764, -0.018192054703831673, -0.3585320711135864, -0.5245495438575745, -0.4904424250125885, -0.6099850535392761, -0.15744875371456146, 0.5146026611328125, -1.0360122919082642, 0.7793821096420288]} +{"t": 15.1774, "q": [-0.30837786197662354, 0.024531761184334755, -0.011530422605574131, 0.6108481884002686, -0.3105819523334503, -0.024833612143993378, -0.3137979209423065, 0.0021134845446795225, -0.004446109291166067, 0.6137797832489014, -0.3283829987049103, 0.007660664152354002, -0.014409679919481277, -0.09342128783464432, 0.011591481044888496, -0.01462075486779213, 0.46274688839912415, -0.20176641643047333, 1.3268334865570068, -0.41386324167251587, -0.01800030656158924, -0.35496076941490173, -0.5322554111480713, -0.4905862510204315, -0.6101049184799194, -0.15659786760807037, 0.5220328569412231, -1.0360122919082642, 0.7786989808082581]} +{"t": 15.1944, "q": [-0.3082074224948883, 0.024531761184334755, -0.01151703018695116, 0.6108737587928772, -0.310577929019928, -0.0248408205807209, -0.313721239566803, 0.0021049624774605036, -0.004446109291166067, 0.6139332056045532, -0.3283788561820984, 0.00765336723998189, -0.014289152808487415, -0.09349636733531952, 0.011587321758270264, -0.013458284549415112, 0.4577374756336212, -0.20179037749767303, 1.3296977281570435, -0.41212552785873413, -0.017724668607115746, -0.3525758981704712, -0.5396376848220825, -0.49084991216659546, -0.6100929379463196, -0.1552915871143341, 0.5277493000030518, -1.0359283685684204, 0.7782196402549744]} +{"t": 15.2111, "q": [-0.3079773187637329, 0.024531761184334755, -0.01159738190472126, 0.6108481884002686, -0.31056562066078186, -0.024847937747836113, -0.3135167062282562, 0.0020453077740967274, -0.00445950124412775, 0.6141036152839661, -0.3283790349960327, 0.007682411000132561, -0.013231192715466022, -0.09354989230632782, 0.011522350832819939, -0.012068115174770355, 0.45216482877731323, -0.20176641643047333, 1.3310519456863403, -0.4102439880371094, -0.01764077879488468, -0.35118573904037476, -0.5466843843460083, -0.49197641015052795, -0.6096974611282349, -0.1537456214427948, 0.5349758267402649, -1.0358924865722656, 0.778099775314331]} +{"t": 15.2279, "q": [-0.3076534867286682, 0.02455732598900795, -0.011650948785245419, 0.6108226180076599, -0.31056562066078186, -0.024847937747836113, -0.3133121728897095, 0.0019430422689765692, -0.004539852496236563, 0.6142911314964294, -0.32839131355285645, 0.007675258442759514, -0.012133057229220867, -0.09366362541913986, 0.01144450530409813, -0.010354370810091496, 0.44617271423339844, -0.20174244046211243, 1.3322863578796387, -0.4097406566143036, -0.017664747312664986, -0.35023897886276245, -0.5532277822494507, -0.4932347536087036, -0.6096375584602356, -0.1513727456331253, 0.5395058393478394, -1.0357606410980225, 0.7780518531799316]} +{"t": 15.2449, "q": [-0.3073381781578064, 0.02455732598900795, -0.011664341203868389, 0.6107885241508484, -0.3105493187904358, -0.024862265214323997, -0.31315878033638, 0.0019174759509041905, -0.004539852496236563, 0.6144444942474365, -0.32839953899383545, 0.0076753306202590466, -0.010954570956528187, -0.09375491738319397, 0.0113631347194314, -0.008700547739863396, 0.44027647376060486, -0.2016465812921524, 1.3332690000534058, -0.4096088409423828, -0.01768871583044529, -0.3497476279735565, -0.5595914125442505, -0.4945410490036011, -0.6091341972351074, -0.14956313371658325, 0.5438681244850159, -1.0353890657424927, 0.7780518531799316]} +{"t": 15.2616, "q": [-0.3071421682834625, 0.024582892656326294, -0.011664341203868389, 0.6107629537582397, -0.3105289340019226, -0.02488381788134575, -0.3130309283733368, 0.0019089538836851716, -0.004539852496236563, 0.6145467758178711, -0.3283996284008026, 0.007689852733165026, -0.009494854137301445, -0.09380829334259033, 0.011307712644338608, -0.007514109369367361, 0.433205783367157, -0.20116721093654633, 1.334311604499817, -0.4096088409423828, -0.017736652866005898, -0.3493761122226715, -0.5661108493804932, -0.4960870146751404, -0.609026312828064, -0.1474778801202774, 0.5480865836143494, -1.034969687461853, 0.7780518531799316]} +{"t": 15.2783, "q": [-0.3069632053375244, 0.024582892656326294, -0.011704516597092152, 0.6107629537582397, -0.3104759156703949, -0.02493400312960148, -0.31281790137290955, 0.001891909632831812, -0.004539852496236563, 0.6146320104598999, -0.3284078538417816, 0.007689924910664558, -0.0074191102758049965, -0.09387728571891785, 0.01121327094733715, -0.0068789455108344555, 0.42563173174858093, -0.20111927390098572, 1.3346951007843018, -0.4097166955471039, -0.017832526937127113, -0.34919634461402893, -0.5715876221656799, -0.49849584698677063, -0.6089664101600647, -0.14626747369766235, 0.5531558990478516, -1.0349457263946533, 0.7781237363815308]} +{"t": 15.2951, "q": [-0.30663082003593445, 0.024599937722086906, -0.011717909015715122, 0.6106266379356384, -0.3104305863380432, -0.0249552633613348, -0.31273266673088074, 0.0018492990639060736, -0.004593420308083296, 0.614700198173523, -0.3284078538417816, 0.007689924910664558, -0.005504068918526173, -0.09397660195827484, 0.011098068207502365, -0.006507434416562319, 0.4178779423236847, -0.2010713368654251, 1.3347190618515015, -0.4098125696182251, -0.01812014915049076, -0.3492083251476288, -0.5766808986663818, -0.5005451440811157, -0.6085230112075806, -0.14529675245285034, 0.5570387840270996, -1.0348498821258545, 0.7782436013221741]} +{"t": 15.3119, "q": [-0.30608540773391724, 0.02461698092520237, -0.011731300503015518, 0.6104135513305664, -0.31037724018096924, -0.025005439296364784, -0.3124173581600189, 0.001823732745833695, -0.004633595701307058, 0.6147513389587402, -0.32842013239860535, 0.0076827723532915115, -0.0033881496638059616, -0.09409911185503006, 0.010938657447695732, -0.0062797339633107185, 0.4085182845592499, -0.20098744332790375, 1.3348748683929443, -0.4099443852901459, -0.018371816724538803, -0.34926825761795044, -0.5828048586845398, -0.5020791292190552, -0.6075283288955688, -0.14460165798664093, 0.5612931847572327, -1.03444242477417, 0.7783395051956177]} +{"t": 15.3286, "q": [-0.3054633140563965, 0.024702202528715134, -0.011731300503015518, 0.6100044846534729, -0.31028714776039124, -0.025105981156229973, -0.31207647919654846, 0.0017981663113459945, -0.004593420308083296, 0.6146575808525085, -0.3284284472465515, 0.007697384804487228, 0.00040175687172450125, -0.09435766190290451, 0.010714474134147167, -0.0062917182222008705, 0.3983077108860016, -0.20101140439510345, 1.334958791732788, -0.409932404756546, -0.018383800983428955, -0.34941208362579346, -0.5879101157188416, -0.5036730170249939, -0.607144832611084, -0.1444578468799591, 0.5643851161003113, -1.0336633920669556, 0.7783514857292175]} +{"t": 15.3454, "q": [-0.30469632148742676, 0.024693680927157402, -0.011731300503015518, 0.6096295118331909, -0.3100947439670563, -0.02532866597175598, -0.31159070134162903, 0.0018152105621993542, -0.004566636402159929, 0.6144444942474365, -0.3284241855144501, 0.007675547618418932, 0.003696163184940815, -0.09463119506835938, 0.010489306412637234, -0.006135923322290182, 0.3869946002960205, -0.20089156925678253, 1.3349348306655884, -0.4099683463573456, -0.018623486161231995, -0.3494000732898712, -0.5932071805000305, -0.5053628087043762, -0.6072646379470825, -0.14371483027935028, 0.567776620388031, -1.0327047109603882, 0.7784113883972168]} +{"t": 15.3621, "q": [-0.30386966466903687, 0.02467663586139679, -0.011784868314862251, 0.6089307069778442, -0.3095899224281311, -0.025039883330464363, -0.310585081577301, 0.0016873788554221392, -0.004780906718224287, 0.6143081784248352, -0.3284774720668793, 0.007654235232621431, 0.005905826110392809, -0.09485848248004913, 0.010342992842197418, -0.005225121974945068, 0.3757893443107605, -0.20093950629234314, 1.3351625204086304, -0.4099563658237457, -0.018635470420122147, -0.3495079576969147, -0.5999183058738708, -0.5067529678344727, -0.6071328520774841, -0.14294783771038055, 0.571132242679596, -1.0317219495773315, 0.7784712910652161]} +{"t": 15.3788, "q": [-0.30254021286964417, 0.024693680927157402, -0.011878611519932747, 0.6077035069465637, -0.308931827545166, -0.02514113299548626, -0.3087613582611084, 0.0014146711910143495, -0.0053701503202319145, 0.6136775612831116, -0.3285021483898163, 0.007654434069991112, 0.007338759023696184, -0.09504786878824234, 0.010222523473203182, -0.003499393817037344, 0.3636613190174103, -0.20101140439510345, 1.3355460166931152, -0.409932404756546, -0.01858753338456154, -0.3495798408985138, -0.6075642704963684, -0.5080233216285706, -0.6068691611289978, -0.1425643414258957, 0.5731096267700195, -1.0302239656448364, 0.7784712910652161]} +{"t": 15.3955, "q": [-0.30121076107025146, 0.024702202528715134, -0.0122669767588377, 0.6061269640922546, -0.308409720659256, -0.025164145976305008, -0.30749157071113586, 0.001184574095532298, -0.005892434157431126, 0.6123054623603821, -0.32851848006248474, 0.00764007493853569, 0.008276191540062428, -0.09536748379468918, 0.009927350096404552, -0.0009227853151969612, 0.3522043824195862, -0.2009275257587433, 1.3359655141830444, -0.4099923372268677, -0.018623486161231995, -0.3494000732898712, -0.6137601137161255, -0.5097370147705078, -0.6064617037773132, -0.14264823496341705, 0.574643611907959, -1.0289535522460938, 0.7784712910652161]} +{"t": 15.4123, "q": [-0.29966825246810913, 0.024659592658281326, -0.012561597861349583, 0.6046355962753296, -0.3080287575721741, -0.025087760761380196, -0.3073978126049042, 0.0011504855938255787, -0.006294190883636475, 0.6111634969711304, -0.3285509943962097, 0.007582258433103561, 0.008945786394178867, -0.09593237936496735, 0.009303747676312923, 0.00256462418474257, 0.34090328216552734, -0.20087958872318268, 1.3362051248550415, -0.4099923372268677, -0.018731344491243362, -0.3490525484085083, -0.6202555894851685, -0.5120859742164612, -0.6057786345481873, -0.14273212850093842, 0.5779153108596802, -1.0278270244598389, 0.7784593105316162]} +{"t": 15.429, "q": [-0.2978871464729309, 0.024668114259839058, -0.012923179194331169, 0.6032549738883972, -0.3078852891921997, -0.025209592655301094, -0.3077131509780884, 0.0011675298446789384, -0.0065620290115475655, 0.6100897192955017, -0.3286406099796295, 0.007452302612364292, 0.009293975308537483, -0.09642554074525833, 0.008946556597948074, 0.0063156867399811745, 0.3307766020298004, -0.20086759328842163, 1.3371518850326538, -0.4100162982940674, -0.018731344491243362, -0.3485252261161804, -0.6268948316574097, -0.5144588351249695, -0.604232668876648, -0.14274410903453827, 0.5820258855819702, -1.0271559953689575, 0.7784353494644165]} +{"t": 15.4458, "q": [-0.2966003119945526, 0.024702202528715134, -0.013164233416318893, 0.60199373960495, -0.3076160252094269, -0.025583861395716667, -0.3069802522659302, 0.0011675298446789384, -0.006669164169579744, 0.6092119216918945, -0.32867321372032166, 0.007409026380628347, 0.009695732034742832, -0.09726263582706451, 0.008182663470506668, 0.01013865415006876, 0.32227978110313416, -0.2007477581501007, 1.3380986452102661, -0.41002827882766724, -0.01870737597346306, -0.34669163823127747, -0.6329588294029236, -0.5167238116264343, -0.602446973323822, -0.14279204607009888, 0.5852016806602478, -1.0266765356063843, 0.7784113883972168]} +{"t": 15.4625, "q": [-0.29607194662094116, 0.024847079068422318, -0.013713301159441471, 0.6011926531791687, -0.30734702944755554, -0.025987135246396065, -0.3064263164997101, 0.001389104756526649, -0.006937001831829548, 0.6083853244781494, -0.32868948578834534, 0.007380108814686537, 0.00991000235080719, -0.09780030697584152, 0.007367976475507021, 0.014464959502220154, 0.314777672290802, -0.20013655722141266, 1.3389016389846802, -0.41010019183158875, -0.01894705928862095, -0.3436836004257202, -0.6408205032348633, -0.5196959376335144, -0.6005535125732422, -0.14283998310565948, 0.5903189778327942, -1.0260534286499023, 0.7783634662628174]} +{"t": 15.4794, "q": [-0.2961145341396332, 0.024906734004616737, -0.014262368902564049, 0.6006642580032349, -0.3069557845592499, -0.026577666401863098, -0.3064603805541992, 0.0016106797847896814, -0.007204839959740639, 0.6080018281936646, -0.32869741320610046, 0.007336615584790707, 0.010017137974500656, -0.09826649725437164, 0.006810814142227173, 0.017724668607115746, 0.3115299344062805, -0.19889020919799805, 1.3407591581344604, -0.41049566864967346, -0.019582223147153854, -0.34020817279815674, -0.6490896344184875, -0.5231474041938782, -0.600050151348114, -0.14391855895519257, 0.5941659212112427, -1.0255740880966187, 0.7783754467964172]} +{"t": 15.4961, "q": [-0.29625943303108215, 0.02493230067193508, -0.014891788363456726, 0.6003233790397644, -0.3065642714500427, -0.02713920921087265, -0.3065029978752136, 0.0017129451734945178, -0.0076467725448310375, 0.6078143119812012, -0.3287094235420227, 0.007285861298441887, 0.010057313367724419, -0.0987672358751297, 0.00644719647243619, 0.02099636197090149, 0.3109307289123535, -0.1976797878742218, 1.3417179584503174, -0.4108312129974365, -0.020481040701270103, -0.3360975980758667, -0.657957911491394, -0.5283845067024231, -0.5994749069213867, -0.14485332369804382, 0.598396360874176, -1.025046706199646, 0.7785911560058594]} +{"t": 15.5128, "q": [-0.2966088354587555, 0.025060132145881653, -0.015494422987103462, 0.6002551913261414, -0.3063712418079376, -0.027260538190603256, -0.30649447441101074, 0.0017385114915668964, -0.008302975445985794, 0.6076098084449768, -0.3287091553211212, 0.007242295425385237, 0.01017784047871828, -0.09913074225187302, 0.006225147284567356, 0.022889869287610054, 0.31121835112571716, -0.19656525552272797, 1.3418736457824707, -0.4108552038669586, -0.021271999925374985, -0.3335209786891937, -0.6660832166671753, -0.535874605178833, -0.5983603596687317, -0.1453087329864502, 0.602363109588623, -1.0246033668518066, 0.7789146900177002]} +{"t": 15.5296, "q": [-0.2967792749404907, 0.02510274201631546, -0.01580243743956089, 0.6004597544670105, -0.3063134253025055, -0.02725997194647789, -0.3064689040184021, 0.0017470336752012372, -0.008704732172191143, 0.6075757145881653, -0.3287050127983093, 0.0072349985130131245, 0.01017784047871828, -0.09920670837163925, 0.00616331584751606, 0.024280039593577385, 0.3114100992679596, -0.19552263617515564, 1.3420054912567139, -0.41081923246383667, -0.02142779529094696, -0.33209487795829773, -0.6741486191749573, -0.5430172085762024, -0.5969222784042358, -0.14524881541728973, 0.6039929389953613, -1.0237045288085938, 0.7792742252349854]} +{"t": 15.5463, "q": [-0.2967963218688965, 0.025077175348997116, -0.015762262046337128, 0.600579023361206, -0.30630505084991455, -0.027245396748185158, -0.30645185708999634, 0.0017470336752012372, -0.008691340684890747, 0.6076268553733826, -0.3286885619163513, 0.007234853692352772, 0.01017784047871828, -0.0993582010269165, 0.006068401969969273, 0.0255743358284235, 0.3112542927265167, -0.19426429271697998, 1.3422452211380005, -0.41081923246383667, -0.021451763808727264, -0.3311241567134857, -0.683064877986908, -0.5494287610054016, -0.5952324867248535, -0.1452847570180893, 0.6058624982833862, -1.0218709707260132, 0.7796217799186707]} +{"t": 15.563, "q": [-0.2968730032444, 0.02503456547856331, -0.015681909397244453, 0.6008176803588867, -0.30631735920906067, -0.02723827213048935, -0.30645185708999634, 0.0017214673571288586, -0.008610988967120647, 0.6076608896255493, -0.32868024706840515, 0.007220241241157055, 0.010110881179571152, -0.0994340255856514, 0.006016153376549482, 0.02636529505252838, 0.31070300936698914, -0.1931377798318863, 1.3424010276794434, -0.41086718440055847, -0.021559620276093483, -0.3301534354686737, -0.6907467842102051, -0.5553250312805176, -0.5931832194328308, -0.14552444219589233, 0.6079357862472534, -1.0185632705688477, 0.7796697020530701]} +{"t": 15.5797, "q": [-0.2969838082790375, 0.024940822273492813, -0.015547990798950195, 0.601243793964386, -0.30633363127708435, -0.027209429070353508, -0.30644333362579346, 0.0016532903537154198, -0.008463677950203419, 0.6077376008033752, -0.3286680579185486, 0.007241915911436081, 0.009963570162653923, -0.0994868054986, 0.005998741369694471, 0.026748791337013245, 0.31017571687698364, -0.19264641404151917, 1.3424729108810425, -0.41084322333335876, -0.0216554943472147, -0.3291826844215393, -0.6961037516593933, -0.5599509477615356, -0.590930163860321, -0.14571619033813477, 0.6096135973930359, -1.0146085023880005, 0.7796337604522705]} +{"t": 15.5965, "q": [-0.2972394526004791, 0.024727769196033478, -0.015414072200655937, 0.6019852161407471, -0.3063620924949646, -0.027158966287970543, -0.30640074610710144, 0.0015851134667173028, -0.00831636693328619, 0.6078484058380127, -0.328655868768692, 0.007263608276844025, 0.009789476171135902, -0.09961540997028351, 0.005929077509790659, 0.026856649667024612, 0.30994802713394165, -0.1925385594367981, 1.3425089120864868, -0.41084322333335876, -0.02172739990055561, -0.3278644382953644, -0.7003701329231262, -0.5636061429977417, -0.5890845656394958, -0.14491325616836548, 0.6103805303573608, -1.0108933448791504, 0.7795858383178711]} +{"t": 15.6134, "q": [-0.29776784777641296, 0.024523237720131874, -0.0153738958761096, 0.6028032898902893, -0.3064069449901581, -0.027094172313809395, -0.306477427482605, 0.0014146711910143495, -0.008262800052762032, 0.6080018281936646, -0.32863131165504456, 0.007277912925928831, 0.009441286325454712, -0.09978950768709183, 0.005828068125993013, 0.02677275985479355, 0.3099120557308197, -0.19246666133403778, 1.3424729108810425, -0.41081923246383667, -0.02178732119500637, -0.3265341818332672, -0.7026470899581909, -0.567836582660675, -0.5890965461730957, -0.14437396824359894, 0.6103326082229614, -1.0071662664413452, 0.7796816825866699]} +{"t": 15.6301, "q": [-0.29814282059669495, 0.02432722970843315, -0.015159625560045242, 0.603340208530426, -0.30643948912620544, -0.027036504819989204, -0.3065967559814453, 0.0012783173006027937, -0.008169055916368961, 0.6081125736236572, -0.3285987079143524, 0.007321207784116268, 0.009012745693325996, -0.09980437904596329, 0.005836778786033392, 0.026808712631464005, 0.3099360466003418, -0.19244268536567688, 1.3424608707427979, -0.41079527139663696, -0.021859226748347282, -0.3256353735923767, -0.7021198272705078, -0.5729418396949768, -0.5892882943153381, -0.13768675923347473, 0.6099251508712769, -1.0026003122329712, 0.7791544198989868]} +{"t": 15.6468, "q": [-0.2985689043998718, 0.024037478491663933, -0.014891788363456726, 0.6038771271705627, -0.30648013949394226, -0.026964422315359116, -0.3068268299102783, 0.0010908307740464807, -0.007834259420633316, 0.6081381440162659, -0.32852092385292053, 0.007371365092694759, 0.008383326232433319, -0.09983398020267487, 0.005863777361810207, 0.02689260058104992, 0.3099360466003418, -0.19239474833011627, 1.3425687551498413, -0.4108312129974365, -0.021871211007237434, -0.32500019669532776, -0.6999626159667969, -0.5755664110183716, -0.5890126824378967, -0.13428324460983276, 0.6073126196861267, -0.9967519640922546, 0.7794779539108276]} +{"t": 15.6636, "q": [-0.29929327964782715, 0.023969300091266632, -0.014664125628769398, 0.6048912405967712, -0.3065617084503174, -0.02684924751520157, -0.30718478560447693, 0.001065264455974102, -0.007539637386798859, 0.6081722378730774, -0.328410267829895, 0.0074212332256138325, 0.007606596685945988, -0.0998414158821106, 0.005868131294846535, 0.027048395946621895, 0.30988809466362, -0.19240672886371613, 1.342580795288086, -0.41081923246383667, -0.021871211007237434, -0.324640691280365, -0.6968227624893188, -0.5779033303260803, -0.589216411113739, -0.13255751132965088, 0.604975700378418, -0.9891539812088013, 0.7797775864601135]} +{"t": 15.6803, "q": [-0.2998727858066559, 0.02384999208152294, -0.01436950359493494, 0.6063058972358704, -0.30669617652893066, -0.02664037235081196, -0.3074233829975128, 0.0010311759542673826, -0.00709770480170846, 0.6087688207626343, -0.3283403813838959, 0.007413357496261597, 0.006200447678565979, -0.09985628724098206, 0.005876841489225626, 0.028091024607419968, 0.3099360466003418, -0.19237078726291656, 1.3428324460983276, -0.41084322333335876, -0.021931132301688194, -0.32444894313812256, -0.6924485564231873, -0.5801084041595459, -0.5892283916473389, -0.12679310142993927, 0.6032379865646362, -0.9784640669822693, 0.779370129108429]} +{"t": 15.697, "q": [-0.3005886673927307, 0.023756248876452446, -0.01412845030426979, 0.6075330972671509, -0.30687519907951355, -0.026337698101997375, -0.30773019790649414, 0.0010226538870483637, -0.006870042532682419, 0.6093056797981262, -0.32827940583229065, 0.007521765772253275, 0.00508892023935914, -0.09996826946735382, 0.005913432687520981, 0.028390629217028618, 0.310115784406662, -0.19234681129455566, 1.3438271284103394, -0.41079527139663696, -0.02184724248945713, -0.32423320412635803, -0.6889491677284241, -0.5827209949493408, -0.5881258249282837, -0.12046543508768082, 0.6013804078102112, -0.966683566570282, 0.7790944576263428]} +{"t": 15.7138, "q": [-0.30144938826560974, 0.023747725412249565, -0.014048098586499691, 0.6086665391921997, -0.3070827126502991, -0.025984544306993484, -0.3079432547092438, 0.001014131703414023, -0.006709339562803507, 0.6096295118331909, -0.328152596950531, 0.0076150549575686455, 0.003964001312851906, -0.10021760314702988, 0.005798491649329662, 0.028138961642980576, 0.3103315234184265, -0.1922629326581955, 1.3450734615325928, -0.41079527139663696, -0.021823273971676826, -0.3241373300552368, -0.6857972741127014, -0.5850339531898499, -0.5884374380111694, -0.11498863995075226, 0.6006852984428406, -0.9591934084892273, 0.7790944576263428]} +{"t": 15.7305, "q": [-0.30208855867385864, 0.02371363714337349, -0.0138606121763587, 0.6096806526184082, -0.30718451738357544, -0.025818826630711555, -0.3080199360847473, 0.001014131703414023, -0.006508461199700832, 0.6100897192955017, -0.3279438614845276, 0.0077512226998806, 0.003240838646888733, -0.10030829906463623, 0.005754953715950251, 0.02810300886631012, 0.31049928069114685, -0.1922629326581955, 1.3460921049118042, -0.4107593297958374, -0.02178732119500637, -0.3240174949169159, -0.6831607818603516, -0.587047278881073, -0.5892523527145386, -0.10779810696840286, 0.6008650660514832, -0.9514156579971313, 0.7790345549583435]} +{"t": 15.7474, "q": [-0.30241239070892334, 0.023585805669426918, -0.013432071544229984, 0.6104220747947693, -0.30724549293518066, -0.025710713118314743, -0.3080284595489502, 0.0009033442474901676, -0.006120096426457167, 0.6107970476150513, -0.3278539776802063, 0.007837576791644096, 0.0028256899677217007, -0.10028570145368576, 0.005761049687862396, 0.028031103312969208, 0.3106670677661896, -0.19227491319179535, 1.3463557958602905, -0.4107832908630371, -0.021811289712786674, -0.32400551438331604, -0.6828132271766663, -0.5890366435050964, -0.5924641489982605, -0.1026209220290184, 0.601248562335968, -0.9474608898162842, 0.7788308262825012]} +{"t": 15.7642, "q": [-0.3023356795310974, 0.02342388592660427, -0.012789260596036911, 0.6111038327217102, -0.3073308765888214, -0.025559326633810997, -0.30819037556648254, 0.000630636524874717, -0.005477285478264093, 0.6119645833969116, -0.32786646485328674, 0.007859486155211926, 0.0021159194875508547, -0.10016627609729767, 0.005720105487853289, 0.02805507183074951, 0.3106910288333893, -0.1922868937253952, 1.3466793298721313, -0.4107832908630371, -0.02183525823056698, -0.32400551438331604, -0.6831607818603516, -0.5904507637023926, -0.598624050617218, -0.10117083042860031, 0.6025788187980652, -0.94666987657547, 0.7781956791877747]} +{"t": 15.781, "q": [-0.3020203709602356, 0.023338664323091507, -0.012320543639361858, 0.6114532351493835, -0.3073920011520386, -0.025465689599514008, -0.3086164891719818, 0.0005113269435241818, -0.0049817850813269615, 0.6129105687141418, -0.32787466049194336, 0.007859558798372746, 0.0016873788554221392, -0.1000249907374382, 0.0056373560801148415, 0.02805507183074951, 0.3106670677661896, -0.19232285022735596, 1.3469070196151733, -0.4107832908630371, -0.021859226748347282, -0.3240174949169159, -0.6840715408325195, -0.5925480127334595, -0.603561520576477, -0.10034392029047012, 0.6035016179084778, -0.9463343620300293, 0.7781117558479309]} +{"t": 15.7977, "q": [-0.30176469683647156, 0.02342388592660427, -0.01225358434021473, 0.6116833686828613, -0.30738767981529236, -0.02544390968978405, -0.31002262234687805, 0.0005539375124499202, -0.00483447453007102, 0.6131747364997864, -0.32789111137390137, 0.007859685458242893, 0.0015936355339363217, -0.09995835274457932, 0.005578999407589436, 0.028007134795188904, 0.3106670677661896, -0.19232285022735596, 1.346979022026062, -0.4107113778591156, -0.021811289712786674, -0.32398155331611633, -0.6837120056152344, -0.5949329137802124, -0.6049996614456177, -0.09697634726762772, 0.6042925715446472, -0.9431465268135071, 0.7766736745834351]} +{"t": 15.8147, "q": [-0.30195218324661255, 0.023560239002108574, -0.012414286844432354, 0.6119901537895203, -0.3073837459087372, -0.02546560950577259, -0.31062769889831543, 0.0006562029011547565, -0.005021960940212011, 0.6133877635002136, -0.32790321111679077, 0.007823488675057888, 0.0020757438614964485, -0.09993795305490494, 0.005441443994641304, 0.027959197759628296, 0.3107389807701111, -0.1922868937253952, 1.3470029830932617, -0.4107832908630371, -0.021799305453896523, -0.3239695727825165, -0.6836281418800354, -0.5963470339775085, -0.6053831577301025, -0.09408815205097198, 0.6057426929473877, -0.9391318559646606, 0.7728147506713867]} +{"t": 15.8314, "q": [-0.30222490429878235, 0.02379033714532852, -0.012762476690113544, 0.6126207709312439, -0.3073551654815674, -0.02550157718360424, -0.31097710132598877, 0.0008266451768577099, -0.005276407115161419, 0.6136775612831116, -0.3279232680797577, 0.007743780966848135, 0.002504284493625164, -0.1000063493847847, 0.005384903866797686, 0.02792324498295784, 0.3107389807701111, -0.19229887425899506, 1.3470509052276611, -0.4107593297958374, -0.021799305453896523, -0.32393360137939453, -0.6868399381637573, -0.5978570580482483, -0.6064976453781128, -0.09390839189291, 0.6063299179077148, -0.9372263550758362, 0.7689678072929382]} +{"t": 15.8481, "q": [-0.3024635314941406, 0.023969300091266632, -0.012963354587554932, 0.6128935217857361, -0.30732250213623047, -0.025544753298163414, -0.311292439699173, 0.000945954816415906, -0.005437109619379044, 0.6139672994613647, -0.32790619134902954, 0.007641928736120462, 0.003026568330824375, -0.10025793313980103, 0.005126551259309053, 0.02786332368850708, 0.3106670677661896, -0.19229887425899506, 1.3471107482910156, -0.4107593297958374, -0.021823273971676826, -0.32393360137939453, -0.6913220286369324, -0.6010328531265259, -0.6075043678283691, -0.09399227797985077, 0.6062100529670715, -0.9365192651748657, 0.7650489807128906]} +{"t": 15.8649, "q": [-0.3028385043144226, 0.024156788364052773, -0.013231192715466022, 0.6131576895713806, -0.30730217695236206, -0.02558080293238163, -0.31153103709220886, 0.0011504855938255787, -0.0055978125892579556, 0.6140099167823792, -0.327877014875412, 0.007576309144496918, 0.0034283252898603678, -0.10063591599464417, 0.004448500461876392, 0.027911260724067688, 0.31049928069114685, -0.19227491319179535, 1.3470509052276611, -0.41079527139663696, -0.02190716378390789, -0.32389765977859497, -0.696067750453949, -0.6057546734809875, -0.6085230112075806, -0.09372862428426743, 0.6069770455360413, -0.9351291060447693, 0.7610941529273987]} +{"t": 15.8816, "q": [-0.30333277583122253, 0.024216441437602043, -0.01351242233067751, 0.6132684946060181, -0.3072940409183502, -0.02559521421790123, -0.31195715069770813, 0.0011504855938255787, -0.0057719070464372635, 0.6139417290687561, -0.32787269353866577, 0.007539968006312847, 0.003669379511848092, -0.10093647986650467, 0.0034449829254299402, 0.02846253477036953, 0.3103075325489044, -0.1922629326581955, 1.3471227884292603, -0.41084322333335876, -0.022194785997271538, -0.32387369871139526, -0.7022875547409058, -0.6126335859298706, -0.6102966666221619, -0.09177519381046295, 0.6094098091125488, -0.9315697550773621, 0.7566840052604675]} +{"t": 15.8984, "q": [-0.3038015067577362, 0.024276096373796463, -0.013753476552665234, 0.6132514476776123, -0.3072940409183502, -0.02559521421790123, -0.31245145201683044, 0.0011760519118979573, -0.005892434157431126, 0.6138905882835388, -0.3278721570968628, 0.007452800404280424, 0.0038300822488963604, -0.10112889856100082, 0.0026492131873965263, 0.029397305101156235, 0.3101397752761841, -0.1922389566898346, 1.3471827507019043, -0.41084322333335876, -0.022158833220601082, -0.32387369871139526, -0.7101731896400452, -0.6197402477264404, -0.6125736832618713, -0.08867128193378448, 0.6105483174324036, -0.9272075295448303, 0.7512311339378357]} +{"t": 15.9151, "q": [-0.30432987213134766, 0.024344274774193764, -0.013994530774652958, 0.6134474277496338, -0.30726951360702515, -0.025623958557844162, -0.31299686431884766, 0.001252750982530415, -0.006012961268424988, 0.6139076352119446, -0.3278017044067383, 0.007357757072895765, 0.0038970415480434895, -0.10129658132791519, 0.001973032020032406, 0.030583743005990982, 0.3099839687347412, -0.1922149956226349, 1.3472306728363037, -0.41084322333335876, -0.022182801738381386, -0.3238856792449951, -0.7225528955459595, -0.6275779008865356, -0.6160491108894348, -0.08350608497858047, 0.6122620701789856, -0.9225696325302124, 0.7442083954811096]} +{"t": 15.9319, "q": [-0.30524173378944397, 0.024412451311945915, -0.014315936714410782, 0.6137115955352783, -0.30722886323928833, -0.025696057826280594, -0.3137553334236145, 0.0013720606220886111, -0.006160271819680929, 0.6138564944267273, -0.32761067152023315, 0.007036520633846521, 0.004472893197089434, -0.1015108972787857, 0.0011885991552844644, 0.03129081055521965, 0.30988809466362, -0.1922149956226349, 1.3471587896347046, -0.41084322333335876, -0.022230736911296844, -0.323861688375473, -0.7356516718864441, -0.6368536949157715, -0.6216098070144653, -0.07814913243055344, 0.6153540015220642, -0.9175722002983093, 0.7380245327949524]} +{"t": 15.949, "q": [-0.3066990077495575, 0.024455061182379723, -0.014972139149904251, 0.6141718029975891, -0.30717992782592773, -0.025768039748072624, -0.31475239992141724, 0.0014317154418677092, -0.006709339562803507, 0.6138991117477417, -0.3275524079799652, 0.006919803097844124, 0.005812082905322313, -0.10159001499414444, 0.0004121700185351074, 0.031434621661901474, 0.3098401725292206, -0.1922149956226349, 1.3471587896347046, -0.41084322333335876, -0.022218754515051842, -0.32387369871139526, -0.7493137121200562, -0.6430734992027283, -0.6286205649375916, -0.07225289195775986, 0.6213221549987793, -0.9134256839752197, 0.7310856580734253]} +{"t": 15.9658, "q": [-0.3091704249382019, 0.024531761184334755, -0.01596313901245594, 0.6150836944580078, -0.3071269392967224, -0.025847265496850014, -0.31631195545196533, 0.0014572817599400878, -0.007887826301157475, 0.614018440246582, -0.32751086354255676, 0.0068468134850263596, 0.006937001831829548, -0.1010875329375267, -0.0006377066601999104, 0.03184208646416664, 0.3094806373119354, -0.19225093722343445, 1.3470748662948608, -0.41086718440055847, -0.022218754515051842, -0.323861688375473, -0.7654324769973755, -0.6464291214942932, -0.6369735598564148, -0.06774682551622391, 0.6306818127632141, -0.9076013565063477, 0.7201201319694519]} +{"t": 15.9825, "q": [-0.31026124954223633, 0.024540282785892487, -0.016338111832737923, 0.6154501438140869, -0.307081937789917, -0.025897564366459846, -0.31717270612716675, 0.0014317154418677092, -0.00839671865105629, 0.6143678426742554, -0.3274896442890167, 0.006737700197845697, 0.008128880523145199, -0.10079120844602585, -0.0009182043722830713, 0.03215367719531059, 0.3087855577468872, -0.1922629326581955, 1.34714674949646, -0.4108552038669586, -0.022218754515051842, -0.323861688375473, -0.7786270976066589, -0.6496288776397705, -0.6431334614753723, -0.06556569784879684, 0.6365421414375305, -0.904365599155426, 0.7120427489280701]} +{"t": 15.9993, "q": [-0.31061917543411255, 0.024540282785892487, -0.016391679644584656, 0.6154927611351013, -0.3070245087146759, -0.02594049647450447, -0.3173772096633911, 0.0014231932582333684, -0.00866455677896738, 0.6145041584968567, -0.3274688720703125, 0.006701196543872356, 0.00925379991531372, -0.10063402354717255, -0.00095223484095186, 0.033256225287914276, 0.30782681703567505, -0.1922149956226349, 1.34714674949646, -0.41084322333335876, -0.022230736911296844, -0.32387369871139526, -0.7900840044021606, -0.6534518599510193, -0.6468245983123779, -0.06443917751312256, 0.6422106623649597, -0.9018728733062744, 0.7047083973884583]} +{"t": 16.0161, "q": [-0.3106021285057068, 0.02456584945321083, -0.016391679644584656, 0.6154586672782898, -0.30702438950538635, -0.025925984606146812, -0.31736868619918823, 0.0014061490073800087, -0.00873151607811451, 0.6145723462104797, -0.32746461033821106, 0.006679377518594265, 0.009374327026307583, -0.10048441588878632, -0.0009915116243064404, 0.03544933721423149, 0.3066883087158203, -0.192191019654274, 1.3472665548324585, -0.41084322333335876, -0.022338595241308212, -0.32382574677467346, -0.8006061911582947, -0.6570231914520264, -0.6474837064743042, -0.06351639330387115, 0.6460576057434082, -0.8994280695915222, 0.6986803412437439]} +{"t": 16.0328, "q": [-0.310585081577301, 0.024608459323644638, -0.016391679644584656, 0.6154586672782898, -0.3070122003555298, -0.025947604328393936, -0.3172493875026703, 0.0014743260107934475, -0.008718123659491539, 0.614555299282074, -0.32747682929039, 0.006657685153186321, 0.009441286325454712, -0.10046235471963882, -0.0010238488903269172, 0.03753459453582764, 0.3055378198623657, -0.19209514558315277, 1.3476260900497437, -0.41084322333335876, -0.02232661098241806, -0.3237178921699524, -0.8087074756622314, -0.6622962355613708, -0.6469923853874207, -0.0631808340549469, 0.6488259434700012, -0.8969113826751709, 0.6935031414031982]} +{"t": 16.0496, "q": [-0.3107640743255615, 0.024642547592520714, -0.016552383080124855, 0.615441620349884, -0.30702438950538635, -0.025925984606146812, -0.3172408640384674, 0.0016618125373497605, -0.008878827095031738, 0.6144956350326538, -0.32747265696525574, 0.006650387775152922, 0.00958859734237194, -0.10049186646938324, -0.0009871450020000339, 0.03942809998989105, 0.30462703108787537, -0.19187943637371063, 1.3476141691207886, -0.41086718440055847, -0.022578280419111252, -0.32350218296051025, -0.8150231838226318, -0.6706731915473938, -0.6457699537277222, -0.06614094227552414, 0.649880588054657, -0.8952815532684326, 0.6867080926895142]} +{"t": 16.0663, "q": [-0.3110879063606262, 0.024634025990962982, -0.016605950891971588, 0.6153563857078552, -0.3070448637008667, -0.025904446840286255, -0.31740278005599976, 0.0016873788554221392, -0.0089190024882555, 0.614478588104248, -0.32748448848724365, 0.006570589728653431, 0.009374327026307583, -0.10049930959939957, -0.0009827757021412253, 0.04122573509812355, 0.30395591259002686, -0.19177156686782837, 1.3475662469863892, -0.4108911454677582, -0.022913837805390358, -0.32322654128074646, -0.818750262260437, -0.6826813817024231, -0.6437925696372986, -0.07050319761037827, 0.6505876183509827, -0.8936516642570496, 0.6778517365455627]} +{"t": 16.0831, "q": [-0.3115651309490204, 0.024634025990962982, -0.01645863987505436, 0.6151092648506165, -0.30706125497817993, -0.025890115648508072, -0.3172493875026703, 0.0017811221769079566, -0.008798475377261639, 0.6144530177116394, -0.3275091350078583, 0.006570806726813316, 0.009267191402614117, -0.10048359632492065, -0.0009338158997707069, 0.04266384243965149, 0.3036682903766632, -0.1917356252670288, 1.3475902080535889, -0.41090312600135803, -0.022997727617621422, -0.3230108320713043, -0.8196491003036499, -0.6995551586151123, -0.6392146348953247, -0.07802928984165192, 0.6507194638252258, -0.8909912109375, 0.6701578497886658]} +{"t": 16.1, "q": [-0.31199124455451965, 0.024608459323644638, -0.016164017841219902, 0.6149558424949646, -0.3070571720600128, -0.025897322222590446, -0.31629490852355957, 0.002011219272390008, -0.008517245762050152, 0.6148024797439575, -0.3274843990802765, 0.006556068081408739, 0.008637772873044014, -0.10044499486684799, -0.0008594975806772709, 0.04404202848672867, 0.3037641644477844, -0.1916637122631073, 1.347722053527832, -0.41090312600135803, -0.023069633170962334, -0.3229149580001831, -0.8205479383468628, -0.7168484330177307, -0.6350081562995911, -0.08802413195371628, 0.6510430574417114, -0.8872281312942505, 0.6618048548698425]} +{"t": 16.117, "q": [-0.31236621737480164, 0.024719247594475746, -0.015896180644631386, 0.6148791313171387, -0.3070654273033142, -0.025897402316331863, -0.31558758020401, 0.002386192325502634, -0.008195839822292328, 0.615143358707428, -0.327475905418396, 0.006512411404401064, 0.008249407634139061, -0.10026010870933533, -0.000531795434653759, 0.04462925344705582, 0.30386003851890564, -0.1916397511959076, 1.3480695486068726, -0.4109151065349579, -0.0228659026324749, -0.32290297746658325, -0.8240952491760254, -0.7370657920837402, -0.6289560794830322, -0.10276473313570023, 0.6521216034889221, -0.8828539252281189, 0.6515583395957947]} +{"t": 16.1338, "q": [-0.31267300248146057, 0.024957865476608276, -0.015896180644631386, 0.614623486995697, -0.3070613741874695, -0.025904608890414238, -0.3158262073993683, 0.0026929883752018213, -0.008182448334991932, 0.6152200102806091, -0.3274799585342407, 0.006505186669528484, 0.008155664429068565, -0.09989362210035324, -0.00010755527910077944, 0.044377587735652924, 0.3039678931236267, -0.1916637122631073, 1.3480935096740723, -0.4108911454677582, -0.022829949855804443, -0.322890967130661, -0.828385591506958, -0.7544429302215576, -0.623287558555603, -0.11802065372467041, 0.6538712978363037, -0.8787552714347839, 0.63995760679245]} +{"t": 16.1505, "q": [-0.31259632110595703, 0.02504308708012104, -0.016070274636149406, 0.6142314672470093, -0.30705323815345764, -0.025919022038578987, -0.315775066614151, 0.002880475018173456, -0.008423502556979656, 0.6152796745300293, -0.32749634981155396, 0.006490809842944145, 0.00831636693328619, -0.09960434585809708, 0.00016826952924020588, 0.044137902557849884, 0.303943932056427, -0.1916157752275467, 1.3480695486068726, -0.41092708706855774, -0.02274606004357338, -0.3228670060634613, -0.8323643803596497, -0.7710650563240051, -0.6172714829444885, -0.13590110838413239, 0.6575624346733093, -0.8743571043014526, 0.6265951991081238]} +{"t": 16.1673, "q": [-0.31235769391059875, 0.025247618556022644, -0.016177410259842873, 0.6141718029975891, -0.30705323815345764, -0.025919022038578987, -0.31567278504371643, 0.0031276163645088673, -0.008544029667973518, 0.6154757142066956, -0.3275372385978699, 0.006462127435952425, 0.008236016146838665, -0.09897518157958984, 0.0005836976342834532, 0.044137902557849884, 0.30375218391418457, -0.1916637122631073, 1.3480814695358276, -0.41086718440055847, -0.02269812300801277, -0.3228190839290619, -0.8376973271369934, -0.7870520353317261, -0.6091341972351074, -0.15246331691741943, 0.6634227633476257, -0.8701146841049194, 0.6120583415031433]} +{"t": 16.184, "q": [-0.31176966428756714, 0.025477714836597443, -0.016177410259842873, 0.6139076352119446, -0.30705323815345764, -0.025919022038578987, -0.3154597580432892, 0.003400324145331979, -0.00847707036882639, 0.6156546473503113, -0.3275986611843109, 0.006426346953958273, 0.008209232240915298, -0.09845183789730072, 0.0009446553885936737, 0.044137902557849884, 0.30358439683914185, -0.19167569279670715, 1.348057508468628, -0.41086718440055847, -0.022722091525793076, -0.32278311252593994, -0.8422154188156128, -0.8016607761383057, -0.6021114587783813, -0.16781510412693024, 0.6693189740180969, -0.864170491695404, 0.597509503364563]} +{"t": 16.2008, "q": [-0.3113350570201874, 0.025852687656879425, -0.016164017841219902, 0.6137030720710754, -0.3070574402809143, -0.02592630870640278, -0.3150080740451813, 0.0037412086967378855, -0.008463677950203419, 0.6156376004219055, -0.3276357054710388, 0.006433933507651091, 0.007941394113004208, -0.09786805510520935, 0.0013275245437398553, 0.044077981263399124, 0.303428590297699, -0.19167569279670715, 1.3480695486068726, -0.41086718440055847, -0.02268613874912262, -0.3227471709251404, -0.8456189036369324, -0.8154426217079163, -0.597281813621521, -0.1832028478384018, 0.6733217239379883, -0.857890784740448, 0.5820258855819702]} +{"t": 16.2176, "q": [-0.3110964298248291, 0.026142440736293793, -0.01613723486661911, 0.6134048104286194, -0.3070491850376129, -0.02592622861266136, -0.314956933259964, 0.004022438544780016, -0.00847707036882639, 0.6156802177429199, -0.32766422629356384, 0.0063978638499975204, 0.007499461527913809, -0.09724655002355576, 0.0017270620446652174, 0.04411393404006958, 0.30328479409217834, -0.19169966876506805, 1.3480814695358276, -0.41084322333335876, -0.022614233195781708, -0.3226992189884186, -0.8474645018577576, -0.826815664768219, -0.5936385989189148, -0.19873440265655518, 0.6798531413078308, -0.853564441204071, 0.5649963021278381]} +{"t": 16.2344, "q": [-0.3110197186470032, 0.026227660477161407, -0.01615062542259693, 0.6132855415344238, -0.30704089999198914, -0.025926165282726288, -0.3149910271167755, 0.004133225884288549, -0.008410110138356686, 0.6157569289207458, -0.32767254114151, 0.006412476301193237, 0.00709770480170846, -0.09660272300243378, 0.0021135718561708927, 0.04404202848672867, 0.3031170070171356, -0.1917356252670288, 1.3481295108795166, -0.4108911454677582, -0.022650185972452164, -0.3226393163204193, -0.848567008972168, -0.8356000781059265, -0.5903908610343933, -0.2128278613090515, 0.6891288757324219, -0.8509279489517212, 0.5480026602745056]} +{"t": 16.2512, "q": [-0.31084075570106506, 0.026270270347595215, -0.01615062542259693, 0.613132119178772, -0.3070327639579773, -0.025940578430891037, -0.31502512097358704, 0.004099137615412474, -0.008356543257832527, 0.6159955263137817, -0.3276766240596771, 0.006405251566320658, 0.006709339562803507, -0.09581475704908371, 0.002598906634375453, 0.04387424886226654, 0.30293723940849304, -0.19177156686782837, 1.3483811616897583, -0.4108072519302368, -0.022422485053539276, -0.32257938385009766, -0.8505324721336365, -0.8431261777877808, -0.5883296132087708, -0.22574685513973236, 0.6964272856712341, -0.8494418859481812, 0.5296667814254761]} +{"t": 16.2679, "q": [-0.3107896149158478, 0.026287317276000977, -0.016097059473395348, 0.6131662130355835, -0.3070124387741089, -0.02597660943865776, -0.3149910271167755, 0.004048004746437073, -0.008302975445985794, 0.6162341833114624, -0.3277096748352051, 0.006434584502130747, 0.00672273151576519, -0.09507385641336441, 0.0029367138631641865, 0.04314320906996727, 0.3027215301990509, -0.19175958633422852, 1.3483092784881592, -0.41079527139663696, -0.02238653227686882, -0.3225434422492981, -0.8517548441886902, -0.8524259328842163, -0.586819589138031, -0.23756329715251923, 0.7025991678237915, -0.847428560256958, 0.511067271232605]} +{"t": 16.2846, "q": [-0.3106873631477356, 0.026287317276000977, -0.016016706824302673, 0.6131576895713806, -0.30698370933532715, -0.0259980671107769, -0.314956933259964, 0.0039116512052714825, -0.008262800052762032, 0.6162682771682739, -0.32769322395324707, 0.006434439681470394, 0.00676290737465024, -0.09463939070701599, 0.0028552894946187735, 0.04296344891190529, 0.3026975691318512, -0.19175958633422852, 1.3483332395553589, -0.41077131032943726, -0.022362563759088516, -0.32250747084617615, -0.8529412746429443, -0.8602277040481567, -0.5861005187034607, -0.2474023401737213, 0.7103649377822876, -0.8430303335189819, 0.49697384238243103]} +{"t": 16.3014, "q": [-0.31053397059440613, 0.026287317276000977, -0.01593635603785515, 0.6131491661071777, -0.30697980523109436, -0.026019783690571785, -0.31496545672416687, 0.0038008634001016617, -0.008195839822292328, 0.6163108944892883, -0.32771798968315125, 0.006449196953326464, 0.006776299327611923, -0.09418477863073349, 0.0026073346380144358, 0.043119240552186966, 0.30266159772872925, -0.19178356230258942, 1.348345160484314, -0.4107832908630371, -0.022398516535758972, -0.3225194811820984, -0.8536843061447144, -0.8675260543823242, -0.5861964225769043, -0.25680994987487793, 0.7179509401321411, -0.839447021484375, 0.47894954681396484]} +{"t": 16.3182, "q": [-0.31047430634498596, 0.02623618394136429, -0.01581582799553871, 0.6130298376083374, -0.30697178840637207, -0.026048708707094193, -0.3151699900627136, 0.0036389431916177273, -0.008021745830774307, 0.616353452205658, -0.32778823375701904, 0.0065151602029800415, 0.006669164169579744, -0.09359649568796158, 0.0022517479956150055, 0.04325106739997864, 0.3024458885192871, -0.19179554283618927, 1.3483092784881592, -0.4107832908630371, -0.022458437830209732, -0.32255542278289795, -0.8537442088127136, -0.8741893172264099, -0.5861244797706604, -0.26458773016929626, 0.7266155481338501, -0.8374576568603516, 0.4645804762840271]} +{"t": 16.3349, "q": [-0.31038057804107666, 0.02619357407093048, -0.01565512642264366, 0.6128935217857361, -0.30685779452323914, -0.026236046105623245, -0.31530633568763733, 0.003477022983133793, -0.007794083096086979, 0.6162768006324768, -0.3278129994869232, 0.006529917474836111, 0.006240623537451029, -0.09282112121582031, 0.001794199226424098, 0.04332297295331955, 0.30193057656288147, -0.19178356230258942, 1.348189353942871, -0.41081923246383667, -0.022470422089099884, -0.32253146171569824, -0.8537561893463135, -0.881439745426178, -0.5858967900276184, -0.2725212872028351, 0.7350165247917175, -0.834653377532959, 0.4467119872570038]} +{"t": 16.3517, "q": [-0.31028681993484497, 0.026168007403612137, -0.0155345993116498, 0.61275714635849, -0.30675193667411804, -0.026408951729536057, -0.31562167406082153, 0.0033747577108442783, -0.007539637386798859, 0.6162256598472595, -0.3278253674507141, 0.006537287030369043, 0.0059995693154633045, -0.09211999177932739, 0.0014098527608439326, 0.043346941471099854, 0.3011516034603119, -0.19178356230258942, 1.3482013940811157, -0.41084322333335876, -0.02250637486577034, -0.3225194811820984, -0.8535165190696716, -0.8903080821037292, -0.5859447121620178, -0.27979570627212524, 0.7426504492759705, -0.8320647478103638, 0.4305093288421631]} +{"t": 16.3685, "q": [-0.31001412868499756, 0.026108350604772568, -0.015414072200655937, 0.6125185489654541, -0.30660542845726013, -0.02665395848453045, -0.31657615303993225, 0.0033065807074308395, -0.007338759023696184, 0.6161830425262451, -0.3278293311595917, 0.006515540182590485, 0.0057719070464372635, -0.09133012592792511, 0.0009150937548838556, 0.04406599700450897, 0.300252765417099, -0.19177156686782837, 1.3482732772827148, -0.4108791649341583, -0.022578280419111252, -0.32253146171569824, -0.8535524606704712, -0.898313581943512, -0.5860406160354614, -0.28683045506477356, 0.7506439089775085, -0.830554723739624, 0.4159245193004608]} +{"t": 16.3852, "q": [-0.30979254841804504, 0.026091307401657104, -0.015481031499803066, 0.6120583415031433, -0.3065769672393799, -0.026704419404268265, -0.3178715109825134, 0.003272492438554764, -0.007325367070734501, 0.6158762574195862, -0.3278212249279022, 0.006529989652335644, 0.005691555794328451, -0.09040487557649612, 0.0003780393162742257, 0.04496481269598007, 0.299282044172287, -0.19178356230258942, 1.3484770059585571, -0.41086718440055847, -0.022530343383550644, -0.3225194811820984, -0.8529292941093445, -0.9058036804199219, -0.5861244797706604, -0.29447638988494873, 0.7571513652801514, -0.8299794793128967, 0.4030774235725403]} +{"t": 16.402, "q": [-0.3099033236503601, 0.026082783937454224, -0.015561383217573166, 0.6116748452186584, -0.3065812885761261, -0.026726217940449715, -0.31882598996162415, 0.0031872710678726435, -0.007311975117772818, 0.6154075264930725, -0.3279280662536621, 0.0065309121273458, 0.005624596029520035, -0.08938290178775787, -0.00024577786098234355, 0.0451325923204422, 0.2981555461883545, -0.19169966876506805, 1.3487526178359985, -0.4108911454677582, -0.022482406347990036, -0.32245954871177673, -0.8520544171333313, -0.915427029132843, -0.5859447121620178, -0.3026735782623291, 0.7613818049430847, -0.8298237323760986, 0.39108121395111084]} +{"t": 16.4189, "q": [-0.3099544644355774, 0.02606574073433876, -0.015614950098097324, 0.6113680601119995, -0.3065609633922577, -0.02676226757466793, -0.3190731108188629, 0.0031190942972898483, -0.007311975117772818, 0.6152455806732178, -0.3280014991760254, 0.006444413680583239, 0.005530852824449539, -0.08852467685937881, -0.0007933898014016449, 0.04514457657933235, 0.2970769703388214, -0.19169966876506805, 1.3487646579742432, -0.4108552038669586, -0.022530343383550644, -0.32235169410705566, -0.8501489758491516, -0.925290048122406, -0.584590494632721, -0.31057119369506836, 0.7651208639144897, -0.8296559453010559, 0.38176947832107544]} +{"t": 16.4356, "q": [-0.3104231655597687, 0.02606574073433876, -0.015735477209091187, 0.6112743020057678, -0.3065408766269684, -0.026827305555343628, -0.3197293281555176, 0.003067961661145091, -0.007311975117772818, 0.6151774525642395, -0.3281274139881134, 0.006205850746482611, 0.005879042204469442, -0.08757613599300385, -0.0013360008597373962, 0.04514457657933235, 0.2961302101612091, -0.19167569279670715, 1.3487526178359985, -0.41084322333335876, -0.022578280419111252, -0.32218390703201294, -0.8458465933799744, -0.9360039234161377, -0.5804080367088318, -0.319379597902298, 0.7694951295852661, -0.8296918869018555, 0.3699650168418884]} +{"t": 16.4523, "q": [-0.310772567987442, 0.026048697531223297, -0.015735477209091187, 0.6110612154006958, -0.3064228296279907, -0.027021847665309906, -0.32060709595680237, 0.0030594393610954285, -0.007178056053817272, 0.6152200102806091, -0.3281638026237488, 0.006111747585237026, 0.005745123140513897, -0.08664143085479736, -0.0018131134565919638, 0.04568386822938919, 0.29542315006256104, -0.1916876882314682, 1.3488365411758423, -0.41090312600135803, -0.022530343383550644, -0.3221359848976135, -0.8432220816612244, -0.9462025165557861, -0.5737926959991455, -0.32894301414489746, 0.7726589441299438, -0.8297637701034546, 0.3594428598880768]} +{"t": 16.4691, "q": [-0.31116458773612976, 0.026057220995426178, -0.015735477209091187, 0.6108822822570801, -0.306301087141037, -0.0272670965641737, -0.32161271572113037, 0.0031617048662155867, -0.007044136989861727, 0.6152881979942322, -0.32815948128700256, 0.006075406447052956, 0.0055978125892579556, -0.08561395853757858, -0.002123200334608555, 0.04631903022527695, 0.2947879731655121, -0.19167569279670715, 1.3489084243774414, -0.4108911454677582, -0.022602248936891556, -0.3220161199569702, -0.8414124250411987, -0.9561854004859924, -0.5656314492225647, -0.3384464979171753, 0.7758827209472656, -0.8297398090362549, 0.35049065947532654]} +{"t": 16.4859, "q": [-0.3113180100917816, 0.026082783937454224, -0.015735477209091187, 0.610584020614624, -0.3060772120952606, -0.02763458341360092, -0.32220926880836487, 0.0033747577108442783, -0.006736123468726873, 0.6153393387794495, -0.3280757665634155, 0.0058277384378015995, 0.0055442447774112225, -0.08474654704332352, -0.0019694173242896795, 0.04658268392086029, 0.29429662227630615, -0.19167569279670715, 1.3489683866500854, -0.4109151065349579, -0.022578280419111252, -0.321920245885849, -0.8394350409507751, -0.9666596055030823, -0.5590041875839233, -0.34712308645248413, 0.7772489190101624, -0.8297757506370544, 0.3441150486469269]} +{"t": 16.5027, "q": [-0.3114202618598938, 0.02611687406897545, -0.015829220414161682, 0.6103965044021606, -0.30588188767433167, -0.027966100722551346, -0.3224308490753174, 0.003442934714257717, -0.00672273151576519, 0.6153478622436523, -0.3279843330383301, 0.005667147226631641, 0.005571028683334589, -0.08413439244031906, -0.0017609037458896637, 0.0466306209564209, 0.2940569221973419, -0.1916637122631073, 1.3489803075790405, -0.4108791649341583, -0.022590264678001404, -0.3218483626842499, -0.837565541267395, -0.9742456078529358, -0.5550973415374756, -0.3536424934864044, 0.7780278921127319, -0.8297757506370544, 0.3373199999332428]} +{"t": 16.5194, "q": [-0.31153956055641174, 0.026142440736293793, -0.015896180644631386, 0.610302746295929, -0.3058290183544159, -0.02805979922413826, -0.32257571816444397, 0.0035537220537662506, -0.0068030827678740025, 0.6154075264930725, -0.327966570854187, 0.00544910179451108, 0.005504068918526173, -0.08341602981090546, -0.0014905696734786034, 0.0466306209564209, 0.29379329085350037, -0.1916637122631073, 1.3489563465118408, -0.4109151065349579, -0.022650185972452164, -0.3218004107475281, -0.8360674977302551, -0.9806931018829346, -0.5524008870124817, -0.3591912090778351, 0.7789866328239441, -0.8298117518424988, 0.32882317900657654]} +{"t": 16.5361, "q": [-0.31163331866264343, 0.0261850506067276, -0.015909571200609207, 0.6103112697601318, -0.30581262707710266, -0.028074132278561592, -0.32264387607574463, 0.0036389431916177273, -0.006843258626759052, 0.6154927611351013, -0.32805171608924866, 0.005268300883471966, 0.005477285478264093, -0.0822833999991417, -0.0012052415404468775, 0.0466306209564209, 0.2934337556362152, -0.19169966876506805, 1.3489563465118408, -0.41092708706855774, -0.022542327642440796, -0.3217405080795288, -0.8358997106552124, -0.9847916960716248, -0.5508309602737427, -0.36296623945236206, 0.7806044816970825, -0.8299435377120972, 0.32168057560920715]} +{"t": 16.5529, "q": [-0.3116588890552521, 0.0261850506067276, -0.015896180644631386, 0.6103283166885376, -0.3058004379272461, -0.028095750138163567, -0.3226609230041504, 0.0036730316933244467, -0.006843258626759052, 0.6155609488487244, -0.3280797302722931, 0.005145063623785973, 0.005477285478264093, -0.08073104918003082, -0.0011224821209907532, 0.046678557991981506, 0.2928345501422882, -0.19172362983226776, 1.3489803075790405, -0.41086718440055847, -0.022542327642440796, -0.32170453667640686, -0.8360075950622559, -0.98738032579422, -0.5507950186729431, -0.36519530415534973, 0.7820665836334229, -0.8300514221191406, 0.3150772750377655]} +{"t": 16.5696, "q": [-0.31162479519844055, 0.02617652714252472, -0.01578904502093792, 0.6103197932243347, -0.30579623579978943, -0.028088463470339775, -0.3226183354854584, 0.003707120195031166, -0.0067896912805736065, 0.6155949831008911, -0.3280961513519287, 0.005145208444446325, 0.005490677431225777, -0.07890227437019348, -0.0012448634952306747, 0.046798400580883026, 0.2920675575733185, -0.19174760580062866, 1.3490402698516846, -0.41086718440055847, -0.02250637486577034, -0.32170453667640686, -0.8363311290740967, -0.9895015358924866, -0.5509028434753418, -0.3670528531074524, 0.7844035029411316, -0.8300634026527405, 0.30780282616615295]} +{"t": 16.5863, "q": [-0.31153956055641174, 0.026159483939409256, -0.015668518841266632, 0.6105328798294067, -0.3057880997657776, -0.028102876618504524, -0.32226890325546265, 0.003766775131225586, -0.00672273151576519, 0.6156631708145142, -0.3280504643917084, 0.005064921919256449, 0.005343366414308548, -0.07696045935153961, -0.0014370243297889829, 0.046954195946455, 0.2914204001426697, -0.19181950390338898, 1.3490642309188843, -0.41084322333335876, -0.022470422089099884, -0.32170453667640686, -0.8365228772163391, -0.991263210773468, -0.5509867668151855, -0.36835911870002747, 0.7864887714385986, -0.8300514221191406, 0.3020264506340027]} +{"t": 16.603, "q": [-0.31139469146728516, 0.026082783937454224, -0.015400679782032967, 0.6106010675430298, -0.30579203367233276, -0.028081174939870834, -0.32203030586242676, 0.003715642262250185, -0.0066289883106946945, 0.615748405456543, -0.3280506432056427, 0.00509396567940712, 0.00512909609824419, -0.0752658024430275, -0.0015108247753232718, 0.04705007001757622, 0.2910129427909851, -0.19181950390338898, 1.3490642309188843, -0.41081923246383667, -0.02244645357131958, -0.32170453667640686, -0.836762547492981, -0.9925095438957214, -0.5513103008270264, -0.369174063205719, 0.7869441509246826, -0.8299914598464966, 0.29654964804649353]} +{"t": 16.6198, "q": [-0.31134355068206787, 0.026014607399702072, -0.015132841654121876, 0.6106436848640442, -0.30579203367233276, -0.028081174939870834, -0.32158714532852173, 0.0036815537605434656, -0.006481677293777466, 0.6158847808837891, -0.3280424177646637, 0.005093893501907587, 0.004553244449198246, -0.0736752450466156, -0.0015055645490065217, 0.047086022794246674, 0.2907852530479431, -0.19187943637371063, 1.3490042686462402, -0.4108312129974365, -0.022470422089099884, -0.32172849774360657, -0.8368943929672241, -0.9954097270965576, -0.5518376231193542, -0.36881452798843384, 0.7866925001144409, -0.8294042348861694, 0.29067736864089966]} +{"t": 16.6365, "q": [-0.3113776445388794, 0.025920866057276726, -0.014650734141469002, 0.6107288599014282, -0.30577513575553894, -0.028037533164024353, -0.32097354531288147, 0.0036133769899606705, -0.006187055725604296, 0.6162171363830566, -0.3280094563961029, 0.00507908221334219, 0.00388364982791245, -0.0726785659790039, -0.0013576303608715534, 0.047038085758686066, 0.290761262178421, -0.1919153779745102, 1.3490163087844849, -0.41081923246383667, -0.022434469312429428, -0.3217405080795288, -0.8359476327896118, -1.0012340545654297, -0.552089273929596, -0.3683471381664276, 0.7840319871902466, -0.8271751999855042, 0.287393718957901]} +{"t": 16.6533, "q": [-0.3114714026451111, 0.025844166055321693, -0.013874003663659096, 0.6108226180076599, -0.3057499825954437, -0.027993790805339813, -0.31910720467567444, 0.0036133769899606705, -0.005530852824449539, 0.6167369484901428, -0.3278737962245941, 0.0050706276670098305, 0.0028122980147600174, -0.07233656197786331, -0.0010878276079893112, 0.04721784591674805, 0.2908451557159424, -0.1919393539428711, 1.3490163087844849, -0.4107832908630371, -0.022434469312429428, -0.32175248861312866, -0.8335987329483032, -1.0092995166778564, -0.5512384176254272, -0.36748427152633667, 0.7792502641677856, -0.820907473564148, 0.2864469587802887]} +{"t": 16.67, "q": [-0.3114714026451111, 0.025869732722640038, -0.013592774048447609, 0.6110186576843262, -0.3057541847229004, -0.028001079335808754, -0.3183572590351105, 0.003715642262250185, -0.005316582508385181, 0.6167454719543457, -0.3277795910835266, 0.005120622459799051, 0.001941824913956225, -0.07205898314714432, -0.00047858364996500313, 0.0472298301756382, 0.29092904925346375, -0.19192737340927124, 1.3491241931915283, -0.41081923246383667, -0.022434469312429428, -0.32172849774360657, -0.8263842463493347, -1.0202889442443848, -0.5461571216583252, -0.361480176448822, 0.7714725136756897, -0.8099059462547302, 0.2864948809146881]} +{"t": 16.6869, "q": [-0.31172704696655273, 0.025869732722640038, -0.013592774048447609, 0.6109248995780945, -0.30574172735214233, -0.027993710711598396, -0.31854474544525146, 0.003698598127812147, -0.005329974461346865, 0.6166858673095703, -0.3277263939380646, 0.005156493280082941, 0.0018480815924704075, -0.07286833971738815, -1.1789444215537515e-05, 0.04719387739896774, 0.29120469093322754, -0.1919153779745102, 1.3492200374603271, -0.4107593297958374, -0.022362563759088516, -0.32172849774360657, -0.8145078420639038, -1.0337233543395996, -0.5383673310279846, -0.35542815923690796, 0.7611780762672424, -0.7987366318702698, 0.2873218059539795]} +{"t": 16.7036, "q": [-0.31167593598365784, 0.025861211121082306, -0.013606165535748005, 0.6113083958625793, -0.30571669340133667, -0.027964461594820023, -0.31814420223236084, 0.0038008634001016617, -0.005504068918526173, 0.6167625188827515, -0.3276525139808655, 0.005170364398509264, 0.0016472031129524112, -0.07398447394371033, 0.0006186516839079559, 0.04721784591674805, 0.29160016775131226, -0.19187943637371063, 1.3492439985275269, -0.4107832908630371, -0.02231462672352791, -0.321692556142807, -0.8016008734703064, -1.0491949319839478, -0.5254603624343872, -0.34848928451538086, 0.7466172575950623, -0.7858535647392273, 0.2892392873764038]} +{"t": 16.7204, "q": [-0.3116844594478607, 0.02587825432419777, -0.013632949441671371, 0.6114447116851807, -0.3057248294353485, -0.027950050309300423, -0.31804195046424866, 0.003783819265663624, -0.0055442447774112225, 0.6167880892753601, -0.3276647925376892, 0.005163193680346012, 0.0016472031129524112, -0.07548584789037704, 0.0011402320815250278, 0.04715792462229729, 0.29217541217803955, -0.19184347987174988, 1.3492799997329712, -0.4108072519302368, -0.02238653227686882, -0.321692556142807, -0.7873036861419678, -1.0653257369995117, -0.5109474658966064, -0.34212565422058105, 0.7303786277770996, -0.771532416343689, 0.2927626371383667]} +{"t": 16.7374, "q": [-0.31171002984046936, 0.02581859938800335, -0.013673125766217709, 0.6113595366477966, -0.30571249127388, -0.02795717492699623, -0.31789708137512207, 0.0037326866295188665, -0.005624596029520035, 0.6165494918823242, -0.3276404142379761, 0.005206560716032982, 0.0021427033934742212, -0.07763905823230743, 0.0019046834204345942, 0.04718189314007759, 0.2929424047470093, -0.19180752336978912, 1.3493998050689697, -0.41079527139663696, -0.022470422089099884, -0.3216206431388855, -0.770993173122406, -1.082582950592041, -0.4978846311569214, -0.33458757400512695, 0.7135527729988098, -0.7584217190742493, 0.29724472761154175]} +{"t": 16.7541, "q": [-0.3117867112159729, 0.025793032720685005, -0.013699909672141075, 0.6113595366477966, -0.30572062730789185, -0.027942761778831482, -0.317828893661499, 0.0036645096261054277, -0.00571833923459053, 0.616489827632904, -0.3276404142379761, 0.005206560716032982, 0.002276622224599123, -0.08010133355855942, 0.0031602352391928434, 0.04715792462229729, 0.293565571308136, -0.19169966876506805, 1.3494837284088135, -0.41081923246383667, -0.022470422089099884, -0.32158470153808594, -0.7543470859527588, -1.1015900373458862, -0.4825807809829712, -0.32230374217033386, 0.6925923228263855, -0.7423508763313293, 0.3042914569377899]} +{"t": 16.7709, "q": [-0.3119741976261139, 0.025793032720685005, -0.013659733347594738, 0.6113510131835938, -0.3057290017604828, -0.027957336977124214, -0.3179396688938141, 0.0036730316933244467, -0.005678163841366768, 0.6163023710250854, -0.32763227820396423, 0.005221010185778141, 0.0021962709724903107, -0.08215652406215668, 0.004315068945288658, 0.04761332646012306, 0.29385319352149963, -0.19169966876506805, 1.349531650543213, -0.4108552038669586, -0.022674154490232468, -0.3215727210044861, -0.739546537399292, -1.1182960271835327, -0.47048869729042053, -0.30942070484161377, 0.6741006970405579, -0.7280776500701904, 0.31061914563179016]} +{"t": 16.7876, "q": [-0.3122809827327728, 0.02576746791601181, -0.013686517253518105, 0.6112061142921448, -0.30573713779449463, -0.027942923828959465, -0.3179396688938141, 0.0036304211243987083, -0.00575851509347558, 0.6159103512763977, -0.3276323676109314, 0.005235549993813038, 0.002276622224599123, -0.08400038629770279, 0.005409473553299904, 0.048236507922410965, 0.29397305846214294, -0.1916397511959076, 1.349543571472168, -0.4108911454677582, -0.022710107266902924, -0.32156074047088623, -0.7230203151702881, -1.1374467611312866, -0.46187204122543335, -0.2959024906158447, 0.65339195728302, -0.7136006951332092, 0.31589218974113464]} +{"t": 16.8043, "q": [-0.31222987174987793, 0.025724856182932854, -0.013592774048447609, 0.6110697388648987, -0.3057370185852051, -0.0279284305870533, -0.3179822862148285, 0.0035537220537662506, -0.005691555794328451, 0.6158506870269775, -0.3276406526565552, 0.00525014428421855, 0.0015266761183738708, -0.08547741919755936, 0.006294148974120617, 0.049626678228378296, 0.2940329611301422, -0.19154387712478638, 1.349603533744812, -0.41092708706855774, -0.022841934114694595, -0.3215487599372864, -0.7103649377822876, -1.1545602083206177, -0.45355498790740967, -0.2828277051448822, 0.6346845626831055, -0.6995192170143127, 0.32103341817855835]} +{"t": 16.821, "q": [-0.31217873096466064, 0.025716334581375122, -0.013204408809542656, 0.6109675168991089, -0.30576154589653015, -0.027899667620658875, -0.31814420223236084, 0.0035537220537662506, -0.005289798602461815, 0.615671694278717, -0.3276366889476776, 0.0052718911319971085, 0.0004151487664785236, -0.08599923551082611, 0.00662227813154459, 0.051184624433517456, 0.2941408157348633, -0.19155585765838623, 1.3500230312347412, -0.41092708706855774, -0.02275804430246353, -0.3215247690677643, -0.6976017355918884, -1.172836184501648, -0.446951687335968, -0.26886609196662903, 0.6169958710670471, -0.686120867729187, 0.32582712173461914]} +{"t": 16.8379, "q": [-0.31181228160858154, 0.025733379647135735, -0.013043706305325031, 0.6106181144714355, -0.3057655990123749, -0.02789246290922165, -0.31795671582221985, 0.003562244353815913, -0.00516927195712924, 0.6151604056358337, -0.3276366889476776, 0.0052718911319971085, -0.0006562029011547565, -0.0860290676355362, 0.006639921572059393, 0.05193963274359703, 0.2941048741340637, -0.19147196412086487, 1.3503705263137817, -0.41092708706855774, -0.022734075784683228, -0.3214169144630432, -0.6856894493103027, -1.1895421743392944, -0.4449622929096222, -0.2570137083530426, 0.6026867032051086, -0.6731778979301453, 0.32852357625961304]} +{"t": 16.8546, "q": [-0.31121572852134705, 0.025724856182932854, -0.012682124972343445, 0.6102346181869507, -0.3057737350463867, -0.0278780497610569, -0.31771811842918396, 0.0035366779193282127, -0.00479429867118597, 0.6150581240653992, -0.3276572823524475, 0.0052793510258197784, -0.002008784329518676, -0.08600656688213348, 0.006636272184550762, 0.05225122347474098, 0.29417678713798523, -0.19145998358726501, 1.3506221771240234, -0.41092708706855774, -0.022734075784683228, -0.32117724418640137, -0.6765934228897095, -1.20518159866333, -0.4446626901626587, -0.24449017643928528, 0.5892882943153381, -0.658557116985321, 0.3287872076034546]} +{"t": 16.8713, "q": [-0.31057658791542053, 0.02570781297981739, -0.012387503869831562, 0.6097488403320312, -0.3057779371738434, -0.02788533642888069, -0.3175561726093292, 0.003519633784890175, -0.0044996771030128, 0.6151604056358337, -0.3276902437210083, 0.005294144153594971, -0.0038300822488963604, -0.08589380234479904, 0.006637193728238344, 0.052203286439180374, 0.2942606806755066, -0.19145998358726501, 1.3507180213928223, -0.41092708706855774, -0.022650185972452164, -0.3209974765777588, -0.670433521270752, -1.217657208442688, -0.4448544383049011, -0.23359651863574982, 0.5774838328361511, -0.6457100510597229, 0.3286793529987335]} +{"t": 16.8881, "q": [-0.31025272607803345, 0.025724856182932854, -0.012427679263055325, 0.6094931960105896, -0.305769681930542, -0.027885256335139275, -0.3173005282878876, 0.003519633784890175, -0.004606812261044979, 0.6151774525642395, -0.32769858837127686, 0.0053087566047906876, -0.006937001831829548, -0.08563818037509918, 0.006640482693910599, 0.052095428109169006, 0.29429662227630615, -0.19147196412086487, 1.3508259057998657, -0.4108911454677582, -0.022614233195781708, -0.3208416700363159, -0.6641417741775513, -1.229988932609558, -0.44492635130882263, -0.22362564504146576, 0.5670216083526611, -0.6302264332771301, 0.32767269015312195]} +{"t": 16.9048, "q": [-0.30998003482818604, 0.025835644453763962, -0.012427679263055325, 0.6091352701187134, -0.30576154589653015, -0.027899667620658875, -0.31730905175209045, 0.0036389431916177273, -0.004593420308083296, 0.6152711510658264, -0.32770246267318726, 0.005272469483315945, -0.010526030324399471, -0.08562339842319489, 0.006622067652642727, 0.0520714595913887, 0.29436853528022766, -0.19148394465446472, 1.3509337902069092, -0.4108911454677582, -0.0225662961602211, -0.3206739127635956, -0.6577422022819519, -1.24069082736969, -0.44617271423339844, -0.21389445662498474, 0.5587165355682373, -0.6141675710678101, 0.3263424336910248]} +{"t": 16.9215, "q": [-0.30979254841804504, 0.025980520993471146, -0.012494638562202454, 0.6091693043708801, -0.3057574927806854, -0.02790687419474125, -0.31727495789527893, 0.0037326866295188665, -0.004620204214006662, 0.6153819561004639, -0.3276819586753845, 0.005279549863189459, -0.014905179850757122, -0.0856311097741127, 0.006607315503060818, 0.052203286439180374, 0.2944883704185486, -0.19148394465446472, 1.3511614799499512, -0.4108911454677582, -0.022470422089099884, -0.32043421268463135, -0.651534378528595, -1.2497628927230835, -0.44642436504364014, -0.20403143763542175, 0.5524368286132812, -0.5978929996490479, 0.32405343651771545]} +{"t": 16.9383, "q": [-0.30974993109703064, 0.026108350604772568, -0.012561597861349583, 0.6091352701187134, -0.30574947595596313, -0.027935780584812164, -0.31726643443107605, 0.0038690404035151005, -0.004633595701307058, 0.6154501438140869, -0.3276861011981964, 0.005286846775561571, -0.0186415184289217, -0.08560140430927277, 0.006580067332834005, 0.05198756977915764, 0.29464414715766907, -0.19150792062282562, 1.3524677753448486, -0.41081923246383667, -0.02231462672352791, -0.3199189007282257, -0.645182728767395, -1.2570374011993408, -0.446580171585083, -0.19587017595767975, 0.5467563271522522, -0.5822895169258118, 0.32147684693336487]} +{"t": 16.955, "q": [-0.30961358547210693, 0.02617652714252472, -0.012534813955426216, 0.6093056797981262, -0.30573713779449463, -0.027942923828959465, -0.3173005282878876, 0.003834951901808381, -0.004432717338204384, 0.615671694278717, -0.32767796516418457, 0.005301296710968018, -0.0211859792470932, -0.08551176637411118, 0.006536650937050581, 0.0517718531191349, 0.29466813802719116, -0.19153188169002533, 1.3542894124984741, -0.41084322333335876, -0.022302642464637756, -0.31896016001701355, -0.638759195804596, -1.263964295387268, -0.4468318521976471, -0.1874692291021347, 0.5378640294075012, -0.5675968527793884, 0.3194994330406189]} +{"t": 16.9717, "q": [-0.30938348174095154, 0.026142440736293793, -0.012293760664761066, 0.6093056797981262, -0.30572062730789185, -0.027942761778831482, -0.31730905175209045, 0.0037923413328826427, -0.004084527958184481, 0.6159273982048035, -0.32765331864356995, 0.00530109740793705, -0.02302066795527935, -0.08524338901042938, 0.006368073169142008, 0.05168796330690384, 0.2945842444896698, -0.19159181416034698, 1.3554757833480835, -0.4108072519302368, -0.022170817479491234, -0.3171984851360321, -0.6334502100944519, -1.26944100856781, -0.4470236003398895, -0.18126140534877777, 0.5284324288368225, -0.5539947748184204, 0.3190200626850128]} +{"t": 16.9885, "q": [-0.3090851902961731, 0.026133917272090912, -0.011744692921638489, 0.6093653440475464, -0.3057248294353485, -0.027950050309300423, -0.317343145608902, 0.0037582528311759233, -0.0035220684949308634, 0.6161489486694336, -0.32764509320259094, 0.005301025230437517, -0.023730438202619553, -0.08484036475419998, 0.006148746702820063, 0.051663994789123535, 0.29454827308654785, -0.19159181416034698, 1.35611093044281, -0.41072335839271545, -0.021943116560578346, -0.3148495554924011, -0.6265352964401245, -1.2764637470245361, -0.44794636964797974, -0.17522135376930237, 0.5163163542747498, -0.54020094871521, 0.3189002275466919]} +{"t": 17.0052, "q": [-0.30891475081443787, 0.026133917272090912, -0.011289368383586407, 0.6093142032623291, -0.30571237206459045, -0.027942681685090065, -0.3174198269844055, 0.0036389431916177273, -0.003133703488856554, 0.6162512302398682, -0.32763707637786865, 0.0053299968130886555, -0.023944709450006485, -0.08419137448072433, 0.005764347035437822, 0.05161605775356293, 0.29452431201934814, -0.1916157752275467, 1.3564825057983398, -0.41072335839271545, -0.021919148042798042, -0.312836229801178, -0.6184938549995422, -1.2848408222198486, -0.44829392433166504, -0.16803082823753357, 0.5056024789810181, -0.5262033343315125, 0.31858864426612854]} +{"t": 17.0221, "q": [-0.3087102174758911, 0.026133917272090912, -0.011155448853969574, 0.6093056797981262, -0.3057081699371338, -0.027935393154621124, -0.3173772096633911, 0.003579288488253951, -0.0029730007518082857, 0.6161745190620422, -0.32761257886886597, 0.005358841735869646, -0.02419915609061718, -0.08347508311271667, 0.005320243537425995, 0.05161605775356293, 0.29454827308654785, -0.19162775576114655, 1.3568779230117798, -0.4107113778591156, -0.02190716378390789, -0.3111344575881958, -0.6105483174324036, -1.2915399074554443, -0.4481620788574219, -0.16179902851581573, 0.4955836534500122, -0.5123496055603027, 0.31798943877220154]} +{"t": 17.0389, "q": [-0.3086591064929962, 0.026108350604772568, -0.011115273460745811, 0.6093142032623291, -0.30570006370544434, -0.027949806302785873, -0.3174283504486084, 0.0034940673504024744, -0.002946217078715563, 0.6161574721336365, -0.32755929231643677, 0.005380154587328434, -0.02418576367199421, -0.08296038210391998, 0.00498571153730154, 0.05164002627134323, 0.29452431201934814, -0.1916397511959076, 1.3571655750274658, -0.4106874167919159, -0.021919148042798042, -0.30952855944633484, -0.6013324856758118, -1.2983949184417725, -0.4477306604385376, -0.15580691397190094, 0.48773398995399475, -0.49774083495140076, 0.3169707655906677]} +{"t": 17.0556, "q": [-0.3085397779941559, 0.026048697531223297, -0.011008137837052345, 0.6093056797981262, -0.30569586157798767, -0.027942519634962082, -0.31744539737701416, 0.0033747577108442783, -0.0029194331727921963, 0.6161574721336365, -0.32755497097969055, 0.005343813449144363, -0.024400033056735992, -0.0825122520327568, 0.004739022813737392, 0.05159208923578262, 0.29417678713798523, -0.1916637122631073, 1.3572255373001099, -0.4107353389263153, -0.022062959149479866, -0.3079706132411957, -0.5941779017448425, -1.303871750831604, -0.447407066822052, -0.14889201521873474, 0.47876980900764465, -0.4837791919708252, 0.3157723546028137]} +{"t": 17.0724, "q": [-0.30859091877937317, 0.026040174067020416, -0.010981354862451553, 0.6092971563339233, -0.30562594532966614, -0.02797808311879635, -0.31753063201904297, 0.00333214714191854, -0.0028926494996994734, 0.615978479385376, -0.3274804353713989, 0.005255994852632284, -0.02402506023645401, -0.0821763426065445, 0.004539618734270334, 0.05175986886024475, 0.29362550377845764, -0.1916157752275467, 1.357369303703308, -0.4107353389263153, -0.022134864702820778, -0.3066883087158203, -0.5844107270240784, -1.3086174726486206, -0.44643634557724, -0.14276807010173798, 0.4706445038318634, -0.4699493944644928, 0.3140106797218323]} +{"t": 17.0891, "q": [-0.3087613582611084, 0.026031654328107834, -0.011115273460745811, 0.6092886328697205, -0.3055157959461212, -0.028129227459430695, -0.31759026646614075, 0.0032554480712860823, -0.003026568330824375, 0.6159359216690063, -0.3274887502193451, 0.005270589143037796, -0.02369026280939579, -0.08216886967420578, 0.004535180050879717, 0.05205947533249855, 0.29321804642677307, -0.1916157752275467, 1.3575609922409058, -0.4107593297958374, -0.022230736911296844, -0.30547788739204407, -0.5725463628768921, -1.3123805522918701, -0.44504618644714355, -0.13605691492557526, 0.46472427248954773, -0.4549691379070282, 0.3117576241493225]} +{"t": 17.1059, "q": [-0.30896589159965515, 0.026014607399702072, -0.011302759870886803, 0.6092971563339233, -0.3054174482822418, -0.028215235099196434, -0.3178715109825134, 0.003263970138505101, -0.003106919815763831, 0.6159018278121948, -0.32748034596443176, 0.005241472739726305, -0.023234939202666283, -0.08216886967420578, 0.004535180050879717, 0.0523470975458622, 0.29295438528060913, -0.19160379469394684, 1.3576569557189941, -0.4107832908630371, -0.022230736911296844, -0.30462703108787537, -0.560825765132904, -1.3155803680419922, -0.4429129958152771, -0.12987305223941803, 0.455843985080719, -0.4429609477519989, 0.3088454604148865]} +{"t": 17.1227, "q": [-0.3090681731700897, 0.025980520993471146, -0.01132954377681017, 0.6092204451560974, -0.3053152859210968, -0.02833743579685688, -0.31799080967903137, 0.0031787490006536245, -0.003093527862802148, 0.6159018278121948, -0.32746371626853943, 0.005212266463786364, -0.023060845211148262, -0.08216140419244766, 0.0045307413674890995, 0.052742574363946915, 0.292594850063324, -0.1916397511959076, 1.3577048778533936, -0.4107832908630371, -0.02225470542907715, -0.3041955828666687, -0.5495126843452454, -1.3186482191085815, -0.438323050737381, -0.1227424368262291, 0.44631651043891907, -0.42874765396118164, 0.30655649304389954]} +{"t": 17.1394, "q": [-0.3092641830444336, 0.02594643086194992, -0.011383111588656902, 0.6090670824050903, -0.30510902404785156, -0.02836441621184349, -0.3181697726249695, 0.0031787490006536245, -0.003133703488856554, 0.615816593170166, -0.3274098038673401, 0.005131907295435667, -0.022632304579019547, -0.08213851600885391, 0.0045558251440525055, 0.05276654288172722, 0.29240310192108154, -0.19165173172950745, 1.3576688766479492, -0.41079527139663696, -0.02225470542907715, -0.3038959801197052, -0.535934567451477, -1.3220877647399902, -0.4350992739200592, -0.11496467143297195, 0.43663325905799866, -0.41621214151382446, 0.30485472083091736]} +{"t": 17.1562, "q": [-0.3095283508300781, 0.025929387658834457, -0.011490246281027794, 0.6089733242988586, -0.3048720359802246, -0.028180884197354317, -0.31828057765960693, 0.0031872710678726435, -0.003240838646888733, 0.6157739758491516, -0.3273681700229645, 0.005044378340244293, -0.022404640913009644, -0.08212334662675858, 0.004566147457808256, 0.05271860584616661, 0.2923431992530823, -0.19165173172950745, 1.357692837715149, -0.4108312129974365, -0.0222666896879673, -0.30375218391418457, -0.5235548615455627, -1.324580430984497, -0.43193545937538147, -0.10677944868803024, 0.42805254459381104, -0.4040241837501526, 0.30238598585128784]} +{"t": 17.1729, "q": [-0.30956244468688965, 0.025929387658834457, -0.011610773392021656, 0.6088966131210327, -0.3048308491706848, -0.028194990009069443, -0.3182976245880127, 0.0031872710678726435, -0.003334582084789872, 0.615748405456543, -0.32733890414237976, 0.004964236170053482, -0.022297507151961327, -0.08207781612873077, 0.004597114864736795, 0.05271860584616661, 0.2923312187194824, -0.19165173172950745, 1.3577048778533936, -0.41086718440055847, -0.022302642464637756, -0.30363231897354126, -0.513607919216156, -1.325323462486267, -0.42851993441581726, -0.09912152588367462, 0.42098185420036316, -0.39262717962265015, 0.2989824414253235]} +{"t": 17.1896, "q": [-0.30961358547210693, 0.025912342593073845, -0.011637557297945023, 0.6087262034416199, -0.3047979474067688, -0.0282091423869133, -0.3183487355709076, 0.003204315435141325, -0.0033747577108442783, 0.6156887412071228, -0.3273058533668518, 0.004934903234243393, -0.02184218168258667, -0.08197929710149765, 0.004654610529541969, 0.05252685770392418, 0.29224732518196106, -0.19167569279670715, 1.3576569557189941, -0.4108552038669586, -0.02225470542907715, -0.30353644490242004, -0.501803457736969, -1.325419306755066, -0.427081823348999, -0.09227853268384933, 0.4122333824634552, -0.3802834451198578, 0.29327794909477234]} +{"t": 17.2063, "q": [-0.30964764952659607, 0.025912342593073845, -0.011784868314862251, 0.608649492263794, -0.304769366979599, -0.0282451119273901, -0.3182976245880127, 0.003221359569579363, -0.0035220684949308634, 0.6157057881355286, -0.3273058533668518, 0.004934903234243393, -0.02168147824704647, -0.08182019740343094, 0.004743793047964573, 0.05245495215058327, 0.29210349917411804, -0.1916397511959076, 1.357585072517395, -0.41081923246383667, -0.02231462672352791, -0.3034645617008209, -0.4904424250125885, -1.3253713846206665, -0.42572760581970215, -0.08620253205299377, 0.40545031428337097, -0.3704923093318939, 0.28645893931388855]} +{"t": 17.2231, "q": [-0.3096902668476105, 0.02588677778840065, -0.011811652220785618, 0.6086153984069824, -0.30471980571746826, -0.028244642540812492, -0.31828057765960693, 0.0032469260040670633, -0.003562244353815913, 0.6157824993133545, -0.32728490233421326, 0.004869355820119381, -0.02166808769106865, -0.0815785750746727, 0.004812936298549175, 0.05252685770392418, 0.2918638288974762, -0.19165173172950745, 1.3575730323791504, -0.4108312129974365, -0.022290658205747604, -0.30345258116722107, -0.4796086847782135, -1.3253953456878662, -0.4247089624404907, -0.0806538388133049, 0.4005008339881897, -0.36024582386016846, 0.2805507183074951]} +{"t": 17.2399, "q": [-0.30965617299079895, 0.02588677778840065, -0.011798259802162647, 0.6085983514785767, -0.30471980571746826, -0.028244642540812492, -0.3181953430175781, 0.0033065807074308395, -0.0035220684949308634, 0.6158592104911804, -0.3272559940814972, 0.004847301635891199, -0.02168147824704647, -0.08111022412776947, 0.004959849640727043, 0.052502889186143875, 0.29152825474739075, -0.19165173172950745, 1.3576329946517944, -0.41081923246383667, -0.0222666896879673, -0.30340462923049927, -0.47014114260673523, -1.3253594636917114, -0.42210838198661804, -0.0752369686961174, 0.39477235078811646, -0.35118573904037476, 0.27419906854629517]} +{"t": 17.2567, "q": [-0.3097328841686249, 0.02588677778840065, -0.011811652220785618, 0.6085898280143738, -0.3047073483467102, -0.02823725715279579, -0.3181612491607666, 0.003349191276356578, -0.003575636073946953, 0.6158336400985718, -0.32725581526756287, 0.004818257875740528, -0.02153416909277439, -0.08054966479539871, 0.005263926927000284, 0.05213138088583946, 0.29127660393714905, -0.19172362983226776, 1.357537031173706, -0.4108072519302368, -0.0222666896879673, -0.3033207356929779, -0.45982274413108826, -1.324963927268982, -0.4185250997543335, -0.07052716612815857, 0.38997867703437805, -0.3444146513938904, 0.26706844568252563]} +{"t": 17.2735, "q": [-0.30982664227485657, 0.025852687656879425, -0.011905395425856113, 0.6085813045501709, -0.3047236204147339, -0.02820841409265995, -0.3180334270000458, 0.00333214714191854, -0.0037095551379024982, 0.6158421635627747, -0.3272763192653656, 0.004811159335076809, -0.02133329026401043, -0.07981358468532562, 0.005773002281785011, 0.05210741236805916, 0.29095301032066345, -0.1917356252670288, 1.357525110244751, -0.41079527139663696, -0.022218754515051842, -0.30328479409217834, -0.44903692603111267, -1.3236936330795288, -0.4134317934513092, -0.06614094227552414, 0.3829079866409302, -0.3367447555065155, 0.25947046279907227]} +{"t": 17.2902, "q": [-0.309911847114563, 0.025784511119127274, -0.011878611519932747, 0.6085813045501709, -0.3047195374965668, -0.028215620666742325, -0.3180334270000458, 0.0032895365729928017, -0.003736338810995221, 0.6158677339553833, -0.3272764980792999, 0.004840221256017685, -0.021105628460645676, -0.07889632880687714, 0.006328847259283066, 0.05205947533249855, 0.29060548543930054, -0.19172362983226776, 1.3575011491775513, -0.41084322333335876, -0.022230736911296844, -0.3032488226890564, -0.4395933747291565, -1.321668267250061, -0.40752357244491577, -0.06109558045864105, 0.375262051820755, -0.3307526409626007, 0.2516207993030548]} +{"t": 17.3069, "q": [-0.3100056052207947, 0.025673724710941315, -0.011865219101309776, 0.6086324453353882, -0.304703027009964, -0.028215475380420685, -0.3179311454296112, 0.0032469260040670633, -0.0037631227169185877, 0.615978479385376, -0.32726413011550903, 0.00483285216614604, -0.02085118182003498, -0.07749271392822266, 0.00727905472740531, 0.0520474910736084, 0.29015007615089417, -0.19184347987174988, 1.357525110244751, -0.41079527139663696, -0.022290658205747604, -0.3032728135585785, -0.4307849705219269, -1.3190077543258667, -0.4026699662208557, -0.05637379735708237, 0.36768800020217896, -0.3264622688293457, 0.24264460802078247]} +{"t": 17.3237, "q": [-0.31019309163093567, 0.02551180310547352, -0.01185182761400938, 0.6086921095848083, -0.3046988248825073, -0.028208188712596893, -0.31794819235801697, 0.0031787490006536245, -0.00388364982791245, 0.6160210967063904, -0.32726430892944336, 0.004861895926296711, -0.020074451342225075, -0.07605858147144318, 0.008267977274954319, 0.051424309611320496, 0.2894669771194458, -0.19185546040534973, 1.3574532270431519, -0.41081923246383667, -0.022230736911296844, -0.3032488226890564, -0.41985535621643066, -1.315460443496704, -0.39947018027305603, -0.052562810480594635, 0.3585200905799866, -0.3225434422492981, 0.23487882316112518]} +{"t": 17.3404, "q": [-0.31025272607803345, 0.025332840159535408, -0.01185182761400938, 0.6087858080863953, -0.3046988248825073, -0.028208188712596893, -0.3178885579109192, 0.0030338731594383717, -0.003964001312851906, 0.6160978078842163, -0.32726430892944336, 0.004861895926296711, -0.01933789812028408, -0.07420764118432999, 0.00950836855918169, 0.05020191892981529, 0.28860411047935486, -0.19186744093894958, 1.3573333024978638, -0.4107832908630371, -0.022218754515051842, -0.3032488226890564, -0.40924930572509766, -1.3111821413040161, -0.395587295293808, -0.050213903188705444, 0.3489806354045868, -0.31734228134155273, 0.22682543098926544]} +{"t": 17.3571, "q": [-0.31021010875701904, 0.02517091855406761, -0.011865219101309776, 0.6088539958000183, -0.30470696091651917, -0.0281937588006258, -0.31776922941207886, 0.0029060414526611567, -0.004004176706075668, 0.6161489486694336, -0.3272850811481476, 0.004898399580270052, -0.018708478659391403, -0.07218217104673386, 0.010882863774895668, 0.04942294582724571, 0.2873697280883789, -0.1919153779745102, 1.3571056127548218, -0.4107593297958374, -0.022278673946857452, -0.30323684215545654, -0.40023717284202576, -1.306484341621399, -0.39020636677742004, -0.0484522208571434, 0.3379192054271698, -0.31393876671791077, 0.21860425174236298]} +{"t": 17.3739, "q": [-0.3103209137916565, 0.025000477209687233, -0.01185182761400938, 0.6089903712272644, -0.304715096950531, -0.028179345652461052, -0.31768402457237244, 0.002701510675251484, -0.004057744517922401, 0.6161404252052307, -0.3272892236709595, 0.004905696492642164, -0.017771044746041298, -0.06945908814668655, 0.012731822207570076, 0.04828444495797157, 0.2854043245315552, -0.19187943637371063, 1.3571176528930664, -0.4107832908630371, -0.022302642464637756, -0.30323684215545654, -0.3887682557106018, -1.3007558584213257, -0.38613173365592957, -0.04803277552127838, 0.326582133769989, -0.3111823797225952, 0.2106347382068634]} +{"t": 17.3906, "q": [-0.31029534339904785, 0.024727769196033478, -0.011838436126708984, 0.6091096997261047, -0.3047110438346863, -0.028186552226543427, -0.31758174300193787, 0.0024373249616473913, -0.004084527958184481, 0.6162341833114624, -0.3272892236709595, 0.004905696492642164, -0.016887180507183075, -0.06641819328069687, 0.014769474975764751, 0.047685232013463974, 0.2830314338207245, -0.19186744093894958, 1.3571535348892212, -0.4107832908630371, -0.022302642464637756, -0.303200900554657, -0.37909698486328125, -1.295830249786377, -0.3805830478668213, -0.04806872829794884, 0.31287217140197754, -0.30957651138305664, 0.2030726969242096]} +{"t": 17.4073, "q": [-0.31038057804107666, 0.02443801797926426, -0.011784868314862251, 0.6092204451560974, -0.3047110438346863, -0.028186552226543427, -0.31758174300193787, 0.002122006844729185, -0.004097919911146164, 0.6163193583488464, -0.3273018002510071, 0.0049421279691159725, -0.01615062542259693, -0.06311259418725967, 0.01697717048227787, 0.04719387739896774, 0.28037095069885254, -0.19186744093894958, 1.3571416139602661, -0.4108072519302368, -0.022302642464637756, -0.3031769394874573, -0.3679277002811432, -1.2909647226333618, -0.3722899556159973, -0.04851214215159416, 0.29911428689956665, -0.30932483077049255, 0.19621771574020386]} +{"t": 17.424, "q": [-0.3104061186313629, 0.024156788364052773, -0.011784868314862251, 0.6093994379043579, -0.3047191798686981, -0.028172139078378677, -0.3175561726093292, 0.0018663433147594333, -0.004071136470884085, 0.6165239214897156, -0.3273019790649414, 0.0049711717292666435, -0.015762262046337128, -0.05962608754634857, 0.019297000020742416, 0.04675046354532242, 0.27684760093688965, -0.19177156686782837, 1.3571776151657104, -0.41081923246383667, -0.022302642464637756, -0.30303311347961426, -0.3576332628726959, -1.2853920459747314, -0.3615401089191437, -0.048775795847177505, 0.2852005958557129, -0.30930086970329285, 0.19162775576114655]} +{"t": 17.4408, "q": [-0.3106958866119385, 0.024003390222787857, -0.011744692921638489, 0.6096891760826111, -0.30471891164779663, -0.028143152594566345, -0.31759878993034363, 0.001695900922641158, -0.004071136470884085, 0.6166943311691284, -0.32729393243789673, 0.005000161472707987, -0.015226585790514946, -0.0564587377011776, 0.021416490897536278, 0.04555204138159752, 0.27355191111564636, -0.19181950390338898, 1.3572494983673096, -0.4108312129974365, -0.022290658205747604, -0.3028174042701721, -0.3447382152080536, -1.279304027557373, -0.3530912399291992, -0.04899151250720024, 0.27083149552345276, -0.30932483077049255, 0.1886436939239502]} +{"t": 17.4575, "q": [-0.310960054397583, 0.02389260195195675, -0.011731300503015518, 0.6100385785102844, -0.3047105371952057, -0.028128577396273613, -0.31768402457237244, 0.0015765913994982839, -0.00416487967595458, 0.6169244647026062, -0.3272857069969177, 0.005000089295208454, -0.014650734141469002, -0.053268712013959885, 0.023656945675611496, 0.04398210719227791, 0.2706517279148102, -0.19181950390338898, 1.3571535348892212, -0.4108552038669586, -0.022362563759088516, -0.30261367559432983, -0.328978955745697, -1.2735755443572998, -0.34320423007011414, -0.0493510402739048, 0.25522804260253906, -0.3093847632408142, 0.18583938479423523]} +{"t": 17.4744, "q": [-0.3111305236816406, 0.023815901950001717, -0.01177147589623928, 0.6105328798294067, -0.3047105371952057, -0.028128577396273613, -0.3176925480365753, 0.0014743260107934475, -0.004231838975101709, 0.6172227263450623, -0.32728201150894165, 0.005065401550382376, -0.013673125766217709, -0.05078369006514549, 0.025454850867390633, 0.042999401688575745, 0.2679792642593384, -0.19184347987174988, 1.3569618463516235, -0.41086718440055847, -0.022398516535758972, -0.3025178015232086, -0.31546077132225037, -1.2675714492797852, -0.32834380865097046, -0.05068128928542137, 0.24042752385139465, -0.3094926178455353, 0.1829272210597992]} +{"t": 17.4911, "q": [-0.31148844957351685, 0.02371363714337349, -0.011744692921638489, 0.6106947660446167, -0.3046939969062805, -0.028128396719694138, -0.3180249035358429, 0.0013464941876009107, -0.0042854067869484425, 0.6175295114517212, -0.3272819221019745, 0.0050508794374763966, -0.01258838176727295, -0.04803643748164177, 0.02723154053092003, 0.04187288135290146, 0.26576218008995056, -0.19181950390338898, 1.3569978475570679, -0.41081923246383667, -0.022362563759088516, -0.30250582098960876, -0.30008500814437866, -1.261735200881958, -0.31499338150024414, -0.05258677899837494, 0.22484803199768066, -0.30962443351745605, 0.18162094056606293]} +{"t": 17.5079, "q": [-0.3115992248058319, 0.023628415539860725, -0.011731300503015518, 0.6109078526496887, -0.30468982458114624, -0.028121110051870346, -0.3180589973926544, 0.001184574095532298, -0.004392541944980621, 0.6177511215209961, -0.32729437947273254, 0.005072789266705513, -0.011115273460745811, -0.044276412576436996, 0.02970246970653534, 0.040830254554748535, 0.26311367750167847, -0.19178356230258942, 1.3569018840789795, -0.4108312129974365, -0.022398516535758972, -0.30250582098960876, -0.2823243737220764, -1.2548801898956299, -0.3007800877094269, -0.05385710671544075, 0.2091367095708847, -0.3097322881221771, 0.1808539479970932]} +{"t": 17.5246, "q": [-0.31158217787742615, 0.023526150733232498, -0.011691125109791756, 0.6110697388648987, -0.30468982458114624, -0.028121110051870346, -0.31813567876815796, 0.0011249192757532, -0.004325582180172205, 0.6181431412696838, -0.3273066580295563, 0.005065636709332466, -0.009240408428013325, -0.04014848172664642, 0.0323651023209095, 0.04037485644221306, 0.26052507758140564, -0.19180752336978912, 1.3569258451461792, -0.41079527139663696, -0.022422485053539276, -0.3025178015232086, -0.2664812207221985, -1.248049259185791, -0.2843017876148224, -0.054000917822122574, 0.19384483993053436, -0.3097802400588989, 0.18049441277980804]} +{"t": 17.5413, "q": [-0.31157365441322327, 0.023432407528162003, -0.011650948785245419, 0.6112487316131592, -0.3046773672103882, -0.02811374142765999, -0.31817829608917236, 0.0010311759542673826, -0.0042854067869484425, 0.618432879447937, -0.32731083035469055, 0.005072933621704578, -0.006334366742521524, -0.03552497178316116, 0.035327620804309845, 0.03952397406101227, 0.2570137083530426, -0.19178356230258942, 1.35685396194458, -0.41081923246383667, -0.022374548017978668, -0.3025417625904083, -0.24692296981811523, -1.2388453483581543, -0.2696450650691986, -0.05409679189324379, 0.17971543967723846, -0.3098401725292206, 0.18036259710788727]} +{"t": 17.5581, "q": [-0.3116929829120636, 0.0232960544526577, -0.011624165810644627, 0.6114447116851807, -0.3046773672103882, -0.02811374142765999, -0.31836578249931335, 0.0009885653853416443, -0.004258622881025076, 0.6187567114830017, -0.32732734084129333, 0.005087600089609623, -0.003481892868876457, -0.03113197721540928, 0.03808901458978653, 0.03904460743069649, 0.25310683250427246, -0.19179554283618927, 1.3566622734069824, -0.4108312129974365, -0.022494390606880188, -0.30250582098960876, -0.22982148826122284, -1.2293537855148315, -0.2506740391254425, -0.05385710671544075, 0.1666766107082367, -0.30988809466362, 0.1804824322462082]} +{"t": 17.5748, "q": [-0.31176114082336426, 0.023142656311392784, -0.011450070887804031, 0.6114702820777893, -0.30466899275779724, -0.028099168092012405, -0.3187492787837982, 0.0009203884401358664, -0.004030960611999035, 0.6190805435180664, -0.32732734084129333, 0.005087600089609623, 0.0012588382232934237, -0.02666926197707653, 0.040543776005506516, 0.03775031119585037, 0.24959546327590942, -0.19183149933815002, 1.3568300008773804, -0.4108072519302368, -0.022374548017978668, -0.30245786905288696, -0.21174927055835724, -1.2189275026321411, -0.23339278995990753, -0.05379718542098999, 0.15560318529605865, -0.3099120557308197, 0.18069814145565033]} +{"t": 17.5915, "q": [-0.3123321235179901, 0.023142656311392784, -0.011423286981880665, 0.611862301826477, -0.3046647906303406, -0.028091879561543465, -0.3190731108188629, 0.0009033442474901676, -0.004097919911146164, 0.6194299459457397, -0.32733970880508423, 0.005094969645142555, 0.005477285478264093, -0.021863266825675964, 0.04328909516334534, 0.0363960936665535, 0.24579645693302155, -0.19180752336978912, 1.3567460775375366, -0.41079527139663696, -0.022458437830209732, -0.30248185992240906, -0.1947077065706253, -1.2070151567459106, -0.21299563348293304, -0.05175986886024475, 0.14396649599075317, -0.3099120557308197, 0.1816568821668625]} +{"t": 17.6083, "q": [-0.31341442465782166, 0.02304891310632229, -0.011530422605574131, 0.6122628450393677, -0.3045940101146698, -0.028025953099131584, -0.3196696639060974, 0.0007840346079319715, -0.004486285150051117, 0.6201031804084778, -0.3273811936378479, 0.005153455305844545, 0.009160056710243225, -0.01676230877637863, 0.04587806388735771, 0.03496997058391571, 0.24206936359405518, -0.19174760580062866, 1.356722116470337, -0.41081923246383667, -0.022530343383550644, -0.3024698495864868, -0.17694708704948425, -1.1946834325790405, -0.1943601667881012, -0.04639093577861786, 0.13201822340488434, -0.3099120557308197, 0.18303507566452026]} +{"t": 17.625, "q": [-0.314956933259964, 0.022904036566615105, -0.011664341203868389, 0.6130127906799316, -0.3044976592063904, -0.027872784063220024, -0.3206838071346283, 0.0004090615548193455, -0.005236231256276369, 0.6209298372268677, -0.3274596631526947, 0.005219491198658943, 0.012079490348696709, -0.011412595398724079, 0.04803670197725296, 0.03428686782717705, 0.23830631375312805, -0.1917116492986679, 1.3566981554031372, -0.41086718440055847, -0.022650185972452164, -0.30243390798568726, -0.1624821275472641, -1.1840894222259521, -0.17650367319583893, -0.03989548608660698, 0.11728961020708084, -0.3099120557308197, 0.18471285700798035]} +{"t": 17.6417, "q": [-0.3167380690574646, 0.022529063746333122, -0.011811652220785618, 0.6135923266410828, -0.30425867438316345, -0.0276021771132946, -0.32263535261154175, 6.817692337790504e-05, -0.00546389352530241, 0.6220462322235107, -0.32754603028297424, 0.005227529443800449, 0.014423071406781673, -0.0058502876199781895, 0.049833353608846664, 0.03404718264937401, 0.2341238260269165, -0.1917356252670288, 1.3568060398101807, -0.41086718440055847, -0.022734075784683228, -0.3023739755153656, -0.14905978739261627, -1.173123836517334, -0.15855130553245544, -0.03208177164196968, 0.1031961664557457, -0.30990007519721985, 0.18671423196792603]} +{"t": 17.6585, "q": [-0.3176073133945465, 0.022256355732679367, -0.011838436126708984, 0.6140013933181763, -0.304141104221344, -0.027456026524305344, -0.323879599571228, -0.00017896443023346364, -0.005450501572340727, 0.6228643655776978, -0.3276080787181854, 0.005293420981615782, 0.017610343173146248, -0.0006148338434286416, 0.052165765315294266, 0.03357980027794838, 0.2301810085773468, -0.1916876882314682, 1.356722116470337, -0.4108911454677582, -0.022662170231342316, -0.30226612091064453, -0.13562548160552979, -1.1633447408676147, -0.14382268488407135, -0.025442510843276978, 0.09183511883020401, -0.3091930150985718, 0.18957845866680145]} +{"t": 17.6752, "q": [-0.3182123899459839, 0.022060347720980644, -0.011838436126708984, 0.6140525341033936, -0.3041159212589264, -0.027426788583397865, -0.32474032044410706, -0.00021305288828443736, -0.005316582508385181, 0.623290479183197, -0.3276411294937134, 0.005322772078216076, 0.01948520727455616, 0.004750108812004328, 0.05440201237797737, 0.03387940302491188, 0.22638201713562012, -0.19165173172950745, 1.3568180799484253, -0.41092708706855774, -0.02281796559691429, -0.30215826630592346, -0.12433633953332901, -1.1511328220367432, -0.12966932356357574, -0.014105432666838169, 0.08209194242954254, -0.3088095188140869, 0.1907888650894165]} +{"t": 17.6919, "q": [-0.3182123899459839, 0.022051824256777763, -0.011811652220785618, 0.6144530177116394, -0.30410775542259216, -0.027441198006272316, -0.3247744143009186, -0.00011930961773032323, -0.005303190555423498, 0.6238188743591309, -0.32765358686447144, 0.0053446632809937, 0.02149399183690548, 0.010138001292943954, 0.05694315955042839, 0.03377154842019081, 0.22295452654361725, -0.19172362983226776, 1.3571416139602661, -0.41092708706855774, -0.022602248936891556, -0.3019784986972809, -0.1128075122833252, -1.1377463340759277, -0.11592341214418411, -0.004649879410862923, 0.073762908577919, -0.3082462549209595, 0.1926584094762802]} +{"t": 17.7086, "q": [-0.3181527256965637, 0.022017735987901688, -0.011798259802162647, 0.614768385887146, -0.3041117191314697, -0.027419498190283775, -0.3249448537826538, -0.00015339808305725455, -0.005115704145282507, 0.6248159408569336, -0.32775700092315674, 0.005454536061733961, 0.024788398295640945, 0.015032781288027763, 0.059275805950164795, 0.03289669752120972, 0.2193712443113327, -0.19165173172950745, 1.3571056127548218, -0.4108911454677582, -0.0225662961602211, -0.30188262462615967, -0.10083527117967606, -1.1240724325180054, -0.10585666447877884, 0.004326305352151394, 0.0665004625916481, -0.3081623613834381, 0.1934134066104889]} +{"t": 17.7253, "q": [-0.3181697726249695, 0.021770594641566277, -0.011490246281027794, 0.6150922179222107, -0.3041200041770935, -0.02741958200931549, -0.3255328834056854, -0.00017896443023346364, -0.0045800283551216125, 0.6261794567108154, -0.3280012309551239, 0.00573991984128952, 0.02789531834423542, 0.019470063969492912, 0.06059381738305092, 0.03189002349972725, 0.2156801074743271, -0.19167569279670715, 1.3570218086242676, -0.4108911454677582, -0.022722091525793076, -0.30163097381591797, -0.09094828367233276, -1.1107579469680786, -0.09309346228837967, 0.01563941314816475, 0.05697300657629967, -0.3077069818973541, 0.19451595842838287]} +{"t": 17.7423, "q": [-0.31818681955337524, 0.02119109220802784, -0.011450070887804031, 0.6153222918510437, -0.3041200041770935, -0.02741958200931549, -0.32598456740379333, -0.0004772384709212929, -0.004205055069178343, 0.6277390122413635, -0.328286737203598, 0.006054745055735111, 0.030654048547148705, 0.023381147533655167, 0.061787303537130356, 0.030655648559331894, 0.21239642798900604, -0.19167569279670715, 1.3569978475570679, -0.4108791649341583, -0.022650185972452164, -0.3013193607330322, -0.0833263173699379, -1.0969641208648682, -0.08199606835842133, 0.027276096865534782, 0.04806872829794884, -0.30685609579086304, 0.19602596759796143]} +{"t": 17.759, "q": [-0.318203866481781, 0.0204752329736948, -0.01158398948609829, 0.6159443855285645, -0.304124116897583, -0.027412360534071922, -0.3264106512069702, -0.0008862999966368079, -0.004097919911146164, 0.6296394467353821, -0.32869264483451843, 0.006566700991243124, 0.032836928963661194, 0.027213620021939278, 0.06309955567121506, 0.029445242136716843, 0.2091606855392456, -0.19167569279670715, 1.3569618463516235, -0.41090312600135803, -0.02268613874912262, -0.30079206824302673, -0.07662713527679443, -1.081827998161316, -0.0739906057715416, 0.03965580090880394, 0.035844817757606506, -0.3046629726886749, 0.19764384627342224]} +{"t": 17.7758, "q": [-0.31886008381843567, 0.019904252141714096, -0.01158398948609829, 0.6164983510971069, -0.3041200041770935, -0.02741958200931549, -0.32776567339897156, -0.001440237509086728, -0.0037229470908641815, 0.631957471370697, -0.3291725218296051, 0.007079326082020998, 0.03445734828710556, 0.03021482564508915, 0.06334248185157776, 0.028438566252589226, 0.20622454583644867, -0.19165173172950745, 1.3570936918258667, -0.4108791649341583, -0.022614233195781708, -0.29991722106933594, -0.07176154106855392, -1.0680581331253052, -0.06715960055589676, 0.05108875036239624, 0.024447819218039513, -0.3022181987762451, 0.19859059154987335]} +{"t": 17.7925, "q": [-0.31956741213798523, 0.019401447847485542, -0.01159738190472126, 0.6174017190933228, -0.30411580204963684, -0.02741229347884655, -0.3290695548057556, -0.0018663433147594333, -0.0033077981788665056, 0.6340624094009399, -0.3294297456741333, 0.007473786827176809, 0.03527425229549408, 0.03280860185623169, 0.06307189166545868, 0.028138961642980576, 0.20405539870262146, -0.19167569279670715, 1.3571535348892212, -0.4108911454677582, -0.022578280419111252, -0.2985749840736389, -0.07013168931007385, -1.055678367614746, -0.060628194361925125, 0.06186256930232048, 0.013865748420357704, -0.29786792397499084, 0.1989021897315979]} +{"t": 17.8092, "q": [-0.32087981700897217, 0.019282137975096703, -0.01158398948609829, 0.6185862421989441, -0.30413663387298584, -0.02741973288357258, -0.3304416239261627, -0.002011219272390008, -0.003133703488856554, 0.6358180046081543, -0.32957905530929565, 0.007692971732467413, 0.035702794790267944, 0.0352645069360733, 0.06237826868891716, 0.027935229241847992, 0.20210197567939758, -0.1916876882314682, 1.3572734594345093, -0.4108791649341583, -0.022530343383550644, -0.29644179344177246, -0.06971223652362823, -1.042603611946106, -0.05336575582623482, 0.07252853363752365, 0.002672482281923294, -0.29247501492500305, 0.1991538554430008]} +{"t": 17.826, "q": [-0.3228910267353058, 0.01932474784553051, -0.01159738190472126, 0.62037593126297, -0.3041197657585144, -0.027390576899051666, -0.3317710757255554, -0.0020367854740470648, -0.00321405497379601, 0.6370621919631958, -0.329587459564209, 0.007722088135778904, 0.03594384714961052, 0.037118908017873764, 0.061356108635663986, 0.02738395519554615, 0.2000766396522522, -0.1916637122631073, 1.3573333024978638, -0.41084322333335876, -0.022494390606880188, -0.2935056686401367, -0.06954445689916611, -1.0299363136291504, -0.04761332646012306, 0.08432100713253021, -0.00977912824600935, -0.287022203207016, 0.19959726929664612]} +{"t": 17.8427, "q": [-0.3250471353530884, 0.019495191052556038, -0.011731300503015518, 0.6226257681846619, -0.30412396788597107, -0.027397867292165756, -0.3327852189540863, -0.0019174759509041905, -0.0036292036529630423, 0.6377610564231873, -0.32957515120506287, 0.0077292583882808685, 0.03597063198685646, 0.03820540010929108, 0.06101861223578453, 0.026149580255150795, 0.1982310712337494, -0.19162775576114655, 1.3575730323791504, -0.41084322333335876, -0.022530343383550644, -0.29040175676345825, -0.07034739851951599, -1.018323540687561, -0.043059322983026505, 0.09427990019321442, -0.02123604714870453, -0.28196483850479126, 0.20006465911865234]} +{"t": 17.8594, "q": [-0.32658112049102783, 0.01963154412806034, -0.01191878691315651, 0.6248756051063538, -0.30414047837257385, -0.02738354168832302, -0.33327949047088623, -0.0018407768802717328, -0.003964001312851906, 0.6388092637062073, -0.32957932353019714, 0.007736555300652981, 0.036385782063007355, 0.03846558928489685, 0.061137616634368896, 0.024327976629137993, 0.19614581763744354, -0.19160379469394684, 1.357824683189392, -0.4108791649341583, -0.022494390606880188, -0.28678250312805176, -0.07070692628622055, -1.009647011756897, -0.037942055612802505, 0.1053173691034317, -0.03449060022830963, -0.27590084075927734, 0.2004241794347763]} +{"t": 17.8762, "q": [-0.3267856240272522, 0.01961449906229973, -0.012133057229220867, 0.6254976987838745, -0.30413636565208435, -0.027390746399760246, -0.33308348059654236, -0.001891909632831812, -0.004178271628916264, 0.639133095741272, -0.329546719789505, 0.007779850158840418, 0.036680400371551514, 0.037985529750585556, 0.06134440749883652, 0.02305764891207218, 0.1952829509973526, -0.19154387712478638, 1.3582921028137207, -0.41081923246383667, -0.022410500794649124, -0.28406208753585815, -0.0701197013258934, -1.0035350322723389, -0.03129081055521965, 0.11484482884407043, -0.0484282523393631, -0.2693933844566345, 0.2009994238615036]} +{"t": 17.8929, "q": [-0.32661518454551697, 0.01962302252650261, -0.0121866250410676, 0.6262220740318298, -0.30413636565208435, -0.027390746399760246, -0.3326573669910431, -0.0019259981345385313, -0.004111311864107847, 0.6391842365264893, -0.32948166131973267, 0.007895482704043388, 0.036533091217279434, 0.03664978966116905, 0.061185743659734726, 0.02263820171356201, 0.1950312852859497, -0.19153188169002533, 1.3585916757583618, -0.41084322333335876, -0.022398516535758972, -0.2818090617656708, -0.06967628747224808, -0.9982020854949951, -0.021044299006462097, 0.12495951354503632, -0.0595855675637722, -0.26356905698776245, 0.20173045992851257]} +{"t": 17.9096, "q": [-0.32666632533073425, 0.01962302252650261, -0.012079490348696709, 0.6276878714561462, -0.30415672063827515, -0.02734021097421646, -0.3323846757411957, -0.0019430422689765692, -0.0037631227169185877, 0.6394824981689453, -0.3294287621974945, 0.007974901236593723, 0.03591706231236458, 0.03525770455598831, 0.06063685193657875, 0.02250637486577034, 0.1949833482503891, -0.19151990115642548, 1.3588074445724487, -0.41084322333335876, -0.022470422089099884, -0.28037095069885254, -0.06948453933000565, -0.9938158392906189, -0.00999484397470951, 0.1347985714673996, -0.07032343000173569, -0.25955435633659363, 0.20179037749767303]} +{"t": 17.9264, "q": [-0.3266492784023285, 0.019554845988750458, -0.011905395425856113, 0.6285145282745361, -0.3041730523109436, -0.02731139212846756, -0.33207786083221436, -0.0021134845446795225, -0.0036425956059247255, 0.6397722363471985, -0.32932695746421814, 0.008126531727612019, 0.03572957590222359, 0.033710114657878876, 0.05985225364565849, 0.022398516535758972, 0.1949833482503891, -0.19153188169002533, 1.358951210975647, -0.4108552038669586, -0.022470422089099884, -0.2794361710548401, -0.06599713116884232, -0.990148663520813, 0.000874848454259336, 0.14599183201789856, -0.08039018511772156, -0.2552879750728607, 0.2021738737821579]} +{"t": 17.9431, "q": [-0.32680267095565796, 0.019307704642415047, -0.011811652220785618, 0.6289832592010498, -0.30411428213119507, -0.02723829820752144, -0.33195003867149353, -0.002650377806276083, -0.0036425956059247255, 0.6399597525596619, -0.3290780186653137, 0.008407575078308582, 0.03582331910729408, 0.031365033239126205, 0.05865837633609772, 0.022278673946857452, 0.19541478157043457, -0.19154387712478638, 1.3590710163116455, -0.4108312129974365, -0.022458437830209732, -0.2784055471420288, -0.060999706387519836, -0.9853909611701965, 0.012619389221072197, 0.1594620943069458, -0.09124789386987686, -0.24906815588474274, 0.20242555439472198]} +{"t": 17.9599, "q": [-0.32704129815101624, 0.018983863294124603, -0.011704516597092152, 0.6293156147003174, -0.30295053124427795, -0.02526944689452648, -0.33175402879714966, -0.0032469260040670633, -0.0037229470908641815, 0.6399938464164734, -0.328474223613739, 0.00911401305347681, 0.03615811839699745, 0.02885318361222744, 0.057518817484378815, 0.022182801738381386, 0.19621771574020386, -0.19150792062282562, 1.359238862991333, -0.4108312129974365, -0.022458437830209732, -0.27732694149017334, -0.0589623898267746, -0.9816877841949463, 0.02684466540813446, 0.17500564455986023, -0.10063154250383377, -0.2430880218744278, 0.20242555439472198]} +{"t": 17.9767, "q": [-0.32777419686317444, 0.018319139257073402, -0.011704516597092152, 0.629128098487854, -0.302411288022995, -0.024408690631389618, -0.33195003867149353, -0.004048004746437073, -0.0039506093598902225, 0.6397125720977783, -0.3281116485595703, 0.009626484476029873, 0.03716250881552696, 0.02620661072432995, 0.05608689412474632, 0.022110896185040474, 0.19658923149108887, -0.19149594008922577, 1.3593347072601318, -0.41079527139663696, -0.022374548017978668, -0.2757330536842346, -0.05777594819664955, -0.9756357669830322, 0.0388169065117836, 0.1923348307609558, -0.11148924380540848, -0.23722773790359497, 0.20250943303108215]} +{"t": 17.9934, "q": [-0.32837074995040894, 0.01775667816400528, -0.011624165810644627, 0.629128098487854, -0.3018380403518677, -0.023460600525140762, -0.33212047815322876, -0.004900216590613127, -0.004111311864107847, 0.6395421624183655, -0.3277491629123688, 0.010138897225260735, 0.038729362189769745, 0.024244679138064384, 0.05498502776026726, 0.022038990631699562, 0.1964334398508072, -0.19145998358726501, 1.3593707084655762, -0.4107832908630371, -0.022434469312429428, -0.27340811491012573, -0.05782388523221016, -0.9681216478347778, 0.048955559730529785, 0.20896893739700317, -0.12229901552200317, -0.22977355122566223, 0.20242555439472198]} +{"t": 18.0103, "q": [-0.3286519944667816, 0.016895944252610207, -0.011570597998797894, 0.628898024559021, -0.30147555470466614, -0.022862566635012627, -0.3324187695980072, -0.005786516238003969, -0.004111311864107847, 0.6391671895980835, -0.32744836807250977, 0.010600747540593147, 0.03947930783033371, 0.022671125829219818, 0.05384572967886925, 0.02202700637280941, 0.19616977870464325, -0.19145998358726501, 1.359406590461731, -0.41081923246383667, -0.022422485053539276, -0.2705199122428894, -0.05794372782111168, -0.9613505601882935, 0.0610835961997509, 0.22380541265010834, -0.1317785382270813, -0.2232661098241806, 0.2022457867860794]} +{"t": 18.027, "q": [-0.328626424074173, 0.016120431944727898, -0.011423286981880665, 0.6285741925239563, -0.3010537922382355, -0.022133465856313705, -0.332478404045105, -0.006630206014961004, -0.003964001312851906, 0.6388859748840332, -0.3270786702632904, 0.01119985431432724, 0.03945252299308777, 0.021016061305999756, 0.05230783671140671, 0.023369239643216133, 0.19571438431739807, -0.19144800305366516, 1.3595384359359741, -0.41084322333335876, -0.02268613874912262, -0.26741600036621094, -0.05813547596335411, -0.9546753764152527, 0.073762908577919, 0.23927703499794006, -0.14185728132724762, -0.21805298328399658, 0.20213793218135834]} +{"t": 18.0438, "q": [-0.3287627696990967, 0.01541309617459774, -0.01143667846918106, 0.6284719109535217, -0.3006319999694824, -0.021404346451163292, -0.33253806829452515, -0.007311975117772818, -0.003990784753113985, 0.6386728882789612, -0.32677003741264343, 0.011719713918864727, 0.04029621556401253, 0.01962205208837986, 0.05076795071363449, 0.024459803476929665, 0.19531890749931335, -0.19147196412086487, 1.3598979711532593, -0.4108791649341583, -0.022578280419111252, -0.2651749551296234, -0.0583871454000473, -0.9482758045196533, 0.08451275527477264, 0.25485652685165405, -0.15191203355789185, -0.21375064551830292, 0.20211395621299744]} +{"t": 18.0606, "q": [-0.3291547894477844, 0.014756893739104271, -0.011450070887804031, 0.6282588839530945, -0.30009275674819946, -0.020543573424220085, -0.3327511250972748, -0.008087487891316414, -0.004151487722992897, 0.6386558413505554, -0.3266039490699768, 0.01205937098711729, 0.041622012853622437, 0.017815236002206802, 0.049028243869543076, 0.024711472913622856, 0.19519905745983124, -0.19145998358726501, 1.3601616621017456, -0.4108791649341583, -0.022542327642440796, -0.26356905698776245, -0.059070244431495667, -0.9419121742248535, 0.09648499637842178, 0.2706757187843323, -0.16176307201385498, -0.20732709765434265, 0.20205403864383698]} +{"t": 18.0773, "q": [-0.32964053750038147, 0.014100691303610802, -0.011530422605574131, 0.6279776692390442, -0.29968833923339844, -0.019901638850569725, -0.33313462138175964, -0.00881186779588461, -0.004365758039057255, 0.6386217474937439, -0.32649436593055725, 0.012254362925887108, 0.043630797415971756, 0.015819640830159187, 0.04713137820363045, 0.02460361458361149, 0.1952110379934311, -0.19144800305366516, 1.360365390777588, -0.41086718440055847, -0.02250637486577034, -0.26174744963645935, -0.06073605269193649, -0.9348055124282837, 0.10846922546625137, 0.28938308358192444, -0.17083513736724854, -0.20048409700393677, 0.20150277018547058]} +{"t": 18.094, "q": [-0.3302626609802246, 0.01354675367474556, -0.011691125109791756, 0.6278327703475952, -0.2993640601634979, -0.01934041641652584, -0.3335181176662445, -0.009399893693625927, -0.004432717338204384, 0.6385791301727295, -0.3264539837837219, 0.012355632148683071, 0.046804673969745636, 0.014032159931957722, 0.04525617137551308, 0.024148214608430862, 0.1952829509973526, -0.19144800305366516, 1.3605451583862305, -0.41084322333335876, -0.022482406347990036, -0.2599378526210785, -0.06144312396645546, -0.9270637035369873, 0.11855994164943695, 0.3082582354545593, -0.18111759424209595, -0.1938088834285736, 0.20145483314990997]} +{"t": 18.1108, "q": [-0.33061206340789795, 0.012975772842764854, -0.011838436126708984, 0.6277390122413635, -0.29906731843948364, -0.018867215141654015, -0.33377376198768616, -0.009885653853416443, -0.004405933897942305, 0.6385706067085266, -0.3263484537601471, 0.01254340447485447, 0.05042048543691635, 0.012678132392466068, 0.04358922690153122, 0.02371678128838539, 0.19519905745983124, -0.19147196412086487, 1.3606889247894287, -0.41086718440055847, -0.022530343383550644, -0.25863155722618103, -0.06143113970756531, -0.9194058179855347, 0.1273323893547058, 0.3272053003311157, -0.1901896595954895, -0.1869179606437683, 0.20150277018547058]} +{"t": 18.1275, "q": [-0.3309614658355713, 0.01246444508433342, -0.012012530118227005, 0.6276878714561462, -0.2989376485347748, -0.018641632050275803, -0.33396977186203003, -0.010379936546087265, -0.00445950124412775, 0.6385620832443237, -0.3262832462787628, 0.012615407817065716, 0.053500622510910034, 0.011518226936459541, 0.041993770748376846, 0.023812655359506607, 0.19511516392230988, -0.19145998358726501, 1.360724925994873, -0.4108911454677582, -0.022590264678001404, -0.2579364776611328, -0.06210225448012352, -0.9119036793708801, 0.13930463790893555, 0.34791404008865356, -0.2006758451461792, -0.17952369153499603, 0.2009994238615036]} +{"t": 18.1443, "q": [-0.3311319053173065, 0.011901985853910446, -0.012240192852914333, 0.627636730670929, -0.29880794882774353, -0.01841604895889759, -0.33401238918304443, -0.010831608437001705, -0.004606812261044979, 0.6384854316711426, -0.3262670040130615, 0.012644287198781967, 0.05644683912396431, 0.010515032336115837, 0.0404655858874321, 0.024088293313980103, 0.19504326581954956, -0.19144800305366516, 1.3610005378723145, -0.4108791649341583, -0.02262621745467186, -0.2573372721672058, -0.062557652592659, -0.904737114906311, 0.149599090218544, 0.368802547454834, -0.20958013832569122, -0.1733398288488388, 0.20020847022533417]} +{"t": 18.161, "q": [-0.3312256634235382, 0.011331003159284592, -0.012628557160496712, 0.6276196837425232, -0.2987200915813446, -0.01826324686408043, -0.33391866087913513, -0.011300325393676758, -0.004901433829218149, 0.6383320093154907, -0.3263044059276581, 0.01270997989922762, 0.05868328735232353, 0.009810215793550014, 0.0395742766559124, 0.024232102558016777, 0.19501930475234985, -0.19144800305366516, 1.3612042665481567, -0.4108911454677582, -0.022734075784683228, -0.2568698823451996, -0.0631568655371666, -0.8975225687026978, 0.15864717960357666, 0.3882888853549957, -0.21830464899539948, -0.1672997772693634, 0.19932162761688232]} +{"t": 18.1777, "q": [-0.33160915970802307, 0.010708888992667198, -0.013257976621389389, 0.6276196837425232, -0.2986573576927185, -0.018154092133045197, -0.3337993323802948, -0.011956527829170227, -0.0056112040765583515, 0.638084888458252, -0.32634586095809937, 0.012768452055752277, 0.060089435428380966, 0.009405519813299179, 0.0390201061964035, 0.024351945146918297, 0.19494739174842834, -0.1914120465517044, 1.361419916152954, -0.4108911454677582, -0.022829949855804443, -0.2563905119895935, -0.06425941735506058, -0.8880310654640198, 0.16714398562908173, 0.40777525305747986, -0.22762838006019592, -0.15965384244918823, 0.19826702773571014]} +{"t": 18.1947, "q": [-0.33198413252830505, 0.010248696431517601, -0.013539206236600876, 0.6276623010635376, -0.2984900176525116, -0.017863020300865173, -0.33372265100479126, -0.012425243854522705, -0.006012961268424988, 0.637939989566803, -0.3263668119907379, 0.012833990156650543, 0.06045101583003998, 0.009232967160642147, 0.03886556625366211, 0.024699488654732704, 0.1949114352464676, -0.1913641095161438, 1.3617196083068848, -0.4108911454677582, -0.022913837805390358, -0.2560189962387085, -0.06598514318466187, -0.879498302936554, 0.1783851981163025, 0.4247928559780121, -0.2352503389120102, -0.15283481776714325, 0.1974281221628189]} +{"t": 18.2115, "q": [-0.33229944109916687, 0.009916333481669426, -0.013539206236600876, 0.6276963949203491, -0.29838553071022034, -0.017695581540465355, -0.33377376198768616, -0.012680907733738422, -0.005919218063354492, 0.637778103351593, -0.3263549208641052, 0.012899219058454037, 0.060410842299461365, 0.009172821417450905, 0.03886597231030464, 0.025059014558792114, 0.19489945471286774, -0.1913641095161438, 1.3623307943344116, -0.41090312600135803, -0.022937806323170662, -0.2555875778198242, -0.06693189591169357, -0.8701985478401184, 0.19050124287605286, 0.4418104588985443, -0.2434595376253128, -0.14709438383579254, 0.19766780734062195]} +{"t": 18.2283, "q": [-0.3325636386871338, 0.009728847071528435, -0.013472246937453747, 0.6277560591697693, -0.29836052656173706, -0.017666395753622055, -0.3338334262371063, -0.012714996002614498, -0.005664771888405085, 0.6375053524971008, -0.3261962831020355, 0.01312279887497425, 0.06000908464193344, 0.009165247902274132, 0.03888959065079689, 0.02527473121881485, 0.19489945471286774, -0.1913401335477829, 1.3629539012908936, -0.4109151065349579, -0.022949790582060814, -0.25506025552749634, -0.06669221073389053, -0.8603355288505554, 0.2006758451461792, 0.45792922377586365, -0.2518964409828186, -0.1401435285806656, 0.19748805463314056]} +{"t": 18.245, "q": [-0.33268293738365173, 0.009532837197184563, -0.013257976621389389, 0.6277816295623779, -0.298348069190979, -0.017659051343798637, -0.3340805768966675, -0.01269795186817646, -0.005249623209238052, 0.637420117855072, -0.32613927125930786, 0.013194880448281765, 0.0594332329928875, 0.009157695807516575, 0.03890378400683403, 0.025202825665473938, 0.1949354112148285, -0.1913401335477829, 1.3637208938598633, -0.41092708706855774, -0.022949790582060814, -0.2544131278991699, -0.06678808480501175, -0.8508440256118774, 0.21071863174438477, 0.4750427007675171, -0.2583199739456177, -0.13485848903656006, 0.19694875180721283]} +{"t": 18.2619, "q": [-0.33258920907974243, 0.009353874251246452, -0.013150841929018497, 0.6277560591697693, -0.2983727753162384, -0.01764478161931038, -0.3340805768966675, -0.012714996002614498, -0.00483447453007102, 0.6373519897460938, -0.32613518834114075, 0.013202100060880184, 0.058736853301525116, 0.00916520319879055, 0.0389084555208683, 0.024627583101391792, 0.19489945471286774, -0.1913401335477829, 1.364931344985962, -0.41092708706855774, -0.022937806323170662, -0.25343039631843567, -0.06754309684038162, -0.8429704308509827, 0.2223433256149292, 0.49080196022987366, -0.2657501995563507, -0.130232572555542, 0.19638550281524658]} +{"t": 18.2786, "q": [-0.33240172266960144, 0.009260131046175957, -0.013097274117171764, 0.627773106098175, -0.2983892261981964, -0.01763044111430645, -0.3338930904865265, -0.012706474401056767, -0.0047541228123009205, 0.6373178958892822, -0.3261188864707947, 0.013216462917625904, 0.058214571326971054, 0.009142681956291199, 0.03889445587992668, 0.023513050749897957, 0.19489945471286774, -0.1913401335477829, 1.3661417961120605, -0.4109151065349579, -0.02292582206428051, -0.2520282566547394, -0.06738729774951935, -0.8344975709915161, 0.23256587982177734, 0.5066331028938293, -0.2730965316295624, -0.12519919872283936, 0.19633756577968597]} +{"t": 18.2953, "q": [-0.3321886658668518, 0.009234564378857613, -0.013057098723948002, 0.627773106098175, -0.2983892261981964, -0.01763044111430645, -0.33362889289855957, -0.012672385200858116, -0.004767514765262604, 0.6372497081756592, -0.3261188864707947, 0.013216462917625904, 0.05747801437973976, 0.009135153144598007, 0.038899220526218414, 0.022853918373584747, 0.19487549364566803, -0.1914120465517044, 1.3673521280288696, -0.4108911454677582, -0.022782012820243835, -0.24958346784114838, -0.06700380146503448, -0.8247184157371521, 0.24234500527381897, 0.5224882364273071, -0.2774348258972168, -0.11879962682723999, 0.1962776482105255]} +{"t": 18.3121, "q": [-0.33217161893844604, 0.009260131046175957, -0.013043706305325031, 0.6277645826339722, -0.2984098792076111, -0.017623376101255417, -0.33359479904174805, -0.012646819464862347, -0.004767514765262604, 0.6371559500694275, -0.32610657811164856, 0.01322360523045063, 0.05708965286612511, 0.009120072238147259, 0.03891819715499878, 0.022374548017978668, 0.19492343068122864, -0.19142402708530426, 1.3677237033843994, -0.4108911454677582, -0.022662170231342316, -0.24711471796035767, -0.0665244311094284, -0.8161497116088867, 0.2538378834724426, 0.5360543727874756, -0.28385835886001587, -0.11412577331066132, 0.19603796303272247]} +{"t": 18.3289, "q": [-0.3321545720100403, 0.009260131046175957, -0.012990138493478298, 0.6277134418487549, -0.298422247171402, -0.017616242170333862, -0.33359479904174805, -0.012595686130225658, -0.004713947419077158, 0.6370536684989929, -0.32610657811164856, 0.01322360523045063, 0.056567367166280746, 0.009097528643906116, 0.038913629949092865, 0.022158833220601082, 0.19481556117534637, -0.19144800305366516, 1.3680832386016846, -0.41086718440055847, -0.022542327642440796, -0.245257169008255, -0.0662248283624649, -0.8076648712158203, 0.2657741606235504, 0.5518975257873535, -0.29102492332458496, -0.10977550595998764, 0.19575034081935883]} +{"t": 18.3456, "q": [-0.33217161893844604, 0.009260131046175957, -0.013003530912101269, 0.6276793479919434, -0.29841408133506775, -0.017630651593208313, -0.3336203694343567, -0.012570120394229889, -0.004700555466115475, 0.6369855403900146, -0.3261148929595947, 0.013238217681646347, 0.05650040879845619, 0.00909748487174511, 0.03893250972032547, 0.021811289712786674, 0.19481556117534637, -0.19147196412086487, 1.3684067726135254, -0.41081923246383667, -0.022470422089099884, -0.24425049126148224, -0.06576942652463913, -0.7990362048149109, 0.2743668556213379, 0.5656554102897644, -0.295878529548645, -0.10658770054578781, 0.195606529712677]} +{"t": 18.3626, "q": [-0.3321375250816345, 0.009260131046175957, -0.012990138493478298, 0.6275515556335449, -0.2984098792076111, -0.017623376101255417, -0.3336118459701538, -0.01257864199578762, -0.004713947419077158, 0.6370025873184204, -0.32612302899360657, 0.013223759829998016, 0.05647362396121025, 0.009135064668953419, 0.038936976343393326, 0.020840568467974663, 0.19476762413978577, -0.19148394465446472, 1.3686823844909668, -0.4108072519302368, -0.022158833220601082, -0.24329175055027008, -0.06524211913347244, -0.7891013026237488, 0.2814854681491852, 0.5799046754837036, -0.300396591424942, -0.10281267017126083, 0.1955585926771164]} +{"t": 18.3793, "q": [-0.3318733274936676, 0.009268652647733688, -0.012949963100254536, 0.6274322271347046, -0.29841408133506775, -0.017630651593208313, -0.33358627557754517, -0.012527509592473507, -0.004687163513153791, 0.6370280981063843, -0.32612302899360657, 0.013223759829998016, 0.056205786764621735, 0.009127557277679443, 0.03893230855464935, 0.020505009219050407, 0.19479160010814667, -0.19149594008922577, 1.3689579963684082, -0.4107593297958374, -0.022158833220601082, -0.24263262748718262, -0.06499045342206955, -0.7790824770927429, 0.29044967889785767, 0.5938782691955566, -0.3067242503166199, -0.09789913892745972, 0.19499532878398895]} +{"t": 18.396, "q": [-0.3315409719944, 0.009319784119725227, -0.012923179194331169, 0.6273214221000671, -0.2984098792076111, -0.017623376101255417, -0.3334669768810272, -0.012484898790717125, -0.004633595701307058, 0.6370196342468262, -0.32611480355262756, 0.013223700225353241, 0.05605847388505936, 0.009135064668953419, 0.038936976343393326, 0.020493024960160255, 0.19477961957454681, -0.19151990115642548, 1.3691977262496948, -0.41074734926223755, -0.022122880443930626, -0.2421652376651764, -0.0652541071176529, -0.7703939080238342, 0.30166691541671753, 0.6070969104766846, -0.31282421946525574, -0.09318933635950089, 0.19404856860637665]} +{"t": 18.4127, "q": [-0.3313279151916504, 0.009413527324795723, -0.01293657161295414, 0.6272277235984802, -0.29840579628944397, -0.017630580812692642, -0.33321982622146606, -0.012433766387403011, -0.004780906718224287, 0.6369429230690002, -0.32612717151641846, 0.013231056742370129, 0.05611204355955124, 0.00913508702069521, 0.03892753645777702, 0.020421119406819344, 0.19471968710422516, -0.19150792062282562, 1.369329571723938, -0.4107353389263153, -0.022134864702820778, -0.24157801270484924, -0.06490656733512878, -0.7618851065635681, 0.3110385835170746, 0.6191650032997131, -0.3160000443458557, -0.08978581428527832, 0.1931377798318863]} +{"t": 18.4295, "q": [-0.33133643865585327, 0.009490227326750755, -0.012990138493478298, 0.6271936297416687, -0.2983934283256531, -0.017637716606259346, -0.3332539200782776, -0.012382633984088898, -0.004861257970333099, 0.6369429230690002, -0.32613539695739746, 0.013231134042143822, 0.056540582329034805, 0.009135064668953419, 0.038936976343393326, 0.0204570721834898, 0.19451595842838287, -0.19153188169002533, 1.3694853782653809, -0.4107832908630371, -0.02220677025616169, -0.24089491367340088, -0.06401973217725754, -0.752237856388092, 0.3192717432975769, 0.6310772895812988, -0.3198230266571045, -0.08610665798187256, 0.19252657890319824]} +{"t": 18.4465, "q": [-0.33131086826324463, 0.009532837197184563, -0.013016922399401665, 0.6271083950996399, -0.29838114976882935, -0.017659330740571022, -0.3332368731498718, -0.01239115558564663, -0.004968393128365278, 0.6369429230690002, -0.3261270821094513, 0.013216540217399597, 0.056540582329034805, 0.009142594411969185, 0.038932204246520996, 0.020421119406819344, 0.19416841864585876, -0.19151990115642548, 1.3695452213287354, -0.4107832908630371, -0.022302642464637756, -0.240139901638031, -0.06303702294826508, -0.7421470880508423, 0.32857149839401245, 0.6431334614753723, -0.32402947545051575, -0.08329036831855774, 0.19156783819198608]} +{"t": 18.4632, "q": [-0.33112338185310364, 0.009566925466060638, -0.013003530912101269, 0.6270657777786255, -0.29838114976882935, -0.017659330740571022, -0.3332453966140747, -0.012357067316770554, -0.004888041876256466, 0.6369855403900146, -0.3261229395866394, 0.01320924237370491, 0.05632631480693817, 0.009202717803418636, 0.038941238075494766, 0.020445087924599648, 0.19370102882385254, -0.19153188169002533, 1.3695333003997803, -0.4107832908630371, -0.02232661098241806, -0.2391931563615799, -0.061958443373441696, -0.7323919534683228, 0.34057968854904175, 0.6545664072036743, -0.3292306363582611, -0.07802928984165192, 0.190489262342453]} +{"t": 18.48, "q": [-0.3310040831565857, 0.009592492133378983, -0.013030314818024635, 0.6268782615661621, -0.2983729839324951, -0.017673740163445473, -0.3332539200782776, -0.012322979047894478, -0.004807690624147654, 0.6369855403900146, -0.32613539695739746, 0.013231134042143822, 0.05629952996969223, 0.009255443699657917, 0.03889841213822365, 0.020505009219050407, 0.19308984279632568, -0.19150792062282562, 1.3695333003997803, -0.41081923246383667, -0.022422485053539276, -0.23822243511676788, -0.06144312396645546, -0.722217321395874, 0.3500951826572418, 0.6665506362915039, -0.3336767852306366, -0.07334345579147339, 0.18879948556423187]} +{"t": 18.4967, "q": [-0.3309103548526764, 0.00964362546801567, -0.013003530912101269, 0.6266822814941406, -0.2983606159687042, -0.017680875957012177, -0.3332113027572632, -0.012314456515014172, -0.004861257970333099, 0.6369343996047974, -0.32613539695739746, 0.013231134042143822, 0.05625935271382332, 0.009293134324252605, 0.03885573521256447, 0.020540961995720863, 0.1925385594367981, -0.19149594008922577, 1.3694853782653809, -0.41084322333335876, -0.022614233195781708, -0.2373236119747162, -0.05975334718823433, -0.7111199498176575, 0.3588436543941498, 0.6787625551223755, -0.33703237771987915, -0.06928080320358276, 0.1859472393989563]} +{"t": 18.5134, "q": [-0.3308592140674591, 0.00970328040421009, -0.013003530912101269, 0.6266055703163147, -0.2983771562576294, -0.017681032419204712, -0.33321982622146606, -0.012271846644580364, -0.00483447453007102, 0.6368662118911743, -0.3261435031890869, 0.013216693885624409, 0.056045085191726685, 0.00927812047302723, 0.03884640708565712, 0.02105628326535225, 0.19208316504955292, -0.19147196412086487, 1.36955726146698, -0.4108791649341583, -0.022650185972452164, -0.23688019812107086, -0.05741642415523529, -0.7010412216186523, 0.36808350682258606, 0.6906388998031616, -0.3403160572052002, -0.06544585525989532, 0.18190854787826538]} +{"t": 18.5302, "q": [-0.33084216713905334, 0.009745890274643898, -0.013003530912101269, 0.6265288591384888, -0.29837706685066223, -0.017666535452008247, -0.3332539200782776, -0.012203669175505638, -0.004660379607230425, 0.6367298364639282, -0.3261518180370331, 0.013231288641691208, 0.05529513582587242, 0.009278098121285439, 0.03885583579540253, 0.021643510088324547, 0.1916397511959076, -0.19148394465446472, 1.3696770668029785, -0.4108911454677582, -0.022674154490232468, -0.2365446388721466, -0.05523529276251793, -0.6911182999610901, 0.37987595796585083, 0.7030905485153198, -0.3427847921848297, -0.06264154613018036, 0.17722272872924805]} +{"t": 18.547, "q": [-0.3308080732822418, 0.009805545210838318, -0.013016922399401665, 0.6265032887458801, -0.298385351896286, -0.01766662299633026, -0.3332539200782776, -0.012152536772191525, -0.004606812261044979, 0.6366361379623413, -0.3261476755142212, 0.013223991729319096, 0.05450501665472984, 0.009263084270060062, 0.03884650766849518, 0.02190716378390789, 0.19130419194698334, -0.19144800305366516, 1.3698928356170654, -0.4108911454677582, -0.02263820171356201, -0.23618510365486145, -0.05217931792140007, -0.6816267967224121, 0.38790538907051086, 0.7148350477218628, -0.34489402174949646, -0.06012485921382904, 0.1730162650346756]} +{"t": 18.5637, "q": [-0.3307825028896332, 0.009805545210838318, -0.012949963100254536, 0.6265288591384888, -0.2983895242214203, -0.017673898488283157, -0.33321982622146606, -0.012152536772191525, -0.004486285150051117, 0.6366190910339355, -0.32614755630493164, 0.01320947427302599, 0.05344705656170845, 0.009270657785236835, 0.03882288932800293, 0.022003037855029106, 0.19126823544502258, -0.19144800305366516, 1.370072603225708, -0.41090312600135803, -0.022650185972452164, -0.2358735203742981, -0.04941096156835556, -0.6710806488990784, 0.39529967308044434, 0.7270110249519348, -0.3478061854839325, -0.05537910386919975, 0.16922923922538757]} +{"t": 18.5804, "q": [-0.3308080732822418, 0.009797023609280586, -0.012896395288407803, 0.6265373826026917, -0.29839369654655457, -0.017681172117590904, -0.33327949047088623, -0.012144014239311218, -0.004365758039057255, 0.6365509033203125, -0.32613539695739746, 0.013231134042143822, 0.052201610058546066, 0.009391126222908497, 0.038746658712625504, 0.022003037855029106, 0.1913161724805832, -0.1914120465517044, 1.370360255241394, -0.4108791649341583, -0.022602248936891556, -0.23569375276565552, -0.046906258910894394, -0.6608101725578308, 0.402046799659729, 0.7393068671226501, -0.35128161311149597, -0.050645336508750916, 0.16565795242786407]} +{"t": 18.5972, "q": [-0.33087626099586487, 0.009779978543519974, -0.01277586817741394, 0.6264522075653076, -0.29839369654655457, -0.017681172117590904, -0.3333817422389984, -0.012161058373749256, -0.00416487967595458, 0.6364741921424866, -0.3261435031890869, 0.013216693885624409, 0.05092937871813774, 0.00943643506616354, 0.03866150975227356, 0.02196708507835865, 0.19140006601810455, -0.19142402708530426, 1.3706717491149902, -0.4108791649341583, -0.0225662961602211, -0.2356218546628952, -0.04458131641149521, -0.6512947082519531, 0.409560889005661, 0.7513869404792786, -0.3530432879924774, -0.04694221168756485, 0.1615353673696518]} +{"t": 18.6139, "q": [-0.3309018313884735, 0.009779978543519974, -0.012708908878266811, 0.6264181137084961, -0.298401802778244, -0.01765228435397148, -0.3334243595600128, -0.012144014239311218, -0.004071136470884085, 0.6363463401794434, -0.3261476755142212, 0.013223991729319096, 0.04977767542004585, 0.009481721557676792, 0.038585785776376724, 0.021811289712786674, 0.19149594008922577, -0.19142402708530426, 1.3712589740753174, -0.41086718440055847, -0.02250637486577034, -0.23558589816093445, -0.04159724712371826, -0.64292973279953, 0.4183692932128906, 0.7628318667411804, -0.3533428907394409, -0.044089965522289276, 0.15810787677764893]} +{"t": 18.6306, "q": [-0.33087626099586487, 0.009771456941962242, -0.012668733485043049, 0.6263414025306702, -0.2984059751033783, -0.017659557983279228, -0.3334414064884186, -0.012144014239311218, -0.004030960611999035, 0.6362611651420593, -0.3261517286300659, 0.013216771185398102, 0.04875989258289337, 0.009526919573545456, 0.03854777291417122, 0.021703431382775307, 0.19154387712478638, -0.19147196412086487, 1.3716784715652466, -0.4108312129974365, -0.022482406347990036, -0.23551400005817413, -0.03778626397252083, -0.6343370079994202, 0.4253681004047394, 0.7750318050384521, -0.35335487127304077, -0.0427357479929924, 0.1542969048023224]} +{"t": 18.6474, "q": [-0.3309444189071655, 0.009771456941962242, -0.012628557160496712, 0.6262476444244385, -0.2984183430671692, -0.01765240542590618, -0.33354368805885315, -0.012144014239311218, -0.003977392800152302, 0.6361674070358276, -0.3261518180370331, 0.013231288641691208, 0.04833135008811951, 0.009557036682963371, 0.03852871432900429, 0.02142779529094696, 0.19154387712478638, -0.19142402708530426, 1.372025966644287, -0.41081923246383667, -0.022458437830209732, -0.23545406758785248, -0.03256113827228546, -0.6259840130805969, 0.4299101233482361, 0.7856857776641846, -0.35335487127304077, -0.04109390825033188, 0.15228354930877686]} +{"t": 18.6641, "q": [-0.33097851276397705, 0.00976293534040451, -0.012534813955426216, 0.6259323358535767, -0.2984183430671692, -0.01765240542590618, -0.33362889289855957, -0.012144014239311218, -0.0038970415480434895, 0.6359628438949585, -0.3261435031890869, 0.013216693885624409, 0.04788941890001297, 0.009564521722495556, 0.03854280337691307, 0.021451763808727264, 0.19160379469394684, -0.1914120465517044, 1.3722656965255737, -0.4108552038669586, -0.022470422089099884, -0.23544208705425262, -0.027048395946621895, -0.6177148818969727, 0.43533897399902344, 0.7979217171669006, -0.3533668518066406, -0.03880492225289345, 0.15124092996120453]} +{"t": 18.6809, "q": [-0.33106374740600586, 0.00976293534040451, -0.012508030980825424, 0.6256425976753235, -0.2984101474285126, -0.017666833475232124, -0.3337141275405884, -0.012118448503315449, -0.0038970415480434895, 0.635621964931488, -0.32613953948020935, 0.013238430954515934, 0.047648366540670395, 0.009587042964994907, 0.038556795567274094, 0.021403826773166656, 0.1916157752275467, -0.19144800305366516, 1.3725773096084595, -0.4108312129974365, -0.022470422089099884, -0.23540613055229187, -0.020912472158670425, -0.6099011898040771, 0.43877843022346497, 0.8079884648323059, -0.35330694913864136, -0.034274883568286896, 0.15055781602859497]} +{"t": 18.6976, "q": [-0.3310467004776001, 0.009779978543519974, -0.012508030980825424, 0.6252676248550415, -0.2984101474285126, -0.017666833475232124, -0.333739697933197, -0.012050271034240723, -0.00388364982791245, 0.6352981328964233, -0.3261435031890869, 0.013216693885624409, 0.047313567250967026, 0.009579513221979141, 0.03856155648827553, 0.02154763787984848, 0.19159181416034698, -0.19144800305366516, 1.3729608058929443, -0.4108911454677582, -0.022530343383550644, -0.23539415001869202, -0.014824486337602139, -0.6028304696083069, 0.444411039352417, 0.81889408826828, -0.3531751036643982, -0.031147001311182976, 0.1501503586769104]} +{"t": 18.7144, "q": [-0.33093589544296265, 0.009771456941962242, -0.012508030980825424, 0.6248756051063538, -0.298401802778244, -0.01765228435397148, -0.33368003368377686, -0.011982094496488571, -0.0038300822488963604, 0.635016918182373, -0.3261435031890869, 0.013216693885624409, 0.04676450043916702, 0.009549418464303017, 0.03857119008898735, 0.021763352677226067, 0.19148394465446472, -0.1913880705833435, 1.3733562231063843, -0.4109151065349579, -0.022602248936891556, -0.2353462129831314, -0.00900015328079462, -0.596910297870636, 0.4505229890346527, 0.8285893201828003, -0.3527676463127136, -0.028798094019293785, 0.15009044110774994]} +{"t": 18.7311, "q": [-0.3308251202106476, 0.009779978543519974, -0.012508030980825424, 0.6245262026786804, -0.2983895242214203, -0.017673898488283157, -0.33359479904174805, -0.011930961161851883, -0.0038434739690274, 0.634573757648468, -0.32613518834114075, 0.013202100060880184, 0.0451708622276783, 0.009549396112561226, 0.03858061507344246, 0.02208692766726017, 0.19148394465446472, -0.19137609004974365, 1.3742790222167969, -0.4109151065349579, -0.022614233195781708, -0.23531025648117065, -0.005153216887265444, -0.5907144546508789, 0.4553406238555908, 0.838703989982605, -0.3524440824985504, -0.026856649667024612, 0.15027019381523132]} +{"t": 18.7478, "q": [-0.3309018313884735, 0.009805545210838318, -0.012508030980825424, 0.6241512298583984, -0.2983894348144531, -0.017659418284893036, -0.3335607051849365, -0.011871307156980038, -0.003937217406928539, 0.6342158317565918, -0.3261187672615051, 0.01320192776620388, 0.04298798367381096, 0.009526741690933704, 0.03862319141626358, 0.02220677025616169, 0.19151990115642548, -0.1914120465517044, 1.3752257823944092, -0.41092708706855774, -0.022614233195781708, -0.23523835837841034, -0.0008868326549418271, -0.5848541855812073, 0.45924749970436096, 0.8480996489524841, -0.35226431488990784, -0.02503504604101181, 0.15095330774784088]} +{"t": 18.7646, "q": [-0.3309444189071655, 0.009797023609280586, -0.012508030980825424, 0.623733639717102, -0.29837286472320557, -0.01765925996005535, -0.3336118459701538, -0.011905395425856113, -0.003910433501005173, 0.6339346170425415, -0.3261187672615051, 0.01320192776620388, 0.041086334735155106, 0.00957171805202961, 0.03867945075035095, 0.022218754515051842, 0.19151990115642548, -0.1914120465517044, 1.375992774963379, -0.4108911454677582, -0.022542327642440796, -0.23516644537448883, 0.0037510625552386045, -0.5792215466499329, 0.462758868932724, 0.8575552105903625, -0.352024644613266, -0.024351945146918297, 0.15176822245121002]} +{"t": 18.7813, "q": [-0.3308506906032562, 0.00976293534040451, -0.012387503869831562, 0.6235631704330444, -0.2983936071395874, -0.017666693776845932, -0.3335266411304474, -0.011913917027413845, -0.0037899063900113106, 0.6337044835090637, -0.3261268734931946, 0.013187487609684467, 0.03930521383881569, 0.009842014871537685, 0.03882846608757973, 0.022134864702820778, 0.19156783819198608, -0.19142402708530426, 1.3761606216430664, -0.41090312600135803, -0.02250637486577034, -0.23509454727172852, 0.008580705150961876, -0.5727381110191345, 0.46472427248954773, 0.8668429851531982, -0.35171303153038025, -0.024148214608430862, 0.1521996557712555]} +{"t": 18.798, "q": [-0.3306887745857239, 0.009779978543519974, -0.012226800434291363, 0.6232990026473999, -0.2983894348144531, -0.017659418284893036, -0.3335095942020416, -0.011896872892975807, -0.003589028026908636, 0.6336193084716797, -0.3261268734931946, 0.013187487609684467, 0.03649291396141052, 0.010164844803512096, 0.03901970759034157, 0.022278673946857452, 0.1916157752275467, -0.1914120465517044, 1.3764241933822632, -0.4108911454677582, -0.022518359124660492, -0.23508256673812866, 0.012595420703291893, -0.5654397010803223, 0.46631819009780884, 0.8767179846763611, -0.3511258065700531, -0.02400440350174904, 0.15245133638381958]} +{"t": 18.8148, "q": [-0.3304842412471771, 0.009737368673086166, -0.011958963237702847, 0.6229240298271179, -0.298401802778244, -0.01765228435397148, -0.3335095942020416, -0.011905395425856113, -0.0034015413839370012, 0.6334829330444336, -0.3261187672615051, 0.01320192776620388, 0.033694010227918625, 0.010367517359554768, 0.03915521129965782, 0.022470422089099884, 0.1916157752275467, -0.1914360076189041, 1.3766758441925049, -0.4108791649341583, -0.02244645357131958, -0.235022634267807, 0.015915051102638245, -0.5586206912994385, 0.4673967659473419, 0.8846515417098999, -0.3502269983291626, -0.02401638776063919, 0.15318237245082855]} +{"t": 18.8315, "q": [-0.33001551032066345, 0.009728847071528435, -0.011637557297945023, 0.6225661039352417, -0.29839760065078735, -0.017645008862018585, -0.33345845341682434, -0.011871307156980038, -0.003093527862802148, 0.6332187652587891, -0.3261187672615051, 0.01320192776620388, 0.03139060363173485, 0.010442589409649372, 0.03920190408825874, 0.0222666896879673, 0.1916397511959076, -0.1914360076189041, 1.3768436908721924, -0.41086718440055847, -0.022434469312429428, -0.23489081859588623, 0.019809924066066742, -0.5516698360443115, 0.4675285816192627, 0.8909072875976562, -0.3496277928352356, -0.02400440350174904, 0.1538175344467163]} +{"t": 18.8482, "q": [-0.32941895723342896, 0.009745890274643898, -0.011356327682733536, 0.6222678422927856, -0.298401802778244, -0.01765228435397148, -0.33326244354248047, -0.011624165810644627, -0.0025712440256029367, 0.633005678653717, -0.32611462473869324, 0.013194629922509193, 0.030533522367477417, 0.010412494651973248, 0.03921154513955116, 0.021571604534983635, 0.1916397511959076, -0.19144800305366516, 1.37703537940979, -0.4108072519302368, -0.022350579500198364, -0.23478296399116516, 0.024639567360281944, -0.5454739928245544, 0.4677083492279053, 0.8959766030311584, -0.3491843640804291, -0.024160198867321014, 0.1543927788734436]} +{"t": 18.865, "q": [-0.3289417326450348, 0.009788502007722855, -0.011275975964963436, 0.622174084186554, -0.2984183430671692, -0.01765240542590618, -0.33295565843582153, -0.011462245136499405, -0.0023034061305224895, 0.6328352689743042, -0.3261144161224365, 0.013165595941245556, 0.03009158931672573, 0.01036734227091074, 0.03923073038458824, 0.021463748067617416, 0.19162775576114655, -0.19145998358726501, 1.3771193027496338, -0.4108072519302368, -0.022158833220601082, -0.2347230315208435, 0.028929919004440308, -0.539601743221283, 0.46781620383262634, 0.9011538028717041, -0.34864509105682373, -0.024232102558016777, 0.15488412976264954]} +{"t": 18.8817, "q": [-0.32854971289634705, 0.009788502007722855, -0.011115273460745811, 0.621944010257721, -0.2984142601490021, -0.017659610137343407, -0.3327937424182892, -0.011462245136499405, -0.0021828790195286274, 0.632775604724884, -0.32610630989074707, 0.013180036097764969, 0.029529130086302757, 0.010374871082603931, 0.03922595828771591, 0.021331921219825745, 0.1916397511959076, -0.19149594008922577, 1.3772151470184326, -0.4107832908630371, -0.02208692766726017, -0.2346750944852829, 0.03215367719531059, -0.531991720199585, 0.46811583638191223, 0.9094588756561279, -0.34777024388313293, -0.0243759136646986, 0.15572302043437958]} +{"t": 18.8985, "q": [-0.32840484380722046, 0.009771456941962242, -0.010807259939610958, 0.6218246817588806, -0.2984183430671692, -0.01765240542590618, -0.33276817202568054, -0.011453723534941673, -0.0019552167505025864, 0.6327159404754639, -0.32610225677490234, 0.013187255710363388, 0.029529130086302757, 0.010382378473877907, 0.039230626076459885, 0.021212078630924225, 0.19162775576114655, -0.19149594008922577, 1.3772751092910767, -0.4107593297958374, -0.021871211007237434, -0.23461517691612244, 0.03567703813314438, -0.5251727104187012, 0.46810382604599, 0.9160981178283691, -0.34567299485206604, -0.024399882182478905, 0.15652596950531006]} +{"t": 18.9152, "q": [-0.3283451795578003, 0.00976293534040451, -0.010619773529469967, 0.6216968297958374, -0.2984141707420349, -0.017645129933953285, -0.3327766954898834, -0.011479289270937443, -0.0018079059664160013, 0.6326477527618408, -0.32610225677490234, 0.013187255710363388, 0.02975679188966751, 0.010404878295958042, 0.039254073053598404, 0.021152157336473465, 0.1916637122631073, -0.19151990115642548, 1.3773949146270752, -0.4107353389263153, -0.021739384159445763, -0.23460319638252258, 0.03970373794436455, -0.5176226496696472, 0.4680439233779907, 0.9223299622535706, -0.34240129590034485, -0.02448377199470997, 0.15747271478176117]} +{"t": 18.9319, "q": [-0.32832813262939453, 0.009771456941962242, -0.010552814230322838, 0.6216456890106201, -0.29840996861457825, -0.01763785630464554, -0.3326999843120575, -0.011513377539813519, -0.0018079059664160013, 0.6325880885124207, -0.32610639929771423, 0.013194553554058075, 0.030171940103173256, 0.010404899716377258, 0.0392446331679821, 0.021080251783132553, 0.19165173172950745, -0.19159181416034698, 1.3774428367614746, -0.4106874167919159, -0.02160755731165409, -0.23455525934696198, 0.04388623312115669, -0.5107077360153198, 0.4679000973701477, 0.9278426766395569, -0.33857834339141846, -0.02455567754805088, 0.15870709717273712]} +{"t": 18.9488, "q": [-0.3281491696834564, 0.009754413738846779, -0.010619773529469967, 0.6216286420822144, -0.29840996861457825, -0.01763785630464554, -0.3324187695980072, -0.011521900072693825, -0.0018882573349401355, 0.6324432492256165, -0.3261105716228485, 0.013201850466430187, 0.030694223940372467, 0.010359791107475758, 0.039244938641786575, 0.02100834622979164, 0.1916157752275467, -0.19154387712478638, 1.3774428367614746, -0.4106874167919159, -0.021583588793873787, -0.23453128337860107, 0.04821253940463066, -0.5051590800285339, 0.46776828169822693, 0.9314020276069641, -0.33488717675209045, -0.024579646065831184, 0.1603848934173584]} +{"t": 18.9655, "q": [-0.3279787302017212, 0.009771456941962242, -0.010646557435393333, 0.6215008497238159, -0.2984098792076111, -0.017623376101255417, -0.3322397768497467, -0.0115559883415699, -0.0019686087034642696, 0.6322131156921387, -0.3261147141456604, 0.0132091473788023, 0.03077457658946514, 0.010299689136445522, 0.0392264649271965, 0.021032314747571945, 0.1916397511959076, -0.19156783819198608, 1.3774069547653198, -0.4107113778591156, -0.021799305453896523, -0.2344953417778015, 0.05186772719025612, -0.4986276626586914, 0.467648446559906, 0.9351770281791687, -0.3314597010612488, -0.024627583101391792, 0.1624821275472641]} +{"t": 18.9822, "q": [-0.32781681418418884, 0.00976293534040451, -0.010619773529469967, 0.6213729977607727, -0.29840579628944397, -0.017630580812692642, -0.3321119546890259, -0.011581555008888245, -0.0019284329609945416, 0.6319745182991028, -0.32610657811164856, 0.01322360523045063, 0.030533522367477417, 0.010239588096737862, 0.03920799121260643, 0.020972393453121185, 0.19162775576114655, -0.19150792062282562, 1.3773590326309204, -0.4107832908630371, -0.021931132301688194, -0.23450732231140137, 0.0544443354010582, -0.49180862307548523, 0.4675525724887848, 0.9387243390083313, -0.3303811252117157, -0.024687504395842552, 0.1637284904718399]} +{"t": 18.999, "q": [-0.32754409313201904, 0.009771456941962242, -0.010499246418476105, 0.6212621927261353, -0.298418253660202, -0.01763792522251606, -0.3320011794567108, -0.011598599143326283, -0.0017543383873999119, 0.6319063305854797, -0.32610243558883667, 0.013216308318078518, 0.030346035957336426, 0.010232102125883102, 0.039193883538246155, 0.02112818881869316, 0.1916397511959076, -0.19148394465446472, 1.3773949146270752, -0.41079527139663696, -0.022015022113919258, -0.23445938527584076, 0.056601494550704956, -0.48575660586357117, 0.46749264001846313, 0.9422717094421387, -0.3294104039669037, -0.024819331243634224, 0.1648550033569336]} +{"t": 19.0157, "q": [-0.32726287841796875, 0.009771456941962242, -0.010472462512552738, 0.6210576891899109, -0.29841408133506775, -0.017630651593208313, -0.33179664611816406, -0.011624165810644627, -0.0017275545978918672, 0.6317444443702698, -0.32610657811164856, 0.01322360523045063, 0.03025229275226593, 0.0101870596408844, 0.03916586935520172, 0.022122880443930626, 0.1916397511959076, -0.19147196412086487, 1.3775267601013184, -0.41081923246383667, -0.022050974890589714, -0.2343754917383194, 0.05850698798894882, -0.4787817895412445, 0.4674087464809418, 0.947101354598999, -0.3281880021095276, -0.025070998817682266, 0.16620922088623047]} +{"t": 19.0325, "q": [-0.3270498216152191, 0.009771456941962242, -0.010485853999853134, 0.6208786964416504, -0.2984015941619873, -0.017623288556933403, -0.3316006362438202, -0.011632687412202358, -0.0017409464344382286, 0.6315654516220093, -0.3260984718799591, 0.013238045386970043, 0.030493346974253654, 0.010051973164081573, 0.039062947034835815, 0.022602248936891556, 0.1916397511959076, -0.19142402708530426, 1.3775746822357178, -0.41081923246383667, -0.022062959149479866, -0.23424366116523743, 0.06065216287970543, -0.4721664786338806, 0.4673488438129425, 0.9508763551712036, -0.32716935873031616, -0.025118935853242874, 0.168222576379776]} +{"t": 19.0492, "q": [-0.32699868083000183, 0.009771456941962242, -0.0105126379057765, 0.6208446025848389, -0.29840996861457825, -0.01763785630464554, -0.33152392506599426, -0.011632687412202358, -0.0018079059664160013, 0.6315057873725891, -0.32610657811164856, 0.01322360523045063, 0.03073440119624138, 0.009849278256297112, 0.038936879485845566, 0.022662170231342316, 0.1916397511959076, -0.1914120465517044, 1.3775867223739624, -0.4108072519302368, -0.022062959149479866, -0.23411184549331665, 0.06322877109050751, -0.46659383177757263, 0.46726495027542114, 0.9521946310997009, -0.32607877254486084, -0.025286715477705002, 0.17039170861244202]} +{"t": 19.0659, "q": [-0.3268793821334839, 0.009779978543519974, -0.010526030324399471, 0.6207338571548462, -0.29839760065078735, -0.017645008862018585, -0.3314557671546936, -0.011624165810644627, -0.0018614735454320908, 0.6314887404441833, -0.32610657811164856, 0.01322360523045063, 0.03073440119624138, 0.009518946520984173, 0.038741085678339005, 0.02274606004357338, 0.19162775576114655, -0.1913880705833435, 1.3775867223739624, -0.4108072519302368, -0.022074943408370018, -0.23403993248939514, 0.0652541071176529, -0.46072155237197876, 0.4672289788722992, 0.9534409642219543, -0.32352614402770996, -0.025538384914398193, 0.17199760675430298]} +{"t": 19.0829, "q": [-0.326870858669281, 0.009856678545475006, -0.010526030324399471, 0.6206571459770203, -0.2983893156051636, -0.01764492131769657, -0.33147281408309937, -0.011624165810644627, -0.001834689755924046, 0.6313779950141907, -0.32610657811164856, 0.01322360523045063, 0.030640657991170883, 0.009105971083045006, 0.038474734872579575, 0.02287788689136505, 0.19162775576114655, -0.1914120465517044, 1.3775867223739624, -0.4108072519302368, -0.022050974890589714, -0.23396803438663483, 0.0664764940738678, -0.4555683434009552, 0.46701326966285706, 0.9548671245574951, -0.32151278853416443, -0.025598304346203804, 0.172968327999115]} +{"t": 19.0998, "q": [-0.3268367648124695, 0.00987372174859047, -0.010526030324399471, 0.6206571459770203, -0.2983893156051636, -0.01764492131769657, -0.33143872022628784, -0.01161564327776432, -0.0018079059664160013, 0.631284236907959, -0.3260984718799591, 0.013238045386970043, 0.030520129948854446, 0.008715370669960976, 0.038221750408411026, 0.02281796559691429, 0.1916397511959076, -0.19142402708530426, 1.377610683441162, -0.41081923246383667, -0.022062959149479866, -0.23389612138271332, 0.067123644053936, -0.4511941075325012, 0.4670492112636566, 0.9562692642211914, -0.31958332657814026, -0.025658225640654564, 0.17365142703056335]} +{"t": 19.1166, "q": [-0.326870858669281, 0.00987372174859047, -0.0105126379057765, 0.6205719113349915, -0.2984015941619873, -0.017623288556933403, -0.3314472436904907, -0.011624165810644627, -0.0017677302239462733, 0.6311222910881042, -0.32609838247299194, 0.013223527930676937, 0.030533522367477417, 0.008354815654456615, 0.03798750042915344, 0.022614233195781708, 0.19167569279670715, -0.1914120465517044, 1.3775867223739624, -0.41084322333335876, -0.022050974890589714, -0.23371635377407074, 0.06762698292732239, -0.44797033071517944, 0.4670732021331787, 0.9581508040428162, -0.3170786201953888, -0.025778068229556084, 0.174166738986969]} +{"t": 19.1333, "q": [-0.32684528827667236, 0.009865200147032738, -0.0105126379057765, 0.6205037236213684, -0.2984015941619873, -0.017623288556933403, -0.33138757944107056, -0.011658254079520702, -0.0017543383873999119, 0.630841076374054, -0.3260740339756012, 0.01326686516404152, 0.030533522367477417, 0.008122033439576626, 0.03779507428407669, 0.0225662961602211, 0.1916397511959076, -0.19144800305366516, 1.3775867223739624, -0.4108072519302368, -0.022062959149479866, -0.23353660106658936, 0.0676988884806633, -0.4452139735221863, 0.46706122159957886, 0.9606914520263672, -0.31481361389160156, -0.02576608397066593, 0.17450229823589325]} +{"t": 19.1502, "q": [-0.326870858669281, 0.009839633479714394, -0.0105126379057765, 0.620444118976593, -0.29840579628944397, -0.017630580812692642, -0.3312768042087555, -0.01167529821395874, -0.0017409464344382286, 0.6305172443389893, -0.3260374069213867, 0.013317345641553402, 0.030546914786100388, 0.007806535344570875, 0.037598371505737305, 0.022614233195781708, 0.19165173172950745, -0.1914120465517044, 1.3775986433029175, -0.41079527139663696, -0.022050974890589714, -0.23344072699546814, 0.06774682551622391, -0.44280514121055603, 0.4670732021331787, 0.9629564881324768, -0.31393876671791077, -0.025730131193995476, 0.1745622307062149]} +{"t": 19.1669, "q": [-0.32693904638290405, 0.009839633479714394, -0.010485853999853134, 0.6203247904777527, -0.29840579628944397, -0.017630580812692642, -0.3312341868877411, -0.011683819815516472, -0.0017409464344382286, 0.63009113073349, -0.32592782378196716, 0.01351233758032322, 0.030627265572547913, 0.007310736458748579, 0.0372990183532238, 0.022662170231342316, 0.1916397511959076, -0.1914360076189041, 1.377610683441162, -0.4108072519302368, -0.022062959149479866, -0.23328493535518646, 0.0677228569984436, -0.4407917857170105, 0.46710914373397827, 0.9654012322425842, -0.31363916397094727, -0.02576608397066593, 0.17457421123981476]} +{"t": 19.1836, "q": [-0.32698163390159607, 0.009805545210838318, -0.010472462512552738, 0.6200435757637024, -0.2984057068824768, -0.017616083845496178, -0.3312171399593353, -0.011726430617272854, -0.0017677302239462733, 0.6296735405921936, -0.3258383572101593, 0.013642177917063236, 0.030828144401311874, 0.006634370423853397, 0.036877114325761795, 0.022782012820243835, 0.19167569279670715, -0.19144800305366516, 1.3777425289154053, -0.4108072519302368, -0.022050974890589714, -0.23308119177818298, 0.06743523478507996, -0.43858668208122253, 0.467133104801178, 0.9680737257003784, -0.3134593963623047, -0.025742115452885628, 0.17455023527145386]} +{"t": 19.2004, "q": [-0.3270157277584076, 0.009754413738846779, -0.0105126379057765, 0.6198731064796448, -0.29841387271881104, -0.017601674422621727, -0.33111485838890076, -0.011751997284591198, -0.0017811221769079566, 0.6292303800582886, -0.32579776644706726, 0.013714413158595562, 0.031015630811452866, 0.005980437155812979, 0.03646846488118172, 0.02281796559691429, 0.1916637122631073, -0.19145998358726501, 1.3778023719787598, -0.41081923246383667, -0.022038990631699562, -0.23284150660037994, 0.06723150610923767, -0.43678906559944153, 0.467133104801178, 0.9700990915298462, -0.31336352229118347, -0.025706162676215172, 0.174538254737854]} +{"t": 19.2171, "q": [-0.32698163390159607, 0.009745890274643898, -0.010472462512552738, 0.6194896101951599, -0.29841387271881104, -0.017601674422621727, -0.3310381770133972, -0.011777563951909542, -0.0018079059664160013, 0.6287616491317749, -0.3257488012313843, 0.013757518492639065, 0.03109598159790039, 0.005123557522892952, 0.03593292832374573, 0.023021696135401726, 0.19169966876506805, -0.19147196412086487, 1.3778862953186035, -0.4108072519302368, -0.022062959149479866, -0.2323261946439743, 0.067123644053936, -0.4355546832084656, 0.46710914373397827, 0.9715132117271423, -0.313435435295105, -0.025670209899544716, 0.17452627420425415]} +{"t": 19.2338, "q": [-0.32690495252609253, 0.009728847071528435, -0.010445678606629372, 0.619037926197052, -0.2984054982662201, -0.017587125301361084, -0.33093589544296265, -0.01179460808634758, -0.0017811221769079566, 0.6282333135604858, -0.32565930485725403, 0.013887341134250164, 0.031042413786053658, 0.004198630806058645, 0.03530638664960861, 0.023213444277644157, 0.19177156686782837, -0.19144800305366516, 1.3780540227890015, -0.4108072519302368, -0.022062959149479866, -0.2314513474702835, 0.0670757070183754, -0.43453601002693176, 0.4671570956707001, 0.9724360108375549, -0.31361520290374756, -0.025670209899544716, 0.17452627420425415]} +{"t": 19.2506, "q": [-0.3268197178840637, 0.00970328040421009, -0.010445678606629372, 0.6186885237693787, -0.2984013259410858, -0.017579851672053337, -0.3307739794254303, -0.01179460808634758, -0.0017543383873999119, 0.6277475357055664, -0.3255899250507355, 0.013952047564089298, 0.03092188760638237, 0.0034390315413475037, 0.03481155261397362, 0.023189475759863853, 0.19185546040534973, -0.19147196412086487, 1.3781139850616455, -0.4108072519302368, -0.022050974890589714, -0.22989338636398315, 0.06741126626729965, -0.4333735406398773, 0.4678042232990265, 0.9727954864501953, -0.3137350380420685, -0.025670209899544716, 0.17457421123981476]} +{"t": 19.2673, "q": [-0.3267259895801544, 0.009694758802652359, -0.010445678606629372, 0.6185181140899658, -0.29840531945228577, -0.01755816675722599, -0.3305353820323944, -0.01179460808634758, -0.0017811221769079566, 0.627261757850647, -0.32555726170539856, 0.013980790041387081, 0.0307477917522192, 0.0027545925695449114, 0.03440210968255997, 0.02305764891207218, 0.19181950390338898, -0.19147196412086487, 1.3781858682632446, -0.4108072519302368, -0.022050974890589714, -0.22698122262954712, 0.06805841624736786, -0.43176767230033875, 0.4681517779827118, 0.9734786152839661, -0.3138309121131897, -0.025682194158434868, 0.1744903177022934]} +{"t": 19.2841, "q": [-0.3266066610813141, 0.009711802005767822, -0.010445678606629372, 0.618364691734314, -0.2984094023704529, -0.017550962045788765, -0.33033937215805054, -0.011777563951909542, -0.0018079059664160013, 0.6269634962081909, -0.3254716694355011, 0.014074358157813549, 0.030613873153924942, 0.002280497457832098, 0.0341043658554554, 0.0228659026324749, 0.19181950390338898, -0.19149594008922577, 1.3781260251998901, -0.4108072519302368, -0.022050974890589714, -0.22488398849964142, 0.0685737356543541, -0.4303056001663208, 0.468475341796875, 0.9737422466278076, -0.3138548731803894, -0.02569417841732502, 0.17447833716869354]} +{"t": 19.3009, "q": [-0.32640212774276733, 0.009669192135334015, -0.010432287119328976, 0.6182453632354736, -0.2984135150909424, -0.01754375733435154, -0.3299899399280548, -0.01179460808634758, -0.001794514013454318, 0.6265970468521118, -0.3253782391548157, 0.014225935563445091, 0.030346035957336426, 0.002054740209132433, 0.03396258503198624, 0.022710107266902924, 0.19179554283618927, -0.19149594008922577, 1.3781858682632446, -0.4107593297958374, -0.02196708507835865, -0.2229185700416565, 0.06880144029855728, -0.42886748909950256, 0.46855923533439636, 0.9739220142364502, -0.3138788342475891, -0.025670209899544716, 0.17445436120033264]} +{"t": 19.3176, "q": [-0.32615500688552856, 0.00964362546801567, -0.010405503213405609, 0.6181431412696838, -0.29842597246170044, -0.017551083117723465, -0.3296234905719757, -0.011828696355223656, -0.0017543383873999119, 0.6262305974960327, -0.3252805471420288, 0.014355716295540333, 0.0301049817353487, 0.0019343351013958454, 0.03388696536421776, 0.022650185972452164, 0.19175958633422852, -0.19149594008922577, 1.378221869468689, -0.4107832908630371, -0.021979069337248802, -0.22125276923179626, 0.06878945231437683, -0.42747730016708374, 0.46855923533439636, 0.9740778207778931, -0.31389081478118896, -0.025682194158434868, 0.17437048256397247]} +{"t": 19.3344, "q": [-0.325865238904953, 0.00963510386645794, -0.010378719307482243, 0.6180493831634521, -0.2984258830547333, -0.017536604776978493, -0.32922297716140747, -0.011854262091219425, -0.001794514013454318, 0.6258556246757507, -0.32518282532691956, 0.014485479332506657, 0.029957670718431473, 0.0019343351013958454, 0.03388696536421776, 0.022662170231342316, 0.19175958633422852, -0.19147196412086487, 1.3783177137374878, -0.4107832908630371, -0.021943116560578346, -0.2195989489555359, 0.06870556622743607, -0.4262069761753082, 0.4684993028640747, 0.9740538597106934, -0.3138309121131897, -0.025682194158434868, 0.1742626130580902]} +{"t": 19.3512, "q": [-0.32547321915626526, 0.009601015597581863, -0.010351935401558876, 0.617844820022583, -0.2984298765659332, -0.017514919862151146, -0.3287457227706909, -0.011896872892975807, -0.0017811221769079566, 0.6254380345344543, -0.32510167360305786, 0.014629913493990898, 0.02993088588118553, 0.0018816578667610884, 0.03385388106107712, 0.022662170231342316, 0.19174760580062866, -0.19149594008922577, 1.3783297538757324, -0.4107593297958374, -0.021943116560578346, -0.21796908974647522, 0.06860969215631485, -0.42457711696624756, 0.4684274196624756, 0.9740658402442932, -0.31381893157958984, -0.025682194158434868, 0.17415475845336914]} +{"t": 19.3679, "q": [-0.3249533772468567, 0.009601015597581863, -0.010405503213405609, 0.6176317930221558, -0.2984298765659332, -0.017514919862151146, -0.3279275894165039, -0.011905395425856113, -0.0018614735454320908, 0.6249182224273682, -0.32497963309288025, 0.014803013764321804, 0.02993088588118553, 0.0018515565898269415, 0.03383497893810272, 0.02268613874912262, 0.19172362983226776, -0.19149594008922577, 1.3784016370773315, -0.41074734926223755, -0.021943116560578346, -0.21663883328437805, 0.0685737356543541, -0.42287537455558777, 0.4684034287929535, 0.9741257429122925, -0.3137829601764679, -0.025682194158434868, 0.17407086491584778]} +{"t": 19.3848, "q": [-0.3242204785346985, 0.009609537199139595, -0.010418894700706005, 0.6174017190933228, -0.2984298765659332, -0.017514919862151146, -0.32707539200782776, -0.011888351291418076, -0.001982000656425953, 0.6245091557502747, -0.32485267519950867, 0.014852644875645638, 0.03005141392350197, 0.0018064046744257212, 0.03380662202835083, 0.022710107266902924, 0.19175958633422852, -0.19148394465446472, 1.3784016370773315, -0.41074734926223755, -0.021943116560578346, -0.2157759815454483, 0.06856175512075424, -0.4208979606628418, 0.4684274196624756, 0.9743414521217346, -0.31380695104599, -0.025646241381764412, 0.17405888438224792]} +{"t": 19.4015, "q": [-0.3237432539463043, 0.009618058800697327, -0.010485853999853134, 0.6172482967376709, -0.29842570424079895, -0.0175076462328434, -0.32629135251045227, -0.011896872892975807, -0.002048959955573082, 0.6241682767868042, -0.3248487114906311, 0.01487439963966608, 0.030118374153971672, 0.0017537358216941357, 0.03375459462404251, 0.02281796559691429, 0.19177156686782837, -0.19149594008922577, 1.3784375190734863, -0.4107832908630371, -0.021931132301688194, -0.21523667871952057, 0.06853778660297394, -0.41888463497161865, 0.46843940019607544, 0.974976658821106, -0.31381893157958984, -0.025646241381764412, 0.17405888438224792]} +{"t": 19.4183, "q": [-0.3228825032711029, 0.009618058800697327, -0.0105126379057765, 0.6170437932014465, -0.29842570424079895, -0.0175076462328434, -0.3254562020301819, -0.011896872892975807, -0.0020757438614964485, 0.6239381432533264, -0.3248365521430969, 0.014896059408783913, 0.030185332521796227, 0.0017462230753153563, 0.033721450716257095, 0.022949790582060814, 0.19175958633422852, -0.19149594008922577, 1.3785454034805298, -0.4107832908630371, -0.021943116560578346, -0.2148531973361969, 0.0685737356543541, -0.4163319766521454, 0.46841543912887573, 0.9756836891174316, -0.31374701857566833, -0.02563425712287426, 0.17404690384864807]} +{"t": 19.4352, "q": [-0.32226037979125977, 0.009618058800697327, -0.010472462512552738, 0.6169244647026062, -0.2984338700771332, -0.01749323680996895, -0.3249022364616394, -0.011905395425856113, -0.0019953923765569925, 0.623810350894928, -0.3248324692249298, 0.014903279952704906, 0.030158549547195435, 0.0017688367515802383, 0.03365037590265274, 0.02316550724208355, 0.1917356252670288, -0.19149594008922577, 1.3787611722946167, -0.41081923246383667, -0.021943116560578346, -0.21456557512283325, 0.06852579861879349, -0.41389918327331543, 0.46841543912887573, 0.9761031866073608, -0.3137589991092682, -0.02563425712287426, 0.17403492331504822]} +{"t": 19.4519, "q": [-0.3218172490596771, 0.009601015597581863, -0.010445678606629372, 0.6168136596679688, -0.2984338700771332, -0.01749323680996895, -0.32460397481918335, -0.011913917027413845, -0.0019552167505025864, 0.6237421631813049, -0.3248244524002075, 0.014932254329323769, 0.03007819689810276, 0.0017915662610903382, 0.033314213156700134, 0.023393208160996437, 0.1917356252670288, -0.19148394465446472, 1.3789528608322144, -0.41081923246383667, -0.021919148042798042, -0.21431389451026917, 0.06860969215631485, -0.41132256388664246, 0.468475341796875, 0.9764986634254456, -0.31379494071006775, -0.025658225640654564, 0.17405888438224792]} +{"t": 19.4686, "q": [-0.32135704159736633, 0.009609537199139595, -0.010405503213405609, 0.6168136596679688, -0.2984338700771332, -0.01749323680996895, -0.32428014278411865, -0.011922439560294151, -0.0018614735454320908, 0.6237506866455078, -0.3248078227043152, 0.014903048053383827, 0.02991749532520771, 0.0019346765475347638, 0.033120088279247284, 0.02341717667877674, 0.1917356252670288, -0.19151990115642548, 1.3792284727096558, -0.4107593297958374, -0.02189517952501774, -0.21412214636802673, 0.06856175512075424, -0.4088418483734131, 0.468475341796875, 0.9769780039787292, -0.3137589991092682, -0.025646241381764412, 0.17408286035060883]} +{"t": 19.4854, "q": [-0.32125478982925415, 0.009626580402255058, -0.01033854391425848, 0.6167795658111572, -0.2984338700771332, -0.01749323680996895, -0.32425457239151, -0.011905395425856113, -0.0017275545978918672, 0.6237165927886963, -0.32480791211128235, 0.014917564578354359, 0.029863927513360977, 0.002092903247103095, 0.03278403356671333, 0.02341717667877674, 0.19172362983226776, -0.19151990115642548, 1.3792884349822998, -0.41074734926223755, -0.02183525823056698, -0.21394239366054535, 0.06860969215631485, -0.4065648317337036, 0.4684993028640747, 0.977517306804657, -0.3137589991092682, -0.025646241381764412, 0.17407086491584778]} +{"t": 19.5021, "q": [-0.32116103172302246, 0.009618058800697327, -0.01025819219648838, 0.6168051362037659, -0.29844632744789124, -0.017500581219792366, -0.32424604892730713, -0.011922439560294151, -0.0016605950659140944, 0.6237421631813049, -0.32475459575653076, 0.014924339950084686, 0.02973000891506672, 0.002266182331368327, 0.03244796022772789, 0.02341717667877674, 0.1917356252670288, -0.19151990115642548, 1.3793963193893433, -0.41074734926223755, -0.021799305453896523, -0.21377460658550262, 0.06863366067409515, -0.4042638838291168, 0.46851131319999695, 0.9781404733657837, -0.31377097964286804, -0.02563425712287426, 0.17408286035060883]} +{"t": 19.5189, "q": [-0.3211866021156311, 0.009609537199139595, -0.010231408290565014, 0.6168136596679688, -0.29842549562454224, -0.017478687688708305, -0.32427161931991577, -0.011922439560294151, -0.001566851744428277, 0.6237677335739136, -0.3247259855270386, 0.01494582649320364, 0.029663048684597015, 0.0024243914522230625, 0.032168641686439514, 0.023429160937666893, 0.19172362983226776, -0.19154387712478638, 1.3795281648635864, -0.4107113778591156, -0.021763352677226067, -0.2136307954788208, 0.0685977041721344, -0.40178313851356506, 0.4684993028640747, 0.9792070984840393, -0.3137829601764679, -0.025682194158434868, 0.17402292788028717]} +{"t": 19.5356, "q": [-0.321195125579834, 0.009618058800697327, -0.01024479977786541, 0.6168307065963745, -0.29841312766075134, -0.017485804855823517, -0.3242630958557129, -0.011913917027413845, -0.001566851744428277, 0.6237762570381165, -0.3246929347515106, 0.014916501939296722, 0.029689833521842957, 0.002469846745952964, 0.03183690458536148, 0.023453129455447197, 0.19172362983226776, -0.19156783819198608, 1.3797917366027832, -0.41072335839271545, -0.021739384159445763, -0.21347500383853912, 0.06852579861879349, -0.3989788293838501, 0.468475341796875, 0.9811365604400635, -0.31377097964286804, -0.02563425712287426, 0.17401094734668732]} +{"t": 19.5523, "q": [-0.3211866021156311, 0.009618058800697327, -0.010271583683788776, 0.6168903708457947, -0.2984088659286499, -0.01746405102312565, -0.3242630958557129, -0.011888351291418076, -0.0016204193234443665, 0.6237933039665222, -0.3246683180332184, 0.014916252344846725, 0.029796967282891273, 0.002477508271113038, 0.03153819590806961, 0.0234770979732275, 0.1916397511959076, -0.19156783819198608, 1.380103349685669, -0.4106874167919159, -0.021763352677226067, -0.21331921219825745, 0.06848984956741333, -0.39569514989852905, 0.468475341796875, 0.9838569760322571, -0.31379494071006775, -0.02563425712287426, 0.17402292788028717]} +{"t": 19.5692, "q": [-0.32129740715026855, 0.00963510386645794, -0.010271583683788776, 0.6169500350952148, -0.2984005808830261, -0.017463980242609978, -0.3242971897125244, -0.01187982875853777, -0.0016338112764060497, 0.6238018274307251, -0.32465189695358276, 0.01491609774529934, 0.029810359701514244, 0.0025755485985428095, 0.031239323318004608, 0.02359693869948387, 0.19155585765838623, -0.19155585765838623, 1.3803670406341553, -0.41072335839271545, -0.021763352677226067, -0.21315142512321472, 0.06852579861879349, -0.39244741201400757, 0.46851131319999695, 0.986924946308136, -0.31374701857566833, -0.02563425712287426, 0.17402292788028717]} +{"t": 19.5859, "q": [-0.32153600454330444, 0.00963510386645794, -0.010298367589712143, 0.6169329881668091, -0.29840466380119324, -0.017456775531172752, -0.3244079649448395, -0.011888351291418076, -0.0016338112764060497, 0.6237847805023193, -0.32464781403541565, 0.014923317357897758, 0.029863927513360977, 0.002733950736001134, 0.030684320256114006, 0.023920513689517975, 0.19137609004974365, -0.19153188169002533, 1.3805947303771973, -0.4107353389263153, -0.021811289712786674, -0.2130076140165329, 0.06851381808519363, -0.3891637325286865, 0.46853527426719666, 0.9903044700622559, -0.3137350380420685, -0.025646241381764412, 0.17403492331504822]} +{"t": 19.6026, "q": [-0.3218172490596771, 0.009626580402255058, -0.010271583683788776, 0.6170523166656494, -0.298412948846817, -0.017456844449043274, -0.32446762919425964, -0.011896872892975807, -0.0015936355339363217, 0.6237847805023193, -0.3246188163757324, 0.01488675456494093, 0.029810359701514244, 0.002960147801786661, 0.030114976689219475, 0.02425607107579708, 0.1911364048719406, -0.19156783819198608, 1.380846381187439, -0.4107353389263153, -0.021811289712786674, -0.21285182237625122, 0.06865762919187546, -0.38613173365592957, 0.46855923533439636, 0.9933604598045349, -0.3137350380420685, -0.025622272863984108, 0.17407086491584778]} +{"t": 19.6195, "q": [-0.3222774267196655, 0.00964362546801567, -0.01025819219648838, 0.6171204447746277, -0.2984127700328827, -0.01742788590490818, -0.3245698809623718, -0.011896872892975807, -0.0015400679549202323, 0.6238018274307251, -0.3246026039123535, 0.01491563394665718, 0.02973000891506672, 0.003179011633619666, 0.029483657330274582, 0.024507740512490273, 0.1910165697336197, -0.19149594008922577, 1.3810621500015259, -0.4107353389263153, -0.021811289712786674, -0.21274396777153015, 0.06905310600996017, -0.3836030662059784, 0.46866708993911743, 0.9953977465629578, -0.3137589991092682, -0.025622272863984108, 0.17407086491584778]} +{"t": 19.6362, "q": [-0.32355576753616333, 0.009609537199139595, -0.010231408290565014, 0.6171630620956421, -0.29841285943984985, -0.0174423661082983, -0.32464659214019775, -0.011913917027413845, -0.0014597165863960981, 0.6238188743591309, -0.32459864020347595, 0.014937371015548706, 0.029542522504925728, 0.0033226755913347006, 0.028871191665530205, 0.02461559884250164, 0.19090871512889862, -0.19153188169002533, 1.3813977241516113, -0.41072335839271545, -0.021823273971676826, -0.21256420016288757, 0.0692208856344223, -0.380834698677063, 0.46866708993911743, 0.9977826476097107, -0.3137589991092682, -0.025622272863984108, 0.17405888438224792]} +{"t": 19.6529, "q": [-0.3253624439239502, 0.009618058800697327, -0.01025819219648838, 0.6172482967376709, -0.2984292209148407, -0.017413528636097908, -0.3246806859970093, -0.01187982875853777, -0.0014731085393577814, 0.6238273978233337, -0.32458221912384033, 0.014937235042452812, 0.02940860204398632, 0.003405947471037507, 0.028287136927247047, 0.024519724771380424, 0.19089671969413757, -0.19153188169002533, 1.3819489479064941, -0.41072335839271545, -0.021811289712786674, -0.21237245202064514, 0.069196917116642, -0.3777907192707062, 0.4686551094055176, 1.000227451324463, -0.31380695104599, -0.025598304346203804, 0.17404690384864807]} +{"t": 19.6696, "q": [-0.3255925476551056, 0.009618058800697327, -0.01025819219648838, 0.6172994375228882, -0.29844149947166443, -0.017391914501786232, -0.32474884390830994, -0.011871307156980038, -0.0014998923288658261, 0.6238614320755005, -0.32459041476249695, 0.014937293715775013, 0.02938181906938553, 0.003436319762840867, 0.02774566039443016, 0.024327976629137993, 0.19087275862693787, -0.19156783819198608, 1.3827519416809082, -0.4107353389263153, -0.021799305453896523, -0.21222864091396332, 0.06900516897439957, -0.3750103712081909, 0.4686431288719177, 1.0031036138534546, -0.31374701857566833, -0.025586320087313652, 0.17401094734668732]} +{"t": 19.6864, "q": [-0.3255328834056854, 0.009618058800697327, -0.01025819219648838, 0.6172994375228882, -0.2984456717967987, -0.017399189993739128, -0.3247744143009186, -0.011871307156980038, -0.0014865003759041429, 0.623895525932312, -0.3245903253555298, 0.014922777190804482, 0.02943538688123226, 0.0034139854833483696, 0.0271899476647377, 0.024028372019529343, 0.1907649040222168, -0.19156783819198608, 1.3838783502578735, -0.4107113778591156, -0.02183525823056698, -0.2120368927717209, 0.06868159770965576, -0.37200233340263367, 0.468619167804718, 1.006507158279419, -0.3137350380420685, -0.0255743358284235, 0.1739630103111267]} +{"t": 19.7032, "q": [-0.32565218210220337, 0.009626580402255058, -0.01025819219648838, 0.6173335313796997, -0.298449844121933, -0.017406463623046875, -0.3248085081577301, -0.011871307156980038, -0.0014865003759041429, 0.623895525932312, -0.3245903253555298, 0.014922777190804482, 0.02938181906938553, 0.003482154104858637, 0.026795269921422005, 0.02401638776063919, 0.19045330584049225, -0.19153188169002533, 1.384717345237732, -0.4107593297958374, -0.02190716378390789, -0.2118092030286789, 0.06872953474521637, -0.3696773946285248, 0.46866708993911743, 1.008616328239441, -0.3137589991092682, -0.025562351569533348, 0.173939049243927]} +{"t": 19.7199, "q": [-0.32566922903060913, 0.00963510386645794, -0.010271583683788776, 0.6173420548439026, -0.29844149947166443, -0.017391914501786232, -0.3248085081577301, -0.011871307156980038, -0.0014731085393577814, 0.6239040493965149, -0.3245863616466522, 0.014944531954824924, 0.029328251257538795, 0.003512559225782752, 0.026490986347198486, 0.024052340537309647, 0.18997393548488617, -0.19156783819198608, 1.385688066482544, -0.4107593297958374, -0.022003037855029106, -0.21143768727779388, 0.06874151527881622, -0.3675442039966583, 0.4686790704727173, 1.0107975006103516, -0.31377097964286804, -0.0255743358284235, 0.1738671362400055]} +{"t": 19.7366, "q": [-0.3257629871368408, 0.009618058800697327, -0.01025819219648838, 0.6174272894859314, -0.2984497547149658, -0.017391985282301903, -0.3248085081577301, -0.011845740489661694, -0.0014463247498497367, 0.6239722371101379, -0.32458627223968506, 0.0149299968034029, 0.02924790047109127, 0.0035578643437474966, 0.02639581635594368, 0.023980434983968735, 0.18932679295539856, -0.19150792062282562, 1.3866827487945557, -0.41077131032943726, -0.022050974890589714, -0.21083848178386688, 0.06880144029855728, -0.36581847071647644, 0.4686551094055176, 1.0126070976257324, -0.31374701857566833, -0.025538384914398193, 0.17367538809776306]} +{"t": 19.7534, "q": [-0.32583966851234436, 0.009618058800697327, -0.01025819219648838, 0.6175721287727356, -0.29844966530799866, -0.01737750507891178, -0.32488521933555603, -0.011854262091219425, -0.0014329327968880534, 0.6240659952163696, -0.32459449768066406, 0.014930074103176594, 0.029033629223704338, 0.0035955950152128935, 0.026343444362282753, 0.023932497948408127, 0.18848788738250732, -0.19149594008922577, 1.3877372741699219, -0.41077131032943726, -0.022062959149479866, -0.20967599749565125, 0.06876548379659653, -0.36484774947166443, 0.46863114833831787, 1.0138534307479858, -0.3137350380420685, -0.025502432137727737, 0.17351959645748138]} +{"t": 19.7701, "q": [-0.32616353034973145, 0.009626580402255058, -0.01024479977786541, 0.6177681684494019, -0.29844558238983154, -0.017384709790349007, -0.32501304149627686, -0.011845740489661694, -0.0014463247498497367, 0.6242449283599854, -0.3245903253555298, 0.014922777190804482, 0.02891310304403305, 0.003708702977746725, 0.026290902867913246, 0.023800671100616455, 0.1874932050704956, -0.19151990115642548, 1.388839840888977, -0.4107832908630371, -0.022074943408370018, -0.20777051150798798, 0.06874151527881622, -0.36421260237693787, 0.4685951769351959, 1.014955997467041, -0.3137350380420685, -0.025478463619947433, 0.17330388724803925]} +{"t": 19.7869, "q": [-0.3262231647968292, 0.009601015597581863, -0.01025819219648838, 0.6180664300918579, -0.2984580397605896, -0.017392054200172424, -0.3251323401927948, -0.011837217956781387, -0.001419540960341692, 0.624483585357666, -0.32458221912384033, 0.014937235042452812, 0.028939886018633842, 0.003746426897123456, 0.026248037815093994, 0.02365685999393463, 0.18664231896400452, -0.19150792062282562, 1.3895230293273926, -0.4107832908630371, -0.022110896185040474, -0.2057451754808426, 0.06872953474521637, -0.3639609217643738, 0.4685951769351959, 1.0155911445617676, -0.31372305750846863, -0.025478463619947433, 0.17310014367103577]} +{"t": 19.8036, "q": [-0.32644474506378174, 0.009601015597581863, -0.010271583683788776, 0.6183987855911255, -0.2984621226787567, -0.017384830862283707, -0.32525166869163513, -0.011828696355223656, -0.0014329327968880534, 0.624713659286499, -0.32458212971687317, 0.014922699891030788, 0.028966670855879784, 0.0038142853882163763, 0.02622411772608757, 0.023489082232117653, 0.18630675971508026, -0.19149594008922577, 1.3899544477462769, -0.41081923246383667, -0.022134864702820778, -0.20398350059986115, 0.06864564120769501, -0.3639489412307739, 0.46863114833831787, 1.0162262916564941, -0.3137589991092682, -0.025478463619947433, 0.17300426959991455]} +{"t": 19.8203, "q": [-0.3265385031700134, 0.009609537199139595, -0.010298367589712143, 0.6186032891273499, -0.2984621226787567, -0.017384830862283707, -0.3253113031387329, -0.011786085553467274, -0.0014597165863960981, 0.624926745891571, -0.32458212971687317, 0.014922699891030788, 0.029020238667726517, 0.0038746101781725883, 0.026195460930466652, 0.02335725538432598, 0.1859951764345169, -0.19151990115642548, 1.390313982963562, -0.4108312129974365, -0.022110896185040474, -0.20246149599552155, 0.0686216726899147, -0.36404481530189514, 0.4686551094055176, 1.016597867012024, -0.31374701857566833, -0.025478463619947433, 0.17298030853271484]} +{"t": 19.8372, "q": [-0.32652145624160767, 0.009618058800697327, -0.01032515149563551, 0.6187055706977844, -0.29845795035362244, -0.01737755723297596, -0.32532835006713867, -0.01176051888614893, -0.0015132841654121876, 0.6251312494277954, -0.3245861828327179, 0.01491548027843237, 0.02908719703555107, 0.00386707647703588, 0.026190724223852158, 0.02328534983098507, 0.18563565611839294, -0.19150792062282562, 1.3906974792480469, -0.41081923246383667, -0.02214684896171093, -0.2012510895729065, 0.06860969215631485, -0.3641766309738159, 0.4686431288719177, 1.016609787940979, -0.31380695104599, -0.025490447878837585, 0.17300426959991455]} +{"t": 19.8539, "q": [-0.32656407356262207, 0.009652147069573402, -0.01033854391425848, 0.6188504695892334, -0.2984539568424225, -0.01739925891160965, -0.3253965377807617, -0.011726430617272854, -0.0015266761183738708, 0.6254209876060486, -0.32458609342575073, 0.014900962822139263, 0.029033629223704338, 0.003844483522698283, 0.02616700902581215, 0.02323741279542446, 0.18518024682998657, -0.19150792062282562, 1.3913086652755737, -0.4108552038669586, -0.022134864702820778, -0.2001245766878128, 0.06854976713657379, -0.3643803596496582, 0.4686551094055176, 1.0166338682174683, -0.31379494071006775, -0.025490447878837585, 0.17300426959991455]} +{"t": 19.8707, "q": [-0.32663223147392273, 0.009669192135334015, -0.010311760008335114, 0.6190805435180664, -0.2984497547149658, -0.017391985282301903, -0.325447678565979, -0.01167529821395874, -0.0014865003759041429, 0.6258130073547363, -0.3245943784713745, 0.014915557578206062, 0.029006846249103546, 0.003934966865926981, 0.026128778234124184, 0.02323741279542446, 0.1847967505455017, -0.19149594008922577, 1.3917280435562134, -0.4108552038669586, -0.02214684896171093, -0.1992017924785614, 0.06853778660297394, -0.36471593379974365, 0.4686431288719177, 1.016609787940979, -0.3137589991092682, -0.02552640065550804, 0.1730642020702362]} +{"t": 19.8874, "q": [-0.3267345130443573, 0.009728847071528435, -0.01033854391425848, 0.6192339658737183, -0.2984580397605896, -0.017392054200172424, -0.3255925476551056, -0.011649731546640396, -0.0014731085393577814, 0.626213550567627, -0.3245984613895416, 0.014908337034285069, 0.02888631820678711, 0.004010381642729044, 0.02608107402920723, 0.02322542853653431, 0.18452110886573792, -0.19149594008922577, 1.3920875787734985, -0.41084322333335876, -0.02220677025616169, -0.1983029693365097, 0.06858572363853455, -0.3650994300842285, 0.4686431288719177, 1.016609787940979, -0.31377097964286804, -0.02551441639661789, 0.17313610017299652]} +{"t": 19.9042, "q": [-0.32688790559768677, 0.00976293534040451, -0.01033854391425848, 0.6193873286247253, -0.2984621226787567, -0.017384830862283707, -0.3257374167442322, -0.011590076610445976, -0.0014061490073800087, 0.6265459060668945, -0.32460251450538635, 0.01490111742168665, 0.028605088591575623, 0.004153672140091658, 0.02599043771624565, 0.02311757020652294, 0.18430539965629578, -0.19151990115642548, 1.392483115196228, -0.4108552038669586, -0.02225470542907715, -0.19753599166870117, 0.06872953474521637, -0.3656506836414337, 0.46866708993911743, 1.016609787940979, -0.31372305750846863, -0.02552640065550804, 0.17314808070659637]} +{"t": 19.9209, "q": [-0.32698163390159607, 0.009831111878156662, -0.010351935401558876, 0.6196771264076233, -0.2984663248062134, -0.017392106354236603, -0.32588228583335876, -0.011504855938255787, -0.001379365217871964, 0.6268442273139954, -0.3246147632598877, 0.014893974177539349, 0.028203332796692848, 0.004357303027063608, 0.025852130725979805, 0.023081617429852486, 0.18411365151405334, -0.19151990115642548, 1.3930463790893555, -0.4108312129974365, -0.022242721170186996, -0.19691281020641327, 0.06880144029855728, -0.36618998646736145, 0.46866708993911743, 1.016609787940979, -0.3137350380420685, -0.02552640065550804, 0.17318403720855713]} +{"t": 19.9377, "q": [-0.3271009624004364, 0.009950421750545502, -0.010365326888859272, 0.6200265288352966, -0.2984788715839386, -0.017413947731256485, -0.32612091302871704, -0.01142815686762333, -0.0013659733813256025, 0.6272447109222412, -0.32463526725769043, 0.014886891469359398, 0.027614088729023933, 0.004621248226612806, 0.02569449320435524, 0.023009711876511574, 0.18393388390541077, -0.19154387712478638, 1.3934417963027954, -0.41081923246383667, -0.02220677025616169, -0.19638550281524658, 0.06890929490327835, -0.3666214048862457, 0.4686551094055176, 1.016609787940979, -0.3137350380420685, -0.02551441639661789, 0.17318403720855713]} +{"t": 19.9544, "q": [-0.32734808325767517, 0.009975988417863846, -0.010378719307482243, 0.6202906966209412, -0.2984665036201477, -0.017421100288629532, -0.3265044093132019, -0.011394068598747253, -0.0013257976388558745, 0.6277390122413635, -0.32465553283691406, 0.014850791543722153, 0.02706502191722393, 0.0049682920798659325, 0.02537010982632637, 0.023033680394291878, 0.18371817469596863, -0.19151990115642548, 1.3937654495239258, -0.4108072519302368, -0.022218754515051842, -0.19587017595767975, 0.06899318099021912, -0.3669809401035309, 0.4686551094055176, 1.0166338682174683, -0.31372305750846863, -0.025538384914398193, 0.17325595021247864]} +{"t": 19.9711, "q": [-0.32763785123825073, 0.010027119889855385, -0.010378719307482243, 0.6207168102264404, -0.2984747588634491, -0.017421171069145203, -0.32690495252609253, -0.011266236193478107, -0.0012186624808236957, 0.6281736493110657, -0.32467594742774963, 0.014829209074378014, 0.02656952105462551, 0.005458810832351446, 0.025002041831612587, 0.02311757020652294, 0.18340657651424408, -0.19151990115642548, 1.3940529823303223, -0.4108312129974365, -0.022242721170186996, -0.19539080560207367, 0.06911302357912064, -0.3670528531074524, 0.468619167804718, 1.016609787940979, -0.3137589991092682, -0.025538384914398193, 0.17320801317691803]} +{"t": 19.9879, "q": [-0.3280554413795471, 0.010137908160686493, -0.010378719307482243, 0.6212280988693237, -0.2984871566295624, -0.017414018511772156, -0.32748445868492126, -0.011138404719531536, -0.0010981354862451553, 0.6286168098449707, -0.3246718943119049, 0.014836428686976433, 0.026074020192027092, 0.006032339297235012, 0.02457183226943016, 0.023153522983193398, 0.18313094973564148, -0.19154387712478638, 1.3942447900772095, -0.41081923246383667, -0.022194785997271538, -0.1949833482503891, 0.06920889765024185, -0.3681194484233856, 0.46858319640159607, 1.016609787940979, -0.3137589991092682, -0.025538384914398193, 0.1732439547777176]} +{"t": 20.0046, "q": [-0.32863494753837585, 0.010206084698438644, -0.010378719307482243, 0.6217564940452576, -0.2984873056411743, -0.017442993819713593, -0.3282429277896881, -0.011019094847142696, -0.0009374326909892261, 0.6291877627372742, -0.3246840536594391, 0.0148147689178586, 0.025672264397144318, 0.00660605588927865, 0.023989373818039894, 0.023201460018754005, 0.18283134698867798, -0.19156783819198608, 1.3945083618164062, -0.41079527139663696, -0.022170817479491234, -0.19458787143230438, 0.06941263377666473, -0.3694976270198822, 0.46853527426719666, 1.0166338682174683, -0.3137589991092682, -0.025538384914398193, 0.17321999371051788]} +{"t": 20.0213, "q": [-0.3289843499660492, 0.010197563096880913, -0.010365326888859272, 0.6222593188285828, -0.2984914183616638, -0.017435772344470024, -0.3293507993221283, -0.010950918309390545, -0.0006963785854168236, 0.6300655603408813, -0.3246961236000061, 0.014778556302189827, 0.02523033134639263, 0.006961612030863762, 0.023154331371188164, 0.023249397054314613, 0.18266355991363525, -0.19154387712478638, 1.3947241306304932, -0.41081923246383667, -0.022134864702820778, -0.19418039917945862, 0.0697961300611496, -0.37095969915390015, 0.4684993028640747, 1.0166338682174683, -0.31374701857566833, -0.025538384914398193, 0.17320801317691803]} +{"t": 20.0381, "q": [-0.3289843499660492, 0.010214606299996376, -0.010298367589712143, 0.622915506362915, -0.29848313331604004, -0.017435720190405846, -0.33102965354919434, -0.010899785906076431, -0.0005088920588605106, 0.6311819553375244, -0.32469990849494934, 0.014727785252034664, 0.02472143992781639, 0.007234765682369471, 0.021828381344676018, 0.02323741279542446, 0.1826036423444748, -0.19154387712478638, 1.3949159383773804, -0.4107832908630371, -0.022134864702820778, -0.1937849223613739, 0.07044327259063721, -0.37280526757240295, 0.4684513807296753, 1.0166338682174683, -0.31374701857566833, -0.025538384914398193, 0.17319601774215698]} +{"t": 20.0548, "q": [-0.3291633129119873, 0.01024017296731472, -0.010298367589712143, 0.6237677335739136, -0.29848313331604004, -0.017435720190405846, -0.33235910534858704, -0.010840130969882011, -0.00040175687172450125, 0.6323239207267761, -0.32469576597213745, 0.014720488339662552, 0.02417237125337124, 0.0076207322999835014, 0.020972801372408867, 0.022997727617621422, 0.18256768584251404, -0.19159181416034698, 1.395047664642334, -0.41079527139663696, -0.022182801738381386, -0.1935092806816101, 0.07110241055488586, -0.37487855553627014, 0.4684513807296753, 1.0166338682174683, -0.3137350380420685, -0.025538384914398193, 0.17321999371051788]} +{"t": 20.0717, "q": [-0.3294786214828491, 0.010308349505066872, -0.010298367589712143, 0.624713659286499, -0.29847487807273865, -0.017435649409890175, -0.33312609791755676, -0.010746387764811516, -0.00036158118746243417, 0.6331079602241516, -0.32464599609375, 0.014647421427071095, 0.02369026280939579, 0.008104070089757442, 0.020684249699115753, 0.022554311901330948, 0.18244785070419312, -0.19156783819198608, 1.3952034711837769, -0.4107832908630371, -0.022194785997271538, -0.19334150850772858, 0.0719173327088356, -0.37679603695869446, 0.46846336126327515, 1.0166338682174683, -0.3137589991092682, -0.025538384914398193, 0.17319601774215698]} +{"t": 20.0884, "q": [-0.33015188574790955, 0.010504359379410744, -0.010351935401558876, 0.6256425976753235, -0.2984749674797058, -0.017450129613280296, -0.3335777521133423, -0.010601511225104332, -0.00042854066123254597, 0.6336533427238464, -0.3245878219604492, 0.014545225538313389, 0.023475993424654007, 0.00870056077837944, 0.02040942758321762, 0.022338595241308212, 0.18214823305606842, -0.19159181416034698, 1.3952994346618652, -0.41079527139663696, -0.022158833220601082, -0.19322165846824646, 0.07317567616701126, -0.37854573130607605, 0.4684513807296753, 1.0166937112808228, -0.31372305750846863, -0.02552640065550804, 0.17321999371051788]} +{"t": 20.1051, "q": [-0.3305950164794922, 0.010640712454915047, -0.010405503213405609, 0.626349925994873, -0.2984749674797058, -0.017450129613280296, -0.3337652385234833, -0.01047367975115776, -0.0004821082402486354, 0.6339260935783386, -0.3245546817779541, 0.01450134813785553, 0.023475993424654007, 0.009319831617176533, 0.020043926313519478, 0.022338595241308212, 0.18169283866882324, -0.19159181416034698, 1.3954311609268188, -0.4107832908630371, -0.022182801738381386, -0.1931138038635254, 0.0748894214630127, -0.3799838423728943, 0.468475341796875, 1.0167776346206665, -0.3137350380420685, -0.025538384914398193, 0.17317205667495728]} +{"t": 20.1219, "q": [-0.3305864930152893, 0.01071741059422493, -0.010405503213405609, 0.6266140937805176, -0.2984749674797058, -0.017450129613280296, -0.3336970806121826, -0.010431068949401379, -0.0004955001641064882, 0.6340709328651428, -0.32453805208206177, 0.014472140930593014, 0.0235027763992548, 0.009886507876217365, 0.019663216546177864, 0.022530343383550644, 0.1810816377401352, -0.1916157752275467, 1.3956469297409058, -0.41077131032943726, -0.022230736911296844, -0.19294603168964386, 0.07679491490125656, -0.38096654415130615, 0.4684513807296753, 1.01688551902771, -0.31374701857566833, -0.02552640065550804, 0.17317205667495728]} +{"t": 20.1386, "q": [-0.33056944608688354, 0.010700367391109467, -0.010378719307482243, 0.6267504692077637, -0.2984749674797058, -0.017450129613280296, -0.3335607051849365, -0.010431068949401379, -0.0004821082402486354, 0.6341050267219543, -0.32453399896621704, 0.014479361474514008, 0.023569736629724503, 0.010370410978794098, 0.019192414358258247, 0.02275804430246353, 0.18035060167312622, -0.19159181416034698, 1.3958985805511475, -0.4108072519302368, -0.022158833220601082, -0.19275428354740143, 0.07884421944618225, -0.3813260495662689, 0.4684034287929535, 1.016957402229309, -0.3137350380420685, -0.02551441639661789, 0.17318403720855713]} +{"t": 20.1554, "q": [-0.330680251121521, 0.010708888992667198, -0.010405503213405609, 0.6269720196723938, -0.2984873056411743, -0.017442993819713593, -0.3335692286491394, -0.010431068949401379, -0.00046871634549461305, 0.6341135501861572, -0.32454222440719604, 0.014479456469416618, 0.02370365522801876, 0.010998707264661789, 0.01821039617061615, 0.02304566465318203, 0.17946377396583557, -0.19156783819198608, 1.396294116973877, -0.4108072519302368, -0.022194785997271538, -0.19245466589927673, 0.08119312673807144, -0.3812541663646698, 0.4683435261249542, 1.0169932842254639, -0.3137350380420685, -0.02552640065550804, 0.17319601774215698]} +{"t": 20.1721, "q": [-0.3308506906032562, 0.010683322325348854, -0.010392110794782639, 0.6270572543144226, -0.29848313331604004, -0.017435720190405846, -0.33362889289855957, -0.010482202284038067, -0.00042854066123254597, 0.6340879797935486, -0.3245299458503723, 0.014486581087112427, 0.023891141638159752, 0.01153706107288599, 0.017006736248731613, 0.023189475759863853, 0.17863686382770538, -0.19154387712478638, 1.3967255353927612, -0.41081923246383667, -0.022158833220601082, -0.19210712611675262, 0.08400941640138626, -0.3811343014240265, 0.4682955741882324, 1.0169932842254639, -0.3137350380420685, -0.02551441639661789, 0.17318403720855713]} +{"t": 20.1888, "q": [-0.33102965354919434, 0.010640712454915047, -0.010405503213405609, 0.6270913481712341, -0.2984955906867981, -0.01744304597377777, -0.333671510219574, -0.01053333468735218, -0.0004151487664785236, 0.6340197920799255, -0.3245548903942108, 0.014530382119119167, 0.024158980697393417, 0.01215884555131197, 0.015672674402594566, 0.02329733408987522, 0.1777380406856537, -0.19155585765838623, 1.396977186203003, -0.41081923246383667, -0.022182801738381386, -0.1916637122631073, 0.087269127368927, -0.3807987570762634, 0.4683195650577545, 1.0170892477035522, -0.3137829601764679, -0.02551441639661789, 0.17318403720855713]} +{"t": 20.2056, "q": [-0.33110636472702026, 0.010564012452960014, -0.010378719307482243, 0.6271169185638428, -0.29851624369621277, -0.01743599958717823, -0.3336544632911682, -0.010601511225104332, -0.00036158118746243417, 0.6339346170425415, -0.32456734776496887, 0.014552291482686996, 0.02434646710753441, 0.012689909897744656, 0.014587383717298508, 0.023549001663923264, 0.17692311108112335, -0.19155585765838623, 1.3972288370132446, -0.4108072519302368, -0.022182801738381386, -0.19119632244110107, 0.09048090130090714, -0.38064295053482056, 0.46839144825935364, 1.0175446271896362, -0.31374701857566833, -0.02551441639661789, 0.17320801317691803]} +{"t": 20.2223, "q": [-0.3311830461025238, 0.010487314313650131, -0.010351935401558876, 0.6271680593490601, -0.2985367774963379, -0.017414454370737076, -0.3337481915950775, -0.010695254430174828, -0.00030801360844634473, 0.6338919997215271, -0.32457566261291504, 0.014566885307431221, 0.024400033056735992, 0.01315263006836176, 0.01365038100630045, 0.023812655359506607, 0.1761081963777542, -0.19157981872558594, 1.397504448890686, -0.41079527139663696, -0.022194785997271538, -0.19080084562301636, 0.0930095687508583, -0.37937262654304504, 0.4684034287929535, 1.0183955430984497, -0.3137589991092682, -0.02551441639661789, 0.17319601774215698]} +{"t": 20.239, "q": [-0.3314472436904907, 0.01041913777589798, -0.01033854391425848, 0.6272361874580383, -0.29854896664619446, -0.017378343269228935, -0.33396124839782715, -0.010771953500807285, -0.00021427033061627299, 0.6337471008300781, -0.32457980513572693, 0.014574182219803333, 0.02452056109905243, 0.013933521695435047, 0.012402346357703209, 0.024028372019529343, 0.17540112137794495, -0.19157981872558594, 1.397720217704773, -0.41081923246383667, -0.022182801738381386, -0.19030949473381042, 0.09545435756444931, -0.37617284059524536, 0.46855923533439636, 1.01951003074646, -0.3137350380420685, -0.02551441639661789, 0.17319601774215698]} +{"t": 20.2558, "q": [-0.33189037442207336, 0.010393571108579636, -0.010298367589712143, 0.6272702813148499, -0.2985488772392273, -0.01736384630203247, -0.33423396944999695, -0.01079752016812563, -0.00012052706006215885, 0.6334914565086365, -0.3245839774608612, 0.01458148006349802, 0.024600911885499954, 0.014706989750266075, 0.011225786991417408, 0.02425607107579708, 0.1745142936706543, -0.19157981872558594, 1.3978999853134155, -0.4107832908630371, -0.022182801738381386, -0.18968631327152252, 0.09753961116075516, -0.37292513251304626, 0.4687270224094391, 1.0208642482757568, -0.3137350380420685, -0.025538384914398193, 0.1732918918132782]} +{"t": 20.2725, "q": [-0.3322738707065582, 0.010308349505066872, -0.01017784047871828, 0.6272532343864441, -0.2985570430755615, -0.01734943687915802, -0.3348390460014343, -0.01085717510432005, 8.035137580009177e-05, 0.633312463760376, -0.3245760202407837, 0.014624971896409988, 0.02469465509057045, 0.015707623213529587, 0.009970215149223804, 0.02449575625360012, 0.17379523813724518, -0.19156783819198608, 1.398007869720459, -0.41079527139663696, -0.02214684896171093, -0.1886676549911499, 0.09925335645675659, -0.36941373348236084, 0.46871504187583923, 1.0225300788879395, -0.3137110769748688, -0.02551441639661789, 0.17323197424411774]} +{"t": 20.2893, "q": [-0.33266589045524597, 0.010231651365756989, -0.00999035406857729, 0.627261757850647, -0.2985571622848511, -0.017363933846354485, -0.3356741964817047, -0.010908307507634163, 0.00033479739795438945, 0.6333380341529846, -0.3245598077774048, 0.01465385127812624, 0.024734830483794212, 0.016451077535748482, 0.008964179083704948, 0.024663535878062248, 0.17325595021247864, -0.19160379469394684, 1.3981037139892578, -0.41077131032943726, -0.022122880443930626, -0.18715764582157135, 0.10045177489519119, -0.3663218021392822, 0.4687030613422394, 1.0245434045791626, -0.3137350380420685, -0.02551441639661789, 0.17320801317691803]} +{"t": 20.3061, "q": [-0.33316871523857117, 0.010197563096880913, -0.009749299846589565, 0.627261757850647, -0.2985530495643616, -0.01737113855779171, -0.33892112970352173, -0.01091683004051447, 0.0006294191116467118, 0.6333295106887817, -0.3245558440685272, 0.014675606042146683, 0.02470804750919342, 0.017315736040472984, 0.007831388153135777, 0.024783378466963768, 0.17270466685295105, -0.1916157752275467, 1.3981276750564575, -0.41074734926223755, -0.022122880443930626, -0.1850484162569046, 0.10148242115974426, -0.36368528008461, 0.468619167804718, 1.026748538017273, -0.3137110769748688, -0.025478463619947433, 0.17270466685295105]} +{"t": 20.3228, "q": [-0.3336203694343567, 0.010163474828004837, -0.00940111093223095, 0.6272106766700745, -0.29854467511177063, -0.017356570810079575, -0.3401823937892914, -0.0109253516420722, 0.0010311759542673826, 0.6333465576171875, -0.32453951239585876, 0.014689968898892403, 0.02469465509057045, 0.017772259190678596, 0.00677799666300416, 0.024831315502524376, 0.17210546135902405, -0.19165173172950745, 1.398187518119812, -0.41079527139663696, -0.022074943408370018, -0.18293920159339905, 0.10224940627813339, -0.3623790144920349, 0.4684993028640747, 1.0286060571670532, -0.31369906663894653, -0.025418542325496674, 0.17233316600322723]} +{"t": 20.3395, "q": [-0.33395272493362427, 0.010171996429562569, -0.009213624522089958, 0.6272021532058716, -0.29855287075042725, -0.017342161387205124, -0.33973926305770874, -0.01091683004051447, 0.0012990138493478298, 0.6333550810813904, -0.3245314061641693, 0.014704409055411816, 0.02468126453459263, 0.018062151968479156, 0.005842752754688263, 0.024879250675439835, 0.17160211503505707, -0.19167569279670715, 1.398175597190857, -0.4107353389263153, -0.022062959149479866, -0.18099775910377502, 0.10281267017126083, -0.36219924688339233, 0.46836748719215393, 1.030187964439392, -0.3136751055717468, -0.025430526584386826, 0.17192569375038147]} +{"t": 20.3563, "q": [-0.3343617916107178, 0.010154951363801956, -0.009160056710243225, 0.6271765828132629, -0.29854467511177063, -0.017356570810079575, -0.33973926305770874, -0.010908307507634163, 0.001379365217871964, 0.6333550810813904, -0.3245314061641693, 0.014704409055411816, 0.024641087278723717, 0.018079882487654686, 0.004937697201967239, 0.024879250675439835, 0.17113474011421204, -0.1917356252670288, 1.3982235193252563, -0.4107113778591156, -0.02196708507835865, -0.17909225821495056, 0.10296846181154251, -0.3623790144920349, 0.4683195650577545, 1.0322612524032593, -0.3136870861053467, -0.025442510843276978, 0.17180585861206055]} +{"t": 20.373, "q": [-0.33460041880607605, 0.0101805180311203, -0.009186840616166592, 0.6271680593490601, -0.29854050278663635, -0.017349297180771828, -0.3397136926651001, -0.010874219238758087, 0.0013257976388558745, 0.6333550810813904, -0.32452309131622314, 0.014689814299345016, 0.024667872115969658, 0.01786954514682293, 0.004381269682198763, 0.024831315502524376, 0.17079918086528778, -0.1917356252670288, 1.3982595205307007, -0.4106874167919159, -0.02190716378390789, -0.1777859777212143, 0.10299243032932281, -0.36269059777259827, 0.4683435261249542, 1.0342626571655273, -0.3136511445045471, -0.025478463619947433, 0.17185379564762115]} +{"t": 20.3897, "q": [-0.3347111940383911, 0.010223129764199257, -0.009227016009390354, 0.6270743012428284, -0.2985405921936035, -0.0173637755215168, -0.33973926305770874, -0.010831608437001705, 0.001232054433785379, 0.6333465576171875, -0.3245314061641693, 0.014704409055411816, 0.024801790714263916, 0.01762816682457924, 0.00412377342581749, 0.024807346984744072, 0.17072726786136627, -0.19172362983226776, 1.3982834815979004, -0.4106874167919159, -0.021883195266127586, -0.17692311108112335, 0.10304036736488342, -0.3630501329898834, 0.46836748719215393, 1.0356767177581787, -0.3136511445045471, -0.02551441639661789, 0.17196165025234222]} +{"t": 20.4065, "q": [-0.3347623348236084, 0.010248696431517601, -0.009240408428013325, 0.6269208788871765, -0.2985324263572693, -0.01737818494439125, -0.339722216129303, -0.010806042701005936, 0.0011784868547692895, 0.6333209872245789, -0.3245311975479126, 0.014675375074148178, 0.02505623735487461, 0.017454443499445915, 0.004024354740977287, 0.024939171969890594, 0.1706433892250061, -0.19169966876506805, 1.3983074426651, -0.4107113778591156, -0.02190716378390789, -0.1763598620891571, 0.10302838683128357, -0.3635774254798889, 0.46839144825935364, 1.0366355180740356, -0.3137350380420685, -0.02551441639661789, 0.17199760675430298]} +{"t": 20.4233, "q": [-0.3348560929298401, 0.010248696431517601, -0.009267191402614117, 0.6267589926719666, -0.2985366880893707, -0.01739995740354061, -0.33963698148727417, -0.010780476033687592, 0.0011383111122995615, 0.6333039402961731, -0.32452309131622314, 0.014689814299345016, 0.025457993149757385, 0.017409183084964752, 0.003976642154157162, 0.025047030299901962, 0.1703677475452423, -0.19169966876506805, 1.3983193635940552, -0.4107353389263153, -0.021979069337248802, -0.17588049173355103, 0.10304036736488342, -0.36411672830581665, 0.4684034287929535, 1.037294626235962, -0.3136870861053467, -0.02551441639661789, 0.1720934808254242]} +{"t": 20.4401, "q": [-0.3350861668586731, 0.010257218033075333, -0.009267191402614117, 0.6266396641731262, -0.29853659868240356, -0.017385460436344147, -0.339534729719162, -0.010780476033687592, 0.0011383111122995615, 0.6332613825798035, -0.32452288269996643, 0.014660780318081379, 0.025806182995438576, 0.01745467260479927, 0.0039376625791192055, 0.025190841406583786, 0.16987639665603638, -0.19169966876506805, 1.3983074426651, -0.41074734926223755, -0.022050974890589714, -0.1754131019115448, 0.10301639884710312, -0.3647039532661438, 0.4684034287929535, 1.0378339290618896, -0.3137350380420685, -0.02552640065550804, 0.17212942242622375]} +{"t": 20.4568, "q": [-0.3352651298046112, 0.010265739634633064, -0.009267191402614117, 0.6265203356742859, -0.2985366880893707, -0.01739995740354061, -0.3396625518798828, -0.010754909366369247, 0.0011249192757532, 0.6332102417945862, -0.3245392143726349, 0.014646417461335659, 0.026100805029273033, 0.017507612705230713, 0.003941954579204321, 0.025238778442144394, 0.16921725869178772, -0.19169966876506805, 1.3983193635940552, -0.41074734926223755, -0.022074943408370018, -0.17477793991565704, 0.10301639884710312, -0.36508744955062866, 0.4684034287929535, 1.038337230682373, -0.3137110769748688, -0.02551441639661789, 0.1721893548965454]} +{"t": 20.4738, "q": [-0.3352651298046112, 0.010265739634633064, -0.009280583821237087, 0.6263073086738586, -0.29852423071861267, -0.017392612993717194, -0.33965402841567993, -0.01071229949593544, 0.001084743533283472, 0.6332187652587891, -0.32453903555870056, 0.014617365784943104, 0.026301683858036995, 0.01753026805818081, 0.0039561777375638485, 0.025250762701034546, 0.16865399479866028, -0.1916637122631073, 1.3983433246612549, -0.41077131032943726, -0.022122880443930626, -0.17395102977752686, 0.10294449329376221, -0.3653031587600708, 0.46843940019607544, 1.0387327671051025, -0.3136870861053467, -0.02552640065550804, 0.1721893548965454]} +{"t": 20.4905, "q": [-0.3352566063404083, 0.010274261236190796, -0.009307367727160454, 0.6261283159255981, -0.2985326051712036, -0.01740718074142933, -0.3396710753440857, -0.010695254430174828, 0.0010311759542673826, 0.6331335306167603, -0.3245428800582886, 0.014581093564629555, 0.026502560824155807, 0.017552949488162994, 0.003960769157856703, 0.02533465251326561, 0.16805478930473328, -0.1916157752275467, 1.3983912467956543, -0.41079527139663696, -0.022134864702820778, -0.17281252145767212, 0.10299243032932281, -0.36529117822647095, 0.4684513807296753, 1.039176106452942, -0.3137350380420685, -0.02552640065550804, 0.17224927246570587]} +{"t": 20.5072, "q": [-0.33524811267852783, 0.010274261236190796, -0.00932075921446085, 0.6259749531745911, -0.29853659868240356, -0.017385460436344147, -0.3396625518798828, -0.010686732828617096, 0.001004392164759338, 0.6330568194389343, -0.32457149028778076, 0.014559588395059109, 0.026596304029226303, 0.017560526728630066, 0.003955877851694822, 0.025418542325496674, 0.16761137545108795, -0.19162775576114655, 1.3984153270721436, -0.4107832908630371, -0.02214684896171093, -0.17175792157649994, 0.10296846181154251, -0.3651833236217499, 0.46848732233047485, 1.0395476818084717, -0.3137350380420685, -0.02552640065550804, 0.17223729193210602]} +{"t": 20.524, "q": [-0.3352140188217163, 0.010291306301951408, -0.009307367727160454, 0.625761866569519, -0.29853251576423645, -0.017392665147781372, -0.3396114110946655, -0.010686732828617096, 0.0009642164804972708, 0.6328863501548767, -0.32457971572875977, 0.014559665694832802, 0.026663264259696007, 0.017598414793610573, 0.003931421786546707, 0.025478463619947433, 0.1670001745223999, -0.1916157752275467, 1.3984153270721436, -0.4107832908630371, -0.022134864702820778, -0.17081116139888763, 0.10290854424238205, -0.36506345868110657, 0.4684993028640747, 1.0401707887649536, -0.3137350380420685, -0.02552640065550804, 0.17224927246570587]} +{"t": 20.5407, "q": [-0.3352140188217163, 0.010274261236190796, -0.00932075921446085, 0.6255232691764832, -0.29853659868240356, -0.017385460436344147, -0.33964550495147705, -0.010686732828617096, 0.0009776083752512932, 0.6327159404754639, -0.3245837688446045, 0.014552446082234383, 0.026676656678318977, 0.01767411082983017, 0.00391137320548296, 0.02551441639661789, 0.16654478013515472, -0.1916157752275467, 1.3984512090682983, -0.4108312129974365, -0.022122880443930626, -0.17011608183383942, 0.10293251276016235, -0.3650035560131073, 0.46853527426719666, 1.0410577058792114, -0.3137589991092682, -0.025538384914398193, 0.17224927246570587]} +{"t": 20.5574, "q": [-0.3352225422859192, 0.010282784700393677, -0.009267191402614117, 0.6253358125686646, -0.29853251576423645, -0.017392665147781372, -0.33963698148727417, -0.010669688694179058, 0.0009776083752512932, 0.632477343082428, -0.32457149028778076, 0.014559588395059109, 0.026649871841073036, 0.017749782651662827, 0.0039009330794215202, 0.02552640065550804, 0.1663290560245514, -0.19159181416034698, 1.3984272480010986, -0.4107832908630371, -0.022134864702820778, -0.1694689244031906, 0.10290854424238205, -0.3649076819419861, 0.46851131319999695, 1.041632890701294, -0.31372305750846863, -0.02552640065550804, 0.17223729193210602]} +{"t": 20.5742, "q": [-0.3352140188217163, 0.010282784700393677, -0.009280583821237087, 0.6251909136772156, -0.29853659868240356, -0.017385460436344147, -0.33956030011177063, -0.01067821029573679, 0.0009776083752512932, 0.6322557330131531, -0.3245837688446045, 0.014552446082234383, 0.026663264259696007, 0.017780091613531113, 0.003881345270201564, 0.0255743358284235, 0.16624517738819122, -0.1916157752275467, 1.3984512090682983, -0.4107832908630371, -0.022134864702820778, -0.1690255105495453, 0.1029205247759819, -0.3649316430091858, 0.46853527426719666, 1.0421721935272217, -0.31369906663894653, -0.025550367310643196, 0.17223729193210602]} +{"t": 20.5909, "q": [-0.33519697189331055, 0.010291306301951408, -0.009280583821237087, 0.625088632106781, -0.29853251576423645, -0.017392665147781372, -0.33945801854133606, -0.010686732828617096, 0.0009374326909892261, 0.6321194171905518, -0.32457566261291504, 0.014566885307431221, 0.0266900472342968, 0.017787616699934006, 0.003895713482052088, 0.0255743358284235, 0.16619724035263062, -0.1916157752275467, 1.3984153270721436, -0.41079527139663696, -0.022122880443930626, -0.16871392726898193, 0.10290854424238205, -0.364883691072464, 0.4685232937335968, 1.0429871082305908, -0.31369906663894653, -0.025538384914398193, 0.17227323353290558]} +{"t": 20.6076, "q": [-0.33518844842910767, 0.010274261236190796, -0.009267191402614117, 0.6249011754989624, -0.29853659868240356, -0.017385460436344147, -0.3394324481487274, -0.010686732828617096, 0.0009374326909892261, 0.6319319009780884, -0.3245755732059479, 0.01455236878246069, 0.02670343965291977, 0.01777251437306404, 0.0038862423971295357, 0.025550367310643196, 0.16614930331707, -0.1916157752275467, 1.3984272480010986, -0.4107593297958374, -0.022134864702820778, -0.16837836802005768, 0.10293251276016235, -0.364799827337265, 0.46855923533439636, 1.043921947479248, -0.3137350380420685, -0.025562351569533348, 0.17221331596374512]} +{"t": 20.6244, "q": [-0.3351799249649048, 0.010274261236190796, -0.009267191402614117, 0.6247648000717163, -0.29853659868240356, -0.017385460436344147, -0.3393898606300354, -0.010686732828617096, 0.0009240407962352037, 0.6316762566566467, -0.32457566261291504, 0.014566885307431221, 0.026743615046143532, 0.017780065536499023, 0.0038909779395908117, 0.025538384914398193, 0.1660773903131485, -0.1916157752275467, 1.398403286933899, -0.4107832908630371, -0.022122880443930626, -0.16811470687389374, 0.10294449329376221, -0.3647279143333435, 0.46858319640159607, 1.04489266872406, -0.31377097964286804, -0.025538384914398193, 0.17226125299930573]} +{"t": 20.6411, "q": [-0.3352054953575134, 0.010248696431517601, -0.009267191402614117, 0.6245773434638977, -0.29854488372802734, -0.01738554798066616, -0.3393813371658325, -0.010686732828617096, 0.0009508245857432485, 0.6314205527305603, -0.32457566261291504, 0.014566885307431221, 0.026823967695236206, 0.01776491105556488, 0.0039007714949548244, 0.0255743358284235, 0.16598151624202728, -0.1916157752275467, 1.3984272480010986, -0.4107832908630371, -0.022122880443930626, -0.16788701713085175, 0.1028965562582016, -0.36471593379974365, 0.4685951769351959, 1.0460190773010254, -0.3137350380420685, -0.025538384914398193, 0.17226125299930573]} +{"t": 20.6579, "q": [-0.3352054953575134, 0.010248696431517601, -0.00925379991531372, 0.6244665384292603, -0.29854896664619446, -0.017378343269228935, -0.3393557667732239, -0.010703776963055134, 0.0009776083752512932, 0.6312245726585388, -0.32457149028778076, 0.014559588395059109, 0.02686414308845997, 0.017780015245079994, 0.0039102425798773766, 0.025622272863984108, 0.16593357920646667, -0.19162775576114655, 1.3984392881393433, -0.4107593297958374, -0.022134864702820778, -0.16763533651828766, 0.10288457572460175, -0.36466798186302185, 0.46858319640159607, 1.0470857620239258, -0.3137350380420685, -0.025550367310643196, 0.17222529649734497]} +{"t": 20.6747, "q": [-0.3351799249649048, 0.010257218033075333, -0.009240408428013325, 0.6243045926094055, -0.2985447645187378, -0.017371051013469696, -0.3392534852027893, -0.010720821097493172, 0.0009508245857432485, 0.6309604048728943, -0.32457566261291504, 0.014566885307431221, 0.026971278712153435, 0.01776493713259697, 0.00389113905839622, 0.025646241381764412, 0.16589762270450592, -0.1916157752275467, 1.3984392881393433, -0.4107832908630371, -0.022170817479491234, -0.16743160784244537, 0.10288457572460175, -0.3645241856575012, 0.4685951769351959, 1.0482960939407349, -0.3137350380420685, -0.025538384914398193, 0.17227323353290558]} diff --git a/Data/G1/photo_G2.jsonl b/Data/G1/photo_G2.jsonl new file mode 100644 index 0000000..a3ad7ca --- /dev/null +++ b/Data/G1/photo_G2.jsonl @@ -0,0 +1,973 @@ +{"meta": {"hz": 60.0, "motors": 29}} +{"t": 0.0, "q": [-0.3898407816886902, -0.004733183421194553, -0.0002410541201243177, 0.6248159408569336, -0.273584246635437, 0.016415970399975777, -0.3467785120010376, -0.00749093946069479, 0.00040175687172450125, 0.6159955263137817, -0.33231931924819946, 0.013780982233583927, 0.002691771136596799, 0.002030151430517435, -0.0413132943212986, 0.2888438105583191, 0.2202940285205841, -0.017437048256397247, 0.9804893732070923, 0.14850851893424988, 0.06161090359091759, -0.0481526181101799, 0.29252296686172485, -0.2224152386188507, 0.028126977384090424, 0.9859062433242798, -0.1841975450515747, 0.05162804201245308, 0.014177338220179081]} +{"t": 0.0167, "q": [-0.3898748457431793, -0.004750227555632591, -0.0002410541201243177, 0.6247307062149048, -0.27359265089035034, 0.01640150509774685, -0.34680408239364624, -0.007473895326256752, 0.00040175687172450125, 0.6158847808837891, -0.33232322335243225, 0.013759223744273186, 0.003347973804920912, 0.001824888400733471, -0.041742969304323196, 0.28777721524238586, 0.21798107028007507, -0.017604826018214226, 0.9819275140762329, 0.1485804319381714, 0.061958443373441696, -0.048236507922410965, 0.291767954826355, -0.22113291919231415, 0.028858013451099396, 0.987524151802063, -0.18434135615825653, 0.05191566422581673, 0.014201306737959385]} +{"t": 0.0335, "q": [-0.38990041613578796, -0.00475874962285161, -0.00022766222537029535, 0.6247477531433105, -0.27358004450798035, 0.01642320118844509, -0.3468296527862549, -0.00749093946069479, 0.00042854066123254597, 0.6158933043479919, -0.33231908082962036, 0.013751915656030178, 0.0036158119328320026, 0.0017716871807351708, -0.04194551706314087, 0.2868663966655731, 0.21653097867965698, -0.017556890845298767, 0.9831379055976868, 0.14853249490261078, 0.06259360909461975, -0.048296429216861725, 0.2908931076526642, -0.21976672112941742, 0.02943325787782669, 0.9893936514854431, -0.18437731266021729, 0.052263207733631134, 0.014189322479069233]} +{"t": 0.0502, "q": [-0.38990041613578796, -0.004750227555632591, -0.0002410541201243177, 0.6247562766075134, -0.273584246635437, 0.016415970399975777, -0.3468296527862549, -0.007482417393475771, 0.0004151487664785236, 0.6159273982048035, -0.3322986364364624, 0.013758977875113487, 0.0037497307639569044, 0.0017564926529303193, -0.04204433038830757, 0.28615933656692505, 0.21449366211891174, -0.01792840100824833, 0.9834614992141724, 0.14853249490261078, 0.06271345168352127, -0.04839230328798294, 0.29035380482673645, -0.217501699924469, 0.030140327289700508, 0.9904842376708984, -0.18434135615825653, 0.05240701511502266, 0.014321149326860905]} +{"t": 0.0669, "q": [-0.38990041613578796, -0.004741705488413572, -0.00022766222537029535, 0.6247818470001221, -0.27357587218284607, 0.016401560977101326, -0.3467870354652405, -0.007499461527913809, 0.00044193255598656833, 0.6159273982048035, -0.332319438457489, 0.013795515522360802, 0.003803298342972994, 0.001756515121087432, -0.04220245033502579, 0.2855960726737976, 0.2115095853805542, -0.018443722277879715, 0.9836052656173706, 0.14850851893424988, 0.06277336925268173, -0.0484282523393631, 0.2898864150047302, -0.21449366211891174, 0.030799459666013718, 0.9909995794296265, -0.18431738018989563, 0.05252685770392418, 0.014381070621311665]} +{"t": 0.0838, "q": [-0.38990041613578796, -0.004750227555632591, -0.00022766222537029535, 0.6247818470001221, -0.273584246635437, 0.016415970399975777, -0.3467785120010376, -0.00749093946069479, 0.00042854066123254597, 0.6159103512763977, -0.3322988748550415, 0.013788063079118729, 0.0038568659219890833, 0.0017489411402493715, -0.042414918541908264, 0.28516465425491333, 0.20850154757499695, -0.018887139856815338, 0.9837610721588135, 0.14848455786705017, 0.06280932575464249, -0.0484522208571434, 0.2895148992538452, -0.2115814983844757, 0.031446605920791626, 0.9913830757141113, -0.18430539965629578, 0.052562810480594635, 0.014452975243330002]} +{"t": 0.1005, "q": [-0.3898833692073822, -0.004767271690070629, -0.00022766222537029535, 0.624790370464325, -0.27357587218284607, 0.016401560977101326, -0.3467785120010376, -0.00749093946069479, 0.00044193255598656833, 0.6159443855285645, -0.33224475383758545, 0.013693027198314667, 0.0038434739690274, 0.0018097880529239774, -0.04250391200184822, 0.28486502170562744, 0.2057691514492035, -0.019306587055325508, 0.983797013759613, 0.14850851893424988, 0.06280932575464249, -0.048536110669374466, 0.2891194224357605, -0.20928052067756653, 0.03181811794638634, 0.9917545318603516, -0.18430539965629578, 0.05261074751615524, 0.014572817832231522]} +{"t": 0.1172, "q": [-0.38990041613578796, -0.004750227555632591, -0.00021427033061627299, 0.6247818470001221, -0.273584246635437, 0.016415970399975777, -0.3467785120010376, -0.00749093946069479, 0.00044193255598656833, 0.6159018278121948, -0.3322489261627197, 0.013700352981686592, 0.0038568659219890833, 0.0018173987045884132, -0.042548391968011856, 0.2846493124961853, 0.20354008674621582, -0.019630160182714462, 0.9838089942932129, 0.14853249490261078, 0.06282130628824234, -0.04857206344604492, 0.28883180022239685, -0.2072671800851822, 0.03200986608862877, 0.991946280002594, -0.18436531722545624, 0.052622731775045395, 0.01456083357334137]} +{"t": 0.1344, "q": [-0.3898918926715851, -0.004741705488413572, -0.00022766222537029535, 0.6247818470001221, -0.27358004450798035, 0.01642320118844509, -0.34676146507263184, -0.00749093946069479, 0.00040175687172450125, 0.6159273982048035, -0.3322613835334778, 0.01372227631509304, 0.0038434739690274, 0.001794592128135264, -0.0425928458571434, 0.28454145789146423, 0.2018982470035553, -0.019821908324956894, 0.9838330149650574, 0.14853249490261078, 0.06280932575464249, -0.048584047704935074, 0.2886640429496765, -0.2057691514492035, 0.03205780312418938, 0.9921020865440369, -0.18428143858909607, 0.05259876325726509, 0.014608770608901978]} +{"t": 0.1511, "q": [-0.38990041613578796, -0.004741705488413572, -0.00020087843586225063, 0.624790370464325, -0.273584246635437, 0.016415970399975777, -0.34679555892944336, -0.007473895326256752, 0.00042854066123254597, 0.6159273982048035, -0.3322489261627197, 0.013700352981686592, 0.0038300822488963604, 0.0018098007421940565, -0.0425928570330143, 0.284445583820343, 0.20050807297229767, -0.01985786110162735, 0.9838929176330566, 0.14852049946784973, 0.06284527480602264, -0.048596031963825226, 0.288592129945755, -0.20433104038238525, 0.03206978738307953, 0.99223393201828, -0.18431738018989563, 0.05261074751615524, 0.014608770608901978]} +{"t": 0.1679, "q": [-0.3898833692073822, -0.004741705488413572, -0.00021427033061627299, 0.6247988939285278, -0.27358004450798035, 0.01642320118844509, -0.3467785120010376, -0.007473895326256752, 0.00040175687172450125, 0.6159273982048035, -0.3322572410106659, 0.013714968226850033, 0.003803298342972994, 0.0018021956784650683, -0.04258790984749794, 0.2843976616859436, 0.19932162761688232, -0.019881829619407654, 0.9839168787002563, 0.14853249490261078, 0.06286924332380295, -0.048584047704935074, 0.2885441780090332, -0.20330040156841278, 0.03208177164196968, 0.9923537969589233, -0.18434135615825653, 0.052622731775045395, 0.014596786350011826]} +{"t": 0.1848, "q": [-0.3898833692073822, -0.004741705488413572, -0.00020087843586225063, 0.6247818470001221, -0.27358004450798035, 0.01642320118844509, -0.3467699885368347, -0.007473895326256752, 0.00040175687172450125, 0.6159273982048035, -0.3322613835334778, 0.01372227631509304, 0.0038568659219890833, 0.0018782399129122496, -0.04259785637259483, 0.28436169028282166, 0.19821909070014954, -0.019881829619407654, 0.9839528203010559, 0.14854447543621063, 0.0628812313079834, -0.048584047704935074, 0.28853219747543335, -0.20253340899944305, 0.03208177164196968, 0.9925095438957214, -0.18430539965629578, 0.05261074751615524, 0.01462075486779213]} +{"t": 0.2016, "q": [-0.3898833692073822, -0.004741705488413572, -0.00020087843586225063, 0.6247733235359192, -0.27357587218284607, 0.016401560977101326, -0.34679555892944336, -0.007482417393475771, 0.00042854066123254597, 0.6159443855285645, -0.3322613835334778, 0.01372227631509304, 0.0038568659219890833, 0.0018934475956484675, -0.04260774701833725, 0.2843017876148224, 0.1971045583486557, -0.01985786110162735, 0.9839767813682556, 0.14853249490261078, 0.0628812313079834, -0.04862000048160553, 0.28853219747543335, -0.20188625156879425, 0.03205780312418938, 0.9925575256347656, -0.18431738018989563, 0.05259876325726509, 0.014644723385572433]} +{"t": 0.2185, "q": [-0.3898833692073822, -0.004750227555632591, -0.00021427033061627299, 0.6247818470001221, -0.273584246635437, 0.016415970399975777, -0.34679555892944336, -0.007473895326256752, 0.00042854066123254597, 0.6159103512763977, -0.33226555585861206, 0.013729583472013474, 0.00388364982791245, 0.0018782417755573988, -0.04262750223278999, 0.28424185514450073, 0.1961098611354828, -0.01991778239607811, 0.9840007424354553, 0.14855645596981049, 0.06289321184158325, -0.04860801622271538, 0.2885202169418335, -0.20143085718154907, 0.03206978738307953, 0.9925814867019653, -0.18430539965629578, 0.05257479473948479, 0.014632739126682281]} +{"t": 0.2353, "q": [-0.3898833692073822, -0.004750227555632591, -0.00021427033061627299, 0.6247648000717163, -0.273584246635437, 0.016415970399975777, -0.3467785120010376, -0.007473895326256752, 0.00040175687172450125, 0.6159443855285645, -0.3322530686855316, 0.0137076610699296, 0.0038702578749507666, 0.0018478260608389974, -0.042637359350919724, 0.2842298746109009, 0.19536684453487396, -0.019965719431638718, 0.9840127229690552, 0.14852049946784973, 0.0629051998257637, -0.04863198474049568, 0.2884962558746338, -0.20114323496818542, 0.032045818865299225, 0.9925814867019653, -0.18434135615825653, 0.05261074751615524, 0.014656707644462585]} +{"t": 0.252, "q": [-0.3898833692073822, -0.004750227555632591, -0.00022766222537029535, 0.624790370464325, -0.27357587218284607, 0.016401560977101326, -0.3467785120010376, -0.007482417393475771, 0.0004151487664785236, 0.6159443855285645, -0.3322530686855316, 0.0137076610699296, 0.00388364982791245, 0.0018250152934342623, -0.04265216365456581, 0.28420591354370117, 0.19489945471286774, -0.020013656467199326, 0.9840367436408997, 0.14842462539672852, 0.0628812313079834, -0.04863198474049568, 0.288448303937912, -0.20105934143066406, 0.03208177164196968, 0.9925814867019653, -0.18434135615825653, 0.05265868455171585, 0.01462075486779213]} +{"t": 0.2687, "q": [-0.3898833692073822, -0.004741705488413572, -0.00022766222537029535, 0.6247818470001221, -0.27357587218284607, 0.016401560977101326, -0.3467785120010376, -0.00749093946069479, 0.0003883649769704789, 0.6159443855285645, -0.332244873046875, 0.013707579113543034, 0.00388364982791245, 0.0018630388658493757, -0.04266702011227608, 0.28419390320777893, 0.1947077065706253, -0.020061593502759933, 0.9840487241744995, 0.14853249490261078, 0.0628812313079834, -0.048643968999385834, 0.288448303937912, -0.2010473608970642, 0.03205780312418938, 0.9925814867019653, -0.18434135615825653, 0.052670668810606, 0.014632739126682281]} +{"t": 0.2855, "q": [-0.3898833692073822, -0.004741705488413572, -0.0002410541201243177, 0.6247733235359192, -0.27357587218284607, 0.016401560977101326, -0.3467699885368347, -0.00749093946069479, 0.00040175687172450125, 0.6159273982048035, -0.33229053020477295, 0.013773447833955288, 0.0038970415480434895, 0.0018402267014607787, -0.042671941220760345, 0.28419390320777893, 0.1947316825389862, -0.02003762498497963, 0.9840487241744995, 0.14853249490261078, 0.0629051998257637, -0.04862000048160553, 0.28837642073631287, -0.2010233998298645, 0.032045818865299225, 0.9925814867019653, -0.18431738018989563, 0.052670668810606, 0.014632739126682281]} +{"t": 0.3023, "q": [-0.3898833692073822, -0.004750227555632591, -0.0002410541201243177, 0.6247733235359192, -0.27357587218284607, 0.016401560977101326, -0.3467785120010376, -0.007482417393475771, 0.0003883649769704789, 0.6159699559211731, -0.332244873046875, 0.013707579113543034, 0.0038568659219890833, 0.0018858538242056966, -0.04268186166882515, 0.28420591354370117, 0.19480358064174652, -0.02003762498497963, 0.9840487241744995, 0.14853249490261078, 0.0628812313079834, -0.048643968999385834, 0.28837642073631287, -0.2010473608970642, 0.032045818865299225, 0.9925814867019653, -0.18434135615825653, 0.05265868455171585, 0.014644723385572433]} +{"t": 0.3191, "q": [-0.3898833692073822, -0.004750227555632591, -0.00022766222537029535, 0.6247733235359192, -0.2735716998577118, 0.016394365578889847, -0.3467699885368347, -0.007465373259037733, 0.0003883649769704789, 0.6159103512763977, -0.332244873046875, 0.013707579113543034, 0.0038434739690274, 0.001901063835248351, -0.042691756039857864, 0.2842298746109009, 0.19482755661010742, -0.020025640726089478, 0.9840607047080994, 0.14855645596981049, 0.062929168343544, -0.04863198474049568, 0.2883164882659912, -0.20103538036346436, 0.03202185034751892, 0.9925814867019653, -0.18431738018989563, 0.0526467002928257, 0.01462075486779213]} +{"t": 0.3359, "q": [-0.3898833692073822, -0.004750227555632591, -0.0002410541201243177, 0.6247818470001221, -0.27357587218284607, 0.016401560977101326, -0.3467785120010376, -0.007507983595132828, 0.0003883649769704789, 0.6159614324569702, -0.3322490453720093, 0.013714886270463467, 0.0038568659219890833, 0.0019086701795458794, -0.04270658642053604, 0.284217894077301, 0.19481556117534637, -0.020025640726089478, 0.9840607047080994, 0.14852049946784973, 0.06294114887714386, -0.048643968999385834, 0.2883164882659912, -0.2010233998298645, 0.03205780312418938, 0.992605447769165, -0.18430539965629578, 0.05265868455171585, 0.014644723385572433]} +{"t": 0.3526, "q": [-0.3898833692073822, -0.004741705488413572, -0.0002410541201243177, 0.624790370464325, -0.27357587218284607, 0.016401560977101326, -0.3467785120010376, -0.007482417393475771, 0.0003883649769704789, 0.6159614324569702, -0.33224475383758545, 0.013693027198314667, 0.0038702578749507666, 0.0019238801905885339, -0.042716480791568756, 0.284217894077301, 0.19477961957454681, -0.02003762498497963, 0.9840607047080994, 0.14850851893424988, 0.06294114887714386, -0.048643968999385834, 0.28832846879959106, -0.2009994238615036, 0.03203383460640907, 0.9926174283027649, -0.18428143858909607, 0.05265868455171585, 0.014644723385572433]} +{"t": 0.3694, "q": [-0.3898833692073822, -0.004733183421194553, -0.0002410541201243177, 0.624790370464325, -0.27357587218284607, 0.016401560977101326, -0.3467785120010376, -0.007473895326256752, 0.0003883649769704789, 0.6159359216690063, -0.3322530686855316, 0.0137076610699296, 0.00388364982791245, 0.0019010694231837988, -0.04273128882050514, 0.28420591354370117, 0.1947316825389862, -0.02004960924386978, 0.9840607047080994, 0.14847256243228912, 0.06294114887714386, -0.048655953258275986, 0.28830450773239136, -0.20101140439510345, 0.03203383460640907, 0.992605447769165, -0.18430539965629578, 0.0526467002928257, 0.014632739126682281]} +{"t": 0.3861, "q": [-0.38990041613578796, -0.004750227555632591, -0.0002544460294302553, 0.624790370464325, -0.27357587218284607, 0.016401560977101326, -0.3467870354652405, -0.007482417393475771, 0.0003883649769704789, 0.6159529089927673, -0.3322530686855316, 0.0137076610699296, 0.0038434739690274, 0.0019162765238434076, -0.04272141680121422, 0.284217894077301, 0.1947316825389862, -0.020061593502759933, 0.9840846657752991, 0.14848455786705017, 0.062929168343544, -0.048643968999385834, 0.2882925271987915, -0.20098744332790375, 0.03200986608862877, 0.9926174283027649, -0.18434135615825653, 0.052622731775045395, 0.014632739126682281]} +{"t": 0.4029, "q": [-0.38990041613578796, -0.004733183421194553, -0.0002544460294302553, 0.6247988939285278, -0.27357587218284607, 0.016401560977101326, -0.3467785120010376, -0.007482417393475771, 0.00040175687172450125, 0.6159359216690063, -0.3322490453720093, 0.013714886270463467, 0.0038300822488963604, 0.0018782572587952018, -0.04273620992898941, 0.284217894077301, 0.1947556436061859, -0.02003762498497963, 0.9840966463088989, 0.14852049946784973, 0.06294114887714386, -0.048655953258275986, 0.2882685661315918, -0.2009994238615036, 0.03203383460640907, 0.9926413893699646, -0.18431738018989563, 0.05265868455171585, 0.01462075486779213]} +{"t": 0.4199, "q": [-0.3898833692073822, -0.004741705488413572, -0.0002410541201243177, 0.6247988939285278, -0.27357587218284607, 0.016401560977101326, -0.3467785120010376, -0.007482417393475771, 0.00040175687172450125, 0.6159614324569702, -0.33225736021995544, 0.013729501515626907, 0.0038702578749507666, 0.0018858608091250062, -0.04273127391934395, 0.2842298746109009, 0.19479160010814667, -0.020025640726089478, 0.9840846657752991, 0.14847256243228912, 0.062929168343544, -0.048655953258275986, 0.28822061419487, -0.20098744332790375, 0.03202185034751892, 0.9926533699035645, -0.18432937562465668, 0.052670668810606, 0.01468067616224289]} +{"t": 0.4367, "q": [-0.3898748457431793, -0.004741705488413572, -0.00020087843586225063, 0.6247818470001221, -0.2735716998577118, 0.01640879362821579, -0.3467870354652405, -0.007499461527913809, 0.0004151487664785236, 0.6159359216690063, -0.332244873046875, 0.013707579113543034, 0.003923825453966856, 0.001931489328853786, -0.04275107756257057, 0.28420591354370117, 0.19479160010814667, -0.020013656467199326, 0.9840966463088989, 0.14856843650341034, 0.06295313686132431, -0.04866793751716614, 0.2881247401237488, -0.200951486825943, 0.032045818865299225, 0.9926413893699646, -0.18431738018989563, 0.05265868455171585, 0.01468067616224289]} +{"t": 0.4534, "q": [-0.3898833692073822, -0.004741705488413572, -0.00022766222537029535, 0.6247733235359192, -0.27357587218284607, 0.016401560977101326, -0.34680408239364624, -0.007482417393475771, 0.0004151487664785236, 0.6159359216690063, -0.3322407007217407, 0.013700253330171108, 0.0038702578749507666, 0.0019390929955989122, -0.04274614155292511, 0.28420591354370117, 0.1947556436061859, -0.02003762498497963, 0.9841086268424988, 0.14854447543621063, 0.06294114887714386, -0.04866793751716614, 0.2881007790565491, -0.20093950629234314, 0.03202185034751892, 0.9926653504371643, -0.18430539965629578, 0.052670668810606, 0.014644723385572433]} +{"t": 0.4703, "q": [-0.3898833692073822, -0.004741705488413572, -0.00022766222537029535, 0.6247733235359192, -0.27357587218284607, 0.016401560977101326, -0.34679555892944336, -0.007473895326256752, 0.00042854066123254597, 0.6159273982048035, -0.33230718970298767, 0.013802677392959595, 0.0038568659219890833, 0.0018934700638055801, -0.042765870690345764, 0.28420591354370117, 0.1947556436061859, -0.02003762498497963, 0.9841206073760986, 0.14852049946784973, 0.06294114887714386, -0.04866793751716614, 0.28800490498542786, -0.20093950629234314, 0.03203383460640907, 0.9926653504371643, -0.18437731266021729, 0.052670668810606, 0.014644723385572433]} +{"t": 0.4871, "q": [-0.3898833692073822, -0.004741705488413572, -0.0002410541201243177, 0.624790370464325, -0.27359265089035034, 0.01640150509774685, -0.3467870354652405, -0.00749093946069479, 0.0004151487664785236, 0.6159273982048035, -0.33231550455093384, 0.013817311264574528, 0.0038300822488963604, 0.0018934700638055801, -0.042765870690345764, 0.28419390320777893, 0.1947556436061859, -0.02003762498497963, 0.9841325879096985, 0.14844860136508942, 0.062929168343544, -0.04866793751716614, 0.28798094391822815, -0.20093950629234314, 0.03203383460640907, 0.9926773309707642, -0.18437731266021729, 0.052670668810606, 0.014668691903352737]} +{"t": 0.5038, "q": [-0.38990041613578796, -0.004750227555632591, -0.00022766222537029535, 0.6247818470001221, -0.273584246635437, 0.016415970399975777, -0.3467785120010376, -0.007473895326256752, 0.00042854066123254597, 0.6159273982048035, -0.33230718970298767, 0.013802677392959595, 0.0038434739690274, 0.0018934700638055801, -0.042765870690345764, 0.28419390320777893, 0.1947556436061859, -0.02003762498497963, 0.9841206073760986, 0.14844860136508942, 0.06294114887714386, -0.04866793751716614, 0.28793299198150635, -0.20093950629234314, 0.03205780312418938, 0.9926533699035645, -0.184401273727417, 0.052670668810606, 0.014668691903352737]} +{"t": 0.5205, "q": [-0.3898748457431793, -0.004733183421194553, -0.0002410541201243177, 0.6247733235359192, -0.27359265089035034, 0.01640150509774685, -0.3467870354652405, -0.007473895326256752, 0.00040175687172450125, 0.6159018278121948, -0.33230718970298767, 0.013802677392959595, 0.003923825453966856, 0.001908678561449051, -0.04276588186621666, 0.28419390320777893, 0.1947556436061859, -0.02003762498497963, 0.9841086268424988, 0.14848455786705017, 0.06295313686132431, -0.04866793751716614, 0.2879210114479065, -0.20093950629234314, 0.03202185034751892, 0.9926653504371643, -0.18434135615825653, 0.052682653069496155, 0.014656707644462585]} +{"t": 0.5372, "q": [-0.38990041613578796, -0.004741705488413572, -0.00022766222537029535, 0.6247818470001221, -0.2735842764377594, 0.016387097537517548, -0.34679555892944336, -0.00749093946069479, 0.0004151487664785236, 0.6159188747406006, -0.33231526613235474, 0.013788208365440369, 0.0038970415480434895, 0.001916285022161901, -0.042780712246894836, 0.28419390320777893, 0.19479160010814667, -0.02003762498497963, 0.9841445684432983, 0.14853249490261078, 0.06294114887714386, -0.048655953258275986, 0.28788506984710693, -0.2009275257587433, 0.03203383460640907, 0.9926773309707642, -0.18434135615825653, 0.052682653069496155, 0.014692660421133041]} +{"t": 0.554, "q": [-0.3898918926715851, -0.004741705488413572, -0.0002410541201243177, 0.6247648000717163, -0.27357587218284607, 0.016401560977101326, -0.3468126058578491, -0.007473895326256752, 0.00042854066123254597, 0.6159188747406006, -0.33230695128440857, 0.013773593120276928, 0.0038434739690274, 0.0019238871755078435, -0.04276589676737785, 0.28420591354370117, 0.1947556436061859, -0.02003762498497963, 0.9841086268424988, 0.14852049946784973, 0.06294114887714386, -0.04866793751716614, 0.28786107897758484, -0.20091553032398224, 0.03202185034751892, 0.9926773309707642, -0.18434135615825653, 0.05269463732838631, 0.014644723385572433]} +{"t": 0.5707, "q": [-0.38990041613578796, -0.004733183421194553, -0.00022766222537029535, 0.6247733235359192, -0.27359262108802795, 0.016430359333753586, -0.3468126058578491, -0.00749093946069479, 0.0004151487664785236, 0.6159273982048035, -0.332327276468277, 0.013751997612416744, 0.003923825453966856, 0.001916285022161901, -0.042780712246894836, 0.28420591354370117, 0.19474366307258606, -0.02003762498497963, 0.9841445684432983, 0.14852049946784973, 0.06295313686132431, -0.04866793751716614, 0.28786107897758484, -0.20091553032398224, 0.03202185034751892, 0.992689311504364, -0.18436531722545624, 0.05270662158727646, 0.014656707644462585]} +{"t": 0.5874, "q": [-0.3899259865283966, -0.004741705488413572, -0.0002544460294302553, 0.6247733235359192, -0.27359679341316223, 0.01642312854528427, -0.34680408239364624, -0.007473895326256752, 0.00040175687172450125, 0.6159018278121948, -0.33232298493385315, 0.013730157166719437, 0.003816690295934677, 0.0019086800748482347, -0.04277576506137848, 0.28419390320777893, 0.1947556436061859, -0.02003762498497963, 0.9841325879096985, 0.14853249490261078, 0.06297710537910461, -0.04866793751716614, 0.287849098443985, -0.20091553032398224, 0.032045818865299225, 0.992689311504364, -0.18434135615825653, 0.05263471603393555, 0.014668691903352737]} +{"t": 0.6042, "q": [-0.38990893959999084, -0.004733183421194553, -0.0002410541201243177, 0.6247733235359192, -0.27359262108802795, 0.016415933147072792, -0.3468126058578491, -0.00749093946069479, 0.00040175687172450125, 0.6158847808837891, -0.33233118057250977, 0.013730239123106003, 0.0038702578749507666, 0.001916283625178039, -0.04277082905173302, 0.28420591354370117, 0.1947556436061859, -0.02003762498497963, 0.9841445684432983, 0.14850851893424988, 0.06294114887714386, -0.04867992177605629, 0.28783711791038513, -0.20091553032398224, 0.03200986608862877, 0.9926773309707642, -0.184401273727417, 0.05269463732838631, 0.014644723385572433]} +{"t": 0.6209, "q": [-0.38990041613578796, -0.004741705488413572, -0.00022766222537029535, 0.6247648000717163, -0.27359262108802795, 0.016415933147072792, -0.3468126058578491, -0.00749093946069479, 0.00042854066123254597, 0.6158762574195862, -0.33233535289764404, 0.013737546280026436, 0.00388364982791245, 0.001916285022161901, -0.042780712246894836, 0.28419390320777893, 0.1947556436061859, -0.02003762498497963, 0.9841445684432983, 0.14846058189868927, 0.06296511739492416, -0.04866793751716614, 0.2878131568431854, -0.20091553032398224, 0.03203383460640907, 0.9926773309707642, -0.18437731266021729, 0.05269463732838631, 0.014644723385572433]} +{"t": 0.6377, "q": [-0.38990893959999084, -0.004741705488413572, -0.0002410541201243177, 0.6247648000717163, -0.27359262108802795, 0.016415933147072792, -0.3468126058578491, -0.00749093946069479, 0.00042854066123254597, 0.6158336400985718, -0.3323436677455902, 0.013752161525189877, 0.0038300822488963604, 0.0019238899694755673, -0.042785659432411194, 0.28419390320777893, 0.19476762413978577, -0.02003762498497963, 0.9841445684432983, 0.14852049946784973, 0.06295313686132431, -0.04867992177605629, 0.2878251373767853, -0.20091553032398224, 0.03202185034751892, 0.9926773309707642, -0.18436531722545624, 0.052670668810606, 0.014608770608901978]} +{"t": 0.6544, "q": [-0.3899259865283966, -0.004741705488413572, -0.00022766222537029535, 0.6247648000717163, -0.273630291223526, 0.016451852396130562, -0.346821129322052, -0.007499461527913809, 0.00044193255598656833, 0.615816593170166, -0.3323436677455902, 0.013752161525189877, 0.0038970415480434895, 0.0019238899694755673, -0.042785659432411194, 0.28419390320777893, 0.1947556436061859, -0.02003762498497963, 0.9841565489768982, 0.14849653840065002, 0.06296511739492416, -0.04866793751716614, 0.28780117630958557, -0.20091553032398224, 0.03200986608862877, 0.9926653504371643, -0.18434135615825653, 0.052670668810606, 0.014656707644462585]} +{"t": 0.6711, "q": [-0.3899345099925995, -0.004733183421194553, -0.0002410541201243177, 0.6247733235359192, -0.27362191677093506, 0.01643744483590126, -0.3468296527862549, -0.00749093946069479, 0.00044193255598656833, 0.615816593170166, -0.33235201239585876, 0.013766794465482235, 0.0038568659219890833, 0.0019390999805182219, -0.04279555752873421, 0.28419390320777893, 0.19477961957454681, -0.02003762498497963, 0.9841445684432983, 0.14853249490261078, 0.06301305443048477, -0.04866793751716614, 0.28780117630958557, -0.20091553032398224, 0.03203383460640907, 0.9926773309707642, -0.184401273727417, 0.052670668810606, 0.014656707644462585]} +{"t": 0.6879, "q": [-0.3899345099925995, -0.004741705488413572, -0.0002410541201243177, 0.624790370464325, -0.27360934019088745, 0.016459140926599503, -0.3468296527862549, -0.00749093946069479, 0.00044193255598656833, 0.6157910227775574, -0.33235201239585876, 0.013766794465482235, 0.0038568659219890833, 0.0019390999805182219, -0.04279555752873421, 0.28419390320777893, 0.19477961957454681, -0.020025640726089478, 0.9841805100440979, 0.14854447543621063, 0.06300107389688492, -0.04866793751716614, 0.2877891957759857, -0.20090354979038239, 0.03202185034751892, 0.9926653504371643, -0.18436531722545624, 0.0526467002928257, 0.014656707644462585]} +{"t": 0.7047, "q": [-0.3899345099925995, -0.004733183421194553, -0.0002410541201243177, 0.6247818470001221, -0.2736344337463379, 0.016487902030348778, -0.3468126058578491, -0.00749093946069479, 0.00042854066123254597, 0.6157824993133545, -0.3323478400707245, 0.013759487308561802, 0.0038434739690274, 0.0019314964301884174, -0.04280048981308937, 0.28419390320777893, 0.1947556436061859, -0.02003762498497963, 0.9841445684432983, 0.14852049946784973, 0.06296511739492416, -0.04869190603494644, 0.2877891957759857, -0.20090354979038239, 0.03203383460640907, 0.9926533699035645, -0.18436531722545624, 0.052682653069496155, 0.014644723385572433]} +{"t": 0.7214, "q": [-0.3899345099925995, -0.004741705488413572, -0.0002410541201243177, 0.6247818470001221, -0.27362608909606934, 0.016459085047245026, -0.34680408239364624, -0.007507983595132828, 0.00042854066123254597, 0.6157398819923401, -0.33233559131622314, 0.013766612857580185, 0.0038434739690274, 0.0019238913664594293, -0.04279554262757301, 0.284217894077301, 0.1947556436061859, -0.02003762498497963, 0.9841565489768982, 0.14848455786705017, 0.06300107389688492, -0.04867992177605629, 0.2877891957759857, -0.20090354979038239, 0.03202185034751892, 0.992689311504364, -0.18434135615825653, 0.05269463732838631, 0.014632739126682281]} +{"t": 0.7384, "q": [-0.38994303345680237, -0.004741705488413572, -0.00021427033061627299, 0.6247648000717163, -0.27362608909606934, 0.016459085047245026, -0.34679555892944336, -0.007507983595132828, 0.00044193255598656833, 0.615748405456543, -0.3323395252227783, 0.013744853436946869, 0.0038702578749507666, 0.0019314950332045555, -0.04279060661792755, 0.28420591354370117, 0.1947556436061859, -0.02003762498497963, 0.9841565489768982, 0.14853249490261078, 0.06298908591270447, -0.04866793751716614, 0.2877652049064636, -0.20091553032398224, 0.03203383460640907, 0.992689311504364, -0.18430539965629578, 0.052670668810606, 0.014656707644462585]} +{"t": 0.7552, "q": [-0.38994303345680237, -0.004750227555632591, -0.00022766222537029535, 0.6247733235359192, -0.27362608909606934, 0.016459085047245026, -0.34680408239364624, -0.007499461527913809, 0.0004553244507405907, 0.615748405456543, -0.3323357403278351, 0.013781164772808552, 0.0038434739690274, 0.0019314950332045555, -0.04279060661792755, 0.28419390320777893, 0.19477961957454681, -0.020025640726089478, 0.9841805100440979, 0.14848455786705017, 0.06298908591270447, -0.04866793751716614, 0.28775322437286377, -0.20090354979038239, 0.03202185034751892, 0.9926773309707642, -0.18434135615825653, 0.05265868455171585, 0.014656707644462585]} +{"t": 0.772, "q": [-0.38994303345680237, -0.004741705488413572, -0.00022766222537029535, 0.6247818470001221, -0.2736051380634308, 0.016451945528388023, -0.34679555892944336, -0.00749093946069479, 0.0004553244507405907, 0.6157313585281372, -0.33225688338279724, 0.013671332038939, 0.0038568659219890833, 0.0019390999805182219, -0.04279555752873421, 0.28419390320777893, 0.19477961957454681, -0.02003762498497963, 0.984168529510498, 0.1485804319381714, 0.06297710537910461, -0.04866793751716614, 0.28772926330566406, -0.20089156925678253, 0.03203383460640907, 0.9926773309707642, -0.18436531722545624, 0.05261074751615524, 0.014644723385572433]} +{"t": 0.7887, "q": [-0.38995155692100525, -0.004741705488413572, -0.00020087843586225063, 0.6247733235359192, -0.27360934019088745, 0.016459140926599503, -0.3467785120010376, -0.007482417393475771, 0.00044193255598656833, 0.6157398819923401, -0.33226948976516724, 0.01370780635625124, 0.0038568659219890833, 0.0019390999805182219, -0.04279555752873421, 0.28419390320777893, 0.19476762413978577, -0.02003762498497963, 0.9841924905776978, 0.14853249490261078, 0.06298908591270447, -0.04866793751716614, 0.2877172827720642, -0.20090354979038239, 0.03203383460640907, 0.9926773309707642, -0.18434135615825653, 0.0526467002928257, 0.014656707644462585]} +{"t": 0.8057, "q": [-0.3899345099925995, -0.004741705488413572, -0.00022766222537029535, 0.624790370464325, -0.27360934019088745, 0.01644471287727356, -0.3467785120010376, -0.00749093946069479, 0.0004553244507405907, 0.6157569289207458, -0.3322693705558777, 0.013693273067474365, 0.0038434739690274, 0.0019238913664594293, -0.04279554262757301, 0.28419390320777893, 0.1947556436061859, -0.02003762498497963, 0.9841924905776978, 0.14853249490261078, 0.06298908591270447, -0.04866793751716614, 0.28770530223846436, -0.20089156925678253, 0.03203383460640907, 0.992689311504364, -0.18434135615825653, 0.05261074751615524, 0.014692660421133041]} +{"t": 0.8224, "q": [-0.3899259865283966, -0.004741705488413572, -0.00021427033061627299, 0.624790370464325, -0.2736135423183441, 0.016437482088804245, -0.3467785120010376, -0.007473895326256752, 0.0004553244507405907, 0.6157398819923401, -0.3322651982307434, 0.013685965910553932, 0.0038568659219890833, 0.0019543084781616926, -0.0427955687046051, 0.28419390320777893, 0.1947556436061859, -0.020061593502759933, 0.984168529510498, 0.14853249490261078, 0.06297710537910461, -0.04867992177605629, 0.28768134117126465, -0.20091553032398224, 0.03203383460640907, 0.9926773309707642, -0.18437731266021729, 0.052670668810606, 0.014692660421133041]} +{"t": 0.8392, "q": [-0.3899345099925995, -0.00475874962285161, -0.00021427033061627299, 0.6247818470001221, -0.27360934019088745, 0.016459140926599503, -0.3467785120010376, -0.007482417393475771, 0.00044193255598656833, 0.6157228350639343, -0.3322651982307434, 0.013685965910553932, 0.0038568659219890833, 0.0019238885724917054, -0.042775776237249374, 0.28419390320777893, 0.19476762413978577, -0.020013656467199326, 0.984168529510498, 0.14850851893424988, 0.06300107389688492, -0.04869190603494644, 0.2876693308353424, -0.20089156925678253, 0.03203383460640907, 0.9927012920379639, -0.18437731266021729, 0.0526467002928257, 0.01468067616224289]} +{"t": 0.8564, "q": [-0.3899345099925995, -0.004741705488413572, -0.00022766222537029535, 0.624790370464325, -0.27360934019088745, 0.01644471287727356, -0.34676146507263184, -0.007482417393475771, 0.00042854066123254597, 0.6157313585281372, -0.33231112360954285, 0.013780901208519936, 0.0038434739690274, 0.0019390999805182219, -0.04279555752873421, 0.28419390320777893, 0.1947556436061859, -0.02003762498497963, 0.9841805100440979, 0.14852049946784973, 0.06297710537910461, -0.04869190603494644, 0.28765735030174255, -0.20090354979038239, 0.03202185034751892, 0.9926773309707642, -0.18434135615825653, 0.05269463732838631, 0.014644723385572433]} +{"t": 0.8731, "q": [-0.3899259865283966, -0.004750227555632591, -0.00021427033061627299, 0.6247733235359192, -0.2736135423183441, 0.01645190827548504, -0.3467785120010376, -0.00749093946069479, 0.00044193255598656833, 0.6157143115997314, -0.33232322335243225, 0.013759223744273186, 0.0038300822488963604, 0.0019467035308480263, -0.042790621519088745, 0.2841819226741791, 0.19476762413978577, -0.02003762498497963, 0.9841924905776978, 0.14853249490261078, 0.06301305443048477, -0.04867992177605629, 0.28765735030174255, -0.20089156925678253, 0.03203383460640907, 0.9927012920379639, -0.18434135615825653, 0.05265868455171585, 0.014644723385572433]} +{"t": 0.8901, "q": [-0.38994303345680237, -0.004733183421194553, -0.00021427033061627299, 0.6247733235359192, -0.2736177146434784, 0.016444675624370575, -0.3467699885368347, -0.00749093946069479, 0.00044193255598656833, 0.6157398819923401, -0.33231931924819946, 0.013780982233583927, 0.0038702578749507666, 0.0019314950332045555, -0.04279060661792755, 0.2841819226741791, 0.19476762413978577, -0.02003762498497963, 0.984168529510498, 0.14850851893424988, 0.06297710537910461, -0.04866793751716614, 0.28765735030174255, -0.20089156925678253, 0.032045818865299225, 0.9927012920379639, -0.18434135615825653, 0.05265868455171585, 0.014656707644462585]} +{"t": 0.9068, "q": [-0.38994303345680237, -0.004733183421194553, -0.00021427033061627299, 0.6247818470001221, -0.2736177146434784, 0.016444675624370575, -0.34676146507263184, -0.00749093946069479, 0.00042854066123254597, 0.6157313585281372, -0.33232739567756653, 0.013766530901193619, 0.00388364982791245, 0.0019314935198053718, -0.04278072714805603, 0.2841699421405792, 0.1947556436061859, -0.02003762498497963, 0.9841805100440979, 0.14844860136508942, 0.06295313686132431, -0.04866793751716614, 0.28763338923454285, -0.20089156925678253, 0.032045818865299225, 0.9926773309707642, -0.18434135615825653, 0.05265868455171585, 0.014644723385572433]} +{"t": 0.9236, "q": [-0.3899345099925995, -0.004733183421194553, -0.00022766222537029535, 0.6247733235359192, -0.27362608909606934, 0.016459085047245026, -0.3467699885368347, -0.007473895326256752, 0.00042854066123254597, 0.6157398819923401, -0.33233144879341125, 0.013759305700659752, 0.0038434739690274, 0.0019390999805182219, -0.04279555752873421, 0.2841819226741791, 0.1947556436061859, -0.020061593502759933, 0.984168529510498, 0.14848455786705017, 0.06300107389688492, -0.04869190603494644, 0.28760942816734314, -0.20089156925678253, 0.03205780312418938, 0.9927012920379639, -0.184401273727417, 0.052670668810606, 0.014656707644462585]} +{"t": 0.9403, "q": [-0.38994303345680237, -0.004741705488413572, -0.0002410541201243177, 0.6247648000717163, -0.2736135423183441, 0.01645190827548504, -0.34680408239364624, -0.007482417393475771, 0.00042854066123254597, 0.6157228350639343, -0.33233559131622314, 0.013766612857580185, 0.003816690295934677, 0.0019390999805182219, -0.04279555752873421, 0.2841699421405792, 0.1947556436061859, -0.020061593502759933, 0.9841924905776978, 0.14853249490261078, 0.06300107389688492, -0.04869190603494644, 0.287621408700943, -0.20089156925678253, 0.032045818865299225, 0.9927252531051636, -0.18434135615825653, 0.0526467002928257, 0.014644723385572433]} +{"t": 0.957, "q": [-0.3899345099925995, -0.004733183421194553, -0.00022766222537029535, 0.6247733235359192, -0.2736051678657532, 0.01643751747906208, -0.34679555892944336, -0.007473895326256752, 0.0004151487664785236, 0.6157057881355286, -0.33233144879341125, 0.013759305700659752, 0.0038568659219890833, 0.0019162892131134868, -0.042810361832380295, 0.2841819226741791, 0.19476762413978577, -0.02003762498497963, 0.9841805100440979, 0.14850851893424988, 0.06300107389688492, -0.04869190603494644, 0.287621408700943, -0.20089156925678253, 0.03202185034751892, 0.9927252531051636, -0.18434135615825653, 0.05265868455171585, 0.014656707644462585]} +{"t": 0.9739, "q": [-0.3899259865283966, -0.004741705488413572, -0.0002410541201243177, 0.6247733235359192, -0.2736177146434784, 0.016444675624370575, -0.3467785120010376, -0.00749093946069479, 0.00042854066123254597, 0.6157143115997314, -0.332327276468277, 0.013751997612416744, 0.003816690295934677, 0.0019238941604271531, -0.04281530901789665, 0.2841699421405792, 0.19476762413978577, -0.02003762498497963, 0.9841924905776978, 0.14849653840065002, 0.06298908591270447, -0.04869190603494644, 0.28763338923454285, -0.20087958872318268, 0.032045818865299225, 0.992689311504364, -0.18436531722545624, 0.0526467002928257, 0.014632739126682281]} +{"t": 0.9906, "q": [-0.3899259865283966, -0.004733183421194553, -0.00022766222537029535, 0.6247562766075134, -0.2736177146434784, 0.016444675624370575, -0.3467870354652405, -0.00749093946069479, 0.00042854066123254597, 0.6157057881355286, -0.33236032724380493, 0.013781409710645676, 0.0038300822488963604, 0.0019238927634432912, -0.04280542582273483, 0.2841819226741791, 0.19479160010814667, -0.020025640726089478, 0.9841924905776978, 0.14853249490261078, 0.06301305443048477, -0.04867992177605629, 0.287621408700943, -0.20089156925678253, 0.03202185034751892, 0.9927252531051636, -0.18431738018989563, 0.05269463732838631, 0.014644723385572433]} +{"t": 1.0073, "q": [-0.38994303345680237, -0.0047246613539755344, -0.00022766222537029535, 0.6247733235359192, -0.27362191677093506, 0.01643744483590126, -0.34680408239364624, -0.00749093946069479, 0.00042854066123254597, 0.6157057881355286, -0.3323644995689392, 0.013788717798888683, 0.0038702578749507666, 0.0019314964301884174, -0.04280048981308937, 0.28419390320777893, 0.1947556436061859, -0.02003762498497963, 0.9842044711112976, 0.14854447543621063, 0.06300107389688492, -0.04866793751716614, 0.287621408700943, -0.20089156925678253, 0.03202185034751892, 0.9927132725715637, -0.18431738018989563, 0.05265868455171585, 0.014656707644462585]} +{"t": 1.0242, "q": [-0.38994303345680237, -0.004741705488413572, -0.0002410541201243177, 0.6247562766075134, -0.27362191677093506, 0.01643744483590126, -0.34680408239364624, -0.00749093946069479, 0.00042854066123254597, 0.6156972646713257, -0.3323478400707245, 0.013759487308561802, 0.0038702578749507666, 0.0019238913664594293, -0.04279554262757301, 0.2841819226741791, 0.1947556436061859, -0.02003762498497963, 0.9842165112495422, 0.14853249490261078, 0.06301305443048477, -0.04867992177605629, 0.28763338923454285, -0.20089156925678253, 0.03205780312418938, 0.9927252531051636, -0.18434135615825653, 0.052682653069496155, 0.014656707644462585]} +{"t": 1.0409, "q": [-0.38994303345680237, -0.004733183421194553, -0.0002544460294302553, 0.6247733235359192, -0.27362191677093506, 0.01643744483590126, -0.34680408239364624, -0.007482417393475771, 0.0003883649769704789, 0.6157057881355286, -0.3323436677455902, 0.013752161525189877, 0.0038702578749507666, 0.0019314964301884174, -0.04280048981308937, 0.2841819226741791, 0.19476762413978577, -0.02003762498497963, 0.9842165112495422, 0.14849653840065002, 0.06300107389688492, -0.04866793751716614, 0.2875974476337433, -0.20089156925678253, 0.03203383460640907, 0.9927252531051636, -0.18436531722545624, 0.052670668810606, 0.014644723385572433]} +{"t": 1.0577, "q": [-0.38996008038520813, -0.004733183421194553, -0.0002544460294302553, 0.6247648000717163, -0.2736261188983917, 0.016430212184786797, -0.34679555892944336, -0.00749093946069479, 0.00040175687172450125, 0.6157057881355286, -0.3323478400707245, 0.013759487308561802, 0.0038970415480434895, 0.0019086842657998204, -0.04280541464686394, 0.2841819226741791, 0.19476762413978577, -0.020061593502759933, 0.9841924905776978, 0.14843662083148956, 0.06301305443048477, -0.04869190603494644, 0.28760942816734314, -0.20089156925678253, 0.03203383460640907, 0.9927252531051636, -0.18437731266021729, 0.052670668810606, 0.014644723385572433]} +{"t": 1.0745, "q": [-0.38996008038520813, -0.004733183421194553, -0.0002544460294302553, 0.6247562766075134, -0.27362191677093506, 0.01643744483590126, -0.34679555892944336, -0.00749093946069479, 0.00042854066123254597, 0.6156887412071228, -0.33235201239585876, 0.013766794465482235, 0.0038568659219890833, 0.0019390999805182219, -0.04279555752873421, 0.2841699421405792, 0.1947556436061859, -0.02003762498497963, 0.9842165112495422, 0.14850851893424988, 0.06301305443048477, -0.04866793751716614, 0.2875974476337433, -0.20089156925678253, 0.03203383460640907, 0.9927372932434082, -0.18431738018989563, 0.0526467002928257, 0.014644723385572433]} +{"t": 1.0912, "q": [-0.38996008038520813, -0.0047161392867565155, -0.0002544460294302553, 0.6247477531433105, -0.27362191677093506, 0.01643744483590126, -0.3468126058578491, -0.007507983595132828, 0.00037497308221645653, 0.6156887412071228, -0.3323436677455902, 0.013752161525189877, 0.0038568659219890833, 0.0019390999805182219, -0.04279555752873421, 0.28415796160697937, 0.1947556436061859, -0.02003762498497963, 0.9842044711112976, 0.14852049946784973, 0.06298908591270447, -0.04869190603494644, 0.28760942816734314, -0.20087958872318268, 0.03205780312418938, 0.9927252531051636, -0.18436531722545624, 0.052670668810606, 0.014644723385572433]} +{"t": 1.108, "q": [-0.38996008038520813, -0.004733183421194553, -0.00026783792418427765, 0.6247733235359192, -0.2736261188983917, 0.016430212184786797, -0.34679555892944336, -0.007482417393475771, 0.0004151487664785236, 0.6156802177429199, -0.3323436677455902, 0.013752161525189877, 0.0038970415480434895, 0.0019238899694755673, -0.042785659432411194, 0.2841819226741791, 0.1947556436061859, -0.02003762498497963, 0.9841924905776978, 0.14852049946784973, 0.06296511739492416, -0.04867992177605629, 0.2875974476337433, -0.20087958872318268, 0.03203383460640907, 0.9927372932434082, -0.18434135615825653, 0.052682653069496155, 0.014644723385572433]} +{"t": 1.1247, "q": [-0.38996008038520813, -0.0047246613539755344, -0.0002544460294302553, 0.6247648000717163, -0.2736428380012512, 0.016473438590765, -0.3468126058578491, -0.007507983595132828, 0.00040175687172450125, 0.6156631708145142, -0.3323478400707245, 0.013759487308561802, 0.00388364982791245, 0.0019314964301884174, -0.04280048981308937, 0.2841699421405792, 0.19477961957454681, -0.02003762498497963, 0.9841924905776978, 0.14855645596981049, 0.06300107389688492, -0.04869190603494644, 0.2875974476337433, -0.20089156925678253, 0.032045818865299225, 0.9927252531051636, -0.18437731266021729, 0.052682653069496155, 0.014692660421133041]} +{"t": 1.1414, "q": [-0.3899771273136139, -0.0047161392867565155, -0.0002544460294302553, 0.6247562766075134, -0.2736428380012512, 0.016473438590765, -0.346821129322052, -0.007473895326256752, 0.00042854066123254597, 0.615603506565094, -0.33235201239585876, 0.013766794465482235, 0.0038568659219890833, 0.0019467049278318882, -0.042800504714250565, 0.2841819226741791, 0.1947556436061859, -0.02003762498497963, 0.9842044711112976, 0.14854447543621063, 0.06300107389688492, -0.04869190603494644, 0.2875974476337433, -0.20087958872318268, 0.032045818865299225, 0.9927372932434082, -0.18431738018989563, 0.05269463732838631, 0.01468067616224289]} +{"t": 1.1581, "q": [-0.3899771273136139, -0.0047246613539755344, -0.0002544460294302553, 0.6247392296791077, -0.2736470103263855, 0.016466205939650536, -0.34680408239364624, -0.007473895326256752, 0.00044193255598656833, 0.6155949831008911, -0.3323644995689392, 0.013788717798888683, 0.00388364982791245, 0.0019390999805182219, -0.04279555752873421, 0.2841699421405792, 0.19477961957454681, -0.02003762498497963, 0.9842044711112976, 0.14854447543621063, 0.06300107389688492, -0.04869190603494644, 0.28758546710014343, -0.20087958872318268, 0.032045818865299225, 0.9927372932434082, -0.18431738018989563, 0.052670668810606, 0.014668691903352737]} +{"t": 1.1749, "q": [-0.3899856507778168, -0.0047161392867565155, -0.00026783792418427765, 0.6247562766075134, -0.2736470103263855, 0.016466205939650536, -0.3468296527862549, -0.00749093946069479, 0.00042854066123254597, 0.615603506565094, -0.33241763710975647, 0.013767450116574764, 0.0038970415480434895, 0.0019467035308480263, -0.042790621519088745, 0.2841699421405792, 0.1947556436061859, -0.02003762498497963, 0.9842165112495422, 0.14852049946784973, 0.06300107389688492, -0.04869190603494644, 0.2875494956970215, -0.20089156925678253, 0.032045818865299225, 0.9927252531051636, -0.18431738018989563, 0.052670668810606, 0.014656707644462585]} +{"t": 1.1916, "q": [-0.3899856507778168, -0.0047246613539755344, -0.0002544460294302553, 0.6247562766075134, -0.2736470103263855, 0.016466205939650536, -0.3468126058578491, -0.007482417393475771, 0.00040175687172450125, 0.6155779361724854, -0.3323926627635956, 0.01372358575463295, 0.0039506093598902225, 0.0019543084781616926, -0.0427955687046051, 0.2841819226741791, 0.19476762413978577, -0.020061593502759933, 0.9841924905776978, 0.14849653840065002, 0.06300107389688492, -0.04867992177605629, 0.2875494956970215, -0.20087958872318268, 0.032045818865299225, 0.9927252531051636, -0.18436531722545624, 0.05265868455171585, 0.014644723385572433]} +{"t": 1.2084, "q": [-0.3899856507778168, -0.0047161392867565155, -0.00026783792418427765, 0.6247392296791077, -0.27365538477897644, 0.016480596736073494, -0.3468296527862549, -0.00749093946069479, 0.0004151487664785236, 0.6155949831008911, -0.3324258625507355, 0.013767513446509838, 0.0038702578749507666, 0.0019390999805182219, -0.04279555752873421, 0.2841819226741791, 0.1947556436061859, -0.02003762498497963, 0.9842165112495422, 0.14848455786705017, 0.06298908591270447, -0.04867992177605629, 0.2875494956970215, -0.20087958872318268, 0.032045818865299225, 0.9927372932434082, -0.1844492107629776, 0.05269463732838631, 0.014692660421133041]} +{"t": 1.2252, "q": [-0.39000269770622253, -0.004733183421194553, -0.0002544460294302553, 0.6247477531433105, -0.27365538477897644, 0.016480596736073494, -0.3468296527862549, -0.00749093946069479, 0.00040175687172450125, 0.6155779361724854, -0.33243000507354736, 0.013774821534752846, 0.0038702578749507666, 0.0019238941604271531, -0.04281530901789665, 0.2841699421405792, 0.19476762413978577, -0.02003762498497963, 0.9842165112495422, 0.14853249490261078, 0.06300107389688492, -0.04869190603494644, 0.28756147623062134, -0.20089156925678253, 0.032045818865299225, 0.9927252531051636, -0.184401273727417, 0.052682653069496155, 0.014668691903352737]} +{"t": 1.242, "q": [-0.38999417424201965, -0.004733183421194553, -0.00026783792418427765, 0.6247562766075134, -0.2736930549144745, 0.016530925408005714, -0.3468296527862549, -0.007499461527913809, 0.00042854066123254597, 0.6155353784561157, -0.33243417739868164, 0.013782128691673279, 0.0038568659219890833, 0.0019391027744859457, -0.04281532019376755, 0.2841699421405792, 0.1947556436061859, -0.02003762498497963, 0.9841924905776978, 0.14852049946784973, 0.06300107389688492, -0.04869190603494644, 0.28753751516342163, -0.20085561275482178, 0.03203383460640907, 0.9927252531051636, -0.184401273727417, 0.052670668810606, 0.014644723385572433]} +{"t": 1.2591, "q": [-0.3900197446346283, -0.004741705488413572, -0.0002544460294302553, 0.6247477531433105, -0.2736763060092926, 0.016502143815159798, -0.346821129322052, -0.007499461527913809, 0.0004151487664785236, 0.6155524253845215, -0.3324093222618103, 0.013752816244959831, 0.003923825453966856, 0.0019391013775020838, -0.04280543699860573, 0.2841699421405792, 0.19476762413978577, -0.02003762498497963, 0.9842165112495422, 0.14848455786705017, 0.06300107389688492, -0.04867992177605629, 0.2875494956970215, -0.20089156925678253, 0.03202185034751892, 0.9927252531051636, -0.18436531722545624, 0.052670668810606, 0.01468067616224289]} +{"t": 1.276, "q": [-0.39005380868911743, -0.0047161392867565155, -0.0002812298189383, 0.6247562766075134, -0.2736930549144745, 0.016530925408005714, -0.3468296527862549, -0.00749093946069479, 0.0004553244507405907, 0.6155098080635071, -0.332446426153183, 0.013774985447525978, 0.0038434739690274, 0.0019314978271722794, -0.04281037300825119, 0.28415796160697937, 0.19477961957454681, -0.02003762498497963, 0.9842165112495422, 0.14852049946784973, 0.06300107389688492, -0.04869190603494644, 0.2875255346298218, -0.20085561275482178, 0.03203383460640907, 0.9927372932434082, -0.184401273727417, 0.05263471603393555, 0.014692660421133041]} +{"t": 1.2927, "q": [-0.39005380868911743, -0.0047246613539755344, -0.0002544460294302553, 0.6247392296791077, -0.27368882298469543, 0.01653817482292652, -0.3468637466430664, -0.007499461527913809, 0.00042854066123254597, 0.6155098080635071, -0.332446426153183, 0.013774985447525978, 0.003910433501005173, 0.0019390999805182219, -0.04279555752873421, 0.2841699421405792, 0.1947556436061859, -0.020061593502759933, 0.9842165112495422, 0.14853249490261078, 0.06301305443048477, -0.04869190603494644, 0.2875135540962219, -0.20089156925678253, 0.032045818865299225, 0.9927372932434082, -0.18437731266021729, 0.0526467002928257, 0.014692660421133041]} +{"t": 1.3094, "q": [-0.39009642601013184, -0.0047161392867565155, -0.0002544460294302553, 0.6247392296791077, -0.27371397614479065, 0.016538064926862717, -0.34688931703567505, -0.007507983595132828, 0.00042854066123254597, 0.6154586672782898, -0.3324751853942871, 0.013782556168735027, 0.0038568659219890833, 0.0019391013775020838, -0.04280543699860573, 0.2841699421405792, 0.19476762413978577, -0.020061593502759933, 0.9842165112495422, 0.14853249490261078, 0.06301305443048477, -0.048703890293836594, 0.2875135540962219, -0.20086759328842163, 0.03202185034751892, 0.9927252531051636, -0.18436531722545624, 0.05269463732838631, 0.014692660421133041]} +{"t": 1.3263, "q": [-0.3901901841163635, -0.0047246613539755344, -0.00026783792418427765, 0.6247392296791077, -0.27371397614479065, 0.01655249111354351, -0.3469148874282837, -0.007507983595132828, 0.0004553244507405907, 0.6154160499572754, -0.3324710428714752, 0.013775249011814594, 0.0038300822488963604, 0.0019314992241561413, -0.04282025620341301, 0.2841819226741791, 0.1947556436061859, -0.02003762498497963, 0.9842165112495422, 0.14850851893424988, 0.06301305443048477, -0.04867992177605629, 0.2874895930290222, -0.20085561275482178, 0.032045818865299225, 0.9927252531051636, -0.18436531722545624, 0.052682653069496155, 0.014692660421133041]} +{"t": 1.3431, "q": [-0.3901901841163635, -0.0047246613539755344, -0.0002812298189383, 0.6247562766075134, -0.2737181484699249, 0.01655968651175499, -0.3469148874282837, -0.007507983595132828, 0.0004553244507405907, 0.6153819561004639, -0.33246269822120667, 0.013760615140199661, 0.0038970415480434895, 0.001961913425475359, -0.04280051589012146, 0.2841699421405792, 0.19476762413978577, -0.02004960924386978, 0.9842165112495422, 0.14849653840065002, 0.06301305443048477, -0.04869190603494644, 0.2874775826931, -0.20087958872318268, 0.03203383460640907, 0.9927252531051636, -0.18434135615825653, 0.05269463732838631, 0.014668691903352737]} +{"t": 1.3598, "q": [-0.3901987075805664, -0.004733183421194553, -0.00026783792418427765, 0.6247392296791077, -0.2737181484699249, 0.016545260325074196, -0.34693190455436707, -0.007499461527913809, 0.00042854066123254597, 0.6153563857078552, -0.33246687054634094, 0.013767923228442669, 0.0038434739690274, 0.0019467063248157501, -0.042810384184122086, 0.2841819226741791, 0.1947556436061859, -0.020061593502759933, 0.9842404723167419, 0.14847256243228912, 0.06302504241466522, -0.04869190603494644, 0.2874656021595001, -0.20085561275482178, 0.032045818865299225, 0.9927252531051636, -0.18436531722545624, 0.052670668810606, 0.01468067616224289]} +{"t": 1.3765, "q": [-0.3901987075805664, -0.0047246613539755344, -0.00026783792418427765, 0.6247307062149048, -0.2737223505973816, 0.016552455723285675, -0.34693190455436707, -0.007499461527913809, 0.00042854066123254597, 0.6153563857078552, -0.33247506618499756, 0.013768022879958153, 0.003910433501005173, 0.0019543112721294165, -0.04281533509492874, 0.2841699421405792, 0.19477961957454681, -0.020061593502759933, 0.9842165112495422, 0.14852049946784973, 0.06300107389688492, -0.04869190603494644, 0.2874895930290222, -0.20087958872318268, 0.03203383460640907, 0.9927372932434082, -0.18434135615825653, 0.052682653069496155, 0.014668691903352737]} +{"t": 1.3933, "q": [-0.39022427797317505, -0.0047246613539755344, -0.0002946217136923224, 0.6247477531433105, -0.27372652292251587, 0.016559649258852005, -0.34693190455436707, -0.007507983595132828, 0.00044193255598656833, 0.6153222918510437, -0.33246687054634094, 0.013767923228442669, 0.00388364982791245, 0.0019543098751455545, -0.04280545189976692, 0.2841699421405792, 0.19477961957454681, -0.02003762498497963, 0.9842165112495422, 0.14850851893424988, 0.06300107389688492, -0.04869190603494644, 0.2874656021595001, -0.20086759328842163, 0.032045818865299225, 0.9927252531051636, -0.18431738018989563, 0.052670668810606, 0.014668691903352737]} +{"t": 1.41, "q": [-0.39023280143737793, -0.0047246613539755344, -0.00026783792418427765, 0.6247477531433105, -0.2737223207950592, 0.01656688190996647, -0.3469234108924866, -0.007499461527913809, 0.00042854066123254597, 0.6153052449226379, -0.3324751853942871, 0.013782556168735027, 0.0038702578749507666, 0.0019391027744859457, -0.04281532019376755, 0.28415796160697937, 0.19476762413978577, -0.02003762498497963, 0.9842165112495422, 0.14848455786705017, 0.06300107389688492, -0.048703890293836594, 0.2874416410923004, -0.20086759328842163, 0.03202185034751892, 0.9927252531051636, -0.18434135615825653, 0.05269463732838631, 0.014644723385572433]} +{"t": 1.4268, "q": [-0.39021575450897217, -0.0047246613539755344, -0.00026783792418427765, 0.6247392296791077, -0.27371397614479065, 0.01655249111354351, -0.3469148874282837, -0.007507983595132828, 0.00042854066123254597, 0.6153052449226379, -0.33246269822120667, 0.013760615140199661, 0.0038300822488963604, 0.0019467063248157501, -0.042810384184122086, 0.2841459810733795, 0.19476762413978577, -0.02003762498497963, 0.9842165112495422, 0.14850851893424988, 0.06300107389688492, -0.04869190603494644, 0.28742966055870056, -0.20086759328842163, 0.03203383460640907, 0.9927252531051636, -0.18436531722545624, 0.05265868455171585, 0.014632739126682281]} +{"t": 1.4435, "q": [-0.39023280143737793, -0.004733183421194553, -0.00026783792418427765, 0.6247477531433105, -0.273709774017334, 0.01654529757797718, -0.34693190455436707, -0.007499461527913809, 0.0004553244507405907, 0.6152881979942322, -0.3324379622936249, 0.013745836913585663, 0.00388364982791245, 0.001946707721799612, -0.042820267379283905, 0.28415796160697937, 0.19476762413978577, -0.02003762498497963, 0.9842284917831421, 0.14856843650341034, 0.06302504241466522, -0.04869190603494644, 0.28740569949150085, -0.20086759328842163, 0.03203383460640907, 0.9927372932434082, -0.18436531722545624, 0.05269463732838631, 0.014644723385572433]} +{"t": 1.4602, "q": [-0.3902498185634613, -0.004733183421194553, -0.00026783792418427765, 0.6247562766075134, -0.2737056016921997, 0.016552528366446495, -0.34693190455436707, -0.007507983595132828, 0.00044193255598656833, 0.6152626276016235, -0.3324296474456787, 0.013731221668422222, 0.0038702578749507666, 0.0019391027744859457, -0.04281532019376755, 0.2841459810733795, 0.19476762413978577, -0.02003762498497963, 0.9842165112495422, 0.14854447543621063, 0.06300107389688492, -0.04867992177605629, 0.2874176800251007, -0.20087958872318268, 0.03202185034751892, 0.9927252531051636, -0.18436531722545624, 0.0526467002928257, 0.01468067616224289]} +{"t": 1.477, "q": [-0.3902498185634613, -0.0047246613539755344, -0.00026783792418427765, 0.6247477531433105, -0.2737056016921997, 0.016552528366446495, -0.3469148874282837, -0.007507983595132828, 0.0004553244507405907, 0.6152967214584351, -0.33242976665496826, 0.013745754957199097, 0.00388364982791245, 0.0019467063248157501, -0.042810384184122086, 0.2841459810733795, 0.19477961957454681, -0.02003762498497963, 0.9842165112495422, 0.14848455786705017, 0.06301305443048477, -0.04869190603494644, 0.28738170862197876, -0.20086759328842163, 0.03199788182973862, 0.9927252531051636, -0.18437731266021729, 0.0526467002928257, 0.01462075486779213]} +{"t": 1.4937, "q": [-0.3902498185634613, -0.004733183421194553, -0.00026783792418427765, 0.6247733235359192, -0.2736930549144745, 0.016530925408005714, -0.34689784049987793, -0.007499461527913809, 0.00044193255598656833, 0.6152626276016235, -0.3324050307273865, 0.013730957172811031, 0.0038434739690274, 0.0019467063248157501, -0.042810384184122086, 0.28413400053977966, 0.19476762413978577, -0.02003762498497963, 0.9842165112495422, 0.14853249490261078, 0.06300107389688492, -0.04869190603494644, 0.287393718957901, -0.20087958872318268, 0.03205780312418938, 0.9927612543106079, -0.18448516726493835, 0.052670668810606, 0.014668691903352737]} +{"t": 1.5106, "q": [-0.3902412950992584, -0.0047246613539755344, -0.0002544460294302553, 0.6247648000717163, -0.27369722723960876, 0.016538120806217194, -0.3469148874282837, -0.007499461527913809, 0.00042854066123254597, 0.6152796745300293, -0.33242976665496826, 0.013745754957199097, 0.00388364982791245, 0.0019543098751455545, -0.04280545189976692, 0.28413400053977966, 0.19476762413978577, -0.02003762498497963, 0.9842165112495422, 0.14850851893424988, 0.06300107389688492, -0.048703890293836594, 0.2875494956970215, -0.20085561275482178, 0.032045818865299225, 0.9929050207138062, -0.1844971477985382, 0.05265868455171585, 0.014656707644462585]} +{"t": 1.5273, "q": [-0.39023280143737793, -0.0047246613539755344, -0.0002544460294302553, 0.6247307062149048, -0.2737056016921997, 0.016552528366446495, -0.3469148874282837, -0.007516505662351847, 0.00044193255598656833, 0.6152626276016235, -0.33242976665496826, 0.013745754957199097, 0.0038434739690274, 0.001961914822459221, -0.04281039908528328, 0.2841819226741791, 0.19479160010814667, -0.02003762498497963, 0.9842165112495422, 0.14853249490261078, 0.06300107389688492, -0.048715874552726746, 0.2876453697681427, -0.20081965625286102, 0.03205780312418938, 0.9930248856544495, -0.184401273727417, 0.052670668810606, 0.014692660421133041]} +{"t": 1.5441, "q": [-0.3902412950992584, -0.004741705488413572, -0.0002544460294302553, 0.6247392296791077, -0.27369722723960876, 0.01652369275689125, -0.34693190455436707, -0.007499461527913809, 0.00042854066123254597, 0.6152541041374207, -0.3324379622936249, 0.013745836913585663, 0.0038434739690274, 0.0019543056841939688, -0.042775802314281464, 0.284217894077301, 0.19477961957454681, -0.02003762498497963, 0.9842404723167419, 0.14844860136508942, 0.06301305443048477, -0.04867992177605629, 0.28760942816734314, -0.20079569518566132, 0.032045818865299225, 0.993060827255249, -0.18437731266021729, 0.0526467002928257, 0.014692660421133041]} +{"t": 1.561, "q": [-0.3902498185634613, -0.004707617219537497, -0.00026783792418427765, 0.6247477531433105, -0.27371397614479065, 0.016538064926862717, -0.3469489514827728, -0.00749093946069479, 0.00042854066123254597, 0.6152370572090149, -0.3324587941169739, 0.013782374560832977, 0.0037899063900113106, 0.0019314978271722794, -0.04281037300825119, 0.2841699421405792, 0.19476762413978577, -0.02003762498497963, 0.9842404723167419, 0.14849653840065002, 0.06302504241466522, -0.04869190603494644, 0.28758546710014343, -0.20081965625286102, 0.03205780312418938, 0.9930368661880493, -0.18438929319381714, 0.052682653069496155, 0.014668691903352737]} +{"t": 1.5777, "q": [-0.3902412950992584, -0.004707617219537497, -0.0002812298189383, 0.6247648000717163, -0.27371397614479065, 0.01655249111354351, -0.3469148874282837, -0.007482417393475771, 0.00042854066123254597, 0.6152881979942322, -0.3324587941169739, 0.013782374560832977, 0.0037229470908641815, 0.0019391027744859457, -0.04281532019376755, 0.28413400053977966, 0.1947556436061859, -0.02003762498497963, 0.9842404723167419, 0.14850851893424988, 0.06300107389688492, -0.04869190603494644, 0.28770530223846436, -0.20084363222122192, 0.032045818865299225, 0.9930488467216492, -0.18443723022937775, 0.052670668810606, 0.014656707644462585]} +{"t": 1.5944, "q": [-0.3902072310447693, -0.0047161392867565155, -0.00026783792418427765, 0.6247562766075134, -0.2737181484699249, 0.016545260325074196, -0.3469234108924866, -0.00749093946069479, 0.00044193255598656833, 0.6152967214584351, -0.33246269822120667, 0.013760615140199661, 0.0035354604478925467, 0.0019619192462414503, -0.04284004494547844, 0.2841699421405792, 0.1947556436061859, -0.020061593502759933, 0.9842404723167419, 0.14852049946784973, 0.06300107389688492, -0.04869190603494644, 0.2881247401237488, -0.20083165168762207, 0.03203383460640907, 0.9930728077888489, -0.18437731266021729, 0.052682653069496155, 0.014632739126682281]} +{"t": 1.6112, "q": [-0.39023280143737793, -0.004690572619438171, -0.0002812298189383, 0.6247562766075134, -0.2737223207950592, 0.01656688190996647, -0.34699156880378723, -0.00749093946069479, 0.0004553244507405907, 0.6152796745300293, -0.3324585258960724, 0.013753307983279228, 0.0032810145057737827, 0.001977126346901059, -0.042830176651477814, 0.2841819226741791, 0.19474366307258606, -0.020061593502759933, 0.9842404723167419, 0.14843662083148956, 0.06302504241466522, -0.04869190603494644, 0.2887718975543976, -0.20081965625286102, 0.03200986608862877, 0.993204653263092, -0.184401273727417, 0.052682653069496155, 0.014656707644462585]} +{"t": 1.6279, "q": [-0.39021575450897217, -0.0046735284850001335, -0.0002544460294302553, 0.6247477531433105, -0.27373069524765015, 0.016581272706389427, -0.34707680344581604, -0.007456851191818714, 0.000522283953614533, 0.6152967214584351, -0.33246269822120667, 0.013760615140199661, 0.0030801359098404646, 0.0019847298972308636, -0.04282524064183235, 0.28415796160697937, 0.19476762413978577, -0.02003762498497963, 0.9842404723167419, 0.14853249490261078, 0.06302504241466522, -0.04869190603494644, 0.28962278366088867, -0.20083165168762207, 0.03203383460640907, 0.9933724403381348, -0.18438929319381714, 0.05269463732838631, 0.014668691903352737]} +{"t": 1.6447, "q": [-0.39023280143737793, -0.0046735284850001335, -0.0002544460294302553, 0.6247477531433105, -0.273780882358551, 0.016667651012539864, -0.3471790552139282, -0.007456851191818714, 0.0005892434273846447, 0.6152967214584351, -0.33249956369400024, 0.013753717765212059, 0.0029194331727921963, 0.001977129140868783, -0.04284994304180145, 0.2841220200061798, 0.19479160010814667, -0.02003762498497963, 0.9842404723167419, 0.14852049946784973, 0.06301305443048477, -0.04869190603494644, 0.2903418242931366, -0.2010473608970642, 0.03196192905306816, 0.9937080144882202, -0.18438929319381714, 0.05269463732838631, 0.014704644680023193]} +{"t": 1.6614, "q": [-0.3902412950992584, -0.004647962283343077, -0.00026783792418427765, 0.6247392296791077, -0.273780882358551, 0.016667651012539864, -0.3471875786781311, -0.007405718322843313, 0.0005892434273846447, 0.6152711510658264, -0.3324955403804779, 0.013760942965745926, 0.002852473873645067, 0.001977129140868783, -0.04284994304180145, 0.28401416540145874, 0.19477961957454681, -0.02003762498497963, 0.9842404723167419, 0.14850851893424988, 0.06300107389688492, -0.04869190603494644, 0.2908092141151428, -0.20138292014598846, 0.031866054981946945, 0.9939836263656616, -0.184401273727417, 0.052670668810606, 0.01468067616224289]} +{"t": 1.6781, "q": [-0.39022427797317505, -0.00462239608168602, -0.0002946217136923224, 0.6247562766075134, -0.273780882358551, 0.016667651012539864, -0.3471790552139282, -0.007337541319429874, 0.0006160272168926895, 0.6152881979942322, -0.3324830234050751, 0.01373900193721056, 0.0028256899677217007, 0.0019315090030431747, -0.04288943484425545, 0.2840021550655365, 0.19476762413978577, -0.02003762498497963, 0.9842404723167419, 0.14846058189868927, 0.06301305443048477, -0.04869190603494644, 0.29109683632850647, -0.20177839696407318, 0.03178216516971588, 0.9942832589149475, -0.18438929319381714, 0.05271860584616661, 0.014704644680023193]} +{"t": 1.6951, "q": [-0.39023280143737793, -0.0045627411454916, -0.00033479739795438945, 0.6247648000717163, -0.27377668023109436, 0.016674883663654327, -0.347196102142334, -0.007303453050553799, 0.0005758515326306224, 0.6152881979942322, -0.3324706554412842, 0.01373161282390356, 0.0028122980147600174, 0.0018782891565933824, -0.042943742126226425, 0.2840021550655365, 0.19476762413978577, -0.02003762498497963, 0.9842165112495422, 0.14853249490261078, 0.06301305443048477, -0.04869190603494644, 0.2912166714668274, -0.2022697478532791, 0.03165033832192421, 0.9944869875907898, -0.184401273727417, 0.05269463732838631, 0.014692660421133041]} +{"t": 1.712, "q": [-0.39022427797317505, -0.004520130343735218, -0.0003883649769704789, 0.6247733235359192, -0.2737725079059601, 0.016667688265442848, -0.347196102142334, -0.007260842248797417, 0.0005624596378766, 0.6153052449226379, -0.3324665129184723, 0.013724304735660553, 0.002839081920683384, 0.0019163141259923577, -0.04296848177909851, 0.2839781939983368, 0.19471968710422516, -0.02003762498497963, 0.9842404723167419, 0.14848455786705017, 0.06301305443048477, -0.04869190603494644, 0.29125261306762695, -0.2027491182088852, 0.031494542956352234, 0.9944750070571899, -0.184401273727417, 0.052670668810606, 0.014656707644462585]} +{"t": 1.7287, "q": [-0.3902498185634613, -0.004468997940421104, -0.00042854066123254597, 0.6247562766075134, -0.2737683057785034, 0.016646048054099083, -0.34721314907073975, -0.007218231912702322, 0.0005356758483685553, 0.6152881979942322, -0.33248719573020935, 0.013746327720582485, 0.0029060414526611567, 0.0019163169199600816, -0.04298824444413185, 0.2840021550655365, 0.1947556436061859, -0.02003762498497963, 0.9842404723167419, 0.14848455786705017, 0.06302504241466522, -0.04869190603494644, 0.29104888439178467, -0.2030487209558487, 0.031494542956352234, 0.9944750070571899, -0.184401273727417, 0.05269463732838631, 0.014668691903352737]} +{"t": 1.7455, "q": [-0.39027538895606995, -0.00444343127310276, -0.0005088920588605106, 0.6247562766075134, -0.2737683057785034, 0.016646048054099083, -0.347196102142334, -0.007201187312602997, 0.0004553244507405907, 0.6152796745300293, -0.3325205147266388, 0.01380480732768774, 0.003240838646888733, 0.0019391430541872978, -0.04308214783668518, 0.2839781939983368, 0.1947556436061859, -0.02003762498497963, 0.9842404723167419, 0.14848455786705017, 0.06302504241466522, -0.048703890293836594, 0.29025793075561523, -0.2031685709953308, 0.031434621661901474, 0.9943791031837463, -0.18438929319381714, 0.05263471603393555, 0.01468067616224289]} +{"t": 1.7623, "q": [-0.3902839124202728, -0.00444343127310276, -0.0006026353221386671, 0.6247648000717163, -0.2737683057785034, 0.016646048054099083, -0.3471790552139282, -0.007192665245383978, 0.0004151487664785236, 0.6152967214584351, -0.3325490355491638, 0.013783293776214123, 0.003468500915914774, 0.0019771934021264315, -0.04328477382659912, 0.28394225239753723, 0.1947556436061859, -0.02003762498497963, 0.9842165112495422, 0.14852049946784973, 0.06301305443048477, -0.04869190603494644, 0.28961077332496643, -0.20318055152893066, 0.031446605920791626, 0.9943551421165466, -0.18438929319381714, 0.052670668810606, 0.014692660421133041]} +{"t": 1.7791, "q": [-0.3903009593486786, -0.004434909205883741, -0.0006562029011547565, 0.6247562766075134, -0.27377668023109436, 0.016660455614328384, -0.3471790552139282, -0.00717562111094594, 0.0003481892927084118, 0.6153052449226379, -0.3325732946395874, 0.013739921152591705, 0.0036425956059247255, 0.0020532726775854826, -0.04354178532958031, 0.28394225239753723, 0.19476762413978577, -0.020061593502759933, 0.9842404723167419, 0.14853249490261078, 0.06300107389688492, -0.04869190603494644, 0.2891194224357605, -0.20313261449337006, 0.031494542956352234, 0.9942952394485474, -0.18441325426101685, 0.052670668810606, 0.014632739126682281]} +{"t": 1.7958, "q": [-0.3903009593486786, -0.0044263871386647224, -0.0006428110064007342, 0.6247221827507019, -0.27377668023109436, 0.016660455614328384, -0.3471790552139282, -0.007184143178164959, 0.00036158118746243417, 0.6152711510658264, -0.33259350061416626, 0.01370377466082573, 0.003803298342972994, 0.0021217335015535355, -0.04371478408575058, 0.28396621346473694, 0.19471968710422516, -0.02003762498497963, 0.9842165112495422, 0.14849653840065002, 0.06301305443048477, -0.04869190603494644, 0.2887479364871979, -0.20310865342617035, 0.03151851147413254, 0.9942952394485474, -0.184401273727417, 0.052682653069496155, 0.014692660421133041]} +{"t": 1.8127, "q": [-0.3902924358844757, -0.0044178650714457035, -0.0006695947959087789, 0.6246966123580933, -0.27377668023109436, 0.016660455614328384, -0.3471790552139282, -0.007167099043726921, 0.00036158118746243417, 0.6152370572090149, -0.33261796832084656, 0.013689486309885979, 0.003923825453966856, 0.0021597612649202347, -0.043759286403656006, 0.2839302718639374, 0.19474366307258606, -0.02003762498497963, 0.9842404723167419, 0.14847256243228912, 0.06302504241466522, -0.04869190603494644, 0.2884722948074341, -0.20308467745780945, 0.03151851147413254, 0.9943192005157471, -0.18438929319381714, 0.05269463732838631, 0.014692660421133041]} +{"t": 1.8295, "q": [-0.39040324091911316, -0.0044178650714457035, -0.0006829866906628013, 0.6246625185012817, -0.27377668023109436, 0.016660455614328384, -0.347196102142334, -0.007167099043726921, 0.00026783792418427765, 0.6152029633522034, -0.3326260447502136, 0.01367503497749567, 0.004298798739910126, 0.0021293454337865114, -0.043769143521785736, 0.28401416540145874, 0.1947556436061859, -0.02003762498497963, 0.9842524528503418, 0.14850851893424988, 0.06300107389688492, -0.04869190603494644, 0.2880648076534271, -0.20310865342617035, 0.03151851147413254, 0.9943311810493469, -0.184401273727417, 0.052670668810606, 0.01468067616224289]} +{"t": 1.8462, "q": [-0.3904713988304138, -0.004434909205883741, -0.0007499461644329131, 0.6246284246444702, -0.2737683057785034, 0.016646048054099083, -0.3471790552139282, -0.007167099043726921, 0.0001740946463542059, 0.6151774525642395, -0.3326135575771332, 0.013653112575411797, 0.0045800283551216125, 0.0021293440368026495, -0.04375926032662392, 0.2841459810733795, 0.19477961957454681, -0.020025640726089478, 0.9842524528503418, 0.14853249490261078, 0.06303702294826508, -0.04867992177605629, 0.28745362162590027, -0.2031206339597702, 0.031506527215242386, 0.9942952394485474, -0.1844731718301773, 0.052682653069496155, 0.01468067616224289]} +{"t": 1.8631, "q": [-0.3905736804008484, -0.0044263871386647224, -0.0008035137434490025, 0.624645471572876, -0.2737599313259125, 0.01664608344435692, -0.3471875786781311, -0.007167099043726921, 9.374327055411413e-05, 0.6151348352432251, -0.33259716629981995, 0.013652930036187172, 0.004780906718224287, 0.002136947587132454, -0.04375432804226875, 0.28424185514450073, 0.19476762413978577, -0.02003762498497963, 0.9843363165855408, 0.14854447543621063, 0.06303702294826508, -0.04869190603494644, 0.2868184745311737, -0.20315659046173096, 0.03151851147413254, 0.994259238243103, -0.1844492107629776, 0.052670668810606, 0.01468067616224289]} +{"t": 1.8799, "q": [-0.39058220386505127, -0.0044178650714457035, -0.0008035137434490025, 0.624645471572876, -0.273743212223053, 0.01661730371415615, -0.3471875786781311, -0.00717562111094594, 4.017568790004589e-05, 0.6151007413864136, -0.3325192928314209, 0.013659419491887093, 0.004888041876256466, 0.002114134142175317, -0.0437493659555912, 0.28420591354370117, 0.1947316825389862, -0.02003762498497963, 0.9843602776527405, 0.14844860136508942, 0.06306099146604538, -0.04869190603494644, 0.2863271236419678, -0.20315659046173096, 0.03151851147413254, 0.994259238243103, -0.1844731718301773, 0.052682653069496155, 0.014692660421133041]} +{"t": 1.8966, "q": [-0.3905651569366455, -0.0044263871386647224, -0.0007901218486949801, 0.6246625185012817, -0.27371811866760254, 0.016574114561080933, -0.34711089730262756, -0.007167099043726921, 0.0, 0.6151348352432251, -0.3325026333332062, 0.013630189001560211, 0.005021960940212011, 0.0021065305918455124, -0.043754301965236664, 0.2841699421405792, 0.19471968710422516, -0.020061593502759933, 0.9843602776527405, 0.14853249490261078, 0.06302504241466522, -0.04869190603494644, 0.28590765595436096, -0.2031685709953308, 0.031494542956352234, 0.9942352771759033, -0.1844492107629776, 0.052682653069496155, 0.014692660421133041]} +{"t": 1.9134, "q": [-0.3905736804008484, -0.004409343004226685, -0.0007767299539409578, 0.6246539950370789, -0.27372652292251587, 0.016559649258852005, -0.34706827998161316, -0.007167099043726921, -2.6783791327034123e-05, 0.6151518821716309, -0.33242881298065186, 0.013629451394081116, 0.005035352893173695, 0.00209892843849957, -0.043769121170043945, 0.2840980291366577, 0.1947556436061859, -0.02003762498497963, 0.9843602776527405, 0.14852049946784973, 0.06302504241466522, -0.04869190603494644, 0.2855960726737976, -0.20315659046173096, 0.031506527215242386, 0.9941993355751038, -0.18443723022937775, 0.05269463732838631, 0.01468067616224289]} +{"t": 1.9303, "q": [-0.39053958654403687, -0.004409343004226685, -0.0007633380591869354, 0.624645471572876, -0.2737181484699249, 0.01655968651175499, -0.34703418612480164, -0.007167099043726921, -2.6783791327034123e-05, 0.6151518821716309, -0.3323107361793518, 0.013737300410866737, 0.005021960940212011, 0.0021141369361430407, -0.04376913234591484, 0.28406208753585815, 0.19476762413978577, -0.02003762498497963, 0.9843602776527405, 0.14847256243228912, 0.06302504241466522, -0.04867992177605629, 0.28533241152763367, -0.2031685709953308, 0.031494542956352234, 0.994175374507904, -0.18443723022937775, 0.052682653069496155, 0.014656707644462585]} +{"t": 1.947, "q": [-0.39053958654403687, -0.0044263871386647224, -0.0007499461644329131, 0.624645471572876, -0.2737223505973816, 0.016552455723285675, -0.3470512330532074, -0.007167099043726921, -4.017568790004589e-05, 0.6151518821716309, -0.3323065936565399, 0.013729993253946304, 0.004928217735141516, 0.002098927041515708, -0.043759237974882126, 0.2840021550655365, 0.19479160010814667, -0.02003762498497963, 0.9843722581863403, 0.14847256243228912, 0.06302504241466522, -0.04867992177605629, 0.2851526439189911, -0.2031685709953308, 0.031494542956352234, 0.994175374507904, -0.18443723022937775, 0.052670668810606, 0.014668691903352737]} +{"t": 1.9638, "q": [-0.39053958654403687, -0.0044178650714457035, -0.0007231623749248683, 0.6246369481086731, -0.2736930847167969, 0.016487643122673035, -0.3470597565174103, -0.007141532842069864, -5.3567582654068246e-05, 0.6151604056358337, -0.33217984437942505, 0.013779590837657452, 0.00483447453007102, 0.0021217376925051212, -0.04374443367123604, 0.2839781939983368, 0.19479160010814667, -0.020025640726089478, 0.9843602776527405, 0.14849653840065002, 0.06302504241466522, -0.048703890293836594, 0.2851286828517914, -0.2031685709953308, 0.031506527215242386, 0.9941993355751038, -0.1844252347946167, 0.05270662158727646, 0.014668691903352737]} +{"t": 1.9806, "q": [-0.3905225396156311, -0.004409343004226685, -0.0007231623749248683, 0.6245943903923035, -0.2736554741859436, 0.016408441588282585, -0.34706827998161316, -0.007141532842069864, -9.374327055411413e-05, 0.6152114868164062, -0.3321715295314789, 0.013764975592494011, 0.004780906718224287, 0.002114132745191455, -0.04373948276042938, 0.2839781939983368, 0.1947556436061859, -0.020025640726089478, 0.9843602776527405, 0.14847256243228912, 0.06302504241466522, -0.048703890293836594, 0.28514066338539124, -0.2031685709953308, 0.031494542956352234, 0.9942113161087036, -0.1844492107629776, 0.052682653069496155, 0.014644723385572433]} +{"t": 1.9973, "q": [-0.3905140161514282, -0.004392298869788647, -0.0007633380591869354, 0.6245773434638977, -0.27365967631340027, 0.01640120893716812, -0.34703418612480164, -0.007150054909288883, -0.00010713516530813649, 0.6152029633522034, -0.33217164874076843, 0.013779508881270885, 0.004713947419077158, 0.002114131348207593, -0.04372960329055786, 0.2839781939983368, 0.1947556436061859, -0.02003762498497963, 0.9843602776527405, 0.14847256243228912, 0.06303702294826508, -0.04867992177605629, 0.2851766347885132, -0.2031445950269699, 0.031506527215242386, 0.9942232966423035, -0.18441325426101685, 0.05265868455171585, 0.01468067616224289]} +{"t": 2.0142, "q": [-0.3905140161514282, -0.004400820937007666, -0.0007231623749248683, 0.6245602965354919, -0.2736847400665283, 0.016444379463791847, -0.3470427095890045, -0.007133010774850845, -0.00010713516530813649, 0.6152370572090149, -0.33217567205429077, 0.013772282749414444, 0.004660379607230425, 0.0020913193002343178, -0.04373452439904213, 0.28394225239753723, 0.1947556436061859, -0.020013656467199326, 0.9843602776527405, 0.14844860136508942, 0.06302504241466522, -0.04867992177605629, 0.2851526439189911, -0.20318055152893066, 0.03148255869746208, 0.9942472577095032, -0.1844252347946167, 0.052670668810606, 0.014668691903352737]} +{"t": 2.0309, "q": [-0.39049696922302246, -0.004400820937007666, -0.0007499461644329131, 0.6245091557502747, -0.2736973166465759, 0.016451556235551834, -0.3470427095890045, -0.007133010774850845, -9.374327055411413e-05, 0.6152114868164062, -0.3321879208087921, 0.013765139505267143, 0.004633595701307058, 0.002091317670419812, -0.04372464120388031, 0.28394225239753723, 0.19476762413978577, -0.02003762498497963, 0.9843602776527405, 0.14847256243228912, 0.06301305443048477, -0.04869190603494644, 0.28514066338539124, -0.20318055152893066, 0.03145859017968178, 0.9942352771759033, -0.18443723022937775, 0.052670668810606, 0.014632739126682281]} +{"t": 2.0476, "q": [-0.39049696922302246, -0.004392298869788647, -0.0007231623749248683, 0.6244750618934631, -0.2737014889717102, 0.016458751633763313, -0.3470427095890045, -0.007133010774850845, -0.00010713516530813649, 0.615228533744812, -0.33219173550605774, 0.013728846795856953, 0.004593420308083296, 0.0021065277978777885, -0.043734535574913025, 0.2839182913303375, 0.19476762413978577, -0.02003762498497963, 0.9843602776527405, 0.14848455786705017, 0.06300107389688492, -0.04869190603494644, 0.28514066338539124, -0.20318055152893066, 0.03145859017968178, 0.9942113161087036, -0.1844252347946167, 0.052670668810606, 0.014644723385572433]} +{"t": 2.0644, "q": [-0.39049696922302246, -0.0044178650714457035, -0.0007365542696788907, 0.6244409680366516, -0.2737014889717102, 0.01644432358443737, -0.3470427095890045, -0.007133010774850845, -0.0001473108568461612, 0.615228533744812, -0.3323342800140381, 0.013606691733002663, 0.004606812261044979, 0.002114131348207593, -0.04372960329055786, 0.28389430046081543, 0.19476762413978577, -0.020013656467199326, 0.9843602776527405, 0.14849653840065002, 0.06300107389688492, -0.04867992177605629, 0.28511670231819153, -0.20318055152893066, 0.031494542956352234, 0.9941993355751038, -0.18441325426101685, 0.052682653069496155, 0.014656707644462585]} +{"t": 2.0811, "q": [-0.39049696922302246, -0.004392298869788647, -0.0007499461644329131, 0.6244324445724487, -0.27370986342430115, 0.01645871438086033, -0.3470427095890045, -0.007133010774850845, -0.00016070275160018355, 0.615228533744812, -0.3323623239994049, 0.01352702733129263, 0.004660379607230425, 0.002098924247547984, -0.04373947158455849, 0.2839302718639374, 0.19476762413978577, -0.02003762498497963, 0.9843602776527405, 0.14847256243228912, 0.06298908591270447, -0.04869190603494644, 0.2851286828517914, -0.20320452749729156, 0.03145859017968178, 0.9941873550415039, -0.18443723022937775, 0.0526467002928257, 0.014644723385572433]} +{"t": 2.0979, "q": [-0.3904884457588196, -0.004383776802569628, -0.0007633380591869354, 0.6244409680366516, -0.2737014889717102, 0.01644432358443737, -0.3470512330532074, -0.007133010774850845, -0.00016070275160018355, 0.6152626276016235, -0.33235815167427063, 0.013519719243049622, 0.004646987654268742, 0.0021065277978777885, -0.043734535574913025, 0.28394225239753723, 0.1947556436061859, -0.02003762498497963, 0.9843602776527405, 0.14853249490261078, 0.06300107389688492, -0.048655953258275986, 0.2851286828517914, -0.20319253206253052, 0.03145859017968178, 0.9941993355751038, -0.18452110886573792, 0.05270662158727646, 0.014584802091121674]} +{"t": 2.1148, "q": [-0.3904799222946167, -0.004375254735350609, -0.0007767299539409578, 0.6244324445724487, -0.27370572090148926, 0.016437074169516563, -0.3470597565174103, -0.007124488707631826, -0.0001473108568461612, 0.6152881979942322, -0.3324165642261505, 0.013636595569550991, 0.004646987654268742, 0.002098925644531846, -0.043749354779720306, 0.2840021550655365, 0.1947556436061859, -0.02003762498497963, 0.9843842387199402, 0.14848455786705017, 0.06302504241466522, -0.04869190603494644, 0.2851286828517914, -0.20318055152893066, 0.03145859017968178, 0.9941873550415039, -0.18443723022937775, 0.05263471603393555, 0.01456083357334137]} +{"t": 2.1315, "q": [-0.3904884457588196, -0.004383776802569628, -0.0007633380591869354, 0.6244409680366516, -0.27370572090148926, 0.016437074169516563, -0.3470427095890045, -0.007124488707631826, -0.00016070275160018355, 0.6152967214584351, -0.3324330747127533, 0.013651292771100998, 0.004700555466115475, 0.002121739089488983, -0.04375431314110756, 0.2840261459350586, 0.19476762413978577, -0.02003762498497963, 0.9844081997871399, 0.14854447543621063, 0.06302504241466522, -0.04869190603494644, 0.28514066338539124, -0.20315659046173096, 0.03145859017968178, 0.9941873550415039, -0.18443723022937775, 0.052682653069496155, 0.01450091227889061]} +{"t": 2.1483, "q": [-0.3904713988304138, -0.004383776802569628, -0.0007633380591869354, 0.6244409680366516, -0.27369314432144165, 0.01642991602420807, -0.3470597565174103, -0.00711596617475152, -0.00016070275160018355, 0.6152967214584351, -0.3324328362941742, 0.013622226193547249, 0.004727339372038841, 0.0020837169140577316, -0.04374933987855911, 0.28428977727890015, 0.19479160010814667, -0.02003762498497963, 0.9844442009925842, 0.14853249490261078, 0.06304901093244553, -0.04867992177605629, 0.2851286828517914, -0.2031685709953308, 0.031494542956352234, 0.9941993355751038, -0.18446119129657745, 0.05269463732838631, 0.01456083357334137]} +{"t": 2.165, "q": [-0.39049696922302246, -0.004375254735350609, -0.0007499461644329131, 0.6244409680366516, -0.27370569109916687, 0.01645151898264885, -0.34707680344581604, -0.007133010774850845, -0.0001473108568461612, 0.6153052449226379, -0.33243700861930847, 0.013629533350467682, 0.004874649923294783, 0.002098924247547984, -0.04373947158455849, 0.284673273563385, 0.19482755661010742, -0.02003762498497963, 0.9846239686012268, 0.14856843650341034, 0.06310892850160599, -0.04869190603494644, 0.28516465425491333, -0.20319253206253052, 0.031494542956352234, 0.994175374507904, -0.18446119129657745, 0.05265868455171585, 0.014524880796670914]} +{"t": 2.1817, "q": [-0.3905225396156311, -0.004392298869788647, -0.0007365542696788907, 0.6244409680366516, -0.2737433612346649, 0.016487421467900276, -0.34706827998161316, -0.007133010774850845, -0.00012052706006215885, 0.6152626276016235, -0.3325272500514984, 0.013630433939397335, 0.005008568987250328, 0.002083712723106146, -0.04371969401836395, 0.28526049852371216, 0.19482755661010742, -0.02003762498497963, 0.9849714636802673, 0.14854447543621063, 0.0632048025727272, -0.04869190603494644, 0.28516465425491333, -0.20330040156841278, 0.031434621661901474, 0.9941514134407043, -0.1844971477985382, 0.052670668810606, 0.014548849314451218]} +{"t": 2.1986, "q": [-0.3905566334724426, -0.004409343004226685, -0.0007499461644329131, 0.6244580149650574, -0.27374333143234253, 0.01650184951722622, -0.34707680344581604, -0.007167099043726921, -0.00016070275160018355, 0.6152370572090149, -0.33262473344802856, 0.013515113852918148, 0.0051424880512058735, 0.0020456921774894, -0.043724603950977325, 0.2857278883457184, 0.19479160010814667, -0.02003762498497963, 0.9851392507553101, 0.14855645596981049, 0.06319282203912735, -0.04869190603494644, 0.28503280878067017, -0.2034202367067337, 0.03142263740301132, 0.9941514134407043, -0.1844971477985382, 0.052682653069496155, 0.014464959502220154]} +{"t": 2.2156, "q": [-0.3905566334724426, -0.004400820937007666, -0.0007767299539409578, 0.6244665384292603, -0.27375590801239014, 0.016509007662534714, -0.34706827998161316, -0.007184143178164959, -0.0001473108568461612, 0.6152541041374207, -0.3326287567615509, 0.013507888652384281, 0.005343366414308548, 0.002022884087637067, -0.04375917464494705, 0.2859915494918823, 0.1947556436061859, -0.020061593502759933, 0.9852950572967529, 0.14850851893424988, 0.06322877109050751, -0.048715874552726746, 0.28484106063842773, -0.20357602834701538, 0.03136271610856056, 0.9940195679664612, -0.1844971477985382, 0.0526467002928257, 0.014429006725549698]} +{"t": 2.2325, "q": [-0.3905736804008484, -0.004409343004226685, -0.0007767299539409578, 0.624483585357666, -0.2737642526626587, 0.016523396596312523, -0.34707680344581604, -0.007192665245383978, -0.0001473108568461612, 0.6152370572090149, -0.33263686299324036, 0.013493436388671398, 0.005678163841366768, 0.001825189683586359, -0.043887488543987274, 0.28608742356300354, 0.19459985196590424, -0.020085562020540237, 0.9855227470397949, 0.14850851893424988, 0.06321679055690765, -0.0487278588116169, 0.2843736708164215, -0.20400746166706085, 0.03133874759078026, 0.993887722492218, -0.18454508483409882, 0.052682653069496155, 0.014405039139091969]} +{"t": 2.2492, "q": [-0.39058220386505127, -0.004409343004226685, -0.0008302975329570472, 0.624483585357666, -0.2737642526626587, 0.016537824645638466, -0.34707680344581604, -0.007192665245383978, -0.00020087843586225063, 0.6152626276016235, -0.3326656222343445, 0.013500990346074104, 0.005892434157431126, 0.0015666225226595998, -0.0440555214881897, 0.2859675884246826, 0.19449199736118317, -0.020061593502759933, 0.9855586886405945, 0.14853249490261078, 0.0632048025727272, -0.048763811588287354, 0.28389430046081543, -0.20465461909770966, 0.0313027948141098, 0.9937798976898193, -0.18455706536769867, 0.052670668810606, 0.014369086362421513]} +{"t": 2.266, "q": [-0.3905736804008484, -0.004400820937007666, -0.001004392164759338, 0.624483585357666, -0.27376842498779297, 0.016530591994524002, -0.3470427095890045, -0.007184143178164959, -0.0002812298189383, 0.6152541041374207, -0.3326733410358429, 0.01344292052090168, 0.0059995693154633045, 0.0012548180529847741, -0.044287823140621185, 0.28556013107299805, 0.19458787143230438, -0.02003762498497963, 0.9855227470397949, 0.14848455786705017, 0.06313289701938629, -0.048775795847177505, 0.28336700797080994, -0.20568525791168213, 0.031266842037439346, 0.993576169013977, -0.18455706536769867, 0.0526467002928257, 0.014405039139091969]} +{"t": 2.2828, "q": [-0.39058220386505127, -0.004392298869788647, -0.001084743533283472, 0.624483585357666, -0.2737767994403839, 0.016545001417398453, -0.34702566266059875, -0.007167099043726921, -0.0004151487664785236, 0.6152455806732178, -0.3326812982559204, 0.013413935899734497, 0.006039745174348354, 0.000973435933701694, -0.04457946866750717, 0.28486502170562744, 0.19479160010814667, -0.01991778239607811, 0.985438883304596, 0.14853249490261078, 0.06295313686132431, -0.04878778010606766, 0.28288763761520386, -0.2070874124765396, 0.031254857778549194, 0.9933364987373352, -0.18460500240325928, 0.05269463732838631, 0.01441702339798212]} +{"t": 2.2996, "q": [-0.3905736804008484, -0.004332643933594227, -0.0011383111122995615, 0.6244665384292603, -0.2737642526626587, 0.016537824645638466, -0.3470171391963959, -0.007150054909288883, -0.00040175687172450125, 0.615228533744812, -0.3326934278011322, 0.01339224074035883, 0.005879042204469442, 0.000920201011467725, -0.044831641018390656, 0.2839781939983368, 0.19499532878398895, -0.019702065736055374, 0.9852950572967529, 0.14854447543621063, 0.0628812313079834, -0.04878778010606766, 0.2824801802635193, -0.2091606855392456, 0.03111104853451252, 0.9932405948638916, -0.1847248524427414, 0.05270662158727646, 0.01435710210353136]} +{"t": 2.3165, "q": [-0.3905651569366455, -0.004315599799156189, -0.0011249192757532, 0.6244665384292603, -0.27376842498779297, 0.016530591994524002, -0.3470512330532074, -0.00711596617475152, -0.00037497308221645653, 0.615228533744812, -0.33270174264907837, 0.01340685598552227, 0.005637987982481718, 0.0007985259871929884, -0.0450887605547905, 0.283247172832489, 0.19513913989067078, -0.01943841390311718, 0.9852950572967529, 0.14853249490261078, 0.0628812313079834, -0.04878778010606766, 0.28228843212127686, -0.2115575224161148, 0.03111104853451252, 0.9930967688560486, -0.1848207265138626, 0.052670668810606, 0.014369086362421513]} +{"t": 2.3332, "q": [-0.39054811000823975, -0.004281511064618826, -0.001084743533283472, 0.6244580149650574, -0.2737810015678406, 0.01653776876628399, -0.3470427095890045, -0.007098922040313482, -0.0003481892927084118, 0.6152200102806091, -0.3327099680900574, 0.013406937941908836, 0.0053701503202319145, 0.0006996779702603817, -0.04528167098760605, 0.2827797830104828, 0.19522303342819214, -0.019306587055325508, 0.9853190183639526, 0.14848455786705017, 0.06294114887714386, -0.0487518273293972, 0.28226447105407715, -0.21401429176330566, 0.031003190204501152, 0.9930009245872498, -0.18486866354942322, 0.05269463732838631, 0.014369086362421513]} +{"t": 2.35, "q": [-0.39054811000823975, -0.004281511064618826, -0.0010713516967371106, 0.6244580149650574, -0.2737893760204315, 0.016537731513381004, -0.34706827998161316, -0.007107444107532501, -0.0003214055032003671, 0.6151689291000366, -0.3327099680900574, 0.013406937941908836, 0.005196055397391319, 0.0005171593511477113, -0.04539038613438606, 0.2826719284057617, 0.19529493153095245, -0.019210712984204292, 0.9853429794311523, 0.14847256243228912, 0.06307297945022583, -0.048763811588287354, 0.2823243737220764, -0.21606360375881195, 0.030967237427830696, 0.9929410219192505, -0.18486866354942322, 0.052682653069496155, 0.014381070621311665]} +{"t": 2.3667, "q": [-0.39058220386505127, -0.004290033131837845, -0.001044567907229066, 0.6244665384292603, -0.27378517389297485, 0.016544964164495468, -0.34706827998161316, -0.007098922040313482, -0.00030801360844634473, 0.6151689291000366, -0.33269378542900085, 0.01343585830181837, 0.00512909609824419, 0.00042588659562170506, -0.04535072296857834, 0.28271985054016113, 0.19545072317123413, -0.019090870395302773, 0.9853549599647522, 0.14852049946784973, 0.06306099146604538, -0.04873984307050705, 0.2823723256587982, -0.21723805367946625, 0.030943268910050392, 0.9929410219192505, -0.1849525421857834, 0.05269463732838631, 0.01435710210353136]} +{"t": 2.3834, "q": [-0.39059925079345703, -0.004298555664718151, -0.001004392164759338, 0.6244494915008545, -0.27377262711524963, 0.016523361206054688, -0.3470512330532074, -0.007098922040313482, -0.00030801360844634473, 0.6151177883148193, -0.33264029026031494, 0.013413508422672749, 0.005236231256276369, 0.0002661745238583535, -0.04534567892551422, 0.2826719284057617, 0.1956544667482376, -0.018971027806401253, 0.9853429794311523, 0.14853249490261078, 0.06297710537910461, -0.04869190603494644, 0.28242024779319763, -0.21808892488479614, 0.030967237427830696, 0.9929649829864502, -0.18498849868774414, 0.05269463732838631, 0.014285196550190449]} +{"t": 2.4001, "q": [-0.3906674087047577, -0.004290033131837845, -0.0009910003282129765, 0.6244580149650574, -0.27380189299583435, 0.016573743894696236, -0.3470512330532074, -0.00711596617475152, -0.0002946217136923224, 0.6150581240653992, -0.33264443278312683, 0.013420815579593182, 0.005289798602461815, 5.3234907682053745e-05, -0.04544449970126152, 0.2824322283267975, 0.1959300935268402, -0.018923090770840645, 0.9852591156959534, 0.14853249490261078, 0.06284527480602264, -0.048715874552726746, 0.28246819972991943, -0.21887989342212677, 0.031027158722281456, 0.9929410219192505, -0.18510834872722626, 0.05271860584616661, 0.0142971808090806]} +{"t": 2.4171, "q": [-0.39069297909736633, -0.004324121866375208, -0.0009374326909892261, 0.6244665384292603, -0.2737935483455658, 0.016559354960918427, -0.3470597565174103, -0.007124488707631826, -0.0002812298189383, 0.6150240302085876, -0.3326278030872345, 0.0133915850892663, 0.005222839303314686, -0.0001749334332998842, -0.04560293257236481, 0.2820487320423126, 0.196205735206604, -0.018875155597925186, 0.9851512312889099, 0.14854447543621063, 0.06277336925268173, -0.04869190603494644, 0.28242024779319763, -0.22043783962726593, 0.030967237427830696, 0.9929050207138062, -0.18519222736358643, 0.05271860584616661, 0.014165353961288929]} +{"t": 2.434, "q": [-0.39069297909736633, -0.004315599799156189, -0.0008704732172191143, 0.6244580149650574, -0.27378517389297485, 0.016544964164495468, -0.3470512330532074, -0.00711596617475152, -0.0002410541201243177, 0.6150069832801819, -0.3326320946216583, 0.013413426466286182, 0.005196055397391319, -0.00036509911296889186, -0.04582574591040611, 0.2815094590187073, 0.19658923149108887, -0.018755313009023666, 0.9850553870201111, 0.14850851893424988, 0.06271345168352127, -0.04866793751716614, 0.28236034512519836, -0.22189991176128387, 0.030835412442684174, 0.9925814867019653, -0.18520422279834747, 0.05269463732838631, 0.014069480821490288]} +{"t": 2.4508, "q": [-0.39065036177635193, -0.004315599799156189, -0.0008570813224650919, 0.6244665384292603, -0.27379775047302246, 0.016552122309803963, -0.34703418612480164, -0.007124488707631826, -0.00021427033061627299, 0.6150155067443848, -0.33260318636894226, 0.013391339220106602, 0.005062136333435774, -0.0006313189514912665, -0.04606853425502777, 0.2809102535247803, 0.19687685370445251, -0.018671423196792603, 0.9850553870201111, 0.14852049946784973, 0.06279733777046204, -0.04869190603494644, 0.2821086645126343, -0.22309833765029907, 0.03069160133600235, 0.9924376606941223, -0.18528810143470764, 0.052682653069496155, 0.013925669714808464]} +{"t": 2.4675, "q": [-0.39064183831214905, -0.004324121866375208, -0.0008436894277110696, 0.6244665384292603, -0.27378520369529724, 0.016530536115169525, -0.3470171391963959, -0.007107444107532501, -0.0002410541201243177, 0.6150069832801819, -0.3326238691806793, 0.013413344509899616, 0.005021960940212011, -0.0009431764483451843, -0.04634104669094086, 0.28037095069885254, 0.19693677127361298, -0.01859951764345169, 0.9850673675537109, 0.14853249490261078, 0.0628812313079834, -0.04869190603494644, 0.2818809747695923, -0.22400914132595062, 0.03069160133600235, 0.9921260476112366, -0.1853000968694687, 0.05241899937391281, 0.013745906762778759]} +{"t": 2.4844, "q": [-0.3906588852405548, -0.004315599799156189, -0.0008704732172191143, 0.6244665384292603, -0.2737768292427063, 0.016516128554940224, -0.347008615732193, -0.00711596617475152, -0.0002410541201243177, 0.6150069832801819, -0.3326156735420227, 0.013413280248641968, 0.005008568987250328, -0.0012322127586230636, -0.04659869521856308, 0.28014326095581055, 0.19702066481113434, -0.018431738018989563, 0.9851033091545105, 0.14846058189868927, 0.06296511739492416, -0.04869190603494644, 0.2814974784851074, -0.22460834681987762, 0.030715569853782654, 0.9916946291923523, -0.1853000968694687, 0.052143365144729614, 0.013638048432767391]} +{"t": 2.5011, "q": [-0.39064183831214905, -0.004315599799156189, -0.000897257006727159, 0.6244665384292603, -0.2737768292427063, 0.01650170050561428, -0.34699156880378723, -0.007098922040313482, -0.0002812298189383, 0.6150069832801819, -0.33261555433273315, 0.013398729264736176, 0.00508892023935914, -0.0015060388250276446, -0.04680679738521576, 0.2801312506198883, 0.1973322480916977, -0.01828792691230774, 0.9851632118225098, 0.14848455786705017, 0.06308495998382568, -0.048643968999385834, 0.2811978757381439, -0.22514763474464417, 0.030607711523771286, 0.9913950562477112, -0.18528810143470764, 0.05192764848470688, 0.013590111397206783]} +{"t": 2.5179, "q": [-0.39065036177635193, -0.004298555664718151, -0.0009508245857432485, 0.6244750618934631, -0.27376848459243774, 0.016487309709191322, -0.3469659984111786, -0.007107444107532501, -0.0003481892927084118, 0.614998459815979, -0.33262374997138977, 0.013398811221122742, 0.005343366414308548, -0.0015668891137465835, -0.04688607528805733, 0.2802031636238098, 0.19766780734062195, -0.01806022785604, 0.9851751923561096, 0.14854447543621063, 0.06310892850160599, -0.04860801622271538, 0.28113794326782227, -0.22554311156272888, 0.03051183745265007, 0.9911792874336243, -0.18528810143470764, 0.05171193182468414, 0.013518205843865871]} +{"t": 2.5348, "q": [-0.39064183831214905, -0.00430707773193717, -0.0009374326909892261, 0.6244580149650574, -0.2737559378147125, 0.016480151563882828, -0.3469659984111786, -0.007107444107532501, -0.00037497308221645653, 0.615066647529602, -0.33261555433273315, 0.013398729264736176, 0.005678163841366768, -0.0015288576250895858, -0.04695048928260803, 0.2802870571613312, 0.19824305176734924, -0.018012290820479393, 0.9851751923561096, 0.14853249490261078, 0.0631568655371666, -0.048584047704935074, 0.28108999133110046, -0.226034477353096, 0.030415963381528854, 0.9910235404968262, -0.18526414036750793, 0.051472246646881104, 0.013458284549415112]} +{"t": 2.5515, "q": [-0.39058220386505127, -0.004298555664718151, -0.0009508245857432485, 0.6244580149650574, -0.27373918890953064, 0.01646578125655651, -0.3469489514827728, -0.00711596617475152, -0.00037497308221645653, 0.6151263117790222, -0.3326115012168884, 0.013405973091721535, 0.00575851509347558, -0.0014756161253899336, -0.04700499027967453, 0.28023913502693176, 0.1989021897315979, -0.01794038526713848, 0.9851751923561096, 0.14843662083148956, 0.06314488500356674, -0.04854809492826462, 0.2811020016670227, -0.22639399766921997, 0.03039199486374855, 0.990807831287384, -0.18524016439914703, 0.051124703139066696, 0.01342233270406723]} +{"t": 2.5683, "q": [-0.3905736804008484, -0.004281511064618826, -0.0009776083752512932, 0.6244665384292603, -0.2737559378147125, 0.016465725377202034, -0.3469574749469757, -0.007107444107532501, -0.00040175687172450125, 0.615143358707428, -0.33260318636894226, 0.013391339220106602, 0.0055442447774112225, -0.00139955326449126, -0.04715348407626152, 0.2801792025566101, 0.19968116283416748, -0.017856495454907417, 0.9851392507553101, 0.1483766883611679, 0.06309694796800613, -0.048536110669374466, 0.2811858654022217, -0.22652582824230194, 0.030523821711540222, 0.9906879663467407, -0.18528810143470764, 0.05060938373208046, 0.013434316031634808]} +{"t": 2.5851, "q": [-0.39049696922302246, -0.004221856594085693, -0.001004392164759338, 0.6244324445724487, -0.2737768292427063, 0.01650170050561428, -0.34699156880378723, -0.00703926756978035, -0.00037497308221645653, 0.6151518821716309, -0.33264005184173584, 0.013384441845119, 0.0053701503202319145, -0.0014147635083645582, -0.047391053289175034, 0.28009530901908875, 0.20052005350589752, -0.017736652866005898, 0.9851392507553101, 0.14834074676036835, 0.06308495998382568, -0.048536110669374466, 0.28122183680534363, -0.22640597820281982, 0.030643664300441742, 0.9903523921966553, -0.1853240579366684, 0.05008207634091377, 0.013482253067195415]} +{"t": 2.6018, "q": [-0.3905140161514282, -0.004059936385601759, -0.0010177841177210212, 0.6244324445724487, -0.2737768292427063, 0.01650170050561428, -0.3470000922679901, -0.006902913562953472, -0.00037497308221645653, 0.6151689291000366, -0.3326773941516876, 0.013435694389045238, 0.005008568987250328, -0.0015517289284616709, -0.04788655415177345, 0.27996349334716797, 0.20115521550178528, -0.017676731571555138, 0.9851033091545105, 0.1483287513256073, 0.06301305443048477, -0.04854809492826462, 0.2810300886631012, -0.22616629302501678, 0.030727554112672806, 0.9892618656158447, -0.185371994972229, 0.0493510402739048, 0.013458284549415112]} +{"t": 2.6185, "q": [-0.39049696922302246, -0.0039321044459939, -0.0010311759542673826, 0.6244409680366516, -0.2738396227359772, 0.01655193604528904, -0.34699156880378723, -0.006792126223444939, -0.00037497308221645653, 0.615143358707428, -0.3327016234397888, 0.013392322696745396, 0.005021960940212011, -0.0016811421373859048, -0.0486944355070591, 0.27949610352516174, 0.20161062479019165, -0.01768871583044529, 0.9850673675537109, 0.14831677079200745, 0.06289321184158325, -0.04857206344604492, 0.2806346118450165, -0.22585470974445343, 0.030715569853782654, 0.9882671236991882, -0.18536001443862915, 0.04818857088685036, 0.01350622158497572]} +{"t": 2.6355, "q": [-0.3904799222946167, -0.0039065382443368435, -0.0010177841177210212, 0.6244409680366516, -0.2738396227359772, 0.01655193604528904, -0.3469574749469757, -0.0067665595561265945, -0.00037497308221645653, 0.6151177883148193, -0.33272600173950195, 0.013363483361899853, 0.004995177034288645, -0.0018257861956954002, -0.04968075826764107, 0.27889689803123474, 0.201922208070755, -0.01768871583044529, 0.9849475026130676, 0.14836470782756805, 0.06277336925268173, -0.048596031963825226, 0.28053873777389526, -0.2255910485982895, 0.030727554112672806, 0.9874042868614197, -0.1853240579366684, 0.046726495027542114, 0.013542174361646175]} +{"t": 2.6522, "q": [-0.39045435190200806, -0.0039065382443368435, -0.001044567907229066, 0.6244409680366516, -0.2738396227359772, 0.01655193604528904, -0.3469234108924866, -0.0067665595561265945, -0.00037497308221645653, 0.6151518821716309, -0.33279910683631897, 0.013277001678943634, 0.004995177034288645, -0.0017649981891736388, -0.05086151883006096, 0.27829769253730774, 0.2021738737821579, -0.017736652866005898, 0.9845999479293823, 0.1482808142900467, 0.0625816211104393, -0.04857206344604492, 0.28023913502693176, -0.2254592329263687, 0.030739538371562958, 0.986553430557251, -0.1853240579366684, 0.044737111777067184, 0.01362606417387724]} +{"t": 2.6689, "q": [-0.39046287536621094, -0.003915060311555862, -0.001004392164759338, 0.6244409680366516, -0.27387312054634094, 0.01655178889632225, -0.3469234108924866, -0.0067665595561265945, -0.00033479739795438945, 0.6151263117790222, -0.3327949345111847, 0.013269694522023201, 0.004995177034288645, -0.001886874670162797, -0.052241284400224686, 0.277530699968338, 0.20236562192440033, -0.017796574160456657, 0.983940839767456, 0.14838868379592896, 0.06216217577457428, -0.04857206344604492, 0.2798076868057251, -0.2254112958908081, 0.030715569853782654, 0.9854868054389954, -0.1853480339050293, 0.0430113859474659, 0.013650032691657543]} +{"t": 2.6857, "q": [-0.39045435190200806, -0.0038894941098988056, -0.0009910003282129765, 0.6244068741798401, -0.2738814949989319, 0.016551751643419266, -0.34693190455436707, -0.006783603690564632, -0.00026783792418427765, 0.615066647529602, -0.33280304074287415, 0.0132552245631814, 0.004928217735141516, -0.0018565537175163627, -0.0538511648774147, 0.2767157554626465, 0.20250943303108215, -0.01782054267823696, 0.9837610721588135, 0.14848455786705017, 0.06205431744456291, -0.04857206344604492, 0.2791605293750763, -0.22556708753108978, 0.030715569853782654, 0.9841805100440979, -0.1853240579366684, 0.04182494431734085, 0.013674001209437847]} +{"t": 2.7024, "q": [-0.3904713988304138, -0.0039065382443368435, -0.0009910003282129765, 0.6243813037872314, -0.2739485204219818, 0.01656588353216648, -0.34693190455436707, -0.006783603690564632, -0.0002544460294302553, 0.6150581240653992, -0.3329091966152191, 0.01319813821464777, 0.004928217735141516, -0.0020241185557097197, -0.05556051805615425, 0.2764641046524048, 0.20276111364364624, -0.017856495454907417, 0.9838330149650574, 0.14848455786705017, 0.06211423873901367, -0.04850015789270401, 0.278129905462265, -0.22574685513973236, 0.03069160133600235, 0.9831379055976868, -0.1853240579366684, 0.04086620733141899, 0.013685985468327999]} +{"t": 2.7192, "q": [-0.3904458284378052, -0.0038894941098988056, -0.0009910003282129765, 0.6243898272514343, -0.2739943265914917, 0.016601761803030968, -0.3469234108924866, -0.006800648290663958, -0.00021427033061627299, 0.6150496006011963, -0.33294618129730225, 0.013205790892243385, 0.004874649923294783, -0.0021459870040416718, -0.05711325258016586, 0.2764880657196045, 0.2033483386039734, -0.01786847971379757, 0.9839048981666565, 0.14853249490261078, 0.062186144292354584, -0.048524126410484314, 0.27714720368385315, -0.22577081620693207, 0.03069160133600235, 0.9822510480880737, -0.18531207740306854, 0.040231045335531235, 0.013685985468327999]} +{"t": 2.7363, "q": [-0.3904202878475189, -0.0038894941098988056, -0.0009910003282129765, 0.6243983507156372, -0.2740151882171631, 0.016594450920820236, -0.3469148874282837, -0.006792126223444939, -0.00021427033061627299, 0.6150325536727905, -0.33298277854919434, 0.013169808313250542, 0.00483447453007102, -0.0022602342069149017, -0.058253105729818344, 0.27652400732040405, 0.20350413024425507, -0.018024275079369545, 0.9839288592338562, 0.14853249490261078, 0.062186144292354584, -0.04856007918715477, 0.27620044350624084, -0.22574685513973236, 0.030715569853782654, 0.9818076491355896, -0.1853000968694687, 0.03982358053326607, 0.013685985468327999]} +{"t": 2.7531, "q": [-0.39041176438331604, -0.0038980161771178246, -0.0010311759542673826, 0.6244068741798401, -0.27404019236564636, 0.016565481200814247, -0.3469234108924866, -0.006800648290663958, -0.00018748654110822827, 0.6150240302085876, -0.33303532004356384, 0.01307583786547184, 0.004780906718224287, -0.002473390894010663, -0.05901065468788147, 0.2765120267868042, 0.20348015427589417, -0.01812014915049076, 0.9840127229690552, 0.14853249490261078, 0.06217416003346443, -0.04854809492826462, 0.27518177032470703, -0.22574685513973236, 0.030679617077112198, 0.9816758036613464, -0.18531207740306854, 0.03953595831990242, 0.013721938244998455]} +{"t": 2.7699, "q": [-0.3903776705265045, -0.0038894941098988056, -0.0010579597437754273, 0.6244068741798401, -0.27409014105796814, 0.016550807282328606, -0.34694042801856995, -0.0067665595561265945, -0.00018748654110822827, 0.6150581240653992, -0.3330271244049072, 0.013075755909085274, 0.004633595701307058, -0.0026408585254102945, -0.059479594230651855, 0.2764880657196045, 0.20354008674621582, -0.018084196373820305, 0.9839767813682556, 0.14853249490261078, 0.06217416003346443, -0.048536110669374466, 0.2741631269454956, -0.2259386032819748, 0.030667632818222046, 0.9816159009933472, -0.1853240579366684, 0.039380162954330444, 0.013685985468327999]} +{"t": 2.7866, "q": [-0.3903776705265045, -0.0038554053753614426, -0.0011517030652612448, 0.6243898272514343, -0.27410265803337097, 0.016543535515666008, -0.3470000922679901, -0.0067665595561265945, -0.00018748654110822827, 0.6150836944580078, -0.33306801319122314, 0.013061650097370148, 0.004539852496236563, -0.0026789407711476088, -0.0599234476685524, 0.27640417218208313, 0.20389960706233978, -0.018096180632710457, 0.9839528203010559, 0.14855645596981049, 0.06216217577457428, -0.048536110669374466, 0.27330026030540466, -0.22611835598945618, 0.030655648559331894, 0.9815799593925476, -0.18531207740306854, 0.039260320365428925, 0.013721938244998455]} +{"t": 2.8034, "q": [-0.39040324091911316, -0.003812795039266348, -0.0012186624808236957, 0.624415397644043, -0.27412348985671997, 0.016521798446774483, -0.3470171391963959, -0.0067239492200315, -0.0001740946463542059, 0.6150581240653992, -0.3331131935119629, 0.01306934840977192, 0.004539852496236563, -0.0025724254082888365, -0.06038173288106918, 0.2763082981109619, 0.20442691445350647, -0.01800030656158924, 0.9838809370994568, 0.1486283540725708, 0.062126222997903824, -0.04854809492826462, 0.27272501587867737, -0.22616629302501678, 0.03069160133600235, 0.981544017791748, -0.1853000968694687, 0.03917643055319786, 0.013721938244998455]} +{"t": 2.8201, "q": [-0.3904202878475189, -0.0038042727392166853, -0.001232054433785379, 0.624415397644043, -0.27412348985671997, 0.016521798446774483, -0.3470853269100189, -0.006740993354469538, -0.00012052706006215885, 0.615066647529602, -0.33317846059799194, 0.01302640326321125, 0.004472893197089434, -0.002405053935945034, -0.06115863472223282, 0.2761644721031189, 0.20500215888023376, -0.018036259338259697, 0.9837730526924133, 0.1486283540725708, 0.06203034892678261, -0.04851214215159416, 0.2725692093372345, -0.22616629302501678, 0.030667632818222046, 0.981544017791748, -0.18525215983390808, 0.03910452872514725, 0.013829795643687248]} +{"t": 2.8368, "q": [-0.3903947174549103, -0.0038042727392166853, -0.0012454462703317404, 0.6244068741798401, -0.2741568088531494, 0.016521645709872246, -0.3470853269100189, -0.006740993354469538, -9.374327055411413e-05, 0.6150496006011963, -0.33322328329086304, 0.012990502640604973, 0.004419325385242701, -0.0021996169816702604, -0.06198127567768097, 0.276044636964798, 0.20539763569831848, -0.01806022785604, 0.9837490916252136, 0.14855645596981049, 0.06203034892678261, -0.04851214215159416, 0.2725452482700348, -0.22609439492225647, 0.030715569853782654, 0.9815559983253479, -0.18521620333194733, 0.039020638912916183, 0.013865748420357704]} +{"t": 2.8536, "q": [-0.39041176438331604, -0.003778706304728985, -0.001232054433785379, 0.6243557333946228, -0.27421504259109497, 0.016550233587622643, -0.3472216725349426, -0.006706904619932175, -1.3391895663517062e-05, 0.6150496006011963, -0.33328011631965637, 0.012918391264975071, 0.004312190227210522, -0.0022986314725130796, -0.06311435997486115, 0.2760566174983978, 0.20563732087612152, -0.01800030656158924, 0.983797013759613, 0.14854447543621063, 0.06205431744456291, -0.048524126410484314, 0.2725452482700348, -0.2259865403175354, 0.030715569853782654, 0.9815679788589478, -0.18519222736358643, 0.03898468613624573, 0.013925669714808464]} +{"t": 2.8703, "q": [-0.3904713988304138, -0.003744618035852909, -0.0012454462703317404, 0.6243557333946228, -0.27429839968681335, 0.01647769659757614, -0.3472728133201599, -0.006638728082180023, 4.017568790004589e-05, 0.6149473190307617, -0.33332541584968567, 0.01294064149260521, 0.004044352564960718, -0.0023215385153889656, -0.06426730751991272, 0.2760685980319977, 0.20594890415668488, -0.01800030656158924, 0.9838089942932129, 0.1486043930053711, 0.06216217577457428, -0.048536110669374466, 0.27255722880363464, -0.22590264678001404, 0.030715569853782654, 0.9815799593925476, -0.18519222736358643, 0.038960717618465424, 0.013997575268149376]} +{"t": 2.8872, "q": [-0.3904884457588196, -0.0036849630996584892, -0.0014865003759041429, 0.6243642568588257, -0.2753409743309021, 0.014784389175474644, -0.3473665416240692, -0.006485329940915108, 0.00012052706006215885, 0.6148706078529358, -0.3333985209465027, 0.01285415980964899, 0.003910433501005173, -0.002443394623696804, -0.06540683656930923, 0.2760685980319977, 0.20632041990756989, -0.017976338043808937, 0.9838449954986572, 0.14855645596981049, 0.06222209706902504, -0.048524126410484314, 0.2725932002067566, -0.22587867081165314, 0.030679617077112198, 0.9815919399261475, -0.18514429032802582, 0.03893674910068512, 0.01402154378592968]} +{"t": 2.904, "q": [-0.39053958654403687, -0.0036679189652204514, -0.001834689755924046, 0.6245176792144775, -0.2758578062057495, 0.01423361524939537, -0.3475114107131958, -0.006101834587752819, 0.000522283953614533, 0.6148024797439575, -0.3334355056285858, 0.01286177709698677, 0.003977392800152302, -0.00276316050440073, -0.06684670597314835, 0.276188462972641, 0.20687170326709747, -0.017964353784918785, 0.983940839767456, 0.1485804319381714, 0.06227003410458565, -0.048524126410484314, 0.2725692093372345, -0.22605843842029572, 0.030607711523771286, 0.9816039204597473, -0.18510834872722626, 0.03892476484179497, 0.014033528044819832]} +{"t": 2.9207, "q": [-0.39053958654403687, -0.0034207776188850403, -0.001794514013454318, 0.6245176792144775, -0.275903582572937, 0.014269473031163216, -0.34748587012290955, -0.005760950036346912, 0.000709770480170846, 0.6144700646400452, -0.33344346284866333, 0.012832792475819588, 0.003977392800152302, -0.0028393790125846863, -0.06825752556324005, 0.2763442397117615, 0.2073630541563034, -0.017952369526028633, 0.9840247631072998, 0.14859241247177124, 0.06236590817570686, -0.048524126410484314, 0.2726171612739563, -0.22619026899337769, 0.030523821711540222, 0.9816159009933472, -0.1850723922252655, 0.03892476484179497, 0.014009559527039528]} +{"t": 2.9375, "q": [-0.3906247913837433, -0.0031992027070373297, -0.0018079059664160013, 0.6245006322860718, -0.27596598863601685, 0.014305273070931435, -0.34748587012290955, -0.005590507760643959, 0.0006829866906628013, 0.6141291856765747, -0.3334557116031647, 0.012825648300349712, 0.0038300822488963604, -0.0028318222612142563, -0.06965385377407074, 0.2763082981109619, 0.20781844854354858, -0.017952369526028633, 0.9840607047080994, 0.14856843650341034, 0.062377892434597015, -0.04850015789270401, 0.2726171612739563, -0.22641797363758087, 0.03039199486374855, 0.9816758036613464, -0.18501247465610504, 0.038912780582904816, 0.014009559527039528]} +{"t": 2.9542, "q": [-0.39063331484794617, -0.002943539060652256, -0.0017275545978918672, 0.6245006322860718, -0.27610334753990173, 0.014326282776892185, -0.347451776266098, -0.005292233545333147, 0.0007499461644329131, 0.6138650178909302, -0.33343514800071716, 0.012818177230656147, 0.003776514669880271, -0.0029003960080444813, -0.07078079134225845, 0.27627235651016235, 0.20807011425495148, -0.017952369526028633, 0.9840607047080994, 0.14856843650341034, 0.06242582947015762, -0.048476189374923706, 0.27260518074035645, -0.2266576588153839, 0.03027215227484703, 0.9816877841949463, -0.185000479221344, 0.03892476484179497, 0.014009559527039528]} +{"t": 2.971, "q": [-0.39065036177635193, -0.0027049200143665075, -0.0016338112764060497, 0.6245006322860718, -0.27629905939102173, 0.014289314858615398, -0.347451776266098, -0.005164402071386576, 0.0007767299539409578, 0.6137627363204956, -0.3334594964981079, 0.012789337895810604, 0.003736338810995221, -0.0028699676040560007, -0.07162269949913025, 0.27620044350624084, 0.20822592079639435, -0.017952369526028633, 0.9840487241744995, 0.14856843650341034, 0.06244979798793793, -0.04844023659825325, 0.27258118987083435, -0.22692130506038666, 0.03015231154859066, 0.9816758036613464, -0.18496453762054443, 0.038900796324014664, 0.013997575268149376]} +{"t": 2.9879, "q": [-0.39063331484794617, -0.0024748228024691343, -0.001566851744428277, 0.624483585357666, -0.2764865458011627, 0.014180212281644344, -0.34743472933769226, -0.0049343048594892025, 0.0008436894277110696, 0.6136775612831116, -0.3334798216819763, 0.01276774238795042, 0.003669379511848092, -0.0028699813410639763, -0.07214391231536865, 0.27615249156951904, 0.20833377540111542, -0.01794038526713848, 0.9840607047080994, 0.1486043930053711, 0.06246178224682808, -0.04839230328798294, 0.2725692093372345, -0.22700519859790802, 0.030056437477469444, 0.9816518425941467, -0.18492858111858368, 0.038900796324014664, 0.014009559527039528]} +{"t": 3.0046, "q": [-0.39059072732925415, -0.0021680265199393034, -0.0014329327968880534, 0.6245091557502747, -0.27659904956817627, 0.01407143659889698, -0.3474176824092865, -0.00469568558037281, 0.0008169056382030249, 0.6135923266410828, -0.3334956467151642, 0.012695221230387688, 0.003669379511848092, -0.0028699892573058605, -0.0724446102976799, 0.27612853050231934, 0.20841765403747559, -0.01794038526713848, 0.9840367436408997, 0.14856843650341034, 0.06247376650571823, -0.04838031902909279, 0.27255722880363464, -0.22710107266902924, 0.03003246895968914, 0.9816518425941467, -0.18489262461662292, 0.038912780582904816, 0.013997575268149376]} +{"t": 3.0213, "q": [-0.3905651569366455, -0.00174192083068192, -0.0013257976388558745, 0.6245091557502747, -0.27670323848724365, 0.013977162539958954, -0.34734097123146057, -0.004354801028966904, 0.0008570813224650919, 0.6135156154632568, -0.33349135518074036, 0.01267338078469038, 0.0036292036529630423, -0.0028623745311051607, -0.0724596306681633, 0.27507391571998596, 0.2076866179704666, -0.01792840100824833, 0.9846599102020264, 0.14864034950733185, 0.06254567205905914, -0.04832039773464203, 0.27103522419929504, -0.2277122586965561, 0.030116358771920204, 0.9821312427520752, -0.18492858111858368, 0.0357968807220459, 0.013949638232588768]} +{"t": 3.0381, "q": [-0.39059072732925415, -0.0012561604380607605, -0.0010311759542673826, 0.6245091557502747, -0.27678245306015015, 0.013868558220565319, -0.3475028872489929, -0.004022438544780016, 0.0010311759542673826, 0.6134900450706482, -0.33347469568252563, 0.012644131667912006, 0.003441717242822051, -0.0028623733669519424, -0.07240951806306839, 0.27373167872428894, 0.20714733004570007, -0.017916416749358177, 0.9853190183639526, 0.1486762911081314, 0.06278535723686218, -0.04824849218130112, 0.26933348178863525, -0.22819162905216217, 0.030176280066370964, 0.9826345443725586, -0.18498849868774414, 0.03194994479417801, 0.013925669714808464]} +{"t": 3.0548, "q": [-0.3906247913837433, -0.0007363110780715942, -0.0006294191116467118, 0.6244921088218689, -0.27681997418403625, 0.013803444802761078, -0.34772446751594543, -0.00358781055547297, 0.0013659733813256025, 0.6134729981422424, -0.3334374725818634, 0.012607412412762642, 0.003173879347741604, -0.0028395364060997963, -0.07236438244581223, 0.2719220817089081, 0.20642827451229095, -0.017952369526028633, 0.9859302043914795, 0.14873622357845306, 0.06286924332380295, -0.04814063385128975, 0.2670804560184479, -0.2287309169769287, 0.030224215239286423, 0.9828862547874451, -0.18498849868774414, 0.029529130086302757, 0.013937653973698616]} +{"t": 3.0716, "q": [-0.3906077742576599, -0.00023350631818175316, -0.00020087843586225063, 0.6245091557502747, -0.2768492102622986, 0.013723942451179028, -0.34780117869377136, -0.0031872710678726435, 0.001607027486898005, 0.6134389042854309, -0.33334627747535706, 0.012490208260715008, 0.0030533522367477417, -0.0028243104461580515, -0.07233428955078125, 0.2698487937450409, 0.20587700605392456, -0.01800030656158924, 0.9873443841934204, 0.14873622357845306, 0.06308495998382568, -0.04808071255683899, 0.26419225335121155, -0.22924624383449554, 0.03026016801595688, 0.9830060601234436, -0.18496453762054443, 0.027527766302227974, 0.013937653973698616]} +{"t": 3.0883, "q": [-0.39059072732925415, 0.00032043084502220154, -4.017568790004589e-05, 0.6245176792144775, -0.27693265676498413, 0.013564804568886757, -0.34782674908638, -0.002769687445834279, 0.0016472031129524112, 0.6134474277496338, -0.333292156457901, 0.01239517331123352, 0.0029997846577316523, -0.002847145777195692, -0.07232930511236191, 0.2674759328365326, 0.2052897810935974, -0.01806022785604, 0.9889262914657593, 0.14873622357845306, 0.0632048025727272, -0.04802079126238823, 0.26189127564430237, -0.22967767715454102, 0.0303800106048584, 0.9842404723167419, -0.18498849868774414, 0.02442385070025921, 0.013913685455918312]} +{"t": 3.1051, "q": [-0.3906077742576599, 0.000729492399841547, 0.00010713516530813649, 0.6245517730712891, -0.27700355648994446, 0.013441811315715313, -0.34785231947898865, -0.0024714134633541107, 0.0015266761183738708, 0.6134644746780396, -0.3333079516887665, 0.01232267078012228, 0.0030399602837860584, -0.0028319205157458782, -0.07232929021120071, 0.26481541991233826, 0.20465461909770966, -0.01810816489160061, 0.9912991523742676, 0.14878416061401367, 0.06312091648578644, -0.04794888570904732, 0.2607048451900482, -0.23032481968402863, 0.03045191615819931, 0.9853549599647522, -0.18501247465610504, 0.01991778239607811, 0.013913685455918312]} +{"t": 3.1218, "q": [-0.3905736804008484, 0.0009255013428628445, 0.00010713516530813649, 0.6245517730712891, -0.2770369052886963, 0.013383930549025536, -0.34784379601478577, -0.0023009711876511574, 0.0014463247498497367, 0.6134815216064453, -0.3333401679992676, 0.012250294908881187, 0.0029730007518082857, -0.0028090854175388813, -0.07234428822994232, 0.26246652007102966, 0.20405539870262146, -0.018204038962721825, 0.9934682846069336, 0.14877216517925262, 0.06309694796800613, -0.04788896441459656, 0.2597101330757141, -0.2311517298221588, 0.03069160133600235, 0.9865773916244507, -0.18503643572330475, 0.016274577006697655, 0.013937653973698616]} +{"t": 3.1386, "q": [-0.3905140161514282, 0.00107889948412776, 8.035137580009177e-05, 0.624483585357666, -0.27705779671669006, 0.013318893499672413, -0.34782674908638, -0.002130528911948204, 0.0013257976388558745, 0.6134815216064453, -0.3334006667137146, 0.012127339839935303, 0.003254230599850416, -0.0028243104461580515, -0.07233428955078125, 0.25932663679122925, 0.20358802378177643, -0.018216023221611977, 0.9963085651397705, 0.14880812168121338, 0.06308495998382568, -0.0478290431201458, 0.2586435377597809, -0.2322542816400528, 0.030991205945611, 0.9879915118217468, -0.18508437275886536, 0.012211925350129604, 0.013949638232588768]} +{"t": 3.1553, "q": [-0.39053958654403687, 0.0012493417598307133, 0.0, 0.6244665384292603, -0.2770828604698181, 0.01323217898607254, -0.34782674908638, -0.002011219272390008, 0.0010713516967371106, 0.6134985685348511, -0.33344095945358276, 0.012040531262755394, 0.0032944062259048223, -0.002793859923258424, -0.07233424484729767, 0.2558871805667877, 0.20325246453285217, -0.01823999173939228, 0.9988372325897217, 0.14893995225429535, 0.06302504241466522, -0.04770920053124428, 0.2574211657047272, -0.23344072699546814, 0.031003190204501152, 0.9892978072166443, -0.18510834872722626, 0.009012137539684772, 0.014093449339270592]} +{"t": 3.1722, "q": [-0.39058220386505127, 0.0014623943716287613, -6.695948104606941e-05, 0.6244409680366516, -0.2770828604698181, 0.01323217898607254, -0.34785231947898865, -0.001883387565612793, 0.0008704732172191143, 0.613507091999054, -0.3335581421852112, 0.011830930598080158, 0.0034015413839370012, -0.0027786341961473227, -0.07232419401407242, 0.25227993726730347, 0.20320452749729156, -0.018251974135637283, 1.001509666442871, 0.14893995225429535, 0.06306099146604538, -0.04760134220123291, 0.2561987638473511, -0.23485486209392548, 0.031003190204501152, 0.99000483751297, -0.18514429032802582, 0.005968144163489342, 0.014117416925728321]} +{"t": 3.189, "q": [-0.39058220386505127, 0.0016669253818690777, -0.0001473108568461612, 0.624415397644043, -0.27709540724754333, 0.013181607238948345, -0.34785231947898865, -0.0017044231062754989, 0.0007365542696788907, 0.613507091999054, -0.3339379131793976, 0.011136943474411964, 0.003361365757882595, -0.002793859224766493, -0.07231419533491135, 0.24867267906665802, 0.20326444506645203, -0.018311895430088043, 1.0039185285568237, 0.14898788928985596, 0.06310892850160599, -0.04746951535344124, 0.25508424639701843, -0.23634091019630432, 0.031039142981171608, 0.990148663520813, -0.18515628576278687, 0.0011624698527157307, 0.014201306737959385]} +{"t": 3.2057, "q": [-0.39058220386505127, 0.001837367657572031, -0.00018748654110822827, 0.6244068741798401, -0.27711623907089233, 0.013159871101379395, -0.34789490699768066, -0.0015425028977915645, 0.0006695947959087789, 0.6135241389274597, -0.3341938257217407, 0.010681631043553352, 0.0031470954418182373, -0.002801469760015607, -0.07231921702623367, 0.24577249586582184, 0.20331238210201263, -0.018311895430088043, 1.0053327083587646, 0.1491796374320984, 0.06308495998382568, -0.04728975147008896, 0.2540416121482849, -0.23882164061069489, 0.03111104853451252, 0.990148663520813, -0.18522818386554718, -0.0054887752048671246, 0.014345117844641209]} +{"t": 3.2224, "q": [-0.3905140161514282, 0.0020504207350313663, -0.00016070275160018355, 0.6243472099304199, -0.2771620750427246, 0.013123591430485249, -0.34789490699768066, -0.0013379721203818917, 0.000709770480170846, 0.6135582327842712, -0.33422228693962097, 0.010631038807332516, 0.002691771136596799, -0.002793859923258424, -0.07233424484729767, 0.24337564408779144, 0.20354008674621582, -0.018263958394527435, 1.0058599710464478, 0.149227574467659, 0.06302504241466522, -0.046906258910894394, 0.25328660011291504, -0.2413623034954071, 0.03145859017968178, 0.9889382719993591, -0.18543191254138947, -0.012823120690882206, 0.014488928020000458]} +{"t": 3.2391, "q": [-0.3903776705265045, 0.0022464292123913765, -0.00010713516530813649, 0.6242619752883911, -0.27719128131866455, 0.013058498501777649, -0.3478778600692749, -0.0011078750248998404, 0.0008169056382030249, 0.6135326623916626, -0.3342505693435669, 0.010551384650170803, 0.0023703654296696186, -0.002809081459417939, -0.0723743587732315, 0.24093087017536163, 0.20383968949317932, -0.018275942653417587, 1.006051778793335, 0.1492994725704193, 0.06297710537910461, -0.0466545894742012, 0.25103357434272766, -0.24361532926559448, 0.031446605920791626, 0.987464189529419, -0.18549184501171112, -0.02094842493534088, 0.01462075486779213]} +{"t": 3.2559, "q": [-0.3903521001338959, 0.002331650350242853, -0.0001473108568461612, 0.6242534518241882, -0.2772413492202759, 0.012957241386175156, -0.347869336605072, -0.0009800433181226254, 0.0007767299539409578, 0.6135326623916626, -0.3342503607273102, 0.010507790371775627, 0.0024373249616473913, -0.0028395375702530146, -0.07240447402000427, 0.23723971843719482, 0.2040434181690216, -0.01828792691230774, 1.0060157775878906, 0.14941932260990143, 0.062497735023498535, -0.04641490429639816, 0.2491041123867035, -0.2465035319328308, 0.03139866888523102, 0.9851751923561096, -0.18550382554531097, -0.03226153552532196, 0.014860439114272594]} +{"t": 3.2726, "q": [-0.39032652974128723, 0.002365738619118929, -0.00020087843586225063, 0.6242194175720215, -0.27724555134773254, 0.012935581617057323, -0.34786084294319153, -0.000945954816415906, 0.0007231623749248683, 0.6135326623916626, -0.334258496761322, 0.010493322275578976, 0.0023435817565768957, -0.002877600258216262, -0.07246967405080795, 0.23330889642238617, 0.20418722927570343, -0.018335863947868347, 1.0059438943862915, 0.1495271772146225, 0.06234193965792656, -0.04615125060081482, 0.2470548003911972, -0.24971529841423035, 0.031446605920791626, 0.98177170753479, -0.18553978204727173, -0.042100582271814346, 0.015231950208544731]} +{"t": 3.2893, "q": [-0.3902412950992584, 0.002408349420875311, -0.00018748654110822827, 0.6242108941078186, -0.27724969387054443, 0.012942776083946228, -0.34785231947898865, -0.0009118663729168475, 0.0007365542696788907, 0.6135326623916626, -0.33424606919288635, 0.010471384972333908, 0.0023435817565768957, -0.0028623752295970917, -0.07247968018054962, 0.2284313142299652, 0.2043190598487854, -0.01841975376009941, 1.0057880878448486, 0.149599090218544, 0.06215019151568413, -0.04580370709300041, 0.2446819245815277, -0.2538019120693207, 0.031614385545253754, 0.9768821597099304, -0.1855757236480713, -0.05433647707104683, 0.015663381665945053]} +{"t": 3.3062, "q": [-0.39013051986694336, 0.00241687148809433, -0.00013391896209213883, 0.6241682767868042, -0.27724555134773254, 0.012935581617057323, -0.34786084294319153, -0.0009118663729168475, 0.0007901218486949801, 0.6135582327842712, -0.3342418372631073, 0.01044954638928175, 0.0021427033934742212, -0.0027862496208399534, -0.07251966744661331, 0.2235177904367447, 0.20439095795154572, -0.01847967505455017, 1.0052368640899658, 0.14969496428966522, 0.06158693507313728, -0.04556402564048767, 0.24302810430526733, -0.25833195447921753, 0.03208177164196968, 0.9703028202056885, -0.1856476366519928, -0.06654839962720871, 0.01619068905711174]} +{"t": 3.3231, "q": [-0.38999417424201965, 0.0024253935553133488, -6.695948104606941e-05, 0.6240489482879639, -0.27724555134773254, 0.012935581617057323, -0.3477841317653656, -0.0009118663729168475, 0.0009106489014811814, 0.6135326623916626, -0.3342459797859192, 0.010456853546202183, 0.0021962709724903107, -0.002824320225045085, -0.07270514965057373, 0.21673470735549927, 0.2048943042755127, -0.01858753338456154, 1.0050450563430786, 0.14988671243190765, 0.06103565916419029, -0.04548013582825661, 0.2414102405309677, -0.2628140449523926, 0.03211772441864014, 0.9624890685081482, -0.18582738935947418, -0.08070177584886551, 0.016741963103413582]} +{"t": 3.3398, "q": [-0.3899856507778168, 0.002408349420875311, -9.374327055411413e-05, 0.6240063309669495, -0.27724555134773254, 0.012935581617057323, -0.34775856137275696, -0.0009118663729168475, 0.0008704732172191143, 0.6135326623916626, -0.33425426483154297, 0.010471484623849392, 0.002316797850653529, -0.0029309061355888844, -0.07294618338346481, 0.20961607992649078, 0.20500215888023376, -0.018611501902341843, 1.0047215223312378, 0.14994663000106812, 0.060748036950826645, -0.04542021453380585, 0.2400919646024704, -0.26676884293556213, 0.03211772441864014, 0.9546993374824524, -0.1859472393989563, -0.0942079946398735, 0.017233315855264664]} +{"t": 3.3565, "q": [-0.3899771273136139, 0.002408349420875311, -0.00018748654110822827, 0.6240148544311523, -0.2772372364997864, 0.012921192683279514, -0.34772446751594543, -0.0009033442474901676, 0.0008704732172191143, 0.6135411858558655, -0.33424192667007446, 0.010464077815413475, 0.0022498385515064, -0.003288715612143278, -0.07332312315702438, 0.20200610160827637, 0.20505009591579437, -0.018635470420122147, 1.003594994544983, 0.14995861053466797, 0.06030462309718132, -0.04539624601602554, 0.23782694339752197, -0.2708195149898529, 0.03224955126643181, 0.9456272721290588, -0.18604311347007751, -0.10988336056470871, 0.018072212114930153]} +{"t": 3.3735, "q": [-0.3898237347602844, 0.0024253935553133488, -0.0001473108568461612, 0.6239040493965149, -0.27724137902259827, 0.012928387150168419, -0.3476988971233368, -0.0009118663729168475, 0.000897257006727159, 0.6135326623916626, -0.3342294991016388, 0.010442158207297325, 0.0019953923765569925, -0.003905368270352483, -0.07380069047212601, 0.194132462143898, 0.20508605241775513, -0.018635470420122147, 1.0021449327468872, 0.14995861053466797, 0.05964548885822296, -0.04538426175713539, 0.23448334634304047, -0.27509787678718567, 0.032405346632003784, 0.937238335609436, -0.18611501157283783, -0.12324577569961548, 0.01906690187752247]} +{"t": 3.3902, "q": [-0.3896618187427521, 0.0024509597569704056, -0.00013391896209213883, 0.623810350894928, -0.2772497236728668, 0.012913920916616917, -0.34771594405174255, -0.0008522115531377494, 0.0010579597437754273, 0.6135241389274597, -0.334229439496994, 0.0104276267811656, 0.0014998923288658261, -0.004742785822600126, -0.07446426898241043, 0.1846769154071808, 0.20500215888023376, -0.018611501902341843, 1.0003832578659058, 0.14992265403270721, 0.05874667316675186, -0.04538426175713539, 0.23031283915042877, -0.2796039581298828, 0.032764870673418045, 0.9269318580627441, -0.18613898754119873, -0.13953232765197754, 0.02069675736129284]} +{"t": 3.4069, "q": [-0.389525443315506, 0.0024850484915077686, -6.695948104606941e-05, 0.6236057877540588, -0.2772372364997864, 0.012921192683279514, -0.3477074205875397, -0.0008266451768577099, 0.001272230059839785, 0.6135156154632568, -0.3342171013355255, 0.0104202376678586, 0.0011115273227915168, -0.0056030480191111565, -0.07519452273845673, 0.17375928163528442, 0.20505009591579437, -0.018623486161231995, 0.9990649223327637, 0.14991067349910736, 0.057739995419979095, -0.04539624601602554, 0.22575883567333221, -0.2836306691169739, 0.03271693363785744, 0.9167093634605408, -0.18611501157283783, -0.15520770847797394, 0.023093601688742638]} +{"t": 3.4237, "q": [-0.38949134945869446, 0.0024850484915077686, -4.017568790004589e-05, 0.6234864592552185, -0.2772372364997864, 0.012921192683279514, -0.3477329909801483, -0.0008266451768577099, 0.0013257976388558745, 0.6134559512138367, -0.3342129588127136, 0.01041291281580925, 0.0007633380591869354, -0.006508991587907076, -0.07592491060495377, 0.16327308118343353, 0.20500215888023376, -0.018635470420122147, 0.997387170791626, 0.14991067349910736, 0.056901101022958755, -0.04538426175713539, 0.22096514701843262, -0.28708210587501526, 0.03266899660229683, 0.906762421131134, -0.18609105050563812, -0.16954083740711212, 0.024447819218039513]} +{"t": 3.4404, "q": [-0.3893294334411621, 0.0025106146931648254, -4.017568790004589e-05, 0.6233245730400085, -0.2772289216518402, 0.012906803749501705, -0.3476903736591339, -0.0008266451768577099, 0.0013659733813256025, 0.6134389042854309, -0.3341922461986542, 0.010376379825174809, 0.0004553244507405907, -0.007620450109243393, -0.07670256495475769, 0.1519719660282135, 0.20488230884075165, -0.018611501902341843, 0.9952659606933594, 0.1498747169971466, 0.055750615894794464, -0.04539624601602554, 0.21651899814605713, -0.2905455529689789, 0.032645028084516525, 0.89510178565979, -0.18606707453727722, -0.1860191375017166, 0.025190841406583786]} +{"t": 3.4571, "q": [-0.3891930878162384, 0.0025020926259458065, 0.0, 0.6231967210769653, -0.2772372364997864, 0.012921192683279514, -0.3476903736591339, -0.0007925567333586514, 0.0014329327968880534, 0.6134474277496338, -0.33420053124427795, 0.0103909932076931, 0.00022766222537029535, -0.008686226792633533, -0.07739993184804916, 0.1414617896080017, 0.2042711228132248, -0.018263958394527435, 0.9938398003578186, 0.14976686239242554, 0.05507949739694595, -0.04538426175713539, 0.21256420016288757, -0.2935176491737366, 0.03266899660229683, 0.8826382160186768, -0.18606707453727722, -0.1995493322610855, 0.025778068229556084]} +{"t": 3.4739, "q": [-0.38917604088783264, 0.002595835831016302, 2.6783791327034123e-05, 0.6231370568275452, -0.2772372364997864, 0.012921192683279514, -0.34767335653305054, -0.0007669904152862728, 0.0014998923288658261, 0.613362193107605, -0.3341882526874542, 0.010398154146969318, 1.3391895663517062e-05, -0.009751969017088413, -0.07799819856882095, 0.1308078169822693, 0.20418722927570343, -0.018275942653417587, 0.9937918782234192, 0.14964702725410461, 0.054612115025520325, -0.04539624601602554, 0.20882512629032135, -0.29659759998321533, 0.03259709104895592, 0.8687604665756226, -0.18600715696811676, -0.21601566672325134, 0.025921879336237907]} +{"t": 3.4906, "q": [-0.3892271816730499, 0.00261287996545434, 1.3391895663517062e-05, 0.6230774521827698, -0.2772372364997864, 0.012921192683279514, -0.3477500379085541, -0.0007243797881528735, 0.0014731085393577814, 0.6132855415344238, -0.3341922461986542, 0.010376379825174809, -0.00037497308221645653, -0.011145022697746754, -0.07855335623025894, 0.1221911609172821, 0.20413929224014282, -0.018263958394527435, 0.9936480522155762, 0.1496230512857437, 0.05451624095439911, -0.04537227749824524, 0.20439095795154572, -0.29938992857933044, 0.03260907530784607, 0.8545231819152832, -0.18600715696811676, -0.2314273715019226, 0.025921879336237907]} +{"t": 3.5077, "q": [-0.38921013474464417, 0.002629924099892378, 4.017568790004589e-05, 0.6227961778640747, -0.27724137902259827, 0.012928387150168419, -0.3477415144443512, -0.0007243797881528735, 0.0014998923288658261, 0.6130042672157288, -0.3341800570487976, 0.010398072190582752, -0.0007231623749248683, -0.012576091103255749, -0.07911497354507446, 0.11542007327079773, 0.20418722927570343, -0.018263958394527435, 0.9937439560890198, 0.1496230512857437, 0.05438441410660744, -0.04539624601602554, 0.20052005350589752, -0.3015470802783966, 0.03232145681977272, 0.8400222659111023, -0.1860191375017166, -0.24577249586582184, 0.025849973782896996]} +{"t": 3.5245, "q": [-0.3891589939594269, 0.0026640123687684536, 6.695948104606941e-05, 0.6225916743278503, -0.27721643447875977, 0.012914074584841728, -0.347639262676239, -0.0007414240390062332, 0.0015132841654121876, 0.6126463413238525, -0.3341594934463501, 0.01039058342576027, -0.001044567907229066, -0.014227870851755142, -0.07963383197784424, 0.10906843096017838, 0.20419920980930328, -0.0183478482067585, 0.9936959743499756, 0.14961107075214386, 0.05396496504545212, -0.04539624601602554, 0.19720043241977692, -0.30345258116722107, 0.0322016142308712, 0.8252097964286804, -0.1859951764345169, -0.2632095515727997, 0.02576608397066593]} +{"t": 3.5412, "q": [-0.38916751742362976, 0.002655490767210722, 0.00016070275160018355, 0.6223871111869812, -0.2772289216518402, 0.012906803749501705, -0.3476563096046448, -0.0007669904152862728, 0.0015936355339363217, 0.6123395562171936, -0.33411458134651184, 0.010426480323076248, -0.0013659733813256025, -0.016054630279541016, -0.08012043684720993, 0.10338791459798813, 0.20407937467098236, -0.018431738018989563, 0.9928211569786072, 0.1496230512857437, 0.052802495658397675, -0.045408230274915695, 0.19409650564193726, -0.3046989142894745, 0.03214169293642044, 0.8103373646736145, -0.1859951764345169, -0.2786092758178711, 0.02576608397066593]} +{"t": 3.5579, "q": [-0.38908231258392334, 0.00267253490164876, 0.00018748654110822827, 0.6223444938659668, -0.27722886204719543, 0.012964513152837753, -0.3473750650882721, -0.0007499461644329131, 0.0015936355339363217, 0.6117174625396729, -0.3338969945907593, 0.010387981310486794, -0.0015400679549202323, -0.01753884367644787, -0.0802985355257988, 0.09732389450073242, 0.2040434181690216, -0.018443722277879715, 0.9920421838760376, 0.14964702725410461, 0.05092097446322441, -0.04539624601602554, 0.19100458920001984, -0.30587339401245117, 0.031506527215242386, 0.7958124876022339, -0.1859472393989563, -0.29494377970695496, 0.025778068229556084]} +{"t": 3.5749, "q": [-0.3889288902282715, 0.00267253490164876, 0.0001740946463542059, 0.6221399903297424, -0.2772080600261688, 0.012942985631525517, -0.3471534848213196, -0.0007414240390062332, 0.0015132841654121876, 0.6110953092575073, -0.33359456062316895, 0.010602978058159351, -0.0015936355339363217, -0.01868046261370182, -0.08055054396390915, 0.09159543365240097, 0.2036479413509369, -0.018887139856815338, 0.9911673069000244, 0.1496230512857437, 0.04800880700349808, -0.04554005712270737, 0.18781678378582, -0.30759909749031067, 0.03142263740301132, 0.7828215956687927, -0.18586334586143494, -0.3103794455528259, 0.02582600526511669]} +{"t": 3.5916, "q": [-0.3889203667640686, 0.0027321898378431797, 0.00022766222537029535, 0.6219610571861267, -0.2771872580051422, 0.012935849837958813, -0.34698304533958435, -0.0007329019135795534, 0.0015400679549202323, 0.6103879809379578, -0.33314430713653564, 0.010787456296384335, -0.001941824913956225, -0.019601337611675262, -0.08085618913173676, 0.08573514968156815, 0.20203006267547607, -0.018994996324181557, 0.9895374774932861, 0.14956313371658325, 0.04344281554222107, -0.04568386822938919, 0.1837780922651291, -0.30967238545417786, 0.03148255869746208, 0.7681409120559692, -0.18588732182979584, -0.32635441422462463, 0.025981800630688667]} +{"t": 3.6083, "q": [-0.3889203667640686, 0.0029111537151038647, 0.0002812298189383, 0.6219525337219238, -0.27717477083206177, 0.012928693555295467, -0.3467359244823456, -0.0006391586503013968, 0.0015534599078819156, 0.6095868945121765, -0.33275651931762695, 0.01112517062574625, -0.0027855143416672945, -0.020278653129935265, -0.08121001720428467, 0.08022240549325943, 0.19923774898052216, -0.019210712984204292, 0.9863376617431641, 0.14919161796569824, 0.0397157222032547, -0.046486809849739075, 0.18054234981536865, -0.311829537153244, 0.0316024012863636, 0.7519861459732056, -0.18593525886535645, -0.3440910875797272, 0.02605370618402958]} +{"t": 3.6252, "q": [-0.38888630270957947, 0.002902632113546133, 0.0002946217136923224, 0.6219354867935181, -0.2771747410297394, 0.012957547791302204, -0.34639501571655273, -0.000630636524874717, 0.0015132841654121876, 0.6088880896568298, -0.33247989416122437, 0.011398592963814735, -0.004258622881025076, -0.021062469109892845, -0.08162590116262436, 0.07476957887411118, 0.19531890749931335, -0.01913880743086338, 0.9819275140762329, 0.14914368093013763, 0.03807388246059418, -0.04675046354532242, 0.17739050090312958, -0.3142503499984741, 0.03163835406303406, 0.7364546060562134, -0.1859951764345169, -0.3616359829902649, 0.026209499686956406]} +{"t": 3.642, "q": [-0.38890334963798523, 0.0029111537151038647, 0.0002410541201243177, 0.6219525337219238, -0.27718305587768555, 0.012971954420208931, -0.3459433615207672, -0.000630636524874717, 0.0013257976388558745, 0.6082404255867004, -0.3323286771774292, 0.011462495662271976, -0.006896826438605785, -0.021998396143317223, -0.08229569345712662, 0.06803444772958755, 0.1913401335477829, -0.019486350938677788, 0.9787516593933105, 0.1492035984992981, 0.036695696413517, -0.046798400580883026, 0.1736394464969635, -0.3172823488712311, 0.03269296512007713, 0.7195329070091248, -0.18613898754119873, -0.38041526079177856, 0.027300065383315086]} +{"t": 3.6587, "q": [-0.38889482617378235, 0.002894109580665827, 0.00020087843586225063, 0.6219780445098877, -0.277195543050766, 0.012964683584868908, -0.345772922039032, -0.0006476807757280767, 0.0012588382232934237, 0.6080018281936646, -0.3323003649711609, 0.011513094417750835, -0.009535029530525208, -0.02308652363717556, -0.08304738998413086, 0.06085589528083801, 0.18665431439876556, -0.019594207406044006, 0.9761151671409607, 0.14923955500125885, 0.03586878627538681, -0.046798400580883026, 0.17023591697216034, -0.3189721405506134, 0.03425091505050659, 0.7020598649978638, -0.18630675971508026, -0.39878708124160767, 0.029876673594117165]} +{"t": 3.6754, "q": [-0.3888266384601593, 0.0029111537151038647, 0.00018748654110822827, 0.6220888495445251, -0.27722465991973877, 0.013015063479542732, -0.3455257713794708, -0.0006647250265814364, 0.001312405802309513, 0.6078824996948242, -0.3322840929031372, 0.011527463793754578, -0.0122669767588377, -0.02398429811000824, -0.08366233110427856, 0.05420465022325516, 0.18311895430088043, -0.019726034253835678, 0.9747609496116638, 0.1491796374320984, 0.03573695942759514, -0.046786416321992874, 0.1669282764196396, -0.3198949098587036, 0.03597664460539818, 0.6849344372749329, -0.18640263378620148, -0.4161761999130249, 0.032824791967868805]} +{"t": 3.6921, "q": [-0.3888181149959564, 0.002928198780864477, 0.0001740946463542059, 0.6221144199371338, -0.277245432138443, 0.013036608695983887, -0.34537237882614136, -0.0006732470938004553, 0.0012990138493478298, 0.6076523661613464, -0.33225592970848083, 0.011592595838010311, -0.015708694234490395, -0.024767939001321793, -0.08420063555240631, 0.04854809492826462, 0.1802307665348053, -0.019953735172748566, 0.9743534922599792, 0.1492515355348587, 0.03483814373612404, -0.046786416321992874, 0.16324912011623383, -0.3204222321510315, 0.03882889077067375, 0.6659154891967773, -0.18665431439876556, -0.43493151664733887, 0.03600061312317848]} +{"t": 3.7092, "q": [-0.3888181149959564, 0.002936720382422209, 0.0001740946463542059, 0.6221058964729309, -0.277245432138443, 0.013036608695983887, -0.34538090229034424, -0.0006562029011547565, 0.001379365217871964, 0.6074990034103394, -0.3322191834449768, 0.01161404512822628, -0.018279938027262688, -0.02562756836414337, -0.08477097749710083, 0.045048702508211136, 0.17792978882789612, -0.02009754627943039, 0.9742935299873352, 0.14938336610794067, 0.032045818865299225, -0.04676244780421257, 0.16052870452404022, -0.32038629055023193, 0.04128565639257431, 0.6465369462966919, -0.18670225143432617, -0.4535190463066101, 0.039511989802122116]} +{"t": 3.7263, "q": [-0.38880959153175354, 0.0031156851910054684, 0.00013391896209213883, 0.6222081780433655, -0.2772620618343353, 0.013065405189990997, -0.3454064726829529, -0.0006732470938004553, 0.0014463247498497367, 0.6074137687683105, -0.3321986198425293, 0.011606555432081223, -0.019953925162553787, -0.02674589678645134, -0.0851636677980423, 0.042100582271814346, 0.17582057416439056, -0.020912472158670425, 0.9739100337028503, 0.1497788429260254, 0.026748791337013245, -0.04677443206310272, 0.1592104285955429, -0.3203982710838318, 0.043598610907793045, 0.6247496604919434, -0.1867741495370865, -0.4740599989891052, 0.044269729405641556]} +{"t": 3.7431, "q": [-0.3888351619243622, 0.003141250927001238, -1.3391895663517062e-05, 0.6222593188285828, -0.2772620618343353, 0.013065405189990997, -0.34538090229034424, -0.0006476807757280767, 0.0014597165863960981, 0.6072773933410645, -0.33217018842697144, 0.011642619967460632, -0.021266330033540726, -0.028556467965245247, -0.08579244464635849, 0.03990747034549713, 0.173939049243927, -0.022710107266902924, 0.9724719524383545, 0.15064170956611633, 0.020001672208309174, -0.046798400580883026, 0.15807193517684937, -0.32038629055023193, 0.0463310144841671, 0.6012725234031677, -0.1869179606437683, -0.495032399892807, 0.047996822744607925]} +{"t": 3.7599, "q": [-0.38890334963798523, 0.0032349941320717335, -4.017568790004589e-05, 0.6223530173301697, -0.2772662341594696, 0.013072599656879902, -0.3453638553619385, -0.0006050702068023384, 0.0014463247498497367, 0.6071410775184631, -0.33215785026550293, 0.011635230854153633, -0.022136803716421127, -0.03080042637884617, -0.08643488585948944, 0.037714358419179916, 0.17212942242622375, -0.02473544143140316, 0.9693440794944763, 0.15258315205574036, 0.015148060396313667, -0.04682236909866333, 0.15658588707447052, -0.3203263580799103, 0.05096891149878502, 0.5790297985076904, -0.18692994117736816, -0.5160048007965088, 0.0517478846013546]} +{"t": 3.7766, "q": [-0.3889288902282715, 0.003439525607973337, -0.00018748654110822827, 0.6224893927574158, -0.27728286385536194, 0.013072523288428783, -0.3453638553619385, -0.0005539375124499202, 0.0014865003759041429, 0.6070217490196228, -0.3321334719657898, 0.011664070188999176, -0.022471601143479347, -0.03337851166725159, -0.08737862855195999, 0.03514973446726799, 0.16992433369159698, -0.026569027453660965, 0.9651975035667419, 0.15566310286521912, 0.00926380604505539, -0.046846337616443634, 0.15465642511844635, -0.3203742802143097, 0.05706888064742088, 0.5557923913002014, -0.18704979121685028, -0.5373007655143738, 0.05517537146806717]} +{"t": 3.7935, "q": [-0.38893741369247437, 0.00369518855586648, -0.00033479739795438945, 0.6226513385772705, -0.2773120105266571, 0.013094030320644379, -0.34528714418411255, -0.0004516721237450838, 0.0014597165863960981, 0.6068001985549927, -0.3321255147457123, 0.011693054810166359, -0.022471601143479347, -0.035781294107437134, -0.08820659667253494, 0.03265701234340668, 0.16750352084636688, -0.02786332368850708, 0.9611348509788513, 0.1594860702753067, 0.0011385014513507485, -0.046858321875333786, 0.1522955298423767, -0.3203742802143097, 0.06289321184158325, 0.5326029658317566, -0.18708573281764984, -0.5570148229598999, 0.05770404636859894]} +{"t": 3.8103, "q": [-0.38898855447769165, 0.003933808300644159, -0.0004955001641064882, 0.6228217482566833, -0.2773119807243347, 0.013108457438647747, -0.3451678454875946, -0.0003664509567897767, 0.001379365217871964, 0.6064848899841309, -0.3320806920528412, 0.011728956364095211, -0.022458208724856377, -0.0382063090801239, -0.08930475264787674, 0.029589051380753517, 0.16523849964141846, -0.029648972675204277, 0.9561254382133484, 0.16314126551151276, -0.006603308022022247, -0.046966180205345154, 0.14842462539672852, -0.3203982710838318, 0.06821420788764954, 0.5075319409370422, -0.18731343746185303, -0.5777115821838379, 0.06227003410458565]} +{"t": 3.827, "q": [-0.3889203667640686, 0.0043002585880458355, -0.0007633380591869354, 0.6231626272201538, -0.2773244380950928, 0.013130041770637035, -0.34459686279296875, -0.00017896443023346364, 0.0012186624808236957, 0.6059053540229797, -0.33203989267349243, 0.01175761315971613, -0.0225385595113039, -0.04010646417737007, -0.09017841517925262, 0.025718146935105324, 0.1639082431793213, -0.03471830114722252, 0.9509122967720032, 0.16873788833618164, -0.013769874349236488, -0.047505468130111694, 0.14227671921253204, -0.3206259608268738, 0.07266035676002502, 0.4815501272678375, -0.18745724856853485, -0.5987798571586609, 0.06759103387594223]} +{"t": 3.8437, "q": [-0.3889118731021881, 0.0049394178204238415, -0.0012990138493478298, 0.6239466667175293, -0.27734941244125366, 0.013144372031092644, -0.34354010224342346, 0.0001704423048067838, 0.0007365542696788907, 0.6047804355621338, -0.3319752514362335, 0.011873261071741581, -0.022565344348549843, -0.041421037167310715, -0.09088598191738129, 0.02058889903128147, 0.16356070339679718, -0.0433349572122097, 0.9472571015357971, 0.1730881631374359, -0.021104220300912857, -0.04978246986865997, 0.1347985714673996, -0.32138097286224365, 0.07576426863670349, 0.4563353359699249, -0.1875411421060562, -0.6162887811660767, 0.07215701788663864]} +{"t": 3.8605, "q": [-0.38893741369247437, 0.005638231057673693, -0.0022900141775608063, 0.6245176792144775, -0.2774409353733063, 0.013201660476624966, -0.3424237072467804, 0.0004261057765688747, 0.0001473108568461612, 0.6028203368186951, -0.3319551646709442, 0.011923940852284431, -0.022632304579019547, -0.042537666857242584, -0.09171169996261597, 0.015207981690764427, 0.16254204511642456, -0.05161605775356293, 0.9419001936912537, 0.18190854787826538, -0.028414597734808922, -0.05219130218029022, 0.1254149228334427, -0.32205209136009216, 0.07789746671915054, 0.4293828010559082, -0.18764899671077728, -0.6357032060623169, 0.07753793895244598]} +{"t": 3.8772, "q": [-0.3889715075492859, 0.006166602019220591, -0.0030801359098404646, 0.6247221827507019, -0.2774534225463867, 0.013223262503743172, -0.3414607346057892, 0.0005965480813756585, -0.00040175687172450125, 0.6010648012161255, -0.3319590985774994, 0.011902163736522198, -0.022618912160396576, -0.0435476191341877, -0.092616967856884, 0.009491506032645702, 0.16184696555137634, -0.0653020441532135, 0.9363035559654236, 0.1917116492986679, -0.03616839274764061, -0.054672036319971085, 0.11474895477294922, -0.3230108320713043, 0.07903596758842468, 0.4012678265571594, -0.18761304020881653, -0.6524931192398071, 0.08369782567024231]} +{"t": 3.8939, "q": [-0.3890141248703003, 0.006320000160485506, -0.003254230599850416, 0.6249182224273682, -0.2774825096130371, 0.013273642398416996, -0.34134140610694885, 0.0006221143994480371, -0.00030801360844634473, 0.6005875468254089, -0.3319757282733917, 0.011931412853300571, -0.022940317168831825, -0.044952478259801865, -0.09359203279018402, 0.004542021546512842, 0.1619308441877365, -0.07854460924863815, 0.9304672479629517, 0.20220983028411865, -0.04542021453380585, -0.06036454066634178, 0.10209361463785172, -0.3239935338497162, 0.07991081476211548, 0.37635260820388794, -0.18761304020881653, -0.6677730083465576, 0.08972589671611786]} +{"t": 3.9107, "q": [-0.3892868459224701, 0.006601229775696993, -0.002946217078715563, 0.6257022619247437, -0.27759888768196106, 0.013460716232657433, -0.3414522111415863, 0.0005198490689508617, -0.00021427033061627299, 0.6004682779312134, -0.331979900598526, 0.011938720010221004, -0.023435818031430244, -0.04615982621908188, -0.09440162777900696, -0.0011984225129708648, 0.16212259232997894, -0.09523864090442657, 0.9237920045852661, 0.21343904733657837, -0.05300622805953026, -0.06823817640542984, 0.08861136436462402, -0.32507210969924927, 0.07969509810209274, 0.35008320212364197, -0.1874212920665741, -0.682237982749939, 0.09432783722877502]} +{"t": 3.9274, "q": [-0.3895510137081146, 0.006950636859983206, -0.0025578520726412535, 0.6268953084945679, -0.27788570523262024, 0.013899574987590313, -0.34143516421318054, 0.0004857605672441423, -0.0002410541201243177, 0.60028076171875, -0.3319840729236603, 0.011946028098464012, -0.024266114458441734, -0.04713898524641991, -0.09509649127721786, -0.007322361692786217, 0.1624102145433426, -0.11428157240152359, 0.9174163937568665, 0.229078471660614, -0.06277336925268173, -0.07572831958532333, 0.07402656227350235, -0.3265581429004669, 0.07907191663980484, 0.3249163031578064, -0.1871456652879715, -0.6952288746833801, 0.09866612404584885]} +{"t": 3.9442, "q": [-0.3899771273136139, 0.007197778206318617, -0.0020355682354420424, 0.6279435753822327, -0.2783041298389435, 0.014605730772018433, -0.3414947986602783, 0.0003834952076431364, -0.00018748654110822827, 0.6002040505409241, -0.33198821544647217, 0.011953335255384445, -0.02520354837179184, -0.047769006341695786, -0.09553060680627823, -0.012331767939031124, 0.16503477096557617, -0.13219799101352692, 0.909003496170044, 0.24260865151882172, -0.07390671968460083, -0.0848483145236969, 0.059070244431495667, -0.32859545946121216, 0.07828095555305481, 0.30263763666152954, -0.1869419366121292, -0.7054274678230286, 0.10427474230527878]} +{"t": 3.9609, "q": [-0.3906588852405548, 0.007436397019773722, -0.0012856220128014684, 0.628753125667572, -0.27877330780029297, 0.01534081157296896, -0.3415033221244812, 0.00015339808305725455, -0.00020087843586225063, 0.5997864603996277, -0.33199262619018555, 0.01198972761631012, -0.02520354837179184, -0.04825478792190552, -0.09588542580604553, -0.018863171339035034, 0.16860605776309967, -0.1527988761663437, 0.9001231789588928, 0.2571335434913635, -0.08853945881128311, -0.09534649550914764, 0.044497426599264145, -0.33179524540901184, 0.07747801393270493, 0.2797597646713257, -0.1867741495370865, -0.7128337025642395, 0.11235211044549942]} +{"t": 3.9776, "q": [-0.3922269642353058, 0.00742787541821599, -0.0008436894277110696, 0.6292815208435059, -0.27898699045181274, 0.015693971887230873, -0.3415118455886841, -0.00010226538870483637, -0.00022766222537029535, 0.5991387963294983, -0.3320007026195526, 0.011975258588790894, -0.02505623735487461, -0.048368316143751144, -0.09616632014513016, -0.0255743358284235, 0.17202156782150269, -0.1720934808254242, 0.8896849155426025, 0.2736477851867676, -0.10111090540885925, -0.10565292835235596, 0.030487868934869766, -0.3369245231151581, 0.07601594179868698, 0.2598899006843567, -0.18640263378620148, -0.719365119934082, 0.11896740645170212]} +{"t": 3.9944, "q": [-0.3970845639705658, 0.007444919552654028, -0.00042854066123254597, 0.629878044128418, -0.27920904755592346, 0.01606154441833496, -0.3422447443008423, -0.00029827404068782926, -5.3567582654068246e-05, 0.5984314680099487, -0.3319965600967407, 0.011967950500547886, -0.02519015595316887, -0.04827595502138138, -0.09686291217803955, -0.03301654011011124, 0.17687517404556274, -0.19241872429847717, 0.8783957958221436, 0.28943103551864624, -0.116175077855587, -0.1170499250292778, 0.01601092517375946, -0.34325218200683594, 0.07303186506032944, 0.23901338875293732, -0.18503643572330475, -0.7270349860191345, 0.1260141283273697]} +{"t": 4.0111, "q": [-0.3980901837348938, 0.007282999809831381, 1.3391895663517062e-05, 0.6302615404129028, -0.2792970538139343, 0.01622735522687435, -0.3433355987071991, -0.0004772384709212929, 0.0002812298189383, 0.597732663154602, -0.33199262619018555, 0.01198972761631012, -0.025431210175156593, -0.04817544296383858, -0.09793837368488312, -0.04079430177807808, 0.18231602013111115, -0.2094123512506485, 0.8661718368530273, 0.30487868189811707, -0.1297292411327362, -0.1288304179906845, 0.0016418388113379478, -0.34946000576019287, 0.06846588104963303, 0.22016219794750214, -0.18423350155353546, -0.7331829071044922, 0.13336046040058136]} +{"t": 4.028, "q": [-0.39833730459213257, 0.007121079135686159, 0.0005892434273846447, 0.6302956342697144, -0.2793557345867157, 0.016342710703611374, -0.3435571491718292, -0.0007584682898595929, 0.0006695947959087789, 0.5968633890151978, -0.3320009410381317, 0.012004361487925053, -0.025484777987003326, -0.0481221005320549, -0.09804335981607437, -0.05150819942355156, 0.1905132234096527, -0.23040871322155, 0.8543434143066406, 0.32128509879112244, -0.1431635618209839, -0.1420130729675293, -0.015112107619643211, -0.35754936933517456, 0.06449910253286362, 0.19995680451393127, -0.1838739663362503, -0.7361670136451721, 0.1405150443315506]} +{"t": 4.0447, "q": [-0.399385541677475, 0.007163689937442541, 0.0010311759542673826, 0.6304149627685547, -0.2795484960079193, 0.016674280166625977, -0.34445199370384216, -0.001133441342972219, 0.0008169056382030249, 0.595943033695221, -0.3320009410381317, 0.012004361487925053, -0.025417817756533623, -0.04824996739625931, -0.0988108441233635, -0.06217416003346443, 0.19926171004772186, -0.247929647564888, 0.8444444537162781, 0.33708029985427856, -0.15620239078998566, -0.15481221675872803, -0.0291815884411335, -0.3662978410720825, 0.0629051998257637, 0.18266355991363525, -0.1838979423046112, -0.7391630411148071, 0.15039004385471344]} +{"t": 4.0614, "q": [-0.4003400206565857, 0.007146645803004503, 0.001272230059839785, 0.6305598616600037, -0.2796071171760559, 0.01676074042916298, -0.3449888825416565, -0.0014146711910143495, 0.0007901218486949801, 0.5948947668075562, -0.33199262619018555, 0.01198972761631012, -0.025136588141322136, -0.04827902466058731, -0.09951086342334747, -0.07400259375572205, 0.20952020585536957, -0.2674519419670105, 0.8341859579086304, 0.3529474139213562, -0.16868995130062103, -0.1688457429409027, -0.04435361921787262, -0.37711960077285767, 0.06223408132791519, 0.16439960896968842, -0.18405373394489288, -0.7437170743942261, 0.16316522657871246]} +{"t": 4.0782, "q": [-0.4012092649936676, 0.007317088078707457, 0.001419540960341692, 0.6307473182678223, -0.2796365022659302, 0.016840076074004173, -0.34532976150512695, -0.0014317154418677092, 0.0009240407962352037, 0.5939062237739563, -0.3320048749446869, 0.011982584372162819, -0.02520354837179184, -0.04837707802653313, -0.09986294060945511, -0.08458466082811356, 0.22044982016086578, -0.2854522466659546, 0.8237716555595398, 0.36723262071609497, -0.1811775118112564, -0.182699516415596, -0.059429772198200226, -0.38912779092788696, 0.06272543221712112, 0.1483047902584076, -0.18471285700798035, -0.7479594945907593, 0.1769111305475235]} +{"t": 4.0949, "q": [-0.40182286500930786, 0.00730856554582715, 0.0013659733813256025, 0.6309007406234741, -0.27972033619880676, 0.017013119533658028, -0.34539794921875, -0.0014231932582333684, 0.0007767299539409578, 0.5925171375274658, -0.3319965600967407, 0.011967950500547886, -0.024801790714263916, -0.04841439425945282, -0.10020342469215393, -0.09623333066701889, 0.2308041900396347, -0.3042914569377899, 0.8137648701667786, 0.3808826506137848, -0.1958102583885193, -0.19669708609580994, -0.0748894214630127, -0.4032691717147827, 0.06279733777046204, 0.12976519763469696, -0.184772789478302, -0.7533643245697021, 0.1920112520456314]} +{"t": 4.1117, "q": [-0.4020444452762604, 0.007300043944269419, 0.001232054433785379, 0.631071150302887, -0.2797831892967224, 0.017121242359280586, -0.34542348980903625, -0.0014231932582333684, 0.0006695947959087789, 0.5914773941040039, -0.33198025822639465, 0.01198233850300312, -0.024493776261806488, -0.04849020764231682, -0.10028622299432755, -0.10675548017024994, 0.24042752385139465, -0.32158470153808594, 0.8035423159599304, 0.39456862211227417, -0.20875321328639984, -0.2105388641357422, -0.0899895504117012, -0.4170030951499939, 0.06401973217725754, 0.1116330549120903, -0.1850484162569046, -0.7585894465446472, 0.20717130601406097]} +{"t": 4.1284, "q": [-0.4019506871700287, 0.007317088078707457, 0.0009508245857432485, 0.6313609480857849, -0.279925674200058, 0.017395202070474625, -0.3457303047180176, -0.0015254586469382048, 0.0007231623749248683, 0.5907444953918457, -0.3319641053676605, 0.012011241167783737, -0.024239331483840942, -0.04846731945872307, -0.10034140944480896, -0.1173495352268219, 0.2493797391653061, -0.33823078870773315, 0.7929961681365967, 0.4070921540260315, -0.22207967936992645, -0.22445255517959595, -0.1065157949924469, -0.4310366213321686, 0.06605704873800278, 0.09275790303945541, -0.18579144775867462, -0.7661155462265015, 0.22277475893497467]} +{"t": 4.1452, "q": [-0.4019506871700287, 0.007351176347583532, 0.0003481892927084118, 0.6320171356201172, -0.2801763117313385, 0.017870960757136345, -0.34611380100250244, -0.0017555557424202561, 0.0006695947959087789, 0.5902161598205566, -0.33181455731391907, 0.012278683483600616, -0.0235027763992548, -0.048421621322631836, -0.1004011258482933, -0.1278596967458725, 0.2588113248348236, -0.35461321473121643, 0.781455397605896, 0.42008304595947266, -0.2350466102361679, -0.2373715490102768, -0.12231100350618362, -0.44532182812690735, 0.06837000697851181, 0.07318766415119171, -0.18673819303512573, -0.7751277089118958, 0.23969648778438568]} +{"t": 4.162, "q": [-0.40209558606147766, 0.007146645803004503, -0.0003214055032003671, 0.6326647996902466, -0.2803139388561249, 0.018253199756145477, -0.34625867009162903, -0.001823732745833695, 0.0007901218486949801, 0.5898923277854919, -0.3314220905303955, 0.012921645306050777, -0.023101020604372025, -0.04842924699187279, -0.1003861129283905, -0.1380702555179596, 0.26716431975364685, -0.3679277002811432, 0.7719758749008179, 0.43257060647010803, -0.2472825050354004, -0.24964340031147003, -0.13757890462875366, -0.45922353863716125, 0.07167764753103256, 0.05342567712068558, -0.18750518560409546, -0.783336877822876, 0.2555995583534241]} +{"t": 4.1787, "q": [-0.4025813341140747, 0.007044380065053701, -0.001044567907229066, 0.6333721280097961, -0.2805265784263611, 0.018765170127153397, -0.34625014662742615, -0.0019600866362452507, 0.0007901218486949801, 0.5896962881088257, -0.3308148980140686, 0.013889545574784279, -0.02252516895532608, -0.04845969378948212, -0.10035642236471176, -0.14757375419139862, 0.27557724714279175, -0.38087067008018494, 0.763011634349823, 0.4439556300640106, -0.25812822580337524, -0.2616635859012604, -0.15207982063293457, -0.47120773792266846, 0.07348726689815521, 0.035904739052057266, -0.18853582441806793, -0.7916419506072998, 0.2715625464916229]} +{"t": 4.1954, "q": [-0.4031778872013092, 0.006788717117160559, -0.0018748653819784522, 0.6343777775764465, -0.28100553154945374, 0.019608383998274803, -0.3460456132888794, -0.0020453077740967274, 0.0007365542696788907, 0.5893383622169495, -0.32983914017677307, 0.015325682237744331, -0.021976100280880928, -0.048474859446287155, -0.10036690533161163, -0.15577095746994019, 0.28376248478889465, -0.3927110731601715, 0.7527052164077759, 0.45228466391563416, -0.27110713720321655, -0.2719700038433075, -0.1655740588903427, -0.4831320643424988, 0.07522498071193695, 0.018371816724538803, -0.1906929910182953, -0.7989523410797119, 0.28645893931388855]} +{"t": 4.2122, "q": [-0.40366363525390625, 0.006481920834630728, -0.0024373249616473913, 0.635698676109314, -0.28195926547050476, 0.02122979797422886, -0.34564507007598877, -0.0020623519085347652, 0.0007365542696788907, 0.5888611078262329, -0.3279610872268677, 0.017369387671351433, -0.02153416909277439, -0.04845969378948212, -0.10035642236471176, -0.16294951736927032, 0.2919117510318756, -0.4024782180786133, 0.739630401134491, 0.4635258615016937, -0.2877412438392639, -0.28309136629104614, -0.18151307106018066, -0.4948046803474426, 0.07659118622541428, -0.0002037318336078897, -0.19347333908081055, -0.8079645037651062, 0.2999531626701355]} +{"t": 4.2289, "q": [-0.40412384271621704, 0.00628591189160943, -0.0029997846577316523, 0.6375309228897095, -0.282954603433609, 0.02289443463087082, -0.34481844305992126, -0.0020964404102414846, 0.0004821082402486354, 0.5879322290420532, -0.32545042037963867, 0.019195055589079857, -0.020596735179424286, -0.048406485468149185, -0.1003703847527504, -0.1699962317943573, 0.3001329302787781, -0.413479745388031, 0.7259324789047241, 0.4701171815395355, -0.3021462857723236, -0.29379329085350037, -0.19566644728183746, -0.505530595779419, 0.07683087140321732, -0.01782054267823696, -0.19452793896198273, -0.8176836967468262, 0.3138309121131897]} +{"t": 4.2457, "q": [-0.40399599075317383, 0.0062262569554150105, -0.003468500915914774, 0.6389626264572144, -0.2838996350765228, 0.024212580174207687, -0.34317365288734436, -0.0020538298413157463, 9.374327055411413e-05, 0.5864238142967224, -0.3208239674568176, 0.02038969099521637, -0.01980661414563656, -0.048330627381801605, -0.10031798481941223, -0.17731860280036926, 0.30667632818222046, -0.42257577180862427, 0.7138283848762512, 0.4762171506881714, -0.3165992498397827, -0.3040158152580261, -0.20979584753513336, -0.5146985054016113, 0.07677094638347626, -0.035053860396146774, -0.1959061324596405, -0.8246944546699524, 0.3263184726238251]} +{"t": 4.2626, "q": [-0.4037318229675293, 0.006081381347030401, -0.0038702578749507666, 0.6399853229522705, -0.284783273935318, 0.02539515122771263, -0.34184420108795166, -0.0019941749051213264, -0.00016070275160018355, 0.5856482982635498, -0.318681925535202, 0.021477947011590004, -0.01916380226612091, -0.048399001359939575, -0.10031450539827347, -0.18480873107910156, 0.31234484910964966, -0.4301258325576782, 0.7038934826850891, 0.4828803837299347, -0.3299137353897095, -0.3126085102558136, -0.22297848761081696, -0.5232672095298767, 0.07667507231235504, -0.05108875036239624, -0.19806328415870667, -0.8321965932846069, 0.33755967020988464]} +{"t": 4.2793, "q": [-0.40352728962898254, 0.0059620714746415615, -0.004379149992018938, 0.6409482955932617, -0.2856128215789795, 0.02641201764345169, -0.3406340777873993, -0.0018748653819784522, -0.0006562029011547565, 0.585494875907898, -0.3186861276626587, 0.02148524485528469, -0.018775437027215958, -0.04854342341423035, -0.1002621278166771, -0.19094465672969818, 0.3168988823890686, -0.436489462852478, 0.6935630440711975, 0.48670336604118347, -0.3397168219089508, -0.3194754719734192, -0.23544208705425262, -0.5312966704368591, 0.07685483992099762, -0.06663229316473007, -0.20013655722141266, -0.838476300239563, 0.3496038317680359]} +{"t": 4.2961, "q": [-0.4035954773426056, 0.005927983205765486, -0.004713947419077158, 0.6422863006591797, -0.28761211037635803, 0.02574951760470867, -0.3399949073791504, -0.0017725999932736158, -0.001044567907229066, 0.5854182243347168, -0.3186984360218048, 0.021478118374943733, -0.01778443716466427, -0.048870399594306946, -0.10008221119642258, -0.19688883423805237, 0.3188523054122925, -0.4384668469429016, 0.6842153668403625, 0.4903106093406677, -0.3527796268463135, -0.3269176781177521, -0.24842099845409393, -0.5388946533203125, 0.07720237970352173, -0.08341021090745926, -0.20232968032360077, -0.8457267880439758, 0.3606173098087311]} +{"t": 4.3128, "q": [-0.40392783284187317, 0.005757540930062532, -0.005236231256276369, 0.6442037224769592, -0.28901827335357666, 0.025962840765714645, -0.3396710753440857, -0.0013464941876009107, -0.001084743533283472, 0.5855204463005066, -0.31871482729911804, 0.021463776007294655, -0.016217585653066635, -0.049083415418863297, -0.09991475939750671, -0.20121514797210693, 0.31948745250701904, -0.43907803297042847, 0.673717200756073, 0.49252769351005554, -0.36462005972862244, -0.33059683442115784, -0.26089659333229065, -0.5448508262634277, 0.07719039171934128, -0.09906160831451416, -0.20377977192401886, -0.8536962866783142, 0.37075597047805786]} +{"t": 4.3295, "q": [-0.40417495369911194, 0.005680841859430075, -0.005316582508385181, 0.6459337472915649, -0.2909788191318512, 0.025968939065933228, -0.3392534852027893, -0.0007073355955071747, -0.0011115273227915168, 0.5855374932289124, -0.3187680244445801, 0.021399013698101044, -0.015253368765115738, -0.049478933215141296, -0.09965014457702637, -0.20472651720046997, 0.31896016001701355, -0.43925780057907104, 0.6621643900871277, 0.49280333518981934, -0.37806636095046997, -0.3331015408039093, -0.2737196981906891, -0.5518855452537537, 0.07687880843877792, -0.11528825014829636, -0.20505009591579437, -0.8603475093841553, 0.3805111348628998]} +{"t": 4.3462, "q": [-0.40398746728897095, 0.0051439483650028706, -0.005343366414308548, 0.647118330001831, -0.29220300912857056, 0.025536900386214256, -0.33846092224121094, -0.0005454153870232403, -0.0012588382232934237, 0.5855886340141296, -0.3189909756183624, 0.021415822207927704, -0.0137802604585886, -0.05034579336643219, -0.0991339161992073, -0.20592494308948517, 0.31778571009635925, -0.44022852182388306, 0.64853835105896, 0.4928632378578186, -0.3918362259864807, -0.3349950611591339, -0.28708210587501526, -0.5583090782165527, 0.07696269452571869, -0.1302565485239029, -0.20717130601406097, -0.8646498918533325, 0.39219576120376587]} +{"t": 4.363, "q": [-0.40394487977027893, 0.0051183816976845264, -0.005410325713455677, 0.6477659940719604, -0.29285958409309387, 0.02564983442425728, -0.3377962112426758, -0.0005368932615965605, -0.0015534599078819156, 0.5856568217277527, -0.3188038170337677, 0.02063012309372425, -0.012280368246138096, -0.05130348727107048, -0.09874212741851807, -0.2067878097295761, 0.3146098852157593, -0.4395454227924347, 0.6370934247970581, 0.4917367398738861, -0.4033410847187042, -0.33541449904441833, -0.29881468415260315, -0.5640735030174255, 0.07699864357709885, -0.14431403577327728, -0.20937639474868774, -0.8685567378997803, 0.40131574869155884]} +{"t": 4.3797, "q": [-0.40392783284187317, 0.0049394178204238415, -0.0053701503202319145, 0.6482262015342712, -0.29333797097206116, 0.025929927825927734, -0.3373786211013794, -0.0006050702068023384, -0.0016605950659140944, 0.585776150226593, -0.317979097366333, 0.018974224105477333, -0.010124272666871548, -0.05264874920248985, -0.0982532724738121, -0.2079143226146698, 0.308545857667923, -0.4391978979110718, 0.624114453792572, 0.4903106093406677, -0.4138752222061157, -0.33539053797721863, -0.3110625445842743, -0.5686275362968445, 0.07679491490125656, -0.15804795920848846, -0.2105388641357422, -0.8750881552696228, 0.4088178873062134]} +{"t": 4.3967, "q": [-0.4039704501628876, 0.004794541280716658, -0.005249623209238052, 0.6486437916755676, -0.29370811581611633, 0.02610918879508972, -0.33707183599472046, -0.0006391586503013968, -0.0018212978029623628, 0.5857250094413757, -0.31785497069358826, 0.018929414451122284, -0.007673555985093117, -0.05372817441821098, -0.0976535826921463, -0.2090648114681244, 0.3012953996658325, -0.43905407190322876, 0.6130769848823547, 0.4881174862384796, -0.42176082730293274, -0.335102915763855, -0.32310670614242554, -0.5719711184501648, 0.07662713527679443, -0.17065536975860596, -0.21212078630924225, -0.8806607723236084, 0.4153013527393341]} +{"t": 4.4134, "q": [-0.40402156114578247, 0.004470700863748789, -0.004968393128365278, 0.6491124629974365, -0.2939474582672119, 0.02550051547586918, -0.336961030960083, -0.0006476807757280767, -0.001794514013454318, 0.5857420563697815, -0.31786397099494934, 0.019031094387173653, -0.005222839303314686, -0.05480784550309181, -0.09694231301546097, -0.20956814289093018, 0.2903418242931366, -0.4392218589782715, 0.601392388343811, 0.4834795892238617, -0.4317077398300171, -0.33364084362983704, -0.33578601479530334, -0.5741522312164307, 0.07659118622541428, -0.18314293026924133, -0.21514080464839935, -0.8847953677177429, 0.4219166338443756]} +{"t": 4.4301, "q": [-0.40403860807418823, 0.004257648717612028, -0.004847866017371416, 0.6495130062103271, -0.2940584123134613, 0.025044308975338936, -0.33688434958457947, -0.0006391586503013968, -0.0017811221769079566, 0.5857676267623901, -0.3179057538509369, 0.019104091450572014, -0.0018480815924704075, -0.05623685196042061, -0.09605041891336441, -0.2100594937801361, 0.276559978723526, -0.43847882747650146, 0.5860406160354614, 0.48026782274246216, -0.441834419965744, -0.3316514492034912, -0.3471111059188843, -0.575614333152771, 0.07629157602787018, -0.19577430188655853, -0.21741782128810883, -0.8875277638435364, 0.4299580454826355]} +{"t": 4.4469, "q": [-0.4039022624492645, 0.004215037915855646, -0.004673771560192108, 0.6499476432800293, -0.2943974435329437, 0.02444969117641449, -0.33661162853240967, -0.0005198490689508617, -0.0018748653819784522, 0.5858101844787598, -0.3179472088813782, 0.0191335566341877, 0.0029194331727921963, -0.05784805864095688, -0.09512389451265335, -0.21232451498508453, 0.2613879442214966, -0.4382750988006592, 0.5728819370269775, 0.47847020626068115, -0.4487612843513489, -0.3302612900733948, -0.35585957765579224, -0.5771483182907104, 0.07589609920978546, -0.20660804212093353, -0.21946711838245392, -0.8902002573013306, 0.43758001923561096]} +{"t": 4.4636, "q": [-0.40402156114578247, 0.00414686044678092, -0.004646987654268742, 0.6506720185279846, -0.2947447597980499, 0.02384057641029358, -0.3361770212650299, -0.0003834952076431364, -0.0025980276986956596, 0.585776150226593, -0.31800124049186707, 0.019184935837984085, 0.005571028683334589, -0.059147510677576065, -0.0943770781159401, -0.21472136676311493, 0.24579645693302155, -0.43755605816841125, 0.5596873164176941, 0.474335640668869, -0.4559877812862396, -0.32866737246513367, -0.36840707063674927, -0.5774958729743958, 0.07592006772756577, -0.2154524028301239, -0.22122879326343536, -0.8948021531105042, 0.4437159299850464]} +{"t": 4.4803, "q": [-0.4041323661804199, 0.0041639055125415325, -0.004405933897942305, 0.6512686014175415, -0.2952774167060852, 0.024214448407292366, -0.33557194471359253, -0.0003579288604669273, -0.00354885240085423, 0.5857591032981873, -0.3186320662498474, 0.018538279458880424, 0.006977177690714598, -0.06037095561623573, -0.09356899559497833, -0.2163512110710144, 0.23042069375514984, -0.4375440776348114, 0.5467323660850525, 0.47014114260673523, -0.4626629948616028, -0.3269656300544739, -0.37957635521888733, -0.5771483182907104, 0.0758361741900444, -0.22439263761043549, -0.22396120429039001, -0.8985891938209534, 0.44926464557647705]} +{"t": 4.4971, "q": [-0.4041920006275177, 0.004189471248537302, -0.004646987654268742, 0.6518906950950623, -0.2956770360469818, 0.024545498192310333, -0.3347538113594055, -0.0003834952076431364, -0.004633595701307058, 0.5857335329055786, -0.31933435797691345, 0.018073808401823044, 0.00798156950622797, -0.06138917803764343, -0.09287181496620178, -0.21790917217731476, 0.21526065468788147, -0.43698081374168396, 0.5340170860290527, 0.4665578603744507, -0.46761247515678406, -0.3251919448375702, -0.3894393742084503, -0.576896607875824, 0.07571633160114288, -0.232853502035141, -0.22605843842029572, -0.9011058807373047, 0.45532864332199097]} +{"t": 4.5138, "q": [-0.40412384271621704, 0.004274692852050066, -0.0053701503202319145, 0.6527940630912781, -0.2961394786834717, 0.024941449984908104, -0.33355221152305603, -0.0003323625132907182, -0.005972785409539938, 0.5857931971549988, -0.32004380226135254, 0.018037578091025352, 0.008463677950203419, -0.06239193677902222, -0.09221606701612473, -0.22073744237422943, 0.19983695447444916, -0.43646547198295593, 0.5216613411903381, 0.462758868932724, -0.47330498695373535, -0.32423320412635803, -0.3988470137119293, -0.576728880405426, 0.07593204826116562, -0.24010396003723145, -0.23008513450622559, -0.9030832648277283, 0.46311840415000916]} +{"t": 4.5305, "q": [-0.40416646003723145, 0.004351391922682524, -0.006160271819680929, 0.6539615988731384, -0.2971985638141632, 0.02570417709648609, -0.33271703124046326, -5.1132694352418184e-05, -0.0070307450369000435, 0.5859465599060059, -0.3205014169216156, 0.017962394282221794, 0.008450286462903023, -0.06313638389110565, -0.09173427522182465, -0.2248120754957199, 0.18565961718559265, -0.4323548972606659, 0.5140153765678406, 0.4604698717594147, -0.4779309034347534, -0.32402947545051575, -0.40772730112075806, -0.5766449570655823, 0.07679491490125656, -0.24626384675502777, -0.23507057130336761, -0.9047011733055115, 0.470824271440506]} +{"t": 4.5473, "q": [-0.4043198525905609, 0.004598533269017935, -0.007003961596637964, 0.654899001121521, -0.2985365092754364, 0.02467859536409378, -0.3324698805809021, 0.0004346278728917241, -0.007593204732984304, 0.5859465599060059, -0.3213331699371338, 0.01820993982255459, 0.008878827095031738, -0.0637364536523819, -0.09141422063112259, -0.22804781794548035, 0.17644375562667847, -0.42946669459342957, 0.5064533352851868, 0.4567188322544098, -0.4825328588485718, -0.32492831349372864, -0.41501373052597046, -0.5765491127967834, 0.07737015932798386, -0.25303491950035095, -0.23843814432621002, -0.9064148664474487, 0.47897353768348694]} +{"t": 4.5641, "q": [-0.40435394644737244, 0.004930895287543535, -0.007526245433837175, 0.6557597517967224, -0.2992931306362152, 0.02474038116633892, -0.33220571279525757, 0.0009800433181226254, -0.007619988638907671, 0.5857505798339844, -0.32143646478652954, 0.018218185752630234, 0.009200232103466988, -0.0640934407711029, -0.0911482721567154, -0.228107750415802, 0.17143434286117554, -0.4293108880519867, 0.4957874119281769, 0.45109823346138, -0.4864996373653412, -0.3288351595401764, -0.4211736023426056, -0.5764891505241394, 0.07720237970352173, -0.25887125730514526, -0.2428603172302246, -0.9079488515853882, 0.4852412939071655]} +{"t": 4.5809, "q": [-0.4043794870376587, 0.004990550223737955, -0.0076869479380548, 0.6563647985458374, -0.3001404404640198, 0.024714957922697067, -0.33220571279525757, 0.0010908307740464807, -0.007445894181728363, 0.5857420563697815, -0.32146114110946655, 0.01820390485227108, 0.009347543120384216, -0.06410117447376251, -0.09103265404701233, -0.22768829762935638, 0.1679229587316513, -0.4319474399089813, 0.4835515022277832, 0.4426373541355133, -0.49375006556510925, -0.3354025185108185, -0.42681819200515747, -0.5765011310577393, 0.07696269452571869, -0.2633054256439209, -0.2467791587114334, -0.9092551469802856, 0.49045440554618835]} +{"t": 4.5976, "q": [-0.40436244010925293, 0.0049394178204238415, -0.0074191102758049965, 0.6567738652229309, -0.30065444111824036, 0.025117844343185425, -0.3322312831878662, 0.0010823087068274617, -0.006990569643676281, 0.5857591032981873, -0.32148194313049316, 0.018225878477096558, 0.008959177881479263, -0.06375236064195633, -0.0908404216170311, -0.22738869488239288, 0.16235029697418213, -0.4372204840183258, 0.47053664922714233, 0.434176504611969, -0.5035411715507507, -0.3442828357219696, -0.43134820461273193, -0.5764651894569397, 0.07693872600793839, -0.2666250467300415, -0.2506980001926422, -0.9106093645095825, 0.49569153785705566]} +{"t": 4.6143, "q": [-0.4043368995189667, 0.0048968070186674595, -0.007044136989861727, 0.6573107838630676, -0.30114060640335083, 0.0255133043974638, -0.3322312831878662, 0.0010482202051207423, -0.006508461199700832, 0.5857250094413757, -0.32146573066711426, 0.01826927252113819, 0.008249407634139061, -0.06309270113706589, -0.09043195843696594, -0.22581875324249268, 0.15315839648246765, -0.4400607645511627, 0.45867225527763367, 0.4220125079154968, -0.512637197971344, -0.35443344712257385, -0.4343802332878113, -0.5768726468086243, 0.07662713527679443, -0.2693933844566345, -0.2526035010814667, -0.9131859540939331, 0.5012522339820862]} +{"t": 4.6311, "q": [-0.40436244010925293, 0.0048968070186674595, -0.006709339562803507, 0.6579328775405884, -0.30173054337501526, 0.025799542665481567, -0.33225682377815247, 0.0010226538870483637, -0.00613348837941885, 0.5856823921203613, -0.32147446274757385, 0.018341971561312675, 0.007780691608786583, -0.06253189593553543, -0.08991041779518127, -0.22376945614814758, 0.1438107043504715, -0.4424695670604706, 0.4487612843513489, 0.4118618667125702, -0.5212059617042542, -0.36444029211997986, -0.43593817949295044, -0.5768486857414246, 0.07620768994092941, -0.2721497714519501, -0.25278326869010925, -0.9179437160491943, 0.5064173936843872]} +{"t": 4.6478, "q": [-0.4045499265193939, 0.004905329551547766, -0.006535245105624199, 0.6591004133224487, -0.30249056220054626, 0.025889338925480843, -0.3322483003139496, 0.0010567422723397613, -0.005892434157431126, 0.5856653451919556, -0.3214215934276581, 0.018464889377355576, 0.006749515421688557, -0.06203927472233772, -0.08923590183258057, -0.22243919968605042, 0.13465476036071777, -0.4454296827316284, 0.43960535526275635, 0.39737293124198914, -0.5290915369987488, -0.3756934702396393, -0.43651342391967773, -0.5767768025398254, 0.07596800476312637, -0.27564916014671326, -0.25280722975730896, -0.9224497675895691, 0.5108036398887634]} +{"t": 4.6645, "q": [-0.40494194626808167, 0.004973506089299917, -0.006548637058585882, 0.6606429219245911, -0.30327945947647095, 0.0257110632956028, -0.33222275972366333, 0.0011675298446789384, -0.005892434157431126, 0.58570796251297, -0.3214227557182312, 0.01863914728164673, 0.005946001503616571, -0.061425309628248215, -0.08848703652620316, -0.2215403914451599, 0.12752413749694824, -0.44896504282951355, 0.430257648229599, 0.3832075893878937, -0.5341368913650513, -0.3851969540119171, -0.43656134605407715, -0.5766569375991821, 0.07577625662088394, -0.27884894609451294, -0.2532027065753937, -0.9262248277664185, 0.5146505832672119]} +{"t": 4.6813, "q": [-0.4055555462837219, 0.0051183816976845264, -0.006548637058585882, 0.6624155044555664, -0.3045152723789215, 0.0258491113781929, -0.33222275972366333, 0.0014572817599400878, -0.005812082905322313, 0.5858698487281799, -0.32151544094085693, 0.018915930762887, 0.0053701503202319145, -0.06072021275758743, -0.08773546665906906, -0.2213965803384781, 0.1203935295343399, -0.45200902223587036, 0.4227195680141449, 0.36971333622932434, -0.5407642126083374, -0.3973369896411896, -0.436117947101593, -0.5765970349311829, 0.07486545294523239, -0.2823004126548767, -0.25313079357147217, -0.9296523332595825, 0.5188810229301453]} +{"t": 4.698, "q": [-0.40604132413864136, 0.005357001442462206, -0.006508461199700832, 0.6639665365219116, -0.3055304288864136, 0.02649610862135887, -0.3322397768497467, 0.001568069215863943, -0.005477285478264093, 0.5859636068344116, -0.32157936692237854, 0.019214212894439697, 0.0036827712319791317, -0.059893302619457245, -0.08707200735807419, -0.2214684784412384, 0.11546801030635834, -0.4558199942111969, 0.4157567322254181, 0.35291147232055664, -0.5479307770729065, -0.4083385169506073, -0.43575841188430786, -0.5766090154647827, 0.07389473170042038, -0.2858477532863617, -0.25275930762290955, -0.9322768449783325, 0.5232073068618774]} +{"t": 4.7148, "q": [-0.4059901833534241, 0.005612664390355349, -0.006548637058585882, 0.6646312475204468, -0.3062900900840759, 0.027477333322167397, -0.33222275972366333, 0.0015765913994982839, -0.004539852496236563, 0.5859721302986145, -0.3214988708496094, 0.019532905891537666, 0.002356973709538579, -0.0592561811208725, -0.08648917078971863, -0.22136062383651733, 0.11174091696739197, -0.4584924876689911, 0.40844637155532837, 0.33950111269950867, -0.5528083443641663, -0.4195916950702667, -0.43536293506622314, -0.5766209959983826, 0.07315170764923096, -0.28897562623023987, -0.2526754140853882, -0.9361836910247803, 0.5258917808532715]} +{"t": 4.7315, "q": [-0.40577712655067444, 0.005587098654359579, -0.006320974789559841, 0.6648017168045044, -0.30698511004447937, 0.028502315282821655, -0.332290917634964, 0.0014998923288658261, -0.0032006630208343267, 0.5858442783355713, -0.32140591740608215, 0.0198296457529068, 0.0015266761183738708, -0.05876299738883972, -0.08609738200902939, -0.2214684784412384, 0.1073906421661377, -0.46027815341949463, 0.4023224115371704, 0.3229868412017822, -0.5571945905685425, -0.43229496479034424, -0.43503937125205994, -0.5770044922828674, 0.07203717529773712, -0.2923072278499603, -0.2526514232158661, -0.9419121742248535, 0.5276175141334534]} +{"t": 4.7482, "q": [-0.40559816360473633, 0.005391089711338282, -0.005276407115161419, 0.6650147438049316, -0.3071795701980591, 0.028769338503479958, -0.33229944109916687, 0.001312405802309513, -0.0022096626926213503, 0.585776150226593, -0.32132670283317566, 0.02029327116906643, 0.0008436894277110696, -0.058163415640592575, -0.08566290885210037, -0.22133666276931763, 0.10373545438051224, -0.4610091745853424, 0.3960786461830139, 0.3070957660675049, -0.5612572431564331, -0.44439902901649475, -0.4341525137424469, -0.5778793692588806, 0.06980811059474945, -0.2958066463470459, -0.25248366594314575, -0.94666987657547, 0.5290436148643494]} +{"t": 4.765, "q": [-0.4053765833377838, 0.00528882397338748, -0.0041247038170695305, 0.665509045124054, -0.30712971091270447, 0.028537847101688385, -0.33226534724235535, 0.0011078750248998404, -0.0012588382232934237, 0.5857505798339844, -0.32122698426246643, 0.020778486505150795, 5.3567582654068246e-05, -0.057434841990470886, -0.08517909795045853, -0.22136062383651733, 0.10145845264196396, -0.462015837430954, 0.3899906575679779, 0.29205557703971863, -0.5657153725624084, -0.45715025067329407, -0.4327024221420288, -0.5792815089225769, 0.06628475338220596, -0.2991502285003662, -0.25223198533058167, -0.9511879682540894, 0.5309491157531738]} +{"t": 4.7817, "q": [-0.4051038920879364, 0.00520360330119729, -0.0029997846577316523, 0.6660629510879517, -0.30673614144325256, 0.02764906734228134, -0.3322397768497467, 0.0008692557457834482, -0.00036158118746243417, 0.5858017206192017, -0.32121551036834717, 0.020901737734675407, -0.0007365542696788907, -0.05641765892505646, -0.08463725447654724, -0.22140856087207794, 0.1007753536105156, -0.46272292733192444, 0.38474157452583313, 0.2759367823600769, -0.5688312649726868, -0.46945804357528687, -0.43128830194473267, -0.5819779634475708, 0.0634564757347107, -0.3017508089542389, -0.25174063444137573, -0.9543997049331665, 0.5336096286773682]} +{"t": 4.7986, "q": [-0.4050186574459076, 0.005084293428808451, -0.0021962709724903107, 0.666480541229248, -0.3063182830810547, 0.026572125032544136, -0.33216309547424316, 0.0005539375124499202, 0.0003214055032003671, 0.5857676267623901, -0.32120829820632935, 0.021046798676252365, -0.001379365217871964, -0.05539264529943466, -0.08404107391834259, -0.22163626551628113, 0.10037986934185028, -0.4633101522922516, 0.3802115321159363, 0.26117223501205444, -0.5701255202293396, -0.48266467452049255, -0.4298262298107147, -0.5855971574783325, 0.06083192676305771, -0.3039678931236267, -0.25128522515296936, -0.9589297771453857, 0.5356229543685913]} +{"t": 4.8153, "q": [-0.4050101339817047, 0.005033161025494337, -0.0014463247498497367, 0.6666680574417114, -0.306462824344635, 0.026766950264573097, -0.33217161893844604, 0.00015339808305725455, 0.0008838651119731367, 0.5857250094413757, -0.32122135162353516, 0.021141283214092255, -0.002464108867570758, -0.0544435977935791, -0.08351696282625198, -0.22224745154380798, 0.10041582584381104, -0.4646283984184265, 0.37370410561561584, 0.24444223940372467, -0.5702813267707825, -0.4965543746948242, -0.42859184741973877, -0.5901392102241516, 0.05837516114115715, -0.3061370253562927, -0.2507818937301636, -0.9651735424995422, 0.5380797386169434]} +{"t": 4.8322, "q": [-0.4050101339817047, 0.004930895287543535, -0.0010579597437754273, 0.6667958498001099, -0.3066156208515167, 0.0270196795463562, -0.332103431224823, -0.00034940673504024744, 0.001232054433785379, 0.5856397747993469, -0.3211938440799713, 0.021336937323212624, -0.004258622881025076, -0.05357787013053894, -0.08292102813720703, -0.22283469140529633, 0.10263290256261826, -0.46579086780548096, 0.3668011724948883, 0.22834742069244385, -0.5707007646560669, -0.511726438999176, -0.42720168828964233, -0.5950407385826111, 0.05634982883930206, -0.30897730588912964, -0.2505062520503998, -0.9708300828933716, 0.5416150689125061]} +{"t": 4.849, "q": [-0.40507832169532776, 0.004913851153105497, -0.0009910003282129765, 0.6670941710472107, -0.3067728281021118, 0.02730858512222767, -0.331915944814682, -0.000690291344653815, 0.001379365217871964, 0.5855289697647095, -0.32124483585357666, 0.021540673449635506, -0.006535245105624199, -0.052605804055929184, -0.08223181962966919, -0.22277475893497467, 0.10495784133672714, -0.4665818512439728, 0.36047351360321045, 0.2142539769411087, -0.570688784122467, -0.5267426371574402, -0.4262429475784302, -0.5986480116844177, 0.05457616224884987, -0.31236883997917175, -0.25026658177375793, -0.9746650457382202, 0.5453181862831116]} +{"t": 4.8657, "q": [-0.40517204999923706, 0.004888284485787153, -0.0009776083752512932, 0.66752028465271, -0.30699223279953003, 0.027691327035427094, -0.3317795991897583, -0.001133441342972219, 0.0014597165863960981, 0.5855119228363037, -0.3213830292224884, 0.021738072857260704, -0.008785083889961243, -0.05170198157429695, -0.081529900431633, -0.22258301079273224, 0.1086609736084938, -0.4684513807296753, 0.3546491861343384, 0.19811122119426727, -0.5702933073043823, -0.5416390299797058, -0.4253201484680176, -0.6014043688774109, 0.0529702752828598, -0.31605997681617737, -0.24964340031147003, -0.9791231751441956, 0.5478588342666626]} +{"t": 4.8825, "q": [-0.4053765833377838, 0.004862718749791384, -0.0008436894277110696, 0.6679633855819702, -0.30733582377433777, 0.028276249766349792, -0.33176255226135254, -0.0014061490073800087, 0.0016472031129524112, 0.5854693055152893, -0.32147130370140076, 0.02189141884446144, -0.010432287119328976, -0.05092716962099075, -0.08081697672605515, -0.22240325808525085, 0.11175289750099182, -0.47008123993873596, 0.35014310479164124, 0.18308301270008087, -0.5702573657035828, -0.556115984916687, -0.4247928559780121, -0.6045562028884888, 0.05167597904801369, -0.31958332657814026, -0.24840901792049408, -0.9846838712692261, 0.5495126843452454]} +{"t": 4.8992, "q": [-0.4054788649082184, 0.00481158634647727, -0.0007767299539409578, 0.6682105660438538, -0.3074931204319, 0.028550680726766586, -0.3317455053329468, -0.0016788567882031202, 0.0017677302239462733, 0.5853926539421082, -0.3215763568878174, 0.022073963657021523, -0.011865219101309776, -0.05053984001278877, -0.08028938621282578, -0.22230738401412964, 0.11537213623523712, -0.4721904695034027, 0.3447382152080536, 0.16683240234851837, -0.5695623159408569, -0.5704491138458252, -0.42422959208488464, -0.6082113981246948, 0.05053747817873955, -0.3229748606681824, -0.24685107171535492, -0.989693284034729, 0.5514780879020691]} +{"t": 4.916, "q": [-0.4055555462837219, 0.004786019679158926, -0.0008169056382030249, 0.6682190895080566, -0.30756765604019165, 0.028680667281150818, -0.33167731761932373, -0.002028263406828046, 0.0017677302239462733, 0.5853415131568909, -0.32170677185058594, 0.02231483720242977, -0.013164233416318893, -0.05042596161365509, -0.07995978742837906, -0.2223433256149292, 0.12033360451459885, -0.4747191369533539, 0.34069955348968506, 0.15221165120601654, -0.5694664120674133, -0.5832722187042236, -0.4240378439426422, -0.611339271068573, 0.049566756933927536, -0.3258870244026184, -0.24475383758544922, -0.9933724403381348, 0.5536352396011353]} +{"t": 4.9328, "q": [-0.4055640697479248, 0.0046326215378940105, -0.0008570813224650919, 0.6682446599006653, -0.30767112970352173, 0.028861209750175476, -0.3315409719944, -0.002266882685944438, 0.0017275545978918672, 0.5852818489074707, -0.3218286633491516, 0.02252659946680069, -0.014302544295787811, -0.050357576459646225, -0.07969209551811218, -0.22216357290744781, 0.12628977000713348, -0.47710397839546204, 0.3355703055858612, 0.13946042954921722, -0.5694783926010132, -0.5983843207359314, -0.42333078384399414, -0.6134005784988403, 0.04827246069908142, -0.32790037989616394, -0.24270452558994293, -0.9968957901000977, 0.5551692247390747]} +{"t": 4.9496, "q": [-0.40550440549850464, 0.004581489134579897, -0.0007901218486949801, 0.6683809757232666, -0.3078283965587616, 0.029106685891747475, -0.33143019676208496, -0.0024202808272093534, 0.001794514013454318, 0.5852562785148621, -0.32185807824134827, 0.022577714174985886, -0.015695301815867424, -0.050084032118320465, -0.07943429797887802, -0.22191189229488373, 0.13320466876029968, -0.47974053025245667, 0.3288111984729767, 0.12356934696435928, -0.5698019862174988, -0.6155697107315063, -0.4214732050895691, -0.6139518618583679, 0.046606652438640594, -0.3290868103504181, -0.2407391220331192, -1.000982403755188, 0.5563796162605286]} +{"t": 4.9663, "q": [-0.4054192006587982, 0.004538878332823515, -0.0006562029011547565, 0.6685258746147156, -0.30787393450737, 0.029186120256781578, -0.33134496212005615, -0.002403236459940672, 0.002048959955573082, 0.5852221846580505, -0.3218749761581421, 0.022621458396315575, -0.016686301678419113, -0.0497269406914711, -0.07902870327234268, -0.2218399941921234, 0.1396401971578598, -0.48256880044937134, 0.32163262367248535, 0.10915232449769974, -0.5698139667510986, -0.6304541230201721, -0.42003512382507324, -0.613867998123169, 0.04422179237008095, -0.3296261131763458, -0.239540696144104, -1.006291389465332, 0.5572544932365417]} +{"t": 4.9831, "q": [-0.40540215373039246, 0.004513311665505171, -0.000522283953614533, 0.66856849193573, -0.3078988194465637, 0.02924393117427826, -0.33130234479904175, -0.0024458470288664103, 0.0021828790195286274, 0.5851795673370361, -0.3218059539794922, 0.022729618474841118, -0.017168410122394562, -0.04924827814102173, -0.0784895196557045, -0.2219957858324051, 0.14542856812477112, -0.48556485772132874, 0.314861536026001, 0.09686849266290665, -0.5693106055259705, -0.6447872519493103, -0.4180217683315277, -0.6138439774513245, 0.0412377193570137, -0.3308125436306, -0.23780298233032227, -1.0105817317962646, 0.5586925745010376]} +{"t": 5.0001, "q": [-0.4053424894809723, 0.004453656729310751, -0.00042854066123254597, 0.6685770153999329, -0.3079070746898651, 0.029258370399475098, -0.3312256634235382, -0.002514024032279849, 0.0023034061305224895, 0.5851625204086304, -0.32179003953933716, 0.022787541151046753, -0.017422856763005257, -0.048815127462148666, -0.07789169996976852, -0.22150443494319916, 0.15005448460578918, -0.48633185029029846, 0.3103794455528259, 0.08319449424743652, -0.5689151287078857, -0.6584492921829224, -0.41579270362854004, -0.6139518618583679, 0.03899667039513588, -0.3320229649543762, -0.23547804355621338, -1.0131584405899048, 0.5606100559234619]} +{"t": 5.017, "q": [-0.4053339660167694, 0.004376957658678293, -0.0003883649769704789, 0.6685599684715271, -0.3079112470149994, 0.029280085116624832, -0.3311830461025238, -0.0026077672373503447, 0.0023301898036152124, 0.5851966142654419, -0.3217739760875702, 0.022830922156572342, -0.01778443716466427, -0.04844260588288307, -0.07713571190834045, -0.220917209982872, 0.15617842972278595, -0.4881893992424011, 0.3056217133998871, 0.06988001614809036, -0.5686994194984436, -0.6726385951042175, -0.41364753246307373, -0.6138200163841248, 0.03733086213469505, -0.3329817056655884, -0.23390810191631317, -1.01539945602417, 0.5626713633537292]} +{"t": 5.0337, "q": [-0.40532544255256653, 0.004368436057120562, -0.00037497308221645653, 0.6685940623283386, -0.307902991771698, 0.029280103743076324, -0.33116599917411804, -0.002633333671838045, 0.0023435817565768957, 0.5851966142654419, -0.3217495381832123, 0.02285970374941826, -0.017864787951111794, -0.04803210124373436, -0.07621293514966965, -0.22083331644535065, 0.16247014701366425, -0.49135324358940125, 0.3001568913459778, 0.05613411217927933, -0.5688073039054871, -0.686803936958313, -0.4112387001514435, -0.6135324239730835, 0.036324188113212585, -0.3336528241634369, -0.23280556499958038, -1.0167895555496216, 0.5646128058433533]} +{"t": 5.0506, "q": [-0.4053424894809723, 0.004368436057120562, -0.0003883649769704789, 0.668636679649353, -0.3078864514827728, 0.02926570363342762, -0.3311404287815094, -0.0026759442407637835, 0.0023301898036152124, 0.5851966142654419, -0.32174938917160034, 0.022845180705189705, -0.017757654190063477, -0.04760625958442688, -0.07517005503177643, -0.22083331644535065, 0.16776716709136963, -0.49596714973449707, 0.2937573194503784, 0.0406145378947258, -0.5687953233718872, -0.6982489228248596, -0.4084104001522064, -0.6133646368980408, 0.03540140017867088, -0.33424004912376404, -0.23182284832000732, -1.017700433731079, 0.5660508871078491]} +{"t": 5.0673, "q": [-0.40535101294517517, 0.004334347788244486, -0.00042854066123254597, 0.6685855388641357, -0.3078823387622833, 0.029272960498929024, -0.3310893177986145, -0.002718554809689522, 0.0023034061305224895, 0.5852221846580505, -0.32176586985588074, 0.022845370694994926, -0.017409464344382286, -0.04737802594900131, -0.07420191913843155, -0.22021013498306274, 0.17193767428398132, -0.49841195344924927, 0.28830450773239136, 0.02683268114924431, -0.5682200789451599, -0.7087470889091492, -0.40560609102249146, -0.6133526563644409, 0.03389138728380203, -0.334695428609848, -0.2307322919368744, -1.0184674263000488, 0.5671534538269043]} +{"t": 5.084, "q": [-0.40536805987358093, 0.0043002585880458355, -0.0004553244507405907, 0.668636679649353, -0.3078988492488861, 0.029272884130477905, -0.33107227087020874, -0.00276116537861526, 0.0022230546455830336, 0.5852988958358765, -0.32178667187690735, 0.022867392748594284, -0.017235370352864265, -0.04688357561826706, -0.07314349710941315, -0.2193952053785324, 0.17712685465812683, -0.4993347227573395, 0.28419390320777893, 0.01507615577429533, -0.5675010085105896, -0.7205156087875366, -0.40376052260398865, -0.6133167147636414, 0.03212970867753029, -0.33503100275993347, -0.23009712994098663, -1.0192583799362183, 0.5679563879966736]} +{"t": 5.1008, "q": [-0.40535101294517517, 0.0043002585880458355, -0.00046871634549461305, 0.6686025857925415, -0.30788227915763855, 0.029244007542729378, -0.3310893177986145, -0.002752643311396241, 0.0022498385515064, 0.5852988958358765, -0.3217947781085968, 0.022852962836623192, -0.017235370352864265, -0.046214163303375244, -0.07208693027496338, -0.21858029067516327, 0.18277141451835632, -0.5009406208992004, 0.2798556387424469, 0.002061286708340049, -0.5673931241035461, -0.7311336398124695, -0.4031014144420624, -0.613280713558197, 0.030907316133379936, -0.3353425860404968, -0.2295578271150589, -1.0195579528808594, 0.5683159232139587]} +{"t": 5.1176, "q": [-0.4052998721599579, 0.004291736986488104, -0.0004821082402486354, 0.6685940623283386, -0.30788227915763855, 0.029244007542729378, -0.3310978412628174, -0.0027441212441772223, 0.0022498385515064, 0.5853244662284851, -0.3218032717704773, 0.02288210578262806, -0.017422856763005257, -0.045362383127212524, -0.07102569192647934, -0.21781329810619354, 0.18822424113750458, -0.5027861595153809, 0.2745945453643799, -0.01170858833938837, -0.5674770474433899, -0.741404116153717, -0.40278980135917664, -0.6131489276885986, 0.029996516183018684, -0.336073637008667, -0.22864703834056854, -1.0196537971496582, 0.5683998465538025]} +{"t": 5.1343, "q": [-0.40525728464126587, 0.004283214453607798, -0.0004821082402486354, 0.66856849193573, -0.30787813663482666, 0.029222309589385986, -0.3310978412628174, -0.002752643311396241, 0.0022632302716374397, 0.5853500366210938, -0.321799099445343, 0.022874796763062477, -0.017382681369781494, -0.044411707669496536, -0.07009845227003098, -0.21698638796806335, 0.1911124438047409, -0.502918004989624, 0.27078357338905334, -0.02377670258283615, -0.5671414732933044, -0.7488223314285278, -0.4022505283355713, -0.6126455664634705, 0.0294811949133873, -0.3373918831348419, -0.22707709670066833, -1.0197616815567017, 0.568375825881958]} +{"t": 5.1512, "q": [-0.40527433156967163, 0.004308781120926142, -0.0005088920588605106, 0.6685770153999329, -0.30788642168045044, 0.029236748814582825, -0.3310978412628174, -0.0027441212441772223, 0.0022498385515064, 0.5854267477989197, -0.32182812690734863, 0.022896932438015938, -0.017288938164711, -0.0434686653316021, -0.0694175437092781, -0.21584787964820862, 0.1932336539030075, -0.5026783347129822, 0.2674759328365326, -0.037642452865839005, -0.5659430623054504, -0.7533044219017029, -0.4018310606479645, -0.6118426322937012, 0.029349368065595627, -0.3389498293399811, -0.22548319399356842, -1.0199174880981445, 0.568375825881958]} +{"t": 5.1681, "q": [-0.40525728464126587, 0.0043002585880458355, -0.0005892434273846447, 0.6685429215431213, -0.30787402391433716, 0.02922956831753254, -0.33111485838890076, -0.0027441212441772223, 0.0022096626926213503, 0.5854437351226807, -0.3218485116958618, 0.022875383496284485, -0.0171282347291708, -0.042556002736091614, -0.06879783421754837, -0.2145535796880722, 0.1957862824201584, -0.5026783347129822, 0.2645757496356964, -0.04897952824831009, -0.5649603605270386, -0.760614812374115, -0.40175917744636536, -0.6103805303573608, 0.029229525476694107, -0.3402681052684784, -0.22406905889511108, -1.0201092958450317, 0.5683638453483582]} +{"t": 5.1848, "q": [-0.4052061438560486, 0.004317303653806448, -0.0007231623749248683, 0.6684747338294983, -0.3078657388687134, 0.02922958694398403, -0.33110636472702026, -0.0027355989441275597, 0.0021159194875508547, 0.5854693055152893, -0.3218485116958618, 0.022875383496284485, -0.016847005113959312, -0.041514113545417786, -0.06816016882658005, -0.21411016583442688, 0.19880631566047668, -0.5025944113731384, 0.2611842155456543, -0.057979680597782135, -0.5642173290252686, -0.767709493637085, -0.40173518657684326, -0.6088225841522217, 0.029205556958913803, -0.3412148654460907, -0.22335000336170197, -1.0201332569122314, 0.5683518648147583]} +{"t": 5.2015, "q": [-0.4051890969276428, 0.004334347788244486, -0.0007767299539409578, 0.6684321165084839, -0.3078491985797882, 0.029200708493590355, -0.3310978412628174, -0.0027355989441275597, 0.0020623519085347652, 0.5855289697647095, -0.3218526840209961, 0.022882692515850067, -0.016592558473348618, -0.040571004152297974, -0.06766088306903839, -0.21409818530082703, 0.2016705423593521, -0.5030139088630676, 0.25682196021080017, -0.06852579861879349, -0.5631267428398132, -0.7729105949401855, -0.40175917744636536, -0.6075403094291687, 0.029217541217803955, -0.3418140709400177, -0.22309833765029907, -1.0201212167739868, 0.5683518648147583]} +{"t": 5.2183, "q": [-0.4051464796066284, 0.0043002585880458355, -0.0008436894277110696, 0.6683468818664551, -0.30784091353416443, 0.029186271131038666, -0.3310893177986145, -0.0027355989441275597, 0.002008784329518676, 0.5855460166931152, -0.32186105847358704, 0.02289731055498123, -0.016391679644584656, -0.039703939110040665, -0.06720329821109772, -0.213858500123024, 0.20241355895996094, -0.5044759511947632, 0.25368207693099976, -0.0782330259680748, -0.5621080994606018, -0.7772249579429626, -0.4018430709838867, -0.6063418984413147, 0.02924150973558426, -0.34214964509010315, -0.22288262844085693, -1.020097255706787, 0.568291962146759]} +{"t": 5.235, "q": [-0.40507832169532776, 0.004308781120926142, -0.000897257006727159, 0.6683127880096436, -0.30783259868621826, 0.029157336801290512, -0.3310893177986145, -0.002710032742470503, 0.0019552167505025864, 0.5856142044067383, -0.32189035415649414, 0.0229484923183918, -0.016190802678465843, -0.03886716812849045, -0.06666697561740875, -0.21349897980690002, 0.20241355895996094, -0.5046197772026062, 0.25193238258361816, -0.08688563108444214, -0.5603943467140198, -0.7812995910644531, -0.4019748866558075, -0.6051434278488159, 0.029145635664463043, -0.34237733483314514, -0.22263094782829285, -1.0200732946395874, 0.568148136138916]} +{"t": 5.2518, "q": [-0.4050186574459076, 0.004283214453607798, -0.0009642164804972708, 0.6682361364364624, -0.30779126286506653, 0.029114076867699623, -0.3310893177986145, -0.0026759442407637835, 0.0018882573349401355, 0.5857846736907959, -0.32194048166275024, 0.023021697998046875, -0.016056882217526436, -0.038060665130615234, -0.06601188331842422, -0.21319936215877533, 0.20243753492832184, -0.5045598745346069, 0.2504223585128784, -0.0938604548573494, -0.5575301051139832, -0.7847869992256165, -0.4019988477230072, -0.6040768623352051, 0.029049761593341827, -0.3427128791809082, -0.22249913215637207, -1.020037293434143, 0.5681002140045166]} +{"t": 5.2685, "q": [-0.40500161051750183, 0.0043002585880458355, -0.001084743533283472, 0.6681764721870422, -0.3077292740345001, 0.02909264527261257, -0.33110636472702026, -0.0025992451701313257, 0.0017409464344382286, 0.5858442783355713, -0.32195356488227844, 0.023101739585399628, -0.016070274636149406, -0.03736061602830887, -0.06538905948400497, -0.21275594830513, 0.20320452749729156, -0.5047995448112488, 0.2486247420310974, -0.10168614983558655, -0.5547497868537903, -0.7885260581970215, -0.4020947217941284, -0.6031301021575928, 0.028929919004440308, -0.34300050139427185, -0.22251111268997192, -1.0199774503707886, 0.5681121945381165]} +{"t": 5.2852, "q": [-0.4049248993396759, 0.00432582525536418, -0.0011784868547692895, 0.6680315732955933, -0.30771270394325256, 0.029049290344119072, -0.3310893177986145, -0.0024884575977921486, 0.0016472031129524112, 0.5858954191207886, -0.3219619393348694, 0.023116376250982285, -0.016070274636149406, -0.03679746761918068, -0.06485927104949951, -0.21214476227760315, 0.20398350059986115, -0.5052788853645325, 0.2464076578617096, -0.10958375781774521, -0.5516818165779114, -0.7926126718521118, -0.4020947217941284, -0.6026267409324646, 0.028869997709989548, -0.34320423007011414, -0.22255904972553253, -1.0199534893035889, 0.568148136138916]} +{"t": 5.3021, "q": [-0.4047800302505493, 0.004274692852050066, -0.0011784868547692895, 0.6678441166877747, -0.3076506555080414, 0.028969915583729744, -0.33106374740600586, -0.002403236459940672, 0.001566851744428277, 0.5859806537628174, -0.3219913840293884, 0.023182081058621407, -0.016070274636149406, -0.03637870401144028, -0.06424757093191147, -0.21160545945167542, 0.20453476905822754, -0.5058421492576599, 0.24402280151844025, -0.11823636293411255, -0.5480865836143494, -0.796172022819519, -0.402130663394928, -0.6023032069206238, 0.028690235689282417, -0.34347987174987793, -0.22253507375717163, -1.0199054479599, 0.5681361556053162]} +{"t": 5.3188, "q": [-0.4046095907688141, 0.004172427114099264, -0.0011517030652612448, 0.6676395535469055, -0.3076382577419281, 0.02896273322403431, -0.3310467004776001, -0.002326537622138858, 0.0015266761183738708, 0.5861596465110779, -0.32201650738716125, 0.02322593703866005, -0.01613723486661911, -0.036089301109313965, -0.06373310834169388, -0.21079054474830627, 0.2048703283071518, -0.5058301687240601, 0.24200944602489471, -0.12557071447372437, -0.5462050437927246, -0.7986047863960266, -0.4022265374660492, -0.6020755171775818, 0.02834269218146801, -0.3437914550304413, -0.22254706919193268, -1.0197497606277466, 0.568148136138916]} +{"t": 5.3356, "q": [-0.40444767475128174, 0.004112772177904844, -0.0011784868547692895, 0.6674009561538696, -0.30760103464126587, 0.028941188007593155, -0.3310040831565857, -0.0022498385515064, 0.0014998923288658261, 0.5862789154052734, -0.3219763934612274, 0.02334170788526535, -0.01615062542259693, -0.035860825330019, -0.06336972117424011, -0.20989172160625458, 0.2052418440580368, -0.5054826140403748, 0.2400680035352707, -0.1305801123380661, -0.545138418674469, -0.8013971447944641, -0.40223854780197144, -0.6016800403594971, 0.02804308757185936, -0.344103068113327, -0.22251111268997192, -1.0196658372879028, 0.5681361556053162]} +{"t": 5.3523, "q": [-0.4041834771633148, 0.004044595640152693, -0.0011650949018076062, 0.6671197414398193, -0.30755558609962463, 0.02890518680214882, -0.33096998929977417, -0.0021816615480929613, 0.0014329327968880534, 0.5864920020103455, -0.32181477546691895, 0.023673947900533676, -0.016164017841219902, -0.03572368621826172, -0.06308773905038834, -0.20900489389896393, 0.20610471069812775, -0.5053987503051758, 0.23828235268592834, -0.13674001395702362, -0.5441437363624573, -0.8046208620071411, -0.4022025763988495, -0.6009010672569275, 0.0276835598051548, -0.3444146513938904, -0.22253507375717163, -1.0196418762207031, 0.5681241750717163]} +{"t": 5.3691, "q": [-0.40388521552085876, 0.003908241633325815, -0.0011383111122995615, 0.6668043732643127, -0.3074977397918701, 0.028890972957015038, -0.3308080732822418, -0.0021731394808739424, 0.0014061490073800087, 0.5866709351539612, -0.3212161958217621, 0.024843720719218254, -0.016190802678465843, -0.035548582673072815, -0.06288011372089386, -0.2078903615474701, 0.20693162083625793, -0.5053987503051758, 0.23638884723186493, -0.14352308213710785, -0.5434126853942871, -0.8073053359985352, -0.4022025763988495, -0.5994749069213867, 0.027240144088864326, -0.34489402174949646, -0.22254706919193268, -1.0195339918136597, 0.5681241750717163]} +{"t": 5.3858, "q": [-0.403493195772171, 0.00363553361967206, -0.0011383111122995615, 0.6664464473724365, -0.3074646294116974, 0.02883319929242134, -0.3305353820323944, -0.002147573046386242, 0.0013257976388558745, 0.5867391228675842, -0.3196178376674652, 0.02788321115076542, -0.016164017841219902, -0.035388726741075516, -0.06271269917488098, -0.2064642310142517, 0.20732709765434265, -0.5053747892379761, 0.23460319638252258, -0.14956313371658325, -0.5423341393470764, -0.8096662163734436, -0.402274489402771, -0.5973057746887207, 0.026149580255150795, -0.34539735317230225, -0.22265492379665375, -1.0193302631378174, 0.5681121945381165]} +{"t": 5.4025, "q": [-0.40302449464797974, 0.0033287382684648037, -0.0010579597437754273, 0.6660288572311401, -0.3074481189250946, 0.02883327566087246, -0.3302200436592102, -0.002156095113605261, 0.0012990138493478298, 0.5868073105812073, -0.3197160065174103, 0.027811693027615547, -0.016070274636149406, -0.035335395485162735, -0.06261704117059708, -0.20509803295135498, 0.20751884579658508, -0.5053148865699768, 0.23327293992042542, -0.15605857968330383, -0.5408241152763367, -0.8119552135467529, -0.4023464024066925, -0.5941299796104431, 0.024471787735819817, -0.34604451060295105, -0.22285865247249603, -1.018838882446289, 0.5681361556053162]} +{"t": 5.4193, "q": [-0.40242794156074524, 0.0033202157355844975, -0.0011115273227915168, 0.6657817363739014, -0.30738210678100586, 0.028877006843686104, -0.32960644364356995, -0.002139050979167223, 0.0011650949018076062, 0.5868584513664246, -0.31975746154785156, 0.02784121409058571, -0.015922963619232178, -0.03522871062159538, -0.062395818531513214, -0.2036958783864975, 0.20760273933410645, -0.5053028464317322, 0.23236213624477386, -0.1624821275472641, -0.5389545559883118, -0.8138726949691772, -0.40265798568725586, -0.5902710556983948, 0.0225662961602211, -0.3465598225593567, -0.22281071543693542, -1.0180120468139648, 0.5681601166725159]} +{"t": 5.4363, "q": [-0.40192511677742004, 0.0032946490682661533, -0.0011383111122995615, 0.6655857563018799, -0.30739444494247437, 0.028855236247181892, -0.3291292190551758, -0.0021731394808739424, 0.0009776083752512932, 0.5869266390800476, -0.3198029696941376, 0.02786353789269924, -0.015882788226008415, -0.03511451557278633, -0.06226915866136551, -0.2025693655014038, 0.207638680934906, -0.5052788853645325, 0.23181086778640747, -0.16728779673576355, -0.5368093848228455, -0.8148913383483887, -0.40323323011398315, -0.5864840149879456, 0.021140173077583313, -0.3469313383102417, -0.22278675436973572, -1.0169813632965088, 0.568148136138916]} +{"t": 5.4533, "q": [-0.4011496305465698, 0.0030901185236871243, -0.0011650949018076062, 0.6654579043388367, -0.30740270018577576, 0.02885519713163376, -0.3283537030220032, -0.0021816615480929613, 0.0008436894277110696, 0.5871055722236633, -0.31982365250587463, 0.027871036902070045, -0.015722084790468216, -0.03503837808966637, -0.062178075313568115, -0.20210197567939758, 0.20787836611270905, -0.503888726234436, 0.23099593818187714, -0.17108680307865143, -0.5330104231834412, -0.8155385255813599, -0.4040481448173523, -0.583164393901825, 0.02076866291463375, -0.34777024388313293, -0.2227148413658142, -1.0160706043243408, 0.5680762529373169]} +{"t": 5.4702, "q": [-0.4004422724246979, 0.0030304635874927044, -0.0012856220128014684, 0.6653726696968079, -0.30742332339286804, 0.02883337065577507, -0.32726287841796875, -0.0021816615480929613, 0.0005490677431225777, 0.5870970487594604, -0.3199648857116699, 0.02800341509282589, -0.015347111970186234, -0.03496991842985153, -0.062151920050382614, -0.20236562192440033, 0.20898091793060303, -0.5017914772033691, 0.22978553175926208, -0.17632390558719635, -0.5272340178489685, -0.8156343698501587, -0.40503084659576416, -0.5794253349304199, 0.020289292559027672, -0.3479979336261749, -0.22267888486385345, -1.014560580253601, 0.5677286982536316]} +{"t": 5.4869, "q": [-0.39959007501602173, 0.0030134194530546665, -0.0013659733813256025, 0.6652704477310181, -0.30746862292289734, 0.028753522783517838, -0.3261379599571228, -0.0022327941842377186, 0.00030801360844634473, 0.5870714783668518, -0.32022497057914734, 0.028071755543351173, -0.014918571338057518, -0.0349547415971756, -0.06218155473470688, -0.20243753492832184, 0.21034711599349976, -0.49868759512901306, 0.22856314480304718, -0.1817048192024231, -0.5231713652610779, -0.8156463503837585, -0.405414342880249, -0.5739724636077881, 0.01973801851272583, -0.3479979336261749, -0.2228946089744568, -1.0129306316375732, 0.5675129890441895]} +{"t": 5.5037, "q": [-0.39888274669647217, 0.003004897851496935, -0.0013927571708336473, 0.6652363538742065, -0.3075057864189148, 0.028731636703014374, -0.32514938712120056, -0.0023606258910149336, 5.3567582654068246e-05, 0.5870714783668518, -0.32065126299858093, 0.028301842510700226, -0.014637341722846031, -0.03494718670845032, -0.062226273119449615, -0.2025693655014038, 0.21221666038036346, -0.4955117702484131, 0.2278081327676773, -0.18707375228405, -0.5203430652618408, -0.8153228163719177, -0.4057738780975342, -0.567237377166748, 0.019570238888263702, -0.3481537401676178, -0.2229425460100174, -1.010617733001709, 0.567321240901947]} +{"t": 5.5204, "q": [-0.3986526429653168, 0.003004897851496935, -0.0014061490073800087, 0.6652619242668152, -0.307538777589798, 0.02870253287255764, -0.3247147500514984, -0.0024373249616473913, -2.6783791327034123e-05, 0.5871567130088806, -0.32116198539733887, 0.028750767931342125, -0.014302544295787811, -0.03495495393872261, -0.06238092482089996, -0.20259332656860352, 0.21504493057727814, -0.49269548058509827, 0.22768829762935638, -0.1917356252670288, -0.5181499719619751, -0.814927339553833, -0.4059177041053772, -0.5604422688484192, 0.019342539831995964, -0.3487769067287445, -0.22312229871749878, -1.008232831954956, 0.5671893954277039]} +{"t": 5.5371, "q": [-0.39853331446647644, 0.0029708086512982845, -0.0015132841654121876, 0.6652534008026123, -0.30754292011260986, 0.028724228963255882, -0.3243653476238251, -0.002701510675251484, -0.0002410541201243177, 0.5872589945793152, -0.3216235041618347, 0.028342049568891525, -0.012574990279972553, -0.035114727914333344, -0.062468528747558594, -0.20338428020477295, 0.21816083788871765, -0.48847702145576477, 0.22734075784683228, -0.19688883423805237, -0.5157171487808228, -0.8147954940795898, -0.4068884253501892, -0.5524727702140808, 0.019234681501984596, -0.34931620955467224, -0.22323016822338104, -1.0058001279830933, 0.5671055316925049]} +{"t": 5.554, "q": [-0.39856740832328796, 0.0029963753186166286, -0.0015400679549202323, 0.6653130054473877, -0.30754292011260986, 0.028724228963255882, -0.3241182267665863, -0.0029145635198801756, -0.0004821082402486354, 0.5872504711151123, -0.3217107355594635, 0.02842296101152897, -0.010445678606629372, -0.03519082069396973, -0.06251974403858185, -0.20443889498710632, 0.22016219794750214, -0.48166999220848083, 0.22640597820281982, -0.2010473608970642, -0.5126132369041443, -0.8147475719451904, -0.407990962266922, -0.5440718531608582, 0.019150791689753532, -0.349448025226593, -0.22400914132595062, -1.003594994544983, 0.567093551158905]} +{"t": 5.5707, "q": [-0.3986952602863312, 0.002894109580665827, -0.001566851744428277, 0.6653385758399963, -0.30755531787872314, 0.028731411322951317, -0.324067085981369, -0.0032895365729928017, -0.0005490677431225777, 0.5872589945793152, -0.32175302505493164, 0.028539661318063736, -0.006843258626759052, -0.035274457186460495, -0.06251626461744308, -0.20538565516471863, 0.22217555344104767, -0.4734128415584564, 0.22482407093048096, -0.2055414468050003, -0.5086225271224976, -0.8148074746131897, -0.4086381196975708, -0.5352873802185059, 0.018971027806401253, -0.3496277928352356, -0.22417691349983215, -1.0010663270950317, 0.567093551158905]} +{"t": 5.5875, "q": [-0.3987378478050232, 0.002681057434529066, -0.0015534599078819156, 0.6653300523757935, -0.3075636327266693, 0.02876034379005432, -0.32405856251716614, -0.003715642262250185, -0.0004821082402486354, 0.5872249007225037, -0.3217006325721741, 0.028662532567977905, -0.0026783791836351156, -0.03538091853260994, -0.0625181794166565, -0.2063923329114914, 0.22610637545585632, -0.4670012891292572, 0.22222349047660828, -0.20773455500602722, -0.504487931728363, -0.8149393200874329, -0.4091414511203766, -0.5262513160705566, 0.01906690187752247, -0.3499273955821991, -0.22472819685935974, -0.9970036745071411, 0.5670576095581055]} +{"t": 5.6042, "q": [-0.39872080087661743, 0.0025532254949212074, -0.0015534599078819156, 0.6653811931610107, -0.30760085582733154, 0.028810860589146614, -0.3241267502307892, -0.004065048880875111, -0.00018748654110822827, 0.587199330329895, -0.32172101736068726, 0.02864096686244011, 0.00287925754673779, -0.03540370240807533, -0.062493667006492615, -0.20775853097438812, 0.2305045872926712, -0.46194395422935486, 0.2189997285604477, -0.20937639474868774, -0.5009645819664001, -0.8154186606407166, -0.4093691408634186, -0.5163043737411499, 0.019102854654192924, -0.35023897886276245, -0.22525550425052643, -0.9921979904174805, 0.5665901899337769]} +{"t": 5.6209, "q": [-0.3987804651260376, 0.0022634733468294144, -0.001566851744428277, 0.6654579043388367, -0.30759677290916443, 0.028847072273492813, -0.3241182267665863, -0.004584898240864277, -5.3567582654068246e-05, 0.5871226191520691, -0.3216409385204315, 0.028887012973427773, 0.006481677293777466, -0.03542647510766983, -0.06245918944478035, -0.20868131518363953, 0.23493875563144684, -0.4566349387168884, 0.21578796207904816, -0.21107815206050873, -0.49851980805397034, -0.8156943321228027, -0.41014811396598816, -0.5066810846328735, 0.01912682317197323, -0.35019105672836304, -0.22530344128608704, -0.988434910774231, 0.5661467909812927]} +{"t": 5.6377, "q": [-0.3990020453929901, 0.0016328366473317146, -0.001566851744428277, 0.6654579043388367, -0.3075844645500183, 0.028883321210741997, -0.323879599571228, -0.005317800212651491, -0.0002544460294302553, 0.5871481895446777, -0.32163891196250916, 0.029112154617905617, 0.009347543120384216, -0.03542640432715416, -0.06238941103219986, -0.2097359299659729, 0.2398882359266281, -0.4522726833820343, 0.2133311927318573, -0.2136068344116211, -0.4958113729953766, -0.815838098526001, -0.41137051582336426, -0.49494850635528564, 0.01894705928862095, -0.3500711917877197, -0.22569891810417175, -0.9852591156959534, 0.5656314492225647]} +{"t": 5.6547, "q": [-0.399198055267334, 0.000729492399841547, -0.0015400679549202323, 0.665509045124054, -0.307563841342926, 0.028905147686600685, -0.32368358969688416, -0.0062552327290177345, -0.0006695947959087789, 0.5873185992240906, -0.32175615429878235, 0.029316885396838188, 0.011610773392021656, -0.03529708459973335, -0.06234222277998924, -0.21101823449134827, 0.24535304307937622, -0.4484257400035858, 0.21089839935302734, -0.21532057225704193, -0.4916648268699646, -0.8158860802650452, -0.4130363166332245, -0.4840069115161896, 0.01871936023235321, -0.3499513566493988, -0.22620224952697754, -0.9828982353210449, 0.5652838945388794]} +{"t": 5.6714, "q": [-0.39935144782066345, -0.0004465593956410885, -0.0015132841654121876, 0.6655175685882568, -0.30753082036972046, 0.02893427014350891, -0.3235301971435547, -0.007422762457281351, -0.0010713516967371106, 0.5877276659011841, -0.3220658004283905, 0.0298434067517519, 0.014074882492423058, -0.03522098436951637, -0.0622810460627079, -0.21214476227760315, 0.2525675594806671, -0.44405150413513184, 0.20777051150798798, -0.2169743925333023, -0.4862000048160553, -0.8164013624191284, -0.41542118787765503, -0.4712916314601898, 0.019030949100852013, -0.34991541504859924, -0.22973759472370148, -0.9801778197288513, 0.5653198957443237]} +{"t": 5.6882, "q": [-0.3994622230529785, -0.0018612304702401161, -0.0015534599078819156, 0.6656709313392639, -0.3075474202632904, 0.02897762507200241, -0.3235642910003662, -0.008505071513354778, -0.0011517030652612448, 0.5881878733634949, -0.32226186990737915, 0.030114393681287766, 0.017382681369781494, -0.03529699146747589, -0.062252506613731384, -0.21319936215877533, 0.26010560989379883, -0.4396412968635559, 0.20508605241775513, -0.21841250360012054, -0.48097488284111023, -0.8174320459365845, -0.4167754054069519, -0.45862430334091187, 0.0195582564920187, -0.34993937611579895, -0.23429159820079803, -0.9772536754608154, 0.5654756426811218]} +{"t": 5.7049, "q": [-0.3994622230529785, -0.003761662170290947, -0.0018079059664160013, 0.6658328771591187, -0.30758053064346313, 0.029035398736596107, -0.32354724407196045, -0.009340238757431507, -0.0011115273227915168, 0.5884009599685669, -0.32233303785324097, 0.030238686129450798, 0.020623520016670227, -0.03542620688676834, -0.06220000982284546, -0.21419405937194824, 0.26628947257995605, -0.43531498312950134, 0.20237761735916138, -0.2215403914451599, -0.4780867099761963, -0.8184626698493958, -0.41793787479400635, -0.44652023911476135, 0.020505009219050407, -0.3499993085861206, -0.23822243511676788, -0.9732748866081238, 0.5655356049537659]} +{"t": 5.7216, "q": [-0.3994622230529785, -0.006693270057439804, -0.002839081920683384, 0.6657902598381042, -0.3076302111148834, 0.029122069478034973, -0.32364949584007263, -0.01028619334101677, -0.0008838651119731367, 0.5887162685394287, -0.322349488735199, 0.03023887611925602, 0.024493776261806488, -0.03557056188583374, -0.06209801509976387, -0.21516478061676025, 0.272641122341156, -0.4326784610748291, 0.19871044158935547, -0.22442857921123505, -0.47545015811920166, -0.8189539909362793, -0.419196218252182, -0.43529102206230164, 0.020600883290171623, -0.3501311242580414, -0.2440347820520401, -0.970194935798645, 0.5656554102897644]} +{"t": 5.7384, "q": [-0.399453729391098, -0.006889278534799814, -0.0037095551379024982, 0.6658584475517273, -0.30770477652549744, 0.029281010851264, -0.32364949584007263, -0.01116397138684988, -0.0006294191116467118, 0.5889378190040588, -0.3222968280315399, 0.03033268265426159, 0.028805967420339584, -0.03560091555118561, -0.06203877553343773, -0.21702232956886292, 0.2790526747703552, -0.4302816092967987, 0.1958581954240799, -0.22669360041618347, -0.47210657596588135, -0.8194693326950073, -0.42086201906204224, -0.4248887300491333, 0.02040913514792919, -0.35016706585884094, -0.2501227557659149, -0.9682175517082214, 0.5658471584320068]} +{"t": 5.7552, "q": [-0.3994792699813843, -0.006914844736456871, -0.003977392800152302, 0.6658584475517273, -0.3077130615711212, 0.029309943318367004, -0.32363244891166687, -0.012442288920283318, -0.0006428110064007342, 0.5893980264663696, -0.32221999764442444, 0.030484335497021675, 0.0324217788875103, -0.03559330850839615, -0.062033649533987045, -0.2189997285604477, 0.2843257486820221, -0.42665040493011475, 0.19374896585941315, -0.22799988090991974, -0.467648446559906, -0.8197090029716492, -0.42360639572143555, -0.4153852164745331, 0.020373182371258736, -0.35011914372444153, -0.25573137402534485, -0.9672707915306091, 0.5662306547164917]} +{"t": 5.772, "q": [-0.3995218873023987, -0.008414736948907375, -0.0038434739690274, 0.6660459041595459, -0.3077048659324646, 0.0293534304946661, -0.3236154019832611, -0.014095579273998737, -0.0008838651119731367, 0.5906081795692444, -0.3222905099391937, 0.030535992234945297, 0.034363605082035065, -0.0358288399875164, -0.06187357380986214, -0.22092919051647186, 0.29032984375953674, -0.4220244884490967, 0.19122029840946198, -0.23068435490131378, -0.4617522060871124, -0.8203082084655762, -0.42699795961380005, -0.4058697521686554, 0.021032314747571945, -0.3501071631908417, -0.26304176449775696, -0.9663479924201965, 0.5664104223251343]} +{"t": 5.7887, "q": [-0.39980313181877136, -0.010068027302622795, -0.003696163184940815, 0.6665913462638855, -0.30777111649513245, 0.029468977823853493, -0.323623925447464, -0.015578427352011204, -0.0011517030652612448, 0.591826856136322, -0.3226732015609741, 0.030947139486670494, 0.035676009953022, -0.0360795333981514, -0.06166394427418709, -0.22197182476520538, 0.29726871848106384, -0.4166315793991089, 0.18843995034694672, -0.23480692505836487, -0.45698246359825134, -0.8222856521606445, -0.43158790469169617, -0.39656999707221985, 0.022170817479491234, -0.3497955799102783, -0.2723415195941925, -0.965856671333313, 0.566949725151062]} +{"t": 5.8054, "q": [-0.4003314971923828, -0.011005460284650326, -0.0034551091957837343, 0.6672731041908264, -0.3080194592475891, 0.029873304069042206, -0.32346200942993164, -0.016558470204472542, -0.0015802436973899603, 0.5921421647071838, -0.32292988896369934, 0.0310953501611948, 0.03690806403756142, -0.036094751209020615, -0.061674196273088455, -0.2225950062274933, 0.3030690848827362, -0.4116341769695282, 0.18675018846988678, -0.23662853240966797, -0.45336323976516724, -0.8247423768043518, -0.435746431350708, -0.3871024549007416, 0.02292582206428051, -0.34934017062187195, -0.2781658470630646, -0.9653173685073853, 0.5673092603683472]} +{"t": 5.8221, "q": [-0.40058717131614685, -0.01105659268796444, -0.003106919815763831, 0.6677588820457458, -0.30830511450767517, 0.030371611937880516, -0.32327452301979065, -0.017103886231780052, -0.0015936355339363217, 0.5921251177787781, -0.32296648621559143, 0.03104492463171482, 0.039064161479473114, -0.03610995039343834, -0.061664510518312454, -0.22281071543693542, 0.30922895669937134, -0.40712809562683105, 0.1850484162569046, -0.23877370357513428, -0.44889312982559204, -0.8264561295509338, -0.4399648904800415, -0.376831978559494, 0.023213444277644157, -0.34906452894210815, -0.28484106063842773, -0.9650297164916992, 0.5672493577003479]} +{"t": 5.8389, "q": [-0.4007576107978821, -0.01111624762415886, -0.002986392704769969, 0.6681764721870422, -0.30856582522392273, 0.030768658965826035, -0.3232404291629791, -0.017495902255177498, -0.001312405802309513, 0.5920057892799377, -0.3229621648788452, 0.031023092567920685, 0.040751539170742035, -0.03624672070145607, -0.06157735362648964, -0.22281071543693542, 0.3154487907886505, -0.4023464024066925, 0.1826276034116745, -0.2425607144832611, -0.4432365596294403, -0.8268875479698181, -0.4448544383049011, -0.36639371514320374, 0.023201460018754005, -0.3492083251476288, -0.2908092141151428, -0.9650297164916992, 0.5670815706253052]} +{"t": 5.8559, "q": [-0.4008513391017914, -0.011150335893034935, -0.002504284493625164, 0.6686707139015198, -0.3088679611682892, 0.0312524139881134, -0.32318931818008423, -0.017726000398397446, -0.0007901218486949801, 0.5918098092079163, -0.3229334056377411, 0.031030040234327316, 0.04221125692129135, -0.036421481519937515, -0.06146598607301712, -0.22224745154380798, 0.3207457959651947, -0.3945326805114746, 0.17972742021083832, -0.24568860232830048, -0.43755605816841125, -0.8275826573371887, -0.45069074630737305, -0.35485291481018066, 0.023273365572094917, -0.3491843640804291, -0.2956628203392029, -0.9649099111557007, 0.5669377446174622]} +{"t": 5.8726, "q": [-0.40094509720802307, -0.011209990829229355, -0.0017141626449301839, 0.6692332029342651, -0.30922529101371765, 0.0318160243332386, -0.3230785131454468, -0.018007230013608932, -0.0004821082402486354, 0.5918098092079163, -0.3229331374168396, 0.031000975519418716, 0.04404594376683235, -0.036930523812770844, -0.06114184483885765, -0.22133666276931763, 0.3263424336910248, -0.3885885179042816, 0.17833726108074188, -0.24801354110240936, -0.43411657214164734, -0.8282297849655151, -0.4557241201400757, -0.34307241439819336, 0.023309318348765373, -0.3491843640804291, -0.29844316840171814, -0.9648499488830566, 0.5665662288665771]} +{"t": 5.8894, "q": [-0.4011070132255554, -0.011354867368936539, -0.001191878691315651, 0.6697530746459961, -0.3094664216041565, 0.03217735141515732, -0.32294216752052307, -0.01828845962882042, -0.00037497308221645653, 0.5917757153511047, -0.32291653752326965, 0.03098626248538494, 0.04667075723409653, -0.03754592686891556, -0.06084028258919716, -0.22125276923179626, 0.3327060639858246, -0.3847176134586334, 0.17729462683200836, -0.25063809752464294, -0.43104860186576843, -0.8291765451431274, -0.46019425988197327, -0.33113613724708557, 0.023333286866545677, -0.34941208362579346, -0.30348852276802063, -0.9648379683494568, 0.5663385391235352]} +{"t": 5.9061, "q": [-0.4011070132255554, -0.011405999772250652, -0.0006160272168926895, 0.6700513362884521, -0.30962443351745605, 0.032423049211502075, -0.32281434535980225, -0.01841629110276699, -5.3567582654068246e-05, 0.591681957244873, -0.3228955864906311, 0.030949698761105537, 0.04937591776251793, -0.0383208729326725, -0.060447268187999725, -0.22118085622787476, 0.33887794613838196, -0.3810504376888275, 0.1763119250535965, -0.2541135251522064, -0.42844805121421814, -0.8302671313285828, -0.46454453468322754, -0.31976309418678284, 0.023333286866545677, -0.3492083251476288, -0.3096124529838562, -0.9645863175392151, 0.5663864612579346]} +{"t": 5.9229, "q": [-0.4011240601539612, -0.011457132175564766, -0.0001473108568461612, 0.6703155040740967, -0.3098740577697754, 0.03284230828285217, -0.3226609230041504, -0.018561167642474174, 0.00021427033061627299, 0.5914944410324097, -0.32287898659706116, 0.030934985727071762, 0.05229535326361656, -0.039369311183691025, -0.05991007015109062, -0.22104904055595398, 0.3435398042201996, -0.37527403235435486, 0.17529326677322388, -0.25672608613967896, -0.42485275864601135, -0.8322924375534058, -0.4685951769351959, -0.3081863224506378, 0.023393208160996437, -0.34913644194602966, -0.3159041702747345, -0.9640589952468872, 0.5664823651313782]} +{"t": 5.9396, "q": [-0.40113258361816406, -0.011610530316829681, 6.695948104606941e-05, 0.6705796718597412, -0.30995723605155945, 0.03297241032123566, -0.3224734365940094, -0.01878274232149124, 0.00030801360844634473, 0.5914603471755981, -0.3228418529033661, 0.030927278101444244, 0.05528174713253975, -0.04061470180749893, -0.05910034477710724, -0.2210969775915146, 0.3482376039028168, -0.3694736659526825, 0.17417873442173004, -0.2590390145778656, -0.42003512382507324, -0.8340781331062317, -0.47280165553092957, -0.2966095805168152, 0.02442385070025921, -0.34869301319122314, -0.3221000134944916, -0.9639871120452881, 0.5666621327400208]} +{"t": 5.9563, "q": [-0.40149903297424316, -0.011738361790776253, 0.00018748654110822827, 0.6708438992500305, -0.3100736141204834, 0.03314584121108055, -0.3225160539150238, -0.019038405269384384, 0.00033479739795438945, 0.5913325548171997, -0.3228457570075989, 0.03090554103255272, 0.057692285627126694, -0.04157157614827156, -0.058513201773166656, -0.22110895812511444, 0.3531032204627991, -0.3649556040763855, 0.1724889576435089, -0.262550413608551, -0.415277361869812, -0.8351686596870422, -0.4767324924468994, -0.286051481962204, 0.02581402100622654, -0.34832149744033813, -0.3287632465362549, -0.9640110731124878, 0.5666500926017761]} +{"t": 5.9731, "q": [-0.4020359218120575, -0.011891759932041168, 0.00013391896209213883, 0.6710654497146606, -0.3101734220981598, 0.0333048515021801, -0.32249048352241516, -0.019106583669781685, 0.0001740946463542059, 0.5909661054611206, -0.32284143567085266, 0.030883707106113434, 0.05900469049811363, -0.04238404333591461, -0.0580986924469471, -0.2205696702003479, 0.35822048783302307, -0.36047351360321045, 0.17040370404720306, -0.2650311291217804, -0.41201767325401306, -0.8353124856948853, -0.4811306893825531, -0.27463051676750183, 0.027527766302227974, -0.3481537401676178, -0.33528268337249756, -0.9639990925788879, 0.5666980743408203]} +{"t": 5.9899, "q": [-0.40241941809654236, -0.012147423811256886, 0.00012052706006215885, 0.671252965927124, -0.31020256876945496, 0.033355459570884705, -0.3225245773792267, -0.019225891679525375, 0.00020087843586225063, 0.5908297300338745, -0.32283279299736023, 0.03084002435207367, 0.05964750424027443, -0.04323427006602287, -0.057530853897333145, -0.219574972987175, 0.3634096384048462, -0.3546971082687378, 0.16833043098449707, -0.26698458194732666, -0.40942907333374023, -0.8353723883628845, -0.486367791891098, -0.2631256580352783, 0.03026016801595688, -0.3478061854839325, -0.3413347005844116, -0.9639990925788879, 0.5666141510009766]} +{"t": 6.0067, "q": [-0.40270063281059265, -0.012224122881889343, 0.00010713516530813649, 0.6714233756065369, -0.31023579835891724, 0.03339879959821701, -0.32249048352241516, -0.019345201551914215, 0.00012052706006215885, 0.5905570387840271, -0.3228245675563812, 0.03083992935717106, 0.06016978621482849, -0.043963052332401276, -0.057089775800704956, -0.21864020824432373, 0.36821532249450684, -0.34899261593818665, 0.16728779673576355, -0.2688541114330292, -0.4062891900539398, -0.8354203701019287, -0.4916887879371643, -0.25105753540992737, 0.03248923644423485, -0.3476743698120117, -0.34796199202537537, -0.9639990925788879, 0.5666500926017761]} +{"t": 6.0234, "q": [-0.40298187732696533, -0.012215601280331612, 0.00010713516530813649, 0.6714745163917542, -0.31029820442199707, 0.033507224172353745, -0.32249048352241516, -0.01938781328499317, 0.00012052706006215885, 0.5900797843933105, -0.3228166103363037, 0.030868882313370705, 0.060544759035110474, -0.044668879359960556, -0.056664202362298965, -0.21783725917339325, 0.37363219261169434, -0.3440910875797272, 0.16686835885047913, -0.272868812084198, -0.40180709958076477, -0.8354083299636841, -0.4969139099121094, -0.23908528685569763, 0.033675674349069595, -0.34763839840888977, -0.35600340366363525, -0.9640350341796875, 0.5667340159416199]} +{"t": 6.0404, "q": [-0.40305855870246887, -0.012190034613013268, 0.00010713516530813649, 0.6715000867843628, -0.3103397786617279, 0.03356500342488289, -0.3222944736480713, -0.01938781328499317, 6.695948104606941e-05, 0.5895854830741882, -0.3227795958518982, 0.030875734984874725, 0.060919731855392456, -0.04542781040072441, -0.056195132434368134, -0.21741782128810883, 0.37891724705696106, -0.3392374515533447, 0.16656874120235443, -0.2751578092575073, -0.39756467938423157, -0.8353963494300842, -0.5014679431915283, -0.22735273838043213, 0.03417900949716568, -0.34696727991104126, -0.36275050044059753, -0.9639871120452881, 0.5667100548744202]} +{"t": 6.0573, "q": [-0.40311822295188904, -0.012190034613013268, 8.035137580009177e-05, 0.6714659929275513, -0.3103606402873993, 0.03361566737294197, -0.32208994030952454, -0.01937928982079029, 2.6783791327034123e-05, 0.5890827178955078, -0.3227631151676178, 0.030875544995069504, 0.06098669394850731, -0.046217069029808044, -0.05571696534752846, -0.21685455739498138, 0.3843221068382263, -0.33463552594184875, 0.16583770513534546, -0.2766558527946472, -0.39389750361442566, -0.8354083299636841, -0.5050991177558899, -0.21643510460853577, 0.034035198390483856, -0.3464280068874359, -0.370887815952301, -0.9639990925788879, 0.5668418407440186]} +{"t": 6.074, "q": [-0.4031864106655121, -0.012172989547252655, 9.374327055411413e-05, 0.6715000867843628, -0.3103938102722168, 0.033644501119852066, -0.32171496748924255, -0.019353725016117096, -0.0001473108568461612, 0.5882560610771179, -0.32261958718299866, 0.030939262360334396, 0.06100008636713028, -0.046755775809288025, -0.05540761724114418, -0.21608756482601166, 0.38955923914909363, -0.32919469475746155, 0.16551414132118225, -0.27836957573890686, -0.3918841779232025, -0.8355042338371277, -0.508155107498169, -0.20658408105373383, 0.03453853726387024, -0.34622427821159363, -0.378030389547348, -0.9641069769859314, 0.5669018030166626]} +{"t": 6.0907, "q": [-0.40324604511260986, -0.012121858075261116, 0.00012052706006215885, 0.6714404225349426, -0.31040212512016296, 0.0336589552462101, -0.3213144540786743, -0.01931111328303814, -0.0002946217136923224, 0.5872845649719238, -0.3222014009952545, 0.031580887734889984, 0.0608527734875679, -0.047135062515735626, -0.05514895170927048, -0.21493707597255707, 0.39456862211227417, -0.32350218296051025, 0.16521452367305756, -0.2797597646713257, -0.39070969820022583, -0.8355521559715271, -0.5110073685646057, -0.19698470830917358, 0.03573695942759514, -0.3460804522037506, -0.38511309027671814, -0.9641788601875305, 0.5670695900917053]} +{"t": 6.1074, "q": [-0.4034505784511566, -0.012062203139066696, 0.00010713516530813649, 0.6714489459991455, -0.3104270398616791, 0.03368784114718437, -0.32116103172302246, -0.019285546615719795, -0.0003481892927084118, 0.5863385796546936, -0.32186853885650635, 0.032100021839141846, 0.06093312427401543, -0.04728678986430168, -0.05505342409014702, -0.21381056308746338, 0.3988350033760071, -0.3183249831199646, 0.16505873203277588, -0.2808742821216583, -0.38985884189605713, -0.8356121182441711, -0.5138116478919983, -0.1886436939239502, 0.03775031119585037, -0.3451576828956604, -0.3934900462627411, -0.9642028212547302, 0.5670576095581055]} +{"t": 6.1241, "q": [-0.4037403464317322, -0.01205368060618639, 0.00013391896209213883, 0.6714318990707397, -0.3104270398616791, 0.03368784114718437, -0.32111844420433044, -0.019277025014162064, -0.0004553244507405907, 0.5858868956565857, -0.3215095102787018, 0.03269890323281288, 0.06100008636713028, -0.047605324536561966, -0.054803162813186646, -0.21269603073596954, 0.4045754671096802, -0.3137110769748688, 0.16409999132156372, -0.28244420886039734, -0.38942739367485046, -0.835791826248169, -0.5170234441757202, -0.18021878600120544, 0.041189782321453094, -0.34297654032707214, -0.4011240005493164, -0.9644544720649719, 0.5671414732933044]} +{"t": 6.1409, "q": [-0.4040130376815796, -0.012096291407942772, 0.0001740946463542059, 0.6714745163917542, -0.31044360995292664, 0.03370225802063942, -0.32111844420433044, -0.019285546615719795, -0.000522283953614533, 0.5856653451919556, -0.3215012550354004, 0.03269880637526512, 0.06132148951292038, -0.04793886840343475, -0.054443757981061935, -0.21132983267307281, 0.41042375564575195, -0.3085578382015228, 0.16172711551189423, -0.2834509015083313, -0.38900795578956604, -0.8362113237380981, -0.5200554728507996, -0.1709669530391693, 0.04362257942557335, -0.34042391180992126, -0.40735578536987305, -0.9649338722229004, 0.567177414894104]} +{"t": 6.1576, "q": [-0.40417495369911194, -0.01211333554238081, 0.0003214055032003671, 0.6714659929275513, -0.3104519248008728, 0.03371671214699745, -0.3211354613304138, -0.019277025014162064, -0.0005490677431225777, 0.5854182243347168, -0.32149338722229004, 0.03272777050733566, 0.06183038279414177, -0.04831763729453087, -0.05398692563176155, -0.2096640169620514, 0.41598445177078247, -0.30348852276802063, 0.15871907770633698, -0.2839781939983368, -0.3886723816394806, -0.8365228772163391, -0.5226799845695496, -0.1627577692270279, 0.045288387686014175, -0.33832666277885437, -0.4135396480560303, -0.9652334451675415, 0.5672133564949036]} +{"t": 6.1744, "q": [-0.4042346179485321, -0.01213890127837658, 0.0006294191116467118, 0.6714404225349426, -0.31045201420783997, 0.03373122215270996, -0.32110992074012756, -0.019277025014162064, -0.0005490677431225777, 0.5851369500160217, -0.32145240902900696, 0.032741840928792953, 0.06263389438390732, -0.04859788715839386, -0.05364184454083443, -0.20785440504550934, 0.4220125079154968, -0.29897046089172363, 0.15590278804302216, -0.28428977727890015, -0.38840875029563904, -0.8367745876312256, -0.5250169038772583, -0.1539972871541977, 0.04689427465200424, -0.33631330728530884, -0.41961565613746643, -0.9655330777168274, 0.567093551158905]} +{"t": 6.1911, "q": [-0.40431132912635803, -0.012130379676818848, 0.001312405802309513, 0.6714659929275513, -0.31046026945114136, 0.033731184899806976, -0.32103320956230164, -0.019277025014162064, -0.0006294191116467118, 0.5849068760871887, -0.3214564323425293, 0.03273462504148483, 0.0635579377412796, -0.04884820431470871, -0.05350441858172417, -0.2055174857378006, 0.4294547140598297, -0.2948598861694336, 0.1531464159488678, -0.2843736708164215, -0.3879773020744324, -0.8368943929672241, -0.5276414752006531, -0.1450091302394867, 0.050225887447595596, -0.33389249444007874, -0.424685001373291, -0.965856671333313, 0.5669018030166626]} +{"t": 6.2078, "q": [-0.40429428219795227, -0.012147423811256886, 0.0015266761183738708, 0.6714659929275513, -0.31046435236930847, 0.033723920583724976, -0.32080310583114624, -0.019294070079922676, -0.0007633380591869354, 0.58465975522995, -0.32145240902900696, 0.032741840928792953, 0.06442841142416, -0.04904533922672272, -0.05336073786020279, -0.20201808214187622, 0.43626174330711365, -0.28860411047935486, 0.14975488185882568, -0.28436169028282166, -0.38721030950546265, -0.837421715259552, -0.5311288833618164, -0.1362726241350174, 0.056469667702913284, -0.3301294445991516, -0.4301258325576782, -0.9662641286849976, 0.5668178796768188]} +{"t": 6.2246, "q": [-0.4043198525905609, -0.01213890127837658, 0.0015132841654121876, 0.6714318990707397, -0.31047260761260986, 0.03372388333082199, -0.32070937752723694, -0.019285546615719795, -0.0008035137434490025, 0.5845745205879211, -0.3214608132839203, 0.032756466418504715, 0.06574081629514694, -0.04925007373094559, -0.05322221294045448, -0.19854265451431274, 0.44184640049934387, -0.28271985054016113, 0.1464831829071045, -0.2843736708164215, -0.3867429196834564, -0.8380089402198792, -0.5347720980644226, -0.12739230692386627, 0.0631568655371666, -0.32582712173461914, -0.43421244621276855, -0.9665637016296387, 0.5667100548744202]} +{"t": 6.2414, "q": [-0.40436244010925293, -0.01213890127837658, 0.0013659733813256025, 0.6714318990707397, -0.31046852469444275, 0.03373114764690399, -0.3204537034034729, -0.019285546615719795, -0.0009508245857432485, 0.5843358635902405, -0.32146885991096497, 0.032742030918598175, 0.06741480529308319, -0.04956848546862602, -0.05297256261110306, -0.19510318338871002, 0.44871336221694946, -0.2780579924583435, 0.1423606127500534, -0.28454145789146423, -0.38656318187713623, -0.8390275835990906, -0.5386669635772705, -0.116726353764534, 0.06972422450780869, -0.3209735155105591, -0.4403124153614044, -0.966911256313324, 0.5665542483329773]} +{"t": 6.2581, "q": [-0.40436244010925293, -0.012155946344137192, 0.0010579597437754273, 0.6714233756065369, -0.3104725480079651, 0.033709391951560974, -0.32001054286956787, -0.019285546615719795, -0.0012588382232934237, 0.5841228365898132, -0.32147690653800964, 0.032727599143981934, 0.06967803090810776, -0.049848586320877075, -0.05258811265230179, -0.19207118451595306, 0.4560477137565613, -0.2749181389808655, 0.13742311298847198, -0.28484106063842773, -0.38633546233177185, -0.8402499556541443, -0.5426217317581177, -0.1059165820479393, 0.0755605399608612, -0.3161078989505768, -0.4455614984035492, -0.9678699970245361, 0.5664584040641785]} +{"t": 6.2749, "q": [-0.40431132912635803, -0.012155946344137192, 0.0008570813224650919, 0.671414852142334, -0.3104808032512665, 0.03370935469865799, -0.3196355700492859, -0.019277025014162064, -0.0013525814283639193, 0.5840035080909729, -0.32146885991096497, 0.032742030918598175, 0.07313314080238342, -0.05025738105177879, -0.05208352953195572, -0.19010576605796814, 0.4614885449409485, -0.2719220817089081, 0.1332526057958603, -0.2851766347885132, -0.38596394658088684, -0.8420596122741699, -0.545282244682312, -0.09582586586475372, 0.08109725266695023, -0.31284821033477783, -0.449755996465683, -0.9691643118858337, 0.5663984417915344]} +{"t": 6.2916, "q": [-0.40426018834114075, -0.012172989547252655, 0.0006160272168926895, 0.6714233756065369, -0.31050142645835876, 0.03370199352502823, -0.3193032145500183, -0.019268503412604332, -0.0015802436973899603, 0.5838416218757629, -0.32148534059524536, 0.0327422209084034, 0.07764621078968048, -0.0507795624434948, -0.051368847489356995, -0.18794859945774078, 0.4665219187736511, -0.26783543825149536, 0.12789565324783325, -0.28601551055908203, -0.3844060003757477, -0.845343291759491, -0.5478708148002625, -0.08527974784374237, 0.08728111535310745, -0.3087376058101654, -0.4518292546272278, -0.9706743359565735, 0.5663025975227356]} +{"t": 6.3084, "q": [-0.4042260944843292, -0.012190034613013268, 0.00021427033061627299, 0.671414852142334, -0.31049734354019165, 0.03370925784111023, -0.3189964294433594, -0.019242936745285988, -0.0018212978029623628, 0.5837052464485168, -0.321489542722702, 0.03274953365325928, 0.08206553757190704, -0.05121023952960968, -0.05053318291902542, -0.1850963532924652, 0.4719747304916382, -0.2631376385688782, 0.12181965261697769, -0.2875734567642212, -0.38248851895332336, -0.8490344285964966, -0.5510945916175842, -0.07494934648275375, 0.09447164833545685, -0.30335670709609985, -0.4538426101207733, -0.9716809988021851, 0.5662906169891357]} +{"t": 6.3253, "q": [-0.404243141412735, -0.012241167016327381, -0.00021427033061627299, 0.6714233756065369, -0.3105015754699707, 0.03373098000884056, -0.3186725974082947, -0.019234415143728256, -0.0022096626926213503, 0.5834581255912781, -0.3214977979660034, 0.03274960815906525, 0.08576170355081558, -0.05151932314038277, -0.04974504932761192, -0.18220816552639008, 0.47612127661705017, -0.25824806094169617, 0.11598332971334457, -0.28950291872024536, -0.38082271814346313, -0.852222204208374, -0.5547617673873901, -0.06642855703830719, 0.10191385447978973, -0.2977360785007477, -0.4559877812862396, -0.9727116227149963, 0.5663385391235352]} +{"t": 6.3421, "q": [-0.404243141412735, -0.012462742626667023, -0.0011650949018076062, 0.671414852142334, -0.31050148606300354, 0.033716484904289246, -0.3181101381778717, -0.019242936745285988, -0.0026783791836351156, 0.5833132266998291, -0.321489542722702, 0.03274953365325928, 0.08862756192684174, -0.05169891566038132, -0.04878991097211838, -0.1793559193611145, 0.4815741181373596, -0.2546408176422119, 0.10994328558444977, -0.2935296297073364, -0.3785816729068756, -0.8550984263420105, -0.5589203238487244, -0.05706888064742088, 0.1082894578576088, -0.29137247800827026, -0.459990531206131, -0.9735984802246094, 0.5663744807243347]} +{"t": 6.3588, "q": [-0.4042772352695465, -0.012718405574560165, -0.0022096626926213503, 0.6714659929275513, -0.31050142645835876, 0.03370199352502823, -0.3176584541797638, -0.019217370077967644, -0.003173879347741604, 0.5832365155220032, -0.32150164246559143, 0.032727863639593124, 0.09046225249767303, -0.051893994212150574, -0.047973960638046265, -0.17554493248462677, 0.4872666001319885, -0.2504223585128784, 0.10342386364936829, -0.29627400636672974, -0.3753818869590759, -0.8568361401557922, -0.5631747245788574, -0.0484282523393631, 0.11328688263893127, -0.28468528389930725, -0.46384942531585693, -0.9743894338607788, 0.5663744807243347]} +{"t": 6.3756, "q": [-0.4042857587337494, -0.012786582112312317, -0.002758730435743928, 0.671483039855957, -0.31050553917884827, 0.03369472920894623, -0.3173772096633911, -0.019217370077967644, -0.003347973804920912, 0.5831342935562134, -0.3215096890926361, 0.03271343186497688, 0.09157378226518631, -0.05217390134930611, -0.04767044633626938, -0.17112275958061218, 0.49319881200790405, -0.24559272825717926, 0.09744373708963394, -0.3005044460296631, -0.37275734543800354, -0.85811847448349, -0.5662786364555359, -0.03868507966399193, 0.11643873155117035, -0.27829769253730774, -0.46773234009742737, -0.9750365614891052, 0.5663864612579346]} +{"t": 6.3923, "q": [-0.40420904755592346, -0.012837715446949005, -0.002946217078715563, 0.6715427041053772, -0.31050974130630493, 0.03371644765138626, -0.31716418266296387, -0.0191918034106493, -0.003481892868876457, 0.5829979181289673, -0.3215138912200928, 0.032720740884542465, 0.09186840057373047, -0.05243900418281555, -0.04748499393463135, -0.1660294532775879, 0.4975011348724365, -0.23913322389125824, 0.09334512799978256, -0.3031409680843353, -0.3719184398651123, -0.8592689633369446, -0.5690709352493286, -0.030188262462615967, 0.11842811107635498, -0.27115508913993835, -0.47023701667785645, -0.9755998253822327, 0.5664224028587341]} +{"t": 6.409, "q": [-0.4041067957878113, -0.012812148779630661, -0.0028926494996994734, 0.6715938448905945, -0.31050974130630493, 0.03371644765138626, -0.3171130418777466, -0.019208848476409912, -0.0034149333368986845, 0.5830064415931702, -0.3215181231498718, 0.03272807225584984, 0.09180144220590591, -0.05278778448700905, -0.047366224229335785, -0.1606844961643219, 0.5026064515113831, -0.23309318721294403, 0.08833572268486023, -0.30517828464508057, -0.3713671863079071, -0.8599400520324707, -0.5715397000312805, -0.02130795270204544, 0.1188235953450203, -0.2643360495567322, -0.47166314721107483, -0.9761630892753601, 0.5664703845977783]} +{"t": 6.4259, "q": [-0.40408122539520264, -0.012718405574560165, -0.002731946762651205, 0.6716364622116089, -0.31050142645835876, 0.03370199352502823, -0.3170533776283264, -0.019149193540215492, -0.0033077981788665056, 0.582801878452301, -0.3215217590332031, 0.03269178047776222, 0.0913461223244667, -0.053128793835639954, -0.04718291759490967, -0.15500396490097046, 0.5074840188026428, -0.22729282081127167, 0.08349409699440002, -0.30678418278694153, -0.37123534083366394, -0.8606711030006409, -0.5733972191810608, -0.014644723385572433, 0.11872772127389908, -0.2581881582736969, -0.47290951013565063, -0.9767862558364868, 0.566494345664978]} +{"t": 6.4427, "q": [-0.4039022624492645, -0.01268431730568409, -0.0024105412885546684, 0.6716875433921814, -0.31050974130630493, 0.03371644765138626, -0.3170192837715149, -0.01914067193865776, -0.003066744189709425, 0.5828274488449097, -0.3214932084083557, 0.03271324187517166, 0.09073009341955185, -0.053711917251348495, -0.04673929512500763, -0.14949122071266174, 0.512409508228302, -0.22095316648483276, 0.07840079814195633, -0.31015175580978394, -0.371115505695343, -0.8618455529212952, -0.5750031471252441, -0.009527458809316158, 0.11863184720277786, -0.25204023718833923, -0.476169228553772, -0.9781764149665833, 0.5666021704673767]} +{"t": 6.4594, "q": [-0.40385112166404724, -0.012658750638365746, -0.002156095113605261, 0.6717301607131958, -0.31050142645835876, 0.03370199352502823, -0.3170192837715149, -0.01913214847445488, -0.0029194331727921963, 0.5828530192375183, -0.3214893639087677, 0.032734986394643784, 0.09028816223144531, -0.05411285161972046, -0.04637087509036064, -0.14493721723556519, 0.5163882970809937, -0.2154763638973236, 0.07516506314277649, -0.3151971101760864, -0.3710435926914215, -0.8638709187507629, -0.5758899450302124, -0.0049375006929039955, 0.11826033145189285, -0.24687503278255463, -0.4809988737106323, -0.9800819158554077, 0.5668538808822632]} +{"t": 6.4761, "q": [-0.4037829637527466, -0.012590574100613594, -0.0019686087034642696, 0.6718068718910217, -0.31050148606300354, 0.033716484904289246, -0.3170278072357178, -0.01914067193865776, -0.0027989062946289778, 0.5829297304153442, -0.32148516178131104, 0.0327276736497879, 0.08995336294174194, -0.054521121084690094, -0.04590839520096779, -0.1411382257938385, 0.5200794339179993, -0.21142570674419403, 0.07192932069301605, -0.3188523054122925, -0.37077993154525757, -0.866267740726471, -0.5760217905044556, -0.0015219965716823936, 0.11829628795385361, -0.2433876246213913, -0.4866913855075836, -0.9818316102027893, 0.5671414732933044]} +{"t": 6.4929, "q": [-0.4038170278072357, -0.012547963298857212, -0.0018882573349401355, 0.6719176769256592, -0.31049734354019165, 0.03370925784111023, -0.3170278072357178, -0.019106583669781685, -0.0027721223887056112, 0.5829638242721558, -0.3214811384677887, 0.032734908163547516, 0.08943107724189758, -0.05511154606938362, -0.04546116292476654, -0.13707557320594788, 0.5238304734230042, -0.2073390781879425, 0.06823817640542984, -0.32287898659706116, -0.37070804834365845, -0.86932373046875, -0.5760457515716553, 0.0019174760673195124, 0.11891946941614151, -0.23906132578849792, -0.4919883906841278, -0.9840127229690552, 0.5678126215934753]} +{"t": 6.5096, "q": [-0.4038170278072357, -0.012462742626667023, -0.0019150411244481802, 0.6720625162124634, -0.31049734354019165, 0.03370925784111023, -0.317010760307312, -0.01902136206626892, -0.002758730435743928, 0.583014965057373, -0.321472704410553, 0.03272028639912605, 0.08909628540277481, -0.055702291429042816, -0.04512280225753784, -0.1333005428314209, 0.5260595679283142, -0.2021738737821579, 0.06445116549730301, -0.3244848847389221, -0.37063613533973694, -0.8723317384719849, -0.5760577321052551, 0.004781705792993307, 0.11943478882312775, -0.2341238260269165, -0.4951402544975281, -0.9860261082649231, 0.5681002140045166]} +{"t": 6.5264, "q": [-0.4038255512714386, -0.01238604262471199, -0.001941824913956225, 0.6721051335334778, -0.31049734354019165, 0.03370925784111023, -0.3170278072357178, -0.01895318552851677, -0.0027453387156128883, 0.5830234885215759, -0.3214566111564636, 0.032749153673648834, 0.08865434676408768, -0.05642176419496536, -0.04478434473276138, -0.1294296383857727, 0.5285522937774658, -0.1974520981311798, 0.05998104810714722, -0.32640236616134644, -0.37050431966781616, -0.874405026435852, -0.5760457515716553, 0.007418235298246145, 0.11943478882312775, -0.22847925126552582, -0.5000777244567871, -0.9881113767623901, 0.5681241750717163]} +{"t": 6.5431, "q": [-0.40384259819984436, -0.012275256216526031, -0.0020355682354420424, 0.672088086605072, -0.31050148606300354, 0.033716484904289246, -0.3170192837715149, -0.01883387565612793, -0.002758730435743928, 0.5829808712005615, -0.32148095965385437, 0.03272036463022232, 0.08826598525047302, -0.056899119168519974, -0.04462610185146332, -0.12564261257648468, 0.5310689806938171, -0.19325761497020721, 0.056829195469617844, -0.32849958539009094, -0.3704923093318939, -0.8761906623840332, -0.5760457515716553, 0.009239837527275085, 0.11931494623422623, -0.2236376255750656, -0.5059859752655029, -0.9895135164260864, 0.568148136138916]} +{"t": 6.5598, "q": [-0.40385112166404724, -0.012130379676818848, -0.0020757438614964485, 0.6720795631408691, -0.31051385402679443, 0.03370918333530426, -0.31704485416412354, -0.018740132451057434, -0.0027453387156128883, 0.5829638242721558, -0.32148095965385437, 0.03272036463022232, 0.0878642275929451, -0.05717182531952858, -0.044515930116176605, -0.12226306647062302, 0.5331541895866394, -0.18983012437820435, 0.05512743443250656, -0.3324543833732605, -0.37028858065605164, -0.8769217133522034, -0.5761536359786987, 0.011073424480855465, 0.11927899718284607, -0.2190476655960083, -0.5113429427146912, -0.9906280636787415, 0.5682200789451599]} +{"t": 6.5766, "q": [-0.40384259819984436, -0.012062203139066696, -0.0020623519085347652, 0.6720966100692749, -0.3105221688747406, 0.033723656088113785, -0.3171045184135437, -0.01872308738529682, -0.002718554809689522, 0.5829041600227356, -0.32146885991096497, 0.032742030918598175, 0.08718124032020569, -0.05726279690861702, -0.044498953968286514, -0.11818842589855194, 0.5348559617996216, -0.1865224838256836, 0.05306614935398102, -0.3359657824039459, -0.36976128816604614, -0.8772812485694885, -0.5763093829154968, 0.01342233270406723, 0.11931494623422623, -0.21424199640750885, -0.5143030285835266, -0.9917665719985962, 0.5682200789451599]} +{"t": 6.5933, "q": [-0.40380850434303284, -0.011891759932041168, -0.0019284329609945416, 0.6720795631408691, -0.3105139136314392, 0.03372367471456528, -0.317198246717453, -0.018680477514863014, -0.00258463597856462, 0.5828615427017212, -0.3214404881000519, 0.03277803957462311, 0.08600275218486786, -0.05721721053123474, -0.04447782412171364, -0.11291536688804626, 0.536162257194519, -0.18214823305606842, 0.05017795041203499, -0.33988460898399353, -0.36953359842300415, -0.8778684735298157, -0.5765251517295837, 0.01641838811337948, 0.11929097771644592, -0.20947226881980896, -0.5177784562110901, -0.9929410219192505, 0.5682440400123596]} +{"t": 6.61, "q": [-0.4037829637527466, -0.011729840189218521, -0.0017677302239462733, 0.672088086605072, -0.3105263411998749, 0.0337308831512928, -0.3172493875026703, -0.018578210845589638, -0.0024775005877017975, 0.5828871130943298, -0.3214123249053955, 0.03282855823636055, 0.0850653201341629, -0.05720196291804314, -0.044457610696554184, -0.10855311155319214, 0.5369771718978882, -0.1790083795785904, 0.0478530116379261, -0.3432162404060364, -0.36943772435188293, -0.8784077763557434, -0.5765251517295837, 0.01859951764345169, 0.11919510364532471, -0.20679979026317596, -0.5213497281074524, -0.9936360716819763, 0.5682680010795593]} +{"t": 6.6268, "q": [-0.4037829637527466, -0.011567920446395874, -0.0018212978029623628, 0.6720795631408691, -0.31052225828170776, 0.0337381474673748, -0.3173005282878876, -0.018424812704324722, -0.002504284493625164, 0.5828359723091125, -0.32140424847602844, 0.032843008637428284, 0.084101103246212, -0.05721713975071907, -0.04445807635784149, -0.1044185534119606, 0.5378640294075012, -0.17644375562667847, 0.04524045065045357, -0.3447861671447754, -0.36918604373931885, -0.8787673115730286, -0.5765251517295837, 0.02033722959458828, 0.11908724904060364, -0.20562534034252167, -0.5264071226119995, -0.9942712187767029, 0.5682560205459595]} +{"t": 6.6436, "q": [-0.4037318229675293, -0.011312256567180157, -0.0018480815924704075, 0.6720966100692749, -0.31052225828170776, 0.0337381474673748, -0.31727495789527893, -0.018203238025307655, -0.002504284493625164, 0.5828359723091125, -0.3214126527309418, 0.03285763040184975, 0.08343151211738586, -0.05725491791963577, -0.04441479593515396, -0.10121876746416092, 0.5382714867591858, -0.1738911122083664, 0.04277170076966286, -0.34532544016838074, -0.3688744604587555, -0.8791747689247131, -0.576585054397583, 0.021331921219825745, 0.11908724904060364, -0.20531374216079712, -0.5303259491920471, -0.994774580001831, 0.5683039426803589]} +{"t": 6.6606, "q": [-0.40367215871810913, -0.011022504419088364, -0.0018748653819784522, 0.6720795631408691, -0.31053051352500916, 0.03373811021447182, -0.3172834813594818, -0.01798166334629059, -0.0025578520726412535, 0.5827763676643372, -0.32140040397644043, 0.032864753156900406, 0.08253425359725952, -0.05729283392429352, -0.04441101476550102, -0.09779127687215805, 0.5382834672927856, -0.17112275958061218, 0.04008723422884941, -0.3459126651287079, -0.36844301223754883, -0.8793904781341553, -0.5765251517295837, 0.022434469312429428, 0.11913518607616425, -0.2052418440580368, -0.5333698987960815, -0.9951700568199158, 0.5683518648147583]} +{"t": 6.6773, "q": [-0.4035869538784027, -0.010783884674310684, -0.001941824913956225, 0.6720710396766663, -0.3105221688747406, 0.033723656088113785, -0.3172834813594818, -0.017726000398397446, -0.0025578520726412535, 0.5827422738075256, -0.32140442728996277, 0.032857537269592285, 0.08165039122104645, -0.05728526413440704, -0.04441571980714798, -0.09526260942220688, 0.5384153127670288, -0.16987639665603638, 0.038301583379507065, -0.3470032513141632, -0.3682992160320282, -0.8794863224029541, -0.5765371322631836, 0.02334527112543583, 0.1191231980919838, -0.2052418440580368, -0.5363060832023621, -0.9953019022941589, 0.5683998465538025]} +{"t": 6.694, "q": [-0.4034164845943451, -0.010570832528173923, -0.0019552167505025864, 0.6720539927482605, -0.3105221092700958, 0.033709146082401276, -0.31727495789527893, -0.017547035589814186, -0.00254446011967957, 0.5827678442001343, -0.32138025760650635, 0.0329008549451828, 0.08077991753816605, -0.05727005749940872, -0.044405385851860046, -0.09291369467973709, 0.5384752154350281, -0.16936106979846954, 0.03727094084024429, -0.3494839668273926, -0.3678557872772217, -0.8794863224029541, -0.5765251517295837, 0.02389654517173767, 0.11913518607616425, -0.2052897810935974, -0.538786768913269, -0.9954577088356018, 0.5686035752296448]} +{"t": 6.7109, "q": [-0.4032716155052185, -0.010212903842329979, -0.0019284329609945416, 0.672002911567688, -0.3105221092700958, 0.033709146082401276, -0.3172834813594818, -0.017248760908842087, -0.0025712440256029367, 0.5827763676643372, -0.3213806450366974, 0.0329299122095108, 0.07969517260789871, -0.05728522688150406, -0.044405847787857056, -0.09046891331672668, 0.5384392738342285, -0.1690494865179062, 0.036611806601285934, -0.3540979027748108, -0.3672805428504944, -0.8794863224029541, -0.5765011310577393, 0.024052340537309647, 0.11903931200504303, -0.20540961623191833, -0.5415911078453064, -0.9955535531044006, 0.5687233805656433]} +{"t": 6.7276, "q": [-0.4030926525592804, -0.009897585958242416, -0.0019552167505025864, 0.6719773411750793, -0.31052619218826294, 0.033701881766319275, -0.31726643443107605, -0.016890833154320717, -0.0024908925406634808, 0.5827934145927429, -0.3213401734828949, 0.0329875685274601, 0.07790065556764603, -0.05725480988621712, -0.04438517242670059, -0.0875687301158905, 0.5383793115615845, -0.16837836802005768, 0.03606053441762924, -0.35740554332733154, -0.36681315302848816, -0.8794743418693542, -0.5765251517295837, 0.02407630905508995, 0.11883557587862015, -0.20546954870224, -0.5450904965400696, -0.9955894947052002, 0.568891167640686]} +{"t": 6.7445, "q": [-0.40293073654174805, -0.009369214065372944, -0.002008784329518676, 0.6719347238540649, -0.31053030490875244, 0.033694617450237274, -0.3172408640384674, -0.016507336869835854, -0.0025712440256029367, 0.5828189253807068, -0.3213486075401306, 0.03300219401717186, 0.07507497072219849, -0.05726245045661926, -0.04440021514892578, -0.08411727845668793, 0.5384153127670288, -0.16743160784244537, 0.03566505387425423, -0.361108660697937, -0.3664056956768036, -0.879498302936554, -0.5765371322631836, 0.02395646646618843, 0.11869176477193832, -0.20542161166667938, -0.5493808388710022, -0.9955894947052002, 0.5691788196563721]} +{"t": 6.7612, "q": [-0.402862548828125, -0.00883232057094574, -0.0020623519085347652, 0.6719262003898621, -0.3105219900608063, 0.03368016332387924, -0.3172408640384674, -0.016081232577562332, -0.0025980276986956596, 0.5828530192375183, -0.32135263085365295, 0.03299497440457344, 0.07245015352964401, -0.05726998671889305, -0.0443856380879879, -0.08124106377363205, 0.5383433699607849, -0.16588564217090607, 0.0351976677775383, -0.36328980326652527, -0.3660341799259186, -0.8795462846755981, -0.5765011310577393, 0.023680828511714935, 0.11859589070081711, -0.20545755326747894, -0.5515020489692688, -0.9955894947052002, 0.5694065093994141]} +{"t": 6.778, "q": [-0.4027347266674042, -0.008218728005886078, -0.0020757438614964485, 0.6719176769256592, -0.310517817735672, 0.033672936260700226, -0.3172323405742645, -0.01549320574849844, -0.002624811604619026, 0.5828700661659241, -0.3213200271129608, 0.03302367031574249, 0.06954411417245865, -0.057269949465990067, -0.04437576234340668, -0.07804127782583237, 0.5381276607513428, -0.16376443207263947, 0.0339992456138134, -0.3651233911514282, -0.36559078097343445, -0.879642128944397, -0.5765371322631836, 0.023620907217264175, 0.11833223700523376, -0.2057691514492035, -0.5532517433166504, -0.9955894947052002, 0.5696222186088562]} +{"t": 6.7947, "q": [-0.40256428718566895, -0.007681835442781448, -0.0022230546455830336, 0.6718665361404419, -0.31050539016723633, 0.033665746450424194, -0.317155659198761, -0.014939268119633198, -0.0026649872306734324, 0.5828871130943298, -0.32132846117019653, 0.033038295805454254, 0.06491051614284515, -0.05724717304110527, -0.0443701334297657, -0.07408647984266281, 0.5381036996841431, -0.16122378408908844, 0.03175819665193558, -0.36641767621040344, -0.3651353716850281, -0.8796900510787964, -0.5765251517295837, 0.023668844252824783, 0.1182243824005127, -0.20602081716060638, -0.5555527210235596, -0.9955655336380005, 0.5699937343597412]} +{"t": 6.8114, "q": [-0.4021807909011841, -0.007136419881135225, -0.002397149335592985, 0.6717642545700073, -0.310488760471344, 0.03363681957125664, -0.31700223684310913, -0.014436463825404644, -0.0027453387156128883, 0.5829723477363586, -0.32134073972702026, 0.0330311544239521, 0.059727855026721954, -0.05722443386912346, -0.04437437653541565, -0.07094661146402359, 0.5383313894271851, -0.15915051102638245, 0.030224215239286423, -0.36759212613105774, -0.3645481467247009, -0.8799057602882385, -0.5765011310577393, 0.023441145196557045, 0.1179966852068901, -0.20624852180480957, -0.5581892728805542, -0.9955415725708008, 0.5706648230552673]} +{"t": 6.8282, "q": [-0.40163537859916687, -0.006403517909348011, -0.002169487066566944, 0.6716875433921814, -0.31048041582107544, 0.033622365444898605, -0.31696817278862, -0.01372060552239418, -0.0025578520726412535, 0.583091676235199, -0.32133230566978455, 0.03301653265953064, 0.05548262223601341, -0.05720158666372299, -0.04434899985790253, -0.06898120045661926, 0.5383673310279846, -0.1573169231414795, 0.029325399547815323, -0.3688265085220337, -0.3632298707962036, -0.8801694512367249, -0.5765610933303833, 0.023249397054314613, 0.11782890558242798, -0.20645225048065186, -0.559855043888092, -0.9955176115036011, 0.5717673897743225]} +{"t": 6.8449, "q": [-0.40114110708236694, -0.00544904125854373, -0.0017141626449301839, 0.6716960668563843, -0.3104844093322754, 0.03358609974384308, -0.3169766962528229, -0.012749084271490574, -0.001941824913956225, 0.5831087231636047, -0.32134053111076355, 0.0330166257917881, 0.052014123648405075, -0.0571255087852478, -0.04428744688630104, -0.06793857365846634, 0.5382954478263855, -0.15638215839862823, 0.028318723663687706, -0.37086382508277893, -0.36109668016433716, -0.8807087540626526, -0.5765251517295837, 0.023153522983193398, 0.11720572412014008, -0.20769861340522766, -0.5618084669113159, -0.9954816699028015, 0.5735410451889038]} +{"t": 6.8616, "q": [-0.40053603053092957, -0.004588307347148657, -0.0011650949018076062, 0.671627938747406, -0.310492604970932, 0.03357157111167908, -0.31689146161079407, -0.011743474751710892, -0.001191878691315651, 0.583159863948822, -0.3213074207305908, 0.03300173580646515, 0.04821082577109337, -0.05697353556752205, -0.044213712215423584, -0.06672816723585129, 0.5383313894271851, -0.15525563061237335, 0.02683268114924431, -0.37250566482543945, -0.3588077127933502, -0.8813079595565796, -0.5765011310577393, 0.022614233195781708, 0.1155518963932991, -0.20974791049957275, -0.5640735030174255, -0.9954816699028015, 0.5752547979354858]} +{"t": 6.8784, "q": [-0.39976051449775696, -0.003761662170290947, -0.0006294191116467118, 0.6714659929275513, -0.3104760944843292, 0.033571645617485046, -0.3167977035045624, -0.01085717510432005, -0.000522283953614533, 0.5833643674850464, -0.3212951421737671, 0.03300885856151581, 0.04318886250257492, -0.05666982755064964, -0.044135354459285736, -0.06572148948907852, 0.5382475256919861, -0.15410515666007996, 0.024927187711000443, -0.37450703978538513, -0.35542815923690796, -0.8818352222442627, -0.5764771699905396, 0.020493024960160255, 0.11452125757932663, -0.21029917895793915, -0.5677886009216309, -0.9953737854957581, 0.5774359107017517]} +{"t": 6.8951, "q": [-0.3992747366428375, -0.0029520613607019186, -0.0004553244507405907, 0.6712444424629211, -0.3104510009288788, 0.033499281853437424, -0.31667840480804443, -0.010183927603065968, -0.0004955001641064882, 0.583534836769104, -0.32129937410354614, 0.03301617130637169, 0.037216078490018845, -0.05648798495531082, -0.04419894888997078, -0.06521815061569214, 0.5382475256919861, -0.1527988761663437, 0.022961774840950966, -0.3765563368797302, -0.35178494453430176, -0.8822667002677917, -0.5761656165122986, 0.017796574160456657, 0.1137302964925766, -0.21027521789073944, -0.5697540640830994, -0.9951101541519165, 0.5802881717681885]} +{"t": 6.9118, "q": [-0.3989253342151642, -0.0019720180425792933, -0.0004151487664785236, 0.671039879322052, -0.31040501594543457, 0.03337627276778221, -0.31653353571891785, -0.009272061288356781, -0.000522283953614533, 0.5836626291275024, -0.32130321860313416, 0.03299442678689957, 0.03129686042666435, -0.056214552372694016, -0.044101931154727936, -0.06520617008209229, 0.5383313894271851, -0.15175624191761017, 0.02172739990055561, -0.3801755905151367, -0.34968769550323486, -0.8827939629554749, -0.5748113989830017, 0.015339808538556099, 0.11251989006996155, -0.21043100953102112, -0.5709884166717529, -0.9948944449424744, 0.5842549204826355]} +{"t": 6.9286, "q": [-0.3986441195011139, 4.772329702973366e-05, 0.00030801360844634473, 0.6709120869636536, -0.31044143438339233, 0.03320939093828201, -0.31661874055862427, -0.00812157616019249, -0.0003883649769704789, 0.5835944414138794, -0.3212526738643646, 0.03290665149688721, 0.028189940378069878, -0.055751603096723557, -0.04404361546039581, -0.06551776081323624, 0.5383074283599854, -0.15098924934864044, 0.020792631432414055, -0.3823806643486023, -0.3480338752269745, -0.8833332657814026, -0.5727860331535339, 0.01330249011516571, 0.10995526611804962, -0.2112339586019516, -0.5718272924423218, -0.9948225021362305, 0.5881378650665283]} +{"t": 6.9453, "q": [-0.3980560898780823, 0.0019907657988369465, 0.0012186624808236957, 0.6708438992500305, -0.310486376285553, 0.03310045972466469, -0.3167892098426819, -0.0068091703578829765, 0.00016070275160018355, 0.5835092663764954, -0.3212166428565979, 0.03265921771526337, 0.025471385568380356, -0.05539480596780777, -0.04396875947713852, -0.06578141450881958, 0.5383553504943848, -0.1505218744277954, 0.019761987030506134, -0.3839266300201416, -0.3464040160179138, -0.8837407231330872, -0.5712520480155945, 0.011672635562717915, 0.10700714588165283, -0.21246832609176636, -0.5718272924423218, -0.9947506189346313, 0.5916731953620911]} +{"t": 6.9621, "q": [-0.3970760405063629, 0.003618489485234022, 0.0017677302239462733, 0.6704604029655457, -0.3106949031352997, 0.032628364861011505, -0.31695112586021423, -0.005113269202411175, 0.0014865003759041429, 0.5834751725196838, -0.3211364448070526, 0.032505717128515244, 0.022150196135044098, -0.055182185024023056, -0.04391314089298248, -0.06610498577356339, 0.5383793115615845, -0.15021027624607086, 0.0189590435475111, -0.38499322533607483, -0.3443906903266907, -0.8842920064926147, -0.5701255202293396, 0.009108011610805988, 0.10452641546726227, -0.2136547714471817, -0.5718872547149658, -0.9944629669189453, 0.5945613980293274]} +{"t": 6.9788, "q": [-0.3963601887226105, 0.004376957658678293, 0.0017007706919685006, 0.670059859752655, -0.3119133710861206, 0.02966000884771347, -0.3169766962528229, -0.003519633784890175, 0.00258463597856462, 0.5834410786628723, -0.32110753655433655, 0.03217117488384247, 0.016565775498747826, -0.05492490902543068, -0.04410293325781822, -0.06610498577356339, 0.5382355451583862, -0.15030615031719208, 0.018503643572330475, -0.3860238790512085, -0.3417661488056183, -0.8850589990615845, -0.5691428184509277, 0.005764412228018045, 0.10283663868904114, -0.21500898897647858, -0.5720070600509644, -0.9939357042312622, 0.598024845123291]} +{"t": 6.9955, "q": [-0.39591702818870544, 0.004470700863748789, 0.001232054433785379, 0.6696422696113586, -0.3112674057483673, 0.028417574241757393, -0.3169255554676056, -0.0026759442407637835, 0.0023435817565768957, 0.5836114883422852, -0.3211841881275177, 0.03201952204108238, 0.009682340547442436, -0.05478149652481079, -0.04431086406111717, -0.0661768913269043, 0.5382834672927856, -0.1503780633211136, 0.017844511196017265, -0.38707849383354187, -0.3379671275615692, -0.8862214684486389, -0.5680283308029175, 0.0025286716409027576, 0.10182996094226837, -0.21588383615016937, -0.5724624991416931, -0.9934443235397339, 0.6015601754188538]} +{"t": 7.0122, "q": [-0.39549094438552856, 0.004956461954861879, 0.0004821082402486354, 0.6688752770423889, -0.31058433651924133, 0.027225976809859276, -0.3168829381465912, -0.00195156445261091, 0.0018079059664160013, 0.5838245749473572, -0.321515828371048, 0.03136962279677391, 0.0033881496638059616, -0.05477413535118103, -0.04437478259205818, -0.06633269041776657, 0.5383074283599854, -0.15053385496139526, 0.017604826018214226, -0.38792937994003296, -0.331783264875412, -0.8886063098907471, -0.5651161670684814, -0.0005153216770850122, 0.1013985276222229, -0.2160036712884903, -0.5731216073036194, -0.9927971959114075, 0.6047959327697754]} +{"t": 7.029, "q": [-0.395388662815094, 0.00520360330119729, -2.6783791327034123e-05, 0.6680400967597961, -0.30994275212287903, 0.02616453729569912, -0.31731757521629333, -0.0012101404136046767, 0.0015266761183738708, 0.5838671922683716, -0.3219735622406006, 0.03055413067340851, 0.0, -0.05474385246634483, -0.0443936288356781, -0.06942461431026459, 0.5381276607513428, -0.15059377253055573, 0.01780855841934681, -0.3881690502166748, -0.3266899883747101, -0.8915305137634277, -0.5604302883148193, -0.0028282771818339825, 0.10081130266189575, -0.21593177318572998, -0.5731934905052185, -0.992317795753479, 0.6066414713859558]} +{"t": 7.0457, "q": [-0.39531198143959045, 0.005237691570073366, -0.0006695947959087789, 0.6671538352966309, -0.3094295561313629, 0.025384897366166115, -0.3179737627506256, -0.0004772384709212929, 0.0016605950659140944, 0.5838501453399658, -0.3219431936740875, 0.030386721715331078, -0.0021427033934742212, -0.05445504188537598, -0.044247012585401535, -0.07214503735303879, 0.5376603007316589, -0.15233148634433746, 0.0174490325152874, -0.38815706968307495, -0.3230947256088257, -0.89435875415802, -0.5541505813598633, -0.004494084510952234, 0.10078733414411545, -0.2158239185810089, -0.5729058980941772, -0.9920661449432373, 0.6079477667808533]} +{"t": 7.0625, "q": [-0.39527788758277893, 0.00526325823739171, -0.0011383111122995615, 0.6657732129096985, -0.3086017966270447, 0.024070873856544495, -0.31886857748031616, -6.817692337790504e-05, 0.0017409464344382286, 0.5838330984115601, -0.32174456119537354, 0.0302827637642622, -0.004365758039057255, -0.053717952221632004, -0.043914660811424255, -0.07452989369630814, 0.5370131134986877, -0.1546204686164856, 0.016658073291182518, -0.38813310861587524, -0.31990692019462585, -0.8970312476158142, -0.5458694696426392, -0.00512924836948514, 0.10091915726661682, -0.2156561315059662, -0.5726182460784912, -0.991862416267395, 0.6086788177490234]} +{"t": 7.0792, "q": [-0.395388662815094, 0.005212124902755022, -0.0016338112764060497, 0.6644949316978455, -0.30772632360458374, 0.0229888204485178, -0.31946513056755066, 8.52211524033919e-05, 0.0012856220128014684, 0.5838671922683716, -0.32171037793159485, 0.03015163540840149, -0.007445894181728363, -0.05285913124680519, -0.0435001403093338, -0.07589609920978546, 0.5351675748825073, -0.15677763521671295, 0.015231950208544731, -0.3880971372127533, -0.3155806064605713, -0.899511992931366, -0.5356229543685913, -0.004997421987354755, 0.10097908228635788, -0.21624335646629333, -0.5708565711975098, -0.9927612543106079, 0.6087387204170227]} +{"t": 7.0959, "q": [-0.39544832706451416, 0.005101337563246489, -0.0024775005877017975, 0.6638386845588684, -0.3071233034133911, 0.02191999740898609, -0.31956741213798523, 0.00032384038786403835, 0.00037497308221645653, 0.5839608907699585, -0.32179921865463257, 0.029963815584778786, -0.011128664948046207, -0.05095202103257179, -0.04279140755534172, -0.07661515474319458, 0.5335017442703247, -0.15962988138198853, 0.013685985468327999, -0.3880731761455536, -0.3103554844856262, -0.9017290472984314, -0.5247892141342163, -0.0049734534695744514, 0.10060757398605347, -0.21756163239479065, -0.568064272403717, -0.9934802651405334, 0.6086548566818237]} +{"t": 7.1127, "q": [-0.3954653739929199, 0.005067249294370413, -0.0030399602837860584, 0.6633955240249634, -0.3068011701107025, 0.02135670930147171, -0.31991681456565857, 0.0007669904152862728, -4.017568790004589e-05, 0.5840802192687988, -0.32205766439437866, 0.029414765536785126, -0.015159625560045242, -0.0483548529446125, -0.04229794070124626, -0.07624363899230957, 0.532423198223114, -0.16214656829833984, 0.012631373479962349, -0.38806119561195374, -0.3058134615421295, -0.9038023352622986, -0.5143868923187256, -0.0041705104522407055, 0.09966081380844116, -0.21892783045768738, -0.5660269260406494, -0.9937439560890198, 0.608199417591095]} +{"t": 7.1294, "q": [-0.3954227566719055, 0.0048968070186674595, -0.003066744189709425, 0.6630120873451233, -0.3064584732055664, 0.020887650549411774, -0.3205389380455017, 0.001448759576305747, 6.695948104606941e-05, 0.584369957447052, -0.32218217849731445, 0.029074817895889282, -0.018922748044133186, -0.04500669986009598, -0.04212008789181709, -0.07563244551420212, 0.5315962433815002, -0.1651066690683365, 0.012535499408841133, -0.3879892826080322, -0.30188262462615967, -0.905647873878479, -0.5033254623413086, -0.0020133499056100845, 0.09833056479692459, -0.2213965803384781, -0.5627912282943726, -0.9937439560890198, 0.6076121926307678]} +{"t": 7.1463, "q": [-0.39536309242248535, 0.005033161025494337, -0.003106919815763831, 0.6624666452407837, -0.30610352754592896, 0.020556211471557617, -0.3212292194366455, 0.0019856528379023075, 0.00033479739795438945, 0.5845915675163269, -0.3221209943294525, 0.02869642898440361, -0.021748438477516174, -0.041780292987823486, -0.0422762893140316, -0.07536879181861877, 0.5309491157531738, -0.1687738448381424, 0.012667326256632805, -0.38795334100723267, -0.2978319525718689, -0.9076372981071472, -0.4921441972255707, -0.001701759989373386, 0.09724000096321106, -0.22521954774856567, -0.5592318773269653, -0.9937199950218201, 0.6074683666229248]} +{"t": 7.163, "q": [-0.3950222134590149, 0.0052291699685156345, -0.0031604873947799206, 0.6616144180297852, -0.3055669665336609, 0.02010977640748024, -0.321638286113739, 0.0026077672373503447, 0.0007633380591869354, 0.5849750638008118, -0.32211342453956604, 0.028325919061899185, -0.023904534056782722, -0.03843076899647713, -0.042090341448783875, -0.07520101219415665, 0.5306135416030884, -0.17367538809776306, 0.012643357738852501, -0.38795334100723267, -0.2915402352809906, -0.9115082025527954, -0.480279803276062, -0.002253034384921193, 0.09686849266290665, -0.22944997251033783, -0.556032121181488, -0.9937319755554199, 0.6073605418205261]} +{"t": 7.1797, "q": [-0.39430636167526245, 0.005527443718165159, -0.0031604873947799206, 0.6606770157814026, -0.3051499128341675, 0.01948174461722374, -0.32184281945228577, 0.0030509172938764095, 0.0012588382232934237, 0.5854182243347168, -0.32214123010635376, 0.02777421660721302, -0.025257114320993423, -0.035148028284311295, -0.041562270373106, -0.07609982788562775, 0.5294630527496338, -0.17886456847190857, 0.012607404962182045, -0.3879173994064331, -0.28498488664627075, -0.9153791069984436, -0.46876296401023865, -0.0024687503464519978, 0.09701230376958847, -0.23268571496009827, -0.5541625618934631, -0.9937679171562195, 0.6076241731643677]} +{"t": 7.1965, "q": [-0.39356493949890137, 0.005757540930062532, -0.0031203117687255144, 0.6594924330711365, -0.30475765466690063, 0.01892603561282158, -0.3218769133090973, 0.0033747577108442783, 0.0015266761183738708, 0.5856653451919556, -0.3222283124923706, 0.027397533878684044, -0.026100805029273033, -0.03162989392876625, -0.041197679936885834, -0.07811318337917328, 0.5282526612281799, -0.1847248524427414, 0.012619389221072197, -0.3878454864025116, -0.28106603026390076, -0.9177160263061523, -0.45737797021865845, -0.003403519978746772, 0.09707222133874893, -0.2352743148803711, -0.5525447130203247, -0.9937679171562195, 0.6081395149230957]} +{"t": 7.2132, "q": [-0.3926786482334137, 0.00577458506450057, -0.002946217078715563, 0.6579925417900085, -0.3038890063762665, 0.018800092861056328, -0.3218683898448944, 0.0034940673504024744, 0.0017409464344382286, 0.5858868956565857, -0.32246866822242737, 0.026673953980207443, -0.02687753550708294, -0.028545241802930832, -0.04124559462070465, -0.07969509810209274, 0.5261314511299133, -0.19088473916053772, 0.01251153089106083, -0.3878694474697113, -0.27779433131217957, -0.9199570417404175, -0.44729921221733093, -0.005620601586997509, 0.09647301584482193, -0.23842616379261017, -0.5501118898391724, -0.9936240911483765, 0.6086788177490234]} +{"t": 7.23, "q": [-0.3908548951148987, 0.0057149301283061504, -0.002624811604619026, 0.6560580134391785, -0.3008844256401062, 0.021612100303173065, -0.3214678466320038, 0.003477022983133793, 0.002276622224599123, 0.5863641500473022, -0.32270726561546326, 0.026204584166407585, -0.027841750532388687, -0.025733307003974915, -0.041135724633932114, -0.08124106377363205, 0.5231234431266785, -0.19684089720249176, 0.012223909609019756, -0.3878215253353119, -0.2736358046531677, -0.9219704270362854, -0.4383949339389801, -0.007562045939266682, 0.0954064205288887, -0.24271652102470398, -0.5485659241676331, -0.9936360716819763, 0.6091821193695068]} +{"t": 7.2468, "q": [-0.3889288902282715, 0.005561531987041235, -0.002129311440512538, 0.6537229418754578, -0.30028125643730164, 0.020232589915394783, -0.3210417330265045, 0.0033747577108442783, 0.0030399602837860584, 0.5867476463317871, -0.3231208622455597, 0.025512060150504112, -0.028658656403422356, -0.02327875792980194, -0.041246384382247925, -0.08239154517650604, 0.5191087126731873, -0.20165856182575226, 0.012235893867909908, -0.3877975344657898, -0.2692016661167145, -0.9228812456130981, -0.43144407868385315, -0.009036106057465076, 0.09400426596403122, -0.2485288679599762, -0.5470079779624939, -0.993660032749176, 0.6096974611282349]} +{"t": 7.2635, "q": [-0.386909157037735, 0.005416656378656626, -0.0014865003759041429, 0.6512941718101501, -0.2994665503501892, 0.019238043576478958, -0.3204110860824585, 0.003349191276356578, 0.0036024199798703194, 0.5871140956878662, -0.3235258162021637, 0.024775870144367218, -0.030158549547195435, -0.020702961832284927, -0.04181306064128876, -0.08281099796295166, 0.5136318802833557, -0.20537367463111877, 0.01197224110364914, -0.3877735733985901, -0.2632095515727997, -0.9237560629844666, -0.4253081679344177, -0.010102702304720879, 0.09272195398807526, -0.2563425898551941, -0.54579758644104, -0.9937319755554199, 0.6099251508712769]} +{"t": 7.2802, "q": [-0.3845996558666229, 0.00526325823739171, -0.00033479739795438945, 0.6491209864616394, -0.298868864774704, 0.018387261778116226, -0.3193202614784241, 0.0033577135764062405, 0.0037631227169185877, 0.5873867869377136, -0.32399219274520874, 0.023989424109458923, -0.03224768489599228, -0.01823282800614834, -0.042187225073575974, -0.0833502858877182, 0.5079154372215271, -0.20896893739700317, 0.0121879568323493, -0.38778555393218994, -0.25902703404426575, -0.9239837527275085, -0.42100584506988525, -0.0105341337621212, 0.09112805128097534, -0.26464763283729553, -0.5446950197219849, -0.9938637614250183, 0.610368549823761]} +{"t": 7.2971, "q": [-0.38247767090797424, 0.005280302371829748, -0.0002946217136923224, 0.647493302822113, -0.29831305146217346, 0.017521843314170837, -0.3185362219810486, 0.0035025894176214933, 0.0035354604478925467, 0.5879322290420532, -0.32449987530708313, 0.023130269721150398, -0.03527425229549408, -0.015846239402890205, -0.042679231613874435, -0.08399743586778641, 0.5039126873016357, -0.2145775556564331, 0.012271846644580364, -0.38778555393218994, -0.2547127306461334, -0.924031674861908, -0.4188726544380188, -0.010929613374173641, 0.08935438096523285, -0.27318042516708374, -0.5443474650382996, -0.9938278198242188, 0.6122381091117859]} +{"t": 7.3139, "q": [-0.38090959191322327, 0.005331434775143862, -0.0008302975329570472, 0.64637690782547, -0.29769086837768555, 0.016483094543218613, -0.31794819235801697, 0.0037326866295188665, 0.0031203117687255144, 0.5887418389320374, -0.3252919018268585, 0.021794600412249565, -0.03866240382194519, -0.014158887788653374, -0.043179359287023544, -0.08434497565031052, 0.49961036443710327, -0.21931132674217224, 0.012152004055678844, -0.38771364092826843, -0.2501707077026367, -0.9240796566009521, -0.41860899329185486, -0.012116051279008389, 0.08780841529369354, -0.28079038858413696, -0.5442875623703003, -0.9937559366226196, 0.6141436100006104]} +{"t": 7.3306, "q": [-0.3798272907733917, 0.005331434775143862, -0.0013391895918175578, 0.6457206606864929, -0.29732587933540344, 0.015877149999141693, -0.31800785660743713, 0.003783819265663624, 0.0028256899677217007, 0.5907019376754761, -0.3265836536884308, 0.02010105922818184, -0.042117513716220856, -0.01279088668525219, -0.04400993511080742, -0.0851718857884407, 0.49439722299575806, -0.22382937371730804, 0.011996209621429443, -0.3876896798610687, -0.24459803104400635, -0.9240796566009521, -0.4186569154262543, -0.014728613197803497, 0.0860227718949318, -0.28915539383888245, -0.5442995429039001, -0.9936240911483765, 0.6165044903755188]} +{"t": 7.3474, "q": [-0.3790517747402191, 0.005339957308024168, -0.0013391895918175578, 0.6456184387207031, -0.2972097396850586, 0.01568962261080742, -0.3184851109981537, 0.0038434739690274, 0.0028256899677217007, 0.5935227274894714, -0.32828786969184875, 0.018441060557961464, -0.044956594705581665, -0.012327346950769424, -0.044377632439136505, -0.08675380796194077, 0.4884410798549652, -0.22735273838043213, 0.012152004055678844, -0.3875458836555481, -0.24060729146003723, -0.9241275787353516, -0.4187168478965759, -0.018743328750133514, 0.08402140438556671, -0.29754433035850525, -0.5443115234375, -0.9936240911483765, 0.6196563243865967]} +{"t": 7.3641, "q": [-0.37877053022384644, 0.005467788781970739, -0.001607027486898005, 0.6455843448638916, -0.2970438301563263, 0.015357610769569874, -0.3192691206932068, 0.004022438544780016, 0.0026783791836351156, 0.5965139865875244, -0.32974663376808167, 0.01692325435578823, -0.047648366540670395, -0.012297221459448338, -0.044733431190252304, -0.08871921896934509, 0.4831799864768982, -0.2326737344264984, 0.012259862385690212, -0.3873421549797058, -0.23781496286392212, -0.9241994619369507, -0.4209698736667633, -0.02346511371433735, 0.0812530443072319, -0.30568164587020874, -0.5444433689117432, -0.9936121106147766, 0.6237429976463318]} +{"t": 7.3808, "q": [-0.37866827845573425, 0.005808673333376646, -0.0022900141775608063, 0.6453627347946167, -0.29669126868247986, 0.014773303642868996, -0.31978899240493774, 0.004610464442521334, 0.0022498385515064, 0.5984655618667603, -0.33068934082984924, 0.01553080789744854, -0.049282174557447433, -0.012297690846025944, -0.04540644958615303, -0.0911640003323555, 0.4777151942253113, -0.23994815349578857, 0.012331767939031124, -0.3869946002960205, -0.23485486209392548, -0.9246069192886353, -0.42367830872535706, -0.02847451902925968, 0.07743007689714432, -0.31384289264678955, -0.5445751547813416, -0.9935402274131775, 0.6279733777046204]} +{"t": 7.3976, "q": [-0.37835296988487244, 0.006677928846329451, -0.0027721223887056112, 0.6448343992233276, -0.2961893677711487, 0.013900327496230602, -0.3200446367263794, 0.005658684764057398, 0.0021159194875508547, 0.5993433594703674, -0.3311655521392822, 0.014619868248701096, -0.049804460257291794, -0.012183841317892075, -0.045747239142656326, -0.09340505301952362, 0.47040480375289917, -0.2464316189289093, 0.012283830903470516, -0.38656318187713623, -0.2322063446044922, -0.9251941442489624, -0.4250684976577759, -0.033196303993463516, 0.07382282614707947, -0.32195621728897095, -0.5445511937141418, -0.9934083819389343, 0.6326712369918823]} +{"t": 7.4143, "q": [-0.3776285648345947, 0.007351176347583532, -0.0030399602837860584, 0.643760621547699, -0.2954884171485901, 0.012738961726427078, -0.3204877972602844, 0.0063063655979931355, 0.0018614735454320908, 0.5998290777206421, -0.3314805328845978, 0.014027013443410397, -0.049804460257291794, -0.012275171466171741, -0.04585658013820648, -0.096580870449543, 0.4623274505138397, -0.2541135251522064, 0.012235893867909908, -0.38643133640289307, -0.22857512533664703, -0.9253140091896057, -0.4253920614719391, -0.03893674910068512, 0.07047922909259796, -0.3306807279586792, -0.5444313883781433, -0.993432343006134, 0.6359908580780029]} +{"t": 7.4311, "q": [-0.37674227356910706, 0.007717627566307783, -0.0037631227169185877, 0.6423714756965637, -0.2945551574230194, 0.01126045547425747, -0.3209224343299866, 0.006868824828416109, 0.0013525814283639193, 0.6000847816467285, -0.33162087202072144, 0.013643204234540462, -0.049817852675914764, -0.012275157496333122, -0.04583679884672165, -0.10035590082406998, 0.45483729243278503, -0.26292192935943604, 0.0121879568323493, -0.38640737533569336, -0.22392524778842926, -0.9252780675888062, -0.424541175365448, -0.04472512751817703, 0.06718356907367706, -0.33843451738357544, -0.5442396402359009, -0.993432343006134, 0.6380281448364258]} +{"t": 7.4481, "q": [-0.37627357244491577, 0.007836936041712761, -0.004111311864107847, 0.6403091549873352, -0.2931325435638428, 0.009111716412007809, -0.32162123918533325, 0.0070733558386564255, 0.0010579597437754273, 0.600493848323822, -0.3317570686340332, 0.013252051547169685, -0.049831245094537735, -0.012267516925930977, -0.04578235372900963, -0.10405902564525604, 0.4457292854785919, -0.2701723873615265, 0.012080099433660507, -0.3862755596637726, -0.21887989342212677, -0.9253020286560059, -0.423941969871521, -0.05007009208202362, 0.06392385810613632, -0.34567299485206604, -0.5439160466194153, -0.9934802651405334, 0.6410242319107056]} +{"t": 7.4648, "q": [-0.37536168098449707, 0.008024424314498901, -0.004151487722992897, 0.6381615400314331, -0.2921265959739685, 0.007700446993112564, -0.3221069872379303, 0.007260842248797417, 0.0010981354862451553, 0.600800633430481, -0.33179971575737, 0.01295449584722519, -0.04985802620649338, -0.012153360061347485, -0.045658040791749954, -0.10724683105945587, 0.43760398030281067, -0.2781538665294647, 0.0121879568323493, -0.38610777258872986, -0.21526065468788147, -0.9253140091896057, -0.4239180088043213, -0.054851800203323364, 0.06102367490530014, -0.35215646028518677, -0.5437482595443726, -0.9933484792709351, 0.6439483761787415]} +{"t": 7.4818, "q": [-0.37426233291625977, 0.008501661941409111, -0.004084527958184481, 0.6361844539642334, -0.2913353145122528, 0.006468797568231821, -0.3221069872379303, 0.007669903803616762, 0.001272230059839785, 0.600868821144104, -0.3318185806274414, 0.012758428230881691, -0.04991159588098526, -0.011689303442835808, -0.04541274905204773, -0.10971558094024658, 0.428915411233902, -0.28573986887931824, 0.012152004055678844, -0.38535276055336, -0.2124803066253662, -0.9253140091896057, -0.42347458004951477, -0.06071208417415619, 0.059238024055957794, -0.3584361970424652, -0.5436524152755737, -0.9928690791130066, 0.6461055278778076]} +{"t": 7.4985, "q": [-0.3726516664028168, 0.008697669953107834, -0.003803298342972994, 0.6336278319358826, -0.29053571820259094, 0.005222722422331572, -0.3220217823982239, 0.007900000549852848, 0.0018882573349401355, 0.6010818481445312, -0.3320648670196533, 0.012288447469472885, -0.05007229745388031, -0.011316646821796894, -0.04538578912615776, -0.11153718084096909, 0.41920819878578186, -0.2934337556362152, 0.01209208369255066, -0.38431012630462646, -0.2093644142150879, -0.9251821637153625, -0.42176082730293274, -0.06756706535816193, 0.05794372782111168, -0.365399032831192, -0.543113112449646, -0.9925335049629211, 0.6496408581733704]} +{"t": 7.5152, "q": [-0.37115177512168884, 0.008825501427054405, -0.0036827712319791317, 0.6315910220146179, -0.28967440128326416, 0.003781744046136737, -0.3217405378818512, 0.008130097761750221, 0.0022632302716374397, 0.6011159420013428, -0.3322947323322296, 0.01181832142174244, -0.050340134650468826, -0.010997378267347813, -0.045601736754179, -0.11369434744119644, 0.4109630584716797, -0.30178675055503845, 0.012271846644580364, -0.38354313373565674, -0.20505009591579437, -0.9247028231620789, -0.4194478690624237, -0.07317567616701126, 0.05620601773262024, -0.3713671863079071, -0.5414113402366638, -0.9923297762870789, 0.6533440351486206]} +{"t": 7.532, "q": [-0.3702995479106903, 0.009174909442663193, -0.0037095551379024982, 0.6301337480545044, -0.2892354428768158, 0.0030468564946204424, -0.32172349095344543, 0.008436894044280052, 0.002356973709538579, 0.6012097001075745, -0.3326587975025177, 0.01121140643954277, -0.05078206956386566, -0.010541235096752644, -0.04582653567194939, -0.1158275380730629, 0.4016992449760437, -0.308689683675766, 0.012403673492372036, -0.3828600347042084, -0.19974108040332794, -0.9241395592689514, -0.41703906655311584, -0.07922771573066711, 0.052994243800640106, -0.3780064284801483, -0.5402488708496094, -0.9921740293502808, 0.6575025320053101]} +{"t": 7.5487, "q": [-0.36991605162620544, 0.009728847071528435, -0.0038434739690274, 0.6295883059501648, -0.2889663577079773, 0.002578465733677149, -0.3218172490596771, 0.009306150488555431, 0.0023435817565768957, 0.6014142036437988, -0.3329590857028961, 0.010662060230970383, -0.05110347270965576, -0.01003164704889059, -0.045739442110061646, -0.11752929538488388, 0.39184820652008057, -0.3136271834373474, 0.012571452185511589, -0.38251250982284546, -0.19609788060188293, -0.9235523343086243, -0.41454634070396423, -0.0860707089304924, 0.04993826523423195, -0.38493332266807556, -0.5390264987945557, -0.9918504357337952, 0.66236811876297]} +{"t": 7.5654, "q": [-0.369575172662735, 0.010453226044774055, -0.003937217406928539, 0.6292218565940857, -0.2888050079345703, 0.0022684787400066853, -0.3218172490596771, 0.01028619334101677, 0.002316797850653529, 0.6017636060714722, -0.3333524465560913, 0.009786589071154594, -0.05157218873500824, -0.009590371511876583, -0.04544983059167862, -0.1191711351275444, 0.38166162371635437, -0.3186485767364502, 0.012942963279783726, -0.3823327422142029, -0.19416841864585876, -0.9230489730834961, -0.4121015667915344, -0.09338108450174332, 0.04537227749824524, -0.3905898630619049, -0.5377681255340576, -0.9912392497062683, 0.6682643890380859]} +{"t": 7.5822, "q": [-0.3693280518054962, 0.010998642072081566, -0.004097919911146164, 0.6289321184158325, -0.28866010904312134, 0.00201627379283309, -0.3219109773635864, 0.011019094847142696, 0.0022900141775608063, 0.6021726727485657, -0.3337750732898712, 0.009020444005727768, -0.05208108201622963, -0.009095878340303898, -0.04513554647564888, -0.12108860909938812, 0.3732966184616089, -0.3239096403121948, 0.013218600302934647, -0.3820810616016388, -0.1926104724407196, -0.9226654767990112, -0.40897366404533386, -0.10060757398605347, 0.03906857594847679, -0.39544346928596497, -0.5366895794868469, -0.9904482960700989, 0.6748796701431274]} +{"t": 7.5989, "q": [-0.3690212368965149, 0.011424746364355087, -0.004272014833986759, 0.6285315752029419, -0.28858983516693115, 0.001864824676886201, -0.3220473527908325, 0.011598599143326283, 0.0022900141775608063, 0.602522075176239, -0.33407583832740784, 0.008485646918416023, -0.0526435412466526, -0.008745959028601646, -0.04493620619177818, -0.12318585067987442, 0.36473989486694336, -0.32905086874961853, 0.013590111397206783, -0.38176947832107544, -0.1910405308008194, -0.9224258065223694, -0.40515071153640747, -0.10930811613798141, 0.03304050862789154, -0.4016273319721222, -0.5365936756134033, -0.9882791638374329, 0.6812552809715271]} +{"t": 7.6157, "q": [-0.36863774061203003, 0.011723021045327187, -0.004472893197089434, 0.6279776692390442, -0.288436621427536, 0.0016126775881275535, -0.3221922218799591, 0.011999138630926609, 0.0023034061305224895, 0.6028118133544922, -0.3343644440174103, 0.00797252357006073, -0.053527407348155975, -0.008494936861097813, -0.044801581650972366, -0.12505538761615753, 0.3562430739402771, -0.33318543434143066, 0.013769874349236488, -0.3815537691116333, -0.18914702534675598, -0.9222819805145264, -0.40198686718940735, -0.1176731064915657, 0.02780340239405632, -0.40675657987594604, -0.5365217924118042, -0.9864695072174072, 0.6865163445472717]} +{"t": 7.6326, "q": [-0.3683309555053711, 0.012149127200245857, -0.004539852496236563, 0.6274492740631104, -0.28810131549835205, 0.0010145246051251888, -0.3223711848258972, 0.012595686130225658, 0.002423933008685708, 0.6030589938163757, -0.3345026969909668, 0.007741339970380068, -0.05450501665472984, -0.00831232313066721, -0.04461291804909706, -0.12704476714134216, 0.3483574688434601, -0.33733198046684265, 0.014117416925728321, -0.3814339339733124, -0.18606707453727722, -0.9221621751785278, -0.40000948309898376, -0.12621785700321198, 0.023764718323946, -0.4098604917526245, -0.5356948971748352, -0.9856066703796387, 0.6912860870361328]} +{"t": 7.6495, "q": [-0.3681775629520416, 0.012634888291358948, -0.004539852496236563, 0.6271169185638428, -0.28776174783706665, 0.00045256403973326087, -0.32245638966560364, 0.013047358952462673, 0.0024105412885546684, 0.6032208800315857, -0.33465296030044556, 0.007444869726896286, -0.055522799491882324, -0.008099308237433434, -0.044453758746385574, -0.12887835502624512, 0.34150248765945435, -0.3411669135093689, 0.014405039139091969, -0.3812301754951477, -0.18253172934055328, -0.9221022129058838, -0.3978762924671173, -0.13356418907642365, 0.01960619166493416, -0.41294044256210327, -0.533933162689209, -0.9843003749847412, 0.6962834596633911]} +{"t": 7.6662, "q": [-0.3678111135959625, 0.012967249378561974, -0.0045130690559744835, 0.6265970468521118, -0.28755059838294983, 8.504446304868907e-05, -0.32249048352241516, 0.01338824350386858, 0.002423933008685708, 0.603485107421875, -0.33477818965911865, 0.007075477857142687, -0.05667450278997421, -0.007901518605649471, -0.044324327260255814, -0.13068798184394836, 0.33476734161376953, -0.3452415466308594, 0.014812502078711987, -0.3810264468193054, -0.17784589529037476, -0.9220902323722839, -0.39581498503685, -0.1411382257938385, 0.01593901962041855, -0.4159724712371826, -0.5306255221366882, -0.9824427962303162, 0.7016284465789795]} +{"t": 7.683, "q": [-0.36720603704452515, 0.01324847899377346, -0.004472893197089434, 0.6260431408882141, -0.28731462359428406, -0.0003256979398429394, -0.3224649131298065, 0.013601296581327915, 0.0024908925406634808, 0.6038771271705627, -0.33502674102783203, 0.006750926841050386, -0.057571761310100555, -0.007802603766322136, -0.044220078736543655, -0.1336001455783844, 0.3292545974254608, -0.35026293992996216, 0.015351792797446251, -0.3806309700012207, -0.17464610934257507, -0.9222460389137268, -0.39304664731025696, -0.1485804319381714, 0.01152882445603609, -0.419939249753952, -0.5282167196273804, -0.9807170629501343, 0.705559253692627]} +{"t": 7.6998, "q": [-0.366771399974823, 0.013461532071232796, -0.004419325385242701, 0.6255914568901062, -0.287082701921463, -0.0007147531141526997, -0.32249048352241516, 0.013822871260344982, 0.0025176764465868473, 0.6043969392776489, -0.3351934552192688, 0.006469151470810175, -0.058589544147253036, -0.007650474086403847, -0.04415016621351242, -0.1363924741744995, 0.32428115606307983, -0.3545892536640167, 0.016034893691539764, -0.3800557255744934, -0.1730162650346756, -0.9223419427871704, -0.390098512172699, -0.15442872047424316, 0.005416869651526213, -0.4242655336856842, -0.5268984436988831, -0.9789793491363525, 0.7094901204109192]} +{"t": 7.7165, "q": [-0.3663708567619324, 0.013683106750249863, -0.004379149992018938, 0.6250033974647522, -0.28680527210235596, -0.001183086191304028, -0.32259276509284973, 0.013933658599853516, 0.00254446011967957, 0.6050020456314087, -0.3353686034679413, 0.0062310704961419106, -0.05948679894208908, -0.007612438406795263, -0.044125255197286606, -0.14002369344234467, 0.31893619894981384, -0.359167218208313, 0.017173394560813904, -0.37932470440864563, -0.17111076414585114, -0.9223299622535706, -0.3862755596637726, -0.15996544063091278, -0.002948119305074215, -0.4289873242378235, -0.5246214270591736, -0.9768221974372864, 0.7136366367340088]} +{"t": 7.7333, "q": [-0.3661237359046936, 0.013734240084886551, -0.004272014833986759, 0.6245773434638977, -0.28654220700263977, -0.0016438124002888799, -0.3228398859500885, 0.013993313536047935, 0.002611419651657343, 0.605726420879364, -0.33556756377220154, 0.005833317060023546, -0.06077242270112038, -0.007597218733280897, -0.04410539194941521, -0.1434391885995865, 0.3135792315006256, -0.3629542589187622, 0.01871936023235321, -0.37904906272888184, -0.16880980134010315, -0.9223060011863708, -0.3827521800994873, -0.16563397645950317, -0.01059405505657196, -0.4323788583278656, -0.5213857293128967, -0.9736464023590088, 0.7167046070098877]} +{"t": 7.7502, "q": [-0.36597883701324463, 0.013734240084886551, -0.004151487722992897, 0.6243898272514343, -0.2863205075263977, -0.0020324746146798134, -0.32326599955558777, 0.013933658599853516, 0.002758730435743928, 0.6069450378417969, -0.33590519428253174, 0.005291640292853117, -0.06252676248550415, -0.007285329047590494, -0.04391096159815788, -0.1468786597251892, 0.3100918233394623, -0.36729252338409424, 0.01991778239607811, -0.37886929512023926, -0.166748508810997, -0.9220662713050842, -0.3793366849422455, -0.17076322436332703, -0.016945693641901016, -0.4352790415287018, -0.5168316960334778, -0.9704705476760864, 0.7196886539459229]} +{"t": 7.7669, "q": [-0.3659873604774475, 0.01372571848332882, -0.003910433501005173, 0.6243557333946228, -0.28616419434547424, -0.0022626204881817102, -0.3237687945365906, 0.01383991539478302, 0.002959609031677246, 0.6083768010139465, -0.3363206088542938, 0.004714359063655138, -0.0651649609208107, -0.0068289446644485, -0.04361246898770332, -0.14909574389457703, 0.30678418278694153, -0.37061217427253723, 0.020481040701270103, -0.37864160537719727, -0.16418388485908508, -0.9221382141113281, -0.3765323758125305, -0.17622803151607513, -0.022134864702820778, -0.43773582577705383, -0.5104920268058777, -0.9680976867675781, 0.721989631652832]} +{"t": 7.7836, "q": [-0.3656294345855713, 0.01372571848332882, -0.003575636073946953, 0.6243557333946228, -0.2861396372318268, -0.00232026819139719, -0.324067085981369, 0.013771738857030869, 0.003321190131828189, 0.6097317934036255, -0.3367486894130707, 0.004158820491284132, -0.06702643632888794, -0.006243244279175997, -0.043170686811208725, -0.15106116235256195, 0.3029012978076935, -0.373320609331131, 0.02130795270204544, -0.3785577118396759, -0.16159529983997345, -0.9221382141113281, -0.37257757782936096, -0.18199244141578674, -0.027168238535523415, -0.441606730222702, -0.5057942271232605, -0.966683566570282, 0.7226487994194031]} +{"t": 7.8004, "q": [-0.365203320980072, 0.013700151816010475, -0.0032006630208343267, 0.6243045926094055, -0.2861231565475464, -0.0023490472231060266, -0.3242034316062927, 0.013729128055274487, 0.003736338810995221, 0.6110526919364929, -0.33714812994003296, 0.003581009339541197, -0.06833884119987488, -0.005802061874419451, -0.042823389172554016, -0.1534460186958313, 0.29931801557540894, -0.37662824988365173, 0.022182801738381386, -0.37840190529823303, -0.15804795920848846, -0.9221142530441284, -0.36786776781082153, -0.18665431439876556, -0.03332813084125519, -0.44672396779060364, -0.5020551681518555, -0.9660124182701111, 0.7230562567710876]} +{"t": 7.8171, "q": [-0.3649902939796448, 0.0136660635471344, -0.002986392704769969, 0.6242875456809998, -0.2861315906047821, -0.002363571897149086, -0.32423752546310425, 0.01369503978639841, 0.003990784753113985, 0.6121691465377808, -0.33755549788475037, 0.0029451146256178617, -0.06973160058259964, -0.005262045189738274, -0.04252023994922638, -0.15573500096797943, 0.2946561574935913, -0.379264771938324, 0.023201460018754005, -0.37819817662239075, -0.15452459454536438, -0.9220782518386841, -0.36266663670539856, -0.19110044836997986, -0.04097406566143036, -0.4518532156944275, -0.4976329803466797, -0.965796709060669, 0.7233558297157288]} +{"t": 7.8339, "q": [-0.36487096548080444, 0.013674585148692131, -0.002531068166717887, 0.6242194175720215, -0.2861233353614807, -0.0023779612965881824, -0.3243653476238251, 0.013677995651960373, 0.0045800283551216125, 0.613362193107605, -0.33789780735969543, 0.0024394572246819735, -0.07140558958053589, -0.004760087002068758, -0.042242228984832764, -0.15700533986091614, 0.2908451557159424, -0.3810264468193054, 0.024148214608430862, -0.3778626322746277, -0.1531224399805069, -0.9219824075698853, -0.35899946093559265, -0.1946597695350647, -0.04767324775457382, -0.4550889730453491, -0.4930669665336609, -0.9654731750488281, 0.7234756946563721]} +{"t": 7.8507, "q": [-0.3649306297302246, 0.013674585148692131, -0.0016605950659140944, 0.6239722371101379, -0.2861233353614807, -0.0023779612965881824, -0.32442501187324524, 0.013575729914009571, 0.005490677431225777, 0.6145212054252625, -0.33826813101768494, 0.0017814096063375473, -0.07232962548732758, -0.00403765682131052, -0.041899994015693665, -0.1589108258485794, 0.28853219747543335, -0.38448989391326904, 0.02509496733546257, -0.3771076202392578, -0.15198394656181335, -0.9218385815620422, -0.3549727499485016, -0.19878233969211578, -0.05402488633990288, -0.4587920904159546, -0.48771002888679504, -0.964514434337616, 0.7236075401306152]} +{"t": 7.8674, "q": [-0.3650669753551483, 0.013674585148692131, -0.0008704732172191143, 0.6232478618621826, -0.28611084818840027, -0.0023851061705499887, -0.32438239455223083, 0.013499030843377113, 0.006414717994630337, 0.6152455806732178, -0.33870968222618103, 0.0014220952289178967, -0.07269120961427689, -0.0033228883985430002, -0.041750241070985794, -0.16141553223133087, 0.28653085231781006, -0.3889959752559662, 0.026509106159210205, -0.37577736377716064, -0.15094131231307983, -0.9216827750205994, -0.3499513566493988, -0.20285698771476746, -0.060508351773023605, -0.463358074426651, -0.484426349401474, -0.9633759260177612, 0.7237153649330139]} +{"t": 7.8844, "q": [-0.3647431433200836, 0.013691630214452744, -0.00036158118746243417, 0.622242271900177, -0.2859581708908081, -0.0026802937500178814, -0.3242630958557129, 0.013379720970988274, 0.007111096754670143, 0.6155353784561157, -0.3389556407928467, 0.0013662610435858369, -0.07275816798210144, -0.0024332518223673105, -0.04191163554787636, -0.16364459693431854, 0.28318724036216736, -0.39168041944503784, 0.028378644958138466, -0.3734404444694519, -0.14961107075214386, -0.9216588139533997, -0.34412702918052673, -0.20695558190345764, -0.06569752097129822, -0.4683195650577545, -0.4803517162799835, -0.9621175527572632, 0.7237992882728577]} +{"t": 7.9012, "q": [-0.3644193112850189, 0.013674585148692131, -0.00022766222537029535, 0.6216030716896057, -0.2858094573020935, -0.002939390717074275, -0.32415229082107544, 0.013141102157533169, 0.00735215051099658, 0.6156972646713257, -0.33932584524154663, 0.0015296811470761895, -0.0728653073310852, -0.0013382985489442945, -0.04233551770448685, -0.16588564217090607, 0.27864521741867065, -0.39362189173698425, 0.031003190204501152, -0.3693658113479614, -0.14819693565368652, -0.921550989151001, -0.3372241258621216, -0.21103021502494812, -0.07220495492219925, -0.47482699155807495, -0.4767204821109772, -0.9612067937850952, 0.7239071130752563]} +{"t": 7.9179, "q": [-0.3643511235713959, 0.013674585148692131, -0.00036158118746243417, 0.6214156150817871, -0.28568950295448303, -0.00311917532235384, -0.3241693377494812, 0.013030314818024635, 0.00743250222876668, 0.6159273982048035, -0.33966711163520813, 0.0016564903780817986, -0.07283852249383926, -0.0005931457271799445, -0.04278949275612831, -0.168222576379776, 0.27357590198516846, -0.39511990547180176, 0.03374757990241051, -0.3642245829105377, -0.14663897454738617, -0.921407163143158, -0.33117207884788513, -0.21470938622951508, -0.07955128699541092, -0.48192164301872253, -0.47400006651878357, -0.9602720141410828, 0.7246142029762268]} +{"t": 7.9347, "q": [-0.3643340766429901, 0.013691630214452744, -0.0005624596378766, 0.6210662126541138, -0.28551194071769714, -0.003443109802901745, -0.3243909180164337, 0.012911004945635796, 0.007472677621990442, 0.6161489486694336, -0.3399571478366852, 0.001375705935060978, -0.07283852249383926, -1.5209973753371742e-05, -0.0430363193154335, -0.17053551971912384, 0.2692256271839142, -0.3970493674278259, 0.036743633449077606, -0.3610846996307373, -0.1452607959508896, -0.9210835695266724, -0.3252878189086914, -0.21846044063568115, -0.0857710987329483, -0.4896155297756195, -0.46968576312065125, -0.9587979316711426, 0.7256088852882385]} +{"t": 7.9514, "q": [-0.3642488718032837, 0.013700151816010475, -0.0006160272168926895, 0.62037593126297, -0.2855735719203949, -0.0032773083075881004, -0.3248596489429474, 0.012612731195986271, 0.007700339891016483, 0.6163449287414551, -0.3408794105052948, 0.0026929869782179594, -0.07306618243455887, 0.0004562991962302476, -0.04323427379131317, -0.17319601774215698, 0.2651749551296234, -0.3985833525657654, 0.04020707681775093, -0.3594069182872772, -0.14307966828346252, -0.9210236668586731, -0.31953540444374084, -0.22160030901432037, -0.09165535122156143, -0.4980284571647644, -0.46680954098701477, -0.9577792882919312, 0.7267354130744934]} +{"t": 7.9682, "q": [-0.3640613555908203, 0.013700151816010475, -0.0005892434273846447, 0.6192765831947327, -0.28551536798477173, -0.003320205258205533, -0.3252772092819214, 0.01212697010487318, 0.00831636693328619, 0.6163704991340637, -0.3414471447467804, 0.0036288797855377197, -0.07330723851919174, 0.0007148663862608373, -0.043382711708545685, -0.17544905841350555, 0.2610284090042114, -0.39908668398857117, 0.04309527575969696, -0.3582324683666229, -0.13979598879814148, -0.9210715889930725, -0.3148016333580017, -0.2238653302192688, -0.09677261859178543, -0.5061058402061462, -0.46498793363571167, -0.956449031829834, 0.727825939655304]} +{"t": 7.985, "q": [-0.36381423473358154, 0.013683106750249863, -0.0006294191116467118, 0.6179385781288147, -0.28546056151390076, -0.003240251215174794, -0.32571184635162354, 0.010482202284038067, 0.008758299984037876, 0.6163108944892883, -0.3414306044578552, 0.0035851001739501953, -0.07340098172426224, 0.0008973860531114042, -0.043422337621450424, -0.17809757590293884, 0.25600701570510864, -0.3993263840675354, 0.045767758041620255, -0.35669848322868347, -0.1350981742143631, -0.9211195111274719, -0.30907317996025085, -0.22578279674053192, -0.10160226374864578, -0.5162444710731506, -0.462159663438797, -0.9521586894989014, 0.7297194600105286]} +{"t": 8.0017, "q": [-0.3637375235557556, 0.01360640861093998, -0.0007231623749248683, 0.6167880892753601, -0.2853762209415436, -0.003109406679868698, -0.32616353034973145, 0.009425459429621696, 0.008557421155273914, 0.6162938475608826, -0.34137722849845886, 0.0035191706847399473, -0.07345455139875412, 0.0011179306311532855, -0.04355592653155327, -0.18096180260181427, 0.2512972056865692, -0.39991360902786255, 0.04863198474049568, -0.35517647862434387, -0.13230584561824799, -0.9211314916610718, -0.3034166097640991, -0.22736471891403198, -0.10573682188987732, -0.5246933698654175, -0.4588640034198761, -0.9480240941047668, 0.730881929397583]} +{"t": 8.0184, "q": [-0.3637886643409729, 0.01360640861093998, -0.0010177841177210212, 0.6160722374916077, -0.28521814942359924, -0.003209355054423213, -0.3266066610813141, 0.009553291834890842, 0.008557421155273914, 0.6163193583488464, -0.3412989377975464, 0.0033657590392977, -0.07346794009208679, 0.0014221301535144448, -0.043734051287174225, -0.18401777744293213, 0.24674321711063385, -0.4011959135532379, 0.05235908180475235, -0.3523242473602295, -0.13104750216007233, -0.9211075305938721, -0.29802370071411133, -0.22832345962524414, -0.11187274008989334, -0.5336575508117676, -0.4573419988155365, -0.9447764158248901, 0.7325477600097656]} +{"t": 8.0354, "q": [-0.36380571126937866, 0.013614930212497711, -0.0011383111122995615, 0.6156461238861084, -0.2851434350013733, -0.0032810482662171125, -0.3272032141685486, 0.009578857570886612, 0.008517245762050152, 0.6164045929908752, -0.34122079610824585, 0.003241437254473567, -0.0735081136226654, 0.001627462450414896, -0.043946754187345505, -0.1862228810787201, 0.24290825426578522, -0.4028017818927765, 0.05530719831585884, -0.3501071631908417, -0.13017265498638153, -0.9211435317993164, -0.2936854362487793, -0.22883878648281097, -0.1191231980919838, -0.5409079790115356, -0.4557361304759979, -0.9416725039482117, 0.7351722717285156]} +{"t": 8.0521, "q": [-0.36385685205459595, 0.013597887009382248, -0.0012454462703317404, 0.6153137683868408, -0.2851051688194275, -0.0031722800340503454, -0.32753556966781616, 0.009638512507081032, 0.008624380454421043, 0.6164301633834839, -0.3411919176578522, 0.0031757387332618237, -0.07346794009208679, 0.00197729398496449, -0.04430292546749115, -0.18817630410194397, 0.23795877397060394, -0.4044196605682373, 0.05922603979706764, -0.3469313383102417, -0.12983709573745728, -0.9211674928665161, -0.28938308358192444, -0.23036077618598938, -0.12672120332717896, -0.546852171421051, -0.452895849943161, -0.937322199344635, 0.7400259375572205]} +{"t": 8.0689, "q": [-0.36384832859039307, 0.013572320342063904, -0.0014998923288658261, 0.6150922179222107, -0.2850760817527771, -0.003193746553733945, -0.32768046855926514, 0.009672600775957108, 0.008637772873044014, 0.6164472103118896, -0.34118375182151794, 0.0031756616663187742, -0.07344115525484085, 0.0020609849598258734, -0.04452567920088768, -0.18990203738212585, 0.23281754553318024, -0.40657681226730347, 0.06259360909461975, -0.3423413634300232, -0.12952551245689392, -0.9211075305938721, -0.2851286828517914, -0.23332087695598602, -0.13380387425422668, -0.551861584186554, -0.4496721029281616, -0.9331037402153015, 0.7442323565483093]} +{"t": 8.0858, "q": [-0.36394205689430237, 0.013572320342063904, -0.0016472031129524112, 0.6150496006011963, -0.2850886583328247, -0.003201076528057456, -0.3278338611125946, 0.009698167443275452, 0.008624380454421043, 0.6165153980255127, -0.34116309881210327, 0.0031245758291333914, -0.07342776656150818, 0.0020381712820380926, -0.04455040395259857, -0.1913401335477829, 0.22880282998085022, -0.40987250208854675, 0.06491854786872864, -0.34012430906295776, -0.1290581226348877, -0.9211195111274719, -0.2814255654811859, -0.23761123418807983, -0.13900503516197205, -0.556571364402771, -0.44746699929237366, -0.9271596074104309, 0.7465692758560181]} +{"t": 8.1027, "q": [-0.36404433846473694, 0.013580841943621635, -0.0017275545978918672, 0.6147428154945374, -0.2850801944732666, -0.0031865518540143967, -0.3281662166118622, 0.009706689044833183, 0.008624380454421043, 0.6165153980255127, -0.3411710560321808, 0.0030810455791652203, -0.0733741968870163, 0.0020609877537935972, -0.04454547166824341, -0.19241872429847717, 0.2247401773929596, -0.41359958052635193, 0.06719554960727692, -0.33827874064445496, -0.1287585198879242, -0.9211195111274719, -0.2780579924583435, -0.2413143664598465, -0.14454174041748047, -0.5601666569709778, -0.4452019929885864, -0.9228812456130981, 0.7491219639778137]} +{"t": 8.1194, "q": [-0.3641977310180664, 0.013572320342063904, -0.0017409464344382286, 0.614478588104248, -0.2848813831806183, -0.0034452243708074093, -0.3284730017185211, 0.009698167443275452, 0.008624380454421043, 0.6165324449539185, -0.3411870300769806, 0.003008502535521984, -0.0732804536819458, 0.0020685901399701834, -0.04452073574066162, -0.19302991032600403, 0.220545694231987, -0.41706302762031555, 0.06948453933000565, -0.33613353967666626, -0.12867462635040283, -0.9211075305938721, -0.2750379741191864, -0.2433396875858307, -0.15080949664115906, -0.5625395178794861, -0.44222989678382874, -0.9183871150016785, 0.7512551546096802]} +{"t": 8.1362, "q": [-0.36449599266052246, 0.013538232073187828, -0.0017275545978918672, 0.6142911314964294, -0.2848525643348694, -0.0035100618842989206, -0.32910364866256714, 0.009723734110593796, 0.008624380454421043, 0.6165153980255127, -0.34121933579444885, 0.002936113625764847, -0.07277156412601471, 0.0021218224428594112, -0.04446634650230408, -0.1934373825788498, 0.21503295004367828, -0.4190044701099396, 0.07201320677995682, -0.3325982093811035, -0.12862668931484222, -0.9211555123329163, -0.2715984880924225, -0.24363930523395538, -0.15895876288414001, -0.5645888447761536, -0.43962931632995605, -0.9152592420578003, 0.7525134682655334]} +{"t": 8.1532, "q": [-0.36464086174964905, 0.013435965403914452, -0.0017141626449301839, 0.6140269637107849, -0.2842986583709717, -0.004416603595018387, -0.3294530510902405, 0.009698167443275452, 0.008597597479820251, 0.6166262030601501, -0.34128010272979736, 0.0028421725146472454, -0.07236980646848679, 0.0020457543432712555, -0.04437721148133278, -0.19349730014801025, 0.20974791049957275, -0.4206223487854004, 0.073391392827034, -0.3289549946784973, -0.12862668931484222, -0.9211674928665161, -0.2680751383304596, -0.24339962005615234, -0.16641294956207275, -0.5661467909812927, -0.43688493967056274, -0.9119276404380798, 0.7529089450836182]} +{"t": 8.1699, "q": [-0.36458975076675415, 0.013291090726852417, -0.0017275545978918672, 0.6138309240341187, -0.28410792350769043, -0.004631972871720791, -0.32996439933776855, 0.00965555664151907, 0.008597597479820251, 0.6167028546333313, -0.34134092926979065, 0.0027627672534435987, -0.0721823200583458, 0.0020153215155005455, -0.04429800808429718, -0.1934134066104889, 0.20428310334682465, -0.4216649532318115, 0.07475759834051132, -0.32338234782218933, -0.12865066528320312, -0.9212393760681152, -0.2641083598136902, -0.24323183298110962, -0.17208148539066315, -0.5671654343605042, -0.4326305389404297, -0.9063310027122498, 0.7530767321586609]} +{"t": 8.1867, "q": [-0.36453860998153687, 0.013120647519826889, -0.0017409464344382286, 0.6136690378189087, -0.2831287980079651, -0.006323149427771568, -0.3305438756942749, 0.009587380103766918, 0.008584205061197281, 0.6167710423469543, -0.34126153588294983, 0.0023767107632011175, -0.07192787528038025, 0.0019544768147170544, -0.04426829144358635, -0.1934373825788498, 0.19956131279468536, -0.42328283190727234, 0.07660316675901413, -0.320494145154953, -0.12866264581680298, -0.9212513566017151, -0.2603812515735626, -0.2430880218744278, -0.1769111305475235, -0.56746506690979, -0.4274653196334839, -0.9021844863891602, 0.7531605958938599]} +{"t": 8.2034, "q": [-0.3645130395889282, 0.01295020617544651, -0.0018212978029623628, 0.6135241389274597, -0.28122401237487793, -0.009568619541823864, -0.33093589544296265, 0.00953624676913023, 0.008584205061197281, 0.616796612739563, -0.34030231833457947, 0.000659279350657016, -0.07175377756357193, 0.0018860319396480918, -0.0442039854824543, -0.1934134066104889, 0.1943841278553009, -0.4245891273021698, 0.07922771573066711, -0.3190200626850128, -0.1288304179906845, -0.921407163143158, -0.2566661536693573, -0.24317191541194916, -0.18047045171260834, -0.5683518648147583, -0.4223960041999817, -0.8983375430107117, 0.7532325387001038]} +{"t": 8.2201, "q": [-0.3643937408924103, 0.012745674699544907, -0.001794514013454318, 0.6133280992507935, -0.2811621427536011, -0.009691031649708748, -0.33115747570991516, 0.009399893693625927, 0.008584205061197281, 0.6168562769889832, -0.33973953127861023, -0.0003492678515613079, -0.07161986082792282, 0.0017643522005528212, -0.04404570162296295, -0.193533256649971, 0.19027353823184967, -0.4265305697917938, 0.0812530443072319, -0.3173782229423523, -0.1290581226348877, -0.9213832020759583, -0.25358620285987854, -0.24307604134082794, -0.1838979423046112, -0.5701135396957397, -0.4187527894973755, -0.8959167003631592, 0.753292441368103]} +{"t": 8.2369, "q": [-0.36440226435661316, 0.012541143223643303, -0.0018614735454320908, 0.6132514476776123, -0.2811537981033325, -0.009690963663160801, -0.33129385113716125, 0.009306150488555431, 0.008463677950203419, 0.6169670820236206, -0.33935868740081787, -0.0010216985829174519, -0.07143237441778183, 0.0016198575031012297, -0.043892357498407364, -0.19358119368553162, 0.18613898754119873, -0.429059237241745, 0.08225972205400467, -0.3151012361049652, -0.12914201617240906, -0.9214311242103577, -0.2506980001926422, -0.24260865151882172, -0.1882961541414261, -0.5730976462364197, -0.41639190912246704, -0.8939273357391357, 0.7533643245697021]} +{"t": 8.2537, "q": [-0.364342600107193, 0.012268437072634697, -0.0018614735454320908, 0.6131747364997864, -0.28113284707069397, -0.009683548472821712, -0.3314131498336792, 0.00926353968679905, 0.008356543257832527, 0.6171886324882507, -0.3391766846179962, -0.0013142109382897615, -0.0711243599653244, 0.001452550059184432, -0.04375384375452995, -0.19360515475273132, 0.18243585526943207, -0.4317077398300171, 0.08254734426736832, -0.31282421946525574, -0.1293337643146515, -0.9213832020759583, -0.24851687252521515, -0.24242889881134033, -0.19181950390338898, -0.5764292478561401, -0.413935124874115, -0.8921656608581543, 0.7535800933837891]} +{"t": 8.2705, "q": [-0.36421477794647217, 0.011876419186592102, -0.002008784329518676, 0.613200306892395, -0.2811160683631897, -0.009668955579400063, -0.3312341868877411, 0.009289105422794819, 0.008088705129921436, 0.617469847202301, -0.3390774726867676, -0.0014605537289753556, -0.07065564393997192, 0.0014297351008281112, -0.043699439615011215, -0.19377294182777405, 0.1787806749343872, -0.43483564257621765, 0.08273909240961075, -0.3113861382007599, -0.12951351702213287, -0.9213472604751587, -0.24692296981811523, -0.242213174700737, -0.19621771574020386, -0.5801922678947449, -0.41162219643592834, -0.8906077146530151, 0.7542991042137146]} +{"t": 8.2872, "q": [-0.3641636371612549, 0.011313959956169128, -0.0021962709724903107, 0.613200306892395, -0.28106576204299927, -0.009639634750783443, -0.33088478446006775, 0.009493636898696423, 0.007874434813857079, 0.6177170276641846, -0.33900323510169983, -0.0015339488163590431, -0.07045476138591766, 0.001399305765517056, -0.04355112090706825, -0.19368904829025269, 0.1745622307062149, -0.43665722012519836, 0.08288290351629257, -0.3099839687347412, -0.12957344949245453, -0.9213951826095581, -0.24663536250591278, -0.2422371506690979, -0.19856663048267365, -0.5831044912338257, -0.4097406566143036, -0.8881030082702637, 0.7549102902412415]} +{"t": 8.3039, "q": [-0.3641465902328491, 0.010811153799295425, -0.002169487066566944, 0.6131917834281921, -0.28105732798576355, -0.009625110775232315, -0.3296320140361786, 0.009979397058486938, 0.007780691608786583, 0.6179471015930176, -0.339061439037323, -0.0013879938051104546, -0.0700262188911438, 0.0012319862144067883, -0.043373096734285355, -0.19360515475273132, 0.1709429919719696, -0.43795153498649597, 0.08314655721187592, -0.3085338771343231, -0.12957344949245453, -0.9213472604751587, -0.24691098928451538, -0.2422611117362976, -0.20031632483005524, -0.5855731964111328, -0.4088178873062134, -0.8854544758796692, 0.7553896903991699]} +{"t": 8.3207, "q": [-0.3639164865016937, 0.010453226044774055, -0.0021962709724903107, 0.6132684946060181, -0.28104880452156067, -0.009596111252903938, -0.32773157954216003, 0.01053333468735218, 0.007700339891016483, 0.6179641485214233, -0.33912771940231323, -0.0012565150391310453, -0.06953072547912598, 0.0007832676055841148, -0.0428934171795845, -0.19372500479221344, 0.16703613102436066, -0.4390420913696289, 0.0833263173699379, -0.30632877349853516, -0.12957344949245453, -0.9214550852775574, -0.24736639857292175, -0.24214127659797668, -0.20234166085720062, -0.5882097482681274, -0.40784716606140137, -0.8828898668289185, 0.7561926245689392]} +{"t": 8.3375, "q": [-0.3630557656288147, 0.01006120815873146, -0.002169487066566944, 0.6132599711418152, -0.28105688095092773, -0.009552789852023125, -0.32652997970581055, 0.011666775681078434, 0.007606596685945988, 0.6179385781288147, -0.33916088938713074, -0.0011834899196401238, -0.06856650859117508, 0.00028133249725215137, -0.04213231801986694, -0.19402460753917694, 0.16327308118343353, -0.4395454227924347, 0.08356600254774094, -0.30278146266937256, -0.12956145405769348, -0.9215390086174011, -0.24761806428432465, -0.24199746549129486, -0.20485834777355194, -0.5908222794532776, -0.40657681226730347, -0.8809484243392944, 0.757331132888794]} +{"t": 8.3542, "q": [-0.3622802495956421, 0.009745890274643898, -0.0021962709724903107, 0.6133451461791992, -0.2810940444469452, -0.009488020092248917, -0.32515791058540344, 0.011607120744884014, 0.007673555985093117, 0.6177170276641846, -0.339260458946228, -0.0009644681704230607, -0.06729427725076675, 0.00028893607668578625, -0.04138673469424248, -0.19426429271697998, 0.1594141572713852, -0.4400967061519623, 0.08368584513664246, -0.3003726303577423, -0.12954947352409363, -0.9217187762260437, -0.247701957821846, -0.24182967841625214, -0.2073870152235031, -0.5936745405197144, -0.40461140871047974, -0.8789710402488708, 0.7587932348251343]} +{"t": 8.3709, "q": [-0.361538827419281, 0.009353874251246452, -0.0021025275345891714, 0.6133451461791992, -0.2811394929885864, -0.009408842772245407, -0.32433977723121643, 0.011240670457482338, 0.007606596685945988, 0.617546558380127, -0.33944666385650635, -0.0006500952295027673, -0.06574081629514694, 3.0414325010497123e-05, -0.04082374647259712, -0.19426429271697998, 0.155914768576622, -0.4409356117248535, 0.08370981365442276, -0.29888656735420227, -0.12958543002605438, -0.9219943881034851, -0.24754615128040314, -0.24173380434513092, -0.20901687443256378, -0.5967305302619934, -0.4026220440864563, -0.8771733641624451, 0.7600036263465881]} +{"t": 8.3879, "q": [-0.3611297607421875, 0.009081166237592697, -0.0019686087034642696, 0.6133707165718079, -0.2812303602695465, -0.009250524453818798, -0.32387107610702515, 0.010959440842270851, 0.007633380591869354, 0.6173420548439026, -0.33950868248939514, -0.0005550129571929574, -0.06450875848531723, -8.363703091163188e-05, -0.040492944419384, -0.19424031674861908, 0.15311045944690704, -0.44193029403686523, 0.08374576270580292, -0.2973046600818634, -0.12962138652801514, -0.922234058380127, -0.24745027720928192, -0.24162594974040985, -0.2094363272190094, -0.5998584032058716, -0.40101614594459534, -0.8756154179573059, 0.7610102891921997]} +{"t": 8.4047, "q": [-0.3608655631542206, 0.008765848353505135, -0.001834689755924046, 0.6133536696434021, -0.2812964618206024, -0.009135373868048191, -0.3236068785190582, 0.010558901354670525, 0.007619988638907671, 0.6172312498092651, -0.33958736062049866, -0.00041613192297518253, -0.06338384002447128, -0.0003497647412586957, -0.04027084633708, -0.19416841864585876, 0.15073758363723755, -0.4426373541355133, 0.08373378217220306, -0.29479995369911194, -0.1297052651643753, -0.92237788438797, -0.24759408831596375, -0.24144618213176727, -0.20949624478816986, -0.6026747226715088, -0.3998776376247406, -0.8744769096374512, 0.7618252038955688]} +{"t": 8.4214, "q": [-0.3607718348503113, 0.00849314033985138, -0.0017141626449301839, 0.6133366227149963, -0.2813461124897003, -0.009063459932804108, -0.3235216736793518, 0.010252105072140694, 0.007606596685945988, 0.6171801090240479, -0.3396454453468323, -0.0002847307769116014, -0.06235266476869583, -0.00044860891648568213, -0.04027581959962845, -0.19420437514781952, 0.14843662083148956, -0.4432125985622406, 0.08376973122358322, -0.2911927103996277, -0.12969328463077545, -0.922461748123169, -0.24776187539100647, -0.24130237102508545, -0.20954418182373047, -0.6044124364852905, -0.3989069163799286, -0.873805820941925, 0.7625203132629395]} +{"t": 8.4383, "q": [-0.36068660020828247, 0.008245998993515968, -0.0016204193234443665, 0.6133280992507935, -0.2814081013202667, -0.008955503813922405, -0.323436439037323, 0.009894176386296749, 0.007579812780022621, 0.6170863509178162, -0.3396662175655365, -0.00023366170353256166, -0.061428625136613846, -0.0004866268136538565, -0.040280770510435104, -0.19425231218338013, 0.14647120237350464, -0.4435361623764038, 0.08396147936582565, -0.28816068172454834, -0.12969328463077545, -0.9224497675895691, -0.24794164299964905, -0.2409668117761612, -0.20959211885929108, -0.6054550409317017, -0.39781635999679565, -0.8732665181159973, 0.7630355954170227]} +{"t": 8.455, "q": [-0.36064401268959045, 0.007973290979862213, -0.0014865003759041429, 0.6132940649986267, -0.28142452239990234, -0.008912268094718456, -0.32341939210891724, 0.009544769302010536, 0.007539637386798859, 0.6169756054878235, -0.33969953656196594, -0.00013156475324649364, -0.06015639379620552, -0.0005930769839324057, -0.040270932018756866, -0.19425231218338013, 0.14442190527915955, -0.44382378458976746, 0.08408132195472717, -0.2829954922199249, -0.1297292411327362, -0.9224377870559692, -0.24807345867156982, -0.2406672090291977, -0.20979584753513336, -0.606257975101471, -0.39684563875198364, -0.8725115060806274, 0.7633232474327087]} +{"t": 8.4717, "q": [-0.36065253615379333, 0.007777282502502203, -0.0013927571708336473, 0.6132940649986267, -0.28148648142814636, -0.008804312907159328, -0.3234705328941345, 0.009272061288356781, 0.007566420827060938, 0.6168733239173889, -0.3397328555583954, -2.946798485936597e-05, -0.05875024572014809, -0.0006691127782687545, -0.0402907095849514, -0.19427627325057983, 0.14294783771038055, -0.44430315494537354, 0.08428505808115005, -0.2810061275959015, -0.12971726059913635, -0.922461748123169, -0.24794164299964905, -0.24051141738891602, -0.20999957621097565, -0.6067972779273987, -0.3960067331790924, -0.8719841837882996, 0.7635629177093506]} +{"t": 8.4884, "q": [-0.36060139536857605, 0.007683538366109133, -0.001272230059839785, 0.6132684946060181, -0.2815360426902771, -0.008717958815395832, -0.32350462675094604, 0.00908457487821579, 0.007566420827060938, 0.6167710423469543, -0.33979532122612, 0.00015286532288882881, -0.05700929835438728, -0.0006615091697312891, -0.040305521339178085, -0.19427627325057983, 0.1413898915052414, -0.44477054476737976, 0.08435696363449097, -0.27874109148979187, -0.12971726059913635, -0.922461748123169, -0.24754615128040314, -0.24042752385139465, -0.21015536785125732, -0.6072766184806824, -0.39449673891067505, -0.8715407848358154, 0.7638505697250366]} +{"t": 8.5051, "q": [-0.36059287190437317, 0.0075812735594809055, -0.0011650949018076062, 0.6132684946060181, -0.28156930208206177, -0.008689315989613533, -0.3235131502151489, 0.008897088468074799, 0.007553029339760542, 0.6167625188827515, -0.33982428908348083, 0.00020401192887220532, -0.05538887903094292, -0.0006310948519967496, -0.04029563441872597, -0.19425231218338013, 0.13987988233566284, -0.4453577697277069, 0.08441688120365143, -0.2769794166088104, -0.12974122166633606, -0.9224857091903687, -0.24709075689315796, -0.24031966924667358, -0.21029917895793915, -0.6077560186386108, -0.3929627537727356, -0.871265172958374, 0.7641501426696777]} +{"t": 8.5219, "q": [-0.36060991883277893, 0.007436397019773722, -0.0012186624808236957, 0.6132344007492065, -0.2815939784049988, -0.008631655015051365, -0.3235642910003662, 0.008735168725252151, 0.007553029339760542, 0.6167113780975342, -0.33986982703208923, 0.00028442154871299863, -0.05358097329735756, -0.0006082841427996755, -0.040310438722372055, -0.194132462143898, 0.13882526755332947, -0.44576525688171387, 0.08445283770561218, -0.2749421000480652, -0.12989701330661774, -0.9225097298622131, -0.24697090685367584, -0.24022379517555237, -0.2103830724954605, -0.6081754565238953, -0.39182424545288086, -0.871037483215332, 0.7643658518791199]} +{"t": 8.5388, "q": [-0.36055025458335876, 0.007359697949141264, -0.0012454462703317404, 0.6131917834281921, -0.28161463141441345, -0.00859566405415535, -0.3236750662326813, 0.008624380454421043, 0.007526245433837175, 0.6166858673095703, -0.339952677488327, 0.0004451448330655694, -0.05138470232486725, -0.000638698460534215, -0.04032032564282417, -0.19407254457473755, 0.13828597962856293, -0.4464123845100403, 0.08446481823921204, -0.2731204926967621, -0.1299329698085785, -0.9225336909294128, -0.2469829022884369, -0.24017585813999176, -0.21050292253494263, -0.6086548566818237, -0.39117708802223206, -0.8708217144012451, 0.7644258141517639]} +{"t": 8.5556, "q": [-0.36055025458335876, 0.007385264616459608, -0.0012990138493478298, 0.6131576895713806, -0.28162702918052673, -0.008574079722166061, -0.3238540291786194, 0.00857324805110693, 0.0074860695749521255, 0.6165835857391357, -0.3399815857410431, 0.0004817558510694653, -0.04908129945397377, -0.000638698460534215, -0.04032032564282417, -0.19402460753917694, 0.1381181925535202, -0.44707152247428894, 0.08456069231033325, -0.2719101011753082, -0.12996892631053925, -0.9225816130638123, -0.2469829022884369, -0.24015188217163086, -0.21057482063770294, -0.6091341972351074, -0.39045804738998413, -0.8706899285316467, 0.7644617557525635]} +{"t": 8.5723, "q": [-0.3604820966720581, 0.007351176347583532, -0.0015534599078819156, 0.6130383610725403, -0.2816355526447296, -0.008603080175817013, -0.3239392638206482, 0.008556203916668892, 0.007271799258887768, 0.6164557337760925, -0.34001055359840393, 0.0005329206469468772, -0.047487661242485046, -0.0006310948519967496, -0.040325261652469635, -0.19396468997001648, 0.13805827498435974, -0.44726327061653137, 0.08456069231033325, -0.27071166038513184, -0.13018463551998138, -0.9226175546646118, -0.24706678092479706, -0.2400440275669098, -0.21059879660606384, -0.6093858480453491, -0.39002659916877747, -0.8706539869308472, 0.764497697353363]} +{"t": 8.5892, "q": [-0.36045652627944946, 0.007274477276951075, -0.0020355682354420424, 0.6129531264305115, -0.2816562354564667, -0.008567089214920998, -0.3240244686603546, 0.008419849909842014, 0.00672273151576519, 0.6161830425262451, -0.3400808572769165, 0.0006426344043575227, -0.046443093568086624, -0.0006691127782687545, -0.04034008830785751, -0.19400063157081604, 0.1381661295890808, -0.4472752511501312, 0.0845487117767334, -0.2697529196739197, -0.13048423826694489, -0.9226415157318115, -0.2471267133951187, -0.24007998406887054, -0.2105868011713028, -0.6095895767211914, -0.3897869288921356, -0.8705940246582031, 0.7645576000213623]} +{"t": 8.6059, "q": [-0.3604820966720581, 0.007214822340756655, -0.00258463597856462, 0.6128679513931274, -0.28166043758392334, -0.008574350737035275, -0.32413527369499207, 0.008334629237651825, 0.006160271819680929, 0.6158080697059631, -0.3401799201965332, 0.0007599056698381901, -0.045786891132593155, -0.0006463020108640194, -0.040335141122341156, -0.1939886510372162, 0.1383219212293625, -0.44711944460868835, 0.08451275527477264, -0.2690218985080719, -0.13079583644866943, -0.9226295351982117, -0.2471027374267578, -0.24002006649971008, -0.21062275767326355, -0.609685480594635, -0.38967907428741455, -0.8705461025238037, 0.7646295428276062]} +{"t": 8.6226, "q": [-0.3604991137981415, 0.007121079135686159, -0.0031604873947799206, 0.612825334072113, -0.2816646695137024, -0.008581613190472126, -0.3242034316062927, 0.008274974301457405, 0.005637987982481718, 0.6153393387794495, -0.34021684527397156, 0.0007529687136411667, -0.04537174105644226, -0.000638698460534215, -0.04032032564282417, -0.19389277696609497, 0.13856160640716553, -0.4468318521976471, 0.0845487117767334, -0.268123060464859, -0.13128718733787537, -0.9226654767990112, -0.24709075689315796, -0.23998410999774933, -0.2106107771396637, -0.6098053455352783, -0.3896431028842926, -0.8704861998558044, 0.7646774649620056]} +{"t": 8.6394, "q": [-0.3604820966720581, 0.0070699467323720455, -0.0035220684949308634, 0.6127145290374756, -0.2816978693008423, -0.008552970364689827, -0.3244505822658539, 0.00824088603258133, 0.005329974461346865, 0.614930272102356, -0.3402538001537323, 0.0007606037543155253, -0.04506373032927513, -0.0006615091697312891, -0.04031539708375931, -0.19382087886333466, 0.13859756290912628, -0.446580171585083, 0.08456069231033325, -0.2666729688644409, -0.13179051876068115, -0.9226894974708557, -0.2470308393239975, -0.23960061371326447, -0.2106107771396637, -0.609913170337677, -0.38958320021629333, -0.8704742193222046, 0.7646894454956055]} +{"t": 8.6561, "q": [-0.36046504974365234, 0.007052902597934008, -0.003736338810995221, 0.6126633882522583, -0.2817351520061493, -0.008502657525241375, -0.3245698809623718, 0.008215319365262985, 0.00512909609824419, 0.6146064400672913, -0.3402826488018036, 0.0008117667166516185, -0.044635187834501266, -0.0006919234874658287, -0.04030553251504898, -0.19335348904132843, 0.1386694759130478, -0.44644835591316223, 0.08464458584785461, -0.26527082920074463, -0.1321021169424057, -0.9227014780044556, -0.24694694578647614, -0.2386658489704132, -0.21059879660606384, -0.6099970936775208, -0.389499306678772, -0.8704622387886047, 0.7647014260292053]} +{"t": 8.6728, "q": [-0.3605843484401703, 0.006993247661739588, -0.003736338810995221, 0.6126292943954468, -0.28179702162742615, -0.008380245417356491, -0.3246380686759949, 0.008147141896188259, 0.005115704145282507, 0.6144444942474365, -0.34033191204071045, 0.0008703719358891249, -0.04400577023625374, -0.0007983507821336389, -0.040187254548072815, -0.19255053997039795, 0.13877733051776886, -0.44647231698036194, 0.0848243460059166, -0.2643720209598541, -0.13220997154712677, -0.9226774573326111, -0.24689900875091553, -0.23815052211284637, -0.21057482063770294, -0.6100330352783203, -0.3894154131412506, -0.8704502582550049, 0.7647134065628052]} +{"t": 8.6895, "q": [-0.36074626445770264, 0.006890981923788786, -0.003696163184940815, 0.6126207709312439, -0.28187137842178345, -0.008250687271356583, -0.32465511560440063, 0.008010788820683956, 0.00512909609824419, 0.614325225353241, -0.34039777517318726, 0.00098731042817235, -0.04336295649409294, -0.0008211522945202887, -0.04014289751648903, -0.19181950390338898, 0.13877733051776886, -0.4464123845100403, 0.08520784229040146, -0.2639285922050476, -0.1323537826538086, -0.9226894974708557, -0.24687503278255463, -0.23798274993896484, -0.21067069470882416, -0.6101648211479187, -0.38947534561157227, -0.8704262375831604, 0.7647973299026489]} +{"t": 8.7063, "q": [-0.36083149909973145, 0.006669407244771719, -0.0036292036529630423, 0.6125696301460266, -0.2819458246231079, -0.008135604672133923, -0.3246380686759949, 0.007789213676005602, 0.0052094473503530025, 0.6142655611038208, -0.34049656987190247, 0.0011627180501818657, -0.04282728210091591, -0.0008743557264097035, -0.04003940522670746, -0.19123227894306183, 0.13877733051776886, -0.44629254937171936, 0.08566324412822723, -0.2634252607822418, -0.13238973915576935, -0.9226894974708557, -0.24686305224895477, -0.23807862401008606, -0.21077854931354523, -0.6102367639541626, -0.38963112235069275, -0.8704022765159607, 0.7650250196456909]} +{"t": 8.723, "q": [-0.3609934151172638, 0.006328522693365812, -0.003589028026908636, 0.6125696301460266, -0.2819787859916687, -0.008063573390245438, -0.32459545135498047, 0.007601726800203323, 0.0052094473503530025, 0.614248514175415, -0.34052956104278564, 0.0012357410741969943, -0.042438916862010956, -0.0009579642210155725, -0.03989650309085846, -0.1907888650894165, 0.13881328701972961, -0.4461367428302765, 0.0863703116774559, -0.26289793848991394, -0.13243767619132996, -0.9227014780044556, -0.24686305224895477, -0.23822243511676788, -0.21089839935302734, -0.6103206276893616, -0.38965511322021484, -0.8703663349151611, 0.7652287483215332]} +{"t": 8.7397, "q": [-0.3611382842063904, 0.0060472930781543255, -0.0035220684949308634, 0.6126037240028381, -0.282036691904068, -0.007977287285029888, -0.3245272636413574, 0.007405718322843313, 0.005182663444429636, 0.6142826080322266, -0.3405543267726898, 0.0012941332533955574, -0.04190324246883392, -0.0009427524637430906, -0.039857033640146255, -0.19065703451633453, 0.1387893110513687, -0.4460408687591553, 0.08768857270479202, -0.2625024616718292, -0.1324496567249298, -0.9227134585380554, -0.24687503278255463, -0.2383183091878891, -0.2108864188194275, -0.6104524731636047, -0.3897629678249359, -0.8703663349151611, 0.7653845548629761]} +{"t": 8.7565, "q": [-0.36129167675971985, 0.005689363460987806, -0.003468500915914774, 0.6126037240028381, -0.2820984125137329, -0.007825942710042, -0.3244931995868683, 0.007192665245383978, 0.005196055397391319, 0.6143507957458496, -0.3406119644641876, 0.0013964407844468951, -0.04122025519609451, -0.0009275453048758209, -0.039847150444984436, -0.19080084562301636, 0.13889716565608978, -0.44601690769195557, 0.089342400431633, -0.26197516918182373, -0.13248561322689056, -0.9227254390716553, -0.24686305224895477, -0.23835425078868866, -0.2108624428510666, -0.6103805303573608, -0.39067375659942627, -0.8703423738479614, 0.7657680511474609]} +{"t": 8.7733, "q": [-0.3614535927772522, 0.0053484789095819, -0.0034015413839370012, 0.6126463413238525, -0.2821477949619293, -0.007710674777626991, -0.3244335353374481, 0.006988134700804949, 0.005196055397391319, 0.6144019365310669, -0.3406737744808197, 0.0015206086682155728, -0.040430132299661636, -0.0008438955992460251, -0.03972366824746132, -0.19102855026721954, 0.13881328701972961, -0.44596898555755615, 0.09074455499649048, -0.2616156339645386, -0.13248561322689056, -0.9227254390716553, -0.24683909118175507, -0.23835425078868866, -0.21074260771274567, -0.6103565692901611, -0.3916205167770386, -0.8703423738479614, 0.7661035656929016]} +{"t": 8.79, "q": [-0.361538827419281, 0.005016116891056299, -0.003334582084789872, 0.6126804351806641, -0.2821933329105377, -0.007645954843610525, -0.32424604892730713, 0.006715427152812481, 0.005196055397391319, 0.6145297288894653, -0.34073132276535034, 0.0016083985101431608, -0.03969357907772064, -0.0006233865860849619, -0.039540745317935944, -0.19126823544502258, 0.13893312215805054, -0.4459569752216339, 0.09207480400800705, -0.2613040506839752, -0.13249759376049042, -0.9227134585380554, -0.24691098928451538, -0.23821043968200684, -0.21067069470882416, -0.6103805303573608, -0.39260321855545044, -0.8703543543815613, 0.7664391398429871]} +{"t": 8.8068, "q": [-0.36174336075782776, 0.004726364742964506, -0.0032810145057737827, 0.6126974821090698, -0.28226760029792786, -0.007501957938075066, -0.3240244686603546, 0.006451241206377745, 0.005182663444429636, 0.6145808696746826, -0.34083837270736694, 0.001798418932594359, -0.03903737664222717, -0.0003040801966562867, -0.03928426653146744, -0.19147196412086487, 0.13895709812641144, -0.4454536437988281, 0.09341703355312347, -0.26105237007141113, -0.13252156972885132, -0.9227254390716553, -0.24694694578647614, -0.23807862401008606, -0.21044299006462097, -0.6103805303573608, -0.39307060837745667, -0.8704022765159607, 0.7666907906532288]} +{"t": 8.8235, "q": [-0.3621268570423126, 0.004479223396629095, -0.0032274469267576933, 0.6127997636795044, -0.28227144479751587, -0.007451374549418688, -0.3237006366252899, 0.006221144460141659, 0.00508892023935914, 0.6147598624229431, -0.34090423583984375, 0.001915357424877584, -0.038220468908548355, -0.0004637259116861969, -0.03884570673108101, -0.19160379469394684, 0.13930463790893555, -0.4441833198070526, 0.09502292424440384, -0.260836660861969, -0.13258148729801178, -0.9227613806724548, -0.24687503278255463, -0.2380186915397644, -0.20993965864181519, -0.6103565692901611, -0.3931185305118561, -0.870522141456604, 0.766738772392273]} +{"t": 8.8402, "q": [-0.36294496059417725, 0.004249126184731722, -0.00321405497379601, 0.6130468845367432, -0.2822911739349365, -0.007270777132362127, -0.32359835505485535, 0.006067746318876743, 0.004955001175403595, 0.6148961782455444, -0.3409331738948822, 0.001995591912418604, -0.03714912012219429, -0.0012695399345830083, -0.038037195801734924, -0.1917356252670288, 0.1395443230867386, -0.44222989678382874, 0.0974557176232338, -0.260465145111084, -0.13283315300941467, -0.9228452444076538, -0.2467791587114334, -0.23786289989948273, -0.20914870500564575, -0.6102966666221619, -0.39313051104545593, -0.8707019090652466, 0.7667627334594727]} +{"t": 8.8571, "q": [-0.36326029896736145, 0.004070162307471037, -0.0031203117687255144, 0.6132429242134094, -0.282344788312912, -0.007162753958255053, -0.323623925447464, 0.005905826110392809, 0.00483447453007102, 0.6149132251739502, -0.3409414291381836, 0.0020102227572351694, -0.035890281200408936, -0.0024399152025580406, -0.03647129610180855, -0.19178356230258942, 0.1398199498653412, -0.44027647376060486, 0.10042780637741089, -0.25965023040771484, -0.13288109004497528, -0.922977089881897, -0.2467791587114334, -0.23753932118415833, -0.20822592079639435, -0.6099970936775208, -0.3932623565196991, -0.8708696961402893, 0.7667507529258728]} +{"t": 8.8738, "q": [-0.3632773458957672, 0.0037718876264989376, -0.002946217078715563, 0.6134048104286194, -0.28236106038093567, -0.0070905862376093864, -0.32353872060775757, 0.005684250965714455, 0.00483447453007102, 0.6149728894233704, -0.3409661054611206, 0.0020540610421448946, -0.0341627262532711, -0.0036479190457612276, -0.034735340625047684, -0.19181950390338898, 0.13990384340286255, -0.43850278854370117, 0.10295648127794266, -0.2584637999534607, -0.13283315300941467, -0.9232167601585388, -0.2466832995414734, -0.2371198832988739, -0.20783042907714844, -0.6095057129859924, -0.39366981387138367, -0.8710734248161316, 0.7667507529258728]} +{"t": 8.8906, "q": [-0.3633710741996765, 0.003652577754110098, -0.0026382035575807095, 0.6136264204978943, -0.28239381313323975, -0.00698962202295661, -0.32349610328674316, 0.005505286622792482, 0.004955001175403595, 0.6149217486381531, -0.34101977944374084, 0.002178151858970523, -0.03179236128926277, -0.0047643957659602165, -0.03279521316289902, -0.19189141690731049, 0.14013154804706573, -0.4371485710144043, 0.10484998673200607, -0.25605496764183044, -0.13284513354301453, -0.923432469367981, -0.246359720826149, -0.23671241104602814, -0.20723122358322144, -0.6091461777687073, -0.3943888545036316, -0.871492862701416, 0.7667627334594727]} +{"t": 8.9076, "q": [-0.3634136915206909, 0.0035588345490396023, -0.002169487066566944, 0.6137456893920898, -0.28261277079582214, -0.006608180236071348, -0.32349610328674316, 0.005368932615965605, 0.005182663444429636, 0.6147769093513489, -0.3411020338535309, 0.002309798263013363, -0.029113981872797012, -0.005857727024704218, -0.031049128621816635, -0.19192737340927124, 0.14029932022094727, -0.43660929799079895, 0.1068153977394104, -0.25428128242492676, -0.13286910951137543, -0.9237800240516663, -0.24544891715049744, -0.23595741391181946, -0.2058650255203247, -0.6088225841522217, -0.3955633342266083, -0.8718523979187012, 0.766738772392273]} +{"t": 8.9243, "q": [-0.36326029896736145, 0.003431003075093031, -0.0015802436973899603, 0.6138991117477417, -0.28277772665023804, -0.00627693347632885, -0.3232148587703705, 0.005087703000754118, 0.005383542273193598, 0.6147769093513489, -0.34119266271591187, 0.002485110657289624, -0.02452056109905243, -0.00719338608905673, -0.028708094730973244, -0.19197531044483185, 0.1402873396873474, -0.4364774823188782, 0.10909239947795868, -0.252543568611145, -0.132905051112175, -0.9241036176681519, -0.2437831163406372, -0.23510652780532837, -0.20403143763542175, -0.6087027788162231, -0.3974807858467102, -0.8735661506652832, 0.7667507529258728]} +{"t": 8.9411, "q": [-0.3634222149848938, 0.003166817594319582, -0.0012052706442773342, 0.6140525341033936, -0.2830546796321869, -0.005823662504553795, -0.3231978416442871, 0.004772384651005268, 0.00546389352530241, 0.6146575808525085, -0.34135720133781433, 0.0027483853045850992, -0.020744046196341515, -0.008482878096401691, -0.026409108191728592, -0.19306586682796478, 0.14032329618930817, -0.43638160824775696, 0.11129750311374664, -0.2514290511608124, -0.1329290270805359, -0.9244751334190369, -0.24144618213176727, -0.23425565659999847, -0.20156268775463104, -0.6088346242904663, -0.39942222833633423, -0.8761187791824341, 0.766738772392273]} +{"t": 8.9578, "q": [-0.36349040269851685, 0.002681057434529066, -0.0012186624808236957, 0.6140609979629517, -0.2832404673099518, -0.005485339090228081, -0.3227120637893677, 0.00418435875326395, 0.00512909609824419, 0.6144871115684509, -0.34163710474967957, 0.0032453828025609255, -0.01829332858324051, -0.009444928728044033, -0.023735972121357918, -0.19367706775665283, 0.14038321375846863, -0.4361538887023926, 0.11235211044549942, -0.25056618452072144, -0.1330009251832962, -0.9249904155731201, -0.23931299149990082, -0.23302127420902252, -0.19779963791370392, -0.6085230112075806, -0.4025740921497345, -0.8780003190040588, 0.7667507529258728]} +{"t": 8.9745, "q": [-0.3634136915206909, 0.0022549512796103954, -0.0011383111122995615, 0.614180326461792, -0.2834964096546173, -0.005010213237255812, -0.3223285675048828, 0.0034344124142080545, 0.00483447453007102, 0.6144104599952698, -0.3420611023902893, 0.003998158033937216, -0.01628454588353634, -0.010193351656198502, -0.020606663078069687, -0.19402460753917694, 0.14037123322486877, -0.43616586923599243, 0.11308314651250839, -0.2494276762008667, -0.13321664929389954, -0.9254817962646484, -0.2367723435163498, -0.23176293075084686, -0.19488747417926788, -0.6084031462669373, -0.40572595596313477, -0.8800016641616821, 0.7667627334594727]} +{"t": 8.9913, "q": [-0.36368638277053833, 0.00178623478859663, -0.0009508245857432485, 0.6144189834594727, -0.2840292751789093, -0.004081816878169775, -0.3222433626651764, 0.0027867318131029606, 0.004566636402159929, 0.6142655611038208, -0.34233683347702026, 0.0044732955284416676, -0.01503909844905138, -0.010690283961594105, -0.017203886061906815, -0.1941085010766983, 0.14032329618930817, -0.4361538887023926, 0.11392204463481903, -0.24801354110240936, -0.1335522085428238, -0.9260570406913757, -0.23351262509822845, -0.23004919290542603, -0.19340142607688904, -0.6083672046661377, -0.4111308455467224, -0.882242739200592, 0.7667627334594727]} +{"t": 9.0082, "q": [-0.36363527178764343, 0.0013004741631448269, -0.0007767299539409578, 0.6146831512451172, -0.2842358350753784, -0.003721976885572076, -0.32175758481025696, 0.0022242721170186996, 0.004553244449198246, 0.6139246821403503, -0.34253039956092834, 0.004831340163946152, -0.013539206236600876, -0.01133810542523861, -0.0136039974167943, -0.19396468997001648, 0.14032329618930817, -0.4361898601055145, 0.11472498625516891, -0.2468031346797943, -0.13393570482730865, -0.9269798398017883, -0.2302289456129074, -0.2278081327676773, -0.19244268536567688, -0.6083312630653381, -0.41586458683013916, -0.8841721415519714, 0.7667866945266724]} +{"t": 9.0249, "q": [-0.3641039729118347, 0.0007380149327218533, -0.0007365542696788907, 0.614700198173523, -0.2844547629356384, -0.0033405348658561707, -0.32175758481025696, 0.0015936355339363217, 0.00445950124412775, 0.6133536696434021, -0.34263330698013306, 0.005014054011553526, -0.012025922536849976, -0.011417215690016747, -0.01044008694589138, -0.19385682046413422, 0.14041917026042938, -0.43612992763519287, 0.1155758649110794, -0.2455328106880188, -0.13434316217899323, -0.9283220767974854, -0.22654978930950165, -0.22394922375679016, -0.19147196412086487, -0.6082833409309387, -0.4217488467693329, -0.8863413333892822, 0.7667986750602722]} +{"t": 9.0417, "q": [-0.3641124963760376, 0.00023520970717072487, -0.0006160272168926895, 0.6147428154945374, -0.28455281257629395, -0.0029942714609205723, -0.32125478982925415, 0.0011590076610445976, 0.004446109291166067, 0.6128338575363159, -0.3426457941532135, 0.005065063014626503, -0.010981354862451553, -0.011404922232031822, -0.007164515554904938, -0.1938088834285736, 0.14062289893627167, -0.43612992763519287, 0.11655857414007187, -0.24446621537208557, -0.13469070196151733, -0.9310784339904785, -0.22340992093086243, -0.21963489055633545, -0.18927885591983795, -0.6081874370574951, -0.4266384243965149, -0.8886182904243469, 0.7667866945266724]} +{"t": 9.0584, "q": [-0.36418068408966064, -0.0004465593956410885, -0.0004955001641064882, 0.6148450374603271, -0.28487491607666016, -0.0024184524081647396, -0.32116103172302246, 0.000502804818097502, 0.004539852496236563, 0.6123651266098022, -0.3426746129989624, 0.005116225685924292, -0.01007070578634739, -0.0112867197021842, -0.004136307165026665, -0.1937849223613739, 0.14068281650543213, -0.43603405356407166, 0.118248350918293, -0.2439628690481186, -0.13503825664520264, -0.9347575902938843, -0.2200423628091812, -0.2157040685415268, -0.18658240139484406, -0.6078638434410095, -0.431599885225296, -0.8912668228149414, 0.7667747139930725]} +{"t": 9.0751, "q": [-0.36422330141067505, -0.001162417232990265, -0.0004821082402486354, 0.6149047017097473, -0.28520944714546204, -0.0018210497219115496, -0.32074347138404846, 2.5566347176209092e-05, 0.004727339372038841, 0.6118026375770569, -0.3427284061908722, 0.005269406363368034, -0.009347543120384216, -0.011019322089850903, -0.001498047262430191, -0.19374896585941315, 0.14099441468715668, -0.43488356471061707, 0.1200699508190155, -0.24369922280311584, -0.13533785939216614, -0.9369626641273499, -0.21593177318572998, -0.21297167241573334, -0.18471285700798035, -0.6065815687179565, -0.435746431350708, -0.8946703672409058, 0.7667747139930725]} +{"t": 9.0919, "q": [-0.3640698790550232, -0.0019038410391658545, -0.0005490677431225777, 0.6149473190307617, -0.2854524850845337, -0.0012807655148208141, -0.3198060393333435, -0.0005198490689508617, 0.004687163513153791, 0.6111123561859131, -0.342782199382782, 0.005422568414360285, -0.008691340684890747, -0.010663947090506554, 0.0013812213437631726, -0.193760946393013, 0.14184528589248657, -0.43411657214164734, 0.12147210538387299, -0.24360334873199463, -0.13551761209964752, -0.9392037391662598, -0.21138975024223328, -0.2112579196691513, -0.18275943398475647, -0.6054550409317017, -0.4419901967048645, -0.8989247679710388, 0.7666907906532288]} +{"t": 9.1086, "q": [-0.3637034296989441, -0.0026111765764653683, -0.0006562029011547565, 0.6150496006011963, -0.28570452332496643, -0.0008561905124224722, -0.31887710094451904, -0.0008777778712101281, 0.004901433829218149, 0.6105754971504211, -0.3428399860858917, 0.005553965922445059, -0.008209232240915298, -0.010446234606206417, 0.004044292960315943, -0.19368904829025269, 0.14306768774986267, -0.4333495795726776, 0.1224907636642456, -0.24360334873199463, -0.13573333621025085, -0.9416005611419678, -0.20771059393882751, -0.21046696603298187, -0.17934392392635345, -0.6045922040939331, -0.4465562105178833, -0.9027237296104431, 0.7663432955741882]} +{"t": 9.1253, "q": [-0.36325177550315857, -0.0033526006154716015, -0.0008302975329570472, 0.6151348352432251, -0.2859812378883362, -0.0003595636517275125, -0.3181016147136688, -0.0014572817599400878, 0.004941609688103199, 0.6102260947227478, -0.3429597020149231, 0.005838620476424694, -0.007633380591869354, -0.010030344128608704, 0.007039249408990145, -0.19368904829025269, 0.14490126073360443, -0.43246275186538696, 0.1236412525177002, -0.24360334873199463, -0.1360449194908142, -0.9437337517738342, -0.20562534034252167, -0.20953220129013062, -0.17438246309757233, -0.6034896373748779, -0.4503791630268097, -0.9072178602218628, 0.7658279538154602]} +{"t": 9.1421, "q": [-0.36248478293418884, -0.004059936385601759, -0.0009106489014811814, 0.6154842376708984, -0.2861877977848053, 0.00011608117347350344, -0.3171386122703552, -0.0020964404102414846, 0.005115704145282507, 0.6101152896881104, -0.34320732951164246, 0.006277351174503565, -0.007151272147893906, -0.009725965559482574, 0.010432278737425804, -0.1937130093574524, 0.14689065515995026, -0.4319474399089813, 0.1251872181892395, -0.24362730979919434, -0.13626064360141754, -0.9449561834335327, -0.20469056069850922, -0.20774655044078827, -0.17055949568748474, -0.6041247844696045, -0.45295578241348267, -0.9117239117622375, 0.7650370001792908]} +{"t": 9.1588, "q": [-0.3622291088104248, -0.004554219078272581, -0.0009374326909892261, 0.6156887412071228, -0.28638651967048645, 0.00044751964742317796, -0.31675511598587036, -0.0025651566684246063, 0.005276407115161419, 0.6101067662239075, -0.3434230387210846, 0.0066724373027682304, -0.006990569643676281, -0.00933874025940895, 0.01304797176271677, -0.1947556436061859, 0.14859241247177124, -0.43066510558128357, 0.12656539678573608, -0.24363930523395538, -0.1365242898464203, -0.9456272721290588, -0.20475049316883087, -0.20502611994743347, -0.16698819398880005, -0.604160726070404, -0.4558919072151184, -0.9180036187171936, 0.764497697353363]} +{"t": 9.1755, "q": [-0.3620501458644867, -0.005031457170844078, -0.0008838651119731367, 0.6159443855285645, -0.28647327423095703, 0.0007434069411829114, -0.31644830107688904, -0.0029912625905126333, 0.00546389352530241, 0.6101834774017334, -0.34350231289863586, 0.006884240545332432, -0.006883434485644102, -0.009236691519618034, 0.0154953021556139, -0.1958102583885193, 0.15034210681915283, -0.42862778902053833, 0.12773986160755157, -0.24361532926559448, -0.13711151480674744, -0.946729838848114, -0.20485834777355194, -0.20066386461257935, -0.1639561802148819, -0.6043644547462463, -0.4602901339530945, -0.9247028231620789, 0.7641381621360779]} +{"t": 9.1923, "q": [-0.3615047335624695, -0.0051848553121089935, -0.0009106489014811814, 0.6163364052772522, -0.28663477301597595, 0.0010099932551383972, -0.31560462713241577, -0.0031105722300708294, 0.005450501572340727, 0.6101493835449219, -0.3435191214084625, 0.0069426135160028934, -0.006655772216618061, -0.009164644405245781, 0.01806318573653698, -0.19709256291389465, 0.15195997059345245, -0.42665040493011475, 0.1285547912120819, -0.243687242269516, -0.1378425657749176, -0.9481199979782104, -0.20497818291187286, -0.19597803056240082, -0.16169117391109467, -0.6045562028884888, -0.4641130864620209, -0.9305870532989502, 0.764042317867279]} +{"t": 9.209, "q": [-0.3614450693130493, -0.005295643117278814, -0.000897257006727159, 0.616634726524353, -0.2868748903274536, 0.0014134877128526568, -0.31538304686546326, -0.0032469260040670633, 0.00546389352530241, 0.6101749539375305, -0.3435443043708801, 0.007030163891613483, -0.006441501900553703, -0.00938789639621973, 0.019943486899137497, -0.19819511473178864, 0.15357784926891327, -0.42445728182792664, 0.12926185131072998, -0.2437112033367157, -0.13881328701972961, -0.950325071811676, -0.20493024587631226, -0.1913880705833435, -0.15827566385269165, -0.6044963002204895, -0.468990683555603, -0.9355605244636536, 0.7638505697250366]} +{"t": 9.2258, "q": [-0.36137691140174866, -0.00538938632234931, -0.0009106489014811814, 0.6171033978462219, -0.2869411110877991, 0.001557687995955348, -0.31505921483039856, -0.0033065807074308395, 0.00542371766641736, 0.6102260947227478, -0.34353628754615784, 0.007059186231344938, -0.005986177362501621, -0.0098005635663867, 0.021395770832896233, -0.19941750168800354, 0.1550159603357315, -0.42195257544517517, 0.13012471795082092, -0.2436632663011551, -0.13995178043842316, -0.9537166357040405, -0.20495422184467316, -0.18773289024829865, -0.15482421219348907, -0.6038611531257629, -0.4717470407485962, -0.9419121742248535, 0.7637666463851929]} +{"t": 9.2425, "q": [-0.36133429408073425, -0.005406430456787348, -0.0009642164804972708, 0.6175380349159241, -0.28703218698501587, 0.0017017737263813615, -0.3147098124027252, -0.0033662356436252594, 0.005316582508385181, 0.6102601885795593, -0.34351596236228943, 0.007080787792801857, -0.005035352893173695, -0.010137717239558697, 0.02258998714387417, -0.20050807297229767, 0.15615445375442505, -0.41906440258026123, 0.13109543919563293, -0.24359136819839478, -0.14100639522075653, -0.957048237323761, -0.20500215888023376, -0.1838739663362503, -0.1516723483800888, -0.6033937335014343, -0.47415587306022644, -0.9478563666343689, 0.7634670734405518]} +{"t": 9.2592, "q": [-0.361095666885376, -0.005431996658444405, -0.001044567907229066, 0.617989718914032, -0.28709426522254944, 0.0018243184313178062, -0.31423255801200867, -0.0034344124142080545, 0.005276407115161419, 0.6103794574737549, -0.3434959352016449, 0.007146043237298727, -0.0032944062259048223, -0.010549885220825672, 0.024030711501836777, -0.20151475071907043, 0.15774835646152496, -0.4165956377983093, 0.13261744379997253, -0.24357937276363373, -0.14234863221645355, -0.9595529437065125, -0.20505009591579437, -0.17861288785934448, -0.14774152636528015, -0.6031061410903931, -0.47779908776283264, -0.9533810615539551, 0.762328565120697]} +{"t": 9.276, "q": [-0.3605246841907501, -0.005474607460200787, -0.0009910003282129765, 0.6184243559837341, -0.2871646583080292, 0.0019468190148472786, -0.3137638568878174, -0.0035025894176214933, 0.005356758367270231, 0.6106691956520081, -0.3435005843639374, 0.007226122543215752, 0.0006829866906628013, -0.010727494023740292, 0.025637121871113777, -0.2024974524974823, 0.1600852757692337, -0.4148579239845276, 0.13428324460983276, -0.2434595376253128, -0.14427809417247772, -0.9624411463737488, -0.20503811538219452, -0.17330388724803925, -0.14232465624809265, -0.6029982566833496, -0.481250524520874, -0.9602000713348389, 0.7611421346664429]} +{"t": 9.2928, "q": [-0.36032867431640625, -0.005457563325762749, -0.0009910003282129765, 0.6188163757324219, -0.2872309386730194, 0.0020331942941993475, -0.31355080008506775, -0.0035366779193282127, 0.005410325713455677, 0.6108737587928772, -0.3434845805168152, 0.007284149061888456, 0.002691771136596799, -0.010868903249502182, 0.02655467391014099, -0.2030726969242096, 0.16244617104530334, -0.4138272702693939, 0.13658422231674194, -0.2435074746608734, -0.147525817155838, -0.9648379683494568, -0.20502611994743347, -0.16876186430454254, -0.13609285652637482, -0.6028065085411072, -0.4840788245201111, -0.9678699970245361, 0.7603391408920288]} +{"t": 9.3095, "q": [-0.3602178990840912, -0.005500173661857843, -0.001044567907229066, 0.6193021535873413, -0.2872391641139984, 0.0020765233784914017, -0.3131673038005829, -0.0036048549227416515, 0.005343366414308548, 0.6110867857933044, -0.34340760111808777, 0.007406997960060835, 0.004111311864107847, -0.010935603640973568, 0.027081407606601715, -0.2031445950269699, 0.1646512746810913, -0.4127606749534607, 0.13918478786945343, -0.24347151815891266, -0.15175624191761017, -0.966683566570282, -0.20501413941383362, -0.16421984136104584, -0.12946557998657227, -0.6003378033638, -0.4887406826019287, -0.9738501310348511, 0.760015606880188]} +{"t": 9.3263, "q": [-0.3601326644420624, -0.005576872732490301, -0.001232054433785379, 0.6199753880500793, -0.2872474193572998, 0.002105382736772299, -0.31281790137290955, -0.003724164329469204, 0.00516927195712924, 0.6113510131835938, -0.34337177872657776, 0.007559388875961304, 0.005490677431225777, -0.011024653911590576, 0.027726689353585243, -0.20297682285308838, 0.16654478013515472, -0.4115862250328064, 0.1413419544696808, -0.24347151815891266, -0.15578293800354004, -0.9682894349098206, -0.204966202378273, -0.1584913730621338, -0.12378506362438202, -0.5977970957756042, -0.491485059261322, -0.9793628454208374, 0.7597399353981018]} +{"t": 9.343, "q": [-0.3601667582988739, -0.005679138004779816, -0.0014865003759041429, 0.6206912398338318, -0.2872805595397949, 0.002148579340428114, -0.3126048445701599, -0.0038690404035151005, 0.005048744846135378, 0.61170893907547, -0.3433694541454315, 0.007813962176442146, 0.006950393784791231, -0.010985984466969967, 0.028197122737765312, -0.20289292931556702, 0.16821058094501495, -0.4103398621082306, 0.14276807010173798, -0.2434834986925125, -0.15717311203479767, -0.9696077108383179, -0.20497818291187286, -0.15235546231269836, -0.11965050548315048, -0.5947051644325256, -0.49299508333206177, -0.9856066703796387, 0.7593684196472168]} +{"t": 9.3598, "q": [-0.36023494601249695, -0.005883669015020132, -0.0018212978029623628, 0.6214326620101929, -0.2872970998287201, 0.0022063159849494696, -0.3123917877674103, -0.004022438544780016, 0.004847866017371416, 0.6121691465377808, -0.343446284532547, 0.008265793323516846, 0.008021745830774307, -0.01090976595878601, 0.028606029227375984, -0.20285698771476746, 0.17010408639907837, -0.40897366404533386, 0.14452975988388062, -0.24353143572807312, -0.1579640656709671, -0.9708780646324158, -0.2048463672399521, -0.14574016630649567, -0.11618706583976746, -0.5924042463302612, -0.4941335618495941, -0.9916826486587524, 0.7592965364456177]} +{"t": 9.3767, "q": [-0.3602945804595947, -0.006164898630231619, -0.0022498385515064, 0.6221399903297424, -0.2873343527317047, 0.002271168166771531, -0.3121446371078491, -0.004286624025553465, 0.004606812261044979, 0.6126378178596497, -0.34358078241348267, 0.008761867880821228, 0.008624380454421043, -0.010901677422225475, 0.02886728197336197, -0.20278507471084595, 0.1724410206079483, -0.40802690386772156, 0.14691461622714996, -0.24357937276363373, -0.1588868647813797, -0.9724120497703552, -0.2048943042755127, -0.1396641582250595, -0.11314307153224945, -0.5895280241966248, -0.49629074335098267, -0.9971714019775391, 0.7592126727104187]} +{"t": 9.3934, "q": [-0.3603031039237976, -0.006429084576666355, -0.00258463597856462, 0.6228132247924805, -0.28736746311187744, 0.002328816568478942, -0.3118719458580017, -0.004525243304669857, 0.004379149992018938, 0.6132088303565979, -0.3436456620693207, 0.00926449615508318, 0.008972570300102234, -0.010976887308061123, 0.028933295980095863, -0.2015986442565918, 0.1750895380973816, -0.40703222155570984, 0.14973090589046478, -0.24360334873199463, -0.16030099987983704, -0.9746171236038208, -0.2048943042755127, -0.13377991318702698, -0.10932010412216187, -0.5854294300079346, -0.49953845143318176, -1.00457763671875, 0.7588770985603333]} +{"t": 9.4102, "q": [-0.3603116273880005, -0.0065995268523693085, -0.002839081920683384, 0.6234098076820374, -0.287392258644104, 0.002400978934019804, -0.31158217787742615, -0.004772384651005268, 0.00416487967595458, 0.6133707165718079, -0.34382280707359314, 0.01000834722071886, 0.009186840616166592, -0.011097227223217487, 0.029036927968263626, -0.19869846105575562, 0.17739050090312958, -0.40592968463897705, 0.15239140391349792, -0.24365128576755524, -0.1625060886144638, -0.9775532484054565, -0.204594686627388, -0.12865066528320312, -0.10405902564525604, -0.5807315707206726, -0.5025704503059387, -1.0125471353530884, 0.7588291764259338]} +{"t": 9.4269, "q": [-0.36037129163742065, -0.006693270057439804, -0.0030131766106933355, 0.623895525932312, -0.2874543368816376, 0.0025379753205925226, -0.31144583225250244, -0.004959871061146259, 0.003990784753113985, 0.6134644746780396, -0.3437936305999756, 0.01053179707378149, 0.009240408428013325, -0.01113481167703867, 0.02907940372824669, -0.19535484910011292, 0.1790083795785904, -0.40440768003463745, 0.15451261401176453, -0.24365128576755524, -0.16523849964141846, -0.9801898002624512, -0.20403143763542175, -0.12406069785356522, -0.09728793799877167, -0.5761895775794983, -0.5072323083877563, -1.018539309501648, 0.7588411569595337]} +{"t": 9.4436, "q": [-0.3604735732078552, -0.00672735832631588, -0.0031203117687255144, 0.6244068741798401, -0.2874625325202942, 0.002624659799039364, -0.3113861680030823, -0.00507065886631608, 0.003816690295934677, 0.6135156154632568, -0.34361669421195984, 0.011010052636265755, 0.009347543120384216, -0.011142316274344921, 0.029093598946928978, -0.19175958633422852, 0.18024274706840515, -0.4024782180786133, 0.15756858885288239, -0.243687242269516, -0.1684263050556183, -0.9827663898468018, -0.20270118117332458, -0.11927899718284607, -0.09068462997674942, -0.5714198350906372, -0.510923445224762, -1.0249748229980469, 0.7588651180267334]} +{"t": 9.4604, "q": [-0.36055877804756165, -0.006795535329729319, -0.0031872710678726435, 0.6247988939285278, -0.2874540686607361, 0.002740371972322464, -0.31135207414627075, -0.005155880004167557, 0.0037631227169185877, 0.6135923266410828, -0.34348446130752563, 0.01143782027065754, 0.00940111093223095, -0.011202549561858177, 0.029112158343195915, -0.18833209574222565, 0.18159696459770203, -0.40039297938346863, 0.16106799244880676, -0.243687242269516, -0.1721414178609848, -0.9856665730476379, -0.2009994238615036, -0.11422164738178253, -0.08536363393068314, -0.5659430623054504, -0.5124214887619019, -1.0320335626602173, 0.7589489817619324]} +{"t": 9.4773, "q": [-0.36070364713668823, -0.006838145665824413, -0.0032006630208343267, 0.6252591013908386, -0.2874123156070709, 0.0029140678234398365, -0.311292439699173, -0.005215534474700689, 0.003736338810995221, 0.6135838031768799, -0.343229740858078, 0.011922525241971016, 0.009374327026307583, -0.011262739077210426, 0.02914017252624035, -0.1847008764743805, 0.18301109969615936, -0.3982837498188019, 0.16392023861408234, -0.24369922280311584, -0.17558088898658752, -0.9883989691734314, -0.1985306739807129, -0.10961970686912537, -0.08160059154033661, -0.561496913433075, -0.5148423314094543, -1.0388885736465454, 0.759044885635376]} +{"t": 9.494, "q": [-0.3608485460281372, -0.006923367269337177, -0.0031872710678726435, 0.6256937384605408, -0.28732073307037354, 0.00314583582803607, -0.3112753927707672, -0.005317800212651491, 0.003736338810995221, 0.6135582327842712, -0.34297874569892883, 0.012356327846646309, 0.009360934607684612, -0.011307862587273121, 0.029168298467993736, -0.18126140534877777, 0.1847488135099411, -0.39689356088638306, 0.167347714304924, -0.2437591403722763, -0.1777380406856537, -0.99149090051651, -0.19489945471286774, -0.10518554598093033, -0.07799334079027176, -0.5574102997779846, -0.5191446542739868, -1.046186923980713, 0.7594763040542603]} +{"t": 9.5108, "q": [-0.3611212372779846, -0.0071023316122591496, -0.003240838646888733, 0.626051664352417, -0.2871251106262207, 0.003573344787582755, -0.3112839162349701, -0.005556419026106596, 0.0036292036529630423, 0.6135326623916626, -0.3428250849246979, 0.012645699083805084, 0.009601988829672337, -0.011352986097335815, 0.029196426272392273, -0.17864884436130524, 0.18664231896400452, -0.3965340554714203, 0.17143434286117554, -0.24361532926559448, -0.1785050332546234, -0.9942832589149475, -0.1897941678762436, -0.10114686191082001, -0.07559649646282196, -0.553803026676178, -0.5245735049247742, -1.054180383682251, 0.7597639560699463]} +{"t": 9.5275, "q": [-0.36142802238464355, -0.007409127429127693, -0.0032810145057737827, 0.6262732148170471, -0.28699183464050293, 0.0039354534819722176, -0.3113265335559845, -0.005863215308636427, 0.0033881496638059616, 0.6135497093200684, -0.3426873981952667, 0.012877007015049458, 0.009575205855071545, -0.011413199827075005, 0.029214948415756226, -0.1759404093027115, 0.1877448707818985, -0.39599475264549255, 0.17425063252449036, -0.24362730979919434, -0.17893646657466888, -0.9970036745071411, -0.18503643572330475, -0.09843842685222626, -0.07406251132488251, -0.5509148240089417, -0.530194103717804, -1.06022047996521, 0.7599676847457886]} +{"t": 9.5443, "q": [-0.36180299520492554, -0.00792897678911686, -0.0032676225528120995, 0.6264351606369019, -0.2867920994758606, 0.004355740267783403, -0.31148844957351685, -0.006374542135745287, 0.003347973804920912, 0.6135497093200684, -0.34244462847709656, 0.01331089623272419, 0.009468070231378078, -0.0114357378333807, 0.0292385034263134, -0.17193767428398132, 0.18851186335086823, -0.3948562443256378, 0.1793319433927536, -0.24369922280311584, -0.1800030618906021, -1.0013659000396729, -0.17923606932163239, -0.09571800380945206, -0.07231281697750092, -0.5457016825675964, -0.5344604849815369, -1.067399024963379, 0.76024329662323]} +{"t": 9.5611, "q": [-0.3621268570423126, -0.008372126147150993, -0.0032006630208343267, 0.6265629529953003, -0.28659239411354065, 0.0047326539643108845, -0.31163331866264343, -0.006800648290663958, 0.0033747577108442783, 0.6135241389274597, -0.3421815037727356, 0.013766405172646046, 0.00932075921446085, -0.01145077869296074, 0.02924787811934948, -0.16803082823753357, 0.18939869105815887, -0.3939095139503479, 0.1826515793800354, -0.24369922280311584, -0.18096180260181427, -1.0043978691101074, -0.17399896681308746, -0.09389640390872955, -0.07004779577255249, -0.5403567552566528, -0.5386549830436707, -1.0754404067993164, 0.7604590058326721]} +{"t": 9.5778, "q": [-0.3623143434524536, -0.008789710700511932, -0.0031470954418182373, 0.6267504692077637, -0.2864550054073334, 0.005073107313364744, -0.31171002984046936, -0.007167099043726921, 0.003441717242822051, 0.6135582327842712, -0.34192654490470886, 0.014207405969500542, 0.009106488898396492, -0.011473363265395164, 0.02925245091319084, -0.1637524515390396, 0.19033347070217133, -0.39304664731025696, 0.18568359315395355, -0.24372318387031555, -0.18268753588199615, -1.0076336860656738, -0.1682705134153366, -0.09304552525281906, -0.06627276539802551, -0.53533536195755, -0.5429932475090027, -1.083158254623413, 0.7607706189155579]} +{"t": 9.5947, "q": [-0.3623739778995514, -0.009147639386355877, -0.0029997846577316523, 0.6269464492797852, -0.2863634526729584, 0.0052615199238061905, -0.31171852350234985, -0.007499461527913809, 0.003655987558886409, 0.6136178970336914, -0.34172436594963074, 0.014554259367287159, 0.008852043189108372, -0.011480736546218395, 0.029314078390598297, -0.15937821567058563, 0.1913161724805832, -0.3920879065990448, 0.18999791145324707, -0.2437591403722763, -0.18561168015003204, -1.0107975006103516, -0.1624102145433426, -0.09262607991695404, -0.06115550175309181, -0.5300143361091614, -0.5500519871711731, -1.0918468236923218, 0.7614297270774841]} +{"t": 9.6114, "q": [-0.3624677360057831, -0.009386258199810982, -0.002865865593776107, 0.6271169185638428, -0.2863507866859436, 0.005413383711129427, -0.31177818775177, -0.007644337601959705, 0.0038970415480434895, 0.6136775612831116, -0.3415667712688446, 0.014836153015494347, 0.008490461856126785, -0.011488256976008415, 0.02931876666843891, -0.15476427972316742, 0.19232285022735596, -0.39090144634246826, 0.19336546957492828, -0.24377112090587616, -0.1887155920267105, -1.0128108263015747, -0.15688548982143402, -0.09243433177471161, -0.05488775297999382, -0.5247053503990173, -0.5544501543045044, -1.0999600887298584, 0.7620289325714111]} +{"t": 9.6282, "q": [-0.3625614643096924, -0.009539656341075897, -0.0029060414526611567, 0.6273725628852844, -0.28633826971054077, 0.005478518549352884, -0.3116929829120636, -0.007738080807030201, 0.0039506093598902225, 0.6136434674263, -0.3413566052913666, 0.015212000347673893, 0.008544029667973518, -0.011616082862019539, 0.02940795011818409, -0.15029416978359222, 0.19329357147216797, -0.38993072509765625, 0.19729630649089813, -0.24395088851451874, -0.19501930475234985, -1.0145485401153564, -0.1497788429260254, -0.09160741418600082, -0.050633352249860764, -0.5207505226135254, -0.5599269866943359, -1.1077739000320435, 0.7623884677886963]} +{"t": 9.6449, "q": [-0.362587034702301, -0.009718621149659157, -0.002946217078715563, 0.6276793479919434, -0.2863464951515198, 0.005521829705685377, -0.3115480840206146, -0.00791704561561346, 0.0038568659219890833, 0.6137030720710754, -0.3412918448448181, 0.015313105657696724, 0.008544029667973518, -0.011962056159973145, 0.029614102095365524, -0.14566825330257416, 0.19476762413978577, -0.3890438973903656, 0.19939354062080383, -0.24404676258563995, -0.20061592757701874, -1.0177123546600342, -0.1429358571767807, -0.09019327908754349, -0.04699014872312546, -0.5164961218833923, -0.5660749077796936, -1.1166901588439941, 0.7624363899230957]} +{"t": 9.6621, "q": [-0.3625614643096924, -0.009872019290924072, -0.0029194331727921963, 0.6279435753822327, -0.2863256633281708, 0.005586991086602211, -0.31144583225250244, -0.00806192122399807, 0.00388364982791245, 0.6138905882835388, -0.3412068784236908, 0.01545035932213068, 0.008691340684890747, -0.012225276790559292, 0.02977817691862583, -0.1417853683233261, 0.19636152684688568, -0.3886124789714813, 0.20077171921730042, -0.24399882555007935, -0.20423516631126404, -1.0232850313186646, -0.13690778613090515, -0.08838365972042084, -0.04406599700450897, -0.511810302734375, -0.5718033313751221, -1.1265171766281128, 0.7625083327293396]} +{"t": 9.6789, "q": [-0.3625529706478119, -0.010008372366428375, -0.002959609031677246, 0.6282333135604858, -0.28630486130714417, 0.005623231176286936, -0.31126686930656433, -0.008189752697944641, 0.0038300822488963604, 0.6140609979629517, -0.3410894572734833, 0.015630876645445824, 0.008785083889961243, -0.012307977303862572, 0.029839232563972473, -0.138393834233284, 0.1973562240600586, -0.3886484205722809, 0.20235364139080048, -0.24399882555007935, -0.20779448747634888, -1.0281267166137695, -0.13109543919563293, -0.08628641813993454, -0.04171708971261978, -0.5077356696128845, -0.5763693451881409, -1.1341511011123657, 0.7625083327293396]} +{"t": 9.6956, "q": [-0.36239954829216003, -0.010238470509648323, -0.0029194331727921963, 0.6284292936325073, -0.28625911474227905, 0.005702994763851166, -0.3110197186470032, -0.008411328308284283, 0.0038702578749507666, 0.614325225353241, -0.34100866317749023, 0.015775427222251892, 0.008637772873044014, -0.012360645458102226, 0.029862558469176292, -0.1345468908548355, 0.19779963791370392, -0.3883128762245178, 0.2046186625957489, -0.2440827190876007, -0.21197697520256042, -1.032800555229187, -0.12594223022460938, -0.08405735343694687, -0.039500005543231964, -0.5029060244560242, -0.5802642107009888, -1.1432831287384033, 0.7624843716621399]} +{"t": 9.7123, "q": [-0.3623143434524536, -0.010315168648958206, -0.002852473873645067, 0.6287701725959778, -0.2862216830253601, 0.005768244154751301, -0.31093451380729675, -0.008530637249350548, 0.003977392800152302, 0.6145723462104797, -0.34089145064353943, 0.015985045582056046, 0.008610988967120647, -0.012330514378845692, 0.029862787574529648, -0.13073591887950897, 0.19803932309150696, -0.38840875029563904, 0.20824988186359406, -0.24409469962120056, -0.21735788881778717, -1.0361441373825073, -0.12178369611501694, -0.08261924982070923, -0.037342846393585205, -0.4985078275203705, -0.5838834643363953, -1.151516318321228, 0.7624963521957397]} +{"t": 9.7292, "q": [-0.3620927631855011, -0.010417434386909008, -0.0028256899677217007, 0.6288554072380066, -0.28606754541397095, 0.006007580552250147, -0.31066179275512695, -0.008684035390615463, 0.004030960611999035, 0.6147428154945374, -0.34077829122543335, 0.01618742011487484, 0.008423502556979656, -0.012360669672489166, 0.02985306829214096, -0.12684103846549988, 0.19814717769622803, -0.3884446918964386, 0.2118571400642395, -0.24404676258563995, -0.22134864330291748, -1.039763331413269, -0.11833223700523376, -0.0818522572517395, -0.03627625107765198, -0.49432530999183655, -0.5882097482681274, -1.1609958410263062, 0.7624004483222961]} +{"t": 9.746, "q": [-0.3618711829185486, -0.01040039025247097, -0.002839081920683384, 0.6289406418800354, -0.2858666777610779, 0.006355562247335911, -0.3102782964706421, -0.008701079525053501, 0.0039506093598902225, 0.6147854328155518, -0.34064897894859314, 0.016418715938925743, 0.00839671865105629, -0.0123682152479887, 0.029848266392946243, -0.1227903738617897, 0.19809924066066742, -0.38852858543395996, 0.21594375371932983, -0.24409469962120056, -0.22427278757095337, -1.0451083183288574, -0.11459316313266754, -0.08167249709367752, -0.0346224270761013, -0.4902626574039459, -0.5917211174964905, -1.1702955961227417, 0.7624004483222961]} +{"t": 9.7627, "q": [-0.36164960265159607, -0.010408911854028702, -0.002946217078715563, 0.6290003061294556, -0.2857202887535095, 0.006580388639122248, -0.3098692297935486, -0.008709602057933807, 0.003776514669880271, 0.6148109436035156, -0.34057602286338806, 0.016519714146852493, 0.008450286462903023, -0.012413459829986095, 0.02982894331216812, -0.11802065372467041, 0.19809924066066742, -0.38878023624420166, 0.21988657116889954, -0.24416659772396088, -0.2271130532026291, -1.0500338077545166, -0.11056645959615707, -0.08161257207393646, -0.03254915401339531, -0.48648762702941895, -0.5956159830093384, -1.179115891456604, 0.7622566223144531]} +{"t": 9.7796, "q": [-0.3612575829029083, -0.01040039025247097, -0.002946217078715563, 0.6290684938430786, -0.2856366038322449, 0.006710920017212629, -0.30947721004486084, -0.008701079525053501, 0.003736338810995221, 0.6149217486381531, -0.34055984020233154, 0.016548633575439453, 0.008423502556979656, -0.01242100540548563, 0.029824141412973404, -0.1122562363743782, 0.19759590923786163, -0.3888401687145233, 0.2229425460100174, -0.24429842829704285, -0.2304806262254715, -1.0535452365875244, -0.10758239030838013, -0.08108526468276978, -0.029816752299666405, -0.48319196701049805, -0.5975574254989624, -1.1878044605255127, 0.7615975141525269]} +{"t": 9.7963, "q": [-0.3605417311191559, -0.010366301983594894, -0.002946217078715563, 0.629111111164093, -0.2856198847293854, 0.00673992745578289, -0.30882102251052856, -0.008709602057933807, 0.003776514669880271, 0.6150069832801819, -0.3405354917049408, 0.0165774654597044, 0.008369934745132923, -0.01243609469383955, 0.02981453575193882, -0.10574880242347717, 0.19706860184669495, -0.38880422711372375, 0.22782012820243835, -0.24464596807956696, -0.236868217587471, -1.0562297105789185, -0.10549713671207428, -0.08053399622440338, -0.02623346820473671, -0.48077115416526794, -0.5983244180679321, -1.1964690685272217, 0.7609503865242004]} +{"t": 9.8131, "q": [-0.3596128225326538, -0.010298124514520168, -0.0030131766106933355, 0.6290770173072815, -0.2856031656265259, 0.006739995442330837, -0.30790063738822937, -0.008701079525053501, 0.003655987558886409, 0.614998459815979, -0.34053975343704224, 0.016599340364336967, 0.008276191540062428, -0.01243609469383955, 0.02981453575193882, -0.0998525619506836, 0.19717645645141602, -0.38880422711372375, 0.23365643620491028, -0.24477779865264893, -0.2432078719139099, -1.0595014095306396, -0.10431069880723953, -0.07997073233127594, -0.022158833220601082, -0.47812265157699585, -0.5983004570007324, -1.206991195678711, 0.7600036263465881]} +{"t": 9.83, "q": [-0.3588458299636841, -0.010246992111206055, -0.0030131766106933355, 0.6290003061294556, -0.2856031656265259, 0.006739995442330837, -0.3075086176395416, -0.00869255792349577, 0.0036292036529630423, 0.6150069832801819, -0.34056004881858826, 0.016577735543251038, 0.008209232240915298, -0.012473869137465954, 0.02977154403924942, -0.09435180574655533, 0.1970805823802948, -0.38880422711372375, 0.23880966007709503, -0.2448616921901703, -0.24694694578647614, -1.0643669366836548, -0.10316020995378494, -0.07951533794403076, -0.017904432490468025, -0.47579771280288696, -0.5982884764671326, -1.2156318426132202, 0.7592965364456177]} +{"t": 9.8467, "q": [-0.35844528675079346, -0.01016177050769329, -0.003066744189709425, 0.6290003061294556, -0.2856031656265259, 0.006739995442330837, -0.3073040843009949, -0.008649947121739388, 0.003589028026908636, 0.614998459815979, -0.3405764400959015, 0.016577916219830513, 0.008128880523145199, -0.012670113705098629, 0.029618214815855026, -0.0881200060248375, 0.19668510556221008, -0.38845667243003845, 0.24347151815891266, -0.2454608976840973, -0.25139307975769043, -1.0693763494491577, -0.10198576003313065, -0.07829294353723526, -0.014908376149833202, -0.47300538420677185, -0.5980488061904907, -1.2250155210494995, 0.7581819891929626]} +{"t": 9.8634, "q": [-0.3579680621623993, -0.010050983168184757, -0.003133703488856554, 0.6290003061294556, -0.2856031656265259, 0.006754465401172638, -0.30713364481925964, -0.008590292185544968, 0.0035220684949308634, 0.6150240302085876, -0.3405764400959015, 0.016577916219830513, 0.00806192122399807, -0.012934434227645397, 0.029355237260460854, -0.08178035169839859, 0.19626565277576447, -0.38785746693611145, 0.24849291145801544, -0.24682709574699402, -0.2573372721672058, -1.0731993913650513, -0.10131464153528214, -0.07702261209487915, -0.012607404962182045, -0.4699493944644928, -0.5978450775146484, -1.2339197397232056, 0.7570914626121521]} +{"t": 9.8804, "q": [-0.35757604241371155, -0.009982806630432606, -0.0032676225528120995, 0.628966212272644, -0.285586416721344, 0.006783472839742899, -0.30703988671302795, -0.008547681383788586, 0.003321190131828189, 0.6150496006011963, -0.34058472514152527, 0.01659254916012287, 0.008021745830774307, -0.013168330304324627, 0.02920636534690857, -0.07609982788562775, 0.19614581763744354, -0.387521892786026, 0.2530708909034729, -0.24802552163600922, -0.26398852467536926, -1.0757520198822021, -0.10105098783969879, -0.07597998529672623, -0.01077381893992424, -0.4675525724887848, -0.5977252125740051, -1.2418413162231445, 0.7556653022766113]} +{"t": 9.8971, "q": [-0.35726073384284973, -0.009948717430233955, -0.0033747577108442783, 0.6289321184158325, -0.28557807207107544, 0.0067834979854524136, -0.30708250403404236, -0.008547681383788586, 0.0031203117687255144, 0.6149899363517761, -0.3405970633029938, 0.016599955037236214, 0.008021745830774307, -0.013409964740276337, 0.02897658199071884, -0.07046724110841751, 0.19600200653076172, -0.3873900771141052, 0.25790053606033325, -0.24897228181362152, -0.2697169780731201, -1.0781009197235107, -0.10093114525079727, -0.07418235391378403, -0.010102702304720879, -0.4653235077857971, -0.5976053476333618, -1.2503621578216553, 0.753520131111145]} +{"t": 9.9139, "q": [-0.35697948932647705, -0.009880540892481804, -0.003481892868876457, 0.6289321184158325, -0.28557807207107544, 0.0067834979854524136, -0.30709102749824524, -0.008556203916668892, 0.0028926494996994734, 0.6149728894233704, -0.3406010866165161, 0.016592729836702347, 0.00799496192485094, -0.01351564098149538, 0.02889028750360012, -0.06482267379760742, 0.19600200653076172, -0.387521892786026, 0.2616635859012604, -0.24957148730754852, -0.27635622024536133, -1.0802819728851318, -0.10099106281995773, -0.07215701788663864, -0.009898969903588295, -0.4629266560077667, -0.5975813865661621, -1.2568336725234985, 0.751123309135437]} +{"t": 9.9306, "q": [-0.35670679807662964, -0.009863496758043766, -0.0036425956059247255, 0.6289235949516296, -0.2855696976184845, 0.0067979926243424416, -0.3073381781578064, -0.008522115647792816, 0.002718554809689522, 0.6148450374603271, -0.34059301018714905, 0.01660718023777008, 0.008035137318074703, -0.013613700866699219, 0.02883726917207241, -0.0601847805082798, 0.1955346167087555, -0.38776159286499023, 0.2660737633705139, -0.25135713815689087, -0.28399017453193665, -1.0826069116592407, -0.10113487392663956, -0.07001184672117233, -0.009934922680258751, -0.4606376588344574, -0.597593367099762, -1.262022852897644, 0.7495773434638977]} +{"t": 9.9473, "q": [-0.3565789461135864, -0.009846452623605728, -0.0037229470908641815, 0.6289150714874268, -0.2855738401412964, 0.00681966682896018, -0.3075597584247589, -0.008522115647792816, 0.0025176764465868473, 0.6148024797439575, -0.34059301018714905, 0.01660718023777008, 0.008048529736697674, -0.013794802129268646, 0.028712382540106773, -0.05602625384926796, 0.19513913989067078, -0.38765373826026917, 0.2698727548122406, -0.2532027065753937, -0.28887975215911865, -1.0860823392868042, -0.10123074799776077, -0.06761500239372253, -0.010030796751379967, -0.45785731077194214, -0.597509503364563, -1.2682905197143555, 0.7481871843338013]} +{"t": 9.9641, "q": [-0.35639145970344543, -0.009744187816977501, -0.00388364982791245, 0.6289235949516296, -0.2855696678161621, 0.006812462117522955, -0.3077131509780884, -0.008505071513354778, 0.0023703654296696186, 0.6147257685661316, -0.3406177759170532, 0.016636552289128304, 0.008035137318074703, -0.013983473181724548, 0.02857319638133049, -0.0523470975458622, 0.19517509639263153, -0.3877496123313904, 0.2738635241985321, -0.2548445463180542, -0.2936374843120575, -1.0902528762817383, -0.10127868503332138, -0.06471481919288635, -0.01005476526916027, -0.4550650119781494, -0.5974496006965637, -1.2745343446731567, 0.7462457418441772]} +{"t": 9.9811, "q": [-0.3561869263648987, -0.009658966213464737, -0.003910433501005173, 0.6289065480232239, -0.2855696678161621, 0.006826913915574551, -0.3078409731388092, -0.008462460711598396, 0.002276622224599123, 0.6146320104598999, -0.34063416719436646, 0.01663673296570778, 0.00798156950622797, -0.014028913341462612, 0.02847791649401188, -0.04906341806054115, 0.19511516392230988, -0.38771364092826843, 0.2778782248497009, -0.2556235194206238, -0.2984071969985962, -1.093177080154419, -0.10129067301750183, -0.062018364667892456, -0.010102702304720879, -0.4530276954174042, -0.5974496006965637, -1.2798553705215454, 0.7437410354614258]} +{"t": 9.9978, "q": [-0.35598239302635193, -0.009590789675712585, -0.003923825453966856, 0.6289065480232239, -0.28557801246643066, 0.006826871074736118, -0.3079432547092438, -0.00839428324252367, 0.0022900141775608063, 0.6146149635314941, -0.34064236283302307, 0.0166368056088686, 0.007713731843978167, -0.014157399535179138, 0.0283296350389719, -0.04519251361489296, 0.19511516392230988, -0.38767769932746887, 0.28143754601478577, -0.25609090924263, -0.3047947883605957, -1.095406174659729, -0.10147043317556381, -0.05998104810714722, -0.010186591185629368, -0.4498518705368042, -0.5974735617637634, -1.285272240638733, 0.7422429919242859]} +{"t": 10.0146, "q": [-0.35596534609794617, -0.009539656341075897, -0.003964001312851906, 0.6288468837738037, -0.2855863571166992, 0.006826828233897686, -0.3079432547092438, -0.008343150839209557, 0.002316797850653529, 0.6144444942474365, -0.3406505286693573, 0.016636895015835762, 0.007566420827060938, -0.014218040741980076, 0.02820562571287155, -0.042280346155166626, 0.1950312852859497, -0.38771364092826843, 0.28508076071739197, -0.2562706768512726, -0.31063112616539, -1.097227692604065, -0.10240520536899567, -0.058950405567884445, -0.010390323586761951, -0.44689175486564636, -0.5974496006965637, -1.2908328771591187, 0.7413561344146729]} +{"t": 10.0313, "q": [-0.3560335338115692, -0.009556700475513935, -0.004017568659037352, 0.6287701725959778, -0.2855779826641083, 0.006841322872787714, -0.3079347312450409, -0.008300540037453175, 0.0021828790195286274, 0.6142826080322266, -0.3406587243080139, 0.016637004911899567, 0.0076869479380548, -0.014225617982447147, 0.02819131128489971, -0.03988350182771683, 0.19494739174842834, -0.38783350586891174, 0.2888438105583191, -0.2562946379184723, -0.3157843351364136, -1.098929524421692, -0.10263290256261826, -0.058590877801179886, -0.010426276363432407, -0.44444698095321655, -0.5976053476333618, -1.2952311038970947, 0.7410206198692322]} +{"t": 10.0484, "q": [-0.35614433884620667, -0.009556700475513935, -0.004057744517922401, 0.6287616491317749, -0.2855779826641083, 0.006841322872787714, -0.3078835904598236, -0.008300540037453175, 0.002089135814458132, 0.614248514175415, -0.3406749963760376, 0.016622643917798996, 0.00772712379693985, -0.014210492372512817, 0.028210440650582314, -0.03763046860694885, 0.1949114352464676, -0.38783350586891174, 0.2920196056365967, -0.2562107443809509, -0.3206499218940735, -1.1002837419509888, -0.10223742574453354, -0.05824333429336548, -0.010450243949890137, -0.441690593957901, -0.597593367099762, -1.2989702224731445, 0.7408288717269897]} +{"t": 10.0653, "q": [-0.35628068447113037, -0.00958226714283228, -0.004004176706075668, 0.628753125667572, -0.28558215498924255, 0.006848527118563652, -0.30763643980026245, -0.008292018435895443, 0.0021427033934742212, 0.6142399907112122, -0.34067073464393616, 0.01660076715052128, 0.007753907702863216, -0.01415762398391962, 0.028253652155399323, -0.03568902239203453, 0.19487549364566803, -0.38813310861587524, 0.2963818609714508, -0.2561628222465515, -0.327409029006958, -1.101685881614685, -0.10196179151535034, -0.057572219520807266, -0.0105341337621212, -0.43858668208122253, -0.5976053476333618, -1.3020501136779785, 0.7405651807785034]} +{"t": 10.082, "q": [-0.35642555356025696, -0.009590789675712585, -0.003910433501005173, 0.6287616491317749, -0.28556540608406067, 0.006877534557133913, -0.3073892891407013, -0.008232363499701023, 0.0023034061305224895, 0.6143081784248352, -0.3406747877597809, 0.01659354194998741, 0.007566420827060938, -0.014059492386877537, 0.028316261246800423, -0.033915355801582336, 0.19507922232151031, -0.38830089569091797, 0.3005044460296631, -0.25609090924263, -0.33193907141685486, -1.1032198667526245, -0.10191385447978973, -0.056781258434057236, -0.010641992092132568, -0.43499141931533813, -0.5975694060325623, -1.3046387434005737, 0.7400498986244202]} +{"t": 10.099, "q": [-0.35669827461242676, -0.00958226714283228, -0.0038568659219890833, 0.6287786960601807, -0.2855445444583893, 0.006884867791086435, -0.30699729919433594, -0.008155664429068565, 0.0024507169146090746, 0.6143337488174438, -0.34065839648246765, 0.016593361273407936, 0.007298583164811134, -0.013976465910673141, 0.028369221836328506, -0.032513201236724854, 0.195235013961792, -0.3879653215408325, 0.3036682903766632, -0.25605496764183044, -0.33446773886680603, -1.105796456336975, -0.10184194892644882, -0.055930379778146744, -0.011073424480855465, -0.4313002824783325, -0.5975334644317627, -1.3086774349212646, 0.7392709255218506]} +{"t": 10.1159, "q": [-0.35683462023735046, -0.009616355411708355, -0.003816690295934677, 0.6287786960601807, -0.28554031252861023, 0.006906585302203894, -0.3056763708591461, -0.008104532025754452, 0.002531068166717887, 0.6145382523536682, -0.3406623303890228, 0.016571592539548874, 0.006990569643676281, -0.01381794922053814, 0.028498664498329163, -0.03153049573302269, 0.19557057321071625, -0.3877376317977905, 0.3072875142097473, -0.2559950351715088, -0.3375716507434845, -1.1099070310592651, -0.10155432671308517, -0.05531918257474899, -0.011097392998635769, -0.42647063732147217, -0.5974496006965637, -1.3138066530227661, 0.7383361458778381]} +{"t": 10.1326, "q": [-0.3567408621311188, -0.009616355411708355, -0.0037899063900113106, 0.6289917826652527, -0.2855236530303955, 0.006892219185829163, -0.30565932393074036, -0.008010788820683956, 0.0025980276986956596, 0.6148876547813416, -0.34062936902046204, 0.016542131081223488, 0.006602204404771328, -0.01349325105547905, 0.028809810057282448, -0.03063168004155159, 0.19577430188655853, -0.3877016603946686, 0.3103315234184265, -0.2559111416339874, -0.3419578969478607, -1.1123278141021729, -0.10078733414411545, -0.0544683039188385, -0.011109377257525921, -0.4222881495952606, -0.5977491736412048, -1.3186842203140259, 0.7376290559768677]} +{"t": 10.1494, "q": [-0.3566727042198181, -0.009624877944588661, -0.003655987558886409, 0.6290173530578613, -0.2855111062526703, 0.006913961376994848, -0.30558261275291443, -0.007985222153365612, 0.0026649872306734324, 0.6150240302085876, -0.3406212031841278, 0.016542039811611176, 0.006254015490412712, -0.013153730891644955, 0.029026171192526817, -0.029636988416314125, 0.1956304907798767, -0.38767769932746887, 0.31404662132263184, -0.25595909357070923, -0.3481537401676178, -1.1136341094970703, -0.10039185732603073, -0.05348559841513634, -0.011217234656214714, -0.41793787479400635, -0.5978211164474487, -1.322399377822876, 0.7371616959571838]} +{"t": 10.1663, "q": [-0.35649374127388, -0.009633399546146393, -0.0036158119328320026, 0.6290173530578613, -0.2855069041252136, 0.006921208929270506, -0.30524173378944397, -0.007968178018927574, 0.0026783791836351156, 0.6151604056358337, -0.3406171500682831, 0.01654926687479019, 0.005959393456578255, -0.012776454910635948, 0.029275773093104362, -0.02895388752222061, 0.1955106556415558, -0.38760578632354736, 0.3177257776260376, -0.25593510270118713, -0.3535226583480835, -1.1146647930145264, -0.10028399527072906, -0.05243098363280296, -0.011361045762896538, -0.41367149353027344, -0.5977970957756042, -1.324508547782898, 0.736778199672699]} +{"t": 10.1832, "q": [-0.3562124967575073, -0.009607832878828049, -0.0036292036529630423, 0.6290088295936584, -0.2855069041252136, 0.006921208929270506, -0.3048497140407562, -0.00785739067941904, 0.0026783791836351156, 0.6153222918510437, -0.3406212031841278, 0.016542039811611176, 0.005691555794328451, -0.012338843196630478, 0.029554303735494614, -0.02858237735927105, 0.1955585926771164, -0.3876177668571472, 0.3209255635738373, -0.2558991611003876, -0.3568662703037262, -1.1160069704055786, -0.1004997119307518, -0.05128049850463867, -0.01164866704493761, -0.40897366404533386, -0.5978450775146484, -1.3265697956085205, 0.7362987995147705]} +{"t": 10.2, "q": [-0.3558886647224426, -0.009514089673757553, -0.003669379511848092, 0.6290173530578613, -0.28549858927726746, 0.0069067818112671375, -0.30446621775627136, -0.007703992538154125, 0.0026783791836351156, 0.6153308153152466, -0.3406253457069397, 0.016549356281757355, 0.005637987982481718, -0.01203701738268137, 0.029755882918834686, -0.028510471805930138, 0.19537882506847382, -0.3876417577266693, 0.3244369328022003, -0.25595909357070923, -0.3609648644924164, -1.1171934604644775, -0.10069146007299423, -0.04996223375201225, -0.011984225362539291, -0.4042758643627167, -0.5979289412498474, -1.3303089141845703, 0.7356396913528442]} +{"t": 10.2167, "q": [-0.35528358817100525, -0.009283993393182755, -0.003669379511848092, 0.6289917826652527, -0.28550276160240173, 0.006899534724652767, -0.30382704734802246, -0.00749093946069479, 0.0026649872306734324, 0.6153563857078552, -0.34062936902046204, 0.016542131081223488, 0.005651379935443401, -0.01164464745670557, 0.03008117340505123, -0.028546424582600594, 0.19507922232151031, -0.38765373826026917, 0.3281880021095276, -0.2559111416339874, -0.3657225966453552, -1.1182000637054443, -0.10084725171327591, -0.048584047704935074, -0.012116051279008389, -0.4010041654109955, -0.5983603596687317, -1.3335926532745361, 0.7352322340011597]} +{"t": 10.2337, "q": [-0.3547637462615967, -0.009036852046847343, -0.003696163184940815, 0.6288724541664124, -0.285506933927536, 0.0068922871723771095, -0.3034350275993347, -0.007303453050553799, 0.002611419651657343, 0.6153904795646667, -0.34063342213630676, 0.01653490588068962, 0.005678163841366768, -0.01136558223515749, 0.03027752786874771, -0.028450550511479378, 0.1950312852859497, -0.38780951499938965, 0.3314477205276489, -0.2558991611003876, -0.3706481158733368, -1.1190390586853027, -0.10094312578439713, -0.046858321875333786, -0.01212803553789854, -0.39864325523376465, -0.5987438559532166, -1.3360613584518433, 0.7349086403846741]} +{"t": 10.2508, "q": [-0.3541245758533478, -0.008798232302069664, -0.0036827712319791317, 0.6287105679512024, -0.2855027914047241, 0.0068850829266011715, -0.3028981387615204, -0.007184143178164959, 0.0025980276986956596, 0.6153649091720581, -0.3406374752521515, 0.016527678817510605, 0.005691555794328451, -0.011177092790603638, 0.030378421768546104, -0.028294755145907402, 0.1949833482503891, -0.3879892826080322, 0.33518680930137634, -0.25577932596206665, -0.37435123324394226, -1.1197700500488281, -0.10087122023105621, -0.04435361921787262, -0.0121879568323493, -0.3961625397205353, -0.599079430103302, -1.338470220565796, 0.7346450090408325]} +{"t": 10.2675, "q": [-0.353502482175827, -0.008602224290370941, -0.003696163184940815, 0.6285571455955505, -0.28549444675445557, 0.006870673969388008, -0.30250611901283264, -0.006988134700804949, 0.002611419651657343, 0.6153563857078552, -0.34065404534339905, 0.016556961461901665, 0.005624596029520035, -0.01111674215644598, 0.030426258221268654, -0.02811499312520027, 0.19483953714370728, -0.3880252540111542, 0.3384464979171753, -0.2556594908237457, -0.37622079253196716, -1.1201655864715576, -0.10088320821523666, -0.04217248782515526, -0.012175972573459148, -0.3928189277648926, -0.59959477186203, -1.3409029245376587, 0.7345730662345886]} +{"t": 10.2843, "q": [-0.35285478830337524, -0.008346560411155224, -0.003696163184940815, 0.6284378170967102, -0.2854902744293213, 0.006877921521663666, -0.30213114619255066, -0.006826214492321014, 0.002611419651657343, 0.6153222918510437, -0.34065404534339905, 0.016556961461901665, 0.005624596029520035, -0.01110922172665596, 0.03042156994342804, -0.028019119054079056, 0.19486349821090698, -0.38808515667915344, 0.34187400341033936, -0.2556714713573456, -0.378030389547348, -1.1202733516693115, -0.10089518874883652, -0.0406145378947258, -0.01212803553789854, -0.38885214924812317, -0.6005175709724426, -1.3426406383514404, 0.7345610857009888]} +{"t": 10.3013, "q": [-0.35235199332237244, -0.008142029866576195, -0.003696163184940815, 0.6283270716667175, -0.28549444675445557, 0.006870673969388008, -0.30181583762168884, -0.006689860485494137, 0.002611419651657343, 0.6152796745300293, -0.3406994640827179, 0.016608353704214096, 0.005664771888405085, -0.011116762645542622, 0.03041677735745907, -0.028019119054079056, 0.19483953714370728, -0.38785746693611145, 0.3456849753856659, -0.25575536489486694, -0.38064295053482056, -1.120321273803711, -0.10084725171327591, -0.0400153286755085, -0.012068115174770355, -0.3851010799407959, -0.601248562335968, -1.343719244003296, 0.7344532608985901]} +{"t": 10.318, "q": [-0.35202813148498535, -0.00798863172531128, -0.0036827712319791317, 0.628224790096283, -0.2854861319065094, 0.006856265477836132, -0.3017561733722687, -0.006647250149399042, 0.0025712440256029367, 0.6152541041374207, -0.3407115936279297, 0.016586676239967346, 0.00571833923459053, -0.01113944873213768, 0.030373945832252502, -0.027959197759628296, 0.19476762413978577, -0.38788142800331116, 0.34943604469299316, -0.2557913064956665, -0.38411837816238403, -1.120381236076355, -0.10073939710855484, -0.03988350182771683, -0.012068115174770355, -0.3816736042499542, -0.602135419845581, -1.3446301221847534, 0.7343094348907471]} +{"t": 10.3349, "q": [-0.35175544023513794, -0.007886365987360477, -0.003669379511848092, 0.6281566023826599, -0.2854861319065094, 0.006856265477836132, -0.30171358585357666, -0.006638728082180023, 0.00258463597856462, 0.6152626276016235, -0.3407236933708191, 0.016564998775720596, 0.005785298999398947, -0.0111469691619277, 0.030378634110093117, -0.027899276465177536, 0.19462381303310394, -0.38803723454475403, 0.3527676463127136, -0.2556954324245453, -0.3891877233982086, -1.120441198348999, -0.10076336562633514, -0.03994342312216759, -0.012056130915880203, -0.3793846070766449, -0.6032019853591919, -1.345504879951477, 0.7342135310173035]} +{"t": 10.3516, "q": [-0.3516446352005005, -0.007801144849509001, -0.003669379511848092, 0.6280713677406311, -0.2854903042316437, 0.006849017925560474, -0.30172210931777954, -0.006621683482080698, 0.002611419651657343, 0.6151348352432251, -0.34080228209495544, 0.016674937680363655, 0.00571833923459053, -0.011086762882769108, 0.03036009520292282, -0.027755465358495712, 0.1943841278553009, -0.388264924287796, 0.35687825083732605, -0.25552764534950256, -0.3946405351161957, -1.1204891204833984, -0.1007753536105156, -0.03995540738105774, -0.012020178139209747, -0.37684395909309387, -0.6047959327697754, -1.346919059753418, 0.7336862683296204]} +{"t": 10.3687, "q": [-0.3515338599681854, -0.007707401644438505, -0.0036827712319791317, 0.6279265284538269, -0.28549444675445557, 0.006870673969388008, -0.30184993147850037, -0.006579073145985603, 0.0025980276986956596, 0.6149558424949646, -0.34083524346351624, 0.01670440100133419, 0.005651379935443401, -0.011049180291593075, 0.030327174812555313, -0.02725212834775448, 0.1943841278553009, -0.3883248567581177, 0.359910249710083, -0.25550368428230286, -0.3975047767162323, -1.1205370426177979, -0.10064352303743362, -0.03994342312216759, -0.012008193880319595, -0.3743392527103424, -0.6064976453781128, -1.3489084243774414, 0.7327634692192078]} +{"t": 10.3857, "q": [-0.35138899087905884, -0.007647747173905373, -0.003696163184940815, 0.627773106098175, -0.2854861319065094, 0.006856265477836132, -0.30204594135284424, -0.006544984877109528, 0.0025578520726412535, 0.6147598624229431, -0.3409219980239868, 0.016814447939395905, 0.005691555794328451, -0.010988994501531124, 0.030299153178930283, -0.026988474652171135, 0.19396468997001648, -0.3884207308292389, 0.36314600706100464, -0.2554677426815033, -0.3999974727630615, -1.1205849647521973, -0.10057161748409271, -0.03995540738105774, -0.012056130915880203, -0.3710915446281433, -0.6069770455360413, -1.3520961999893188, 0.7315890192985535]} +{"t": 10.4026, "q": [-0.3510992228984833, -0.007571048103272915, -0.003696163184940815, 0.6276026964187622, -0.2854986786842346, 0.006834523286670446, -0.3022845685482025, -0.0065108961425721645, 0.00254446011967957, 0.6145297288894653, -0.3409748375415802, 0.01676410250365734, 0.005691555794328451, -0.010958933271467686, 0.030270911753177643, -0.026880616322159767, 0.19344936311244965, -0.38850462436676025, 0.36716070771217346, -0.2555875778198242, -0.4028976559638977, -1.1206568479537964, -0.10054764896631241, -0.03994342312216759, -0.01209208369255066, -0.36771199107170105, -0.6070489287376404, -1.355140209197998, 0.7303066849708557]} +{"t": 10.4193, "q": [-0.35086914896965027, -0.007502870634198189, -0.0037229470908641815, 0.6275174617767334, -0.2854986786842346, 0.006834523286670446, -0.302437961101532, -0.006451241206377745, 0.002531068166717887, 0.6143848896026611, -0.3410199284553528, 0.016771888360381126, 0.0056112040765583515, -0.010951432399451733, 0.030256735160946846, -0.026676885783672333, 0.19322165846824646, -0.38855254650115967, 0.37015676498413086, -0.25557559728622437, -0.4054982364177704, -1.1207047700881958, -0.10039185732603073, -0.03994342312216759, -0.012163988314568996, -0.3652072846889496, -0.6071568131446838, -1.3574172258377075, 0.7292401194572449]} +{"t": 10.4361, "q": [-0.35074982047080994, -0.007426171563565731, -0.0037497307639569044, 0.6272361874580383, -0.285519540309906, 0.006841623689979315, -0.3028810918331146, -0.006417152937501669, 0.0024775005877017975, 0.6139843463897705, -0.34110596776008606, 0.016780124977231026, 0.0055978125892579556, -0.010906494222581387, 0.03014323301613331, -0.02660498023033142, 0.19322165846824646, -0.3886963725090027, 0.3734883666038513, -0.25552764534950256, -0.40970471501350403, -1.1208605766296387, -0.10024804621934891, -0.03994342312216759, -0.0121879568323493, -0.3629302680492401, -0.6072406768798828, -1.3597661256790161, 0.7283892035484314]} +{"t": 10.4528, "q": [-0.35055381059646606, -0.007392083294689655, -0.0037899063900113106, 0.6269890666007996, -0.2855195105075836, 0.0068560754880309105, -0.3031282424926758, -0.006314887665212154, 0.0024908925406634808, 0.6135411858558655, -0.34111425280570984, 0.016794757917523384, 0.0055978125892579556, -0.01086899358779192, 0.030072351917624474, -0.026616964489221573, 0.19325761497020721, -0.38875627517700195, 0.37617284059524536, -0.2555156648159027, -0.4135756194591522, -1.120908498764038, -0.10027201473712921, -0.03997937589883804, -0.012259862385690212, -0.36130040884017944, -0.6073964834213257, -1.3614439964294434, 0.7277780175209045]} +{"t": 10.4695, "q": [-0.35046860575675964, -0.007340950891375542, -0.003803298342972994, 0.626801609992981, -0.2855278551578522, 0.006856032647192478, -0.303298681974411, -0.006238188594579697, 0.0024908925406634808, 0.6132344007492065, -0.3411017954349518, 0.016772791743278503, 0.005557636730372906, -0.010831369087100029, 0.0300583653151989, -0.026581011712551117, 0.19329357147216797, -0.3887442946434021, 0.3778865933418274, -0.25550368428230286, -0.41655969619750977, -1.1209325790405273, -0.10026002675294876, -0.04006326571106911, -0.012343752197921276, -0.36010199785232544, -0.607456386089325, -1.362666368484497, 0.726915180683136]} +{"t": 10.4867, "q": [-0.3504515588283539, -0.0073324283584952354, -0.0037899063900113106, 0.6266737580299377, -0.285519540309906, 0.006841623689979315, -0.30341801047325134, -0.006195577792823315, 0.0024908925406634808, 0.6130042672157288, -0.3411017060279846, 0.016758231446146965, 0.005396933760493994, -0.010838889516890049, 0.03006305918097496, -0.02653307467699051, 0.19310182332992554, -0.3886963725090027, 0.3789651691913605, -0.2556714713573456, -0.4182734191417694, -1.1209325790405273, -0.10024804621934891, -0.04008723422884941, -0.012523515149950981, -0.3594668507575989, -0.607456386089325, -1.3634573221206665, 0.7256568074226379]} +{"t": 10.5034, "q": [-0.35046008229255676, -0.007306862156838179, -0.0037899063900113106, 0.6265032887458801, -0.2855237126350403, 0.006848827935755253, -0.3033839166164398, -0.00615296745672822, 0.0025176764465868473, 0.6127486228942871, -0.34110161662101746, 0.01674368977546692, 0.005289798602461815, -0.01083891000598669, 0.030053576454520226, -0.026820696890354156, 0.19234681129455566, -0.38878023624420166, 0.3806789219379425, -0.2557673454284668, -0.4194718599319458, -1.120908498764038, -0.10033193230628967, -0.04015913978219032, -0.012667326256632805, -0.3591312766075134, -0.6073964834213257, -1.3639845848083496, 0.723559558391571]} +{"t": 10.5201, "q": [-0.3504941761493683, -0.007306862156838179, -0.0037631227169185877, 0.6262987852096558, -0.2855278551578522, 0.006856032647192478, -0.3033839166164398, -0.006101834587752819, 0.0025712440256029367, 0.6125611066818237, -0.341093510389328, 0.016758158802986145, 0.004995177034288645, -0.010816286318004131, 0.030067941173911095, -0.0270723644644022, 0.19132815301418304, -0.3887203335762024, 0.3825724124908447, -0.25573137402534485, -0.4202268719673157, -1.1209205389022827, -0.10046376287937164, -0.04015913978219032, -0.012751216068863869, -0.3590114414691925, -0.6072766184806824, -1.3642722368240356, 0.7218698263168335]} +{"t": 10.537, "q": [-0.35051119327545166, -0.007306862156838179, -0.003736338810995221, 0.6262646913528442, -0.28552788496017456, 0.0068415808491408825, -0.3030345141887665, -0.0060080913826823235, 0.0026382035575807095, 0.6125355958938599, -0.3410850167274475, 0.01671442575752735, 0.00479429867118597, -0.010786161758005619, 0.030068131163716316, -0.027108317241072655, 0.1904173493385315, -0.38875627517700195, 0.38548457622528076, -0.25575536489486694, -0.42132940888404846, -1.1209205389022827, -0.10051169991493225, -0.04014715552330017, -0.01290701050311327, -0.3589874804019928, -0.6071927547454834, -1.364547848701477, 0.7212346196174622]} +{"t": 10.5538, "q": [-0.35059642791748047, -0.00729834008961916, -0.0037229470908641815, 0.6262902617454529, -0.28551536798477173, 0.006848870776593685, -0.3023868203163147, -0.005939914379268885, 0.0026382035575807095, 0.6125952005386353, -0.34108108282089233, 0.016736211255192757, 0.004593420308083296, -0.010740851983428001, 0.03012530691921711, -0.027156254276633263, 0.18942266702651978, -0.3887682557106018, 0.3879892826080322, -0.25573137402534485, -0.4220724403858185, -1.1209205389022827, -0.10055963695049286, -0.04018310829997063, -0.01296693179756403, -0.3588077127933502, -0.607144832611084, -1.36470365524292, 0.720935046672821]} +{"t": 10.5705, "q": [-0.35065609216690063, -0.007272773422300816, -0.003669379511848092, 0.6262902617454529, -0.2855237126350403, 0.006848827935755253, -0.30180731415748596, -0.005863215308636427, 0.0026382035575807095, 0.6126974821090698, -0.3410686254501343, 0.016714245080947876, 0.0043523660860955715, -0.01065787672996521, 0.030187461525201797, -0.027515782043337822, 0.18822424113750458, -0.38875627517700195, 0.39035019278526306, -0.2557673454284668, -0.42298322916030884, -1.1209205389022827, -0.10059558600187302, -0.04015913978219032, -0.01308677438646555, -0.35832834243774414, -0.6071208715438843, -1.3647994995117188, 0.7208631038665771]} +{"t": 10.5873, "q": [-0.3507327735424042, -0.007255729287862778, -0.0036024199798703194, 0.6263754963874817, -0.2855237126350403, 0.006834376137703657, -0.301432341337204, -0.005769472103565931, 0.0027051628567278385, 0.6128764748573303, -0.34104791283607483, 0.01667766459286213, 0.0042854067869484425, -0.010567380115389824, 0.030244922265410423, -0.028378644958138466, 0.18685804307460785, -0.38790538907051086, 0.3929148018360138, -0.25585123896598816, -0.4241217374801636, -1.1207886934280396, -0.10051169991493225, -0.04019509255886078, -0.013230584561824799, -0.35765722393989563, -0.6070969104766846, -1.3648234605789185, 0.720707356929779]} +{"t": 10.604, "q": [-0.35069018602371216, -0.007213118951767683, -0.003575636073946953, 0.6264095902442932, -0.28551536798477173, 0.006834419444203377, -0.30099770426750183, -0.005675728898495436, 0.002718554809689522, 0.6130468845367432, -0.34103983640670776, 0.016692116856575012, 0.004245230928063393, -0.01031093392521143, 0.030426688492298126, -0.02943325787782669, 0.18583938479423523, -0.38718634843826294, 0.39544346928596497, -0.255863219499588, -0.4254639744758606, -1.1203453540802002, -0.10043979436159134, -0.04018310829997063, -0.013338442891836166, -0.35655465722084045, -0.6071088910102844, -1.3648474216461182, 0.7206234335899353]} +{"t": 10.6208, "q": [-0.350630521774292, -0.007170508615672588, -0.0036024199798703194, 0.6264010667800903, -0.2855153977870941, 0.006819967646151781, -0.30092954635620117, -0.00558198569342494, 0.002718554809689522, 0.6131662130355835, -0.3410561978816986, 0.016692297533154488, 0.004205055069178343, -0.010099777020514011, 0.03056076169013977, -0.030068421736359596, 0.18522818386554718, -0.3867669105529785, 0.3971092998981476, -0.2559950351715088, -0.42727357149124146, -1.1197460889816284, -0.10046376287937164, -0.040111202746629715, -0.013374395668506622, -0.35505664348602295, -0.6070609092712402, -1.3648474216461182, 0.7205874919891357]} +{"t": 10.6375, "q": [-0.350443035364151, -0.007051198743283749, -0.003589028026908636, 0.6264522075653076, -0.2855070233345032, 0.006834462285041809, -0.30068239569664, -0.0054456316865980625, 0.002718554809689522, 0.6132855415344238, -0.34103962779045105, 0.01666303351521492, 0.004245230928063393, -0.009971553459763527, 0.030651645734906197, -0.030547790229320526, 0.184772789478302, -0.386323481798172, 0.39818787574768066, -0.25603097677230835, -0.4303535223007202, -1.1193386316299438, -0.10055963695049286, -0.040111202746629715, -0.013470268808305264, -0.3534028232097626, -0.6070489287376404, -1.3648474216461182, 0.7205874919891357]} +{"t": 10.6544, "q": [-0.3502214550971985, -0.006863712333142757, -0.0036158119328320026, 0.626426637172699, -0.28550705313682556, 0.006820010486990213, -0.3003329932689667, -0.005275189410895109, 0.002624811604619026, 0.6133195757865906, -0.341031551361084, 0.016677483916282654, 0.0043523660860955715, -0.00987351592630148, 0.030713893473148346, -0.03093128465116024, 0.18460500240325928, -0.38610777258872986, 0.39894288778305054, -0.2560189962387085, -0.4337210953235626, -1.1190509796142578, -0.10063154250383377, -0.04008723422884941, -0.013638048432767391, -0.3515212833881378, -0.6070129871368408, -1.3648234605789185, 0.7205755114555359]} +{"t": 10.6711, "q": [-0.34969308972358704, -0.00666770339012146, -0.003669379511848092, 0.6264351606369019, -0.2855154275894165, 0.006805515848100185, -0.29979610443115234, -0.005096225067973137, 0.0025980276986956596, 0.6133536696434021, -0.34103962779045105, 0.01666303351521492, 0.004365758039057255, -0.00986593309789896, 0.03073764778673649, -0.031254857778549194, 0.18459302186965942, -0.3858920633792877, 0.39966192841529846, -0.2559710741043091, -0.43693286180496216, -1.1187872886657715, -0.10076336562633514, -0.04009921848773956, -0.013721938244998455, -0.34881284832954407, -0.6069650650024414, -1.364763617515564, 0.7205994725227356]} +{"t": 10.6879, "q": [-0.3491050601005554, -0.006394995842128992, -0.0037229470908641815, 0.6264181137084961, -0.28550708293914795, 0.006805558688938618, -0.29915693402290344, -0.0048916940577328205, 0.0025176764465868473, 0.6132855415344238, -0.34104791283607483, 0.01667766459286213, 0.004472893197089434, -0.009896098636090755, 0.030718494206666946, -0.031626369804143906, 0.18464095890522003, -0.3855445086956024, 0.40094423294067383, -0.2558991611003876, -0.4391739070415497, -1.1185595989227295, -0.10088320821523666, -0.04018310829997063, -0.013853764161467552, -0.3454812467098236, -0.6069051623344421, -1.364715576171875, 0.7206234335899353]} +{"t": 10.7047, "q": [-0.34839773178100586, -0.006198987364768982, -0.0038434739690274, 0.6263754963874817, -0.28550705313682556, 0.006820010486990213, -0.2983984649181366, -0.004721251782029867, 0.002383757382631302, 0.6132514476776123, -0.3410520553588867, 0.01668498106300831, 0.004553244449198246, -0.009896139614284039, 0.030699528753757477, -0.03233344107866287, 0.18461698293685913, -0.3847295939922333, 0.4029216468334198, -0.2559231221675873, -0.44022852182388306, -1.1183079481124878, -0.10087122023105621, -0.04019509255886078, -0.0142971808090806, -0.3425930440425873, -0.6063299179077148, -1.364547848701477, 0.7205156087875366]} +{"t": 10.7215, "q": [-0.3477500379085541, -0.006020022556185722, -0.003910433501005173, 0.626426637172699, -0.285498708486557, 0.006805583834648132, -0.2978445291519165, -0.004601942375302315, 0.0022096626926213503, 0.6133195757865906, -0.34103983640670776, 0.016692116856575012, 0.004553244449198246, -0.009888660162687302, 0.030675871297717094, -0.033004555851221085, 0.18464095890522003, -0.3834232985973358, 0.4049949049949646, -0.2558991611003876, -0.4404202699661255, -1.1180922985076904, -0.10102701932191849, -0.04012318700551987, -0.01516004465520382, -0.34014827013015747, -0.6059104204177856, -1.364380121231079, 0.7204316854476929]} +{"t": 10.7382, "q": [-0.3473665416240692, -0.0057899258099496365, -0.003977392800152302, 0.626426637172699, -0.2854945957660675, 0.006769475992769003, -0.2976059019565582, -0.004457066301256418, 0.002169487066566944, 0.6133536696434021, -0.3410561978816986, 0.016692297533154488, 0.0045264605432748795, -0.009843824431300163, 0.030514957383275032, -0.03398726135492325, 0.1846769154071808, -0.3813859820365906, 0.4075355529785156, -0.255863219499588, -0.44043225049972534, -1.1179723739624023, -0.10217750072479248, -0.04012318700551987, -0.01631052978336811, -0.33855435252189636, -0.6051794290542603, -1.3639845848083496, 0.7201321125030518]} +{"t": 10.7549, "q": [-0.34707680344581604, -0.005576872732490301, -0.003990784753113985, 0.6263925433158875, -0.28548625111579895, 0.006769518833607435, -0.2975206971168518, -0.004329234827309847, 0.0021427033934742212, 0.6133451461791992, -0.3410561978816986, 0.016692297533154488, 0.004566636402159929, -0.009799237363040447, 0.03024025820195675, -0.03488608077168465, 0.18454508483409882, -0.3782101571559906, 0.4097166955471039, -0.25573137402534485, -0.4404442608356476, -1.1178765296936035, -0.10338791459798813, -0.04026699811220169, -0.01746101677417755, -0.3377394378185272, -0.6044363975524902, -1.3634932041168213, 0.7199763059616089]} +{"t": 10.7717, "q": [-0.3469574749469757, -0.005253032315522432, -0.004030960611999035, 0.6264181137084961, -0.28546538949012756, 0.0067479307763278484, -0.2974269390106201, -0.004090615548193455, 0.002008784329518676, 0.613362193107605, -0.34107673168182373, 0.01669977605342865, 0.004660379607230425, -0.009792380966246128, 0.029913099482655525, -0.03597664460539818, 0.18458104133605957, -0.37568148970603943, 0.41254496574401855, -0.255491703748703, -0.4403963088989258, -1.1178165674209595, -0.10356767475605011, -0.0406145378947258, -0.01841975376009941, -0.3365769684314728, -0.6033817529678345, -1.3632655143737793, 0.7199523448944092]} +{"t": 10.7884, "q": [-0.34684669971466064, -0.004954758565872908, -0.004111311864107847, 0.6264351606369019, -0.2854529023170471, 0.006726317573338747, -0.29735878109931946, -0.00390312890522182, 0.001901649171486497, 0.6133110523223877, -0.3410808742046356, 0.016707109287381172, 0.004646987654268742, -0.00968759972602129, 0.029515106230974197, -0.036911413073539734, 0.18466491997241974, -0.37420743703842163, 0.41469013690948486, -0.2551681101322174, -0.4403723478317261, -1.1176608800888062, -0.1031721979379654, -0.04117779806256294, -0.01889912411570549, -0.3354983925819397, -0.6015721559524536, -1.3627262115478516, 0.7199403643608093]} +{"t": 10.8052, "q": [-0.34679555892944336, -0.004775793757289648, -0.004151487722992897, 0.6264010667800903, -0.28544458746910095, 0.006697456818073988, -0.297392874956131, -0.003775297198444605, 0.0017409464344382286, 0.613277018070221, -0.3411014974117279, 0.016729148104786873, 0.004593420308083296, -0.00960559118539095, 0.029017334803938866, -0.036983318626880646, 0.18489262461662292, -0.3726734519004822, 0.4158765971660614, -0.2546168565750122, -0.4403723478317261, -1.117600917816162, -0.10316020995378494, -0.04114184528589249, -0.02033722959458828, -0.3336767852306366, -0.59885174036026, -1.360952615737915, 0.7198923826217651]} +{"t": 10.8219, "q": [-0.3467785120010376, -0.004588307347148657, -0.004178271628916264, 0.6263754963874817, -0.28544044494628906, 0.00669025257229805, -0.2974269390106201, -0.0036389431916177273, 0.001566851744428277, 0.6132599711418152, -0.3411056399345398, 0.016736462712287903, 0.004620204214006662, -0.009267682209610939, 0.028388164937496185, -0.03689942881464958, 0.18637867271900177, -0.36962947249412537, 0.41691920161247253, -0.25405359268188477, -0.44034838676452637, -1.117600917816162, -0.10312426090240479, -0.0409381128847599, -0.02172739990055561, -0.33201098442077637, -0.5954601764678955, -1.3597182035446167, 0.7198324799537659]} +{"t": 10.8386, "q": [-0.346821129322052, -0.004494564142078161, -0.004205055069178343, 0.6263158321380615, -0.28544458746910095, 0.006697456818073988, -0.2975718379020691, -0.003579288488253951, 0.0015400679549202323, 0.6131491661071777, -0.341122031211853, 0.016736643388867378, 0.004472893197089434, -0.008696501143276691, 0.027574531733989716, -0.03689942881464958, 0.1872175633907318, -0.3662499189376831, 0.41809365153312683, -0.2538977861404419, -0.44025251269340515, -1.1173732280731201, -0.10256099700927734, -0.040890175849199295, -0.023069633170962334, -0.3305369019508362, -0.592799723148346, -1.3587714433670044, 0.7197965383529663]} +{"t": 10.8554, "q": [-0.34680408239364624, -0.004486042074859142, -0.004205055069178343, 0.626213550567627, -0.28545713424682617, 0.006675714626908302, -0.2976655662059784, -0.0035366779193282127, 0.0015936355339363217, 0.6130809783935547, -0.3411671221256256, 0.01674441248178482, 0.004205055069178343, -0.00810984242707491, 0.0268261656165123, -0.036851491779088974, 0.18766097724437714, -0.3643563985824585, 0.42008304595947266, -0.2538259029388428, -0.44020456075668335, -1.1170976161956787, -0.10226139426231384, -0.04085422307252884, -0.024591630324721336, -0.3283318281173706, -0.5900193452835083, -1.3575609922409058, 0.7197965383529663]} +{"t": 10.8722, "q": [-0.346821129322052, -0.00450308620929718, -0.004205055069178343, 0.6261283159255981, -0.2854529917240143, 0.006668510381132364, -0.29777637124061584, -0.003528155852109194, 0.001607027486898005, 0.6130127906799316, -0.3412241041660309, 0.01670141890645027, 0.004218447022140026, -0.0076660411432385445, 0.02629132941365242, -0.036851491779088974, 0.18770891427993774, -0.3621033728122711, 0.42370226979255676, -0.25363415479660034, -0.4400727450847626, -1.1170016527175903, -0.10206964612007141, -0.040650490671396255, -0.02708434872329235, -0.32510805130004883, -0.5880060195922852, -1.3559192419052124, 0.7197605967521667]} +{"t": 10.889, "q": [-0.3468722701072693, -0.004520130343735218, -0.004218447022140026, 0.6261283159255981, -0.285469651222229, 0.006682876031845808, -0.2980746328830719, -0.0035451999865472317, 0.0015802436973899603, 0.6130042672157288, -0.34126898646354675, 0.01668008416891098, 0.004325582180172205, -0.007409918587654829, 0.02620718441903591, -0.03664775937795639, 0.18732541799545288, -0.35860398411750793, 0.4292270243167877, -0.25363415479660034, -0.43972519040107727, -1.1165822744369507, -0.09791111946105957, -0.040111202746629715, -0.030583743005990982, -0.3200746774673462, -0.5875266194343567, -1.3543013334274292, 0.7197965383529663]} +{"t": 10.9058, "q": [-0.34731540083885193, -0.004537174478173256, -0.0041916631162166595, 0.6261709332466125, -0.28547385334968567, 0.006675628945231438, -0.2982962131500244, -0.003562244353815913, 0.0016338112764060497, 0.6130042672157288, -0.34127718210220337, 0.016680173575878143, 0.0045130690559744835, -0.007342011202126741, 0.02625029720366001, -0.03651593253016472, 0.18708573281764984, -0.3543495833873749, 0.43545880913734436, -0.25375398993492126, -0.43935367465019226, -1.115659475326538, -0.09193099290132523, -0.039500005543231964, -0.035065844655036926, -0.312428742647171, -0.5869393944740295, -1.3523838520050049, 0.719820499420166]} +{"t": 10.9225, "q": [-0.3480738699436188, -0.004545697011053562, -0.004205055069178343, 0.6261794567108154, -0.2854738235473633, 0.006690080743283033, -0.2985859513282776, -0.003570766421034932, 0.0016472031129524112, 0.6129957437515259, -0.3412851393222809, 0.016651181504130363, 0.0045264605432748795, -0.0072891139425337315, 0.026331331580877304, -0.036072518676519394, 0.18738535046577454, -0.3492083251476288, 0.44064798951148987, -0.25370603799819946, -0.43916192650794983, -1.1144850254058838, -0.08593887835741043, -0.03904460743069649, -0.041249703615903854, -0.30457907915115356, -0.5853215456008911, -1.3507659435272217, 0.7197965383529663]} +{"t": 10.9393, "q": [-0.34845736622810364, -0.004579785279929638, -0.004138095770031214, 0.6261624097824097, -0.2854696214199066, 0.006697327829897404, -0.29914841055870056, -0.0035537220537662506, 0.0017677302239462733, 0.6129531264305115, -0.34127694368362427, 0.01665109023451805, 0.0042854067869484425, -0.007266446016728878, 0.026364702731370926, -0.03528155758976936, 0.1881163865327835, -0.34382742643356323, 0.4462566077709198, -0.25381389260292053, -0.4394975006580353, -1.1135742664337158, -0.08052200824022293, -0.03921238332986832, -0.04710998758673668, -0.2989225387573242, -0.5840871930122375, -1.3494716882705688, 0.7197845578193665]} +{"t": 10.956, "q": [-0.3484658896923065, -0.004605351481586695, -0.003977392800152302, 0.6261197924613953, -0.28547799587249756, 0.006697284989058971, -0.2994978129863739, -0.0035537220537662506, 0.0019686087034642696, 0.6129190921783447, -0.3412728011608124, 0.01664377562701702, 0.0038702578749507666, -0.007258900906890631, 0.026369493454694748, -0.035065844655036926, 0.18975822627544403, -0.3384464979171753, 0.4533033072948456, -0.2536700963973999, -0.4394375681877136, -1.1124956607818604, -0.07443401962518692, -0.03972770646214485, -0.05352155119180679, -0.2934577167034149, -0.5817142724990845, -1.3469070196151733, 0.7198085188865662]} +{"t": 10.9728, "q": [-0.34844884276390076, -0.004605351481586695, -0.0038568659219890833, 0.6261283159255981, -0.2854905128479004, 0.0066899764351546764, -0.2997364401817322, -0.0035366779193282127, 0.002156095113605261, 0.6129531264305115, -0.3412686586380005, 0.016636459156870842, 0.003066744189709425, -0.007266446016728878, 0.026364702731370926, -0.034634411334991455, 0.19250260293483734, -0.3327060639858246, 0.46039798855781555, -0.2535262703895569, -0.4391739070415497, -1.1112133264541626, -0.06751912832260132, -0.040410809218883514, -0.05975334718823433, -0.2888438105583191, -0.5767408609390259, -1.3417298793792725, 0.7197486162185669]} +{"t": 10.9897, "q": [-0.34845736622810364, -0.004613873548805714, -0.003669379511848092, 0.626051664352417, -0.28549888730049133, 0.0066754817962646484, -0.29975348711013794, -0.003468500915914774, 0.002383757382631302, 0.6129786968231201, -0.3412645161151886, 0.016629142686724663, 0.002156095113605261, -0.007258900906890631, 0.026369493454694748, -0.03385543450713158, 0.19607390463352203, -0.3269656300544739, 0.4683435261249542, -0.25315478444099426, -0.43893423676490784, -1.1104823350906372, -0.06162288784980774, -0.04068644344806671, -0.06567355245351791, -0.28590765595436096, -0.5730017423629761, -1.3383742570877075, 0.7196287512779236]} +{"t": 11.0065, "q": [-0.3485681712627411, -0.004579785279929638, -0.0035220684949308634, 0.6260346174240112, -0.28549468517303467, 0.006697181146591902, -0.29974496364593506, -0.003315103007480502, 0.0026649872306734324, 0.6130042672157288, -0.3412438929080963, 0.01660708710551262, 0.0014865003759041429, -0.00724379438906908, 0.02638857439160347, -0.033316146582365036, 0.1997051239013672, -0.3209735155105591, 0.4780387580394745, -0.2523278594017029, -0.4387904107570648, -1.1099789142608643, -0.055451009422540665, -0.04092612862586975, -0.07336742430925369, -0.28426581621170044, -0.5675010085105896, -1.3360732793807983, 0.7194609642028809]} +{"t": 11.0232, "q": [-0.34858521819114685, -0.004520130343735218, -0.0034952848218381405, 0.6260431408882141, -0.2854905128479004, 0.0066899764351546764, -0.29975348711013794, -0.003136138431727886, 0.0027721223887056112, 0.613055408000946, -0.34124791622161865, 0.016599860042333603, 0.0008169056382030249, -0.007258692756295204, 0.026493001729249954, -0.0327768549323082, 0.20416326820850372, -0.31621575355529785, 0.4870269298553467, -0.2513810992240906, -0.43875446915626526, -1.1094635725021362, -0.04980643838644028, -0.04097406566143036, -0.08445283770561218, -0.28346288204193115, -0.5630189180374146, -1.333173155784607, 0.7192093133926392]} +{"t": 11.04, "q": [-0.34854260087013245, -0.004409343004226685, -0.0034952848218381405, 0.6260687112808228, -0.2854905128479004, 0.0066899764351546764, -0.2997279167175293, -0.002957174088805914, 0.0027721223887056112, 0.6131150722503662, -0.3412396311759949, 0.016585228964686394, -0.00030801360844634473, -0.007266222033649683, 0.02649771049618721, -0.032465267926454544, 0.2090408354997635, -0.31119439005851746, 0.49654239416122437, -0.24941569566726685, -0.4388503432273865, -1.1091160774230957, -0.046786416321992874, -0.04129764065146446, -0.09442371129989624, -0.2806825339794159, -0.5560201406478882, -1.330165147781372, 0.718765914440155]} +{"t": 11.0568, "q": [-0.3484829366207123, -0.004264466930180788, -0.003468500915914774, 0.6261197924613953, -0.28549471497535706, 0.00666827755048871, -0.29974496364593506, -0.002769687445834279, 0.002839081920683384, 0.6132684946060181, -0.3412313461303711, 0.016570596024394035, -0.0010981354862451553, -0.007266222033649683, 0.02649771049618721, -0.03211772441864014, 0.21474532783031464, -0.30517828464508057, 0.5056144595146179, -0.24658742547035217, -0.4388503432273865, -1.1084449291229248, -0.04399409145116806, -0.042460110038518906, -0.10357965528964996, -0.2780340313911438, -0.5491890907287598, -1.3276844024658203, 0.7183704376220703]} +{"t": 11.0735, "q": [-0.3484233021736145, -0.004094024654477835, -0.0034952848218381405, 0.6261453628540039, -0.2854905426502228, 0.006675524637103081, -0.29971086978912354, -0.002573678968474269, 0.0028122980147600174, 0.6133195757865906, -0.3412272036075592, 0.016563281416893005, -0.0016472031129524112, -0.007243617903441191, 0.02649308182299137, -0.032045818865299225, 0.22044982016086578, -0.2995576858520508, 0.5153695940971375, -0.24351945519447327, -0.43880242109298706, -1.1079176664352417, -0.04067445918917656, -0.04381432756781578, -0.11249592155218124, -0.27590084075927734, -0.5445272326469421, -1.3243287801742554, 0.7177711725234985]} +{"t": 11.0902, "q": [-0.34836363792419434, -0.0038894941098988056, -0.0035220684949308634, 0.6261709332466125, -0.2854822278022766, 0.006661116145551205, -0.29970234632492065, -0.002377670258283615, 0.002691771136596799, 0.6135156154632568, -0.34122326970100403, 0.01658504828810692, -0.0017007706919685006, -0.007251163478940725, 0.02648829109966755, -0.03208177164196968, 0.22644193470478058, -0.2961541712284088, 0.525328516960144, -0.24160197377204895, -0.43847882747650146, -1.106695294380188, -0.03754657879471779, -0.04373043775558472, -0.12257465720176697, -0.274211049079895, -0.5397335290908813, -1.3204458951950073, 0.7174596190452576]} +{"t": 11.107, "q": [-0.3482869267463684, -0.0035741757601499557, -0.00354885240085423, 0.6261879801750183, -0.2854822278022766, 0.006661116145551205, -0.2996938228607178, -0.0020538298413157463, 0.002611419651657343, 0.6136690378189087, -0.3412272036075592, 0.016563281416893005, -0.0019284329609945416, -0.007258708588778973, 0.026483500376343727, -0.03177018091082573, 0.23280556499958038, -0.2919117510318756, 0.5358027219772339, -0.2376232147216797, -0.43833503127098083, -1.1051013469696045, -0.0348980650305748, -0.043598610907793045, -0.1318504512310028, -0.2721617519855499, -0.5318958759307861, -1.3168625831604004, 0.7166207432746887]} +{"t": 11.1239, "q": [-0.34821876883506775, -0.003250335343182087, -0.0035220684949308634, 0.6262220740318298, -0.2854780852794647, 0.006639459636062384, -0.29970234632492065, -0.0016873788554221392, 0.002624811604619026, 0.6137627363204956, -0.34121474623680115, 0.016541315242648125, -0.0022230546455830336, -0.007281344383955002, 0.02646913006901741, -0.031027158722281456, 0.23793481290340424, -0.2863271236419678, 0.5462290048599243, -0.23300929367542267, -0.4383949339389801, -1.1014342308044434, -0.03308844566345215, -0.04368250072002411, -0.13922074437141418, -0.2708914279937744, -0.5249929428100586, -1.3128719329833984, 0.7152904868125916]} +{"t": 11.1406, "q": [-0.3481591045856476, -0.002917972858995199, -0.0035086767747998238, 0.62628173828125, -0.28547805547714233, 0.006653911434113979, -0.2996938228607178, -0.0014061490073800087, 0.0025980276986956596, 0.61380535364151, -0.3412187993526459, 0.01653408817946911, -0.002959609031677246, -0.007364358752965927, 0.02640693634748459, -0.029936594888567924, 0.24266858398914337, -0.2787650525569916, 0.5577937960624695, -0.22857512533664703, -0.4385387599468231, -1.0964127779006958, -0.03184208646416664, -0.04356265813112259, -0.14769358932971954, -0.27085548639297485, -0.5182338356971741, -1.3099477291107178, 0.7140800356864929]} +{"t": 11.1573, "q": [-0.3480994403362274, -0.002551521873101592, -0.00354885240085423, 0.6263414025306702, -0.2854780852794647, 0.006639459636062384, -0.29965975880622864, -0.0011504855938255787, 0.0024105412885546684, 0.6138905882835388, -0.34122294187545776, 0.016541404649615288, -0.003803298342972994, -0.0074850996024906635, 0.026320790871977806, -0.02919357270002365, 0.24933180212974548, -0.2751098871231079, 0.5707607269287109, -0.2224152386188507, -0.43852677941322327, -1.0904805660247803, -0.03142263740301132, -0.04355067387223244, -0.15555524826049805, -0.2710232436656952, -0.5098209381103516, -1.3082939386367798, 0.7128576636314392]} +{"t": 11.1741, "q": [-0.3481079638004303, -0.002065761247649789, -0.0036158119328320026, 0.6263669729232788, -0.28545722365379333, 0.006617871578782797, -0.29960861802101135, -0.0008862999966368079, 0.002089135814458132, 0.6138479709625244, -0.3412310481071472, 0.01652693562209606, -0.005222839303314686, -0.007681259885430336, 0.026205744594335556, -0.028234833851456642, 0.25712156295776367, -0.271814227104187, 0.5854414105415344, -0.21497303247451782, -0.4384428858757019, -1.0856150388717651, -0.03135073184967041, -0.0433109886944294, -0.16191886365413666, -0.271071195602417, -0.5039606690406799, -1.3061487674713135, 0.7115873694419861]} +{"t": 11.1908, "q": [-0.34816762804985046, -0.0014606909826397896, -0.00354885240085423, 0.6264010667800903, -0.285440593957901, 0.006560132838785648, -0.2996256649494171, -0.0005880259559489787, 0.0018748653819784522, 0.6138309240341187, -0.34124326705932617, 0.016519799828529358, -0.00705752894282341, -0.008043416775763035, 0.025985311716794968, -0.02677275985479355, 0.2635091543197632, -0.2677275836467743, 0.5988157987594604, -0.20545755326747894, -0.4381912052631378, -1.0797667503356934, -0.03153049573302269, -0.04309527575969696, -0.1669043004512787, -0.2711191177368164, -0.49849584698677063, -1.3032605648040771, 0.7106525897979736]} +{"t": 11.2076, "q": [-0.348201721906662, -0.0008811871521174908, -0.0034283252898603678, 0.626426637172699, -0.28542813658714294, 0.0065096160396933556, -0.29965975880622864, -0.0002556634717620909, 0.0018212978029623628, 0.6137201189994812, -0.34124305844306946, 0.016490716487169266, -0.008570813573896885, -0.00863198097795248, 0.02559266798198223, -0.025730131193995476, 0.2697768807411194, -0.26409637928009033, 0.6148746609687805, -0.19930964708328247, -0.4379635155200958, -1.0720847845077515, -0.034202978014945984, -0.04302337020635605, -0.1715661734342575, -0.27117905020713806, -0.492084264755249, -1.2978676557540894, 0.7091665267944336]} +{"t": 11.2246, "q": [-0.34821024537086487, -0.0004550814628601074, -0.003468500915914774, 0.6264095902442932, -0.28544488549232483, 0.0064806086011230946, -0.2997279167175293, 2.5566347176209092e-05, 0.0016472031129524112, 0.6137115955352783, -0.34125515818595886, 0.016469039022922516, -0.009762692265212536, -0.009499837644398212, 0.025059811770915985, -0.025130920112133026, 0.2751098871231079, -0.2599378526210785, 0.6303582787513733, -0.19102855026721954, -0.43795153498649597, -1.0650261640548706, -0.03618037700653076, -0.042999401688575745, -0.17583255469799042, -0.2711910307407379, -0.4857925474643707, -1.2938529253005981, 0.7075366973876953]} +{"t": 11.2413, "q": [-0.3482528328895569, 7.328949868679047e-05, -0.0034283252898603678, 0.6263754963874817, -0.28545331954956055, 0.0064227585680782795, -0.29983872175216675, 0.0003664509567897767, 0.0013927571708336473, 0.6136264204978943, -0.341279536485672, 0.01644020900130272, -0.010834043845534325, -0.01076042465865612, 0.02429555170238018, -0.0243759136646986, 0.2813296914100647, -0.25695377588272095, 0.6456621289253235, -0.18272347748279572, -0.4376159608364105, -1.056181788444519, -0.03743872046470642, -0.04392218589782715, -0.1787566989660263, -0.27161046862602234, -0.47952479124069214, -1.289322853088379, 0.705930769443512]} +{"t": 11.2581, "q": [-0.3482358157634735, 0.0006101829931139946, -0.003468500915914774, 0.6263073086738586, -0.28548258543014526, 0.0063864607363939285, -0.3000858426094055, 0.0007499461644329131, 0.0011249192757532, 0.6134474277496338, -0.34134429693222046, 0.016339102759957314, -0.012508030980825424, -0.012232773937284946, 0.023394888266921043, -0.02310558594763279, 0.28800490498542786, -0.2549643814563751, 0.6618288159370422, -0.17540112137794495, -0.43725645542144775, -1.0460071563720703, -0.03928428888320923, -0.045815691351890564, -0.18067418038845062, -0.27336016297340393, -0.4711238741874695, -1.286698341369629, 0.703677773475647]} +{"t": 11.2748, "q": [-0.3482358157634735, 0.00107889948412776, -0.0034952848218381405, 0.6262305974960327, -0.2855035364627838, 0.006335753947496414, -0.300494909286499, 0.001193096162751317, 0.0009240407962352037, 0.6134048104286194, -0.3414655327796936, 0.016122257336974144, -0.014637341722846031, -0.014097877778112888, 0.022403718903660774, -0.021763352677226067, 0.29537519812583923, -0.2526274621486664, 0.6784629225730896, -0.16499881446361542, -0.43589022755622864, -1.0365995168685913, -0.04141748324036598, -0.04601942375302315, -0.18373015522956848, -0.2747383713722229, -0.46311840415000916, -1.2843613624572754, 0.7005019187927246]} +{"t": 11.2915, "q": [-0.3482358157634735, 0.0015987483784556389, -0.0034952848218381405, 0.6262050271034241, -0.2855202555656433, 0.006306764669716358, -0.3012363314628601, 0.0016021577175706625, 0.0008035137434490025, 0.6133877635002136, -0.3415420949459076, 0.015955850481987, -0.016565775498747826, -0.015880361199378967, 0.02150139957666397, -0.020600883290171623, 0.3014032542705536, -0.24964340031147003, 0.6952049136161804, -0.15658588707447052, -0.43388888239860535, -1.0263890027999878, -0.04344281554222107, -0.04512060806155205, -0.18845194578170776, -0.275816947221756, -0.4559997618198395, -1.2811856269836426, 0.6985844373703003]} +{"t": 11.3082, "q": [-0.34826135635375977, 0.002135641872882843, -0.003468500915914774, 0.6261965036392212, -0.28554534912109375, 0.0062777139246463776, -0.30194365978240967, 0.0020623519085347652, 0.0008302975329570472, 0.6133707165718079, -0.3415783643722534, 0.01587625779211521, -0.018373681232333183, -0.01800267957150936, 0.020654404535889626, -0.01979793980717659, 0.3066643476486206, -0.24506542086601257, 0.7137325406074524, -0.14756175875663757, -0.43119242787361145, -1.0164300203323364, -0.045468151569366455, -0.0442337766289711, -0.19419237971305847, -0.27629631757736206, -0.4459330141544342, -1.2772427797317505, 0.6968587040901184]} +{"t": 11.3251, "q": [-0.3482784032821655, 0.0025617475621402264, -0.0034283252898603678, 0.6261538863182068, -0.285562127828598, 0.0062197851948440075, -0.3019266128540039, 0.002522546099498868, 0.0008302975329570472, 0.613362193107605, -0.3415781855583191, 0.015847157686948776, -0.02048959955573082, -0.01999605819582939, 0.020145928487181664, -0.01865943893790245, 0.31154191493988037, -0.2404395043849945, 0.7307381629943848, -0.14089854061603546, -0.4287835955619812, -1.004805326461792, -0.047205861657857895, -0.04344281554222107, -0.2021259367465973, -0.277386873960495, -0.43681302666664124, -1.2742587327957153, 0.6943420171737671]} +{"t": 11.3419, "q": [-0.3482954502105713, 0.002902632113546133, -0.0032810145057737827, 0.625983476638794, -0.2855537235736847, 0.006248767487704754, -0.3019266128540039, 0.002888997085392475, 0.0009642164804972708, 0.6133195757865906, -0.3415367007255554, 0.01577397808432579, -0.022886749356985092, -0.021937333047389984, 0.019496940076351166, -0.0177606213837862, 0.3170067369937897, -0.23661653697490692, 0.7496013045310974, -0.1326294243335724, -0.4256077706813812, -0.9932645559310913, -0.049554772675037384, -0.042148519307374954, -0.21107815206050873, -0.2796758711338043, -0.4253441095352173, -1.2708911895751953, 0.6912500858306885]} +{"t": 11.3586, "q": [-0.34826987981796265, 0.0033202157355844975, -0.0028256899677217007, 0.6258130073547363, -0.2855663001537323, 0.0062270076014101505, -0.30189254879951477, 0.0031702269334346056, 0.0012990138493478298, 0.6133025288581848, -0.34149110317230225, 0.01569346711039543, -0.024480385705828667, -0.023735839873552322, 0.018774745985865593, -0.016837837174534798, 0.3225913643836975, -0.23340477049350739, 0.7672780156135559, -0.122442826628685, -0.4198673367500305, -0.9803935289382935, -0.05162804201245308, -0.0424121730029583, -0.21935926377773285, -0.2836066782474518, -0.41429466009140015, -1.2671400308609009, 0.6875230073928833]} +{"t": 11.3755, "q": [-0.3482528328895569, 0.003746321890503168, -0.0022230546455830336, 0.6255999803543091, -0.2855662703514099, 0.006241477094590664, -0.30172210931777954, 0.003442934714257717, 0.0017275545978918672, 0.6133195757865906, -0.3414289057254791, 0.015583690255880356, -0.025136588141322136, -0.0255050640553236, 0.01790803112089634, -0.016753947362303734, 0.32722926139831543, -0.23042069375514984, 0.7849907279014587, -0.1140778437256813, -0.41441449522972107, -0.9679179191589355, -0.053114086389541626, -0.04447345808148384, -0.22642995417118073, -0.28745362162590027, -0.40318527817726135, -1.2642518281936646, 0.6834004521369934]} +{"t": 11.3922, "q": [-0.34822729229927063, 0.003967896569520235, -0.001982000656425953, 0.6251823902130127, -0.28553712368011475, 0.006191028282046318, -0.30159425735473633, 0.003655987558886409, 0.0018614735454320908, 0.6133280992507935, -0.34139156341552734, 0.015517828054726124, -0.02539103478193283, -0.02698632888495922, 0.017378784716129303, -0.016765931621193886, 0.3320589065551758, -0.22764036059379578, 0.8029550909996033, -0.10445450991392136, -0.409560889005661, -0.9540042281150818, -0.05440838262438774, -0.047876980155706406, -0.23723971843719482, -0.2916601002216339, -0.39159655570983887, -1.2618070840835571, 0.6800448894500732]} +{"t": 11.4089, "q": [-0.34812501072883606, 0.004197993781417608, -0.0020355682354420424, 0.6247307062149048, -0.28548291325569153, 0.006126238964498043, -0.30158573389053345, 0.0038605183362960815, 0.0018212978029623628, 0.6133025288581848, -0.3413791358470917, 0.01549587957561016, -0.025605304166674614, -0.02859639748930931, 0.016792675480246544, -0.016741963103413582, 0.33680465817451477, -0.22440461814403534, 0.8205479383468628, -0.094507597386837, -0.40515071153640747, -0.9398388862609863, -0.05591839551925659, -0.05074121057987213, -0.24753417074680328, -0.2951115369796753, -0.379636287689209, -1.256426215171814, 0.6772165894508362]} +{"t": 11.4258, "q": [-0.34780117869377136, 0.004564445000141859, -0.0020623519085347652, 0.6243557333946228, -0.2854662835597992, 0.006082969717681408, -0.30152609944343567, 0.004201402887701988, 0.0017677302239462733, 0.6132173538208008, -0.3413708508014679, 0.015481247566640377, -0.025591911748051643, -0.0311142448335886, 0.015816280618309975, -0.0168618056923151, 0.3403160572052002, -0.2202700525522232, 0.836594820022583, -0.0842730700969696, -0.4001293182373047, -0.9255656599998474, -0.05770404636859894, -0.05427655577659607, -0.2559950351715088, -0.2968252897262573, -0.3678438067436218, -1.2510452270507812, 0.6759342551231384]} +{"t": 11.4426, "q": [-0.347451776266098, 0.0049394178204238415, -0.0022498385515064, 0.6239978075027466, -0.28541213274002075, 0.00600372813642025, -0.3014238178730011, 0.004627508576959372, 0.001566851744428277, 0.6130639314651489, -0.3413791358470917, 0.01549587957561016, -0.02552495338022709, -0.0344722755253315, 0.014469076879322529, -0.017437048256397247, 0.3442588448524475, -0.21680662035942078, 0.8533846735954285, -0.07560847699642181, -0.3946884870529175, -0.9104775190353394, -0.05957358330488205, -0.060208749026060104, -0.2638806700706482, -0.29736459255218506, -0.3545413315296173, -1.2459759712219238, 0.674999475479126]} +{"t": 11.4593, "q": [-0.347008615732193, 0.005382567178457975, -0.002624811604619026, 0.623665452003479, -0.2853580117225647, 0.005895601585507393, -0.30115965008735657, 0.005079180933535099, 0.001272230059839785, 0.6128423810005188, -0.34139126539230347, 0.015474203042685986, -0.025283899158239365, -0.03823678195476532, 0.013383098877966404, -0.018311895430088043, 0.3485252261161804, -0.21377460658550262, 0.8710014820098877, -0.06674014776945114, -0.39064979553222656, -0.8943347930908203, -0.06157495081424713, -0.06633269041776657, -0.27255722880363464, -0.29779601097106934, -0.3425810635089874, -1.2428120374679565, 0.6738490462303162]} +{"t": 11.4762, "q": [-0.3469234108924866, 0.005800151731818914, -0.0031604873947799206, 0.6232649087905884, -0.28528720140457153, 0.005758621264249086, -0.3010914623737335, 0.0054456316865980625, 0.0008570813224650919, 0.6124929785728455, -0.34143581986427307, 0.015409243293106556, -0.025083020329475403, -0.0421004444360733, 0.0122144166380167, -0.018863171339035034, 0.3536424934864044, -0.2117612659931183, 0.8857421278953552, -0.057728011161088943, -0.3873661160469055, -0.8791627883911133, -0.06295313686132431, -0.07143796980381012, -0.2810300886631012, -0.2979518175125122, -0.3295542001724243, -1.24143385887146, 0.673201858997345]} +{"t": 11.4929, "q": [-0.3467699885368347, 0.00634556682780385, -0.0035220684949308634, 0.6226513385772705, -0.28498315811157227, 0.005246990360319614, -0.301057368516922, 0.005786516238003969, 0.0004553244507405907, 0.6118282079696655, -0.34143146872520447, 0.015372825786471367, -0.024989277124404907, -0.04621574655175209, 0.010716734454035759, -0.019594207406044006, 0.3594668507575989, -0.20981980860233307, 0.9011897444725037, -0.04676244780421257, -0.38226082921028137, -0.8635952472686768, -0.06393583863973618, -0.07710650563240051, -0.28878387808799744, -0.2983592748641968, -0.3154487907886505, -1.2406549453735352, 0.6723989248275757]} +{"t": 11.5097, "q": [-0.34601151943206787, 0.007061424199491739, -0.003776514669880271, 0.6221399903297424, -0.28483322262763977, 0.004987560212612152, -0.3010147511959076, 0.0063063655979931355, 0.00022766222537029535, 0.6110186576843262, -0.34136947989463806, 0.015292150899767876, -0.025109805166721344, -0.050130318850278854, 0.009877818636596203, -0.019965719431638718, 0.3656986355781555, -0.2085614651441574, 0.9166014790534973, -0.03687546029686928, -0.37490251660346985, -0.8472607731819153, -0.06515823304653168, -0.08430902659893036, -0.29499170184135437, -0.3003246784210205, -0.30006101727485657, -1.240007758140564, 0.6709008812904358]} +{"t": 11.5264, "q": [-0.345210462808609, 0.007913636043667793, -0.0038434739690274, 0.6216456890106201, -0.2847999334335327, 0.0049154553562402725, -0.3011085093021393, 0.007081877905875444, 0.00016070275160018355, 0.6099192500114441, -0.3412575125694275, 0.01509456429630518, -0.025431210175156593, -0.05380422621965408, 0.008902379311621189, -0.02004960924386978, 0.3718465268611908, -0.20650018751621246, 0.9325165152549744, -0.027791418135166168, -0.368203341960907, -0.8312258720397949, -0.06642855703830719, -0.09230250120162964, -0.29929405450820923, -0.30280542373657227, -0.2839182913303375, -1.2390490770339966, 0.6698702573776245]} +{"t": 11.5432, "q": [-0.34336966276168823, 0.008723236620426178, -0.003910433501005173, 0.6207764744758606, -0.2847582995891571, 0.004828905686736107, -0.3009551167488098, 0.007780691608786583, 0.00010713516530813649, 0.6083000898361206, -0.34080564975738525, 0.014311408624053001, -0.02556512877345085, -0.05725942924618721, 0.00874087493866682, -0.020552946254611015, 0.37746715545654297, -0.20268920063972473, 0.9476166367530823, -0.020600883290171623, -0.36279845237731934, -0.8165931105613708, -0.0674472227692604, -0.09875001758337021, -0.3038240671157837, -0.3060891032218933, -0.2689499855041504, -1.2371914386749268, 0.6681684851646423]} +{"t": 11.5599, "q": [-0.3423640727996826, 0.009200476109981537, -0.004151487722992897, 0.6190123558044434, -0.28434181213378906, 0.004108250141143799, -0.3001028895378113, 0.008274974301457405, 8.035137580009177e-05, 0.606399655342102, -0.34046149253845215, 0.013703999109566212, -0.02556512877345085, -0.06112050265073776, 0.007845086045563221, -0.020972393453121185, 0.38331544399261475, -0.20001672208309174, 0.9626568555831909, -0.010582070797681808, -0.35643482208251953, -0.8007739186286926, -0.06793857365846634, -0.10573682188987732, -0.3096124529838562, -0.30962443351745605, -0.2537420094013214, -1.2348425388336182, 0.6653881669044495]} +{"t": 11.5768, "q": [-0.34167376160621643, 0.00945613905787468, -0.004553244449198246, 0.6169244647026062, -0.2834837734699249, 0.002675517462193966, -0.2994126081466675, 0.008590292185544968, -0.00026783792418427765, 0.6037663221359253, -0.33934104442596436, 0.01177233550697565, -0.02555173635482788, -0.06468433886766434, 0.00644236896187067, -0.02231462672352791, 0.3892116844654083, -0.19849471747875214, 0.9777929186820984, -0.003798999357968569, -0.34938809275627136, -0.7858895659446716, -0.06793857365846634, -0.11196861416101456, -0.3168030083179474, -0.3127762973308563, -0.23907330632209778, -1.2333924770355225, 0.6634107828140259]} +{"t": 11.5935, "q": [-0.3411880135536194, 0.010010076686739922, -0.0053701503202319145, 0.6146831512451172, -0.2827029526233673, 0.0013442006893455982, -0.2983984649181366, 0.009289105422794819, -0.0008704732172191143, 0.6004427075386047, -0.33825260400772095, 0.010286090895533562, -0.025672264397144318, -0.06802984327077866, 0.005035645794123411, -0.02335725538432598, 0.39537158608436584, -0.19646938145160675, 0.9917305707931519, 0.0047098007053136826, -0.34404313564300537, -0.7693153619766235, -0.06817825883626938, -0.11938685178756714, -0.32419726252555847, -0.31670713424682617, -0.22198380529880524, -1.2321701049804688, 0.6616970300674438]} +{"t": 11.6103, "q": [-0.34098348021507263, 0.010223129764199257, -0.006039745174348354, 0.6130895018577576, -0.2822237014770508, 0.0005238124867901206, -0.29824507236480713, 0.009791910648345947, -0.0010713516967371106, 0.598789393901825, -0.33743467926979065, 0.009173250757157803, -0.025632089003920555, -0.07140667736530304, 0.0035251621156930923, -0.024028372019529343, 0.4015674293041229, -0.1946118324995041, 1.0054166316986084, 0.01270327903330326, -0.33825474977493286, -0.7531605958938599, -0.06932874023914337, -0.12854279577732086, -0.33138778805732727, -0.3206978738307953, -0.20268920063972473, -1.2310316562652588, 0.6595638394355774]} +{"t": 11.627, "q": [-0.3407363295555115, 0.010504359379410744, -0.00646828580647707, 0.6129786968231201, -0.2821162939071655, 0.00033667992101982236, -0.29823654890060425, 0.010448113083839417, -0.0009910003282129765, 0.598644495010376, -0.3373061418533325, 0.008903059177100658, -0.025980276986956596, -0.07472355663776398, 0.002619200386106968, -0.02412424609065056, 0.40784716606140137, -0.19332952797412872, 1.0168015956878662, 0.01912682317197323, -0.3312080204486847, -0.7371736764907837, -0.07162971794605255, -0.13889716565608978, -0.33806300163269043, -0.32462868094444275, -0.18441325426101685, -1.2301926612854004, 0.656387984752655]} +{"t": 11.6437, "q": [-0.34060850739479065, 0.011271348223090172, -0.006588812451809645, 0.6129531264305115, -0.2821412980556488, 0.0003220976796001196, -0.29827916622161865, 0.011215103790163994, -0.0008704732172191143, 0.5986104607582092, -0.3373672664165497, 0.008823731914162636, -0.026248116046190262, -0.07791206985712051, 0.001738527324050665, -0.025059014558792114, 0.4145223796367645, -0.19243070483207703, 1.0291693210601807, 0.02840261347591877, -0.32504814863204956, -0.718849778175354, -0.07364306598901749, -0.15110909938812256, -0.3449539244174957, -0.32919469475746155, -0.16498683393001556, -1.229689359664917, 0.6537754535675049]} +{"t": 11.6606, "q": [-0.34060850739479065, 0.01180824264883995, -0.006682556122541428, 0.6126292943954468, -0.28214550018310547, 0.0003148503019474447, -0.2983047366142273, 0.011837217956781387, -0.0008838651119731367, 0.5982865691184998, -0.3374118208885193, 0.008715160191059113, -0.026328466832637787, -0.08094445616006851, 0.0006031244993209839, -0.025706162676215172, 0.4204785227775574, -0.19195133447647095, 1.0409377813339233, 0.0355212427675724, -0.32043421268463135, -0.7025632262229919, -0.07514109462499619, -0.1628296673297882, -0.3524680435657501, -0.3337726593017578, -0.14877216517925262, -1.229521632194519, 0.6521695256233215]} +{"t": 11.6774, "q": [-0.34075337648391724, 0.012651931494474411, -0.006896826438605785, 0.612450361251831, -0.2821207046508789, 0.000271664495812729, -0.2983132600784302, 0.01263829693198204, -0.001004392164759338, 0.5977923274040222, -0.3373863995075226, 0.008555013686418533, -0.026301683858036995, -0.0839885026216507, -0.0002683785860426724, -0.02606569044291973, 0.42672231793403625, -0.19123227894306183, 1.0528501272201538, 0.04194478690624237, -0.3139507472515106, -0.6845030188560486, -0.07665110379457474, -0.17613215744495392, -0.3593829572200775, -0.33800309896469116, -0.13103552162647247, -1.229293942451477, 0.6508872509002686]} +{"t": 11.6941, "q": [-0.3409493863582611, 0.01403251476585865, -0.006829866673797369, 0.6124588847160339, -0.2820838391780853, 0.00012020671420032158, -0.29823654890060425, 0.013643906451761723, -0.0014329327968880534, 0.5971872210502625, -0.33711281418800354, 0.007999971508979797, -0.02622133120894432, -0.08662496507167816, -0.0010761144803836942, -0.026569027453660965, 0.4333735406398773, -0.19005782902240753, 1.0646066665649414, 0.048536110669374466, -0.3065684735774994, -0.6671738028526306, -0.07928763329982758, -0.18997393548488617, -0.3657345771789551, -0.3414425551891327, -0.11234012991189957, -1.229245901107788, 0.6490296721458435]} +{"t": 11.711, "q": [-0.34115391969680786, 0.01595851220190525, -0.00646828580647707, 0.6124588847160339, -0.2821510136127472, -5.35911567567382e-05, -0.2982024550437927, 0.014905179850757122, -0.0015534599078819156, 0.5963265299797058, -0.3365952968597412, 0.007071799132972956, -0.02623472362756729, -0.08912676572799683, -0.002006696304306388, -0.028091024607419968, 0.4404682219028473, -0.18877550959587097, 1.0753445625305176, 0.05318599194288254, -0.3002288043498993, -0.648993730545044, -0.08404537290334702, -0.20469056069850922, -0.37093573808670044, -0.3431563079357147, -0.09351290762424469, -1.2291381359100342, 0.6460216641426086]} +{"t": 11.7277, "q": [-0.34125620126724243, 0.017475448548793793, -0.006334366742521524, 0.6124674081802368, -0.2822137176990509, -0.00014785974053665996, -0.2982109785079956, 0.01575739122927189, -0.001794514013454318, 0.5952697396278381, -0.3361566364765167, 0.006326138041913509, -0.026315074414014816, -0.09126674383878708, -0.0028925605583935976, -0.02912166714668274, 0.44716739654541016, -0.18788868188858032, 1.0853873491287231, 0.0571887232363224, -0.2927865982055664, -0.6323356628417969, -0.08949819207191467, -0.21772940456867218, -0.37420743703842163, -0.3442109227180481, -0.07480553537607193, -1.229006290435791, 0.6421267986297607]} +{"t": 11.7445, "q": [-0.34124767780303955, 0.01871967688202858, -0.006213839631527662, 0.6123395562171936, -0.2822181284427643, -0.00021291109442245215, -0.2982024550437927, 0.016149409115314484, -0.001794514013454318, 0.5946817398071289, -0.33579665422439575, 0.005719339940696955, -0.02655612863600254, -0.09324296563863754, -0.0033343054819852114, -0.030056437477469444, 0.4544418156147003, -0.18637867271900177, 1.0945552587509155, 0.06381599605083466, -0.2836785912513733, -0.614838719367981, -0.09604158252477646, -0.23124760389328003, -0.37757501006126404, -0.34572091698646545, -0.05516338720917702, -1.228946328163147, 0.6391666531562805]} +{"t": 11.7612, "q": [-0.3412817418575287, 0.019665632396936417, -0.006347758695483208, 0.6122798919677734, -0.28223079442977905, -0.0002635552373249084, -0.2982621192932129, 0.016089754179120064, -0.001901649171486497, 0.5944942235946655, -0.33568888902664185, 0.005500230938196182, -0.026957886293530464, -0.0951220914721489, -0.0033017711248248816, -0.03145859017968178, 0.460589736700058, -0.18376611173152924, 1.1048017740249634, 0.07212106883525848, -0.276787668466568, -0.5972578525543213, -0.10284861922264099, -0.24526914954185486, -0.3817814588546753, -0.3476503789424896, -0.0360964871942997, -1.229018211364746, 0.6362185478210449]} +{"t": 11.7779, "q": [-0.34142664074897766, 0.020304791629314423, -0.00672273151576519, 0.6122287511825562, -0.2821730673313141, -0.00039320020005106926, -0.2983132600784302, 0.016200540587306023, -0.0024507169146090746, 0.5944942235946655, -0.33565983176231384, 0.005434534978121519, -0.027506953105330467, -0.09673123061656952, -0.0033426103182137012, -0.032585106790065765, 0.4662223160266876, -0.18159696459770203, 1.1138617992401123, 0.07692674547433853, -0.2691177725791931, -0.5812109708786011, -0.10908041894435883, -0.2589551508426666, -0.3856523633003235, -0.34896865487098694, -0.017916416749358177, -1.2289823293685913, 0.6336539387702942]} +{"t": 11.7947, "q": [-0.34158855676651, 0.02088429592549801, -0.007338759023696184, 0.6121009588241577, -0.28212353587150574, -0.0004940138314850628, -0.2983558475971222, 0.016140887513756752, -0.003173879347741604, 0.5945112705230713, -0.33574923872947693, 0.005275535397231579, -0.027600696310400963, -0.09848027676343918, -0.0032157129608094692, -0.03440671041607857, 0.4717710018157959, -0.18009893596172333, 1.1235570907592773, 0.08224774152040482, -0.26020148396492004, -0.5641574263572693, -0.1140299066901207, -0.27297669649124146, -0.390098512172699, -0.35014310479164124, 0.0027324033435434103, -1.229018211364746, 0.6323955655097961]} +{"t": 11.8116, "q": [-0.34188681840896606, 0.021523453295230865, -0.008035137318074703, 0.6119986772537231, -0.2820202708244324, -0.0006739338277839124, -0.298441082239151, 0.01619201898574829, -0.003816690295934677, 0.594528317451477, -0.33594855666160583, 0.004950474947690964, -0.027614088729023933, -0.09997417032718658, -0.0031426246277987957, -0.0358208492398262, 0.4764927923679352, -0.17893646657466888, 1.1335399150848389, 0.08657404035329819, -0.25220802426338196, -0.5477030873298645, -0.11823636293411255, -0.28590765595436096, -0.3950120508670807, -0.3508262038230896, 0.023692812770605087, -1.2289104461669922, 0.6313050389289856]} +{"t": 11.8283, "q": [-0.3420998752117157, 0.02227340079843998, -0.008410110138356686, 0.6119731068611145, -0.2820122241973877, -0.0007461091154254973, -0.298628568649292, 0.016260195523500443, -0.0041247038170695305, 0.5945709347724915, -0.33618414402008057, 0.004502247553318739, -0.02774800732731819, -0.10096374899148941, -0.0029974717181175947, -0.03643204644322395, 0.4804595708847046, -0.1784570962190628, 1.1416652202606201, 0.09147559106349945, -0.24386699497699738, -0.5327826738357544, -0.12229901552200317, -0.2965017259120941, -0.400333046913147, -0.35058653354644775, 0.04446147382259369, -1.228047490119934, 0.6296272277832031]} +{"t": 11.845, "q": [-0.3423811197280884, 0.023083001375198364, -0.008544029667973518, 0.6119475364685059, -0.28201228380203247, -0.0007605691207572818, -0.2989950180053711, 0.016626646742224693, -0.004392541944980621, 0.5945709347724915, -0.3363427519798279, 0.004234921652823687, -0.02774800732731819, -0.10157904773950577, -0.002966363215819001, -0.036803554743528366, 0.4840069115161896, -0.1780855804681778, 1.1508451700210571, 0.09441172331571579, -0.237095907330513, -0.5175986886024475, -0.12564261257648468, -0.30745530128479004, -0.4054742753505707, -0.35038280487060547, 0.06400774419307709, -1.226549506187439, 0.6289801001548767]} +{"t": 11.8618, "q": [-0.34249189496040344, 0.023372752591967583, -0.008704732172191143, 0.6118708252906799, -0.28201228380203247, -0.0007605691207572818, -0.29934442043304443, 0.01685674488544464, -0.004405933897942305, 0.5946561694145203, -0.3364890217781067, 0.003931000363081694, -0.02806941419839859, -0.10205743461847305, -0.002821872243657708, -0.036911413073539734, 0.4876740872859955, -0.17784589529037476, 1.1592581272125244, 0.09771937131881714, -0.23171499371528625, -0.5037689208984375, -0.12809938192367554, -0.3183010220527649, -0.4078231751918793, -0.3502269983291626, 0.08004263788461685, -1.2251713275909424, 0.6291118860244751]} +{"t": 11.8786, "q": [-0.3430543541908264, 0.023628415539860725, -0.008865434676408768, 0.6118196845054626, -0.28202059864997864, -0.0007606218568980694, -0.3000347316265106, 0.017052752897143364, -0.004606812261044979, 0.5948691964149475, -0.33660688996315, 0.003692212514579296, -0.028149764984846115, -0.10235535353422165, -0.0026570004411041737, -0.03688744455575943, 0.49055027961730957, -0.1776062250137329, 1.1682102680206299, 0.10171011835336685, -0.2245124727487564, -0.49033457040786743, -0.12872256338596344, -0.3305608928203583, -0.40897366404533386, -0.34556514024734497, 0.09265004843473434, -1.2235773801803589, 0.6300346851348877]} +{"t": 11.8954, "q": [-0.34396621584892273, 0.023645460605621338, -0.009267191402614117, 0.6117856502532959, -0.2819916307926178, -0.0007965423865243793, -0.30071648955345154, 0.017069797962903976, -0.00512909609824419, 0.5949714779853821, -0.3366797864437103, 0.003489337395876646, -0.02792210318148136, -0.10239988565444946, -0.0026212013326585293, -0.037163082510232925, 0.49197641015052795, -0.17697104811668396, 1.1762876510620117, 0.10431069880723953, -0.2176215499639511, -0.47817057371139526, -0.12892629206180573, -0.3431083559989929, -0.40934517979621887, -0.34152644872665405, 0.10429871082305908, -1.2229901552200317, 0.6322038173675537]} +{"t": 11.9122, "q": [-0.3448610305786133, 0.023611372336745262, -0.009468070231378078, 0.6116492748260498, -0.2819213271141052, -0.0009044272592291236, -0.30152609944343567, 0.017044231295585632, -0.005329974461346865, 0.5951675176620483, -0.3368138074874878, 0.0031925614457577467, -0.02721233107149601, -0.1023990586400032, -0.0025634714402258396, -0.03707919269800186, 0.4927314221858978, -0.17514945566654205, 1.1844369173049927, 0.1071150079369545, -0.21222864091396332, -0.4671570956707001, -0.12902216613292694, -0.3553442656993866, -0.4100402593612671, -0.33853039145469666, 0.11466506868600845, -1.2229422330856323, 0.6336419582366943]} +{"t": 11.929, "q": [-0.3453553318977356, 0.02359432727098465, -0.009441286325454712, 0.6116066575050354, -0.2818717658519745, -0.000990798813290894, -0.30203741788864136, 0.017001619562506676, -0.005356758367270231, 0.5953038334846497, -0.33694010972976685, 0.0029974584467709064, -0.026074020192027092, -0.10234584659337997, -0.0025170366279780865, -0.03700728714466095, 0.49282729625701904, -0.17268070578575134, 1.1913877725601196, 0.1089605763554573, -0.20737503468990326, -0.45643121004104614, -0.1284589171409607, -0.3666453957557678, -0.4109630584716797, -0.33723610639572144, 0.12704476714134216, -1.2230861186981201, 0.6340853571891785]} +{"t": 11.9457, "q": [-0.34537237882614136, 0.02346649579703808, -0.00933415163308382, 0.611419141292572, -0.28187188506126404, -0.0010197008959949017, -0.3021056056022644, 0.016941964626312256, -0.005303190555423498, 0.59542316198349, -0.3369765877723694, 0.002903306856751442, -0.025096412748098373, -0.10227029770612717, -0.0024836875963956118, -0.03695935010910034, 0.4928153157234192, -0.17090703547000885, 1.1977274417877197, 0.1095118522644043, -0.2022218108177185, -0.4487972557544708, -0.1287824809551239, -0.37789857387542725, -0.4114304482936859, -0.3367447555065155, 0.1387893110513687, -1.2232298851013184, 0.6343370079994202]} +{"t": 11.9624, "q": [-0.3453553318977356, 0.023330142721533775, -0.009347543120384216, 0.6112231612205505, -0.2818717658519745, -0.000990798813290894, -0.30203741788864136, 0.016882311552762985, -0.005383542273193598, 0.5954061150550842, -0.33703771233558655, 0.0028093697037547827, -0.02402506023645401, -0.10227029770612717, -0.0024836875963956118, -0.036743633449077606, 0.4928632378578186, -0.17022393643856049, 1.2023054361343384, 0.10958375781774521, -0.19787153601646423, -0.4410434663295746, -0.12891431152820587, -0.38845667243003845, -0.41182592511177063, -0.3367207646369934, 0.150198295712471, -1.2232298851013184, 0.6343130469322205]} +{"t": 11.9792, "q": [-0.34538090229034424, 0.0232278760522604, -0.009414502419531345, 0.6112316846847534, -0.28188014030456543, -0.001005311612971127, -0.3019692301750183, 0.016814133152365685, -0.0056112040765583515, 0.5954487323760986, -0.3371274173259735, 0.002693900605663657, -0.023087628185749054, -0.10227802395820618, -0.0024985671043395996, -0.03653990104794502, 0.49285125732421875, -0.16982845962047577, 1.2061283588409424, 0.10966764390468597, -0.19571438431739807, -0.4356505572795868, -0.1294296383857727, -0.39938628673553467, -0.4124610722064972, -0.33590584993362427, 0.1618110090494156, -1.2232059240341187, 0.6343250274658203]} +{"t": 11.996, "q": [-0.34541499614715576, 0.023031868040561676, -0.009427894838154316, 0.6112146377563477, -0.2818717658519745, -0.000990798813290894, -0.30185845494270325, 0.01667778007686138, -0.005678163841366768, 0.5954402089118958, -0.33714786171913147, 0.0026722727343440056, -0.021962709724903107, -0.10229304432868958, -0.002499466761946678, -0.03681553900241852, 0.49247974157333374, -0.16981646418571472, 1.210922122001648, 0.10973954945802689, -0.19446802139282227, -0.43128830194473267, -0.13428324460983276, -0.40977662801742554, -0.4133599102497101, -0.3350789248943329, 0.17341174185276031, -1.2230861186981201, 0.6343010663986206]} +{"t": 12.0128, "q": [-0.3454831540584564, 0.022904036566615105, -0.009441286325454712, 0.6111975908279419, -0.28187596797943115, -0.000998064293526113, -0.3017987906932831, 0.016635170206427574, -0.005865650251507759, 0.5954316854476929, -0.33716028928756714, 0.002694210968911648, -0.02117258682847023, -0.10229318588972092, -0.002509085461497307, -0.03677958622574806, 0.4921322166919708, -0.16984044015407562, 1.2147690057754517, 0.10969161242246628, -0.1937849223613739, -0.42914313077926636, -0.1396881341934204, -0.42075416445732117, -0.4138272702693939, -0.33406028151512146, 0.18543191254138947, -1.2230501174926758, 0.6342411637306213]} +{"t": 12.0295, "q": [-0.3455428183078766, 0.02263132855296135, -0.009481461718678474, 0.6112146377563477, -0.2818717658519745, -0.000990798813290894, -0.30171358585357666, 0.016652213409543037, -0.00605313666164875, 0.59542316198349, -0.3371727764606476, 0.002730666659772396, -0.020770831033587456, -0.102293461561203, -0.0025283286813646555, -0.036803554743528366, 0.4919883906841278, -0.16987639665603638, 1.2189514636993408, 0.10972756892442703, -0.19314976036548615, -0.4260152280330658, -0.146782785654068, -0.43199536204338074, -0.4141508638858795, -0.33281391859054565, 0.19859059154987335, -1.2229782342910767, 0.6342291831970215]} +{"t": 12.0462, "q": [-0.3455342948436737, 0.022307489067316055, -0.009481461718678474, 0.611189067363739, -0.28188014030456543, -0.001005311612971127, -0.3016965389251709, 0.01667778007686138, -0.006066528614610434, 0.59542316198349, -0.3371974527835846, 0.002745453268289566, -0.020409248769283295, -0.10230090469121933, -0.0025239677634090185, -0.03681553900241852, 0.49055027961730957, -0.1699722707271576, 1.22050940990448, 0.10973954945802689, -0.1928621381521225, -0.4220125079154968, -0.15511183440685272, -0.4436919689178467, -0.41473808884620667, -0.3321787416934967, 0.21225261688232422, -1.2229182720184326, 0.6337258219718933]} +{"t": 12.063, "q": [-0.34546610713005066, 0.021898426115512848, -0.009481461718678474, 0.6111123561859131, -0.28187596797943115, -0.000998064293526113, -0.30167949199676514, 0.01667778007686138, -0.006066528614610434, 0.5955083966255188, -0.33721816539764404, 0.002781986491754651, -0.02048959955573082, -0.10227856785058975, -0.002537053544074297, -0.03677958622574806, 0.4887166917324066, -0.17014004290103912, 1.2209168672561646, 0.10970360040664673, -0.1928621381521225, -0.4195916950702667, -0.16529841721057892, -0.4545496702194214, -0.41631999611854553, -0.33177128434181213, 0.22610637545585632, -1.2229063510894775, 0.6335580348968506]} +{"t": 12.0797, "q": [-0.3453894257545471, 0.02160867489874363, -0.009441286325454712, 0.61104416847229, -0.28188014030456543, -0.001005311612971127, -0.3016965389251709, 0.016643691807985306, -0.0059995693154633045, 0.595653235912323, -0.3372468650341034, 0.002775008324533701, -0.02048959955573082, -0.10224879533052444, -0.00255450326949358, -0.03681553900241852, 0.48598429560661316, -0.17049957811832428, 1.2210966348648071, 0.10966764390468597, -0.19302991032600403, -0.41858503222465515, -0.17679129540920258, -0.46616238355636597, -0.4175543785095215, -0.33177128434181213, 0.24060729146003723, -1.222966194152832, 0.6334262490272522]} +{"t": 12.0964, "q": [-0.34532976150512695, 0.021506410092115402, -0.009508245624601841, 0.6109334230422974, -0.2818635106086731, -0.0010051882127299905, -0.30167949199676514, 0.016643691807985306, -0.006079920567572117, 0.5956191420555115, -0.33728402853012085, 0.002826250623911619, -0.02018158696591854, -0.10220426321029663, -0.0025903023779392242, -0.03683950752019882, 0.48162204027175903, -0.17067933082580566, 1.2210367918014526, 0.10960772633552551, -0.19354523718357086, -0.4185250997543335, -0.18671423196792603, -0.4776073396205902, -0.41963961720466614, -0.33193907141685486, 0.2530948519706726, -1.2229782342910767, 0.633378267288208]} +{"t": 12.1132, "q": [-0.3453127145767212, 0.021506410092115402, -0.009535029530525208, 0.610890805721283, -0.2818635106086731, -0.0010051882127299905, -0.30167096853256226, 0.01660108007490635, -0.006160271819680929, 0.5956617593765259, -0.33732080459594727, 0.0027902419678866863, -0.019351288676261902, -0.10213009268045425, -0.0026531696785241365, -0.036911413073539734, 0.475162535905838, -0.1708710789680481, 1.221024751663208, 0.10960772633552551, -0.1940126270055771, -0.41851311922073364, -0.19932162761688232, -0.48955559730529785, -0.42218029499053955, -0.33201098442077637, 0.2672722041606903, -1.2229303121566772, 0.633006751537323]} +{"t": 12.1299, "q": [-0.34529566764831543, 0.02148936502635479, -0.00966894906014204, 0.6108993291854858, -0.2818428575992584, -0.0010411792900413275, -0.30167096853256226, 0.01654142513871193, -0.006254015490412712, 0.595798134803772, -0.33736976981163025, 0.0027325281407684088, -0.01845403201878071, -0.10202600061893463, -0.002723861951380968, -0.03689942881464958, 0.466905415058136, -0.17100290954113007, 1.2210367918014526, 0.10960772633552551, -0.19430024921894073, -0.4185730218887329, -0.21281586587429047, -0.5008687376976013, -0.4248887300491333, -0.332154780626297, 0.2809821367263794, -1.2230141162872314, 0.6325274109840393]} +{"t": 12.1467, "q": [-0.34529566764831543, 0.021514931693673134, -0.009829651564359665, 0.6108311414718628, -0.28183045983314514, -0.0010627632727846503, -0.3016965389251709, 0.016524381935596466, -0.00642810994759202, 0.5958577990531921, -0.3375247120857239, 0.0025159111246466637, -0.017409464344382286, -0.1020117998123169, -0.0027806980069726706, -0.036911413073539734, 0.4584445655345917, -0.17193767428398132, 1.2210607528686523, 0.10982344299554825, -0.19459985196590424, -0.41886064410209656, -0.22562700510025024, -0.5093415379524231, -0.42939478158950806, -0.33366480469703674, 0.29339781403541565, -1.2229782342910767, 0.6323117017745972]} +{"t": 12.1634, "q": [-0.3453468084335327, 0.021540498360991478, -0.01024479977786541, 0.6107970476150513, -0.2818056643009186, -0.0011059490498155355, -0.301688015460968, 0.016524381935596466, -0.006749515421688557, 0.5959089398384094, -0.3376756012439728, 0.0023210407234728336, -0.016364896669983864, -0.10208790004253387, -0.0028525337111204863, -0.03687546029686928, 0.4479823112487793, -0.17197363078594208, 1.2210726737976074, 0.10973954945802689, -0.19483953714370728, -0.419052392244339, -0.23962458968162537, -0.5191805958747864, -0.4332297444343567, -0.3358219563961029, 0.3070957660675049, -1.2231100797653198, 0.6321678757667542]} +{"t": 12.1802, "q": [-0.34539794921875, 0.021583108231425285, -0.010606381110846996, 0.6107970476150513, -0.281780868768692, -0.0011491349432617426, -0.30171358585357666, 0.01637098379433155, -0.007003961596637964, 0.5960708260536194, -0.3378713130950928, 0.002046650042757392, -0.01562834158539772, -0.10229992121458054, -0.002980545861646533, -0.03434678912162781, 0.437316358089447, -0.17230919003486633, 1.2214921712875366, 0.1098354235291481, -0.19497136771678925, -0.41923215985298157, -0.25358620285987854, -0.529594898223877, -0.43610596656799316, -0.3369964063167572, 0.3192957043647766, -1.2230501174926758, 0.632179856300354]} +{"t": 12.1969, "q": [-0.3455769121646881, 0.02166832983493805, -0.011075098067522049, 0.6108055710792542, -0.2817023992538452, -0.0012858690461143851, -0.30177322030067444, 0.01631132885813713, -0.007325367070734501, 0.5961049199104309, -0.3379972279071808, 0.0017788499826565385, -0.015025706961750984, -0.10256560891866684, -0.0031837031710892916, -0.031254857778549194, 0.42494863271713257, -0.1724889576435089, 1.2228343486785889, 0.10984741151332855, -0.1949114352464676, -0.41931605339050293, -0.2680751383304596, -0.5414113402366638, -0.4396892488002777, -0.3380390405654907, 0.33161550760269165, -1.2230021953582764, 0.6320120692253113]} +{"t": 12.2136, "q": [-0.34598594903945923, 0.021702418103814125, -0.01177147589623928, 0.6107885241508484, -0.28157854080200195, -0.001516240299679339, -0.3018414080142975, 0.0163028072565794, -0.007887826301157475, 0.5961219668388367, -0.3381601572036743, 0.0015186851378530264, -0.013606165535748005, -0.10309631377458572, -0.0035418476909399033, -0.027719512581825256, 0.41222140192985535, -0.17259681224822998, 1.2236133813858032, 0.10987138003110886, -0.1949593722820282, -0.4193519949913025, -0.28281572461128235, -0.5532517433166504, -0.44232577085494995, -0.33853039145469666, 0.3458288013935089, -1.222678542137146, 0.6312690377235413]} +{"t": 12.2306, "q": [-0.346377968788147, 0.021702418103814125, -0.01244107075035572, 0.6107885241508484, -0.2814091742038727, -0.00181131053250283, -0.3018840253353119, 0.01618349738419056, -0.008677948266267776, 0.5962327718734741, -0.33850619196891785, 0.0009331017499789596, -0.0121866250410676, -0.10375607013702393, -0.003998917061835527, -0.024052340537309647, 0.3999974727630615, -0.17283649742603302, 1.2249555587768555, 0.10991931706666946, -0.1949354112148285, -0.419423907995224, -0.2982753813266754, -0.5631626844406128, -0.4449023902416229, -0.3384944498538971, 0.35842421650886536, -1.2221393585205078, 0.6303223371505737]} +{"t": 12.2473, "q": [-0.3466933071613312, 0.021659808233380318, -0.012976747006177902, 0.6107885241508484, -0.2813388407230377, -0.0019047533860430121, -0.3019777536392212, 0.016157930716872215, -0.009307367727160454, 0.5964884161949158, -0.3388276994228363, 0.0003618215851020068, -0.009896610863506794, -0.10451426357030869, -0.004525463562458754, -0.02088850550353527, 0.38698261976242065, -0.1727406233549118, 1.2279516458511353, 0.1098114550113678, -0.1949114352464676, -0.4191482663154602, -0.31381893157958984, -0.5729178786277771, -0.4486055076122284, -0.33882999420166016, 0.37128329277038574, -1.2215280532836914, 0.6286085844039917]} +{"t": 12.264, "q": [-0.34670183062553406, 0.021745027974247932, -0.013378503732383251, 0.6108396649360657, -0.2813224196434021, -0.001962434034794569, -0.3020203709602356, 0.016047142446041107, -0.009521638043224812, 0.5968292951583862, -0.3390231132507324, 2.9251788873807527e-05, -0.007044136989861727, -0.10540127009153366, -0.0051318746991455555, -0.01726926863193512, 0.3747946619987488, -0.1724889576435089, 1.2304203510284424, 0.1098114550113678, -0.19479160010814667, -0.4179019331932068, -0.3309084177017212, -0.5815824866294861, -0.45126599073410034, -0.3387940526008606, 0.3861556947231293, -1.22085702419281, 0.6263435482978821]} +{"t": 12.2809, "q": [-0.346633642911911, 0.02178763970732689, -0.0138606121763587, 0.6108396649360657, -0.2813223600387573, -0.0019479739712551236, -0.30206298828125, 0.016166452318429947, -0.009561813436448574, 0.5969230532646179, -0.3391124904155731, -0.00015891432121861726, -0.004218447022140026, -0.10627585649490356, -0.0059205214492976665, -0.013674001209437847, 0.36432045698165894, -0.17071528732776642, 1.233284592628479, 0.10936804115772247, -0.1946597695350647, -0.4131801426410675, -0.3482855558395386, -0.5896478295326233, -0.4547893702983856, -0.338614284992218, 0.40051281452178955, -1.2193589210510254, 0.6219812631607056]} +{"t": 12.2976, "q": [-0.3464972972869873, 0.022196700796484947, -0.014289152808487415, 0.6108396649360657, -0.281326562166214, -0.001955239335075021, -0.30206298828125, 0.016456205397844315, -0.009816259145736694, 0.5971360802650452, -0.33919787406921387, -0.00032531554461456835, 0.00013391896209213883, -0.10699481517076492, -0.00684960326179862, -0.012619389221072197, 0.36102479696273804, -0.16868995130062103, 1.2361369132995605, 0.10887668281793594, -0.19480358064174652, -0.40790706872940063, -0.36473989486694336, -0.5975813865661621, -0.46106910705566406, -0.33853039145469666, 0.41473808884620667, -1.2160392999649048, 0.6180983781814575]} +{"t": 12.3145, "q": [-0.3464120626449585, 0.022708028554916382, -0.014329328201711178, 0.6108567118644714, -0.28130996227264404, -0.001969575881958008, -0.3020715117454529, 0.016652213409543037, -0.010124272666871548, 0.597434401512146, -0.3393523693084717, -0.0006292016478255391, 0.0042854067869484425, -0.1075279638171196, -0.007926631718873978, -0.012415657751262188, 0.361108660697937, -0.16786304116249084, 1.2385456562042236, 0.10884073376655579, -0.19482755661010742, -0.4036886394023895, -0.38146987557411194, -0.6053831577301025, -0.4690505862236023, -0.33855435252189636, 0.42727357149124146, -1.2103108167648315, 0.613280713558197]} +{"t": 12.3312, "q": [-0.3464887738227844, 0.022725071758031845, -0.015079274773597717, 0.610890805721283, -0.28123560547828674, -0.002099115401506424, -0.3019181191921234, 0.016515860334038734, -0.011275975964963436, 0.5978264212608337, -0.3395478427410126, -0.0009471995290368795, 0.007124488707631826, -0.10798652470111847, -0.009048265404999256, -0.01185239851474762, 0.36121654510498047, -0.1678270846605301, 1.239264726638794, 0.108936607837677, -0.19515112042427063, -0.4012678265571594, -0.3999255895614624, -0.6149585247039795, -0.4774155914783478, -0.3385423719882965, 0.4391739070415497, -1.2046183347702026, 0.6090503334999084]} +{"t": 12.348, "q": [-0.3465058207511902, 0.022725071758031845, -0.01565512642264366, 0.6110357046127319, -0.28103315830230713, -0.0024373186752200127, -0.301688015460968, 0.016388028860092163, -0.0121062733232975, 0.5984314680099487, -0.3396987020969391, -0.0011566057801246643, 0.008302975445985794, -0.10814022272825241, -0.009842932224273682, -0.009970875456929207, 0.3614562153816223, -0.16788701713085175, 1.2399479150772095, 0.10897255688905716, -0.1953308880329132, -0.39993757009506226, -0.4200950264930725, -0.6244260668754578, -0.483827143907547, -0.3385184109210968, 0.45151767134666443, -1.1990337371826172, 0.6050356030464172]} +{"t": 12.3647, "q": [-0.3464972972869873, 0.022725071758031845, -0.01577565260231495, 0.6112572550773621, -0.28093817830085754, -0.00261729140765965, -0.3016965389251709, 0.016328373923897743, -0.012200016528367996, 0.5988149642944336, -0.33976003527641296, -0.0012069172225892544, 0.009240408428013325, -0.10869944840669632, -0.010653723962605, -0.007418235298246145, 0.3613124191761017, -0.167851060628891, 1.2402594089508057, 0.10898454487323761, -0.19549866020679474, -0.39843952655792236, -0.4397971034049988, -0.6348882913589478, -0.4897952973842621, -0.33498305082321167, 0.46442466974258423, -1.1902493238449097, 0.6005535125732422]} +{"t": 12.3814, "q": [-0.34648025035858154, 0.022708028554916382, -0.015842612832784653, 0.6113424897193909, -0.2809133529663086, -0.0026460173539817333, -0.3017391264438629, 0.016319850459694862, -0.012133057229220867, 0.5990279912948608, -0.3397560119628906, -0.0011851342860609293, 0.009427894838154316, -0.1093401312828064, -0.011377887800335884, -0.004422178957611322, 0.36127644777297974, -0.1675514578819275, 1.2405470609664917, 0.1089126393198967, -0.19573834538459778, -0.39609062671661377, -0.45875614881515503, -0.6440322399139404, -0.49716559052467346, -0.32972198724746704, 0.4782664477825165, -1.1791998147964478, 0.595340371131897]} +{"t": 12.3981, "q": [-0.34642910957336426, 0.02269098348915577, -0.015842612832784653, 0.6113936305046082, -0.28087615966796875, -0.0027108050417155027, -0.3017306327819824, 0.01636246219277382, -0.012025922536849976, 0.5991728901863098, -0.3397517502307892, -0.001221548649482429, 0.009280583821237087, -0.1103062853217125, -0.012311154045164585, -0.0015339808305725455, 0.3608330488204956, -0.1661013662815094, 1.240750789642334, 0.1088886708021164, -0.19582223892211914, -0.393154501914978, -0.47687628865242004, -0.6556209921836853, -0.5044400095939636, -0.32432907819747925, 0.4919404685497284, -1.1662089824676514, 0.5895519852638245]} +{"t": 12.4149, "q": [-0.34642910957336426, 0.022725071758031845, -0.015829220414161682, 0.61170893907547, -0.2808597683906555, -0.002768485574051738, -0.30176469683647156, 0.01637098379433155, -0.01191878691315651, 0.5995393395423889, -0.33973532915115356, -0.0012216857867315412, 0.0089190024882555, -0.11143554002046585, -0.01310130674391985, 0.0005752427969127893, 0.3608929514884949, -0.16341689229011536, 1.240810751914978, 0.10882874578237534, -0.19612184166908264, -0.3909973204135895, -0.4925636351108551, -0.6655559539794922, -0.5117983222007751, -0.31866055727005005, 0.5025584697723389, -1.1547520160675049, 0.5852256417274475]} +{"t": 12.4316, "q": [-0.34653139114379883, 0.022733593359589577, -0.01580243743956089, 0.6118878722190857, -0.28085970878601074, -0.002754025626927614, -0.30186697840690613, 0.016328373923897743, -0.011905395425856113, 0.5997523665428162, -0.33972305059432983, -0.001214534160681069, 0.008610988967120647, -0.11270854622125626, -0.01398340705782175, 0.0020013656467199326, 0.36095288395881653, -0.16049274802207947, 1.2408466339111328, 0.10885271430015564, -0.19642144441604614, -0.38977494835853577, -0.506501317024231, -0.676485538482666, -0.5187491774559021, -0.3125126361846924, 0.513296365737915, -1.1428277492523193, 0.582121729850769]} +{"t": 12.4484, "q": [-0.34657397866249084, 0.0226995050907135, -0.01562834158539772, 0.6121180057525635, -0.2809179127216339, -0.0027543946634978056, -0.301875501871109, 0.016217585653066635, -0.011798259802162647, 0.5998546481132507, -0.3397231101989746, -0.001199998427182436, 0.007700339891016483, -0.11403469741344452, -0.014922975562512875, 0.0036432044580578804, 0.3609888255596161, -0.15815581381320953, 1.2408347129821777, 0.10882874578237534, -0.19666112959384918, -0.3889480233192444, -0.5185214877128601, -0.6861088871955872, -0.5249210596084595, -0.30655649304389954, 0.5221647024154663, -1.1310232877731323, 0.5783227682113647]} +{"t": 12.4654, "q": [-0.3465825021266937, 0.022665416821837425, -0.01519980188459158, 0.6125696301460266, -0.2810300886631012, -0.002733443630859256, -0.30199480056762695, 0.016089754179120064, -0.011356327682733536, 0.6000080704689026, -0.339776873588562, -0.0011195113183930516, 0.00646828580647707, -0.11479417979717255, -0.015590181574225426, 0.005332980304956436, 0.3610127866268158, -0.15608255565166473, 1.2409305572509766, 0.10885271430015564, -0.19661319255828857, -0.3880492150783539, -0.5283005833625793, -0.6941502690315247, -0.5289837121963501, -0.3042674958705902, 0.5306494832038879, -1.119470477104187, 0.573529064655304]} +{"t": 12.4823, "q": [-0.34648025035858154, 0.022529063746333122, -0.014570382423698902, 0.6128935217857361, -0.28131553530693054, -0.0023524414282292128, -0.3020715117454529, 0.015961922705173492, -0.010566205717623234, 0.6000080704689026, -0.3398435115814209, -0.0009153357241302729, 0.005437109619379044, -0.1154116541147232, -0.016311610117554665, 0.007358314469456673, 0.3610367774963379, -0.15237942337989807, 1.2412182092666626, 0.10884073376655579, -0.196577250957489, -0.3868268132209778, -0.5376603007316589, -0.7020718455314636, -0.5319437980651855, -0.30345258116722107, 0.5377561450004578, -1.1079895496368408, 0.5675848722457886]} +{"t": 12.499, "q": [-0.3464546799659729, 0.022426798939704895, -0.0137802604585886, 0.6129957437515259, -0.2815186679363251, -0.0021875782404094934, -0.30249759554862976, 0.015791479498147964, -0.009494854137301445, 0.5999654531478882, -0.33981943130493164, -0.0007992459577508271, 0.003133703488856554, -0.11638911068439484, -0.017018089070916176, 0.008233162574470043, 0.3610846996307373, -0.15022225677967072, 1.2414098978042603, 0.10887668281793594, -0.19651731848716736, -0.3855445086956024, -0.5450425744056702, -0.7090466618537903, -0.53310626745224, -0.3030211329460144, 0.542885422706604, -1.094770908355713, 0.5632466077804565]} +{"t": 12.5158, "q": [-0.3466421663761139, 0.022367144003510475, -0.012467854656279087, 0.6130298376083374, -0.2828904092311859, 0.00011509208707138896, -0.3033498227596283, 0.01563808135688305, -0.008155664429068565, 0.599837601184845, -0.3397912383079529, -0.000690481043420732, 0.0023435817565768957, -0.11779731512069702, -0.017971601337194443, 0.008077368140220642, 0.3610607385635376, -0.1491796374320984, 1.2413140535354614, 0.10892461985349655, -0.19651731848716736, -0.38366299867630005, -0.5511544942855835, -0.717507541179657, -0.5331182479858398, -0.3000730276107788, 0.5457496047019958, -1.0815643072128296, 0.5605381727218628]} +{"t": 12.5325, "q": [-0.3479119539260864, 0.021889904513955116, -0.011811652220785618, 0.6132599711418152, -0.2827540636062622, -0.00010796100832521915, -0.30466222763061523, 0.015246064402163029, -0.007405718322843313, 0.5994881987571716, -0.33967849612236023, -0.000240795110585168, 0.0023703654296696186, -0.11956135928630829, -0.01917671412229538, 0.007957525551319122, 0.36114463210105896, -0.14901185035705566, 1.2413500547409058, 0.10892461985349655, -0.1964813768863678, -0.3813859820365906, -0.5560081005096436, -0.7250695824623108, -0.5314404964447021, -0.29496774077415466, 0.5460372567176819, -1.0659009218215942, 0.5584169626235962]} +{"t": 12.5493, "q": [-0.3493947982788086, 0.02136153355240822, -0.011356327682733536, 0.6136434674263, -0.2827126979827881, -0.00016548340499866754, -0.3060939311981201, 0.015041533857584, -0.006950393784791231, 0.5992496013641357, -0.33916574716567993, 0.0006703435210511088, 0.002397149335592985, -0.12155096232891083, -0.02046736143529415, 0.00782569870352745, 0.36125248670578003, -0.1489519327878952, 1.2413500547409058, 0.10898454487323761, -0.1964574009180069, -0.3791569173336029, -0.563438355922699, -0.7321522831916809, -0.5306974649429321, -0.28968268632888794, 0.5503755211830139, -1.0480923652648926, 0.5540666580200195]} +{"t": 12.566, "q": [-0.351005494594574, 0.020483756437897682, -0.010941178537905216, 0.6139672994613647, -0.28290265798568726, 0.0001800199825083837, -0.30735522508621216, 0.01510118879377842, -0.00672273151576519, 0.5989854335784912, -0.338888943195343, 0.0011475314386188984, 0.0022632302716374397, -0.12435103207826614, -0.022421041503548622, 0.007526093628257513, 0.36130040884017944, -0.14891597628593445, 1.2413380146026611, 0.10902049392461777, -0.19631358981132507, -0.3765323758125305, -0.5739485025405884, -0.74080491065979, -0.53459233045578, -0.28565600514411926, 0.5577698349952698, -1.0316740274429321, 0.5485539436340332]} +{"t": 12.5827, "q": [-0.3514145612716675, 0.019554845988750458, -0.010820651426911354, 0.6144189834594727, -0.2831462025642395, 0.000647973851300776, -0.30763643980026245, 0.015058577992022038, -0.006320974789559841, 0.598789393901825, -0.3385268449783325, 0.0018056747503578663, 0.0015936355339363217, -0.1273244470357895, -0.024541886523365974, 0.007490140851587057, 0.36151614785194397, -0.14884407818317413, 1.2413859367370605, 0.10906843096017838, -0.19624169170856476, -0.3744111657142639, -0.5874068140983582, -0.7504761815071106, -0.5420225262641907, -0.28351080417633057, 0.5649003982543945, -1.0186591148376465, 0.5438081622123718]} +{"t": 12.5995, "q": [-0.35161057114601135, 0.018881598487496376, -0.010619773529469967, 0.6150410771369934, -0.2836422026157379, 0.0014393724268302321, -0.3076023459434509, 0.014964834786951542, -0.005785298999398947, 0.5983462333679199, -0.3383885324001312, 0.002916647819802165, 0.0013927571708336473, -0.13067466020584106, -0.026967398822307587, 0.0087245162576437, 0.361887663602829, -0.14866431057453156, 1.2416975498199463, 0.10904446244239807, -0.19619375467300415, -0.3728412389755249, -0.6016560196876526, -0.761957049369812, -0.5509867668151855, -0.28216859698295593, 0.571060299873352, -1.0068906545639038, 0.541027843952179]} +{"t": 12.6162, "q": [-0.3520451784133911, 0.018148696050047874, -0.010673340409994125, 0.6155353784561157, -0.2840716540813446, 0.0022311750799417496, -0.3076108694076538, 0.014785869978368282, -0.005571028683334589, 0.5977497100830078, -0.3380262851715088, 0.003545683342963457, 0.001794514013454318, -0.13437089323997498, -0.02966705895960331, 0.010174606926739216, 0.3632059097290039, -0.14849653840065002, 1.2419612407684326, 0.10900851339101791, -0.19619375467300415, -0.37167876958847046, -0.6152581572532654, -0.7743846774101257, -0.5584409236907959, -0.2795560359954834, 0.5776276588439941, -0.9980582594871521, 0.5360663533210754]} +{"t": 12.633, "q": [-0.3530081808567047, 0.017867466434836388, -0.010793867520987988, 0.6162171363830566, -0.2842697501182556, 0.0026199696585536003, -0.307483047246933, 0.014794392511248589, -0.00579869095236063, 0.5967525839805603, -0.3374883234500885, 0.0043402668088674545, 0.0021962709724903107, -0.1375509649515152, -0.03199634701013565, 0.011217234656214714, 0.36432045698165894, -0.14817295968532562, 1.2419731616973877, 0.10902049392461777, -0.19621771574020386, -0.370516300201416, -0.6282370686531067, -0.784679114818573, -0.5631986856460571, -0.2779141962528229, 0.5874307751655579, -0.9892019033432007, 0.5287080407142639]} +{"t": 12.6497, "q": [-0.35465294122695923, 0.017867466434836388, -0.011034921742975712, 0.6174613237380981, -0.2845185101032257, 0.0030809668824076653, -0.3075767755508423, 0.01477734837681055, -0.006267406977713108, 0.5957384705543518, -0.336953341960907, 0.004894994664937258, 0.0028122980147600174, -0.14090174436569214, -0.03437809273600578, 0.012175972573459148, 0.3653510808944702, -0.1480291485786438, 1.2419731616973877, 0.10902049392461777, -0.1962297111749649, -0.3689942955970764, -0.6442000269889832, -0.793427586555481, -0.5670096278190613, -0.27504995465278625, 0.5972458720207214, -0.9802616834640503, 0.5197198987007141]} +{"t": 12.6664, "q": [-0.35689428448677063, 0.017893033102154732, -0.011798259802162647, 0.6193447113037109, -0.2847517728805542, 0.0034700871910899878, -0.30790063738822937, 0.014828480780124664, -0.006910218391567469, 0.5946305990219116, -0.33631283044815063, 0.00559366075322032, 0.003361365757882595, -0.14385086297988892, -0.036516446620225906, 0.012643357738852501, 0.3661060929298401, -0.14796923100948334, 1.2419971227645874, 0.10902049392461777, -0.19621771574020386, -0.3675801455974579, -0.6591323614120483, -0.8007259964942932, -0.5688073039054871, -0.2728928029537201, 0.6062220335006714, -0.970710277557373, 0.5128169655799866]} +{"t": 12.6831, "q": [-0.3598429262638092, 0.018157217651605606, -0.012963354587554932, 0.6222167015075684, -0.2854141294956207, 0.004529198631644249, -0.3084290027618408, 0.01483700331300497, -0.008169055916368961, 0.5933352708816528, -0.3358621299266815, 0.005690913647413254, 0.0037497307639569044, -0.14659422636032104, -0.03847280517220497, 0.012679310515522957, 0.3669809401035309, -0.14795725047588348, 1.2418413162231445, 0.10898454487323761, -0.19628962874412537, -0.36646562814712524, -0.6729022860527039, -0.8105530738830566, -0.5688073039054871, -0.2686743438243866, 0.6133646368980408, -0.959648847579956, 0.5052908658981323]} +{"t": 12.6999, "q": [-0.36413806676864624, 0.018864553421735764, -0.014289152808487415, 0.6260687112808228, -0.28649938106536865, 0.006019760388880968, -0.3094346225261688, 0.014930746518075466, -0.010084097273647785, 0.5922443866729736, -0.3359215557575226, 0.005277254618704319, 0.005196055397391319, -0.14917081594467163, -0.04036111384630203, 0.012871057726442814, 0.36798763275146484, -0.14789731800556183, 1.2416735887527466, 0.10898454487323761, -0.1965532749891281, -0.3654229938983917, -0.6869837045669556, -0.818067193031311, -0.5692027807235718, -0.2616395950317383, 0.6217655539512634, -0.9478083848953247, 0.4987355172634125]} +{"t": 12.7166, "q": [-0.36756396293640137, 0.01913726143538952, -0.015414072200655937, 0.6295371651649475, -0.287310928106308, 0.007330938242375851, -0.31039759516716003, 0.015084144659340382, -0.011905395425856113, 0.5921677350997925, -0.33596986532211304, 0.00510331429541111, 0.006039745174348354, -0.15147991478443146, -0.04184700548648834, 0.01356614287942648, 0.36921000480651855, -0.14776550233364105, 1.2417454719543457, 0.10898454487323761, -0.1965532749891281, -0.36469197273254395, -0.6998188495635986, -0.824047327041626, -0.5705569982528687, -0.2538498640060425, 0.6308855414390564, -0.9377296566963196, 0.4914610981941223]} +{"t": 12.7333, "q": [-0.37000128626823425, 0.019358836114406586, -0.01580243743956089, 0.6314802169799805, -0.287869930267334, 0.008231461979448795, -0.31176966428756714, 0.015263108536601067, -0.012561597861349583, 0.5922273397445679, -0.3358885645866394, 0.005247864406555891, 0.006695947609841824, -0.15453609824180603, -0.04353376477956772, 0.015351792797446251, 0.37045636773109436, -0.14760969579219818, 1.2418773174285889, 0.10890065133571625, -0.19656525552272797, -0.36399686336517334, -0.7134329080581665, -0.828757107257843, -0.5719830989837646, -0.2458324134349823, 0.6384236216545105, -0.927686870098114, 0.4824010133743286]} +{"t": 12.7501, "q": [-0.3715352714061737, 0.020270703360438347, -0.01581582799553871, 0.6320512294769287, -0.2882550358772278, 0.008843805640935898, -0.3128945827484131, 0.014947790652513504, -0.012360719963908195, 0.5919802188873291, -0.33552682399749756, 0.005891069304198027, 0.006923609878867865, -0.15723411738872528, -0.045428697019815445, 0.0177606213837862, 0.3711993992328644, -0.1474059671163559, 1.2423087358474731, 0.10886470228433609, -0.1965532749891281, -0.36312201619148254, -0.726543664932251, -0.8320288062095642, -0.5722947120666504, -0.23855799436569214, 0.6479151248931885, -0.9178118705749512, 0.4750187397003174]} +{"t": 12.7668, "q": [-0.3726857602596283, 0.02082464098930359, -0.01565512642264366, 0.6327841281890869, -0.28863587975502014, 0.009521222673356533, -0.31321844458580017, 0.014666561037302017, -0.011945570819079876, 0.5908893942832947, -0.3343014419078827, 0.0076884739100933075, 0.007124488707631826, -0.15899217128753662, -0.04670662805438042, 0.01979793980717659, 0.3712713122367859, -0.14669890701770782, 1.2424885034561157, 0.10882874578237534, -0.19654129445552826, -0.3617558181285858, -0.7390671968460083, -0.835252583026886, -0.5725583434104919, -0.22964172065258026, 0.6547581553459167, -0.9090154767036438, 0.46788811683654785]} +{"t": 12.7835, "q": [-0.3737851083278656, 0.020858729258179665, -0.015547990798950195, 0.6338152885437012, -0.2890912592411041, 0.010328326374292374, -0.3132099211215973, 0.014683605171740055, -0.011838436126708984, 0.5890145301818848, -0.33266887068748474, 0.009271047078073025, 0.007311975117772818, -0.1600213199853897, -0.047490544617176056, 0.021439779549837112, 0.3711394667625427, -0.1456323117017746, 1.2425005435943604, 0.10880477726459503, -0.1967090666294098, -0.35950279235839844, -0.7508836388587952, -0.8392552733421326, -0.5725942850112915, -0.220917209982872, 0.6621883511543274, -0.8975346088409424, 0.4616323709487915]} +{"t": 12.8005, "q": [-0.37495264410972595, 0.021054737269878387, -0.0155345993116498, 0.6346675157546997, -0.2893688976764679, 0.010623198002576828, -0.3132013976573944, 0.014905179850757122, -0.011905395425856113, 0.5864579081535339, -0.3302295506000519, 0.011085400357842445, 0.00709770480170846, -0.1604367345571518, -0.04802741855382919, 0.02292582206428051, 0.370887815952301, -0.14463761448860168, 1.2425364255905151, 0.10882874578237534, -0.1968528777360916, -0.35717785358428955, -0.7632873058319092, -0.8444564342498779, -0.5736129283905029, -0.21346302330493927, 0.6692710518836975, -0.8898047804832458, 0.4559877812862396]} +{"t": 12.8173, "q": [-0.37674227356910706, 0.021455276757478714, -0.015574774704873562, 0.635391891002655, -0.2895306944847107, 0.010644032619893551, -0.31322693824768066, 0.015211976133286953, -0.01193217933177948, 0.5833984613418579, -0.3286356031894684, 0.009957930073142052, 0.006870042532682419, -0.16041722893714905, -0.048323024064302444, 0.024040356278419495, 0.3707919418811798, -0.14340323209762573, 1.2424885034561157, 0.10884073376655579, -0.19691281020641327, -0.3549967110157013, -0.7751396894454956, -0.8520664572715759, -0.5769086480140686, -0.20488230884075165, 0.673429548740387, -0.8803971409797668, 0.44999566674232483]} +{"t": 12.834, "q": [-0.3789580166339874, 0.02155754156410694, -0.01565512642264366, 0.6365509033203125, -0.2896093726158142, 0.010766488499939442, -0.31418994069099426, 0.015518772415816784, -0.011945570819079876, 0.5815662145614624, -0.32662588357925415, 0.01103588379919529, 0.006267406977713108, -0.16048450767993927, -0.04834335297346115, 0.024639567360281944, 0.3707919418811798, -0.1423126757144928, 1.2425124645233154, 0.10882874578237534, -0.19698470830917358, -0.35348671674728394, -0.7862730622291565, -0.8591970205307007, -0.5809113383293152, -0.1985546499490738, 0.6786187291145325, -0.8719362616539001, 0.4431886374950409]} +{"t": 12.851, "q": [-0.38191521167755127, 0.022171134129166603, -0.015708694234490395, 0.6392524242401123, -0.2902636229991913, 0.011803850531578064, -0.3158176839351654, 0.01575739122927189, -0.01193217933177948, 0.5811997652053833, -0.3253908157348633, 0.011793861165642738, 0.005651379935443401, -0.16058164834976196, -0.04836622253060341, 0.02539457380771637, 0.37080392241477966, -0.1411382257938385, 1.2424885034561157, 0.10882874578237534, -0.19702066481113434, -0.3523242473602295, -0.7985089421272278, -0.8654887676239014, -0.584650456905365, -0.19124425947666168, 0.6842153668403625, -0.8633435964584351, 0.4366692006587982]} +{"t": 12.8678, "q": [-0.3850342929363251, 0.022665416821837425, -0.015561383217573166, 0.642354428768158, -0.2916581332683563, 0.011926969513297081, -0.3174198269844055, 0.01587670110166073, -0.01193217933177948, 0.5813531279563904, -0.32508131861686707, 0.012182995676994324, 0.005383542273193598, -0.1605890542268753, -0.04836197569966316, 0.02551441639661789, 0.3707919418811798, -0.14043115079402924, 1.24252450466156, 0.10882874578237534, -0.19692479074001312, -0.3515931963920593, -0.8104692101478577, -0.8680413961410522, -0.5895400047302246, -0.185743510723114, 0.6917534470558167, -0.854762852191925, 0.43134820461273193]} +{"t": 12.8845, "q": [-0.38687506318092346, 0.022963691502809525, -0.015574774704873562, 0.6449877619743347, -0.2944182753562927, 0.010414266027510166, -0.3176073133945465, 0.015987489372491837, -0.012226800434291363, 0.5811741948127747, -0.3248783051967621, 0.012529582716524601, 0.005303190555423498, -0.1605890542268753, -0.04836197569966316, 0.02502306178212166, 0.37073200941085815, -0.13983194530010223, 1.242452621459961, 0.10885271430015564, -0.19696074724197388, -0.35076630115509033, -0.8226331472396851, -0.8680054545402527, -0.5951725840568542, -0.18311895430088043, 0.6973021626472473, -0.8485550284385681, 0.42527222633361816]} +{"t": 12.9013, "q": [-0.38811078667640686, 0.023202311247587204, -0.015467639081180096, 0.6470842361450195, -0.29563769698143005, 0.012028605677187443, -0.3175561726093292, 0.01613236404955387, -0.012574990279972553, 0.5811571478843689, -0.32493165135383606, 0.012522825971245766, 0.005236231256276369, -0.16061891615390778, -0.048364512622356415, 0.024232102558016777, 0.37077993154525757, -0.13970011472702026, 1.2424765825271606, 0.10886470228433609, -0.19696074724197388, -0.3499513566493988, -0.8345574736595154, -0.8679335713386536, -0.5996546745300293, -0.18157300353050232, 0.7012090086936951, -0.8422753214836121, 0.420166939496994]} +{"t": 12.918, "q": [-0.38898003101348877, 0.023338664323091507, -0.014918571338057518, 0.6489591002464294, -0.29679492115974426, 0.013418909162282944, -0.31741130352020264, 0.015987489372491837, -0.012561597861349583, 0.5811571478843689, -0.3249606490135193, 0.012559406459331512, 0.005972785409539938, -0.16077660024166107, -0.048490095883607864, 0.023309318348765373, 0.3706960678100586, -0.1396401971578598, 1.2423806190490723, 0.10885271430015564, -0.19691281020641327, -0.34896865487098694, -0.8456548452377319, -0.866866946220398, -0.6024110317230225, -0.18153704702854156, 0.7069254517555237, -0.8358158469200134, 0.41341981291770935]} +{"t": 12.9347, "q": [-0.3900282680988312, 0.023031868040561676, -0.01486500445753336, 0.6502629518508911, -0.2976410686969757, 0.014572170563042164, -0.3174283504486084, 0.015467639081180096, -0.012561597861349583, 0.5809952020645142, -0.3249977231025696, 0.012581530027091503, 0.007499461527913809, -0.16084425151348114, -0.048549503087997437, 0.022530343383550644, 0.3706720769405365, -0.1396401971578598, 1.2419731616973877, 0.10890065133571625, -0.19699668884277344, -0.34789007902145386, -0.8528094291687012, -0.8677058219909668, -0.6026507616043091, -0.1816568821668625, 0.7123783230781555, -0.8292365074157715, 0.4064689576625824]} +{"t": 12.9515, "q": [-0.39109352231025696, 0.022682461887598038, -0.014623950235545635, 0.6511492729187012, -0.29825907945632935, 0.015647148713469505, -0.31762436032295227, 0.01483700331300497, -0.01252142246812582, 0.5806372761726379, -0.3250024616718292, 0.012675965204834938, 0.008262800052762032, -0.16081422567367554, -0.04852743446826935, 0.022853918373584747, 0.37038445472717285, -0.1396401971578598, 1.241721510887146, 0.10890065133571625, -0.19709256291389465, -0.34682348370552063, -0.8569080829620361, -0.8726313710212708, -0.6014522910118103, -0.18183664977550507, 0.7161054015159607, -0.8228848576545715, 0.39963796734809875]} +{"t": 12.9682, "q": [-0.3917582333087921, 0.022494975477457047, -0.014141841791570187, 0.6517287492752075, -0.29877758026123047, 0.016635876148939133, -0.3177521824836731, 0.01453020703047514, -0.012213408946990967, 0.5798532366752625, -0.3248439133167267, 0.012914062477648258, 0.007901218719780445, -0.16076946258544922, -0.04852360859513283, 0.02479536272585392, 0.37045636773109436, -0.1396401971578598, 1.2421410083770752, 0.10890065133571625, -0.19711653888225555, -0.3461763262748718, -0.8622889518737793, -0.8840882778167725, -0.5980967283248901, -0.1856476366519928, 0.7193531394004822, -0.8146756291389465, 0.3925912380218506]} +{"t": 12.985, "q": [-0.3927638530731201, 0.0226995050907135, -0.013940962962806225, 0.6528792381286621, -0.29935410618782043, 0.017551828175783157, -0.31795671582221985, 0.014768825843930244, -0.012173233553767204, 0.5788561701774597, -0.32443374395370483, 0.0135999396443367, 0.007378934416919947, -0.16080673038959503, -0.048521921038627625, 0.027060380205512047, 0.37052828073501587, -0.13958026468753815, 1.2426203489303589, 0.10892461985349655, -0.19692479074001312, -0.34586474299430847, -0.8689881563186646, -0.8966956734657288, -0.5934348702430725, -0.19034545123577118, 0.7217499613761902, -0.8074371814727783, 0.38541269302368164]} +{"t": 13.0017, "q": [-0.3942893147468567, 0.023261966183781624, -0.014302544295787811, 0.6546433568000793, -0.29982292652130127, 0.018207861110568047, -0.3181612491607666, 0.015561383217573166, -0.012628557160496712, 0.5779101848602295, -0.3241806626319885, 0.013829890638589859, 0.006267406977713108, -0.1607993096113205, -0.04852616414427757, 0.029349368065595627, 0.3706001937389374, -0.13952034711837769, 1.2427641153335571, 0.1089605763554573, -0.19691281020641327, -0.34562504291534424, -0.8761786818504333, -0.9081405997276306, -0.5894560813903809, -0.1955106556415558, 0.7271788120269775, -0.7999230623245239, 0.3764365017414093]} +{"t": 13.0185, "q": [-0.39647096395492554, 0.02383294701576233, -0.015012315474450588, 0.6570380330085754, -0.3004878759384155, 0.01885569468140602, -0.3189026713371277, 0.016226107254624367, -0.013432071544229984, 0.5775437355041504, -0.32411959767341614, 0.0139091731980443, 0.005678163841366768, -0.1608588844537735, -0.0485215038061142, 0.031027158722281456, 0.37058818340301514, -0.13950836658477783, 1.2430038452148438, 0.10894858837127686, -0.19690081477165222, -0.3454093337059021, -0.8841601610183716, -0.9196454882621765, -0.5877783298492432, -0.20343221724033356, 0.7329432368278503, -0.7893889546394348, 0.3650994300842285]} +{"t": 13.0355, "q": [-0.39871227741241455, 0.024046000093221664, -0.01628454588353634, 0.6598333120346069, -0.29993194341659546, 0.019597413018345833, -0.31969523429870605, 0.016873788088560104, -0.01446324773132801, 0.5775266885757446, -0.3220106065273285, 0.016982171684503555, 0.005504068918526173, -0.16094034910202026, -0.04846510291099548, 0.03169827535748482, 0.3706001937389374, -0.13949638605117798, 1.2433034181594849, 0.108936607837677, -0.19691281020641327, -0.34516966342926025, -0.8927648663520813, -0.9316297173500061, -0.5870952010154724, -0.2115814983844757, 0.7375691533088684, -0.780197024345398, 0.35470908880233765]} +{"t": 13.0524, "q": [-0.40104734897613525, 0.024463582783937454, -0.017248760908842087, 0.6631143093109131, -0.2997484505176544, 0.018555816262960434, -0.32065823674201965, 0.017598168924450874, -0.015280152671039104, 0.5776545405387878, -0.32080188393592834, 0.017812812700867653, 0.005490677431225777, -0.16094768047332764, -0.048451103270053864, 0.032045818865299225, 0.3705402612686157, -0.13938851654529572, 1.243423342704773, 0.10892461985349655, -0.19691281020641327, -0.3448580801486969, -0.9016691446304321, -0.9459628462791443, -0.5867836475372314, -0.2214205414056778, 0.7421591281890869, -0.7696629166603088, 0.34445059299468994]} +{"t": 13.0693, "q": [-0.4018995761871338, 0.024608459323644638, -0.017771044746041298, 0.6653215289115906, -0.30011311173439026, 0.017308393493294716, -0.3206411898136139, 0.018390724435448647, -0.015427463687956333, 0.5778420567512512, -0.31967800855636597, 0.015863563865423203, 0.006160271819680929, -0.16116996109485626, -0.048324115574359894, 0.03278883919119835, 0.3705402612686157, -0.13887320458889008, 1.243375301361084, 0.10887668281793594, -0.19700868427753448, -0.3444026708602905, -0.9108490347862244, -0.9599124789237976, -0.5852736234664917, -0.2305525243282318, 0.7483429312705994, -0.7605189085006714, 0.3337007462978363]} +{"t": 13.086, "q": [-0.4019506871700287, 0.024668114259839058, -0.01798531599342823, 0.6660629510879517, -0.3009432852268219, 0.016970554366707802, -0.3203599750995636, 0.018671954050660133, -0.015521206893026829, 0.5779016613960266, -0.3196456730365753, 0.015347769483923912, 0.006347758695483208, -0.1615852266550064, -0.048126183450222015, 0.034023214131593704, 0.37056422233581543, -0.1375429481267929, 1.2434712648391724, 0.10886470228433609, -0.19704462587833405, -0.3439352810382843, -0.918794572353363, -0.971764862537384, -0.5832482576370239, -0.2388935387134552, 0.7553178071975708, -0.750008761882782, 0.321464866399765]} +{"t": 13.1028, "q": [-0.40191659331321716, 0.024727769196033478, -0.0179987084120512, 0.666395366191864, -0.30159100890159607, 0.01680755987763405, -0.32011282444000244, 0.018697520717978477, -0.0155345993116498, 0.5779016613960266, -0.3198026120662689, 0.015349253080785275, 0.006120096426457167, -0.16171857714653015, -0.04805002734065056, 0.035173699259757996, 0.3705522418022156, -0.13554158806800842, 1.2434592247009277, 0.1088886708021164, -0.19706860184669495, -0.3436596393585205, -0.925661563873291, -0.9822990298271179, -0.5806716680526733, -0.24536502361297607, 0.762412428855896, -0.7406970262527466, 0.30934879183769226]} +{"t": 13.1196, "q": [-0.4018910527229309, 0.024651071056723595, -0.01782461255788803, 0.6666936278343201, -0.30208510160446167, 0.016681652516126633, -0.3201298713684082, 0.0186634324491024, -0.0153738958761096, 0.5779016613960266, -0.32001397013664246, 0.01546018198132515, 0.005959393456578255, -0.16167353093624115, -0.048016928136348724, 0.035712990909814835, 0.37040844559669495, -0.13368403911590576, 1.2436389923095703, 0.10886470228433609, -0.1970566213130951, -0.3435398042201996, -0.932013213634491, -0.9919703006744385, -0.5774958729743958, -0.25313079357147217, 0.7713526487350464, -0.7313253879547119, 0.2970290184020996]} +{"t": 13.1363, "q": [-0.401882529258728, 0.02449767291545868, -0.017596950754523277, 0.6667532920837402, -0.30236339569091797, 0.01673074997961521, -0.3201724886894226, 0.018637865781784058, -0.015280152671039104, 0.5778931975364685, -0.3201391398906708, 0.015650160610675812, 0.005932609550654888, -0.16162100434303284, -0.04797831550240517, 0.03585680201649666, 0.37015676498413086, -0.13200624287128448, 1.2437587976455688, 0.10886470228433609, -0.19699668884277344, -0.3434918522834778, -0.9356923699378967, -1.0013298988342285, -0.5746915340423584, -0.2602134943008423, 0.7789267301559448, -0.7235236167907715, 0.28428977727890015]} +{"t": 13.1531, "q": [-0.4017632007598877, 0.024233486503362656, -0.017409464344382286, 0.6670089364051819, -0.3025253415107727, 0.016737064346671104, -0.32011282444000244, 0.0186634324491024, -0.015280152671039104, 0.5779101848602295, -0.3202350437641144, 0.01578901894390583, 0.0056112040765583515, -0.16153883934020996, -0.04795662313699722, 0.03603656589984894, 0.37010884284973145, -0.13091567158699036, 1.243950605392456, 0.10890065133571625, -0.19699668884277344, -0.3434918522834778, -0.9367589354515076, -1.0099825859069824, -0.5703772306442261, -0.2669486105442047, 0.7860333323478699, -0.7175914645195007, 0.2736477851867676]} +{"t": 13.1701, "q": [-0.4016183316707611, 0.023969300091266632, -0.017195194959640503, 0.6673412919044495, -0.3026498854160309, 0.01669292338192463, -0.3198230564594269, 0.018688999116420746, -0.015266761183738708, 0.577944278717041, -0.32030189037323, 0.015905823558568954, 0.005450501572340727, -0.1615162342786789, -0.04793032258749008, 0.03646799921989441, 0.37015676498413086, -0.12982511520385742, 1.2442622184753418, 0.10892461985349655, -0.19698470830917358, -0.34347987174987793, -0.9365072846412659, -1.0165259838104248, -0.5658112168312073, -0.2742590010166168, 0.7901918888092041, -0.7102091312408447, 0.26384469866752625]} +{"t": 13.1868, "q": [-0.4016183316707611, 0.02377329207956791, -0.01698092371225357, 0.6678611636161804, -0.3030151426792145, 0.016401216387748718, -0.3196867108345032, 0.018859442323446274, -0.015266761183738708, 0.5779357552528381, -0.32040104269981384, 0.015906771644949913, 0.005035352893173695, -0.16142606735229492, -0.047854382544755936, 0.03663577511906624, 0.3701927065849304, -0.12877050042152405, 1.2448853254318237, 0.10890065133571625, -0.19696074724197388, -0.3434678912162781, -0.9350811839103699, -1.023105263710022, -0.5610894560813904, -0.2812098562717438, 0.7936193346977234, -0.7031863927841187, 0.25490447878837585]} +{"t": 13.2035, "q": [-0.40160128474235535, 0.02390112355351448, -0.016940748319029808, 0.6684065461158752, -0.30365845561027527, 0.01589793711900711, -0.31970375776290894, 0.0189617071300745, -0.014958747662603855, 0.5779272317886353, -0.3204996883869171, 0.015835115686058998, 0.003816690295934677, -0.16126854717731476, -0.047748297452926636, 0.036791570484638214, 0.3702766001224518, -0.1279555708169937, 1.2455685138702393, 0.1088886708021164, -0.19696074724197388, -0.3434559106826782, -0.9331397414207458, -1.0283184051513672, -0.5558643341064453, -0.2878730893135071, 0.7979456782341003, -0.698153018951416, 0.24508939683437347]} +{"t": 13.2204, "q": [-0.40159276127815247, 0.024173831567168236, -0.016940748319029808, 0.669096827507019, -0.30430957674980164, 0.015380236320197582, -0.31970375776290894, 0.01920032687485218, -0.014610557816922665, 0.5779613256454468, -0.3205569088459015, 0.015748530626296997, 0.0025980276986956596, -0.16086320579051971, -0.04746031016111374, 0.03683950752019882, 0.3702766001224518, -0.1273563653230667, 1.2463234663009644, 0.10890065133571625, -0.19693677127361298, -0.34344393014907837, -0.9293407201766968, -1.0309549570083618, -0.5509867668151855, -0.2946321666240692, 0.8000549077987671, -0.6943300366401672, 0.23723971843719482]} +{"t": 13.2372, "q": [-0.40149903297424316, 0.02438688464462757, -0.01679343730211258, 0.6694121956825256, -0.3048208951950073, 0.015175139531493187, -0.3197548985481262, 0.019686086103320122, -0.014302544295787811, 0.5780380368232727, -0.32059794664382935, 0.015705356374382973, 0.0017543383873999119, -0.16035258769989014, -0.04708557203412056, 0.03664775937795639, 0.3702166974544525, -0.1270088255405426, 1.2469466924667358, 0.10890065133571625, -0.19691281020641327, -0.3434319496154785, -0.9255536794662476, -1.0325847864151, -0.5470559000968933, -0.3016429543495178, 0.8020322918891907, -0.690830647945404, 0.23081618547439575]} +{"t": 13.2539, "q": [-0.4014478921890259, 0.024395406246185303, -0.01661934331059456, 0.6693610548973083, -0.3049694001674652, 0.015217904932796955, -0.3197548985481262, 0.0202229805290699, -0.014208801090717316, 0.5781147480010986, -0.3208535313606262, 0.015635203570127487, 0.0012588382232934237, -0.15972937643527985, -0.046638090163469315, 0.03645601496100426, 0.3701208233833313, -0.12688897550106049, 1.2476177215576172, 0.108936607837677, -0.19688883423805237, -0.3434319496154785, -0.9214431047439575, -1.0338431596755981, -0.5441437363624573, -0.30950459837913513, 0.8039976954460144, -0.6881581544876099, 0.22382937371730804]} +{"t": 13.2706, "q": [-0.4014734625816345, 0.02436983957886696, -0.016538990661501884, 0.6693610548973083, -0.3051717281341553, 0.015499358996748924, -0.31974637508392334, 0.020418988540768623, -0.014235584996640682, 0.5781317949295044, -0.3210519552230835, 0.015666134655475616, 0.0013659733813256025, -0.15891823172569275, -0.04604323208332062, 0.03637212514877319, 0.36980921030044556, -0.12685301899909973, 1.2484806776046753, 0.1089605763554573, -0.19681693613529205, -0.34344393014907837, -0.9175242781639099, -1.035137414932251, -0.5421663522720337, -0.3177976906299591, 0.8058193325996399, -0.6867919564247131, 0.217501699924469]} +{"t": 13.2874, "q": [-0.40146493911743164, 0.024284619837999344, -0.016498815268278122, 0.6693695783615112, -0.3053410053253174, 0.015708545222878456, -0.3196867108345032, 0.020291157066822052, -0.014275760389864445, 0.578157365322113, -0.3212709128856659, 0.015675505623221397, 0.001794514013454318, -0.15776263177394867, -0.04534192383289337, 0.03633617237210274, 0.36941373348236084, -0.12682905793190002, 1.248744249343872, 0.10898454487323761, -0.19681693613529205, -0.3434559106826782, -0.9151394367218018, -1.0367913246154785, -0.5394219756126404, -0.3261866569519043, 0.8067061305046082, -0.6863126158714294, 0.21115006506443024]} +{"t": 13.3041, "q": [-0.401439368724823, 0.024276096373796463, -0.016391679644584656, 0.669318437576294, -0.3054771423339844, 0.01574411243200302, -0.3196781873703003, 0.02027411200106144, -0.014275760389864445, 0.578157365322113, -0.3214857876300812, 0.015692077577114105, 0.001941824913956225, -0.15645812451839447, -0.044677089899778366, 0.03622831404209137, 0.3687666058540344, -0.12681707739830017, 1.2487802505493164, 0.10903248190879822, -0.19681693613529205, -0.3434678912162781, -0.9137971997261047, -1.039247989654541, -0.5357188582420349, -0.33378463983535767, 0.8068379759788513, -0.6859171390533447, 0.20500215888023376]} +{"t": 13.3212, "q": [-0.40145641565322876, 0.024250531569123268, -0.01631132885813713, 0.6692587733268738, -0.30553489923477173, 0.015787312760949135, -0.31969523429870605, 0.020265590399503708, -0.014289152808487415, 0.5781317949295044, -0.32161396741867065, 0.01571507751941681, 0.002156095113605261, -0.15509134531021118, -0.04383310303092003, 0.03621632978320122, 0.36793968081474304, -0.12682905793190002, 1.249019980430603, 0.10900851339101791, -0.19681693613529205, -0.3434918522834778, -0.9131619930267334, -1.0429991483688354, -0.5320876240730286, -0.3407354950904846, 0.8068140149116516, -0.6856294870376587, 0.19990886747837067]} +{"t": 13.3381, "q": [-0.4014734625816345, 0.024224964901804924, -0.01631132885813713, 0.6692332029342651, -0.30560508370399475, 0.01585213467478752, -0.31969523429870605, 0.020257068797945976, -0.014315936714410782, 0.5781658887863159, -0.32176730036735535, 0.015796419233083725, 0.002276622224599123, -0.15376804769039154, -0.042896024882793427, 0.03621632978320122, 0.36706483364105225, -0.12682905793190002, 1.2491158246994019, 0.10904446244239807, -0.1968289166688919, -0.3434918522834778, -0.91340172290802, -1.0467381477355957, -0.5281568169593811, -0.34731483459472656, 0.8067420721054077, -0.685234010219574, 0.19603796303272247]} +{"t": 13.3548, "q": [-0.4014819860458374, 0.024224964901804924, -0.01631132885813713, 0.6691650152206421, -0.3057824969291687, 0.015916481614112854, -0.31970375776290894, 0.020231502130627632, -0.014315936714410782, 0.5781488418579102, -0.32199734449386597, 0.015609855763614178, 0.002356973709538579, -0.15276719629764557, -0.04214711859822273, 0.036204345524311066, 0.3660701513290405, -0.12675714492797852, 1.2491517066955566, 0.10902049392461777, -0.1968528777360916, -0.3434678912162781, -0.9131619930267334, -1.049170970916748, -0.5252086520195007, -0.35367846488952637, 0.806634247303009, -0.6847906112670898, 0.19314976036548615]} +{"t": 13.3716, "q": [-0.40155014395713806, 0.024233486503362656, -0.0163247212767601, 0.6691564917564392, -0.3059557378292084, 0.01594465598464012, -0.3197548985481262, 0.020205935463309288, -0.01436950359493494, 0.5781317949295044, -0.3221622705459595, 0.015567867085337639, 0.002356973709538579, -0.15199975669384003, -0.041587743908166885, 0.03624029830098152, 0.36501553654670715, -0.12642158567905426, 1.2492237091064453, 0.10900851339101791, -0.19687685370445251, -0.34341996908187866, -0.9118797183036804, -1.050297498703003, -0.5224403142929077, -0.36017391085624695, 0.806574285030365, -0.6843352317810059, 0.19114838540554047]} +{"t": 13.3884, "q": [-0.4015246033668518, 0.024233486503362656, -0.01629793643951416, 0.6691650152206421, -0.3062114715576172, 0.015929004177451134, -0.31973785161972046, 0.02028263546526432, -0.014356112107634544, 0.5781317949295044, -0.32231903076171875, 0.015540316700935364, 0.0022230546455830336, -0.15109632909297943, -0.04092080891132355, 0.036132439970970154, 0.3636493384838104, -0.12595421075820923, 1.249247670173645, 0.10894858837127686, -0.19690081477165222, -0.3432402014732361, -0.9092311859130859, -1.0509207248687744, -0.5193483829498291, -0.3666453957557678, 0.8063705563545227, -0.6843112707138062, 0.1898421049118042]} +{"t": 13.4051, "q": [-0.4015246033668518, 0.024216441437602043, -0.01628454588353634, 0.669173538684845, -0.306475430727005, 0.01589883677661419, -0.31978046894073486, 0.02027411200106144, -0.014302544295787811, 0.5781317949295044, -0.32244300842285156, 0.015585063956677914, 0.002169487066566944, -0.15020804107189178, -0.04027463123202324, 0.03645601496100426, 0.36257076263427734, -0.12533102929592133, 1.2492955923080444, 0.10890065133571625, -0.19696074724197388, -0.34274885058403015, -0.9050966501235962, -1.0521191358566284, -0.5171193480491638, -0.37243378162384033, 0.8063585758209229, -0.684323251247406, 0.18823622167110443]} +{"t": 13.4218, "q": [-0.4015160799026489, 0.024173831567168236, -0.016190802678465843, 0.669173538684845, -0.30665698647499084, 0.015984879806637764, -0.3197634220123291, 0.02027411200106144, -0.014302544295787811, 0.5781403183937073, -0.32257452607154846, 0.015600834041833878, 0.002089135814458132, -0.14934973418712616, -0.03966056555509567, 0.03664775937795639, 0.3616599440574646, -0.1243123710155487, 1.2493793964385986, 0.10887668281793594, -0.19696074724197388, -0.3422694802284241, -0.9003029465675354, -1.0533415079116821, -0.5159328579902649, -0.3771555423736572, 0.8062507510185242, -0.6843831539154053, 0.1853480339050293]} +{"t": 13.4386, "q": [-0.40149903297424316, 0.024114176630973816, -0.01615062542259693, 0.6691223978996277, -0.3066858649253845, 0.01599198579788208, -0.3197634220123291, 0.020248545333743095, -0.014302544295787811, 0.5781317949295044, -0.3226650655269623, 0.01563071832060814, 0.0020757438614964485, -0.14866431057453156, -0.0391630120575428, 0.03650394827127457, 0.361108660697937, -0.12352140992879868, 1.249403476715088, 0.1088886708021164, -0.19697272777557373, -0.34189796447753906, -0.8949819207191467, -1.0550792217254639, -0.5158609747886658, -0.3810504376888275, 0.8062267899513245, -0.6844310760498047, 0.18216022849082947]} +{"t": 13.4553, "q": [-0.40149903297424316, 0.024063043296337128, -0.01611045002937317, 0.6691053509712219, -0.30674365162849426, 0.01607859693467617, -0.3197634220123291, 0.020248545333743095, -0.014235584996640682, 0.5781488418579102, -0.3227352201938629, 0.015682201832532883, 0.0018748653819784522, -0.1479036957025528, -0.038620516657829285, 0.03627625107765198, 0.3607131838798523, -0.12322180718183517, 1.2494274377822876, 0.10890065133571625, -0.19696074724197388, -0.341418594121933, -0.8901642560958862, -1.0568768978118896, -0.5149261951446533, -0.3844060003757477, 0.8059630990028381, -0.6845030188560486, 0.17917615175247192]} +{"t": 13.4722, "q": [-0.4014905095100403, 0.02407156676054001, -0.016043491661548615, 0.6690372228622437, -0.3067684471607208, 0.016107454895973206, -0.31978899240493774, 0.020257068797945976, -0.01419540960341692, 0.5781403183937073, -0.3227475881576538, 0.015689576044678688, 0.001834689755924046, -0.14724834263324738, -0.03815494105219841, 0.03624029830098152, 0.36042556166648865, -0.12320981919765472, 1.249487280845642, 0.10892461985349655, -0.19690081477165222, -0.3407714366912842, -0.8859098553657532, -1.0591179132461548, -0.5138596296310425, -0.38673093914985657, 0.8057833313941956, -0.6845389604568481, 0.17607223987579346]} +{"t": 13.4889, "q": [-0.4014819860458374, 0.024063043296337128, -0.016030099242925644, 0.669011652469635, -0.3067684471607208, 0.016107454895973206, -0.319814532995224, 0.02027411200106144, -0.014168625697493553, 0.578157365322113, -0.32275986671447754, 0.015682432800531387, 0.001834689755924046, -0.14650936424732208, -0.03758106753230095, 0.03622831404209137, 0.36003008484840393, -0.12314990162849426, 1.2495712041854858, 0.108936607837677, -0.19687685370445251, -0.33938127756118774, -0.8817992806434631, -1.0622937679290771, -0.5130326747894287, -0.3886244595050812, 0.8057713508605957, -0.6845389604568481, 0.17362745106220245]} +{"t": 13.5056, "q": [-0.40149903297424316, 0.024046000093221664, -0.016030099242925644, 0.6689349412918091, -0.3067808151245117, 0.01611463539302349, -0.3198060393333435, 0.020316723734140396, -0.014182017184793949, 0.5781914591789246, -0.3227842152118683, 0.01563909649848938, 0.0019150411244481802, -0.1459064781665802, -0.03714435175061226, 0.03616839274764061, 0.35943087935447693, -0.12314990162849426, 1.2496311664581299, 0.10898454487323761, -0.19687685370445251, -0.3370683193206787, -0.8780242800712585, -1.0655653476715088, -0.5129607915878296, -0.3905419409275055, 0.805603563785553, -0.684550940990448, 0.1718178391456604]} +{"t": 13.5225, "q": [-0.4014734625816345, 0.02402043342590332, -0.016016706824302673, 0.6688582301139832, -0.30676841735839844, 0.01607850193977356, -0.319814532995224, 0.020316723734140396, -0.01419540960341692, 0.5782170295715332, -0.3228256404399872, 0.015697568655014038, 0.001901649171486497, -0.14543169736862183, -0.03680047765374184, 0.0360964871942997, 0.35872381925582886, -0.12318585067987442, 1.249703049659729, 0.10902049392461777, -0.19686487317085266, -0.33493512868881226, -0.8757472634315491, -1.0682258605957031, -0.5128409266471863, -0.3921358287334442, 0.8053998351097107, -0.6845629215240479, 0.17078720033168793]} +{"t": 13.5393, "q": [-0.40137970447540283, 0.023986345157027245, -0.01598992384970188, 0.6688156127929688, -0.30677253007888794, 0.01608571968972683, -0.3197975158691406, 0.02040194347500801, -0.014155233278870583, 0.5783022046089172, -0.32291561365127563, 0.01564033143222332, 0.001834689755924046, -0.1449718028306961, -0.03646793216466904, 0.036132439970970154, 0.35775309801101685, -0.12318585067987442, 1.2497749328613281, 0.10902049392461777, -0.19684089720249176, -0.33320939540863037, -0.8741294145584106, -1.0705268383026123, -0.5123016834259033, -0.39426901936531067, 0.8050882816314697, -0.684550940990448, 0.17009210586547852]} +{"t": 13.5561, "q": [-0.4013456106185913, 0.023986345157027245, -0.016016706824302673, 0.6687303781509399, -0.30676841735839844, 0.01607850193977356, -0.3198230564594269, 0.020418988540768623, -0.014168625697493553, 0.5784044861793518, -0.32300499081611633, 0.01549595594406128, 0.0017677302239462733, -0.14460234344005585, -0.0362008772790432, 0.03612045571208, 0.3568183183670044, -0.12316188216209412, 1.2498588562011719, 0.10902049392461777, -0.1968289166688919, -0.3319031298160553, -0.8728830218315125, -1.0733551979064941, -0.5114268064498901, -0.39758867025375366, 0.8050882816314697, -0.6845629215240479, 0.16961273550987244]} +{"t": 13.5728, "q": [-0.4013371169567108, 0.023986345157027245, -0.016056882217526436, 0.6686025857925415, -0.30676013231277466, 0.016049567610025406, -0.31984010338783264, 0.020436033606529236, -0.014208801090717316, 0.5785067677497864, -0.3230867385864258, 0.01543866004794836, 0.001941824913956225, -0.14437592029571533, -0.03601793199777603, 0.03612045571208, 0.35618317127227783, -0.12312593311071396, 1.2499666213989258, 0.10900851339101791, -0.19681693613529205, -0.330584853887558, -0.8715048432350159, -1.0765548944473267, -0.5105159878730774, -0.40189099311828613, 0.8048965334892273, -0.684550940990448, 0.16933710873126984]} +{"t": 13.5896, "q": [-0.4013371169567108, 0.023977823555469513, -0.01612384244799614, 0.6684662103652954, -0.30675601959228516, 0.016042347997426987, -0.31984010338783264, 0.0204530768096447, -0.014302544295787811, 0.5786346197128296, -0.3231893479824066, 0.015432348474860191, 0.002236446598544717, -0.14427024126052856, -0.03593190759420395, 0.036144424229860306, 0.35567981004714966, -0.12310196459293365, 1.2499666213989258, 0.10900851339101791, -0.19684089720249176, -0.32959017157554626, -0.8698869943618774, -1.0799225568771362, -0.5100486278533936, -0.4060135781764984, 0.8040816187858582, -0.6845629215240479, 0.16926519572734833]} +{"t": 13.6063, "q": [-0.4012944996356964, 0.02390112355351448, -0.016177410259842873, 0.6684406399726868, -0.30674776434898376, 0.016027910634875298, -0.3198230564594269, 0.020444555208086967, -0.01436950359493494, 0.5789414048194885, -0.32338201999664307, 0.01538335345685482, 0.0026783791836351156, -0.14423254132270813, -0.0359046570956707, 0.03612045571208, 0.3552963137626648, -0.12299410253763199, 1.2498947381973267, 0.10898454487323761, -0.19687685370445251, -0.32849958539009094, -0.8681972026824951, -1.0844045877456665, -0.5094494223594666, -0.4088418483734131, 0.802607536315918, -0.684550940990448, 0.16927717626094818]} +{"t": 13.6231, "q": [-0.401251882314682, 0.02379033714532852, -0.01628454588353634, 0.668423593044281, -0.30675187706947327, 0.016035130247473717, -0.31983157992362976, 0.02040194347500801, -0.014436463825404644, 0.5793249011039734, -0.3237018585205078, 0.015313743613660336, 0.002959609031677246, -0.14423254132270813, -0.0359046570956707, 0.036072518676519394, 0.35482895374298096, -0.12295815348625183, 1.2498828172683716, 0.10897255688905716, -0.19692479074001312, -0.32722926139831543, -0.8666632175445557, -1.0885272026062012, -0.5091617703437805, -0.41125068068504333, 0.8012772798538208, -0.6845629215240479, 0.1693970263004303]} +{"t": 13.6398, "q": [-0.4011666476726532, 0.023739203810691833, -0.016338111832737923, 0.6683468818664551, -0.30677250027656555, 0.016042273491621017, -0.31978046894073486, 0.020367855206131935, -0.014503423124551773, 0.5795549750328064, -0.32390284538269043, 0.015279343351721764, 0.0031470954418182373, -0.14423997700214386, -0.03590038791298866, 0.036072518676519394, 0.35440948605537415, -0.12286227941513062, 1.2499067783355713, 0.10898454487323761, -0.19694875180721283, -0.3259110152721405, -0.8655846118927002, -1.0916789770126343, -0.5090060234069824, -0.4139111638069153, 0.7986647486686707, -0.6845749020576477, 0.16950488090515137]} +{"t": 13.6565, "q": [-0.40104734897613525, 0.02365398220717907, -0.0163247212767601, 0.6682190895080566, -0.30679312348365784, 0.01602044515311718, -0.31978046894073486, 0.020316723734140396, -0.01453020703047514, 0.5797765851020813, -0.324115127325058, 0.015092557296156883, 0.003334582084789872, -0.1442473977804184, -0.035896118730306625, 0.03618037700653076, 0.3538941740989685, -0.12265854328870773, 1.2498828172683716, 0.1089605763554573, -0.19694875180721283, -0.324868381023407, -0.8647457361221313, -1.0940519571304321, -0.5089940428733826, -0.41648778319358826, 0.7968790531158447, -0.6845629215240479, 0.16962473094463348]} +{"t": 13.6733, "q": [-0.4009791612625122, 0.023585805669426918, -0.0163247212767601, 0.6681423783302307, -0.30678901076316833, 0.016027702018618584, -0.3197634220123291, 0.020308200269937515, -0.01453020703047514, 0.5799469947814941, -0.3242054581642151, 0.01509342435747385, 0.003361365757882595, -0.1442398577928543, -0.035890668630599976, 0.03624029830098152, 0.3533668518066406, -0.122442826628685, 1.2498828172683716, 0.10892461985349655, -0.19698470830917358, -0.32426917552948, -0.8641585111618042, -1.0957657098770142, -0.5090539455413818, -0.418597012758255, 0.7958244681358337, -0.6845749020576477, 0.16960075497627258]} +{"t": 13.69, "q": [-0.4008854329586029, 0.02346649579703808, -0.01629793643951416, 0.6679974794387817, -0.30680137872695923, 0.01602042466402054, -0.31978046894073486, 0.02021445706486702, -0.014490030705928802, 0.580100417137146, -0.32430362701416016, 0.0150362653657794, 0.0034283252898603678, -0.14423997700214386, -0.03590038791298866, 0.036252282559871674, 0.35300734639167786, -0.12227504700422287, 1.2498588562011719, 0.10890065133571625, -0.19697272777557373, -0.323861688375473, -0.8636192083358765, -1.0975632667541504, -0.5091018676757812, -0.4201429784297943, 0.7948657274246216, -0.6845749020576477, 0.16958877444267273]} +{"t": 13.707, "q": [-0.40068942308425903, 0.02334718592464924, -0.01629793643951416, 0.6677333116531372, -0.30678483843803406, 0.01599152944982052, -0.31974637508392334, 0.020171847194433212, -0.014490030705928802, 0.5801600813865662, -0.32435688376426697, 0.01501497346907854, 0.0034015413839370012, -0.14422501623630524, -0.03589921072125435, 0.03618037700653076, 0.3528755009174347, -0.12222710996866226, 1.2498947381973267, 0.1089126393198967, -0.19696074724197388, -0.32368195056915283, -0.8628402352333069, -1.0993130207061768, -0.5092576742172241, -0.42086201906204224, 0.7938110828399658, -0.6845629215240479, 0.16960075497627258]} +{"t": 13.7239, "q": [-0.4004678428173065, 0.023330142721533775, -0.016217585653066635, 0.6675969362258911, -0.30679309368133545, 0.016005968675017357, -0.31964409351348877, 0.020112192258238792, -0.01444985531270504, 0.5801685452461243, -0.3243938088417053, 0.01500806212425232, 0.003254230599850416, -0.14423254132270813, -0.0359046570956707, 0.03621632978320122, 0.3528275787830353, -0.12209528684616089, 1.2500265836715698, 0.10892461985349655, -0.19694875180721283, -0.3235141634941101, -0.861342191696167, -1.101398229598999, -0.5094374418258667, -0.42075416445732117, 0.791402280330658, -0.6832566261291504, 0.1696726679801941]} +{"t": 13.7406, "q": [-0.4003400206565857, 0.023330142721533775, -0.016204193234443665, 0.6675543189048767, -0.30678898096084595, 0.015998749062418938, -0.31950774788856506, 0.02010367065668106, -0.014409679919481277, 0.5801685452461243, -0.3243938088417053, 0.01500806212425232, 0.0029328251257538795, -0.1442473977804184, -0.035896118730306625, 0.036204345524311066, 0.3529234528541565, -0.12204734981060028, 1.2500386238098145, 0.108936607837677, -0.19693677127361298, -0.3233943283557892, -0.8582262992858887, -1.1039987802505493, -0.5096052289009094, -0.4206702709197998, 0.786620557308197, -0.6811354160308838, 0.1700681447982788]} +{"t": 13.7574, "q": [-0.40022069215774536, 0.023313097655773163, -0.01612384244799614, 0.6675288081169128, -0.30678901076316833, 0.016027702018618584, -0.3194566071033478, 0.020052537322044373, -0.014342720620334148, 0.5801770687103271, -0.32438963651657104, 0.015000765211880207, 0.0024105412885546684, -0.14428497850894928, -0.03591364622116089, 0.03637212514877319, 0.3528275787830353, -0.12202338129281998, 1.2500146627426147, 0.1089126393198967, -0.19691281020641327, -0.32329845428466797, -0.8534206748008728, -1.108121395111084, -0.5094853639602661, -0.4198912978172302, 0.7819826602935791, -0.6766173839569092, 0.17053551971912384]} +{"t": 13.7741, "q": [-0.400058776140213, 0.02330457605421543, -0.01593635603785515, 0.6674009561538696, -0.30678898096084595, 0.015998749062418938, -0.3193458318710327, 0.019992882385849953, -0.014155233278870583, 0.5800918936729431, -0.32438549399375916, 0.014993468299508095, 0.0018212978029623628, -0.14436708390712738, -0.03590555489063263, 0.03643204644322395, 0.3528275787830353, -0.12198743224143982, 1.2502063512802124, 0.10892461985349655, -0.19688883423805237, -0.32320258021354675, -0.846541702747345, -1.1132266521453857, -0.5087183713912964, -0.41267678141593933, 0.7743966579437256, -0.6672697067260742, 0.17143434286117554]} +{"t": 13.7908, "q": [-0.3999820947647095, 0.023279009386897087, -0.015735477209091187, 0.6674009561538696, -0.30680960416793823, 0.01600591093301773, -0.3193202614784241, 0.01990766078233719, -0.014007923193275928, 0.5799981355667114, -0.3243485689163208, 0.015000378713011742, 0.001312405802309513, -0.14467895030975342, -0.03573591262102127, 0.03640807792544365, 0.35280361771583557, -0.12196346372365952, 1.250230312347412, 0.108936607837677, -0.19690081477165222, -0.32310670614242554, -0.8369303345680237, -1.1208726167678833, -0.5059380531311035, -0.4016273319721222, 0.7653126120567322, -0.6538353562355042, 0.17192569375038147]} +{"t": 13.8076, "q": [-0.3999820947647095, 0.02305743470788002, -0.015561383217573166, 0.6674009561538696, -0.3068137466907501, 0.016042083501815796, -0.31937140226364136, 0.01974574103951454, -0.013766868971288204, 0.5799810886383057, -0.3242913782596588, 0.015043407678604126, 0.0006562029011547565, -0.14527276158332825, -0.035394273698329926, 0.036444030702114105, 0.35286352038383484, -0.12192750722169876, 1.250230312347412, 0.10894858837127686, -0.19691281020641327, -0.32305875420570374, -0.825928807258606, -1.130927324295044, -0.4991309940814972, -0.3880252540111542, 0.7536040544509888, -0.6383277773857117, 0.17202156782150269]} +{"t": 13.8246, "q": [-0.4000076651573181, 0.022844381630420685, -0.015360504388809204, 0.6673071980476379, -0.3068385422229767, 0.01607094146311283, -0.31937140226364136, 0.019566776230931282, -0.013579382561147213, 0.579725444316864, -0.3241976499557495, 0.015151415951550007, -6.695948104606941e-05, -0.14592672884464264, -0.0350966714322567, 0.036623790860176086, 0.3528755009174347, -0.12190353870391846, 1.2502902746200562, 0.10892461985349655, -0.19688883423805237, -0.3230228126049042, -0.8131896257400513, -1.1432591676712036, -0.48800963163375854, -0.37268543243408203, 0.7418235540390015, -0.62051922082901, 0.17197363078594208]} +{"t": 13.8413, "q": [-0.400016188621521, 0.022622806951403618, -0.01519980188459158, 0.6672901511192322, -0.3069005012512207, 0.01619374379515648, -0.3193543553352356, 0.019404856488108635, -0.013217801228165627, 0.5794271230697632, -0.3240794539451599, 0.015288244001567364, -0.0005758515326306224, -0.14703315496444702, -0.03455919772386551, 0.036731649190187454, 0.35305526852607727, -0.12174774706363678, 1.2503021955490112, 0.10890065133571625, -0.19691281020641327, -0.32299885153770447, -0.7964596152305603, -1.1594618558883667, -0.4748629331588745, -0.3547210693359375, 0.7272627353668213, -0.6007452607154846, 0.1721414178609848]} +{"t": 13.8581, "q": [-0.4000758230686188, 0.02246088720858097, -0.014891788363456726, 0.6672390103340149, -0.3069996237754822, 0.01636706106364727, -0.319439560174942, 0.019157715141773224, -0.013030314818024635, 0.5793078541755676, -0.32394930720329285, 0.0154758021235466, -0.0009508245857432485, -0.14867176115512848, -0.0336293950676918, 0.036683712154626846, 0.3535466194152832, -0.12150806188583374, 1.2502782344818115, 0.10892461985349655, -0.19691281020641327, -0.32292693853378296, -0.7776324152946472, -1.1787084341049194, -0.4590677320957184, -0.33523473143577576, 0.7106645703315735, -0.579497218132019, 0.17275260388851166]} +{"t": 13.8752, "q": [-0.40016958117485046, 0.0222648773342371, -0.014731084927916527, 0.6671538352966309, -0.30709460377693176, 0.0165331419557333, -0.31947365403175354, 0.01895318552851677, -0.01284282747656107, 0.5788987874984741, -0.3238682448863983, 0.015634752810001373, -0.0018079059664160013, -0.1507459133863449, -0.03244274854660034, 0.036803554743528366, 0.3543735444545746, -0.12101670354604721, 1.2503142356872559, 0.1089126393198967, -0.19698470830917358, -0.3228190839290619, -0.7584217190742493, -1.1993093490600586, -0.4405880570411682, -0.3140825629234314, 0.6944259405136108, -0.5601067543029785, 0.1729922890663147]} +{"t": 13.892, "q": [-0.4003741145133972, 0.02215409092605114, -0.014610557816922665, 0.6669066548347473, -0.30718129873275757, 0.016655849292874336, -0.31961002945899963, 0.01878274232149124, -0.012722301296889782, 0.5784385800361633, -0.32373809814453125, 0.015822311863303185, -0.002624811604619026, -0.1533430516719818, -0.03096139244735241, 0.03689942881464958, 0.3557756841182709, -0.1203935295343399, 1.2503021955490112, 0.1088886708021164, -0.19696074724197388, -0.3226992189884186, -0.7393068671226501, -1.2224628925323486, -0.42110171914100647, -0.2890954613685608, 0.6776120662689209, -0.537588357925415, 0.17280054092407227]} +{"t": 13.9088, "q": [-0.4005530774593353, 0.021941037848591805, -0.014597166329622269, 0.6665402054786682, -0.307210236787796, 0.016720877960324287, -0.31973785161972046, 0.01864638924598694, -0.012735692784190178, 0.5779613256454468, -0.3236689865589142, 0.015930568799376488, -0.003736338810995221, -0.15608522295951843, -0.0294015035033226, 0.03712712973356247, 0.3573935627937317, -0.11955463141202927, 1.2502902746200562, 0.10890065133571625, -0.19699668884277344, -0.32253146171569824, -0.7209829688072205, -1.2460118532180786, -0.4017232060432434, -0.2646236717700958, 0.6607023477554321, -0.5159568786621094, 0.17141036689281464]} +{"t": 13.9255, "q": [-0.4005189836025238, 0.021710939705371857, -0.014650734141469002, 0.6661737561225891, -0.30727630853652954, 0.01683642342686653, -0.3197634220123291, 0.018510034307837486, -0.012722301296889782, 0.5776801109313965, -0.32368144392967224, 0.0159524604678154, -0.005276407115161419, -0.1591039001941681, -0.027670975774526596, 0.03745070472359657, 0.35920318961143494, -0.11844009906053543, 1.2504940032958984, 0.1088886708021164, -0.19700868427753448, -0.32245954871177673, -0.7056910991668701, -1.2678351402282715, -0.3862156271934509, -0.2410626858472824, 0.6461414694786072, -0.4924437999725342, 0.16975654661655426]} +{"t": 13.9423, "q": [-0.4008342921733856, 0.02178763970732689, -0.01486500445753336, 0.6657817363739014, -0.3073175847530365, 0.01687968149781227, -0.31993386149406433, 0.01853560097515583, -0.012963354587554932, 0.5772795677185059, -0.3237387537956238, 0.015923967584967613, -0.006963785737752914, -0.16149909794330597, -0.026278721168637276, 0.03797800838947296, 0.36077311635017395, -0.11709786206483841, 1.2506377696990967, 0.10885271430015564, -0.19693677127361298, -0.32241159677505493, -0.6924605369567871, -1.2863267660140991, -0.37375202775001526, -0.22070148587226868, 0.636134684085846, -0.474563330411911, 0.1673237532377243]} +{"t": 13.9591, "q": [-0.40073204040527344, 0.02191547118127346, -0.01486500445753336, 0.6654664278030396, -0.3073299527168274, 0.016843415796756744, -0.32011282444000244, 0.01872308738529682, -0.013003530912101269, 0.5772199034690857, -0.3237796425819397, 0.01589530147612095, -0.009414502419531345, -0.16320739686489105, -0.025306230410933495, 0.039511989802122116, 0.36189964413642883, -0.11423363536596298, 1.2509373426437378, 0.10887668281793594, -0.19691281020641327, -0.3223996162414551, -0.682981014251709, -1.3022059202194214, -0.36369726061820984, -0.20173045992851257, 0.6266311407089233, -0.4574858248233795, 0.16254204511642456]} +{"t": 13.9759, "q": [-0.4007149934768677, 0.022120002657175064, -0.014985531568527222, 0.665364146232605, -0.3077174425125122, 0.016320236027240753, -0.32034292817115784, 0.01889353059232235, -0.013057098723948002, 0.5771262049674988, -0.3239601254463196, 0.015867965295910835, -0.011115273460745811, -0.16417112946510315, -0.02474452555179596, 0.04038684070110321, 0.36224716901779175, -0.11229219287633896, 1.2513808012008667, 0.10887668281793594, -0.19686487317085266, -0.32237565517425537, -0.6779116988182068, -1.3142380714416504, -0.35795682668685913, -0.18681010603904724, 0.6226643919944763, -0.44497427344322205, 0.1574127972126007]} +{"t": 13.9927, "q": [-0.40072351694107056, 0.022171134129166603, -0.015320328995585442, 0.6653556227684021, -0.30817389488220215, 0.01604173704981804, -0.3204196095466614, 0.019183281809091568, -0.013244585134088993, 0.5770580172538757, -0.3244676887989044, 0.01562587358057499, -0.012293760664761066, -0.16433916985988617, -0.02458193153142929, 0.04067445918917656, 0.3621752858161926, -0.11067432165145874, 1.2520159482955933, 0.10890065133571625, -0.19681693613529205, -0.3223636746406555, -0.677228569984436, -1.323382019996643, -0.35470908880233765, -0.1747659593820572, 0.6206870079040527, -0.4339727759361267, 0.15025821328163147]} +{"t": 14.0094, "q": [-0.40045079588890076, 0.02214556746184826, -0.015561383217573166, 0.6650999784469604, -0.30856409668922424, 0.015734689310193062, -0.3202747404575348, 0.019183281809091568, -0.013552598655223846, 0.5771772861480713, -0.32561829686164856, 0.015135739929974079, -0.012668733485043049, -0.1643165946006775, -0.0245654433965683, 0.04073438048362732, 0.3619595468044281, -0.10922423005104065, 1.2526750564575195, 0.1089126393198967, -0.19681693613529205, -0.32237565517425537, -0.6778637170791626, -1.331004023551941, -0.3536904454231262, -0.16468721628189087, 0.6193327903747559, -0.4240138828754425, 0.14490126073360443]} +{"t": 14.0262, "q": [-0.40004172921180725, 0.02215409092605114, -0.01577565260231495, 0.6650062203407288, -0.3090490698814392, 0.01569523476064205, -0.3199509084224701, 0.019166236743330956, -0.013900787569582462, 0.5775778293609619, -0.3269160985946655, 0.014785878360271454, -0.012829435989260674, -0.1642492264509201, -0.024535253643989563, 0.04081827029585838, 0.3618277311325073, -0.10818160325288773, 1.2536938190460205, 0.10894858837127686, -0.19679296016693115, -0.32237565517425537, -0.6787865161895752, -1.3394649028778076, -0.35353463888168335, -0.1548961102962494, 0.6181942820549011, -0.41514554619789124, 0.1389451026916504]} +{"t": 14.0429, "q": [-0.3996497392654419, 0.02216261252760887, -0.01613723486661911, 0.6648784279823303, -0.30973777174949646, 0.01534268818795681, -0.31961002945899963, 0.019217370077967644, -0.014289152808487415, 0.5780550837516785, -0.3283247947692871, 0.014670352451503277, -0.012695517390966415, -0.16419638693332672, -0.024487148970365524, 0.040950097143650055, 0.3617078959941864, -0.10705508291721344, 1.254724383354187, 0.10898454487323761, -0.19674502313137054, -0.32241159677505493, -0.6796853542327881, -1.347722053527832, -0.35353463888168335, -0.14472150802612305, 0.6157734394073486, -0.40690040588378906, 0.1335522085428238]} +{"t": 14.0596, "q": [-0.3990020453929901, 0.02220522239804268, -0.016565775498747826, 0.6648613810539246, -0.31050047278404236, 0.014583701267838478, -0.31906458735466003, 0.01931111328303814, -0.014731084927916527, 0.5786431431770325, -0.32963940501213074, 0.014517039060592651, -0.012615165673196316, -0.16415859758853912, -0.024450035765767097, 0.0409141443669796, 0.3615401089191437, -0.10596451908349991, 1.2561146020889282, 0.10903248190879822, -0.1967330425977707, -0.3223996162414551, -0.6796973347663879, -1.3572734594345093, -0.35238415002822876, -0.13443903625011444, 0.6113752722740173, -0.3952876925468445, 0.13012471795082092]} +{"t": 14.0764, "q": [-0.39839696884155273, 0.022358620539307594, -0.0171282347291708, 0.6648784279823303, -0.3110736608505249, 0.014355077408254147, -0.31841692328453064, 0.019813917577266693, -0.015065882354974747, 0.5790010690689087, -0.3306328058242798, 0.014185708947479725, -0.012534813955426216, -0.16418083012104034, -0.024447254836559296, 0.04068644344806671, 0.36144423484802246, -0.10537729412317276, 1.2578762769699097, 0.10903248190879822, -0.19667312502861023, -0.3224475681781769, -0.6783311367034912, -1.3678075075149536, -0.3502509593963623, -0.1251632422208786, 0.6077320575714111, -0.38338735699653625, 0.12851883471012115]} +{"t": 14.0931, "q": [-0.3975958824157715, 0.022656895220279694, -0.01750320754945278, 0.6648954749107361, -0.3118152320384979, 0.014408002607524395, -0.31762436032295227, 0.02028263546526432, -0.015333720482885838, 0.5791459083557129, -0.33127444982528687, 0.013908663764595985, -0.012789260596036911, -0.16425423324108124, -0.024396248161792755, 0.04087819159030914, 0.36142027378082275, -0.10495784133672714, 1.2587751150131226, 0.10903248190879822, -0.19667312502861023, -0.3223996162414551, -0.6734775304794312, -1.3769395351409912, -0.3440071940422058, -0.11695405095815659, 0.6042206883430481, -0.3725176453590393, 0.1275121569633484]} +{"t": 14.1099, "q": [-0.396769255399704, 0.02292960323393345, -0.01747642457485199, 0.6646909117698669, -0.31239646673202515, 0.014266339130699635, -0.3172323405742645, 0.020649084821343422, -0.015320328995585442, 0.5794356465339661, -0.3317394256591797, 0.013593489304184914, -0.012923179194331169, -0.16422247886657715, -0.024277936667203903, 0.040950097143650055, 0.3613843023777008, -0.10449045896530151, 1.2592544555664062, 0.10900851339101791, -0.19666112959384918, -0.3223876357078552, -0.6668262481689453, -1.386431097984314, -0.33286187052726746, -0.10947589576244354, 0.5994150042533875, -0.36121654510498047, 0.12686501443386078]} +{"t": 14.1268, "q": [-0.3961727023124695, 0.023074477910995483, -0.017422856763005257, 0.6644608378410339, -0.31287091970443726, 0.013965883292257786, -0.31717270612716675, 0.020811006426811218, -0.015320328995585442, 0.5798191428184509, -0.3321154713630676, 0.013437334448099136, -0.012923179194331169, -0.16408421099185944, -0.02401525154709816, 0.04104597121477127, 0.3612884283065796, -0.1044425219297409, 1.2593863010406494, 0.10899652540683746, -0.19664914906024933, -0.3223636746406555, -0.6578141450881958, -1.3959585428237915, -0.32193225622177124, -0.10365156084299088, 0.5940939784049988, -0.349675714969635, 0.1266373097896576]} +{"t": 14.1435, "q": [-0.3957465887069702, 0.023065956309437752, -0.017342504113912582, 0.6639750599861145, -0.3130318224430084, 0.013856068253517151, -0.3170959949493408, 0.02082804962992668, -0.015360504388809204, 0.5800748467445374, -0.33244264125823975, 0.013324307277798653, -0.01284282747656107, -0.16411715745925903, -0.023345045745372772, 0.041129861027002335, 0.36125248670578003, -0.10429871082305908, 1.259506106376648, 0.10898454487323761, -0.19666112959384918, -0.32235169410705566, -0.645470380783081, -1.4054499864578247, -0.309660404920578, -0.09886986017227173, 0.5846744179725647, -0.3377514183521271, 0.12699683010578156]} +{"t": 14.1602, "q": [-0.39544832706451416, 0.023031868040561676, -0.01730232872068882, 0.6634637117385864, -0.3130442798137665, 0.013819731771945953, -0.31693407893180847, 0.020853616297245026, -0.0154542475938797, 0.5801770687103271, -0.33252933621406555, 0.013390602543950081, -0.012909787707030773, -0.16410791873931885, -0.02240721322596073, 0.040950097143650055, 0.36127644777297974, -0.10421482473611832, 1.2594581842422485, 0.1089605763554573, -0.19668510556221008, -0.32232773303985596, -0.633665919303894, -1.4130120277404785, -0.293709397315979, -0.09455553442239761, 0.5757821202278137, -0.3264143466949463, 0.12784771621227264]} +{"t": 14.1771, "q": [-0.39535456895828247, 0.023006301373243332, -0.01698092371225357, 0.66304612159729, -0.3130525052547455, 0.013819675892591476, -0.3169596493244171, 0.02076839469373226, -0.015400679782032967, 0.5801600813865662, -0.33255836367607117, 0.013427240774035454, -0.012883003801107407, -0.16374635696411133, -0.0213080495595932, 0.04043477773666382, 0.3612045347690582, -0.10421482473611832, 1.259446144104004, 0.10898454487323761, -0.19668510556221008, -0.32232773303985596, -0.6197162866592407, -1.419399619102478, -0.2786092758178711, -0.09145162254571915, 0.5658591389656067, -0.3149574100971222, 0.12953749299049377]} +{"t": 14.1938, "q": [-0.39532047510147095, 0.02292960323393345, -0.016766652464866638, 0.6627734303474426, -0.3130607604980469, 0.013819620013237, -0.31696817278862, 0.020657608285546303, -0.015347111970186234, 0.5800748467445374, -0.33255431056022644, 0.013434466905891895, -0.012749084271490574, -0.16328129172325134, -0.01983974687755108, 0.03936817869544029, 0.3612285256385803, -0.10421482473611832, 1.259350299835205, 0.10898454487323761, -0.19666112959384918, -0.32232773303985596, -0.6028304696083069, -1.4242173433303833, -0.260608971118927, -0.08935438096523285, 0.5532996654510498, -0.3038480579853058, 0.13164670765399933]} +{"t": 14.2106, "q": [-0.3952949345111847, 0.022716550156474113, -0.016364896669983864, 0.6626370549201965, -0.3130771517753601, 0.013863006606698036, -0.31699371337890625, 0.020444555208086967, -0.015226585790514946, 0.5802196860313416, -0.33257514238357544, 0.013471022248268127, -0.012909787707030773, -0.16265806555747986, -0.017897803336381912, 0.038852859288454056, 0.3612045347690582, -0.10420283675193787, 1.2593263387680054, 0.10897255688905716, -0.19667312502861023, -0.3223157525062561, -0.5876704454421997, -1.4261587858200073, -0.23975640535354614, -0.08653809130191803, 0.5390504598617554, -0.2940090000629425, 0.13276124000549316]} +{"t": 14.2273, "q": [-0.3952352702617645, 0.02245236374437809, -0.016016706824302673, 0.6625518798828125, -0.31312644481658936, 0.013935157097876072, -0.3170278072357178, 0.020069582387804985, -0.015079274773597717, 0.5802452564239502, -0.3326086699962616, 0.013558568432927132, -0.012668733485043049, -0.16212475299835205, -0.015654191374778748, 0.03784618154168129, 0.36116859316825867, -0.10417886823415756, 1.2592663764953613, 0.10898454487323761, -0.1967330425977707, -0.32230374217033386, -0.568663477897644, -1.4272013902664185, -0.2218160182237625, -0.08589094132184982, 0.5263231992721558, -0.2860994040966034, 0.13375593721866608]} +{"t": 14.2441, "q": [-0.39522674679756165, 0.022043302655220032, -0.0155345993116498, 0.6625092625617981, -0.31319209933280945, 0.01406518742442131, -0.3171130418777466, 0.01954973302781582, -0.014878395944833755, 0.5803901553153992, -0.3326587378978729, 0.013660810887813568, -0.012615165673196316, -0.16133487224578857, -0.01365325041115284, 0.03687546029686928, 0.36084502935409546, -0.10415489971637726, 1.2594102621078491, 0.10897255688905716, -0.19681693613529205, -0.32230374217033386, -0.5497882962226868, -1.4270336627960205, -0.19594208896160126, -0.08608268946409225, 0.5119780898094177, -0.2798316478729248, 0.13393570482730865]} +{"t": 14.2608, "q": [-0.39535456895828247, 0.021446755155920982, -0.015146234072744846, 0.6623302698135376, -0.3132249712944031, 0.014122956432402134, -0.31741130352020264, 0.018859442323446274, -0.014623950235545635, 0.5805690884590149, -0.33280470967292786, 0.013945735059678555, -0.01244107075035572, -0.160394549369812, -0.011582514271140099, 0.03526957333087921, 0.36029374599456787, -0.1041429191827774, 1.2591825723648071, 0.10894858837127686, -0.19686487317085266, -0.32230374217033386, -0.5275935530662537, -1.4267818927764893, -0.17073926329612732, -0.08626244962215424, 0.49911901354789734, -0.27322834730148315, 0.1347266584634781]} +{"t": 14.2776, "q": [-0.39535456895828247, 0.02088429592549801, -0.014891788363456726, 0.6623984575271606, -0.3133932948112488, 0.014419018290936947, -0.31741130352020264, 0.01829698123037815, -0.014490030705928802, 0.5808674097061157, -0.3328877091407776, 0.014062856324017048, -0.011717909015715122, -0.15928100049495697, -0.009455716237425804, 0.033316146582365036, 0.3594668507575989, -0.10417886823415756, 1.2591705322265625, 0.10897255688905716, -0.19688883423805237, -0.3223157525062561, -0.5056983232498169, -1.4233064651489258, -0.14520087838172913, -0.08898287266492844, 0.48711082339286804, -0.2700405418872833, 0.13658422231674194]} +{"t": 14.2943, "q": [-0.39540570974349976, 0.0200406052172184, -0.014824828132987022, 0.6623899340629578, -0.31352880597114563, 0.014657311141490936, -0.31753063201904297, 0.017461813986301422, -0.014436463825404644, 0.5814809799194336, -0.33348676562309265, 0.015071877278387547, -0.009441286325454712, -0.15793749690055847, -0.0070135751739144325, 0.031218906864523888, 0.35820847749710083, -0.10423879325389862, 1.2590867280960083, 0.10897255688905716, -0.19691281020641327, -0.3223157525062561, -0.4814302921295166, -1.4180574417114258, -0.11678627133369446, -0.09249424934387207, 0.4718189537525177, -0.26938140392303467, 0.13888518512248993]} +{"t": 14.3111, "q": [-0.3955250084400177, 0.019162828102707863, -0.014824828132987022, 0.662517786026001, -0.3136519491672516, 0.014902970753610134, -0.31768402457237244, 0.016584036871790886, -0.014382896013557911, 0.5821542143821716, -0.3340345621109009, 0.015833232551813126, -0.006655772216618061, -0.15620136260986328, -0.004688148852437735, 0.029277462512254715, 0.3565426766872406, -0.10426276177167892, 1.259110689163208, 0.10898454487323761, -0.19690081477165222, -0.3223157525062561, -0.4581449329853058, -1.4121012687683105, -0.08949819207191467, -0.09605356305837631, 0.4605058431625366, -0.2693454623222351, 0.14218084514141083]} +{"t": 14.3281, "q": [-0.3957039713859558, 0.018387315794825554, -0.014757868833839893, 0.6629012823104858, -0.314005583524704, 0.015510021708905697, -0.31768402457237244, 0.015851134434342384, -0.014289152808487415, 0.5825377106666565, -0.33440491557121277, 0.016469275578856468, -0.0034149333368986845, -0.1539163440465927, -0.002411036752164364, 0.027479829266667366, 0.35440948605537415, -0.10427474230527878, 1.2591346502304077, 0.10902049392461777, -0.19686487317085266, -0.32232773303985596, -0.43326568603515625, -1.404682993888855, -0.060987722128629684, -0.10070344805717468, 0.44861748814582825, -0.2694173753261566, 0.14609968662261963]} +{"t": 14.3449, "q": [-0.39567843079566956, 0.01776520162820816, -0.01419540960341692, 0.6629268527030945, -0.3143098056316376, 0.016059337183833122, -0.3179396688938141, 0.015015967190265656, -0.013807044364511967, 0.58294677734375, -0.33487018942832947, 0.017171677201986313, 0.0018212978029623628, -0.1515810191631317, -0.0002622637839522213, 0.025981800630688667, 0.35213249921798706, -0.10432267934083939, 1.2593742609024048, 0.10902049392461777, -0.1967570036649704, -0.32232773303985596, -0.40837445855140686, -1.3949878215789795, -0.03245328366756439, -0.10415489971637726, 0.4384428858757019, -0.2695971429347992, 0.15115703642368317]} +{"t": 14.3616, "q": [-0.39569544792175293, 0.017253873869776726, -0.014021314680576324, 0.6633444428443909, -0.31463053822517395, 0.016608551144599915, -0.31791412830352783, 0.01458986196666956, -0.01345885545015335, 0.5831342935562134, -0.3349989950656891, 0.017369220033288002, 0.006160271819680929, -0.14888092875480652, 0.0018814761424437165, 0.024160198867321014, 0.34961581230163574, -0.10435863584280014, 1.2594102621078491, 0.10903248190879822, -0.19679296016693115, -0.32235169410705566, -0.3844779133796692, -1.3863232135772705, -0.0013781859306618571, -0.10604841262102127, 0.4270578622817993, -0.2697888910770416, 0.15555524826049805]} +{"t": 14.3785, "q": [-0.39595964550971985, 0.016538016498088837, -0.014061490073800087, 0.6632421612739563, -0.3146675229072571, 0.01670261286199093, -0.31799080967903137, 0.014035924337804317, -0.013472246937453747, 0.5831683874130249, -0.3351356089115143, 0.017523206770420074, 0.00940111093223095, -0.14678087830543518, 0.004039274528622627, 0.02238653227686882, 0.34744665026664734, -0.1044185534119606, 1.2593144178390503, 0.10904446244239807, -0.19676899909973145, -0.32237565517425537, -0.3622591495513916, -1.3778144121170044, 0.026676885783672333, -0.10723485052585602, 0.4156249165534973, -0.26998063921928406, 0.15882693231105804]} +{"t": 14.3952, "q": [-0.39627495408058167, 0.015634672716259956, -0.014436463825404644, 0.6632933020591736, -0.3146509826183319, 0.016717230901122093, -0.31799080967903137, 0.013447898440063, -0.013632949441671371, 0.5834496021270752, -0.3353882133960724, 0.017809176817536354, 0.011798259802162647, -0.14463303983211517, 0.006630081217736006, 0.021104220300912857, 0.34537339210510254, -0.10449045896530151, 1.2593742609024048, 0.10910438746213913, -0.19667312502861023, -0.3224475681781769, -0.3403400182723999, -1.3668367862701416, 0.05433647707104683, -0.10796588659286499, 0.40485110878944397, -0.2702203094959259, 0.16272181272506714]} +{"t": 14.4119, "q": [-0.3965391516685486, 0.014475664123892784, -0.014891788363456726, 0.6633785367012024, -0.3146592378616333, 0.016717180609703064, -0.3180760443210602, 0.0128172617405653, -0.013807044364511967, 0.5840035080909729, -0.3358229994773865, 0.018300505355000496, 0.01511945016682148, -0.14235316216945648, 0.009431648068130016, 0.020493024960160255, 0.34327614307403564, -0.10447847843170166, 1.2593263387680054, 0.10912835597991943, -0.19674502313137054, -0.322435587644577, -0.3191039562225342, -1.3543373346328735, 0.08271512389183044, -0.10813366621732712, 0.3960786461830139, -0.27068769931793213, 0.16565795242786407]} +{"t": 14.4288, "q": [-0.3967181146144867, 0.013214390724897385, -0.015347111970186234, 0.6633529663085938, -0.3146509826183319, 0.016731729730963707, -0.3184936046600342, 0.012109925970435143, -0.013833828270435333, 0.5844551920890808, -0.3363440930843353, 0.018902089446783066, 0.018695086240768433, -0.14030145108699799, 0.011644482612609863, 0.020073577761650085, 0.3412388265132904, -0.10449045896530151, 1.2595300674438477, 0.10911636799573898, -0.19664914906024933, -0.32245954871177673, -0.29844316840171814, -1.3414422273635864, 0.10899652540683746, -0.10754643380641937, 0.38803723454475403, -0.2706517279148102, 0.16945694386959076]} +{"t": 14.4455, "q": [-0.3967948257923126, 0.011816764250397682, -0.01597653143107891, 0.6631398797035217, -0.3146509528160095, 0.01674623042345047, -0.31878337264060974, 0.011317369528114796, -0.013887396082282066, 0.5849153995513916, -0.33677610754966736, 0.01920502446591854, 0.023087628185749054, -0.13790938258171082, 0.014085257425904274, 0.020001672208309174, 0.33880603313446045, -0.10451442748308182, 1.2596139907836914, 0.10910438746213913, -0.19664914906024933, -0.32245954871177673, -0.2768835425376892, -1.3273248672485352, 0.13644041121006012, -0.10728278756141663, 0.38071486353874207, -0.27060380578041077, 0.17392705380916595]} +{"t": 14.4622, "q": [-0.3968033492565155, 0.010998642072081566, -0.01593635603785515, 0.6631484031677246, -0.31464263796806335, 0.01678978092968464, -0.3189964294433594, 0.01061855535954237, -0.013874003663659096, 0.58570796251297, -0.33731913566589355, 0.019574634730815887, 0.027855142951011658, -0.13502137362957, 0.01672196015715599, 0.019642144441604614, 0.33594179153442383, -0.10451442748308182, 1.259805679321289, 0.10917629301548004, -0.19662518799304962, -0.32248350977897644, -0.25598305463790894, -1.3140103816986084, 0.16142751276493073, -0.10181798040866852, 0.3726135194301605, -0.27053189277648926, 0.17763018608093262]} +{"t": 14.4791, "q": [-0.39665845036506653, 0.010069731622934341, -0.015922963619232178, 0.6631654500961304, -0.31463441252708435, 0.016775330528616905, -0.3188941478729248, 0.009766343981027603, -0.013914179988205433, 0.586449384689331, -0.33798035979270935, 0.02044009044766426, 0.032354820519685745, -0.13189730048179626, 0.020168261602520943, 0.0186474546790123, 0.33306559920310974, -0.10453839600086212, 1.2596019506454468, 0.10914033651351929, -0.1967090666294098, -0.3224715292453766, -0.23803068697452545, -1.3005400896072388, 0.18575549125671387, -0.09578990936279297, 0.36427250504493713, -0.26981285214424133, 0.18206435441970825]} +{"t": 14.4959, "q": [-0.39668402075767517, 0.008970377966761589, -0.016097059473395348, 0.6631739735603333, -0.31462201476097107, 0.016782673075795174, -0.31887710094451904, 0.008684035390615463, -0.014302544295787811, 0.5874038338661194, -0.33896559476852417, 0.021389110013842583, 0.034698400646448135, -0.12834489345550537, 0.02376541867852211, 0.01768871583044529, 0.33044102787971497, -0.10462228953838348, 1.2596619129180908, 0.10915232449769974, -0.19662518799304962, -0.32248350977897644, -0.22248713672161102, -1.2872616052627563, 0.2058410495519638, -0.08913866430521011, 0.3552963137626648, -0.26833879947662354, 0.18688200414180756]} +{"t": 14.5126, "q": [-0.39664992690086365, 0.007751715835183859, -0.016190802678465843, 0.6632421612739563, -0.3145931363105774, 0.01680459827184677, -0.3189026713371277, 0.007465373259037733, -0.014637341722846031, 0.588767409324646, -0.33993905782699585, 0.021814391016960144, 0.0359974168241024, -0.12410635501146317, 0.027431439608335495, 0.016238626092672348, 0.32787641882896423, -0.10461030155420303, 1.2596259117126465, 0.10916430503129959, -0.19666112959384918, -0.3224954903125763, -0.210083469748497, -1.2735157012939453, 0.22526748478412628, -0.08246345072984695, 0.3437075912952423, -0.26706844568252563, 0.1934134066104889]} +{"t": 14.5293, "q": [-0.3964454233646393, 0.006575664039701223, -0.016030099242925644, 0.6632762551307678, -0.3145972490310669, 0.01681182160973549, -0.3194907009601593, 0.00640863087028265, -0.014516814611852169, 0.5914007425308228, -0.3410075008869171, 0.021818898618221283, 0.036720577627420425, -0.11985085904598236, 0.03085397370159626, 0.01696966215968132, 0.3255874216556549, -0.104742132127285, 1.2600454092025757, 0.1092122420668602, -0.19661319255828857, -0.3225434422492981, -0.20283301174640656, -1.2613037824630737, 0.24242889881134033, -0.07745404541492462, 0.3326581120491028, -0.26504313945770264, 0.20036426186561584]} +{"t": 14.5461, "q": [-0.3963516652584076, 0.004794541280716658, -0.015735477209091187, 0.6635404229164124, -0.314593106508255, 0.016819097101688385, -0.321007639169693, 0.004849083721637726, -0.014396287500858307, 0.594673216342926, -0.34260594844818115, 0.02201111614704132, 0.03684110566973686, -0.11527176946401596, 0.03442097455263138, 0.018383800983428955, 0.32320258021354675, -0.10470617562532425, 1.2611958980560303, 0.10920026153326035, -0.19642144441604614, -0.3225913643836975, -0.19691281020641327, -1.2479413747787476, 0.2580443322658539, -0.07233678549528122, 0.3199189007282257, -0.2628619968891144, 0.20557740330696106]} +{"t": 14.563, "q": [-0.3961641788482666, 0.003371348138898611, -0.015092666260898113, 0.6637194156646729, -0.314584881067276, 0.016819147393107414, -0.32120364904403687, 0.003349191276356578, -0.01411505788564682, 0.5980905890464783, -0.3439861238002777, 0.02207721583545208, 0.03680092841386795, -0.11117393523454666, 0.03747570142149925, 0.019042933359742165, 0.32080572843551636, -0.10480204969644547, 1.2620108127593994, 0.10924819856882095, -0.1962536722421646, -0.3226153552532196, -0.19183149933815002, -1.2347826957702637, 0.2698727548122406, -0.0682741329073906, 0.30750322341918945, -0.26089659333229065, 0.21052688360214233]} +{"t": 14.5798, "q": [-0.39573806524276733, 0.0025532254949212074, -0.014771261252462864, 0.6642221808433533, -0.3145889937877655, 0.016811871901154518, -0.32060709595680237, 0.0024714134633541107, -0.013967746868729591, 0.6007153987884521, -0.34470221400260925, 0.022448822855949402, 0.03674736246466637, -0.10561054944992065, 0.04149391129612923, 0.01900698058307171, 0.31713855266571045, -0.10477808117866516, 1.2623463869094849, 0.1092601791024208, -0.1961577981710434, -0.32262733578681946, -0.18646256625652313, -1.2197544574737549, 0.2795560359954834, -0.06385195255279541, 0.2920435965061188, -0.25863155722618103, 0.21571604907512665]} +{"t": 14.5965, "q": [-0.395013689994812, 0.002340172417461872, -0.01446324773132801, 0.6642307043075562, -0.3145930767059326, 0.016833597794175148, -0.31966114044189453, 0.002258360618725419, -0.0138606121763587, 0.6017124652862549, -0.34477949142456055, 0.02239873632788658, 0.03642595559358597, -0.10024318844079971, 0.0451342798769474, 0.018743328750133514, 0.31381893157958984, -0.10475411266088486, 1.2625740766525269, 0.1092601791024208, -0.1961338371038437, -0.32265129685401917, -0.18429341912269592, -1.2052175998687744, 0.2885202169418335, -0.06031660735607147, 0.27701535820961, -0.25338247418403625, 0.22046180069446564]} +{"t": 14.6132, "q": [-0.39379504323005676, 0.002340172417461872, -0.013686517253518105, 0.6641029119491577, -0.31454774737358093, 0.016826622188091278, -0.3171045184135437, 0.002198705682530999, -0.013472246937453747, 0.6022067666053772, -0.3447631001472473, 0.022398555651307106, 0.03617151081562042, -0.09498331695795059, 0.04870103672146797, 0.018192054703831673, 0.3106910288333893, -0.10481403023004532, 1.2625740766525269, 0.10929613560438156, -0.19612184166908264, -0.32265129685401917, -0.18441325426101685, -1.190752625465393, 0.29796379804611206, -0.055702678859233856, 0.2618553340435028, -0.24688702821731567, 0.2241889089345932]} +{"t": 14.63, "q": [-0.39229515194892883, 0.0024424376897513866, -0.01319101732224226, 0.6640262007713318, -0.31453537940979004, 0.01681944727897644, -0.31620118021965027, 0.002266882685944438, -0.013097274117171764, 0.602666974067688, -0.34475892782211304, 0.022391239181160927, 0.03580993041396141, -0.09072592854499817, 0.05177551135420799, 0.017017599195241928, 0.30764704942703247, -0.10480204969644547, 1.2625980377197266, 0.10933208465576172, -0.19606192409992218, -0.3226393163204193, -0.18461698293685913, -1.1773183345794678, 0.3042914569377899, -0.05122057721018791, 0.247701957821846, -0.23978038132190704, 0.22879084944725037]} +{"t": 14.6467, "q": [-0.3904799222946167, 0.0024253935553133488, -0.012494638562202454, 0.6636853218078613, -0.31449833512306213, 0.016783403232693672, -0.31551939249038696, 0.0022413162514567375, -0.012320543639361858, 0.6037066578865051, -0.3447629511356354, 0.02238401025533676, 0.03542156517505646, -0.08709444105625153, 0.05420671030879021, 0.015579492785036564, 0.3046390116214752, -0.10477808117866516, 1.262873649597168, 0.1092601791024208, -0.19587017595767975, -0.3226153552532196, -0.184772789478302, -1.1638120412826538, 0.3087376058101654, -0.04615125060081482, 0.2319307178258896, -0.23147530853748322, 0.2328774631023407]} +{"t": 14.6634, "q": [-0.38783806562423706, 0.00241687148809433, -0.011744692921638489, 0.6635148525238037, -0.31447774171829224, 0.0167617779225111, -0.31365305185317993, 0.0022242721170186996, -0.011557205580174923, 0.6054280996322632, -0.34475892782211304, 0.022391239181160927, 0.03540817275643349, -0.08406603336334229, 0.05631666257977486, 0.014524880796670914, 0.3020264506340027, -0.10481403023004532, 1.2630294561386108, 0.10929613560438156, -0.19577430188655853, -0.32260334491729736, -0.18498849868774414, -1.1510009765625, 0.3142024278640747, -0.038661111146211624, 0.2173219472169876, -0.22257103025913239, 0.2370479702949524]} +{"t": 14.6802, "q": [-0.3855626583099365, 0.002374260686337948, -0.010901003144681454, 0.6629438996315002, -0.31447362899780273, 0.016754552721977234, -0.3132610321044922, 0.0019004317000508308, -0.01099474634975195, 0.6076523661613464, -0.3448317050933838, 0.02230476215481758, 0.03550191596150398, -0.08104844391345978, 0.05832086130976677, 0.01408146508038044, 0.2997734248638153, -0.10486196726560593, 1.263221263885498, 0.10938002169132233, -0.19552263617515564, -0.32257938385009766, -0.18513230979442596, -1.137722373008728, 0.3177737295627594, -0.029996516183018684, 0.20373183488845825, -0.21599169075489044, 0.24111062288284302]} +{"t": 14.6969, "q": [-0.3835599720478058, 0.0022805174812674522, -0.010110881179571152, 0.6627819538116455, -0.31444069743156433, 0.016725752502679825, -0.3132610321044922, 0.0013635384384542704, -0.010780476033687592, 0.611027181148529, -0.34511926770210266, 0.022009704262018204, 0.03566261753439903, -0.0788922905921936, 0.05971932411193848, 0.013614079914987087, 0.29779601097106934, -0.10477808117866516, 1.2634249925613403, 0.10942795872688293, -0.19541478157043457, -0.3225674033164978, -0.18519222736358643, -1.1230297088623047, 0.3208177089691162, -0.021583588793873787, 0.1889193207025528, -0.2076866179704666, 0.24354343116283417]} +{"t": 14.7137, "q": [-0.38159987330436707, 0.0020163320004940033, -0.009347543120384216, 0.6627308130264282, -0.3144242763519287, 0.01668233424425125, -0.3133888840675354, 0.0008862999966368079, -0.010137665085494518, 0.6141888499259949, -0.3461504280567169, 0.021475598216056824, 0.03550191596150398, -0.07770892232656479, 0.06048712506890297, 0.012595420703291893, 0.29662156105041504, -0.10477808117866516, 1.2634249925613403, 0.10942795872688293, -0.1952829509973526, -0.3225434422492981, -0.18533603847026825, -1.1092838048934937, 0.3281640410423279, -0.011492871679365635, 0.1748138964176178, -0.19969314336776733, 0.24562868475914001]} +{"t": 14.7304, "q": [-0.3805175721645355, 0.001539093442261219, -0.008021745830774307, 0.662816047668457, -0.3143501281738281, 0.016624746844172478, -0.31378090381622314, 5.965480886516161e-05, -0.00898596178740263, 0.6171886324882507, -0.3485177457332611, 0.020650891587138176, 0.03547513112425804, -0.07683700323104858, 0.060938019305467606, 0.012044146656990051, 0.29607027769088745, -0.104742132127285, 1.2634249925613403, 0.1095118522644043, -0.19516310095787048, -0.3225194811820984, -0.18555176258087158, -1.095286250114441, 0.33793118596076965, -0.00035952674807049334, 0.16119980812072754, -0.19137609004974365, 0.248301163315773]} +{"t": 14.7472, "q": [-0.37958014011383057, 0.0011726426891982555, -0.007445894181728363, 0.6630290746688843, -0.3142637312412262, 0.01651650294661522, -0.31378939747810364, -0.0002897519152611494, -0.00839671865105629, 0.6187737584114075, -0.3509071469306946, 0.019521161913871765, 0.03531442955136299, -0.0763770267367363, 0.06125183403491974, 0.01158874575048685, 0.2959024906158447, -0.10476610064506531, 1.263604760169983, 0.10954780131578445, -0.19497136771678925, -0.32248350977897644, -0.18576747179031372, -1.0815284252166748, 0.3464040160179138, 0.01212803553789854, 0.14671088755130768, -0.18231602013111115, 0.2503504753112793]} +{"t": 14.7643, "q": [-0.37876200675964355, 0.0014368281699717045, -0.007633380591869354, 0.662816047668457, -0.31394267082214355, 0.01617034152150154, -0.31386610865592957, -0.00020453077740967274, -0.008704732172191143, 0.619557797908783, -0.35117265582084656, 0.019502364099025726, 0.035354603081941605, -0.07618969678878784, 0.06132106855511665, 0.01137303002178669, 0.29572275280952454, -0.10475411266088486, 1.2637245655059814, 0.1095597892999649, -0.19481556117534637, -0.3224715292453766, -0.18588732182979584, -1.0704549551010132, 0.35418179631233215, 0.02424408681690693, 0.13626064360141754, -0.1753651648759842, 0.2507699131965637]} +{"t": 14.7814, "q": [-0.3771001994609833, 0.0017010136507451534, -0.008276191540062428, 0.6614269614219666, -0.3128035366535187, 0.01469123549759388, -0.3143007457256317, 5.1132694352418184e-05, -0.009360934607684612, 0.6194725632667542, -0.35118862986564636, 0.019458869472146034, 0.03526085987687111, -0.07631746679544449, 0.06125472113490105, 0.01170858833938837, 0.29579463601112366, -0.1046941950917244, 1.2638204097747803, 0.10958375781774521, -0.1947316825389862, -0.322435587644577, -0.1832028478384018, -1.058051347732544, 0.36386504769325256, 0.03899667039513588, 0.12468387931585312, -0.16743160784244537, 0.2507699131965637]} +{"t": 14.7981, "q": [-0.3754298686981201, 0.0019992878660559654, -0.008718123659491539, 0.6601827144622803, -0.31171008944511414, 0.013408358208835125, -0.3150933086872101, 0.00034940673504024744, -0.009521638043224812, 0.6194469928741455, -0.35123273730278015, 0.01936476305127144, 0.034698400646448135, -0.07672394067049026, 0.061012908816337585, 0.012044146656990051, 0.2958545684814453, -0.10468220710754395, 1.2641799449920654, 0.10958375781774521, -0.19469572603702545, -0.3223636746406555, -0.18169283866882324, -1.045228123664856, 0.37670016288757324, 0.054851800203323364, 0.11553991585969925, -0.15862320363521576, 0.2506500780582428]} +{"t": 14.8149, "q": [-0.3735976219177246, 0.00235721655189991, -0.008771691471338272, 0.6586572527885437, -0.3109203577041626, 0.012717829085886478, -0.3141728937625885, 0.0005880259559489787, -0.009521638043224812, 0.6194981336593628, -0.3512767553329468, 0.01925608143210411, 0.03495284914970398, -0.07700301706790924, 0.06081891432404518, 0.012211925350129604, 0.2958545684814453, -0.10459832102060318, 1.2647671699523926, 0.1095118522644043, -0.19471968710422516, -0.3223397135734558, -0.17892448604106903, -1.030056118965149, 0.38830089569091797, 0.07228884845972061, 0.10552110522985458, -0.14981479942798615, 0.2506500780582428]} +{"t": 14.8316, "q": [-0.37129664421081543, 0.00235721655189991, -0.008744907565414906, 0.6565267443656921, -0.3096746802330017, 0.011653365567326546, -0.312971293926239, 0.0005368932615965605, -0.00940111093223095, 0.6195492744445801, -0.35132089257240295, 0.019161956384778023, 0.03492606431245804, -0.0772370919585228, 0.06064505875110626, 0.012499546632170677, 0.2957826554775238, -0.10450244694948196, 1.2651746273040771, 0.10943994671106339, -0.1947316825389862, -0.3221479654312134, -0.176983043551445, -1.0132182836532593, 0.3973369896411896, 0.0905647873878479, 0.09593372046947479, -0.14127004146575928, 0.25043436884880066]} +{"t": 14.8484, "q": [-0.36852696537971497, 0.0022293850779533386, -0.008530637249350548, 0.6538593173027039, -0.30837079882621765, 0.010842891409993172, -0.31107938289642334, 0.0003664509567897767, -0.009227016009390354, 0.6194555163383484, -0.35129207372665405, 0.019139811396598816, 0.03495284914970398, -0.07725971192121506, 0.06063002347946167, 0.013290505856275558, 0.2953512370586395, -0.10447847843170166, 1.2666367292404175, 0.10938002169132233, -0.1947316825389862, -0.32193225622177124, -0.17565278708934784, -0.9951101541519165, 0.40680453181266785, 0.11134544014930725, 0.08601078391075134, -0.13404355943202972, 0.24985910952091217]} +{"t": 14.8651, "q": [-0.36569762229919434, 0.0020078099332749844, -0.008530637249350548, 0.6511237025260925, -0.30697572231292725, 0.010033022612333298, -0.30900850892066956, 8.52211524033919e-05, -0.009173448197543621, 0.6191316843032837, -0.3513362407684326, 0.019045686349272728, 0.035207293927669525, -0.07716355472803116, 0.0606023445725441, 0.013482253067195415, 0.29482391476631165, -0.1044425219297409, 1.268002986907959, 0.10940399020910263, -0.19474366307258606, -0.32175248861312866, -0.17549699544906616, -0.9760072827339172, 0.419052392244339, 0.13406752049922943, 0.07572831958532333, -0.12744024395942688, 0.24921196699142456]} +{"t": 14.8821, "q": [-0.3635074198246002, 0.0016584033146500587, -0.008597597479820251, 0.6486096978187561, -0.30491578578948975, 0.010097471065819263, -0.3075767755508423, -0.0003323625132907182, -0.00933415163308382, 0.618807852268219, -0.35133597254753113, 0.019016575068235397, 0.035528700798749924, -0.07685506343841553, 0.06040436029434204, 0.01344630029052496, 0.29436853528022766, -0.10446649044752121, 1.2684823274612427, 0.10943994671106339, -0.19474366307258606, -0.3217165172100067, -0.1747899204492569, -0.9565688967704773, 0.4293348789215088, 0.1564900130033493, 0.06736332923173904, -0.11841613054275513, 0.24902021884918213]} +{"t": 14.899, "q": [-0.36256998777389526, 0.001581704244017601, -0.008744907565414906, 0.6468626260757446, -0.30343204736709595, 0.010005714371800423, -0.3073040843009949, -0.0005795038305222988, -0.009709124453365803, 0.6187737584114075, -0.35126954317092896, 0.01889934204518795, 0.03560905158519745, -0.07633989304304123, 0.05973876640200615, 0.013350427150726318, 0.29394906759262085, -0.10449045896530151, 1.2687100172042847, 0.10945192724466324, -0.1947077065706253, -0.32168057560920715, -0.17437048256397247, -0.935896098613739, 0.4372444450855255, 0.1811056137084961, 0.05706888064742088, -0.10947589576244354, 0.2482052892446518]} +{"t": 14.9157, "q": [-0.3622205853462219, 0.0017351023852825165, -0.009160056710243225, 0.6462831497192383, -0.3026958107948303, 0.009402046911418438, -0.30726146697998047, -0.0005283711361698806, -0.01025819219648838, 0.6189953088760376, -0.35124850273132324, 0.018833570182323456, 0.03556887432932854, -0.07558543980121613, 0.05948736146092415, 0.013374395668506622, 0.29349368810653687, -0.10450244694948196, 1.2689377069473267, 0.10945192724466324, -0.19474366307258606, -0.32168057560920715, -0.1745861917734146, -0.9160981178283691, 0.4457532465457916, 0.20511001348495483, 0.047996822744607925, -0.10145845264196396, 0.2471027374267578]} +{"t": 14.9325, "q": [-0.3617689311504364, 0.0020248540677130222, -0.00940111093223095, 0.6457036137580872, -0.30169540643692017, 0.008423550054430962, -0.30731260776519775, -0.00017896443023346364, -0.010351935401558876, 0.6193276643753052, -0.3511779308319092, 0.018709011375904083, 0.03542156517505646, -0.07504483312368393, 0.05934169515967369, 0.01350622158497572, 0.2932060658931732, -0.10452641546726227, 1.2695488929748535, 0.10946391522884369, -0.19474366307258606, -0.32165661454200745, -0.17469404637813568, -0.8951976299285889, 0.4567188322544098, 0.2284313142299652, 0.03757054731249809, -0.09308147430419922, 0.24634774029254913]} +{"t": 14.9493, "q": [-0.36123204231262207, 0.0021697301417589188, -0.009816259145736694, 0.6447917819023132, -0.3004157841205597, 0.007844856940209866, -0.3072870373725891, 2.5566347176209092e-05, -0.010700124315917492, 0.6194981336593628, -0.35098692774772644, 0.018371960148215294, 0.03547513112425804, -0.07481413334608078, 0.05933890491724014, 0.013350427150726318, 0.2930622398853302, -0.10457435250282288, 1.270052194595337, 0.10943994671106339, -0.1947316825389862, -0.3216446340084076, -0.1748138964176178, -0.8751121163368225, 0.46714508533477783, 0.25285518169403076, 0.028846031054854393, -0.08509998023509979, 0.24565264582633972]} +{"t": 14.9661, "q": [-0.36092522740364075, 0.0022549512796103954, -0.010432287119328976, 0.6438032388687134, -0.2988654673099518, 0.007579040247946978, -0.3071421682834625, 5.965480886516161e-05, -0.011543814092874527, 0.6196089386940002, -0.35075855255126953, 0.017968984320759773, 0.03548852354288101, -0.07470174133777618, 0.05937682464718819, 0.013218600302934647, 0.2929903268814087, -0.10457435250282288, 1.2702319622039795, 0.10947589576244354, -0.19474366307258606, -0.32165661454200745, -0.1748857945203781, -0.8561291098594666, 0.4747670590877533, 0.2754094898700714, 0.018683407455682755, -0.07690277695655823, 0.24462200701236725]} +{"t": 14.9828, "q": [-0.3605417311191559, 0.0022549512796103954, -0.010981354862451553, 0.6426271796226501, -0.29778939485549927, 0.006905019748955965, -0.30700579285621643, 6.817692337790504e-05, -0.01225358434021473, 0.6196430325508118, -0.35057586431503296, 0.017646580934524536, 0.03547513112425804, -0.07470191270112991, 0.059367530047893524, 0.013266537338495255, 0.29291844367980957, -0.10458633303642273, 1.2704716920852661, 0.10948788374662399, -0.1947316825389862, -0.3216206431388855, -0.17500564455986023, -0.8380688428878784, 0.4825088679790497, 0.2984311878681183, 0.008844357915222645, -0.06883738934993744, 0.24314793944358826]} +{"t": 14.9997, "q": [-0.3596980571746826, 0.002340172417461872, -0.011235800571739674, 0.6415618658065796, -0.2966669201850891, 0.006455698516219854, -0.30676719546318054, 0.00013635384675581008, -0.012561597861349583, 0.6198731064796448, -0.3503062129020691, 0.017199430614709854, 0.03527425229549408, -0.07471699267625809, 0.05935751646757126, 0.013278521597385406, 0.2929064631462097, -0.10457435250282288, 1.2706154584884644, 0.10947589576244354, -0.19471968710422516, -0.3214888274669647, -0.17502960562705994, -0.8203442096710205, 0.4931868314743042, 0.32303479313850403, -0.002217081608250737, -0.061946459114551544, 0.24137428402900696]} +{"t": 15.0165, "q": [-0.3586583435535431, 0.0025191367603838444, -0.011235800571739674, 0.640479564666748, -0.29591047763824463, 0.005700148642063141, -0.3063836991786957, 0.0003664509567897767, -0.012454463168978691, 0.6199753880500793, -0.3501069247722626, 0.016847729682922363, 0.03528764471411705, -0.07481484115123749, 0.05930173397064209, 0.013685985468327999, 0.2929064631462097, -0.10451442748308182, 1.271370530128479, 0.10942795872688293, -0.1947316825389862, -0.3213689923286438, -0.1750895380973816, -0.8042493462562561, 0.5029898881912231, 0.3473747670650482, -0.011169297620654106, -0.0535694882273674, 0.24079903960227966]} +{"t": 15.0332, "q": [-0.35779762268066406, 0.0025787916965782642, -0.011342935264110565, 0.6396529674530029, -0.29504963755607605, 0.005169692914932966, -0.3059661090373993, 0.0004516721237450838, -0.012508030980825424, 0.6199753880500793, -0.3499164581298828, 0.01656893454492092, 0.0354483462870121, -0.0750335082411766, 0.05915655568242073, 0.013733922503888607, 0.2929064631462097, -0.10451442748308182, 1.2720175981521606, 0.10942795872688293, -0.19474366307258606, -0.3211532533168793, -0.1751614362001419, -0.7888017296791077, 0.5117144584655762, 0.3714510500431061, -0.019042933359742165, -0.04548013582825661, 0.2407151460647583]} +{"t": 15.0499, "q": [-0.3572266399860382, 0.002595835831016302, -0.011503638699650764, 0.6389455795288086, -0.2943074405193329, 0.005297851283103228, -0.3054206967353821, 0.00041758365114219487, -0.012816044501960278, 0.6199924349784851, -0.34977567195892334, 0.01636349968612194, 0.03548852354288101, -0.07525181025266647, 0.0590299628674984, 0.013650032691657543, 0.2929903268814087, -0.10447847843170166, 1.2721015214920044, 0.10943994671106339, -0.19474366307258606, -0.3209016025066376, -0.1726447492837906, -0.7740610837936401, 0.518904983997345, 0.395587295293808, -0.025658225640654564, -0.03775031119585037, 0.2407391220331192]} +{"t": 15.0667, "q": [-0.3567408621311188, 0.0026640123687684536, -0.011490246281027794, 0.6386643648147583, -0.2939509451389313, 0.005343720782548189, -0.3051735460758209, 0.0004516721237450838, -0.012816044501960278, 0.6200350522994995, -0.3495232164859772, 0.015989387407898903, 0.035394780337810516, -0.07556097954511642, 0.058824870735406876, 0.013757891021668911, 0.29307422041893005, -0.10445450991392136, 1.2724730968475342, 0.10940399020910263, -0.19477961957454681, -0.32038629055023193, -0.17106282711029053, -0.76024329662323, 0.5282526612281799, 0.42090997099876404, -0.0337236113846302, -0.027755465358495712, 0.24058331549167633]} +{"t": 15.0834, "q": [-0.35606762766838074, 0.0027492339722812176, -0.011316152289509773, 0.6386473178863525, -0.2937978208065033, 0.005294156260788441, -0.3046451807022095, 0.000570981705095619, -0.012615165673196316, 0.6201457977294922, -0.34929752349853516, 0.01574702374637127, 0.03479214385151863, -0.07574950903654099, 0.058699868619441986, 0.013985591009259224, 0.293110191822052, -0.10445450991392136, 1.273827314376831, 0.10939200967550278, -0.19476762413978577, -0.3195953071117401, -0.17009210586547852, -0.7483909130096436, 0.5369172692298889, 0.4460888206958771, -0.04158526286482811, -0.020181436091661453, 0.24002006649971008]} +{"t": 15.1003, "q": [-0.35523244738578796, 0.0027748006395995617, -0.011101881042122841, 0.6385195255279541, -0.293727308511734, 0.005316343158483505, -0.30406567454338074, 0.0005454153870232403, -0.012347327545285225, 0.6201798915863037, -0.3491208851337433, 0.015534204430878162, 0.033519916236400604, -0.07599081844091415, 0.05853986740112305, 0.014057496562600136, 0.2932420074939728, -0.1043945848941803, 1.2758885622024536, 0.10938002169132233, -0.19479160010814667, -0.3180014193058014, -0.16831845045089722, -0.7376410365104675, 0.5442636013031006, 0.46848732233047485, -0.05007009208202362, -0.011744541116058826, 0.2391931563615799]} +{"t": 15.1171, "q": [-0.3542098104953766, 0.0027833222411572933, -0.010700124315917492, 0.6383320093154907, -0.29366499185562134, 0.0053529562428593636, -0.30341801047325134, 0.0005539375124499202, -0.01193217933177948, 0.6201713681221008, -0.3489612936973572, 0.015423445031046867, 0.032488737255334854, -0.07651869207620621, 0.058189861476421356, 0.014129401184618473, 0.293337881565094, -0.10434664785861969, 1.2776381969451904, 0.10938002169132233, -0.19480358064174652, -0.31566449999809265, -0.1664009690284729, -0.7277780175209045, 0.5514780879020691, 0.4897952973842621, -0.056829195469617844, -0.003990747034549713, 0.23915719985961914]} +{"t": 15.1338, "q": [-0.35335758328437805, 0.0027662781067192554, -0.010164448991417885, 0.638238251209259, -0.2936399579048157, 0.0053965249098837376, -0.3029322326183319, 0.000570981705095619, -0.011316152289509773, 0.6201884150505066, -0.3487853705883026, 0.0153124975040555, 0.032354820519685745, -0.07709186524152756, 0.05780927464365959, 0.013733922503888607, 0.29346969723701477, -0.10433466732501984, 1.2791123390197754, 0.10939200967550278, -0.19479160010814667, -0.3133035898208618, -0.16324912011623383, -0.7173277735710144, 0.5580694079399109, 0.5133922100067139, -0.06139518693089485, 0.0037270940374583006, 0.23992419242858887]} +{"t": 15.1505, "q": [-0.35294002294540405, 0.0027236673049628735, -0.009749299846589565, 0.6381956338882446, -0.29362308979034424, 0.005468984600156546, -0.30272769927978516, 0.0005539375124499202, -0.010780476033687592, 0.6201884150505066, -0.3486994504928589, 0.015260681509971619, 0.032341428101062775, -0.07769547402858734, 0.057398539036512375, 0.013602095656096935, 0.2935056686401367, -0.10435863584280014, 1.280035138130188, 0.10939200967550278, -0.19480358064174652, -0.31144604086875916, -0.15940217673778534, -0.7073928713798523, 0.5649963021278381, 0.5355750322341919, -0.06635665148496628, 0.011732556857168674, 0.24060729146003723]} +{"t": 15.1673, "q": [-0.3523775637149811, 0.002681057434529066, -0.009267191402614117, 0.638238251209259, -0.29358971118927, 0.005527094472199678, -0.3024294376373291, 0.0004857605672441423, -0.010351935401558876, 0.6202225089073181, -0.34858521819114685, 0.015230387449264526, 0.032020021229982376, -0.07823842763900757, 0.057046860456466675, 0.013662016950547695, 0.29360154271125793, -0.10433466732501984, 1.2806942462921143, 0.10945192724466324, -0.19479160010814667, -0.3097682595252991, -0.15458452701568604, -0.6983687281608582, 0.5718033313751221, 0.5594475865364075, -0.07112637907266617, 0.018084196373820305, 0.24060729146003723]} +{"t": 15.184, "q": [-0.351678729057312, 0.0026214024983346462, -0.008852043189108372, 0.6381871104240417, -0.29359379410743713, 0.005548781715333462, -0.30208003520965576, 0.0004942826926708221, -0.009749299846589565, 0.6202480792999268, -0.34854447841644287, 0.015229982323944569, 0.032020021229982376, -0.07866086810827255, 0.05676611140370369, 0.013853764161467552, 0.2937813103199005, -0.10433466732501984, 1.2810417413711548, 0.10945192724466324, -0.19479160010814667, -0.30862975120544434, -0.1486523300409317, -0.6904951333999634, 0.5755184292793274, 0.5790058374404907, -0.07653126120567322, 0.02268613874912262, 0.24040356278419495]} +{"t": 15.2008, "q": [-0.3508606255054474, 0.0025787916965782642, -0.008343150839209557, 0.6381019353866577, -0.2935729920864105, 0.005570641253143549, -0.3016453981399536, 0.0004346278728917241, -0.009213624522089958, 0.620231032371521, -0.34849146008491516, 0.015222140587866306, 0.031859319657087326, -0.07906067371368408, 0.0565003976225853, 0.014309165067970753, 0.29392510652542114, -0.1043706163764, 1.2815451622009277, 0.10941597819328308, -0.19477961957454681, -0.3074193596839905, -0.14335529506206512, -0.6832686066627502, 0.5806237459182739, 0.5969821810722351, -0.07879628241062164, 0.026736807078123093, 0.2403436303138733]} +{"t": 15.2175, "q": [-0.3503578007221222, 0.0025276588276028633, -0.008008353412151337, 0.638008177280426, -0.2935604155063629, 0.005606891121715307, -0.30144938826560974, 0.0004261057765688747, -0.008838650770485401, 0.6202395558357239, -0.34844669699668884, 0.015228948555886745, 0.03157809004187584, -0.07965680211782455, 0.05610329285264015, 0.014572817832231522, 0.29406893253326416, -0.10435863584280014, 1.2820124626159668, 0.10945192724466324, -0.19477961957454681, -0.30623289942741394, -0.13750700652599335, -0.6756706237792969, 0.5839194059371948, 0.6126216053962708, -0.07983890920877457, 0.03308844566345215, 0.24037958681583405]} +{"t": 15.2342, "q": [-0.3501362204551697, 0.0025361808948218822, -0.007794083096086979, 0.6379570364952087, -0.2935355305671692, 0.005607063882052898, -0.3013726770877838, 0.0004346278728917241, -0.008637772873044014, 0.620299220085144, -0.3483852446079254, 0.01517738588154316, 0.031484346836805344, -0.08032085001468658, 0.05566094443202019, 0.014596786350011826, 0.2941887676715851, -0.1043706163764, 1.282371997833252, 0.10945192724466324, -0.19477961957454681, -0.30515432357788086, -0.13144297897815704, -0.6687197685241699, 0.5869393944740295, 0.6277217268943787, -0.07992279529571533, 0.037870150059461594, 0.2404155433177948]} +{"t": 15.251, "q": [-0.3500339686870575, 0.0025276588276028633, -0.007807475049048662, 0.6379570364952087, -0.29351893067359924, 0.005621644202619791, -0.3013215661048889, 0.00044314999831840396, -0.008637772873044014, 0.6203333139419556, -0.34836068749427795, 0.01516258716583252, 0.03129686042666435, -0.08086375147104263, 0.05531739071011543, 0.014656707644462585, 0.29424867033958435, -0.1043706163764, 1.2825638055801392, 0.10945192724466324, -0.19481556117534637, -0.3040398061275482, -0.12353339046239853, -0.6621883511543274, 0.5903429388999939, 0.6435049772262573, -0.07989882677793503, 0.042148519307374954, 0.24084697663784027]} +{"t": 15.2678, "q": [-0.3499828279018402, 0.0025447034277021885, -0.007820867002010345, 0.6379485130310059, -0.2934940755367279, 0.005621816497296095, -0.3013215661048889, 0.0004601942200679332, -0.008637772873044014, 0.6203588843345642, -0.34835657477378845, 0.015155271627008915, 0.030801359564065933, -0.08118762075901031, 0.05512888357043266, 0.01477654930204153, 0.29432058334350586, -0.1043706163764, 1.2831270694732666, 0.10945192724466324, -0.19476762413978577, -0.30340462923049927, -0.11455720663070679, -0.6553933024406433, 0.5917211174964905, 0.6575025320053101, -0.07986287772655487, 0.04496481269598007, 0.24127840995788574]} +{"t": 15.2846, "q": [-0.3498379588127136, 0.0025873142294585705, -0.007820867002010345, 0.6379314661026001, -0.29345279932022095, 0.005578708369284868, -0.3012874722480774, 0.000502804818097502, -0.008637772873044014, 0.6204185485839844, -0.34833183884620667, 0.015111382119357586, 0.030145157128572464, -0.0814744085073471, 0.05493747070431709, 0.015064171515405178, 0.29439249634742737, -0.1043706163764, 1.2837382555007935, 0.10943994671106339, -0.1947556436061859, -0.30303311347961426, -0.10301639884710312, -0.6482147574424744, 0.5921764969825745, 0.6708529591560364, -0.07958724349737167, 0.046966180205345154, 0.2414102405309677]} +{"t": 15.3013, "q": [-0.34950560331344604, 0.00261287996545434, -0.007780691608786583, 0.6379314661026001, -0.29341575503349304, 0.005513854790478945, -0.30121076107025146, 0.0005880259559489787, -0.008584205061197281, 0.6206656694412231, -0.34832772612571716, 0.015104066580533981, 0.028993453830480576, -0.0814744085073471, 0.05493747070431709, 0.015303855761885643, 0.2944644093513489, -0.10434664785861969, 1.2847568988800049, 0.10945192724466324, -0.1947556436061859, -0.3028174042701721, -0.09145162254571915, -0.6410601735115051, 0.5922484397888184, 0.6830289363861084, -0.07897604256868362, 0.04923119768500328, 0.24145816266536713]} +{"t": 15.318, "q": [-0.3488408625125885, 0.00261287996545434, -0.007539637386798859, 0.6377865672111511, -0.29335397481918335, 0.00542022567242384, -0.30107441544532776, 0.0006476807757280767, -0.008209232240915298, 0.6210406422615051, -0.34831926226615906, 0.015060309320688248, 0.02725250832736492, -0.08128589391708374, 0.055054157972335815, 0.01563941314816475, 0.2944883704185486, -0.10433466732501984, 1.2857515811920166, 0.10939200967550278, -0.19476762413978577, -0.3026256561279297, -0.08113320171833038, -0.6320000886917114, 0.5922364592552185, 0.693299412727356, -0.07856857776641846, 0.05161605775356293, 0.24151809513568878]} +{"t": 15.3348, "q": [-0.34826135635375977, 0.002655490767210722, -0.007298583164811134, 0.6375820636749268, -0.2932344079017639, 0.005269119516015053, -0.3010062277317047, 0.0007499461644329131, -0.007874434813857079, 0.6214411854743958, -0.3483152389526367, 0.015067540109157562, 0.025792790576815605, -0.08096201717853546, 0.05524265766143799, 0.01575925573706627, 0.29452431201934814, -0.10433466732501984, 1.2869020700454712, 0.10940399020910263, -0.19476762413978577, -0.30256572365760803, -0.07143796980381012, -0.6233475208282471, 0.5923203229904175, 0.7007415890693665, -0.07826897501945496, 0.052862416952848434, 0.2417098432779312]} +{"t": 15.3515, "q": [-0.3477841317653656, 0.002698101568967104, -0.0071914480067789555, 0.6374286413192749, -0.2930572032928467, 0.005017140414565802, -0.30094659328460693, 0.0008862999966368079, -0.007619988638907671, 0.6218758225440979, -0.34831100702285767, 0.015045679174363613, 0.02484196610748768, -0.0803854912519455, 0.05540679767727852, 0.015579492785036564, 0.2944883704185486, -0.10433466732501984, 1.2877769470214844, 0.10943994671106339, -0.19476762413978577, -0.30250582098960876, -0.06164685636758804, -0.6129092574119568, 0.5923083424568176, 0.7087470889091492, -0.07810119539499283, 0.053221944719552994, 0.24173380434513092]} +{"t": 15.3682, "q": [-0.34735801815986633, 0.0027236673049628735, -0.007124488707631826, 0.6370877623558044, -0.2927809953689575, 0.004664557985961437, -0.30094659328460693, 0.0009629990672692657, -0.007553029339760542, 0.6222763657569885, -0.34831100702285767, 0.015045679174363613, 0.023663479834794998, -0.07956624031066895, 0.055420249700546265, 0.0154956029728055, 0.2944644093513489, -0.10435863584280014, 1.2885679006576538, 0.10942795872688293, -0.19474366307258606, -0.30245786905288696, -0.053162023425102234, -0.6019316911697388, 0.5924042463302612, 0.7167764902114868, -0.07805325835943222, 0.0535694882273674, 0.24169784784317017]} +{"t": 15.3849, "q": [-0.34660807251930237, 0.0027407114394009113, -0.007084312848746777, 0.6369173526763916, -0.29245537519454956, 0.004225492477416992, -0.30080169439315796, 0.0010993528412654996, -0.007231623865664005, 0.6226769089698792, -0.3482697904109955, 0.014972529374063015, 0.021815398707985878, -0.07873643934726715, 0.05557795986533165, 0.01541171409189701, 0.2944044768810272, -0.10435863584280014, 1.2889872789382935, 0.10947589576244354, -0.19474366307258606, -0.3024458885192871, -0.045348308980464935, -0.5895280241966248, 0.5928356647491455, 0.7253332734107971, -0.07784952968358994, 0.05368933081626892, 0.24181769788265228]} +{"t": 15.4018, "q": [-0.34629276394844055, 0.0027407114394009113, -0.007164664100855589, 0.6366701722145081, -0.29224520921707153, 0.003930347505956888, -0.30071648955345154, 0.0012101404136046767, -0.007137880194932222, 0.6228984594345093, -0.34818729758262634, 0.014826156198978424, 0.018400464206933975, -0.07754088938236237, 0.05576693266630173, 0.01541171409189701, 0.29422470927238464, -0.1044425219297409, 1.2895265817642212, 0.10949986428022385, -0.1946837455034256, -0.30238598585128784, -0.03858920559287071, -0.5778793692588806, 0.5934348702430725, 0.7331349849700928, -0.07778960466384888, 0.053881075233221054, 0.24176976084709167]} +{"t": 15.4185, "q": [-0.3461393713951111, 0.0027918447740375996, -0.007137880194932222, 0.636303722858429, -0.2913946509361267, 0.004095393233001232, -0.3007250130176544, 0.0011760519118979573, -0.0072584073059260845, 0.6231200098991394, -0.3480594754219055, 0.01459931768476963, 0.014610557816922665, -0.07630611211061478, 0.05567814037203789, 0.015507587231695652, 0.29399701952934265, -0.10449045896530151, 1.289898157119751, 0.1095118522644043, -0.19459985196590424, -0.30238598585128784, -0.030967237427830696, -0.5656793713569641, 0.5951246619224548, 0.7389353513717651, -0.07772968709468842, 0.05409679189324379, 0.24169784784317017]} +{"t": 15.4353, "q": [-0.34598594903945923, 0.0027918447740375996, -0.007164664100855589, 0.6354345083236694, -0.29044103622436523, 0.0038632573559880257, -0.30071648955345154, 0.001073786523193121, -0.007512853480875492, 0.6232393383979797, -0.3478490710258484, 0.014211597852408886, 0.010793867520987988, -0.0751030296087265, 0.055475134402513504, 0.015783224254846573, 0.2938651740550995, -0.10453839600086212, 1.2903295755386353, 0.10958375781774521, -0.19449199736118317, -0.30236199498176575, -0.02497512474656105, -0.5535154342651367, 0.5998584032058716, 0.7452630400657654, -0.07768175005912781, 0.05409679189324379, 0.24178174138069153]} +{"t": 15.452, "q": [-0.3458069860935211, 0.0027321898378431797, -0.007164664100855589, 0.6340368390083313, -0.28923702239990234, 0.0037051995750516653, -0.30085283517837524, 0.0008862999966368079, -0.007700339891016483, 0.6232308149337769, -0.3475812077522278, 0.013765066862106323, 0.008115489035844803, -0.07394872605800629, 0.05500762537121773, 0.015855129808187485, 0.2938412129878998, -0.10456236451864243, 1.2913721799850464, 0.10960772633552551, -0.19430024921894073, -0.3023739755153656, -0.019450398162007332, -0.5405244827270508, 0.6041846871376038, 0.7536160349845886, -0.07751397043466568, 0.054120760411024094, 0.24173380434513092]} +{"t": 15.4687, "q": [-0.34565359354019165, 0.0027662781067192554, -0.007178056053817272, 0.6333295106887817, -0.288371205329895, 0.0034073451533913612, -0.30104032158851624, 0.000818123109638691, -0.007713731843978167, 0.6231967210769653, -0.34732553362846375, 0.013311389833688736, 0.006883434485644102, -0.07263554632663727, 0.0546736903488636, 0.01561544556170702, 0.29360154271125793, -0.1046941950917244, 1.2921751737594604, 0.10961970686912537, -0.19420437514781952, -0.3023739755153656, -0.013985591009259224, -0.5287919640541077, 0.6111355423927307, 0.7589370012283325, -0.07749000191688538, 0.05422861874103546, 0.2417098432779312]} +{"t": 15.4855, "q": [-0.3455342948436737, 0.002842977177351713, -0.007164664100855589, 0.6325454711914062, -0.2877773344516754, 0.0030277566984295845, -0.30134713649749756, 0.0008266451768577099, -0.007700339891016483, 0.6231881976127625, -0.347144216299057, 0.013004002161324024, 0.006254015490412712, -0.0709790363907814, 0.05429686978459358, 0.015375761315226555, 0.2930143177509308, -0.10476610064506531, 1.2929661273956299, 0.10964367538690567, -0.19419237971305847, -0.3023739755153656, -0.00854475237429142, -0.5155373811721802, 0.6171636581420898, 0.7658159732818604, -0.07743007689714432, 0.05420465022325516, 0.24194952845573425]} +{"t": 15.5022, "q": [-0.34541499614715576, 0.002877065446227789, -0.007178056053817272, 0.6316506862640381, -0.28695592284202576, 0.0028875754214823246, -0.3016453981399536, 0.0008607336785644293, -0.0076869479380548, 0.6231881976127625, -0.3468596637248993, 0.012499102391302586, 0.005812082905322313, -0.06945738196372986, 0.05387566611170769, 0.015315840020775795, 0.2921873927116394, -0.10486196726560593, 1.2939248085021973, 0.10967963188886642, -0.19414444267749786, -0.30238598585128784, -0.003954794257879257, -0.5025225281715393, 0.6221850514411926, 0.7735937237739563, -0.07746603339910507, 0.05427655577659607, 0.2419615089893341]} +{"t": 15.519, "q": [-0.34539794921875, 0.002894109580665827, -0.0071914480067789555, 0.6308155059814453, -0.28620094060897827, 0.0026747463271021843, -0.30190107226371765, 0.0008692557457834482, -0.007834259420633316, 0.6231711506843567, -0.3467028737068176, 0.012206494808197021, 0.005637987982481718, -0.06804031878709793, 0.05338186398148537, 0.014968297444283962, 0.2913125455379486, -0.10492189228534698, 1.2948836088180542, 0.10969161242246628, -0.1941564381122589, -0.3023979663848877, 0.0015219965716823936, -0.4907899796962738, 0.6248694658279419, 0.7785312533378601, -0.07745404541492462, 0.05434846132993698, 0.2419135719537735]} +{"t": 15.5357, "q": [-0.3454575836658478, 0.002919676247984171, -0.007338759023696184, 0.6301507949829102, -0.2857300639152527, 0.00240973848849535, -0.30218228697776794, 0.0008522115531377494, -0.008048529736697674, 0.6231541037559509, -0.3465504050254822, 0.011950312182307243, 0.005825474392622709, -0.06653101742267609, 0.05256976932287216, 0.014812502078711987, 0.2903418242931366, -0.10508967190980911, 1.2961418628692627, 0.10966764390468597, -0.1941564381122589, -0.30238598585128784, 0.00760998297482729, -0.47904542088508606, 0.6281891465187073, 0.7823541760444641, -0.07745404541492462, 0.05434846132993698, 0.24192555248737335]} +{"t": 15.5526, "q": [-0.34546610713005066, 0.0030134194530546665, -0.007539637386798859, 0.6298440098762512, -0.2854090631008148, 0.002086138352751732, -0.302250474691391, 0.0009118663729168475, -0.008289583027362823, 0.6231541037559509, -0.34648844599723816, 0.011826004832983017, 0.006026353221386671, -0.065073162317276, 0.05174868926405907, 0.015064171515405178, 0.28938308358192444, -0.10507768392562866, 1.2971965074539185, 0.10965566337108612, -0.19418039917945862, -0.3023979663848877, 0.012379704974591732, -0.46773234009742737, 0.6312211155891418, 0.7871598601341248, -0.07745404541492462, 0.05433647707104683, 0.24199746549129486]} +{"t": 15.5693, "q": [-0.3454575836658478, 0.003192384261637926, -0.0077672996558249, 0.6296991109848022, -0.28520911931991577, 0.0017546714516356587, -0.3023527264595032, 0.0010482202051207423, -0.00847707036882639, 0.623145580291748, -0.3464677333831787, 0.011774866841733456, 0.006267406977713108, -0.06344480067491531, 0.05075887590646744, 0.015303855761885643, 0.2882445752620697, -0.10507768392562866, 1.2983590364456177, 0.10960772633552551, -0.19416841864585876, -0.3023979663848877, 0.016334498301148415, -0.45615556836128235, 0.6335340738296509, 0.79311603307724, -0.07743007689714432, 0.05430052429437637, 0.24187761545181274]} +{"t": 15.5861, "q": [-0.3455769121646881, 0.003209428396075964, -0.008182448334991932, 0.6294946074485779, -0.285088449716568, 0.0015891138464212418, -0.30236977338790894, 0.0010993528412654996, -0.008825259283185005, 0.6231370568275452, -0.3464471101760864, 0.011738273315131664, 0.00672273151576519, -0.06178055703639984, 0.04959583282470703, 0.01555552426725626, 0.2864948809146881, -0.1050417348742485, 1.2991019487380981, 0.10964367538690567, -0.19418039917945862, -0.3023979663848877, 0.020013656467199326, -0.4463284909725189, 0.6364462375640869, 0.7983531355857849, -0.07740610837936401, 0.05440838262438774, 0.24175778031349182]} +{"t": 15.6028, "q": [-0.34560248255729675, 0.0032009058631956577, -0.008343150839209557, 0.6294008493423462, -0.2850345969200134, 0.001538873533718288, -0.3023782968521118, 0.0010993528412654996, -0.0089993542060256, 0.6231370568275452, -0.346434623003006, 0.011701783165335655, 0.007084312848746777, -0.06019014120101929, 0.04839864373207092, 0.01575925573706627, 0.28433772921562195, -0.10492189228534698, 1.2999169826507568, 0.10959573835134506, -0.19418039917945862, -0.3023260533809662, 0.022590264678001404, -0.43916192650794983, 0.6392266154289246, 0.8020442724227905, -0.07743007689714432, 0.05440838262438774, 0.24105070531368256]} +{"t": 15.6195, "q": [-0.345585435628891, 0.00318386172875762, -0.00839671865105629, 0.6293838024139404, -0.285013884305954, 0.0015173422871157527, -0.3023868203163147, 0.0010993528412654996, -0.008945786394178867, 0.6231541037559509, -0.3464345335960388, 0.01168723776936531, 0.007231623865664005, -0.058517854660749435, 0.047075625509023666, 0.016118783503770828, 0.28231239318847656, -0.10483799874782562, 1.301031470298767, 0.1095597892999649, -0.1941564381122589, -0.30190661549568176, 0.023932497948408127, -0.43338555097579956, 0.641359806060791, 0.8062747120857239, -0.07745404541492462, 0.0544443354010582, 0.24035562574863434]} +{"t": 15.6363, "q": [-0.3455428183078766, 0.0031753401271998882, -0.008369934745132923, 0.6294008493423462, -0.28499725461006165, 0.001517465803772211, -0.3023868203163147, 0.001133441342972219, -0.008892218582332134, 0.6231711506843567, -0.3464139997959137, 0.011665189638733864, 0.007218231912702322, -0.05709065496921539, 0.045791901648044586, 0.01649029366672039, 0.28074246644973755, -0.10480204969644547, 1.302229881286621, 0.10952383279800415, -0.1941564381122589, -0.3010796904563904, 0.024327976629137993, -0.4300778806209564, 0.6415155529975891, 0.8105770349502563, -0.07743007689714432, 0.054492272436618805, 0.23943284153938293]} +{"t": 15.653, "q": [-0.3455342948436737, 0.003166817594319582, -0.008343150839209557, 0.6294008493423462, -0.28497231006622314, 0.0015176060842350125, -0.3023953437805176, 0.001133441342972219, -0.008825259283185005, 0.6231881976127625, -0.34639763832092285, 0.01165047474205494, 0.007137880194932222, -0.05587814003229141, 0.04458670690655708, 0.016682041808962822, 0.27959197759628296, -0.1047181636095047, 1.303200602531433, 0.10954780131578445, -0.19414444267749786, -0.3005044460296631, 0.024351945146918297, -0.42967042326927185, 0.6415395736694336, 0.8135251402854919, -0.07746603339910507, 0.05450425669550896, 0.2389175146818161]} +{"t": 15.6697, "q": [-0.3455257713794708, 0.0031327293254435062, -0.008276191540062428, 0.6294008493423462, -0.28495165705680847, 0.001481632818467915, -0.3023953437805176, 0.001141963410191238, -0.008785083889961243, 0.6231881976127625, -0.34628617763519287, 0.01143835112452507, 0.007044136989861727, -0.05499288812279701, 0.04350070282816887, 0.016706010326743126, 0.2786092758178711, -0.10467022657394409, 1.3042073249816895, 0.1095597892999649, -0.194132462143898, -0.3001209497451782, 0.02431599237024784, -0.4305093288421631, 0.6416473984718323, 0.8166530728340149, -0.07744206488132477, 0.05450425669550896, 0.2389414757490158]} +{"t": 15.6866, "q": [-0.34546610713005066, 0.0031242067925632, -0.008195839822292328, 0.6294434666633606, -0.2849350869655609, 0.0014672782272100449, -0.3023953437805176, 0.0011249192757532, -0.008771691471338272, 0.6232393383979797, -0.3462657332420349, 0.011430865153670311, 0.006950393784791231, -0.05441854149103165, 0.04268461465835571, 0.016562199220061302, 0.27775838971138, -0.10462228953838348, 1.3051540851593018, 0.1095597892999649, -0.1941085010766983, -0.2995576858520508, 0.0243759136646986, -0.43197140097618103, 0.6415635347366333, 0.8187862634658813, -0.07741809636354446, 0.0544683039188385, 0.23903734982013702]} +{"t": 15.7034, "q": [-0.345440536737442, 0.003141250927001238, -0.008195839822292328, 0.6294008493423462, -0.28492262959480286, 0.001460136380046606, -0.30241239070892334, 0.0011590076610445976, -0.008798475377261639, 0.6232734322547913, -0.3462531864643097, 0.011394372209906578, 0.00676290737465024, -0.05407485365867615, 0.041967980563640594, 0.01647830940783024, 0.27670377492904663, -0.10456236451864243, 1.3060648441314697, 0.10954780131578445, -0.1940845251083374, -0.29828736186027527, 0.02485528402030468, -0.43278631567955017, 0.641671359539032, 0.8206437826156616, -0.07734619081020355, 0.05445631965994835, 0.2391931563615799]} +{"t": 15.7201, "q": [-0.345440536737442, 0.003192384261637926, -0.008222623728215694, 0.6294008493423462, -0.2848978340625763, 0.001416950486600399, -0.30245500802993774, 0.0012697952333837748, -0.008758299984037876, 0.6233075261116028, -0.34623658657073975, 0.011365089565515518, 0.006695947609841824, -0.0538703054189682, 0.04151403158903122, 0.016442356631159782, 0.275816947221756, -0.10456236451864243, 1.3069037199020386, 0.10954780131578445, -0.1940845251083374, -0.29625004529953003, 0.025861958041787148, -0.43296608328819275, 0.6416473984718323, 0.8226211667060852, -0.0773102343082428, 0.05439639836549759, 0.23934894800186157]} +{"t": 15.737, "q": [-0.3454575836658478, 0.0032605607993900776, -0.008209232240915298, 0.6294008493423462, -0.2848854660987854, 0.001395366620272398, -0.30254021286964417, 0.0013976269401609898, -0.00873151607811451, 0.6234012842178345, -0.34622830152511597, 0.011350457556545734, 0.006347758695483208, -0.05361746624112129, 0.04134375974535942, 0.016646089032292366, 0.27542147040367126, -0.10457435250282288, 1.307682752609253, 0.1095597892999649, -0.19407254457473755, -0.29385319352149963, 0.02714427001774311, -0.43319380283355713, 0.6414676308631897, 0.8247543573379517, -0.07729825377464294, 0.05442036688327789, 0.23938490450382233]} +{"t": 15.7537, "q": [-0.34546610713005066, 0.0032946490682661533, -0.008169055916368961, 0.6293497085571289, -0.2848317623138428, 0.0013018002500757575, -0.3028044104576111, 0.001448759576305747, -0.00865116436034441, 0.6235290765762329, -0.3462158739566803, 0.011328510008752346, 0.005972785409539938, -0.0532374270260334, 0.04115425795316696, 0.017017599195241928, 0.27493011951446533, -0.10450244694948196, 1.3085695505142212, 0.1095358207821846, -0.1940605640411377, -0.291168749332428, 0.02883404679596424, -0.43326568603515625, 0.6413238048553467, 0.8274268507957458, -0.07720237970352173, 0.05433647707104683, 0.23939688503742218]} +{"t": 15.7705, "q": [-0.34547463059425354, 0.0033457824029028416, -0.008128880523145199, 0.6293326616287231, -0.2847781181335449, 0.001193809905089438, -0.3029322326183319, 0.0015510249650105834, -0.008530637249350548, 0.6236569285392761, -0.346120685338974, 0.011189278215169907, 0.005678163841366768, -0.052916042506694794, 0.041075702756643295, 0.017305221408605576, 0.27415114641189575, -0.10449045896530151, 1.309336543083191, 0.10952383279800415, -0.19407254457473755, -0.2885441780090332, 0.030116358771920204, -0.43324172496795654, 0.6411440372467041, 0.8313577175140381, -0.07719039171934128, 0.054312508553266525, 0.2394208461046219]} +{"t": 15.7875, "q": [-0.34550872445106506, 0.003405436407774687, -0.00806192122399807, 0.6293582320213318, -0.2847409248352051, 0.0011290222173556685, -0.3031623363494873, 0.0016532903537154198, -0.008450286462903023, 0.6237762570381165, -0.346079021692276, 0.011086991056799889, 0.005343366414308548, -0.052557360380887985, 0.04098411649465561, 0.017496969550848007, 0.2737436592578888, -0.10445450991392136, 1.310091495513916, 0.1095118522644043, -0.19404856860637665, -0.286422997713089, 0.03172224387526512, -0.43316981196403503, 0.6409763097763062, 0.8354323506355286, -0.07711848616600037, 0.05428854003548622, 0.23939688503742218]} +{"t": 15.8044, "q": [-0.345585435628891, 0.003439525607973337, -0.007874434813857079, 0.6293326616287231, -0.2847120463848114, 0.0010641997214406729, -0.303486168384552, 0.0017044231062754989, -0.008262800052762032, 0.6238359212875366, -0.3460417091846466, 0.011021128855645657, 0.0045130690559744835, -0.05214725807309151, 0.04078551009297371, 0.017556890845298767, 0.2735639214515686, -0.10446649044752121, 1.3107866048812866, 0.1095118522644043, -0.1940845251083374, -0.28503280878067017, 0.03375956416130066, -0.4328462481498718, 0.6407126188278198, 0.8386560678482056, -0.07689078897237778, 0.054252587258815765, 0.23930101096630096]} +{"t": 15.8211, "q": [-0.34569621086120605, 0.003456569742411375, -0.007660164497792721, 0.629341185092926, -0.28470373153686523, 0.0010642524575814605, -0.3038015067577362, 0.0017555557424202561, -0.007941394113004208, 0.6239551901817322, -0.3460003435611725, 0.010962496511638165, 0.0038702578749507666, -0.05165529623627663, 0.04051876813173294, 0.01752093806862831, 0.273384153842926, -0.10447847843170166, 1.3110861778259277, 0.1095118522644043, -0.19407254457473755, -0.28415796160697937, 0.03719903528690338, -0.4331578314304352, 0.6398138403892517, 0.8403458595275879, -0.07672300934791565, 0.054120760411024094, 0.239169180393219]} +{"t": 15.8378, "q": [-0.34578144550323486, 0.003431003075093031, -0.007405718322843313, 0.6293582320213318, -0.2847079336643219, 0.0010570051381364465, -0.30405715107917786, 0.0017470336752012372, -0.007593204732984304, 0.624040424823761, -0.34597963094711304, 0.010925916023552418, 0.003173879347741604, -0.051021598279476166, 0.04018592834472656, 0.017473001033067703, 0.2729886770248413, -0.10453839600086212, 1.3114217519760132, 0.10957176983356476, -0.19404856860637665, -0.28334304690361023, 0.04122573509812355, -0.43333759903907776, 0.6388071179389954, 0.8415802121162415, -0.07657919824123383, 0.05404885485768318, 0.23903734982013702]} +{"t": 15.8546, "q": [-0.3458240330219269, 0.003431003075093031, -0.007070920895785093, 0.6293582320213318, -0.28470370173454285, 0.0010786944767460227, -0.30427873134613037, 0.0017470336752012372, -0.007271799258887768, 0.6240659952163696, -0.34597131609916687, 0.010911266319453716, 0.002959609031677246, -0.05035862326622009, 0.03978819027543068, 0.017425063997507095, 0.27253326773643494, -0.10455038398504257, 1.3116135597229004, 0.10958375781774521, -0.19404856860637665, -0.28274381160736084, 0.04649879410862923, -0.4333495795726776, 0.6371293663978577, 0.8418798446655273, -0.0763874500989914, 0.05396496504545212, 0.23888155817985535]} +{"t": 15.8713, "q": [-0.34584107995033264, 0.003388392273336649, -0.006843258626759052, 0.6293838024139404, -0.284712016582489, 0.0010786596685647964, -0.3043128252029419, 0.0017129451734945178, -0.006963785737752914, 0.6240574717521667, -0.34595099091529846, 0.010932867415249348, 0.0027051628567278385, -0.049799367785453796, 0.03948062285780907, 0.0174490325152874, 0.2720898389816284, -0.10459832102060318, 1.3119251728057861, 0.10958375781774521, -0.1940365880727768, -0.2821565866470337, 0.05191566422581673, -0.43398475646972656, 0.6342411637306213, 0.8434497714042664, -0.07629157602787018, 0.05391702800989151, 0.23872576653957367]} +{"t": 15.888, "q": [-0.34583255648612976, 0.0033798706717789173, -0.006642380263656378, 0.6294008493423462, -0.28471195697784424, 0.0010931016877293587, -0.30443212389945984, 0.001695900922641158, -0.006709339562803507, 0.6240574717521667, -0.3459264039993286, 0.010932626202702522, 0.0025578520726412535, -0.04950135201215744, 0.03928243741393089, 0.017425063997507095, 0.2718501687049866, -0.10467022657394409, 1.3126921653747559, 0.10959573835134506, -0.1940365880727768, -0.28171318769454956, 0.05711681768298149, -0.43483564257621765, 0.630693793296814, 0.8454990983009338, -0.07624363899230957, 0.05392901226878166, 0.23871378600597382]} +{"t": 15.9048, "q": [-0.34583255648612976, 0.0033372598700225353, -0.0065620290115475655, 0.6294349431991577, -0.28470784425735474, 0.0010859071044251323, -0.30451735854148865, 0.0017044231062754989, -0.006575420964509249, 0.6240574717521667, -0.34581899642944336, 0.010800536721944809, 0.0025712440256029367, -0.04937471076846123, 0.039196792989969254, 0.017293237149715424, 0.2717662751674652, -0.1046941950917244, 1.3135429620742798, 0.10959573835134506, -0.1940365880727768, -0.2814016044139862, 0.062377892434597015, -0.4359501600265503, 0.6283209323883057, 0.847284734249115, -0.07618372142314911, 0.05392901226878166, 0.23868981003761292]} +{"t": 15.9215, "q": [-0.3458581268787384, 0.0033202157355844975, -0.0065620290115475655, 0.6294946074485779, -0.28470370173454285, 0.0010786944767460227, -0.3045429289340973, 0.0017129451734945178, -0.006602204404771328, 0.6240574717521667, -0.345761239528656, 0.010741748847067356, 0.002624811604619026, -0.049375493079423904, 0.03912144526839256, 0.0171494260430336, 0.27170634269714355, -0.10465823858976364, 1.3145616054534912, 0.10954780131578445, -0.19404856860637665, -0.2812098562717438, 0.06835801899433136, -0.43711262941360474, 0.6270865797996521, 0.8492381572723389, -0.07612379640340805, 0.05390504375100136, 0.23868981003761292]} +{"t": 15.9386, "q": [-0.3459007441997528, 0.0033287382684648037, -0.006548637058585882, 0.629571259021759, -0.28470370173454285, 0.0010786944767460227, -0.3045429289340973, 0.0017129451734945178, -0.0065620290115475655, 0.6240574717521667, -0.3456830680370331, 0.010689981281757355, 0.002504284493625164, -0.04942149668931961, 0.03902590274810791, 0.017173394560813904, 0.27170634269714355, -0.10464625805616379, 1.315676212310791, 0.10954780131578445, -0.1940605640411377, -0.2808862626552582, 0.0742902159690857, -0.4380953311920166, 0.6265233159065247, 0.8516589403152466, -0.0761118158698082, 0.05391702800989151, 0.23870180547237396]} +{"t": 15.9555, "q": [-0.3459007441997528, 0.0033202157355844975, -0.006575420964509249, 0.6296138763427734, -0.28470370173454285, 0.0010786944767460227, -0.3045429289340973, 0.0017214673571288586, -0.0065620290115475655, 0.624040424823761, -0.34558841586112976, 0.010623512789607048, 0.0025578520726412535, -0.04950520396232605, 0.03891494497656822, 0.0171494260430336, 0.27170634269714355, -0.10459832102060318, 1.316527009010315, 0.1095118522644043, -0.1940845251083374, -0.28059864044189453, 0.08015049993991852, -0.439293771982193, 0.625456690788269, 0.8535165190696716, -0.07612379640340805, 0.05391702800989151, 0.23870180547237396]} +{"t": 15.9723, "q": [-0.34593483805656433, 0.003311693202704191, -0.0065620290115475655, 0.6297502517700195, -0.2846953272819519, 0.0010931892320513725, -0.30450883507728577, 0.0016873788554221392, -0.006575420964509249, 0.624040424823761, -0.34558454155921936, 0.010659851133823395, 0.002758730435743928, -0.04946913197636604, 0.03877933695912361, 0.016933709383010864, 0.27161046862602234, -0.10459832102060318, 1.3171741962432861, 0.1095358207821846, -0.1941085010766983, -0.2803829312324524, 0.08717325329780579, -0.4409356117248535, 0.6244380474090576, 0.8546190857887268, -0.07612379640340805, 0.05391702800989151, 0.23874974250793457]} +{"t": 15.989, "q": [-0.346002995967865, 0.0032605607993900776, -0.006588812451809645, 0.6298440098762512, -0.2846828103065491, 0.0011005073320120573, -0.3044491708278656, 0.0016192019684240222, -0.006682556122541428, 0.6240148544311523, -0.34555602073669434, 0.010681365616619587, 0.0030801359098404646, -0.04939619079232216, 0.03858358785510063, 0.016694026067852974, 0.2715745270252228, -0.10457435250282288, 1.317497730255127, 0.10954780131578445, -0.194132462143898, -0.28026309609413147, 0.09474728256464005, -0.4425654411315918, 0.6244380474090576, 0.8569799661636353, -0.07627959549427032, 0.05392901226878166, 0.23972046375274658]} +{"t": 16.0057, "q": [-0.34607118368148804, 0.003226472530514002, -0.006588812451809645, 0.629878044128418, -0.28469112515449524, 0.0011004545958712697, -0.3044406473636627, 0.001568069215863943, -0.006709339562803507, 0.6240063309669495, -0.3455316424369812, 0.010710214264690876, 0.0033077981788665056, -0.04942932724952698, 0.03829025477170944, 0.01667005755007267, 0.271442711353302, -0.10458633303642273, 1.3178093433380127, 0.1095358207821846, -0.194132462143898, -0.28014326095581055, 0.10293251276016235, -0.4436919689178467, 0.6244620084762573, 0.8603115677833557, -0.07630356401205063, 0.05392901226878166, 0.2403915673494339]} +{"t": 16.0224, "q": [-0.3460967540740967, 0.003209428396075964, -0.006588812451809645, 0.6298950910568237, -0.28468695282936096, 0.0011077020317316055, -0.3044491708278656, 0.001508414396084845, -0.006736123468726873, 0.6239978075027466, -0.34552761912345886, 0.010717444121837616, 0.0033881496638059616, -0.049551643431186676, 0.038079142570495605, 0.01678990013897419, 0.27135881781578064, -0.10458633303642273, 1.3181688785552979, 0.10952383279800415, -0.194132462143898, -0.2799515128135681, 0.1107342392206192, -0.4447585642337799, 0.6245698928833008, 0.8632836937904358, -0.0763874500989914, 0.053952980786561966, 0.2409907877445221]} +{"t": 16.0392, "q": [-0.34611380100250244, 0.003192384261637926, -0.006588812451809645, 0.6299206614494324, -0.28469109535217285, 0.0011149145429953933, -0.3044576942920685, 0.001508414396084845, -0.006642380263656378, 0.6239551901817322, -0.34548673033714294, 0.010731574147939682, 0.0032274469267576933, -0.04965845122933388, 0.03791574388742447, 0.016945693641901016, 0.27135881781578064, -0.10457435250282288, 1.31874418258667, 0.10952383279800415, -0.19414444267749786, -0.27977174520492554, 0.11932693421840668, -0.4457292854785919, 0.6246058344841003, 0.8663635849952698, -0.0764114186167717, 0.053940996527671814, 0.241242453455925]} +{"t": 16.0559, "q": [-0.34611380100250244, 0.003192384261637926, -0.006588812451809645, 0.6299377083778381, -0.284699410200119, 0.0011148618068546057, -0.30446621775627136, 0.001508414396084845, -0.0066289883106946945, 0.6239296197891235, -0.3454420268535614, 0.01078200712800026, 0.003254230599850416, -0.04974238574504852, 0.03778601437807083, 0.016825852915644646, 0.27133485674858093, -0.10455038398504257, 1.319103717803955, 0.1095118522644043, -0.19418039917945862, -0.27961593866348267, 0.12812335789203644, -0.4461846947669983, 0.6247256994247437, 0.8696832656860352, -0.07635150104761124, 0.053940996527671814, 0.2413383275270462]} +{"t": 16.0727, "q": [-0.3461734354496002, 0.0032009058631956577, -0.006602204404771328, 0.6299377083778381, -0.2846868932247162, 0.0011221618624404073, -0.30446621775627136, 0.0015169365797191858, -0.006655772216618061, 0.6239125728607178, -0.3454298973083496, 0.01080369483679533, 0.0033077981788665056, -0.04969152435660362, 0.037632204592227936, 0.016526246443390846, 0.27131086587905884, -0.10455038398504257, 1.3192474842071533, 0.1095118522644043, -0.19419237971305847, -0.27947214245796204, 0.13739913702011108, -0.44636446237564087, 0.6248335242271423, 0.8740215301513672, -0.0763874500989914, 0.05391702800989151, 0.2413862645626068]} +{"t": 16.0895, "q": [-0.3461649417877197, 0.003192384261637926, -0.006588812451809645, 0.6299547553062439, -0.28469109535217285, 0.0011149145429953933, -0.3044576942920685, 0.0015254586469382048, -0.006655772216618061, 0.6239040493965149, -0.3454136848449707, 0.010832631029188633, 0.003240838646888733, -0.04968651384115219, 0.03740164265036583, 0.016502277925610542, 0.2712629437446594, -0.10457435250282288, 1.3193793296813965, 0.1095118522644043, -0.19418039917945862, -0.2793762683868408, 0.14614762365818024, -0.4463045299053192, 0.6250132918357849, 0.8788511753082275, -0.07642340660095215, 0.05391702800989151, 0.24143420159816742]} +{"t": 16.1062, "q": [-0.34614789485931396, 0.0032009058631956577, -0.006575420964509249, 0.629946231842041, -0.2846868932247162, 0.0011221618624404073, -0.3044832646846771, 0.0015169365797191858, -0.006588812451809645, 0.6239040493965149, -0.34540146589279175, 0.010839773342013359, 0.002946217078715563, -0.049629148095846176, 0.03714893385767937, 0.016574183478951454, 0.2712629437446594, -0.10458633303642273, 1.3196189403533936, 0.1095118522644043, -0.19418039917945862, -0.27924442291259766, 0.15360181033611298, -0.44624459743499756, 0.6252050399780273, 0.884495735168457, -0.07637546956539154, 0.053893059492111206, 0.24147015810012817]} +{"t": 16.123, "q": [-0.3461308479309082, 0.003192384261637926, -0.006575420964509249, 0.629946231842041, -0.28469520807266235, 0.0011221091262996197, -0.30452588200569153, 0.0015254586469382048, -0.0065620290115475655, 0.6239040493965149, -0.34539327025413513, 0.01083968672901392, 0.00287925754673779, -0.04952583089470863, 0.036972660571336746, 0.016586167737841606, 0.27117905020713806, -0.10459832102060318, 1.3197028636932373, 0.1095358207821846, -0.19418039917945862, -0.2791605293750763, 0.16177505254745483, -0.44617271423339844, 0.6252050399780273, 0.8888100385665894, -0.07639943808317184, 0.05392901226878166, 0.24150609970092773]} +{"t": 16.1399, "q": [-0.3461308479309082, 0.003192384261637926, -0.006575420964509249, 0.629946231842041, -0.28469520807266235, 0.0011221091262996197, -0.30455145239830017, 0.0015169365797191858, -0.006575420964509249, 0.6239040493965149, -0.34539318084716797, 0.010825141333043575, 0.002852473873645067, -0.049363117665052414, 0.03673217073082924, 0.016502277925610542, 0.27105921506881714, -0.10462228953838348, 1.319786787033081, 0.10954780131578445, -0.19418039917945862, -0.2791126072406769, 0.1696486920118332, -0.44612476229667664, 0.6252529621124268, 0.8920937180519104, -0.0764114186167717, 0.053952980786561966, 0.24148213863372803]} +{"t": 16.1566, "q": [-0.34611380100250244, 0.003226472530514002, -0.006588812451809645, 0.629946231842041, -0.28469520807266235, 0.0011221091262996197, -0.3045429289340973, 0.0015510249650105834, -0.006588812451809645, 0.623895525932312, -0.3453683853149414, 0.01079577300697565, 0.002839081920683384, -0.049306709319353104, 0.03637564927339554, 0.01649029366672039, 0.2709753215312958, -0.10461030155420303, 1.3198107481002808, 0.1095118522644043, -0.19418039917945862, -0.2790526747703552, 0.17711485922336578, -0.4461127817630768, 0.6252409815788269, 0.8955092430114746, -0.07637546956539154, 0.05392901226878166, 0.24151809513568878]} +{"t": 16.1734, "q": [-0.34611380100250244, 0.003269083332270384, -0.006642380263656378, 0.6299377083778381, -0.28469109535217285, 0.0011149145429953933, -0.30455145239830017, 0.0015510249650105834, -0.006642380263656378, 0.6238870024681091, -0.3453683853149414, 0.01079577300697565, 0.002839081920683384, -0.04923639073967934, 0.03591558337211609, 0.016574183478951454, 0.27093935012817383, -0.10463427007198334, 1.319942593574524, 0.10954780131578445, -0.19416841864585876, -0.27894482016563416, 0.18388594686985016, -0.44612476229667664, 0.6252649426460266, 0.8992483019828796, -0.07633951306343079, 0.05391702800989151, 0.24149411916732788]} +{"t": 16.1902, "q": [-0.3461308479309082, 0.003354304004460573, -0.006655772216618061, 0.6299377083778381, -0.28468695282936096, 0.0011077020317316055, -0.30455994606018066, 0.0016277240356430411, -0.006669164169579744, 0.6238870024681091, -0.34536829590797424, 0.010781227611005306, 0.0027051628567278385, -0.04925744608044624, 0.03533913940191269, 0.016694026067852974, 0.2708914279937744, -0.10462228953838348, 1.3201223611831665, 0.10954780131578445, -0.19416841864585876, -0.2788849174976349, 0.18923091888427734, -0.4460888206958771, 0.6253608465194702, 0.9040420055389404, -0.07637546956539154, 0.053952980786561966, 0.24151809513568878]} +{"t": 16.2069, "q": [-0.3461308479309082, 0.0033798706717789173, -0.006709339562803507, 0.6299377083778381, -0.28467869758605957, 0.001093312632292509, -0.3046366572380066, 0.0016703346045687795, -0.006669164169579744, 0.623895525932312, -0.34535181522369385, 0.010766508989036083, 0.002731946762651205, -0.04914412647485733, 0.034681688994169235, 0.016825852915644646, 0.27078357338905334, -0.10465823858976364, 1.3203380107879639, 0.10954780131578445, -0.194132462143898, -0.2788369655609131, 0.19396468997001648, -0.44606485962867737, 0.6253728270530701, 0.9088956117630005, -0.07636348158121109, 0.053952980786561966, 0.24151809513568878]} +{"t": 16.2236, "q": [-0.3461734354496002, 0.003405436407774687, -0.006682556122541428, 0.6299036145210266, -0.2846579849720001, 0.0010717813856899738, -0.3046877980232239, 0.0016703346045687795, -0.006682556122541428, 0.6238870024681091, -0.34534746408462524, 0.010730084031820297, 0.0029194331727921963, -0.04898054897785187, 0.03375590965151787, 0.016825852915644646, 0.27050793170928955, -0.10468220710754395, 1.3205417394638062, 0.1095358207821846, -0.194132462143898, -0.2787650525569916, 0.19869846105575562, -0.4454896152019501, 0.6254087686538696, 0.9127784967422485, -0.0763874500989914, 0.05396496504545212, 0.24151809513568878]} +{"t": 16.2405, "q": [-0.3462160527706146, 0.003371348138898611, -0.006736123468726873, 0.6298865675926208, -0.28464972972869873, 0.0010573741747066379, -0.3046877980232239, 0.0016618125373497605, -0.006749515421688557, 0.6238870024681091, -0.34533512592315674, 0.010722680948674679, 0.0031604873947799206, -0.04864621162414551, 0.03264128789305687, 0.016897758468985558, 0.2700765132904053, -0.104742132127285, 1.3208054304122925, 0.10954780131578445, -0.19412048161029816, -0.2787051498889923, 0.20324046909809113, -0.44444698095321655, 0.6254087686538696, 0.9162299633026123, -0.07633951306343079, 0.05396496504545212, 0.24151809513568878]} +{"t": 16.2572, "q": [-0.3462160527706146, 0.003388392273336649, -0.00676290737465024, 0.6298865675926208, -0.2846580445766449, 0.0010573393665254116, -0.3046451807022095, 0.001636246219277382, -0.00676290737465024, 0.6238359212875366, -0.3453434109687805, 0.010737312957644463, 0.003347973804920912, -0.048200823366642, 0.031306035816669464, 0.017185378819704056, 0.26953721046447754, -0.10475411266088486, 1.3211649656295776, 0.10954780131578445, -0.19412048161029816, -0.27864521741867065, 0.20659606158733368, -0.44299688935279846, 0.6256124973297119, 0.9205563068389893, -0.07637546956539154, 0.05392901226878166, 0.24149411916732788]} +{"t": 16.2739, "q": [-0.346190482378006, 0.003388392273336649, -0.006736123468726873, 0.6298865675926208, -0.2846621572971344, 0.0010645340662449598, -0.30461961030960083, 0.001636246219277382, -0.006695947609841824, 0.623810350894928, -0.34533926844596863, 0.010729997418820858, 0.0034015413839370012, -0.047943949699401855, 0.029874609783291817, 0.017532922327518463, 0.26908180117607117, -0.10477808117866516, 1.3219438791275024, 0.10954780131578445, -0.19412048161029816, -0.27848944067955017, 0.2088610827922821, -0.44122323393821716, 0.6257563233375549, 0.925433874130249, -0.0763874500989914, 0.053940996527671814, 0.24151809513568878]} +{"t": 16.2907, "q": [-0.3462160527706146, 0.0033798706717789173, -0.00676290737465024, 0.6298950910568237, -0.2846621572971344, 0.0010645340662449598, -0.3046281337738037, 0.0016106797847896814, -0.006695947609841824, 0.6237847805023193, -0.345355749130249, 0.010744733735918999, 0.0035354604478925467, -0.047676827758550644, 0.028692565858364105, 0.017532922327518463, 0.2686264216899872, -0.10477808117866516, 1.323310136795044, 0.1095597892999649, -0.1940845251083374, -0.27834561467170715, 0.21041902899742126, -0.4394136071205139, 0.6257683038711548, 0.9291609525680542, -0.07637546956539154, 0.05396496504545212, 0.24153007566928864]} diff --git a/Data/G1/photo_G3.jsonl b/Data/G1/photo_G3.jsonl new file mode 100644 index 0000000..aa0ec72 --- /dev/null +++ b/Data/G1/photo_G3.jsonl @@ -0,0 +1,892 @@ +{"meta": {"hz": 60.0, "motors": 29}} +{"t": 0.0, "q": [-0.3735209107398987, -0.008619267493486404, -0.0011650949018076062, 0.6316165924072266, -0.2772315740585327, 0.014371593482792377, -0.32289955019950867, -0.0027867318131029606, 0.0007365542696788907, 0.6244409680366516, -0.3461686670780182, 0.01578720472753048, 0.0026649872306734324, 0.012672563083469868, -0.031235836446285248, 0.2886880040168762, 0.2133791297674179, -0.0055486964993178844, 0.9772176742553711, 0.14439792931079865, 0.0406145378947258, -0.06298908591270447, 0.292367160320282, -0.22500382363796234, 0.02304566465318203, 0.9835453629493713, -0.17585651576519012, 0.015279887244105339, 0.031075095757842064]} +{"t": 0.0167, "q": [-0.37353795766830444, -0.00862779002636671, -0.001191878691315651, 0.6315995454788208, -0.2772274315357208, 0.014364399015903473, -0.32290807366371155, -0.002769687445834279, 0.000709770480170846, 0.6243727803230286, -0.34616464376449585, 0.015794433653354645, 0.0033077981788665056, 0.013645075261592865, -0.03134104609489441, 0.28760942816734314, 0.21140173077583313, -0.005261074751615524, 0.9783561825752258, 0.14439792931079865, 0.040890175849199295, -0.06325273960828781, 0.29164811968803406, -0.22380541265010834, 0.02328534983098507, 0.9850673675537109, -0.17595238983631134, 0.015363777056336403, 0.031254857778549194]} +{"t": 0.0335, "q": [-0.3735550045967102, -0.00862779002636671, -0.0011784868547692895, 0.6316251158714294, -0.2772274315357208, 0.014364399015903473, -0.3229251205921173, -0.002778209513053298, 0.0007231623749248683, 0.6244239211082458, -0.3461605906486511, 0.01580166444182396, 0.0035220684949308634, 0.013774260878562927, -0.03137650340795517, 0.28678250312805176, 0.20999957621097565, -0.00512924836948514, 0.9792670011520386, 0.14439792931079865, 0.0412377193570137, -0.06337258219718933, 0.29097700119018555, -0.2226429432630539, 0.02335725538432598, 0.9865654110908508, -0.17600032687187195, 0.015399729833006859, 0.031326763331890106]} +{"t": 0.0502, "q": [-0.3735464811325073, -0.00862779002636671, -0.0011517030652612448, 0.6316165924072266, -0.2772149443626404, 0.014357260428369045, -0.3229336440563202, -0.0027867318131029606, 0.0007231623749248683, 0.6244239211082458, -0.34616878628730774, 0.015801750123500824, 0.003655987558886409, 0.013964362442493439, -0.03152047470211983, 0.2860395014286041, 0.2075428068637848, -0.005201153922826052, 0.9797223806381226, 0.14439792931079865, 0.041261687874794006, -0.06343250721693039, 0.2903897762298584, -0.22043783962726593, 0.023848608136177063, 0.9878596663475037, -0.1760362833738327, 0.015423697419464588, 0.031494542956352234]} +{"t": 0.067, "q": [-0.37349534034729004, -0.008636312559247017, -0.0011517030652612448, 0.6316165924072266, -0.277214914560318, 0.014371688477694988, -0.32286545634269714, -0.0027952538803219795, 0.0007365542696788907, 0.6244324445724487, -0.34616464376449585, 0.015794433653354645, 0.0037229470908641815, 0.014093729667365551, -0.03169337660074234, 0.28556013107299805, 0.20478643476963043, -0.005380917340517044, 0.9799500703811646, 0.14437396824359894, 0.04122573509812355, -0.06354036182165146, 0.28998228907585144, -0.21783725917339325, 0.024411866441369057, 0.9888184070587158, -0.1759883463382721, 0.01541171409189701, 0.03163835406303406]} +{"t": 0.084, "q": [-0.37348681688308716, -0.00862779002636671, -0.0011650949018076062, 0.6316165924072266, -0.277214914560318, 0.014371688477694988, -0.3228313624858856, -0.002769687445834279, 0.0007365542696788907, 0.6244409680366516, -0.34616464376449585, 0.015794433653354645, 0.0037229470908641815, 0.01422316487878561, -0.031925275921821594, 0.28516465425491333, 0.20158664882183075, -0.0055007594637572765, 0.9802736639976501, 0.14439792931079865, 0.041249703615903854, -0.06358829885721207, 0.2895388901233673, -0.21470938622951508, 0.025106951594352722, 0.9896093606948853, -0.176012322306633, 0.015387745574116707, 0.03185407072305679]} +{"t": 0.1007, "q": [-0.3734697997570038, -0.008636312559247017, -0.0011383111122995615, 0.6316251158714294, -0.27722328901290894, 0.014357204549014568, -0.3228398859500885, -0.0027867318131029606, 0.0007365542696788907, 0.6244494915008545, -0.3461605906486511, 0.01580166444182396, 0.0037899063900113106, 0.014261285774409771, -0.032048504799604416, 0.28488901257514954, 0.1985546499490738, -0.005560680292546749, 0.9805852770805359, 0.1443859487771988, 0.041249703615903854, -0.06364822387695312, 0.2892991900444031, -0.2125042825937271, 0.025802036747336388, 0.9898970127105713, -0.1760362833738327, 0.015363777056336403, 0.031925976276397705]} +{"t": 0.1175, "q": [-0.373452752828598, -0.008636312559247017, -0.0011383111122995615, 0.6316165924072266, -0.27721908688545227, 0.01436445489525795, -0.3228398859500885, -0.002778209513053298, 0.0007633380591869354, 0.6244409680366516, -0.34617292881011963, 0.015809066593647003, 0.003816690295934677, 0.014367717318236828, -0.03210829198360443, 0.28463733196258545, 0.19543874263763428, -0.0055486964993178844, 0.9809328317642212, 0.14439792931079865, 0.0412377193570137, -0.06366020441055298, 0.2890715003013611, -0.2108864188194275, 0.026269420981407166, 0.9901726245880127, -0.1759643852710724, 0.01541171409189701, 0.032045818865299225]} +{"t": 0.1344, "q": [-0.3734782934188843, -0.008636312559247017, -0.0010713516967371106, 0.6316165924072266, -0.27721908688545227, 0.01436445489525795, -0.3228484094142914, -0.002769687445834279, 0.0007901218486949801, 0.6244665384292603, -0.3461565375328064, 0.015808893367648125, 0.0038300822488963604, 0.014405721798539162, -0.032123323529958725, 0.28445756435394287, 0.19280222058296204, -0.005668538622558117, 0.981316328048706, 0.1443859487771988, 0.04122573509812355, -0.0637560784816742, 0.28892767429351807, -0.20979584753513336, 0.0267847441136837, 0.9903284311294556, -0.1759883463382721, 0.015387745574116707, 0.032045818865299225]} +{"t": 0.1511, "q": [-0.373452752828598, -0.008636312559247017, -0.0010981354862451553, 0.6316251158714294, -0.277214914560318, 0.014371688477694988, -0.3228313624858856, -0.002769687445834279, 0.0007633380591869354, 0.6244921088218689, -0.3461565375328064, 0.015808893367648125, 0.0038300822488963604, 0.014382944442331791, -0.0321379117667675, 0.28436169028282166, 0.19054917991161346, -0.005680522881448269, 0.9816998243331909, 0.14442190527915955, 0.0412137508392334, -0.06381599605083466, 0.2888677716255188, -0.2090408354997635, 0.02738395519554615, 0.9905920624732971, -0.17607223987579346, 0.015375761315226555, 0.03209375590085983]} +{"t": 0.1678, "q": [-0.373452752828598, -0.008636312559247017, -0.0011115273227915168, 0.6316165924072266, -0.2772149443626404, 0.014357260428369045, -0.3228484094142914, -0.002778209513053298, 0.0007499461644329131, 0.6244921088218689, -0.3461565375328064, 0.015808893367648125, 0.0038300822488963604, 0.014375362545251846, -0.03215261176228523, 0.2843017876148224, 0.1889672577381134, -0.005668538622558117, 0.9821791648864746, 0.14433801174163818, 0.041261687874794006, -0.06385195255279541, 0.28887975215911865, -0.20869329571723938, 0.027899276465177536, 0.9906759858131409, -0.17604826390743256, 0.015363777056336403, 0.03208177164196968]} +{"t": 0.1846, "q": [-0.373452752828598, -0.00862779002636671, -0.0011383111122995615, 0.6316165924072266, -0.2772066295146942, 0.014357298612594604, -0.3228484094142914, -0.0027867318131029606, 0.0007499461644329131, 0.624483585357666, -0.3461565375328064, 0.015808893367648125, 0.003776514669880271, 0.014382955618202686, -0.03214775025844574, 0.28431376814842224, 0.1876969337463379, -0.005668538622558117, 0.9824068546295166, 0.14439792931079865, 0.041261687874794006, -0.06385195255279541, 0.2888917326927185, -0.20854948461055756, 0.028246818110346794, 0.9907718300819397, -0.17615613341331482, 0.015375761315226555, 0.03208177164196968]} +{"t": 0.2013, "q": [-0.37344422936439514, -0.00862779002636671, -0.0011249192757532, 0.6316165924072266, -0.2772108018398285, 0.014335621148347855, -0.3228484094142914, -0.0027867318131029606, 0.0007499461644329131, 0.6244921088218689, -0.3461565375328064, 0.015808893367648125, 0.003776514669880271, 0.014405764639377594, -0.03216267004609108, 0.2843017876148224, 0.18664231896400452, -0.005656554363667965, 0.9825267195701599, 0.14439792931079865, 0.04127367213368416, -0.06388790160417557, 0.2889156937599182, -0.2085135281085968, 0.028498487547039986, 0.9908437728881836, -0.1760602593421936, 0.015399729833006859, 0.03208177164196968]} +{"t": 0.2181, "q": [-0.3734271824359894, -0.008636312559247017, -0.0011249192757532, 0.6316165924072266, -0.2772108018398285, 0.014335621148347855, -0.32285693287849426, -0.002778209513053298, 0.0007633380591869354, 0.6245091557502747, -0.3461563289165497, 0.015779802575707436, 0.003803298342972994, 0.014420970343053341, -0.03217261657118797, 0.28428977727890015, 0.1859472393989563, -0.005668538622558117, 0.9826465249061584, 0.1443619728088379, 0.041261687874794006, -0.06389988958835602, 0.2889396846294403, -0.2084895670413971, 0.02876214124262333, 0.9909515976905823, -0.1760362833738327, 0.015375761315226555, 0.03208177164196968]} +{"t": 0.2348, "q": [-0.3734101355075836, -0.008636312559247017, -0.0011517030652612448, 0.6316165924072266, -0.2772108018398285, 0.014335621148347855, -0.3228398859500885, -0.002769687445834279, 0.0007231623749248683, 0.6245432496070862, -0.34616464376449585, 0.015794433653354645, 0.0038300822488963604, 0.014413388445973396, -0.032187312841415405, 0.2842538356781006, 0.1855757236480713, -0.005644570104777813, 0.9827903509140015, 0.14439792931079865, 0.04127367213368416, -0.06389988958835602, 0.28892767429351807, -0.20842964947223663, 0.02900182455778122, 0.9909875988960266, -0.17602430284023285, 0.01541171409189701, 0.03208177164196968]} +{"t": 0.2516, "q": [-0.3734101355075836, -0.008610745891928673, -0.0011650949018076062, 0.6316251158714294, -0.2772108018398285, 0.014335621148347855, -0.32286545634269714, -0.00276116537861526, 0.0007365542696788907, 0.6245602965354919, -0.34616464376449585, 0.015794433653354645, 0.0037899063900113106, 0.014428594149649143, -0.0321972593665123, 0.2842298746109009, 0.18543191254138947, -0.005644570104777813, 0.9828862547874451, 0.14439792931079865, 0.04128565639257431, -0.06391187012195587, 0.2888917326927185, -0.20842964947223663, 0.029037777334451675, 0.9910594820976257, -0.17609620094299316, 0.01541171409189701, 0.03209375590085983]} +{"t": 0.2684, "q": [-0.3734101355075836, -0.008619267493486404, -0.0011650949018076062, 0.6316080689430237, -0.27721497416496277, 0.01434281561523676, -0.32286545634269714, -0.00276116537861526, 0.0007365542696788907, 0.6245432496070862, -0.34616464376449585, 0.015794433653354645, 0.0038434739690274, 0.014436197467148304, -0.032202236354351044, 0.2842298746109009, 0.18536001443862915, -0.005668538622558117, 0.9829461574554443, 0.14437396824359894, 0.04127367213368416, -0.06391187012195587, 0.2889156937599182, -0.20842964947223663, 0.029037777334451675, 0.9910594820976257, -0.17609620094299316, 0.015387745574116707, 0.03209375590085983]} +{"t": 0.2851, "q": [-0.3734101355075836, -0.008619267493486404, -0.0011517030652612448, 0.6316165924072266, -0.27720245718955994, 0.0143501041457057, -0.32286545634269714, -0.002769687445834279, 0.0007365542696788907, 0.6245602965354919, -0.34616464376449585, 0.015794433653354645, 0.003803298342972994, 0.014466598629951477, -0.03221229091286659, 0.284217894077301, 0.185371994972229, -0.005596633069217205, 0.9830060601234436, 0.1443859487771988, 0.04129764065146446, -0.06392385810613632, 0.2888917326927185, -0.20842964947223663, 0.029037777334451675, 0.9911074042320251, -0.1760602593421936, 0.015387745574116707, 0.03208177164196968]} +{"t": 0.3019, "q": [-0.3734271824359894, -0.008619267493486404, -0.0011784868547692895, 0.6316251158714294, -0.27721497416496277, 0.01434281561523676, -0.3228739798069, -0.00276116537861526, 0.0007365542696788907, 0.6245517730712891, -0.34617698192596436, 0.015801837667822838, 0.003776514669880271, 0.014466598629951477, -0.03221229091286659, 0.28420591354370117, 0.1853959709405899, -0.005596633069217205, 0.9830660223960876, 0.14437396824359894, 0.04129764065146446, -0.06389988958835602, 0.28887975215911865, -0.20841765403747559, 0.029049761593341827, 0.9911792874336243, -0.17609620094299316, 0.01541171409189701, 0.03208177164196968]} +{"t": 0.3186, "q": [-0.373452752828598, -0.008619267493486404, -0.0011650949018076062, 0.6316080689430237, -0.27721497416496277, 0.01434281561523676, -0.32289955019950867, -0.00276116537861526, 0.0007365542696788907, 0.6245602965354919, -0.34617292881011963, 0.015809066593647003, 0.0038300822488963604, 0.014512227848172188, -0.03225196897983551, 0.28420591354370117, 0.1853959709405899, -0.005596633069217205, 0.9831139445304871, 0.1443859487771988, 0.041309624910354614, -0.06392385810613632, 0.28887975215911865, -0.20840567350387573, 0.029109682887792587, 0.9912272691726685, -0.1761081963777542, 0.015351792797446251, 0.03209375590085983]} +{"t": 0.3354, "q": [-0.373452752828598, -0.008619267493486404, -0.0011784868547692895, 0.6316080689430237, -0.27721911668777466, 0.014350010082125664, -0.3228739798069, -0.002778209513053298, 0.0007499461644329131, 0.6245432496070862, -0.34617292881011963, 0.015809066593647003, 0.003803298342972994, 0.014497032389044762, -0.032251857221126556, 0.28419390320777893, 0.1853959709405899, -0.005596633069217205, 0.9831139445304871, 0.1443859487771988, 0.04129764065146446, -0.06393583863973618, 0.28887975215911865, -0.20840567350387573, 0.029109682887792587, 0.9912991523742676, -0.1760362833738327, 0.015399729833006859, 0.032105740159749985]} +{"t": 0.3521, "q": [-0.3734782934188843, -0.008636312559247017, -0.0011383111122995615, 0.6316165924072266, -0.2772274315357208, 0.014364399015903473, -0.32290807366371155, -0.002778209513053298, 0.0007365542696788907, 0.6245347261428833, -0.3461771607398987, 0.015830928459763527, 0.0038300822488963604, 0.014489440247416496, -0.03225671872496605, 0.28419390320777893, 0.18538397550582886, -0.005596633069217205, 0.9831379055976868, 0.1443859487771988, 0.04129764065146446, -0.06392385810613632, 0.2888677716255188, -0.20840567350387573, 0.02912166714668274, 0.9913950562477112, -0.17616811394691467, 0.015399729833006859, 0.03209375590085983]} +{"t": 0.3688, "q": [-0.37348681688308716, -0.008636312559247017, -0.0011650949018076062, 0.6316165924072266, -0.2772315740585327, 0.014371593482792377, -0.32290807366371155, -0.002769687445834279, 0.0007365542696788907, 0.6245262026786804, -0.3461730182170868, 0.015823611989617348, 0.003803298342972994, 0.014512216672301292, -0.03224213048815727, 0.284217894077301, 0.185371994972229, -0.005596633069217205, 0.9831259250640869, 0.1444099098443985, 0.04129764065146446, -0.06392385810613632, 0.28887975215911865, -0.20840567350387573, 0.029157619923353195, 0.9914549589157104, -0.1760842204093933, 0.015387745574116707, 0.03211772441864014]} +{"t": 0.3855, "q": [-0.37349534034729004, -0.008619267493486404, -0.0011650949018076062, 0.6316165924072266, -0.2772315740585327, 0.014371593482792377, -0.3229251205921173, -0.002778209513053298, 0.0007499461644329131, 0.6245262026786804, -0.34618526697158813, 0.015816468745470047, 0.003803298342972994, 0.014512238092720509, -0.03226180374622345, 0.28419390320777893, 0.185371994972229, -0.005584648810327053, 0.9831139445304871, 0.14437396824359894, 0.04129764065146446, -0.06392385810613632, 0.2888917326927185, -0.20840567350387573, 0.029145635664463043, 0.9914429783821106, -0.17609620094299316, 0.015387745574116707, 0.03211772441864014]} +{"t": 0.4023, "q": [-0.3735209107398987, -0.00862779002636671, -0.0011517030652612448, 0.6316165924072266, -0.277235746383667, 0.014378787949681282, -0.32294216752052307, -0.0027867318131029606, 0.0007633380591869354, 0.6245262026786804, -0.3461730182170868, 0.015823611989617348, 0.003816690295934677, 0.014497032389044762, -0.032251857221126556, 0.28419390320777893, 0.1853959709405899, -0.005572664551436901, 0.9831139445304871, 0.14434999227523804, 0.041309624910354614, -0.06392385810613632, 0.2888917326927185, -0.20841765403747559, 0.029145635664463043, 0.9915148615837097, -0.17615613341331482, 0.015387745574116707, 0.03209375590085983]} +{"t": 0.419, "q": [-0.3735209107398987, -0.008644834160804749, -0.0011517030652612448, 0.6316080689430237, -0.27724409103393555, 0.014364322647452354, -0.32294216752052307, -0.0027867318131029606, 0.0007633380591869354, 0.6245176792144775, -0.3461812138557434, 0.015823697671294212, 0.0038434739690274, 0.014527423307299614, -0.032252077013254166, 0.2841819226741791, 0.1853959709405899, -0.005596633069217205, 0.9831139445304871, 0.1443619728088379, 0.04129764065146446, -0.06391187012195587, 0.2888677716255188, -0.20840567350387573, 0.029229525476694107, 0.9915268421173096, -0.17604826390743256, 0.015387745574116707, 0.03211772441864014]} +{"t": 0.4358, "q": [-0.3735123872756958, -0.008636312559247017, -0.0011517030652612448, 0.6316165924072266, -0.27723991870880127, 0.01435712818056345, -0.3229336440563202, -0.002778209513053298, 0.0007633380591869354, 0.6245176792144775, -0.34618526697158813, 0.015816468745470047, 0.0038702578749507666, 0.014512227848172188, -0.03225196897983551, 0.2841819226741791, 0.18538397550582886, -0.005584648810327053, 0.9831019639968872, 0.1443859487771988, 0.04133359342813492, -0.06392385810613632, 0.2888438105583191, -0.20838171243667603, 0.02925349399447441, 0.9915987849235535, -0.17607223987579346, 0.015387745574116707, 0.03211772441864014]} +{"t": 0.4525, "q": [-0.3735123872756958, -0.008636312559247017, -0.0011517030652612448, 0.6316251158714294, -0.2772274315357208, 0.014364399015903473, -0.3229336440563202, -0.0027952538803219795, 0.0007499461644329131, 0.6245176792144775, -0.3461770713329315, 0.015816383063793182, 0.0038434739690274, 0.014527423307299614, -0.032252077013254166, 0.2841819226741791, 0.18538397550582886, -0.005584648810327053, 0.9831259250640869, 0.1443859487771988, 0.04133359342813492, -0.06393583863973618, 0.28885579109191895, -0.20839369297027588, 0.02925349399447441, 0.9915868043899536, -0.17616811394691467, 0.015375761315226555, 0.03214169293642044]} +{"t": 0.4692, "q": [-0.3735038638114929, -0.008636312559247017, -0.0011383111122995615, 0.6316165924072266, -0.2772315740585327, 0.014371593482792377, -0.32295921444892883, -0.0027867318131029606, 0.0007365542696788907, 0.6245176792144775, -0.34618526697158813, 0.015816468745470047, 0.0038568659219890833, 0.01454261876642704, -0.03225218877196312, 0.2841699421405792, 0.18538397550582886, -0.005584648810327053, 0.9831379055976868, 0.14439792931079865, 0.04133359342813492, -0.06392385810613632, 0.2888438105583191, -0.20839369297027588, 0.02925349399447441, 0.9916107654571533, -0.17614413797855377, 0.015387745574116707, 0.03214169293642044]} +{"t": 0.486, "q": [-0.3735038638114929, -0.00862779002636671, -0.0011650949018076062, 0.6316165924072266, -0.2772315740585327, 0.014371593482792377, -0.32295921444892883, -0.002778209513053298, 0.0007633380591869354, 0.6245176792144775, -0.34619346261024475, 0.01581655628979206, 0.0038702578749507666, 0.014550210908055305, -0.03224732726812363, 0.2841459810733795, 0.1853959709405899, -0.005584648810327053, 0.9831139445304871, 0.14433801174163818, 0.04133359342813492, -0.06392385810613632, 0.2888438105583191, -0.20839369297027588, 0.02930143103003502, 0.991634726524353, -0.17613215744495392, 0.01541171409189701, 0.03215367719531059]} +{"t": 0.5028, "q": [-0.3735038638114929, -0.00862779002636671, -0.001191878691315651, 0.6316165924072266, -0.27723991870880127, 0.01435712818056345, -0.32295921444892883, -0.0027952538803219795, 0.0007365542696788907, 0.6245176792144775, -0.34618526697158813, 0.015816468745470047, 0.0038568659219890833, 0.01454261876642704, -0.03225218877196312, 0.2841459810733795, 0.185371994972229, -0.005584648810327053, 0.9831618666648865, 0.1443859487771988, 0.041321609169244766, -0.06393583863973618, 0.2888438105583191, -0.20839369297027588, 0.02931341528892517, 0.9916706681251526, -0.1760602593421936, 0.015387745574116707, 0.03212970867753029]} +{"t": 0.5195, "q": [-0.3735123872756958, -0.00862779002636671, -0.001191878691315651, 0.6316165924072266, -0.2772315740585327, 0.014371593482792377, -0.32294216752052307, -0.002778209513053298, 0.0007499461644329131, 0.6245262026786804, -0.3461853563785553, 0.01583101414144039, 0.003816690295934677, 0.014527423307299614, -0.032252077013254166, 0.2841220200061798, 0.185371994972229, -0.005560680292546749, 0.9831498861312866, 0.1444099098443985, 0.041321609169244766, -0.06393583863973618, 0.2888438105583191, -0.20838171243667603, 0.029325399547815323, 0.9916706681251526, -0.17607223987579346, 0.015375761315226555, 0.03212970867753029]} +{"t": 0.5363, "q": [-0.37349534034729004, -0.008619267493486404, -0.0011650949018076062, 0.6316165924072266, -0.27722328901290894, 0.014357204549014568, -0.32294216752052307, -0.002769687445834279, 0.0007633380591869354, 0.6245176792144775, -0.34617698192596436, 0.015801837667822838, 0.0038300822488963604, 0.014550210908055305, -0.03224732726812363, 0.2841220200061798, 0.185371994972229, -0.005584648810327053, 0.9831498861312866, 0.1443859487771988, 0.04133359342813492, -0.06393583863973618, 0.2888438105583191, -0.20839369297027588, 0.029337383806705475, 0.9916946291923523, -0.17604826390743256, 0.015399729833006859, 0.03212970867753029]} +{"t": 0.553, "q": [-0.3734697997570038, -0.00862779002636671, -0.0011650949018076062, 0.6316165924072266, -0.27722328901290894, 0.014357204549014568, -0.3229251205921173, -0.0027867318131029606, 0.0007365542696788907, 0.6245176792144775, -0.34617292881011963, 0.015809066593647003, 0.0038568659219890833, 0.014550210908055305, -0.03224732726812363, 0.2841220200061798, 0.18538397550582886, -0.005560680292546749, 0.9831498861312866, 0.1443619728088379, 0.041321609169244766, -0.06393583863973618, 0.2888677716255188, -0.20839369297027588, 0.029337383806705475, 0.9916946291923523, -0.17604826390743256, 0.01541171409189701, 0.03211772441864014]} +{"t": 0.5698, "q": [-0.37349534034729004, -0.00862779002636671, -0.0011383111122995615, 0.6316080689430237, -0.27721908688545227, 0.014378882944583893, -0.3229336440563202, -0.002778209513053298, 0.0007499461644329131, 0.6245262026786804, -0.34616464376449585, 0.015794433653354645, 0.0038434739690274, 0.0145350256934762, -0.03225705027580261, 0.2841220200061798, 0.18536001443862915, -0.005584648810327053, 0.9831259250640869, 0.14429007470607758, 0.04133359342813492, -0.06393583863973618, 0.28883180022239685, -0.20839369297027588, 0.02936135232448578, 0.991718590259552, -0.1760602593421936, 0.015387745574116707, 0.03214169293642044]} +{"t": 0.5865, "q": [-0.37348681688308716, -0.00862779002636671, -0.0011249192757532, 0.6316165924072266, -0.27722328901290894, 0.014357204549014568, -0.3229251205921173, -0.002778209513053298, 0.0007231623749248683, 0.6245347261428833, -0.34617292881011963, 0.015809066593647003, 0.0038434739690274, 0.0145350256934762, -0.03225705027580261, 0.28413400053977966, 0.185371994972229, -0.005584648810327053, 0.9831498861312866, 0.14433801174163818, 0.04133359342813492, -0.06395980715751648, 0.28883180022239685, -0.20836971700191498, 0.029337383806705475, 0.9917305707931519, -0.1760842204093933, 0.015387745574116707, 0.03215367719531059]} +{"t": 0.6033, "q": [-0.37348681688308716, -0.008636312559247017, -0.0011115273227915168, 0.6316165924072266, -0.27722328901290894, 0.014357204549014568, -0.32290807366371155, -0.0027867318131029606, 0.0007633380591869354, 0.6245347261428833, -0.34616464376449585, 0.015794433653354645, 0.0038702578749507666, 0.01454261876642704, -0.03225218877196312, 0.28411003947257996, 0.185371994972229, -0.005560680292546749, 0.9831498861312866, 0.14437396824359894, 0.04133359342813492, -0.06393583863973618, 0.288819819688797, -0.20836971700191498, 0.029337383806705475, 0.9917066097259521, -0.17609620094299316, 0.01541171409189701, 0.03214169293642044]} +{"t": 0.62, "q": [-0.3734697997570038, -0.00862779002636671, -0.0011115273227915168, 0.6316251158714294, -0.27722328901290894, 0.014357204549014568, -0.3229251205921173, -0.002769687445834279, 0.0007633380591869354, 0.6245432496070862, -0.34616464376449585, 0.015794433653354645, 0.0038568659219890833, 0.01454261876642704, -0.03225218877196312, 0.28411003947257996, 0.1853959709405899, -0.005584648810327053, 0.9831498861312866, 0.14439792931079865, 0.04134557768702507, -0.06399576365947723, 0.28883180022239685, -0.20836971700191498, 0.02937333658337593, 0.991718590259552, -0.1760842204093933, 0.015375761315226555, 0.03214169293642044]} +{"t": 0.6367, "q": [-0.3734782934188843, -0.00862779002636671, -0.0011115273227915168, 0.6316165924072266, -0.2772274315357208, 0.014364399015903473, -0.32290807366371155, -0.002778209513053298, 0.0007767299539409578, 0.6245176792144775, -0.3461688756942749, 0.01581629551947117, 0.0038300822488963604, 0.014535036869347095, -0.03226688876748085, 0.28411003947257996, 0.18538397550582886, -0.005584648810327053, 0.9831498861312866, 0.1443859487771988, 0.04133359342813492, -0.06393583863973618, 0.28883180022239685, -0.20836971700191498, 0.029385320842266083, 0.9917305707931519, -0.176012322306633, 0.015387745574116707, 0.03215367719531059]} +{"t": 0.6535, "q": [-0.3734782934188843, -0.008636312559247017, -0.0010981354862451553, 0.6316165924072266, -0.2772274315357208, 0.014364399015903473, -0.32290807366371155, -0.0027867318131029606, 0.0007901218486949801, 0.6245262026786804, -0.34617698192596436, 0.015801837667822838, 0.0038434739690274, 0.014550229534506798, -0.032266996800899506, 0.28411003947257996, 0.1853959709405899, -0.005584648810327053, 0.9831498861312866, 0.14437396824359894, 0.04134557768702507, -0.06393583863973618, 0.2888438105583191, -0.20836971700191498, 0.029397305101156235, 0.9917425513267517, -0.17614413797855377, 0.015387745574116707, 0.03215367719531059]} +{"t": 0.6704, "q": [-0.3734612762928009, -0.008644834160804749, -0.0010981354862451553, 0.6316165924072266, -0.27721908688545227, 0.01436445489525795, -0.3228910267353058, -0.002778209513053298, 0.0007633380591869354, 0.6245347261428833, -0.34616464376449585, 0.015794433653354645, 0.0038300822488963604, 0.014565414749085903, -0.03225727006793022, 0.2841220200061798, 0.185371994972229, -0.005584648810327053, 0.9831618666648865, 0.1443859487771988, 0.04134557768702507, -0.06393583863973618, 0.2888438105583191, -0.20836971700191498, 0.029397305101156235, 0.9917545318603516, -0.17612017691135406, 0.015375761315226555, 0.03212970867753029]} +{"t": 0.6871, "q": [-0.3734612762928009, -0.00862779002636671, -0.0010981354862451553, 0.6316165924072266, -0.27720245718955994, 0.0143501041457057, -0.3228739798069, -0.002769687445834279, 0.0007767299539409578, 0.6245347261428833, -0.34616464376449585, 0.015794433653354645, 0.003803298342972994, 0.0145350256934762, -0.03225705027580261, 0.28411003947257996, 0.18538397550582886, -0.005560680292546749, 0.9831618666648865, 0.14437396824359894, 0.041321609169244766, -0.06393583863973618, 0.2888438105583191, -0.20835773646831512, 0.029409289360046387, 0.9917665719985962, -0.17609620094299316, 0.015375761315226555, 0.03214169293642044]} +{"t": 0.7039, "q": [-0.3734697997570038, -0.008619267493486404, -0.0010981354862451553, 0.6316165924072266, -0.2772066295146942, 0.014357298612594604, -0.3228825032711029, -0.002778209513053298, 0.0007767299539409578, 0.6245432496070862, -0.34615230560302734, 0.0157870315015316, 0.003803298342972994, 0.014550229534506798, -0.032266996800899506, 0.2841220200061798, 0.185371994972229, -0.005560680292546749, 0.9831738471984863, 0.1443619728088379, 0.041309624910354614, -0.06393583863973618, 0.28883180022239685, -0.20836971700191498, 0.029409289360046387, 0.991778552532196, -0.1761081963777542, 0.015363777056336403, 0.032165661454200745]} +{"t": 0.7206, "q": [-0.3734271824359894, -0.00862779002636671, -0.0010713516967371106, 0.6316165924072266, -0.2772066295146942, 0.014342871494591236, -0.3228739798069, -0.0027867318131029606, 0.0007633380591869354, 0.6245602965354919, -0.34616050124168396, 0.015787119045853615, 0.0038300822488963604, 0.014565424993634224, -0.03226710855960846, 0.28411003947257996, 0.18538397550582886, -0.005584648810327053, 0.9831738471984863, 0.14439792931079865, 0.04134557768702507, -0.06394782662391663, 0.2888438105583191, -0.20835773646831512, 0.029409289360046387, 0.9917905330657959, -0.1760842204093933, 0.015387745574116707, 0.032165661454200745]} +{"t": 0.7374, "q": [-0.3734271824359894, -0.008636312559247017, -0.0011115273227915168, 0.6316251158714294, -0.2772066295146942, 0.014342871494591236, -0.3228825032711029, -0.0027867318131029606, 0.0007633380591869354, 0.6245602965354919, -0.3461563289165497, 0.015779802575707436, 0.0038300822488963604, 0.014565424993634224, -0.03226710855960846, 0.28411003947257996, 0.185371994972229, -0.005584648810327053, 0.9831738471984863, 0.14442190527915955, 0.04133359342813492, -0.06395980715751648, 0.28883180022239685, -0.20836971700191498, 0.029409289360046387, 0.9918025135993958, -0.17615613341331482, 0.015387745574116707, 0.032165661454200745]} +{"t": 0.7541, "q": [-0.37343570590019226, -0.008636312559247017, -0.0010981354862451553, 0.6316165924072266, -0.27720245718955994, 0.0143501041457057, -0.3228739798069, -0.0027952538803219795, 0.0007633380591869354, 0.6245432496070862, -0.34616464376449585, 0.015794433653354645, 0.003776514669880271, 0.014580631628632545, -0.03227705508470535, 0.2841220200061798, 0.1853959709405899, -0.005584648810327053, 0.9831738471984863, 0.14442190527915955, 0.041321609169244766, -0.06394782662391663, 0.2888438105583191, -0.20835773646831512, 0.029409289360046387, 0.9918025135993958, -0.17607223987579346, 0.015375761315226555, 0.032165661454200745]} +{"t": 0.7708, "q": [-0.3734101355075836, -0.008644834160804749, -0.0011115273227915168, 0.6316165924072266, -0.2772149443626404, 0.014357260428369045, -0.3228910267353058, -0.002769687445834279, 0.0007633380591869354, 0.6245347261428833, -0.34616464376449585, 0.015794433653354645, 0.0038568659219890833, 0.014580631628632545, -0.03227705508470535, 0.2840980291366577, 0.185371994972229, -0.005572664551436901, 0.9831738471984863, 0.1443859487771988, 0.041321609169244766, -0.06394782662391663, 0.288819819688797, -0.20838171243667603, 0.029409289360046387, 0.9918384552001953, -0.1760362833738327, 0.015363777056336403, 0.032165661454200745]} +{"t": 0.7876, "q": [-0.3734271824359894, -0.008636312559247017, -0.0011249192757532, 0.6316165924072266, -0.27721497416496277, 0.01434281561523676, -0.3228910267353058, -0.002778209513053298, 0.0007633380591869354, 0.6245773434638977, -0.34616878628730774, 0.015801750123500824, 0.0038434739690274, 0.014580631628632545, -0.03227705508470535, 0.2840980291366577, 0.18538397550582886, -0.005560680292546749, 0.9831858277320862, 0.14439792931079865, 0.041321609169244766, -0.06398377567529678, 0.288819819688797, -0.20835773646831512, 0.029409289360046387, 0.9918743968009949, -0.1760602593421936, 0.015375761315226555, 0.032165661454200745]} +{"t": 0.8043, "q": [-0.3734271824359894, -0.00862779002636671, -0.0011115273227915168, 0.6316165924072266, -0.27721497416496277, 0.01434281561523676, -0.3228910267353058, -0.002778209513053298, 0.0007633380591869354, 0.6245432496070862, -0.34617292881011963, 0.015809066593647003, 0.0038702578749507666, 0.014573018066585064, -0.03226224333047867, 0.28411003947257996, 0.18538397550582886, -0.005584648810327053, 0.9831858277320862, 0.14439792931079865, 0.041321609169244766, -0.06395980715751648, 0.2888438105583191, -0.20835773646831512, 0.029385320842266083, 0.991862416267395, -0.1761081963777542, 0.015399729833006859, 0.032165661454200745]} +{"t": 0.8212, "q": [-0.37343570590019226, -0.008610745891928673, -0.0010981354862451553, 0.6316251158714294, -0.27721497416496277, 0.01434281561523676, -0.32289955019950867, -0.002769687445834279, 0.0007633380591869354, 0.6245432496070862, -0.34617292881011963, 0.015809066593647003, 0.0038702578749507666, 0.01458822377026081, -0.03227218985557556, 0.28411003947257996, 0.18538397550582886, -0.005584648810327053, 0.9832097887992859, 0.14434999227523804, 0.041309624910354614, -0.06399576365947723, 0.2888438105583191, -0.20835773646831512, 0.02943325787782669, 0.9918743968009949, -0.17607223987579346, 0.015363777056336403, 0.032165661454200745]} +{"t": 0.8379, "q": [-0.37344422936439514, -0.008644834160804749, -0.0010981354862451553, 0.6316165924072266, -0.2772274315357208, 0.014364399015903473, -0.3228910267353058, -0.002769687445834279, 0.0007633380591869354, 0.6245517730712891, -0.34616464376449585, 0.015794433653354645, 0.0038970415480434895, 0.014580631628632545, -0.03227705508470535, 0.2840980291366577, 0.18538397550582886, -0.005584648810327053, 0.9832097887992859, 0.14437396824359894, 0.041309624910354614, -0.06397179514169693, 0.2888438105583191, -0.20836971700191498, 0.02943325787782669, 0.991862416267395, -0.17609620094299316, 0.01541171409189701, 0.032165661454200745]} +{"t": 0.8546, "q": [-0.3734612762928009, -0.00862779002636671, -0.0011115273227915168, 0.6316165924072266, -0.2772274315357208, 0.014364399015903473, -0.3228910267353058, -0.0027867318131029606, 0.0007633380591869354, 0.6245347261428833, -0.3461688756942749, 0.01581629551947117, 0.0038300822488963604, 0.014603408053517342, -0.032262466847896576, 0.2840980291366577, 0.18538397550582886, -0.005572664551436901, 0.9832097887992859, 0.1443859487771988, 0.041321609169244766, -0.06397179514169693, 0.288819819688797, -0.20836971700191498, 0.02942127361893654, 0.9919223189353943, -0.17609620094299316, 0.015375761315226555, 0.03221359848976135]} +{"t": 0.8714, "q": [-0.3734782934188843, -0.008636312559247017, -0.0011115273227915168, 0.6316165924072266, -0.2772315740585327, 0.014371593482792377, -0.32290807366371155, -0.0027867318131029606, 0.0007633380591869354, 0.6245347261428833, -0.3461771607398987, 0.015830928459763527, 0.0038568659219890833, 0.014573038555681705, -0.032281916588544846, 0.28411003947257996, 0.18538397550582886, -0.005584648810327053, 0.9832097887992859, 0.1443859487771988, 0.04133359342813492, -0.06394782662391663, 0.28883180022239685, -0.20835773646831512, 0.029457226395606995, 0.9919342994689941, -0.17614413797855377, 0.015387745574116707, 0.03218962997198105]} +{"t": 0.8881, "q": [-0.3734782934188843, -0.00862779002636671, -0.0010981354862451553, 0.6316080689430237, -0.2772315740585327, 0.014371593482792377, -0.32289955019950867, -0.002778209513053298, 0.0007633380591869354, 0.6245176792144775, -0.3461812138557434, 0.015823697671294212, 0.0038300822488963604, 0.0145730497315526, -0.032291751354932785, 0.2840980291366577, 0.18538397550582886, -0.005560680292546749, 0.983197808265686, 0.1444099098443985, 0.04133359342813492, -0.06397179514169693, 0.288819819688797, -0.20838171243667603, 0.0294811949133873, 0.9919223189353943, -0.17612017691135406, 0.015375761315226555, 0.032225582748651505]} +{"t": 0.9052, "q": [-0.3734782934188843, -0.00862779002636671, -0.0010981354862451553, 0.6316165924072266, -0.2772274315357208, 0.014349971897900105, -0.32291659712791443, -0.0027867318131029606, 0.0007633380591869354, 0.6245347261428833, -0.3461730182170868, 0.015823611989617348, 0.003816690295934677, 0.014595837332308292, -0.032287001609802246, 0.2840980291366577, 0.18538397550582886, -0.005560680292546749, 0.9832097887992859, 0.1444099098443985, 0.04134557768702507, -0.06397179514169693, 0.28883180022239685, -0.20834575593471527, 0.029457226395606995, 0.9919342994689941, -0.17615613341331482, 0.015399729833006859, 0.03218962997198105]} +{"t": 0.9221, "q": [-0.37348681688308716, -0.00862779002636671, -0.0011115273227915168, 0.6316165924072266, -0.2772357761859894, 0.014349933713674545, -0.32291659712791443, -0.002769687445834279, 0.0007767299539409578, 0.6245432496070862, -0.34617292881011963, 0.015809066593647003, 0.003803298342972994, 0.014588234014809132, -0.0322820283472538, 0.28411003947257996, 0.18538397550582886, -0.005584648810327053, 0.9832097887992859, 0.1443859487771988, 0.04134557768702507, -0.06394782662391663, 0.288819819688797, -0.20835773646831512, 0.0294811949133873, 0.991946280002594, -0.17615613341331482, 0.015375761315226555, 0.0322016142308712]} +{"t": 0.9389, "q": [-0.3735038638114929, -0.008636312559247017, -0.0011249192757532, 0.6316165924072266, -0.277235746383667, 0.014378787949681282, -0.32294216752052307, -0.0027867318131029606, 0.0007633380591869354, 0.6245176792144775, -0.3461894094944, 0.015823785215616226, 0.00388364982791245, 0.014588245190680027, -0.03229186311364174, 0.2840980291366577, 0.185371994972229, -0.005596633069217205, 0.983197808265686, 0.1443859487771988, 0.04134557768702507, -0.06397179514169693, 0.2888438105583191, -0.20835773646831512, 0.02949317917227745, 0.9919703006744385, -0.17615613341331482, 0.015387745574116707, 0.0322016142308712]} +{"t": 0.9556, "q": [-0.3735038638114929, -0.00862779002636671, -0.0011383111122995615, 0.6316165924072266, -0.27724409103393555, 0.014364322647452354, -0.32295069098472595, -0.002778209513053298, 0.0007633380591869354, 0.6245091557502747, -0.3461853563785553, 0.01583101414144039, 0.0038970415480434895, 0.014588245190680027, -0.03229186311364174, 0.2840980291366577, 0.18538397550582886, -0.005560680292546749, 0.9831858277320862, 0.1443859487771988, 0.04134557768702507, -0.06394782662391663, 0.28883180022239685, -0.20834575593471527, 0.029505163431167603, 0.992006242275238, -0.17609620094299316, 0.015387745574116707, 0.0322016142308712]} +{"t": 0.9724, "q": [-0.3735209107398987, -0.00862779002636671, -0.0011383111122995615, 0.6316165924072266, -0.27724409103393555, 0.014364322647452354, -0.32295921444892883, -0.0027952538803219795, 0.0007633380591869354, 0.6245091557502747, -0.3461935818195343, 0.01583113707602024, 0.0038568659219890833, 0.014588245190680027, -0.03229186311364174, 0.28411003947257996, 0.18538397550582886, -0.005584648810327053, 0.9832097887992859, 0.1444099098443985, 0.04135756194591522, -0.06398377567529678, 0.288819819688797, -0.20835773646831512, 0.0294811949133873, 0.992006242275238, -0.17613215744495392, 0.015363777056336403, 0.0322016142308712]} +{"t": 0.9891, "q": [-0.3735209107398987, -0.00862779002636671, -0.0011383111122995615, 0.6316165924072266, -0.2772524058818817, 0.014378729276359081, -0.3229677379131317, -0.002778209513053298, 0.0007767299539409578, 0.6245006322860718, -0.34620174765586853, 0.015831224620342255, 0.0038568659219890833, 0.014611032791435719, -0.0322871096432209, 0.28411003947257996, 0.18538397550582886, -0.005584648810327053, 0.9832097887992859, 0.14437396824359894, 0.04133359342813492, -0.06395980715751648, 0.2888438105583191, -0.20835773646831512, 0.029505163431167603, 0.9920182228088379, -0.17614413797855377, 0.015387745574116707, 0.032225582748651505]} +{"t": 1.0058, "q": [-0.37352943420410156, -0.008644834160804749, -0.0011383111122995615, 0.6316165924072266, -0.2772524058818817, 0.014378729276359081, -0.32300183176994324, -0.0027952538803219795, 0.0007633380591869354, 0.6245006322860718, -0.34620580077171326, 0.01582399383187294, 0.0038300822488963604, 0.014595827087759972, -0.03227716311812401, 0.28408604860305786, 0.18538397550582886, -0.005584648810327053, 0.9832097887992859, 0.14439792931079865, 0.041321609169244766, -0.06397179514169693, 0.288819819688797, -0.20834575593471527, 0.029505163431167603, 0.992006242275238, -0.17612017691135406, 0.015327824279665947, 0.03218962997198105]} +{"t": 1.0228, "q": [-0.3735635280609131, -0.008636312559247017, -0.0011383111122995615, 0.6316165924072266, -0.2772524058818817, 0.014378729276359081, -0.3230273723602295, -0.0027867318131029606, 0.0007499461644329131, 0.6244921088218689, -0.346209853887558, 0.015816764906048775, 0.003803298342972994, 0.014588245190680027, -0.03229186311364174, 0.28411003947257996, 0.18538397550582886, -0.0055486964993178844, 0.9832217693328857, 0.14434999227523804, 0.041381530463695526, -0.06395980715751648, 0.28883180022239685, -0.20835773646831512, 0.02949317917227745, 0.9920421838760376, -0.17609620094299316, 0.015387745574116707, 0.032225582748651505]} +{"t": 1.0395, "q": [-0.3735550045967102, -0.008619267493486404, -0.0011383111122995615, 0.6316165924072266, -0.27726489305496216, 0.01435703132301569, -0.32304441928863525, -0.0027867318131029606, 0.0007633380591869354, 0.6244921088218689, -0.34620580077171326, 0.01582399383187294, 0.0038434739690274, 0.014603429473936558, -0.032282136380672455, 0.28408604860305786, 0.185371994972229, -0.005560680292546749, 0.9832097887992859, 0.14437396824359894, 0.04133359342813492, -0.06397179514169693, 0.288819819688797, -0.20835773646831512, 0.02949317917227745, 0.9920421838760376, -0.1760842204093933, 0.015375761315226555, 0.03221359848976135]} +{"t": 1.0563, "q": [-0.37358909845352173, -0.008610745891928673, -0.0011517030652612448, 0.6316165924072266, -0.277277410030365, 0.014349760487675667, -0.32305294275283813, -0.0028037759475409985, 0.0007901218486949801, 0.624483585357666, -0.3462180495262146, 0.015816833823919296, 0.0038970415480434895, 0.014611011371016502, -0.03226744011044502, 0.2840980291366577, 0.18538397550582886, -0.005584648810327053, 0.9832217693328857, 0.14439792931079865, 0.04133359342813492, -0.06397179514169693, 0.28883180022239685, -0.20835773646831512, 0.029505163431167603, 0.9920421838760376, -0.1760842204093933, 0.015375761315226555, 0.03221359848976135]} +{"t": 1.0732, "q": [-0.37358909845352173, -0.00862779002636671, -0.0011517030652612448, 0.6316251158714294, -0.277256578207016, 0.014371496625244617, -0.323061466217041, -0.0027952538803219795, 0.0008035137434490025, 0.6244750618934631, -0.3462221920490265, 0.015824150294065475, 0.003803298342972994, 0.014603429473936558, -0.032282136380672455, 0.28411003947257996, 0.18538397550582886, -0.005560680292546749, 0.9832337498664856, 0.14439792931079865, 0.04133359342813492, -0.06395980715751648, 0.288819819688797, -0.20835773646831512, 0.029517147690057755, 0.9920421838760376, -0.17616811394691467, 0.015387745574116707, 0.032165661454200745]} +{"t": 1.09, "q": [-0.37361466884613037, -0.00862779002636671, -0.0011517030652612448, 0.6316165924072266, -0.27726075053215027, 0.014364263974130154, -0.323061466217041, -0.0027867318131029606, 0.0007633380591869354, 0.6244665384292603, -0.3462139070034027, 0.015809517353773117, 0.003816690295934677, 0.014603440649807453, -0.03229197487235069, 0.2840980291366577, 0.1853959709405899, -0.005584648810327053, 0.9832337498664856, 0.14439792931079865, 0.04134557768702507, -0.06395980715751648, 0.288819819688797, -0.20835773646831512, 0.029505163431167603, 0.9920661449432373, -0.1761081963777542, 0.015363777056336403, 0.03218962997198105]} +{"t": 1.1068, "q": [-0.3736061453819275, -0.008644834160804749, -0.0011383111122995615, 0.6316165924072266, -0.277256578207016, 0.014371496625244617, -0.32304441928863525, -0.0028037759475409985, 0.0007901218486949801, 0.624483585357666, -0.3461974859237671, 0.015809325501322746, 0.0038434739690274, 0.014603429473936558, -0.032282136380672455, 0.28408604860305786, 0.18538397550582886, -0.005584648810327053, 0.9832217693328857, 0.1443859487771988, 0.04134557768702507, -0.06397179514169693, 0.288819819688797, -0.20835773646831512, 0.029529130086302757, 0.9920661449432373, -0.17609620094299316, 0.015363777056336403, 0.032165661454200745]} +{"t": 1.1235, "q": [-0.37358057498931885, -0.008636312559247017, -0.0011383111122995615, 0.6316251158714294, -0.2772565484046936, 0.014385923743247986, -0.32304441928863525, -0.002778209513053298, 0.0008035137434490025, 0.624483585357666, -0.34620559215545654, 0.015794849023222923, 0.0038702578749507666, 0.014611032791435719, -0.0322871096432209, 0.2840980291366577, 0.1853959709405899, -0.005584648810327053, 0.9832337498664856, 0.14437396824359894, 0.04134557768702507, -0.06395980715751648, 0.288819819688797, -0.20834575593471527, 0.029517147690057755, 0.9920541644096375, -0.1761081963777542, 0.015375761315226555, 0.032237567007541656]} +{"t": 1.1402, "q": [-0.3735976219177246, -0.008644834160804749, -0.0011517030652612448, 0.6316080689430237, -0.2772524058818817, 0.014378729276359081, -0.32305294275283813, -0.002769687445834279, 0.0007633380591869354, 0.6244750618934631, -0.3461974859237671, 0.015809325501322746, 0.0037631227169185877, 0.014611011371016502, -0.03226744011044502, 0.2840980291366577, 0.18538397550582886, -0.005560680292546749, 0.9832457304000854, 0.1444099098443985, 0.041369546204805374, -0.06395980715751648, 0.288819819688797, -0.20834575593471527, 0.029505163431167603, 0.9920421838760376, -0.17612017691135406, 0.015387745574116707, 0.03221359848976135]} +{"t": 1.157, "q": [-0.3735976219177246, -0.00862779002636671, -0.0011383111122995615, 0.6316165924072266, -0.27726075053215027, 0.014364263974130154, -0.323061466217041, -0.0027867318131029606, 0.0007633380591869354, 0.624483585357666, -0.3462180495262146, 0.015816833823919296, 0.003776514669880271, 0.014611032791435719, -0.0322871096432209, 0.28408604860305786, 0.1853959709405899, -0.005560680292546749, 0.9832217693328857, 0.14439792931079865, 0.04133359342813492, -0.06395980715751648, 0.288819819688797, -0.20835773646831512, 0.029517147690057755, 0.9920541644096375, -0.17615613341331482, 0.015375761315226555, 0.03221359848976135]} +{"t": 1.1738, "q": [-0.3735976219177246, -0.00862779002636671, -0.0011517030652612448, 0.6316165924072266, -0.2772524058818817, 0.014378729276359081, -0.32304441928863525, -0.0027867318131029606, 0.0007767299539409578, 0.624483585357666, -0.34620165824890137, 0.01581667922437191, 0.003803298342972994, 0.014603429473936558, -0.032282136380672455, 0.2840980291366577, 0.185371994972229, -0.005560680292546749, 0.9832577705383301, 0.14437396824359894, 0.04134557768702507, -0.06395980715751648, 0.28883180022239685, -0.20834575593471527, 0.029517147690057755, 0.9920661449432373, -0.17613215744495392, 0.015387745574116707, 0.032237567007541656]} +{"t": 1.1905, "q": [-0.37358909845352173, -0.008636312559247017, -0.0011517030652612448, 0.6316080689430237, -0.2772524058818817, 0.014378729276359081, -0.3230358958244324, -0.002778209513053298, 0.0007901218486949801, 0.624483585357666, -0.34620580077171326, 0.01582399383187294, 0.003816690295934677, 0.014626228250563145, -0.032287221401929855, 0.2840980291366577, 0.18538397550582886, -0.005560680292546749, 0.9832337498664856, 0.1443859487771988, 0.041309624910354614, -0.06397179514169693, 0.28883180022239685, -0.20834575593471527, 0.029505163431167603, 0.9920541644096375, -0.17614413797855377, 0.015363777056336403, 0.03221359848976135]} +{"t": 1.2073, "q": [-0.37358057498931885, -0.00862779002636671, -0.0011383111122995615, 0.6316080689430237, -0.27724409103393555, 0.014364322647452354, -0.3230358958244324, -0.0027867318131029606, 0.0007633380591869354, 0.624483585357666, -0.3461974859237671, 0.015809325501322746, 0.0038970415480434895, 0.014603429473936558, -0.032282136380672455, 0.28408604860305786, 0.18538397550582886, -0.005584648810327053, 0.9832337498664856, 0.14434999227523804, 0.04134557768702507, -0.06397179514169693, 0.288819819688797, -0.20835773646831512, 0.029517147690057755, 0.9920661449432373, -0.176240012049675, 0.015375761315226555, 0.03221359848976135]} +{"t": 1.2245, "q": [-0.37358057498931885, -0.008644834160804749, -0.0011249192757532, 0.6316165924072266, -0.27723991870880127, 0.01435712818056345, -0.3230188488960266, -0.002778209513053298, 0.0007499461644329131, 0.6244921088218689, -0.3461974859237671, 0.015809325501322746, 0.0038568659219890833, 0.014603419229388237, -0.032272301614284515, 0.2840980291366577, 0.18538397550582886, -0.005560680292546749, 0.9832337498664856, 0.14439792931079865, 0.04133359342813492, -0.06394782662391663, 0.288819819688797, -0.20834575593471527, 0.029517147690057755, 0.9920781254768372, -0.17615613341331482, 0.015375761315226555, 0.03221359848976135]} +{"t": 1.2412, "q": [-0.37353795766830444, -0.00862779002636671, -0.0011517030652612448, 0.6316165924072266, -0.27723991870880127, 0.01435712818056345, -0.32300183176994324, -0.0027867318131029606, 0.0007365542696788907, 0.6244921088218689, -0.3461850583553314, 0.015787377953529358, 0.003816690295934677, 0.014618614688515663, -0.03227241337299347, 0.28408604860305786, 0.18538397550582886, -0.005560680292546749, 0.9832337498664856, 0.14439792931079865, 0.04135756194591522, -0.06397179514169693, 0.288819819688797, -0.20835773646831512, 0.02954111434519291, 0.9920541644096375, -0.1761081963777542, 0.015375761315226555, 0.03218962997198105]} +{"t": 1.258, "q": [-0.37353795766830444, -0.008636312559247017, -0.0011517030652612448, 0.6316165924072266, -0.2772315740585327, 0.014371593482792377, -0.3229847848415375, -0.002778209513053298, 0.0007633380591869354, 0.6245006322860718, -0.34618112444877625, 0.015809152275323868, 0.0038434739690274, 0.014626228250563145, -0.032287221401929855, 0.28408604860305786, 0.18538397550582886, -0.005584648810327053, 0.9832337498664856, 0.1443619728088379, 0.04133359342813492, -0.06397179514169693, 0.288819819688797, -0.20834575593471527, 0.029529130086302757, 0.9920541644096375, -0.1760842204093933, 0.01541171409189701, 0.0322016142308712]} +{"t": 1.2747, "q": [-0.37352943420410156, -0.008636312559247017, -0.0011383111122995615, 0.6316165924072266, -0.2772274315357208, 0.014364399015903473, -0.32299330830574036, -0.0027867318131029606, 0.0007767299539409578, 0.6245006322860718, -0.3461892008781433, 0.015794694423675537, 0.0038568659219890833, 0.014611032791435719, -0.0322871096432209, 0.28408604860305786, 0.18538397550582886, -0.005584648810327053, 0.9832337498664856, 0.1443859487771988, 0.04134557768702507, -0.06398377567529678, 0.288819819688797, -0.20835773646831512, 0.029529130086302757, 0.9920661449432373, -0.17612017691135406, 0.015387745574116707, 0.03218962997198105]} +{"t": 1.2915, "q": [-0.3735123872756958, -0.008610745891928673, -0.0011249192757532, 0.6316165924072266, -0.2772315740585327, 0.014371593482792377, -0.3229847848415375, -0.002778209513053298, 0.0007633380591869354, 0.6245176792144775, -0.3461850583553314, 0.015787377953529358, 0.003803298342972994, 0.014611022546887398, -0.03227727487683296, 0.2841220200061798, 0.18538397550582886, -0.005560680292546749, 0.9832217693328857, 0.14439792931079865, 0.04134557768702507, -0.06395980715751648, 0.28880783915519714, -0.20834575593471527, 0.029529130086302757, 0.9920661449432373, -0.17613215744495392, 0.015363777056336403, 0.0322016142308712]} +{"t": 1.3083, "q": [-0.37349534034729004, -0.008636312559247017, -0.0011383111122995615, 0.6316165924072266, -0.27722328901290894, 0.014357204549014568, -0.3229762613773346, -0.002778209513053298, 0.0007499461644329131, 0.6245262026786804, -0.34617698192596436, 0.015801837667822838, 0.0038702578749507666, 0.014603419229388237, -0.032272301614284515, 0.2840980291366577, 0.18538397550582886, -0.005560680292546749, 0.9832337498664856, 0.14439792931079865, 0.04134557768702507, -0.06398377567529678, 0.28883180022239685, -0.20835773646831512, 0.02954111434519291, 0.9920421838760376, -0.1760842204093933, 0.015387745574116707, 0.032225582748651505]} +{"t": 1.325, "q": [-0.3735123872756958, -0.00862779002636671, -0.0011115273227915168, 0.6316165924072266, -0.27722328901290894, 0.014357204549014568, -0.3229677379131317, -0.0027952538803219795, 0.0007633380591869354, 0.6245432496070862, -0.34617677330970764, 0.01577274687588215, 0.0038702578749507666, 0.01462621707469225, -0.032277386635541916, 0.2840980291366577, 0.185371994972229, -0.0055486964993178844, 0.9832337498664856, 0.1444099098443985, 0.04135756194591522, -0.06397179514169693, 0.288819819688797, -0.20835773646831512, 0.029565082862973213, 0.9920541644096375, -0.17612017691135406, 0.015399729833006859, 0.032237567007541656]} +{"t": 1.342, "q": [-0.37348681688308716, -0.00862779002636671, -0.0011115273227915168, 0.6316251158714294, -0.27721911668777466, 0.014350010082125664, -0.3229336440563202, -0.002769687445834279, 0.0007633380591869354, 0.6245347261428833, -0.34618091583251953, 0.01578006148338318, 0.0038702578749507666, 0.014611032791435719, -0.0322871096432209, 0.2840980291366577, 0.18538397550582886, -0.005560680292546749, 0.9832457304000854, 0.1443619728088379, 0.04135756194591522, -0.06398377567529678, 0.2888438105583191, -0.20834575593471527, 0.029565082862973213, 0.9920541644096375, -0.1760842204093933, 0.015375761315226555, 0.03221359848976135]} +{"t": 1.3587, "q": [-0.3734697997570038, -0.00862779002636671, -0.0011115273227915168, 0.6316165924072266, -0.2772107720375061, 0.014364494010806084, -0.3229251205921173, -0.002778209513053298, 0.0007633380591869354, 0.6245347261428833, -0.3461728096008301, 0.01579452119767666, 0.003816690295934677, 0.014618624933063984, -0.03228224813938141, 0.2840980291366577, 0.18538397550582886, -0.005584648810327053, 0.9832457304000854, 0.14442190527915955, 0.04134557768702507, -0.06397179514169693, 0.2888438105583191, -0.20835773646831512, 0.029565082862973213, 0.9920541644096375, -0.17613215744495392, 0.015387745574116707, 0.032225582748651505]} +{"t": 1.3754, "q": [-0.3734782934188843, -0.008636312559247017, -0.0010981354862451553, 0.6316165924072266, -0.2772107720375061, 0.014364494010806084, -0.3229336440563202, -0.002778209513053298, 0.0007633380591869354, 0.6245432496070862, -0.3461850583553314, 0.015787377953529358, 0.0038568659219890833, 0.0146186463534832, -0.032301921397447586, 0.28408604860305786, 0.1853959709405899, -0.005584648810327053, 0.9832337498664856, 0.14439792931079865, 0.04133359342813492, -0.06394782662391663, 0.28883180022239685, -0.20835773646831512, 0.02955309860408306, 0.9920541644096375, -0.17612017691135406, 0.015399729833006859, 0.032237567007541656]} +{"t": 1.3923, "q": [-0.3734782934188843, -0.00862779002636671, -0.0011115273227915168, 0.6316165924072266, -0.2772107720375061, 0.014364494010806084, -0.32294216752052307, -0.002769687445834279, 0.0007767299539409578, 0.6245347261428833, -0.34617677330970764, 0.01577274687588215, 0.0037899063900113106, 0.01464142370969057, -0.03228733316063881, 0.2840980291366577, 0.18538397550582886, -0.005560680292546749, 0.9832337498664856, 0.1443859487771988, 0.041309624910354614, -0.06397179514169693, 0.288819819688797, -0.20834575593471527, 0.029565082862973213, 0.9920541644096375, -0.1760602593421936, 0.015375761315226555, 0.032237567007541656]} +{"t": 1.409, "q": [-0.3734782934188843, -0.00862779002636671, -0.0010981354862451553, 0.6316165924072266, -0.2772149443626404, 0.014357260428369045, -0.3229251205921173, -0.002778209513053298, 0.0007633380591869354, 0.6245432496070862, -0.3461686670780182, 0.01578720472753048, 0.0038702578749507666, 0.014633841812610626, -0.03230203315615654, 0.2840980291366577, 0.18538397550582886, -0.005584648810327053, 0.9832337498664856, 0.14439792931079865, 0.04135756194591522, -0.06399576365947723, 0.288819819688797, -0.20835773646831512, 0.02955309860408306, 0.9920541644096375, -0.17612017691135406, 0.015375761315226555, 0.032225582748651505]} +{"t": 1.4259, "q": [-0.3734697997570038, -0.008644834160804749, -0.001084743533283472, 0.6316165924072266, -0.27721497416496277, 0.01434281561523676, -0.3229336440563202, -0.0027867318131029606, 0.0007633380591869354, 0.6245432496070862, -0.34617698192596436, 0.015801837667822838, 0.0038300822488963604, 0.014641433954238892, -0.03229716792702675, 0.2840980291366577, 0.18538397550582886, -0.005560680292546749, 0.9832577705383301, 0.1443859487771988, 0.04134557768702507, -0.06397179514169693, 0.28883180022239685, -0.20834575593471527, 0.029565082862973213, 0.9920661449432373, -0.17609620094299316, 0.015375761315226555, 0.03224955126643181]} +{"t": 1.4426, "q": [-0.37348681688308716, -0.00862779002636671, -0.0011115273227915168, 0.6316165924072266, -0.27722328901290894, 0.014357204549014568, -0.32294216752052307, -0.0027867318131029606, 0.0007767299539409578, 0.6245432496070862, -0.3461850583553314, 0.015787377953529358, 0.0038434739690274, 0.014641445130109787, -0.03230700641870499, 0.28411003947257996, 0.18538397550582886, -0.005560680292546749, 0.9832577705383301, 0.1443859487771988, 0.04135756194591522, -0.06397179514169693, 0.288819819688797, -0.20835773646831512, 0.02954111434519291, 0.9920541644096375, -0.17613215744495392, 0.015399729833006859, 0.032225582748651505]} +{"t": 1.4593, "q": [-0.3734782934188843, -0.00862779002636671, -0.0010981354862451553, 0.6316080689430237, -0.27722328901290894, 0.014357204549014568, -0.32295921444892883, -0.002778209513053298, 0.0007499461644329131, 0.6245432496070862, -0.3461850583553314, 0.015787377953529358, 0.0038568659219890833, 0.014649015851318836, -0.03228246793150902, 0.2840980291366577, 0.18538397550582886, -0.005560680292546749, 0.9832817316055298, 0.1443859487771988, 0.04133359342813492, -0.06397179514169693, 0.288819819688797, -0.20835773646831512, 0.02955309860408306, 0.9920661449432373, -0.17613215744495392, 0.015375761315226555, 0.032225582748651505]} +{"t": 1.4761, "q": [-0.3735209107398987, -0.00862779002636671, -0.0011115273227915168, 0.6316165924072266, -0.2772315740585327, 0.014371593482792377, -0.3229762613773346, -0.002778209513053298, 0.0007633380591869354, 0.6245262026786804, -0.3461933434009552, 0.015802010893821716, 0.0038300822488963604, 0.014641433954238892, -0.03229716792702675, 0.28411003947257996, 0.18538397550582886, -0.005572664551436901, 0.9832817316055298, 0.1444099098443985, 0.04134557768702507, -0.06397179514169693, 0.2888438105583191, -0.20835773646831512, 0.029565082862973213, 0.9920541644096375, -0.17621605098247528, 0.015375761315226555, 0.032225582748651505]} +{"t": 1.4929, "q": [-0.3735123872756958, -0.00862779002636671, -0.0011249192757532, 0.6316165924072266, -0.27724409103393555, 0.014364322647452354, -0.3229762613773346, -0.0027867318131029606, 0.0007633380591869354, 0.6245262026786804, -0.3461851477622986, 0.015801923349499702, 0.0038434739690274, 0.014664221554994583, -0.03229241818189621, 0.2840980291366577, 0.18538397550582886, -0.005560680292546749, 0.9832817316055298, 0.14439792931079865, 0.04134557768702507, -0.06395980715751648, 0.288819819688797, -0.20834575593471527, 0.02960103563964367, 0.9920661449432373, -0.17613215744495392, 0.015363777056336403, 0.032237567007541656]} +{"t": 1.5097, "q": [-0.3735209107398987, -0.008644834160804749, -0.0011517030652612448, 0.6316080689430237, -0.27724409103393555, 0.014364322647452354, -0.32299330830574036, -0.0027867318131029606, 0.0007499461644329131, 0.6245347261428833, -0.34620580077171326, 0.01582399383187294, 0.0038300822488963604, 0.014656619168817997, -0.03228744491934776, 0.28411003947257996, 0.18538397550582886, -0.005560680292546749, 0.9832697510719299, 0.1443859487771988, 0.041369546204805374, -0.06394782662391663, 0.288819819688797, -0.20833377540111542, 0.029565082862973213, 0.992090106010437, -0.17614413797855377, 0.015399729833006859, 0.03224955126643181]} +{"t": 1.5264, "q": [-0.37353795766830444, -0.00862779002636671, -0.0011383111122995615, 0.6316165924072266, -0.2772482633590698, 0.01435708999633789, -0.32300183176994324, -0.0027952538803219795, 0.0007633380591869354, 0.6245347261428833, -0.34620559215545654, 0.015794849023222923, 0.0038702578749507666, 0.014649037271738052, -0.032302141189575195, 0.28408604860305786, 0.18538397550582886, -0.005560680292546749, 0.9832937121391296, 0.14439792931079865, 0.04134557768702507, -0.06395980715751648, 0.28883180022239685, -0.20834575593471527, 0.029589051380753517, 0.9920661449432373, -0.17612017691135406, 0.015375761315226555, 0.03221359848976135]} +{"t": 1.5432, "q": [-0.3735464811325073, -0.00862779002636671, -0.0011383111122995615, 0.6316165924072266, -0.27726489305496216, 0.01435703132301569, -0.32299330830574036, -0.002769687445834279, 0.0007633380591869354, 0.6245262026786804, -0.34620580077171326, 0.01582399383187294, 0.0038434739690274, 0.014664221554994583, -0.03229241818189621, 0.2840980291366577, 0.18538397550582886, -0.005560680292546749, 0.9832697510719299, 0.14437396824359894, 0.04134557768702507, -0.06395980715751648, 0.2888438105583191, -0.20833377540111542, 0.029577067121863365, 0.9920661449432373, -0.17616811394691467, 0.015387745574116707, 0.032237567007541656]} +{"t": 1.5599, "q": [-0.3735550045967102, -0.008644834160804749, -0.0011383111122995615, 0.6316165924072266, -0.277256578207016, 0.014371496625244617, -0.32304441928863525, -0.002769687445834279, 0.0007499461644329131, 0.6245091557502747, -0.346209853887558, 0.015816764906048775, 0.0038434739690274, 0.014649037271738052, -0.032302141189575195, 0.2840980291366577, 0.185371994972229, -0.005560680292546749, 0.9832697510719299, 0.1443859487771988, 0.04133359342813492, -0.06395980715751648, 0.288819819688797, -0.20833377540111542, 0.029565082862973213, 0.992090106010437, -0.17615613341331482, 0.015387745574116707, 0.032237567007541656]} +{"t": 1.5767, "q": [-0.37358909845352173, -0.008636312559247017, -0.0011650949018076062, 0.6316251158714294, -0.277256578207016, 0.014371496625244617, -0.3230358958244324, -0.002778209513053298, 0.0007633380591869354, 0.6245006322860718, -0.3462139070034027, 0.015809517353773117, 0.0038434739690274, 0.014656619168817997, -0.03228744491934776, 0.28411003947257996, 0.18538397550582886, -0.005584648810327053, 0.9832937121391296, 0.14439792931079865, 0.04133359342813492, -0.06399576365947723, 0.28883180022239685, -0.20834575593471527, 0.029589051380753517, 0.9920781254768372, -0.17616811394691467, 0.015375761315226555, 0.03226153552532196]} +{"t": 1.5934, "q": [-0.37358909845352173, -0.00862779002636671, -0.0011650949018076062, 0.6316080689430237, -0.27726075053215027, 0.014364263974130154, -0.323061466217041, -0.002778209513053298, 0.0007633380591869354, 0.6245091557502747, -0.34620580077171326, 0.01582399383187294, 0.0038702578749507666, 0.014656619168817997, -0.03228744491934776, 0.2840980291366577, 0.18536001443862915, -0.005560680292546749, 0.9832937121391296, 0.14439792931079865, 0.04134557768702507, -0.06399576365947723, 0.28880783915519714, -0.20833377540111542, 0.02960103563964367, 0.992090106010437, -0.17621605098247528, 0.015387745574116707, 0.032237567007541656]} +{"t": 1.6102, "q": [-0.37358909845352173, -0.008610745891928673, -0.0011383111122995615, 0.6316165924072266, -0.277256578207016, 0.014371496625244617, -0.3230785131454468, -0.002778209513053298, 0.0007633380591869354, 0.6245006322860718, -0.3462139070034027, 0.015809517353773117, 0.0038568659219890833, 0.014649015851318836, -0.03228246793150902, 0.28411003947257996, 0.18536001443862915, -0.0055486964993178844, 0.9832697510719299, 0.14437396824359894, 0.04135756194591522, -0.06397179514169693, 0.28883180022239685, -0.20833377540111542, 0.029589051380753517, 0.9920781254768372, -0.17616811394691467, 0.015375761315226555, 0.03221359848976135]} +{"t": 1.6272, "q": [-0.37358909845352173, -0.008619267493486404, -0.0011383111122995615, 0.6316080689430237, -0.277256578207016, 0.014371496625244617, -0.3230785131454468, -0.002778209513053298, 0.0007901218486949801, 0.6244921088218689, -0.3462262451648712, 0.01581691950559616, 0.0038434739690274, 0.014664221554994583, -0.03229241818189621, 0.28408604860305786, 0.18538397550582886, -0.005560680292546749, 0.9832697510719299, 0.14437396824359894, 0.04135756194591522, -0.06399576365947723, 0.288819819688797, -0.20834575593471527, 0.029589051380753517, 0.9920781254768372, -0.17615613341331482, 0.015387745574116707, 0.032225582748651505]} +{"t": 1.6441, "q": [-0.3735976219177246, -0.00862779002636671, -0.0011383111122995615, 0.6316080689430237, -0.277256578207016, 0.014371496625244617, -0.32308703660964966, -0.0028037759475409985, 0.0007633380591869354, 0.6244921088218689, -0.3462221920490265, 0.015824150294065475, 0.0038300822488963604, 0.014649037271738052, -0.032302141189575195, 0.28411003947257996, 0.18538397550582886, -0.005584648810327053, 0.9832697510719299, 0.14439792931079865, 0.04133359342813492, -0.06399576365947723, 0.288819819688797, -0.20833377540111542, 0.029565082862973213, 0.9920781254768372, -0.17613215744495392, 0.015375761315226555, 0.032237567007541656]} +{"t": 1.6608, "q": [-0.3736061453819275, -0.008644834160804749, -0.0011383111122995615, 0.6316080689430237, -0.277256578207016, 0.014371496625244617, -0.32309556007385254, -0.002778209513053298, 0.0007633380591869354, 0.6244921088218689, -0.3462221920490265, 0.015824150294065475, 0.0038434739690274, 0.014649037271738052, -0.032302141189575195, 0.2840980291366577, 0.185371994972229, -0.005560680292546749, 0.9832937121391296, 0.14439792931079865, 0.04135756194591522, -0.06399576365947723, 0.288819819688797, -0.20833377540111542, 0.029577067121863365, 0.9921020865440369, -0.17609620094299316, 0.015387745574116707, 0.032237567007541656]} +{"t": 1.6775, "q": [-0.37361466884613037, -0.00862779002636671, -0.0011383111122995615, 0.6316165924072266, -0.2772607207298279, 0.014378691092133522, -0.32309556007385254, -0.002778209513053298, 0.0007633380591869354, 0.6244921088218689, -0.3462139070034027, 0.015809517353773117, 0.0038702578749507666, 0.014664221554994583, -0.03229241818189621, 0.28411003947257996, 0.18538397550582886, -0.005560680292546749, 0.9832937121391296, 0.1443859487771988, 0.04135756194591522, -0.06397179514169693, 0.288819819688797, -0.20833377540111542, 0.029589051380753517, 0.9920781254768372, -0.17609620094299316, 0.015399729833006859, 0.03224955126643181]} +{"t": 1.6943, "q": [-0.3736061453819275, -0.008636312559247017, -0.0011383111122995615, 0.6316080689430237, -0.277256578207016, 0.014371496625244617, -0.32309556007385254, -0.002778209513053298, 0.0007633380591869354, 0.6245006322860718, -0.3462139070034027, 0.015809517353773117, 0.0038434739690274, 0.014664221554994583, -0.03229241818189621, 0.2840980291366577, 0.18538397550582886, -0.005584648810327053, 0.9832937121391296, 0.14433801174163818, 0.04135756194591522, -0.06397179514169693, 0.288819819688797, -0.20832177996635437, 0.029589051380753517, 0.992090106010437, -0.17612017691135406, 0.015399729833006859, 0.032225582748651505]} +{"t": 1.711, "q": [-0.37362319231033325, -0.008619267493486404, -0.0011517030652612448, 0.6316165924072266, -0.2772565484046936, 0.014385923743247986, -0.32309556007385254, -0.002778209513053298, 0.0007901218486949801, 0.6244921088218689, -0.34621796011924744, 0.01580228842794895, 0.0038434739690274, 0.014671824872493744, -0.032297391444444656, 0.28411003947257996, 0.18538397550582886, -0.005572664551436901, 0.9832937121391296, 0.14433801174163818, 0.04134557768702507, -0.06398377567529678, 0.288819819688797, -0.20833377540111542, 0.029577067121863365, 0.9920781254768372, -0.17616811394691467, 0.01541171409189701, 0.032237567007541656]} +{"t": 1.7277, "q": [-0.37362319231033325, -0.008619267493486404, -0.0011383111122995615, 0.6316165924072266, -0.277256578207016, 0.014371496625244617, -0.3231126070022583, -0.002778209513053298, 0.0007633380591869354, 0.6244921088218689, -0.346209853887558, 0.015816764906048775, 0.0038568659219890833, 0.014656640589237213, -0.03230711445212364, 0.2840980291366577, 0.18538397550582886, -0.005560680292546749, 0.9833056926727295, 0.14437396824359894, 0.041369546204805374, -0.06397179514169693, 0.28880783915519714, -0.20832177996635437, 0.029577067121863365, 0.992090106010437, -0.1761081963777542, 0.015387745574116707, 0.03224955126643181]} +{"t": 1.7445, "q": [-0.3736061453819275, -0.00862779002636671, -0.0011383111122995615, 0.6316251158714294, -0.27724406123161316, 0.014393195509910583, -0.3231040835380554, -0.002778209513053298, 0.0007633380591869354, 0.6245006322860718, -0.34620559215545654, 0.015794849023222923, 0.0038568659219890833, 0.014656619168817997, -0.03228744491934776, 0.2840980291366577, 0.18536001443862915, -0.005584648810327053, 0.9832937121391296, 0.1443859487771988, 0.04135756194591522, -0.06397179514169693, 0.28883180022239685, -0.20833377540111542, 0.029577067121863365, 0.9920781254768372, -0.1761081963777542, 0.015375761315226555, 0.032237567007541656]} +{"t": 1.7612, "q": [-0.3736061453819275, -0.008644834160804749, -0.0011517030652612448, 0.6316336393356323, -0.2772524058818817, 0.014378729276359081, -0.32309556007385254, -0.002778209513053298, 0.0007901218486949801, 0.6245006322860718, -0.34620559215545654, 0.015794849023222923, 0.0038434739690274, 0.014671824872493744, -0.032297391444444656, 0.28411003947257996, 0.18538397550582886, -0.005584648810327053, 0.9833056926727295, 0.14442190527915955, 0.04134557768702507, -0.06397179514169693, 0.2888438105583191, -0.20833377540111542, 0.029577067121863365, 0.992090106010437, -0.17616811394691467, 0.015375761315226555, 0.032225582748651505]} +{"t": 1.778, "q": [-0.37358057498931885, -0.008619267493486404, -0.0011249192757532, 0.6316251158714294, -0.2772315740585327, 0.014371593482792377, -0.3230785131454468, -0.0027952538803219795, 0.0007633380591869354, 0.6245176792144775, -0.3461974859237671, 0.015809325501322746, 0.0038300822488963604, 0.014649037271738052, -0.032302141189575195, 0.2840980291366577, 0.18538397550582886, -0.005584648810327053, 0.9832937121391296, 0.14439792931079865, 0.041369546204805374, -0.06397179514169693, 0.288819819688797, -0.20833377540111542, 0.029589051380753517, 0.9920781254768372, -0.17607223987579346, 0.015375761315226555, 0.032237567007541656]} +{"t": 1.7947, "q": [-0.37358909845352173, -0.00862779002636671, -0.0011383111122995615, 0.6316165924072266, -0.2772524058818817, 0.014378729276359081, -0.3230785131454468, -0.0027867318131029606, 0.0007633380591869354, 0.6245006322860718, -0.3462097644805908, 0.015802202746272087, 0.0038568659219890833, 0.014656650833785534, -0.03231695294380188, 0.28411003947257996, 0.18538397550582886, -0.005584648810327053, 0.9832697510719299, 0.1443619728088379, 0.041369546204805374, -0.06398377567529678, 0.28880783915519714, -0.20832177996635437, 0.029589051380753517, 0.992090106010437, -0.17615613341331482, 0.015387745574116707, 0.03221359848976135]} +{"t": 1.8115, "q": [-0.3736061453819275, -0.008644834160804749, -0.0011383111122995615, 0.6316080689430237, -0.27724409103393555, 0.014364322647452354, -0.32308703660964966, -0.0027867318131029606, 0.0007633380591869354, 0.6245091557502747, -0.34620559215545654, 0.015794849023222923, 0.0038300822488963604, 0.014671824872493744, -0.032297391444444656, 0.2840980291366577, 0.18538397550582886, -0.005584648810327053, 0.9832937121391296, 0.14432603120803833, 0.041381530463695526, -0.06399576365947723, 0.288819819688797, -0.20833377540111542, 0.029589051380753517, 0.992090106010437, -0.1761081963777542, 0.015351792797446251, 0.03221359848976135]} +{"t": 1.8284, "q": [-0.37358057498931885, -0.008644834160804749, -0.0011383111122995615, 0.6316165924072266, -0.277235746383667, 0.014364360831677914, -0.3230785131454468, -0.0027952538803219795, 0.0007633380591869354, 0.6245176792144775, -0.3461974859237671, 0.015809325501322746, 0.0038300822488963604, 0.0146642429754138, -0.03231208771467209, 0.2840980291366577, 0.18538397550582886, -0.005560680292546749, 0.9832937121391296, 0.14437396824359894, 0.041369546204805374, -0.06397179514169693, 0.28880783915519714, -0.20833377540111542, 0.029589051380753517, 0.9921140670776367, -0.17609620094299316, 0.015363777056336403, 0.03224955126643181]} +{"t": 1.8451, "q": [-0.37358909845352173, -0.008644834160804749, -0.0011249192757532, 0.6316080689430237, -0.27723991870880127, 0.014371555298566818, -0.3230785131454468, -0.002778209513053298, 0.0007767299539409578, 0.6245176792144775, -0.34619730710983276, 0.015780217945575714, 0.0038434739690274, 0.01467184629291296, -0.032317060977220535, 0.2840980291366577, 0.18538397550582886, -0.005584648810327053, 0.9832937121391296, 0.1443859487771988, 0.041369546204805374, -0.06398377567529678, 0.28883180022239685, -0.20833377540111542, 0.029589051380753517, 0.992150068283081, -0.17609620094299316, 0.015375761315226555, 0.032237567007541656]} +{"t": 1.8619, "q": [-0.37358909845352173, -0.008619267493486404, -0.0011249192757532, 0.6316165924072266, -0.27724409103393555, 0.014364322647452354, -0.3230699896812439, -0.0027952538803219795, 0.0007633380591869354, 0.6245176792144775, -0.34620559215545654, 0.015794849023222923, 0.0038568659219890833, 0.014679428189992905, -0.0323023647069931, 0.28411003947257996, 0.18538397550582886, -0.005584648810327053, 0.9833056926727295, 0.1443859487771988, 0.04135756194591522, -0.06399576365947723, 0.288819819688797, -0.20832177996635437, 0.02961301989853382, 0.9921380281448364, -0.17612017691135406, 0.015387745574116707, 0.032225582748651505]} +{"t": 1.8789, "q": [-0.37358909845352173, -0.00862779002636671, -0.0011249192757532, 0.6316165924072266, -0.27724409103393555, 0.014364322647452354, -0.323061466217041, -0.0027867318131029606, 0.0007901218486949801, 0.6245176792144775, -0.34620559215545654, 0.015794849023222923, 0.003803298342972994, 0.01468703057616949, -0.03230733796954155, 0.2840980291366577, 0.18538397550582886, -0.005560680292546749, 0.9833296537399292, 0.14439792931079865, 0.04135756194591522, -0.06399576365947723, 0.28878387808799744, -0.20832177996635437, 0.029589051380753517, 0.992150068283081, -0.17616811394691467, 0.015399729833006859, 0.032237567007541656]} +{"t": 1.8959, "q": [-0.3735976219177246, -0.00862779002636671, -0.0011383111122995615, 0.6316336393356323, -0.277235746383667, 0.014378787949681282, -0.32304441928863525, -0.002778209513053298, 0.0007633380591869354, 0.6245176792144775, -0.34620559215545654, 0.015794849023222923, 0.0038300822488963604, 0.0146642429754138, -0.03231208771467209, 0.2840980291366577, 0.18536001443862915, -0.005560680292546749, 0.9833056926727295, 0.14437396824359894, 0.04134557768702507, -0.06401973217725754, 0.288819819688797, -0.20830979943275452, 0.029577067121863365, 0.9921140670776367, -0.17614413797855377, 0.015399729833006859, 0.032225582748651505]} +{"t": 1.9126, "q": [-0.3735976219177246, -0.008636312559247017, -0.0011383111122995615, 0.6316165924072266, -0.277235746383667, 0.014378787949681282, -0.323061466217041, -0.002778209513053298, 0.0007767299539409578, 0.6245176792144775, -0.34620559215545654, 0.015794849023222923, 0.003776514669880271, 0.014679428189992905, -0.0323023647069931, 0.28408604860305786, 0.18538397550582886, -0.005560680292546749, 0.9833176732063293, 0.14439792931079865, 0.04134557768702507, -0.06404370069503784, 0.288819819688797, -0.20830979943275452, 0.02960103563964367, 0.9921260476112366, -0.17616811394691467, 0.015399729833006859, 0.03221359848976135]} +{"t": 1.9294, "q": [-0.3736061453819275, -0.00862779002636671, -0.0011249192757532, 0.6316165924072266, -0.27724409103393555, 0.014364322647452354, -0.32305294275283813, -0.0027867318131029606, 0.0007633380591869354, 0.6245176792144775, -0.34620144963264465, 0.015787532553076744, 0.0038434739690274, 0.01467184629291296, -0.032317060977220535, 0.2840980291366577, 0.18538397550582886, -0.005560680292546749, 0.9833056926727295, 0.14442190527915955, 0.04133359342813492, -0.06400774419307709, 0.2887958586215973, -0.20830979943275452, 0.029577067121863365, 0.9921020865440369, -0.17613215744495392, 0.015387745574116707, 0.03224955126643181]} +{"t": 1.9461, "q": [-0.3735976219177246, -0.00862779002636671, -0.0011383111122995615, 0.6316165924072266, -0.2772524058818817, 0.014378729276359081, -0.3230699896812439, -0.002778209513053298, 0.0007633380591869354, 0.6245176792144775, -0.3461974859237671, 0.015809325501322746, 0.0038434739690274, 0.014687041752040386, -0.03231717273592949, 0.2840980291366577, 0.18538397550582886, -0.005560680292546749, 0.9833176732063293, 0.14439792931079865, 0.04133359342813492, -0.06401973217725754, 0.288819819688797, -0.20829781889915466, 0.029565082862973213, 0.9921020865440369, -0.17616811394691467, 0.015363777056336403, 0.03224955126643181]} +{"t": 1.9628, "q": [-0.37358909845352173, -0.00862779002636671, -0.0011383111122995615, 0.6316251158714294, -0.27724409103393555, 0.014364322647452354, -0.3230699896812439, -0.00276116537861526, 0.0007633380591869354, 0.6245262026786804, -0.34619730710983276, 0.015780217945575714, 0.0038300822488963604, 0.014679428189992905, -0.0323023647069931, 0.28408604860305786, 0.18538397550582886, -0.005560680292546749, 0.9833176732063293, 0.1443859487771988, 0.04133359342813492, -0.06400774419307709, 0.288819819688797, -0.20829781889915466, 0.029589051380753517, 0.9921380281448364, -0.17614413797855377, 0.015387745574116707, 0.03224955126643181]} +{"t": 1.9796, "q": [-0.3736061453819275, -0.008619267493486404, -0.0011383111122995615, 0.6316080689430237, -0.2772524058818817, 0.014378729276359081, -0.323061466217041, -0.002769687445834279, 0.0007901218486949801, 0.6245176792144775, -0.34620559215545654, 0.015794849023222923, 0.0038434739690274, 0.014687051996588707, -0.03232700750231743, 0.2840980291366577, 0.18538397550582886, -0.005572664551436901, 0.9833056926727295, 0.14439792931079865, 0.041321609169244766, -0.06399576365947723, 0.28883180022239685, -0.20830979943275452, 0.029589051380753517, 0.992150068283081, -0.17618009448051453, 0.015387745574116707, 0.032225582748651505]} +{"t": 1.9966, "q": [-0.3736061453819275, -0.008636312559247017, -0.0011249192757532, 0.6316165924072266, -0.27724406123161316, 0.014393195509910583, -0.32305294275283813, -0.002778209513053298, 0.0007633380591869354, 0.6245176792144775, -0.3461974859237671, 0.015809325501322746, 0.0038568659219890833, 0.01467184629291296, -0.032317060977220535, 0.2840980291366577, 0.18538397550582886, -0.005560680292546749, 0.9833176732063293, 0.1443859487771988, 0.04133359342813492, -0.06399576365947723, 0.28880783915519714, -0.20830979943275452, 0.029589051380753517, 0.9921380281448364, -0.17616811394691467, 0.015387745574116707, 0.032225582748651505]} +{"t": 2.0134, "q": [-0.37358057498931885, -0.008619267493486404, -0.0011249192757532, 0.6316251158714294, -0.27723991870880127, 0.01435712818056345, -0.32305294275283813, -0.0027867318131029606, 0.0007767299539409578, 0.6245176792144775, -0.3462015390396118, 0.01580209657549858, 0.0038434739690274, 0.01467184629291296, -0.032317060977220535, 0.2840980291366577, 0.18538397550582886, -0.005560680292546749, 0.9833176732063293, 0.14433801174163818, 0.04135756194591522, -0.06399576365947723, 0.28880783915519714, -0.20829781889915466, 0.029589051380753517, 0.9921380281448364, -0.17613215744495392, 0.015351792797446251, 0.032237567007541656]} +{"t": 2.0301, "q": [-0.37358909845352173, -0.008636312559247017, -0.0011249192757532, 0.6316165924072266, -0.2772315740585327, 0.014371593482792377, -0.32305294275283813, -0.0027867318131029606, 0.0007499461644329131, 0.6245262026786804, -0.34620165824890137, 0.01581667922437191, 0.0038702578749507666, 0.014702237211167812, -0.03231728449463844, 0.2840980291366577, 0.18538397550582886, -0.005560680292546749, 0.9833056926727295, 0.1443859487771988, 0.04133359342813492, -0.06399576365947723, 0.2887958586215973, -0.20829781889915466, 0.029577067121863365, 0.9921020865440369, -0.17615613341331482, 0.015375761315226555, 0.032237567007541656]} +{"t": 2.0471, "q": [-0.37361466884613037, -0.00862779002636671, -0.0011115273227915168, 0.6316165924072266, -0.27724409103393555, 0.014364322647452354, -0.32305294275283813, -0.002778209513053298, 0.0007633380591869354, 0.6245176792144775, -0.3461974859237671, 0.015809325501322746, 0.0038568659219890833, 0.014702237211167812, -0.03231728449463844, 0.28411003947257996, 0.18538397550582886, -0.005572664551436901, 0.9833176732063293, 0.1443859487771988, 0.04133359342813492, -0.06399576365947723, 0.2887958586215973, -0.2082858383655548, 0.029565082862973213, 0.992150068283081, -0.17618009448051453, 0.015387745574116707, 0.03224955126643181]} +{"t": 2.0638, "q": [-0.37357205152511597, -0.00862779002636671, -0.0011249192757532, 0.6316251158714294, -0.277235746383667, 0.014378787949681282, -0.3230188488960266, -0.0027952538803219795, 0.0007901218486949801, 0.6245262026786804, -0.3461933434009552, 0.015802010893821716, 0.00388364982791245, 0.014694645069539547, -0.032322145998477936, 0.28408604860305786, 0.18538397550582886, -0.005584648810327053, 0.9833176732063293, 0.14439792931079865, 0.04134557768702507, -0.06400774419307709, 0.288819819688797, -0.20829781889915466, 0.029589051380753517, 0.9921140670776367, -0.17613215744495392, 0.015375761315226555, 0.03224955126643181]} +{"t": 2.0806, "q": [-0.37358057498931885, -0.00862779002636671, -0.0011249192757532, 0.6316165924072266, -0.2772315740585327, 0.014371593482792377, -0.3230358958244324, -0.002778209513053298, 0.0007633380591869354, 0.6245347261428833, -0.3461933434009552, 0.015802010893821716, 0.0038568659219890833, 0.014709839597344398, -0.03232225775718689, 0.2840980291366577, 0.18538397550582886, -0.005560680292546749, 0.9833296537399292, 0.14439792931079865, 0.041321609169244766, -0.06401973217725754, 0.288819819688797, -0.20830979943275452, 0.029589051380753517, 0.9921380281448364, -0.17616811394691467, 0.01541171409189701, 0.03224955126643181]} +{"t": 2.0973, "q": [-0.37358909845352173, -0.008619267493486404, -0.0011249192757532, 0.6316251158714294, -0.27724409103393555, 0.014364322647452354, -0.323061466217041, -0.002778209513053298, 0.0007767299539409578, 0.6245262026786804, -0.34620559215545654, 0.015794849023222923, 0.0038568659219890833, 0.014702237211167812, -0.03231728449463844, 0.2840980291366577, 0.18538397550582886, -0.005560680292546749, 0.983341634273529, 0.1444099098443985, 0.04134557768702507, -0.06399576365947723, 0.288819819688797, -0.20829781889915466, 0.029577067121863365, 0.9921380281448364, -0.1761081963777542, 0.015387745574116707, 0.032237567007541656]} +{"t": 2.1142, "q": [-0.37358909845352173, -0.008644834160804749, -0.0011383111122995615, 0.6316165924072266, -0.27724409103393555, 0.014364322647452354, -0.323061466217041, -0.002778209513053298, 0.0007499461644329131, 0.6245262026786804, -0.3462097644805908, 0.015802202746272087, 0.003736338810995221, 0.014702237211167812, -0.03231728449463844, 0.28411003947257996, 0.18538397550582886, -0.005584648810327053, 0.9833176732063293, 0.14433801174163818, 0.04133359342813492, -0.06400774419307709, 0.28883180022239685, -0.20829781889915466, 0.029577067121863365, 0.9921260476112366, -0.17618009448051453, 0.015351792797446251, 0.03224955126643181]} +{"t": 2.1309, "q": [-0.37358909845352173, -0.008636312559247017, -0.0011383111122995615, 0.6316421627998352, -0.2772524058818817, 0.014378729276359081, -0.32304441928863525, -0.002778209513053298, 0.0007633380591869354, 0.6245347261428833, -0.34620559215545654, 0.015794849023222923, 0.0038434739690274, 0.014702258631587029, -0.03233695402741432, 0.28411003947257996, 0.1853959709405899, -0.005560680292546749, 0.983341634273529, 0.1444099098443985, 0.04133359342813492, -0.06399576365947723, 0.288819819688797, -0.2082858383655548, 0.029589051380753517, 0.9921260476112366, -0.17616811394691467, 0.015375761315226555, 0.03224955126643181]} +{"t": 2.1477, "q": [-0.37358909845352173, -0.00862779002636671, -0.0011383111122995615, 0.6316251158714294, -0.2772524058818817, 0.014378729276359081, -0.323061466217041, -0.002769687445834279, 0.0007633380591869354, 0.6245347261428833, -0.34620144963264465, 0.015787532553076744, 0.0038434739690274, 0.014702258631587029, -0.03233695402741432, 0.28408604860305786, 0.18538397550582886, -0.005560680292546749, 0.9833176732063293, 0.14439792931079865, 0.04133359342813492, -0.06399576365947723, 0.28883180022239685, -0.20829781889915466, 0.029589051380753517, 0.9921380281448364, -0.17613215744495392, 0.015375761315226555, 0.032225582748651505]} +{"t": 2.1646, "q": [-0.37358909845352173, -0.008636312559247017, -0.0011383111122995615, 0.6316251158714294, -0.2772482633590698, 0.01435708999633789, -0.323061466217041, -0.002769687445834279, 0.0007767299539409578, 0.6245262026786804, -0.34620559215545654, 0.015794849023222923, 0.0038434739690274, 0.014709839597344398, -0.03232225775718689, 0.28408604860305786, 0.18538397550582886, -0.005584648810327053, 0.9833296537399292, 0.1444099098443985, 0.04134557768702507, -0.06400774419307709, 0.28880783915519714, -0.2082858383655548, 0.029589051380753517, 0.9921380281448364, -0.17616811394691467, 0.015387745574116707, 0.032237567007541656]} +{"t": 2.1813, "q": [-0.3736061453819275, -0.008644834160804749, -0.0011383111122995615, 0.6316251158714294, -0.27724409103393555, 0.014364322647452354, -0.323061466217041, -0.0028037759475409985, 0.0007633380591869354, 0.6245176792144775, -0.3461974859237671, 0.015809325501322746, 0.003803298342972994, 0.01471744291484356, -0.032327231019735336, 0.28408604860305786, 0.18538397550582886, -0.005560680292546749, 0.9833056926727295, 0.1443619728088379, 0.04134557768702507, -0.06400774419307709, 0.288819819688797, -0.20829781889915466, 0.029589051380753517, 0.9921140670776367, -0.17616811394691467, 0.015387745574116707, 0.032237567007541656]} +{"t": 2.198, "q": [-0.37358909845352173, -0.008644834160804749, -0.0011249192757532, 0.6316251158714294, -0.277235746383667, 0.014378787949681282, -0.32305294275283813, -0.0027952538803219795, 0.0007901218486949801, 0.6245347261428833, -0.3461933434009552, 0.015802010893821716, 0.0038300822488963604, 0.014694665558636189, -0.03234181925654411, 0.28408604860305786, 0.18538397550582886, -0.005560680292546749, 0.9833296537399292, 0.1444099098443985, 0.04134557768702507, -0.06400774419307709, 0.2888438105583191, -0.20827385783195496, 0.029577067121863365, 0.9921260476112366, -0.17613215744495392, 0.015375761315226555, 0.03224955126643181]} +{"t": 2.2148, "q": [-0.37358057498931885, -0.00862779002636671, -0.0011249192757532, 0.6316165924072266, -0.2772315740585327, 0.014371593482792377, -0.323061466217041, -0.0027867318131029606, 0.0008035137434490025, 0.6245347261428833, -0.3461974859237671, 0.015809325501322746, 0.003803298342972994, 0.014702258631587029, -0.03233695402741432, 0.28408604860305786, 0.18538397550582886, -0.005572664551436901, 0.9833296537399292, 0.1444099098443985, 0.04134557768702507, -0.06401973217725754, 0.288819819688797, -0.2082858383655548, 0.029565082862973213, 0.9921140670776367, -0.17612017691135406, 0.015387745574116707, 0.03224955126643181]} +{"t": 2.2315, "q": [-0.3735635280609131, -0.008644834160804749, -0.0011249192757532, 0.6316165924072266, -0.2772315740585327, 0.014371593482792377, -0.32304441928863525, -0.002778209513053298, 0.0007633380591869354, 0.6245262026786804, -0.3461974859237671, 0.015809325501322746, 0.0038568659219890833, 0.014702258631587029, -0.03233695402741432, 0.2840980291366577, 0.1853959709405899, -0.005572664551436901, 0.9833176732063293, 0.14431403577327728, 0.04134557768702507, -0.06401973217725754, 0.288819819688797, -0.2082858383655548, 0.029589051380753517, 0.9921260476112366, -0.1761081963777542, 0.015351792797446251, 0.03221359848976135]} +{"t": 2.2484, "q": [-0.3735635280609131, -0.00862779002636671, -0.0011383111122995615, 0.6316421627998352, -0.27723991870880127, 0.01435712818056345, -0.32304441928863525, -0.0027867318131029606, 0.0007901218486949801, 0.6245262026786804, -0.3461850583553314, 0.015787377953529358, 0.0038434739690274, 0.014709861017763615, -0.03234192728996277, 0.2840980291366577, 0.18538397550582886, -0.005584648810327053, 0.9833296537399292, 0.14433801174163818, 0.04135756194591522, -0.06401973217725754, 0.28878387808799744, -0.2082858383655548, 0.029565082862973213, 0.9921380281448364, -0.17609620094299316, 0.015387745574116707, 0.03224955126643181]} +{"t": 2.2652, "q": [-0.37358057498931885, -0.008636312559247017, -0.0011383111122995615, 0.6316251158714294, -0.2772315740585327, 0.014371593482792377, -0.32305294275283813, -0.0028037759475409985, 0.0007633380591869354, 0.6245432496070862, -0.3461850583553314, 0.015787377953529358, 0.0038434739690274, 0.01471744291484356, -0.032327231019735336, 0.2840980291366577, 0.18536001443862915, -0.005572664551436901, 0.983341634273529, 0.14439792931079865, 0.04134557768702507, -0.06401973217725754, 0.28880783915519714, -0.2082858383655548, 0.029589051380753517, 0.9921260476112366, -0.1760842204093933, 0.015363777056336403, 0.03224955126643181]} +{"t": 2.2819, "q": [-0.37358057498931885, -0.008644834160804749, -0.0011249192757532, 0.6316165924072266, -0.2772274315357208, 0.014364399015903473, -0.32304441928863525, -0.0027952538803219795, 0.0007499461644329131, 0.6245432496070862, -0.3461850583553314, 0.015787377953529358, 0.003803298342972994, 0.01471744291484356, -0.032327231019735336, 0.28408604860305786, 0.185371994972229, -0.005560680292546749, 0.983341634273529, 0.14437396824359894, 0.04135756194591522, -0.06400774419307709, 0.28880783915519714, -0.20829781889915466, 0.029577067121863365, 0.992150068283081, -0.1761081963777542, 0.015387745574116707, 0.032237567007541656]} +{"t": 2.2986, "q": [-0.37358057498931885, -0.00862779002636671, -0.0011115273227915168, 0.6316251158714294, -0.2772315740585327, 0.014371593482792377, -0.3230358958244324, -0.002769687445834279, 0.0007767299539409578, 0.6245432496070862, -0.3461933434009552, 0.015802010893821716, 0.0038300822488963604, 0.01472504623234272, -0.03233220428228378, 0.28408604860305786, 0.18538397550582886, -0.005560680292546749, 0.983341634273529, 0.14437396824359894, 0.04133359342813492, -0.06400774419307709, 0.2887958586215973, -0.20829781889915466, 0.029589051380753517, 0.992150068283081, -0.17609620094299316, 0.015387745574116707, 0.032237567007541656]} +{"t": 2.3155, "q": [-0.37358057498931885, -0.008644834160804749, -0.0011383111122995615, 0.6316336393356323, -0.27724409103393555, 0.014364322647452354, -0.32305294275283813, -0.002769687445834279, 0.0007499461644329131, 0.6245517730712891, -0.34620165824890137, 0.01581667922437191, 0.0038568659219890833, 0.01471744291484356, -0.032327231019735336, 0.2840980291366577, 0.18538397550582886, -0.005584648810327053, 0.9833296537399292, 0.1443619728088379, 0.04134557768702507, -0.06400774419307709, 0.288819819688797, -0.2082858383655548, 0.02961301989853382, 0.9921380281448364, -0.17609620094299316, 0.015375761315226555, 0.032225582748651505]} +{"t": 2.3323, "q": [-0.3735550045967102, -0.008644834160804749, -0.0011115273227915168, 0.6316080689430237, -0.277235746383667, 0.014378787949681282, -0.32304441928863525, -0.0027867318131029606, 0.0007633380591869354, 0.6245432496070862, -0.34620559215545654, 0.015794849023222923, 0.0038300822488963604, 0.01472504623234272, -0.03233220428228378, 0.28408604860305786, 0.18538397550582886, -0.005584648810327053, 0.9833296537399292, 0.14439792931079865, 0.04134557768702507, -0.06400774419307709, 0.28880783915519714, -0.2082858383655548, 0.029589051380753517, 0.9921380281448364, -0.1761081963777542, 0.015387745574116707, 0.0322016142308712]} +{"t": 2.349, "q": [-0.37358057498931885, -0.008636312559247017, -0.0011115273227915168, 0.6316251158714294, -0.2772524058818817, 0.014378729276359081, -0.32304441928863525, -0.0028122980147600174, 0.0007633380591869354, 0.6245347261428833, -0.34620165824890137, 0.01581667922437191, 0.0038568659219890833, 0.014725035056471825, -0.032322365790605545, 0.2840980291366577, 0.18538397550582886, -0.005584648810327053, 0.9833296537399292, 0.1444099098443985, 0.04133359342813492, -0.06400774419307709, 0.28880783915519714, -0.2082858383655548, 0.029577067121863365, 0.9921380281448364, -0.17612017691135406, 0.015387745574116707, 0.032237567007541656]} +{"t": 2.3659, "q": [-0.37358057498931885, -0.00862779002636671, -0.0011115273227915168, 0.6316251158714294, -0.2772315740585327, 0.014371593482792377, -0.32304441928863525, -0.002769687445834279, 0.0007767299539409578, 0.6245432496070862, -0.34620144963264465, 0.015787532553076744, 0.0038300822488963604, 0.014717464335262775, -0.032346900552511215, 0.28408604860305786, 0.18538397550582886, -0.005584648810327053, 0.983341634273529, 0.14437396824359894, 0.041309624910354614, -0.06399576365947723, 0.28880783915519714, -0.2082858383655548, 0.02960103563964367, 0.9921260476112366, -0.17618009448051453, 0.015363777056336403, 0.03224955126643181]} +{"t": 2.3827, "q": [-0.3735635280609131, -0.008636312559247017, -0.0011115273227915168, 0.6316165924072266, -0.2772274315357208, 0.014364399015903473, -0.32304441928863525, -0.002778209513053298, 0.0007633380591869354, 0.6245602965354919, -0.3461892008781433, 0.015794694423675537, 0.0038568659219890833, 0.014709850773215294, -0.03233209252357483, 0.2840980291366577, 0.18538397550582886, -0.005584648810327053, 0.983341634273529, 0.1444099098443985, 0.041321609169244766, -0.06400774419307709, 0.28880783915519714, -0.20830979943275452, 0.029565082862973213, 0.9921380281448364, -0.17612017691135406, 0.015363777056336403, 0.03224955126643181]} +{"t": 2.3994, "q": [-0.3735550045967102, -0.00862779002636671, -0.0011249192757532, 0.6316336393356323, -0.2772315740585327, 0.014371593482792377, -0.3230273723602295, -0.002769687445834279, 0.0007633380591869354, 0.6245602965354919, -0.3461850583553314, 0.015787377953529358, 0.0038434739690274, 0.01471744291484356, -0.032327231019735336, 0.28411003947257996, 0.18538397550582886, -0.005560680292546749, 0.983341634273529, 0.1443619728088379, 0.04134557768702507, -0.06400774419307709, 0.288819819688797, -0.20835773646831512, 0.029577067121863365, 0.992150068283081, -0.17614413797855377, 0.015387745574116707, 0.032237567007541656]} +{"t": 2.4162, "q": [-0.3735550045967102, -0.008619267493486404, -0.0011249192757532, 0.6316251158714294, -0.2772274315357208, 0.014364399015903473, -0.3230358958244324, -0.002778209513053298, 0.0007633380591869354, 0.6245602965354919, -0.3461931645870209, 0.015772901475429535, 0.0038568659219890833, 0.014702247455716133, -0.03232711926102638, 0.28411003947257996, 0.18538397550582886, -0.005560680292546749, 0.9833296537399292, 0.1443859487771988, 0.04133359342813492, -0.06399576365947723, 0.288819819688797, -0.20833377540111542, 0.02955309860408306, 0.992150068283081, -0.17615613341331482, 0.015399729833006859, 0.032237567007541656]} +{"t": 2.4329, "q": [-0.3735464811325073, -0.008636312559247017, -0.0011249192757532, 0.6316251158714294, -0.27722328901290894, 0.014357204549014568, -0.3230358958244324, -0.00276116537861526, 0.0007633380591869354, 0.6245517730712891, -0.3461850583553314, 0.015787377953529358, 0.0038568659219890833, 0.01472504623234272, -0.03233220428228378, 0.28411003947257996, 0.18536001443862915, -0.005584648810327053, 0.9833296537399292, 0.1443859487771988, 0.04133359342813492, -0.06401973217725754, 0.288819819688797, -0.20835773646831512, 0.02954111434519291, 0.992150068283081, -0.17621605098247528, 0.015387745574116707, 0.032237567007541656]} +{"t": 2.4497, "q": [-0.3735550045967102, -0.008636312559247017, -0.0011249192757532, 0.6316251158714294, -0.27722328901290894, 0.014357204549014568, -0.3230273723602295, -0.002778209513053298, 0.0007633380591869354, 0.6245602965354919, -0.3461850583553314, 0.015787377953529358, 0.0038568659219890833, 0.01470987219363451, -0.032351765781641006, 0.284074068069458, 0.18538397550582886, -0.005584648810327053, 0.983341634273529, 0.1443859487771988, 0.04135756194591522, -0.06399576365947723, 0.28883180022239685, -0.20839369297027588, 0.02954111434519291, 0.992150068283081, -0.17612017691135406, 0.015375761315226555, 0.03224955126643181]} +{"t": 2.4664, "q": [-0.3735209107398987, -0.008619267493486404, -0.0011249192757532, 0.6316251158714294, -0.27722328901290894, 0.014357204549014568, -0.3230358958244324, -0.002769687445834279, 0.0007365542696788907, 0.6245688199996948, -0.3461850583553314, 0.015787377953529358, 0.0038568659219890833, 0.01470987219363451, -0.032351765781641006, 0.28408604860305786, 0.18538397550582886, -0.005560680292546749, 0.9833296537399292, 0.14439792931079865, 0.04133359342813492, -0.06399576365947723, 0.288819819688797, -0.20847758650779724, 0.029517147690057755, 0.992150068283081, -0.17613215744495392, 0.015375761315226555, 0.03224955126643181]} +{"t": 2.4831, "q": [-0.37352943420410156, -0.008602224290370941, -0.0011650949018076062, 0.6316165924072266, -0.27722328901290894, 0.014357204549014568, -0.32304441928863525, -0.00276116537861526, 0.000709770480170846, 0.6245773434638977, -0.3461974859237671, 0.015809325501322746, 0.0038568659219890833, 0.01470987219363451, -0.032351765781641006, 0.2840980291366577, 0.18538397550582886, -0.005584648810327053, 0.983341634273529, 0.14437396824359894, 0.04133359342813492, -0.06399576365947723, 0.28880783915519714, -0.20859742164611816, 0.02943325787782669, 0.992150068283081, -0.17616811394691467, 0.015387745574116707, 0.03224955126643181]} +{"t": 2.4998, "q": [-0.37352943420410156, -0.008585179224610329, -0.0011383111122995615, 0.6316251158714294, -0.27722328901290894, 0.014357204549014568, -0.3230358958244324, -0.002752643311396241, 0.0007231623749248683, 0.6246028542518616, -0.34619730710983276, 0.015780217945575714, 0.0038702578749507666, 0.01470226887613535, -0.03234679251909256, 0.28408604860305786, 0.18538397550582886, -0.005560680292546749, 0.9833536148071289, 0.14442190527915955, 0.04133359342813492, -0.06399576365947723, 0.28878387808799744, -0.2087891697883606, 0.02942127361893654, 0.992150068283081, -0.17616811394691467, 0.015399729833006859, 0.03224955126643181]} +{"t": 2.5166, "q": [-0.37353795766830444, -0.008602224290370941, -0.0011650949018076062, 0.6316251158714294, -0.2772274315357208, 0.014364399015903473, -0.32305294275283813, -0.002752643311396241, 0.0006963785854168236, 0.6246284246444702, -0.3462015390396118, 0.01580209657549858, 0.0038434739690274, 0.014717464335262775, -0.032346900552511215, 0.2841819226741791, 0.1854199320077896, -0.005560680292546749, 0.9833775758743286, 0.1443859487771988, 0.04129764065146446, -0.06403171271085739, 0.2887958586215973, -0.20889702439308167, 0.029397305101156235, 0.992150068283081, -0.17613215744495392, 0.015387745574116707, 0.03224955126643181]} +{"t": 2.5333, "q": [-0.37353795766830444, -0.008610745891928673, -0.001191878691315651, 0.6316251158714294, -0.27722328901290894, 0.014357204549014568, -0.32304441928863525, -0.002752643311396241, 0.0006829866906628013, 0.6246199011802673, -0.34620559215545654, 0.015794849023222923, 0.0038970415480434895, 0.014709850773215294, -0.03233209252357483, 0.2843497097492218, 0.18550382554531097, -0.005560680292546749, 0.9834734797477722, 0.1443859487771988, 0.041309624910354614, -0.06401973217725754, 0.28883180022239685, -0.2090648114681244, 0.029385320842266083, 0.992150068283081, -0.17622803151607513, 0.015399729833006859, 0.03224955126643181]} +{"t": 2.55, "q": [-0.3735635280609131, -0.008602224290370941, -0.0012052706442773342, 0.6316165924072266, -0.27722328901290894, 0.014357204549014568, -0.3230358958244324, -0.002752643311396241, 0.0006562029011547565, 0.6246284246444702, -0.34620144963264465, 0.015787532553076744, 0.00416487967595458, 0.014717432670295238, -0.0323173925280571, 0.2845294773578644, 0.18556374311447144, -0.0055486964993178844, 0.9834974408149719, 0.1443859487771988, 0.04135756194591522, -0.06399576365947723, 0.2888438105583191, -0.20930449664592743, 0.029385320842266083, 0.9921620488166809, -0.17616811394691467, 0.015387745574116707, 0.03224955126643181]} +{"t": 2.5668, "q": [-0.37357205152511597, -0.008619267493486404, -0.0012052706442773342, 0.6316336393356323, -0.27722328901290894, 0.014357204549014568, -0.3230103552341461, -0.00276116537861526, 0.0006562029011547565, 0.6246284246444702, -0.3461892008781433, 0.015794694423675537, 0.004432717338204384, 0.014732638373970985, -0.03232733905315399, 0.28470924496650696, 0.18556374311447144, -0.0055486964993178844, 0.983569324016571, 0.14439792931079865, 0.041369546204805374, -0.06400774419307709, 0.288819819688797, -0.20956814289093018, 0.029385320842266083, 0.9921740293502808, -0.17620407044887543, 0.015387745574116707, 0.03224955126643181]} +{"t": 2.5835, "q": [-0.37358057498931885, -0.008610745891928673, -0.0012052706442773342, 0.6316251158714294, -0.2772274315357208, 0.014364399015903473, -0.3230358958244324, -0.0027867318131029606, 0.0006562029011547565, 0.6246284246444702, -0.34620144963264465, 0.015787532553076744, 0.004660379607230425, 0.01473264954984188, -0.03233717754483223, 0.2848290801048279, 0.18551580607891083, -0.0055486964993178844, 0.9836412668228149, 0.14427809417247772, 0.04135756194591522, -0.06399576365947723, 0.2887958586215973, -0.20993965864181519, 0.029397305101156235, 0.9922099709510803, -0.17619207501411438, 0.015399729833006859, 0.03226153552532196]} +{"t": 2.6002, "q": [-0.37357205152511597, -0.008593701757490635, -0.0012052706442773342, 0.6316336393356323, -0.2772274315357208, 0.014364399015903473, -0.3230273723602295, -0.00276116537861526, 0.0006294191116467118, 0.6246284246444702, -0.3461892008781433, 0.015794694423675537, 0.004740730859339237, 0.014664296060800552, -0.03236126899719238, 0.2849489152431488, 0.18492858111858368, -0.005596633069217205, 0.9837850332260132, 0.14426609873771667, 0.04133359342813492, -0.06399576365947723, 0.288819819688797, -0.2103111743927002, 0.029337383806705475, 0.9921979904174805, -0.17614413797855377, 0.015399729833006859, 0.03224955126643181]} +{"t": 2.6169, "q": [-0.37361466884613037, -0.008585179224610329, -0.0012856220128014684, 0.6316421627998352, -0.27722328901290894, 0.014357204549014568, -0.323061466217041, -0.00276116537861526, 0.0005356758483685553, 0.6246284246444702, -0.34620144963264465, 0.015787532553076744, 0.004780906718224287, 0.014573167078197002, -0.03239994868636131, 0.2851286828517914, 0.1841256320476532, -0.005704491399228573, 0.9838809370994568, 0.14425411820411682, 0.041309624910354614, -0.06401973217725754, 0.288819819688797, -0.21071863174438477, 0.02930143103003502, 0.9922219514846802, -0.17620407044887543, 0.01541171409189701, 0.03224955126643181]} +{"t": 2.6337, "q": [-0.3736061453819275, -0.008551090955734253, -0.0013525814283639193, 0.6316421627998352, -0.27721497416496277, 0.01434281561523676, -0.3230358958244324, -0.0027270768769085407, 0.00044193255598656833, 0.6246284246444702, -0.3461931645870209, 0.015772901475429535, 0.004821082577109337, 0.014504781924188137, -0.03239453583955765, 0.2853923439979553, 0.18390992283821106, -0.0057284594513475895, 0.9839528203010559, 0.14430205523967743, 0.041309624910354614, -0.06404370069503784, 0.28887975215911865, -0.21117402613162994, 0.029229525476694107, 0.99223393201828, -0.17616811394691467, 0.015399729833006859, 0.03224955126643181]} +{"t": 2.6504, "q": [-0.373640239238739, -0.008525524288415909, -0.0014061490073800087, 0.6316506862640381, -0.27719831466674805, 0.014342909678816795, -0.3230358958244324, -0.002710032742470503, 0.00037497308221645653, 0.6246369481086731, -0.34619325399398804, 0.015787465497851372, 0.0049148257821798325, 0.014497211202979088, -0.03241907060146332, 0.28556013107299805, 0.18393388390541077, -0.005716475658118725, 0.9840127229690552, 0.14437396824359894, 0.041261687874794006, -0.06406766921281815, 0.288819819688797, -0.21171332895755768, 0.029145635664463043, 0.9922219514846802, -0.17620407044887543, 0.01541171409189701, 0.03224955126643181]} +{"t": 2.6673, "q": [-0.37363171577453613, -0.008525524288415909, -0.0014329327968880534, 0.631659209728241, -0.2772108018398285, 0.014335621148347855, -0.32304441928863525, -0.0026929883752018213, 0.0003481892927084118, 0.6246539950370789, -0.3462013602256775, 0.0157729871571064, 0.00512909609824419, 0.014520020224153996, -0.03243399038910866, 0.2855001986026764, 0.18411365151405334, -0.005596633069217205, 0.9840247631072998, 0.14437396824359894, 0.041261687874794006, -0.064079649746418, 0.2885681688785553, -0.21262411773204803, 0.02907373011112213, 0.9921979904174805, -0.17622803151607513, 0.015423697419464588, 0.032237567007541656]} +{"t": 2.684, "q": [-0.37363171577453613, -0.008491436019539833, -0.0014597165863960981, 0.6316506862640381, -0.27721914649009705, 0.014321154914796352, -0.32304441928863525, -0.002701510675251484, 0.0003214055032003671, 0.6246710419654846, -0.34622177481651306, 0.015765931457281113, 0.0052094473503530025, 0.01462649367749691, -0.03253312408924103, 0.2852245569229126, 0.18434135615825653, -0.005572664551436901, 0.9840127229690552, 0.1443859487771988, 0.0412377193570137, -0.06404370069503784, 0.2878251373767853, -0.21354691684246063, 0.028917934745550156, 0.992150068283081, -0.17627596855163574, 0.015399729833006859, 0.03226153552532196]} +{"t": 2.7008, "q": [-0.37362319231033325, -0.008491436019539833, -0.0014865003759041429, 0.6316421627998352, -0.2772650122642517, 0.014256003312766552, -0.323061466217041, -0.0026929883752018213, 0.0003481892927084118, 0.6246795654296875, -0.34623390436172485, 0.015744242817163467, 0.005048744846135378, 0.01479385606944561, -0.032731033861637115, 0.28470924496650696, 0.18446119129657745, -0.0055367122404277325, 0.9839168787002563, 0.14437396824359894, 0.04109390825033188, -0.06403171271085739, 0.28666266798973083, -0.21454159915447235, 0.028798094019293785, 0.9920182228088379, -0.17632390558719635, 0.015387745574116707, 0.03224955126643181]} +{"t": 2.7175, "q": [-0.37361466884613037, -0.008491436019539833, -0.0014731085393577814, 0.6316421627998352, -0.2772649824619293, 0.014284858480095863, -0.32305294275283813, -0.0026844663079828024, 0.0003883649769704789, 0.6246710419654846, -0.3462461829185486, 0.015737120062112808, 0.004821082577109337, 0.015333685092628002, -0.03306456655263901, 0.28401416540145874, 0.18448516726493835, -0.005560680292546749, 0.9837730526924133, 0.14437396824359894, 0.04104597121477127, -0.06406766921281815, 0.2854762375354767, -0.21536850929260254, 0.028630314394831657, 0.991862416267395, -0.17632390558719635, 0.015351792797446251, 0.03226153552532196]} +{"t": 2.7343, "q": [-0.3735976219177246, -0.008482914417982101, -0.0014061490073800087, 0.6316506862640381, -0.2772690951824188, 0.014320925809442997, -0.32305294275283813, -0.0026844663079828024, 0.00042854066123254597, 0.6246539950370789, -0.3462543785572052, 0.015737205743789673, 0.004687163513153791, 0.01604853942990303, -0.03358245640993118, 0.2831992208957672, 0.18446119129657745, -0.0055367122404277325, 0.9836052656173706, 0.14437396824359894, 0.0409141443669796, -0.06409163773059845, 0.2843497097492218, -0.215799942612648, 0.028498487547039986, 0.9918144941329956, -0.1763119250535965, 0.015351792797446251, 0.03226153552532196]} +{"t": 2.751, "q": [-0.37361466884613037, -0.00849995855242014, -0.0013257976388558745, 0.6316421627998352, -0.27728986740112305, 0.014356916770339012, -0.323061466217041, -0.002710032742470503, 0.0005088920588605106, 0.6246284246444702, -0.3462828993797302, 0.015715690329670906, 0.004633595701307058, 0.01693851500749588, -0.03439193591475487, 0.28236034512519836, 0.18452110886573792, -0.0055247279815375805, 0.9834614992141724, 0.1443619728088379, 0.04085422307252884, -0.06406766921281815, 0.2832711338996887, -0.21603962779045105, 0.02846253477036953, 0.9917665719985962, -0.1763119250535965, 0.015351792797446251, 0.03224955126643181]} +{"t": 2.7678, "q": [-0.37362319231033325, -0.008525524288415909, -0.0012588382232934237, 0.6316421627998352, -0.27731066942214966, 0.014392906799912453, -0.32304441928863525, -0.002701510675251484, 0.0006428110064007342, 0.6245858669281006, -0.34629929065704346, 0.01571584679186344, 0.004486285150051117, 0.017380446195602417, -0.035311777144670486, 0.2814255654811859, 0.18468889594078064, -0.0055247279815375805, 0.9832697510719299, 0.14434999227523804, 0.04084223881363869, -0.06406766921281815, 0.28254008293151855, -0.21636320650577545, 0.028366660699248314, 0.9916586875915527, -0.17629994451999664, 0.015339808538556099, 0.032237567007541656]} +{"t": 2.7846, "q": [-0.37358057498931885, -0.00855961348861456, -0.0011517030652612448, 0.6316506862640381, -0.27733558416366577, 0.014436074532568455, -0.3230188488960266, -0.0027270768769085407, 0.0007633380591869354, 0.6245943903923035, -0.34629929065704346, 0.01571584679186344, 0.004218447022140026, 0.017716169357299805, -0.03631891310214996, 0.2801312506198883, 0.1850484162569046, -0.005440838169306517, 0.9831259250640869, 0.1443859487771988, 0.04081827029585838, -0.0640556812286377, 0.2819288969039917, -0.21653097867965698, 0.028258802369236946, 0.9915148615837097, -0.17632390558719635, 0.015303855761885643, 0.032237567007541656]} +{"t": 2.8013, "q": [-0.3735635280609131, -0.00855961348861456, -0.0010579597437754273, 0.6316677331924438, -0.27734389901161194, 0.014450481161475182, -0.3230188488960266, -0.002718554809689522, 0.0008704732172191143, 0.6245943903923035, -0.346291184425354, 0.015730323269963264, 0.003990784753113985, 0.017846662551164627, -0.037270259112119675, 0.2785853147506714, 0.18568359315395355, -0.005332980304956436, 0.9829341769218445, 0.14439792931079865, 0.04073438048362732, -0.06404370069503784, 0.28161731362342834, -0.21659089624881744, 0.028258802369236946, 0.9913950562477112, -0.17629994451999664, 0.015303855761885643, 0.032237567007541656]} +{"t": 2.818, "q": [-0.37358057498931885, -0.008593701757490635, -0.0010311759542673826, 0.6316762566566467, -0.27734389901161194, 0.014450481161475182, -0.3230358958244324, -0.0027441212441772223, 0.0009508245857432485, 0.6246113777160645, -0.3462909758090973, 0.015701213851571083, 0.003910433501005173, 0.018067914992570877, -0.037948112934827805, 0.27702733874320984, 0.18647454679012299, -0.005177185405045748, 0.9825746417045593, 0.14442190527915955, 0.04060255363583565, -0.06406766921281815, 0.2813776135444641, -0.2166028916835785, 0.028246818110346794, 0.9913590550422668, -0.17627596855163574, 0.015339808538556099, 0.03224955126643181]} +{"t": 2.8348, "q": [-0.3735635280609131, -0.008619267493486404, -0.0009642164804972708, 0.6316847801208496, -0.2773563861846924, 0.01447206549346447, -0.3230188488960266, -0.002752643311396241, 0.0009776083752512932, 0.6246113777160645, -0.3462828993797302, 0.015715690329670906, 0.003803298342972994, 0.01822049170732498, -0.03840335085988045, 0.2759607434272766, 0.1874212920665741, -0.00506932707503438, 0.9825147390365601, 0.1444099098443985, 0.040590569376945496, -0.06403171271085739, 0.2811499238014221, -0.21656693518161774, 0.02828277088701725, 0.9913590550422668, -0.1762639880180359, 0.015279887244105339, 0.03226153552532196]} +{"t": 2.8515, "q": [-0.3735464811325073, -0.00862779002636671, -0.0009240407962352037, 0.6316933035850525, -0.2773563861846924, 0.01447206549346447, -0.3230273723602295, -0.002752643311396241, 0.0010311759542673826, 0.6246284246444702, -0.3462909758090973, 0.015701213851571083, 0.0038300822488963604, 0.01822088286280632, -0.0387088917195797, 0.27534955739974976, 0.1886197179555893, -0.0049255164340138435, 0.9825147390365601, 0.1444338858127594, 0.040578585118055344, -0.06406766921281815, 0.28106603026390076, -0.21651899814605713, 0.02828277088701725, 0.9912751913070679, -0.17629994451999664, 0.015303855761885643, 0.032237567007541656]} +{"t": 2.8682, "q": [-0.3735464811325073, -0.00862779002636671, -0.0009374326909892261, 0.6316933035850525, -0.2773563861846924, 0.01447206549346447, -0.3230188488960266, -0.002752643311396241, 0.0010311759542673826, 0.6246539950370789, -0.3462828993797302, 0.015715690329670906, 0.0037497307639569044, 0.01822109892964363, -0.038876406848430634, 0.27514582872390747, 0.18968631327152252, -0.004889564123004675, 0.9826345443725586, 0.14439792931079865, 0.040590569376945496, -0.06403171271085739, 0.2810540497303009, -0.21649502217769623, 0.028270786628127098, 0.9912751913070679, -0.17627596855163574, 0.015279887244105339, 0.0322016142308712]} +{"t": 2.885, "q": [-0.37358057498931885, -0.008602224290370941, -0.0009642164804972708, 0.6316847801208496, -0.2773480713367462, 0.01445767655968666, -0.323061466217041, -0.00276116537861526, 0.0009776083752512932, 0.6246369481086731, -0.3462909758090973, 0.015701213851571083, 0.0038568659219890833, 0.018175560981035233, -0.03892523795366287, 0.2753375768661499, 0.19058513641357422, -0.004889564123004675, 0.9828622937202454, 0.14439792931079865, 0.04069842770695686, -0.06401973217725754, 0.2811259627342224, -0.21648304164409637, 0.028294755145907402, 0.9913830757141113, -0.17620407044887543, 0.015315840020775795, 0.032165661454200745]} +{"t": 2.9018, "q": [-0.373640239238739, -0.00862779002636671, -0.001004392164759338, 0.6316847801208496, -0.27734389901161194, 0.014450481161475182, -0.3230785131454468, -0.002752643311396241, 0.0009240407962352037, 0.6246539950370789, -0.3462909758090973, 0.015701213851571083, 0.004030960611999035, 0.018152689561247826, -0.03887082263827324, 0.2757810056209564, 0.19118434190750122, -0.0049255164340138435, 0.9831139445304871, 0.14439792931079865, 0.040770333260297775, -0.06401973217725754, 0.28138959407806396, -0.21648304164409637, 0.028234833851456642, 0.9914669394493103, -0.176240012049675, 0.015351792797446251, 0.03212970867753029]} +{"t": 2.9185, "q": [-0.37367430329322815, -0.008619267493486404, -0.0010177841177210212, 0.6316933035850525, -0.27733558416366577, 0.014436074532568455, -0.3231040835380554, -0.002752643311396241, 0.0008570813224650919, 0.6246710419654846, -0.3462909758090973, 0.015701213851571083, 0.004097919911146164, 0.018152600154280663, -0.03880184516310692, 0.27610456943511963, 0.1914360076189041, -0.0049375006929039955, 0.9831738471984863, 0.1444099098443985, 0.04079430177807808, -0.06403171271085739, 0.28171318769454956, -0.21668677031993866, 0.028126977384090424, 0.9915868043899536, -0.17621605098247528, 0.015351792797446251, 0.03209375590085983]} +{"t": 2.9353, "q": [-0.37366577982902527, -0.008619267493486404, -0.0010311759542673826, 0.6316847801208496, -0.27733978629112244, 0.01441439613699913, -0.3231211304664612, -0.00276116537861526, 0.0008436894277110696, 0.6247051358222961, -0.3462909758090973, 0.015701213851571083, 0.0041916631162166595, 0.018152575939893723, -0.038782138377428055, 0.27652400732040405, 0.19169966876506805, -0.004985437728464603, 0.9835094213485718, 0.14448182284832, 0.04115382954478264, -0.06403171271085739, 0.28191691637039185, -0.21705828607082367, 0.027995150536298752, 0.9917305707931519, -0.17614413797855377, 0.015351792797446251, 0.03203383460640907]} +{"t": 2.9521, "q": [-0.37366577982902527, -0.008610745891928673, -0.0010713516967371106, 0.6316933035850525, -0.2773606479167938, 0.014378231950104237, -0.3231211304664612, -0.0027441212441772223, 0.0007901218486949801, 0.6247221827507019, -0.3462826907634735, 0.015686582773923874, 0.0041916631162166595, 0.018152600154280663, -0.03880184516310692, 0.27689552307128906, 0.19187943637371063, -0.00506932707503438, 0.9835932850837708, 0.1444578468799591, 0.04117779806256294, -0.0640556812286377, 0.281904935836792, -0.21738186478614807, 0.027839355170726776, 0.9917305707931519, -0.17613215744495392, 0.015327824279665947, 0.03200986608862877]} +{"t": 2.9688, "q": [-0.37367430329322815, -0.008610745891928673, -0.0011115273227915168, 0.6316847801208496, -0.27735233306884766, 0.014363843016326427, -0.3231126070022583, -0.0027441212441772223, 0.0007231623749248683, 0.6247477531433105, -0.34632325172424316, 0.01564335636794567, 0.004205055069178343, 0.01812981814146042, -0.038816407322883606, 0.27702733874320984, 0.19186744093894958, -0.005177185405045748, 0.9837251305580139, 0.14450578391551971, 0.041201766580343246, -0.06404370069503784, 0.28178510069847107, -0.21769344806671143, 0.02773149684071541, 0.991718590259552, -0.17616811394691467, 0.015339808538556099, 0.031985897570848465]} +{"t": 2.9855, "q": [-0.37367430329322815, -0.00855961348861456, -0.0011650949018076062, 0.6316933035850525, -0.2773606777191162, 0.014349359087646008, -0.3231211304664612, -0.0027270768769085407, 0.0006829866906628013, 0.6247648000717163, -0.3463473618030548, 0.015599973499774933, 0.004231838975101709, 0.01812223717570305, -0.038831114768981934, 0.27701535820961, 0.19174760580062866, -0.00535694882273674, 0.9837251305580139, 0.14450578391551971, 0.04117779806256294, -0.064079649746418, 0.28164127469062805, -0.21806496381759644, 0.0276835598051548, 0.9917066097259521, -0.17620407044887543, 0.015303855761885643, 0.03194994479417801]} +{"t": 3.0023, "q": [-0.37366577982902527, -0.008551090955734253, -0.0012186624808236957, 0.6316933035850525, -0.2774190604686737, 0.014248082414269447, -0.32313817739486694, -0.0027270768769085407, 0.0006294191116467118, 0.6248244643211365, -0.3464077413082123, 0.015491481870412827, 0.0041916631162166595, 0.01810707524418831, -0.03886053338646889, 0.2769554555416107, 0.19160379469394684, -0.0055247279815375805, 0.9837490916252136, 0.14460165798664093, 0.04117779806256294, -0.064079649746418, 0.2814734876155853, -0.2185203582048416, 0.02750379778444767, 0.9916586875915527, -0.17615613341331482, 0.015327824279665947, 0.03196192905306816]} +{"t": 3.019, "q": [-0.3736572861671448, -0.008525524288415909, -0.0012990138493478298, 0.6316762566566467, -0.2774774432182312, 0.014146787114441395, -0.32309556007385254, -0.0026844663079828024, 0.0005088920588605106, 0.6248329877853394, -0.346451997756958, 0.015411912463605404, 0.00416487967595458, 0.018114721402525902, -0.03889509290456772, 0.27620044350624084, 0.18944662809371948, -0.005117264110594988, 0.9850913286209106, 0.14472150802612305, 0.04116581380367279, -0.06413957476615906, 0.2804308831691742, -0.21850837767124176, 0.027647607028484344, 0.9927732348442078, -0.17620407044887543, 0.015279887244105339, 0.03212970867753029]} +{"t": 3.0358, "q": [-0.37367430329322815, -0.008517002686858177, -0.001272230059839785, 0.6316933035850525, -0.2774816155433655, 0.014139553532004356, -0.3231978416442871, -0.0026929883752018213, 0.0005356758483685553, 0.6249011754989624, -0.3465287387371063, 0.015318134799599648, 0.004151487722992897, 0.018137527629733086, -0.038900237530469894, 0.2752896249294281, 0.18763701617717743, -0.00506932707503438, 0.9870687127113342, 0.14491325616836548, 0.041381530463695526, -0.06421148031949997, 0.27901673316955566, -0.2184484601020813, 0.027719512581825256, 0.9947625994682312, -0.17618009448051453, 0.015339808538556099, 0.03224955126643181]} +{"t": 3.0525, "q": [-0.37367430329322815, -0.008534046821296215, -0.001232054433785379, 0.6316847801208496, -0.27742740511894226, 0.014233598485589027, -0.32328304648399353, -0.002710032742470503, 0.0006428110064007342, 0.6249523162841797, -0.34651637077331543, 0.015296190045773983, 0.004057744517922401, 0.01816028356552124, -0.03886596858501434, 0.27428296208381653, 0.18520422279834747, -0.005117264110594988, 0.9884588718414307, 0.1452368199825287, 0.04117779806256294, -0.06434330344200134, 0.2776625156402588, -0.21846044063568115, 0.02774348109960556, 0.9964404106140137, -0.17618009448051453, 0.015351792797446251, 0.032297488301992416]} +{"t": 3.0693, "q": [-0.37366577982902527, -0.008525524288415909, -0.001232054433785379, 0.6316933035850525, -0.27741074562072754, 0.014248120598495007, -0.3233086168766022, -0.002718554809689522, 0.0006294191116467118, 0.6250119209289551, -0.34650832414627075, 0.01531066931784153, 0.003977392800152302, 0.018152715638279915, -0.0388905294239521, 0.2729407250881195, 0.1823999136686325, -0.005225121974945068, 0.990064799785614, 0.1456802487373352, 0.04103398695588112, -0.06443917751312256, 0.276044636964798, -0.2184005230665207, 0.027791418135166168, 0.99858558177948, -0.17621605098247528, 0.015375761315226555, 0.03236939385533333]} +{"t": 3.0866, "q": [-0.3736487627029419, -0.00849995855242014, -0.001232054433785379, 0.6316847801208496, -0.277423232793808, 0.014240849763154984, -0.32331714034080505, -0.0026844663079828024, 0.0006294191116467118, 0.625020444393158, -0.34650832414627075, 0.01531066931784153, 0.0037095551379024982, 0.018152715638279915, -0.0388905294239521, 0.27108317613601685, 0.17921210825443268, -0.005285043269395828, 0.9925095438957214, 0.14594389498233795, 0.04097406566143036, -0.06446314603090286, 0.27417510747909546, -0.21838854253292084, 0.027791418135166168, 1.0010184049606323, -0.17616811394691467, 0.015399729833006859, 0.032477252185344696]} +{"t": 3.1033, "q": [-0.37367430329322815, -0.008517002686858177, -0.0012052706442773342, 0.6316933035850525, -0.2774190604686737, 0.014248082414269447, -0.3233427107334137, -0.002710032742470503, 0.0006562029011547565, 0.625020444393158, -0.3465246260166168, 0.015310820192098618, 0.003481892868876457, 0.018122315406799316, -0.03889023885130882, 0.2683987021446228, 0.17522135376930237, -0.005249090492725372, 0.9958171844482422, 0.1462075412273407, 0.040950097143650055, -0.06449910253286362, 0.27173033356666565, -0.21838854253292084, 0.02774348109960556, 1.0046496391296387, -0.17616811394691467, 0.015387745574116707, 0.03248923644423485]} +{"t": 3.1201, "q": [-0.37368282675743103, -0.008525524288415909, -0.0011784868547692895, 0.6316933035850525, -0.2774190604686737, 0.014248082414269447, -0.3233853280544281, -0.002701510675251484, 0.0006829866906628013, 0.6250460147857666, -0.34651657938957214, 0.01532529853284359, 0.003468500915914774, 0.018152689561247826, -0.03887082263827324, 0.2656782865524292, 0.17188973724842072, -0.005273059010505676, 0.9984177947044373, 0.14666295051574707, 0.040890175849199295, -0.06461894512176514, 0.26916569471359253, -0.2183765470981598, 0.02773149684071541, 1.0077894926071167, -0.17614413797855377, 0.01543568167835474, 0.032501220703125]} +{"t": 3.1368, "q": [-0.37367430329322815, -0.00849995855242014, -0.0011650949018076062, 0.6317018270492554, -0.27741488814353943, 0.014255315065383911, -0.32341086864471436, -0.0026929883752018213, 0.000709770480170846, 0.625088632106781, -0.34651657938957214, 0.01532529853284359, 0.003321190131828189, 0.018152689561247826, -0.03887082263827324, 0.26336532831192017, 0.16816264390945435, -0.00523710623383522, 1.0009944438934326, 0.1468786597251892, 0.04068644344806671, -0.06473878771066666, 0.26610973477363586, -0.21838854253292084, 0.02774348109960556, 1.010677695274353, -0.17619207501411438, 0.015447665937244892, 0.03248923644423485]} +{"t": 3.1536, "q": [-0.37368282675743103, -0.008525524288415909, -0.0011517030652612448, 0.6316933035850525, -0.2774065434932709, 0.014269780367612839, -0.32341939210891724, -0.0026929883752018213, 0.0007365542696788907, 0.6251227259635925, -0.3465206027030945, 0.01531806867569685, 0.003173879347741604, 0.018137477338314056, -0.03886082395911217, 0.26154372096061707, 0.16503477096557617, -0.0051891696639359, 1.00343918800354, 0.14756175875663757, 0.04074636474251747, -0.06476275622844696, 0.26296985149383545, -0.21836456656455994, 0.02773149684071541, 1.013014554977417, -0.17619207501411438, 0.015447665937244892, 0.03236939385533333]} +{"t": 3.1703, "q": [-0.3737083971500397, -0.008517002686858177, -0.0011249192757532, 0.6317018270492554, -0.2774065434932709, 0.014269780367612839, -0.32350462675094604, -0.0026929883752018213, 0.0007633380591869354, 0.6251397728919983, -0.34653276205062866, 0.015310904942452908, 0.0032006630208343267, 0.018152665346860886, -0.038851115852594376, 0.25962626934051514, 0.1621825248003006, -0.005249090492725372, 1.0058720111846924, 0.14813700318336487, 0.040770333260297775, -0.06479870527982712, 0.2601415812969208, -0.21834060549736023, 0.02773149684071541, 1.0142250061035156, -0.17621605098247528, 0.015423697419464588, 0.0322016142308712]} +{"t": 3.187, "q": [-0.3737424910068512, -0.008525524288415909, -0.0011115273227915168, 0.6317359209060669, -0.277402400970459, 0.014262585900723934, -0.3234875798225403, -0.002710032742470503, 0.0007633380591869354, 0.625156819820404, -0.34651657938957214, 0.01532529853284359, 0.0034551091957837343, 0.018145058304071426, -0.03884611651301384, 0.25790053606033325, 0.15945011377334595, -0.00523710623383522, 1.0075018405914307, 0.14852049946784973, 0.04066247493028641, -0.06483466178178787, 0.25727733969688416, -0.21836456656455994, 0.027791418135166168, 1.014884114265442, -0.17618009448051453, 0.01543568167835474, 0.03200986608862877]} +{"t": 3.204, "q": [-0.3737851083278656, -0.008534046821296215, -0.0011249192757532, 0.6317784786224365, -0.2774065434932709, 0.014269780367612839, -0.32349610328674316, -0.002710032742470503, 0.0007365542696788907, 0.6251653432846069, -0.34652069211006165, 0.015332614071667194, 0.0037229470908641815, 0.01816781423985958, -0.03881184756755829, 0.25640249252319336, 0.1569933444261551, -0.005261074751615524, 1.0095032453536987, 0.14873622357845306, 0.04049469530582428, -0.06479870527982712, 0.25425732135772705, -0.21835258603096008, 0.027815386652946472, 1.0154592990875244, -0.17622803151607513, 0.01541171409189701, 0.03191399201750755]} +{"t": 3.2207, "q": [-0.3737765848636627, -0.008517002686858177, -0.0011115273227915168, 0.6318210959434509, -0.27738988399505615, 0.0142842847853899, -0.3234875798225403, -0.002710032742470503, 0.0007365542696788907, 0.625156819820404, -0.3465329706668854, 0.015340013429522514, 0.003964001312851906, 0.01816023327410221, -0.038826555013656616, 0.25458088517189026, 0.1547403186559677, -0.005320996046066284, 1.0124752521514893, 0.14898788928985596, 0.04020707681775093, -0.06485863029956818, 0.2507219910621643, -0.2182207554578781, 0.02805507183074951, 1.0162262916564941, -0.17629994451999664, 0.015399729833006859, 0.03184208646416664]} +{"t": 3.2375, "q": [-0.3737765848636627, -0.008542569354176521, -0.0011249192757532, 0.6318637132644653, -0.27737319469451904, 0.014327661134302616, -0.3234790563583374, -0.0027270768769085407, 0.0007365542696788907, 0.62523353099823, -0.3465328812599182, 0.015325450338423252, 0.003964001312851906, 0.01820582151412964, -0.038817137479782104, 0.2522439658641815, 0.15267902612686157, -0.00535694882273674, 1.01539945602417, 0.14933542907238007, 0.04009921848773956, -0.06489457935094833, 0.246958926320076, -0.21798107028007507, 0.028390629217028618, 1.0165259838104248, -0.17639581859111786, 0.015387745574116707, 0.03173422813415527]} +{"t": 3.2544, "q": [-0.3737765848636627, -0.00855961348861456, -0.0010713516967371106, 0.631889283657074, -0.2773648798465729, 0.014313272200524807, -0.32350462675094604, -0.0027355989441275597, 0.0007499461644329131, 0.6253187656402588, -0.3465287387371063, 0.015318134799599648, 0.003964001312851906, 0.018251385539770126, -0.03878801316022873, 0.2497991919517517, 0.15136076509952545, -0.005440838169306517, 1.0181918144226074, 0.14958709478378296, 0.03966778516769409, -0.06490656733512878, 0.24325580894947052, -0.21778932213783264, 0.028666267171502113, 1.017125129699707, -0.1765635907649994, 0.01541171409189701, 0.03159041702747345]} +{"t": 3.2713, "q": [-0.3737765848636627, -0.008576657623052597, -0.0010579597437754273, 0.6319404244422913, -0.27738574147224426, 0.014277090318500996, -0.3235216736793518, -0.0027270768769085407, 0.0007633380591869354, 0.6254124641418457, -0.3465369939804077, 0.015332764945924282, 0.004245230928063393, 0.018334943801164627, -0.03875432908535004, 0.24689900875091553, 0.15024623274803162, -0.0054887752048671246, 1.0214394330978394, 0.15003050863742828, 0.039440084248781204, -0.06496648490428925, 0.2403676062822342, -0.2177773416042328, 0.028786109760403633, 1.0175325870513916, -0.17657557129859924, 0.015399729833006859, 0.031314779072999954]} +{"t": 3.288, "q": [-0.3737851083278656, -0.008585179224610329, -0.0010713516967371106, 0.6320000886917114, -0.2773981988430023, 0.014284246601164341, -0.3235301971435547, -0.002769687445834279, 0.0007365542696788907, 0.6256170272827148, -0.34654906392097473, 0.015311074443161488, 0.004472893197089434, 0.01838807575404644, -0.0387006439268589, 0.2451852709054947, 0.14938336610794067, -0.005572664551436901, 1.0230573415756226, 0.1506536900997162, 0.039092544466257095, -0.06500244140625, 0.23720377683639526, -0.21796908974647522, 0.02925349399447441, 1.0182397365570068, -0.17680327594280243, 0.015351792797446251, 0.030979221686720848]} +{"t": 3.3047, "q": [-0.3737765848636627, -0.008576657623052597, -0.0010713516967371106, 0.6320853233337402, -0.2773981988430023, 0.014284246601164341, -0.3236068785190582, -0.002752643311396241, 0.0007633380591869354, 0.6258471012115479, -0.3466176688671112, 0.015217212960124016, 0.004338974133133888, 0.018433639779686928, -0.03867151960730553, 0.2443823218345642, 0.1489998698234558, -0.005656554363667965, 1.0240041017532349, 0.15205584466457367, 0.03882889077067375, -0.06500244140625, 0.23334485292434692, -0.2181009203195572, 0.02997254766523838, 1.0197497606277466, -0.1772347092628479, 0.015207981690764427, 0.030679617077112198]} +{"t": 3.3217, "q": [-0.3737765848636627, -0.00856813509017229, -0.0010579597437754273, 0.6321790218353271, -0.2774232029914856, 0.01426970399916172, -0.32369211316108704, -0.00276116537861526, 0.0007901218486949801, 0.6261028051376343, -0.34670236706733704, 0.01509442925453186, 0.004231838975101709, 0.018464015796780586, -0.03865210339426994, 0.2437591403722763, 0.1490238457918167, -0.0057404437102377415, 1.0247350931167603, 0.15438078343868256, 0.038541268557310104, -0.06501442193984985, 0.2301330715417862, -0.21806496381759644, 0.030487868934869766, 1.0210440158843994, -0.17796574532985687, 0.01483647059649229, 0.030296120792627335]} +{"t": 3.3384, "q": [-0.3737936317920685, -0.00856813509017229, -0.001044567907229066, 0.6321960687637329, -0.27741488814353943, 0.014255315065383911, -0.32381993532180786, -0.00276116537861526, 0.0007901218486949801, 0.6263840198516846, -0.3468072712421417, 0.014950022101402283, 0.004218447022140026, 0.018479203805327415, -0.03864239528775215, 0.24301612377166748, 0.14905978739261627, -0.005872270558029413, 1.0255380868911743, 0.1585153490304947, 0.03815777227282524, -0.06496648490428925, 0.22632209956645966, -0.2181009203195572, 0.030955253168940544, 1.0225659608840942, -0.17920011281967163, 0.013266537338495255, 0.02997254766523838]} +{"t": 3.3552, "q": [-0.3737765848636627, -0.00855961348861456, -0.0010311759542673826, 0.6322216391563416, -0.2775108218193054, 0.014088906347751617, -0.32392221689224243, -0.0027441212441772223, 0.0008035137434490025, 0.6266396641731262, -0.34691643714904785, 0.01482751127332449, 0.003803298342972994, 0.018479203805327415, -0.03864239528775215, 0.24244087934494019, 0.14938336610794067, -0.006004096940159798, 1.0266765356063843, 0.16137957572937012, 0.037714358419179916, -0.06491854786872864, 0.22194784879684448, -0.2181488573551178, 0.03172224387526512, 1.0230333805084229, -0.18044647574424744, 0.010989534668624401, 0.02972087822854519]} +{"t": 3.372, "q": [-0.37368282675743103, -0.00855961348861456, -0.0010177841177210212, 0.6322898268699646, -0.27750247716903687, 0.014103371649980545, -0.3239903748035431, -0.0027441212441772223, 0.0009374326909892261, 0.6268953084945679, -0.346948504447937, 0.014755104668438435, 0.0032006630208343267, 0.01845644600689411, -0.0386766642332077, 0.2415420562028885, 0.15148060023784637, -0.00606401776894927, 1.0278630256652832, 0.1658736616373062, 0.03694736585021019, -0.06484664231538773, 0.21885591745376587, -0.21885591745376587, 0.03183010220527649, 1.0228896141052246, -0.18213625252246857, 0.008173241280019283, 0.029265478253364563]} +{"t": 3.3888, "q": [-0.37358909845352173, -0.008551090955734253, -0.0010177841177210212, 0.6323921084403992, -0.27771514654159546, 0.013763245195150375, -0.3239903748035431, -0.0027355989441275597, 0.001004392164759338, 0.6271083950996399, -0.346989244222641, 0.014755528420209885, 0.002986392704769969, 0.01848689839243889, -0.03871637210249901, 0.24027173221111298, 0.1544167399406433, -0.0062677497044205666, 1.0289775133132935, 0.1703198105096817, 0.035161715000867844, -0.0647028312087059, 0.2166028916835785, -0.2208213359117508, 0.0321776457130909, 1.0227457284927368, -0.18429341912269592, 0.00436225812882185, 0.02912166714668274]} +{"t": 3.4057, "q": [-0.3735464811325073, -0.008551090955734253, -0.0009910003282129765, 0.6324943900108337, -0.2789580225944519, 0.01163607370108366, -0.32399889826774597, -0.002752643311396241, 0.0010981354862451553, 0.627406656742096, -0.3470836877822876, 0.014865610748529434, 0.00287925754673779, 0.01852497085928917, -0.03877093270421028, 0.23882164061069489, 0.157616525888443, -0.006531402934342623, 1.0299842357635498, 0.1742626130580902, 0.0322016142308712, -0.0646548941731453, 0.21473334729671478, -0.22323016822338104, 0.03226153552532196, 1.0216431617736816, -0.18581540882587433, -0.0024208135437220335, 0.02900182455778122]} +{"t": 3.4225, "q": [-0.37352943420410156, -0.008551090955734253, -0.0009642164804972708, 0.6326988935470581, -0.28002282977104187, 0.009906088002026081, -0.32401594519615173, -0.0027441212441772223, 0.0011650949018076062, 0.6276112198829651, -0.3477884531021118, 0.016058696433901787, 0.002718554809689522, 0.018639199435710907, -0.03894446790218353, 0.23713186383247375, 0.16146346926689148, -0.006914897821843624, 1.031086802482605, 0.182328000664711, 0.027875307947397232, -0.06454703956842422, 0.21189308166503906, -0.22675353288650513, 0.03238137811422348, 1.0184314250946045, -0.18707375228405, -0.011492871679365635, 0.028965871781110764]} +{"t": 3.4392, "q": [-0.3735038638114929, -0.008542569354176521, -0.001004392164759338, 0.6329033970832825, -0.2800186276435852, 0.009913335554301739, -0.32401594519615173, -0.0027270768769085407, 0.001232054433785379, 0.6276878714561462, -0.34922704100608826, 0.018577272072434425, 0.00258463597856462, 0.01873844861984253, -0.03928542509675026, 0.2356458157300949, 0.1652744561433792, -0.007274424657225609, 1.031769871711731, 0.18930281698703766, 0.023273365572094917, -0.06454703956842422, 0.20910076797008514, -0.2308761030435562, 0.032513201236724854, 1.0137815475463867, -0.18854781985282898, -0.020301276817917824, 0.028977856040000916]} +{"t": 3.4559, "q": [-0.3734612762928009, -0.008534046821296215, -0.0010177841177210212, 0.6330568194389343, -0.2800520658493042, 0.009884222410619259, -0.32401594519615173, -0.002710032742470503, 0.0013391895918175578, 0.6277645826339722, -0.34930604696273804, 0.01873103715479374, 0.002276622224599123, 0.018739361315965652, -0.039946459233760834, 0.23389612138271332, 0.16936106979846954, -0.008197209797799587, 1.0319137573242188, 0.1943601667881012, 0.018935075029730797, -0.06452307105064392, 0.20515795052051544, -0.23637685179710388, 0.033364083617925644, 1.0095990896224976, -0.1910405308008194, -0.03268098086118698, 0.029097698628902435]} +{"t": 3.4728, "q": [-0.3734271824359894, -0.008534046821296215, -0.0010177841177210212, 0.6331164836883545, -0.28018927574157715, 0.009876131080091, -0.32405003905296326, -0.002701510675251484, 0.0015266761183738708, 0.6277986764907837, -0.3493506908416748, 0.018695149570703506, 0.0021962709724903107, 0.01879376545548439, -0.0408499538898468, 0.23117570579051971, 0.17365142703056335, -0.010761834681034088, 1.0319736003875732, 0.20110727846622467, 0.016586167737841606, -0.06453505158424377, 0.20138292014598846, -0.241841658949852, 0.033915355801582336, 1.0046255588531494, -0.1950312852859497, -0.04380234330892563, 0.02937333658337593]} +{"t": 3.4895, "q": [-0.3734271824359894, -0.008542569354176521, -0.0009910003282129765, 0.6331676244735718, -0.28020596504211426, 0.009861583821475506, -0.3240329921245575, -0.0027270768769085407, 0.0016472031129524112, 0.6278583407402039, -0.3493545949459076, 0.0186733640730381, 0.0021427033934742212, 0.018772413954138756, -0.04207902029156685, 0.22797591984272003, 0.17885257303714752, -0.016334498301148415, 1.0319256782531738, 0.20836971700191498, 0.014069480821490288, -0.06455902010202408, 0.1976078897714615, -0.24755814671516418, 0.0351976677775383, 0.998441755771637, -0.19808726012706757, -0.05794372782111168, 0.029756831005215645]} +{"t": 3.5062, "q": [-0.37343570590019226, -0.008542569354176521, -0.0009240407962352037, 0.6331931948661804, -0.2804054319858551, 0.010077223181724548, -0.3240329921245575, -0.002718554809689522, 0.0019284329609945416, 0.6279691457748413, -0.3493462800979614, 0.0186587143689394, 0.001941824913956225, 0.018911121413111687, -0.0435427762567997, 0.22480009496212006, 0.18424548208713531, -0.02346511371433735, 1.031829833984375, 0.21371468901634216, 0.009671269915997982, -0.06459497660398483, 0.19308984279632568, -0.2535742223262787, 0.037882134318351746, 0.9917425513267517, -0.20153871178627014, -0.0737389400601387, 0.030775491148233414]} +{"t": 3.5231, "q": [-0.3734101355075836, -0.008542569354176521, -0.0008035137434490025, 0.6332187652587891, -0.2831045687198639, 0.014544712379574776, -0.3240329921245575, -0.0027270768769085407, 0.002169487066566944, 0.6279946565628052, -0.349353551864624, 0.018556904047727585, 0.0016605950659140944, 0.01863180845975876, -0.04535483196377754, 0.22120483219623566, 0.18927885591983795, -0.02810300886631012, 1.0318537950515747, 0.2229665070772171, 0.0032237565610557795, -0.06475076824426651, 0.18762503564357758, -0.2595064043998718, 0.041010018438100815, 0.9853789806365967, -0.20597288012504578, -0.09018129855394363, 0.03215367719531059]} +{"t": 3.5398, "q": [-0.37344422936439514, -0.008525524288415909, -0.0006829866906628013, 0.6332187652587891, -0.2838960587978363, 0.01581278070807457, -0.32396480441093445, -0.0026844663079828024, 0.0025176764465868473, 0.6281054615974426, -0.3500854969024658, 0.0171968974173069, 0.0015132841654121876, 0.018701869994401932, -0.04681530222296715, 0.21728599071502686, 0.19372500479221344, -0.03253716975450516, 1.0318896770477295, 0.23146332800388336, -0.0036192359402775764, -0.06482267379760742, 0.1823519766330719, -0.2640364468097687, 0.04283162206411362, 0.9788236021995544, -0.20928052067756653, -0.10703111439943314, 0.03377154842019081]} +{"t": 3.5566, "q": [-0.3736061453819275, -0.008474391885101795, -0.0006829866906628013, 0.6332187652587891, -0.28393790125846863, 0.01574028842151165, -0.32399889826774597, -0.0026759442407637835, 0.0026382035575807095, 0.6280628442764282, -0.35091423988342285, 0.015692435204982758, 0.0015400679549202323, 0.01880279742181301, -0.048822224140167236, 0.21260015666484833, 0.19867448508739471, -0.039032623171806335, 1.031829833984375, 0.24007998406887054, -0.008736500516533852, -0.06515823304653168, 0.17812153697013855, -0.26861441135406494, 0.04478504881262779, 0.9687328338623047, -0.2148531973361969, -0.12525911629199982, 0.0357968807220459]} +{"t": 3.5735, "q": [-0.37362319231033325, -0.008474391885101795, -0.000709770480170846, 0.6332102417945862, -0.28397542238235474, 0.015776243060827255, -0.32401594519615173, -0.0026929883752018213, 0.0025980276986956596, 0.6280287504196167, -0.35119175910949707, 0.015178822912275791, 0.0015534599078819156, 0.01887342520058155, -0.0511186346411705, 0.2076626569032669, 0.20310865342617035, -0.04577973857522011, 1.031829833984375, 0.24839703738689423, -0.014213290996849537, -0.06624879688024521, 0.17377126216888428, -0.27320438623428345, 0.04806872829794884, 0.9601521492004395, -0.2190956026315689, -0.14399047195911407, 0.03863714262843132]} +{"t": 3.5902, "q": [-0.37367430329322815, -0.00844030361622572, -0.000709770480170846, 0.6332187652587891, -0.2840171754360199, 0.0157760102301836, -0.32397332787513733, -0.0026844663079828024, 0.002691771136596799, 0.6280202269554138, -0.35121965408325195, 0.01509904582053423, 0.0014061490073800087, 0.018890593200922012, -0.05332283675670624, 0.20361198484897614, 0.20750686526298523, -0.05246693640947342, 1.0316859483718872, 0.2562467157840729, -0.02208692766726017, -0.06779476255178452, 0.16924123466014862, -0.27904069423675537, 0.05512743443250656, 0.9499415755271912, -0.22493192553520203, -0.16445952653884888, 0.042448125779628754]} +{"t": 3.607, "q": [-0.3738192021846771, -0.008252817206084728, -0.0005892434273846447, 0.6332187652587891, -0.28412148356437683, 0.015797168016433716, -0.323811411857605, -0.0026844663079828024, 0.0029194331727921963, 0.6278924345970154, -0.3512594997882843, 0.014983040280640125, 0.0013927571708336473, 0.018801238387823105, -0.05566742643713951, 0.19988489151000977, 0.21228855848312378, -0.06262955814599991, 1.030415654182434, 0.26729616522789, -0.02907373011112213, -0.06935270875692368, 0.16461531817913055, -0.2849968671798706, 0.06361226737499237, 0.9394194483757019, -0.23006117343902588, -0.18553978204727173, 0.04629506170749664]} +{"t": 3.6237, "q": [-0.374432772397995, -0.008099419064819813, -0.000522283953614533, 0.6332187652587891, -0.28416743874549866, 0.015789706259965897, -0.3237687945365906, -0.002650377806276083, 0.0029730007518082857, 0.6277134418487549, -0.3512550890445709, 0.014946605078876019, 0.0013927571708336473, 0.01889435015618801, -0.058136045932769775, 0.1953308880329132, 0.21661487221717834, -0.07236075401306152, 1.0282225608825684, 0.27696743607521057, -0.03831356763839722, -0.07085073739290237, 0.1601332128047943, -0.2902339696884155, 0.07089867442846298, 0.9273033738136292, -0.23616114258766174, -0.20654812455177307, 0.04914730787277222]} +{"t": 3.6404, "q": [-0.3749867081642151, -0.008022719994187355, -0.00016070275160018355, 0.6332187652587891, -0.2841966152191162, 0.015825703740119934, -0.3236665427684784, -0.0026162895374000072, 0.003321190131828189, 0.627773106098175, -0.35124680399894714, 0.014931955374777317, 0.001272230059839785, 0.01877368614077568, -0.059838324785232544, 0.1906929910182953, 0.21944314241409302, -0.08104931563138962, 1.0247350931167603, 0.28496089577674866, -0.04838031902909279, -0.07158178091049194, 0.15587881207466125, -0.29429662227630615, 0.07657919824123383, 0.9156187772750854, -0.24132634699344635, -0.22740067541599274, 0.05275455862283707]} +{"t": 3.6572, "q": [-0.37619686126708984, -0.007894888520240784, 8.035137580009177e-05, 0.6332187652587891, -0.28433018922805786, 0.0158394668251276, -0.3238028883934021, -0.002641855739057064, 0.0037229470908641815, 0.6277134418487549, -0.35129106044769287, 0.014852403663098812, 0.0011784868547692895, 0.018706319853663445, -0.061676833778619766, 0.1853480339050293, 0.22163626551628113, -0.09060074388980865, 1.0212477445602417, 0.2926428020000458, -0.05662546306848526, -0.07275623083114624, 0.15106116235256195, -0.29849109053611755, 0.08184027671813965, 0.9029274582862854, -0.2484569549560547, -0.24899624288082123, 0.05591839551925659]} +{"t": 3.6741, "q": [-0.3769382834434509, -0.007835233584046364, 9.374327055411413e-05, 0.6332187652587891, -0.28438442945480347, 0.015860864892601967, -0.324067085981369, -0.0025992451701313257, 0.0038970415480434895, 0.6274918913841248, -0.3513232469558716, 0.014794542454183102, 0.0009240407962352037, 0.018707243725657463, -0.06339304894208908, 0.179284006357193, 0.22309833765029907, -0.09961287677288055, 1.0193662643432617, 0.3011036515235901, -0.06604506820440292, -0.07421831041574478, 0.14614762365818024, -0.30203843116760254, 0.08698150515556335, 0.89173424243927, -0.2544730305671692, -0.26970499753952026, 0.05899834260344505]} +{"t": 3.6908, "q": [-0.3773984909057617, -0.007835233584046364, -0.00010713516530813649, 0.6332187652587891, -0.28442203998565674, 0.015838976949453354, -0.32418638467788696, -0.0025651566684246063, 0.003803298342972994, 0.6271595358848572, -0.35132715106010437, 0.014772738330066204, 0.0009240407962352037, 0.01850239560008049, -0.06469409167766571, 0.1721174418926239, 0.22517161071300507, -0.11124956607818604, 1.0179520845413208, 0.31001991033554077, -0.07524894922971725, -0.07620768994092941, 0.14190521836280823, -0.30595725774765015, 0.09408815205097198, 0.8787432909011841, -0.25960227847099304, -0.2908931076526642, 0.06324075907468796]} +{"t": 3.7075, "q": [-0.37826773524284363, -0.007741490378975868, -0.00042854066123254597, 0.6332017183303833, -0.2844345271587372, 0.015846138820052147, -0.3244931995868683, -0.002454369328916073, 0.0036024199798703194, 0.6264436841011047, -0.35130274295806885, 0.014787028543651104, 0.0007365542696788907, 0.018358515575528145, -0.06628618389368057, 0.16565795242786407, 0.22581875324249268, -0.11991415917873383, 1.0164780616760254, 0.3167550563812256, -0.08599880337715149, -0.07914382219314575, 0.13763882219791412, -0.310031920671463, 0.10263290256261826, 0.8651412129402161, -0.26598986983299255, -0.3133035898208618, 0.06768690049648285]} +{"t": 3.7245, "q": [-0.3788642883300781, -0.0073579950258135796, -0.0006026353221386671, 0.6331761479377747, -0.28445541858673096, 0.015838822349905968, -0.3246380686759949, -0.002156095113605261, 0.003468500915914774, 0.6254976987838745, -0.3512864112854004, 0.014786839485168457, 0.0005892434273846447, 0.018358979374170303, -0.06759627908468246, 0.15929432213306427, 0.2265617847442627, -0.12969328463077545, 1.0132782459259033, 0.32292693853378296, -0.09525062143802643, -0.08386560529470444, 0.13401958346366882, -0.3135313093662262, 0.10988336056470871, 0.8499332666397095, -0.2721377909183502, -0.336900532245636, 0.07143796980381012]} +{"t": 3.7412, "q": [-0.3791114389896393, -0.0070597208105027676, -0.0006562029011547565, 0.633082389831543, -0.2844804525375366, 0.015853146091103554, -0.3246380686759949, -0.0019856528379023075, 0.003441717242822051, 0.624645471572876, -0.35125380754470825, 0.014800998382270336, 0.0005490677431225777, 0.018405016511678696, -0.0686669871211052, 0.15299062430858612, 0.2265857458114624, -0.13763882219791412, 1.0110012292861938, 0.3281400799751282, -0.10308830440044403, -0.08841961622238159, 0.13121528923511505, -0.3157244026660919, 0.1143774464726448, 0.8341619968414307, -0.2751098871231079, -0.3628823459148407, 0.07436211407184601]} +{"t": 3.758, "q": [-0.3792904019355774, -0.006863712333142757, -0.0006160272168926895, 0.6328863501548767, -0.28451377153396606, 0.015896346420049667, -0.3246210217475891, -0.001891909632831812, 0.0034952848218381405, 0.6239722371101379, -0.35121357440948486, 0.014873320236802101, -0.0001473108568461612, 0.01863366737961769, -0.06978030502796173, 0.14695057272911072, 0.22664566338062286, -0.14737001061439514, 1.0085684061050415, 0.33313748240470886, -0.1128314808011055, -0.09213472157716751, 0.12803946435451508, -0.31764188408851624, 0.11778096854686737, 0.8166650533676147, -0.27672773599624634, -0.39129695296287537, 0.07438608258962631]} +{"t": 3.7747, "q": [-0.37932446599006653, -0.006710314191877842, -0.0006160272168926895, 0.6325795650482178, -0.2845679223537445, 0.015990039333701134, -0.32461249828338623, -0.0018322548130527139, 0.003736338810995221, 0.6233416199684143, -0.35116490721702576, 0.0149164367467165, -0.001191878691315651, 0.018816610798239708, -0.07092370092868805, 0.1420849710702896, 0.22642995417118073, -0.15456055104732513, 1.0041941404342651, 0.33853039145469666, -0.1215200424194336, -0.09413608908653259, 0.12465991079807281, -0.3190440535545349, 0.11949470639228821, 0.7973943948745728, -0.2805746793746948, -0.4219885468482971, 0.07427822798490524]} +{"t": 3.7914, "q": [-0.37932446599006653, -0.006633615121245384, -0.0007499461644329131, 0.6320938467979431, -0.2846054434776306, 0.016025958582758904, -0.32455283403396606, -0.0018066884949803352, 0.003977392800152302, 0.6225575804710388, -0.35102370381355286, 0.015125906094908714, -0.001901649171486497, 0.01919746957719326, -0.07237056642770767, 0.13600897789001465, 0.22637003660202026, -0.1604567915201187, 1.001893162727356, 0.3435158431529999, -0.13056813180446625, -0.09539443254470825, 0.12179568409919739, -0.3198709487915039, 0.11951867491006851, 0.7774286866188049, -0.28478115797042847, -0.450726717710495, 0.07427822798490524]} +{"t": 3.8082, "q": [-0.37932446599006653, -0.006633615121245384, -0.0008169056382030249, 0.6315569281578064, -0.2846095860004425, 0.01606210134923458, -0.3244505822658539, -0.0017896442441269755, 0.004111311864107847, 0.6215775609016418, -0.3507477641105652, 0.015355649404227734, -0.002959609031677246, 0.01973051019012928, -0.07415095716714859, 0.12974122166633606, 0.22632209956645966, -0.1651546061038971, 1.0003832578659058, 0.3458887040615082, -0.13703961670398712, -0.09674865007400513, 0.1185479536652565, -0.3216446340084076, 0.12015384435653687, 0.7550660967826843, -0.29017403721809387, -0.4808071255683899, 0.07504522055387497]} +{"t": 3.8249, "q": [-0.37945231795310974, -0.006633615121245384, -0.0008570813224650919, 0.6311222910881042, -0.2846137285232544, 0.01608375832438469, -0.3243057131767273, -0.0017555557424202561, 0.004084527958184481, 0.6205633878707886, -0.3504153788089752, 0.015672098845243454, -0.004660379607230425, 0.019753538072109222, -0.07558097690343857, 0.12418054044246674, 0.225662961602211, -0.16926519572734833, 0.9988252520561218, 0.346164345741272, -0.14047908782958984, -0.09716809540987015, 0.11438942700624466, -0.32402947545051575, 0.12131631374359131, 0.7348966598510742, -0.2947160601615906, -0.5094853639602661, 0.0761597529053688]} +{"t": 3.8417, "q": [-0.3796568512916565, -0.006676225923001766, -0.0008570813224650919, 0.6308240294456482, -0.2846262454986572, 0.016090920194983482, -0.3241693377494812, -0.0016703346045687795, 0.00388364982791245, 0.619856059551239, -0.3502125144004822, 0.015844453126192093, -0.007204839959740639, 0.01945682242512703, -0.07688839733600616, 0.11895541846752167, 0.22396120429039001, -0.17220133543014526, 0.9971114993095398, 0.3461883068084717, -0.1440863460302353, -0.09731190651655197, 0.10887668281793594, -0.3262585401535034, 0.12196346372365952, 0.7131093144416809, -0.2975323498249054, -0.5390744209289551, 0.0772862657904625]} +{"t": 3.8584, "q": [-0.37972500920295715, -0.006676225923001766, -0.0007633380591869354, 0.6306876540184021, -0.2846178710460663, 0.016105415299534798, -0.3240415155887604, -0.0015936355339363217, 0.0037229470908641815, 0.6194043755531311, -0.3501310348510742, 0.015872599557042122, -0.01000374648720026, 0.019076306372880936, -0.0778292566537857, 0.114053875207901, 0.2210969775915146, -0.17242904007434845, 0.9954336881637573, 0.34594863653182983, -0.14813700318336487, -0.09729992598295212, 0.10241718590259552, -0.3283318281173706, 0.12222710996866226, 0.6906748414039612, -0.30116358399391174, -0.5682440400123596, 0.07814913243055344]} +{"t": 3.8751, "q": [-0.37981024384498596, -0.006676225923001766, -0.0007633380591869354, 0.6305257678031921, -0.284634530544281, 0.016134249046444893, -0.32401594519615173, -0.0015425028977915645, 0.003562244353815913, 0.6190720200538635, -0.35011881589889526, 0.015879735350608826, -0.012481247074902058, 0.01902303844690323, -0.07867796719074249, 0.10867295414209366, 0.21707026660442352, -0.17215339839458466, 0.9939357042312622, 0.34569695591926575, -0.1510012447834015, -0.0971800833940506, 0.0963292047381401, -0.3306327760219574, 0.12228703498840332, 0.6676651835441589, -0.30501052737236023, -0.5976892709732056, 0.07846072316169739]} +{"t": 3.8919, "q": [-0.37981024384498596, -0.006693270057439804, -0.0007901218486949801, 0.6302104592323303, -0.2846387028694153, 0.016141453757882118, -0.32396480441093445, -0.0015254586469382048, 0.00354885240085423, 0.6189101338386536, -0.35007819533348083, 0.015908392146229744, -0.015186409465968609, 0.019167620688676834, -0.07969997078180313, 0.10205766558647156, 0.21299563348293304, -0.17193767428398132, 0.9918743968009949, 0.3455531597137451, -0.15336212515830994, -0.0966048389673233, 0.09007343649864197, -0.33274200558662415, 0.12229901552200317, 0.6420788168907166, -0.3099120557308197, -0.6291718482971191, 0.07848469167947769]} +{"t": 3.9086, "q": [-0.37973353266716003, -0.00672735832631588, -0.0007633380591869354, 0.629946231842041, -0.28464704751968384, 0.016126960515975952, -0.32400742173194885, -0.0015254586469382048, 0.003575636073946953, 0.6189016103744507, -0.3500862419605255, 0.015893930569291115, -0.017021099105477333, 0.019274070858955383, -0.0809285119175911, 0.09437577426433563, 0.20809409022331238, -0.17228522896766663, 0.9897292256355286, 0.34556514024734497, -0.1552915871143341, -0.09610150009393692, 0.08478839695453644, -0.3343239426612854, 0.12282632291316986, 0.6175231337547302, -0.31374701857566833, -0.6595038771629333, 0.07848469167947769]} +{"t": 3.9253, "q": [-0.37963980436325073, -0.00666770339012146, -0.0007767299539409578, 0.6296650171279907, -0.2846553921699524, 0.016141368076205254, -0.3240244686603546, -0.001320927869528532, 0.0036292036529630423, 0.6188930869102478, -0.3500822186470032, 0.01590116135776043, -0.01848081685602665, 0.01928914710879326, -0.08235795795917511, 0.08535165339708328, 0.2013709396123886, -0.1723930835723877, 0.9854987859725952, 0.3455771207809448, -0.15587881207466125, -0.09541840106248856, 0.07979097217321396, -0.33571410179138184, 0.12501943111419678, 0.5909181833267212, -0.3158562481403351, -0.6911302804946899, 0.07897604256868362]} +{"t": 3.9421, "q": [-0.3795545697212219, -0.006403517909348011, -0.000897257006727159, 0.6295883059501648, -0.28467628359794617, 0.016119565814733505, -0.32395628094673157, -0.0008436894277110696, 0.00354885240085423, 0.6188675165176392, -0.3500739336013794, 0.015886511653661728, -0.020543167367577553, 0.019052904099225998, -0.08405327051877975, 0.07545268535614014, 0.19366508722305298, -0.17191371321678162, 0.9805852770805359, 0.34556514024734497, -0.15666978061199188, -0.09466339647769928, 0.07360710948705673, -0.3367207646369934, 0.1303044855594635, 0.5625994801521301, -0.31788158416748047, -0.7222053408622742, 0.08040216565132141]} +{"t": 3.9588, "q": [-0.379435271024704, -0.005866624880582094, -0.000897257006727159, 0.6295883059501648, -0.28469720482826233, 0.0160977803170681, -0.32395628094673157, -0.0003834952076431364, 0.0034952848218381405, 0.618876039981842, -0.35010144114494324, 0.01576310396194458, -0.02216358669102192, 0.018337173387408257, -0.08559920638799667, 0.06428338587284088, 0.18726550042629242, -0.17182981967926025, 0.9770379066467285, 0.34554117918014526, -0.1567177176475525, -0.0938604548573494, 0.0664764940738678, -0.33763158321380615, 0.136919766664505, 0.5366656184196472, -0.3212731182575226, -0.7513030767440796, 0.08267916738986969]} +{"t": 3.9756, "q": [-0.37922221422195435, -0.00527007644996047, -0.000897257006727159, 0.6295797824859619, -0.2847013771533966, 0.01609051413834095, -0.3239392638206482, 0.0001448759576305747, 0.0034551091957837343, 0.618876039981842, -0.35006293654441833, 0.015566130168735981, -0.023221546784043312, 0.017058182507753372, -0.08712165057659149, 0.05007009208202362, 0.18181267380714417, -0.17172196507453918, 0.9746530652046204, 0.3455052077770233, -0.15660984814167023, -0.09333314746618271, 0.060088906437158585, -0.33857834339141846, 0.14403840899467468, 0.5078675150871277, -0.3265102207660675, -0.7811078429222107, 0.08537562191486359]} +{"t": 3.9923, "q": [-0.3791966438293457, -0.0046735284850001335, -0.000897257006727159, 0.6295371651649475, -0.28470557928085327, 0.01606881618499756, -0.3239392638206482, 0.0007840346079319715, 0.0034551091957837343, 0.6188845634460449, -0.349982887506485, 0.015295851975679398, -0.023797398433089256, 0.015490040183067322, -0.08827999979257584, 0.03721101954579353, 0.17657557129859924, -0.17148227989673615, 0.9746171236038208, 0.34514567255973816, -0.1559387445449829, -0.09322528541088104, 0.05370131507515907, -0.338614284992218, 0.15064170956611633, 0.4807591736316681, -0.33271804451942444, -0.8089112639427185, 0.0881919115781784]} +{"t": 4.0091, "q": [-0.3791881203651428, -0.0041622016578912735, -0.001004392164759338, 0.6295286417007446, -0.28473904728889465, 0.016010819002985954, -0.32401594519615173, 0.0012953615514561534, 0.0032274469267576933, 0.6188930869102478, -0.3498789370059967, 0.01499650627374649, -0.024105412885546684, 0.01359463483095169, -0.08928143978118896, 0.024939171969890594, 0.17281252145767212, -0.17010408639907837, 0.9748927354812622, 0.3449539244174957, -0.15463246405124664, -0.09294965118169785, 0.046966180205345154, -0.3384464979171753, 0.1573648601770401, 0.45178133249282837, -0.3371522128582001, -0.8370621800422668, 0.09075653553009033]} +{"t": 4.0258, "q": [-0.37932446599006653, -0.003880971809849143, -0.0014731085393577814, 0.6295286417007446, -0.2847432494163513, 0.016003571450710297, -0.32400742173194885, 0.0016106797847896814, 0.002839081920683384, 0.6188675165176392, -0.34980472922325134, 0.014864799566566944, -0.02403845265507698, 0.011265460401773453, -0.08982323855161667, 0.014177338220179081, 0.17155417799949646, -0.17043964564800262, 0.9764267206192017, 0.3450378179550171, -0.15483619272708893, -0.0929376631975174, 0.04020707681775093, -0.3382667303085327, 0.16235029697418213, 0.42270758748054504, -0.3421136736869812, -0.8641944527626038, 0.09317734837532043]} +{"t": 4.0425, "q": [-0.37940117716789246, -0.003872449742630124, -0.002048959955573082, 0.6295456886291504, -0.2847307622432709, 0.01598195917904377, -0.3239903748035431, 0.0016618125373497605, 0.0022900141775608063, 0.618876039981842, -0.3497963845729828, 0.014835624024271965, -0.02386435866355896, 0.009134205989539623, -0.09005545824766159, 0.007430219557136297, 0.17058345675468445, -0.16973258554935455, 0.9761391282081604, 0.3446543216705322, -0.15509983897209167, -0.09287774562835693, 0.033435989171266556, -0.3381708562374115, 0.1669762134552002, 0.3961625397205353, -0.34641602635383606, -0.8891216516494751, 0.09519070386886597]} +{"t": 4.0592, "q": [-0.3796653747558594, -0.003949148580431938, -0.0025980276986956596, 0.6295542120933533, -0.28474748134613037, 0.01595296896994114, -0.3240415155887604, 0.0016192019684240222, 0.0018614735454320908, 0.6187311410903931, -0.34979626536369324, 0.01482104230672121, -0.02369026280939579, 0.007025755941867828, -0.09040561318397522, 0.0012463594321161509, 0.17063139379024506, -0.16979250311851501, 0.9761511087417603, 0.34472623467445374, -0.15597468614578247, -0.09287774562835693, 0.02388456091284752, -0.3397168219089508, 0.17380721867084503, 0.3700728714466095, -0.3519527316093445, -0.9151873588562012, 0.09679658710956573]} +{"t": 4.0762, "q": [-0.37972500920295715, -0.004085502587258816, -0.0027453387156128883, 0.629571259021759, -0.2847599983215332, 0.015960130840539932, -0.3240415155887604, 0.0014828480780124664, 0.001673986902460456, 0.6185351610183716, -0.34982866048812866, 0.014792308211326599, -0.02319476380944252, 0.005145617760717869, -0.0905873030424118, -0.00355931487865746, 0.1705714762210846, -0.17023591697216034, 0.9766424298286438, 0.34500187635421753, -0.15629826486110687, -0.09288972616195679, 0.01483647059649229, -0.34309637546539307, 0.18097378313541412, 0.3466077744960785, -0.355763703584671, -0.9371544122695923, 0.09833056479692459]} +{"t": 4.0929, "q": [-0.3798358142375946, -0.004264466930180788, -0.002946217078715563, 0.6296053528785706, -0.28481000661849976, 0.016017679125070572, -0.3240329921245575, 0.0013294500531628728, 0.0015132841654121876, 0.6182027459144592, -0.3498650789260864, 0.014756325632333755, -0.022645695134997368, 0.003630886087194085, -0.09048803150653839, -0.006171876098960638, 0.17049957811832428, -0.1705714762210846, 0.9775292873382568, 0.34502583742141724, -0.15695740282535553, -0.09288972616195679, 0.004625910893082619, -0.34574490785598755, 0.1856955736875534, 0.322291761636734, -0.36032968759536743, -0.9580908417701721, 0.10046376287937164]} +{"t": 4.1096, "q": [-0.37985286116600037, -0.004520130343735218, -0.0031604873947799206, 0.629647970199585, -0.2848433554172516, 0.016060881316661835, -0.324067085981369, 0.001133441342972219, 0.0011784868547692895, 0.6177425980567932, -0.3498731255531311, 0.014741847291588783, -0.02204306051135063, 0.0018344849813729525, -0.09013169258832932, -0.00672315014526248, 0.1696966290473938, -0.17203354835510254, 0.9775532484054565, 0.3452056050300598, -0.15945011377334595, -0.09327322244644165, -0.005261074751615524, -0.3476863503456116, 0.1882961541414261, 0.2990783154964447, -0.36434441804885864, -0.9785599112510681, 0.10389124602079391]} +{"t": 4.1263, "q": [-0.3797420561313629, -0.00481840455904603, -0.003347973804920912, 0.6296650171279907, -0.2849225103855133, 0.016197817400097847, -0.32424604892730713, 0.0009118663729168475, 0.001084743533283472, 0.6171971559524536, -0.34985703229904175, 0.01477078627794981, -0.021788613870739937, 0.00028163849492557347, -0.0895344689488411, -0.006591323763132095, 0.16643692553043365, -0.17242904007434845, 0.9769420623779297, 0.3452894985675812, -0.16481904685497284, -0.09332115948200226, -0.015986956655979156, -0.3495319187641144, 0.18945862352848053, 0.27622440457344055, -0.37018072605133057, -0.9980342984199524, 0.10699516534805298]} +{"t": 4.1431, "q": [-0.3797079622745514, -0.004997368901968002, -0.003481892868876457, 0.6297332048416138, -0.28506410121917725, 0.016442839056253433, -0.3244761526584625, 0.0007755124825052917, 0.0009240407962352037, 0.6167028546333313, -0.3497966527938843, 0.014879277907311916, -0.02136007323861122, -0.001088532037101686, -0.08930264413356781, -0.006363623775541782, 0.1634288728237152, -0.17307618260383606, 0.9735025763511658, 0.34539735317230225, -0.17402292788028717, -0.0932852104306221, -0.025142904371023178, -0.3516291379928589, 0.19032147526741028, 0.25527599453926086, -0.37407562136650085, -1.015914797782898, 0.11083011329174042]} +{"t": 4.1598, "q": [-0.3796142339706421, -0.005380864255130291, -0.0036827712319791317, 0.6298013925552368, -0.28516820073127747, 0.016651906073093414, -0.3244079649448395, 0.0003834952076431364, 0.0005356758483685553, 0.6160978078842163, -0.34966781735420227, 0.015096176415681839, -0.01983339712023735, -0.0023597574327141047, -0.0892784371972084, -0.006375608034431934, 0.15979765355587006, -0.17314808070659637, 0.9672228693962097, 0.3453853726387024, -0.1856955736875534, -0.09306949377059937, -0.03392734006047249, -0.3550686240196228, 0.1913641095161438, 0.2338002473115921, -0.376831978559494, -1.0330761671066284, 0.11323894560337067]} +{"t": 4.1766, "q": [-0.37958866357803345, -0.005772881209850311, -0.0038300822488963604, 0.6300570368766785, -0.28537222743034363, 0.017033951357007027, -0.3243483006954193, -8.52211542223813e-06, 0.00018748654110822827, 0.6158762574195862, -0.34965574741363525, 0.015117867849767208, -0.01814601942896843, -0.003493952564895153, -0.08943663537502289, -0.006423544604331255, 0.1574367731809616, -0.17339976131916046, 0.9616262316703796, 0.3455891013145447, -0.20011259615421295, -0.092985600233078, -0.04267582669854164, -0.3587837219238281, 0.1926104724407196, 0.21569208800792694, -0.3802115321159363, -1.048583745956421, 0.11565975844860077]} +{"t": 4.1933, "q": [-0.3797079622745514, -0.0061563765630126, -0.0038970415480434895, 0.6303979158401489, -0.28562211990356445, 0.017466358840465546, -0.3242971897125244, -0.00034940673504024744, -4.017568790004589e-05, 0.6157143115997314, -0.3496479094028473, 0.015161419287323952, -0.016431856900453568, -0.00424754386767745, -0.0894225537776947, -0.006399576086550951, 0.15677763521671295, -0.17622803151607513, 0.9544357061386108, 0.346763551235199, -0.2166508287191391, -0.09315337985754013, -0.052562810480594635, -0.36332574486732483, 0.19370102882385254, 0.19833892583847046, -0.38283607363700867, -1.0629289150238037, 0.11901534348726273]} +{"t": 4.2102, "q": [-0.3797591030597687, -0.006326818838715553, -0.003816690295934677, 0.6305939555168152, -0.2858678698539734, 0.017877092584967613, -0.32425457239151, -0.0005795038305222988, -1.3391895663517062e-05, 0.6153308153152466, -0.3495514392852783, 0.015349547378718853, -0.015481031499803066, -0.004407386761158705, -0.08949866890907288, -0.006447513122111559, 0.15672969818115234, -0.18304705619812012, 0.945016086101532, 0.34901657700538635, -0.23468708992004395, -0.0936087816953659, -0.061538998037576675, -0.36789175868034363, 0.19451595842838287, 0.18293920159339905, -0.3849213421344757, -1.0751887559890747, 0.12295815348625183]} +{"t": 4.2269, "q": [-0.3797420561313629, -0.006591004319489002, -0.0037095551379024982, 0.6306365132331848, -0.28608858585357666, 0.018273502588272095, -0.3241267502307892, -0.0007499461644329131, 0.0002544460294302553, 0.6148024797439575, -0.3494225740432739, 0.015566445887088776, -0.014824828132987022, -0.004354098346084356, -0.08953395485877991, -0.006447513122111559, 0.157017320394516, -0.19062109291553497, 0.9329959154129028, 0.3544694185256958, -0.2549404203891754, -0.09486712515354156, -0.0706949457526207, -0.3726974129676819, 0.19474366307258606, 0.16803082823753357, -0.38845667243003845, -1.08713698387146, 0.1269369125366211]} +{"t": 4.2437, "q": [-0.3797420561313629, -0.006965977605432272, -0.003669379511848092, 0.6306535601615906, -0.2861962914466858, 0.01846085675060749, -0.3239818513393402, -0.0010823087068274617, 0.00033479739795438945, 0.614555299282074, -0.34922561049461365, 0.015949951484799385, -0.013164233416318893, -0.004095286596566439, -0.08967502415180206, -0.007478156592696905, 0.15929432213306427, -0.19968116283416748, 0.9202926158905029, 0.36040160059928894, -0.27537351846694946, -0.09798302501440048, -0.08034224808216095, -0.37709563970565796, 0.19540278613567352, 0.15596270561218262, -0.39193210005760193, -1.0980186462402344, 0.13174258172512054]} +{"t": 4.2604, "q": [-0.3798017203807831, -0.007204596884548664, -0.0034551091957837343, 0.6308069825172424, -0.2863163352012634, 0.018669839948415756, -0.3239818513393402, -0.001389104756526649, 0.00044193255598656833, 0.6145382523536682, -0.34921735525131226, 0.015935320407152176, -0.01260177418589592, -0.003707070369273424, -0.08978047221899033, -0.009299758821725845, 0.16214656829833984, -0.20940037071704865, 0.9071459174156189, 0.3683471381664276, -0.2961541712284088, -0.10393918305635452, -0.09102018922567368, -0.38069090247154236, 0.1967090666294098, 0.145584374666214, -0.3946644961833954, -1.1065753698349, 0.13469070196151733]} +{"t": 4.2771, "q": [-0.37986990809440613, -0.007392083294689655, -0.003254230599850416, 0.6309518814086914, -0.28643226623535156, 0.018871599808335304, -0.32399889826774597, -0.0015765913994982839, 0.0005758515326306224, 0.6145212054252625, -0.34922561049461365, 0.015949951484799385, -0.012280368246138096, -0.003090496640652418, -0.08980485051870346, -0.01143295131623745, 0.16551414132118225, -0.22248713672161102, 0.8940711617469788, 0.37732332944869995, -0.31605997681617737, -0.11162107437849045, -0.1010989248752594, -0.3829798996448517, 0.1968289166688919, 0.1359250843524933, -0.39691755175590515, -1.1150482892990112, 0.13642841577529907]} +{"t": 4.2938, "q": [-0.3798272907733917, -0.007460260298103094, -0.0029997846577316523, 0.6310114860534668, -0.28652751445770264, 0.01902288943529129, -0.3240244686603546, -0.0016447682864964008, 0.0009910003282129765, 0.6144530177116394, -0.3492215871810913, 0.01595718041062355, -0.012280368246138096, -0.0025043589994311333, -0.08986970037221909, -0.014333133585751057, 0.1691213846206665, -0.236868217587471, 0.8816075325012207, 0.38815706968307495, -0.3367447555065155, -0.1200459823012352, -0.11241203546524048, -0.3854725956916809, 0.1967330425977707, 0.1261100023984909, -0.400333046913147, -1.124324083328247, 0.1390409767627716]} +{"t": 4.3106, "q": [-0.3798443377017975, -0.007528437301516533, -0.0027989062946289778, 0.6310796737670898, -0.2866269052028656, 0.019166894257068634, -0.3240756094455719, -0.0016532903537154198, 0.001272230059839785, 0.6143848896026611, -0.34922561049461365, 0.015949951484799385, -0.012307152152061462, -0.0018344959244132042, -0.08977807313203812, -0.01774863712489605, 0.17208148539066315, -0.2516807019710541, 0.8711812496185303, 0.39846351742744446, -0.3566145896911621, -0.13104750216007233, -0.12289822846651077, -0.3883488178253174, 0.1974520981311798, 0.11594738066196442, -0.40261003375053406, -1.1313707828521729, 0.14214488863945007]} +{"t": 4.3273, "q": [-0.3798869252204895, -0.007536959368735552, -0.0027051628567278385, 0.6311052441596985, -0.28669318556785583, 0.019253287464380264, -0.32414376735687256, -0.0016447682864964008, 0.0013391895918175578, 0.6143422722816467, -0.3492377698421478, 0.015942787751555443, -0.012374111451208591, -0.0012027064803987741, -0.08953005820512772, -0.021140173077583313, 0.17554493248462677, -0.26990872621536255, 0.8598082661628723, 0.40700826048851013, -0.3778146803379059, -0.14197711646556854, -0.1357692927122116, -0.390470027923584, 0.19788353145122528, 0.10645586997270584, -0.4044915735721588, -1.139939546585083, 0.14602778851985931]} +{"t": 4.344, "q": [-0.37995511293411255, -0.007545481435954571, -0.002718554809689522, 0.6311308145523071, -0.2867346704006195, 0.01926753669977188, -0.32418638467788696, -0.001636246219277382, 0.0012856220128014684, 0.6141291856765747, -0.3492336571216583, 0.015935471281409264, -0.01244107075035572, -0.000791663012932986, -0.08925694972276688, -0.02442385070025921, 0.177582249045372, -0.28701022267341614, 0.8497174978256226, 0.4158046841621399, -0.4000454246997833, -0.1537935584783554, -0.14859241247177124, -0.3932623565196991, 0.19773972034454346, 0.09503490477800369, -0.4057978391647339, -1.147189974784851, 0.15156449377536774]} +{"t": 4.3608, "q": [-0.3801255524158478, -0.007536959368735552, -0.002852473873645067, 0.6311478614807129, -0.2867636978626251, 0.01927459053695202, -0.32423752546310425, -0.0016192019684240222, 0.001084743533283472, 0.6138905882835388, -0.3492458164691925, 0.015928326174616814, -0.011945570819079876, -0.0005937541136518121, -0.08910524845123291, -0.026976490393280983, 0.17910423874855042, -0.30338066816329956, 0.8392912745475769, 0.4247928559780121, -0.4212694764137268, -0.16394419968128204, -0.15992948412895203, -0.3968336582183838, 0.19766780734062195, 0.08356600254774094, -0.407247930765152, -1.1532419919967651, 0.1554953157901764]} +{"t": 4.3775, "q": [-0.38023635745048523, -0.007477304432541132, -0.0029328251257538795, 0.6311222910881042, -0.28685063123703003, 0.019425923004746437, -0.32422900199890137, -0.0016192019684240222, 0.0007633380591869354, 0.6137456893920898, -0.34929049015045166, 0.015906956046819687, -0.011503638699650764, -0.0005252492264844477, -0.0890597328543663, -0.028234833851456642, 0.18042251467704773, -0.318552702665329, 0.8260606527328491, 0.4305812418460846, -0.44517800211906433, -0.17620407044887543, -0.1733398288488388, -0.40058472752571106, 0.19773972034454346, 0.07280416786670685, -0.41060352325439453, -1.1615591049194336, 0.1588628888130188]} +{"t": 4.3943, "q": [-0.38033008575439453, -0.007451738230884075, -0.002986392704769969, 0.6311308145523071, -0.28695014119148254, 0.019541125744581223, -0.32418638467788696, -0.0015936355339363217, 0.0005490677431225777, 0.6135923266410828, -0.3492710590362549, 0.016044998541474342, -0.010097489692270756, -0.0005328587722033262, -0.08906479179859161, -0.0294811949133873, 0.18124942481517792, -0.33249035477638245, 0.8131656646728516, 0.4358542859554291, -0.4687509834766388, -0.18697787821292877, -0.1854199320077896, -0.40371260046958923, 0.19773972034454346, 0.061299312859773636, -0.41231727600097656, -1.168569803237915, 0.1633090376853943]} +{"t": 4.4112, "q": [-0.3803556561470032, -0.007375039160251617, -0.0030131766106933355, 0.6311819553375244, -0.28709539771080017, 0.019692374393343925, -0.3241182267665863, -0.0015936355339363217, 0.0002946217136923224, 0.613575279712677, -0.3492752015590668, 0.016052313148975372, -0.008262800052762032, -0.0005328587722033262, -0.08906479179859161, -0.03093128465116024, 0.18222014605998993, -0.3459845781326294, 0.8003664612770081, 0.4399888515472412, -0.491113543510437, -0.19750003516674042, -0.19662518799304962, -0.40717604756355286, 0.19773972034454346, 0.050034139305353165, -0.41341981291770935, -1.1732196807861328, 0.1669522374868393]} +{"t": 4.428, "q": [-0.3803471326828003, -0.0073579950258135796, -0.003093527862802148, 0.6311904788017273, -0.2872115969657898, 0.019807597622275352, -0.32405856251716614, -0.0015936355339363217, 0.00012052706006215885, 0.6135582327842712, -0.3492712676525116, 0.01607408933341503, -0.00642810994759202, -0.0005100202397443354, -0.0890597254037857, -0.03196192905306816, 0.18308301270008087, -0.35750141739845276, 0.7858296036720276, 0.44414737820625305, -0.5144228935241699, -0.2088610827922821, -0.2085135281085968, -0.41109487414360046, 0.19781161844730377, 0.04092612862586975, -0.41524142026901245, -1.178876280784607, 0.17169798910617828]} +{"t": 4.4447, "q": [-0.3803471326828003, -0.007340950891375542, -0.003066744189709425, 0.6312501430511475, -0.287373423576355, 0.020016634836792946, -0.3240841329097748, -0.0016192019684240222, 0.0, 0.6135411858558655, -0.34854385256767273, 0.017514126375317574, -0.004325582180172205, -0.0004186822334304452, -0.08896873891353607, -0.033543847501277924, 0.1835743635892868, -0.3688744604587555, 0.7723233699798584, 0.44539374113082886, -0.5375284552574158, -0.21995846927165985, -0.21798107028007507, -0.4151335656642914, 0.1976078897714615, 0.03257312253117561, -0.41898050904273987, -1.183382272720337, 0.17585651576519012]} +{"t": 4.4616, "q": [-0.3804493844509125, -0.007323906756937504, -0.0030131766106933355, 0.6312416195869446, -0.2873983383178711, 0.02003098838031292, -0.3241267502307892, -0.0016021577175706625, -0.00010713516530813649, 0.6135411858558655, -0.34790924191474915, 0.01881691999733448, -0.001191878691315651, -0.00030449446057900786, -0.08882229775190353, -0.03525758907198906, 0.18381404876708984, -0.37979209423065186, 0.7586973309516907, 0.44576525688171387, -0.5601786375045776, -0.22934211790561676, -0.22434470057487488, -0.41953176259994507, 0.19764384627342224, 0.02485528402030468, -0.42240798473358154, -1.186869740486145, 0.17939186096191406]} +{"t": 4.4783, "q": [-0.38050052523612976, -0.007264251820743084, -0.002865865593776107, 0.6313268542289734, -0.28753113746643066, 0.020146138966083527, -0.32415229082107544, -0.0015936355339363217, -8.035137580009177e-05, 0.613507091999054, -0.347840815782547, 0.01893988996744156, 0.0027989062946289778, -0.000342553888913244, -0.08843357115983963, -0.0367196649312973, 0.18371817469596863, -0.3898947834968567, 0.7436091899871826, 0.44504618644714355, -0.5833561420440674, -0.23885759711265564, -0.22950990498065948, -0.42409777641296387, 0.19764384627342224, 0.017604826018214226, -0.42587143182754517, -1.1903570890426636, 0.18458104133605957]} +{"t": 4.4951, "q": [-0.3807135820388794, -0.007289818022400141, -0.0029060414526611567, 0.6314375996589661, -0.28763073682785034, 0.020261451601982117, -0.3241182267665863, -0.0015851134667173028, -0.0003883649769704789, 0.6133451461791992, -0.3477470874786377, 0.01893162541091442, 0.005477285478264093, -0.00031971916905604303, -0.08807512372732162, -0.0370192714035511, 0.18338261544704437, -0.3969055414199829, 0.7293719053268433, 0.442661315202713, -0.6076961159706116, -0.2469829022884369, -0.233824223279953, -0.42872366309165955, 0.1977037638425827, 0.011552792973816395, -0.42914313077926636, -1.1931734085083008, 0.19089671969413757]} +{"t": 4.5121, "q": [-0.3810800313949585, -0.007349472492933273, -0.0029060414526611567, 0.6316165924072266, -0.28759345412254333, 0.0201531033962965, -0.3240415155887604, -0.0017385114915668964, -0.0006695947959087789, 0.6133877635002136, -0.3476807177066803, 0.018756350502371788, 0.00709770480170846, -0.00023598082771059126, -0.0876762643456459, -0.03694736585021019, 0.18124942481517792, -0.3992784321308136, 0.7133610248565674, 0.4401686191558838, -0.6311013102531433, -0.25227993726730347, -0.23722773790359497, -0.4336012601852417, 0.1976078897714615, 0.0068429927341639996, -0.43104860186576843, -1.1960376501083374, 0.19666112959384918]} +{"t": 4.5288, "q": [-0.38119083642959595, -0.007375039160251617, -0.002852473873645067, 0.6317870020866394, -0.28742343187332153, 0.019785001873970032, -0.32399889826774597, -0.0017981663113459945, -0.0007499461644329131, 0.6133536696434021, -0.34664133191108704, 0.01688329316675663, 0.007968178018927574, -0.0001750819501467049, -0.08716129511594772, -0.03695935010910034, 0.17832526564598083, -0.40011733770370483, 0.6983926892280579, 0.4362977147102356, -0.6510310769081116, -0.25969815254211426, -0.24005602300167084, -0.43725645542144775, 0.1971524953842163, 0.003918841481208801, -0.4321511685848236, -1.199357271194458, 0.20091553032398224]} +{"t": 4.5456, "q": [-0.3812504708766937, -0.007383561227470636, -0.0026783791836351156, 0.631889283657074, -0.2867811620235443, 0.018638426437973976, -0.32399889826774597, -0.0018578211311250925, -0.000709770480170846, 0.6133451461791992, -0.3461287021636963, 0.01593226194381714, 0.00839671865105629, 7.612361514475197e-05, -0.0867624282836914, -0.03647998347878456, 0.1757366806268692, -0.40168726444244385, 0.684922456741333, 0.4298621714115143, -0.6705533266067505, -0.2673800587654114, -0.24294421076774597, -0.4401686191558838, 0.19696074724197388, 0.0012583436910063028, -0.4327024221420288, -1.2028447389602661, 0.20500215888023376]} +{"t": 4.5623, "q": [-0.38123342394828796, -0.007392083294689655, -0.002397149335592985, 0.6319489479064941, -0.2868351638317108, 0.01860200986266136, -0.3240841329097748, -0.0018578211311250925, -0.0005356758483685553, 0.613362193107605, -0.34611183404922485, 0.015859343111515045, 0.008169055916368961, 0.000365399377187714, -0.08622768521308899, -0.0354972742497921, 0.1733638048171997, -0.40376052260398865, 0.6731419563293457, 0.4224439263343811, -0.6885536313056946, -0.27212581038475037, -0.24658742547035217, -0.4425175189971924, 0.19679296016693115, -0.001725728390738368, -0.4327264130115509, -1.2052175998687744, 0.20902885496616364]} +{"t": 4.5791, "q": [-0.38119083642959595, -0.0073665170930325985, -0.0022230546455830336, 0.6319745182991028, -0.28686031699180603, 0.018413949757814407, -0.32409265637397766, -0.0018407768802717328, -0.00042854066123254597, 0.6133792400360107, -0.34611183404922485, 0.015859343111515045, 0.00799496192485094, 0.00036540901055559516, -0.08564266562461853, -0.03495798632502556, 0.17011608183383942, -0.4053664207458496, 0.6621763706207275, 0.4151575267314911, -0.7062304019927979, -0.27454662322998047, -0.2494276762008667, -0.44460275769233704, 0.19626565277576447, -0.006207828875631094, -0.43276235461235046, -1.2065597772598267, 0.2128278613090515]} +{"t": 4.5958, "q": [-0.38123342394828796, -0.007323906756937504, -0.002236446598544717, 0.6320767998695374, -0.2869684100151062, 0.01825435273349285, -0.32405856251716614, -0.001823732745833695, -0.0005356758483685553, 0.6133707165718079, -0.34613630175590515, 0.015845058485865593, 0.007941394113004208, 6.090150054660626e-05, -0.08515854179859161, -0.034143056720495224, 0.16509468853473663, -0.4060615003108978, 0.6488139629364014, 0.40338900685310364, -0.7258725166320801, -0.27765053510665894, -0.25151294469833374, -0.446807861328125, 0.19517509639263153, -0.012535499408841133, -0.4325226843357086, -1.2078062295913696, 0.2159557342529297]} +{"t": 4.6125, "q": [-0.3812163770198822, -0.007323906756937504, -0.002276622224599123, 0.6321704983711243, -0.2870848476886749, 0.018065808340907097, -0.32396480441093445, -0.0017981663113459945, -0.0005758515326306224, 0.6133195757865906, -0.34614843130111694, 0.015823369845747948, 0.007954785600304604, -0.0001370283862343058, -0.0850476399064064, -0.03326820954680443, 0.16136759519577026, -0.4061214327812195, 0.6365661025047302, 0.3926631510257721, -0.7439447641372681, -0.28198882937431335, -0.25363415479660034, -0.4492286741733551, 0.19384483993053436, -0.017784589901566505, -0.4320792555809021, -1.2090884447097778, 0.21889187395572662]} +{"t": 4.6293, "q": [-0.38113969564437866, -0.007323906756937504, -0.0021962709724903107, 0.6324943900108337, -0.2872013747692108, 0.0178338885307312, -0.32386255264282227, -0.0018066884949803352, -0.0005490677431225777, 0.6133962869644165, -0.3461648225784302, 0.015823524445295334, 0.007834259420633316, -9.896257688524202e-05, -0.08505266904830933, -0.032585106790065765, 0.15925836563110352, -0.40710413455963135, 0.6249653697013855, 0.382548451423645, -0.7600036263465881, -0.28765735030174255, -0.25677400827407837, -0.451925128698349, 0.192562535405159, -0.02304566465318203, -0.43179163336753845, -1.2103108167648315, 0.2211209386587143]} +{"t": 4.646, "q": [-0.381045937538147, -0.007315384224057198, -0.0019552167505025864, 0.6325710415840149, -0.2875547409057617, 0.01733328215777874, -0.3238881230354309, -0.001823732745833695, -0.00030801360844634473, 0.6134644746780396, -0.34620559215545654, 0.015794849023222923, 0.007753907702863216, -3.045075027330313e-05, -0.0850980281829834, -0.03232145681977272, 0.1573648601770401, -0.40860214829444885, 0.6165404319763184, 0.3743152916431427, -0.7736775875091553, -0.2916601002216339, -0.26027339696884155, -0.45442983508110046, 0.19155585765838623, -0.029025793075561523, -0.4314560890197754, -1.2111377716064453, 0.22245119512081146]} +{"t": 4.6627, "q": [-0.38100335001945496, -0.007340950891375542, -0.001794514013454318, 0.632707417011261, -0.2876046597957611, 0.017246270552277565, -0.3238966464996338, -0.0018066884949803352, -0.0001740946463542059, 0.6135241389274597, -0.3462139070034027, 0.015809517353773117, 0.007311975117772818, -3.806580571108498e-05, -0.08510307222604752, -0.03124287538230419, 0.1550159603357315, -0.4099563658237457, 0.6092540621757507, 0.3642245829105377, -0.7873156666755676, -0.29447638988494873, -0.26374882459640503, -0.45587992668151855, 0.19033347070217133, -0.03514973446726799, -0.4312763214111328, -1.2114373445510864, 0.22420088946819305]} +{"t": 4.6795, "q": [-0.3810715079307556, -0.007272773422300816, -0.001794514013454318, 0.6329460144042969, -0.28779131174087524, 0.017310328781604767, -0.32390516996383667, -0.0017981663113459945, -0.00018748654110822827, 0.6135156154632568, -0.3462097644805908, 0.015802202746272087, 0.0066289883106946945, -0.0001903148222481832, -0.08505269885063171, -0.02978079952299595, 0.1510252058506012, -0.4106155037879944, 0.6010568141937256, 0.35183289647102356, -0.8009656667709351, -0.2976522147655487, -0.26769164204597473, -0.45635929703712463, 0.1877209097146988, -0.04192081838846207, -0.43116846680641174, -1.2119766473770142, 0.2274605929851532]} +{"t": 4.6966, "q": [-0.38110560178756714, -0.007281295955181122, -0.0018212978029623628, 0.6331931948661804, -0.28781217336654663, 0.017230715602636337, -0.32387107610702515, -0.0017981663113459945, -0.0001740946463542059, 0.6135582327842712, -0.34620559215545654, 0.015794849023222923, 0.006187055725604296, -0.0006013999809511006, -0.08489149063825607, -0.02882206253707409, 0.14741794764995575, -0.4111787676811218, 0.5934708118438721, 0.3417421579360962, -0.8133214116096497, -0.3032728135585785, -0.27108317613601685, -0.4566349387168884, 0.18436531722545624, -0.04848817363381386, -0.43068909645080566, -1.2120845317840576, 0.2302289456129074]} +{"t": 4.7135, "q": [-0.38113969564437866, -0.007272773422300816, -0.0018079059664160013, 0.6334999799728394, -0.28786614537239075, 0.01719428040087223, -0.3238540291786194, -0.0017981663113459945, -0.00013391896209213883, 0.6135923266410828, -0.3462097644805908, 0.015802202746272087, 0.005745123140513897, -0.0008678416488692164, -0.0847151130437851, -0.027228159829974174, 0.14502111077308655, -0.4127127528190613, 0.5852616429328918, 0.33159151673316956, -0.8264681100845337, -0.30922895669937134, -0.2760566174983978, -0.45705437660217285, 0.1814531534910202, -0.055630773305892944, -0.43017375469207764, -1.2120965719223022, 0.23310516774654388]} +{"t": 4.7302, "q": [-0.38119933009147644, -0.007281295955181122, -0.0016204193234443665, 0.6337300539016724, -0.28792837262153625, 0.017215626314282417, -0.32391369342803955, -0.0017981663113459945, 4.017568790004589e-05, 0.6136690378189087, -0.3461892902851105, 0.01580923981964588, 0.00546389352530241, -0.0009059074800461531, -0.08464958518743515, -0.02540655806660652, 0.14341522753238678, -0.4154571294784546, 0.5775677561759949, 0.32020652294158936, -0.839219331741333, -0.3149574100971222, -0.281904935836792, -0.45765358209609985, 0.1799071878194809, -0.06197042763233185, -0.43006590008735657, -1.212120532989502, 0.2368442416191101]} +{"t": 4.747, "q": [-0.38114821910858154, -0.00729834008961916, -0.0014061490073800087, 0.6338749527931213, -0.28792423009872437, 0.01720842346549034, -0.3239392638206482, -0.0018152105621993542, 0.00026783792418427765, 0.613737165927887, -0.34616896510124207, 0.015830840915441513, 0.00516927195712924, -0.0010505461832508445, -0.08454374969005585, -0.023309318348765373, 0.14117416739463806, -0.4175304174423218, 0.5702453851699829, 0.30844998359680176, -0.8521623015403748, -0.32013460993766785, -0.2877412438392639, -0.45802509784698486, 0.17894844710826874, -0.06763897091150284, -0.42992210388183594, -1.2122282981872559, 0.24130237102508545]} +{"t": 4.7637, "q": [-0.3813186585903168, -0.00729834008961916, -0.0012856220128014684, 0.6341646909713745, -0.2886373996734619, 0.018420105800032616, -0.3239818513393402, -0.0018407768802717328, 0.00044193255598656833, 0.6137286424636841, -0.3461163640022278, 0.015924859791994095, 0.0049817850813269615, -0.0012560910545289516, -0.08440768718719482, -0.02123604714870453, 0.13793843984603882, -0.4181176424026489, 0.5620002150535583, 0.2968372702598572, -0.8646738529205322, -0.32702553272247314, -0.29224732518196106, -0.4583366811275482, 0.177582249045372, -0.07379885762929916, -0.4296824038028717, -1.2122282981872559, 0.24393890798091888]} +{"t": 4.7804, "q": [-0.3813527524471283, -0.007315384224057198, -0.0012990138493478298, 0.6344629526138306, -0.290798544883728, 0.022157490253448486, -0.3239818513393402, -0.0018407768802717328, 0.0004955001641064882, 0.6137542128562927, -0.34602320194244385, 0.016076644882559776, 0.005008568987250328, -0.00162150536198169, -0.08417621999979019, -0.019570238888263702, 0.13570936024188995, -0.4191482663154602, 0.5538150072097778, 0.2844935357570648, -0.8776048421859741, -0.3323225677013397, -0.2965256869792938, -0.45848050713539124, 0.176983043551445, -0.07939549535512924, -0.42944273352622986, -1.2122763395309448, 0.24628780782222748]} +{"t": 4.7972, "q": [-0.3815828263759613, -0.007315384224057198, -0.0013525814283639193, 0.6350339651107788, -0.29103201627731323, 0.02248925156891346, -0.3240415155887604, -0.0018407768802717328, 0.0004553244507405907, 0.61380535364151, -0.34603533148765564, 0.01605493761599064, 0.005035352893173695, -0.0018574963323771954, -0.08406064659357071, -0.0177606213837862, 0.13401958346366882, -0.4198673367500305, 0.5433288216590881, 0.27152660489082336, -0.889277458190918, -0.3368645906448364, -0.3005523979663849, -0.4585164487361908, 0.17680327594280243, -0.08460862934589386, -0.4293108880519867, -1.2123003005981445, 0.24911609292030334]} +{"t": 4.8139, "q": [-0.38187259435653687, -0.007306862156838179, -0.0014061490073800087, 0.6357753872871399, -0.291027694940567, 0.02242416888475418, -0.3240415155887604, -0.0018492990639060736, 0.00046871634549461305, 0.6138479709625244, -0.34606051445007324, 0.016142524778842926, 0.0049817850813269615, -0.001994532998651266, -0.08395000547170639, -0.016334498301148415, 0.13276124000549316, -0.4197475016117096, 0.5335856676101685, 0.2598899006843567, -0.9015013575553894, -0.34062764048576355, -0.3031649589538574, -0.45850446820259094, 0.1766594648361206, -0.08921056985855103, -0.4292270243167877, -1.2123242616653442, 0.2509257197380066]} +{"t": 4.8306, "q": [-0.3823668658733368, -0.007315384224057198, -0.0014463247498497367, 0.6365679502487183, -0.2910943925380707, 0.022510679438710213, -0.3240756094455719, -0.0018322548130527139, 0.00044193255598656833, 0.6138905882835388, -0.34609320759773254, 0.016128307208418846, 0.005289798602461815, -0.002032595919445157, -0.08387450128793716, -0.015136076137423515, 0.13183845579624176, -0.4197235107421875, 0.5236027836799622, 0.24469390511512756, -0.9135934710502625, -0.3459126651287079, -0.3046509921550751, -0.45864829421043396, 0.1765875518321991, -0.09394434094429016, -0.4291071593761444, -1.212348222732544, 0.252315878868103]} +{"t": 4.8474, "q": [-0.3832276165485382, -0.007323906756937504, -0.001607027486898005, 0.6375735402107239, -0.29123198986053467, 0.02271987870335579, -0.3241693377494812, -0.0019089538836851716, 0.0002410541201243177, 0.6139332056045532, -0.3465464413166046, 0.015522012487053871, 0.0061736637726426125, -0.0019945348612964153, -0.08384928107261658, -0.013434316031634808, 0.13114337623119354, -0.41883668303489685, 0.5133083462715149, 0.2301810085773468, -0.9239238500595093, -0.3488847613334656, -0.30565765500068665, -0.45860034227371216, 0.17651565372943878, -0.09786318242549896, -0.42907121777534485, -1.212420105934143, 0.2539457380771637]} +{"t": 4.8642, "q": [-0.38394346833229065, -0.007340950891375542, -0.0017543383873999119, 0.6385195255279541, -0.29146984219551086, 0.02313118614256382, -0.32423752546310425, -0.0020964404102414846, -4.017568790004589e-05, 0.6141036152839661, -0.3469526469707489, 0.01476242020726204, 0.006615596357733011, -0.0019564740359783173, -0.08381398767232895, -0.011217234656214714, 0.13047225773334503, -0.41796183586120605, 0.5034453272819519, 0.21701034903526306, -0.9327802062034607, -0.35108986496925354, -0.3060171902179718, -0.45850446820259094, 0.17639581859111786, -0.1004757434129715, -0.42916709184646606, -1.2124320268630981, 0.25603097677230835]} +{"t": 4.8809, "q": [-0.3846081793308258, -0.0073665170930325985, -0.0018748653819784522, 0.6394143104553223, -0.2918201684951782, 0.023679466918110847, -0.3243483006954193, -0.0021646174136549234, -0.0001473108568461612, 0.6142229437828064, -0.3474557399749756, 0.015065898187458515, 0.006910218391567469, -0.0020021465606987476, -0.08377374708652496, -0.00755006168037653, 0.12966932356357574, -0.4169072210788727, 0.4933066666126251, 0.2010713368654251, -0.9435420036315918, -0.35325899720191956, -0.3059692680835724, -0.45818090438842773, 0.17643176019191742, -0.1017460748553276, -0.4292150139808655, -1.212420105934143, 0.2589671313762665]} +{"t": 4.8977, "q": [-0.385298490524292, -0.007375039160251617, -0.002089135814458132, 0.6403091549873352, -0.29209527373313904, 0.02405443973839283, -0.3244079649448395, -0.0021731394808739424, -0.00026783792418427765, 0.6142229437828064, -0.3495555520057678, 0.017824040725827217, 0.0074191102758049965, -0.002017372287809849, -0.08376369625329971, -0.004985437728464603, 0.12936970591545105, -0.4148818850517273, 0.48406681418418884, 0.1853480339050293, -0.9514995217323303, -0.3542177379131317, -0.3052382171154022, -0.45767757296562195, 0.17644375562667847, -0.102297343313694, -0.4292030334472656, -1.2123961448669434, 0.26184332370758057]} +{"t": 4.9144, "q": [-0.38586947321891785, -0.007426171563565731, -0.0021025275345891714, 0.6412124633789062, -0.2923496961593628, 0.02445119619369507, -0.3244846761226654, -0.002326537622138858, -0.0002946217136923224, 0.6142655611038208, -0.3498702347278595, 0.018279006704688072, 0.007472677621990442, -0.002009762218222022, -0.08374857157468796, -0.0027204190846532583, 0.12950153648853302, -0.413335919380188, 0.4744075536727905, 0.17166204750537872, -0.96010422706604, -0.3552004396915436, -0.3048906624317169, -0.45705437660217285, 0.1764077991247177, -0.10280068218708038, -0.4292030334472656, -1.2123721837997437, 0.26391661167144775]} +{"t": 4.9311, "q": [-0.38627853989601135, -0.007528437301516533, -0.001834689755924046, 0.6418005228042603, -0.29263758659362793, 0.024934642016887665, -0.32470622658729553, -0.002496979897841811, -0.00010713516530813649, 0.6142740845680237, -0.3498254418373108, 0.01830030046403408, 0.007245015352964401, -0.001994536956772208, -0.08373848348855972, -0.0003954794374294579, 0.12958543002605438, -0.4130842685699463, 0.4658867418766022, 0.15776033699512482, -0.9661802053451538, -0.3569861054420471, -0.30480679869651794, -0.45675477385520935, 0.1763838231563568, -0.10357965528964996, -0.4291790723800659, -1.2123721837997437, 0.26548653841018677]} +{"t": 4.948, "q": [-0.38632965087890625, -0.007571048103272915, -0.0013927571708336473, 0.642354428768158, -0.29285866022109985, 0.025302615016698837, -0.3247147500514984, -0.0026077672373503447, 0.0002812298189383, 0.6142570376396179, -0.34974509477615356, 0.01845950074493885, 0.006736123468726873, -0.0018270573345944285, -0.08364765346050262, 0.0018335864879190922, 0.13052019476890564, -0.4132041037082672, 0.45788130164146423, 0.14697453379631042, -0.9710338115692139, -0.3592151701450348, -0.30462703108787537, -0.4566349387168884, 0.17627596855163574, -0.10502974689006805, -0.4291071593761444, -1.2123961448669434, 0.2676197290420532]} +{"t": 4.9648, "q": [-0.38637226819992065, -0.007562525570392609, -0.0006963785854168236, 0.6429169178009033, -0.2932673990726471, 0.025937460362911224, -0.3247658908367157, -0.0026929883752018213, 0.0007901218486949801, 0.614248514175415, -0.3496646285057068, 0.018604161217808723, 0.006240623537451029, -0.0016900289338082075, -0.08355685323476791, 0.003858920419588685, 0.13294100761413574, -0.4132400453090668, 0.4490009844303131, 0.13588912785053253, -0.9782123565673828, -0.3615041673183441, -0.3044951856136322, -0.45725810527801514, 0.17597636580467224, -0.10727079957723618, -0.4292030334472656, -1.212420105934143, 0.27018436789512634]} +{"t": 4.9815, "q": [-0.38638079166412354, -0.007562525570392609, -9.374327055411413e-05, 0.6435134410858154, -0.29378461837768555, 0.026774344965815544, -0.32474032044410706, -0.00276116537861526, 0.0013659733813256025, 0.6142655611038208, -0.34954366087913513, 0.018792016431689262, 0.00579869095236063, -0.0016443523345515132, -0.08355680853128433, 0.00430233683437109, 0.1341753900051117, -0.4132760167121887, 0.44110336899757385, 0.12227504700422287, -0.9850793480873108, -0.36363735795021057, -0.30432742834091187, -0.4584085941314697, 0.17582057416439056, -0.10915232449769974, -0.4291790723800659, -1.2126117944717407, 0.2724493741989136]} +{"t": 4.9984, "q": [-0.38651713728904724, -0.007536959368735552, 0.0002544460294302553, 0.6441696882247925, -0.2939678430557251, 0.02694719098508358, -0.32470622658729553, -0.00282082031480968, 0.001673986902460456, 0.6143337488174438, -0.34944167733192444, 0.01881270296871662, 0.005450501572340727, -0.0015986762009561062, -0.08352653682231903, 0.004793690051883459, 0.13499031960964203, -0.4132400453090668, 0.43261855840682983, 0.11030280590057373, -0.9883390665054321, -0.3655788004398346, -0.304171621799469, -0.4586842358112335, 0.17524532973766327, -0.11098591238260269, -0.4291311502456665, -1.2128396034240723, 0.27400732040405273]} +{"t": 5.0151, "q": [-0.3868409991264343, -0.00755400350317359, 0.00037497308221645653, 0.6448855400085449, -0.2942260503768921, 0.02720649540424347, -0.3247147500514984, -0.0028719529509544373, 0.0018212978029623628, 0.6143763661384583, -0.3493891954421997, 0.018892142921686172, 0.005196055397391319, -0.0015910656657069921, -0.08353156596422195, 0.0049135321751236916, 0.13570936024188995, -0.4131801426410675, 0.42747730016708374, 0.09918145090341568, -0.9911433458328247, -0.3674004077911377, -0.30450716614723206, -0.45857638120651245, 0.17452627420425415, -0.114053875207901, -0.42911913990974426, -1.2130552530288696, 0.275816947221756]} +{"t": 5.0318, "q": [-0.38724151253700256, -0.00755400350317359, 0.0004553244507405907, 0.6455502510070801, -0.2945253252983093, 0.027292029932141304, -0.3247573673725128, -0.0029145635198801756, 0.0018480815924704075, 0.6144444942474365, -0.34937310218811035, 0.01892106421291828, 0.004245230928063393, -0.0015758360968902707, -0.0834912583231926, 0.004985437728464603, 0.1362726241350174, -0.4132760167121887, 0.42492467164993286, 0.08744889497756958, -0.9920182228088379, -0.36891040205955505, -0.30598124861717224, -0.45813295245170593, 0.1738671362400055, -0.11951867491006851, -0.42916709184646606, -1.2132829427719116, 0.27864521741867065]} +{"t": 5.0486, "q": [-0.38751423358917236, -0.00755400350317359, 0.00033479739795438945, 0.6460530757904053, -0.2952426075935364, 0.02661631628870964, -0.32482555508613586, -0.0028634308837354183, 0.0018614735454320908, 0.6144444942474365, -0.3493487238883972, 0.01893535442650318, 0.003468500915914774, -0.0015453863888978958, -0.08341065049171448, 0.005428853910416365, 0.13706357777118683, -0.4158765971660614, 0.4232468903064728, 0.07708253711462021, -0.9921740293502808, -0.3702526390552521, -0.30727553367614746, -0.45767757296562195, 0.17373532056808472, -0.12618190050125122, -0.42911913990974426, -1.2137982845306396, 0.2810780107975006]} +{"t": 5.0653, "q": [-0.38752275705337524, -0.007571048103272915, 0.0003214055032003671, 0.646462082862854, -0.2956361472606659, 0.026144476607441902, -0.3248596489429474, -0.002837864449247718, 0.0021159194875508547, 0.614393413066864, -0.3490380346775055, 0.018931763246655464, 0.0029060414526611567, -0.0015530063537880778, -0.083203986287117, 0.00672315014526248, 0.13727930188179016, -0.4177461266517639, 0.42255181074142456, 0.06763897091150284, -0.9918504357337952, -0.37183454632759094, -0.3090372085571289, -0.4571382701396942, 0.1736394464969635, -0.13400760293006897, -0.4291071593761444, -1.2143375873565674, 0.28376248478889465]} +{"t": 5.0821, "q": [-0.38747161626815796, -0.0076307025738060474, 0.0003214055032003671, 0.6467092633247375, -0.2956717312335968, 0.025601709261536598, -0.32492780685424805, -0.0027952538803219795, 0.002531068166717887, 0.6143081784248352, -0.3489013910293579, 0.01873365417122841, 0.002651595277711749, -0.001591077190823853, -0.08300743252038956, 0.008496815338730812, 0.13708755373954773, -0.4187048673629761, 0.42257577180862427, 0.0598612055182457, -0.9913111329078674, -0.3735722601413727, -0.3102835714817047, -0.456814706325531, 0.1732439547777176, -0.1420130729675293, -0.42994606494903564, -1.2144454717636108, 0.2858956754207611]} +{"t": 5.0989, "q": [-0.3873097002506256, -0.007775578647851944, 0.0004821082402486354, 0.6467944979667664, -0.2957834005355835, 0.02542039193212986, -0.3248937129974365, -0.0028037759475409985, 0.0029194331727921963, 0.6142740845680237, -0.3486506938934326, 0.018577905371785164, 0.002236446598544717, -0.0015073390677571297, -0.08280065655708313, 0.011361045762896538, 0.13575729727745056, -0.42065829038619995, 0.42255181074142456, 0.050094060599803925, -0.9905681014060974, -0.3751661777496338, -0.31129026412963867, -0.4566109776496887, 0.17316007614135742, -0.1489039957523346, -0.4311804473400116, -1.214589238166809, 0.28758546710014343]} +{"t": 5.1156, "q": [-0.3873097002506256, -0.007767056114971638, 0.0007365542696788907, 0.646905243396759, -0.29586195945739746, 0.02528260089457035, -0.3249107599258423, -0.0028037759475409985, 0.003173879347741604, 0.6142996549606323, -0.3484613597393036, 0.01843014359474182, 0.0017811221769079566, -0.0014921226538717747, -0.08234700560569763, 0.013638048432767391, 0.13429522514343262, -0.423198938369751, 0.42277950048446655, 0.04147740453481674, -0.9887824654579163, -0.37672412395477295, -0.31162580847740173, -0.4549930989742279, 0.17323197424411774, -0.1543927788734436, -0.4321032166481018, -1.2146731615066528, 0.28947895765304565]} +{"t": 5.1324, "q": [-0.38729265332221985, -0.007860800251364708, 0.0009642164804972708, 0.6470757126808167, -0.295364648103714, 0.024221306666731834, -0.32486817240715027, -0.0028122980147600174, 0.0032810145057737827, 0.6142911314964294, -0.34606102108955383, 0.01860126294195652, 0.002008784329518676, -0.0014616710832342505, -0.08147086203098297, 0.014932344667613506, 0.13361212611198425, -0.4287596344947815, 0.42265966534614563, 0.031566448509693146, -0.98663729429245, -0.3778146803379059, -0.31154191493988037, -0.45308759808540344, 0.17327991127967834, -0.1603369563817978, -0.43253466486930847, -1.2148529291152954, 0.2914563715457916]} +{"t": 5.1491, "q": [-0.3873097002506256, -0.007903410121798515, 0.0012588382232934237, 0.6471098065376282, -0.2950182855129242, 0.023607924580574036, -0.32483407855033875, -0.0028549085836857557, 0.003347973804920912, 0.6142911314964294, -0.3445364236831665, 0.02075238525867462, 0.0023034061305224895, -0.001301806652918458, -0.08033853024244308, 0.016082830727100372, 0.13250957429409027, -0.4342483878135681, 0.42170092463493347, 0.02430400811135769, -0.9848516583442688, -0.3785337507724762, -0.3115778863430023, -0.4529677629470825, 0.1732679307460785, -0.16689231991767883, -0.43379300832748413, -1.2153441905975342, 0.2936854362487793]} +{"t": 5.1658, "q": [-0.38732674717903137, -0.007903410121798515, 0.0016873788554221392, 0.647118330001831, -0.2943006157875061, 0.022366786375641823, -0.3247317969799042, -0.002897519152611494, 0.003481892868876457, 0.6142570376396179, -0.34462404251098633, 0.020978767424821854, 0.002383757382631302, -0.0010353658581152558, -0.07901543378829956, 0.01768871583044529, 0.13047225773334503, -0.4388503432273865, 0.42113766074180603, 0.01543568167835474, -0.9832097887992859, -0.37946850061416626, -0.3118534982204437, -0.4536149203777313, 0.17321999371051788, -0.1727166473865509, -0.437915563583374, -1.2164348363876343, 0.29609423875808716]} +{"t": 5.1828, "q": [-0.3873097002506256, -0.007911932654678822, 0.002008784329518676, 0.6471098065376282, -0.2940920293331146, 0.022020436823368073, -0.32470622658729553, -0.002897519152611494, 0.0036158119328320026, 0.6142996549606323, -0.34479787945747375, 0.021242521703243256, 0.0023435817565768957, -0.0006927780341356993, -0.07759249955415726, 0.019953735172748566, 0.12836304306983948, -0.4419183135032654, 0.4212455153465271, 0.005836317781358957, -0.9819155335426331, -0.38057106733322144, -0.3115898668766022, -0.4539504647254944, 0.17342372238636017, -0.1759643852710724, -0.444039523601532, -1.2185200452804565, 0.2998333275318146]} +{"t": 5.1997, "q": [-0.38729265332221985, -0.00792897678911686, 0.0021828790195286274, 0.6471609473228455, -0.29415032267570496, 0.022078057751059532, -0.3246210217475891, -0.002897519152611494, 0.003669379511848092, 0.614325225353241, -0.3449873626232147, 0.02140459418296814, 0.0025176764465868473, -0.0001065766264218837, -0.07524704933166504, 0.02244645357131958, 0.12697286903858185, -0.44711944460868835, 0.4212215542793274, -0.003020024858415127, -0.9807890057563782, -0.38266828656196594, -0.3103914260864258, -0.45389053225517273, 0.1739150732755661, -0.1771627962589264, -0.45111021399497986, -1.2228822708129883, 0.3048906624317169]} +{"t": 5.2164, "q": [-0.3873608410358429, -0.007946020923554897, 0.0022498385515064, 0.6472035050392151, -0.2942003607749939, 0.022150177508592606, -0.32460397481918335, -0.0029230855870991945, 0.003655987558886409, 0.6143081784248352, -0.34507784247398376, 0.02146379090845585, 0.002865865593776107, 0.0008906961302272975, -0.0723624899983406, 0.024112261831760406, 0.1266612708568573, -0.4561196267604828, 0.42031073570251465, -0.012008193880319595, -0.9800459742546082, -0.3855205476284027, -0.30842602252960205, -0.45366284251213074, 0.1742865890264511, -0.17834924161434174, -0.4574858248233795, -1.2265734672546387, 0.3095645308494568]} +{"t": 5.2332, "q": [-0.3874034583568573, -0.008014197461307049, 0.0024105412885546684, 0.647195041179657, -0.2942712903022766, 0.022272847592830658, -0.3244761526584625, -0.0029912625905126333, 0.0036827712319791317, 0.6142144203186035, -0.34510695934295654, 0.02152954414486885, 0.0030399602837860584, 0.0023674541153013706, -0.06916770339012146, 0.026736807078123093, 0.12560667097568512, -0.46376556158065796, 0.4197714626789093, -0.019054917618632317, -0.9789194464683533, -0.3887442946434021, -0.3068680763244629, -0.4532913267612457, 0.17425063252449036, -0.18043449521064758, -0.46477222442626953, -1.2293777465820312, 0.31287217140197754]} +{"t": 5.2499, "q": [-0.38733527064323425, -0.008201684802770615, 0.0026783791836351156, 0.6472205519676208, -0.29425472021102905, 0.02228739857673645, -0.3244505822658539, -0.0031617048662155867, 0.003736338810995221, 0.6142058968544006, -0.3451111912727356, 0.021551402285695076, 0.0028122980147600174, 0.005107489880174398, -0.06540186703205109, 0.03081144392490387, 0.12390490621328354, -0.46915844082832336, 0.4199512302875519, -0.026808712631464005, -0.9765705466270447, -0.39082956314086914, -0.30637672543525696, -0.4524524509906769, 0.17425063252449036, -0.1825796663761139, -0.471651166677475, -1.2322180271148682, 0.31674307584762573]} +{"t": 5.2666, "q": [-0.3872585594654083, -0.008363604545593262, 0.002865865593776107, 0.6473313570022583, -0.294254869222641, 0.022345269098877907, -0.32432276010513306, -0.003195793367922306, 0.004057744517922401, 0.6141718029975891, -0.34510335326194763, 0.021594973281025887, 0.002718554809689522, 0.00737508712336421, -0.06187448650598526, 0.03483814373612404, 0.1221671923995018, -0.47613325715065, 0.4201429784297943, -0.03665974363684654, -0.9729512929916382, -0.3923395574092865, -0.3062209188938141, -0.4514937102794647, 0.17441841959953308, -0.18585136532783508, -0.47835034132003784, -1.2346268892288208, 0.3212251663208008]} +{"t": 5.2834, "q": [-0.38719892501831055, -0.008593701757490635, 0.003093527862802148, 0.6474165916442871, -0.29424670338630676, 0.0224031750112772, -0.32427161931991577, -0.0032810145057737827, 0.004432717338204384, 0.6141632795333862, -0.3450873792171478, 0.021652977913618088, 0.0026382035575807095, 0.008926689624786377, -0.05856168270111084, 0.039092544466257095, 0.12059725821018219, -0.4822092652320862, 0.4202747941017151, -0.04310726001858711, -0.9687927961349487, -0.3944847285747528, -0.30678418278694153, -0.4509304463863373, 0.17469404637813568, -0.18975822627544403, -0.4863198697566986, -1.23618483543396, 0.32527583837509155]} +{"t": 5.3001, "q": [-0.3871818780899048, -0.008917542174458504, 0.003481892868876457, 0.6472290754318237, -0.29420533776283264, 0.022461222484707832, -0.3243568241596222, -0.003451456781476736, 0.005035352893173695, 0.6140525341033936, -0.3450428247451782, 0.021717937663197517, 0.0026783791836351156, 0.012957766652107239, -0.05462421476840973, 0.04376639053225517, 0.1188955008983612, -0.48957955837249756, 0.4169551730155945, -0.049506835639476776, -0.9641788601875305, -0.3965100646018982, -0.307718962430954, -0.45083457231521606, 0.17464610934257507, -0.19424031674861908, -0.49285125732421875, -1.2371315956115723, 0.32949429750442505]} +{"t": 5.3169, "q": [-0.38715630769729614, -0.009241382591426373, 0.0035220684949308634, 0.6471609473228455, -0.29419705271720886, 0.022475721314549446, -0.32428014278411865, -0.0036133769899606705, 0.005276407115161419, 0.6139161586761475, -0.3450145423412323, 0.021768534556031227, 0.0029060414526611567, 0.017504403367638588, -0.05111507698893547, 0.0466545894742012, 0.11708588153123856, -0.4987355172634125, 0.41411489248275757, -0.05567871034145355, -0.9606195688247681, -0.3974328637123108, -0.3077908456325531, -0.4514937102794647, 0.17390309274196625, -0.19930964708328247, -0.4983520209789276, -1.237550973892212, 0.3310042917728424]} +{"t": 5.3336, "q": [-0.38714778423309326, -0.009667487815022469, 0.003655987558886409, 0.6471439003944397, -0.2941599190235138, 0.02256990782916546, -0.3242034316062927, -0.003962783608585596, 0.005316582508385181, 0.614248514175415, -0.34501075744628906, 0.021804846823215485, 0.0027989062946289778, 0.021874437108635902, -0.04830027371644974, 0.0496506467461586, 0.1155518963932991, -0.5049673318862915, 0.41312021017074585, -0.06137121841311455, -0.9588099122047424, -0.39839160442352295, -0.3077668845653534, -0.45168545842170715, 0.1736873835325241, -0.20490628480911255, -0.5041883587837219, -1.2382102012634277, 0.33221471309661865]} +{"t": 5.3503, "q": [-0.38666200637817383, -0.009940195828676224, 0.003696163184940815, 0.6471524238586426, -0.29408949613571167, 0.022635329514741898, -0.3237943649291992, -0.004141747951507568, 0.005329974461346865, 0.6147769093513489, -0.34501075744628906, 0.021804846823215485, 0.0026649872306734324, 0.026834605261683464, -0.04523192718625069, 0.052275191992521286, 0.11461713165044785, -0.51069575548172, 0.41254496574401855, -0.06738729774951935, -0.9573838114738464, -0.39929041266441345, -0.3077908456325531, -0.45140981674194336, 0.17383117973804474, -0.21113808453083038, -0.510012686252594, -1.2401635646820068, 0.3332213759422302]} +{"t": 5.3671, "q": [-0.38595467805862427, -0.010025417432188988, 0.003669379511848092, 0.6470075249671936, -0.2940730154514313, 0.022693268954753876, -0.3234875798225403, -0.00418435875326395, 0.005383542273193598, 0.6151518821716309, -0.34514564275741577, 0.021784521639347076, 0.002865865593776107, 0.03107069991528988, -0.04265858605504036, 0.0535694882273674, 0.11488078534603119, -0.517490804195404, 0.41182592511177063, -0.07370298355817795, -0.9566407799720764, -0.3999255895614624, -0.30782681703567505, -0.4513738453388214, 0.17408286035060883, -0.2163272500038147, -0.5135480165481567, -1.2433513402938843, 0.3350190222263336]} +{"t": 5.3838, "q": [-0.38563936948776245, -0.010110638104379177, 0.0036292036529630423, 0.6467774510383606, -0.29382070899009705, 0.023092210292816162, -0.3233938217163086, -0.00418435875326395, 0.00542371766641736, 0.6155012845993042, -0.34532153606414795, 0.02176463045179844, 0.0032006630208343267, 0.034812163561582565, -0.04085477814078331, 0.054731957614421844, 0.11556388437747955, -0.5230874419212341, 0.41039979457855225, -0.07979097217321396, -0.9566287994384766, -0.4009562134742737, -0.3077908456325531, -0.4517214000225067, 0.17403492331504822, -0.22011426091194153, -0.5176945328712463, -1.245077133178711, 0.3378952443599701]} +{"t": 5.4006, "q": [-0.3850598633289337, -0.010144727304577827, 0.003655987558886409, 0.646462082862854, -0.29205477237701416, 0.026029424741864204, -0.3233086168766022, -0.004150270018726587, 0.005450501572340727, 0.6161830425262451, -0.3456055819988251, 0.021418698132038116, 0.0033881496638059616, 0.03819403797388077, -0.03872257098555565, 0.05597831681370735, 0.11606722325086594, -0.527198076248169, 0.4086860418319702, -0.08465656638145447, -0.9567006826400757, -0.40143558382987976, -0.30775490403175354, -0.45246443152427673, 0.17374730110168457, -0.22343389689922333, -0.5239742994308472, -1.2455445528030396, 0.3407354950904846]} +{"t": 5.4175, "q": [-0.38448888063430786, -0.010127682238817215, 0.0035220684949308634, 0.6462916731834412, -0.291856050491333, 0.02629069983959198, -0.3231211304664612, -0.0040735709480941296, 0.005356758367270231, 0.6168818473815918, -0.34611475467681885, 0.021053310483694077, 0.003361365757882595, 0.04131614416837692, -0.03674185276031494, 0.05740443989634514, 0.11655857414007187, -0.5295589566230774, 0.40720000863075256, -0.08905477821826935, -0.9567366242408752, -0.40148353576660156, -0.3073714077472687, -0.45283594727516174, 0.17342372238636017, -0.22550716996192932, -0.5305895805358887, -1.2456523180007935, 0.3440910875797272]} +{"t": 5.4342, "q": [-0.38385823369026184, -0.010119160637259483, 0.00354885240085423, 0.6458826065063477, -0.291748046875, 0.02627669833600521, -0.32295069098472595, -0.004005394410341978, 0.005329974461346865, 0.6175636053085327, -0.3463955521583557, 0.020830759778618813, 0.0033747577108442783, 0.04386797174811363, -0.03494676202535629, 0.058363176882267, 0.1167503222823143, -0.5314284563064575, 0.40638506412506104, -0.09256615489721298, -0.9567366242408752, -0.4016033709049225, -0.3065444827079773, -0.45271608233451843, 0.17338776588439941, -0.22680146992206573, -0.5344724655151367, -1.2457002401351929, 0.3478301465511322]} +{"t": 5.4509, "q": [-0.3834491968154907, -0.010025417432188988, 0.003562244353815913, 0.6454735398292542, -0.2916107177734375, 0.0261832382529974, -0.32253310084342957, -0.003920173272490501, 0.005249623209238052, 0.6181431412696838, -0.3467276692390442, 0.02055777795612812, 0.003361365757882595, 0.0463813878595829, -0.03339696675539017, 0.059309929609298706, 0.11689413338899612, -0.5344125628471375, 0.4049709439277649, -0.09770739078521729, -0.9569163918495178, -0.4018670320510864, -0.3062448799610138, -0.45248839259147644, 0.17338776588439941, -0.2286110818386078, -0.5383433699607849, -1.2457122802734375, 0.3511977195739746]} +{"t": 5.4679, "q": [-0.3827674090862274, -0.009957239963114262, 0.003589028026908636, 0.6451752781867981, -0.29146915674209595, 0.026053640991449356, -0.3218683898448944, -0.003766775131225586, 0.005222839303314686, 0.6187311410903931, -0.3468930721282959, 0.020319461822509766, 0.003254230599850416, 0.04881017282605171, -0.03188470005989075, 0.05993311107158661, 0.11726564168930054, -0.5375643968582153, 0.4027418792247772, -0.10214155167341232, -0.9572040438652039, -0.4022025763988495, -0.3061729967594147, -0.4523685574531555, 0.17335182428359985, -0.2305285632610321, -0.5416869521141052, -1.2457122802734375, 0.3531032204627991]} +{"t": 5.4847, "q": [-0.3819918930530548, -0.009778276085853577, 0.0036425956059247255, 0.6448429226875305, -0.29134413599967957, 0.025895025581121445, -0.3213655650615692, -0.0035451999865472317, 0.005289798602461815, 0.6191316843032837, -0.346965491771698, 0.020189277827739716, 0.002731946762651205, 0.05123775824904442, -0.030406903475522995, 0.06055628880858421, 0.11823636293411255, -0.5405844449996948, 0.3999735116958618, -0.1076902449131012, -0.9577673077583313, -0.4023703634738922, -0.3062448799610138, -0.45258426666259766, 0.1729443520307541, -0.23229023814201355, -0.5460612177848816, -1.2457122802734375, 0.3560872972011566]} +{"t": 5.5014, "q": [-0.38133570551872253, -0.009752709418535233, 0.0038300822488963604, 0.6443315744400024, -0.2910439670085907, 0.02547675371170044, -0.3211866021156311, -0.003459978848695755, 0.0055442447774112225, 0.619557797908783, -0.34698551893234253, 0.020138563588261604, 0.002464108867570758, 0.053067948669195175, -0.029479501768946648, 0.060987722128629684, 0.11863184720277786, -0.5423461198806763, 0.3973369896411896, -0.11096194386482239, -0.9575156569480896, -0.40238234400749207, -0.3065924346446991, -0.4530995786190033, 0.17136242985725403, -0.23378826677799225, -0.549464762210846, -1.2453527450561523, 0.35902342200279236]} +{"t": 5.5182, "q": [-0.380670964717865, -0.009761231020092964, 0.003910433501005173, 0.6438543200492859, -0.29065611958503723, 0.024877993389964104, -0.3197975158691406, -0.003391801845282316, 0.00575851509347558, 0.620000958442688, -0.34698137640953064, 0.020131248980760574, 0.0021962709724903107, 0.05465485900640488, -0.02854759432375431, 0.061287328600883484, 0.11867978423833847, -0.5440718531608582, 0.3953595757484436, -0.11699000746011734, -0.9570602178573608, -0.402502179145813, -0.3069639503955841, -0.45320743322372437, 0.16781510412693024, -0.23510652780532837, -0.5513103008270264, -1.2447415590286255, 0.3613603413105011]} +{"t": 5.5349, "q": [-0.38022783398628235, -0.009803841821849346, 0.004138095770031214, 0.6430447697639465, -0.29023492336273193, 0.024236004799604416, -0.3182976245880127, -0.003400324145331979, 0.006066528614610434, 0.6206315755844116, -0.34698137640953064, 0.020131248980760574, 0.002022176282480359, 0.05554630979895592, -0.027986781671643257, 0.06150304526090622, 0.11855994164943695, -0.5452343225479126, 0.3938855230808258, -0.12141218781471252, -0.956676721572876, -0.40261003375053406, -0.3069879114627838, -0.45311155915260315, 0.162733793258667, -0.2371678203344345, -0.5524847507476807, -1.244334101676941, 0.3637811541557312]} +{"t": 5.5517, "q": [-0.37931594252586365, -0.00982940848916769, 0.004111311864107847, 0.6422777771949768, -0.2898055613040924, 0.023651886731386185, -0.31777775287628174, -0.0033832797780632973, 0.006079920567572117, 0.6208786964416504, -0.3469402492046356, 0.020072607323527336, 0.0018748653819784522, 0.05620977655053139, -0.027381299063563347, 0.061359234154224396, 0.1185719221830368, -0.5466724038124084, 0.39262717962265015, -0.12626579403877258, -0.9562692642211914, -0.40293362736701965, -0.3069159984588623, -0.45288386940956116, 0.15506389737129211, -0.2401878386735916, -0.5535274147987366, -1.2442262172698975, 0.36699292063713074]} +{"t": 5.5686, "q": [-0.37884724140167236, -0.009863496758043766, 0.004097919911146164, 0.6414852142333984, -0.2896137237548828, 0.023348908871412277, -0.317760705947876, -0.003400324145331979, 0.006120096426457167, 0.6211088299751282, -0.3469238579273224, 0.02005789242684841, 0.0014597165863960981, 0.056292835623025894, -0.02733008749783039, 0.061479076743125916, 0.1185239851474762, -0.5478109121322632, 0.39070969820022583, -0.12884239852428436, -0.9561614394187927, -0.4030534625053406, -0.3072156012058258, -0.4532194435596466, 0.14836470782756805, -0.24325580894947052, -0.5540546774864197, -1.243722915649414, 0.36948564648628235]} +{"t": 5.5855, "q": [-0.3777734637260437, -0.009940195828676224, 0.0041247038170695305, 0.6406841278076172, -0.2894885241985321, 0.023132426664233208, -0.31753915548324585, -0.0034088462125509977, 0.00638793408870697, 0.621279239654541, -0.346882700920105, 0.019999250769615173, 0.0009910003282129765, 0.056149471551179886, -0.027438119053840637, 0.061538998037576675, 0.1185479536652565, -0.5501238703727722, 0.3882409632205963, -0.13226988911628723, -0.9559696912765503, -0.4031014144420624, -0.3077668845653534, -0.45380666851997375, 0.14200107753276825, -0.24778583645820618, -0.5552651286125183, -1.2428840398788452, 0.3718944787979126]} +{"t": 5.6022, "q": [-0.37651216983795166, -0.0099742840975523, 0.004071136470884085, 0.6400023698806763, -0.28921326994895935, 0.022699564695358276, -0.31725791096687317, -0.0033747577108442783, 0.006575420964509249, 0.6212962865829468, -0.3467884659767151, 0.019918259233236313, 0.0007633380591869354, 0.055915333330631256, -0.02757265605032444, 0.0616828091442585, 0.11838017404079437, -0.5528922080993652, 0.38605982065200806, -0.1369437426328659, -0.9552985429763794, -0.4032212495803833, -0.30867770314216614, -0.45393848419189453, 0.1371954083442688, -0.2523038983345032, -0.5553370118141174, -1.2424285411834717, 0.3731168806552887]} +{"t": 5.6189, "q": [-0.37439870834350586, -0.01009359396994114, 0.004178271628916264, 0.6390990018844604, -0.28909218311309814, 0.022461386397480965, -0.31748801469802856, -0.0033832797780632973, 0.007111096754670143, 0.6212536692619324, -0.3467760980129242, 0.019896315410733223, 0.000522283953614533, 0.05548394098877907, -0.0276520736515522, 0.06181463226675987, 0.1182723194360733, -0.5553370118141174, 0.385496586561203, -0.14132997393608093, -0.9536087512969971, -0.40332910418510437, -0.3097922205924988, -0.4539265036582947, 0.1342233270406723, -0.2559710741043091, -0.5551093220710754, -1.2422847747802734, 0.37360823154449463]} +{"t": 5.6357, "q": [-0.3720892071723938, -0.010246992111206055, 0.0045264605432748795, 0.6378718018531799, -0.28907546401023865, 0.022418051958084106, -0.3175561726093292, -0.0034088462125509977, 0.007753907702863216, 0.6211088299751282, -0.34676393866539, 0.019903460517525673, 0.0002410541201243177, 0.05491598695516586, -0.027708210051059723, 0.06185058504343033, 0.11832025647163391, -0.5579255819320679, 0.38543665409088135, -0.146183580160141, -0.9514635801315308, -0.40362870693206787, -0.3103315234184265, -0.4540702998638153, 0.13044829666614532, -0.2594105303287506, -0.555061399936676, -1.2422128915786743, 0.37420743703842163]} +{"t": 5.6524, "q": [-0.3707171380519867, -0.010323691181838512, 0.005075528286397457, 0.6363548636436462, -0.28912919759750366, 0.02232377603650093, -0.3170278072357178, -0.0035537220537662506, 0.008517245762050152, 0.6209127902984619, -0.3468949794769287, 0.020006651058793068, 4.017568790004589e-05, 0.05358032509684563, -0.028857840225100517, 0.06205431744456291, 0.1185479536652565, -0.561424970626831, 0.38499322533607483, -0.1496230512857437, -0.9489468932151794, -0.4037485420703888, -0.31024762988090515, -0.4540463387966156, 0.12594223022460938, -0.2625024616718292, -0.5549535155296326, -1.2420331239700317, 0.3751901388168335]} +{"t": 5.6692, "q": [-0.3696177899837494, -0.010494133457541466, 0.005517460871487856, 0.6349998712539673, -0.2890249490737915, 0.022157840430736542, -0.3164568245410919, -0.003690076060593128, 0.009307367727160454, 0.6207764744758606, -0.34699657559394836, 0.019971346482634544, -0.00018748654110822827, 0.05260050296783447, -0.030034733936190605, 0.06193447485566139, 0.11888351291418076, -0.5654516816139221, 0.3843460977077484, -0.15416507422924042, -0.9461665749549866, -0.403988242149353, -0.3101637363433838, -0.45405831933021545, 0.12081297487020493, -0.2653067708015442, -0.5551332831382751, -1.2418533563613892, 0.37672412395477295]} +{"t": 5.686, "q": [-0.36964336037635803, -0.010596398264169693, 0.005879042204469442, 0.6339090466499329, -0.2888536751270294, 0.021789655089378357, -0.31629490852355957, -0.003817907767370343, 0.009869826957583427, 0.6205037236213684, -0.3471624553203583, 0.019805774092674255, -0.0004553244507405907, 0.05156649649143219, -0.03100942075252533, 0.062018364667892456, 0.11840414255857468, -0.5690230131149292, 0.3831716477870941, -0.15909059345722198, -0.942247748374939, -0.40428784489631653, -0.3097802400588989, -0.45401039719581604, 0.11501260846853256, -0.26843467354774475, -0.5552651286125183, -1.2413140535354614, 0.379636287689209]} +{"t": 5.7027, "q": [-0.3697115182876587, -0.010613443329930305, 0.00605313666164875, 0.6333380341529846, -0.28857409954071045, 0.021306192502379417, -0.316405713558197, -0.003894606838002801, 0.01000374648720026, 0.6202566027641296, -0.34724313020706177, 0.019690221175551414, -0.0007901218486949801, 0.05059146136045456, -0.03174300491809845, 0.06164685636758804, 0.11823636293411255, -0.5729777812957764, 0.38283607363700867, -0.16442357003688812, -0.9393355846405029, -0.4044915735721588, -0.3094087243080139, -0.45396244525909424, 0.11053051054477692, -0.271442711353302, -0.5550253987312317, -1.2407268285751343, 0.3821290135383606]} +{"t": 5.7196, "q": [-0.3697200417518616, -0.010587876662611961, 0.006066528614610434, 0.6330994367599487, -0.28822025656700134, 0.020620547235012054, -0.3169766962528229, -0.0039116512052714825, 0.010017137974500656, 0.6201798915863037, -0.3472508490085602, 0.019632088020443916, -0.0010713516967371106, 0.04944958537817001, -0.03246160224080086, 0.06156296655535698, 0.11821239441633224, -0.5760457515716553, 0.3823567032814026, -0.16807876527309418, -0.93769371509552, -0.4045754671096802, -0.3090851604938507, -0.453495055437088, 0.10692325979471207, -0.27475035190582275, -0.554917573928833, -1.2399958372116089, 0.385125070810318]} +{"t": 5.7364, "q": [-0.3696177899837494, -0.010587876662611961, 0.006039745174348354, 0.6329204440116882, -0.28765997290611267, 0.02006605640053749, -0.3179396688938141, -0.00392869533970952, 0.00999035406857729, 0.6201713681221008, -0.3472055196762085, 0.01955162174999714, -0.0014329327968880534, 0.04804972559213638, -0.0333036445081234, 0.06156296655535698, 0.11805660277605057, -0.5782508254051208, 0.3807867765426636, -0.17153021693229675, -0.9363634586334229, -0.4045994281768799, -0.3088814318180084, -0.4536149203777313, 0.10434664785861969, -0.2778303027153015, -0.5544981360435486, -1.2387135028839111, 0.3885166049003601]} +{"t": 5.7532, "q": [-0.369830846786499, -0.010570832528173923, 0.005972785409539938, 0.6326051354408264, -0.2870706617832184, 0.019461043179035187, -0.3186640739440918, -0.003954261541366577, 0.00999035406857729, 0.6201798915863037, -0.34710028767585754, 0.019652338698506355, -0.001834689755924046, 0.04661915451288223, -0.03409590199589729, 0.06156296655535698, 0.11786485463380814, -0.5820019245147705, 0.3780543804168701, -0.17735454440116882, -0.9345179200172424, -0.4045754671096802, -0.30847394466400146, -0.45373475551605225, 0.10088320821523666, -0.281761109828949, -0.5542704463005066, -1.2359331846237183, 0.391812264919281]} +{"t": 5.77, "q": [-0.37000128626823425, -0.01057935506105423, 0.005959393456578255, 0.6323153972625732, -0.28664344549179077, 0.019210180267691612, -0.3191157281398773, -0.004005394410341978, 0.01000374648720026, 0.6201713681221008, -0.3469782769680023, 0.019680196419358253, -0.002129311440512538, 0.04488512501120567, -0.03502049669623375, 0.061766695231199265, 0.11774501204490662, -0.5864600539207458, 0.37445908784866333, -0.18363428115844727, -0.932013213634491, -0.40458744764328003, -0.30830618739128113, -0.45368680357933044, 0.09779127687215805, -0.2852964699268341, -0.553575336933136, -1.2326973676681519, 0.394580602645874]} +{"t": 5.787, "q": [-0.3700353801250458, -0.010536743327975273, 0.005946001503616571, 0.6322131156921387, -0.2864028513431549, 0.019139183685183525, -0.31928616762161255, -0.004005394410341978, 0.00999035406857729, 0.6201798915863037, -0.34685608744621277, 0.019678926095366478, -0.0024373249616473913, 0.04330983757972717, -0.03597654029726982, 0.06203034892678261, 0.1176491379737854, -0.5896478295326233, 0.37197837233543396, -0.18794859945774078, -0.9290770888328552, -0.4045994281768799, -0.30849793553352356, -0.45360293984413147, 0.09604158252477646, -0.28835242986679077, -0.5523049831390381, -1.230264663696289, 0.396414190530777]} +{"t": 5.8037, "q": [-0.37000980973243713, -0.010536743327975273, 0.005892434157431126, 0.6321619749069214, -0.286257803440094, 0.019002629444003105, -0.3193202614784241, -0.004005394410341978, 0.009976962581276894, 0.6201884150505066, -0.3467864692211151, 0.019627278670668602, -0.002624811604619026, 0.04163588210940361, -0.0370345301926136, 0.062138207256793976, 0.11773303151130676, -0.5936865210533142, 0.36968937516212463, -0.19296999275684357, -0.924319326877594, -0.4047672152519226, -0.30862975120544434, -0.4536149203777313, 0.0947832390666008, -0.29173198342323303, -0.5503635406494141, -1.227580189704895, 0.3983316719532013]} +{"t": 5.8204, "q": [-0.3698990046977997, -0.01051970012485981, 0.005852258298546076, 0.6321364045143127, -0.2862205505371094, 0.018952228128910065, -0.3192605972290039, -0.004005394410341978, 0.009936786256730556, 0.6201884150505066, -0.3467370867729187, 0.019554007798433304, -0.002946217078715563, 0.03975684568285942, -0.038253240287303925, 0.06247376650571823, 0.11773303151130676, -0.5970661044120789, 0.3656506836414337, -0.1973322480916977, -0.9187107086181641, -0.4052945077419281, -0.308917373418808, -0.4532793462276459, 0.09366870671510696, -0.2950875759124756, -0.5485659241676331, -1.2247159481048584, 0.3996739089488983]} +{"t": 5.8372, "q": [-0.3698905110359192, -0.010511177591979504, 0.005825474392622709, 0.6320682764053345, -0.2861790060997009, 0.018966900184750557, -0.31929469108581543, -0.004005394410341978, 0.009936786256730556, 0.6201798915863037, -0.34672489762306213, 0.019561154767870903, -0.0032676225528120995, 0.037907931953668594, -0.0396333709359169, 0.06242582947015762, 0.11776898056268692, -0.6002658605575562, 0.3623310625553131, -0.20207799971103668, -0.915882408618927, -0.4061214327812195, -0.30914506316185, -0.45288386940956116, 0.09207480400800705, -0.2979997396469116, -0.5468401908874512, -1.2228343486785889, 0.4004768431186676]} +{"t": 5.8539, "q": [-0.3697882294654846, -0.010528221726417542, 0.0058388663455843925, 0.6320086121559143, -0.28610020875930786, 0.01893119141459465, -0.31920096278190613, -0.004005394410341978, 0.00992339476943016, 0.6202054619789124, -0.3466923236846924, 0.019560834392905235, -0.003669379511848092, 0.03618720918893814, -0.04091557860374451, 0.061946459114551544, 0.11776898056268692, -0.604604184627533, 0.35825642943382263, -0.20693162083625793, -0.9133297801017761, -0.40666070580482483, -0.3092649281024933, -0.45216482877731323, 0.08972589671611786, -0.3007561266422272, -0.5457496047019958, -1.2217438220977783, 0.4012558162212372]} +{"t": 5.8707, "q": [-0.36973708868026733, -0.010536743327975273, 0.005825474392622709, 0.6320000886917114, -0.2860877215862274, 0.018924012780189514, -0.3191242516040802, -0.003996872343122959, 0.009896610863506794, 0.6201884150505066, -0.3466842770576477, 0.019575294107198715, -0.0041247038170695305, 0.034526340663433075, -0.042063333094120026, 0.06185058504343033, 0.11793676018714905, -0.608487069606781, 0.353450745344162, -0.2102871984243393, -0.9107052683830261, -0.4078111946582794, -0.3092409372329712, -0.4515056908130646, 0.08714928478002548, -0.3036922514438629, -0.544910728931427, -1.2204375267028809, 0.4020707607269287]} +{"t": 5.8875, "q": [-0.3697200417518616, -0.010587876662611961, 0.00579869095236063, 0.6320000886917114, -0.2860458791255951, 0.01898205280303955, -0.31906458735466003, -0.003996872343122959, 0.009896610863506794, 0.6201969385147095, -0.3466395139694214, 0.019582102075219154, -0.004780906718224287, 0.03291038051247597, -0.04311516880989075, 0.061838600784540176, 0.11938685178756714, -0.6121782064437866, 0.34963977336883545, -0.21396635472774506, -0.9087518453598022, -0.4098365306854248, -0.3095645308494568, -0.4511941075325012, 0.08507601171731949, -0.306113064289093, -0.5437003374099731, -1.2190114259719849, 0.4029695689678192]} +{"t": 5.9041, "q": [-0.3697115182876587, -0.010664575733244419, 0.005812082905322313, 0.6319915652275085, -0.2860167324542999, 0.01893160305917263, -0.3189879059791565, -0.004039482679218054, 0.009896610863506794, 0.6201884150505066, -0.34659042954444885, 0.019552484154701233, -0.005919218063354492, 0.03155196085572243, -0.043946269899606705, 0.06175471097230911, 0.12021376192569733, -0.6152222156524658, 0.34454646706581116, -0.21659089624881744, -0.9052643775939941, -0.4120056927204132, -0.30980420112609863, -0.4509184658527374, 0.08175638318061829, -0.308689683675766, -0.540656328201294, -1.216458797454834, 0.40380847454071045]} +{"t": 5.9213, "q": [-0.3697115182876587, -0.01088615134358406, 0.00579869095236063, 0.6319830417633057, -0.28602924942970276, 0.018938783556222916, -0.3189367651939392, -0.0041673146188259125, 0.00991000235080719, 0.6201457977294922, -0.3465622663497925, 0.01960311457514763, -0.006923609878867865, 0.030663732439279556, -0.04441085830330849, 0.06181463226675987, 0.12022574990987778, -0.617607057094574, 0.3399685025215149, -0.21892783045768738, -0.901225745677948, -0.4134557843208313, -0.3100678622722626, -0.45066678524017334, 0.07801730930805206, -0.311458021402359, -0.5361742377281189, -1.2121444940567017, 0.4040241837501526]} +{"t": 5.9381, "q": [-0.36958369612693787, -0.01099693775177002, 0.0058388663455843925, 0.6319830417633057, -0.2860250771045685, 0.018946029245853424, -0.3188004195690155, -0.004252535756677389, 0.00991000235080719, 0.6201117038726807, -0.3464367389678955, 0.019710946828126907, -0.00798156950622797, 0.02986648865044117, -0.04477846622467041, 0.062018364667892456, 0.12016582489013672, -0.6211423873901367, 0.33449169993400574, -0.22340992093086243, -0.8960964679718018, -0.41484594345092773, -0.310858815908432, -0.4503791630268097, 0.07364306598901749, -0.3145499527454376, -0.5303259491920471, -1.2081177234649658, 0.4040721356868744]} +{"t": 5.9548, "q": [-0.3696092665195465, -0.011082159355282784, 0.005852258298546076, 0.6319745182991028, -0.2860375940799713, 0.018953191116452217, -0.31877484917640686, -0.004363323096185923, 0.00991000235080719, 0.6200435757637024, -0.34642457962036133, 0.019718093797564507, -0.00866455677896738, 0.029448939487338066, -0.04503395035862923, 0.06180264800786972, 0.12052535265684128, -0.6249773502349854, 0.33011746406555176, -0.22620224952697754, -0.8934839367866516, -0.4161761999130249, -0.31167376041412354, -0.4502713084220886, 0.0694965198636055, -0.3179055452346802, -0.5259516835212708, -1.2053254842758179, 0.403988242149353]} +{"t": 5.9716, "q": [-0.36954960227012634, -0.011124770157039165, 0.005852258298546076, 0.631957471370697, -0.2860375940799713, 0.018938738852739334, -0.31858736276626587, -0.0043803672306239605, 0.00991000235080719, 0.620000958442688, -0.3464244604110718, 0.019703548401594162, -0.009628772735595703, 0.0289857666939497, -0.04531882330775261, 0.06169478967785835, 0.12146012485027313, -0.6294714212417603, 0.32490432262420654, -0.22779615223407745, -0.8905477523803711, -0.4176023006439209, -0.3137350380420685, -0.45025932788848877, 0.06584133207798004, -0.3211532533168793, -0.5209063291549683, -1.2031803131103516, 0.4039762616157532]} +{"t": 5.9885, "q": [-0.3693280518054962, -0.011141814291477203, 0.0058388663455843925, 0.6319489479064941, -0.28604596853256226, 0.018924245610833168, -0.3182550072669983, -0.0043803672306239605, 0.00991000235080719, 0.6199412941932678, -0.3464284837245941, 0.019696317613124847, -0.010686732828617096, 0.028089508414268494, -0.045700956135988235, 0.06173074245452881, 0.12247878313064575, -0.6336778998374939, 0.3202664256095886, -0.2286590188741684, -0.8879232406616211, -0.4192681312561035, -0.3170067369937897, -0.45041513442993164, 0.06372012197971344, -0.3229868412017822, -0.5134521722793579, -1.202257513999939, 0.40390434861183167]} +{"t": 6.0052, "q": [-0.3690723776817322, -0.011124770157039165, 0.00579869095236063, 0.6318637132644653, -0.28607937693595886, 0.018909603357315063, -0.31800785660743713, -0.004354801028966904, 0.00991000235080719, 0.6198731064796448, -0.34643271565437317, 0.019718177616596222, -0.012133057229220867, 0.027033716440200806, -0.046124909073114395, 0.061706773936748505, 0.12329371273517609, -0.6371892690658569, 0.3151731491088867, -0.23004919290542603, -0.8838246464729309, -0.42120957374572754, -0.3212970793247223, -0.45039114356040955, 0.061359234154224396, -0.3252159059047699, -0.5054706335067749, -1.201742172241211, 0.40362870693206787]} +{"t": 6.0219, "q": [-0.369012713432312, -0.011124770157039165, 0.005704947747290134, 0.6317699551582336, -0.2860710918903351, 0.01888074353337288, -0.31794819235801697, -0.004337756894528866, 0.009843043051660061, 0.6198390126228333, -0.3464367389678955, 0.019710946828126907, -0.013807044364511967, 0.02607671357691288, -0.04671561345458031, 0.06167082488536835, 0.12415657192468643, -0.6405088901519775, 0.3103315234184265, -0.23245801031589508, -0.8791508078575134, -0.42263567447662354, -0.3268337845802307, -0.4503791630268097, 0.05945374071598053, -0.327181339263916, -0.49677011370658875, -1.201682209968567, 0.40286171436309814]} +{"t": 6.0387, "q": [-0.3687400221824646, -0.011073637753725052, 0.005704947747290134, 0.6316251158714294, -0.28605857491493225, 0.01885911077260971, -0.3178715109825134, -0.004329234827309847, 0.009816259145736694, 0.6198475360870361, -0.34646087884902954, 0.019667547196149826, -0.01538728829473257, 0.025264201685786247, -0.047332968562841415, 0.06113153323531151, 0.12529507279396057, -0.6443318724632263, 0.30483075976371765, -0.2347470074892044, -0.8741893172264099, -0.42337870597839355, -0.3320828676223755, -0.45039114356040955, 0.057080864906311035, -0.32931452989578247, -0.4857925474643707, -1.2015743255615234, 0.4018790125846863]} +{"t": 6.0554, "q": [-0.3684673011302948, -0.011005460284650326, 0.005637987982481718, 0.6313609480857849, -0.286079466342926, 0.01885179616510868, -0.3177351653575897, -0.004278101958334446, 0.009816259145736694, 0.6198390126228333, -0.3464810848236084, 0.019645921885967255, -0.016391679644584656, 0.024466972798109055, -0.048109497874975204, 0.05977731570601463, 0.1266133338212967, -0.6482626795768738, 0.3004804849624634, -0.2356697916984558, -0.8715527653694153, -0.4237622022628784, -0.33682864904403687, -0.4504031240940094, 0.054372429847717285, -0.33161550760269165, -0.4779908359050751, -1.2015384435653687, 0.40129178762435913]} +{"t": 6.0721, "q": [-0.36822015047073364, -0.010903194546699524, 0.005678163841366768, 0.6310967206954956, -0.28608790040016174, 0.01879391074180603, -0.31759026646614075, -0.004209924954921007, 0.009802867658436298, 0.619856059551239, -0.34652525186538696, 0.019551824778318405, -0.017168410122394562, 0.02403450943529606, -0.04882233217358589, 0.05728459730744362, 0.12819525599479675, -0.6536076664924622, 0.296477735042572, -0.23635289072990417, -0.8693117499351501, -0.4238700568675995, -0.3409631848335266, -0.45103830099105835, 0.05095692723989487, -0.3341202139854431, -0.4687509834766388, -1.2012747526168823, 0.40145957469940186]} +{"t": 6.0889, "q": [-0.3679986000061035, -0.01079240720719099, 0.005678163841366768, 0.630841076374054, -0.2861004173755646, 0.018772168084979057, -0.3175221085548401, -0.0041247038170695305, 0.009829651564359665, 0.6198390126228333, -0.3466464579105377, 0.019407587125897408, -0.017904965206980705, 0.023791927844285965, -0.04938405007123947, 0.05542704090476036, 0.12886637449264526, -0.6570231914520264, 0.29339781403541565, -0.23634091019630432, -0.8674781322479248, -0.4243853986263275, -0.34519362449645996, -0.45191314816474915, 0.04670252650976181, -0.33678069710731506, -0.46157243847846985, -1.201059103012085, 0.40163931250572205]} +{"t": 6.1057, "q": [-0.3678366541862488, -0.010664575733244419, 0.005624596029520035, 0.6306365132331848, -0.2860712707042694, 0.018721720203757286, -0.3175221085548401, -0.004013916477560997, 0.009802867658436298, 0.6198390126228333, -0.34670692682266235, 0.019313640892505646, -0.0186415184289217, 0.0233974140137434, -0.05016269534826279, 0.05312607064843178, 0.12936970591545105, -0.660342812538147, 0.28982651233673096, -0.23634091019630432, -0.8650813102722168, -0.42485275864601135, -0.3482855558395386, -0.4533272981643677, 0.04007524996995926, -0.33988460898399353, -0.45571213960647583, -1.2008553743362427, 0.40256211161613464]} +{"t": 6.1224, "q": [-0.3676917850971222, -0.010536743327975273, 0.0055442447774112225, 0.6303808689117432, -0.2859880328178406, 0.018548674881458282, -0.3175221085548401, -0.0038519962690770626, 0.009816259145736694, 0.6198475360870361, -0.3467753231525421, 0.01919068768620491, -0.01949859969317913, 0.023071376606822014, -0.05098652467131615, 0.05107676982879639, 0.13012471795082092, -0.6636624336242676, 0.28496089577674866, -0.23632891476154327, -0.8618096113204956, -0.42533212900161743, -0.35074231028556824, -0.453866571187973, 0.03362773731350899, -0.34152644872665405, -0.4473111927509308, -1.2004358768463135, 0.40362870693206787]} +{"t": 6.1391, "q": [-0.36757248640060425, -0.010357779450714588, 0.0055442447774112225, 0.630159318447113, -0.28599637746810913, 0.018563082441687584, -0.3175221085548401, -0.0037582528311759233, 0.009802867658436298, 0.6198304891586304, -0.3468439280986786, 0.019096827134490013, -0.02051638439297676, 0.022775746881961823, -0.051791511476039886, 0.04908738657832146, 0.13042432069778442, -0.6665745973587036, 0.2801072895526886, -0.23634091019630432, -0.8582382798194885, -0.42570364475250244, -0.35270774364471436, -0.4542500674724579, 0.02714427001774311, -0.34270089864730835, -0.4410434663295746, -1.2000644207000732, 0.40388038754463196]} +{"t": 6.1559, "q": [-0.36729124188423157, -0.010229947976768017, 0.0055978125892579556, 0.6300399899482727, -0.285979688167572, 0.01853424683213234, -0.3175221085548401, -0.003655987558886409, 0.009816259145736694, 0.6198390126228333, -0.3469163477420807, 0.018966645002365112, -0.0219894926995039, 0.022768959403038025, -0.052580807358026505, 0.04699014872312546, 0.13071194291114807, -0.6704215407371521, 0.27475035190582275, -0.2364727258682251, -0.8531689643859863, -0.42575159668922424, -0.3548169434070587, -0.45753374695777893, 0.02135588973760605, -0.3431682884693146, -0.43501538038253784, -1.1996688842773438, 0.40420395135879517]} +{"t": 6.1726, "q": [-0.366958886384964, -0.010127682238817215, 0.0057719070464372635, 0.6296820640563965, -0.28598809242248535, 0.01850530132651329, -0.31754767894744873, -0.00358781055547297, 0.00991000235080719, 0.6198390126228333, -0.3470207750797272, 0.01874949224293232, -0.023141195997595787, 0.022754568606615067, -0.05338498204946518, 0.04405401274561882, 0.13073591887950897, -0.6743523478507996, 0.2716464400291443, -0.23637685179710388, -0.8499212265014648, -0.4259673058986664, -0.35615918040275574, -0.46079346537590027, 0.017257284373044968, -0.34337201714515686, -0.4268421530723572, -1.1991655826568604, 0.4046713411808014]} +{"t": 6.1894, "q": [-0.3665753901004791, -0.009837931022047997, 0.005986177362501621, 0.6294008493423462, -0.28598812222480774, 0.018476396799087524, -0.31753063201904297, -0.0035025894176214933, 0.010030529461801052, 0.6198731064796448, -0.3471658229827881, 0.018518216907978058, -0.024440210312604904, 0.02289183810353279, -0.0537540465593338, 0.04141748324036598, 0.13047225773334503, -0.6772405505180359, 0.26783543825149536, -0.23636487126350403, -0.8465656638145447, -0.4263867437839508, -0.357597291469574, -0.4634060263633728, 0.01245160959661007, -0.3443067967891693, -0.4175184369087219, -1.1991416215896606, 0.4047911763191223]} +{"t": 6.2061, "q": [-0.36638790369033813, -0.009411824867129326, 0.006106704473495483, 0.6292474269866943, -0.2860049903392792, 0.01836066134274006, -0.3175561726093292, -0.0031617048662155867, 0.010110881179571152, 0.6198645830154419, -0.34724608063697815, 0.01834448240697384, -0.025283899158239365, 0.02298363856971264, -0.05426187440752983, 0.0385173000395298, 0.13020861148834229, -0.6798171401023865, 0.2635810375213623, -0.23643678426742554, -0.8427906632423401, -0.42660245299339294, -0.35832834243774414, -0.4654074013233185, 0.004793690051883459, -0.34657180309295654, -0.4077392816543579, -1.1989378929138184, 0.4050668179988861]} +{"t": 6.2228, "q": [-0.36624303460121155, -0.009028329513967037, 0.006160271819680929, 0.6290684938430786, -0.285934180021286, 0.01823815144598484, -0.31758174300193787, -0.002837864449247718, 0.010137665085494518, 0.619856059551239, -0.34733039140701294, 0.018163500353693962, -0.02568565495312214, 0.023067716509103775, -0.054655421525239944, 0.03524560481309891, 0.13010074198246002, -0.6823218464851379, 0.2595064043998718, -0.2365685999393463, -0.8382845520973206, -0.42677024006843567, -0.3585440516471863, -0.4671211242675781, -0.0043982104398310184, -0.34881284832954407, -0.3991226255893707, -1.1987820863723755, 0.4056899845600128]} +{"t": 6.2396, "q": [-0.36624303460121155, -0.008661878295242786, 0.006079920567572117, 0.6290003061294556, -0.2858051061630249, 0.017985820770263672, -0.31759026646614075, -0.0024117587599903345, 0.010124272666871548, 0.619856059551239, -0.3473944664001465, 0.018004124984145164, -0.026100805029273033, 0.023113632574677467, -0.054924286901950836, 0.032045818865299225, 0.13007678091526031, -0.6842752695083618, 0.2557673454284668, -0.23655661940574646, -0.8328317403793335, -0.4274054169654846, -0.3589155673980713, -0.4692303538322449, -0.012235893867909908, -0.3504546880722046, -0.39085352420806885, -1.1980390548706055, 0.4065888226032257]} +{"t": 6.2563, "q": [-0.3662259876728058, -0.008210206404328346, 0.00605313666164875, 0.6288554072380066, -0.28566765785217285, 0.01774800382554531, -0.3176073133945465, -0.002002697205170989, 0.010097489692270756, 0.6198645830154419, -0.3474697172641754, 0.017692113295197487, -0.026181155815720558, 0.023083440959453583, -0.055172473192214966, 0.02792324498295784, 0.13001686334609985, -0.6862527132034302, 0.25358620285987854, -0.2365446388721466, -0.8290807008743286, -0.42856788635253906, -0.35915523767471313, -0.47298142313957214, -0.018623486161231995, -0.3521684408187866, -0.3830997347831726, -1.196792721748352, 0.40767937898635864]} +{"t": 6.2731, "q": [-0.3662174642086029, -0.007877843454480171, 0.006026353221386671, 0.6287105679512024, -0.2856094241142273, 0.01760375127196312, -0.31768402457237244, -0.0016703346045687795, 0.010030529461801052, 0.6198901534080505, -0.34759727120399475, 0.01728605106472969, -0.02619454823434353, 0.0230912696570158, -0.055416204035282135, 0.02232661098241806, 0.13004082441329956, -0.6889371275901794, 0.25217205286026, -0.23661653697490692, -0.8261205554008484, -0.4300539195537567, -0.3593350052833557, -0.4779069423675537, -0.023333286866545677, -0.3544933795928955, -0.375489741563797, -1.1945875883102417, 0.40890175104141235]} +{"t": 6.2898, "q": [-0.36624303460121155, -0.007519914768636227, 0.005825474392622709, 0.6285571455955505, -0.28558462858200073, 0.017401501536369324, -0.31776922941207886, -0.00138058268930763, 0.009869826957583427, 0.6199157238006592, -0.34774744510650635, 0.01720760017633438, -0.026154372841119766, 0.02309134043753147, -0.05549576133489609, 0.016322514042258263, 0.12999288737773895, -0.6923406720161438, 0.25036245584487915, -0.23782694339752197, -0.8232803344726562, -0.43134820461273193, -0.3595626950263977, -0.48231711983680725, -0.02871420420706272, -0.3580167591571808, -0.3689223825931549, -1.1918431520462036, 0.41014811396598816]} +{"t": 6.3065, "q": [-0.36629417538642883, -0.007144941948354244, 0.0056112040765583515, 0.6284719109535217, -0.2855347990989685, 0.017213813960552216, -0.3178459405899048, -0.0010311759542673826, 0.009642165154218674, 0.6199242472648621, -0.347928911447525, 0.016940325498580933, -0.0260472372174263, 0.023098941892385483, -0.0554908812046051, 0.010558102279901505, 0.12983709573745728, -0.6943420171737671, 0.24742631614208221, -0.24015188217163086, -0.8211112022399902, -0.43234291672706604, -0.3589874804019928, -0.48488175868988037, -0.0360964871942997, -0.3618397116661072, -0.3639489412307739, -1.1897698640823364, 0.41157424449920654]} +{"t": 6.3233, "q": [-0.3663197457790375, -0.0068125794641673565, 0.0056112040765583515, 0.6283866763114929, -0.28557682037353516, 0.016996750608086586, -0.3180589973926544, -0.0007158577209338546, 0.009535029530525208, 0.6199327707290649, -0.3481440544128418, 0.016833441331982613, -0.026114197447896004, 0.02309894934296608, -0.0555008240044117, 0.006135923322290182, 0.12897422909736633, -0.694785475730896, 0.24387899041175842, -0.24300412833690643, -0.8180312514305115, -0.43308591842651367, -0.3564947545528412, -0.4866194725036621, -0.04272376373410225, -0.36372122168540955, -0.3579328656196594, -1.1881520748138428, 0.4130363166332245]} +{"t": 6.34, "q": [-0.36632823944091797, -0.0065143052488565445, 0.0056112040765583515, 0.6283441185951233, -0.28558096289634705, 0.017032895237207413, -0.3182891011238098, -0.0005283711361698806, 0.009535029530525208, 0.6199327707290649, -0.34853050112724304, 0.017346691340208054, -0.026127588003873825, 0.02315216325223446, -0.055466655641794205, 0.001270327833481133, 0.1274881809949875, -0.6952887773513794, 0.2392410933971405, -0.24482573568820953, -0.8128540515899658, -0.4335293471813202, -0.3528275787830353, -0.4882972538471222, -0.04796086996793747, -0.36508744955062866, -0.3516051769256592, -1.186797857284546, 0.41494181752204895]} +{"t": 6.3567, "q": [-0.36633676290512085, -0.006446128711104393, 0.0056112040765583515, 0.6280884146690369, -0.28548097610473633, 0.01688884012401104, -0.31845101714134216, -0.0004005394293926656, 0.009535029530525208, 0.6199498176574707, -0.3489520847797394, 0.017991745844483376, -0.026154372841119766, 0.023388007655739784, -0.055514223873615265, -0.0031278827227652073, 0.12625381350517273, -0.6958640217781067, 0.2349986732006073, -0.2454608976840973, -0.8076289296150208, -0.4337210953235626, -0.3481537401676178, -0.49017879366874695, -0.05283844843506813, -0.3664056956768036, -0.3470991253852844, -1.1855155229568481, 0.41604435443878174]} +{"t": 6.3735, "q": [-0.36633676290512085, -0.006437606178224087, 0.005584420636296272, 0.6278753876686096, -0.2852765619754791, 0.016767015680670738, -0.31854474544525146, -0.0003323625132907182, 0.009535029530525208, 0.6199583411216736, -0.34916219115257263, 0.018176186829805374, -0.026181155815720558, 0.02363140508532524, -0.05550718680024147, -0.00820919405668974, 0.12459999322891235, -0.6964153051376343, 0.23251794278621674, -0.24606011807918549, -0.8032307028770447, -0.4338529109954834, -0.34207773208618164, -0.49337857961654663, -0.05675728991627693, -0.3676520586013794, -0.3412867784500122, -1.1848443746566772, 0.4170030951499939]} +{"t": 6.3902, "q": [-0.36633676290512085, -0.006284208502620459, 0.0055442447774112225, 0.6278583407402039, -0.28528082370758057, 0.016701925545930862, -0.3187151849269867, -0.00027270769351162016, 0.009521638043224812, 0.6199839115142822, -0.34920644760131836, 0.018096616491675377, -0.02636864222586155, 0.023791203275322914, -0.05557373911142349, -0.01290701050311327, 0.12238290905952454, -0.6965112090110779, 0.23118768632411957, -0.2470308393239975, -0.7984730005264282, -0.43386489152908325, -0.3363252878189087, -0.4972854256629944, -0.05795571208000183, -0.368802547454834, -0.335330605506897, -1.1844608783721924, 0.4177461266517639]} +{"t": 6.4069, "q": [-0.3663623332977295, -0.006233075633645058, 0.005584420636296272, 0.627773106098175, -0.285251647233963, 0.0166803989559412, -0.3189026713371277, -0.00018748654110822827, 0.009561813436448574, 0.6200265288352966, -0.3492387533187866, 0.01805332861840725, -0.02671683207154274, 0.02390536665916443, -0.055649686604738235, -0.018096180632710457, 0.12028566747903824, -0.6970504522323608, 0.23040871322155, -0.24804949760437012, -0.7926246523857117, -0.4339008629322052, -0.33002158999443054, -0.5006529688835144, -0.05867476761341095, -0.37043240666389465, -0.33071666955947876, -1.184472918510437, 0.4184771478176117]} +{"t": 6.4237, "q": [-0.3664816617965698, -0.006198987364768982, 0.005557636730372906, 0.627704918384552, -0.28519320487976074, 0.016680698841810226, -0.31919243931770325, -0.0001448759576305747, 0.009535029530525208, 0.6200946569442749, -0.34926679730415344, 0.017988143488764763, -0.027520345523953438, 0.024011939764022827, -0.05574046075344086, -0.023848608136177063, 0.11875168979167938, -0.6980331540107727, 0.22989338636398315, -0.2481573522090912, -0.7864288091659546, -0.4340686500072479, -0.3232864737510681, -0.5029659271240234, -0.059669457376003265, -0.37225401401519775, -0.3274809420108795, -1.184484839439392, 0.41950780153274536]} +{"t": 6.4404, "q": [-0.3665498197078705, -0.006105244159698486, 0.005557636730372906, 0.627704918384552, -0.28514739871025085, 0.016586963087320328, -0.3194821774959564, -2.5566347176209092e-05, 0.009561813436448574, 0.6202054619789124, -0.34926289319992065, 0.018009928986430168, -0.02892649546265602, 0.024186959490180016, -0.0558171384036541, -0.02924150973558426, 0.11803263425827026, -0.699722945690155, 0.2298814058303833, -0.24806147813796997, -0.7824141383171082, -0.43448808789253235, -0.3183968961238861, -0.5042123198509216, -0.06004096940159798, -0.3733924925327301, -0.3240894079208374, -1.1844608783721924, 0.42075416445732117]} +{"t": 6.4571, "q": [-0.3667628765106201, -0.006105244159698486, 0.005490677431225777, 0.6276793479919434, -0.2850015461444855, 0.01639256253838539, -0.31974637508392334, 1.704423084447626e-05, 0.009535029530525208, 0.620231032371521, -0.34912562370300293, 0.017739025875926018, -0.031497739255428314, 0.02458263747394085, -0.05598129332065582, -0.03386741876602173, 0.11776898056268692, -0.7013648152351379, 0.22979751229286194, -0.24785774946212769, -0.7782436013221741, -0.4349075257778168, -0.3146098852157593, -0.5047396421432495, -0.060376524925231934, -0.37502235174179077, -0.3193196952342987, -1.1844249963760376, 0.4225398004055023]} +{"t": 6.4739, "q": [-0.3668481111526489, -0.00609672162681818, 0.00542371766641736, 0.6275941729545593, -0.2848888337612152, 0.016385916620492935, -0.31987419724464417, 5.965480886516161e-05, 0.009414502419531345, 0.6202225089073181, -0.34904244542121887, 0.0175778828561306, -0.034376997500658035, 0.025312703102827072, -0.055921606719493866, -0.03808586671948433, 0.11774501204490662, -0.7031145095825195, 0.2298334687948227, -0.247330442070961, -0.7725750803947449, -0.43529102206230164, -0.31129026412963867, -0.5048474669456482, -0.06065216287970543, -0.3773592710494995, -0.3132796287536621, -1.1844369173049927, 0.42427751421928406]} +{"t": 6.4906, "q": [-0.3670355975627899, -0.006122288294136524, 0.005356758367270231, 0.6274407505989075, -0.28483885526657104, 0.016299428418278694, -0.32002758979797363, 5.965480886516161e-05, 0.00932075921446085, 0.6202395558357239, -0.3490285873413086, 0.017395783215761185, -0.037724971771240234, 0.026179775595664978, -0.05596321448683739, -0.04164518415927887, 0.11736151576042175, -0.7040013074874878, 0.22912640869617462, -0.24723456799983978, -0.765324592590332, -0.43566253781318665, -0.3075152337551117, -0.5047276020050049, -0.06164685636758804, -0.38117027282714844, -0.3084380030632019, -1.1844489574432373, 0.4252362549304962]} +{"t": 6.5073, "q": [-0.3670526444911957, -0.006122288294136524, 0.005236231256276369, 0.6273043751716614, -0.2848055064678192, 0.016270678490400314, -0.32007020711898804, 6.817692337790504e-05, 0.00925379991531372, 0.6202480792999268, -0.3491002321243286, 0.017178215086460114, -0.0408586747944355, 0.026826167479157448, -0.05590752139687538, -0.04533632472157478, 0.11690611392259598, -0.7043967843055725, 0.22897060215473175, -0.2473544031381607, -0.7604590058326721, -0.4359261989593506, -0.3040997087955475, -0.5048115253448486, -0.06210225448012352, -0.38453784584999084, -0.302829384803772, -1.184484839439392, 0.42639872431755066]} +{"t": 6.5241, "q": [-0.36702707409858704, -0.00609672162681818, 0.005276407115161419, 0.6271339654922485, -0.2847805321216583, 0.01622745208442211, -0.3203173577785492, 0.0001704423048067838, 0.009293975308537483, 0.6202906966209412, -0.3489822447299957, 0.01669667288661003, -0.04337634891271591, 0.027252065017819405, -0.05591360107064247, -0.04887166991829872, 0.116726353764534, -0.7044807076454163, 0.2289106845855713, -0.247330442070961, -0.7563364505767822, -0.4362258017063141, -0.3007561266422272, -0.5049673318862915, -0.06338457018136978, -0.38711443543434143, -0.29826340079307556, -1.1845208406448364, 0.4276810586452484]} +{"t": 6.5408, "q": [-0.3670100271701813, -0.0059944563545286655, 0.005276407115161419, 0.6269890666007996, -0.2847846746444702, 0.016234656795859337, -0.32038551568984985, 0.00032384038786403835, 0.009293975308537483, 0.6202906966209412, -0.34810683131217957, 0.014970799908041954, -0.045813675969839096, 0.02740420401096344, -0.05594560503959656, -0.0523710660636425, 0.11678627133369446, -0.7046245336532593, 0.22850322723388672, -0.24724654853343964, -0.7517105340957642, -0.43695682287216187, -0.29719680547714233, -0.5053148865699768, -0.06546982377767563, -0.3891637325286865, -0.292594850063324, -1.1844968795776367, 0.430029958486557]} +{"t": 6.5576, "q": [-0.36702707409858704, -0.005866624880582094, 0.005249623209238052, 0.6269038319587708, -0.2847471833229065, 0.01618426851928234, -0.3204196095466614, 0.0005198490689508617, 0.009280583821237087, 0.6203588843345642, -0.3477666974067688, 0.01407980639487505, -0.04760818928480148, 0.02741178311407566, -0.055920857936143875, -0.056301891803741455, 0.11703794449567795, -0.7047683000564575, 0.2284313142299652, -0.24723456799983978, -0.7461498379707336, -0.4382511377334595, -0.29372137784957886, -0.5059979557991028, -0.06878945231437683, -0.39124900102615356, -0.28980252146720886, -1.1845088005065918, 0.43231895565986633]} +{"t": 6.5743, "q": [-0.3670015037059784, -0.0057899258099496365, 0.005276407115161419, 0.6268442273139954, -0.28464725613594055, 0.015996839851140976, -0.32051336765289307, 0.0006135923322290182, 0.009280583821237087, 0.6203844547271729, -0.3477988839149475, 0.01402194518595934, -0.04805012047290802, 0.027457362040877342, -0.05587179213762283, -0.06058025732636452, 0.11714579910039902, -0.7051637768745422, 0.22859910130500793, -0.24713869392871857, -0.741943359375, -0.439749151468277, -0.29049763083457947, -0.5072922706604004, -0.07234876602888107, -0.3928668797016144, -0.28730982542037964, -1.1845088005065918, 0.4347277581691742]} +{"t": 6.5913, "q": [-0.3670526444911957, -0.005772881209850311, 0.00512909609824419, 0.6268186569213867, -0.28458887338638306, 0.015924863517284393, -0.3205389380455017, 0.0006988134700804949, 0.009119881317019463, 0.6204270720481873, -0.3478109538555145, 0.014000236056745052, -0.04803672805428505, 0.0274497177451849, -0.05583687871694565, -0.0655537098646164, 0.11719373613595963, -0.7066857814788818, 0.22869497537612915, -0.24701884388923645, -0.7383840680122375, -0.4411153495311737, -0.287022203207016, -0.508442759513855, -0.07747801393270493, -0.39484426379203796, -0.2852485179901123, -1.1845208406448364, 0.4377238154411316]} +{"t": 6.608, "q": [-0.367214560508728, -0.005806969944387674, 0.005008568987250328, 0.6267845630645752, -0.28454306721687317, 0.01584559679031372, -0.320632666349411, 0.0006647250265814364, 0.00898596178740263, 0.6205122470855713, -0.3478473424911499, 0.013964253477752209, -0.04805012047290802, 0.027533283457159996, -0.05575355514883995, -0.06938866525888443, 0.11725366115570068, -0.7082317471504211, 0.22877885401248932, -0.2467791587114334, -0.7340098023414612, -0.44212204217910767, -0.2847212255001068, -0.5099287629127502, -0.08019843697547913, -0.39597079157829285, -0.2828516960144043, -1.1844968795776367, 0.4393416941165924]} +{"t": 6.6248, "q": [-0.36725717782974243, -0.005815492011606693, 0.005035352893173695, 0.6267419457435608, -0.2845389246940613, 0.015838393941521645, -0.32079458236694336, 0.0006476807757280767, 0.009026138111948967, 0.6205378174781799, -0.34785139560699463, 0.013957004994153976, -0.047969769686460495, 0.027715638279914856, -0.05559706687927246, -0.07180947810411453, 0.1173735037446022, -0.7106046080589294, 0.2286590188741684, -0.2467072606086731, -0.7281255722045898, -0.4424815773963928, -0.28325915336608887, -0.5115945935249329, -0.08193615078926086, -0.39764857292175293, -0.28134167194366455, -1.1845088005065918, 0.4408397376537323]} +{"t": 6.6418, "q": [-0.3673253357410431, -0.005892191082239151, 0.005008568987250328, 0.6266908049583435, -0.28453055024147034, 0.01585288718342781, -0.3207690119743347, 0.0006221143994480371, 0.008972570300102234, 0.6205378174781799, -0.3478594422340393, 0.013942544348537922, -0.04767514765262604, 0.027852404862642288, -0.05547970160841942, -0.0740385428071022, 0.11745738983154297, -0.7128097414970398, 0.22724488377571106, -0.24646757543087006, -0.7227206826210022, -0.4427332282066345, -0.28161731362342834, -0.5131165981292725, -0.08410529047250748, -0.39951810240745544, -0.2795799970626831, -1.184472918510437, 0.44242164492607117]} +{"t": 6.6585, "q": [-0.3674446642398834, -0.005977412220090628, 0.004888041876256466, 0.6267163753509521, -0.2845138907432556, 0.015809601172804832, -0.32075196504592896, 0.0005539375124499202, 0.008771691471338272, 0.6205719113349915, -0.3478635549545288, 0.013949859887361526, -0.046978771686553955, 0.027935896068811417, -0.05532677471637726, -0.076435387134552, 0.11745738983154297, -0.715338408946991, 0.22726884484291077, -0.2460840791463852, -0.71839439868927, -0.44297292828559875, -0.27956801652908325, -0.5146386027336121, -0.08660999685525894, -0.40178313851356506, -0.2772071063518524, -1.1845208406448364, 0.4447346031665802]} +{"t": 6.6752, "q": [-0.3676321506500244, -0.006139332428574562, 0.00479429867118597, 0.626724898815155, -0.2845180630683899, 0.01581680402159691, -0.3207775354385376, 0.00044314999831840396, 0.008597597479820251, 0.6205719113349915, -0.3478798568248749, 0.013950028456747532, -0.046429701149463654, 0.02797381579875946, -0.055242881178855896, -0.07799334079027176, 0.11745738983154297, -0.7172199487686157, 0.2274366319179535, -0.24589233100414276, -0.7150148153305054, -0.4430088698863983, -0.2775906026363373, -0.5161246061325073, -0.08734103292226791, -0.40328115224838257, -0.2733961343765259, -1.1844968795776367, 0.446352481842041]} +{"t": 6.6919, "q": [-0.3677684962749481, -0.006267163902521133, 0.004713947419077158, 0.6267078518867493, -0.2845138609409332, 0.01583850383758545, -0.3207860589027405, 0.00037497308221645653, 0.008557421155273914, 0.6205804347991943, -0.3478800356388092, 0.013979119248688221, -0.046135079115629196, 0.027905182912945747, -0.0550878643989563, -0.07897604256868362, 0.11721770465373993, -0.7187539339065552, 0.22747257351875305, -0.24574851989746094, -0.7120187878608704, -0.443032830953598, -0.2760806083679199, -0.5172870755195618, -0.08740095794200897, -0.40450355410575867, -0.271442711353302, -1.1845088005065918, 0.4473591446876526]} +{"t": 6.7087, "q": [-0.3678281307220459, -0.006326818838715553, 0.004646987654268742, 0.6267334222793579, -0.28450968861579895, 0.015831299126148224, -0.3207860589027405, 0.0002897519152611494, 0.008490461856126785, 0.6205889582633972, -0.34788405895233154, 0.013971889391541481, -0.045947592705488205, 0.02784411422908306, -0.05489818751811981, -0.07981494069099426, 0.11703794449567795, -0.7201680541038513, 0.22717297077178955, -0.24572455883026123, -0.7077164649963379, -0.443032830953598, -0.2746904194355011, -0.5180420875549316, -0.08747286349534988, -0.40491101145744324, -0.2702442705631256, -1.1844968795776367, 0.44818606972694397]} +{"t": 6.7254, "q": [-0.3678622245788574, -0.006394995842128992, 0.004673771560192108, 0.6267334222793579, -0.2845180630683899, 0.01581680402159691, -0.3207775354385376, 0.0002300971100339666, 0.008490461856126785, 0.6205974817276001, -0.3478880822658539, 0.013964658603072166, -0.045626189559698105, 0.027790764346718788, -0.05480301007628441, -0.08073772490024567, 0.11710985004901886, -0.7210069298744202, 0.22706511616706848, -0.24596424400806427, -0.7034980058670044, -0.4430448114871979, -0.27325230836868286, -0.5183417201042175, -0.08767659217119217, -0.40495896339416504, -0.2694772779941559, -1.1843650341033936, 0.4489770233631134]} +{"t": 6.7421, "q": [-0.36789631843566895, -0.006505783647298813, 0.004646987654268742, 0.6267589926719666, -0.2845138907432556, 0.015824051573872566, -0.32076048851013184, 0.00010226538870483637, 0.008436894044280052, 0.6205889582633972, -0.347888320684433, 0.013993785716593266, -0.04505033791065216, 0.027760297060012817, -0.0547628179192543, -0.08205599337816238, 0.11728961020708084, -0.7212706208229065, 0.22707709670066833, -0.24603614211082458, -0.6992076635360718, -0.44306880235671997, -0.27138277888298035, -0.5185095071792603, -0.08822786808013916, -0.4049949049949646, -0.2688780725002289, -1.1838257312774658, 0.44991177320480347]} +{"t": 6.7589, "q": [-0.3679559826850891, -0.006650659255683422, 0.004673771560192108, 0.6267845630645752, -0.2845180630683899, 0.01581680402159691, -0.3207179009914398, -5.1132694352418184e-05, 0.008410110138356686, 0.6205889582633972, -0.347896546125412, 0.0140084158629179, -0.0442066490650177, 0.0277374517172575, -0.0547376424074173, -0.08378171920776367, 0.11733754724264145, -0.7214263677597046, 0.22698122262954712, -0.24606011807918549, -0.696127712726593, -0.44320061802864075, -0.26928552985191345, -0.51853346824646, -0.0884915217757225, -0.4049949049949646, -0.2684226632118225, -1.183214545249939, 0.45111021399497986]} +{"t": 6.7756, "q": [-0.3679730296134949, -0.006769969128072262, 0.004687163513153791, 0.6267845630645752, -0.2845180630683899, 0.01581680402159691, -0.32070085406303406, -0.0001704423048067838, 0.008410110138356686, 0.620606005191803, -0.34788447618484497, 0.014030124992132187, -0.042947810143232346, 0.027729853987693787, -0.05474249646067619, -0.08561530709266663, 0.1176491379737854, -0.7216780781745911, 0.2263101041316986, -0.2461080551147461, -0.6934911608695984, -0.44340434670448303, -0.267152339220047, -0.5185574293136597, -0.08852747082710266, -0.40500688552856445, -0.268123060464859, -1.1826872825622559, 0.4529438018798828]} +{"t": 6.7923, "q": [-0.3680071234703064, -0.006880756467580795, 0.004727339372038841, 0.6268442273139954, -0.2845222055912018, 0.01583847962319851, -0.3206838071346283, -0.0002556634717620909, 0.008410110138356686, 0.6205974817276001, -0.34788888692855835, 0.014081076718866825, -0.04134078323841095, 0.027706999331712723, -0.05470738559961319, -0.08716127276420593, 0.11875168979167938, -0.721618115901947, 0.2250158190727234, -0.24649155139923096, -0.6904471516609192, -0.4435841143131256, -0.26499518752098083, -0.51853346824646, -0.08847953379154205, -0.4049469828605652, -0.26778751611709595, -1.1822917461395264, 0.45592787861824036]} +{"t": 6.8091, "q": [-0.36812642216682434, -0.0070682428777217865, 0.0047541228123009205, 0.6269038319587708, -0.2845347225666046, 0.015845639631152153, -0.3206497132778168, -0.0004346278728917241, 0.008423502556979656, 0.6205889582633972, -0.3478728234767914, 0.014109998010098934, -0.03964000940322876, 0.027676507830619812, -0.05464732274413109, -0.08808405697345734, 0.12016582489013672, -0.7211986780166626, 0.22300246357917786, -0.24721059203147888, -0.6864324808120728, -0.4439076781272888, -0.26306572556495667, -0.5184975266456604, -0.08853945881128311, -0.40493497252464294, -0.2675718069076538, -1.181788444519043, 0.458983838558197]} +{"t": 6.8259, "q": [-0.3681946098804474, -0.007417649962007999, 0.004740730859339237, 0.6269208788871765, -0.28453055024147034, 0.01585288718342781, -0.32061561942100525, -0.0006988134700804949, 0.008436894044280052, 0.6205889582633972, -0.34788990020751953, 0.014226584695279598, -0.038032982498407364, 0.027524219825863838, -0.054486099630594254, -0.08845556527376175, 0.12141218781471252, -0.721162736415863, 0.21975474059581757, -0.24821726977825165, -0.6817466020584106, -0.4442911744117737, -0.26124411821365356, -0.5184975266456604, -0.08853945881128311, -0.40495896339416504, -0.267523854970932, -1.1811532974243164, 0.4612608551979065]} +{"t": 6.8426, "q": [-0.36834800243377686, -0.007767056114971638, 0.004646987654268742, 0.6270231604576111, -0.2845346927642822, 0.01587454415857792, -0.3205389380455017, -0.000945954816415906, 0.008436894044280052, 0.6205719113349915, -0.3478987514972687, 0.014328504912555218, -0.03645274043083191, 0.02737184427678585, -0.05425532907247543, -0.08837167918682098, 0.12228703498840332, -0.7211148142814636, 0.2166747897863388, -0.2493797391653061, -0.6778517365455627, -0.4445548355579376, -0.2594105303287506, -0.5184016227722168, -0.08855143934488297, -0.40498292446136475, -0.26753583550453186, -1.180601954460144, 0.4632022976875305]} +{"t": 6.8594, "q": [-0.36852696537971497, -0.00817611813545227, 0.0045800283551216125, 0.6271851062774658, -0.2845596671104431, 0.015917789191007614, -0.32055598497390747, -0.0012697952333837748, 0.008450286462903023, 0.6205633878707886, -0.3478955328464508, 0.014452152885496616, -0.034189511090517044, 0.02712828293442726, -0.054072897881269455, -0.08834771066904068, 0.12332966178655624, -0.7210908532142639, 0.21466144919395447, -0.2514769732952118, -0.6761499643325806, -0.4448304772377014, -0.257660835981369, -0.5182937979698181, -0.08855143934488297, -0.40503084659576416, -0.2676197290420532, -1.1802663803100586, 0.4658508002758026]} +{"t": 6.8761, "q": [-0.36868035793304443, -0.00849995855242014, 0.004633595701307058, 0.6273555159568787, -0.2846013903617859, 0.015946494415402412, -0.32061561942100525, -0.0015595471486449242, 0.008517245762050152, 0.6205804347991943, -0.34788012504577637, 0.014582909643650055, -0.031350426375865936, 0.02693796157836914, -0.053896404802799225, -0.08817993104457855, 0.12469586730003357, -0.7210548520088196, 0.21286380290985107, -0.25448501110076904, -0.6752991080284119, -0.4451300799846649, -0.25603097677230835, -0.5175986886024475, -0.08851549029350281, -0.40505483746528625, -0.2677036225795746, -1.180074691772461, 0.46809184551239014]} +{"t": 6.8929, "q": [-0.3688678443431854, -0.008866408839821815, 0.004727339372038841, 0.6275771260261536, -0.2846263349056244, 0.016004173085093498, -0.3206411898136139, -0.0019345202017575502, 0.00865116436034441, 0.6205548644065857, -0.3478001356124878, 0.014800316654145718, -0.02855152077972889, 0.026732442900538445, -0.05372962728142738, -0.0878923088312149, 0.12644556164741516, -0.7210668921470642, 0.2109103798866272, -0.25672608613967896, -0.6748557090759277, -0.44554951786994934, -0.25455692410469055, -0.5161006450653076, -0.08850350230932236, -0.4051387310028076, -0.2679792642593384, -1.179787039756775, 0.46961385011672974]} +{"t": 6.9096, "q": [-0.36908942461013794, -0.00925842672586441, 0.004821082577109337, 0.6278242468833923, -0.2846638262271881, 0.016083501279354095, -0.3206923305988312, -0.002369148191064596, 0.008785083889961243, 0.6205463409423828, -0.34772470593452454, 0.015083237551152706, -0.024065235629677773, 0.026633471250534058, -0.053633879870176315, -0.08772452920675278, 0.1287585198879242, -0.7211028337478638, 0.2087891697883606, -0.2591828405857086, -0.6747957468032837, -0.44610080122947693, -0.2528431713581085, -0.5149381756782532, -0.08867128193378448, -0.40523460507392883, -0.2681949734687805, -1.1795833110809326, 0.47120773792266846]} +{"t": 6.9264, "q": [-0.36935359239578247, -0.0099742840975523, 0.004780906718224287, 0.6280628442764282, -0.2846929728984833, 0.016133949160575867, -0.3207179009914398, -0.0029230855870991945, 0.008785083889961243, 0.6205122470855713, -0.34769028425216675, 0.015410218387842178, -0.020891357213258743, 0.026549719274044037, -0.05354830622673035, -0.08755674958229065, 0.13096360862255096, -0.7212226390838623, 0.20570921897888184, -0.2632335126399994, -0.6746759414672852, -0.44717937707901, -0.2517765760421753, -0.5135959386825562, -0.08880311250686646, -0.4052945077419281, -0.2683267891407013, -1.179235816001892, 0.4731252193450928]} +{"t": 6.9431, "q": [-0.36982232332229614, -0.010664575733244419, 0.004486285150051117, 0.6282503604888916, -0.284688800573349, 0.016141196712851524, -0.3207179009914398, -0.003477022983133793, 0.008744907565414906, 0.6205122470855713, -0.347947359085083, 0.01606760174036026, -0.018936140462756157, 0.02647366002202034, -0.053537338972091675, -0.08737698942422867, 0.13343235850334167, -0.7210908532142639, 0.20116721093654633, -0.26663702726364136, -0.6744482517242432, -0.4484976530075073, -0.25174063444137573, -0.5111151933670044, -0.08880311250686646, -0.40533047914505005, -0.2689739465713501, -1.1788043975830078, 0.4754621386528015]} +{"t": 6.9599, "q": [-0.37018024921417236, -0.011192946694791317, 0.0043523660860955715, 0.6285145282745361, -0.28470128774642944, 0.01616280898451805, -0.32076048851013184, -0.004065048880875111, 0.008624380454421043, 0.6204952001571655, -0.34789735078811646, 0.016496267169713974, -0.017034491524100304, 0.02632910944521427, -0.05348075553774834, -0.08660999685525894, 0.13707557320594788, -0.7210428714752197, 0.1952829509973526, -0.2718381881713867, -0.6742445230484009, -0.4511221945285797, -0.25193238258361816, -0.507699728012085, -0.08885104954242706, -0.40545031428337097, -0.2696690261363983, -1.1782171726226807, 0.4775354266166687]} +{"t": 6.9766, "q": [-0.37041887640953064, -0.011499742977321148, 0.004486285150051117, 0.6287701725959778, -0.2847720980644226, 0.01628532074391842, -0.32075196504592896, -0.0044229780323803425, 0.008744907565414906, 0.6202906966209412, -0.3477567136287689, 0.0167784933000803, -0.015601558610796928, 0.02608564868569374, -0.053388066589832306, -0.08451275527477264, 0.1414138525724411, -0.7210069298744202, 0.19080084562301636, -0.27689552307128906, -0.674028754234314, -0.4547893702983856, -0.25198033452033997, -0.5040205717086792, -0.08894691616296768, -0.4056660234928131, -0.2703521251678467, -1.177462100982666, 0.4793570339679718]} +{"t": 6.9938, "q": [-0.37064898014068604, -0.01172131858766079, 0.004593420308083296, 0.6291195750236511, -0.2848971486091614, 0.016429228708148003, -0.32074347138404846, -0.00469568558037281, 0.008771691471338272, 0.6200435757637024, -0.3475434482097626, 0.01716182939708233, -0.014182017184793949, 0.025735676288604736, -0.053254205733537674, -0.08260726183652878, 0.1459319144487381, -0.7207432985305786, 0.18713366985321045, -0.28074246644973755, -0.6736812591552734, -0.45804905891418457, -0.25206419825553894, -0.5000298023223877, -0.08899485319852829, -0.40565404295921326, -0.27155056595802307, -1.176707148551941, 0.4812625050544739]} +{"t": 7.0111, "q": [-0.37105801701545715, -0.012258211150765419, 0.004566636402159929, 0.6294093728065491, -0.2849304974079132, 0.016457978636026382, -0.3207690119743347, -0.005147357936948538, 0.008744907565414906, 0.6199753880500793, -0.3473908603191376, 0.017480310052633286, -0.012374111451208591, 0.02532482147216797, -0.05307980254292488, -0.08037819713354111, 0.15108512341976166, -0.7199763059616089, 0.18344253301620483, -0.2847931385040283, -0.6732857823371887, -0.46169227361679077, -0.2520282566547394, -0.4950084090232849, -0.08897088468074799, -0.4056181013584137, -0.27300065755844116, -1.175520658493042, 0.48261672258377075]} +{"t": 7.0278, "q": [-0.3715949058532715, -0.012590574100613594, 0.004633595701307058, 0.6297758221626282, -0.28498050570487976, 0.016515545547008514, -0.32102468609809875, -0.005684250965714455, 0.008771691471338272, 0.6199498176574707, -0.34715357422828674, 0.017921609804034233, -0.010472462512552738, 0.02490641362965107, -0.05294997617602348, -0.07713047415018082, 0.15666978061199188, -0.7185261845588684, 0.1789844036102295, -0.2886160910129547, -0.6723390221595764, -0.46392133831977844, -0.2520162761211395, -0.489915132522583, -0.08862334489822388, -0.4057499170303345, -0.27424702048301697, -1.1742024421691895, 0.4835754632949829]} +{"t": 7.0446, "q": [-0.37187615036964417, -0.012888847850263119, 0.004888041876256466, 0.6299803256988525, -0.2850681245326996, 0.01656569354236126, -0.3212292194366455, -0.006221144460141659, 0.008825259283185005, 0.6198049187660217, -0.3469284474849701, 0.01835574395954609, -0.008343150839209557, 0.024411959573626518, -0.05281917378306389, -0.07406251132488251, 0.16189490258693695, -0.7172319293022156, 0.17544905841350555, -0.29420074820518494, -0.6716199517250061, -0.4648800790309906, -0.25181254744529724, -0.48513340950012207, -0.08861136436462402, -0.4060734808444977, -0.2750379741191864, -1.1724886894226074, 0.4845581650733948]} +{"t": 7.0613, "q": [-0.37224259972572327, -0.013059290125966072, 0.005155880004167557, 0.6302019357681274, -0.2853230834007263, 0.016325857490301132, -0.3213229477405548, -0.0068176924251019955, 0.008878827095031738, 0.6195663213729858, -0.34663453698158264, 0.018854614347219467, -0.006026353221386671, 0.02406955324113369, -0.05265113711357117, -0.07113835960626602, 0.167851060628891, -0.7154582738876343, 0.17254887521266937, -0.3001209497451782, -0.6707450747489929, -0.46544334292411804, -0.2512253224849701, -0.4790094792842865, -0.08870723843574524, -0.40622928738594055, -0.27552932500839233, -1.1699000597000122, 0.4855768382549286]} +{"t": 7.078, "q": [-0.37270280718803406, -0.01311042346060276, 0.005222839303314686, 0.6304575800895691, -0.28551092743873596, 0.016332115978002548, -0.32147637009620667, -0.007286408916115761, 0.008932393975555897, 0.6192851066589355, -0.34645405411720276, 0.019267380237579346, -0.004030960611999035, 0.023879267275333405, -0.052504878491163254, -0.06790261715650558, 0.1742386519908905, -0.7132771015167236, 0.16888169944286346, -0.3055378198623657, -0.6696305871009827, -0.46597063541412354, -0.2504703104496002, -0.47240617871284485, -0.0887431874871254, -0.40630120038986206, -0.27567312121391296, -1.167359471321106, 0.48635581135749817]} +{"t": 7.0948, "q": [-0.3730010688304901, -0.013118945062160492, 0.005316582508385181, 0.6306876540184021, -0.2860085070133209, 0.015744082629680634, -0.32162976264953613, -0.007823302410542965, 0.009093097411096096, 0.6190805435180664, -0.3462120592594147, 0.019715845584869385, -0.000897257006727159, 0.023704219609498978, -0.052388571202754974, -0.06591323763132095, 0.18071013689041138, -0.7112038731575012, 0.16619724035263062, -0.3111584186553955, -0.6685400009155273, -0.46659383177757263, -0.24936775863170624, -0.4670252501964569, -0.08898287266492844, -0.4066367447376251, -0.27580496668815613, -1.165873408317566, 0.48676326870918274]} +{"t": 7.1115, "q": [-0.3731118440628052, -0.013118945062160492, 0.005731731187552214, 0.6308581233024597, -0.28788435459136963, 0.012922405265271664, -0.3217916786670685, -0.008462460711598396, 0.009414502419531345, 0.6189867854118347, -0.34589633345603943, 0.020265372470021248, 0.0027453387156128883, 0.023491110652685165, -0.05223706364631653, -0.06475076824426651, 0.18710970878601074, -0.7096818685531616, 0.16362062096595764, -0.3174980878829956, -0.66722172498703, -0.46689343452453613, -0.2482292503118515, -0.46166831254959106, -0.08905477821826935, -0.4069842994213104, -0.27691948413848877, -1.1653101444244385, 0.4870508909225464]} +{"t": 7.129, "q": [-0.37348681688308716, -0.013127466663718224, 0.005678163841366768, 0.6313694715499878, -0.2879628539085388, 0.013189415447413921, -0.3217916786670685, -0.009118663147091866, 0.00940111093223095, 0.6188845634460449, -0.34564945101737976, 0.020691918209195137, 0.005236231256276369, 0.023270415142178535, -0.052100345492362976, -0.06309694796800613, 0.19404856860637665, -0.7066378593444824, 0.15986956655979156, -0.3237178921699524, -0.6653162240982056, -0.46706122159957886, -0.24773789942264557, -0.4545496702194214, -0.08886303007602692, -0.4071161150932312, -0.28037095069885254, -1.1649985313415527, 0.4873265326023102]} +{"t": 7.1457, "q": [-0.3739725947380066, -0.013144511729478836, 0.005517460871487856, 0.6319233775138855, -0.28798362612724304, 0.013153175823390484, -0.3217405378818512, -0.009851565584540367, 0.009347543120384216, 0.6188845634460449, -0.34539514780044556, 0.021190909668803215, 0.007124488707631826, 0.02307255193591118, -0.05197879672050476, -0.06125137582421303, 0.2007237821817398, -0.7017123699188232, 0.155914768576622, -0.32752886414527893, -0.6636983752250671, -0.46751660108566284, -0.2476300448179245, -0.44709548354148865, -0.08798818290233612, -0.40722396969795227, -0.2849489152431488, -1.1647348403930664, 0.4873265326023102]} +{"t": 7.1626, "q": [-0.37436461448669434, -0.013510962948203087, 0.005530852824449539, 0.6322557330131531, -0.2879670262336731, 0.01316771563142538, -0.3217831552028656, -0.010780476033687592, 0.009227016009390354, 0.6188845634460449, -0.34517765045166016, 0.021683035418391228, 0.008878827095031738, 0.022790977731347084, -0.051811546087265015, -0.05968144163489342, 0.2069436013698578, -0.6984766125679016, 0.15218767523765564, -0.3332573473453522, -0.6619367003440857, -0.4676963686943054, -0.24774989485740662, -0.4400367736816406, -0.08770056068897247, -0.40722396969795227, -0.2895868122577667, -1.1645431518554688, 0.4873265326023102]} +{"t": 7.1793, "q": [-0.37494412064552307, -0.014098988845944405, 0.005504068918526173, 0.6326733231544495, -0.2880127429962158, 0.013102421537041664, -0.32185134291648865, -0.011538944207131863, 0.009119881317019463, 0.6187993288040161, -0.3450337052345276, 0.022045137360692024, 0.010151056572794914, 0.022547464817762375, -0.05166958272457123, -0.0574643611907959, 0.2139783352613449, -0.6940903663635254, 0.1472262144088745, -0.3393692970275879, -0.6591923236846924, -0.4677203297615051, -0.24807345867156982, -0.43038949370384216, -0.0875926986336708, -0.40717604756355286, -0.2941048741340637, -1.1641836166381836, 0.4873025715351105]} +{"t": 7.1961, "q": [-0.3758474588394165, -0.01461031474173069, 0.005383542273193598, 0.6334317922592163, -0.2880956828594208, 0.013159804977476597, -0.32198768854141235, -0.012314456515014172, 0.008798475377261639, 0.618594765663147, -0.344676673412323, 0.022746769711375237, 0.011490246281027794, 0.02234966680407524, -0.05160757154226303, -0.05567871034145355, 0.22106102108955383, -0.6901355981826782, 0.14309164881706238, -0.34509775042533875, -0.6572149395942688, -0.46773234009742737, -0.24801354110240936, -0.4207421839237213, -0.0869934931397438, -0.40717604756355286, -0.2960822582244873, -1.1637641191482544, 0.48706287145614624]} +{"t": 7.2128, "q": [-0.3773132562637329, -0.015104597434401512, 0.005343366414308548, 0.6343692541122437, -0.28820332884788513, 0.013347158208489418, -0.3225160539150238, -0.012996225617825985, 0.008544029667973518, 0.6185436844825745, -0.3443242907524109, 0.023499391973018646, 0.012816044501960278, 0.02230401523411274, -0.05158716067671776, -0.05380916967988014, 0.22768829762935638, -0.6863126158714294, 0.13887320458889008, -0.3500232696533203, -0.6560644507408142, -0.46776828169822693, -0.24789370596408844, -0.41025596857070923, -0.08613062649965286, -0.4071400761604309, -0.2984311878681183, -1.163656234741211, 0.48706287145614624]} +{"t": 7.2295, "q": [-0.37911996245384216, -0.01551365852355957, 0.005303190555423498, 0.6359457969665527, -0.28841033577919006, 0.013693003915250301, -0.32322338223457336, -0.013669473119080067, 0.008262800052762032, 0.6184584498405457, -0.3437862694263458, 0.024511801078915596, 0.01411505788564682, 0.022205054759979248, -0.0515015684068203, -0.05150819942355156, 0.23443540930747986, -0.6817106604576111, 0.134750634431839, -0.35648277401924133, -0.6559925079345703, -0.4681757390499115, -0.24783377349376678, -0.3994821608066559, -0.0845247432589531, -0.4071161150932312, -0.3035963773727417, -1.1635005474090576, 0.4869909882545471]} +{"t": 7.2463, "q": [-0.3801596462726593, -0.015905676409602165, 0.005450501572340727, 0.6373775601387024, -0.2887003719806671, 0.014023939147591591, -0.3235131502151489, -0.014300109818577766, 0.008182448334991932, 0.6184584498405457, -0.34347715973854065, 0.02509756200015545, 0.015909571200609207, 0.021314602345228195, -0.05088154226541519, -0.04914730787277222, 0.24029569327831268, -0.6765214800834656, 0.1303284466266632, -0.36249884963035583, -0.6558607220649719, -0.46878692507743835, -0.24753417074680328, -0.387893408536911, -0.08318250626325607, -0.4069363474845886, -0.30939674377441406, -1.1633687019348145, 0.486966997385025]} +{"t": 7.263, "q": [-0.3809010684490204, -0.016459614038467407, 0.0053701503202319145, 0.6386302709579468, -0.28910237550735474, 0.014390460215508938, -0.3235728144645691, -0.01486256904900074, 0.008289583027362823, 0.6184584498405457, -0.343071311712265, 0.025827761739492416, 0.017931748181581497, 0.02022632211446762, -0.050170060247182846, -0.04649879410862923, 0.24535304307937622, -0.6713443398475647, 0.12624183297157288, -0.36598625779151917, -0.6559206247329712, -0.4694700539112091, -0.24685107171535492, -0.37709563970565796, -0.08158860355615616, -0.40648093819618225, -0.31421440839767456, -1.1632368564605713, 0.4868951141834259]} +{"t": 7.2797, "q": [-0.3816254436969757, -0.01707320660352707, 0.005075528286397457, 0.6396699547767639, -0.28941723704338074, 0.014779088087379932, -0.32363244891166687, -0.015723302960395813, 0.008343150839209557, 0.618364691734314, -0.3427870571613312, 0.02644290030002594, 0.020369073376059532, 0.019290190190076828, -0.04947132244706154, -0.04464123770594597, 0.2523997724056244, -0.6685519814491272, 0.12122043967247009, -0.3702406585216522, -0.65601646900177, -0.46993741393089294, -0.24561668932437897, -0.3653750717639923, -0.07935953885316849, -0.40585777163505554, -0.31628766655921936, -1.1632368564605713, 0.48635581135749817]} +{"t": 7.2965, "q": [-0.381864070892334, -0.018027683719992638, 0.004995177034288645, 0.6400619745254517, -0.28964531421661377, 0.015002107247710228, -0.3236154019832611, -0.016703346744179726, 0.008584205061197281, 0.6183050274848938, -0.3427054286003113, 0.02685663104057312, 0.023904534056782722, 0.01845288835465908, -0.04872945696115494, -0.04321511462330818, 0.2595303952693939, -0.66647869348526, 0.11689413338899612, -0.37395575642585754, -0.6560044884681702, -0.47115981578826904, -0.24415461719036102, -0.35321107506752014, -0.07689078897237778, -0.4056420624256134, -0.3171505331993103, -1.1632368564605713, 0.4845941364765167]} +{"t": 7.3132, "q": [-0.3821367919445038, -0.019391221925616264, 0.004780906718224287, 0.6403688192367554, -0.28993988037109375, 0.015413094311952591, -0.32359835505485535, -0.01774304360151291, 0.00906631350517273, 0.6181516647338867, -0.34268492460250854, 0.027249183505773544, 0.02871222421526909, 0.017798349261283875, -0.048207662999629974, -0.04193280264735222, 0.265726238489151, -0.6640459299087524, 0.11304719746112823, -0.379037082195282, -0.6558127403259277, -0.4737244248390198, -0.24252477288246155, -0.3383985757827759, -0.07584816217422485, -0.40553420782089233, -0.3169228434562683, -1.1633687019348145, 0.4812265634536743]} +{"t": 7.3299, "q": [-0.38312533497810364, -0.02063545025885105, 0.0041916631162166595, 0.6410846710205078, -0.2901846170425415, 0.015809834003448486, -0.3235301971435547, -0.01894466206431389, 0.009026138111948967, 0.6177511215209961, -0.3419145941734314, 0.029539262875914574, 0.033158332109451294, 0.017570044845342636, -0.04803718999028206, -0.039631832391023636, 0.2718621492385864, -0.6610978245735168, 0.10820557177066803, -0.3830278217792511, -0.6556929349899292, -0.47708001732826233, -0.24125443398952484, -0.3221958875656128, -0.07456585019826889, -0.4054742753505707, -0.31623974442481995, -1.163560390472412, 0.4782544672489166]} +{"t": 7.3469, "q": [-0.38430991768836975, -0.021624017506837845, 0.0038300822488963604, 0.6418005228042603, -0.2904128134250641, 0.016148766502738, -0.3234790563583374, -0.019941750913858414, 0.008865434676408768, 0.6175039410591125, -0.3419960141181946, 0.02949649468064308, 0.035876888781785965, 0.01761569082736969, -0.04805740714073181, -0.03693538159132004, 0.27781832218170166, -0.6577422022819519, 0.10336394608020782, -0.3850771188735962, -0.6556689739227295, -0.48021990060806274, -0.24070316553115845, -0.3047229051589966, -0.07361909747123718, -0.40373656153678894, -0.31584426760673523, -1.1636083126068115, 0.47522246837615967]} +{"t": 7.3636, "q": [-0.38563084602355957, -0.022893812507390976, 0.0036425956059247255, 0.6429169178009033, -0.2906077802181244, 0.016444478183984756, -0.3234705328941345, -0.021015536040067673, 0.008691340684890747, 0.6174187660217285, -0.34211045503616333, 0.029483240097761154, 0.038568660616874695, 0.017623290419578552, -0.048052527010440826, -0.03383146598935127, 0.28376248478889465, -0.6539192795753479, 0.09825865924358368, -0.38813310861587524, -0.6557648181915283, -0.4831200838088989, -0.2400680035352707, -0.2863750457763672, -0.07222892343997955, -0.4018550515174866, -0.31586822867393494, -1.1635963916778564, 0.4730653166770935]} +{"t": 7.3804, "q": [-0.3869006335735321, -0.024018730968236923, 0.0033881496638059616, 0.6443400979042053, -0.29123422503471375, 0.017389241605997086, -0.3235216736793518, -0.021952969953417778, 0.00847707036882639, 0.6173591017723083, -0.34243470430374146, 0.029654495418071747, 0.04194341599941254, 0.017562385648489, -0.047982655465602875, -0.031434621661901474, 0.2902699112892151, -0.6517381072044373, 0.0941600576043129, -0.3917643129825592, -0.6558247208595276, -0.4850015938282013, -0.23898941278457642, -0.26972895860671997, -0.06826214492321014, -0.39966192841529846, -0.3162277638912201, -1.1636322736740112, 0.4718189537525177]} +{"t": 7.3972, "q": [-0.3880596458911896, -0.02441927045583725, 0.003106919815763831, 0.6458911299705505, -0.29198089241981506, 0.01858663745224476, -0.32363244891166687, -0.022362031042575836, 0.008463677950203419, 0.617316484451294, -0.3426087200641632, 0.029918573796749115, 0.04515747353434563, 0.017371967434883118, -0.04767889156937599, -0.02900182455778122, 0.29793983697891235, -0.6503719091415405, 0.08928247541189194, -0.3937417268753052, -0.6557528376579285, -0.48593637347221375, -0.2380186915397644, -0.2546168565750122, -0.06286924332380295, -0.3976605534553528, -0.3170187175273895, -1.1638480424880981, 0.47072839736938477]} +{"t": 7.4139, "q": [-0.3886988162994385, -0.024581190198659897, 0.0032274469267576933, 0.6471439003944397, -0.29286035895347595, 0.019971486181020737, -0.32372620701789856, -0.022660305723547935, 0.008852043189108372, 0.6171886324882507, -0.3426135182380676, 0.029998676851391792, 0.050005339086055756, 0.017173508182168007, -0.04693439602851868, -0.026796728372573853, 0.30595725774765015, -0.6499524712562561, 0.0848243460059166, -0.39592283964157104, -0.6558247208595276, -0.48703891038894653, -0.2365206629037857, -0.2406911849975586, -0.056301891803741455, -0.39576706290245056, -0.318145215511322, -1.164171576499939, 0.4698655307292938]} +{"t": 7.4307, "q": [-0.38893741369247437, -0.025220349431037903, 0.003334582084789872, 0.6476381421089172, -0.2934579849243164, 0.020995942875742912, -0.3236068785190582, -0.023094933480024338, 0.009227016009390354, 0.6166688203811646, -0.3425731956958771, 0.030056416988372803, 0.054197002202272415, 0.016769742593169212, -0.046202924102544785, -0.024411866441369057, 0.314262330532074, -0.6499285101890564, 0.07988684624433517, -0.3996019959449768, -0.6559445858001709, -0.4879976511001587, -0.23533423244953156, -0.2271609902381897, -0.05270662158727646, -0.39334625005722046, -0.3215008080005646, -1.1649266481399536, 0.46958988904953003]} +{"t": 7.4474, "q": [-0.38931238651275635, -0.025757241994142532, 0.0031604873947799206, 0.647953450679779, -0.2936707139015198, 0.021335024386644363, -0.3233853280544281, -0.023572171106934547, 0.00932075921446085, 0.6160125732421875, -0.342222660779953, 0.030583476647734642, 0.057384271174669266, 0.01657165214419365, -0.04578559100627899, -0.022182801738381386, 0.3218243718147278, -0.6498326063156128, 0.07667507231235504, -0.4017471969127655, -0.6562561988830566, -0.48905226588249207, -0.23445938527584076, -0.21601566672325134, -0.049554772675037384, -0.39168041944503784, -0.3263184726238251, -1.1669039726257324, 0.46958988904953003]} +{"t": 7.4641, "q": [-0.38986632227897644, -0.026243003085255623, 0.003254230599850416, 0.648405134677887, -0.29389190673828125, 0.021731941029429436, -0.32312965393066406, -0.024049410596489906, 0.009374327026307583, 0.6155609488487244, -0.34195587038993835, 0.030885983258485794, 0.059058260172605515, 0.016229135915637016, -0.04542143642902374, -0.019594207406044006, 0.33009350299835205, -0.648993730545044, 0.07307980209589005, -0.4034968912601471, -0.6563640236854553, -0.4894717037677765, -0.23443540930747986, -0.20654812455177307, -0.04508465528488159, -0.38928359746932983, -0.33304160833358765, -1.168270230293274, 0.46991345286369324]} +{"t": 7.4809, "q": [-0.39045435190200806, -0.026677630841732025, 0.003481892868876457, 0.6490187644958496, -0.29407134652137756, 0.022056683897972107, -0.3228825032711029, -0.024535169824957848, 0.009441286325454712, 0.6154160499572754, -0.3417336642742157, 0.031152572482824326, 0.05963411182165146, 0.015848422423005104, -0.0448639839887619, -0.01635846681892872, 0.33928540349006653, -0.6473159193992615, 0.06899318099021912, -0.40470728278160095, -0.656387984752655, -0.48957955837249756, -0.2343994677066803, -0.19813519716262817, -0.04062652215361595, -0.38571229577064514, -0.33815887570381165, -1.1695884466171265, 0.47120773792266846]} +{"t": 7.4976, "q": [-0.39096570014953613, -0.0270099937915802, 0.0037095551379024982, 0.6496919989585876, -0.29429662227630615, 0.022431887686252594, -0.32272058725357056, -0.025020930916070938, 0.009414502419531345, 0.6152711510658264, -0.3415844440460205, 0.03136184811592102, 0.06000908464193344, 0.01565028727054596, -0.04439716786146164, -0.013230584561824799, 0.3472069799900055, -0.6444637179374695, 0.06579339504241943, -0.4055701494216919, -0.6564479470252991, -0.4899630546569824, -0.23551400005817413, -0.1910645067691803, -0.03747467324137688, -0.3823327422142029, -0.3426889181137085, -1.1706551313400269, 0.4729454517364502]} +{"t": 7.5144, "q": [-0.3915196359157562, -0.02718043513596058, 0.004097919911146164, 0.6501692533493042, -0.2945845425128937, 0.02292979694902897, -0.32268649339675903, -0.025464080274105072, 0.009414502419531345, 0.6149558424949646, -0.34154802560806274, 0.03139780834317207, 0.06063850224018097, 0.015376065857708454, -0.04389076307415962, -0.008496815338730812, 0.35533228516578674, -0.6404130458831787, 0.062006380409002304, -0.4068165123462677, -0.6562561988830566, -0.49047839641571045, -0.24058331549167633, -0.18583938479423523, -0.03580886498093605, -0.3803553283214569, -0.3481297492980957, -1.1718775033950806, 0.4760134220123291]} +{"t": 7.5311, "q": [-0.39179232716560364, -0.02731679007411003, 0.004432717338204384, 0.650271475315094, -0.29479312896728516, 0.023276127874851227, -0.3226012885570526, -0.025779400020837784, 0.009427894838154316, 0.6144359707832336, -0.3415197432041168, 0.031433865427970886, 0.06081259995698929, 0.01503362599760294, -0.043586693704128265, -0.003091930178925395, 0.3628104329109192, -0.6354874968528748, 0.05873468890786171, -0.4087938964366913, -0.6564119458198547, -0.4910656213760376, -0.24591630697250366, -0.18186061084270477, -0.034946002066135406, -0.379264771938324, -0.3548648953437805, -1.173651099205017, 0.4791053533554077]} +{"t": 7.5478, "q": [-0.3918178975582123, -0.027410533279180527, 0.004566636402159929, 0.6503311395645142, -0.29494747519493103, 0.02352864481508732, -0.3222348392009735, -0.025890186429023743, 0.009427894838154316, 0.6138820648193359, -0.34142637252807617, 0.03149823099374771, 0.06095990911126137, 0.014615130610764027, -0.043252360075712204, 0.0023489082232117653, 0.370887815952301, -0.6304301619529724, 0.057020943611860275, -0.4104117751121521, -0.6565437912940979, -0.49182063341140747, -0.2518245279788971, -0.17864884436130524, -0.03363972157239914, -0.3777547776699066, -0.3608929514884949, -1.176934838294983, 0.4819815754890442]} +{"t": 7.5648, "q": [-0.39182642102241516, -0.02743609994649887, 0.004566636402159929, 0.6503908038139343, -0.29506853222846985, 0.023752376437187195, -0.3217064440250397, -0.025907231494784355, 0.009374327026307583, 0.6133451461791992, -0.3412523865699768, 0.03167811036109924, 0.06130809709429741, 0.014090143144130707, -0.042867764830589294, 0.00672315014526248, 0.3793366849422455, -0.6268948316574097, 0.05482783168554306, -0.41150233149528503, -0.6567954421043396, -0.4925875961780548, -0.2569897174835205, -0.17671938240528107, -0.03221359848976135, -0.3764365017414093, -0.36729252338409424, -1.181045413017273, 0.483827143907547]} +{"t": 7.5816, "q": [-0.3918178975582123, -0.027444621548056602, 0.0045130690559744835, 0.6504248976707458, -0.2951728403568268, 0.023932773619890213, -0.3214252293109894, -0.025907231494784355, 0.009227016009390354, 0.6132344007492065, -0.3409934639930725, 0.03195157274603844, 0.06197769194841385, 0.013336924836039543, -0.04229388013482094, 0.01152882445603609, 0.389870822429657, -0.6231317520141602, 0.05102883279323578, -0.41171807050704956, -0.6566756367683411, -0.49409762024879456, -0.2621309459209442, -0.1754610389471054, -0.029996516183018684, -0.3754657804965973, -0.3751661777496338, -1.1853597164154053, 0.4856487512588501]} +{"t": 7.5983, "q": [-0.39174970984458923, -0.027478709816932678, 0.004432717338204384, 0.6503993272781372, -0.2952479422092438, 0.024062657728791237, -0.32120364904403687, -0.025907231494784355, 0.00898596178740263, 0.6132429242134094, -0.34092894196510315, 0.0320381224155426, 0.06252676248550415, 0.012674952857196331, -0.04168219491839409, 0.01581917703151703, 0.3981758952140808, -0.6191170811653137, 0.04742157831788063, -0.41174203157424927, -0.6566516757011414, -0.49617090821266174, -0.26651719212532043, -0.17512547969818115, -0.026197517290711403, -0.3744351267814636, -0.3817574977874756, -1.1883916854858398, 0.48718273639678955]} +{"t": 7.6151, "q": [-0.39159631729125977, -0.027478709816932678, 0.0045130690559744835, 0.6503908038139343, -0.2952730059623718, 0.024120420217514038, -0.3210161626338959, -0.02587314322590828, 0.008637772873044014, 0.6132940649986267, -0.34094125032424927, 0.03204554691910744, 0.06303565204143524, 0.011587398126721382, -0.04124505817890167, 0.020181436091661453, 0.4066726863384247, -0.6136162877082825, 0.042819637805223465, -0.4118139445781708, -0.6566036939620972, -0.4989512264728546, -0.27095136046409607, -0.17512547969818115, -0.019162775948643684, -0.37278130650520325, -0.3893195390701294, -1.1913518905639648, 0.48939982056617737]} +{"t": 7.6318, "q": [-0.3911190927028656, -0.027478709816932678, 0.004995177034288645, 0.6503481864929199, -0.2952730357646942, 0.024134883657097816, -0.3201213479042053, -0.025787921622395515, 0.007901218719780445, 0.6132940649986267, -0.34096574783325195, 0.03204583749175072, 0.06335705518722534, 0.010423896834254265, -0.04078884795308113, 0.023812655359506607, 0.4155290424823761, -0.6089304685592651, 0.03846936300396919, -0.4118858277797699, -0.6566396951675415, -0.5008087754249573, -0.2755053639411926, -0.17504160106182098, -0.01125318743288517, -0.37038445472717285, -0.39899080991744995, -1.1943957805633545, 0.4917966425418854]} +{"t": 7.6486, "q": [-0.39022427797317505, -0.02741905488073826, 0.004821082577109337, 0.6502885222434998, -0.2952730059623718, 0.024120420217514038, -0.31868961453437805, -0.025617478415369987, 0.006910218391567469, 0.6132344007492065, -0.3410516083240509, 0.03205415606498718, 0.06391951441764832, 0.009488118812441826, -0.03987101465463638, 0.02575409971177578, 0.4233906865119934, -0.6052153706550598, 0.035784896463155746, -0.4118858277797699, -0.6566277146339417, -0.5022828578948975, -0.2797597646713257, -0.1741907149553299, -0.004278368316590786, -0.3675202429294586, -0.4066367447376251, -1.1980270147323608, 0.4946129322052002]} +{"t": 7.6653, "q": [-0.3897555470466614, -0.027265656739473343, 0.003923825453966856, 0.6501607298851013, -0.2952730059623718, 0.024120420217514038, -0.3176669776439667, -0.025412948802113533, 0.005745123140513897, 0.6128594279289246, -0.3411622643470764, 0.03209185227751732, 0.06456232815980911, 0.007183581590652466, -0.03797163441777229, 0.02773149684071541, 0.43186354637145996, -0.601991593837738, 0.03329217806458473, -0.4118139445781708, -0.656615674495697, -0.5038647651672363, -0.28376248478889465, -0.17268070578575134, 0.001342233270406723, -0.3642605245113373, -0.4149777591228485, -1.2033600807189941, 0.4982801079750061]} +{"t": 7.6821, "q": [-0.3896532952785492, -0.02707817032933235, 0.0031604873947799206, 0.6501436829566956, -0.2952605187892914, 0.024113241583108902, -0.31725791096687317, -0.02509762905538082, 0.004888041876256466, 0.6124333143234253, -0.34121957421302795, 0.032107070088386536, 0.06524531543254852, 0.00517614372074604, -0.03638822212815285, 0.03076350688934326, 0.4387185275554657, -0.5984442830085754, 0.03026016801595688, -0.411765992641449, -0.6565917134284973, -0.5053388476371765, -0.2875734567642212, -0.17137442529201508, 0.006219812668859959, -0.3615281283855438, -0.4242176115512848, -1.2071590423583984, 0.5024985671043396]} +{"t": 7.6988, "q": [-0.3897385001182556, -0.026694675907492638, 0.0027855143416672945, 0.6500584483146667, -0.2952563166618347, 0.0240915659815073, -0.3171130418777466, -0.024628913030028343, 0.004312190227210522, 0.6118537783622742, -0.34122762084007263, 0.0320926159620285, 0.0659416913986206, 0.0033288344275206327, -0.03510883450508118, 0.035065844655036926, 0.4450581669807434, -0.5940819978713989, 0.026760775595903397, -0.41169407963752747, -0.6565917134284973, -0.5069447159767151, -0.2912646234035492, -0.17040370404720306, 0.013158679008483887, -0.3575613498687744, -0.43409261107444763, -1.209891438484192, 0.5059380531311035]} +{"t": 7.7156, "q": [-0.3897385001182556, -0.026362312957644463, 0.002397149335592985, 0.6498624086380005, -0.2952522039413452, 0.024098815396428108, -0.3168403208255768, -0.02425394020974636, 0.003803298342972994, 0.6111975908279419, -0.3412112593650818, 0.032092418521642685, 0.06650415062904358, 0.0016718710539862514, -0.033926259726285934, 0.039452068507671356, 0.4514697194099426, -0.5909062027931213, 0.022458437830209732, -0.41167011857032776, -0.6565437912940979, -0.5077955722808838, -0.2944644093513489, -0.16942098736763, 0.022278673946857452, -0.3531271815299988, -0.44354817271232605, -1.211904764175415, 0.5079753398895264]} +{"t": 7.7323, "q": [-0.3897385001182556, -0.026081083342432976, 0.0019686087034642696, 0.6497175693511963, -0.2952563762664795, 0.02410602755844593, -0.3163716197013855, -0.02395566552877426, 0.0032944062259048223, 0.6102687120437622, -0.34120723605155945, 0.03209966421127319, 0.06662467867136002, 0.0004483208467718214, -0.03297631815075874, 0.044197823852300644, 0.4575936794281006, -0.5877663493156433, 0.018623486161231995, -0.4116341769695282, -0.656615674495697, -0.5087423324584961, -0.2978319525718689, -0.16753946244716644, 0.031806133687496185, -0.346763551235199, -0.45168545842170715, -1.214002013206482, 0.5097609758377075]} +{"t": 7.749, "q": [-0.3896447718143463, -0.02605551667511463, 0.001232054433785379, 0.6496152877807617, -0.29526469111442566, 0.024120455607771873, -0.3155961036682129, -0.023853400722146034, 0.002504284493625164, 0.6091863512992859, -0.34120723605155945, 0.03209966421127319, 0.06701304763555527, -0.00019756615802180022, -0.03209628909826279, 0.048296429216861725, 0.46299856901168823, -0.5854893326759338, 0.015627428889274597, -0.41167011857032776, -0.656615674495697, -0.5095932483673096, -0.29980936646461487, -0.1640520542860031, 0.03815777227282524, -0.3406635820865631, -0.45965495705604553, -1.2153083086013794, 0.5112350583076477]} +{"t": 7.7661, "q": [-0.3896532952785492, -0.02605551667511463, 0.00044193255598656833, 0.6494874358177185, -0.2952730357646942, 0.024134883657097816, -0.3149058222770691, -0.023810790851712227, 0.0017007706919685006, 0.6080188751220703, -0.34119921922683716, 0.032114122062921524, 0.0671335756778717, -0.00018996746803168207, -0.031501155346632004, 0.052383050322532654, 0.4683435261249542, -0.5840752124786377, 0.012799152173101902, -0.4117060601711273, -0.6566636562347412, -0.5100486278533936, -0.3009238839149475, -0.1595100313425064, 0.04230431467294693, -0.3352227509021759, -0.46706122159957886, -1.2161352634429932, 0.5124454498291016]} +{"t": 7.7829, "q": [-0.389525443315506, -0.026064038276672363, -0.00022766222537029535, 0.6492999792098999, -0.2952689528465271, 0.024156613275408745, -0.31387463212013245, -0.02382783405482769, 0.0009106489014811814, 0.6067575812339783, -0.34115058183670044, 0.032157208770513535, 0.06738802045583725, 0.0001519346551503986, -0.030828332528471947, 0.05625395476818085, 0.47378435730934143, -0.5831404328346252, 0.010234528221189976, -0.41169407963752747, -0.6567834615707397, -0.5105400085449219, -0.30185866355895996, -0.15418903529644012, 0.04589958116412163, -0.3292545974254608, -0.4740120470523834, -1.2171299457550049, 0.5135959386825562]} +{"t": 7.7996, "q": [-0.3891845643520355, -0.02610665000975132, -0.0005892434273846447, 0.6490017175674438, -0.29527729749679565, 0.02417105808854103, -0.3130139112472534, -0.023802269250154495, 0.000522283953614533, 0.6055985689163208, -0.34111401438713074, 0.032178618013858795, 0.06772281974554062, 0.0005165835027582943, -0.029935527592897415, 0.060148827731609344, 0.47851812839508057, -0.5820738077163696, 0.007502125110477209, -0.4117300510406494, -0.6568913459777832, -0.5108036398887634, -0.3026975691318512, -0.14871224761009216, 0.05035771429538727, -0.3227232098579407, -0.48174187541007996, -1.2188076972961426, 0.5144109129905701]} +{"t": 7.8165, "q": [-0.3890226483345032, -0.02609812654554844, -0.0007901218486949801, 0.6488056778907776, -0.29529818892478943, 0.024221589788794518, -0.31236621737480164, -0.023802269250154495, 0.00021427033061627299, 0.6045588850975037, -0.3410698175430298, 0.03225813806056976, 0.06811118125915527, 0.0005469709285534918, -0.02929725870490074, 0.0643792599439621, 0.48298823833465576, -0.5808035135269165, 0.0037270940374583006, -0.41180193424224854, -0.6567714810371399, -0.5108994841575623, -0.30363231897354126, -0.1441342830657959, 0.05609815940260887, -0.3161558508872986, -0.49003496766090393, -1.2211805582046509, 0.515693187713623]} +{"t": 7.8333, "q": [-0.3886988162994385, -0.02609812654554844, -0.0011517030652612448, 0.6486778855323792, -0.29532739520072937, 0.02427210472524166, -0.31135207414627075, -0.02376817911863327, -0.0001740946463542059, 0.6030675172805786, -0.34102147817611694, 0.03233033046126366, 0.06840579956769943, 0.0005316986935213208, -0.0283059049397707, 0.06878945231437683, 0.4880935251712799, -0.579581081867218, -0.0003954794374294579, -0.4118379056453705, -0.6569153070449829, -0.5109114646911621, -0.3043633699417114, -0.1396162211894989, 0.06349242478609085, -0.308917373418808, -0.4956076443195343, -1.2240808010101318, 0.5173470377922058]} +{"t": 7.8501, "q": [-0.38775286078453064, -0.026072561740875244, -0.0016873788554221392, 0.6485159397125244, -0.29535242915153503, 0.024315405637025833, -0.3095027804374695, -0.023572171106934547, -0.0005624596378766, 0.601848840713501, -0.3409244418144226, 0.03241651505231857, 0.06840579956769943, 0.0004101242811884731, -0.026806391775608063, 0.07317567616701126, 0.49310293793678284, -0.5775437951087952, -0.004230431281030178, -0.411765992641449, -0.6569752097129822, -0.5109953880310059, -0.30487868189811707, -0.13428324460983276, 0.06943660229444504, -0.3023739755153656, -0.5026783347129822, -1.2261899709701538, 0.5187132358551025]} +{"t": 7.8668, "q": [-0.3860399127006531, -0.026064038276672363, -0.0019953923765569925, 0.6484136581420898, -0.29544419050216675, 0.024459680542349815, -0.3073296546936035, -0.02352103777229786, -0.0008570813224650919, 0.6009966135025024, -0.34094080328941345, 0.0324166938662529, 0.06839241087436676, -0.00027334183687344193, -0.024690162390470505, 0.07751397043466568, 0.4967581331729889, -0.574355959892273, -0.008245146833360195, -0.4118139445781708, -0.6570231914520264, -0.5111032128334045, -0.3055977523326874, -0.12844692170619965, 0.07381084561347961, -0.29577067494392395, -0.5091737508773804, -1.2279516458511353, 0.5195760726928711]} +{"t": 7.8839, "q": [-0.3856223225593567, -0.02605551667511463, -0.0019686087034642696, 0.6483369469642639, -0.29567745327949524, 0.024704627692699432, -0.30675867199897766, -0.023512516170740128, -0.0007901218486949801, 0.6006472110748291, -0.3410094380378723, 0.032352034002542496, 0.06833884119987488, -0.0001822279009502381, -0.023660654202103615, 0.08198408782482147, 0.49974218010902405, -0.5714917778968811, -0.011780492961406708, -0.4118379056453705, -0.6572748422622681, -0.5111751556396484, -0.3061490058898926, -0.12197544425725937, 0.07695070654153824, -0.2896347641944885, -0.5127450823783875, -1.2296533584594727, 0.5203071236610413]} +{"t": 7.9007, "q": [-0.3855115473270416, -0.026072561740875244, -0.0018748653819784522, 0.648405134677887, -0.29579436779022217, 0.024950090795755386, -0.30649447441101074, -0.023512516170740128, -0.0007231623749248683, 0.6004171371459961, -0.3409852981567383, 0.032380856573581696, 0.06837902218103409, -3.037131500605028e-05, -0.023285837844014168, 0.08573514968156815, 0.5028940439224243, -0.5696102380752563, -0.01577123999595642, -0.4118858277797699, -0.6571909189224243, -0.5111991167068481, -0.30670028924942017, -0.11496467143297195, 0.07874834537506104, -0.2846253514289856, -0.5157651305198669, -1.231570839881897, 0.5208344459533691]} +{"t": 7.9175, "q": [-0.38494908809661865, -0.026072561740875244, -0.0016204193234443665, 0.6483114361763, -0.29585281014442444, 0.02503664791584015, -0.30603429675102234, -0.023503994569182396, -0.000522283953614533, 0.6003233790397644, -0.34099745750427246, 0.03237372264266014, 0.06821831315755844, -0.00038712224340997636, -0.022338705137372017, 0.08942628651857376, 0.5053508281707764, -0.5675369501113892, -0.01985786110162735, -0.4118858277797699, -0.6571789383888245, -0.5111991167068481, -0.3078148365020752, -0.10824152082204819, 0.07961120456457138, -0.2808023691177368, -0.5195281505584717, -1.2333205938339233, 0.5212898254394531]} +{"t": 7.9342, "q": [-0.3847530782222748, -0.026089604943990707, -0.0012990138493478298, 0.6482006311416626, -0.2958821952342987, 0.025116128847002983, -0.30603429675102234, -0.023495472967624664, -0.00026783792418427765, 0.6002466678619385, -0.3410094380378723, 0.032352034002542496, 0.06812456995248795, -0.0005768886185251176, -0.02168552204966545, 0.09248226881027222, 0.5076277852058411, -0.565379798412323, -0.02311757020652294, -0.4118858277797699, -0.6571909189224243, -0.5111871361732483, -0.3084380030632019, -0.10153035819530487, 0.07961120456457138, -0.278129905462265, -0.5229915976524353, -1.234147548675537, 0.5218411087989807]} +{"t": 7.9509, "q": [-0.38422468304634094, -0.026089604943990707, -0.0012052706442773342, 0.6482347249984741, -0.29586154222488403, 0.025152375921607018, -0.30560818314552307, -0.023486949503421783, -0.00020087843586225063, 0.6002551913261414, -0.3410094380378723, 0.032352034002542496, 0.06760229170322418, -0.001244863960891962, -0.020826704800128937, 0.09431584924459457, 0.510240375995636, -0.5639776587486267, -0.0264851376414299, -0.41194576025009155, -0.6569752097129822, -0.5111631751060486, -0.30934879183769226, -0.09610150009393692, 0.07959922403097153, -0.2756132185459137, -0.5269463658332825, -1.2345070838928223, 0.5225481986999512]} +{"t": 7.9677, "q": [-0.38398608565330505, -0.02603847160935402, -0.001232054433785379, 0.6481921076774597, -0.29586154222488403, 0.025152375921607018, -0.3053269386291504, -0.0234102513641119, -0.0002410541201243177, 0.6002551913261414, -0.3410094380378723, 0.032352034002542496, 0.06701304763555527, -0.0017987642204388976, -0.020035451278090477, 0.09501093626022339, 0.5121219158172607, -0.5628990530967712, -0.0288819819688797, -0.4124850630760193, -0.6570111513137817, -0.5111032128334045, -0.31017571687698364, -0.09190702438354492, 0.07961120456457138, -0.27302461862564087, -0.5297626852989197, -1.2347347736358643, 0.5231833457946777]} +{"t": 7.9844, "q": [-0.38361111283302307, -0.025944728404283524, -0.001232054433785379, 0.6481324434280396, -0.29583242535591125, 0.025159724056720734, -0.3049434423446655, -0.023273896425962448, -0.00022766222537029535, 0.6002466678619385, -0.34100526571273804, 0.03234470635652542, 0.06643719226121902, -0.002443672390654683, -0.01918780617415905, 0.095058873295784, 0.513008713722229, -0.5617845058441162, -0.030308105051517487, -0.4136115610599518, -0.6570111513137817, -0.5109714269638062, -0.311002641916275, -0.08770056068897247, 0.07955128699541092, -0.27060380578041077, -0.531164824962616, -1.2347826957702637, 0.5237346291542053]} +{"t": 8.0011, "q": [-0.383057177066803, -0.025714632123708725, -0.001191878691315651, 0.648098349571228, -0.2958199381828308, 0.02515253983438015, -0.3043639659881592, -0.023018233478069305, -0.0002544460294302553, 0.6002466678619385, -0.34100526571273804, 0.03234470635652542, 0.0656202882528305, -0.0031642403919249773, -0.018188759684562683, 0.09499895572662354, 0.5131165981292725, -0.5604302883148193, -0.03165033832192421, -0.4147740304470062, -0.6569752097129822, -0.5107197165489197, -0.3119853436946869, -0.08347012847661972, 0.07947938144207001, -0.26843467354774475, -0.532279372215271, -1.2348066568374634, 0.5240342020988464]} +{"t": 8.0179, "q": [-0.3823668658733368, -0.025339659303426743, -0.0012052706442773342, 0.6480898261070251, -0.29581570625305176, 0.0251308586448431, -0.3038526177406311, -0.022643260657787323, -0.0002410541201243177, 0.60028076171875, -0.34100112318992615, 0.032337382435798645, 0.06449536979198456, -0.003968105185776949, -0.017079345881938934, 0.09499895572662354, 0.5130806565284729, -0.5589922070503235, -0.034035198390483856, -0.4168952405452728, -0.6568314433097839, -0.5104560852050781, -0.3133874833583832, -0.0797310471534729, 0.07952731847763062, -0.26633742451667786, -0.5330823063850403, -1.2348185777664185, 0.5241181254386902]} +{"t": 8.0348, "q": [-0.38215380907058716, -0.024768676608800888, -0.0011784868547692895, 0.6481068730354309, -0.29579901695251465, 0.025116441771388054, -0.3037247955799103, -0.02214045636355877, -0.0002410541201243177, 0.6002892851829529, -0.34100112318992615, 0.032337382435798645, 0.06320974975824356, -0.0042544202879071236, -0.016239818185567856, 0.0950828418135643, 0.5128169655799866, -0.5574702024459839, -0.037043239921331406, -0.42003512382507324, -0.6568194031715393, -0.5103602409362793, -0.31516116857528687, -0.07679491490125656, 0.07957525551319122, -0.2641083598136902, -0.5333099961280823, -1.2348185777664185, 0.5242019891738892]} +{"t": 8.0515, "q": [-0.3819407820701599, -0.024206217378377914, -0.0011383111122995615, 0.6481239199638367, -0.29578644037246704, 0.025094792246818542, -0.30369070172309875, -0.0217143502086401, -0.0002410541201243177, 0.600348949432373, -0.34099280834198, 0.03232269734144211, 0.06179020553827286, -0.00436387350782752, -0.015677476301789284, 0.09513077884912491, 0.5123496055603027, -0.5554928183555603, -0.039200399070978165, -0.42192861437797546, -0.6567355394363403, -0.5102643370628357, -0.3172224462032318, -0.07452989369630814, 0.07949136942625046, -0.261807382106781, -0.5332261323928833, -1.2347946166992188, 0.524213969707489]} +{"t": 8.0682, "q": [-0.38160839676856995, -0.023481838405132294, -0.0010579597437754273, 0.6481068730354309, -0.2957615256309509, 0.02509489841759205, -0.3035287857055664, -0.021024059504270554, -0.00020087843586225063, 0.600348949432373, -0.34099280834198, 0.03232269734144211, 0.059928733855485916, -0.00429448951035738, -0.015252922661602497, 0.09527458995580673, 0.5117504000663757, -0.5535393953323364, -0.04069842770695686, -0.42328283190727234, -0.6564479470252991, -0.510012686252594, -0.3200267553329468, -0.07246860861778259, 0.07932358980178833, -0.25917086005210876, -0.5330583453178406, -1.2347826957702637, 0.5242379307746887]} +{"t": 8.0852, "q": [-0.38124194741249084, -0.022527361288666725, -0.0008035137434490025, 0.648098349571228, -0.2957615256309509, 0.02509489841759205, -0.3033924400806427, -0.020197413861751556, -6.695948104606941e-05, 0.6003659963607788, -0.3409844934940338, 0.03230804577469826, 0.05830831453204155, -0.00408901134505868, -0.015042521990835667, 0.09529855847358704, 0.5115586519241333, -0.5519814491271973, -0.041741058230400085, -0.4242415726184845, -0.6561123728752136, -0.5097010731697083, -0.3230228126049042, -0.0709705799818039, 0.07921572774648666, -0.2568938434123993, -0.5329025387763977, -1.234770655632019, 0.524213969707489]} +{"t": 8.102, "q": [-0.38081586360931396, -0.021487662568688393, -0.00042854066123254597, 0.6480642557144165, -0.29576563835144043, 0.025073185563087463, -0.30332425236701965, -0.019174760207533836, 0.00013391896209213883, 0.6003574728965759, -0.3409803509712219, 0.03230072185397148, 0.05698251724243164, -0.003929064609110355, -0.01486147753894329, 0.09525062143802643, 0.5114867091178894, -0.5503275990486145, -0.042699795216321945, -0.4252602458000183, -0.6560524702072144, -0.5094494223594666, -0.32640236616134644, -0.06950850784778595, 0.07903596758842468, -0.2542213797569275, -0.5321115851402283, -1.234758734703064, 0.5242019891738892]} +{"t": 8.1187, "q": [-0.380253404378891, -0.020422397181391716, -0.00013391896209213883, 0.6478853225708008, -0.29576146602630615, 0.02506595477461815, -0.3032645881175995, -0.018152106553316116, 0.0002946217136923224, 0.6003745198249817, -0.340963751077652, 0.03227142244577408, 0.05597812309861183, -0.003784887259826064, -0.014768518507480621, 0.09509482979774475, 0.5114627480506897, -0.5490932464599609, -0.04412591829895973, -0.42685413360595703, -0.6560044884681702, -0.5093055963516235, -0.3293025493621826, -0.06771086901426315, 0.07812516391277313, -0.25283119082450867, -0.5306974649429321, -1.2347227334976196, 0.524213969707489]} +{"t": 8.1355, "q": [-0.3796057105064392, -0.019467920064926147, -8.035137580009177e-05, 0.6475955247879028, -0.2957405149936676, 0.025000959634780884, -0.30304303765296936, -0.01721467263996601, 0.00033479739795438945, 0.6003830432891846, -0.3409712612628937, 0.032198742032051086, 0.05506747588515282, -0.0036635487340390682, -0.014700026251375675, 0.09495101869106293, 0.5114148259162903, -0.5477989315986633, -0.04634299874305725, -0.4292150139808655, -0.6558247208595276, -0.5092337131500244, -0.3316035270690918, -0.06579339504241943, 0.07741809636354446, -0.2519683241844177, -0.5293791890144348, -1.2347108125686646, 0.5242019891738892]} +{"t": 8.1522, "q": [-0.37917107343673706, -0.018257780000567436, -5.3567582654068246e-05, 0.6473654508590698, -0.2957445979118347, 0.024979230016469955, -0.3027873635292053, -0.01624315232038498, 0.0002946217136923224, 0.6003659963607788, -0.34107184410095215, 0.0320325531065464, 0.054197002202272415, -0.003535057883709669, -0.01461719535291195, 0.09486712515354156, 0.5114268064498901, -0.5462409853935242, -0.04869190603494644, -0.4314081370830536, -0.6558486819267273, -0.5093415379524231, -0.3336288332939148, -0.06439124047756195, 0.0764114186167717, -0.25121334195137024, -0.5282886028289795, -1.2346148490905762, 0.5240941643714905]} +{"t": 8.169, "q": [-0.3786938488483429, -0.016757888719439507, 6.695948104606941e-05, 0.647212028503418, -0.2957361936569214, 0.024935858324170113, -0.3026510179042816, -0.015041533857584, 0.0002410541201243177, 0.6004000902175903, -0.3411223292350769, 0.03174933046102524, 0.053500622510910034, -0.0034221638925373554, -0.01457364670932293, 0.09447164833545685, 0.511127233505249, -0.5449346899986267, -0.05077716335654259, -0.4318755269050598, -0.6559086441993713, -0.5094374418258667, -0.33603766560554504, -0.06373210996389389, 0.07587213069200516, -0.2506261169910431, -0.527126133441925, -1.234531044960022, 0.523902416229248]} +{"t": 8.1857, "q": [-0.3783700168132782, -0.015240952372550964, 0.00033479739795438945, 0.6470927596092224, -0.29570701718330383, 0.024899806827306747, -0.30263397097587585, -0.01369503978639841, 0.0002410541201243177, 0.6003830432891846, -0.34119293093681335, 0.0314299501478672, 0.053031906485557556, -0.003264201106503606, -0.014569216407835484, 0.09383648633956909, 0.5105639696121216, -0.544083833694458, -0.052682653069496155, -0.43197140097618103, -0.6558846831321716, -0.5094853639602661, -0.3381229341030121, -0.06336060166358948, 0.07562046498060226, -0.2506261169910431, -0.5246694087982178, -1.234531044960022, 0.5236507058143616]} +{"t": 8.2025, "q": [-0.37793537974357605, -0.013860369101166725, 0.00042854066123254597, 0.6468967199325562, -0.2956612706184387, 0.024878308176994324, -0.30267655849456787, -0.012203669175505638, 0.00026783792418427765, 0.6004086136817932, -0.3412051796913147, 0.030993498861789703, 0.052161432802677155, -0.003196528647094965, -0.014584029093384743, 0.09341703355312347, 0.5100366473197937, -0.5433048605918884, -0.055582836270332336, -0.43239083886146545, -0.655561089515686, -0.5094733834266663, -0.3405197858810425, -0.06294114887714386, 0.07487744092941284, -0.2506980001926422, -0.5190128087997437, -1.2344111204147339, 0.5230874419212341]} +{"t": 8.2192, "q": [-0.3773643970489502, -0.012513874098658562, 0.0002410541201243177, 0.6465047001838684, -0.2955861985683441, 0.024762887507677078, -0.3026680648326874, -0.010754909366369247, 0.0002946217136923224, 0.6004427075386047, -0.3412325084209442, 0.030470076948404312, 0.05078206956386566, -0.003136385465040803, -0.014603694900870323, 0.09327322244644165, 0.509784996509552, -0.5426217317581177, -0.05844706669449806, -0.4335293471813202, -0.6555371284484863, -0.509353518486023, -0.3438034653663635, -0.06291718035936356, 0.07411044836044312, -0.25070998072624207, -0.510755717754364, -1.2342194318771362, 0.5228357911109924]} +{"t": 8.236, "q": [-0.3766741156578064, -0.011584963649511337, -0.00010713516530813649, 0.6458229422569275, -0.29543188214302063, 0.024510370567440987, -0.3026595413684845, -0.009502158500254154, 0.00026783792418427765, 0.6004853248596191, -0.34141355752944946, 0.029773756861686707, 0.049322351813316345, -0.0029410647694021463, -0.014760216698050499, 0.09294965118169785, 0.5098568797111511, -0.542597770690918, -0.0607600212097168, -0.4350992739200592, -0.6555491089820862, -0.5094374418258667, -0.3473747670650482, -0.06300107389688492, 0.07312773913145065, -0.2523038983345032, -0.5034453272819519, -1.234015703201294, 0.5222964882850647]} +{"t": 8.2528, "q": [-0.37531909346580505, -0.011388955637812614, -0.00012052706006215885, 0.6449451446533203, -0.29486724734306335, 0.02461404539644718, -0.30225899815559387, -0.008104532025754452, 0.0002812298189383, 0.6005023121833801, -0.3414866626262665, 0.028930796310305595, 0.04717964679002762, -0.0025202911347150803, -0.015044099651277065, 0.0929376631975174, 0.5099647641181946, -0.5426217317581177, -0.06343250721693039, -0.43741223216056824, -0.6554651856422424, -0.5095812678337097, -0.35253995656967163, -0.06302504241466522, 0.07198923826217651, -0.2543891370296478, -0.49497246742248535, -1.2338957786560059, 0.5219729542732239]} +{"t": 8.2695, "q": [-0.3734697997570038, -0.011584963649511337, -4.017568790004589e-05, 0.6439395546913147, -0.29417070746421814, 0.025108931586146355, -0.30135565996170044, -0.006834736559540033, 0.00033479739795438945, 0.6005193591117859, -0.34184277057647705, 0.02814185619354248, 0.044260215014219284, -0.0021661019418388605, -0.015283709391951561, 0.09304552525281906, 0.5098568797111511, -0.5427056550979614, -0.06689594686031342, -0.44034838676452637, -0.6553933024406433, -0.5096291899681091, -0.35957470536231995, -0.06310892850160599, 0.07103050500154495, -0.25485652685165405, -0.4852292835712433, -1.23356032371521, 0.5217452049255371]} +{"t": 8.2867, "q": [-0.3715267479419708, -0.011354867368936539, -0.00018748654110822827, 0.64256751537323, -0.29222801327705383, 0.0271643977612257, -0.3001881241798401, -0.005803560372442007, 0.00030801360844634473, 0.6005278825759888, -0.34225618839263916, 0.027353568002581596, 0.04055066034197807, -0.0018755547935143113, -0.015566444955766201, 0.09332115948200226, 0.5096890926361084, -0.5426816940307617, -0.06998787820339203, -0.4420860707759857, -0.6554412245750427, -0.5096052289009094, -0.3681434094905853, -0.06312091648578644, 0.06959239393472672, -0.2550722360610962, -0.4776073396205902, -1.2331887483596802, 0.5217092633247375]} +{"t": 8.3034, "q": [-0.369387686252594, -0.010877628810703754, -0.0006428110064007342, 0.640479564666748, -0.2913942039012909, 0.02598162740468979, -0.29878196120262146, -0.005002481862902641, 0.0001740946463542059, 0.6004853248596191, -0.3429705500602722, 0.025979410856962204, 0.03607776761054993, -0.0016812568064779043, -0.016107264906167984, 0.09317734837532043, 0.5097010731697083, -0.5429333448410034, -0.07306782156229019, -0.44347625970840454, -0.6553094387054443, -0.5096291899681091, -0.3765563368797302, -0.06337258219718933, 0.06905310600996017, -0.25603097677230835, -0.46779224276542664, -1.2324817180633545, 0.521673321723938]} +{"t": 8.3201, "q": [-0.36692479252815247, -0.010468566790223122, -0.0011650949018076062, 0.6384087204933167, -0.290614515542984, 0.024849263951182365, -0.29722240567207336, -0.004405933897942305, 0.0, 0.600510835647583, -0.3435842990875244, 0.02477140910923481, 0.03180575370788574, -0.0018105990020558238, -0.016622377559542656, 0.09310544282197952, 0.5095332860946655, -0.5429812669754028, -0.07681888341903687, -0.44504618644714355, -0.6552255153656006, -0.5095932483673096, -0.3856523633003235, -0.06448711454868317, 0.06801047921180725, -0.25651034712791443, -0.4603860080242157, -1.2310556173324585, 0.5217812061309814]} +{"t": 8.337, "q": [-0.36487096548080444, -0.009752709418535233, -0.0014061490073800087, 0.6364912390708923, -0.2900431454181671, 0.023961953818798065, -0.29631054401397705, -0.0035537220537662506, -5.3567582654068246e-05, 0.600510835647583, -0.34410667419433594, 0.0238315612077713, 0.02942199446260929, -0.0016238093376159668, -0.01761254109442234, 0.0923624262213707, 0.5089820027351379, -0.5430771708488464, -0.07985088974237442, -0.44714343547821045, -0.6550937294960022, -0.5095452666282654, -0.39307060837745667, -0.06629673391580582, 0.06729142367839813, -0.2575410008430481, -0.4543699026107788, -1.2297133207321167, 0.5225481986999512]} +{"t": 8.3538, "q": [-0.3639846742153168, -0.008909019641578197, -0.0016605950659140944, 0.635016918182373, -0.2896011173725128, 0.02329830639064312, -0.29616567492485046, -0.002496979897841811, -0.00013391896209213883, 0.6005619764328003, -0.34465286135673523, 0.022819241508841515, 0.027654264122247696, -0.0012902256567031145, -0.01985902525484562, 0.09220662713050842, 0.5081071853637695, -0.5431370735168457, -0.08351806551218033, -0.45034322142601013, -0.6549738645553589, -0.5094254612922668, -0.40056073665618896, -0.06878945231437683, 0.0670757070183754, -0.25909894704818726, -0.44696366786956787, -1.2279397249221802, 0.5240581631660461]} +{"t": 8.3708, "q": [-0.3633881211280823, -0.008073852397501469, -0.002048959955573082, 0.6340879797935486, -0.28912195563316345, 0.022728899493813515, -0.2961912453174591, -0.0015254586469382048, -0.00046871634549461305, 0.6007494926452637, -0.34493666887283325, 0.022160468623042107, 0.026100805029273033, -0.0008577417465858161, -0.022079285234212875, 0.09209877252578735, 0.5069566965103149, -0.5431370735168457, -0.08795222640037537, -0.4529797434806824, -0.6543986201286316, -0.5094254612922668, -0.40835049748420715, -0.07192932069301605, 0.06706372648477554, -0.2606329321861267, -0.44255346059799194, -1.2260462045669556, 0.5251128077507019]} +{"t": 8.3875, "q": [-0.3627234101295471, -0.0073665170930325985, -0.002852473873645067, 0.6329289674758911, -0.28843793272972107, 0.021646765992045403, -0.2961912453174591, -0.0006135923322290182, -0.0008838651119731367, 0.6009028553962708, -0.34520021080970764, 0.02140692248940468, 0.024962494149804115, -0.0006605737726204097, -0.024186430498957634, 0.09027716517448425, 0.5058421492576599, -0.5431250929832458, -0.09282980859279633, -0.4547414183616638, -0.6526609063148499, -0.5093895196914673, -0.416655570268631, -0.07627959549427032, 0.0668000727891922, -0.26244255900382996, -0.437915563583374, -1.2237212657928467, 0.5259876251220703]} +{"t": 8.4044, "q": [-0.3621950149536133, -0.006701792124658823, -0.003468500915914774, 0.632034182548523, -0.2876845598220825, 0.02045648917555809, -0.2961827218532562, 9.374327055411413e-05, -0.0014061490073800087, 0.6009625196456909, -0.34536445140838623, 0.020906956866383553, 0.023636694997549057, -0.0006075538694858551, -0.02571810595691204, 0.08835969120264053, 0.504859447479248, -0.543113112449646, -0.09665277600288391, -0.45680272579193115, -0.6501202583312988, -0.5093895196914673, -0.42445728182792664, -0.08130098134279251, 0.06659633666276932, -0.26412034034729004, -0.43370911478996277, -1.221827745437622, 0.5267306566238403]} +{"t": 8.4211, "q": [-0.36157292127609253, -0.006181943230330944, -0.003977392800152302, 0.6311222910881042, -0.28693804144859314, 0.019230308011174202, -0.29620829224586487, 0.0008692557457834482, -0.0016338112764060497, 0.6011926531791687, -0.3455699384212494, 0.020451031625270844, 0.02152077667415142, -0.0003569600230548531, -0.026997553184628487, 0.08565125614404678, 0.5033974051475525, -0.5431610345840454, -0.0995769277215004, -0.45905575156211853, -0.6466088891029358, -0.5093775391578674, -0.4328222870826721, -0.08741293847560883, 0.0664525255560875, -0.26606178283691406, -0.42837613821029663, -1.2202218770980835, 0.5273658037185669]} +{"t": 8.4378, "q": [-0.3611297607421875, -0.0057473150081932545, -0.004539852496236563, 0.6304916739463806, -0.2865612506866455, 0.018617937341332436, -0.296199768781662, 0.0014658038271591067, -0.0021025275345891714, 0.6014653444290161, -0.3458484411239624, 0.019850226119160652, 0.017583558335900307, 0.00025063150678761303, -0.027928190305829048, 0.0839734673500061, 0.5010244846343994, -0.543196976184845, -0.10236924886703491, -0.4611050486564636, -0.6425701975822449, -0.5094374418258667, -0.44147488474845886, -0.09281782805919647, 0.06633269041776657, -0.2675957679748535, -0.42360639572143555, -1.2181485891342163, 0.5280848741531372]} +{"t": 8.4547, "q": [-0.36111271381378174, -0.00527007644996047, -0.005035352893173695, 0.630321204662323, -0.2864328920841217, 0.01840899884700775, -0.29621681571006775, 0.0019174759509041905, -0.002839081920683384, 0.601772129535675, -0.34610244631767273, 0.01926366798579693, 0.013659733347594738, 0.0007900330238044262, -0.028678810223937035, 0.08279900997877121, 0.4989272654056549, -0.5433887243270874, -0.10664761811494827, -0.4622794985771179, -0.6377405524253845, -0.509497344493866, -0.4497799575328827, -0.09774333983659744, 0.06626078486442566, -0.26905784010887146, -0.4189924895763397, -1.2141098976135254, 0.5288159251213074]} +{"t": 8.4716, "q": [-0.361095666885376, -0.004954758565872908, -0.005664771888405085, 0.6302785873413086, -0.286263108253479, 0.01814245618879795, -0.29620829224586487, 0.002283926820382476, -0.003589028026908636, 0.602078914642334, -0.34634071588516235, 0.018778802827000618, 0.008450286462903023, 0.001488980371505022, -0.029601745307445526, 0.08191218227148056, 0.4966382682323456, -0.5446231365203857, -0.11170496046543121, -0.46256712079048157, -0.6333423256874084, -0.5095093250274658, -0.4583366811275482, -0.10417886823415756, 0.06606903672218323, -0.2703641355037689, -0.41422274708747864, -1.208704948425293, 0.5296068787574768]} +{"t": 8.4883, "q": [-0.36093375086784363, -0.004639440216124058, -0.005852258298546076, 0.63009113073349, -0.28615134954452515, 0.017947901040315628, -0.2962849736213684, 0.002718554809689522, -0.0037631227169185877, 0.6025050282478333, -0.346489280462265, 0.018467552959918976, 0.005624596029520035, 0.002203218173235655, -0.03053540363907814, 0.08164852857589722, 0.4940856397151947, -0.5462649464607239, -0.11636682599782944, -0.4625910818576813, -0.6298189759254456, -0.5095093250274658, -0.46503588557243347, -0.1101350262761116, 0.06574545800685883, -0.2707955539226532, -0.4097406566143036, -1.2041629552841187, 0.5306255221366882]} +{"t": 8.505, "q": [-0.3604309558868408, -0.004221856594085693, -0.005691555794328451, 0.6299547553062439, -0.2861182391643524, 0.017861347645521164, -0.29630202054977417, 0.003221359569579363, -0.003481892868876457, 0.6028885245323181, -0.34656140208244324, 0.01829373463988304, 0.0030131766106933355, 0.0027123417239636183, -0.03093411959707737, 0.08112122118473053, 0.49038252234458923, -0.5481584668159485, -0.11923106014728546, -0.46256712079048157, -0.6263794898986816, -0.5095812678337097, -0.47072839736938477, -0.11631888896226883, 0.06447513401508331, -0.2711191177368164, -0.40507879853248596, -1.201011061668396, 0.5316202044487]} +{"t": 8.5218, "q": [-0.36009860038757324, -0.0039321044459939, -0.005530852824449539, 0.6299377083778381, -0.2860725522041321, 0.017782067880034447, -0.2964724600315094, 0.0037326866295188665, -0.0030801359098404646, 0.6033231616020203, -0.34666168689727783, 0.018069231882691383, 0.0012990138493478298, 0.00317583279684186, -0.031096870079636574, 0.08024637401103973, 0.48741042613983154, -0.5507350564002991, -0.12138821929693222, -0.4625910818576813, -0.6220532059669495, -0.5095572471618652, -0.4750666618347168, -0.12301807105541229, 0.06388790160417557, -0.2710232436656952, -0.3988110423088074, -1.1991655826568604, 0.5324831008911133]} +{"t": 8.5385, "q": [-0.3600645065307617, -0.003753140103071928, -0.005249623209238052, 0.629878044128418, -0.28603503108024597, 0.01774611324071884, -0.2969667613506317, 0.003954261541366577, -0.002718554809689522, 0.6040816307067871, -0.3467617928981781, 0.01781567372381687, 0.0003214055032003671, 0.003631722182035446, -0.03122519701719284, 0.07911985367536545, 0.4852772355079651, -0.5541146397590637, -0.12439625710248947, -0.4625910818576813, -0.6148866415023804, -0.5095692276954651, -0.47809869050979614, -0.13026852905750275, 0.06328869611024857, -0.27117905020713806, -0.3915605843067169, -1.1978353261947632, 0.5330343842506409]} +{"t": 8.5553, "q": [-0.3600730299949646, -0.0036593968980014324, -0.005008568987250328, 0.6299036145210266, -0.2859850525856018, 0.017659641802310944, -0.29740139842033386, 0.004090615548193455, -0.0025176764465868473, 0.6050957441329956, -0.34693893790245056, 0.017511991783976555, -0.000709770480170846, 0.004315519705414772, -0.03124566562473774, 0.07801730930805206, 0.48335975408554077, -0.5572065711021423, -0.12772786617279053, -0.46249520778656006, -0.6082833409309387, -0.5097609758377075, -0.48033973574638367, -0.13708755373954773, 0.06236590817570686, -0.2713707983493805, -0.38566434383392334, -1.1963132619857788, 0.533765435218811]} +{"t": 8.572, "q": [-0.3602008521556854, -0.003702007234096527, -0.004539852496236563, 0.6299206614494324, -0.28595593571662903, 0.017580289393663406, -0.29837289452552795, 0.004005394410341978, -0.0021025275345891714, 0.6065700650215149, -0.3473496437072754, 0.016817914322018623, -0.0011517030652612448, 0.005204444285482168, -0.03124372847378254, 0.07699864357709885, 0.48114266991615295, -0.5604302883148193, -0.13004082441329956, -0.46239933371543884, -0.602818489074707, -0.5098568797111511, -0.4812984764575958, -0.14437396824359894, 0.0622820183634758, -0.2713228464126587, -0.3796123266220093, -1.1937726736068726, 0.534963846206665]} +{"t": 8.5887, "q": [-0.3604735732078552, -0.0038298391737043858, -0.0036425956059247255, 0.6301081776618958, -0.28593507409095764, 0.017573153600096703, -0.29983872175216675, 0.0037412086967378855, -0.0012856220128014684, 0.6087006330490112, -0.3478822708129883, 0.01608145236968994, -0.0011650949018076062, 0.006176886148750782, -0.031178496778011322, 0.0757882371544838, 0.47902145981788635, -0.5642892122268677, -0.13268934190273285, -0.4623633921146393, -0.5955201387405396, -0.5099407434463501, -0.4815022051334381, -0.15207982063293457, 0.062317971140146255, -0.271298885345459, -0.3750703036785126, -1.1912319660186768, 0.5362341403961182]} +{"t": 8.6057, "q": [-0.3610445559024811, -0.004059936385601759, -0.0027453387156128883, 0.6302785873413086, -0.2859267294406891, 0.017558744177222252, -0.30161982774734497, 0.003400324145331979, -0.0004955001641064882, 0.6111123561859131, -0.3484237492084503, 0.015446965582668781, -0.0010579597437754273, 0.0070124659687280655, -0.030916152521967888, 0.074913389980793, 0.47702011466026306, -0.5678246021270752, -0.13483451306819916, -0.462159663438797, -0.5885093212127686, -0.510012686252594, -0.4815860986709595, -0.15859924256801605, 0.06232995539903641, -0.27115508913993835, -0.3711754381656647, -1.1894103288650513, 0.5374685525894165]} +{"t": 8.6224, "q": [-0.3621864914894104, -0.004298555664718151, -0.001941824913956225, 0.6304916739463806, -0.2858392298221588, 0.01745077222585678, -0.3036225140094757, 0.003085005795583129, 0.0001473108568461612, 0.6132684946060181, -0.34880930185317993, 0.01524000708013773, -0.0009106489014811814, 0.007969619706273079, -0.030673909932374954, 0.07377488911151886, 0.47445547580718994, -0.5717554092407227, -0.13554158806800842, -0.4619798958301544, -0.5833681225776672, -0.5100606083869934, -0.4813344180583954, -0.16426777839660645, 0.0622820183634758, -0.2711431086063385, -0.3687785863876343, -1.1881999969482422, 0.5386070609092712]} +{"t": 8.6391, "q": [-0.3628341853618622, -0.004511608276516199, -0.0016338112764060497, 0.630841076374054, -0.2856517732143402, 0.01715540513396263, -0.3049434423446655, 0.002829342382028699, 0.00036158118746243417, 0.6147342920303345, -0.34895092248916626, 0.015103252604603767, -0.0008704732172191143, 0.008447936736047268, -0.03034755401313305, 0.07297194749116898, 0.47138750553131104, -0.5749791860580444, -0.135949045419693, -0.4617162346839905, -0.576812744140625, -0.5100725889205933, -0.47930908203125, -0.16968464851379395, 0.06250971555709839, -0.27098730206489563, -0.3660221993923187, -1.187325119972229, 0.540428638458252]} +{"t": 8.656, "q": [-0.3634307384490967, -0.004579785279929638, -0.0012990138493478298, 0.6309177875518799, -0.28552258014678955, 0.016989804804325104, -0.3061876893043518, 0.00276116537861526, 0.0006428110064007342, 0.6156461238861084, -0.34899941086769104, 0.01504554320126772, -0.0008570813224650919, 0.009009800851345062, -0.03000691905617714, 0.07212106883525848, 0.4679000973701477, -0.5773041248321533, -0.13640445470809937, -0.4615844190120697, -0.5686035752296448, -0.510096549987793, -0.4758576452732086, -0.17437048256397247, 0.06270146369934082, -0.27101126313209534, -0.3619835376739502, -1.1870015859603882, 0.5426936745643616]} +{"t": 8.6727, "q": [-0.3644363582134247, -0.0046820505522191525, -0.0011383111122995615, 0.6309177875518799, -0.2854559123516083, 0.016888950020074844, -0.30736374855041504, 0.002650377806276083, 0.0007901218486949801, 0.616123378276825, -0.3489789068698883, 0.015023513697087765, -0.0008302975329570472, 0.010262600146234035, -0.029242342337965965, 0.07088669389486313, 0.46541938185691833, -0.5808993577957153, -0.1362966001033783, -0.46127283573150635, -0.5623597502708435, -0.5101085305213928, -0.4713755249977112, -0.17867282032966614, 0.06280932575464249, -0.27095136046409607, -0.3579448461532593, -1.1866899728775024, 0.5454620122909546]} +{"t": 8.6895, "q": [-0.3648539185523987, -0.004784315824508667, -0.0011115273227915168, 0.6308922171592712, -0.28534337878227234, 0.01673775166273117, -0.30801141262054443, 0.002514024032279849, 0.0008169056382030249, 0.6165494918823242, -0.3489501476287842, 0.014986871741712093, -0.0008704732172191143, 0.012623070739209652, -0.027692761272192, 0.06930477172136307, 0.46396929025650024, -0.5855372548103333, -0.1363445371389389, -0.4609852135181427, -0.5560800433158875, -0.5101444721221924, -0.46643802523612976, -0.1831788867712021, 0.06339655071496964, -0.270927369594574, -0.3547690212726593, -1.1864502429962158, 0.5478828549385071]} +{"t": 8.7062, "q": [-0.3648965358734131, -0.004792838357388973, -0.0011650949018076062, 0.6307984590530396, -0.2852684557437897, 0.01659356616437435, -0.30813074111938477, 0.0024799355305731297, 0.0008169056382030249, 0.6166858673095703, -0.34895819425582886, 0.014972393400967121, -0.0008570813224650919, 0.01489926502108574, -0.02620106004178524, 0.06844191253185272, 0.461931973695755, -0.5884374380111694, -0.1365962028503418, -0.4604578912258148, -0.5489494204521179, -0.5102763175964355, -0.4606856107711792, -0.1873733550310135, 0.06433132290840149, -0.27095136046409607, -0.352623850107193, -1.1862704753875732, 0.5495486259460449]} +{"t": 8.7229, "q": [-0.36513516306877136, -0.00481840455904603, -0.0011517030652612448, 0.6307302713394165, -0.2852559983730316, 0.01655750162899494, -0.3084375262260437, 0.0024884575977921486, 0.0008302975329570472, 0.6166688203811646, -0.34895408153533936, 0.014965077862143517, -0.0008302975329570472, 0.016325252130627632, -0.025263570249080658, 0.06837000697851181, 0.4589598774909973, -0.5910620093345642, -0.13626064360141754, -0.4602302014827728, -0.5434007048606873, -0.5102643370628357, -0.4534471333026886, -0.19207118451595306, 0.06488259881734848, -0.27095136046409607, -0.3515212833881378, -1.186066746711731, 0.5518376231193542]} +{"t": 8.7398, "q": [-0.36495620012283325, -0.004861014895141125, -0.0011517030652612448, 0.6307132244110107, -0.2852559983730316, 0.01655750162899494, -0.3084034323692322, 0.002454369328916073, 0.0008704732172191143, 0.6167454719543457, -0.3489823341369629, 0.014929010532796383, -0.0008704732172191143, 0.017682740464806557, -0.024429872632026672, 0.06845389306545258, 0.45613160729408264, -0.5929434895515442, -0.13605691492557526, -0.4600864052772522, -0.5386430025100708, -0.510240375995636, -0.4466041326522827, -0.19684089720249176, 0.0652541071176529, -0.27095136046409607, -0.3508981168270111, -1.1859350204467773, 0.5548096895217896]} +{"t": 8.7565, "q": [-0.3648368716239929, -0.004869537428021431, -0.0011650949018076062, 0.6306279897689819, -0.28526848554611206, 0.016564661636948586, -0.3084034323692322, 0.0024117587599903345, 0.000897257006727159, 0.6168903708457947, -0.3491562306880951, 0.014748923480510712, -0.0009240407962352037, 0.019997311756014824, -0.024076340720057487, 0.06858572363853455, 0.4529677629470825, -0.5943936109542847, -0.13582921028137207, -0.45984670519828796, -0.5325310230255127, -0.5103002786636353, -0.43995288014411926, -0.20206601917743683, 0.06552974134683609, -0.2709153890609741, -0.3504786789417267, -1.1858750581741333, 0.5572185516357422]} +{"t": 8.7734, "q": [-0.3647601902484894, -0.004946236498653889, -0.0011249192757532, 0.6305428147315979, -0.28526851534843445, 0.016550211235880852, -0.3084375262260437, 0.002394714392721653, 0.0011249192757532, 0.6170863509178162, -0.3492369055747986, 0.01463337056338787, -0.0009106489014811814, 0.022729452699422836, -0.02396257407963276, 0.06863366067409515, 0.450127512216568, -0.5951606035232544, -0.13584119081497192, -0.45947518944740295, -0.5250529050827026, -0.5103002786636353, -0.4342483878135681, -0.20712336897850037, 0.0655776783823967, -0.27095136046409607, -0.3502269983291626, -1.1858510971069336, 0.5601307153701782]} +{"t": 8.7901, "q": [-0.36464086174964905, -0.004946236498653889, -0.0011517030652612448, 0.6304149627685547, -0.28524765372276306, 0.016528623178601265, -0.30849719047546387, 0.002386192325502634, 0.0011517030652612448, 0.6172909140586853, -0.34929725527763367, 0.014524878934025764, -0.0010177841177210212, 0.025377118960022926, -0.023611515760421753, 0.06820222735404968, 0.44737112522125244, -0.5958916544914246, -0.13588912785053253, -0.45907971262931824, -0.5199715495109558, -0.5103722214698792, -0.4283042252063751, -0.21355889737606049, 0.06570950895547867, -0.272269606590271, -0.3502030372619629, -1.1858150959014893, 0.5641574263572693]} +{"t": 8.8069, "q": [-0.36464086174964905, -0.004954758565872908, -0.0011249192757532, 0.6302871108055115, -0.28512269258499146, 0.016326889395713806, -0.30886363983154297, 0.002403236459940672, 0.0012856220128014684, 0.6178193092346191, -0.3493897020816803, 0.014343981631100178, -0.0012186624808236957, 0.027334610000252724, -0.023464176803827286, 0.06753110885620117, 0.4457892179489136, -0.5966466665267944, -0.13586516678333282, -0.4584205746650696, -0.5164481997489929, -0.5105519890785217, -0.4233906865119934, -0.22016219794750214, 0.06581736356019974, -0.2731924057006836, -0.3503588140010834, -1.1860069036483765, 0.5676448345184326]} +{"t": 8.8236, "q": [-0.3647005259990692, -0.0049718027003109455, -0.0011249192757532, 0.6302275061607361, -0.2849019169807434, 0.015973851084709167, -0.30951130390167236, 0.0024884575977921486, 0.0014597165863960981, 0.6185351610183716, -0.34955859184265137, 0.014025670476257801, -0.0016204193234443665, 0.028768347576260567, -0.02338392846286297, 0.06670419871807098, 0.4445907771587372, -0.5972458720207214, -0.13579325377941132, -0.4581209719181061, -0.5119780898094177, -0.5106837749481201, -0.4183932840824127, -0.2268853485584259, 0.06588926911354065, -0.273384153842926, -0.35049065947532654, -1.1860188245773315, 0.5705450177192688]} +{"t": 8.8404, "q": [-0.364717572927475, -0.004954758565872908, -0.001232054433785379, 0.6301848888397217, -0.28455621004104614, 0.015390158630907536, -0.3100396692752838, 0.002573678968474269, 0.0015400679549202323, 0.6191487312316895, -0.3496994376182556, 0.013772535137832165, -0.0019284329609945416, 0.029572175815701485, -0.02326025255024433, 0.065601646900177, 0.4435361623764038, -0.5976653099060059, -0.13582921028137207, -0.4579412043094635, -0.5068248510360718, -0.5107796788215637, -0.41374340653419495, -0.23284150660037994, 0.06600911170244217, -0.2734920084476471, -0.3504786789417267, -1.1859829425811768, 0.57307368516922]} +{"t": 8.8573, "q": [-0.36482834815979004, -0.0049377139657735825, -0.001419540960341692, 0.6299803256988525, -0.28384798765182495, 0.014309587888419628, -0.31052544713020325, 0.0027270768769085407, 0.001566851744428277, 0.6196856498718262, -0.34976765513420105, 0.013620474375784397, -0.0021828790195286274, 0.030027341097593307, -0.02324816584587097, 0.06404370069503784, 0.44220593571662903, -0.5982285737991333, -0.13582921028137207, -0.45770153403282166, -0.5021270513534546, -0.5108635425567627, -0.408961683511734, -0.23973244428634644, 0.06491854786872864, -0.2734680473804474, -0.3502269983291626, -1.1859229803085327, 0.5756742358207703]} +{"t": 8.874, "q": [-0.3648880124092102, -0.004920669831335545, -0.0015936355339363217, 0.6296309232711792, -0.283498078584671, 0.013747594319283962, -0.3110197186470032, 0.002846386516466737, 0.0014998923288658261, 0.6202651262283325, -0.34999680519104004, 0.01317912619560957, -0.002865865593776107, 0.030087923631072044, -0.023210057988762856, 0.06227003410458565, 0.4409715533256531, -0.5989475846290588, -0.13568539917469025, -0.45737797021865845, -0.49889132380485535, -0.5112350583076477, -0.4046473503112793, -0.24627582728862762, 0.064079649746418, -0.27337217330932617, -0.35021501779556274, -1.1859229803085327, 0.5779512524604797]} +{"t": 8.8908, "q": [-0.3651095926761627, -0.004886581562459469, -0.0017409464344382286, 0.6295883059501648, -0.2832273244857788, 0.013308104127645493, -0.3116503655910492, 0.002957174088805914, 0.0013927571708336473, 0.6211684942245483, -0.35035499930381775, 0.012549970299005508, -0.004392541944980621, 0.030072525143623352, -0.023131603375077248, 0.0607600212097168, 0.4400128126144409, -0.5997625589370728, -0.13493038713932037, -0.45668286085128784, -0.49582335352897644, -0.5117384195327759, -0.4017232060432434, -0.252315878868103, 0.06406766921281815, -0.2731204926967621, -0.35033485293388367, -1.1859229803085327, 0.5814146995544434]} +{"t": 8.9076, "q": [-0.365390807390213, -0.004852492827922106, -0.0019150411244481802, 0.629647970199585, -0.28298571705818176, 0.012919026426970959, -0.3121616840362549, 0.003008306724950671, 0.0012588382232934237, 0.6220547556877136, -0.35059621930122375, 0.012086913920938969, -0.0067896912805736065, 0.03007221408188343, -0.023024069145321846, 0.05981326848268509, 0.43916192650794983, -0.6005774736404419, -0.13418737053871155, -0.45548444986343384, -0.4915210008621216, -0.5121338963508606, -0.40000948309898376, -0.2585596740245819, 0.06455902010202408, -0.27302461862564087, -0.3503707945346832, -1.185910940170288, 0.5857290029525757]} +{"t": 8.9243, "q": [-0.36542490124702454, -0.004843970760703087, -0.001941824913956225, 0.6296053528785706, -0.28280243277549744, 0.01261637732386589, -0.31249403953552246, 0.00301682879216969, 0.001232054433785379, 0.6225661039352417, -0.350724995136261, 0.011855470016598701, -0.009119881317019463, 0.030071847140789032, -0.022896984592080116, 0.05874667316675186, 0.4379395544528961, -0.601991593837738, -0.13327656686306, -0.453267365694046, -0.4860801696777344, -0.5123975276947021, -0.39806801080703735, -0.26469558477401733, 0.06488259881734848, -0.2730845510959625, -0.35041874647140503, -1.1860069036483765, 0.5898515582084656]} +{"t": 8.9411, "q": [-0.3654078543186188, -0.004792838357388973, -0.0019686087034642696, 0.6295371651649475, -0.28269413113594055, 0.012443461455404758, -0.31273266673088074, 0.0031276163645088673, 0.0012454462703317404, 0.6228217482566833, -0.35078534483909607, 0.011746996082365513, -0.01124919205904007, 0.030102167278528214, -0.022887706756591797, 0.05771602690219879, 0.43603405356407166, -0.6034776568412781, -0.1321500539779663, -0.45136186480522156, -0.48077115416526794, -0.5124334692955017, -0.3958629369735718, -0.26930952072143555, 0.0647028312087059, -0.2731444537639618, -0.35021501779556274, -1.1860188245773315, 0.5924641489982605]} +{"t": 8.9578, "q": [-0.365348219871521, -0.004792838357388973, -0.001941824913956225, 0.6294434666633606, -0.2826150059700012, 0.012306541204452515, -0.3128264248371124, 0.003136138431727886, 0.001232054433785379, 0.6230689287185669, -0.3508298099040985, 0.011696516536176205, -0.013579382561147213, 0.030170351266860962, -0.022854609414935112, 0.0568651482462883, 0.43381696939468384, -0.6049157381057739, -0.12994495034217834, -0.4494803547859192, -0.4782664477825165, -0.5124694108963013, -0.3934181332588196, -0.2727489769458771, 0.06418751180171967, -0.27315643429756165, -0.3495079576969147, -1.1861146688461304, 0.5934588313102722]} +{"t": 8.9745, "q": [-0.3653396964073181, -0.004784315824508667, -0.0019284329609945416, 0.6293241381645203, -0.28252336382865906, 0.012147990986704826, -0.31299686431884766, 0.0031617048662155867, 0.001232054433785379, 0.6232563853263855, -0.3508739471435547, 0.011602419428527355, -0.016097059473395348, 0.030200615525245667, -0.022825781255960464, 0.055870458483695984, 0.4313602149486542, -0.6066774129867554, -0.12674516439437866, -0.4479343891143799, -0.47602540254592896, -0.5124694108963013, -0.3903621733188629, -0.27629631757736206, 0.06389988958835602, -0.27330026030540466, -0.34836944937705994, -1.1862465143203735, 0.593770444393158]} +{"t": 8.9913, "q": [-0.3652970790863037, -0.004784315824508667, -0.0017811221769079566, 0.6291621923446655, -0.2824775278568268, 0.012083176523447037, -0.31319287419319153, 0.0031617048662155867, 0.0014061490073800087, 0.6233927607536316, -0.350877970457077, 0.01159518864005804, -0.017918355762958527, 0.030208159238100052, -0.022811241447925568, 0.054372429847717285, 0.4288794696331024, -0.6084151268005371, -0.12331768125295639, -0.4470115900039673, -0.4735686480998993, -0.5125173926353455, -0.3864912688732147, -0.2793882489204407, 0.06301305443048477, -0.27373167872428894, -0.3464280068874359, -1.1864262819290161, 0.5937824249267578]} +{"t": 9.008, "q": [-0.3653141260147095, -0.004775793757289648, -0.0016204193234443665, 0.6290599703788757, -0.28246501088142395, 0.012076014652848244, -0.3133547902107239, 0.0031617048662155867, 0.0014998923288658261, 0.6234864592552185, -0.3508860170841217, 0.011580727994441986, -0.01949859969317913, 0.030185328796505928, -0.022786429151892662, 0.05276654288172722, 0.4267942011356354, -0.6097933053970337, -0.12035757303237915, -0.4455015957355499, -0.4708961546421051, -0.5125413537025452, -0.3825604319572449, -0.28159335255622864, 0.06192249059677124, -0.27382755279541016, -0.3431682884693146, -1.1865581274032593, 0.5938303470611572]} +{"t": 9.0248, "q": [-0.36533117294311523, -0.004784315824508667, -0.0014731085393577814, 0.6289321184158325, -0.2824566960334778, 0.012047136202454567, -0.31355080008506775, 0.003144660498946905, 0.0016472031129524112, 0.6235716938972473, -0.3508860170841217, 0.011580727994441986, -0.02119937166571617, 0.030208103358745575, -0.02279168926179409, 0.051004864275455475, 0.4246130883693695, -0.6109557747840881, -0.11659453064203262, -0.44332045316696167, -0.4679480493068695, -0.5126252174377441, -0.3787134885787964, -0.283103346824646, 0.06079597398638725, -0.27370771765708923, -0.339812695980072, -1.1865581274032593, 0.5940101146697998]} +{"t": 9.0416, "q": [-0.36528003215789795, -0.004775793757289648, -0.0012052706442773342, 0.6287616491317749, -0.2824483811855316, 0.012032727710902691, -0.31365305185317993, 0.0031531827989965677, 0.001901649171486497, 0.6235716938972473, -0.35089409351348877, 0.011566249653697014, -0.022257329896092415, 0.030208103358745575, -0.02279168926179409, 0.049327071756124496, 0.42257577180862427, -0.6118665933609009, -0.11352656781673431, -0.44135504961013794, -0.4644366502761841, -0.5127930045127869, -0.3752380907535553, -0.2841819226741791, 0.059969063848257065, -0.2739354074001312, -0.33742785453796387, -1.1865581274032593, 0.5944415330886841]} +{"t": 9.0584, "q": [-0.36514368653297424, -0.004767271690070629, -0.0009642164804972708, 0.6286168098449707, -0.2824566960334778, 0.012047136202454567, -0.3137638568878174, 0.0031702269334346056, 0.0022230546455830336, 0.6236228346824646, -0.35089007019996643, 0.011573479510843754, -0.0228599663823843, 0.030185356736183167, -0.022796204313635826, 0.0478530116379261, 0.4210178256034851, -0.6125377416610718, -0.11139337718486786, -0.43990495800971985, -0.4595950245857239, -0.5129607915878296, -0.3714990019798279, -0.2852725088596344, 0.05944175645709038, -0.27405527234077454, -0.3349471092224121, -1.186570167541504, 0.5952444672584534]} +{"t": 9.0751, "q": [-0.36513516306877136, -0.004767271690070629, -0.0007767299539409578, 0.6284974813461304, -0.2824483811855316, 0.012032727710902691, -0.3138575851917267, 0.003144660498946905, 0.0024775005877017975, 0.6236228346824646, -0.35089409351348877, 0.011566249653697014, -0.023060845211148262, 0.03017021156847477, -0.022805731743574142, 0.04627109318971634, 0.41957971453666687, -0.6132927536964417, -0.10898454487323761, -0.4390420913696289, -0.4565630257129669, -0.5133323073387146, -0.36746031045913696, -0.2865428328514099, 0.05893842130899429, -0.274211049079895, -0.3332573473453522, -1.186582088470459, 0.5962271690368652]} +{"t": 9.0921, "q": [-0.3651266396045685, -0.004792838357388973, -0.0006026353221386671, 0.6285060048103333, -0.2824483811855316, 0.012032727710902691, -0.31387463212013245, 0.0031276163645088673, 0.002651595277711749, 0.6235887408256531, -0.3508901596069336, 0.01158804353326559, -0.023074235767126083, 0.030177699401974678, -0.022771639749407768, 0.04441354051232338, 0.418081670999527, -0.6137840747833252, -0.10618023574352264, -0.4381912052631378, -0.4539265036582947, -0.5143389701843262, -0.3637332320213318, -0.28816068172454834, 0.058590877801179886, -0.2742350399494171, -0.33251431584358215, -1.1865941286087036, 0.5974855422973633]} +{"t": 9.1089, "q": [-0.3651692569255829, -0.004826926626265049, -0.00036158118746243417, 0.6284889578819275, -0.2824566960334778, 0.012047136202454567, -0.3139428198337555, 0.0030423952266573906, 0.0027855143416672945, 0.6236057877540588, -0.35089820623397827, 0.011573564261198044, -0.02302066795527935, 0.030260775238275528, -0.02264103665947914, 0.042639873921871185, 0.41606834530830383, -0.6139039397239685, -0.10283663868904114, -0.43690890073776245, -0.4507986307144165, -0.5166399478912354, -0.36032968759536743, -0.2900422215461731, 0.05854294076561928, -0.2738874852657318, -0.3324064612388611, -1.1866779327392578, 0.5987438559532166]} +{"t": 9.1256, "q": [-0.3652203679084778, -0.004912147764116526, -0.0001473108568461612, 0.628454864025116, -0.28244835138320923, 0.012061631307005882, -0.31395986676216125, 0.002888997085392475, 0.0028926494996994734, 0.6235802173614502, -0.35089829564094543, 0.011588109657168388, -0.02268587052822113, 0.030358586460351944, -0.022373942658305168, 0.04072239622473717, 0.41376736760139465, -0.6139039397239685, -0.0986781120300293, -0.4353269934654236, -0.4481261372566223, -0.520247220993042, -0.3566385507583618, -0.2919117510318756, 0.05855492502450943, -0.2735159695148468, -0.3324304223060608, -1.1867858171463013, 0.5998584032058716]} +{"t": 9.1424, "q": [-0.36528003215789795, -0.00501441303640604, -9.374327055411413e-05, 0.6284122467041016, -0.28244835138320923, 0.012061631307005882, -0.31396839022636414, 0.0027270768769085407, 0.002865865593776107, 0.6235802173614502, -0.35091057419776917, 0.011595509946346283, -0.022404640913009644, 0.03031204827129841, -0.02205083705484867, 0.03946405276656151, 0.4117899537086487, -0.6139758229255676, -0.09455553442239761, -0.43269044160842896, -0.44495031237602234, -0.5226680040359497, -0.35300734639167786, -0.2934097945690155, 0.058650799095630646, -0.2734440565109253, -0.33244240283966064, -1.1869655847549438, 0.600877046585083]} +{"t": 9.1592, "q": [-0.365390807390213, -0.005116678774356842, -0.00010713516530813649, 0.6284292936325073, -0.28244835138320923, 0.012061631307005882, -0.31391724944114685, 0.0026759442407637835, 0.0028256899677217007, 0.6235716938972473, -0.35091882944107056, 0.011610140092670918, -0.022069843485951424, 0.030120868235826492, -0.021564124152064323, 0.038241662085056305, 0.41025596857070923, -0.6142514944076538, -0.09154749661684036, -0.43001797795295715, -0.4404442608356476, -0.5246573686599731, -0.347506582736969, -0.2944883704185486, 0.05885453149676323, -0.273384153842926, -0.3325742483139038, -1.1872172355651855, 0.6020514965057373]} +{"t": 9.1759, "q": [-0.3654334247112274, -0.0052359881810843945, -0.00010713516530813649, 0.6284463405609131, -0.28244829177856445, 0.012090552598237991, -0.31390872597694397, 0.0025566346012055874, 0.0027721223887056112, 0.6235120296478271, -0.3509517014026642, 0.011654150672256947, -0.02185557410120964, 0.029989691451191902, -0.020863549783825874, 0.03757054731249809, 0.4090934991836548, -0.6149225831031799, -0.08888699859380722, -0.428460031747818, -0.4377238154411316, -0.5268385410308838, -0.3414905071258545, -0.2951834499835968, 0.059297945350408554, -0.27327629923820496, -0.3326341509819031, -1.1877206563949585, 0.6032379865646362]} +{"t": 9.1926, "q": [-0.3654504716396332, -0.005321209318935871, -2.6783791327034123e-05, 0.6284463405609131, -0.28244829177856445, 0.012090552598237991, -0.3138831555843353, 0.0023435817565768957, 0.0027721223887056112, 0.6235035061836243, -0.35098057985305786, 0.01170535571873188, -0.02185557410120964, 0.030016686767339706, -0.019770700484514236, 0.03713911399245262, 0.40797898173332214, -0.6152940988540649, -0.08593887835741043, -0.42672231793403625, -0.43640556931495667, -0.52899569272995, -0.3355463147163391, -0.2952553629875183, 0.06024470180273056, -0.27260518074035645, -0.3327779769897461, -1.1884396076202393, 0.6044244170188904]} +{"t": 9.2094, "q": [-0.36556127667427063, -0.005517217796295881, 5.3567582654068246e-05, 0.6284463405609131, -0.2824440896511078, 0.01211227010935545, -0.31390872597694397, 0.0021646174136549234, 0.0028122980147600174, 0.6234694719314575, -0.35099294781684875, 0.01172733772546053, -0.02168147824704647, 0.030316103249788284, -0.018576018512248993, 0.03659982234239578, 0.40696030855178833, -0.6156775951385498, -0.08325441181659698, -0.42420563101768494, -0.4353269934654236, -0.5306494832038879, -0.3286913335323334, -0.2952314019203186, 0.060388509184122086, -0.2704959511756897, -0.3328019380569458, -1.1886074542999268, 0.6052513122558594]} +{"t": 9.2261, "q": [-0.3655868172645569, -0.0057899258099496365, 0.00010713516530813649, 0.6284292936325073, -0.2824440896511078, 0.01211227010935545, -0.31391724944114685, 0.001891909632831812, 0.002839081920683384, 0.6234609484672546, -0.3510178029537201, 0.011785772629082203, -0.02165469527244568, 0.031008657068014145, -0.01707657426595688, 0.03637212514877319, 0.40592968463897705, -0.6158573627471924, -0.08056994527578354, -0.4214252829551697, -0.4347277581691742, -0.5321235656738281, -0.3211652636528015, -0.29519543051719666, 0.060388509184122086, -0.26861441135406494, -0.3328498601913452, -1.1888231039047241, 0.6058265566825867]} +{"t": 9.2428, "q": [-0.36565500497817993, -0.0060029784217476845, 0.00026783792418427765, 0.6284207701683044, -0.2824315130710602, 0.012148463167250156, -0.3139513432979584, 0.0016618125373497605, 0.0029060414526611567, 0.6234609484672546, -0.3510341942310333, 0.011800487525761127, -0.021627912297844887, 0.031761035323143005, -0.015473895706236362, 0.03615640848875046, 0.40491101145744324, -0.6161449551582336, -0.07665110379457474, -0.41985535621643066, -0.4344761073589325, -0.5334059000015259, -0.31419044733047485, -0.29514750838279724, 0.06042446196079254, -0.26655313372612, -0.33286187052726746, -1.1891107559204102, 0.6062699556350708]} +{"t": 9.2595, "q": [-0.36574023962020874, -0.006164898630231619, 0.0003883649769704789, 0.6284292936325073, -0.2824315130710602, 0.01216291543096304, -0.31395986676216125, 0.001568069215863943, 0.0030131766106933355, 0.6234609484672546, -0.3510342836380005, 0.011815032921731472, -0.021587735041975975, 0.032534901052713394, -0.013672939501702785, 0.036072518676519394, 0.40383243560791016, -0.6164206266403198, -0.07257647067308426, -0.4182974100112915, -0.43393680453300476, -0.5351555943489075, -0.3062688708305359, -0.29519543051719666, 0.06036454066634178, -0.26449185609817505, -0.33288583159446716, -1.1891586780548096, 0.6067373752593994]} +{"t": 9.2764, "q": [-0.3657743036746979, -0.006267163902521133, 0.00042854066123254597, 0.6284122467041016, -0.2824315130710602, 0.01216291543096304, -0.3139513432979584, 0.0014231932582333684, 0.0030131766106933355, 0.6234524250030518, -0.35104241967201233, 0.011815117672085762, -0.02152077667415142, 0.033080510795116425, -0.011754493229091167, 0.036072518676519394, 0.4027538597583771, -0.6166483163833618, -0.06838198751211166, -0.4176502525806427, -0.43370911478996277, -0.5384392738342285, -0.29722076654434204, -0.2951594889163971, 0.06052033603191376, -0.261579692363739, -0.33294573426246643, -1.189194679260254, 0.6072526574134827]} +{"t": 9.2931, "q": [-0.36591067910194397, -0.006326818838715553, 0.0004955001641064882, 0.6284292936325073, -0.2824315130710602, 0.01216291543096304, -0.3139854073524475, 0.0013635384384542704, 0.002986392704769969, 0.6234439015388489, -0.3510547876358032, 0.011837062425911427, -0.02149399183690548, 0.033854253590106964, -0.010161706246435642, 0.036072518676519394, 0.4017951190471649, -0.6166962385177612, -0.064079649746418, -0.41671547293663025, -0.43363720178604126, -0.5421903133392334, -0.28858014941215515, -0.29512351751327515, 0.06064017862081528, -0.25815218687057495, -0.33290979266166687, -1.1891586780548096, 0.6077799797058105]} +{"t": 9.3098, "q": [-0.36597031354904175, -0.006335340905934572, 0.0005624596378766, 0.6284378170967102, -0.2824273109436035, 0.012170180678367615, -0.31400245428085327, 0.0013635384384542704, 0.0030131766106933355, 0.623435378074646, -0.3510506749153137, 0.011829747818410397, -0.021440425887703896, 0.03484019637107849, -0.008720695041120052, 0.03618037700653076, 0.40106406807899475, -0.6167561411857605, -0.05920207127928734, -0.4141268730163574, -0.4336731731891632, -0.5449346899986267, -0.2797837257385254, -0.2951115369796753, 0.060628194361925125, -0.2534903287887573, -0.3328019380569458, -1.1891347169876099, 0.6080915927886963]} +{"t": 9.3267, "q": [-0.3663538098335266, -0.006335340905934572, 0.0006294191116467118, 0.6284378170967102, -0.28242313861846924, 0.012177428230643272, -0.3143092691898346, 0.0013550163712352514, 0.003066744189709425, 0.6234183311462402, -0.3510507643222809, 0.011844293214380741, -0.021467208862304688, 0.03515198826789856, -0.007351343519985676, 0.036324188113212585, 0.40051281452178955, -0.6168520450592041, -0.05336575582623482, -0.409189373254776, -0.43363720178604126, -0.5473195910453796, -0.2716224789619446, -0.29462018609046936, 0.06061621010303497, -0.24897228181362152, -0.3327779769897461, -1.1889909505844116, 0.6082113981246948]} +{"t": 9.3435, "q": [-0.3667799234390259, -0.006335340905934572, 0.0006963785854168236, 0.6284207701683044, -0.28242313861846924, 0.012177428230643272, -0.3148632049560547, 0.0013635384384542704, 0.0030533522367477417, 0.6234098076820374, -0.3510506749153137, 0.011829747818410397, -0.021239547058939934, 0.03506947308778763, -0.005827880930155516, 0.036264266818761826, 0.40014129877090454, -0.6170797348022461, -0.045875612646341324, -0.4038923680782318, -0.4336012601852417, -0.5500999093055725, -0.2619631886482239, -0.29342177510261536, 0.06064017862081528, -0.24466994404792786, -0.3325742483139038, -1.1886913776397705, 0.6081754565238953]} +{"t": 9.3602, "q": [-0.366958886384964, -0.006343862973153591, 0.0007365542696788907, 0.6284633874893188, -0.2824022173881531, 0.012213665060698986, -0.3149398863315582, 0.0013550163712352514, 0.003026568330824375, 0.623435378074646, -0.3510507643222809, 0.011844293214380741, -0.02082439698278904, 0.03481721132993698, -0.0036945727188140154, 0.03636014088988304, 0.4000813663005829, -0.6171995997428894, -0.03814578801393509, -0.3997817635536194, -0.43349340558052063, -0.5517297387123108, -0.25218406319618225, -0.2914443612098694, 0.06059224158525467, -0.24132634699344635, -0.33209487795829773, -1.1881760358810425, 0.607744038105011]} +{"t": 9.377, "q": [-0.3670526444911957, -0.006343862973153591, 0.0008302975329570472, 0.6284633874893188, -0.2823980450630188, 0.01220646034926176, -0.31497398018836975, 0.0013550163712352514, 0.0030533522367477417, 0.623435378074646, -0.351071298122406, 0.011866359040141106, -0.02067708782851696, 0.03455790877342224, -0.0016749486094340682, 0.03651593253016472, 0.4000813663005829, -0.6168760061264038, -0.02985270507633686, -0.3979841470718384, -0.43346941471099854, -0.5524128675460815, -0.24384303390979767, -0.28880783915519714, 0.060436446219682693, -0.23733559250831604, -0.3308844566345215, -1.1874809265136719, 0.6063898205757141]} +{"t": 9.3937, "q": [-0.36729976534843445, -0.006369429640471935, 0.001044567907229066, 0.628454864025116, -0.2823813259601593, 0.0122065469622612, -0.3151699900627136, 0.0013294500531628728, 0.0032006630208343267, 0.6234098076820374, -0.35108378529548645, 0.011902849189937115, -0.02085118182003498, 0.0342850536108017, 2.547725489421282e-05, 0.036803554743528366, 0.40016525983810425, -0.6156536340713501, -0.019630160182714462, -0.395215779542923, -0.43356528878211975, -0.5524248480796814, -0.2370479702949524, -0.2843976616859436, 0.058291271328926086, -0.23169103264808655, -0.328978955745697, -1.185599446296692, 0.6043045520782471]} +{"t": 9.4105, "q": [-0.36733385920524597, -0.006369429640471935, 0.001312405802309513, 0.6284207701683044, -0.28237298130989075, 0.01222104113548994, -0.3150847852230072, 0.00138058268930763, 0.00354885240085423, 0.6234268546104431, -0.3510878086090088, 0.011895619332790375, -0.02086457423865795, 0.034232430160045624, 0.0014733102871105075, 0.038960717618465424, 0.4003210663795471, -0.6148506999015808, -0.00854475237429142, -0.39082956314086914, -0.4336491823196411, -0.5520173907279968, -0.2311277687549591, -0.2802511155605316, 0.05543902516365051, -0.22698122262954712, -0.3259828984737396, -1.1840894222259521, 0.6023151874542236]} +{"t": 9.4279, "q": [-0.3674531579017639, -0.006360907573252916, 0.001566851744428277, 0.6283526420593262, -0.282377153635025, 0.012228263542056084, -0.31461605429649353, 0.0013720606220886111, 0.0037497307639569044, 0.6234183311462402, -0.351104199886322, 0.0119103342294693, -0.020797614008188248, 0.0340970940887928, 0.0028590590227395296, 0.0412377193570137, 0.4003210663795471, -0.6141196489334106, 0.005261074751615524, -0.3865751624107361, -0.4334814250469208, -0.551262378692627, -0.22491994500160217, -0.2762124240398407, 0.05189169570803642, -0.22249913215637207, -0.32156074047088623, -1.1818363666534424, 0.6001460552215576]} +{"t": 9.4447, "q": [-0.3674446642398834, -0.006386473774909973, 0.0017409464344382286, 0.6283355951309204, -0.28237298130989075, 0.01222104113548994, -0.31309911608695984, 0.0013976269401609898, 0.0038434739690274, 0.6234439015388489, -0.3510919213294983, 0.011902933940291405, -0.02066369540989399, 0.033905405551195145, 0.004855669103562832, 0.04398210719227791, 0.4002012312412262, -0.6115070581436157, 0.022122880443930626, -0.38248851895332336, -0.4334214925765991, -0.5497763156890869, -0.2197187840938568, -0.27198198437690735, 0.04746951535344124, -0.2172260731458664, -0.3151251971721649, -1.179331660270691, 0.5970900654792786]} +{"t": 9.4614, "q": [-0.3673253357410431, -0.006403517909348011, 0.0017007706919685006, 0.628361165523529, -0.2823478877544403, 0.012250074185431004, -0.31171002984046936, 0.001389104756526649, 0.003736338810995221, 0.6235376000404358, -0.3510878086090088, 0.011895619332790375, -0.019873572513461113, 0.03355317562818527, 0.007214288227260113, 0.04452139511704445, 0.4005967080593109, -0.608259379863739, 0.03960786387324333, -0.38006770610809326, -0.4332776665687561, -0.5485060214996338, -0.21497303247451782, -0.26764369010925293, 0.04092612862586975, -0.21289975941181183, -0.30939674377441406, -1.177462100982666, 0.5937224626541138]} +{"t": 9.4781, "q": [-0.3670100271701813, -0.006437606178224087, 0.001566851744428277, 0.6284037232398987, -0.2823270261287689, 0.01224297285079956, -0.31126686930656433, 0.0013976269401609898, 0.0034952848218381405, 0.623597264289856, -0.3510878086090088, 0.011895619332790375, -0.019029883667826653, 0.03310004249215126, 0.010075061582028866, 0.04524045065045357, 0.40083637833595276, -0.6044963002204895, 0.058650799095630646, -0.3785577118396759, -0.43291816115379333, -0.5467203259468079, -0.21074260771274567, -0.26184332370758057, 0.033424004912376404, -0.2085135281085968, -0.303943932056427, -1.1752569675445557, 0.5900193452835083]} +{"t": 9.4948, "q": [-0.3665412962436676, -0.006429084576666355, 0.0015266761183738708, 0.6285145282745361, -0.2822936177253723, 0.012243127450346947, -0.31048282980918884, 0.0014231932582333684, 0.003334582084789872, 0.6236228346824646, -0.3510878086090088, 0.011895619332790375, -0.018427249044179916, 0.032463137060403824, 0.013383902609348297, 0.04621117189526558, 0.40175917744636536, -0.6004815697669983, 0.07818508893251419, -0.3774072229862213, -0.4327264130115509, -0.5441317558288574, -0.20700351893901825, -0.2561987638473511, 0.02666490152478218, -0.2057691514492035, -0.29731664061546326, -1.1720093488693237, 0.5873109102249146]} +{"t": 9.5116, "q": [-0.3661152124404907, -0.006420562043786049, 0.0014597165863960981, 0.6286253333091736, -0.28228944540023804, 0.012250375002622604, -0.3097669780254364, 0.001440237509086728, 0.0032676225528120995, 0.6236057877540588, -0.3510878086090088, 0.011895619332790375, -0.018239762634038925, 0.03255096822977066, 0.016605954617261887, 0.04832039773464203, 0.4022025763988495, -0.5942977070808411, 0.09624531120061874, -0.37570545077323914, -0.4319114685058594, -0.5410518050193787, -0.20509803295135498, -0.2525196075439453, 0.02189517952501774, -0.20415127277374268, -0.2899703085422516, -1.1678627729415894, 0.5852016806602478]} +{"t": 9.5283, "q": [-0.36615779995918274, -0.006437606178224087, 0.0015400679549202323, 0.6286509037017822, -0.2822685241699219, 0.012272177264094353, -0.30979254841804504, 0.001448759576305747, 0.003334582084789872, 0.6235802173614502, -0.3510795533657074, 0.01188098918646574, -0.018547775223851204, 0.03217684477567673, 0.018762893974781036, 0.05090899020433426, 0.4022265374660492, -0.5866518020629883, 0.11653460562229156, -0.3723738491535187, -0.43171972036361694, -0.5384752154350281, -0.20363596081733704, -0.25003886222839355, 0.017473001033067703, -0.20300078392028809, -0.28413400053977966, -1.1643753051757812, 0.5835119485855103]} +{"t": 9.5451, "q": [-0.3659362494945526, -0.006429084576666355, 0.0016204193234443665, 0.6287190914154053, -0.28225597739219666, 0.012293919920921326, -0.3094942569732666, 0.0014572817599400878, 0.0034283252898603678, 0.6235716938972473, -0.3510633409023285, 0.011895382776856422, -0.01866830326616764, 0.03165934979915619, 0.02091425657272339, 0.05179582163691521, 0.40298154950141907, -0.5807915329933167, 0.13591310381889343, -0.36750826239585876, -0.4314800500869751, -0.5350836515426636, -0.20262928307056427, -0.2485288679599762, 0.013745906762778759, -0.2028449922800064, -0.27814188599586487, -1.162302017211914, 0.5822655558586121]} +{"t": 9.5618, "q": [-0.3658083975315094, -0.006420562043786049, 0.0015132841654121876, 0.6288213133811951, -0.28225597739219666, 0.012308371253311634, -0.30900850892066956, 0.001440237509086728, 0.003321190131828189, 0.6234779357910156, -0.35107141733169556, 0.01188090443611145, -0.01865491084754467, 0.03087480366230011, 0.02233482152223587, 0.052395034581422806, 0.40455150604248047, -0.5750870108604431, 0.15689747035503387, -0.3610127866268158, -0.4312044084072113, -0.5307453870773315, -0.2019461840391159, -0.24607209861278534, 0.008856342174112797, -0.20331238210201263, -0.27060380578041077, -1.1608400344848633, 0.5813068151473999]} +{"t": 9.5785, "q": [-0.3652544617652893, -0.00641203997656703, 0.0014597165863960981, 0.6287872195243835, -0.28226014971733093, 0.012315593659877777, -0.3082500398159027, 0.0014572817599400878, 0.00321405497379601, 0.6233330965042114, -0.35107553005218506, 0.01188821904361248, -0.018587950617074966, 0.029942315071821213, 0.023308107629418373, 0.05315003916621208, 0.40563008189201355, -0.5698499083518982, 0.17876869440078735, -0.35705801844596863, -0.430629163980484, -0.5274137854576111, -0.20210197567939758, -0.2428842931985855, 0.0028642297256737947, -0.20357602834701538, -0.26476749777793884, -1.1591742038726807, 0.57980877161026]} +{"t": 9.5953, "q": [-0.36468347907066345, -0.00641203997656703, 0.0013525814283639193, 0.6287872195243835, -0.28226014971733093, 0.012315593659877777, -0.307483047246933, 0.001448759576305747, 0.0030131766106933355, 0.6232052445411682, -0.35107964277267456, 0.011895534582436085, -0.018400464206933975, 0.028580941259860992, 0.02420795150101185, 0.05331781879067421, 0.40660080313682556, -0.5649843215942383, 0.2001006156206131, -0.3520006537437439, -0.4297303557395935, -0.5244536399841309, -0.20265324413776398, -0.23948077857494354, -0.0032716935966163874, -0.20388762652873993, -0.25907498598098755, -1.157664179801941, 0.5774838328361511]} +{"t": 9.612, "q": [-0.3642829358577728, -0.006394995842128992, 0.0011383111122995615, 0.6288042664527893, -0.2822643220424652, 0.01230834610760212, -0.3069291114807129, 0.0014317154418677092, 0.002865865593776107, 0.6230859756469727, -0.3510919213294983, 0.011902933940291405, -0.018373681232333183, 0.02708468772470951, 0.02502278983592987, 0.053413692861795425, 0.40770334005355835, -0.5607179403305054, 0.22276277840137482, -0.34677553176879883, -0.4286158084869385, -0.520331084728241, -0.20416326820850372, -0.23611320555210114, -0.008400942198932171, -0.20460668206214905, -0.25038641691207886, -1.1562860012054443, 0.5749791860580444]} +{"t": 9.6289, "q": [-0.36418068408966064, -0.006386473774909973, 0.000897257006727159, 0.6289065480232239, -0.28226011991500854, 0.01233004592359066, -0.30657118558883667, 0.001440237509086728, 0.0025980276986956596, 0.6229410767555237, -0.35108789801597595, 0.01191016472876072, -0.018279938027262688, 0.025477372109889984, 0.025538265705108643, 0.05330583453178406, 0.4090335965156555, -0.5557923913002014, 0.24434636533260345, -0.34048381447792053, -0.4276331067085266, -0.5175268054008484, -0.20598486065864563, -0.23360849916934967, -0.013578127138316631, -0.20557740330696106, -0.24271652102470398, -1.1551954746246338, 0.5720669627189636]} +{"t": 9.6457, "q": [-0.363967627286911, -0.006386473774909973, 0.0008035137434490025, 0.6290343999862671, -0.28225594758987427, 0.012322841212153435, -0.30634960532188416, 0.0014317154418677092, 0.0025712440256029367, 0.6229069828987122, -0.35108789801597595, 0.01191016472876072, -0.018360288813710213, 0.023544879630208015, 0.02628922276198864, 0.0535694882273674, 0.41030392050743103, -0.5492849946022034, 0.2665291726589203, -0.3358938694000244, -0.4262069761753082, -0.513751745223999, -0.20774655044078827, -0.23288944363594055, -0.017556890845298767, -0.2067638337612152, -0.23323699831962585, -1.1547399759292603, 0.5683159232139587]} +{"t": 9.6624, "q": [-0.3638823926448822, -0.006343862973153591, 0.0007499461644329131, 0.6290770173072815, -0.28223922848701477, 0.012351849116384983, -0.30630698800086975, 0.0014061490073800087, 0.00258463597856462, 0.6229069828987122, -0.35107168555259705, 0.011924558319151402, -0.01846742443740368, 0.021471748128533363, 0.02654966525733471, 0.05364139378070831, 0.41201767325401306, -0.5425258874893188, 0.28943103551864624, -0.3288830816745758, -0.4235225319862366, -0.5082629919052124, -0.21260015666484833, -0.23302127420902252, -0.02117612585425377, -0.21052688360214233, -0.2226429432630539, -1.1547280550003052, 0.56523597240448]} +{"t": 9.6791, "q": [-0.3634307384490967, -0.0063012526370584965, 0.0007633380591869354, 0.6290855407714844, -0.2822183072566986, 0.012373615987598896, -0.3060428202152252, 0.0014231932582333684, 0.0025980276986956596, 0.6229069828987122, -0.3510839641094208, 0.011931958608329296, -0.018601343035697937, 0.018917713314294815, 0.026481466367840767, 0.05343766137957573, 0.41411489248275757, -0.537588357925415, 0.3127283453941345, -0.320949524641037, -0.41966360807418823, -0.5031696557998657, -0.21708226203918457, -0.23336881399154663, -0.02454369328916073, -0.2133072316646576, -0.21156951785087585, -1.1547520160675049, 0.5631747245788574]} +{"t": 9.6959, "q": [-0.36293643712997437, -0.0061563765630126, 0.0006026353221386671, 0.6290855407714844, -0.28221410512924194, 0.012380881235003471, -0.305684894323349, 0.0014913701452314854, 0.0024908925406634808, 0.6228984594345093, -0.3510839641094208, 0.011931958608329296, -0.018695086240768433, 0.015814539045095444, 0.025991588830947876, 0.05319797620177269, 0.41591253876686096, -0.5314404964447021, 0.335702121257782, -0.3151851296424866, -0.41593649983406067, -0.49764496088027954, -0.22050973773002625, -0.2337283492088318, -0.029445242136716843, -0.2162553369998932, -0.20028036832809448, -1.1547280550003052, 0.5618205070495605]} +{"t": 9.7126, "q": [-0.3624592125415802, -0.006079677492380142, 0.0002544460294302553, 0.6290684938430786, -0.28221413493156433, 0.01236641127616167, -0.30510538816452026, 0.0015425028977915645, 0.0021828790195286274, 0.6228217482566833, -0.35107582807540894, 0.011931873857975006, -0.018587950617074966, 0.012243763543665409, 0.02517486922442913, 0.052862416952848434, 0.41699111461639404, -0.5242379307746887, 0.3569381535053253, -0.3094446659088135, -0.4150017499923706, -0.4922400712966919, -0.22233134508132935, -0.23423168063163757, -0.03591672331094742, -0.2188199758529663, -0.18973425030708313, -1.1548478603363037, 0.5608617663383484]} +{"t": 9.7293, "q": [-0.36183708906173706, -0.005977412220090628, -0.00022766222537029535, 0.6291195750236511, -0.28220999240875244, 0.01235920749604702, -0.3040741980075836, 0.0016021577175706625, 0.0016204193234443665, 0.6227535605430603, -0.3510880768299103, 0.011939273215830326, -0.018587950617074966, 0.008701583370566368, 0.02449319139122963, 0.0529702752828598, 0.4185011386871338, -0.5173829793930054, 0.3776828646659851, -0.3031289875507355, -0.4149298369884491, -0.4858524799346924, -0.22374548017978668, -0.2346750944852829, -0.042699795216321945, -0.22132466733455658, -0.17914019525051117, -1.1548599004745483, 0.5600467920303345]} +{"t": 9.7461, "q": [-0.36101046204566956, -0.0057899258099496365, -0.0007901218486949801, 0.6290258765220642, -0.2822016179561615, 0.01235926803201437, -0.3032645881175995, 0.0016447682864964008, 0.001004392164759338, 0.6223360300064087, -0.35109230875968933, 0.0119611332193017, -0.018520992249250412, 0.004781277384608984, 0.02381356619298458, 0.05306614935398102, 0.42098185420036316, -0.511810302734375, 0.3986552655696869, -0.29807165265083313, -0.4151096045970917, -0.48063933849334717, -0.2247641384601593, -0.23547804355621338, -0.04914730787277222, -0.22374548017978668, -0.16803082823753357, -1.154823899269104, 0.5582970976829529]} +{"t": 9.7628, "q": [-0.35991111397743225, -0.005551306530833244, -0.001191878691315651, 0.6289917826652527, -0.2821974754333496, 0.012352063320577145, -0.30213966965675354, 0.0017725999932736158, 0.0005758515326306224, 0.6219184398651123, -0.35110458731651306, 0.011968533508479595, -0.01862812601029873, 0.0007843263447284698, 0.02315979264676571, 0.05343766137957573, 0.4238221347332001, -0.5064773559570312, 0.41911232471466064, -0.2914563715457916, -0.4147500693798065, -0.4768163561820984, -0.22586669027805328, -0.2364247888326645, -0.054432351142168045, -0.2256869226694107, -0.1555911898612976, -1.1548478603363037, 0.5559481978416443]} +{"t": 9.7795, "q": [-0.3586583435535431, -0.005363820120692253, -0.0014329327968880534, 0.6287786960601807, -0.282197505235672, 0.012323142029345036, -0.3023015856742859, 0.001883387565612793, 0.00042854066123254597, 0.6214497089385986, -0.35112521052360535, 0.012005144730210304, -0.018762046471238136, -0.003032403066754341, 0.022570447996258736, 0.05415671318769455, 0.42612308263778687, -0.5017794966697693, 0.4394735097885132, -0.28556013107299805, -0.4142347574234009, -0.47400006651878357, -0.22659772634506226, -0.2371198832988739, -0.05892643705010414, -0.22807179391384125, -0.14702247083187103, -1.1547999382019043, 0.5533955693244934]} +{"t": 9.7963, "q": [-0.35761865973472595, -0.005150767043232918, -0.0016873788554221392, 0.6285827159881592, -0.2822016775608063, 0.012330346740782261, -0.3025657832622528, 0.0019941749051213264, 0.0002946217136923224, 0.620750904083252, -0.35114994645118713, 0.012049035169184208, -0.019230762496590614, -0.006367306690663099, 0.021817686036229134, 0.05516338720917702, 0.4283401668071747, -0.49741724133491516, 0.46097323298454285, -0.2800593674182892, -0.4135756194591522, -0.4706205129623413, -0.22674153745174408, -0.23722773790359497, -0.06256964057683945, -0.22982148826122284, -0.13376791775226593, -1.1547999382019043, 0.5509268045425415]} +{"t": 9.8131, "q": [-0.35687723755836487, -0.004997368901968002, -0.001794514013454318, 0.6283185482025146, -0.28220999240875244, 0.012344755232334137, -0.3024294376373291, 0.002070873975753784, 0.00021427033061627299, 0.6201372742652893, -0.3511788249015808, 0.012100276537239552, -0.019886964932084084, -0.008435425348579884, 0.021083680912852287, 0.05639776214957237, 0.43029361963272095, -0.4947567582130432, 0.48097488284111023, -0.2762843370437622, -0.41321608424186707, -0.4660784900188446, -0.22652582824230194, -0.23726369440555573, -0.06878945231437683, -0.23129554092884064, -0.12386894971132278, -1.1547759771347046, 0.5473076105117798]} +{"t": 9.8299, "q": [-0.35643407702445984, -0.004903625696897507, -0.0017409464344382286, 0.6280372738838196, -0.2822183668613434, 0.012330260127782822, -0.30221638083457947, 0.0020793962758034468, 0.00021427033061627299, 0.6197537779808044, -0.3511870801448822, 0.012114906683564186, -0.020476208999753, -0.010988505557179451, 0.01957084611058235, 0.05764412507414818, 0.4321751296520233, -0.49337857961654663, 0.5015278458595276, -0.27228158712387085, -0.41291648149490356, -0.46142861247062683, -0.22645391523838043, -0.2367963045835495, -0.07681888341903687, -0.23229023814201355, -0.11170496046543121, -1.15476393699646, 0.5448148846626282]} +{"t": 9.8466, "q": [-0.3560761511325836, -0.0047246613539755344, -0.0017677302239462733, 0.6280202269554138, -0.28222668170928955, 0.012344669550657272, -0.30176469683647156, 0.0021134845446795225, 0.0001473108568461612, 0.6191913485527039, -0.35117480158805847, 0.012107506394386292, -0.020958317443728447, -0.014321204274892807, 0.017630603164434433, 0.05890246853232384, 0.4328462481498718, -0.4917367398738861, 0.5216373801231384, -0.2697768807411194, -0.4124011695384979, -0.45837265253067017, -0.2263101041316986, -0.23635289072990417, -0.08420116454362869, -0.23334485292434692, -0.10177004337310791, -1.1546801328659058, 0.5433527827262878]} +{"t": 9.8635, "q": [-0.35587161779403687, -0.0046735284850001335, -0.0017811221769079566, 0.6279520988464355, -0.2822350263595581, 0.012359095737338066, -0.3015516400337219, 0.0021134845446795225, 0.00013391896209213883, 0.6187908053398132, -0.35117489099502563, 0.012122051790356636, -0.02133329026401043, -0.0182981975376606, 0.015555114485323429, 0.06052033603191376, 0.43308591842651367, -0.48978328704833984, 0.5399612784385681, -0.2674519419670105, -0.4113824963569641, -0.4555203914642334, -0.22640597820281982, -0.23632891476154327, -0.09052883833646774, -0.23429159820079803, -0.09050486981868744, -1.154596209526062, 0.5414832234382629]} +{"t": 9.8803, "q": [-0.3558034300804138, -0.004647962283343077, -0.0017007706919685006, 0.6278327703475952, -0.28224340081214905, 0.012344601564109325, -0.3015090525150299, 0.0021134845446795225, 0.00018748654110822827, 0.6183902621269226, -0.35114219784736633, 0.012107132002711296, -0.021882357075810432, -0.0223908182233572, 0.013414202257990837, 0.06286924332380295, 0.43278631567955017, -0.4861520826816559, 0.558800458908081, -0.26451581716537476, -0.41044771671295166, -0.4531954526901245, -0.22599852085113525, -0.23635289072990417, -0.09735984355211258, -0.23501065373420715, -0.07848469167947769, -1.1539610624313354, 0.539158284664154]} +{"t": 9.897, "q": [-0.3558034300804138, -0.004588307347148657, -0.0015802436973899603, 0.6277816295623779, -0.2822350263595581, 0.012373548001050949, -0.30152609944343567, 0.0020538298413157463, 0.0002544460294302553, 0.6181516647338867, -0.35105228424072266, 0.012062545865774155, -0.022484993562102318, -0.026560664176940918, 0.011336333118379116, 0.06505037099123001, 0.4325226843357086, -0.4830242097377777, 0.5780470967292786, -0.26299381256103516, -0.4092373251914978, -0.45170941948890686, -0.2250158190727234, -0.23671241104602814, -0.10336394608020782, -0.2356697916984558, -0.06727944314479828, -1.1525828838348389, 0.5360663533210754]} +{"t": 9.9137, "q": [-0.3557608425617218, -0.0044519538059830666, -0.0014731085393577814, 0.6277645826339722, -0.28224751353263855, 0.012380708940327168, -0.3015090525150299, 0.0020623519085347652, 0.00030801360844634473, 0.6177255511283875, -0.35091376304626465, 0.012061106972396374, -0.022926924750208855, -0.030224652960896492, 0.00959582906216383, 0.0664764940738678, 0.4324747323989868, -0.48054346442222595, 0.5968743562698364, -0.2616276144981384, -0.407619446516037, -0.4504271149635315, -0.2238173931837082, -0.23701202869415283, -0.10967963188886642, -0.23753932118415833, -0.05793174356222153, -1.1502459049224854, 0.5330343842506409]} +{"t": 9.9305, "q": [-0.3555733561515808, -0.004392298869788647, -0.0013525814283639193, 0.6277134418487549, -0.2822558879852295, 0.012366214767098427, -0.301432341337204, 0.0020538298413157463, 0.0004151487664785236, 0.6174017190933228, -0.3507712483406067, 0.01206691563129425, -0.02319476380944252, -0.034403569996356964, 0.00784581433981657, 0.06804642826318741, 0.4321511685848236, -0.47662460803985596, 0.6161689162254333, -0.26119619607925415, -0.4047432243824005, -0.4482579529285431, -0.22276277840137482, -0.23671241104602814, -0.1182723194360733, -0.24083499610424042, -0.047565389424562454, -1.146279215812683, 0.5293911695480347]} +{"t": 9.9472, "q": [-0.35556483268737793, -0.004341166000813246, -0.0013659733813256025, 0.6274833679199219, -0.2822558581829071, 0.012395118363201618, -0.30135565996170044, 0.0020453077740967274, 0.00040175687172450125, 0.6169756054878235, -0.3507387638092041, 0.01208112295717001, -0.023248331621289253, -0.03828221559524536, 0.005985236261039972, 0.06907707452774048, 0.4323069453239441, -0.47445547580718994, 0.6346725821495056, -0.261208176612854, -0.4009562134742737, -0.44469863176345825, -0.22205570340156555, -0.23653265833854675, -0.12656539678573608, -0.24441827833652496, -0.03650394827127457, -1.1431512832641602, 0.5252086520195007]} +{"t": 9.964, "q": [-0.35518985986709595, -0.004298555664718151, -0.001419540960341692, 0.6273810863494873, -0.28224751353263855, 0.012380708940327168, -0.30093806982040405, 0.0020538298413157463, 0.00044193255598656833, 0.6166091561317444, -0.3506898880004883, 0.012080633081495762, -0.02336885780096054, -0.04251609742641449, 0.004206727724522352, 0.07026351243257523, 0.4331338703632355, -0.47280165553092957, 0.6541109681129456, -0.26114824414253235, -0.3957071304321289, -0.44154679775238037, -0.2220916599035263, -0.23722773790359497, -0.1353258639574051, -0.24928386509418488, -0.02316550724208355, -1.1399635076522827, 0.5225241780281067]} +{"t": 9.9808, "q": [-0.35446545481681824, -0.0041707237251102924, -0.0014731085393577814, 0.6273043751716614, -0.2822558581829071, 0.012395118363201618, -0.30025628209114075, 0.0020879183430224657, 0.00040175687172450125, 0.6162341833114624, -0.35065314173698425, 0.012072943150997162, -0.023797398433089256, -0.046142444014549255, 0.0030396420042961836, 0.0716177299618721, 0.4336252212524414, -0.4710639417171478, 0.6722431182861328, -0.26105237007141113, -0.3920639157295227, -0.43985700607299805, -0.22200776636600494, -0.23731163144111633, -0.14255236089229584, -0.25340643525123596, -0.008892294950783253, -1.136799693107605, 0.5204988718032837]} +{"t": 9.9975, "q": [-0.3537581264972687, -0.0039321044459939, -0.0014329327968880534, 0.6271680593490601, -0.2822725474834442, 0.012395031750202179, -0.2995830476284027, 0.002139050979167223, 0.00042854066123254597, 0.6156631708145142, -0.35062065720558167, 0.012087167240679264, -0.02405184507369995, -0.04966513440012932, 0.0016077706823125482, 0.07290004193782806, 0.43381696939468384, -0.4689427316188812, 0.6910703778266907, -0.26089659333229065, -0.3891637325286865, -0.43863463401794434, -0.22497986257076263, -0.23892949521541595, -0.15090537071228027, -0.2578885555267334, 0.005261074751615524, -1.13418710231781, 0.5182937979698181]} +{"t": 10.0144, "q": [-0.3533831536769867, -0.0036679189652204514, -0.0015132841654121876, 0.626801609992981, -0.28226420283317566, 0.012395075522363186, -0.298816055059433, 0.0023350596893578768, 0.0002946217136923224, 0.6145979166030884, -0.35058003664016724, 0.012101307511329651, -0.023917926475405693, -0.05295128747820854, -0.0004896108875982463, 0.0740145742893219, 0.4336252212524414, -0.466677725315094, 0.7084474563598633, -0.26062095165252686, -0.3864433169364929, -0.43753206729888916, -0.2301570475101471, -0.24179372191429138, -0.16187092661857605, -0.2636289894580841, 0.017676731571555138, -1.1323535442352295, 0.5166758894920349]} +{"t": 10.0312, "q": [-0.35262468457221985, -0.0032844236120581627, -0.001673986902460456, 0.6261794567108154, -0.2822558879852295, 0.012366214767098427, -0.29773375391960144, 0.0026674221735447645, 6.695948104606941e-05, 0.6132599711418152, -0.35050246119499207, 0.012078667059540749, -0.023797398433089256, -0.056739963591098785, -0.003017464419826865, 0.0758361741900444, 0.4336491823196411, -0.46392133831977844, 0.7252253890037537, -0.2600816488265991, -0.3819012939929962, -0.43568649888038635, -0.23600535094738007, -0.24502946436405182, -0.17212942242622375, -0.2706757187843323, 0.031506527215242386, -1.12972891330719, 0.5152018666267395]} +{"t": 10.0479, "q": [-0.3511418402194977, -0.0027134420815855265, -0.0018882573349401355, 0.6255999803543091, -0.2822684049606323, 0.012373375706374645, -0.29608047008514404, 0.0031105722300708294, -8.035137580009177e-05, 0.6120412945747375, -0.3503175377845764, 0.011836690828204155, -0.023784006014466286, -0.060574859380722046, -0.0055763632990419865, 0.07804127782583237, 0.4337690472602844, -0.4608893394470215, 0.7424347400665283, -0.2588592767715454, -0.37554967403411865, -0.4334814250469208, -0.24323183298110962, -0.24918799102306366, -0.17975139617919922, -0.2781059443950653, 0.044809017330408096, -1.1254864931106567, 0.5138835906982422]} +{"t": 10.0646, "q": [-0.34899428486824036, -0.0015714785549789667, -0.0016605950659140944, 0.6247051358222961, -0.28229770064353943, 0.012322626076638699, -0.2941374182701111, 0.0037582528311759233, -5.3567582654068246e-05, 0.6106266379356384, -0.35024330019950867, 0.011704984121024609, -0.023917926475405693, -0.06398491561412811, -0.007849175482988358, 0.08043812215328217, 0.4338769018650055, -0.45705437660217285, 0.7586014866828918, -0.2566182017326355, -0.369030237197876, -0.431827574968338, -0.2518724501132965, -0.253921777009964, -0.18720558285713196, -0.2849009931087494, 0.05730856582522392, -1.1226822137832642, 0.5127570629119873]} +{"t": 10.0814, "q": [-0.347008615732193, 0.0019481549970805645, -0.0013927571708336473, 0.6238018274307251, -0.2823144495487213, 0.012279166840016842, -0.29126545786857605, 0.004849083721637726, -0.0002812298189383, 0.607822835445404, -0.3499179184436798, 0.011185115203261375, -0.02370365522801876, -0.06779108941555023, -0.01050483901053667, 0.08174440264701843, 0.4341285526752472, -0.4543459415435791, 0.7757508754730225, -0.254748672246933, -0.3639369606971741, -0.43017375469207764, -0.26129207015037537, -0.2606329321861267, -0.19809924066066742, -0.2939850389957428, 0.06978414207696915, -1.1208845376968384, 0.5109594464302063]} +{"t": 10.0981, "q": [-0.34529566764831543, 0.004061639774590731, -0.002008784329518676, 0.6230518817901611, -0.2823145389556885, 0.01222135964781046, -0.28809523582458496, 0.006374542135745287, -0.0011517030652612448, 0.6043628454208374, -0.3487309515476227, 0.010358061641454697, -0.02351616881787777, -0.07112903147935867, -0.01314159668982029, 0.08209194242954254, 0.434631884098053, -0.4533752202987671, 0.7925407886505127, -0.25285518169403076, -0.3586159646511078, -0.42750129103660583, -0.27218571305274963, -0.26801520586013794, -0.20899289846420288, -0.3040757477283478, 0.08349409699440002, -1.118895173072815, 0.5093055963516235]} +{"t": 10.1148, "q": [-0.3437446355819702, 0.0035332688130438328, -0.002691771136596799, 0.6220121383666992, -0.28231051564216614, 0.012112957425415516, -0.2854533791542053, 0.007908523082733154, -0.001673986902460456, 0.600800633430481, -0.3474515974521637, 0.0109048867598176, -0.023449208587408066, -0.07409223169088364, -0.015242625959217548, 0.08254734426736832, 0.4354947507381439, -0.4530516564846039, 0.8072574138641357, -0.2509496808052063, -0.3530193269252777, -0.4222162365913391, -0.28523653745651245, -0.275217741727829, -0.21893981099128723, -0.31356725096702576, 0.09634118527173996, -1.1164144277572632, 0.5067889094352722]} +{"t": 10.1319, "q": [-0.3435656726360321, 0.004334347788244486, -0.0027453387156128883, 0.6208701729774475, -0.2821897566318512, 0.01187505479902029, -0.2855641543865204, 0.009118663147091866, -0.001379365217871964, 0.5994370579719543, -0.34687623381614685, 0.010760700330138206, -0.023328682407736778, -0.07749065011739731, -0.01792733371257782, 0.08270313590765, 0.43663325905799866, -0.4527280628681183, 0.8227170705795288, -0.24806147813796997, -0.34871697425842285, -0.4173026978969574, -0.30001309514045715, -0.2833070755004883, -0.2292342633008957, -0.3230228126049042, 0.11102186143398285, -1.1138617992401123, 0.5041283965110779]} +{"t": 10.1486, "q": [-0.343386709690094, 0.005067249294370413, -0.002959609031677246, 0.6202566027641296, -0.2817482650279999, 0.011111155152320862, -0.28589653968811035, 0.010098706930875778, -0.0012186624808236957, 0.5993348360061646, -0.346077024936676, 0.009602995589375496, -0.023810790851712227, -0.0818341001868248, -0.020804718136787415, 0.08267916738986969, 0.43843090534210205, -0.45248839259147644, 0.83907550573349, -0.24476581811904907, -0.34399521350860596, -0.4122573435306549, -0.31826508045196533, -0.2918877899646759, -0.24572455883026123, -0.3337726593017578, 0.12596619129180908, -1.1114050149917603, 0.5024147033691406]} +{"t": 10.1655, "q": [-0.34331002831459045, 0.006030248012393713, -0.0031470954418182373, 0.6195918917655945, -0.28149837255477905, 0.010678747668862343, -0.28627151250839233, 0.010976484976708889, -0.0012454462703317404, 0.5992836952209473, -0.3457908034324646, 0.00908348336815834, -0.02438664250075817, -0.0855923667550087, -0.023330707103013992, 0.08264321833848953, 0.4398210644721985, -0.45251235365867615, 0.8551583886146545, -0.24268056452274323, -0.3387940526008606, -0.40842241048812866, -0.33696046471595764, -0.303200900554657, -0.2599138915538788, -0.3436596393585205, 0.1416655331850052, -1.10806143283844, 0.5010724663734436]} +{"t": 10.1822, "q": [-0.34249189496040344, 0.006763150449842215, -0.0031604873947799206, 0.6186885237693787, -0.2810860276222229, 0.009979748167097569, -0.28612661361694336, 0.0115559883415699, -0.0011784868547692895, 0.5991984605789185, -0.3454839885234833, 0.008541936054825783, -0.024426817893981934, -0.08891759812831879, -0.02562546171247959, 0.08184027671813965, 0.4415587782859802, -0.4526202082633972, 0.869179904460907, -0.24047546088695526, -0.33131590485572815, -0.40350887179374695, -0.3560393452644348, -0.3144780397415161, -0.2749181389808655, -0.35325899720191956, 0.15587881207466125, -1.1025127172470093, 0.49934670329093933]} +{"t": 10.199, "q": [-0.3420657813549042, 0.007402308750897646, -0.0034015413839370012, 0.6179811954498291, -0.28069037199020386, 0.009295115247368813, -0.28603288531303406, 0.012340023182332516, -0.0012052706442773342, 0.5990620851516724, -0.34513142704963684, 0.007905331440269947, -0.024480385705828667, -0.09204491972923279, -0.02781984955072403, 0.07981494069099426, 0.4439795911312103, -0.45263218879699707, 0.881355881690979, -0.23637685179710388, -0.3253357708454132, -0.39742088317871094, -0.3775630295276642, -0.32647424936294556, -0.2890355587005615, -0.3616839051246643, 0.17009210586547852, -1.0963648557662964, 0.49741724133491516]} +{"t": 10.2162, "q": [-0.34175047278404236, 0.008220432326197624, -0.004044352564960718, 0.617384672164917, -0.28024011850357056, 0.00849621556699276, -0.2858709692955017, 0.013447898440063, -0.001312405802309513, 0.5987382531166077, -0.344716876745224, 0.00718805892392993, -0.024641087278723717, -0.09512609243392944, -0.030008262023329735, 0.07743007689714432, 0.44664010405540466, -0.45268014073371887, 0.8945744633674622, -0.23194269835948944, -0.3206499218940735, -0.39147669076919556, -0.40198686718940735, -0.34129875898361206, -0.30520227551460266, -0.36791571974754333, 0.1844492107629776, -1.0897256135940552, 0.4950563609600067]} +{"t": 10.233, "q": [-0.3415544629096985, 0.009370917454361916, -0.004379149992018938, 0.6168392300605774, -0.2798590660095215, 0.007819636724889278, -0.2858709692955017, 0.014640994369983673, -0.0016338112764060497, 0.5983206629753113, -0.3436179757118225, 0.005234175361692905, -0.02470804750919342, -0.09808441251516342, -0.032049622386693954, 0.07435013353824615, 0.44969606399536133, -0.45268014073371887, 0.9074215888977051, -0.22740067541599274, -0.31449005007743835, -0.3861437141895294, -0.4279087483882904, -0.3576332628726959, -0.32359805703163147, -0.37200233340263367, 0.1983029693365097, -1.0812886953353882, 0.49255165457725525]} +{"t": 10.2498, "q": [-0.3415459394454956, 0.010086774826049805, -0.00546389352530241, 0.616046667098999, -0.27936866879463196, 0.006970427464693785, -0.28586244583129883, 0.015561383217573166, -0.0022230546455830336, 0.5972383618354797, -0.34310752153396606, 0.004327910952270031, -0.02484196610748768, -0.10114067047834396, -0.034204401075839996, 0.0710185170173645, 0.452296644449234, -0.45283594727516174, 0.9200769066810608, -0.22225944697856903, -0.3071676790714264, -0.3789531886577606, -0.45578405261039734, -0.37697577476501465, -0.3399205505847931, -0.3743872046470642, 0.2136307954788208, -1.071964979171753, 0.4880935251712799]} +{"t": 10.2665, "q": [-0.34139254689216614, 0.010623667389154434, -0.006602204404771328, 0.6149047017097473, -0.27886155247688293, 0.006106882356107235, -0.28586244583129883, 0.015902267768979073, -0.0027989062946289778, 0.5962839126586914, -0.34288522601127625, 0.003933239262551069, -0.02484196610748768, -0.10415762662887573, -0.03631933405995369, 0.06703975796699524, 0.4543459415435791, -0.4528479278087616, 0.9331637024879456, -0.2184005230665207, -0.30125945806503296, -0.37133121490478516, -0.4850015938282013, -0.39864325523376465, -0.35590752959251404, -0.37699976563453674, 0.22737669944763184, -1.061934232711792, 0.48458215594291687]} +{"t": 10.2833, "q": [-0.3415118455886841, 0.011331003159284592, -0.007619988638907671, 0.6144530177116394, -0.2786828279495239, 0.005797408986836672, -0.2858709692955017, 0.015791479498147964, -0.0034551091957837343, 0.5956020951271057, -0.34280672669410706, 0.0037362021394073963, -0.024775007739663124, -0.10709013044834137, -0.038380589336156845, 0.0626055896282196, 0.45620349049568176, -0.4528718888759613, 0.944872260093689, -0.21189308166503906, -0.29547107219696045, -0.36457210779190063, -0.5136318802833557, -0.42015495896339417, -0.3710675537586212, -0.37984001636505127, 0.2398642748594284, -1.0521910190582275, 0.48162204027175903]} +{"t": 10.3001, "q": [-0.34158003330230713, 0.012481490150094032, -0.008343150839209557, 0.614325225353241, -0.2786746025085449, 0.005768559407442808, -0.2858283519744873, 0.01575739122927189, -0.003776514669880271, 0.5952356457710266, -0.3428058922290802, 0.0035617367830127478, -0.024734830483794212, -0.1101958304643631, -0.04060925543308258, 0.05753626674413681, 0.4579651951789856, -0.4528718888759613, 0.9568684697151184, -0.20493024587631226, -0.287022203207016, -0.35669848322868347, -0.5459293723106384, -0.4428171217441559, -0.3860478401184082, -0.3803074061870575, 0.24933180212974548, -1.0416209697723389, 0.4801120460033417]} +{"t": 10.3168, "q": [-0.3418697714805603, 0.014202956110239029, -0.008624380454421043, 0.6143678426742554, -0.2787333130836487, 0.005724845454096794, -0.28576868772506714, 0.0157744362950325, -0.004057744517922401, 0.5946646928787231, -0.34278446435928345, 0.0033507030457258224, -0.023998277261853218, -0.11348133534193039, -0.04295314475893974, 0.05146026238799095, 0.45949915051460266, -0.45306363701820374, 0.9694159626960754, -0.20138292014598846, -0.2811259627342224, -0.34832149744033813, -0.5788021087646484, -0.46646198630332947, -0.40261003375053406, -0.38027146458625793, 0.2580443322658539, -1.0285820960998535, 0.47934505343437195]} +{"t": 10.3335, "q": [-0.3421083986759186, 0.016844812780618668, -0.008343150839209557, 0.6143763661384583, -0.2787971496582031, 0.00542831514030695, -0.2854107618331909, 0.016805611550807953, -0.005396933760493994, 0.5935653448104858, -0.34262803196907043, 0.003072969848290086, -0.024065235629677773, -0.11651573330163956, -0.04514472186565399, 0.04681038483977318, 0.4614526033401489, -0.4529438018798828, 0.9794347882270813, -0.1971285194158554, -0.27701535820961, -0.34005239605903625, -0.6121782064437866, -0.4894717037677765, -0.41618818044662476, -0.3802594542503357, 0.2638087570667267, -1.015171766281128, 0.47674447298049927]} +{"t": 10.3503, "q": [-0.3421339690685272, 0.018856031820178032, -0.008276191540062428, 0.6144444942474365, -0.27924731373786926, 0.004724813625216484, -0.2852744162082672, 0.018314026296138763, -0.005986177362501621, 0.5923892855644226, -0.34213826060295105, 0.0022177735809236765, -0.023971492424607277, -0.12031111121177673, -0.04781802371144295, 0.04170510545372963, 0.46424493193626404, -0.4530756175518036, 0.9890820980072021, -0.19070497155189514, -0.27113109827041626, -0.33048897981643677, -0.6479511260986328, -0.513751745223999, -0.4277050197124481, -0.3801276385784149, 0.2727489769458771, -1.000970482826233, 0.4740719795227051]} +{"t": 10.367, "q": [-0.34244075417518616, 0.020509321242570877, -0.008718123659491539, 0.6143507957458496, -0.2795369625091553, 0.004441278986632824, -0.28529998660087585, 0.020240023732185364, -0.006120096426457167, 0.5909575819969177, -0.3413190543651581, 0.0007633675704710186, -0.02354295179247856, -0.1246398538351059, -0.050872962921857834, 0.035533227026462555, 0.467133104801178, -0.45323142409324646, 0.9983938336372375, -0.18388594686985016, -0.26404842734336853, -0.32212400436401367, -0.6854017972946167, -0.5374565720558167, -0.4397971034049988, -0.37817421555519104, 0.2805267572402954, -0.9862418174743652, 0.4721664786338806]} +{"t": 10.3838, "q": [-0.3429180085659027, 0.022247834131121635, -0.009186840616166592, 0.6143678426742554, -0.279729962348938, 0.004281164146959782, -0.285291463136673, 0.02179104834794998, -0.006495069246739149, 0.5897303819656372, -0.3404422998428345, -0.0007788285729475319, -0.023757223039865494, -0.12912292778491974, -0.05405189469456673, 0.02961301989853382, 0.4696497917175293, -0.45353102684020996, 1.007022500038147, -0.1790083795785904, -0.2580083906650543, -0.31404662132263184, -0.7199044227600098, -0.5608137845993042, -0.4493245482444763, -0.3739917278289795, 0.2863391041755676, -0.9726277589797974, 0.4715433120727539]} +{"t": 10.4006, "q": [-0.34325888752937317, 0.023756248876452446, -0.009682340547442436, 0.6143848896026611, -0.28040438890457153, 0.003431785386055708, -0.285291463136673, 0.023009711876511574, -0.006736123468726873, 0.5885202288627625, -0.34022393822669983, -0.0011807311093434691, -0.023891141638159752, -0.13379721343517303, -0.057392675429582596, 0.023021696135401726, 0.47115981578826904, -0.45348307490348816, 1.0155671834945679, -0.1720455437898636, -0.2516207993030548, -0.3042195439338684, -0.7562645077705383, -0.589360237121582, -0.4569465219974518, -0.36674126982688904, 0.2913844585418701, -0.9562093615531921, 0.47111186385154724]} +{"t": 10.4173, "q": [-0.3434378504753113, 0.024719247594475746, -0.010418894700706005, 0.614325225353241, -0.2811611294746399, 0.0022929739207029343, -0.28512102365493774, 0.02430507354438305, -0.006843258626759052, 0.5869606733322144, -0.33999231457710266, -0.001546405954286456, -0.02387774921953678, -0.1379391849040985, -0.060401689261198044, 0.01495631318539381, 0.4714474380016327, -0.45373475551605225, 1.0249748229980469, -0.16412396728992462, -0.24374715983867645, -0.2965017259120941, -0.7909588813781738, -0.6175950765609741, -0.463130384683609, -0.359083354473114, 0.2970290184020996, -0.9379933476448059, 0.46926629543304443]} +{"t": 10.434, "q": [-0.34400030970573425, 0.025136830285191536, -0.011784868314862251, 0.6142826080322266, -0.2815662622451782, 0.0017920233076438308, -0.28497612476348877, 0.025302160531282425, -0.007044136989861727, 0.5853926539421082, -0.3399684727191925, -0.0013866908848285675, -0.024092020466923714, -0.14261727035045624, -0.06372464448213577, 0.007166566792875528, 0.4712916314601898, -0.4541781544685364, 1.0331361293792725, -0.1582636833190918, -0.2373955249786377, -0.2865428328514099, -0.826671838760376, -0.6432652473449707, -0.46991345286369324, -0.3515812158584595, 0.3011755645275116, -0.9195376038551331, 0.4652515947818756]} +{"t": 10.4508, "q": [-0.3445371985435486, 0.02557998150587082, -0.012708908878266811, 0.614700198173523, -0.2825174331665039, 0.0009192039142362773, -0.2850187420845032, 0.026222549378871918, -0.00705752894282341, 0.584583044052124, -0.3399604856967926, -0.0013431611005216837, -0.02419915609061718, -0.14757192134857178, -0.066655233502388, -0.0011504855938255787, 0.4705965518951416, -0.45453768968582153, 1.0415130853652954, -0.15156449377536774, -0.2323261946439743, -0.27887290716171265, -0.8614740371704102, -0.6656877398490906, -0.4763849377632141, -0.34477418661117554, 0.30658045411109924, -0.9033828973770142, 0.4611530005931854]} +{"t": 10.4676, "q": [-0.3449377417564392, 0.025869732722640038, -0.01284282747656107, 0.6157228350639343, -0.28346434235572815, 0.0011876809876412153, -0.28502726554870605, 0.02653786726295948, -0.006870042532682419, 0.5843870043754578, -0.34001871943473816, -0.0011826521949842572, -0.024587521329522133, -0.15193386375904083, -0.0688714012503624, -0.008305068127810955, 0.4703449010848999, -0.4546455442905426, 1.0475651025772095, -0.1450091302394867, -0.22581875324249268, -0.27110713720321655, -0.8924652338027954, -0.684634804725647, -0.48204147815704346, -0.34145453572273254, 0.31172168254852295, -0.8925012350082397, 0.45770153403282166]} +{"t": 10.4843, "q": [-0.34565359354019165, 0.02589529938995838, -0.012816044501960278, 0.6168392300605774, -0.2848377823829651, 0.001922951778396964, -0.2850528359413147, 0.026486733928322792, -0.006669164169579744, 0.584208071231842, -0.34007251262664795, -0.001087647513486445, -0.024989277124404907, -0.1557828187942505, -0.07109441608190536, -0.01672997884452343, 0.4682236909866333, -0.4547414183616638, 1.0533894300460815, -0.14101837575435638, -0.21808892488479614, -0.261951208114624, -0.9231328964233398, -0.7032343149185181, -0.485768586397171, -0.3410710394382477, 0.32066190242767334, -0.8850589990615845, 0.4540463387966156]} +{"t": 10.5011, "q": [-0.3465910255908966, 0.02589529938995838, -0.01260177418589592, 0.6185436844825745, -0.2876999080181122, 0.005066482350230217, -0.2850528359413147, 0.02623107098042965, -0.006548637058585882, 0.58399498462677, -0.3401142656803131, -0.000941865670029074, -0.025270506739616394, -0.1582898199558258, -0.07293518632650375, -0.02618553303182125, 0.465707004070282, -0.45560428500175476, 1.0594055652618408, -0.1348225325345993, -0.21165339648723602, -0.2543891370296478, -0.9514875411987305, -0.7194729447364807, -0.488345205783844, -0.3411429524421692, 0.3314836621284485, -0.8778804540634155, 0.44852161407470703]} +{"t": 10.5178, "q": [-0.3479290008544922, 0.025869732722640038, -0.012481247074902058, 0.6213218569755554, -0.2893776595592499, 0.005042648874223232, -0.2851295471191406, 0.026162894442677498, -0.006481677293777466, 0.5839183330535889, -0.34005752205848694, -0.0007969965226948261, -0.025658871978521347, -0.15951630473136902, -0.07386196404695511, -0.03453853726387024, 0.46127283573150635, -0.45585596561431885, 1.0640794038772583, -0.12634968757629395, -0.20483437180519104, -0.24632376432418823, -0.979602575302124, -0.7328713536262512, -0.4879497289657593, -0.34262898564338684, 0.34454646706581116, -0.8710255026817322, 0.44170260429382324]} +{"t": 10.5346, "q": [-0.34972718358039856, 0.02587825432419777, -0.01244107075035572, 0.6254209876060486, -0.292750746011734, 0.007088388316333294, -0.285103976726532, 0.02617993950843811, -0.006441501900553703, 0.5840120315551758, -0.3400331735610962, -0.0007390680839307606, -0.025431210175156593, -0.16017428040504456, -0.07434885948896408, -0.04374242201447487, 0.456814706325531, -0.45597580075263977, 1.067243218421936, -0.12017781287431717, -0.19693677127361298, -0.23817449808120728, -1.0076216459274292, -0.7462936639785767, -0.4870149493217468, -0.34192192554473877, 0.35563188791275024, -0.8623249530792236, 0.4366212785243988]} +{"t": 10.5513, "q": [-0.35240310430526733, 0.02589529938995838, -0.012816044501960278, 0.6295371651649475, -0.294592022895813, 0.006786590442061424, -0.2853255569934845, 0.026196982711553574, -0.006682556122541428, 0.583926796913147, -0.34077128767967224, 0.0005837244098074734, -0.02523033134639263, -0.16086168587207794, -0.07486829161643982, -0.05309011787176132, 0.4513498842716217, -0.4561915099620819, 1.0702751874923706, -0.11358648538589478, -0.19179554283618927, -0.2308521270751953, -1.0325608253479004, -0.7588411569595337, -0.48614010214805603, -0.3413826525211334, 0.36414068937301636, -0.855350136756897, 0.43476372957229614]} +{"t": 10.5681, "q": [-0.35472965240478516, 0.02588677778840065, -0.012722301296889782, 0.6325880885124207, -0.2974618971347809, 0.00809414405375719, -0.28599026799201965, 0.025856098160147667, -0.006829866673797369, 0.5839608907699585, -0.3409247398376465, 0.0010867961682379246, -0.025270506739616394, -0.16154906153678894, -0.07535810768604279, -0.062066301703453064, 0.44652023911476135, -0.45643121004104614, 1.0731514692306519, -0.10686333477497101, -0.18628279864788055, -0.22192388772964478, -1.0528861284255981, -0.7681049704551697, -0.4861281216144562, -0.34102311730384827, 0.37163081765174866, -0.8504844903945923, 0.43216314911842346]} +{"t": 10.5848, "q": [-0.357286274433136, 0.02540101669728756, -0.012494638562202454, 0.635246992111206, -0.29837891459465027, 0.009203432127833366, -0.2870129346847534, 0.02491866610944271, -0.0070173535495996475, 0.5836029648780823, -0.34066757559776306, 0.0019276600796729326, -0.02539103478193283, -0.1624830812215805, -0.07605007290840149, -0.07063502073287964, 0.44094759225845337, -0.45652708411216736, 1.0753804445266724, -0.10135059058666229, -0.17782193422317505, -0.21383452415466309, -1.072492241859436, -0.7765058875083923, -0.4861520826816559, -0.34085533022880554, 0.381206214427948, -0.8465896248817444, 0.4282083511352539]} +{"t": 10.6017, "q": [-0.36000484228134155, 0.0249919556081295, -0.011958963237702847, 0.6386387944221497, -0.2998931407928467, 0.01081590075045824, -0.2884787321090698, 0.023989755660295486, -0.006990569643676281, 0.5833387970924377, -0.3402724862098694, 0.0029416983015835285, -0.025471385568380356, -0.16275937855243683, -0.07626494765281677, -0.07911985367536545, 0.4352790415287018, -0.4564671516418457, 1.0777533054351807, -0.09414807707071304, -0.170895054936409, -0.20578113198280334, -1.0904686450958252, -0.7825579047203064, -0.48536112904548645, -0.3407714366912842, 0.39023032784461975, -0.8402020335197449, 0.4243853986263275]} +{"t": 10.6184, "q": [-0.3633710741996765, 0.024719247594475746, -0.01132954377681017, 0.6422095894813538, -0.30266377329826355, 0.010495295748114586, -0.29030245542526245, 0.023069366812705994, -0.007084312848746777, 0.5831257700920105, -0.339731901884079, 0.004034335259348154, -0.025431210175156593, -0.1627444624900818, -0.07626374065876007, -0.0875926986336708, 0.4297063946723938, -0.45635929703712463, 1.0810250043869019, -0.08681372553110123, -0.16528643667697906, -0.1976318657398224, -1.1057485342025757, -0.7885500192642212, -0.48483380675315857, -0.3407115340232849, 0.3962823748588562, -0.8358158469200134, 0.42277950048446655]} +{"t": 10.6352, "q": [-0.36689069867134094, 0.02456584945321083, -0.011463462375104427, 0.6458485126495361, -0.305143803358078, 0.010074198246002197, -0.29269716143608093, 0.022234199568629265, -0.0068566505797207355, 0.5833047032356262, -0.3401919901371002, 0.003260818775743246, -0.02555173635482788, -0.16273696720600128, -0.07623845338821411, -0.09599364548921585, 0.42448127269744873, -0.4565151035785675, 1.0836975574493408, -0.08163654059171677, -0.1582636833190918, -0.19058513641357422, -1.1197940111160278, -0.7945901155471802, -0.4847259521484375, -0.3389378488063812, 0.39906272292137146, -0.8314775228500366, 0.42265966534614563]} +{"t": 10.652, "q": [-0.37001833319664, 0.024284619837999344, -0.011316152289509773, 0.648405134677887, -0.3061566650867462, 0.011336049996316433, -0.29506632685661316, 0.021228589117527008, -0.00672273151576519, 0.5831683874130249, -0.3401065766811371, 0.003427220042794943, -0.025846358388662338, -0.16273696720600128, -0.07624832540750504, -0.10280068218708038, 0.42010700702667236, -0.4567188322544098, 1.0863580703735352, -0.07617173343896866, -0.15166036784648895, -0.18268753588199615, -1.1308674812316895, -0.8009417057037354, -0.4868232011795044, -0.3381948471069336, 0.4040002226829529, -0.8290087580680847, 0.42247989773750305]} +{"t": 10.6688, "q": [-0.37230226397514343, 0.023824425414204597, -0.010030529461801052, 0.6501692533493042, -0.3069040775299072, 0.01270113792270422, -0.2970093786716461, 0.019353725016117096, -0.0070173535495996475, 0.5829893946647644, -0.33936136960983276, 0.004648775793612003, -0.02638203464448452, -0.16273696720600128, -0.07624832540750504, -0.10792993009090424, 0.4159604609012604, -0.4565869867801666, 1.089426040649414, -0.07179749011993408, -0.1468786597251892, -0.17550897598266602, -1.1405746936798096, -0.8074012398719788, -0.48932790756225586, -0.3383506238460541, 0.4078111946582794, -0.827702522277832, 0.42140132188796997]} +{"t": 10.6855, "q": [-0.3745094835758209, 0.02353467233479023, -0.008035137318074703, 0.6518992185592651, -0.307862251996994, 0.01437652762979269, -0.29919955134391785, 0.017777131870388985, -0.00676290737465024, 0.5826570391654968, -0.33826255798339844, 0.006586695089936256, -0.027426602318882942, -0.16268472373485565, -0.07621941715478897, -0.11180083453655243, 0.41231727600097656, -0.4563233554363251, 1.0916670560836792, -0.06696785241365433, -0.141066312789917, -0.16926519572734833, -1.1515042781829834, -0.8123986721038818, -0.4901188611984253, -0.3384225368499756, 0.41212552785873413, -0.8266838192939758, 0.4195916950702667]} +{"t": 10.7024, "q": [-0.37729620933532715, 0.023134132847189903, -0.00676290737465024, 0.6537229418754578, -0.3084567189216614, 0.015546915121376514, -0.3012278079986572, 0.017001619562506676, -0.006200447678565979, 0.5823928713798523, -0.33732566237449646, 0.007914875634014606, -0.028779184445738792, -0.16260264813899994, -0.07621768862009048, -0.11551594734191895, 0.4093092381954193, -0.45650309324264526, 1.0925298929214478, -0.06314488500356674, -0.1339237242937088, -0.16412396728992462, -1.1591742038726807, -0.8163174986839294, -0.4914610981941223, -0.33848246932029724, 0.41471412777900696, -0.8263363242149353, 0.4179738163948059]} +{"t": 10.7191, "q": [-0.3812675178050995, 0.022921081632375717, -0.0068030827678740025, 0.656535267829895, -0.3092907965183258, 0.017092669382691383, -0.30337539315223694, 0.016933443024754524, -0.006414717994630337, 0.582196831703186, -0.33656904101371765, 0.009142815135419369, -0.032006628811359406, -0.1621846854686737, -0.07606533169746399, -0.1188715323805809, 0.4066726863384247, -0.45650309324264526, 1.0928055047988892, -0.05724864453077316, -0.12932176887989044, -0.15719708800315857, -1.1654778718948364, -0.8208834528923035, -0.4933665990829468, -0.33848246932029724, 0.4155530035495758, -0.8264681100845337, 0.4171708822250366]} +{"t": 10.7359, "q": [-0.3851621150970459, 0.022972213104367256, -0.007204839959740639, 0.6595691442489624, -0.30987316370010376, 0.018096424639225006, -0.3054633140563965, 0.017137974500656128, -0.00676290737465024, 0.5822820663452148, -0.3338660001754761, 0.009152182377874851, -0.036358997225761414, -0.1616615504026413, -0.07564826309680939, -0.12143615633249283, 0.4045754671096802, -0.45627540349960327, 1.0932010412216187, -0.051903679966926575, -0.12632571160793304, -0.15096528828144073, -1.1707149744033813, -0.8265759944915771, -0.4949125349521637, -0.3385184109210968, 0.4159964323043823, -0.826899528503418, 0.41763827204704285]} +{"t": 10.7532, "q": [-0.3880596458911896, 0.023313097655773163, -0.007445894181728363, 0.6622961759567261, -0.3108692169189453, 0.01975698582828045, -0.3066904842853546, 0.0172658059746027, -0.006937001831829548, 0.5822309255599976, -0.33156535029411316, 0.014362207613885403, -0.04064440354704857, -0.16128040850162506, -0.07537588477134705, -0.12310196459293365, 0.40261003375053406, -0.45605969429016113, 1.0936084985733032, -0.04716990888118744, -0.12376109510660172, -0.1455603986978531, -1.1743102073669434, -0.8327598571777344, -0.49490055441856384, -0.3385903239250183, 0.4165477156639099, -0.8270792961120605, 0.4181176424026489]} +{"t": 10.7699, "q": [-0.38972997665405273, 0.023279009386897087, -0.007378934416919947, 0.6645545363426208, -0.31189101934432983, 0.02120092138648033, -0.3073381781578064, 0.017172062769532204, -0.006883434485644102, 0.5820519328117371, -0.3315922021865845, 0.014137137681245804, -0.044246822595596313, -0.16107864677906036, -0.07521649450063705, -0.12471982836723328, 0.40106406807899475, -0.45601174235343933, 1.0938721895217896, -0.04533632472157478, -0.12044146656990051, -0.139364555478096, -1.1765153408050537, -0.8385841846466064, -0.4947926998138428, -0.33878207206726074, 0.4180696904659271, -0.828014075756073, 0.419196218252182]} +{"t": 10.7868, "q": [-0.3903861939907074, 0.0232960544526577, -0.0072584073059260845, 0.6658243536949158, -0.3124742805957794, 0.02201627939939499, -0.3073296546936035, 0.017248760908842087, -0.006695947609841824, 0.5815150737762451, -0.3313438594341278, 0.01435999758541584, -0.04735374450683594, -0.16111597418785095, -0.07522444427013397, -0.12632571160793304, 0.39938628673553467, -0.45597580075263977, 1.0940279960632324, -0.04286757484078407, -0.11597134917974472, -0.13380387425422668, -1.1780253648757935, -0.8450077176094055, -0.49363023042678833, -0.34023216366767883, 0.4197475016117096, -0.830470860004425, 0.42123353481292725]} +{"t": 10.8036, "q": [-0.39082080125808716, 0.0232960544526577, -0.007137880194932222, 0.6668214201927185, -0.3128776550292969, 0.021709496155381203, -0.3072444200515747, 0.01738511584699154, -0.006695947609841824, 0.580935537815094, -0.3310743272304535, 0.014502665027976036, -0.04901433736085892, -0.16110852360725403, -0.07522878050804138, -0.1281832754611969, 0.39730104804039, -0.45597580075263977, 1.0940998792648315, -0.039619848132133484, -0.11178885400295258, -0.1288304179906845, -1.17940354347229, -0.8517428636550903, -0.4927434027194977, -0.34449854493141174, 0.42135336995124817, -0.833682656288147, 0.42427751421928406]} +{"t": 10.8203, "q": [-0.39105942845344543, 0.02323639951646328, -0.006990569643676281, 0.6677929759025574, -0.3133581280708313, 0.02071370556950569, -0.3071592152118683, 0.017615212127566338, -0.0064013260416686535, 0.5805776119232178, -0.33089566230773926, 0.014718935824930668, -0.04963036626577377, -0.16108612716197968, -0.07522203773260117, -0.13007678091526031, 0.3935859203338623, -0.4559158682823181, 1.094315528869629, -0.03693538159132004, -0.10832541435956955, -0.1251632422208786, -1.1818963289260864, -0.8582982420921326, -0.4918685555458069, -0.35086217522621155, 0.4245172142982483, -0.8371220827102661, 0.42769303917884827]} +{"t": 10.8373, "q": [-0.39132362604141235, 0.023202311247587204, -0.006829866673797369, 0.6686111092567444, -0.31336304545402527, 0.020213289186358452, -0.30704841017723083, 0.01764077879488468, -0.00638793408870697, 0.5804242491722107, -0.33072224259376526, 0.015073350630700588, -0.04972410947084427, -0.16107864677906036, -0.07521649450063705, -0.13220997154712677, 0.391213059425354, -0.45580801367759705, 1.0946152210235596, -0.035173699259757996, -0.10565292835235596, -0.12132829427719116, -1.1846646070480347, -0.864625871181488, -0.4914131462574005, -0.35817253589630127, 0.4274293780326843, -0.8398904800415039, 0.42994606494903564]} +{"t": 10.854, "q": [-0.391766756772995, 0.023219354450702667, -0.007003961596637964, 0.6696337461471558, -0.31304556131362915, 0.02020794153213501, -0.3067842423915863, 0.01757260225713253, -0.006588812451809645, 0.5800918936729431, -0.33078479766845703, 0.01519753411412239, -0.0497107170522213, -0.16105623543262482, -0.07519987970590591, -0.1347745954990387, 0.38910382986068726, -0.4559398591518402, 1.0949387550354004, -0.03304050862789154, -0.10271679610013962, -0.11575563251972198, -1.1884276866912842, -0.8706899285316467, -0.4912693500518799, -0.36574655771255493, 0.4313602149486542, -0.8416281938552856, 0.43186354637145996]} +{"t": 10.8707, "q": [-0.3922099173069, 0.02317674458026886, -0.007298583164811134, 0.6706052422523499, -0.3125583827495575, 0.020602509379386902, -0.3066052794456482, 0.017615212127566338, -0.0068030827678740025, 0.5798020958900452, -0.33075565099716187, 0.015146362595260143, -0.04960358142852783, -0.16106371581554413, -0.07520541548728943, -0.13693176209926605, 0.3873661160469055, -0.4558199942111969, 1.0952622890472412, -0.03027215227484703, -0.09880993515253067, -0.11093797534704208, -1.1929457187652588, -0.8745608329772949, -0.4911854565143585, -0.3722899556159973, 0.4335293471813202, -0.8419637084007263, 0.4336252212524414]} +{"t": 10.8875, "q": [-0.39288315176963806, 0.023031868040561676, -0.007807475049048662, 0.6717557311058044, -0.31227558851242065, 0.02168414182960987, -0.30635812878608704, 0.017708955332636833, -0.007164664100855589, 0.57913738489151, -0.3307763636112213, 0.015168385580182076, -0.04920182377099991, -0.16106371581554413, -0.07520541548728943, -0.13924472033977509, 0.3858920633792877, -0.45565223693847656, 1.095873475074768, -0.028378644958138466, -0.09447164833545685, -0.1065157949924469, -1.196289300918579, -0.877472996711731, -0.49114951491355896, -0.37762293219566345, 0.4347277581691742, -0.8419637084007263, 0.4355067312717438]} +{"t": 10.9042, "q": [-0.39399105310440063, 0.02298925817012787, -0.008503853343427181, 0.6732982397079468, -0.3125441372394562, 0.021921660751104355, -0.30639222264289856, 0.017785655334591866, -0.007740515749901533, 0.5786431431770325, -0.3307475745677948, 0.015160814858973026, -0.048974163830280304, -0.16102637350559235, -0.07518760114908218, -0.14202505350112915, 0.3847176134586334, -0.4555203914642334, 1.0967364311218262, -0.027288081124424934, -0.08978581428527832, -0.10332798957824707, -1.1993093490600586, -0.8804211020469666, -0.49147307872772217, -0.38278815150260925, 0.43589022755622864, -0.8419637084007263, 0.4371246099472046]} +{"t": 10.9209, "q": [-0.39526084065437317, 0.023151177912950516, -0.009106488898396492, 0.6747384667396545, -0.31301015615463257, 0.021955082193017006, -0.30658823251724243, 0.018203238025307655, -0.008450286462903023, 0.5784215331077576, -0.33077219128608704, 0.015161078423261642, -0.04894737899303436, -0.16091427206993103, -0.07509464770555496, -0.14442190527915955, 0.38381877541542053, -0.45560428500175476, 1.0981265306472778, -0.026137595996260643, -0.08732905238866806, -0.09979264438152313, -1.2014065980911255, -0.8834052085876465, -0.4913172721862793, -0.3863953948020935, 0.43646547198295593, -0.8418439030647278, 0.4375440776348114]} +{"t": 10.9378, "q": [-0.39609599113464355, 0.023509107530117035, -0.009816259145736694, 0.6756588816642761, -0.3135790228843689, 0.021879177540540695, -0.30675867199897766, 0.01847594603896141, -0.008865434676408768, 0.5782425999641418, -0.33080869913101196, 0.01511056162416935, -0.04890720173716545, -0.16091424226760864, -0.07507489621639252, -0.146183580160141, 0.38306376338005066, -0.4555923044681549, 1.0996005535125732, -0.025646241381764412, -0.08647816628217697, -0.09553824365139008, -1.2015503644943237, -0.8861735463142395, -0.49112552404403687, -0.3881930112838745, 0.43660929799079895, -0.8416761159896851, 0.43783167004585266]} +{"t": 10.9545, "q": [-0.3968544602394104, 0.023926690220832825, -0.01033854391425848, 0.6768093705177307, -0.3142760992050171, 0.021983647719025612, -0.30676719546318054, 0.018731608986854553, -0.009267191402614117, 0.5779272317886353, -0.3308615982532501, 0.015060191042721272, -0.04896077141165733, -0.16086193919181824, -0.07503613084554672, -0.14719025790691376, 0.3823806643486023, -0.45558032393455505, 1.100870966911316, -0.025442510843276978, -0.0860946774482727, -0.09119995683431625, -1.201454520225525, -0.8892654776573181, -0.491113543510437, -0.38937947154045105, 0.43651342391967773, -0.841532289981842, 0.4381912052631378]} +{"t": 10.9712, "q": [-0.3970504701137543, 0.023986345157027245, -0.010459070093929768, 0.6772013902664185, -0.31465986371040344, 0.022104520350694656, -0.3067757189273834, 0.01883387565612793, -0.009427894838154316, 0.5779357552528381, -0.331037700176239, 0.015025618486106396, -0.04896077141165733, -0.16083206236362457, -0.07501397281885147, -0.1474059671163559, 0.381206214427948, -0.4555683434009552, 1.101338267326355, -0.02539457380771637, -0.08591490983963013, -0.08782040327787399, -1.201454520225525, -0.8920577764511108, -0.4910656213760376, -0.39070969820022583, 0.4360220730304718, -0.8411847352981567, 0.4385747015476227]} +{"t": 10.988, "q": [-0.3970930874347687, 0.023994866758584976, -0.010445678606629372, 0.6775422692298889, -0.31498202681541443, 0.022348975762724876, -0.30668196082115173, 0.01882535219192505, -0.009427894838154316, 0.5778761506080627, -0.3311159014701843, 0.015062747523188591, -0.048987552523612976, -0.16081714630126953, -0.07502264529466629, -0.1474299430847168, 0.38009169697761536, -0.4555443823337555, 1.1017577648162842, -0.02534663677215576, -0.0857231616973877, -0.08519585430622101, -1.2015743255615234, -0.893987238407135, -0.49100568890571594, -0.3924354314804077, 0.43591421842575073, -0.841016948223114, 0.4386226534843445]} +{"t": 11.0047, "q": [-0.3972123861312866, 0.023977823555469513, -0.010405503213405609, 0.6780876517295837, -0.31530407071113586, 0.02253543958067894, -0.30668196082115173, 0.018867963925004005, -0.009427894838154316, 0.5778420567512512, -0.3311691880226135, 0.015056013129651546, -0.04896077141165733, -0.1608096808195114, -0.07501710206270218, -0.1473580300807953, 0.3789292275905609, -0.4556162655353546, 1.1019854545593262, -0.025322668254375458, -0.08555538207292557, -0.08299075812101364, -1.2015503644943237, -0.8954972624778748, -0.49095776677131653, -0.39474838972091675, 0.43591421842575073, -0.8408132195472717, 0.4386226534843445]} +{"t": 11.0215, "q": [-0.39747658371925354, 0.024063043296337128, -0.010378719307482243, 0.6787098050117493, -0.3156552016735077, 0.022815942764282227, -0.30668196082115173, 0.018978750333189964, -0.009414502419531345, 0.5778164863586426, -0.3311941623687744, 0.015099876560270786, -0.048974163830280304, -0.16068263351917267, -0.07491306960582733, -0.14726215600967407, 0.3777427673339844, -0.4557241201400757, 1.1022850275039673, -0.02534663677215576, -0.08548347651958466, -0.08088153600692749, -1.2014425992965698, -0.8965518474578857, -0.49095776677131653, -0.39756467938423157, 0.43601009249687195, -0.840705394744873, 0.4386226534843445]} +{"t": 11.0383, "q": [-0.39783450961112976, 0.024173831567168236, -0.010298367589712143, 0.6793745160102844, -0.316052109003067, 0.023291826248168945, -0.30668196082115173, 0.019098060205578804, -0.009427894838154316, 0.5777227282524109, -0.33120259642601013, 0.015129025094211102, -0.04896077141165733, -0.16047343611717224, -0.07476785778999329, -0.14711834490299225, 0.376232773065567, -0.4556642174720764, 1.102596640586853, -0.02533465251326561, -0.0854714959859848, -0.07859254628419876, -1.2015024423599243, -0.8976064920425415, -0.4915210008621216, -0.4005008339881897, 0.43612992763519287, -0.840705394744873, 0.4385986626148224]} +{"t": 11.055, "q": [-0.3981753885746002, 0.024156788364052773, -0.010271583683788776, 0.6801585555076599, -0.31637465953826904, 0.023695677518844604, -0.30667343735694885, 0.01914067193865776, -0.009494854137301445, 0.5777056813240051, -0.33124005794525146, 0.01519481185823679, -0.04893398657441139, -0.16014471650123596, -0.07454390078783035, -0.14704644680023193, 0.3744471073150635, -0.4555683434009552, 1.1031838655471802, -0.02533465251326561, -0.08545950800180435, -0.0748894214630127, -1.2015503644943237, -0.898768961429596, -0.49155697226524353, -0.4035448133945465, 0.43635761737823486, -0.84056156873703, 0.43840691447257996]} +{"t": 11.0721, "q": [-0.39848220348358154, 0.024156788364052773, -0.01025819219648838, 0.6807721257209778, -0.31676676869392395, 0.023860003799200058, -0.30662232637405396, 0.01913214847445488, -0.009521638043224812, 0.5777227282524109, -0.33126479387283325, 0.01520960871130228, -0.04890720173716545, -0.1598532497882843, -0.07431808859109879, -0.14704644680023193, 0.3727453649044037, -0.4555683434009552, 1.1040947437286377, -0.025310683995485306, -0.08541157096624374, -0.07047922909259796, -1.2013226747512817, -0.8997636437416077, -0.49112552404403687, -0.4057499170303345, 0.4363935887813568, -0.8402859568595886, 0.4381912052631378]} +{"t": 11.089, "q": [-0.3988316059112549, 0.024156788364052773, -0.01024479977786541, 0.6812834739685059, -0.31702306866645813, 0.024148324504494667, -0.30662232637405396, 0.019106583669781685, -0.009548421949148178, 0.5776971578598022, -0.331245094537735, 0.01530388928949833, -0.04888042062520981, -0.15976352989673615, -0.07426156848669052, -0.1470584273338318, 0.3713192343711853, -0.4556162655353546, 1.1047418117523193, -0.025298699736595154, -0.08543553948402405, -0.06719554960727692, -1.2009512186050415, -0.9006025195121765, -0.4910656213760376, -0.40742769837379456, 0.436345636844635, -0.840106189250946, 0.43810731172561646]} +{"t": 11.1058, "q": [-0.39921510219573975, 0.024173831567168236, -0.01024479977786541, 0.6818629503250122, -0.3173001706600189, 0.024516228586435318, -0.30663934350013733, 0.019046928733587265, -0.009548421949148178, 0.5776801109313965, -0.33123308420181274, 0.015340100042521954, -0.04885363578796387, -0.15974856913089752, -0.07425050437450409, -0.14703446626663208, 0.37001296877861023, -0.4556642174720764, 1.1050294637680054, -0.025286715477705002, -0.0854714959859848, -0.06457100808620453, -1.2009631395339966, -0.9010579586029053, -0.4910416305065155, -0.4095369279384613, 0.43616586923599243, -0.839734673500061, 0.437915563583374]} +{"t": 11.1225, "q": [-0.3995133638381958, 0.024182353168725967, -0.01024479977786541, 0.6827322244644165, -0.31765973567962646, 0.024883633479475975, -0.30657970905303955, 0.019029883667826653, -0.009548421949148178, 0.577646017074585, -0.3311727046966553, 0.015477588400244713, -0.0488402433693409, -0.15975604951381683, -0.074256032705307, -0.14697453379631042, 0.36849096417427063, -0.455700159072876, 1.1051971912384033, -0.025370605289936066, -0.08565125614404678, -0.06211423873901367, -1.2010470628738403, -0.901081919670105, -0.4909697473049164, -0.41157424449920654, 0.43616586923599243, -0.8368584513664246, 0.43688493967056274]} +{"t": 11.1392, "q": [-0.3997519910335541, 0.024173831567168236, -0.010204624384641647, 0.6838656663894653, -0.31810200214385986, 0.02535199746489525, -0.3064092695713043, 0.01900431700050831, -0.009548421949148178, 0.5776545405387878, -0.3309950828552246, 0.01581011898815632, -0.04886702820658684, -0.15977849066257477, -0.07427263259887695, -0.14697453379631042, 0.36716070771217346, -0.4556162655353546, 1.105376958847046, -0.025442510843276978, -0.08623848110437393, -0.06073605269193649, -1.2007954120635986, -0.9009021520614624, -0.49110156297683716, -0.4123292565345764, 0.43612992763519287, -0.8311779499053955, 0.4351711869239807]} +{"t": 11.156, "q": [-0.4002377390861511, 0.024224964901804924, -0.01024479977786541, 0.6849820613861084, -0.3207797110080719, 0.025910399854183197, -0.3063836991786957, 0.018995795398950577, -0.009427894838154316, 0.5776289701461792, -0.33088311553001404, 0.016128646209836006, -0.04892059415578842, -0.1597934365272522, -0.07428369671106339, -0.14695057272911072, 0.36561474204063416, -0.4554485082626343, 1.105508804321289, -0.025837989524006844, -0.08725714683532715, -0.060268670320510864, -1.2002800703048706, -0.9007583260536194, -0.49137720465660095, -0.41162219643592834, 0.43621382117271423, -0.8210392594337463, 0.43216314911842346]} +{"t": 11.1728, "q": [-0.4006041884422302, 0.024242008104920387, -0.010137665085494518, 0.6861751675605774, -0.32722190022468567, 0.027015136554837227, -0.30635812878608704, 0.01895318552851677, -0.009146664291620255, 0.5775863528251648, -0.3308035731315613, 0.01640394702553749, -0.0490679070353508, -0.15979346632957458, -0.07429356873035431, -0.14692659676074982, 0.3641766309738159, -0.4550410211086273, 1.1056166887283325, -0.02611362747848034, -0.08810802549123764, -0.0601847805082798, -1.2000523805618286, -0.9006145000457764, -0.4924917221069336, -0.4074157178401947, 0.43626174330711365, -0.8074132204055786, 0.42911913990974426]} +{"t": 11.1898, "q": [-0.40091952681541443, 0.024242008104920387, -0.009722515940666199, 0.6873512268066406, -0.3271683156490326, 0.027022821828722954, -0.30629846453666687, 0.01889353059232235, -0.008610988967120647, 0.5774074196815491, -0.3307948708534241, 0.01634572632610798, -0.04920182377099991, -0.15980841219425201, -0.07430462539196014, -0.1469026356935501, 0.36302614212036133, -0.4549691379070282, 1.1055806875228882, -0.02635331079363823, -0.08894691616296768, -0.06017279624938965, -1.199800729751587, -0.900626540184021, -0.4947088062763214, -0.3867189586162567, 0.43633365631103516, -0.785649836063385, 0.42542800307273865]} +{"t": 11.2067, "q": [-0.40127745270729065, 0.024335751309990883, -0.009414502419531345, 0.6884505748748779, -0.3273702561855316, 0.027260752394795418, -0.3059064447879791, 0.018816830590367317, -0.00832975935190916, 0.5764273405075073, -0.3312208354473114, 0.015347243286669254, -0.049643758684396744, -0.15980097651481628, -0.07431882619857788, -0.1469026356935501, 0.36199551820755005, -0.45488524436950684, 1.1050294637680054, -0.026557043194770813, -0.09008542448282242, -0.0601847805082798, -1.196672797203064, -0.9042696952819824, -0.4980524182319641, -0.3526717722415924, 0.43638160824775696, -0.7569116950035095, 0.4230671226978302]} +{"t": 11.2234, "q": [-0.40186548233032227, 0.024293141439557076, -0.009026138111948967, 0.6891493797302246, -0.32753098011016846, 0.027368374168872833, -0.30588939785957336, 0.018757175654172897, -0.008155664429068565, 0.5756773948669434, -0.33056962490081787, 0.01636515185236931, -0.049817852675914764, -0.15977109968662262, -0.07430656999349594, -0.1469026356935501, 0.3612644672393799, -0.454873263835907, 1.104921579360962, -0.026581011712551117, -0.09078050404787064, -0.060280654579401016, -1.1903810501098633, -0.9073137044906616, -0.5039726495742798, -0.31091874837875366, 0.43642953038215637, -0.728940486907959, 0.4212215542793274]} +{"t": 11.2401, "q": [-0.402819961309433, 0.024182353168725967, -0.008503853343427181, 0.6895499229431152, -0.32755982875823975, 0.027476992458105087, -0.3064092695713043, 0.018671954050660133, -0.008450286462903023, 0.5750638246536255, -0.3298934996128082, 0.017309928312897682, -0.050005339086055756, -0.1597038209438324, -0.07426664233207703, -0.1471303403377533, 0.36100080609321594, -0.45486128330230713, 1.1047418117523193, -0.02654505893588066, -0.09154749661684036, -0.060448430478572845, -1.18351411819458, -0.9104775190353394, -0.5139554738998413, -0.2586435377597809, 0.4364175498485565, -0.6952049136161804, 0.4194958209991455]} +{"t": 11.2568, "q": [-0.4037232995033264, 0.02461698092520237, -0.008356543257832527, 0.6897459626197815, -0.3276793360710144, 0.02770104818046093, -0.30695468187332153, 0.018688999116420746, -0.00847707036882639, 0.5741945505142212, -0.329029381275177, 0.018783122301101685, -0.05011247470974922, -0.1593453288078308, -0.07420828938484192, -0.14704644680023193, 0.361108660697937, -0.45490920543670654, 1.1044062376022339, -0.026509106159210205, -0.09231448918581009, -0.06058025732636452, -1.1786125898361206, -0.9145761728286743, -0.5249330401420593, -0.20418722927570343, 0.43718454241752625, -0.6652323603630066, 0.41669151186943054]} +{"t": 11.2736, "q": [-0.404243141412735, 0.02467663586139679, -0.008369934745132923, 0.6899334192276001, -0.3276875615119934, 0.02774455025792122, -0.3069632053375244, 0.01864638924598694, -0.008436894044280052, 0.5727287530899048, -0.3283420205116272, 0.01990940049290657, -0.05028656870126724, -0.15805353224277496, -0.07418887317180634, -0.14701049029827118, 0.36116859316825867, -0.45493316650390625, 1.1026445627212524, -0.026509106159210205, -0.09402823448181152, -0.060748036950826645, -1.1759880781173706, -0.9199330806732178, -0.5371449589729309, -0.15003050863742828, 0.4396892488002777, -0.6353796720504761, 0.41341981291770935]} +{"t": 11.2903, "q": [-0.4047374129295349, 0.024830034002661705, -0.008785083889961243, 0.6899589896202087, -0.3277205228805542, 0.02783137373626232, -0.3065115213394165, 0.018424812704324722, -0.008624380454421043, 0.5705385804176331, -0.3275676369667053, 0.021376030519604683, -0.05011247470974922, -0.15613463521003723, -0.0747535303235054, -0.14691461622714996, 0.3612045347690582, -0.4549451470375061, 1.1010746955871582, -0.026461169123649597, -0.09605356305837631, -0.0607839897274971, -1.171481966972351, -0.9301795959472656, -0.5482063889503479, -0.08865930140018463, 0.43628573417663574, -0.596167266368866, 0.4087699353694916]} +{"t": 11.3071, "q": [-0.40531691908836365, 0.02474481426179409, -0.009481461718678474, 0.6900186538696289, -0.3277040421962738, 0.027816971763968468, -0.30602577328681946, 0.01840776950120926, -0.009052921086549759, 0.5678882002830505, -0.3265984356403351, 0.022717026993632317, -0.04991159588098526, -0.15417708456516266, -0.07474804669618607, -0.14684271812438965, 0.36121654510498047, -0.45486128330230713, 1.0998282432556152, -0.026509106159210205, -0.09839048981666565, -0.0607600212097168, -1.1647229194641113, -0.9395033121109009, -0.5637739300727844, -0.03284876048564911, 0.4342483878135681, -0.5670456290245056, 0.4082666039466858]} +{"t": 11.3238, "q": [-0.4058453142642975, 0.02479594573378563, -0.009521638043224812, 0.690316915512085, -0.327679306268692, 0.02780265361070633, -0.30617064237594604, 0.018399247899651527, -0.00898596178740263, 0.5668314695358276, -0.32599523663520813, 0.023495225235819817, -0.05011247470974922, -0.15133428573608398, -0.07414484769105911, -0.14691461622714996, 0.3616120219230652, -0.4545137286186218, 1.0983542203903198, -0.026868632063269615, -0.10147043317556381, -0.0607600212097168, -1.1600970029830933, -0.9536327123641968, -0.5731096267700195, 0.012415657751262188, 0.4320792555809021, -0.539230227470398, 0.4086141586303711]} +{"t": 11.3406, "q": [-0.40594756603240967, 0.02497491054236889, -0.009521638043224812, 0.6903339624404907, -0.3276751935482025, 0.02780994027853012, -0.3063240349292755, 0.018458902835845947, -0.008771691471338272, 0.566430926322937, -0.325795978307724, 0.023805521428585052, -0.05023299902677536, -0.14892402291297913, -0.07356707751750946, -0.14684271812438965, 0.3621872663497925, -0.4540702998638153, 1.0977790355682373, -0.027659591287374496, -0.10577277094125748, -0.060748036950826645, -1.1563218832015991, -0.9720045328140259, -0.5737807154655457, 0.04531235620379448, 0.4312763214111328, -0.5163283348083496, 0.41037583351135254]} +{"t": 11.3573, "q": [-0.40596461296081543, 0.02528170682489872, -0.009789476171135902, 0.6902828216552734, -0.3276710510253906, 0.027831753715872765, -0.30630698800086975, 0.01865491084754467, -0.008945786394178867, 0.5662434101104736, -0.32567906379699707, 0.024102145805954933, -0.05023299902677536, -0.14723943173885345, -0.07336730509996414, -0.14671088755130768, 0.36369726061820984, -0.45385459065437317, 1.0969401597976685, -0.028138961642980576, -0.1107102707028389, -0.06072406843304634, -1.1542726755142212, -0.9911074042320251, -0.57233065366745, 0.07233678549528122, 0.4316478371620178, -0.4951642155647278, 0.41174203157424927]} +{"t": 11.3743, "q": [-0.40600723028182983, 0.025324316695332527, -0.010700124315917492, 0.6903254389762878, -0.32760101556777954, 0.027897605672478676, -0.30622178316116333, 0.01889353059232235, -0.009561813436448574, 0.5662348866462708, -0.3255752921104431, 0.024021102115511894, -0.04956340417265892, -0.146438330411911, -0.07342179119586945, -0.14672286808490753, 0.36508744955062866, -0.4536748230457306, 1.0960652828216553, -0.028366660699248314, -0.11387410759925842, -0.06070009991526604, -1.154080867767334, -1.0076935291290283, -0.571132242679596, 0.094507597386837, 0.43261855840682983, -0.4779069423675537, 0.4120536148548126]} +{"t": 11.3912, "q": [-0.40622028708457947, 0.025307273492217064, -0.012119665741920471, 0.6903765797615051, -0.3274196684360504, 0.02778288908302784, -0.3059746325016022, 0.019115105271339417, -0.01099474634975195, 0.5662348866462708, -0.3253401517868042, 0.024469058960676193, -0.04886702820658684, -0.1460791826248169, -0.073563352227211, -0.14669890701770782, 0.3662738800048828, -0.45359092950820923, 1.0950106382369995, -0.028270786628127098, -0.11628293991088867, -0.06067613139748573, -1.1547999382019043, -1.0227457284927368, -0.571287989616394, 0.11719373613595963, 0.4328821897506714, -0.4604099690914154, 0.41180193424224854]} +{"t": 11.4082, "q": [-0.4064248204231262, 0.02534988336265087, -0.013378503732383251, 0.6903765797615051, -0.327135294675827, 0.02785039134323597, -0.30561670660972595, 0.01931111328303814, -0.012628557160496712, 0.5662178993225098, -0.3245637118816376, 0.025230852887034416, -0.048157256096601486, -0.14604930579662323, -0.07360068708658218, -0.14672286808490753, 0.3671487271785736, -0.45363888144493103, 1.093404769897461, -0.028246818110346794, -0.11850001662969589, -0.06066414713859558, -1.158934473991394, -1.0372467041015625, -0.5714557766914368, 0.1383219212293625, 0.4331578314304352, -0.4452618956565857, 0.4106155037879944]} +{"t": 11.425, "q": [-0.40669751167297363, 0.025690767914056778, -0.014891788363456726, 0.690546989440918, -0.3262443244457245, 0.029111890122294426, -0.30525878071784973, 0.02003549411892891, -0.014048098586499691, 0.5662093758583069, -0.32452282309532166, 0.024801714345812798, -0.04744748771190643, -0.14607928693294525, -0.07361278682947159, -0.14669890701770782, 0.36761611700057983, -0.4536748230457306, 1.0920265913009644, -0.028246818110346794, -0.1212683767080307, -0.06066414713859558, -1.1634645462036133, -1.0505611896514893, -0.5722947120666504, 0.15680159628391266, 0.4333495795726776, -0.43211519718170166, 0.40814676880836487]} +{"t": 11.4417, "q": [-0.40668898820877075, 0.025971997529268265, -0.015280152671039104, 0.6907685995101929, -0.3237668573856354, 0.029505455866456032, -0.30483266711235046, 0.020674651488661766, -0.014851612038910389, 0.5662689805030823, -0.3243942856788635, 0.02377580851316452, -0.04707251489162445, -0.14607177674770355, -0.07360729575157166, -0.14672286808490753, 0.36778387427330017, -0.45371079444885254, 1.0910438299179077, -0.02816293016076088, -0.12517523765563965, -0.06066414713859558, -1.1685218811035156, -1.0601484775543213, -0.5736489295959473, 0.1721174418926239, 0.4338289499282837, -0.42033472657203674, 0.4058937132358551]} +{"t": 11.4584, "q": [-0.4065355956554413, 0.026048697531223297, -0.01478465273976326, 0.6908453106880188, -0.3216346502304077, 0.02640688419342041, -0.3044832646846771, 0.02123711071908474, -0.015132841654121876, 0.5662945508956909, -0.3241184651851654, 0.02287907525897026, -0.046643972396850586, -0.1459817737340927, -0.07354132831096649, -0.14649516344070435, 0.3678438067436218, -0.45378267765045166, 1.09050452709198, -0.02811499312520027, -0.12951351702213287, -0.06066414713859558, -1.1720572710037231, -1.0699516534805298, -0.5762734413146973, 0.18510834872722626, 0.43411657214164734, -0.4126887917518616, 0.40458744764328003]} +{"t": 11.4752, "q": [-0.4063481092453003, 0.026057220995426178, -0.01446324773132801, 0.6907174587249756, -0.32140401005744934, 0.026538491249084473, -0.30410829186439514, 0.021467208862304688, -0.015494422987103462, 0.5664053559303284, -0.324085533618927, 0.021948672831058502, -0.046617187559604645, -0.14564424753189087, -0.07329396158456802, -0.14611166715621948, 0.3669809401035309, -0.45401039719581604, 1.0902049541473389, -0.028126977384090424, -0.1327492594718933, -0.06066414713859558, -1.1732796430587769, -1.0771901607513428, -0.5806836485862732, 0.19477961957454681, 0.43414053320884705, -0.40408411622047424, 0.40348488092422485]} +{"t": 11.4919, "q": [-0.4062884449958801, 0.026219140738248825, -0.014543598517775536, 0.6907174587249756, -0.32138311862945557, 0.02642979472875595, -0.30400601029396057, 0.021859226748347282, -0.015695301815867424, 0.5666013956069946, -0.3244085907936096, 0.021654244512319565, -0.046617187559604645, -0.1448940634727478, -0.0727446898818016, -0.1454046070575714, 0.3650514781475067, -0.45405831933021545, 1.08936607837677, -0.028126977384090424, -0.1347745954990387, -0.06065216287970543, -1.1729201078414917, -1.0862501859664917, -0.5853814482688904, 0.20483437180519104, 0.43411657214164734, -0.39634230732917786, 0.4024063050746918]} +{"t": 11.5088, "q": [-0.40609243512153625, 0.02630436047911644, -0.01453020703047514, 0.6906748414039612, -0.3213828504085541, 0.02631375379860401, -0.303861141204834, 0.02214045636355877, -0.015681909397244453, 0.5666780471801758, -0.32470598816871643, 0.021257827058434486, -0.04671093076467514, -0.1440012902021408, -0.07209113240242004, -0.14448182284832, 0.36252281069755554, -0.4541422128677368, 1.0882395505905151, -0.02816293016076088, -0.13610485196113586, -0.06071208417415619, -1.1721291542053223, -1.0925778150558472, -0.5898275971412659, 0.21198895573616028, 0.43416452407836914, -0.390242338180542, 0.40205878019332886]} +{"t": 11.5256, "q": [-0.4057430326938629, 0.02631288394331932, -0.01436950359493494, 0.6906663179397583, -0.3214195966720581, 0.02616127021610737, -0.3036821782588959, 0.022242721170186996, -0.0155345993116498, 0.5667888522148132, -0.3249344229698181, 0.020984183996915817, -0.04683145880699158, -0.14219966530799866, -0.07078427821397781, -0.14403840899467468, 0.35929906368255615, -0.4545736610889435, 1.0870411396026611, -0.028198881074786186, -0.13697969913482666, -0.06077200546860695, -1.172165036201477, -1.0977790355682373, -0.5939502120018005, 0.2169264554977417, 0.434631884098053, -0.3854246735572815, 0.40198686718940735]} +{"t": 11.5423, "q": [-0.4053851068019867, 0.026287317276000977, -0.01412845030426979, 0.6906322240829468, -0.3215101957321167, 0.026102831587195396, -0.3033157289028168, 0.022217154502868652, -0.015400679782032967, 0.5668314695358276, -0.325054407119751, 0.02103634923696518, -0.04681806638836861, -0.14023923873901367, -0.06935395300388336, -0.14403840899467468, 0.35540419816970825, -0.4547174572944641, 1.085543155670166, -0.028150945901870728, -0.1375429481267929, -0.060748036950826645, -1.1721291542053223, -1.103723168373108, -0.597653329372406, 0.2211209386587143, 0.43499141931533813, -0.3806309700012207, 0.40208274126052856]} +{"t": 11.5591, "q": [-0.4051976203918457, 0.026219140738248825, -0.013874003663659096, 0.6905725598335266, -0.32154327630996704, 0.02614619955420494, -0.3029833734035492, 0.022191587835550308, -0.0153738958761096, 0.5668314695358276, -0.32519546151161194, 0.021139606833457947, -0.046791285276412964, -0.13808225095272064, -0.06780296564102173, -0.1440863460302353, 0.3513415455818176, -0.4548972249031067, 1.0840331315994263, -0.028150945901870728, -0.13796240091323853, -0.0607839897274971, -1.1718775033950806, -1.1093077659606934, -0.6006253957748413, 0.22488398849964142, 0.4353269934654236, -0.37722745537757874, 0.4021546542644501]} +{"t": 11.5758, "q": [-0.40490788221359253, 0.02611687406897545, -0.013472246937453747, 0.6905896067619324, -0.32161757349967957, 0.026160357519984245, -0.30259987711906433, 0.022251242771744728, -0.015306936576962471, 0.5668996572494507, -0.3252326250076294, 0.02114727348089218, -0.046791285276412964, -0.13583363592624664, -0.06619851291179657, -0.14407435059547424, 0.34733879566192627, -0.4548972249031067, 1.0833979845046997, -0.028234833851456642, -0.13880129158496857, -0.060748036950826645, -1.1717216968536377, -1.1135262250900269, -0.6032739281654358, 0.22862306237220764, 0.43545880913734436, -0.37407562136650085, 0.40198686718940735]} +{"t": 11.5925, "q": [-0.40477150678634644, 0.025929387658834457, -0.013003530912101269, 0.6905384659767151, -0.32168373465538025, 0.02623259276151657, -0.30249759554862976, 0.022370552644133568, -0.015159625560045242, 0.5669167041778564, -0.32527878880500793, 0.021242240443825722, -0.04673771560192108, -0.13340450823307037, -0.06488028168678284, -0.14399047195911407, 0.34347987174987793, -0.4548492729663849, 1.083254098892212, -0.02834269218146801, -0.13997575640678406, -0.06077200546860695, -1.1710865497589111, -1.1168699264526367, -0.6056827306747437, 0.23088808357715607, 0.43568649888038635, -0.3706720769405365, 0.40168726444244385]} +{"t": 11.6093, "q": [-0.40477150678634644, 0.025605546310544014, -0.012708908878266811, 0.6904959082603455, -0.3217043876647949, 0.02625424973666668, -0.3024720549583435, 0.022702915593981743, -0.01511945016682148, 0.5669848322868347, -0.3253248631954193, 0.02132267877459526, -0.046657364815473557, -0.1313054859638214, -0.06382404267787933, -0.144110307097435, 0.34020817279815674, -0.45477738976478577, 1.0832301378250122, -0.028414597734808922, -0.14140187203884125, -0.06073605269193649, -1.1707509756088257, -1.1205010414123535, -0.6073605418205261, 0.2326497584581375, 0.4356984794139862, -0.3675801455974579, 0.4012558162212372]} +{"t": 11.626, "q": [-0.40476298332214355, 0.025128308683633804, -0.012574990279972553, 0.690453290939331, -0.3217291533946991, 0.026254134252667427, -0.30244648456573486, 0.02317163161933422, -0.015079274773597717, 0.5671979188919067, -0.32544204592704773, 0.02152739092707634, -0.046643972396850586, -0.12891149520874023, -0.06256788223981857, -0.14409832656383514, 0.3373918831348419, -0.4547414183616638, 1.0829545259475708, -0.028390629217028618, -0.1435590386390686, -0.060748036950826645, -1.1678388118743896, -1.1232575178146362, -0.6081395149230957, 0.23363247513771057, 0.43556666374206543, -0.36261868476867676, 0.4012678265571594]} +{"t": 11.6427, "q": [-0.40467777848243713, 0.024761857464909554, -0.0121062733232975, 0.6905128955841064, -0.321770578622818, 0.026326466351747513, -0.30245500802993774, 0.02375965751707554, -0.014811436645686626, 0.5675387978553772, -0.3254924416542053, 0.021629666909575462, -0.04669753834605217, -0.12658414244651794, -0.061363138258457184, -0.144110307097435, 0.33503100275993347, -0.45472943782806396, 1.0827268362045288, -0.028378644958138466, -0.14686667919158936, -0.0607600212097168, -1.164171576499939, -1.1241083145141602, -0.6083073019981384, 0.23413580656051636, 0.43526706099510193, -0.35812461376190186, 0.4014475643634796]} +{"t": 11.6595, "q": [-0.4045669734477997, 0.02431870810687542, -0.011664341203868389, 0.6905214190483093, -0.321832537651062, 0.02637695148587227, -0.30245500802993774, 0.02430507354438305, -0.01444985531270504, 0.5676751732826233, -0.325547993183136, 0.021855520084500313, -0.04681806638836861, -0.12382626533508301, -0.0599900484085083, -0.14414626359939575, 0.3328738510608673, -0.4547174572944641, 1.08263099193573, -0.028498487547039986, -0.15106116235256195, -0.0607600212097168, -1.158467173576355, -1.1242161989212036, -0.6087866425514221, 0.23436351120471954, 0.43506333231925964, -0.3551405370235443, 0.40235838294029236]} +{"t": 11.6762, "q": [-0.4044221043586731, 0.024063043296337128, -0.011034921742975712, 0.6906066536903381, -0.32190290093421936, 0.02647090144455433, -0.30245500802993774, 0.024109063670039177, -0.013994530774652958, 0.5680501461029053, -0.32547494769096375, 0.02198551595211029, -0.04689841717481613, -0.12083941698074341, -0.058291077613830566, -0.1440623700618744, 0.33087247610092163, -0.4547654092311859, 1.0823312997817993, -0.02847451902925968, -0.1558428704738617, -0.06079597398638725, -1.1494789123535156, -1.1239525079727173, -0.6089065074920654, 0.23368041217327118, 0.43483564257621765, -0.35286352038383484, 0.4041440188884735]} +{"t": 11.6929, "q": [-0.4041920006275177, 0.023815901950001717, -0.010164448991417885, 0.6907430291175842, -0.3221419155597687, 0.026382775977253914, -0.30249759554862976, 0.02376817911863327, -0.01327136904001236, 0.568604052066803, -0.3254069983959198, 0.022224558517336845, -0.047474268823862076, -0.11741389334201813, -0.05646979808807373, -0.1438107043504715, 0.32896697521209717, -0.45475339889526367, 1.0815882682800293, -0.028498487547039986, -0.15779629349708557, -0.0607839897274971, -1.1389567852020264, -1.1237967014312744, -0.6090023517608643, 0.23321302235126495, 0.43444013595581055, -0.351653128862381, 0.40772730112075806]} +{"t": 11.7097, "q": [-0.4038170278072357, 0.023432407528162003, -0.009307367727160454, 0.6907259821891785, -0.32269033789634705, 0.02552359364926815, -0.3025231659412384, 0.023299463093280792, -0.012240192852914333, 0.5688767433166504, -0.3250909447669983, 0.022846009582281113, -0.04784924164414406, -0.11299698054790497, -0.054276011884212494, -0.14405038952827454, 0.3262825310230255, -0.45477738976478577, 1.0815643072128296, -0.02853444032371044, -0.15894678235054016, -0.06085589528083801, -1.1207647323608398, -1.119482398033142, -0.6089783906936646, 0.2289586216211319, 0.43434426188468933, -0.35161715745925903, 0.4124610722064972]} +{"t": 11.7264, "q": [-0.4037744402885437, 0.022980734705924988, -0.00933415163308382, 0.6910157203674316, -0.32334980368614197, 0.025047799572348595, -0.3028810918331146, 0.022711437195539474, -0.011155448853969574, 0.5693795680999756, -0.32466623187065125, 0.023764226585626602, -0.047983162105083466, -0.10758707672357559, -0.05169530212879181, -0.14448182284832, 0.3227711319923401, -0.45472943782806396, 1.0815284252166748, -0.028618330135941505, -0.1603848934173584, -0.06091581657528877, -1.0995886325836182, -1.1123517751693726, -0.6077320575714111, 0.22078537940979004, 0.434404194355011, -0.35313916206359863, 0.4194718599319458]} +{"t": 11.7431, "q": [-0.40366363525390625, 0.0220347810536623, -0.008945786394178867, 0.6911776661872864, -0.32366544008255005, 0.0249079130589962, -0.30374184250831604, 0.021816615015268326, -0.009561813436448574, 0.5704277753829956, -0.32433509826660156, 0.024545354768633842, -0.04818404093384743, -0.10190744698047638, -0.04893273115158081, -0.14467357099056244, 0.3189721405506134, -0.45475339889526367, 1.081660270690918, -0.028750156983733177, -0.16189490258693695, -0.06093978509306908, -1.0761594772338867, -1.1019494533538818, -0.6068811416625977, 0.20947226881980896, 0.4344281554222107, -0.3552483916282654, 0.4277649223804474]} +{"t": 11.7598, "q": [-0.40385112166404724, 0.020432623103260994, -0.007298583164811134, 0.6914929747581482, -0.32382211089134216, 0.025211485102772713, -0.30520763993263245, 0.02063204161822796, -0.007606596685945988, 0.5719191431999207, -0.32434898614883423, 0.025170302018523216, -0.0487465001642704, -0.09481624513864517, -0.04577082395553589, -0.14450578391551971, 0.3148735463619232, -0.4546934962272644, 1.0819119215011597, -0.029145635664463043, -0.1636565774679184, -0.06097573786973953, -1.0472774505615234, -1.0891263484954834, -0.604160726070404, 0.19564247131347656, 0.4343802332878113, -0.35950279235839844, 0.4379395544528961]} +{"t": 11.7765, "q": [-0.40399599075317383, 0.01915430650115013, -0.005249623209238052, 0.6919361352920532, -0.32400235533714294, 0.025094227865338326, -0.30685240030288696, 0.01876569725573063, -0.005745123140513897, 0.5745950937271118, -0.3249359726905823, 0.025380218401551247, -0.04886702820658684, -0.08735058456659317, -0.04167370870709419, -0.14412228763103485, 0.3109666705131531, -0.4547893702983856, 1.0821036100387573, -0.029217541217803955, -0.16511864960193634, -0.061167486011981964, -1.0163462162017822, -1.0728038549423218, -0.6007692217826843, 0.18077005445957184, 0.43379300832748413, -0.3636013865470886, 0.4471554160118103]} +{"t": 11.7933, "q": [-0.40440505743026733, 0.01709195412695408, -0.003468500915914774, 0.6929161548614502, -0.3247080147266388, 0.024712223559617996, -0.3086676299571991, 0.01654142513871193, -0.004071136470884085, 0.5783448219299316, -0.3263314664363861, 0.025170082226395607, -0.04941609501838684, -0.07847771793603897, -0.03600753843784332, -0.14369085431098938, 0.30738338828086853, -0.4548253118991852, 1.0822714567184448, -0.029289446771144867, -0.166748508810997, -0.061359234154224396, -0.9805852770805359, -1.0556424856185913, -0.5967904329299927, 0.16406404972076416, 0.4317796528339386, -0.37112748622894287, 0.459211528301239]} +{"t": 11.8101, "q": [-0.40550440549850464, 0.01535344310104847, -0.0020757438614964485, 0.6944416165351868, -0.3251902163028717, 0.024585137143731117, -0.310772567987442, 0.014845524914562702, -0.002464108867570758, 0.5812423825263977, -0.3274180293083191, 0.024048328399658203, -0.049844637513160706, -0.067926786839962, -0.03044958785176277, -0.14370284974575043, 0.30291327834129333, -0.45475339889526367, 1.082355260848999, -0.029289446771144867, -0.16830645501613617, -0.0613832026720047, -0.9441772103309631, -1.0361920595169067, -0.5934348702430725, 0.1477295458316803, 0.43059322237968445, -0.3814339339733124, 0.47277769446372986]} +{"t": 11.8268, "q": [-0.40737926959991455, 0.013239957392215729, 0.0004955001641064882, 0.6954557299613953, -0.32498425245285034, 0.025573650375008583, -0.31391724944114685, 0.013064403086900711, -0.0002544460294302553, 0.583466649055481, -0.32732343673706055, 0.02454140968620777, -0.049844637513160706, -0.05574004352092743, -0.025934329256415367, -0.14317554235458374, 0.29856300354003906, -0.45486128330230713, 1.082475185394287, -0.029289446771144867, -0.17009210586547852, -0.06150304526090622, -0.9040060639381409, -1.0155073404312134, -0.5891205668449402, 0.12829113006591797, 0.42869970202445984, -0.3919081389904022, 0.4874703586101532]} +{"t": 11.8435, "q": [-0.4098166227340698, 0.010308349505066872, 0.001607027486898005, 0.6956773400306702, -0.3243671655654907, 0.026614900678396225, -0.3169596493244171, 0.010933874174952507, 0.0014597165863960981, 0.5845319032669067, -0.32678747177124023, 0.025465650483965874, -0.050326742231845856, -0.04334058612585068, -0.022328628227114677, -0.1425643414258957, 0.293937087059021, -0.4547414183616638, 1.0836496353149414, -0.02943325787782669, -0.17142236232757568, -0.06156296655535698, -0.860886812210083, -0.9942472577095032, -0.5846624374389648, 0.1068153977394104, 0.42480483651161194, -0.4045275151729584, 0.5023427605628967]} +{"t": 11.8604, "q": [-0.4117596447467804, 0.00837383046746254, 0.0027453387156128883, 0.6956773400306702, -0.3229767084121704, 0.028553320094943047, -0.3185191750526428, 0.008539159782230854, 0.0022632302716374397, 0.5849665403366089, -0.3254835903644562, 0.027609290555119514, -0.051665931940078735, -0.032645441591739655, -0.019021637737751007, -0.14158163964748383, 0.2904616594314575, -0.4548972249031067, 1.0841529369354248, -0.0297927837818861, -0.1727406233549118, -0.061778679490089417, -0.8165451884269714, -0.9733947515487671, -0.5781789422035217, 0.08379369974136353, 0.42108970880508423, -0.41821351647377014, 0.5173829793930054]} +{"t": 11.8771, "q": [-0.4140947163105011, 0.007555706892162561, 0.0038434739690274, 0.6956261992454529, -0.3222147226333618, 0.02919648215174675, -0.32143375277519226, 0.005846171174198389, 0.0029730007518082857, 0.5860914587974548, -0.32518869638442993, 0.0277802012860775, -0.05229535326361656, -0.018685543909668922, -0.013496259227395058, -0.14017948508262634, 0.28753751516342163, -0.45488524436950684, 1.0843446254730225, -0.029864689335227013, -0.17408286035060883, -0.06204233318567276, -0.7770332098007202, -0.9526739716529846, -0.5703532695770264, 0.06137121841311455, 0.41491785645484924, -0.4316837787628174, 0.5309131741523743]} +{"t": 11.8938, "q": [-0.4171200692653656, 0.006132513750344515, 0.00512909609824419, 0.6955921053886414, -0.3199814558029175, 0.03179600089788437, -0.3245443105697632, 0.0028634308837354183, 0.004807690624147654, 0.5878299474716187, -0.3241232931613922, 0.029678208753466606, -0.053031906485557556, -0.0030856996309012175, -0.008927660994231701, -0.13787850737571716, 0.2844815254211426, -0.4547174572944641, 1.0846322774887085, -0.030056437477469444, -0.17496968805789948, -0.062138207256793976, -0.7320563793182373, -0.9321449995040894, -0.5599030256271362, 0.038661111146211624, 0.40830254554748535, -0.4475748538970947, 0.5459173917770386]} +{"t": 11.9106, "q": [-0.4175291359424591, 0.0030475077219307423, 0.006187055725604296, 0.6953279376029968, -0.31932467222213745, 0.03138560801744461, -0.32555845379829407, 5.1132694352418184e-05, 0.006896826438605785, 0.5894832611083984, -0.3235523998737335, 0.0311678946018219, -0.05309886485338211, 0.011093897745013237, -0.00197519245557487, -0.13658422231674194, 0.28256407380104065, -0.45465752482414246, 1.0849918127059937, -0.03020024672150612, -0.1753651648759842, -0.062246065586805344, -0.6917175054550171, -0.9124549627304077, -0.5517297387123108, 0.015459650196135044, 0.4003809690475464, -0.4637535512447357, 0.559855043888092]} +{"t": 11.9273, "q": [-0.4180404543876648, 0.000729492399841547, 0.008289583027362823, 0.6953279376029968, -0.3191052973270416, 0.03106025978922844, -0.32734808325767517, -0.0023009711876511574, 0.009628772735595703, 0.5921762585639954, -0.3236182928085327, 0.031168652698397636, -0.05288459733128548, 0.023578884080052376, 0.0046829902566969395, -0.13458284735679626, 0.2808742821216583, -0.45463356375694275, 1.0851356983184814, -0.03043993189930916, -0.17583255469799042, -0.062258049845695496, -0.6477953195571899, -0.8908354043960571, -0.542741596698761, -0.010150638408958912, 0.39027827978134155, -0.4805554449558258, 0.5739245414733887]} +{"t": 11.944, "q": [-0.41925910115242004, -0.0022873361594974995, 0.010057313367724419, 0.6953108906745911, -0.31892725825309753, 0.030778221786022186, -0.33043310046195984, -0.00475534051656723, 0.012173233553767204, 0.5948436856269836, -0.3238523304462433, 0.03153450787067413, -0.05258997529745102, 0.03343477472662926, 0.009617520496249199, -0.13141901791095734, 0.2799035608768463, -0.45442983508110046, 1.0860344171524048, -0.030535805970430374, -0.17582057416439056, -0.06227003410458565, -0.607887864112854, -0.8686525821685791, -0.5316082239151001, -0.031123032793402672, 0.3815537691116333, -0.49582335352897644, 0.5872150659561157]} +{"t": 11.9608, "q": [-0.41912275552749634, -0.006676225923001766, 0.01032515149563551, 0.6951404213905334, -0.31855031847953796, 0.0301054697483778, -0.3322483003139496, -0.00788295641541481, 0.01478465273976326, 0.5987723469734192, -0.3245576024055481, 0.032763008028268814, -0.05230874568223953, 0.044960059225559235, 0.013203161768615246, -0.1281832754611969, 0.2795080840587616, -0.4540223777294159, 1.0871250629425049, -0.031099064275622368, -0.17577263712882996, -0.062258049845695496, -0.565751314163208, -0.8452713489532471, -0.5184136033058167, -0.049494851380586624, 0.3717986047267914, -0.511067271232605, 0.5995708107948303]} +{"t": 11.9778, "q": [-0.419216513633728, -0.010903194546699524, 0.010432287119328976, 0.694637656211853, -0.318268746137619, 0.029642576351761818, -0.33381637930870056, -0.011232147924602032, 0.016900572925806046, 0.602292001247406, -0.32615774869918823, 0.035571325570344925, -0.05163915082812309, 0.055193524807691574, 0.01613408513367176, -0.12572650611400604, 0.2795560359954834, -0.45355498790740967, 1.0882155895233154, -0.031674306839704514, -0.17572470009326935, -0.062305986881256104, -0.524213969707489, -0.8225852251052856, -0.5069087743759155, -0.06466688215732574, 0.35973048210144043, -0.5233750939369202, 0.6113872528076172]} +{"t": 11.9946, "q": [-0.4197278320789337, -0.013451308012008667, 0.011088489554822445, 0.6937854290008545, -0.3172171413898468, 0.027893735095858574, -0.3352054953575134, -0.014189322479069233, 0.017422856763005257, 0.6051042675971985, -0.3267882168292999, 0.036712758243083954, -0.05062136426568031, 0.06599802523851395, 0.017948133870959282, -0.12373712658882141, 0.27956801652908325, -0.45345911383628845, 1.0897495746612549, -0.03284876048564911, -0.1757127046585083, -0.0622820183634758, -0.47664859890937805, -0.7988564968109131, -0.49234792590141296, -0.07772968709468842, 0.3446423411369324, -0.5375284552574158, 0.6252769231796265]} +{"t": 12.0117, "q": [-0.4196511209011078, -0.014993811026215553, 0.012749084271490574, 0.6922343969345093, -0.31590142846107483, 0.025916075333952904, -0.33656051754951477, -0.01648177206516266, 0.018025491386651993, 0.6071751713752747, -0.3270815312862396, 0.03721076250076294, -0.04892059415578842, 0.07400815188884735, 0.019354742020368576, -0.12204734981060028, 0.2796279191970825, -0.45336323976516724, 1.090732216835022, -0.03455052152276039, -0.17582057416439056, -0.06229400262236595, -0.4346199035644531, -0.7776683568954468, -0.4788776636123657, -0.08601078391075134, 0.33108818531036377, -0.5478109121322632, 0.6378124356269836]} +{"t": 12.0288, "q": [-0.4195488691329956, -0.016851631924510002, 0.01511945016682148, 0.6902316808700562, -0.31438612937927246, 0.025033891201019287, -0.3392108678817749, -0.018510034307837486, 0.020757438614964485, 0.6106862425804138, -0.32775959372520447, 0.038295164704322815, -0.04685824364423752, 0.0790901780128479, 0.020554058253765106, -0.12113654613494873, 0.28053873777389526, -0.45303967595100403, 1.0918108224868774, -0.03706720843911171, -0.17580857872962952, -0.06229400262236595, -0.39279496669769287, -0.7555934190750122, -0.462758868932724, -0.09092431515455246, 0.3143821954727173, -0.5559002757072449, 0.6493892073631287]} +{"t": 12.0456, "q": [-0.4192676246166229, -0.019800283014774323, 0.016257761046290398, 0.6872404217720032, -0.31039273738861084, 0.028986332938075066, -0.3398926556110382, -0.020427510142326355, 0.023462601006031036, 0.6146490573883057, -0.3293192982673645, 0.0410190224647522, -0.044474486261606216, 0.08242058008909225, 0.02210606075823307, -0.11987820267677307, 0.2818090617656708, -0.4520449638366699, 1.0926496982574463, -0.03894873335957527, -0.17582057416439056, -0.06223408132791519, -0.35367846488952637, -0.7333267331123352, -0.44707152247428894, -0.09149955958127975, 0.30026477575302124, -0.5597591996192932, 0.6603787541389465]} +{"t": 12.0623, "q": [-0.41893526911735535, -0.023481838405132294, 0.01631132885813713, 0.6838997602462769, -0.30660808086395264, 0.030545907095074654, -0.3400801420211792, -0.022830747067928314, 0.025444602593779564, 0.6191487312316895, -0.3302636742591858, 0.04275377467274666, -0.042238038033246994, 0.08390095084905624, 0.023351095616817474, -0.11844009906053543, 0.2831992208957672, -0.45025932788848877, 1.0932729244232178, -0.03935619443655014, -0.17579659819602966, -0.06221011281013489, -0.3174022138118744, -0.7122584581375122, -0.43239083886146545, -0.09149955958127975, 0.2857998013496399, -0.5616287589073181, 0.6706132888793945]} +{"t": 12.0792, "q": [-0.41856881976127625, -0.025586800649762154, 0.0155345993116498, 0.6809596419334412, -0.30252841114997864, 0.032843951135873795, -0.3404806852340698, -0.024501081556081772, 0.024828573688864708, 0.6208786964416504, -0.33047357201576233, 0.04391268268227577, -0.040242645889520645, 0.0851941704750061, 0.02497204951941967, -0.11768509447574615, 0.2831273078918457, -0.44664010405540466, 1.0939799547195435, -0.039739690721035004, -0.1757606416940689, -0.06215019151568413, -0.28265994787216187, -0.6941502690315247, -0.42150917649269104, -0.08478839695453644, 0.27018436789512634, -0.5618804097175598, 0.6804882884025574]} +{"t": 12.096, "q": [-0.41838985681533813, -0.026362312957644463, 0.014007923193275928, 0.6788716912269592, -0.3002711534500122, 0.03152986243367195, -0.34070226550102234, -0.024773789569735527, 0.023770615458488464, 0.6213644742965698, -0.32948169112205505, 0.04549283906817436, -0.03764461725950241, 0.0860571563243866, 0.02714199386537075, -0.11611516028642654, 0.2830314338207245, -0.44124719500541687, 1.09421968460083, -0.04049469530582428, -0.17580857872962952, -0.062126222997903824, -0.24413065612316132, -0.6765814423561096, -0.40615737438201904, -0.0716416984796524, 0.25317874550819397, -0.5617246031761169, 0.6895244121551514]} +{"t": 12.1127, "q": [-0.4180489778518677, -0.02641344629228115, 0.013766868971288204, 0.676792323589325, -0.2982156276702881, 0.0312133077532053, -0.3413669764995575, -0.024756744503974915, 0.023395642638206482, 0.621799111366272, -0.3266306519508362, 0.05056187883019447, -0.03290388733148575, 0.08561651408672333, 0.029301106929779053, -0.11434148997068405, 0.2823004126548767, -0.4356745183467865, 1.0945192575454712, -0.04145343601703644, -0.17582057416439056, -0.06205431744456291, -0.21097029745578766, -0.661025881767273, -0.39242345094680786, -0.058339208364486694, 0.2362929731607437, -0.5603344440460205, 0.7000225782394409]} +{"t": 12.1294, "q": [-0.417725145816803, -0.026260048151016235, 0.013244585134088993, 0.6744913458824158, -0.2965488135814667, 0.030322760343551636, -0.3423640727996826, -0.024509603157639503, 0.022645695134997368, 0.6226257681846619, -0.3266943395137787, 0.05016288533806801, -0.026274899020791054, 0.08382048457860947, 0.031484950333833694, -0.11368235945701599, 0.28111398220062256, -0.43276235461235046, 1.0952143669128418, -0.04380234330892563, -0.17579659819602966, -0.061958443373441696, -0.1753891408443451, -0.6443318724632263, -0.3779585063457489, -0.04386226460337639, 0.21979069709777832, -0.5579615831375122, 0.7102211117744446]} +{"t": 12.1464, "q": [-0.4166172444820404, -0.025936206802725792, 0.012722301296889782, 0.672088086605072, -0.29432791471481323, 0.030389413237571716, -0.34267085790634155, -0.024168718606233597, 0.021949317306280136, 0.6233160495758057, -0.3267655670642853, 0.049989305436611176, -0.02051638439297676, 0.08092603832483292, 0.034496549516916275, -0.1137063279747963, 0.27944815158843994, -0.43066510558128357, 1.0960413217544556, -0.046786416321992874, -0.17582057416439056, -0.06187455356121063, -0.14361895620822906, -0.6298788785934448, -0.36185169219970703, -0.02630537375807762, 0.20370785892009735, -0.5547857284545898, 0.718166708946228]} +{"t": 12.1633, "q": [-0.4159184396266937, -0.026081083342432976, 0.011463462375104427, 0.6689519882202148, -0.28968024253845215, 0.034031689167022705, -0.34289243817329407, -0.02406645379960537, 0.020221762359142303, 0.6239125728607178, -0.3267959654331207, 0.04954616725444794, -0.01665951870381832, 0.07782874256372452, 0.03717969357967377, -0.11389807611703873, 0.2768595814704895, -0.42709383368492126, 1.0972636938095093, -0.0487278588116169, -0.1757366806268692, -0.06174272671341896, -0.11162107437849045, -0.6148146986961365, -0.3472069799900055, -0.0070706927217543125, 0.1847248524427414, -0.5509867668151855, 0.7250336408615112]} +{"t": 12.18, "q": [-0.4156627655029297, -0.02628561295568943, 0.008892218582332134, 0.666114091873169, -0.2858411967754364, 0.034705597907304764, -0.3427986800670624, -0.024049410596489906, 0.017221977934241295, 0.624270498752594, -0.3263770341873169, 0.048435501754283905, -0.012682124972343445, 0.0749223604798317, 0.03969970718026161, -0.11395800113677979, 0.2746664583683014, -0.4227914810180664, 1.099013328552246, -0.05007009208202362, -0.17574866116046906, -0.06139518693089485, -0.08191218227148056, -0.6000860929489136, -0.33209487795829773, 0.01507615577429533, 0.16726383566856384, -0.544910728931427, 0.7306662201881409]} +{"t": 12.1968, "q": [-0.41567981243133545, -0.026617975905537605, 0.0062272315844893456, 0.6640176773071289, -0.2840254306793213, 0.03360496088862419, -0.34284982085227966, -0.023913055658340454, 0.014302544295787811, 0.6245688199996948, -0.3265257775783539, 0.04792832210659981, -0.009267191402614117, 0.07166631519794464, 0.04217567294836044, -0.11394601315259933, 0.27292874455451965, -0.4171229302883148, 1.101170539855957, -0.051148671656847, -0.17572470009326935, -0.061227407306432724, -0.05567871034145355, -0.5867236852645874, -0.31913992762565613, 0.03751062601804733, 0.14871224761009216, -0.5389785170555115, 0.7366223931312561]} +{"t": 12.2135, "q": [-0.41578209400177, -0.02665206417441368, 0.005812082905322313, 0.662892758846283, -0.2815617322921753, 0.034852467477321625, -0.3428327739238739, -0.023197198286652565, 0.01143667846918106, 0.6246795654296875, -0.32687827944755554, 0.047023706138134, -0.005303190555423498, 0.06647743284702301, 0.045950643718242645, -0.11386212706565857, 0.27193406224250793, -0.4132760167121887, 1.1028603315353394, -0.052442967891693115, -0.17567676305770874, -0.06103565916419029, -0.03272891789674759, -0.5763093829154968, -0.3085099160671234, 0.05781190097332001, 0.12986107170581818, -0.5323272943496704, 0.7436331510543823]} +{"t": 12.2302, "q": [-0.4158247113227844, -0.026788419112563133, 0.00546389352530241, 0.6621257662773132, -0.280791312456131, 0.03484569489955902, -0.3427731394767761, -0.021220067515969276, 0.009535029530525208, 0.6246795654296875, -0.3271198272705078, 0.045557741075754166, 0.0005490677431225777, 0.060284387320280075, 0.050199639052152634, -0.1134546622633934, 0.2716464400291443, -0.40989646315574646, 1.1054129600524902, -0.05426457151770592, -0.17567676305770874, -0.06091581657528877, -0.00900015328079462, -0.566494345664978, -0.29722076654434204, 0.07830492407083511, 0.10873287916183472, -0.5259157419204712, 0.7476838231086731]} +{"t": 12.2469, "q": [-0.4154752790927887, -0.025637932121753693, 0.004968393128365278, 0.6616826057434082, -0.2803296148777008, 0.034153345972299576, -0.342781662940979, -0.018927618861198425, 0.008771691471338272, 0.6246710419654846, -0.3275536000728607, 0.044028740376234055, 0.006079920567572117, 0.05321889743208885, 0.054786648601293564, -0.11245997250080109, 0.27193406224250793, -0.4066726863384247, 1.1083370447158813, -0.056409746408462524, -0.17572470009326935, -0.0607600212097168, 0.01336241140961647, -0.5585368275642395, -0.2853683829307556, 0.10027201473712921, 0.08657404035329819, -0.5200074911117554, 0.7515906691551208]} +{"t": 12.2637, "q": [-0.4146486520767212, -0.02454710192978382, 0.003575636073946953, 0.6608303785324097, -0.2799398899078369, 0.03368460386991501, -0.34230440855026245, -0.017495902255177498, 0.007619988638907671, 0.6246539950370789, -0.3279992640018463, 0.043030742555856705, 0.009213624522089958, 0.04652564972639084, 0.05897776782512665, -0.11109376698732376, 0.2724733352661133, -0.403017520904541, 1.111704707145691, -0.05824333429336548, -0.17577263712882996, -0.06061621010303497, 0.03263304382562637, -0.5507590174674988, -0.2747143805027008, 0.12059725821018219, 0.06401973217725754, -0.5113189816474915, 0.7543110847473145]} +{"t": 12.2804, "q": [-0.41361746191978455, -0.02297051064670086, 0.0030801359098404646, 0.6598759293556213, -0.2790345549583435, 0.03244440257549286, -0.34116244316101074, -0.01654994860291481, 0.005785298999398947, 0.6245176792144775, -0.3282276690006256, 0.04259008541703224, 0.010231408290565014, 0.03918673098087311, 0.06367264688014984, -0.10908041894435883, 0.2727489769458771, -0.3965340554714203, 1.1151081323623657, -0.05939381942152977, -0.17567676305770874, -0.06047239899635315, 0.051064785569906235, -0.5421903133392334, -0.2637368440628052, 0.14242053031921387, 0.039751674979925156, -0.5030378699302673, 0.7576427459716797]} +{"t": 12.2971, "q": [-0.41296979784965515, -0.021393919363617897, 0.003321190131828189, 0.6588788032531738, -0.27819687128067017, 0.03296468034386635, -0.34025058150291443, -0.01593635603785515, 0.003923825453966856, 0.6240319013595581, -0.3285783529281616, 0.04199111834168434, 0.010485853999853134, 0.03243951126933098, 0.06779631972312927, -0.10724683105945587, 0.2733961343765259, -0.39269909262657166, 1.1192067861557007, -0.060448430478572845, -0.1757127046585083, -0.060088906437158585, 0.06745920330286026, -0.5359585285186768, -0.25220802426338196, 0.16263791918754578, 0.018827218562364578, -0.4960870146751404, 0.7597998976707458]} +{"t": 12.3139, "q": [-0.4113505780696869, -0.020891115069389343, 0.00321405497379601, 0.6574897170066833, -0.2778814136981964, 0.0330948680639267, -0.3391256630420685, -0.015476161614060402, 0.002839081920683384, 0.6235376000404358, -0.3288562297821045, 0.041492994874715805, 0.010351935401558876, 0.025664767250418663, 0.0721173882484436, -0.10579673945903778, 0.2744866907596588, -0.38830089569091797, 1.1243480443954468, -0.0607600212097168, -0.17544905841350555, -0.05989715829491615, 0.08350608497858047, -0.5304577350616455, -0.24157801270484924, 0.1834784895181656, -0.003858920419588685, -0.4873984456062317, 0.7614177465438843]} +{"t": 12.3306, "q": [-0.40990182757377625, -0.020465008914470673, 0.003361365757882595, 0.6560068726539612, -0.27769073843955994, 0.03323933109641075, -0.33840128779411316, -0.014990401454269886, 0.0029194331727921963, 0.6229240298271179, -0.32902535796165466, 0.04118980094790459, 0.010566205717623234, 0.01916505955159664, 0.07618788629770279, -0.105341337621212, 0.2759607434272766, -0.3856164216995239, 1.1309033632278442, -0.060807958245277405, -0.17502960562705994, -0.05945374071598053, 0.09933724254369736, -0.525700032711029, -0.23275762796401978, 0.20446287095546722, -0.025790052488446236, -0.47817057371139526, 0.761813223361969]} +{"t": 12.3473, "q": [-0.4087683856487274, -0.020183779299259186, 0.00354885240085423, 0.6547711491584778, -0.2775953412055969, 0.03328993171453476, -0.3376939594745636, -0.014683605171740055, 0.002946217078715563, 0.6222167015075684, -0.3290211856365204, 0.04118248075246811, 0.010418894700706005, 0.013356794603168964, 0.07981603592634201, -0.10459832102060318, 0.2770633101463318, -0.38274019956588745, 1.1367037296295166, -0.06083192676305771, -0.17462214827537537, -0.05897437408566475, 0.11399395018815994, -0.5213137865066528, -0.2259146273136139, 0.22412897646427155, -0.04784102737903595, -0.46860718727111816, 0.7617892622947693]} +{"t": 12.3641, "q": [-0.4061691462993622, -0.020226389169692993, 0.004673771560192108, 0.6529900431632996, -0.2774961590766907, 0.03343431279063225, -0.3367224335670471, -0.014675082638859749, 0.003816690295934677, 0.622029185295105, -0.3290252089500427, 0.04117526486515999, 0.009802867658436298, 0.006889577955007553, 0.08402109891176224, -0.10396315157413483, 0.27795013785362244, -0.3776828646659851, 1.143594741821289, -0.06084391102194786, -0.1742386519908905, -0.058159444481134415, 0.12776382267475128, -0.5172750949859619, -0.21798107028007507, 0.24626384675502777, -0.06813032180070877, -0.4592954218387604, 0.7607945799827576]} +{"t": 12.381, "q": [-0.40306708216667175, -0.020234910771250725, 0.0062272315844893456, 0.6510128974914551, -0.2771536707878113, 0.034033358097076416, -0.3349498212337494, -0.014726215042173862, 0.005584420636296272, 0.6215775609016418, -0.32903796434402466, 0.04121178016066551, 0.009280583821237087, 0.0003784819564316422, 0.08826915174722672, -0.10359164327383041, 0.27912458777427673, -0.373919814825058, 1.1513245105743408, -0.060807958245277405, -0.17402292788028717, -0.056781258434057236, 0.1410902887582779, -0.5122417211532593, -0.21161745488643646, 0.26820695400238037, -0.0854235589504242, -0.45188918709754944, 0.7587692141532898]} +{"t": 12.3977, "q": [-0.39999914169311523, -0.020294565707445145, 0.006642380263656378, 0.6494193077087402, -0.27709588408470154, 0.034134406596422195, -0.3322397768497467, -0.014726215042173862, 0.00613348837941885, 0.619856059551239, -0.3290381133556366, 0.04122631624341011, 0.008008353412151337, -0.003967741038650274, 0.09108177572488785, -0.10298044979572296, 0.28046682476997375, -0.37001296877861023, 1.1590663194656372, -0.060807958245277405, -0.17349563539028168, -0.0544443354010582, 0.1513967216014862, -0.5059140920639038, -0.20720724761486053, 0.2896467447280884, -0.10091915726661682, -0.44384777545928955, 0.7566959857940674]} +{"t": 12.4145, "q": [-0.397255003452301, -0.020354220643639565, 0.0068030827678740025, 0.6480386853218079, -0.27711689472198486, 0.03418487310409546, -0.3300325572490692, -0.014768825843930244, 0.0064013260416686535, 0.618364691734314, -0.32905909419059753, 0.04126293584704399, 0.0064013260416686535, -0.00838862918317318, 0.09351681917905807, -0.1026209220290184, 0.2824562191963196, -0.3670049011707306, 1.167203664779663, -0.0607839897274971, -0.17281252145767212, -0.05093295872211456, 0.16376443207263947, -0.49776479601860046, -0.20440293848514557, 0.3116377890110016, -0.1176251694560051, -0.4352790415287018, 0.7536280155181885]} +{"t": 12.4312, "q": [-0.39509040117263794, -0.020533185452222824, 0.007285191211849451, 0.6473143100738525, -0.2771756947040558, 0.034314632415771484, -0.3285752832889557, -0.015203453600406647, 0.0064013260416686535, 0.6182027459144592, -0.3290674686431885, 0.04127757251262665, 0.005504068918526173, -0.012546657584607601, 0.09503293037414551, -0.10323211550712585, 0.2849489152431488, -0.3654229938983917, 1.1747057437896729, -0.06066414713859558, -0.17252489924430847, -0.04844023659825325, 0.174909770488739, -0.4903465509414673, -0.2025214284658432, 0.3324304223060608, -0.1317306011915207, -0.42639872431755066, 0.7504281997680664]} +{"t": 12.4479, "q": [-0.3927809000015259, -0.02081441506743431, 0.007740515749901533, 0.6469393372535706, -0.27727195620536804, 0.034451574087142944, -0.32656407356262207, -0.015868179500102997, 0.006454893853515387, 0.6182794570922852, -0.329101026058197, 0.04133615270256996, 0.0042854067869484425, -0.01654890365898609, 0.09718155860900879, -0.10449045896530151, 0.2877891957759857, -0.3646799623966217, 1.1812012195587158, -0.0604843832552433, -0.17210546135902405, -0.046798400580883026, 0.1854439079761505, -0.4830242097377777, -0.20066386461257935, 0.3538702130317688, -0.14612366259098053, -0.41826143860816956, 0.746641218662262]} +{"t": 12.4649, "q": [-0.3888692557811737, -0.02043944224715233, 0.007405718322843313, 0.6454053521156311, -0.27729707956314087, 0.03449480980634689, -0.32451874017715454, -0.016771523281931877, 0.007298583164811134, 0.6186459064483643, -0.32919326424598694, 0.04149724543094635, 0.0029997846577316523, -0.020623259246349335, 0.09975399076938629, -0.10524546355009079, 0.29118072986602783, -0.3645002245903015, 1.185215950012207, -0.06041247770190239, -0.17155417799949646, -0.04555204138159752, 0.19296999275684357, -0.47413191199302673, -0.19928568601608276, 0.3755137026309967, -0.15869511663913727, -0.4130602777004242, 0.741943359375]} +{"t": 12.4817, "q": [-0.38558822870254517, -0.019859937950968742, 0.008048529736697674, 0.643385648727417, -0.27729302644729614, 0.03451644629240036, -0.3234449625015259, -0.01776008866727352, 0.008972570300102234, 0.6186970472335815, -0.32933852076530457, 0.041622649878263474, 0.0024507169146090746, -0.02415383607149124, 0.10103508830070496, -0.10555705428123474, 0.2944644093513489, -0.36442831158638, 1.1917712688446045, -0.06036454066634178, -0.1708710789680481, -0.043898217380046844, 0.20078371465206146, -0.4626030921936035, -0.19784757494926453, 0.39834365248680115, -0.16751550137996674, -0.40595364570617676, 0.7378088235855103]} +{"t": 12.4984, "q": [-0.3836451768875122, -0.019587229937314987, 0.009454678744077682, 0.6423118114471436, -0.2772558629512787, 0.03458140045404434, -0.3232404291629791, -0.018262892961502075, 0.010191232897341251, 0.6187652349472046, -0.3293344974517822, 0.041629865765571594, 0.0018079059664160013, -0.02606194280087948, 0.10078693926334381, -0.10633602738380432, 0.2963578999042511, -0.36376917362213135, 1.1985902786254883, -0.06035256013274193, -0.16960075497627258, -0.042028676718473434, 0.2078663855791092, -0.451697438955307, -0.1976797878742218, 0.41706302762031555, -0.17682723701000214, -0.3989069163799286, 0.7327395081520081]} +{"t": 12.5151, "q": [-0.3823242783546448, -0.019578708335757256, 0.010700124315917492, 0.641817569732666, -0.27726444602012634, 0.034639108926057816, -0.32323190569877625, -0.01883387565612793, 0.010954570956528187, 0.619251012802124, -0.3294007480144501, 0.04167430102825165, 0.0005490677431225777, -0.02712799422442913, 0.10055042803287506, -0.10830144584178925, 0.298311322927475, -0.361887663602829, 1.203228235244751, -0.060328591614961624, -0.16797089576721191, -0.04032691940665245, 0.21319936215877533, -0.44124719500541687, -0.19757193326950073, 0.4368969202041626, -0.18526414036750793, -0.39184820652008057, 0.7253692150115967]} +{"t": 12.5321, "q": [-0.3813101351261139, -0.019646884873509407, 0.01191878691315651, 0.6415959596633911, -0.27724799513816833, 0.034682393074035645, -0.3233768045902252, -0.019421901553869247, 0.01177147589623928, 0.6197623014450073, -0.3294539153575897, 0.041653167456388474, -0.00020087843586225063, -0.02739577926695347, 0.1003556177020073, -0.11014701426029205, 0.29989326000213623, -0.35964658856391907, 1.2067755460739136, -0.06031660735607147, -0.16661667823791504, -0.03970373794436455, 0.21741782128810883, -0.4302336871623993, -0.1976318657398224, 0.4555443823337555, -0.19169966876506805, -0.3850052058696747, 0.7176753282546997]} +{"t": 12.5488, "q": [-0.38036417961120605, -0.019859937950968742, 0.012722301296889782, 0.6415618658065796, -0.27718597650527954, 0.03476181626319885, -0.32345348596572876, -0.019890617579221725, 0.01260177418589592, 0.620529294013977, -0.32950758934020996, 0.04167566075921059, -0.00040175687172450125, -0.02731437422335148, 0.10037067532539368, -0.11244798451662064, 0.30118754506111145, -0.3573216497898102, 1.2103108167648315, -0.06031660735607147, -0.1652744561433792, -0.03958389535546303, 0.22108498215675354, -0.41816556453704834, -0.1977037638425827, 0.4754381775856018, -0.19843479990959167, -0.37822213768959045, 0.710412859916687]} +{"t": 12.5656, "q": [-0.37968242168426514, -0.020064469426870346, 0.013311544433236122, 0.641374409198761, -0.2770536243915558, 0.03492063283920288, -0.3236750662326813, -0.02033376693725586, 0.013231192715466022, 0.62142413854599, -0.3297998607158661, 0.04135945811867714, -0.00046871634549461305, -0.027129177004098892, 0.10042379796504974, -0.1146770492196083, 0.30252978205680847, -0.35540419816970825, 1.2124320268630981, -0.060328591614961624, -0.1637524515390396, -0.039559926837682724, 0.22314627468585968, -0.4058457911014557, -0.19773972034454346, 0.4953320026397705, -0.20500215888023376, -0.37238582968711853, 0.7016404271125793]} +{"t": 12.5824, "q": [-0.37927335500717163, -0.020132645964622498, 0.013659733347594738, 0.6413232684135437, -0.2768007516860962, 0.035101260989904404, -0.3237517774105072, -0.02046159841120243, 0.013940962962806225, 0.6223530173301697, -0.32992908358573914, 0.04115753993391991, -0.0005356758483685553, -0.026885878294706345, 0.10036946088075638, -0.11699000746011734, 0.30348852276802063, -0.3535466194152832, 1.2149248123168945, -0.060388509184122086, -0.16251808404922485, -0.03958389535546303, 0.22367358207702637, -0.39477235078811646, -0.1976797878742218, 0.514866292476654, -0.21152158081531525, -0.3667292892932892, 0.6941982507705688]} +{"t": 12.5991, "q": [-0.37899211049079895, -0.020132645964622498, 0.013833828270435333, 0.6412721276283264, -0.2763819992542267, 0.03538302332162857, -0.32381993532180786, -0.02052125334739685, 0.01411505788564682, 0.6232308149337769, -0.33022740483283997, 0.04065240919589996, -0.0004553244507405907, -0.02663574181497097, 0.10025646537542343, -0.11918312311172485, 0.30438733100891113, -0.3515452742576599, 1.2175134420394897, -0.0604843832552433, -0.16080433130264282, -0.03958389535546303, 0.22314627468585968, -0.3829319477081299, -0.1976797878742218, 0.5350117683410645, -0.21895179152488708, -0.3570220470428467, 0.6854977011680603]} +{"t": 12.6159, "q": [-0.37884724140167236, -0.02014969103038311, 0.013807044364511967, 0.6410931944847107, -0.27567023038864136, 0.03523238003253937, -0.323879599571228, -0.02057238668203354, 0.014101666398346424, 0.6240319013595581, -0.33038413524627686, 0.04034179076552391, 0.0, -0.026245607063174248, 0.10007771849632263, -0.12078900635242462, 0.30473488569259644, -0.349076509475708, 1.219143271446228, -0.06055628880858421, -0.15875503420829773, -0.039691753685474396, 0.22237928211688995, -0.3709956705570221, -0.1977037638425827, 0.5562478303909302, -0.22412897646427155, -0.3476503789424896, 0.6763536930084229]} +{"t": 12.6327, "q": [-0.37881314754486084, -0.0202689990401268, 0.013740085065364838, 0.6405392289161682, -0.27454203367233276, 0.03493795543909073, -0.323879599571228, -0.020717263221740723, 0.014101666398346424, 0.6251482963562012, -0.33064591884613037, 0.039872556924819946, 0.001004392164759338, -0.025700995698571205, 0.09979722648859024, -0.12191552668809891, 0.30443528294563293, -0.347506582736969, 1.2197424173355103, -0.060460414737463, -0.1566937416791916, -0.039679769426584244, 0.22212761640548706, -0.3568662703037262, -0.19796741008758545, 0.5795691013336182, -0.22724488377571106, -0.33742785453796387, 0.6684920787811279]} +{"t": 12.6494, "q": [-0.3787279427051544, -0.020584318786859512, 0.013579382561147213, 0.6396870017051697, -0.2734288275241852, 0.03426159545779228, -0.32438239455223083, -0.021024059504270554, 0.014088273979723454, 0.6268442273139954, -0.33107665181159973, 0.039085570722818375, 0.0016873788554221392, -0.025318490341305733, 0.09957733750343323, -0.12305402755737305, 0.30441129207611084, -0.3464759290218353, 1.220042109489441, -0.06042446196079254, -0.15573500096797943, -0.039679769426584244, 0.22194784879684448, -0.3439352810382843, -0.1989261507987976, 0.6024230122566223, -0.23054054379463196, -0.3278045058250427, 0.6582575440406799]} +{"t": 12.6662, "q": [-0.3786938488483429, -0.020891115069389343, 0.013311544433236122, 0.6387751698493958, -0.272503525018692, 0.03335442394018173, -0.3251749575138092, -0.021313810721039772, 0.014007923193275928, 0.6284633874893188, -0.3314513564109802, 0.03842874988913536, 0.001834689755924046, -0.024986539036035538, 0.0994970053434372, -0.12471982836723328, 0.30457907915115356, -0.3454572856426239, 1.220725178718567, -0.06052033603191376, -0.1546923816204071, -0.03966778516769409, 0.22131268680095673, -0.3320349454879761, -0.19897408783435822, 0.6236111521720886, -0.23451930284500122, -0.3161318898200989, 0.6482506990432739]} +{"t": 12.6833, "q": [-0.3787961006164551, -0.02098485827445984, 0.01293657161295414, 0.6377865672111511, -0.27179592847824097, 0.03243246302008629, -0.3260612487792969, -0.021347898989915848, 0.013753476552665234, 0.6296138763427734, -0.33174481987953186, 0.037858132272958755, 0.002129311440512538, -0.02456619031727314, 0.0993819609284401, -0.12669722735881805, 0.30473488569259644, -0.34449854493141174, 1.2227505445480347, -0.06054430454969406, -0.15297862887382507, -0.03952397406101227, 0.21893981099128723, -0.3211532533168793, -0.19897408783435822, 0.6423185467720032, -0.23782694339752197, -0.3057655096054077, 0.6376087069511414]} +{"t": 12.7001, "q": [-0.37880462408065796, -0.02105303481221199, 0.01260177418589592, 0.6363292932510376, -0.27057603001594543, 0.031194021925330162, -0.32708391547203064, -0.021339377388358116, 0.01344546303153038, 0.6307728886604309, -0.33201077580451965, 0.037352290004491806, 0.002356973709538579, -0.024278685450553894, 0.0992918536067009, -0.12791961431503296, 0.30531013011932373, -0.34302449226379395, 1.2277718782424927, -0.06066414713859558, -0.14968296885490417, -0.03893674910068512, 0.21551232039928436, -0.3093847632408142, -0.19902202486991882, 0.6608341336250305, -0.24241690337657928, -0.2956867814064026, 0.6272903084754944]} +{"t": 12.7168, "q": [-0.3787534832954407, -0.02117234468460083, 0.012333936057984829, 0.6344970464706421, -0.26924461126327515, 0.030309220775961876, -0.32844746112823486, -0.021339377388358116, 0.013298152014613152, 0.6318551898002625, -0.33210864663124084, 0.03689533844590187, 0.002397149335592985, -0.024234943091869354, 0.09922023117542267, -0.12775184214115143, 0.30602917075157166, -0.34072351455688477, 1.234998345375061, -0.06070009991526604, -0.14554841816425323, -0.03832555189728737, 0.2109103798866272, -0.2977001368999481, -0.19903400540351868, 0.6802366375923157, -0.24759408831596375, -0.2847451865673065, 0.6173194050788879]} +{"t": 12.7336, "q": [-0.37898358702659607, -0.02129165455698967, 0.011784868314862251, 0.6327585577964783, -0.2674986720085144, 0.029123764485120773, -0.3296320140361786, -0.02129676565527916, 0.01285621989518404, 0.632400631904602, -0.3321414887905121, 0.03651030361652374, 0.0026649872306734324, -0.024116739630699158, 0.09921322762966156, -0.1272125542163849, 0.30690401792526245, -0.33820682764053345, 1.242236852645874, -0.06071208417415619, -0.1405869424343109, -0.037163082510232925, 0.2066919356584549, -0.2873457670211792, -0.19914187490940094, 0.6988481283187866, -0.25343039631843567, -0.2724733352661133, 0.6062340140342712]} +{"t": 12.7504, "q": [-0.379247784614563, -0.021572884172201157, 0.01124919205904007, 0.6307302713394165, -0.265453040599823, 0.028824161738157272, -0.33056944608688354, -0.02129676565527916, 0.012119665741920471, 0.6326136589050293, -0.3321467339992523, 0.03623402491211891, 0.003026568330824375, -0.023813489824533463, 0.09923197329044342, -0.12679310142993927, 0.30830618739128113, -0.33628934621810913, 1.2479532957077026, -0.0607600212097168, -0.13411545753479004, -0.03554521128535271, 0.2021259367465973, -0.2790287137031555, -0.1997530609369278, 0.7173517346382141, -0.2574690878391266, -0.26110032200813293, 0.5947651267051697]} +{"t": 12.7671, "q": [-0.3795289993286133, -0.022271696478128433, 0.00992339476943016, 0.6293667554855347, -0.2641521394252777, 0.027730287984013557, -0.3310893177986145, -0.0211859792470932, 0.010874219238758087, 0.6327500343322754, -0.3320487141609192, 0.0359201617538929, 0.0033881496638059616, -0.02316104806959629, 0.09947728365659714, -0.12651745975017548, 0.3099360466003418, -0.3345755934715271, 1.2547603845596313, -0.06073605269193649, -0.12911804020404816, -0.03263304382562637, 0.19758392870426178, -0.2724373936653137, -0.2006758451461792, 0.7354719042778015, -0.2631615996360779, -0.24951156973838806, 0.5824213624000549]} +{"t": 12.7838, "q": [-0.37990397214889526, -0.02327730692923069, 0.00881186779588461, 0.6288809776306152, -0.2635513246059418, 0.026988893747329712, -0.3313279151916504, -0.020563865080475807, 0.009802867658436298, 0.632937490940094, -0.3320762515068054, 0.03542598336935043, 0.003589028026908636, -0.02215900644659996, 0.10003986209630966, -0.12634968757629395, 0.31184151768684387, -0.33207088708877563, 1.2610760927200317, -0.0607600212097168, -0.12619389593601227, -0.028558408841490746, 0.1922868937253952, -0.2673560678958893, -0.2018742710351944, 0.7543110847473145, -0.2692495882511139, -0.23752734065055847, 0.5683279037475586]} +{"t": 12.8006, "q": [-0.37996363639831543, -0.02394203282892704, 0.007887826301157475, 0.6288042664527893, -0.26316434144973755, 0.026341011747717857, -0.3314642906188965, -0.0199247058480978, 0.009106488898396492, 0.6333295106887817, -0.3323136270046234, 0.034556176513433456, 0.0038702578749507666, -0.021356934681534767, 0.10054952651262283, -0.12412062287330627, 0.31393876671791077, -0.3295062780380249, 1.2648990154266357, -0.0607839897274971, -0.12388093769550323, -0.025658225640654564, 0.18670225143432617, -0.2630777060985565, -0.2045467495918274, 0.7699265480041504, -0.2750619351863861, -0.22427278757095337, 0.553659200668335]} +{"t": 12.8173, "q": [-0.37999773025512695, -0.023831244558095932, 0.006414717994630337, 0.6287446022033691, -0.2626849412918091, 0.02559235878288746, -0.3313620090484619, -0.019515644758939743, 0.008128880523145199, 0.6338919997215271, -0.3328417241573334, 0.03356624394655228, 0.005075528286397457, -0.020904161036014557, 0.10084958374500275, -0.12183163315057755, 0.3154847323894501, -0.3267858624458313, 1.2709391117095947, -0.0607839897274971, -0.12083694338798523, -0.022614233195781708, 0.18056632578372955, -0.2592187821865082, -0.2079382985830307, 0.7887897491455078, -0.2796878516674042, -0.2109822779893875, 0.5382954478263855]} +{"t": 12.834, "q": [-0.3798869252204895, -0.023805677890777588, 0.005624596029520035, 0.6287190914154053, -0.2623400092124939, 0.025016460567712784, -0.3311915695667267, -0.019455989822745323, 0.006843258626759052, 0.6345908045768738, -0.3336617648601532, 0.0321870893239975, 0.006120096426457167, -0.020415548235177994, 0.10098276287317276, -0.1197224110364914, 0.3165992498397827, -0.3244129717350006, 1.2769551277160645, -0.06083192676305771, -0.11691810190677643, -0.019582223147153854, 0.1741188019514084, -0.2573971748352051, -0.20993965864181519, 0.8054237961769104, -0.28573986887931824, -0.19686487317085266, 0.5210621356964111]} +{"t": 12.8508, "q": [-0.3797505795955658, -0.023780111223459244, 0.005664771888405085, 0.6287276148796082, -0.2622684836387634, 0.024894066154956818, -0.3310893177986145, -0.019473033025860786, 0.005946001503616571, 0.6354600787162781, -0.33458274602890015, 0.030670950189232826, 0.007044136989861727, -0.019824566319584846, 0.10094544291496277, -0.11758922040462494, 0.31753402948379517, -0.3221719264984131, 1.2820245027542114, -0.06103565916419029, -0.11291536688804626, -0.017305221408605576, 0.16719192266464233, -0.25685790181159973, -0.212156742811203, 0.8203801512718201, -0.2919117510318756, -0.18400579690933228, 0.5049433708190918]} +{"t": 12.8675, "q": [-0.37949493527412415, -0.0237545445561409, 0.005946001503616571, 0.6287616491317749, -0.26224321126937866, 0.02483648993074894, -0.3308592140674591, -0.019464511424303055, 0.005182663444429636, 0.6363292932510376, -0.33526191115379333, 0.029936980456113815, 0.007673555985093117, -0.019218146800994873, 0.10100769251585007, -0.11490475386381149, 0.3185287117958069, -0.3195473849773407, 1.2862069606781006, -0.06115550175309181, -0.10941597819328308, -0.015112107619643211, 0.15815581381320953, -0.2571335434913635, -0.21522469818592072, 0.8361154198646545, -0.2949797213077545, -0.1721653789281845, 0.4873984456062317]} +{"t": 12.8844, "q": [-0.3791881203651428, -0.023541493341326714, 0.00613348837941885, 0.6288383603096008, -0.26218438148498535, 0.024764515459537506, -0.33025413751602173, -0.019421901553869247, 0.004097919911146164, 0.6365935206413269, -0.3355279564857483, 0.029576430097222328, 0.007807475049048662, -0.018240302801132202, 0.1013636589050293, -0.11316704005002975, 0.3191998302936554, -0.3175220489501953, 1.2909168004989624, -0.06143113970756531, -0.10697119683027267, -0.011289140209555626, 0.14928749203681946, -0.2576368749141693, -0.21947909891605377, 0.8496695756912231, -0.29602235555648804, -0.15907861292362213, 0.46943408250808716]} +{"t": 12.9011, "q": [-0.3788387179374695, -0.0230898205190897, 0.0061736637726426125, 0.6288213133811951, -0.2621254622936249, 0.02464931271970272, -0.32964906096458435, -0.019149193540215492, 0.0031604873947799206, 0.6366786956787109, -0.3357251286506653, 0.029280537739396095, 0.007753907702863216, -0.017120910808444023, 0.1020321324467659, -0.11183679103851318, 0.3199428617954254, -0.3154847323894501, 1.2957704067230225, -0.061778679490089417, -0.10443054139614105, -0.006111954804509878, 0.13854962587356567, -0.2581402063369751, -0.22610637545585632, 0.8639068603515625, -0.29689720273017883, -0.14544056355953217, 0.4494563937187195]} +{"t": 12.9178, "q": [-0.37866827845573425, -0.02261258289217949, 0.00613348837941885, 0.6288724541664124, -0.2621002197265625, 0.024606114253401756, -0.3293081820011139, -0.018808308988809586, 0.0026382035575807095, 0.6367809772491455, -0.335877925157547, 0.029035042971372604, 0.007834259420633316, -0.015993889421224594, 0.10274935513734818, -0.11160908639431, 0.3205181062221527, -0.3128122389316559, 1.3011393547058105, -0.06268948316574097, -0.10113487392663956, -0.0012583436910063028, 0.12796755135059357, -0.25897911190986633, -0.23611320555210114, 0.8778804540634155, -0.29777204990386963, -0.13218601047992706, 0.42832818627357483]} +{"t": 12.9346, "q": [-0.37863418459892273, -0.022399529814720154, 0.006012961268424988, 0.6289235949516296, -0.2620750069618225, 0.024577351287007332, -0.32919740676879883, -0.01853560097515583, 0.002316797850653529, 0.6369343996047974, -0.33596616983413696, 0.028876082971692085, 0.007954785600304604, -0.014904767274856567, 0.10344158858060837, -0.11147726327180862, 0.3209974765777588, -0.3091810345649719, 1.305525541305542, -0.06409163773059845, -0.0962572991847992, 0.0029121667612344027, 0.11775700002908707, -0.2617594599723816, -0.2451852709054947, 0.8906436562538147, -0.29904237389564514, -0.12008193880319595, 0.4085182845592499]} +{"t": 12.9513, "q": [-0.378497838973999, -0.022212043404579163, 0.005959393456578255, 0.6288809776306152, -0.2620665729045868, 0.024548543617129326, -0.32918888330459595, -0.01835663616657257, 0.0021962709724903107, 0.6371048092842102, -0.3360263407230377, 0.028767690062522888, 0.007914610207080841, -0.013889815658330917, 0.10408861935138702, -0.11145329475402832, 0.32188430428504944, -0.30593329668045044, 1.309791922569275, -0.0658772885799408, -0.09080447256565094, 0.007022756151854992, 0.10691127181053162, -0.2652588486671448, -0.2533465325832367, 0.9045453667640686, -0.30133137106895447, -0.10840930044651031, 0.3888401687145233]} +{"t": 12.9681, "q": [-0.37840408086776733, -0.022024555131793022, 0.005972785409539938, 0.6288895010948181, -0.26206228137016296, 0.024512534961104393, -0.3291718363761902, -0.018152106553316116, 0.0021828790195286274, 0.6374115943908691, -0.336098849773407, 0.028666706755757332, 0.007660164497792721, -0.01280156709253788, 0.104787677526474, -0.11136940866708755, 0.32283106446266174, -0.3026256561279297, 1.3131355047225952, -0.06695586442947388, -0.08718524128198624, 0.0121879568323493, 0.09801898151636124, -0.2690458595752716, -0.25974610447883606, 0.916996955871582, -0.3021462857723236, -0.09776730835437775, 0.3701687455177307]} +{"t": 12.9848, "q": [-0.37815696001052856, -0.02189672365784645, 0.006039745174348354, 0.6288895010948181, -0.2620580494403839, 0.024505337700247765, -0.3291292190551758, -0.017973141744732857, 0.0022230546455830336, 0.6378291845321655, -0.3361951410770416, 0.028493281453847885, 0.007285191211849451, -0.011772526428103447, 0.10547783970832825, -0.11128551512956619, 0.32372987270355225, -0.30068421363830566, 1.3178693056106567, -0.06783071160316467, -0.08502807468175888, 0.01835983246564865, 0.089342400431633, -0.2722216844558716, -0.2684226632118225, 0.9301436543464661, -0.3030211329460144, -0.08698150515556335, 0.35098201036453247]} +{"t": 13.0015, "q": [-0.37808024883270264, -0.021820025518536568, 0.006039745174348354, 0.6288809776306152, -0.2620496451854706, 0.024490945041179657, -0.32918888330459595, -0.01787087693810463, 0.0021962709724903107, 0.6381445527076721, -0.33639153838157654, 0.02812466397881508, 0.006977177690714598, -0.010847970843315125, 0.10606536269187927, -0.1113334521651268, 0.32467663288116455, -0.30014491081237793, 1.3219438791275024, -0.06813032180070877, -0.08211591094732285, 0.02323741279542446, 0.08211591094732285, -0.2743668556213379, -0.27966389060020447, 0.9417084455490112, -0.3038240671157837, -0.07550062239170074, 0.33359289169311523]} +{"t": 13.0184, "q": [-0.3778245747089386, -0.021751848980784416, 0.006066528614610434, 0.628829836845398, -0.2620454430580139, 0.02448374778032303, -0.32913774251937866, -0.01781974360346794, 0.002236446598544717, 0.6383575797080994, -0.33651652932167053, 0.027958817780017853, 0.0065620290115475655, -0.009871724992990494, 0.10666761547327042, -0.1113094836473465, 0.3252638578414917, -0.3000490367412567, 1.3264859914779663, -0.06813032180070877, -0.0797310471534729, 0.02744387648999691, 0.07514109462499619, -0.2762603461742401, -0.28832846879959106, 0.9544476866722107, -0.30378812551498413, -0.06735134869813919, 0.3168269693851471]} +{"t": 13.0351, "q": [-0.3775945007801056, -0.021624017506837845, 0.0062272315844893456, 0.628829836845398, -0.26204541325569153, 0.024469351395964622, -0.32913774251937866, -0.017726000398397446, 0.002356973709538579, 0.6386643648147583, -0.3366495668888092, 0.027778562158346176, 0.006039745174348354, -0.008741001598536968, 0.10736284404993057, -0.11128551512956619, 0.3256832957267761, -0.3000011146068573, 1.3298654556274414, -0.06815429031848907, -0.07586014270782471, 0.0315784327685833, 0.06874151527881622, -0.2782377600669861, -0.2960822582244873, 0.966827392578125, -0.30375218391418457, -0.05957358330488205, 0.30054038763046265]} +{"t": 13.0518, "q": [-0.3775518834590912, -0.021496184170246124, 0.006347758695483208, 0.6288383603096008, -0.2620369493961334, 0.024440541863441467, -0.3291633129119873, -0.017657823860645294, 0.0024373249616473913, 0.6388604044914246, -0.33668968081474304, 0.027706287801265717, 0.005530852824449539, -0.007883807644248009, 0.10789933055639267, -0.11122559756040573, 0.32577916979789734, -0.2999292016029358, 1.332430124282837, -0.0682741329073906, -0.07184542715549469, 0.037103161215782166, 0.06336060166358948, -0.2801312506198883, -0.3017987310886383, 0.978344202041626, -0.3037402033805847, -0.04954278841614723, 0.28369057178497314]} +{"t": 13.069, "q": [-0.37742406129837036, -0.02146209590137005, 0.00642810994759202, 0.6288213133811951, -0.261982262134552, 0.0243469700217247, -0.32922297716140747, -0.017598168924450874, 0.0025176764465868473, 0.6392183303833008, -0.3367137312889099, 0.027662944048643112, 0.004995177034288645, -0.007100895047187805, 0.1083979681134224, -0.11128551512956619, 0.3256832957267761, -0.2998333275318146, 1.3356778621673584, -0.06856175512075424, -0.06705173850059509, 0.04159724712371826, 0.05915413424372673, -0.28136563301086426, -0.3099120557308197, 0.9904842376708984, -0.3037761449813843, -0.042040660977363586, 0.2689979076385498]} +{"t": 13.0857, "q": [-0.3773132562637329, -0.021317221224308014, 0.006535245105624199, 0.6288383603096008, -0.26194021105766296, 0.024289365857839584, -0.32929113507270813, -0.017521468922495842, 0.002611419651657343, 0.6394398808479309, -0.3367939889431, 0.027518413960933685, 0.0043523660860955715, -0.006643150467425585, 0.10867859423160553, -0.1116570234298706, 0.325611412525177, -0.29984530806541443, 1.3389135599136353, -0.06858572363853455, -0.06403171271085739, 0.04567188397049904, 0.05638577789068222, -0.28106603026390076, -0.3188762664794922, 1.0003832578659058, -0.3037761449813843, -0.034382741898298264, 0.2554677426815033]} +{"t": 13.1024, "q": [-0.3772110044956207, -0.02117234468460083, 0.006695947609841824, 0.6288213133811951, -0.26188549399375916, 0.024181395769119263, -0.3294445276260376, -0.01744477078318596, 0.0027855143416672945, 0.6397807598114014, -0.3368341028690338, 0.027446158230304718, 0.0034551091957837343, -0.006362601183354855, 0.10885078459978104, -0.11182480305433273, 0.32559940218925476, -0.2998213469982147, 1.3410347700119019, -0.06871754676103592, -0.06103565916419029, 0.04945889860391617, 0.05439639836549759, -0.28029903769493103, -0.3249642550945282, 1.0109412670135498, -0.3037641644477844, -0.028546424582600594, 0.24224913120269775]} +{"t": 13.1193, "q": [-0.37702351808547974, -0.021035989746451378, 0.006910218391567469, 0.6288383603096008, -0.26183921098709106, 0.02410219796001911, -0.32950419187545776, -0.017359549179673195, 0.0029730007518082857, 0.6402068734169006, -0.3369063138961792, 0.02731609158217907, 0.002691771136596799, -0.00620019156485796, 0.10894150286912918, -0.11204051971435547, 0.32537171244621277, -0.299797385931015, 1.3431919813156128, -0.06901714950799942, -0.05844706669449806, 0.05198756977915764, 0.053881075233221054, -0.2801072895526886, -0.32951825857162476, 1.018707036972046, -0.3037162125110626, -0.02365685999393463, 0.23243404924869537]} +{"t": 13.1362, "q": [-0.3767763674259186, -0.02085702493786812, 0.007285191211849451, 0.6288895010948181, -0.2618013620376587, 0.02403741143643856, -0.32956385612487793, -0.017248760908842087, 0.0033077981788665056, 0.6406159400939941, -0.3369504511356354, 0.027236593887209892, 0.0018480815924704075, -0.00621494185179472, 0.10894143581390381, -0.1125558465719223, 0.32428115606307983, -0.299653559923172, 1.346475601196289, -0.06962835043668747, -0.05631387606263161, 0.05579855293035507, 0.05332980304956436, -0.2777344286441803, -0.3326581120491028, 1.0281506776809692, -0.30365630984306335, -0.02040913514792919, 0.22282269597053528]} +{"t": 13.1529, "q": [-0.37641844153404236, -0.02074623852968216, 0.0076869479380548, 0.6289747357368469, -0.2617635428905487, 0.023987021297216415, -0.32955533266067505, -0.017180584371089935, 0.003776514669880271, 0.6409397721290588, -0.3369504511356354, 0.027236593887209892, 0.0014061490073800087, -0.006237084046006203, 0.10892783850431442, -0.11341870576143265, 0.32232773303985596, -0.2995576858520508, 1.3485369682312012, -0.07023954391479492, -0.05315003916621208, 0.05969342589378357, 0.05332980304956436, -0.27377963066101074, -0.33373671770095825, 1.0368032455444336, -0.3036682903766632, -0.01678990013897419, 0.2142539769411087]} +{"t": 13.1697, "q": [-0.3760434687137604, -0.020703626796603203, 0.007820867002010345, 0.6290088295936584, -0.26173824071884155, 0.023929426446557045, -0.3295809030532837, -0.017189105972647667, 0.004405933897942305, 0.6412636041641235, -0.33695846796035767, 0.027222147211432457, 0.0011650949018076062, -0.006318299099802971, 0.10887797921895981, -0.11426958441734314, 0.31985896825790405, -0.2994977831840515, 1.3496274948120117, -0.0704193040728569, -0.0493510402739048, 0.06203034892678261, 0.053653378039598465, -0.2692735493183136, -0.334695428609848, 1.0426396131515503, -0.3035963773727417, -0.012523515149950981, 0.2066439986228943]} +{"t": 13.1866, "q": [-0.3754810094833374, -0.020712150260806084, 0.007820867002010345, 0.6290343999862671, -0.26170459389686584, 0.023871837183833122, -0.32965758442878723, -0.017231717705726624, 0.005490677431225777, 0.6418942809104919, -0.33695411682128906, 0.02720026858150959, 0.0010177841177210212, -0.006569295655936003, 0.10873287916183472, -0.11506054550409317, 0.31653934717178345, -0.29934197664260864, 1.351089596748352, -0.07061105221509933, -0.04554005712270737, 0.06431933492422104, 0.0535455197095871, -0.2642281949520111, -0.33547443151474, 1.0489553213119507, -0.30360835790634155, -0.00932372733950615, 0.19891417026519775]} +{"t": 13.2033, "q": [-0.3747992217540741, -0.02075476013123989, 0.0076869479380548, 0.6290514469146729, -0.26169201731681824, 0.023864643648266792, -0.32987064123153687, -0.017291372641921043, 0.0067896912805736065, 0.6427805423736572, -0.33696678280830383, 0.027236782014369965, 0.0009374326909892261, -0.007071392145007849, 0.10840708017349243, -0.11551594734191895, 0.3136271834373474, -0.299282044172287, 1.3528512716293335, -0.0707428827881813, -0.04369448497891426, 0.06639260798692703, 0.053413692861795425, -0.25912290811538696, -0.33585789799690247, 1.0528382062911987, -0.3035963773727417, -0.00701077189296484, 0.19322165846824646]} +{"t": 13.22, "q": [-0.37413451075553894, -0.021010424941778183, 0.00814227294176817, 0.6290599703788757, -0.2616962194442749, 0.02387184090912342, -0.32997292280197144, -0.01745329238474369, 0.008008353412151337, 0.6436924338340759, -0.3369874656200409, 0.027258828282356262, 0.0008302975329570472, -0.00786158349364996, 0.107930988073349, -0.1158275380730629, 0.3107150197029114, -0.29927006363868713, 1.3549604415893555, -0.07091066241264343, -0.042268361896276474, 0.06796254217624664, 0.05273059010505676, -0.2546408176422119, -0.3359178304672241, 1.056577205657959, -0.30368027091026306, -0.005309011787176132, 0.18835607171058655]} +{"t": 13.2369, "q": [-0.3736487627029419, -0.02129165455698967, 0.008450286462903023, 0.6290343999862671, -0.26171720027923584, 0.0238934438675642, -0.3300325572490692, -0.017649300396442413, 0.008691340684890747, 0.6443230509757996, -0.3369999825954437, 0.02728080004453659, 0.0007633380591869354, -0.008881324902176857, 0.10730355232954025, -0.1161031723022461, 0.3076949715614319, -0.2992580831050873, 1.3565304279327393, -0.07100653648376465, -0.040830254554748535, 0.0685737356543541, 0.05225122347474098, -0.25098562240600586, -0.33585789799690247, 1.0594055652618408, -0.3036682903766632, -0.003906857222318649, 0.18331070244312286]} +{"t": 13.2536, "q": [-0.3734186589717865, -0.021317221224308014, 0.008691340684890747, 0.6290514469146729, -0.2617213726043701, 0.023886244744062424, -0.33010926842689514, -0.017956096678972244, 0.00881186779588461, 0.6445701718330383, -0.33699166774749756, 0.027266163378953934, 0.0007767299539409578, -0.009989958256483078, 0.10662166774272919, -0.11661849915981293, 0.30441129207611084, -0.2992580831050873, 1.3579685688018799, -0.0710424855351448, -0.039320241659879684, 0.06905310600996017, 0.051903679966926575, -0.24731846153736115, -0.33583393692970276, 1.0617424249649048, -0.30378812551498413, -0.0024447820615023375, 0.17745041847229004]} +{"t": 13.2703, "q": [-0.3734612762928009, -0.02092520333826542, 0.008610988967120647, 0.6290514469146729, -0.26170462369918823, 0.02388623356819153, -0.3304842412471771, -0.018271414563059807, 0.008758299984037876, 0.6446980237960815, -0.336967408657074, 0.027294965460896492, 0.0009240407962352037, -0.011335997842252254, 0.10579167306423187, -0.11673834174871445, 0.30173882842063904, -0.29927006363868713, 1.358663558959961, -0.07106645405292511, -0.03833753615617752, 0.06935270875692368, 0.051112718880176544, -0.24365128576755524, -0.3359537720680237, 1.0646306276321411, -0.3037281930446625, -0.0014860439114272594, 0.1714702993631363]} +{"t": 13.2871, "q": [-0.3735464811325073, -0.020669538527727127, 0.008490461856126785, 0.6290343999862671, -0.26170873641967773, 0.023864636197686195, -0.3308506906032562, -0.018450379371643066, 0.008744907565414906, 0.6447321176528931, -0.33695104718208313, 0.02729477733373642, 0.0012454462703317404, -0.012527259066700935, 0.10505633801221848, -0.11655857414007187, 0.2994498312473297, -0.2992580831050873, 1.3590351343154907, -0.07111439108848572, -0.03767840564250946, 0.06943660229444504, 0.049734536558389664, -0.24017585813999176, -0.33598974347114563, 1.0678064823150635, -0.3037162125110626, -0.0009827064350247383, 0.1676473319530487]} +{"t": 13.3038, "q": [-0.3735464811325073, -0.02057579532265663, 0.00831636693328619, 0.6290003061294556, -0.2616836130619049, 0.023850250989198685, -0.3316517770290375, -0.01853560097515583, 0.008691340684890747, 0.6446554064750671, -0.33693838119506836, 0.027258284389972687, 0.0017677302239462733, -0.013955831527709961, 0.10418268293142319, -0.11627095192670822, 0.2969810962677002, -0.2992461025714874, 1.3593347072601318, -0.07110241055488586, -0.03718705102801323, 0.06950850784778595, 0.0481526181101799, -0.23678432404994965, -0.3359537720680237, 1.0713657140731812, -0.3037641644477844, -0.00044341632747091353, 0.16316522657871246]} +{"t": 13.3207, "q": [-0.3735123872756958, -0.020354220643639565, 0.008035137318074703, 0.6290003061294556, -0.26157426834106445, 0.023677485063672066, -0.33212900161743164, -0.018637865781784058, 0.00865116436034441, 0.6445616483688354, -0.3369343876838684, 0.027265507727861404, 0.002156095113605261, -0.015059558674693108, 0.10349874943494797, -0.11600729823112488, 0.29499170184135437, -0.2992461025714874, 1.3595863580703735, -0.07115034759044647, -0.03683950752019882, 0.06959239393472672, 0.047038085758686066, -0.2337043732404709, -0.3359657824039459, 1.0739543437957764, -0.30378812551498413, -1.1984225238848012e-05, 0.15906661748886108]} +{"t": 13.3374, "q": [-0.3733760416507721, -0.020098557695746422, 0.007606596685945988, 0.6289576888084412, -0.2614312767982483, 0.023447128012776375, -0.3325977325439453, -0.018850918859243393, 0.008544029667973518, 0.6443997621536255, -0.3369387090206146, 0.02728736586868763, 0.002464108867570758, -0.015993239358067513, 0.10287566483020782, -0.11586348712444305, 0.29339781403541565, -0.299198180437088, 1.3597302436828613, -0.07115034759044647, -0.036611806601285934, 0.06968826800584793, 0.04557600989937782, -0.2308521270751953, -0.33594179153442383, 1.0773818492889404, -0.3037162125110626, 0.00016777915880084038, 0.1543688029050827]} +{"t": 13.3541, "q": [-0.3731800317764282, -0.01997072622179985, 0.00709770480170846, 0.6288468837738037, -0.26132193207740784, 0.023274362087249756, -0.3330152928829193, -0.01900431700050831, 0.008249407634139061, 0.6441185474395752, -0.3369467258453369, 0.027272919192910194, 0.0027051628567278385, -0.016839005053043365, 0.10223407298326492, -0.11563578993082047, 0.29249897599220276, -0.2992580831050873, 1.3597661256790161, -0.07113835960626602, -0.036491964012384415, 0.06972422450780869, 0.04454536363482475, -0.22841933369636536, -0.3361215591430664, 1.0795509815216064, -0.30365630984306335, 0.0005872270558029413, 0.15088139474391937]} +{"t": 13.3712, "q": [-0.3731033205986023, -0.020004814490675926, 0.0068566505797207355, 0.6285741925239563, -0.26115792989730835, 0.023022418841719627, -0.3330323398113251, -0.01907249353826046, 0.008182448334991932, 0.6438202261924744, -0.3369428813457489, 0.027294684201478958, 0.002839081920683384, -0.017627010121941566, 0.10138454288244247, -0.11547999083995819, 0.2924150824546814, -0.29931801557540894, 1.3598260879516602, -0.07113835960626602, -0.03645601496100426, 0.06972422450780869, 0.04356265813112259, -0.22647789120674133, -0.3362174332141876, 1.0812647342681885, -0.30363231897354126, 0.0009946906939148903, 0.14838868379592896]} +{"t": 13.3881, "q": [-0.3730181157588959, -0.019979247823357582, 0.00672273151576519, 0.628292977809906, -0.2610150873661041, 0.02284965105354786, -0.33300676941871643, -0.019055450335144997, 0.008128880523145199, 0.6433515548706055, -0.3369387090206146, 0.02728736586868763, 0.0029730007518082857, -0.01843852736055851, 0.10042046755552292, -0.11534816771745682, 0.292594850063324, -0.29934197664260864, 1.3598859310150146, -0.07112637907266617, -0.036444030702114105, 0.06971223652362823, 0.04253201559185982, -0.22442857921123505, -0.3362294137477875, 1.0829066038131714, -0.30368027091026306, 0.0016418388113379478, 0.14550048112869263]} +{"t": 13.4048, "q": [-0.3729499280452728, -0.01996220275759697, 0.006535245105624199, 0.6278924345970154, -0.2607884705066681, 0.022648191079497337, -0.3329812288284302, -0.019038405269384384, 0.007901218719780445, 0.6428146362304688, -0.3368636667728424, 0.027155613526701927, 0.003133703488856554, -0.01911003142595291, 0.0994168147444725, -0.11471300572156906, 0.29284653067588806, -0.29936593770980835, 1.3601137399673462, -0.07107844203710556, -0.03645601496100426, 0.06970025599002838, 0.04165716841816902, -0.22242721915245056, -0.33624139428138733, 1.0846322774887085, -0.3036682903766632, 0.0024208135437220335, 0.14152172207832336]} +{"t": 13.4215, "q": [-0.3727283477783203, -0.019928114488720894, 0.006200447678565979, 0.6273555159568787, -0.26045769453048706, 0.022440172731876373, -0.3328363299369812, -0.018995795398950577, 0.0076467725448310375, 0.6422266364097595, -0.3367515504360199, 0.027001606300473213, 0.003321190131828189, -0.01952231116592884, 0.09853675961494446, -0.11368235945701599, 0.2929903268814087, -0.29936593770980835, 1.360952615737915, -0.07111439108848572, -0.03646799921989441, 0.06970025599002838, 0.04117779806256294, -0.22038990259170532, -0.3362294137477875, 1.0861423015594482, -0.3036922514438629, 0.003463441040366888, 0.1374950110912323]} +{"t": 13.4384, "q": [-0.3724982738494873, -0.019894026219844818, 0.006039745174348354, 0.6266908049583435, -0.26002275943756104, 0.02241220511496067, -0.3326999843120575, -0.018978750333189964, 0.007459285669028759, 0.6415874361991882, -0.33655795454978943, 0.02687576226890087, 0.0035220684949308634, -0.019809579476714134, 0.09756339341402054, -0.11291536688804626, 0.29300233721733093, -0.29941388964653015, 1.3621031045913696, -0.07103050500154495, -0.03646799921989441, 0.06970025599002838, 0.04102200269699097, -0.21853235363960266, -0.3361934721469879, 1.0874125957489014, -0.3037162125110626, 0.004853611346334219, 0.1329769641160965]} +{"t": 13.4552, "q": [-0.37191876769065857, -0.019876983016729355, 0.005879042204469442, 0.6257278323173523, -0.2590324282646179, 0.022737855091691017, -0.33208638429641724, -0.0189617071300745, 0.007124488707631826, 0.6404454708099365, -0.3362891376018524, 0.02660360559821129, 0.003669379511848092, -0.019644256681203842, 0.09681819379329681, -0.11210044473409653, 0.2929903268814087, -0.29948580265045166, 1.3636850118637085, -0.07103050500154495, -0.03650394827127457, 0.06971223652362823, 0.04050667956471443, -0.21671074628829956, -0.33620545268058777, 1.088790774345398, -0.3037162125110626, 0.007274424657225609, 0.12999288737773895]} +{"t": 13.4719, "q": [-0.37087905406951904, -0.019868459552526474, 0.005892434157431126, 0.6239637136459351, -0.2579079270362854, 0.02287667617201805, -0.33133643865585327, -0.0189617071300745, 0.007124488707631826, 0.639133095741272, -0.3358496427536011, 0.026431305333971977, 0.003669379511848092, -0.019567150622606277, 0.09615213423967361, -0.11122559756040573, 0.29297834634780884, -0.2995457053184509, 1.365518569946289, -0.07095859944820404, -0.03656386956572533, 0.06970025599002838, 0.039571911096572876, -0.21496105194091797, -0.3361455202102661, 1.0903847217559814, -0.30370423197746277, 0.009755159728229046, 0.12805144488811493]} +{"t": 13.4887, "q": [-0.3695666491985321, -0.019953681156039238, 0.006200447678565979, 0.6218843460083008, -0.25650787353515625, 0.02323186956346035, -0.3305012881755829, -0.01900431700050831, 0.007325367070734501, 0.637795090675354, -0.33521315455436707, 0.02619858831167221, 0.003736338810995221, -0.019504008814692497, 0.09559457004070282, -0.11024288833141327, 0.29295438528060913, -0.299653559923172, 1.3674839735031128, -0.07081478834152222, -0.036551885306835175, 0.06966429948806763, 0.03815777227282524, -0.21343904733657837, -0.33610957860946655, 1.0923022031784058, -0.3036922514438629, 0.01152882445603609, 0.12593023478984833]} +{"t": 13.5055, "q": [-0.36852696537971497, -0.02021786756813526, 0.006441501900553703, 0.6199753880500793, -0.25558722019195557, 0.023204801604151726, -0.32998141646385193, -0.01931111328303814, 0.007526245433837175, 0.6369770169258118, -0.33469104766845703, 0.025952624157071114, 0.003803298342972994, -0.019358720630407333, 0.09515155851840973, -0.10887668281793594, 0.29295438528060913, -0.29980936646461487, 1.3685985803604126, -0.0707428827881813, -0.03657585382461548, 0.06956842541694641, 0.03656386956572533, -0.21231253445148468, -0.33606165647506714, 1.093632459640503, -0.3037281930446625, 0.012571452185511589, 0.12380903214216232]} +{"t": 13.5222, "q": [-0.36706116795539856, -0.02049909718334675, 0.006695947609841824, 0.6179044842720032, -0.25462767481803894, 0.023091167211532593, -0.3292570412158966, -0.019788352772593498, 0.007901218719780445, 0.6365679502487183, -0.3345227837562561, 0.025899788364768028, 0.0038568659219890833, -0.01915220357477665, 0.09502701461315155, -0.10745056718587875, 0.29279857873916626, -0.30003705620765686, 1.3693774938583374, -0.07058708369731903, -0.03656386956572533, 0.06944858282804489, 0.03434678912162781, -0.2112818956375122, -0.3359777629375458, 1.0950345993041992, -0.3037162125110626, 0.013074790127575397, 0.12163988500833511]} +{"t": 13.5392, "q": [-0.3655868172645569, -0.020831460133194923, 0.006883434485644102, 0.616046667098999, -0.2537097930908203, 0.02280478924512863, -0.3283877968788147, -0.020188892260193825, 0.008222623728215694, 0.6362611651420593, -0.33444005250930786, 0.025826090946793556, 0.0038300822488963604, -0.018768388777971268, 0.0948411226272583, -0.10603642463684082, 0.29242709279060364, -0.30028873682022095, 1.3698807954788208, -0.0703953355550766, -0.03657585382461548, 0.06935270875692368, 0.03154247999191284, -0.21052688360214233, -0.3359777629375458, 1.0969281196594238, -0.3037281930446625, 0.01342233270406723, 0.11924304068088531]} +{"t": 13.556, "q": [-0.3649391531944275, -0.02118086628615856, 0.006870042532682419, 0.6148706078529358, -0.2529352903366089, 0.022662078961730003, -0.32505565881729126, -0.020325245335698128, 0.008195839822292328, 0.6360395550727844, -0.3343100845813751, 0.025599099695682526, 0.003803298342972994, -0.017794450744986534, 0.09419798105955124, -0.10463427007198334, 0.2917200028896332, -0.30054038763046265, 1.3705759048461914, -0.0701436698436737, -0.03657585382461548, 0.06925683468580246, 0.02774348109960556, -0.21007148921489716, -0.33598974347114563, 1.0993489027023315, -0.3037162125110626, 0.013697969727218151, 0.1167503222823143]} +{"t": 13.5728, "q": [-0.36445337533950806, -0.02147061936557293, 0.006682556122541428, 0.6146916747093201, -0.25253045558929443, 0.02224540151655674, -0.3237091600894928, -0.020257068797945976, 0.007807475049048662, 0.636141836643219, -0.33329248428344727, 0.024692486971616745, 0.003816690295934677, -0.016553683206439018, 0.09354908019304276, -0.10423879325389862, 0.2907852530479431, -0.30066025257110596, 1.371726393699646, -0.07003581523895264, -0.03658783808350563, 0.06920889765024185, 0.024519724771380424, -0.20985576510429382, -0.3359657824039459, 1.1005833148956299, -0.3036922514438629, 0.013721938244998455, 0.1143534779548645]} +{"t": 13.5895, "q": [-0.3644789457321167, -0.021496184170246124, 0.006669164169579744, 0.6144700646400452, -0.2523319721221924, 0.021907541900873184, -0.3237176835536957, -0.020069582387804985, 0.007593204732984304, 0.636210024356842, -0.33321282267570496, 0.02455335482954979, 0.0038300822488963604, -0.01495842169970274, 0.09246468544006348, -0.10417886823415756, 0.28977856040000916, -0.3008999228477478, 1.3726131916046143, -0.07003581523895264, -0.03665974363684654, 0.0691729485988617, 0.022003037855029106, -0.20974791049957275, -0.3359777629375458, 1.1010267734527588, -0.3037162125110626, 0.013709953986108303, 0.11180083453655243]} +{"t": 13.6062, "q": [-0.3642403483390808, -0.021581405773758888, 0.006588812451809645, 0.6143848896026611, -0.2520448863506317, 0.021476294845342636, -0.3234790563583374, -0.01973721943795681, 0.007271799258887768, 0.6362866759300232, -0.33301156759262085, 0.0242018885910511, 0.004111311864107847, -0.013414071872830391, 0.09135536104440689, -0.10425077378749847, 0.28885579109191895, -0.30100777745246887, 1.3727689981460571, -0.06996390968561172, -0.036923397332429886, 0.06914898008108139, 0.019294602796435356, -0.2097838670015335, -0.3360017240047455, 1.1017217636108398, -0.30370423197746277, 0.013745906762778759, 0.11003915965557098]} +{"t": 13.623, "q": [-0.3642062544822693, -0.021624017506837845, 0.006454893853515387, 0.6143593192100525, -0.251888632774353, 0.021210316568613052, -0.32350462675094604, -0.019396334886550903, 0.006896826438605785, 0.6364060044288635, -0.33285337686538696, 0.02392410673201084, 0.004312190227210522, -0.01189833227545023, 0.09022418409585953, -0.10440657287836075, 0.28793299198150635, -0.30109167098999023, 1.3728049993515015, -0.06989200413227081, -0.03742673620581627, 0.06911302357912064, 0.016154736280441284, -0.21015536785125732, -0.3360256850719452, 1.1020933389663696, -0.3037162125110626, 0.013769874349236488, 0.10911636799573898]} +{"t": 13.6398, "q": [-0.3642573654651642, -0.021555839106440544, 0.006495069246739149, 0.6143337488174438, -0.25174078345298767, 0.020944342017173767, -0.323436439037323, -0.01902136206626892, 0.006481677293777466, 0.6364741921424866, -0.3326868712902069, 0.023631731048226357, 0.004646987654268742, -0.01011533010751009, 0.08874665200710297, -0.10461030155420303, 0.28627917170524597, -0.3011755645275116, 1.3728289604187012, -0.06986803561449051, -0.038181740790605545, 0.06900516897439957, 0.012930979020893574, -0.21059879660606384, -0.3360017240047455, 1.1022850275039673, -0.30370423197746277, 0.013769874349236488, 0.10837335139513016]} +{"t": 13.6566, "q": [-0.36423182487487793, -0.021547317504882812, 0.006495069246739149, 0.6143167018890381, -0.25144103169441223, 0.020477134734392166, -0.3233768045902252, -0.01864638924598694, 0.00613348837941885, 0.6364741921424866, -0.3325744569301605, 0.02343435399234295, 0.00483447453007102, -0.008352983742952347, 0.08723275363445282, -0.1046941950917244, 0.28353479504585266, -0.30128341913223267, 1.3728289604187012, -0.06965231895446777, -0.038900796324014664, 0.06875350326299667, 0.009084043093025684, -0.21105419099330902, -0.3360256850719452, 1.1025607585906982, -0.3037281930446625, 0.013793842867016792, 0.10764230787754059]} +{"t": 13.6733, "q": [-0.3642488718032837, -0.02146209590137005, 0.006535245105624199, 0.6142570376396179, -0.25127625465393066, 0.020167993381619453, -0.3233768045902252, -0.01841629110276699, 0.00579869095236063, 0.6365253329277039, -0.33249524235725403, 0.02328094281256199, 0.004968393128365278, -0.006203174125403166, 0.08546926081180573, -0.104742132127285, 0.2799035608768463, -0.30139127373695374, 1.3727929592132568, -0.06965231895446777, -0.039380162954330444, 0.06842992454767227, 0.005428853910416365, -0.21140173077583313, -0.3359777629375458, 1.1025607585906982, -0.3037162125110626, 0.013769874349236488, 0.10661166906356812]} +{"t": 13.6902, "q": [-0.36427441239356995, -0.021428007632493973, 0.006655772216618061, 0.6141291856765747, -0.25110727548599243, 0.01986606977880001, -0.32335975766181946, -0.018279938027262688, 0.005410325713455677, 0.6365423798561096, -0.3324737846851349, 0.02317170612514019, 0.005115704145282507, -0.003976736217737198, 0.08363744616508484, -0.10476610064506531, 0.2742230296134949, -0.3014751672744751, 1.3728289604187012, -0.06953247636556625, -0.039631832391023636, 0.06817825883626938, 0.002061286708340049, -0.21143768727779388, -0.33588188886642456, 1.1025487184524536, -0.30370423197746277, 0.013745906762778759, 0.10519752651453018]} +{"t": 13.7069, "q": [-0.36417216062545776, -0.02146209590137005, 0.006749515421688557, 0.6139758229255676, -0.2508876919746399, 0.01949227973818779, -0.3233341872692108, -0.018152106553316116, 0.005115704145282507, 0.6366361379623413, -0.33246445655822754, 0.02304082177579403, 0.005182663444429636, -0.0019781538285315037, 0.08207841217517853, -0.10455038398504257, 0.2681470513343811, -0.30178675055503845, 1.3727450370788574, -0.06948453933000565, -0.03983556479215622, 0.06791460514068604, -0.001330249011516571, -0.21129387617111206, -0.33569014072418213, 1.1025607585906982, -0.3037281930446625, 0.013709953986108303, 0.10393918305635452]} +{"t": 13.7237, "q": [-0.36422330141067505, -0.021445052698254585, 0.006816474720835686, 0.6137883067131042, -0.2506848871707916, 0.019104059785604477, -0.3233768045902252, -0.018015751615166664, 0.004713947419077158, 0.6367042660713196, -0.3324427604675293, 0.02290254272520542, 0.005316582508385181, -0.00014134655066300184, 0.08069010823965073, -0.10422680526971817, 0.2603333294391632, -0.302002489566803, 1.372912883758545, -0.06938866525888443, -0.03985953330993652, 0.06771086901426315, -0.004853611346334219, -0.21080252528190613, -0.33511489629745483, 1.1025607585906982, -0.30370423197746277, 0.013578127138316631, 0.10276473313570023]} +{"t": 13.7405, "q": [-0.3642573654651642, -0.021317221224308014, 0.0066289883106946945, 0.6136178970336914, -0.2504994869232178, 0.018788306042551994, -0.3234023451805115, -0.01781122200191021, 0.004298798739910126, 0.6366872191429138, -0.33232957124710083, 0.022617990151047707, 0.005571028683334589, 0.0015034701209515333, 0.07931697368621826, -0.10390323400497437, 0.25218406319618225, -0.30223017930984497, 1.3731045722961426, -0.06940064579248428, -0.039871517568826675, 0.06760301440954208, -0.008580705150961876, -0.21025124192237854, -0.33476734161376953, 1.1026445627212524, -0.30375218391418457, 0.013578127138316631, 0.10173408687114716]} +{"t": 13.7572, "q": [-0.3642403483390808, -0.021121211349964142, 0.006508461199700832, 0.613277018070221, -0.25029727816581726, 0.018429504707455635, -0.3234705328941345, -0.017666345462203026, 0.0038568659219890833, 0.6367298364639282, -0.33215826749801636, 0.022245606407523155, 0.00575851509347558, 0.003104713512584567, 0.07811560481786728, -0.10333997756242752, 0.2434355616569519, -0.30240994691848755, 1.3732484579086304, -0.06931675970554352, -0.03990747034549713, 0.06749515980482101, -0.013014868833124638, -0.2094363272190094, -0.33458757400512695, 1.1030880212783813, -0.3037281930446625, 0.013590111397206783, 0.10070344805717468]} +{"t": 13.774, "q": [-0.3644704222679138, -0.020839981734752655, 0.006267406977713108, 0.6130213141441345, -0.250166654586792, 0.018178313970565796, -0.32363244891166687, -0.017487380653619766, 0.0032810145057737827, 0.6366701722145081, -0.3320896029472351, 0.021896108984947205, 0.005972785409539938, 0.0045954519882798195, 0.07682494074106216, -0.10282465070486069, 0.23356056213378906, -0.3025178015232086, 1.3735839128494263, -0.069196917116642, -0.03989548608660698, 0.06745920330286026, -0.016394419595599174, -0.20833377540111542, -0.3342999517917633, 1.1031359434127808, -0.3036922514438629, 0.013530190102756023, 0.09928930550813675]} +{"t": 13.7908, "q": [-0.36463233828544617, -0.02062692865729332, 0.0061736637726426125, 0.6127486228942871, -0.2500949203968048, 0.01797006092965603, -0.3238966464996338, -0.01732546091079712, 0.0027855143416672945, 0.6366276144981384, -0.3321194648742676, 0.02156219445168972, 0.006187055725604296, 0.006012882571667433, 0.07536537200212479, -0.10192583501338959, 0.22440461814403534, -0.3026975691318512, 1.3737517595291138, -0.0691729485988617, -0.03994342312216759, 0.06741126626729965, -0.019090870395302773, -0.207039475440979, -0.3342040777206421, 1.1032557487487793, -0.3037162125110626, 0.013542174361646175, 0.09757556021213531]} +{"t": 13.8075, "q": [-0.36476871371269226, -0.02032865397632122, 0.006012961268424988, 0.6124588847160339, -0.25001469254493713, 0.017704341560602188, -0.3240415155887604, -0.017061274498701096, 0.002356973709538579, 0.636584997177124, -0.33224213123321533, 0.0210620928555727, 0.006240623537451029, 0.0074543217197060585, 0.07370474189519882, -0.10057161748409271, 0.2142779529094696, -0.3028174042701721, 1.3740394115447998, -0.06920889765024185, -0.03991945460438728, 0.0674232542514801, -0.021164141595363617, -0.2052897810935974, -0.3342280685901642, 1.103279709815979, -0.30360835790634155, 0.013530190102756023, 0.09572999179363251]} +{"t": 13.8243, "q": [-0.36477723717689514, -0.02002185769379139, 0.005812082905322313, 0.6122798919677734, -0.24991343915462494, 0.017431484535336494, -0.3241182267665863, -0.01679708994925022, 0.0020355682354420424, 0.6365935206413269, -0.3323816955089569, 0.020620333030819893, 0.006213839631527662, 0.008501669391989708, 0.07218650728464127, -0.09863017499446869, 0.2037438154220581, -0.30298519134521484, 1.3741950988769531, -0.06910104304552078, -0.0400153286755085, 0.06741126626729965, -0.022722091525793076, -0.2030726969242096, -0.3342040777206421, 1.1033036708831787, -0.30353644490242004, 0.01350622158497572, 0.09432783722877502]} +{"t": 13.8413, "q": [-0.36490505933761597, -0.019570186734199524, 0.005664771888405085, 0.6121350526809692, -0.2499173879623413, 0.017266133800148964, -0.32418638467788696, -0.016379505395889282, 0.0018212978029623628, 0.636516809463501, -0.332446813583374, 0.020105117931962013, 0.006187055725604296, 0.009602119214832783, 0.07060538232326508, -0.096580870449543, 0.19379690289497375, -0.30296120047569275, 1.3745546340942383, -0.06908905506134033, -0.04009921848773956, 0.06736332923173904, -0.023513050749897957, -0.20056799054145813, -0.3341441750526428, 1.1033036708831787, -0.30344057083129883, 0.01350622158497572, 0.09316536784172058]} +{"t": 13.8582, "q": [-0.3650328814983368, -0.018931027501821518, 0.005691555794328451, 0.6119134426116943, -0.249934121966362, 0.01720857247710228, -0.3245784044265747, -0.0160045325756073, 0.0017275545978918672, 0.6364741921424866, -0.33270859718322754, 0.01957744173705578, 0.006160271819680929, 0.010876617394387722, 0.0684518963098526, -0.0935608446598053, 0.1823519766330719, -0.3030690848827362, 1.3749501705169678, -0.06911302357912064, -0.04009921848773956, 0.06732738018035889, -0.023692812770605087, -0.1977277249097824, -0.3341202139854431, 1.1033036708831787, -0.3034166097640991, 0.013494237326085567, 0.09214670956134796]} +{"t": 13.8749, "q": [-0.36505845189094543, -0.01852196641266346, 0.005745123140513897, 0.6118367314338684, -0.24995087087154388, 0.01716538518667221, -0.32468920946121216, -0.015672169625759125, 0.0015400679549202323, 0.6364656686782837, -0.33299019932746887, 0.01896999217569828, 0.006012961268424988, 0.012008987367153168, 0.06687427312135696, -0.09068462997674942, 0.17258483171463013, -0.3031289875507355, 1.3751059770584106, -0.06908905506134033, -0.04012318700551987, 0.06730341166257858, -0.02364487573504448, -0.19511516392230988, -0.334096223115921, 1.1033875942230225, -0.3034166097640991, 0.013494237326085567, 0.09127186238765717]} +{"t": 13.8918, "q": [-0.3652203679084778, -0.017942462116479874, 0.00579869095236063, 0.611777126789093, -0.24997183680534363, 0.01714376173913479, -0.3251238167285919, -0.015280152671039104, 0.001379365217871964, 0.6364486217498779, -0.3333457410335541, 0.018319396302103996, 0.005678163841366768, 0.013179061934351921, 0.06535390019416809, -0.08723317831754684, 0.16288958489894867, -0.30318892002105713, 1.3751299381256104, -0.06906508654356003, -0.04021906107664108, 0.06731539219617844, -0.02346511371433735, -0.19275428354740143, -0.3338805139064789, 1.1037112474441528, -0.30338066816329956, 0.013470268808305264, 0.0905887559056282]} +{"t": 13.9087, "q": [-0.3652629852294922, -0.017149904742836952, 0.006026353221386671, 0.61170893907547, -0.24998857080936432, 0.017086202278733253, -0.3253965377807617, -0.014768825843930244, 0.001379365217871964, 0.6364060044288635, -0.33348312973976135, 0.01807364821434021, 0.005490677431225777, 0.014349697157740593, 0.0639151930809021, -0.08369782567024231, 0.15239140391349792, -0.30321288108825684, 1.3754534721374512, -0.06901714950799942, -0.04020707681775093, 0.06730341166257858, -0.02304566465318203, -0.19060909748077393, -0.3333292305469513, 1.1042264699935913, -0.3034166097640991, 0.01344630029052496, 0.09000153094530106]} +{"t": 13.9256, "q": [-0.3653056025505066, -0.015854543074965477, 0.006267406977713108, 0.6116918921470642, -0.25000110268592834, 0.01702146790921688, -0.3255328834056854, -0.01423193234950304, 0.0014061490073800087, 0.6363889575004578, -0.33355712890625, 0.01760192960500717, 0.005316582508385181, 0.015384679660201073, 0.0630045086145401, -0.08028232306241989, 0.14183330535888672, -0.30321288108825684, 1.375609278678894, -0.06906508654356003, -0.040231045335531235, 0.06730341166257858, -0.022494390606880188, -0.18855980038642883, -0.33216676115989685, 1.1051133871078491, -0.30344057083129883, 0.01342233270406723, 0.08974986523389816]} +{"t": 13.9424, "q": [-0.3654845654964447, -0.013920024037361145, 0.0064013260416686535, 0.6116663217544556, -0.2500220537185669, 0.01699984446167946, -0.32579708099365234, -0.01366095058619976, 0.001379365217871964, 0.6363889575004578, -0.3335700035095215, 0.017180517315864563, 0.005249623209238052, 0.016366777941584587, 0.062293555587530136, -0.07686682045459747, 0.1324496567249298, -0.303200900554657, 1.3755253553390503, -0.06907707452774048, -0.040290966629981995, 0.06732738018035889, -0.021991053596138954, -0.18637867271900177, -0.33106422424316406, 1.1065034866333008, -0.3035005033016205, 0.013410348445177078, 0.08965399116277695]} +{"t": 13.9591, "q": [-0.36592772603034973, -0.0141927320510149, 0.0064013260416686535, 0.6116663217544556, -0.2500345706939697, 0.016935093328356743, -0.32607829570770264, -0.012919526547193527, 0.0014061490073800087, 0.6363804340362549, -0.3334665894508362, 0.01658347062766552, 0.005289798602461815, 0.01723702996969223, 0.06161497160792351, -0.07366703450679779, 0.12378506362438202, -0.3026256561279297, 1.3758130073547363, -0.06938866525888443, -0.04032691940665245, 0.06895723193883896, -0.021883195266127586, -0.18346650898456573, -0.3307526409626007, 1.1079295873641968, -0.30353644490242004, 0.013410348445177078, 0.08959406614303589]} +{"t": 13.9758, "q": [-0.36655834317207336, -0.014116032049059868, 0.006495069246739149, 0.6117856502532959, -0.24998804926872253, 0.0167267806828022, -0.3261720538139343, -0.011717909015715122, 0.001379365217871964, 0.6361929774284363, -0.3331567347049713, 0.015824470669031143, 0.005865650251507759, 0.01824234053492546, 0.06086030974984169, -0.07272028177976608, 0.12149607390165329, -0.30136731266975403, 1.3764002323150635, -0.06973620504140854, -0.04044676199555397, 0.06913699209690094, -0.021823273971676826, -0.17959560453891754, -0.3307286500930786, 1.10915207862854, -0.30360835790634155, 0.013374395668506622, 0.08954612910747528]} +{"t": 13.9926, "q": [-0.36689069867134094, -0.013689925894141197, 0.006200447678565979, 0.6116066575050354, -0.24960896372795105, 0.016109727323055267, -0.3271350562572479, -0.011070228181779385, 0.0011383111122995615, 0.6362270712852478, -0.33313706517219543, 0.014944810420274734, 0.006267406977713108, 0.019082628190517426, 0.06031052768230438, -0.07162971794605255, 0.12081297487020493, -0.3012714385986328, 1.3764241933822632, -0.06962835043668747, -0.040578585118055344, 0.06930477172136307, -0.02166747860610485, -0.17549699544906616, -0.33066874742507935, 1.111836552619934, -0.303572416305542, 0.013398364186286926, 0.08957009762525558]} +{"t": 14.0094, "q": [-0.3675469160079956, -0.013212688267230988, 0.006026353221386671, 0.6115469932556152, -0.2492171674966812, 0.015428019687533379, -0.32869458198547363, -0.010584467090666294, 0.0008035137434490025, 0.6363804340362549, -0.3330613076686859, 0.01422449667006731, 0.006146880332380533, 0.020252810791134834, 0.059598810970783234, -0.07021557539701462, 0.12023773044347763, -0.3012714385986328, 1.376520037651062, -0.06959239393472672, -0.040590569376945496, 0.06929279118776321, -0.021044299006462097, -0.17113474011421204, -0.3300815224647522, 1.115204095840454, -0.3035963773727417, 0.013374395668506622, 0.08957009762525558]} +{"t": 14.0262, "q": [-0.3683650493621826, -0.012786582112312317, 0.005892434157431126, 0.6115043759346008, -0.24890965223312378, 0.0149042047560215, -0.33147281408309937, -0.010115751065313816, 0.000709770480170846, 0.6364827156066895, -0.33281365036964417, 0.013546082191169262, 0.006039745174348354, 0.02192670851945877, 0.05853842943906784, -0.06847786158323288, 0.11966248601675034, -0.30133137106895447, 1.3766518831253052, -0.06959239393472672, -0.040590569376945496, 0.0692448541522026, -0.02034921385347843, -0.16726383566856384, -0.3302013576030731, 1.118667483329773, -0.30356043577194214, 0.013398364186286926, 0.08954612910747528]} +{"t": 14.0429, "q": [-0.36949849128723145, -0.012522397562861443, 0.005785298999398947, 0.6113680601119995, -0.24850113689899445, 0.014280074276030064, -0.33345845341682434, -0.00957033596932888, 0.0008035137434490025, 0.6366616487503052, -0.3326219320297241, 0.013180738314986229, 0.0058388663455843925, 0.023894134908914566, 0.05729832127690315, -0.06670419871807098, 0.11923106014728546, -0.3013553321361542, 1.3766758441925049, -0.06950850784778595, -0.04060255363583565, 0.06925683468580246, -0.019366508349776268, -0.163332998752594, -0.3302253186702728, 1.1224185228347778, -0.303572416305542, 0.013410348445177078, 0.08952216058969498]} +{"t": 14.0596, "q": [-0.3708449602127075, -0.01232638768851757, 0.005624596029520035, 0.6113765835762024, -0.24826101958751678, 0.013871068134903908, -0.3330323398113251, -0.00920388475060463, 0.0008302975329570472, 0.6368662118911743, -0.33247625827789307, 0.012924900278449059, 0.005678163841366768, 0.026155702769756317, 0.05585945025086403, -0.06554172933101654, 0.11907526105642319, -0.3013792932033539, 1.376735806465149, -0.0695204883813858, -0.0406145378947258, 0.0692448541522026, -0.017952369526028633, -0.1597377359867096, -0.33029723167419434, 1.1248034238815308, -0.303572416305542, 0.013410348445177078, 0.08951018005609512]} +{"t": 14.0763, "q": [-0.3722170293331146, -0.012351954355835915, 0.005637987982481718, 0.611402153968811, -0.24800831079483032, 0.013469288125634193, -0.3331942558288574, -0.009041964076459408, 0.0010177841177210212, 0.6373860836029053, -0.332326740026474, 0.012705354019999504, 0.005624596029520035, 0.028230316936969757, 0.0545734204351902, -0.06507433950901031, 0.11805660277605057, -0.30136731266975403, 1.376867651939392, -0.06953247636556625, -0.0406145378947258, 0.06929279118776321, -0.01601092517375946, -0.15604659914970398, -0.3302372992038727, 1.1267569065093994, -0.30356043577194214, 0.013410348445177078, 0.08948621153831482]} +{"t": 14.0931, "q": [-0.37298402190208435, -0.012343432754278183, 0.005624596029520035, 0.611495852470398, -0.2477894425392151, 0.013225537724792957, -0.3338419497013092, -0.00893969926983118, 0.0010579597437754273, 0.637795090675354, -0.332136332988739, 0.012499948963522911, 0.0055978125892579556, 0.03040946274995804, 0.053459133952856064, -0.06507433950901031, 0.11635484546422958, -0.3014032542705536, 1.376867651939392, -0.06956842541694641, -0.04062652215361595, 0.06934072822332382, -0.01378185860812664, -0.15273894369602203, -0.3302372992038727, 1.128830075263977, -0.3035963773727417, 0.013458284549415112, 0.08947422355413437]} +{"t": 14.1098, "q": [-0.3735038638114929, -0.012343432754278183, 0.005637987982481718, 0.6114788055419922, -0.24763360619544983, 0.012974425218999386, -0.33460894227027893, -0.008871521800756454, 0.0010713516967371106, 0.6381360292434692, -0.33208295702934265, 0.012492150068283081, 0.005504068918526173, 0.03238784521818161, 0.05227610096335411, -0.06505037099123001, 0.11526428163051605, -0.3014512062072754, 1.3768436908721924, -0.0694965198636055, -0.040590569376945496, 0.06932874023914337, -0.01152882445603609, -0.1491556614637375, -0.33011746406555176, 1.1316344738006592, -0.30363231897354126, 0.013494237326085567, 0.08949819207191467]} +{"t": 14.1266, "q": [-0.3737083971500397, -0.012351954355835915, 0.005785298999398947, 0.6115725636482239, -0.2476041167974472, 0.0129241943359375, -0.3350350558757782, -0.00882038939744234, 0.0012454462703317404, 0.6385791301727295, -0.3320704698562622, 0.012470227666199207, 0.005356758367270231, 0.034141603857278824, 0.0511685386300087, -0.06487061083316803, 0.11459316313266754, -0.30148714780807495, 1.3769155740737915, -0.06950850784778595, -0.04050667956471443, 0.06932874023914337, -0.009982859715819359, -0.14487729966640472, -0.33009350299835205, 1.1360327005386353, -0.30363231897354126, 0.013494237326085567, 0.08951018005609512]} +{"t": 14.1433, "q": [-0.3737083971500397, -0.012377521023154259, 0.00579869095236063, 0.6117686033248901, -0.24759988486766815, 0.012902648188173771, -0.3351373076438904, -0.008709602057933807, 0.0015132841654121876, 0.6388348340988159, -0.3320622444152832, 0.012470128014683723, 0.005222839303314686, 0.03582065552473068, 0.05011708661913872, -0.06475076824426651, 0.1143295094370842, -0.3015470802783966, 1.3769515752792358, -0.06953247636556625, -0.04043477773666382, 0.06932874023914337, -0.008952216245234013, -0.14052702486515045, -0.3301054835319519, 1.1409581899642944, -0.3036203384399414, 0.013470268808305264, 0.08948621153831482]} +{"t": 14.1601, "q": [-0.3736913502216339, -0.01238604262471199, 0.0058388663455843925, 0.6118537783622742, -0.24758724868297577, 0.012881110422313213, -0.3351287841796875, -0.008675513789057732, 0.0016204193234443665, 0.6388944983482361, -0.33205392956733704, 0.012455512769520283, 0.005115704145282507, 0.03746309503912926, 0.04904913157224655, -0.06451108306646347, 0.11418569833040237, -0.30163097381591797, 1.3770833015441895, -0.06942461431026459, -0.0403389036655426, 0.06925683468580246, -0.008269115351140499, -0.13590110838413239, -0.33014142513275146, 1.1469143629074097, -0.30365630984306335, 0.013542174361646175, 0.08946224302053452]} +{"t": 14.1768, "q": [-0.37366577982902527, -0.012394565157592297, 0.005919218063354492, 0.6119986772537231, -0.24760407209396362, 0.012895449064671993, -0.3351202607154846, -0.008658469654619694, 0.001673986902460456, 0.6390819549560547, -0.33204182982444763, 0.012477189302444458, 0.005048744846135378, 0.038955207914114, 0.04808591678738594, -0.0643792599439621, 0.11396998167037964, -0.3016788959503174, 1.3771432638168335, -0.06937667727470398, -0.04026699811220169, 0.06923286616802216, -0.00695085059851408, -0.13093964755535126, -0.33004555106163025, 1.1511207818984985, -0.30365630984306335, 0.013518205843865871, 0.08947422355413437]} +{"t": 14.1935, "q": [-0.37367430329322815, -0.01244569756090641, 0.006026353221386671, 0.6122031807899475, -0.24759986996650696, 0.01288827508687973, -0.33515435457229614, -0.008666991256177425, 0.001794514013454318, 0.6392353773117065, -0.3320419490337372, 0.012491722591221333, 0.004807690624147654, 0.04018392041325569, 0.047283198684453964, -0.06431933492422104, 0.11368235945701599, -0.30171486735343933, 1.377251148223877, -0.06928080320358276, -0.040231045335531235, 0.0691729485988617, -0.005800365004688501, -0.1256905496120453, -0.329985648393631, 1.1553272008895874, -0.30365630984306335, 0.01350622158497572, 0.08946224302053452]} +{"t": 14.2103, "q": [-0.37366577982902527, -0.012488308362662792, 0.006106704473495483, 0.6123310327529907, -0.24763348698616028, 0.012902544811367989, -0.3352225422859192, -0.008684035390615463, 0.0019552167505025864, 0.6393290758132935, -0.33202171325683594, 0.012527870014309883, 0.004727339372038841, 0.0412927083671093, 0.046527642756700516, -0.06431933492422104, 0.11328688263893127, -0.30181074142456055, 1.3773709535598755, -0.06928080320358276, -0.04018310829997063, 0.06912501156330109, -0.004829642828553915, -0.12074106931686401, -0.3299017548561096, 1.1599531173706055, -0.30360835790634155, 0.013518205843865871, 0.08949819207191467]} +{"t": 14.227, "q": [-0.3736913502216339, -0.012522397562861443, 0.006160271819680929, 0.6124588847160339, -0.2476503551006317, 0.012931255623698235, -0.33529070019721985, -0.00869255792349577, 0.0020623519085347652, 0.6393205523490906, -0.33199724555015564, 0.01254215743392706, 0.00479429867118597, 0.042220428586006165, 0.04590858146548271, -0.06427139788866043, 0.11262775212526321, -0.3018706440925598, 1.3773709535598755, -0.06930477172136307, -0.04013517126441002, 0.06910104304552078, -0.003463441040366888, -0.11542007327079773, -0.32988977432250977, 1.1647948026657104, -0.30365630984306335, 0.013518205843865871, 0.08946224302053452]} +{"t": 14.244, "q": [-0.3738362491130829, -0.01256500743329525, 0.006254015490412712, 0.6125952005386353, -0.24770918488502502, 0.012931074015796185, -0.3355463743209839, -0.00875221285969019, 0.0021025275345891714, 0.6393120288848877, -0.33197715878486633, 0.01259283721446991, 0.004847866017371416, 0.04303530603647232, 0.04536157473921776, -0.06417552381753922, 0.11178885400295258, -0.3018706440925598, 1.3774309158325195, -0.06923286616802216, -0.04012318700551987, 0.06910104304552078, -0.0014381069922819734, -0.11032677441835403, -0.32972198724746704, 1.168174386024475, -0.3037162125110626, 0.013542174361646175, 0.08946224302053452]} +{"t": 14.2607, "q": [-0.3741089403629303, -0.012607618235051632, 0.00638793408870697, 0.6126719117164612, -0.24773021042346954, 0.01295256894081831, -0.33905747532844543, -0.008786301128566265, 0.0022900141775608063, 0.639277994632721, -0.3319488763809204, 0.012643435969948769, 0.004847866017371416, 0.0437297448515892, 0.044873736798763275, -0.06393583863973618, 0.11069829016923904, -0.30185866355895996, 1.3774667978286743, -0.06925683468580246, -0.04009921848773956, 0.06910104304552078, 0.001330249011516571, -0.10449045896530151, -0.3296860456466675, 1.170151710510254, -0.3036682903766632, 0.013530190102756023, 0.08945025503635406]} +{"t": 14.2774, "q": [-0.375063419342041, -0.012641706503927708, 0.006508461199700832, 0.6128082871437073, -0.2477344274520874, 0.012959741987287998, -0.3404039740562439, -0.00882038939744234, 0.0024775005877017975, 0.6392524242401123, -0.3319779932498932, 0.012694607488811016, 0.005048744846135378, 0.04424605891108513, 0.044202566146850586, -0.06360028684139252, 0.10949986428022385, -0.3018227219581604, 1.3776346445083618, -0.06930477172136307, -0.04008723422884941, 0.06916096061468124, 0.004518053028732538, -0.0989537462592125, -0.3295062780380249, 1.1720572710037231, -0.3036922514438629, 0.01350622158497572, 0.08946224302053452]} +{"t": 14.2947, "q": [-0.37627357244491577, -0.012701361440122128, 0.006454893853515387, 0.6131065487861633, -0.2477596551179886, 0.01295966375619173, -0.3407192826271057, -0.008854477666318417, 0.0024373249616473913, 0.6392268538475037, -0.33200713992118835, 0.012745778076350689, 0.005437109619379044, 0.0448741689324379, 0.04362579435110092, -0.06342051923274994, 0.10848120599985123, -0.30176278948783875, 1.377646565437317, -0.06931675970554352, -0.04009921848773956, 0.06923286616802216, 0.007418235298246145, -0.09400426596403122, -0.3293624520301819, 1.173878788948059, -0.30365630984306335, 0.013530190102756023, 0.08928247541189194]} +{"t": 14.3115, "q": [-0.3786938488483429, -0.012701361440122128, 0.006374542135745287, 0.613737165927887, -0.24775122106075287, 0.012945299968123436, -0.3411027789115906, -0.008888565935194492, 0.0022900141775608063, 0.6392609477043152, -0.3319624364376068, 0.012796212919056416, 0.00542371766641736, 0.045558758080005646, 0.042667679488658905, -0.06282130628824234, 0.10794191807508469, -0.3017747700214386, 1.377706527709961, -0.06935270875692368, -0.04009921848773956, 0.06931675970554352, 0.009946906939148903, -0.0896420031785965, -0.3294104039669037, 1.1762516498565674, -0.30368027091026306, 0.013494237326085567, 0.0890427902340889]} +{"t": 14.3283, "q": [-0.3803982734680176, -0.012735449708998203, 0.0064013260416686535, 0.6141888499259949, -0.2476923018693924, 0.012887990102171898, -0.34158855676651, -0.00888004433363676, 0.002356973709538579, 0.6393716931343079, -0.3316647708415985, 0.013004012405872345, 0.005437109619379044, 0.04604382812976837, 0.04215581342577934, -0.06238987669348717, 0.10784604400396347, -0.3017268478870392, 1.377838373184204, -0.06934072822332382, -0.04015913978219032, 0.06930477172136307, 0.011396998539566994, -0.08529172837734222, -0.3295302391052246, 1.179103970527649, -0.3036682903766632, 0.013494237326085567, 0.08869525045156479]} +{"t": 14.345, "q": [-0.381489098072052, -0.0129314586520195, 0.006414717994630337, 0.6141973733901978, -0.24750708043575287, 0.01265850942581892, -0.3425941467285156, -0.008888565935194492, 0.002865865593776107, 0.639431357383728, -0.3313346207141876, 0.013255119323730469, 0.005316582508385181, 0.04603628069162369, 0.04216073453426361, -0.062006380409002304, 0.10784604400396347, -0.30171486735343933, 1.3778742551803589, -0.06935270875692368, -0.04018310829997063, 0.06931675970554352, 0.012643357738852501, -0.08222377300262451, -0.3300335705280304, 1.1812251806259155, -0.3035963773727417, 0.01342233270406723, 0.08765262365341187]} +{"t": 14.3618, "q": [-0.38206860423088074, -0.01310189999639988, 0.006481677293777466, 0.6141718029975891, -0.2474060207605362, 0.01251507643610239, -0.34408554434776306, -0.008871521800756454, 0.003334582084789872, 0.6394143104553223, -0.33106547594070435, 0.01344140525907278, 0.005115704145282507, 0.045968327671289444, 0.04220502823591232, -0.06145510822534561, 0.10789398103952408, -0.3017028570175171, 1.3778983354568481, -0.06937667727470398, -0.04025501385331154, 0.06931675970554352, 0.013745906762778759, -0.08128900080919266, -0.3302253186702728, 1.1823756694793701, -0.30353644490242004, 0.013278521597385406, 0.08680174499750137]} +{"t": 14.3786, "q": [-0.38215380907058716, -0.01317007839679718, 0.006776299327611923, 0.6141888499259949, -0.24735556542873383, 0.012486469000577927, -0.3480483293533325, -0.008871521800756454, 0.004030960611999035, 0.6394143104553223, -0.3308946490287781, 0.013614140450954437, 0.005075528286397457, 0.04584770277142525, 0.04226488620042801, -0.06101169064640999, 0.10792993009090424, -0.3016788959503174, 1.3779102563858032, -0.06940064579248428, -0.040290966629981995, 0.06931675970554352, 0.014321149326860905, -0.08173241466283798, -0.3304530382156372, 1.1835501194000244, -0.30351248383522034, 0.01308677438646555, 0.08656205981969833]} +{"t": 14.3953, "q": [-0.3827759325504303, -0.013187121599912643, 0.0074191102758049965, 0.6142144203186035, -0.24736815690994263, 0.01247924380004406, -0.3489772379398346, -0.008854477666318417, 0.004901433829218149, 0.6396359205245972, -0.3308669626712799, 0.013737423345446587, 0.004995177034288645, 0.045411646366119385, 0.04161377251148224, -0.06064017862081528, 0.10796588659286499, -0.3016549348831177, 1.3779462575912476, -0.06938866525888443, -0.040350887924432755, 0.06930477172136307, 0.01456083357334137, -0.08249940723180771, -0.3304530382156372, 1.1850001811981201, -0.30351248383522034, 0.013014868833124638, 0.08655007183551788]} +{"t": 14.4122, "q": [-0.3827844560146332, -0.013212688267230988, 0.007780691608786583, 0.6141973733901978, -0.247393399477005, 0.012507910840213299, -0.3490368723869324, -0.008854477666318417, 0.005356758367270231, 0.6396359205245972, -0.3308688998222351, 0.0139700286090374, 0.0049817850813269615, 0.04524080827832222, 0.04144449159502983, -0.06071208417415619, 0.10791794955730438, -0.3016549348831177, 1.3778502941131592, -0.06940064579248428, -0.04038684070110321, 0.06932874023914337, 0.014464959502220154, -0.08253535628318787, -0.33046501874923706, 1.1866060495376587, -0.30351248383522034, 0.012990900315344334, 0.08657404035329819]} +{"t": 14.4289, "q": [-0.38298046588897705, -0.013280864804983139, 0.00798156950622797, 0.6141973733901978, -0.24739761650562286, 0.012515084818005562, -0.3491987884044647, -0.008871521800756454, 0.005571028683334589, 0.6396018266677856, -0.33086973428726196, 0.014071798883378506, 0.004955001175403595, 0.04521391540765762, 0.04113475978374481, -0.06084391102194786, 0.10791794955730438, -0.3016429543495178, 1.3778862953186035, -0.06937667727470398, -0.04037485644221306, 0.06930477172136307, 0.01462075486779213, -0.08261924982070923, -0.33046501874923706, 1.187900424003601, -0.3035244643688202, 0.012990900315344334, 0.08663396537303925]} +{"t": 14.4457, "q": [-0.3833298683166504, -0.01334904134273529, 0.008102096617221832, 0.6141888499259949, -0.2474060356616974, 0.012529449537396431, -0.34955674409866333, -0.008905611000955105, 0.005691555794328451, 0.6395933032035828, -0.3308658301830292, 0.014093557372689247, 0.0049817850813269615, 0.045354269444942474, 0.04060394689440727, -0.06083192676305771, 0.10792993009090424, -0.3016549348831177, 1.3778862953186035, -0.06940064579248428, -0.040362872183322906, 0.06930477172136307, 0.014992265962064266, -0.08276306092739105, -0.3304530382156372, 1.1887872219085693, -0.303572416305542, 0.012978916056454182, 0.08670587092638016]} +{"t": 14.4624, "q": [-0.3837730288505554, -0.013383129611611366, 0.008102096617221832, 0.6141547560691833, -0.24740183353424072, 0.012522275559604168, -0.35005953907966614, -0.008905611000955105, 0.005785298999398947, 0.639576256275177, -0.330836683511734, 0.014042385853827, 0.005008568987250328, 0.045502834022045135, 0.04000234231352806, -0.06071208417415619, 0.10789398103952408, -0.30166691541671753, 1.3778983354568481, -0.06931675970554352, -0.040362872183322906, 0.06930477172136307, 0.015603461302816868, -0.08271512389183044, -0.3304530382156372, 1.1891107559204102, -0.30353644490242004, 0.013002884574234486, 0.08669388294219971]} +{"t": 14.4792, "q": [-0.38408833742141724, -0.013400174677371979, 0.008128880523145199, 0.6141291856765747, -0.24740183353424072, 0.012522275559604168, -0.35051971673965454, -0.008931176736950874, 0.005865650251507759, 0.639576256275177, -0.330790638923645, 0.013932917267084122, 0.0049817850813269615, 0.045663561671972275, 0.039672981947660446, -0.06066414713859558, 0.10789398103952408, -0.3016429543495178, 1.377934217453003, -0.06936469674110413, -0.0403389036655426, 0.06930477172136307, 0.016082830727100372, -0.08271512389183044, -0.33044102787971497, 1.1891227960586548, -0.303572416305542, 0.012954947538673878, 0.0866459459066391]} +{"t": 14.4959, "q": [-0.3843781054019928, -0.013391653075814247, 0.008169055916368961, 0.6140950918197632, -0.247393399477005, 0.012507910840213299, -0.3509117364883423, -0.008905611000955105, 0.005905826110392809, 0.6396103501319885, -0.33075758814811707, 0.01390350516885519, 0.004955001175403595, 0.045762356370687485, 0.03954324126243591, -0.060628194361925125, 0.10790596157312393, -0.3016429543495178, 1.3779222965240479, -0.06935270875692368, -0.040350887924432755, 0.06932874023914337, 0.01635846681892872, -0.0827271044254303, -0.3304769992828369, 1.1891347169876099, -0.30356043577194214, 0.012942963279783726, 0.08663396537303925]} +{"t": 14.5127, "q": [-0.3847530782222748, -0.013391653075814247, 0.008182448334991932, 0.6140695214271545, -0.2473808079957962, 0.012515136040747166, -0.3514656722545624, -0.00888004433363676, 0.005959393456578255, 0.6396955251693726, -0.33076971769332886, 0.013881828635931015, 0.0049817850813269615, 0.045868564397096634, 0.03942708298563957, -0.06054430454969406, 0.10789398103952408, -0.30163097381591797, 1.3779102563858032, -0.06940064579248428, -0.040350887924432755, 0.06932874023914337, 0.016502277925610542, -0.08273909240961075, -0.33048897981643677, 1.1891707181930542, -0.30353644490242004, 0.012930979020893574, 0.0866219773888588]} +{"t": 14.5295, "q": [-0.3854774534702301, -0.013374608010053635, 0.008182448334991932, 0.6140865683555603, -0.24733038246631622, 0.012515291571617126, -0.35230937600135803, -0.008871521800756454, 0.0059995693154633045, 0.6399427056312561, -0.33072784543037415, 0.01377963088452816, 0.004995177034288645, 0.0459907092154026, 0.03921614959836006, -0.06052033603191376, 0.10792993009090424, -0.30163097381591797, 1.3778862953186035, -0.06938866525888443, -0.040350887924432755, 0.06932874023914337, 0.016538230702280998, -0.0827510729432106, -0.3305009603500366, 1.1891107559204102, -0.3035244643688202, 0.012942963279783726, 0.08660999685525894]} +{"t": 14.5462, "q": [-0.38623592257499695, -0.013383129611611366, 0.008343150839209557, 0.6140780448913574, -0.24727149307727814, 0.012472337111830711, -0.35325533151626587, -0.008837433531880379, 0.006079920567572117, 0.6403688192367554, -0.3306567072868347, 0.013611765578389168, 0.004968393128365278, 0.046013832092285156, 0.03915419429540634, -0.06059224158525467, 0.10791794955730438, -0.3016429543495178, 1.3778502941131592, -0.06940064579248428, -0.040362872183322906, 0.06932874023914337, 0.01647830940783024, -0.08273909240961075, -0.3304769992828369, 1.1891227960586548, -0.30353644490242004, 0.012930979020893574, 0.0866219773888588]} +{"t": 14.5631, "q": [-0.38696029782295227, -0.013366086408495903, 0.008503853343427181, 0.6141206622123718, -0.24723781645298004, 0.012429305352270603, -0.3541671931743622, -0.008803345263004303, 0.006254015490412712, 0.6408204436302185, -0.330648273229599, 0.013582617044448853, 0.0049817850813269615, 0.0460214763879776, 0.03913983330130577, -0.0607600212097168, 0.10792993009090424, -0.3016189932823181, 1.377838373184204, -0.06940064579248428, -0.040362872183322906, 0.06932874023914337, 0.016382435336709023, -0.08273909240961075, -0.3304530382156372, 1.1891227960586548, -0.303572416305542, 0.012930979020893574, 0.0866219773888588]} +{"t": 14.5799, "q": [-0.38743752241134644, -0.013383129611611366, 0.008610988967120647, 0.6141547560691833, -0.2471620738506317, 0.012357675470411777, -0.3545592129230499, -0.00882038939744234, 0.006361150648444891, 0.6412891745567322, -0.3305642902851105, 0.01334917452186346, 0.004968393128365278, 0.04601355642080307, 0.03918249532580376, -0.06084391102194786, 0.10792993009090424, -0.3015710413455963, 1.3778023719787598, -0.06942461431026459, -0.04039882495999336, 0.06931675970554352, 0.016334498301148415, -0.08279900997877121, -0.33044102787971497, 1.1891347169876099, -0.303572416305542, 0.012954947538673878, 0.08663396537303925]} +{"t": 14.5966, "q": [-0.3877358138561249, -0.013383129611611366, 0.008624380454421043, 0.6141718029975891, -0.24713681638240814, 0.012328989803791046, -0.3545251190662384, -0.008828911930322647, 0.006374542135745287, 0.6416471004486084, -0.33056724071502686, 0.013211112469434738, 0.005075528286397457, 0.04602092504501343, 0.0391964316368103, -0.06083192676305771, 0.10788199305534363, -0.3015710413455963, 1.3778263330459595, -0.06940064579248428, -0.040410809218883514, 0.06932874023914337, 0.01635846681892872, -0.0827750414609909, -0.33046501874923706, 1.1891467571258545, -0.3035963773727417, 0.012954947538673878, 0.0866219773888588]} +{"t": 14.6133, "q": [-0.3877784311771393, -0.013383129611611366, 0.008744907565414906, 0.6141462326049805, -0.24711155891418457, 0.01230030506849289, -0.3543802499771118, -0.008803345263004303, 0.006374542135745287, 0.6420902609825134, -0.33058732748031616, 0.013160432688891888, 0.005196055397391319, 0.04602847993373871, 0.03919150307774544, -0.0607839897274971, 0.10788199305534363, -0.3015710413455963, 1.377838373184204, -0.06942461431026459, -0.040470726788043976, 0.06934072822332382, 0.016334498301148415, -0.08273909240961075, -0.33044102787971497, 1.1891467571258545, -0.30353644490242004, 0.012954947538673878, 0.08663396537303925]} +{"t": 14.6301, "q": [-0.3878124952316284, -0.013400174677371979, 0.008932393975555897, 0.6142058968544006, -0.2471073418855667, 0.012293131090700626, -0.3541245758533478, -0.00881186779588461, 0.006441501900553703, 0.6426867842674255, -0.3306275010108948, 0.01305908989161253, 0.005263015162199736, 0.046005818992853165, 0.03920629248023033, -0.06077200546860695, 0.10790596157312393, -0.3015710413455963, 1.3777904510498047, -0.06942461431026459, -0.040470726788043976, 0.06932874023914337, 0.016346482560038567, -0.08276306092739105, -0.3304290473461151, 1.1891586780548096, -0.303572416305542, 0.012954947538673878, 0.08663396537303925]} +{"t": 14.6469, "q": [-0.38784658908843994, -0.013400174677371979, 0.009267191402614117, 0.6142911314964294, -0.24711574614048004, 0.012293105944991112, -0.353920042514801, -0.00882038939744234, 0.006736123468726873, 0.6434793472290039, -0.33061501383781433, 0.013037167489528656, 0.005276407115161419, 0.0459907092154026, 0.03921614959836006, -0.06083192676305771, 0.10787001252174377, -0.30155906081199646, 1.377766489982605, -0.06942461431026459, -0.04050667956471443, 0.06931675970554352, 0.01637045107781887, -0.0827750414609909, -0.33044102787971497, 1.1891467571258545, -0.30356043577194214, 0.012978916056454182, 0.0866219773888588]} +{"t": 14.6636, "q": [-0.3879062533378601, -0.013425741344690323, 0.009829651564359665, 0.6143678426742554, -0.24711152911186218, 0.012285931967198849, -0.35367292165756226, -0.008854477666318417, 0.007204839959740639, 0.6445190906524658, -0.33061501383781433, 0.013037167489528656, 0.005289798602461815, 0.04598315805196762, 0.03922107815742493, -0.06093978509306908, 0.10790596157312393, -0.30153509974479675, 1.377766489982605, -0.06940064579248428, -0.04050667956471443, 0.06932874023914337, 0.01635846681892872, -0.08282297849655151, -0.33044102787971497, 1.1891586780548096, -0.303572416305542, 0.01296693179756403, 0.0866219773888588]} +{"t": 14.6803, "q": [-0.38801702857017517, -0.013417219743132591, 0.010526030324399471, 0.6145212054252625, -0.2471199631690979, 0.0123002789914608, -0.3534257709980011, -0.008871521800756454, 0.007807475049048662, 0.6455502510070801, -0.33061474561691284, 0.013008064590394497, 0.0052094473503530025, 0.04598315805196762, 0.03922107815742493, -0.06101169064640999, 0.10790596157312393, -0.3015470802783966, 1.3777544498443604, -0.06935270875692368, -0.04049469530582428, 0.06934072822332382, 0.016334498301148415, -0.08290687203407288, -0.3304290473461151, 1.1891707181930542, -0.30363231897354126, 0.012978916056454182, 0.08663396537303925]} +{"t": 14.6971, "q": [-0.38801702857017517, -0.013425741344690323, 0.011209016665816307, 0.6145382523536682, -0.24711152911186218, 0.012285931967198849, -0.3536047339439392, -0.008905611000955105, 0.008383326232433319, 0.6463598608970642, -0.330631285905838, 0.013022779487073421, 0.00516927195712924, 0.04600554332137108, 0.03923459351062775, -0.0610835961997509, 0.10795389860868454, -0.30153509974479675, 1.3777904510498047, -0.06937667727470398, -0.04048271104693413, 0.06932874023914337, 0.01635846681892872, -0.08289488404989243, -0.3304530382156372, 1.1891826391220093, -0.3036203384399414, 0.012990900315344334, 0.08660999685525894]} +{"t": 14.714, "q": [-0.38792330026626587, -0.01340869627892971, 0.011530422605574131, 0.6145638227462769, -0.24711574614048004, 0.012293105944991112, -0.3537155091762543, -0.008888565935194492, 0.008677948266267776, 0.6468967199325562, -0.3306352198123932, 0.01300102099776268, 0.005048744846135378, 0.04606551304459572, 0.039242327213287354, -0.06109558045864105, 0.10789398103952408, -0.3015470802783966, 1.3778144121170044, -0.06938866525888443, -0.04049469530582428, 0.06932874023914337, 0.016274577006697655, -0.08293084055185318, -0.33044102787971497, 1.1892426013946533, -0.3036203384399414, 0.012990900315344334, 0.08663396537303925]} +{"t": 14.7308, "q": [-0.38784658908843994, -0.013400174677371979, 0.01151703018695116, 0.6145979166030884, -0.24712833762168884, 0.012285880744457245, -0.3536984920501709, -0.008897088468074799, 0.008624380454421043, 0.6470927596092224, -0.3306800425052643, 0.012965119443833828, 0.005008568987250328, 0.046163711696863174, 0.03917824849486351, -0.06113153323531151, 0.10787001252174377, -0.30153509974479675, 1.3778144121170044, -0.06936469674110413, -0.04049469530582428, 0.06934072822332382, 0.016274577006697655, -0.08293084055185318, -0.33041706681251526, 1.1892786026000977, -0.3035963773727417, 0.012990900315344334, 0.08663396537303925]} +{"t": 14.7475, "q": [-0.38765057921409607, -0.013357564806938171, 0.011476854793727398, 0.6145893931388855, -0.24711568653583527, 0.012249987572431564, -0.3536473512649536, -0.008905611000955105, 0.008584205061197281, 0.647195041179657, -0.33071640133857727, 0.012900070287287235, 0.004968393128365278, 0.04629967734217644, 0.03908952698111534, -0.06119145452976227, 0.10782207548618317, -0.3015470802783966, 1.3778263330459595, -0.06936469674110413, -0.04044676199555397, 0.06932874023914337, 0.016334498301148415, -0.08287091553211212, -0.33044102787971497, 1.1892905235290527, -0.30360835790634155, 0.012954947538673878, 0.0866219773888588]} +{"t": 14.7643, "q": [-0.38755685091018677, -0.013306431472301483, 0.011423286981880665, 0.6146149635314941, -0.2471114546060562, 0.012228423729538918, -0.3536558747291565, -0.00888004433363676, 0.008517245762050152, 0.6472887396812439, -0.3307243585586548, 0.012871084734797478, 0.004968393128365278, 0.046375494450330734, 0.039011936634778976, -0.061179470270872116, 0.10781008750200272, -0.30153509974479675, 1.3777904510498047, -0.06936469674110413, -0.040470726788043976, 0.06934072822332382, 0.016262592747807503, -0.08285893499851227, -0.3304530382156372, 1.1893025636672974, -0.30360835790634155, 0.01296693179756403, 0.08663396537303925]} +{"t": 14.781, "q": [-0.3875312805175781, -0.01328938640654087, 0.011356327682733536, 0.6145638227462769, -0.24705249071121216, 0.01214235182851553, -0.353689968585968, -0.008897088468074799, 0.008503853343427181, 0.6472972631454468, -0.33077359199523926, 0.012871576473116875, 0.004995177034288645, 0.046443477272987366, 0.038967572152614594, -0.06109558045864105, 0.10781008750200272, -0.3015470802783966, 1.3778144121170044, -0.06931675970554352, -0.04044676199555397, 0.06932874023914337, 0.01631052978336811, -0.08289488404989243, -0.33044102787971497, 1.1892786026000977, -0.3036443293094635, 0.012942963279783726, 0.08663396537303925]} +{"t": 14.7978, "q": [-0.3875824213027954, -0.01328938640654087, 0.011235800571739674, 0.6145638227462769, -0.2470397800207138, 0.012063305824995041, -0.35380926728248596, -0.008897088468074799, 0.008503853343427181, 0.6472716927528381, -0.33085229992866516, 0.01296682097017765, 0.005035352893173695, 0.0465492308139801, 0.038898564875125885, -0.06095176935195923, 0.10777413845062256, -0.30153509974479675, 1.377838373184204, -0.06937667727470398, -0.040470726788043976, 0.06931675970554352, 0.016334498301148415, -0.08285893499851227, -0.33044102787971497, 1.1892786026000977, -0.303572416305542, 0.012918994762003422, 0.0866459459066391]} +{"t": 14.8146, "q": [-0.3876335322856903, -0.01328938640654087, 0.011048314161598682, 0.6145126819610596, -0.24702708423137665, 0.011998668313026428, -0.3540819585323334, -0.008922655135393143, 0.008530637249350548, 0.647195041179657, -0.3309425711631775, 0.012967740185558796, 0.005075528286397457, 0.04661739617586136, 0.03883533924818039, -0.060807958245277405, 0.10776215046644211, -0.301595002412796, 1.3778983354568481, -0.06937667727470398, -0.04045874625444412, 0.06934072822332382, 0.016274577006697655, -0.08287091553211212, -0.33044102787971497, 1.189254641532898, -0.30358439683914185, 0.012954947538673878, 0.08663396537303925]} +{"t": 14.8313, "q": [-0.3876335322856903, -0.01328938640654087, 0.01099474634975195, 0.6144359707832336, -0.2470775544643402, 0.012027258053421974, -0.354295015335083, -0.00893969926983118, 0.008530637249350548, 0.6470671892166138, -0.33114129304885864, 0.013187777251005173, 0.005155880004167557, 0.046700671315193176, 0.03876224905252457, -0.06064017862081528, 0.1077142134308815, -0.30155906081199646, 1.3778862953186035, -0.06941263377666473, -0.04045874625444412, 0.06932874023914337, 0.016322514042258263, -0.08285893499851227, -0.3304530382156372, 1.1893025636672974, -0.3035484552383423, 0.012930979020893574, 0.08663396537303925]} +{"t": 14.8482, "q": [-0.3876846730709076, -0.01328938640654087, 0.01084743533283472, 0.6143167018890381, -0.24713212251663208, 0.011991140432655811, -0.35468703508377075, -0.00893969926983118, 0.008557421155273914, 0.6468115448951721, -0.3313889801502228, 0.01337922178208828, 0.00512909609824419, 0.046761102974414825, 0.03872281685471535, -0.06052033603191376, 0.1077142134308815, -0.301595002412796, 1.3778742551803589, -0.06938866525888443, -0.04045874625444412, 0.06932874023914337, 0.016334498301148415, -0.08285893499851227, -0.33044102787971497, 1.1892905235290527, -0.30356043577194214, 0.012930979020893574, 0.08663396537303925]} +{"t": 14.8649, "q": [-0.3876846730709076, -0.01328938640654087, 0.010673340409994125, 0.6141888499259949, -0.2471405267715454, 0.011991114355623722, -0.3557523190975189, -0.008956743404269218, 0.008530637249350548, 0.6464280486106873, -0.33161550760269165, 0.013490491546690464, 0.005115704145282507, 0.04684446379542351, 0.03864029794931412, -0.060436446219682693, 0.10765429586172104, -0.301595002412796, 1.3779102563858032, -0.06938866525888443, -0.04043477773666382, 0.06932874023914337, 0.01637045107781887, -0.08282297849655151, -0.3304050862789154, 1.1892786026000977, -0.303572416305542, 0.012930979020893574, 0.0866459459066391]} +{"t": 14.8817, "q": [-0.3876846730709076, -0.013263821601867676, 0.010485853999853134, 0.6139672994613647, -0.2471405267715454, 0.011991114355623722, -0.35638293623924255, -0.00893969926983118, 0.008423502556979656, 0.6458144187927246, -0.3316735327243805, 0.013563767075538635, 0.005008568987250328, 0.04693511128425598, 0.03858114778995514, -0.06036454066634178, 0.10760635882616043, -0.3015710413455963, 1.3778742551803589, -0.06936469674110413, -0.04048271104693413, 0.06932874023914337, 0.016406403854489326, -0.08283496648073196, -0.33044102787971497, 1.1892905235290527, -0.30360835790634155, 0.012918994762003422, 0.08663396537303925]} +{"t": 14.8987, "q": [-0.38765910267829895, -0.013263821601867676, 0.01025819219648838, 0.6136605143547058, -0.24718248844146729, 0.011947848834097385, -0.356911301612854, -0.008905611000955105, 0.008369934745132923, 0.6451241374015808, -0.33174049854278564, 0.013724342919886112, 0.0049817850813269615, 0.047018568962812424, 0.038489192724227905, -0.06036454066634178, 0.10757040232419968, -0.30158302187919617, 1.3778983354568481, -0.06942461431026459, -0.040470726788043976, 0.06931675970554352, 0.016442356631159782, -0.08282297849655151, -0.33046501874923706, 1.1892786026000977, -0.303572416305542, 0.01290701050311327, 0.08663396537303925]} +{"t": 14.9154, "q": [-0.38765910267829895, -0.013204166665673256, 0.009963570162653923, 0.6133451461791992, -0.24720777571201324, 0.012005279771983624, -0.35738855600357056, -0.008897088468074799, 0.008222623728215694, 0.6441611647605896, -0.3318233788013458, 0.013826913200318813, 0.004901433829218149, 0.04717765748500824, 0.038338515907526016, -0.060328591614961624, 0.10754643380641937, -0.3016069829463959, 1.3778862953186035, -0.06940064579248428, -0.040470726788043976, 0.06931675970554352, 0.016586167737841606, -0.08283496648073196, -0.33044102787971497, 1.1892905235290527, -0.30356043577194214, 0.01290701050311327, 0.08663396537303925]} +{"t": 14.9321, "q": [-0.3877358138561249, -0.01317007839679718, 0.009709124453365803, 0.6129786968231201, -0.2472371608018875, 0.011983630247414112, -0.35733741521835327, -0.008863000199198723, 0.00814227294176817, 0.6431299448013306, -0.33193615078926086, 0.014067909680306911, 0.0049817850813269615, 0.047248516231775284, 0.03800201788544655, -0.06012485921382904, 0.10751048475503922, -0.301595002412796, 1.3778742551803589, -0.06937667727470398, -0.04045874625444412, 0.06931675970554352, 0.016753947362303734, -0.08282297849655151, -0.3304290473461151, 1.1892905235290527, -0.303572416305542, 0.012954947538673878, 0.08663396537303925]} diff --git a/Data/G1/right_hand_up.jsonl b/Data/G1/right_hand_up.jsonl new file mode 100644 index 0000000..ee17d76 --- /dev/null +++ b/Data/G1/right_hand_up.jsonl @@ -0,0 +1,856 @@ +{"meta": {"hz": 60.0, "motors": 29}} +{"t": 0.0, "q": [-0.3053269386291504, -0.026899205520749092, 0.01881561428308487, 0.6142570376396179, -0.339988112449646, 0.011003127321600914, -0.3938291072845459, 0.017248760908842087, -0.01811923459172249, 0.5921677350997925, -0.25286534428596497, -0.01954677700996399, 0.0037631227169185877, 0.007306007668375969, -0.026742057874798775, 0.03540140017867088, 0.08780841529369354, -0.019726034253835678, 1.3622947931289673, 0.2963339388370514, -0.6078159213066101, 0.14951519668102264, -0.3255874216556549, -0.21766948699951172, 0.14871224761009216, 1.3822845220565796, -0.447407066822052, -0.36938977241516113, 0.15011440217494965]} +{"t": 0.0167, "q": [-0.3053269386291504, -0.02689068391919136, 0.0188022218644619, 0.6142570376396179, -0.3399840295314789, 0.011010418646037579, -0.3938376307487488, 0.0172658059746027, -0.01811923459172249, 0.5921677350997925, -0.25286534428596497, -0.01954677700996399, 0.003776514669880271, 0.0073059918358922005, -0.026722444221377373, 0.0351976677775383, 0.0878683403134346, -0.019450398162007332, 1.3626303672790527, 0.2961781322956085, -0.6077679991722107, 0.149227574467659, -0.325695276260376, -0.2175256758928299, 0.1480770856142044, 1.3822845220565796, -0.44691571593284607, -0.369401752948761, 0.1501263827085495]} +{"t": 0.0335, "q": [-0.3053269386291504, -0.026899205520749092, 0.01881561428308487, 0.6142655611038208, -0.3399758040904999, 0.011024999432265759, -0.3938120901584625, 0.017257284373044968, -0.01813262701034546, 0.5921592116355896, -0.2528611719608307, -0.019553976133465767, 0.0037497307639569044, 0.0073059918358922005, -0.026722444221377373, 0.035065844655036926, 0.08785635232925415, -0.019294602796435356, 1.362834095954895, 0.29609423875808716, -0.6077919602394104, 0.14909574389457703, -0.32577916979789734, -0.21738186478614807, 0.14787335693836212, 1.382272481918335, -0.4466760456562042, -0.369401752948761, 0.1501263827085495]} +{"t": 0.0502, "q": [-0.3053269386291504, -0.02689068391919136, 0.01881561428308487, 0.6142655611038208, -0.3399839997291565, 0.011024940758943558, -0.393820583820343, 0.017282849177718163, -0.01811923459172249, 0.5921592116355896, -0.2528443932533264, -0.01958279125392437, 0.0037497307639569044, 0.007298401091247797, -0.026727309450507164, 0.0349220335483551, 0.0878443717956543, -0.019042933359742165, 1.3630138635635376, 0.29604631662368774, -0.6077320575714111, 0.14886803925037384, -0.32589903473854065, -0.21721407771110535, 0.14760969579219818, 1.3822605609893799, -0.4464123845100403, -0.3693777918815613, 0.1501743197441101]} +{"t": 0.0669, "q": [-0.30533546209335327, -0.026916250586509705, 0.01882900483906269, 0.6142655611038208, -0.3399799168109894, 0.011017709039151669, -0.3938120901584625, 0.017282849177718163, -0.01811923459172249, 0.5921506881713867, -0.2528485655784607, -0.019575592130422592, 0.0037497307639569044, 0.007268007379025221, -0.026707546785473824, 0.03482615947723389, 0.0878443717956543, -0.01889912411570549, 1.3631336688995361, 0.2960343360900879, -0.6077200770378113, 0.14873622357845306, -0.3259349763393402, -0.2169743925333023, 0.14744192361831665, 1.3822605609893799, -0.44610080122947693, -0.3693658113479614, 0.15023425221443176]} +{"t": 0.0836, "q": [-0.3053269386291504, -0.026899205520749092, 0.01882900483906269, 0.6142570376396179, -0.3399758040904999, 0.011010476388037205, -0.3938120901584625, 0.0172658059746027, -0.018092451617121696, 0.5921506881713867, -0.25285276770591736, -0.019568374380469322, 0.0037497307639569044, 0.007260417100042105, -0.026712413877248764, 0.03471830114722252, 0.0878683403134346, -0.018695391714572906, 1.3632655143737793, 0.2960582971572876, -0.6077080965042114, 0.1486043930053711, -0.32599490880966187, -0.2166508287191391, 0.1470584273338318, 1.3822485208511353, -0.445837140083313, -0.3693658113479614, 0.1504499614238739]} +{"t": 0.1004, "q": [-0.3053269386291504, -0.026916250586509705, 0.01882900483906269, 0.6142655611038208, -0.3399799168109894, 0.011017709039151669, -0.3938120901584625, 0.017282849177718163, -0.01813262701034546, 0.5921677350997925, -0.2528485059738159, -0.019546786323189735, 0.0037631227169185877, 0.007260417100042105, -0.026712413877248764, 0.03468234837055206, 0.0878683403134346, -0.018551580607891083, 1.363409399986267, 0.2960582971572876, -0.6076961159706116, 0.14854447543621063, -0.3260068893432617, -0.2163032740354538, 0.14672286808490753, 1.3822845220565796, -0.4457053244113922, -0.3693658113479614, 0.15050987899303436]} +{"t": 0.1171, "q": [-0.3053269386291504, -0.026907728984951973, 0.01882900483906269, 0.6142570376396179, -0.3399799168109894, 0.011017709039151669, -0.39380356669425964, 0.017282849177718163, -0.01814601942896843, 0.5921506881713867, -0.2528443932533264, -0.01958279125392437, 0.003776514669880271, 0.007252802606672049, -0.026687858626246452, 0.03453853726387024, 0.08785635232925415, -0.01840776950120926, 1.36356520652771, 0.29604631662368774, -0.6076841354370117, 0.14844860136508942, -0.3260188698768616, -0.2159797102212906, 0.1466030329465866, 1.3822845220565796, -0.44571730494499207, -0.3693538308143616, 0.15050987899303436]} +{"t": 0.1339, "q": [-0.30533546209335327, -0.026907728984951973, 0.01882900483906269, 0.6142570376396179, -0.3399799168109894, 0.011017709039151669, -0.39380356669425964, 0.0172658059746027, -0.01814601942896843, 0.5921592116355896, -0.2528485059738159, -0.019546786323189735, 0.0037631227169185877, 0.007252802606672049, -0.026687858626246452, 0.03449060022830963, 0.08791627734899521, -0.0183478482067585, 1.3635891675949097, 0.2960582971572876, -0.6076481342315674, 0.14836470782756805, -0.32599490880966187, -0.21566811203956604, 0.1466030329465866, 1.382272481918335, -0.4457292854785919, -0.3693418502807617, 0.15050987899303436]} +{"t": 0.1506, "q": [-0.30533546209335327, -0.026916250586509705, 0.01882900483906269, 0.6142570376396179, -0.3399758040904999, 0.011024999432265759, -0.393820583820343, 0.0172658059746027, -0.01813262701034546, 0.5921592116355896, -0.252856969833374, -0.019561175256967545, 0.003776514669880271, 0.007252810522913933, -0.026697665452957153, 0.034454647451639175, 0.08792825788259506, -0.018371816724538803, 1.3636969327926636, 0.2960582971572876, -0.6076481342315674, 0.14829280972480774, -0.32599490880966187, -0.21539248526096344, 0.1466030329465866, 1.382272481918335, -0.4457772374153137, -0.3693658113479614, 0.1504978984594345]} +{"t": 0.1673, "q": [-0.30534398555755615, -0.026916250586509705, 0.01882900483906269, 0.6142655611038208, -0.3399799168109894, 0.011017709039151669, -0.393820583820343, 0.01727432757616043, -0.018105842173099518, 0.592133641242981, -0.25285688042640686, -0.01953238807618618, 0.0037631227169185877, 0.007237621583044529, -0.026697590947151184, 0.034382741898298264, 0.08794024586677551, -0.018371816724538803, 1.3637808561325073, 0.29609423875808716, -0.6076121926307678, 0.14823287725448608, -0.32597091794013977, -0.215200737118721, 0.14659103751182556, 1.3822964429855347, -0.4457772374153137, -0.3693658113479614, 0.15050987899303436]} +{"t": 0.184, "q": [-0.30535250902175903, -0.026916250586509705, 0.01881561428308487, 0.6142655611038208, -0.3399799168109894, 0.011003185994923115, -0.39380356669425964, 0.0172658059746027, -0.01811923459172249, 0.592133641242981, -0.25285688042640686, -0.01953238807618618, 0.0037631227169185877, 0.007245204411447048, -0.026682918891310692, 0.034334804862737656, 0.08794024586677551, -0.0183478482067585, 1.3638527393341064, 0.2961302101612091, -0.607600212097168, 0.14816097915172577, -0.3259828984737396, -0.2150808870792389, 0.14656707644462585, 1.3822845220565796, -0.4457292854785919, -0.3693418502807617, 0.15050987899303436]} +{"t": 0.2008, "q": [-0.30534398555755615, -0.026924772188067436, 0.01882900483906269, 0.6142655611038208, -0.3399839997291565, 0.011024940758943558, -0.393820583820343, 0.0172658059746027, -0.01811923459172249, 0.5921677350997925, -0.25285688042640686, -0.01953238807618618, 0.0037631227169185877, 0.007245204411447048, -0.026682918891310692, 0.03428686782717705, 0.08800016343593597, -0.018323879688978195, 1.3639485836029053, 0.2961062490940094, -0.6076121926307678, 0.1481010615825653, -0.3259828984737396, -0.21498501300811768, 0.14656707644462585, 1.3822964429855347, -0.44576525688171387, -0.3693298399448395, 0.1505218744277954]} +{"t": 0.2175, "q": [-0.30534398555755615, -0.026916250586509705, 0.01882900483906269, 0.6142655611038208, -0.3399840295314789, 0.011010418646037579, -0.3938120901584625, 0.0172658059746027, -0.01813262701034546, 0.5921592116355896, -0.2528359293937683, -0.01956840045750141, 0.0037229470908641815, 0.007222408894449472, -0.026668095961213112, 0.03425091505050659, 0.08803611993789673, -0.018323879688978195, 1.364020586013794, 0.2960582971572876, -0.6075762510299683, 0.14794525504112244, -0.32599490880966187, -0.21486517786979675, 0.14656707644462585, 1.3822964429855347, -0.4457412660121918, -0.3693178594112396, 0.1504978984594345]} +{"t": 0.2342, "q": [-0.30533546209335327, -0.026924772188067436, 0.01882900483906269, 0.6142570376396179, -0.339988112449646, 0.011003127321600914, -0.39380356669425964, 0.0172658059746027, -0.018105842173099518, 0.5921421647071838, -0.25285688042640686, -0.01953238807618618, 0.0037229470908641815, 0.0072376057505607605, -0.026677977293729782, 0.03425091505050659, 0.08806008845567703, -0.018323879688978195, 1.3640685081481934, 0.2960582971572876, -0.6075882315635681, 0.14787335693836212, -0.3259828984737396, -0.2147812843322754, 0.146555095911026, 1.3823084831237793, -0.4457292854785919, -0.3693178594112396, 0.15050987899303436]} +{"t": 0.2509, "q": [-0.30533546209335327, -0.026899205520749092, 0.01882900483906269, 0.6142399907112122, -0.3399799168109894, 0.011017709039151669, -0.3938120901584625, 0.017257284373044968, -0.01813262701034546, 0.5921421647071838, -0.2528527081012726, -0.019539587199687958, 0.003696163184940815, 0.007207212038338184, -0.02665821462869644, 0.034202978014945984, 0.08807206898927689, -0.01829991117119789, 1.364092469215393, 0.29609423875808716, -0.6075882315635681, 0.14781343936920166, -0.32599490880966187, -0.21464945375919342, 0.1465311199426651, 1.3823084831237793, -0.44571730494499207, -0.3693418502807617, 0.1504978984594345]} +{"t": 0.2677, "q": [-0.30533546209335327, -0.026907728984951973, 0.01881561428308487, 0.6142570376396179, -0.3399799168109894, 0.011017709039151669, -0.3938120901584625, 0.0172658059746027, -0.01813262701034546, 0.5921251177787781, -0.2528485059738159, -0.019546786323189735, 0.0036827712319791317, 0.0071996296755969524, -0.026672888547182083, 0.03413107246160507, 0.08808405697345734, -0.01829991117119789, 1.3641403913497925, 0.29611822962760925, -0.6075882315635681, 0.14775350689888, -0.32599490880966187, -0.21456557512283325, 0.14649516344070435, 1.3823084831237793, -0.44571730494499207, -0.3693178594112396, 0.1504978984594345]} +{"t": 0.2846, "q": [-0.30533546209335327, -0.026899205520749092, 0.01882900483906269, 0.6142399907112122, -0.3399840295314789, 0.011010418646037579, -0.39380356669425964, 0.0172658059746027, -0.01815940998494625, 0.5921506881713867, -0.252856969833374, -0.019561175256967545, 0.0037095551379024982, 0.007192031014710665, -0.026667946949601173, 0.03407115116715431, 0.08810802549123764, -0.01828792691230774, 1.3642961978912354, 0.2961062490940094, -0.6075882315635681, 0.1476576328277588, -0.3259828984737396, -0.21446970105171204, 0.14645922183990479, 1.3823084831237793, -0.4457292854785919, -0.3693178594112396, 0.1504978984594345]} +{"t": 0.3013, "q": [-0.3053269386291504, -0.026899205520749092, 0.01882900483906269, 0.6142399907112122, -0.3399758040904999, 0.011010476388037205, -0.39380356669425964, 0.017291372641921043, -0.01815940998494625, 0.5921506881713867, -0.252856969833374, -0.019561175256967545, 0.0036827712319791317, 0.007192031014710665, -0.026667946949601173, 0.03405916690826416, 0.0881200060248375, -0.01828792691230774, 1.364380121231079, 0.29614219069480896, -0.607600212097168, 0.14759771525859833, -0.3259589374065399, -0.21434985101222992, 0.14641128480434418, 1.3823204040527344, -0.4457532465457916, -0.3693178594112396, 0.15048591792583466]} +{"t": 0.318, "q": [-0.30533546209335327, -0.02689068391919136, 0.018788829445838928, 0.6142314672470093, -0.3399799168109894, 0.011003185994923115, -0.3938291072845459, 0.0172658059746027, -0.01814601942896843, 0.5921592116355896, -0.2528443932533264, -0.01958279125392437, 0.003655987558886409, 0.007184432819485664, -0.026663007214665413, 0.034023214131593704, 0.08831175416707993, -0.01823999173939228, 1.3643920421600342, 0.2959624230861664, -0.6076361536979675, 0.14729811251163483, -0.3259589374065399, -0.21419405937194824, 0.14639928936958313, 1.3823204040527344, -0.4457292854785919, -0.3693298399448395, 0.1504020243883133]} +{"t": 0.3349, "q": [-0.30533546209335327, -0.02689068391919136, 0.018788829445838928, 0.6142399907112122, -0.3399758040904999, 0.011010476388037205, -0.3938120901584625, 0.017282849177718163, -0.01817280240356922, 0.5921421647071838, -0.2528527081012726, -0.019539587199687958, 0.0036425956059247255, 0.007184416987001896, -0.02664339356124401, 0.034023214131593704, 0.08839564770460129, -0.01823999173939228, 1.3643920421600342, 0.29595044255256653, -0.6076481342315674, 0.14723819494247437, -0.32597091794013977, -0.21399033069610596, 0.14633937180042267, 1.3823084831237793, -0.4457772374153137, -0.3693298399448395, 0.15035408735275269]} +{"t": 0.3516, "q": [-0.30533546209335327, -0.02689068391919136, 0.0188022218644619, 0.6142144203186035, -0.3399840295314789, 0.011010418646037579, -0.39380356669425964, 0.017291372641921043, -0.01815940998494625, 0.5921421647071838, -0.2528485059738159, -0.019546786323189735, 0.0036425956059247255, 0.0071464404463768005, -0.026638302952051163, 0.03401122987270355, 0.08875517547130585, -0.01823999173939228, 1.364380121231079, 0.29595044255256653, -0.6077080965042114, 0.14696255326271057, -0.3259589374065399, -0.21375064551830292, 0.14638730883598328, 1.3823084831237793, -0.4458611011505127, -0.3693298399448395, 0.15028218924999237]} +{"t": 0.3684, "q": [-0.30535250902175903, -0.02688216231763363, 0.018762046471238136, 0.6142144203186035, -0.339988112449646, 0.011003127321600914, -0.393820583820343, 0.017291372641921043, -0.01815940998494625, 0.5921421647071838, -0.25286954641342163, -0.01953957788646221, 0.0036024199798703194, 0.0071312435902655125, -0.026628421619534492, 0.03401122987270355, 0.08899485319852829, -0.018216023221611977, 1.3643561601638794, 0.2959624230861664, -0.6077320575714111, 0.14681874215602875, -0.32597091794013977, -0.21348698437213898, 0.14643524587154388, 1.3823084831237793, -0.4458611011505127, -0.3693538308143616, 0.15024623274803162]} +{"t": 0.3851, "q": [-0.30533546209335327, -0.02689068391919136, 0.0188022218644619, 0.6142144203186035, -0.339988112449646, 0.011003127321600914, -0.3938120901584625, 0.01727432757616043, -0.01815940998494625, 0.5921251177787781, -0.25286534428596497, -0.01954677700996399, 0.003589028026908636, 0.0071388422511518, -0.026633363217115402, 0.03404718264937401, 0.08955811709165573, -0.018072212114930153, 1.3643561601638794, 0.2959264814853668, -0.6078039407730103, 0.14656707644462585, -0.32597091794013977, -0.21318738162517548, 0.14642326533794403, 1.3823084831237793, -0.4458611011505127, -0.3693418502807617, 0.15016233921051025]} +{"t": 0.4018, "q": [-0.30533546209335327, -0.02689068391919136, 0.01881561428308487, 0.6142058968544006, -0.339988112449646, 0.011003127321600914, -0.393820583820343, 0.017282849177718163, -0.01815940998494625, 0.5921080708503723, -0.25286534428596497, -0.01954677700996399, 0.0036024199798703194, 0.007123645395040512, -0.026623481884598732, 0.03405916690826416, 0.09048090130090714, -0.017892448231577873, 1.3643561601638794, 0.2959024906158447, -0.6078398823738098, 0.14636334776878357, -0.3259589374065399, -0.21293571591377258, 0.14642326533794403, 1.3823204040527344, -0.44587311148643494, -0.3693538308143616, 0.15006646513938904]} +{"t": 0.4187, "q": [-0.30533546209335327, -0.02689068391919136, 0.01881561428308487, 0.6142058968544006, -0.3399799168109894, 0.011003185994923115, -0.3938376307487488, 0.01727432757616043, -0.01814601942896843, 0.5920910239219666, -0.25286954641342163, -0.01953957788646221, 0.0036158119328320026, 0.007116048596799374, -0.026618558913469315, 0.03410710394382477, 0.09169130772352219, -0.01756887510418892, 1.3643441200256348, 0.2958545684814453, -0.6079477667808533, 0.14612366259098053, -0.3259349763393402, -0.21261213719844818, 0.146555095911026, 1.3823084831237793, -0.44592103362083435, -0.3693538308143616, 0.14994663000106812]} +{"t": 0.4354, "q": [-0.30535250902175903, -0.02689068391919136, 0.018775437027215958, 0.6141973733901978, -0.3399922251701355, 0.011010359972715378, -0.3938376307487488, 0.0172658059746027, -0.01814601942896843, 0.5920739769935608, -0.2528737187385559, -0.019532378762960434, 0.003589028026908636, 0.007116048596799374, -0.026618558913469315, 0.03411908820271492, 0.09321330487728119, -0.017317205667495728, 1.3643561601638794, 0.29581862688064575, -0.608055591583252, 0.1458839774131775, -0.3259349763393402, -0.2123604714870453, 0.146555095911026, 1.3823084831237793, -0.4459330141544342, -0.3693658113479614, 0.14970694482326508]} +{"t": 0.4521, "q": [-0.30534398555755615, -0.026899205520749092, 0.0188022218644619, 0.6142058968544006, -0.339988112449646, 0.011017650365829468, -0.3938376307487488, 0.017291372641921043, -0.01811923459172249, 0.5920739769935608, -0.25286954641342163, -0.01953957788646221, 0.0036292036529630423, 0.007116048596799374, -0.026618558913469315, 0.03410710394382477, 0.09413608908653259, -0.017113473266363144, 1.3643320798873901, 0.29569876194000244, -0.608115553855896, 0.14566825330257416, -0.32589903473854065, -0.21197697520256042, 0.14665096998214722, 1.3823084831237793, -0.4460049271583557, -0.3693658113479614, 0.14944328367710114]} +{"t": 0.4689, "q": [-0.30535250902175903, -0.02689068391919136, 0.018775437027215958, 0.6142229437828064, -0.3399799168109894, 0.011017709039151669, -0.393820583820343, 0.01727432757616043, -0.01814601942896843, 0.5920995473861694, -0.2528611719608307, -0.019553976133465767, 0.003589028026908636, 0.007093264255672693, -0.02661358006298542, 0.03425091505050659, 0.09456752240657806, -0.016825852915644646, 1.3643441200256348, 0.2954351305961609, -0.6082353591918945, 0.14524881541728973, -0.3259110152721405, -0.21154554188251495, 0.14669890701770782, 1.3823204040527344, -0.4461367428302765, -0.3693658113479614, 0.14878416061401367]} +{"t": 0.4856, "q": [-0.3053610324859619, -0.02689068391919136, 0.0188022218644619, 0.6142314672470093, -0.3399758040904999, 0.011010476388037205, -0.3938120901584625, 0.0172658059746027, -0.01815940998494625, 0.5920995473861694, -0.25285694003105164, -0.01954677328467369, 0.003575636073946953, 0.007002115715295076, -0.026574090123176575, 0.034262899309396744, 0.09492705017328262, -0.01647830940783024, 1.3643561601638794, 0.2950875759124756, -0.6082713603973389, 0.14488928020000458, -0.32589903473854065, -0.2109583169221878, 0.14695057272911072, 1.382332444190979, -0.44617271423339844, -0.3693658113479614, 0.1481010615825653]} +{"t": 0.5024, "q": [-0.3053610324859619, -0.026899205520749092, 0.018775437027215958, 0.6141973733901978, -0.3399840295314789, 0.011010418646037579, -0.393820583820343, 0.017282849177718163, -0.01815940998494625, 0.5920825004577637, -0.2528611719608307, -0.019553976133465767, 0.00354885240085423, 0.006941341329365969, -0.026534711942076683, 0.03434678912162781, 0.09519070386886597, -0.016082830727100372, 1.3643441200256348, 0.29502764344215393, -0.6083192825317383, 0.14454174041748047, -0.32589903473854065, -0.2102632373571396, 0.1470824033021927, 1.3823084831237793, -0.44619667530059814, -0.3693777918815613, 0.1473580300807953]} +{"t": 0.5193, "q": [-0.3053610324859619, -0.02689068391919136, 0.0188022218644619, 0.6142314672470093, -0.3399799168109894, 0.011017709039151669, -0.3938120901584625, 0.01727432757616043, -0.01815940998494625, 0.5920825004577637, -0.252856969833374, -0.019561175256967545, 0.003575636073946953, 0.006903363857418299, -0.026519890874624252, 0.034382741898298264, 0.0954064205288887, -0.015795208513736725, 1.3643920421600342, 0.2948838472366333, -0.6083552241325378, 0.14414626359939575, -0.32589903473854065, -0.20949624478816986, 0.1474059671163559, 1.3823084831237793, -0.44624459743499756, -0.36938977241516113, 0.14656707644462585]} +{"t": 0.536, "q": [-0.3053610324859619, -0.02689068391919136, 0.018788829445838928, 0.6142314672470093, -0.33997172117233276, 0.01101776771247387, -0.3938291072845459, 0.017291372641921043, -0.01813262701034546, 0.5920910239219666, -0.25285276770591736, -0.019568374380469322, 0.00354885240085423, 0.006865373812615871, -0.026485489681363106, 0.03441869467496872, 0.09553824365139008, -0.015423697419464588, 1.3643920421600342, 0.29459622502326965, -0.6083672046661377, 0.1437867283821106, -0.32585108280181885, -0.20871727168560028, 0.14766962826251984, 1.3823204040527344, -0.44631651043891907, -0.3693777918815613, 0.14551246166229248]} +{"t": 0.5528, "q": [-0.30535250902175903, -0.026899205520749092, 0.01882900483906269, 0.6142058968544006, -0.3399758040904999, 0.011010476388037205, -0.393820583820343, 0.01727432757616043, -0.01813262701034546, 0.5920825004577637, -0.25285276770591736, -0.019568374380469322, 0.0035220684949308634, 0.006865373812615871, -0.026485489681363106, 0.03450258448719978, 0.09563411772251129, -0.01510012336075306, 1.3644280433654785, 0.29452431201934814, -0.6083672046661377, 0.143511101603508, -0.3258630633354187, -0.20769861340522766, 0.1478014439344406, 1.3822964429855347, -0.4463404715061188, -0.3693658113479614, 0.14434999227523804]} +{"t": 0.5696, "q": [-0.30534398555755615, -0.026907728984951973, 0.018788829445838928, 0.6142399907112122, -0.3399758040904999, 0.011010476388037205, -0.39380356669425964, 0.017291372641921043, -0.01815940998494625, 0.5920995473861694, -0.252856969833374, -0.019561175256967545, 0.00354885240085423, 0.006842595990747213, -0.02649030089378357, 0.03453853726387024, 0.09575396031141281, -0.014860439114272594, 1.3645238876342773, 0.2944164574146271, -0.6083672046661377, 0.1432114988565445, -0.32585108280181885, -0.2064882069826126, 0.1480051875114441, 1.3823084831237793, -0.446352481842041, -0.3693658113479614, 0.14287593960762024]} +{"t": 0.5863, "q": [-0.30534398555755615, -0.026899205520749092, 0.01882900483906269, 0.6142144203186035, -0.3399799168109894, 0.011017709039151669, -0.3938120901584625, 0.017291372641921043, -0.01814601942896843, 0.5920825004577637, -0.25285276770591736, -0.019568374380469322, 0.0035220684949308634, 0.006842589937150478, -0.02648051269352436, 0.034598458558321, 0.09582586586475372, -0.014632739126682281, 1.3645718097686768, 0.2944404184818268, -0.6083791851997375, 0.14304371178150177, -0.32587504386901855, -0.20522986352443695, 0.14819693565368652, 1.3823204040527344, -0.446352481842041, -0.3693658113479614, 0.1416894942522049]} +{"t": 0.6031, "q": [-0.3053269386291504, -0.02688216231763363, 0.01882900483906269, 0.6142144203186035, -0.3399758040904999, 0.011024999432265759, -0.3938120901584625, 0.017291372641921043, -0.01814601942896843, 0.5921080708503723, -0.2528485059738159, -0.019546786323189735, 0.003441717242822051, 0.006834986619651318, -0.026465801522135735, 0.0346224270761013, 0.09592173993587494, -0.014429006725549698, 1.3646197319030762, 0.29447638988494873, -0.6083672046661377, 0.14281600713729858, -0.32582712173461914, -0.20368389785289764, 0.14826883375644684, 1.3823204040527344, -0.446352481842041, -0.3693658113479614, 0.1408146470785141]} +{"t": 0.6198, "q": [-0.3053269386291504, -0.02689068391919136, 0.01882900483906269, 0.6142144203186035, -0.3399758040904999, 0.011010476388037205, -0.3938120901584625, 0.017291372641921043, -0.01815940998494625, 0.5920995473861694, -0.2528485655784607, -0.019575592130422592, 0.003441717242822051, 0.006819793023169041, -0.02645595744252205, 0.034574490040540695, 0.09596967697143555, -0.014333133585751057, 1.3646916151046753, 0.29450035095214844, -0.6083552241325378, 0.1425643414258957, -0.3258151412010193, -0.20223380625247955, 0.1483287513256073, 1.3822964429855347, -0.446352481842041, -0.3693658113479614, 0.1402394026517868]} +{"t": 0.6366, "q": [-0.30535250902175903, -0.026899205520749092, 0.01882900483906269, 0.6142144203186035, -0.3399799168109894, 0.011017709039151669, -0.39380356669425964, 0.017291372641921043, -0.018105842173099518, 0.5920910239219666, -0.2528359293937683, -0.01956840045750141, 0.003441717242822051, 0.0068122087977826595, -0.026470612734556198, 0.03455052152276039, 0.09601761400699615, -0.014225275255739689, 1.36470365524292, 0.29447638988494873, -0.6083552241325378, 0.1422886997461319, -0.3257911503314972, -0.2009994238615036, 0.1483766883611679, 1.3823204040527344, -0.4463764429092407, -0.3693658113479614, 0.13990384340286255]} +{"t": 0.6534, "q": [-0.30533546209335327, -0.02689068391919136, 0.01881561428308487, 0.6142229437828064, -0.3399758040904999, 0.011010476388037205, -0.3938120901584625, 0.017291372641921043, -0.01813262701034546, 0.5920995473861694, -0.25285276770591736, -0.019568374380469322, 0.0035220684949308634, 0.006827389821410179, -0.026460878551006317, 0.03449060022830963, 0.09605356305837631, -0.014189322479069233, 1.364715576171875, 0.2944404184818268, -0.608343243598938, 0.14202505350112915, -0.3258151412010193, -0.20004068315029144, 0.14846058189868927, 1.3823204040527344, -0.44640040397644043, -0.3693777918815613, 0.13970011472702026]} +{"t": 0.6704, "q": [-0.3053269386291504, -0.026899205520749092, 0.01882900483906269, 0.6142229437828064, -0.3399799168109894, 0.011017709039151669, -0.39380356669425964, 0.017291372641921043, -0.01811923459172249, 0.5921080708503723, -0.252840131521225, -0.019561201333999634, 0.0035220684949308634, 0.0068122027441859245, -0.02646082267165184, 0.03444266319274902, 0.09607753157615662, -0.01408146508038044, 1.36470365524292, 0.2944644093513489, -0.608343243598938, 0.1417614072561264, -0.3257911503314972, -0.19935758411884308, 0.14854447543621063, 1.3823204040527344, -0.4463764429092407, -0.3693658113479614, 0.13955630362033844]} +{"t": 0.6871, "q": [-0.30533546209335327, -0.026899205520749092, 0.01882900483906269, 0.6142144203186035, -0.3399799168109894, 0.011003185994923115, -0.39380356669425964, 0.01727432757616043, -0.01814601942896843, 0.5920910239219666, -0.2528485059738159, -0.019546786323189735, 0.0035354604478925467, 0.006819805596023798, -0.026475533843040466, 0.03437075763940811, 0.09610150009393692, -0.014045512303709984, 1.36470365524292, 0.29447638988494873, -0.608343243598938, 0.14150972664356232, -0.32580316066741943, -0.1989021897315979, 0.14849653840065002, 1.3823204040527344, -0.4463884234428406, -0.36938977241516113, 0.13944844901561737]} +{"t": 0.7039, "q": [-0.30534398555755615, -0.026899205520749092, 0.01882900483906269, 0.6142229437828064, -0.3399799168109894, 0.011017709039151669, -0.39380356669425964, 0.0172658059746027, -0.01813262701034546, 0.5920995473861694, -0.2528527081012726, -0.019539587199687958, 0.003562244353815913, 0.0068122087977826595, -0.026470612734556198, 0.034322820603847504, 0.09611348807811737, -0.01396162249147892, 1.364775538444519, 0.2944644093513489, -0.6083312630653381, 0.14125806093215942, -0.325839102268219, -0.19863852858543396, 0.14850851893424988, 1.3823084831237793, -0.44640040397644043, -0.3693658113479614, 0.13943645358085632]} +{"t": 0.7207, "q": [-0.30535250902175903, -0.026899205520749092, 0.0188022218644619, 0.6142144203186035, -0.3399758040904999, 0.011010476388037205, -0.39380356669425964, 0.0172658059746027, -0.018105842173099518, 0.5920739769935608, -0.252856969833374, -0.019561175256967545, 0.00354885240085423, 0.006804612465202808, -0.02646568976342678, 0.03422694653272629, 0.09612546861171722, -0.013817811384797096, 1.3647875785827637, 0.2944883704185486, -0.6083312630653381, 0.14107829332351685, -0.325839102268219, -0.19850671291351318, 0.14841264486312866, 1.3823204040527344, -0.4463884234428406, -0.3693777918815613, 0.13940051198005676]} +{"t": 0.7377, "q": [-0.3053610324859619, -0.026907728984951973, 0.01882900483906269, 0.6142058968544006, -0.3399799168109894, 0.011003185994923115, -0.39380356669425964, 0.0172658059746027, -0.01811923459172249, 0.5920825004577637, -0.2528527081012726, -0.019539587199687958, 0.0036024199798703194, 0.0068122087977826595, -0.026470612734556198, 0.034214962273836136, 0.09618539363145828, -0.013614079914987087, 1.3647994995117188, 0.29447638988494873, -0.6083312630653381, 0.14089854061603546, -0.325839102268219, -0.19848273694515228, 0.14842462539672852, 1.3822964429855347, -0.4463884234428406, -0.36938977241516113, 0.13937653601169586]} +{"t": 0.7544, "q": [-0.3053610324859619, -0.026899205520749092, 0.01881561428308487, 0.6142058968544006, -0.3399840295314789, 0.011010418646037579, -0.39380356669425964, 0.0172658059746027, -0.01815940998494625, 0.5920654535293579, -0.25285688042640686, -0.01953238807618618, 0.00354885240085423, 0.0067894188687205315, -0.026455845683813095, 0.034155040979385376, 0.09624531120061874, -0.01336241140961647, 1.3648713827133179, 0.2944883704185486, -0.608343243598938, 0.14061091840267181, -0.325839102268219, -0.19847075641155243, 0.14843662083148956, 1.3823084831237793, -0.4463884234428406, -0.36938977241516113, 0.139364555478096]} +{"t": 0.7712, "q": [-0.3053610324859619, -0.026916250586509705, 0.01881561428308487, 0.6142229437828064, -0.339988112449646, 0.011003127321600914, -0.39380356669425964, 0.0172658059746027, -0.01811923459172249, 0.592056930065155, -0.25286534428596497, -0.01954677700996399, 0.0035220684949308634, 0.006781822070479393, -0.026450922712683678, 0.034083135426044464, 0.09634118527173996, -0.013170663267374039, 1.3649194240570068, 0.29450035095214844, -0.6083312630653381, 0.14013154804706573, -0.325839102268219, -0.19844678044319153, 0.14841264486312866, 1.3823084831237793, -0.44642436504364014, -0.3693658113479614, 0.13935257494449615]} +{"t": 0.7882, "q": [-0.3053610324859619, -0.026924772188067436, 0.01882900483906269, 0.6142058968544006, -0.33997172117233276, 0.01101776771247387, -0.39380356669425964, 0.0172658059746027, -0.01814601942896843, 0.592056930065155, -0.2528611719608307, -0.019553976133465767, 0.003562244353815913, 0.0067514474503695965, -0.026450810953974724, 0.033963292837142944, 0.09642507880926132, -0.01296693179756403, 1.364991307258606, 0.29450035095214844, -0.6083192825317383, 0.13930463790893555, -0.32585108280181885, -0.19842281937599182, 0.14838868379592896, 1.3823084831237793, -0.44642436504364014, -0.36938977241516113, 0.13935257494449615]} +{"t": 0.8051, "q": [-0.30535250902175903, -0.026907728984951973, 0.01881561428308487, 0.6141888499259949, -0.3399799168109894, 0.011017709039151669, -0.3938120901584625, 0.017291372641921043, -0.018092451617121696, 0.592056930065155, -0.25285276770591736, -0.019568374380469322, 0.00354885240085423, 0.006721047684550285, -0.026411544531583786, 0.03387940302491188, 0.09654492139816284, -0.012835104949772358, 1.3650511503219604, 0.29450035095214844, -0.6083192825317383, 0.1381901055574417, -0.3258630633354187, -0.1983748823404312, 0.14838868379592896, 1.3822964429855347, -0.4464123845100403, -0.3693777918815613, 0.1393405795097351]} +{"t": 0.8219, "q": [-0.30535250902175903, -0.026899205520749092, 0.0188022218644619, 0.6141888499259949, -0.3399840295314789, 0.011010418646037579, -0.39380356669425964, 0.017291372641921043, -0.01813262701034546, 0.5920654535293579, -0.2528485059738159, -0.019546786323189735, 0.003575636073946953, 0.0066982596181333065, -0.026396779343485832, 0.03378353267908096, 0.0966048389673233, -0.012643357738852501, 1.3650751113891602, 0.29452431201934814, -0.6083312630653381, 0.1369677037000656, -0.32587504386901855, -0.19833892583847046, 0.14838868379592896, 1.3823204040527344, -0.4464123845100403, -0.3693777918815613, 0.13935257494449615]} +{"t": 0.8386, "q": [-0.30535250902175903, -0.02689068391919136, 0.01881561428308487, 0.6141888499259949, -0.3399758040904999, 0.011010476388037205, -0.3938120901584625, 0.017291372641921043, -0.01814601942896843, 0.5920739769935608, -0.2528485059738159, -0.019546786323189735, 0.0035220684949308634, 0.00669066933915019, -0.026401646435260773, 0.03368765860795975, 0.09667674452066422, -0.012415657751262188, 1.365159034729004, 0.29450035095214844, -0.6083312630653381, 0.13575729727745056, -0.3258630633354187, -0.19821909070014954, 0.1484006643295288, 1.3823084831237793, -0.44644835591316223, -0.3693658113479614, 0.13935257494449615]} +{"t": 0.8555, "q": [-0.3053610324859619, -0.026873638853430748, 0.0188022218644619, 0.614180326461792, -0.3399840295314789, 0.011010418646037579, -0.39379504323005676, 0.017291372641921043, -0.01815940998494625, 0.5920398831367493, -0.25285688042640686, -0.01953238807618618, 0.0035354604478925467, 0.0066602760925889015, -0.026372168213129044, 0.033555831760168076, 0.09670071303844452, -0.012140019796788692, 1.3652669191360474, 0.29450035095214844, -0.6083192825317383, 0.13503825664520264, -0.32585108280181885, -0.19813519716262817, 0.14848455786705017, 1.3823204040527344, -0.4464603364467621, -0.3693658113479614, 0.13935257494449615]} +{"t": 0.8723, "q": [-0.30535250902175903, -0.02689068391919136, 0.0188022218644619, 0.6141547560691833, -0.3399799168109894, 0.011003185994923115, -0.3938120901584625, 0.017308415845036507, -0.01811923459172249, 0.5920228362083435, -0.252856969833374, -0.019561175256967545, 0.0035220684949308634, 0.0066602760925889015, -0.026372168213129044, 0.033424004912376404, 0.09668873250484467, -0.011924304068088531, 1.3653748035430908, 0.29447638988494873, -0.6083073019981384, 0.13476261496543884, -0.32587504386901855, -0.1980273425579071, 0.14848455786705017, 1.3823204040527344, -0.44644835591316223, -0.3693777918815613, 0.13935257494449615]} +{"t": 0.889, "q": [-0.30535250902175903, -0.02689068391919136, 0.018788829445838928, 0.6141377091407776, -0.339988112449646, 0.011003127321600914, -0.393820583820343, 0.017291372641921043, -0.01815940998494625, 0.5920313596725464, -0.2528611719608307, -0.019553976133465767, 0.0035086767747998238, 0.00668305391445756, -0.02636735886335373, 0.03332813084125519, 0.09668873250484467, -0.01170858833938837, 1.3654227256774902, 0.29452431201934814, -0.6083312630653381, 0.13460682332515717, -0.32587504386901855, -0.19784757494926453, 0.14848455786705017, 1.3823444843292236, -0.4464603364467621, -0.3693658113479614, 0.13935257494449615]} +{"t": 0.9062, "q": [-0.30535250902175903, -0.026873638853430748, 0.018788829445838928, 0.6141547560691833, -0.339988112449646, 0.011003127321600914, -0.393820583820343, 0.017308415845036507, -0.01814601942896843, 0.5920057892799377, -0.25286534428596497, -0.01954677700996399, 0.0035086767747998238, 0.006652679294347763, -0.026367247104644775, 0.03314836695790291, 0.09667674452066422, -0.011468903161585331, 1.3655664920806885, 0.29454827308654785, -0.6083312630653381, 0.1344989538192749, -0.32587504386901855, -0.19761987030506134, 0.14848455786705017, 1.3823084831237793, -0.44643634557724, -0.36938977241516113, 0.1393405795097351]} +{"t": 0.9229, "q": [-0.30533546209335327, -0.026873638853430748, 0.018775437027215958, 0.6141632795333862, -0.3399799168109894, 0.011003185994923115, -0.3938120901584625, 0.017299894243478775, -0.01815940998494625, 0.5920143127441406, -0.25286534428596497, -0.01954677700996399, 0.0035354604478925467, 0.006652679294347763, -0.026367247104644775, 0.03299257159233093, 0.09667674452066422, -0.011073424480855465, 1.3655904531478882, 0.294536292552948, -0.6083312630653381, 0.13437911868095398, -0.3258870244026184, -0.1973562240600586, 0.14848455786705017, 1.3823084831237793, -0.44643634557724, -0.3693777918815613, 0.13935257494449615]} +{"t": 0.9397, "q": [-0.30534398555755615, -0.026865117251873016, 0.018788829445838928, 0.6141462326049805, -0.3399840295314789, 0.011010418646037579, -0.393820583820343, 0.017308415845036507, -0.01813262701034546, 0.5920057892799377, -0.25286534428596497, -0.01954677700996399, 0.0035354604478925467, 0.0066602760925889015, -0.026372168213129044, 0.0328008234500885, 0.09661682695150375, -0.010618023574352264, 1.365746259689331, 0.29462018609046936, -0.6083312630653381, 0.13434316217899323, -0.3258870244026184, -0.1971045583486557, 0.14850851893424988, 1.3823204040527344, -0.44643634557724, -0.369401752948761, 0.13935257494449615]} +{"t": 0.9564, "q": [-0.30535250902175903, -0.02688216231763363, 0.0188022218644619, 0.6141547560691833, -0.3399799168109894, 0.011003185994923115, -0.393820583820343, 0.017308415845036507, -0.01815940998494625, 0.5919972658157349, -0.25286954641342163, -0.01953957788646221, 0.00354885240085423, 0.0066602760925889015, -0.026372168213129044, 0.03262105956673622, 0.096580870449543, -0.010282465256750584, 1.3658181428909302, 0.294680118560791, -0.6083192825317383, 0.1342712640762329, -0.32589903473854065, -0.1968528777360916, 0.14848455786705017, 1.382332444190979, -0.44643634557724, -0.36941373348236084, 0.13935257494449615]} +{"t": 0.9731, "q": [-0.3053610324859619, -0.026873638853430748, 0.018788829445838928, 0.6141462326049805, -0.339988112449646, 0.011017650365829468, -0.393820583820343, 0.017282849177718163, -0.01813262701034546, 0.5919716954231262, -0.25286954641342163, -0.01953957788646221, 0.0035220684949308634, 0.0066602760925889015, -0.026372168213129044, 0.03254915401339531, 0.09654492139816284, -0.010006828233599663, 1.3658901453018188, 0.2947400212287903, -0.6083192825317383, 0.13425926864147186, -0.3258870244026184, -0.19669708609580994, 0.14853249490261078, 1.3822964429855347, -0.44643634557724, -0.36948564648628235, 0.1393166184425354]} +{"t": 0.9898, "q": [-0.3053695559501648, -0.026873638853430748, 0.018748654052615166, 0.6141462326049805, -0.3399840295314789, 0.011010418646037579, -0.393820583820343, 0.017299894243478775, -0.01813262701034546, 0.5919461250305176, -0.2528737187385559, -0.019532378762960434, 0.0035220684949308634, 0.0066602760925889015, -0.026372168213129044, 0.03242931514978409, 0.09649698436260223, -0.009635317139327526, 1.3659979104995728, 0.2947879731655121, -0.6083073019981384, 0.1342233270406723, -0.32589903473854065, -0.19656525552272797, 0.14852049946784973, 1.3822845220565796, -0.44649627804756165, -0.3694976270198822, 0.1392926573753357]} +{"t": 1.0066, "q": [-0.30538660287857056, -0.026873638853430748, 0.018775437027215958, 0.6141377091407776, -0.3399922251701355, 0.01102490071207285, -0.393820583820343, 0.017291372641921043, -0.01815940998494625, 0.5919205546379089, -0.25286954641342163, -0.01953957788646221, 0.0035354604478925467, 0.006652679294347763, -0.026367247104644775, 0.03238137811422348, 0.09646102786064148, -0.009251821786165237, 1.3660218715667725, 0.2948838472366333, -0.6083073019981384, 0.13413943350315094, -0.3259110152721405, -0.19646938145160675, 0.14826883375644684, 1.3822845220565796, -0.44629254937171936, -0.37003692984580994, 0.13941249251365662]} +{"t": 1.0233, "q": [-0.30539512634277344, -0.026873638853430748, 0.018775437027215958, 0.6141377091407776, -0.3399922251701355, 0.01102490071207285, -0.3938120901584625, 0.01727432757616043, -0.01811923459172249, 0.5919035077095032, -0.25286954641342163, -0.01953957788646221, 0.00354885240085423, 0.006637485697865486, -0.02635740116238594, 0.03238137811422348, 0.09644904732704163, -0.00900015328079462, 1.3660218715667725, 0.2948838472366333, -0.6083073019981384, 0.13410347700119019, -0.3259349763393402, -0.19637350738048553, 0.14819693565368652, 1.3822245597839355, -0.44626858830451965, -0.37050431966781616, 0.13943645358085632]} +{"t": 1.0401, "q": [-0.3054036498069763, -0.02688216231763363, 0.018762046471238136, 0.6140950918197632, -0.339988112449646, 0.011017650365829468, -0.3938291072845459, 0.017291372641921043, -0.01814601942896843, 0.5918608903884888, -0.25286954641342163, -0.01953957788646221, 0.0035220684949308634, 0.006614701822400093, -0.026352424174547195, 0.032357409596443176, 0.09642507880926132, -0.008772453293204308, 1.3661057949066162, 0.2948838472366333, -0.6083073019981384, 0.13405553996562958, -0.3259589374065399, -0.19634954631328583, 0.14814899861812592, 1.3822365999221802, -0.44624459743499756, -0.37077993154525757, 0.13943645358085632]} +{"t": 1.0569, "q": [-0.3054121732711792, -0.026856595650315285, 0.018721869215369225, 0.6140865683555603, -0.339996337890625, 0.01101761031895876, -0.393820583820343, 0.01727432757616043, -0.01813262701034546, 0.5917671918869019, -0.25287798047065735, -0.019553950056433678, 0.0035354604478925467, 0.00656913360580802, -0.026342468336224556, 0.032405346632003784, 0.09641309082508087, -0.008676579222083092, 1.3661178350448608, 0.2948838472366333, -0.6083073019981384, 0.13405553996562958, -0.3259349763393402, -0.19631358981132507, 0.14763367176055908, 1.3822126388549805, -0.44569334387779236, -0.37234988808631897, 0.1396641582250595]} +{"t": 1.0736, "q": [-0.30542922019958496, -0.026865117251873016, 0.018748654052615166, 0.6140865683555603, -0.3399922251701355, 0.01102490071207285, -0.3938376307487488, 0.0172658059746027, -0.01813262701034546, 0.5917671918869019, -0.25286954641342163, -0.01953957788646221, 0.0034952848218381405, 0.006546324584633112, -0.026298334822058678, 0.032477252185344696, 0.09638912230730057, -0.00848483107984066, 1.3661776781082153, 0.29494377970695496, -0.6083192825317383, 0.13405553996562958, -0.3260308504104614, -0.1962536722421646, 0.1471782773733139, 1.382164716720581, -0.4454896152019501, -0.37445908784866333, 0.13978400826454163]} +{"t": 1.0904, "q": [-0.30543774366378784, -0.026865117251873016, 0.018762046471238136, 0.6140865683555603, -0.339996337890625, 0.01101761031895876, -0.39384615421295166, 0.0172658059746027, -0.01814601942896843, 0.5917757153511047, -0.25286954641342163, -0.01953957788646221, 0.003468500915914774, 0.006515943445265293, -0.026288434863090515, 0.032525185495615005, 0.09635317325592041, -0.00820919405668974, 1.3661776781082153, 0.295051634311676, -0.6083312630653381, 0.13406752049922943, -0.326066792011261, -0.19624169170856476, 0.1469026356935501, 1.3821407556533813, -0.44522595405578613, -0.3777907192707062, 0.13983194530010223]} +{"t": 1.1073, "q": [-0.30543774366378784, -0.026856595650315285, 0.018762046471238136, 0.6140950918197632, -0.339988112449646, 0.011017650365829468, -0.3938376307487488, 0.017291372641921043, -0.01811923459172249, 0.591758668422699, -0.25286954641342163, -0.01953957788646221, 0.0034551091957837343, 0.006515943445265293, -0.026288434863090515, 0.03257312253117561, 0.09637714177370071, -0.008053399622440338, 1.3662376403808594, 0.29519543051719666, -0.6083312630653381, 0.13406752049922943, -0.3261147439479828, -0.1961577981710434, 0.14596785604953766, 1.3820687532424927, -0.444638729095459, -0.3808826506137848, 0.14025138318538666]} +{"t": 1.124, "q": [-0.3054462671279907, -0.026865117251873016, 0.018748654052615166, 0.614112138748169, -0.339996337890625, 0.01101761031895876, -0.3938376307487488, 0.017291372641921043, -0.01814601942896843, 0.5917671918869019, -0.25286954641342163, -0.01953957788646221, 0.003481892868876457, 0.006439982447773218, -0.026249000802636147, 0.03256113827228546, 0.09637714177370071, -0.00800546258687973, 1.36618971824646, 0.2952074110507965, -0.6083672046661377, 0.13407951593399048, -0.3261387050151825, -0.19606192409992218, 0.14463761448860168, 1.3819609880447388, -0.4425175189971924, -0.38384273648262024, 0.14094647765159607]} +{"t": 1.1408, "q": [-0.30543774366378784, -0.026865117251873016, 0.018748654052615166, 0.6140780448913574, -0.339988112449646, 0.011017650365829468, -0.3938120901584625, 0.017291372641921043, -0.01813262701034546, 0.5917842388153076, -0.2528485059738159, -0.019546786323189735, 0.003481892868876457, 0.006462759803980589, -0.026244189590215683, 0.03266899660229683, 0.09634118527173996, -0.00800546258687973, 1.366201639175415, 0.29524338245391846, -0.6083791851997375, 0.13407951593399048, -0.3264622688293457, -0.19584621489048004, 0.1426122784614563, 1.3816972970962524, -0.440264493227005, -0.3855684697628021, 0.14155766367912292]} +{"t": 1.1575, "q": [-0.3054462671279907, -0.026865117251873016, 0.018775437027215958, 0.6140780448913574, -0.339988112449646, 0.011017650365829468, -0.3938291072845459, 0.017291372641921043, -0.01814601942896843, 0.5917757153511047, -0.2528485059738159, -0.019546786323189735, 0.003481892868876457, 0.006447554100304842, -0.02621476911008358, 0.032704949378967285, 0.09634118527173996, -0.007981494069099426, 1.3661537170410156, 0.2953512370586395, -0.6085110306739807, 0.13407951593399048, -0.32647424936294556, -0.19569040834903717, 0.13922074437141418, 1.3816254138946533, -0.43656134605407715, -0.39037415385246277, 0.14371483027935028]} +{"t": 1.1743, "q": [-0.3054462671279907, -0.026873638853430748, 0.018775437027215958, 0.6140865683555603, -0.3399840295314789, 0.011010418646037579, -0.393820583820343, 0.017291372641921043, -0.01811923459172249, 0.5917671918869019, -0.25284430384635925, -0.019539600238204002, 0.0034551091957837343, 0.006424782332032919, -0.026229368522763252, 0.03304050862789154, 0.09634118527173996, -0.007957525551319122, 1.3661657571792603, 0.2954111397266388, -0.6085589528083801, 0.13410347700119019, -0.3267379105091095, -0.19567842781543732, 0.13674001395702362, 1.3812538385391235, -0.43213918805122375, -0.3973609507083893, 0.14614762365818024]} +{"t": 1.191, "q": [-0.30543774366378784, -0.02689068391919136, 0.0188022218644619, 0.614112138748169, -0.3399840295314789, 0.011010418646037579, -0.393820583820343, 0.017291372641921043, -0.01815940998494625, 0.5918183326721191, -0.25280651450157166, -0.019575638696551323, 0.0034015413839370012, 0.006394395139068365, -0.026209678500890732, 0.03326820954680443, 0.09635317325592041, -0.007981494069099426, 1.3661537170410156, 0.29547107219696045, -0.6087507009506226, 0.13413943350315094, -0.3268817365169525, -0.1955585926771164, 0.13377991318702698, 1.380462884902954, -0.42520031332969666, -0.4043717384338379, 0.15034210681915283]} +{"t": 1.2078, "q": [-0.3054121732711792, -0.026873638853430748, 0.018775437027215958, 0.6140865683555603, -0.339988112449646, 0.011003127321600914, -0.39380356669425964, 0.017308415845036507, -0.01814601942896843, 0.5918098092079163, -0.2527938783168793, -0.019568465650081635, 0.0033077981788665056, 0.006379195488989353, -0.026190046221017838, 0.03351987898349762, 0.09635317325592041, -0.00794554129242897, 1.366129755973816, 0.29550701379776, -0.6087626814842224, 0.13413943350315094, -0.3275168836116791, -0.19540278613567352, 0.12999288737773895, 1.3798877000808716, -0.4196995496749878, -0.40972867608070374, 0.15420103073120117]} +{"t": 1.2246, "q": [-0.3054121732711792, -0.026856595650315285, 0.0188022218644619, 0.6141206622123718, -0.33997172117233276, 0.01101776771247387, -0.3938120901584625, 0.017308415845036507, -0.01813262701034546, 0.591826856136322, -0.2528022527694702, -0.01955406740307808, 0.0034551091957837343, 0.006386786233633757, -0.026185179129242897, 0.033603768795728683, 0.09635317325592041, -0.007933557033538818, 1.366033911705017, 0.29550701379776, -0.6089664101600647, 0.13413943350315094, -0.3277086317539215, -0.19537882506847382, 0.12597817182540894, 1.379360318183899, -0.41473808884620667, -0.41818952560424805, 0.1562383472919464]} +{"t": 1.2413, "q": [-0.3054036498069763, -0.026873638853430748, 0.0188022218644619, 0.6140950918197632, -0.3399758040904999, 0.011010476388037205, -0.39380356669425964, 0.017308415845036507, -0.01815940998494625, 0.5918353199958801, -0.25278961658477783, -0.019546877592802048, 0.0033747577108442783, 0.0064019858837127686, -0.02620481327176094, 0.03398726135492325, 0.09636515378952026, -0.007909588515758514, 1.3660578727722168, 0.2955310046672821, -0.6090383529663086, 0.13413943350315094, -0.32836776971817017, -0.1952110379934311, 0.12172377854585648, 1.3783177137374878, -0.41007623076438904, -0.42365434765815735, 0.15783224999904633]} +{"t": 1.2582, "q": [-0.3054036498069763, -0.026873638853430748, 0.01884239725768566, 0.6141206622123718, -0.339988112449646, 0.011003127321600914, -0.39380356669425964, 0.017299894243478775, -0.01815940998494625, 0.5918353199958801, -0.2527937889099121, -0.01953967846930027, 0.003468500915914774, 0.0064019858837127686, -0.02620481327176094, 0.03437075763940811, 0.09640111029148102, -0.00806538388133049, 1.3659260272979736, 0.29567480087280273, -0.609086275100708, 0.13413943350315094, -0.32875126600265503, -0.19522303342819214, 0.11633087694644928, 1.377191185951233, -0.40401220321655273, -0.43169575929641724, 0.16214656829833984]} +{"t": 1.275, "q": [-0.3054121732711792, -0.026865117251873016, 0.0188022218644619, 0.6141036152839661, -0.339988112449646, 0.011003127321600914, -0.39380356669425964, 0.017308415845036507, -0.01815940998494625, 0.591826856136322, -0.25280216336250305, -0.019525278359651566, 0.0033881496638059616, 0.006394395139068365, -0.026209678500890732, 0.03480219095945358, 0.09644904732704163, -0.00806538388133049, 1.3659141063690186, 0.2957347333431244, -0.6091581583023071, 0.13413943350315094, -0.32937443256378174, -0.1952589750289917, 0.1140299066901207, 1.376448154449463, -0.40011733770370483, -0.4385747015476227, 0.16418388485908508]} +{"t": 1.2917, "q": [-0.3054036498069763, -0.026865117251873016, 0.018775437027215958, 0.6141206622123718, -0.3399840295314789, 0.011010418646037579, -0.39380356669425964, 0.017308415845036507, -0.01817280240356922, 0.5918523669242859, -0.2528105676174164, -0.01951088011264801, 0.003468500915914774, 0.0064019858837127686, -0.02620481327176094, 0.03524560481309891, 0.09642507880926132, -0.008269115351140499, 1.3659260272979736, 0.2959384620189667, -0.6091940999031067, 0.13411545753479004, -0.3296740651130676, -0.19534286856651306, 0.11002717167139053, 1.375381588935852, -0.3955153822898865, -0.447778582572937, 0.16841432452201843]} +{"t": 1.3084, "q": [-0.30539512634277344, -0.026873638853430748, 0.01881561428308487, 0.6141036152839661, -0.33997583389282227, 0.010995954275131226, -0.3937865197658539, 0.017308415845036507, -0.018186194822192192, 0.5918608903884888, -0.2528105676174164, -0.01951088011264801, 0.003481892868876457, 0.006386810913681984, -0.02622433379292488, 0.03562910109758377, 0.09640111029148102, -0.008341020904481411, 1.3659380674362183, 0.2959264814853668, -0.6092060804367065, 0.13410347700119019, -0.3299137353897095, -0.19536684453487396, 0.10816961526870728, 1.3741471767425537, -0.39135685563087463, -0.4542141258716583, 0.1718178391456604]} +{"t": 1.3251, "q": [-0.3054036498069763, -0.026865117251873016, 0.0188022218644619, 0.6141206622123718, -0.3399840295314789, 0.010995895601809025, -0.39380356669425964, 0.01732546091079712, -0.018186194822192192, 0.5918608903884888, -0.25281062722206116, -0.019539669156074524, 0.0034952848218381405, 0.006394395139068365, -0.026209678500890732, 0.036024581640958786, 0.09624531120061874, -0.0088803106918931, 1.3659380674362183, 0.29625004529953003, -0.6091940999031067, 0.13411545753479004, -0.3301534354686737, -0.195606529712677, 0.10609634965658188, 1.3732603788375854, -0.38748595118522644, -0.46442466974258423, 0.1753651648759842]} +{"t": 1.3419, "q": [-0.3054036498069763, -0.026856595650315285, 0.0188022218644619, 0.6140950918197632, -0.3399758040904999, 0.011010476388037205, -0.39380356669425964, 0.017308415845036507, -0.01817280240356922, 0.591843843460083, -0.25281062722206116, -0.019539669156074524, 0.0034952848218381405, 0.0064019919373095036, -0.02621460147202015, 0.03647998347878456, 0.09617340564727783, -0.00920388475060463, 1.365962028503418, 0.29629799723625183, -0.6091821193695068, 0.13410347700119019, -0.3303331732749939, -0.195606529712677, 0.10484998673200607, 1.3716305494308472, -0.3851490318775177, -0.4706924259662628, 0.17662350833415985]} +{"t": 1.3586, "q": [-0.3054036498069763, -0.026865117251873016, 0.018775437027215958, 0.6141206622123718, -0.3399758040904999, 0.011010476388037205, -0.39379504323005676, 0.017308415845036507, -0.018199585378170013, 0.5918779373168945, -0.2528063952922821, -0.01953248307108879, 0.0034952848218381405, 0.0064019858837127686, -0.02620481327176094, 0.03675561770796776, 0.09614943712949753, -0.009851032868027687, 1.3659260272979736, 0.29634591937065125, -0.6092180609703064, 0.13410347700119019, -0.3305369019508362, -0.1956304907798767, 0.10271679610013962, 1.3701565265655518, -0.37946850061416626, -0.47886568307876587, 0.17863686382770538]} +{"t": 1.3753, "q": [-0.3054121732711792, -0.026873638853430748, 0.0188022218644619, 0.6140780448913574, -0.3399799168109894, 0.011003185994923115, -0.3938120901584625, 0.017308415845036507, -0.018199585378170013, 0.5918694138526917, -0.25281062722206116, -0.019539669156074524, 0.003562244353815913, 0.006409582681953907, -0.02620973438024521, 0.03707919269800186, 0.09614943712949753, -0.010222543962299824, 1.3659141063690186, 0.29636988043785095, -0.6092180609703064, 0.1341274529695511, -0.33059683442115784, -0.1959061324596405, 0.10051169991493225, 1.3680832386016846, -0.3766641914844513, -0.48733851313591003, 0.18054234981536865]} +{"t": 1.3922, "q": [-0.3054036498069763, -0.026873638853430748, 0.0188022218644619, 0.6140865683555603, -0.3399758040904999, 0.011024999432265759, -0.3938120901584625, 0.017308415845036507, -0.018186194822192192, 0.5918608903884888, -0.25281062722206116, -0.019539669156074524, 0.003575636073946953, 0.006424776278436184, -0.026219578459858894, 0.03736681491136551, 0.09620936214923859, -0.010941597633063793, 1.3658901453018188, 0.2965376675128937, -0.609230101108551, 0.13411545753479004, -0.33083653450012207, -0.19621771574020386, 0.098102867603302, 1.36618971824646, -0.3716427981853485, -0.4966143071651459, 0.18402975797653198]} +{"t": 1.409, "q": [-0.3054036498069763, -0.026865117251873016, 0.018775437027215958, 0.6140780448913574, -0.3399758040904999, 0.011010476388037205, -0.3938291072845459, 0.017299894243478775, -0.018186194822192192, 0.5918608903884888, -0.2528148293495178, -0.019532470032572746, 0.0035220684949308634, 0.006424782332032919, -0.026229368522763252, 0.03757054731249809, 0.0963052362203598, -0.011696604080498219, 1.3658781051635742, 0.29664552211761475, -0.6092660427093506, 0.13411545753479004, -0.3310762047767639, -0.19658923149108887, 0.09680857509374619, 1.3642122745513916, -0.3704923093318939, -0.5051710605621338, 0.18625882267951965]} +{"t": 1.4257, "q": [-0.3054206967353821, -0.026865117251873016, 0.018762046471238136, 0.6140695214271545, -0.3399840295314789, 0.010995895601809025, -0.39380356669425964, 0.01732546091079712, -0.018186194822192192, 0.591843843460083, -0.2528148591518402, -0.019546855241060257, 0.003481892868876457, 0.006432373076677322, -0.026224501430988312, 0.037714358419179916, 0.09644904732704163, -0.01284708920866251, 1.3658181428909302, 0.2966814935207367, -0.6092900037765503, 0.1341274529695511, -0.3315795361995697, -0.19699668884277344, 0.09503490477800369, 1.3626543283462524, -0.3666214048862457, -0.5152857303619385, 0.19185546040534973]} +{"t": 1.4426, "q": [-0.3054121732711792, -0.026873638853430748, 0.018775437027215958, 0.6140865683555603, -0.3399840295314789, 0.011010418646037579, -0.39380356669425964, 0.017308415845036507, -0.018199585378170013, 0.5918523669242859, -0.25281062722206116, -0.019539669156074524, 0.0034952848218381405, 0.006424776278436184, -0.026219578459858894, 0.037774279713630676, 0.09654492139816284, -0.01378185860812664, 1.3657702207565308, 0.29678934812545776, -0.6093499064445496, 0.1341274529695511, -0.3320589065551758, -0.1973801851272583, 0.09348893910646439, 1.3609884977340698, -0.3612285256385803, -0.5259516835212708, 0.19624169170856476]} +{"t": 1.4593, "q": [-0.3054121732711792, -0.026873638853430748, 0.018775437027215958, 0.6140865683555603, -0.3399758040904999, 0.011010476388037205, -0.39379504323005676, 0.017308415845036507, -0.018199585378170013, 0.5918864607810974, -0.2528064548969269, -0.0195468682795763, 0.0035220684949308634, 0.0064399573020637035, -0.026209846138954163, 0.03778626397252083, 0.09664079546928406, -0.014608770608901978, 1.3656983375549316, 0.29681330919265747, -0.6093379259109497, 0.1341274529695511, -0.33231058716773987, -0.19754797220230103, 0.08900684118270874, 1.3598021268844604, -0.3538941740989685, -0.5391103625297546, 0.20135895907878876]} +{"t": 1.4761, "q": [-0.3054121732711792, -0.026873638853430748, 0.018775437027215958, 0.6140354871749878, -0.3399799168109894, 0.011003185994923115, -0.39380356669425964, 0.017316939309239388, -0.018186194822192192, 0.5918608903884888, -0.25281062722206116, -0.019539669156074524, 0.0034952848218381405, 0.006447554100304842, -0.02621476911008358, 0.037882134318351746, 0.09671270102262497, -0.015267902985215187, 1.3657103776931763, 0.29689720273017883, -0.6094338297843933, 0.13413943350315094, -0.33274200558662415, -0.19755995273590088, 0.08585499227046967, 1.358040452003479, -0.34934017062187195, -0.550591230392456, 0.20478643476963043]} +{"t": 1.4929, "q": [-0.30539512634277344, -0.026873638853430748, 0.01882900483906269, 0.6140440106391907, -0.3399758040904999, 0.011010476388037205, -0.39380356669425964, 0.017308415845036507, -0.01815940998494625, 0.5918353199958801, -0.25281062722206116, -0.019539669156074524, 0.0034149333368986845, 0.006432373076677322, -0.026224501430988312, 0.038001976907253265, 0.09677261859178543, -0.01577123999595642, 1.3657222986221313, 0.2969331443309784, -0.6094817519187927, 0.1341514140367508, -0.3340483009815216, -0.19759590923786163, 0.08213987946510315, 1.3563027381896973, -0.34756651520729065, -0.5583690404891968, 0.20737503468990326]} +{"t": 1.5096, "q": [-0.3054036498069763, -0.026873638853430748, 0.01882900483906269, 0.6140695214271545, -0.3399799168109894, 0.011017709039151669, -0.39380356669425964, 0.017308415845036507, -0.01815940998494625, 0.5918523669242859, -0.2528190016746521, -0.01952527090907097, 0.0035220684949308634, 0.006424763705581427, -0.026200002059340477, 0.037882134318351746, 0.09682055562734604, -0.01647830940783024, 1.365614414215088, 0.29701703786849976, -0.6095656156539917, 0.13413943350315094, -0.3342280685901642, -0.1979314684867859, 0.07637546956539154, 1.3547087907791138, -0.33841055631637573, -0.5712400674819946, 0.2136307954788208]} +{"t": 1.5263, "q": [-0.30542922019958496, -0.02689068391919136, 0.018775437027215958, 0.6140269637107849, -0.3399758040904999, 0.011024999432265759, -0.39379504323005676, 0.017282849177718163, -0.01815940998494625, 0.5918183326721191, -0.2528064548969269, -0.0195468682795763, 0.0034015413839370012, 0.006439944729208946, -0.026190269738435745, 0.03804991394281387, 0.09689246118068695, -0.017053551971912384, 1.3656024932861328, 0.29696911573410034, -0.6098892092704773, 0.13413943350315094, -0.33476734161376953, -0.19799138605594635, 0.07190535217523575, 1.3520482778549194, -0.33034515380859375, -0.5844107270240784, 0.21908362209796906]} +{"t": 1.5431, "q": [-0.3054121732711792, -0.02689068391919136, 0.01882900483906269, 0.6140695214271545, -0.3399799168109894, 0.011017709039151669, -0.39380356669425964, 0.017291372641921043, -0.01815940998494625, 0.5918608903884888, -0.25281062722206116, -0.019539669156074524, 0.003441717242822051, 0.006455131806433201, -0.026190325617790222, 0.038181740790605545, 0.09689246118068695, -0.017580857500433922, 1.365506649017334, 0.29696911573410034, -0.610140860080719, 0.13413943350315094, -0.335102915763855, -0.1983748823404312, 0.06766293197870255, 1.3485130071640015, -0.324640691280365, -0.5999543070793152, 0.2237934172153473]} +{"t": 1.5598, "q": [-0.30539512634277344, -0.026873638853430748, 0.01882900483906269, 0.6140269637107849, -0.3399758040904999, 0.011024999432265759, -0.39380356669425964, 0.017291372641921043, -0.01811923459172249, 0.5918353199958801, -0.25281062722206116, -0.019539669156074524, 0.0033077981788665056, 0.006462734658271074, -0.02620503678917885, 0.03852928429841995, 0.09698833525180817, -0.018012290820479393, 1.365518569946289, 0.29696911573410034, -0.6102727055549622, 0.13413943350315094, -0.33628934621810913, -0.19850671291351318, 0.06304901093244553, 1.3452892303466797, -0.31751006841659546, -0.6141076683998108, 0.22996529936790466]} +{"t": 1.5765, "q": [-0.3054121732711792, -0.02688216231763363, 0.01884239725768566, 0.6140440106391907, -0.3399799168109894, 0.011017709039151669, -0.393820583820343, 0.017291372641921043, -0.018092451617121696, 0.5918608903884888, -0.2528190016746521, -0.01952527090907097, 0.0033077981788665056, 0.006447535008192062, -0.026185402646660805, 0.038553252816200256, 0.09703627228736877, -0.01852761209011078, 1.3653987646102905, 0.29696911573410034, -0.6103565692901611, 0.1341274529695511, -0.3365410268306732, -0.19859059154987335, 0.056649431586265564, 1.3406872749328613, -0.3061849772930145, -0.6336898803710938, 0.23848608136177063]} +{"t": 1.5933, "q": [-0.3053780794143677, -0.02689068391919136, 0.018788829445838928, 0.6139672994613647, -0.3399799168109894, 0.011017709039151669, -0.3938120901584625, 0.017308415845036507, -0.018092451617121696, 0.5917757153511047, -0.2528064548969269, -0.0195468682795763, 0.003240838646888733, 0.006493109278380871, -0.026205148547887802, 0.03886484354734421, 0.09707222133874893, -0.01889912411570549, 1.3654706478118896, 0.2969810962677002, -0.6103925704956055, 0.13413943350315094, -0.3381708562374115, -0.1985306739807129, 0.05020191892981529, 1.3381705284118652, -0.2968732416629791, -0.6497487425804138, 0.24573653936386108]} +{"t": 1.61, "q": [-0.3054036498069763, -0.02689068391919136, 0.01882900483906269, 0.6140269637107849, -0.3399840295314789, 0.010995895601809025, -0.3938291072845459, 0.017308415845036507, -0.01813262701034546, 0.5918523669242859, -0.25281062722206116, -0.019539669156074524, 0.003347973804920912, 0.006462728604674339, -0.02619524858891964, 0.039020638912916183, 0.09712015837430954, -0.019222697243094444, 1.365290880203247, 0.29704099893569946, -0.6104404926300049, 0.1341274529695511, -0.3393692970275879, -0.19854265451431274, 0.042100582271814346, 1.3348389863967896, -0.2843257486820221, -0.6690433621406555, 0.25395771861076355]} +{"t": 1.6267, "q": [-0.30539512634277344, -0.026873638853430748, 0.01881561428308487, 0.6140269637107849, -0.3399799168109894, 0.011003185994923115, -0.39380356669425964, 0.017308415845036507, -0.01811923459172249, 0.5918012857437134, -0.2528190016746521, -0.01952527090907097, 0.0032944062259048223, 0.006485518999397755, -0.026210013777017593, 0.03928428888320923, 0.09716809540987015, -0.019366508349776268, 1.3652788400650024, 0.29704099893569946, -0.6104404926300049, 0.1341274529695511, -0.3416822552680969, -0.19851869344711304, 0.03597664460539818, 1.3316271305084229, -0.2757810056209564, -0.6821900606155396, 0.26084864139556885]} +{"t": 1.6435, "q": [-0.3054206967353821, -0.026865117251873016, 0.01882900483906269, 0.6140269637107849, -0.3399799168109894, 0.011003185994923115, -0.39384615421295166, 0.017291372641921043, -0.01813262701034546, 0.5918098092079163, -0.25282320380210876, -0.0195180531591177, 0.0033747577108442783, 0.006485506426542997, -0.026190437376499176, 0.039452068507671356, 0.0972040519118309, -0.019534287974238396, 1.365159034729004, 0.29699307680130005, -0.610428512096405, 0.13410347700119019, -0.3430604338645935, -0.1986025869846344, 0.02780340239405632, 1.3267016410827637, -0.2601655423641205, -0.7005138993263245, 0.2710951566696167]} +{"t": 1.6602, "q": [-0.3054121732711792, -0.026873638853430748, 0.0188022218644619, 0.6139758229255676, -0.3399799168109894, 0.011003185994923115, -0.3938291072845459, 0.017291372641921043, -0.01815940998494625, 0.5917671918869019, -0.2528063952922821, -0.01953248307108879, 0.0032274469267576933, 0.006485506426542997, -0.026190437376499176, 0.039799612015485764, 0.09725198894739151, -0.019570238888263702, 1.365159034729004, 0.29701703786849976, -0.6104764342308044, 0.13410347700119019, -0.34554117918014526, -0.19856663048267365, 0.02214684896171093, 1.3210091590881348, -0.25006285309791565, -0.7133969664573669, 0.27751868963241577]} +{"t": 1.6769, "q": [-0.3054121732711792, -0.026865117251873016, 0.0188022218644619, 0.6140099167823792, -0.339988112449646, 0.011017650365829468, -0.39384615421295166, 0.017308415845036507, -0.01815940998494625, 0.5917927622795105, -0.25283578038215637, -0.019496455788612366, 0.003361365757882595, 0.0064930906519293785, -0.026175782084465027, 0.03997937589883804, 0.09733587503433228, -0.019893813878297806, 1.3651471138000488, 0.29701703786849976, -0.6104644536972046, 0.13407951593399048, -0.34701523184776306, -0.19841083884239197, 0.014860439114272594, 1.3157120943069458, -0.23430359363555908, -0.7329911589622498, 0.29104888439178467]} +{"t": 1.6937, "q": [-0.30543774366378784, -0.026865117251873016, 0.018775437027215958, 0.6138991117477417, -0.339988112449646, 0.011003127321600914, -0.3938291072845459, 0.017291372641921043, -0.01817280240356922, 0.5917245745658875, -0.25283578038215637, -0.019496455788612366, 0.0032676225528120995, 0.006485506426542997, -0.026190437376499176, 0.04037485644221306, 0.09738381206989288, -0.01992976665496826, 1.3650871515274048, 0.29699307680130005, -0.6104524731636047, 0.13407951593399048, -0.34874096512794495, -0.19812321662902832, 0.008496815338730812, 1.3092886209487915, -0.22161228954792023, -0.7501885294914246, 0.29929405450820923]} +{"t": 1.7105, "q": [-0.30543774366378784, -0.026865117251873016, 0.018748654052615166, 0.6139076352119446, -0.339988112449646, 0.011003127321600914, -0.39384615421295166, 0.01732546091079712, -0.01817280240356922, 0.5917671918869019, -0.2528442144393921, -0.019510827958583832, 0.0033747577108442783, 0.006462716031819582, -0.026175670325756073, 0.04050667956471443, 0.09753961116075516, -0.020241355523467064, 1.365159034729004, 0.2970769703388214, -0.6104644536972046, 0.13406752049922943, -0.3507303297519684, -0.1973801851272583, -0.0009347695740871131, 1.3026013374328613, -0.20562534034252167, -0.7677574157714844, 0.31359121203422546]} +{"t": 1.7272, "q": [-0.3054462671279907, -0.026848074048757553, 0.018748654052615166, 0.6139076352119446, -0.3399799168109894, 0.011003185994923115, -0.3938632011413574, 0.017342504113912582, -0.018186194822192192, 0.5917160511016846, -0.2528400123119354, -0.0195036418735981, 0.003481892868876457, 0.006477890536189079, -0.026156149804592133, 0.04069842770695686, 0.09751564264297485, -0.020253339782357216, 1.364931344985962, 0.2970290184020996, -0.610512375831604, 0.13406752049922943, -0.35213249921798706, -0.19709256291389465, -0.00755006168037653, 1.2957943677902222, -0.19132815301418304, -0.7862730622291565, 0.3272412419319153]} +{"t": 1.7439, "q": [-0.3054462671279907, -0.026865117251873016, 0.018748654052615166, 0.6138309240341187, -0.3399840295314789, 0.011010418646037579, -0.3938632011413574, 0.01732546091079712, -0.018212977796792984, 0.5916904807090759, -0.2528442144393921, -0.019510827958583832, 0.0034149333368986845, 0.0065082525834441185, -0.02613668516278267, 0.040830254554748535, 0.09757556021213531, -0.020564930513501167, 1.3650271892547607, 0.2971009314060211, -0.6104764342308044, 0.13403157889842987, -0.35403797030448914, -0.19540278613567352, -0.017245300114154816, 1.2872376441955566, -0.17039170861244202, -0.8074491620063782, 0.34786611795425415]} +{"t": 1.7609, "q": [-0.3054633140563965, -0.026848074048757553, 0.018748654052615166, 0.6138309240341187, -0.3399799168109894, 0.010988662950694561, -0.3939058184623718, 0.017342504113912582, -0.01815940998494625, 0.5917245745658875, -0.25283583998680115, -0.019525226205587387, 0.0033077981788665056, 0.006546198856085539, -0.026102563366293907, 0.04117779806256294, 0.09759952872991562, -0.020660804584622383, 1.3650152683258057, 0.29701703786849976, -0.610512375831604, 0.13405553996562958, -0.3560872972011566, -0.19409650564193726, -0.022722091525793076, 1.2768592834472656, -0.15525563061237335, -0.8283975720405579, 0.36185169219970703]} +{"t": 1.7777, "q": [-0.30552294850349426, -0.02682250738143921, 0.018775437027215958, 0.61380535364151, -0.3399758040904999, 0.011010476388037205, -0.39404216408729553, 0.017368070781230927, -0.01815940998494625, 0.5917330980300903, -0.2528274655342102, -0.019539643079042435, 0.0032944062259048223, 0.006576503161340952, -0.025995003059506416, 0.041189782321453094, 0.09759952872991562, -0.021200094372034073, 1.3651231527328491, 0.29714885354042053, -0.6105003952980042, 0.13401958346366882, -0.3570699989795685, -0.19181950390338898, -0.032225582748651505, 1.2627898454666138, -0.1309516280889511, -0.8494059443473816, 0.38691070675849915]} +{"t": 1.7944, "q": [-0.3055485188961029, -0.026813985779881477, 0.01882900483906269, 0.6137883067131042, -0.3399758040904999, 0.011010476388037205, -0.3940933048725128, 0.01738511584699154, -0.01815940998494625, 0.5917671918869019, -0.2528190314769745, -0.01953965611755848, 0.003066744189709425, 0.0065840245224535465, -0.025882462039589882, 0.04152534157037735, 0.09767143428325653, -0.021331921219825745, 1.3650871515274048, 0.29706498980522156, -0.6105003952980042, 0.13403157889842987, -0.35890358686447144, -0.18942266702651978, -0.03983556479215622, 1.2490439414978027, -0.11320298910140991, -0.871349036693573, 0.4059895873069763]} +{"t": 1.8111, "q": [-0.3055059015750885, -0.026796940714120865, 0.018775437027215958, 0.6137627363204956, -0.3399758040904999, 0.011010476388037205, -0.3940933048725128, 0.017461813986301422, -0.01813262701034546, 0.5917671918869019, -0.25283166766166687, -0.019546829164028168, 0.003240838646888733, 0.0065612345933914185, -0.02586769498884678, 0.04135756194591522, 0.09763548523187637, -0.02177533693611622, 1.3651111125946045, 0.2971248924732208, -0.610512375831604, 0.13399562239646912, -0.3598383367061615, -0.18639065325260162, -0.047529436647892, 1.2320382595062256, -0.08838365972042084, -0.8897807598114014, 0.4308089315891266]} +{"t": 1.8279, "q": [-0.30552294850349426, -0.026779895648360252, 0.018775437027215958, 0.6137201189994812, -0.33997583389282227, 0.010995954275131226, -0.3941018283367157, 0.01750442571938038, -0.01817280240356922, 0.591758668422699, -0.25281912088394165, -0.0195684265345335, 0.003026568330824375, 0.006576415151357651, -0.025857962667942047, 0.04164518415927887, 0.09757556021213531, -0.021943116560578346, 1.3651471138000488, 0.29701703786849976, -0.6105243563652039, 0.13405553996562958, -0.3620794117450714, -0.18291522562503815, -0.054132744669914246, 1.2167823314666748, -0.06808238476514816, -0.9099622368812561, 0.4510263204574585]} +{"t": 1.8446, "q": [-0.30548036098480225, -0.02677137404680252, 0.0188022218644619, 0.6136775612831116, -0.3399758040904999, 0.011010476388037205, -0.39407625794410706, 0.017555557191371918, -0.01811923459172249, 0.591758668422699, -0.252814918756485, -0.019575627520680428, 0.0031470954418182373, 0.006538444198668003, -0.025852929800748825, 0.041369546204805374, 0.09755159169435501, -0.02238653227686882, 1.3651829957962036, 0.2971608638763428, -0.610512375831604, 0.13399562239646912, -0.36362534761428833, -0.17927202582359314, -0.05817142874002457, 1.1972001791000366, -0.04332297295331955, -0.9245949387550354, 0.47355666756629944]} +{"t": 1.8615, "q": [-0.3055570423603058, -0.0267117191106081, 0.018748654052615166, 0.6136690378189087, -0.3399799168109894, 0.011003185994923115, -0.39412739872932434, 0.01757260225713253, -0.01817280240356922, 0.591758668422699, -0.2528107166290283, -0.019582826644182205, 0.0032676225528120995, 0.006432057823985815, -0.025735074654221535, 0.04135756194591522, 0.09756357967853546, -0.022578280419111252, 1.365063190460205, 0.29701703786849976, -0.6105483174324036, 0.13401958346366882, -0.3645481467247009, -0.17560485005378723, -0.061407171189785004, 1.177749752998352, -0.021919148042798042, -0.942247748374939, 0.4949125349521637]} +{"t": 1.8782, "q": [-0.3055570423603058, -0.026720240712165833, 0.018708478659391403, 0.6134900450706482, -0.33997172117233276, 0.011003244668245316, -0.3941018283367157, 0.01757260225713253, -0.018226370215415955, 0.5916649103164673, -0.252814918756485, -0.019575627520680428, 0.0034283252898603678, 0.0063788932748138905, -0.025720195844769478, 0.04092612862586975, 0.09755159169435501, -0.02311757020652294, 1.3651350736618042, 0.2972327470779419, -0.6105003952980042, 0.13399562239646912, -0.36252281069755554, -0.17163807153701782, -0.06252170354127884, 1.1500781774520874, 0.0054887752048671246, -0.9510800838470459, 0.518988847732544]} +{"t": 1.8949, "q": [-0.30562523007392883, -0.026737285777926445, 0.018681693822145462, 0.6136008501052856, -0.3399758040904999, 0.011010476388037205, -0.394152969121933, 0.017581123858690262, -0.018279938027262688, 0.5917927622795105, -0.2528402507305145, -0.019618762657046318, 0.0034551091957837343, 0.006424288731068373, -0.025456015020608902, 0.04110589250922203, 0.09753961116075516, -0.023261381313204765, 1.3646436929702759, 0.2971248924732208, -0.6107520461082458, 0.13403157889842987, -0.3621033728122711, -0.16646088659763336, -0.06430735439062119, 1.123233437538147, 0.02943325787782669, -0.9656289219856262, 0.5401050448417664]} +{"t": 1.9117, "q": [-0.30557408928871155, -0.026737285777926445, 0.01866830326616764, 0.6134815216064453, -0.33996763825416565, 0.010996012017130852, -0.3941444456577301, 0.017581123858690262, -0.01829332858324051, 0.5916734337806702, -0.25283604860305786, -0.019611574709415436, 0.0034149333368986845, 0.006439481861889362, -0.025465870276093483, 0.0412377193570137, 0.0975036546587944, -0.023453129455447197, 1.364775538444519, 0.2972327470779419, -0.6107640266418457, 0.13400760293006897, -0.3619595468044281, -0.16167917847633362, -0.0646788626909256, 1.0966404676437378, 0.050273824483156204, -0.9721962809562683, 0.5579855442047119]} +{"t": 1.9284, "q": [-0.30561670660972595, -0.0267117191106081, 0.0186415184289217, 0.6135241389274597, -0.3399840295314789, 0.010995895601809025, -0.394152969121933, 0.017589645460247993, -0.01833350583910942, 0.5917160511016846, -0.2528740167617798, -0.019661884754896164, 0.003441717242822051, 0.006401486229151487, -0.025421632453799248, 0.04129764065146446, 0.09746770560741425, -0.02383662387728691, 1.3646796941757202, 0.2972327470779419, -0.6108120083808899, 0.13400760293006897, -0.3603656589984894, -0.1561904102563858, -0.06491854786872864, 1.0670874118804932, 0.07496132701635361, -0.9775412678718567, 0.5788860321044922]} +{"t": 1.9453, "q": [-0.30558261275291443, -0.026720240712165833, 0.018587950617074966, 0.6133792400360107, -0.33997172117233276, 0.011003244668245316, -0.39412739872932434, 0.017606690526008606, -0.018373681232333183, 0.5915967226028442, -0.25287821888923645, -0.019654683768749237, 0.003441717242822051, 0.006371154449880123, -0.02549011819064617, 0.04129764065146446, 0.0975036546587944, -0.02394448220729828, 1.3648713827133179, 0.29736459255218506, -0.6108120083808899, 0.13400760293006897, -0.3606892228126526, -0.1511210799217224, -0.0649784728884697, 1.0432268381118774, 0.09225456416606903, -0.9847797155380249, 0.5938543081283569]} +{"t": 1.962, "q": [-0.3056337535381317, -0.0267117191106081, 0.018601343035697937, 0.6134389042854309, -0.3399758040904999, 0.011010476388037205, -0.39411887526512146, 0.017598168924450874, -0.018400464206933975, 0.5916222929954529, -0.25289079546928406, -0.019647471606731415, 0.003736338810995221, 0.006302759982645512, -0.025406569242477417, 0.04075834900140762, 0.09746770560741425, -0.024387897923588753, 1.3647396564483643, 0.29747244715690613, -0.6108239889144897, 0.1339716613292694, -0.35461321473121643, -0.14763367176055908, -0.06399576365947723, 1.008736252784729, 0.11696603894233704, -0.9857624173164368, 0.6132927536964417]} +{"t": 1.9788, "q": [-0.3057700991630554, -0.02677137404680252, 0.018413856625556946, 0.6133792400360107, -0.33997172117233276, 0.011003244668245316, -0.39408478140830994, 0.017521468922495842, -0.018534382805228233, 0.591545581817627, -0.25288665294647217, -0.019669057801365852, 0.004258622881025076, 0.006226805504411459, -0.02537688985466957, 0.040290966629981995, 0.09756357967853546, -0.02430400811135769, 1.364487886428833, 0.2971608638763428, -0.6110876202583313, 0.13405553996562958, -0.3506943881511688, -0.1440863460302353, -0.062066301703453064, 0.9781764149665833, 0.13765081763267517, -0.9847557544708252, 0.6268948316574097]} +{"t": 1.9956, "q": [-0.3060087263584137, -0.026848074048757553, 0.018253153190016747, 0.6134900450706482, -0.3399840295314789, 0.011010418646037579, -0.39412739872932434, 0.017368070781230927, -0.018762046471238136, 0.5915711522102356, -0.25288665294647217, -0.019669057801365852, 0.005021960940212011, 0.006052069365978241, -0.02524395100772381, 0.03990747034549713, 0.09759952872991562, -0.02431599237024784, 1.3639485836029053, 0.2971848249435425, -0.6113752722740173, 0.13405553996562958, -0.34539735317230225, -0.14195315539836884, -0.05970541015267372, 0.9455553889274597, 0.1557949334383011, -0.9826585054397583, 0.6366020441055298]} +{"t": 2.0124, "q": [-0.306247353553772, -0.026916250586509705, 0.01814601942896843, 0.6134815216064453, -0.3399799168109894, 0.011003185994923115, -0.3941444456577301, 0.017197629436850548, -0.018936140462756157, 0.5914773941040039, -0.25289079546928406, -0.019647471606731415, 0.004955001175403595, 0.006052069365978241, -0.02524395100772381, 0.04013517126441002, 0.09757556021213531, -0.024232102558016777, 1.363637089729309, 0.29706498980522156, -0.6116508841514587, 0.13407951593399048, -0.34219756722450256, -0.13995178043842316, -0.05752428248524666, 0.9162179827690125, 0.17354357242584229, -0.9801058769226074, 0.6448472142219543]} +{"t": 2.0292, "q": [-0.30648595094680786, -0.02700147219002247, 0.01817280240356922, 0.6135838031768799, -0.3399758040904999, 0.011010476388037205, -0.39421260356903076, 0.01709536276757717, -0.01897631585597992, 0.591468870639801, -0.25289079546928406, -0.019647471606731415, 0.005383542273193598, 0.005998823791742325, -0.025101659819483757, 0.04013517126441002, 0.09757556021213531, -0.024292023852467537, 1.3634213209152222, 0.29708895087242126, -0.6119505167007446, 0.13409149646759033, -0.33590584993362427, -0.13900503516197205, -0.05542704090476036, 0.8778564929962158, 0.19337746500968933, -0.9685051441192627, 0.652421236038208]} +{"t": 2.046, "q": [-0.3066478669643402, -0.027086691930890083, 0.018199585378170013, 0.6135497093200684, -0.3399799168109894, 0.011017709039151669, -0.39430636167526245, 0.017044231295585632, -0.018922748044133186, 0.5913666486740112, -0.2528613209724426, -0.019625922664999962, 0.004847866017371416, 0.0059759789146482944, -0.024998677894473076, 0.040518663823604584, 0.09753961116075516, -0.024112261831760406, 1.3633613586425781, 0.29681330919265747, -0.6121422648429871, 0.1341274529695511, -0.33313748240470886, -0.1384657323360443, -0.054372429847717285, 0.850712239742279, 0.2096879929304123, -0.9637234807014465, 0.6583893895149231]} +{"t": 2.0629, "q": [-0.30672457814216614, -0.02712930366396904, 0.018387073650956154, 0.6136605143547058, -0.34000861644744873, 0.011053829453885555, -0.39445123076438904, 0.017001619562506676, -0.018788829445838928, 0.5913581252098083, -0.25285279750823975, -0.019582778215408325, 0.00512909609824419, 0.005854432005435228, -0.02491983398795128, 0.04018310829997063, 0.09770739078521729, -0.024100277572870255, 1.3632056713104248, 0.2968013286590576, -0.6122620701789856, 0.13418737053871155, -0.32819998264312744, -0.13895709812641144, -0.053713299334049225, 0.8165332078933716, 0.22599852085113525, -0.9517632126808167, 0.6624160408973694]} +{"t": 2.0796, "q": [-0.3068268299102783, -0.027214523404836655, 0.01846742443740368, 0.6136178970336914, -0.34000861644744873, 0.011039306409657001, -0.3945449888706207, 0.01690787635743618, -0.018695086240768433, 0.5913751721382141, -0.25284019112586975, -0.019589990377426147, 0.004298798739910126, 0.005770827643573284, -0.02479702979326248, 0.04050667956471443, 0.09770739078521729, -0.023920513689517975, 1.3627501726150513, 0.29662156105041504, -0.6127414703369141, 0.13423530757427216, -0.32500019669532776, -0.1390409767627716, -0.05331781879067421, 0.7871598601341248, 0.23952871561050415, -0.943074643611908, 0.6642736196517944]} +{"t": 2.0964, "q": [-0.3068779706954956, -0.027240090072155, 0.018721869215369225, 0.6136178970336914, -0.34001269936561584, 0.011046539060771465, -0.3947069048881531, 0.01689935475587845, -0.01846742443740368, 0.5913581252098083, -0.25281062722206116, -0.019539669156074524, 0.003669379511848092, 0.005687276367098093, -0.02476242370903492, 0.04056660085916519, 0.09787517040967941, -0.023740749806165695, 1.3627262115478516, 0.2965017259120941, -0.6127893924713135, 0.13428324460983276, -0.3247125744819641, -0.13965217769145966, -0.05346162989735603, 0.7634910345077515, 0.25144103169441223, -0.9352129697799683, 0.6640698909759521]} +{"t": 2.1131, "q": [-0.30686092376708984, -0.027240090072155, 0.018895965069532394, 0.6136519908905029, -0.34000861644744873, 0.011039306409657001, -0.394758015871048, 0.01691639982163906, -0.01829332858324051, 0.5914092659950256, -0.2527852952480316, -0.019496534019708633, 0.003655987558886409, 0.005542960949242115, -0.024669012054800987, 0.040171124041080475, 0.09783921390771866, -0.023764718323946, 1.362666368484497, 0.29648974537849426, -0.6128732562065125, 0.1342712640762329, -0.32285502552986145, -0.14104235172271729, -0.05358147248625755, 0.73783278465271, 0.26361700892448425, -0.9236242175102234, 0.6644294261932373]} +{"t": 2.1298, "q": [-0.30692058801651, -0.027291223406791687, 0.018882572650909424, 0.6136605143547058, -0.34000861644744873, 0.011053829453885555, -0.394826203584671, 0.016831178218126297, -0.01829332858324051, 0.5914603471755981, -0.2527894377708435, -0.019474949687719345, 0.003655987558886409, 0.0054365466348826885, -0.024404659867286682, 0.03952397406101227, 0.0978032648563385, -0.023680828511714935, 1.3617196083068848, 0.29644179344177246, -0.6133646368980408, 0.13433118164539337, -0.31806135177612305, -0.14292387664318085, -0.05355750396847725, 0.7032223343849182, 0.28089824318885803, -0.9077211618423462, 0.6642616391181946]} +{"t": 2.1465, "q": [-0.30703988671302795, -0.027342356741428375, 0.018922748044133186, 0.6136349439620972, -0.3400045335292816, 0.011032074689865112, -0.3948688209056854, 0.016831178218126297, -0.018266545608639717, 0.591468870639801, -0.2527177929878235, -0.01941028982400894, 0.0036425956059247255, 0.0054516978561878204, -0.024326447397470474, 0.03952397406101227, 0.09783921390771866, -0.023501066491007805, 1.360832691192627, 0.29625004529953003, -0.61342453956604, 0.13439109921455383, -0.3165992498397827, -0.14414626359939575, -0.05380916967988014, 0.6743643283843994, 0.29424867033958435, -0.8961683511734009, 0.664081871509552]} +{"t": 2.1633, "q": [-0.30695468187332153, -0.027342356741428375, 0.018909357488155365, 0.6136690378189087, -0.34000861644744873, 0.011039306409657001, -0.39485177397727966, 0.016831178218126297, -0.01830672100186348, 0.5914859175682068, -0.2527135908603668, -0.01941748894751072, 0.0036425956059247255, 0.005421335343271494, -0.024345936253666878, 0.03946405276656151, 0.0978032648563385, -0.023513050749897957, 1.3605211973190308, 0.29632195830345154, -0.6134485006332397, 0.13436713814735413, -0.3165992498397827, -0.14601579308509827, -0.05430052429437637, 0.6514624953269958, 0.3034765422344208, -0.8872041702270508, 0.6629194021224976]} +{"t": 2.18, "q": [-0.30692058801651, -0.027333833277225494, 0.018895965069532394, 0.6137030720710754, -0.34000861644744873, 0.011039306409657001, -0.394826203584671, 0.016873788088560104, -0.01833350583910942, 0.5915370583534241, -0.25273045897483826, -0.019431866705417633, 0.0036292036529630423, 0.005383382551372051, -0.02437029406428337, 0.03915246203541756, 0.0978032648563385, -0.023513050749897957, 1.3598260879516602, 0.29632195830345154, -0.6134845018386841, 0.13439109921455383, -0.315233051776886, -0.14910772442817688, -0.054432351142168045, 0.6243901252746582, 0.31616783142089844, -0.8725115060806274, 0.662224292755127]} +{"t": 2.197, "q": [-0.3070143163204193, -0.027333833277225494, 0.01884239725768566, 0.6137797832489014, -0.3400045335292816, 0.011032074689865112, -0.3948773443698883, 0.016882311552762985, -0.018373681232333183, 0.59161376953125, -0.2527178227901459, -0.019424675032496452, 0.003655987558886409, 0.005314941983669996, -0.02413048967719078, 0.038613174110651016, 0.09776730835437775, -0.023453129455447197, 1.3582921028137207, 0.2962620258331299, -0.6138559579849243, 0.13439109921455383, -0.3120093047618866, -0.15233148634433746, -0.054923705756664276, 0.5915533304214478, 0.33122003078460693, -0.854762852191925, 0.6602349281311035]} +{"t": 2.2137, "q": [-0.3071165978908539, -0.027333833277225494, 0.01882900483906269, 0.6137201189994812, -0.339988112449646, 0.01103219110518694, -0.39499664306640625, 0.016882311552762985, -0.018373681232333183, 0.5916222929954529, -0.25270938873291016, -0.019424688071012497, 0.0037899063900113106, 0.005360441282391548, -0.023993568494915962, 0.03827761486172676, 0.09769540280103683, -0.023393208160996437, 1.3577288389205933, 0.29627400636672974, -0.6139039397239685, 0.1344030797481537, -0.3113621473312378, -0.15468040108680725, -0.05537910386919975, 0.5637978911399841, 0.3456370532512665, -0.8412566781044006, 0.6577781438827515]} +{"t": 2.2305, "q": [-0.3071165978908539, -0.027333833277225494, 0.0188022218644619, 0.6137797832489014, -0.3399839997291565, 0.011024940758943558, -0.395013689994812, 0.016890833154320717, -0.018440639600157738, 0.5918012857437134, -0.2527095079421997, -0.019467880949378014, 0.004097919911146164, 0.00553501769900322, -0.023861801251769066, 0.03785816580057144, 0.09756357967853546, -0.023453129455447197, 1.357309341430664, 0.2963339388370514, -0.6138919591903687, 0.13441507518291473, -0.30932483077049255, -0.15834756195545197, -0.055882442742586136, 0.5287440419197083, 0.36374521255493164, -0.8199487328529358, 0.6541948914527893]} +{"t": 2.2474, "q": [-0.30704841017723083, -0.0273082684725523, 0.018748654052615166, 0.6137115955352783, -0.3399799168109894, 0.011017709039151669, -0.395013689994812, 0.01689935475587845, -0.01850759983062744, 0.5919035077095032, -0.2527221143245697, -0.0194606501609087, 0.0039506093598902225, 0.005557797849178314, -0.023866752162575722, 0.037870150059461594, 0.09743174910545349, -0.023309318348765373, 1.3569978475570679, 0.2962260842323303, -0.6139279007911682, 0.13441507518291473, -0.308917373418808, -0.1616552174091339, -0.056541573256254196, 0.4995264708995819, 0.37840190529823303, -0.8061548471450806, 0.6519418358802795]} +{"t": 2.2642, "q": [-0.30692058801651, -0.02725713513791561, 0.018681693822145462, 0.6137030720710754, -0.3399799168109894, 0.011017709039151669, -0.3949710726737976, 0.017010143026709557, -0.018574560061097145, 0.5918779373168945, -0.25272637605667114, -0.019496625289320946, 0.003990784753113985, 0.005557808093726635, -0.023896127939224243, 0.037762295454740524, 0.09737183153629303, -0.023393208160996437, 1.3568779230117798, 0.29634591937065125, -0.6139039397239685, 0.13441507518291473, -0.30942070484161377, -0.1660294532775879, -0.05770404636859894, 0.4750187397003174, 0.38972699642181396, -0.79385906457901, 0.6484544277191162]} +{"t": 2.2809, "q": [-0.3068438768386841, -0.02719748020172119, 0.018614735454320908, 0.6137115955352783, -0.3399758040904999, 0.011010476388037205, -0.3949199616909027, 0.017120929434895515, -0.018614735454320908, 0.5919205546379089, -0.2527390420436859, -0.019518183544278145, 0.0041916631162166595, 0.0054894862696528435, -0.023920442909002304, 0.037223003804683685, 0.0971800833940506, -0.023393208160996437, 1.3567341566085815, 0.29627400636672974, -0.6138319969177246, 0.1344270557165146, -0.30980420112609863, -0.17192569375038147, -0.05873468890786171, 0.45099037885665894, 0.40148353576660156, -0.7795498967170715, 0.6438165307044983]} +{"t": 2.2977, "q": [-0.3070313632488251, -0.02719748020172119, 0.01845403201878071, 0.6138650178909302, -0.3399799168109894, 0.011017709039151669, -0.39495402574539185, 0.01709536276757717, -0.018788829445838928, 0.5919802188873291, -0.25274327397346497, -0.01952538825571537, 0.004606812261044979, 0.005413432139903307, -0.023626485839486122, 0.03651593253016472, 0.09701230376958847, -0.023393208160996437, 1.355943202972412, 0.2962260842323303, -0.6139758229255676, 0.13443903625011444, -0.3083660900592804, -0.17931996285915375, -0.059489693492650986, 0.41980740427970886, 0.4194718599319458, -0.7567558884620667, 0.6379802227020264]} +{"t": 2.3146, "q": [-0.3071592152118683, -0.027206001803278923, 0.01850759983062744, 0.6137797832489014, -0.33995532989501953, 0.011003362014889717, -0.3950733542442322, 0.017044231295585632, -0.018748654052615166, 0.5920057892799377, -0.2527306377887726, -0.01951819658279419, 0.004338974133133888, 0.005618278402835131, -0.02331867441534996, 0.03627625107765198, 0.0969044417142868, -0.023393208160996437, 1.355751395225525, 0.2963099777698517, -0.6138919591903687, 0.13443903625011444, -0.30865371227264404, -0.18552778661251068, -0.06132328137755394, 0.39112916588783264, 0.43526706099510193, -0.7391630411148071, 0.6323117017745972]} +{"t": 2.3313, "q": [-0.30713364481925964, -0.027223046869039536, 0.018547775223851204, 0.6138820648193359, -0.33995941281318665, 0.011010593734681606, -0.3950563073158264, 0.017061274498701096, -0.018735261633992195, 0.5921080708503723, -0.252734899520874, -0.019539786502718925, 0.00445950124412775, 0.005845926236361265, -0.02317274734377861, 0.035892754793167114, 0.0965569019317627, -0.02352503500878811, 1.3556915521621704, 0.2963339388370514, -0.6138200163841248, 0.13441507518291473, -0.30837807059288025, -0.19234681129455566, -0.0644271969795227, 0.35887959599494934, 0.4531475305557251, -0.716824471950531, 0.6261278390884399]} +{"t": 2.3481, "q": [-0.30704841017723083, -0.027223046869039536, 0.01862812601029873, 0.6138564944267273, -0.33996763825416565, 0.010996012017130852, -0.39513298869132996, 0.01703570783138275, -0.01866830326616764, 0.5922614336013794, -0.2527601718902588, -0.019554132595658302, 0.004138095770031214, 0.00592937134206295, -0.023080123588442802, 0.035772912204265594, 0.09629324823617935, -0.023501066491007805, 1.355583667755127, 0.2963099777698517, -0.613796055316925, 0.13443903625011444, -0.30900126695632935, -0.19948941469192505, -0.06847786158323288, 0.32965007424354553, 0.4685951769351959, -0.6964872479438782, 0.6184938549995422]} +{"t": 2.3649, "q": [-0.3068864941596985, -0.027214523404836655, 0.018614735454320908, 0.6137542128562927, -0.33996760845184326, 0.01102505810558796, -0.39504778385162354, 0.017078319564461708, -0.0186415184289217, 0.5921677350997925, -0.25275593996047974, -0.01954694651067257, 0.0038568659219890833, 0.005929416976869106, -0.02314857766032219, 0.03558116406202316, 0.09613745659589767, -0.023549001663923264, 1.3554878234863281, 0.29641783237457275, -0.6138080358505249, 0.1344270557165146, -0.3110625445842743, -0.20760273933410645, -0.0743141770362854, 0.30280542373657227, 0.48393499851226807, -0.677600085735321, 0.6105483174324036]} +{"t": 2.3817, "q": [-0.30708250403404236, -0.027206001803278923, 0.018681693822145462, 0.613950252532959, -0.33997172117233276, 0.011003244668245316, -0.39518412947654724, 0.017069797962903976, -0.01862812601029873, 0.5923040509223938, -0.25276434421539307, -0.01953252963721752, 0.004405933897942305, 0.0059141553938388824, -0.02303117699921131, 0.034634411334991455, 0.09578990936279297, -0.023572970181703568, 1.3552241325378418, 0.29646575450897217, -0.6137361526489258, 0.13439109921455383, -0.311230331659317, -0.21624335646629333, -0.07952731847763062, 0.2725692093372345, 0.5020191669464111, -0.6534398794174194, 0.6017878651618958]} +{"t": 2.3984, "q": [-0.3071932792663574, -0.02725713513791561, 0.018614735454320908, 0.6137883067131042, -0.33997172117233276, 0.011003244668245316, -0.39517560601234436, 0.017001619562506676, -0.018681693822145462, 0.5921592116355896, -0.25275173783302307, -0.019539760425686836, 0.0041916631162166595, 0.005990012548863888, -0.022943416610360146, 0.03392734006047249, 0.0953824520111084, -0.02359693869948387, 1.3551762104034424, 0.2965256869792938, -0.6136882305145264, 0.1344030797481537, -0.3130039870738983, -0.22617828845977783, -0.08663396537303925, 0.24109864234924316, 0.5223084688186646, -0.6296032667160034, 0.5906665325164795]} +{"t": 2.4152, "q": [-0.3071506917476654, -0.027274178341031075, 0.018748654052615166, 0.61380535364151, -0.33996763825416565, 0.010996012017130852, -0.3952523171901703, 0.0169675312936306, -0.018534382805228233, 0.5923125743865967, -0.25275173783302307, -0.019539760425686836, 0.0038568659219890833, 0.006043076980859041, -0.022831134498119354, 0.033795516937971115, 0.09502292424440384, -0.02365685999393463, 1.3550323247909546, 0.2965256869792938, -0.6137361526489258, 0.13439109921455383, -0.3164075016975403, -0.2361731231212616, -0.0920388475060463, 0.21366675198078156, 0.5390384793281555, -0.6094458103179932, 0.5816903114318848]} +{"t": 2.4319, "q": [-0.30692058801651, -0.027274178341031075, 0.018882572650909424, 0.6138309240341187, -0.3399840295314789, 0.011010418646037579, -0.3952096998691559, 0.01702718622982502, -0.018427249044179916, 0.5922614336013794, -0.25275591015815735, -0.01953256130218506, 0.003696163184940815, 0.006141738034784794, -0.022787457332015038, 0.0334000363945961, 0.09469934552907944, -0.023800671100616455, 1.3551522493362427, 0.2965376675128937, -0.6135803461074829, 0.13431920111179352, -0.3209016025066376, -0.2470308393239975, -0.09988851845264435, 0.18224410712718964, 0.5595315098762512, -0.5826969742774963, 0.5692746639251709]} +{"t": 2.4488, "q": [-0.3070143163204193, -0.027274178341031075, 0.019083451479673386, 0.6139246821403503, -0.3399758040904999, 0.011010476388037205, -0.3953034579753876, 0.016993097960948944, -0.018212977796792984, 0.5924404263496399, -0.25275173783302307, -0.019539760425686836, 0.0036158119328320026, 0.006308667361736298, -0.022660883143544197, 0.032884713262319565, 0.09433981776237488, -0.02395646646618843, 1.3551043272018433, 0.2966335415840149, -0.6135084629058838, 0.13429522514343262, -0.3263903856277466, -0.2601415812969208, -0.10596451908349991, 0.1507495641708374, 0.5823734402656555, -0.555744469165802, 0.5555886626243591]} +{"t": 2.4655, "q": [-0.3069291114807129, -0.02731679007411003, 0.019123626872897148, 0.6138138771057129, -0.33995941281318665, 0.011010593734681606, -0.39526936411857605, 0.0169675312936306, -0.018186194822192192, 0.5923892855644226, -0.2527391016483307, -0.019532587379217148, 0.0036158119328320026, 0.006369393318891525, -0.022651307284832, 0.03293265029788017, 0.09408815205097198, -0.02424408681690693, 1.3552840948104858, 0.29659759998321533, -0.6134964823722839, 0.13423530757427216, -0.3345036804676056, -0.270927369594574, -0.1155518963932991, 0.12687699496746063, 0.5979768633842468, -0.5363540053367615, 0.5447788834571838]} +{"t": 2.4822, "q": [-0.30694615840911865, -0.027342356741428375, 0.01917719468474388, 0.6140440106391907, -0.3399758040904999, 0.011010476388037205, -0.3953460454940796, 0.0169675312936306, -0.01813262701034546, 0.5927216410636902, -0.2527391016483307, -0.019532587379217148, 0.003669379511848092, 0.006422477774322033, -0.022568361833691597, 0.032525185495615005, 0.09324925392866135, -0.024399882182478905, 1.3554039001464844, 0.2966814935207367, -0.6132447719573975, 0.13416339457035065, -0.3419339060783386, -0.28420591354370117, -0.12619389593601227, 0.095430389046669, 0.6211783289909363, -0.5063694715499878, 0.5293791890144348]} +{"t": 2.499, "q": [-0.30689501762390137, -0.02735939994454384, 0.019270937889814377, 0.6139246821403503, -0.33996763825416565, 0.010996012017130852, -0.39532899856567383, 0.016984576359391212, -0.018052276223897934, 0.5927472114562988, -0.2527223825454712, -0.019590172916650772, 0.0036158119328320026, 0.006468013860285282, -0.02254895493388176, 0.032513201236724854, 0.0923624262213707, -0.024459803476929665, 1.3554757833480835, 0.2966814935207367, -0.6131848692893982, 0.1341274529695511, -0.3520006537437439, -0.29828736186027527, -0.13642841577529907, 0.0689452514052391, 0.6403650641441345, -0.4825328588485718, 0.5149022340774536]} +{"t": 2.5157, "q": [-0.3068694472312927, -0.027393488213419914, 0.01931111328303814, 0.6140780448913574, -0.33996352553367615, 0.01101782638579607, -0.39537161588668823, 0.016941964626312256, -0.018025491386651993, 0.5930284261703491, -0.2527139484882355, -0.019575800746679306, 0.003468500915914774, 0.006612139288336039, -0.02237830124795437, 0.03232145681977272, 0.09097225219011307, -0.024807346984744072, 1.3557155132293701, 0.2969091832637787, -0.6130051016807556, 0.13395966589450836, -0.36358940601348877, -0.3123089075088501, -0.1472262144088745, 0.04338289424777031, 0.6616610884666443, -0.45415419340133667, 0.49898719787597656]} +{"t": 2.5325, "q": [-0.30680981278419495, -0.027393488213419914, 0.019431641325354576, 0.6141036152839661, -0.33995941281318665, 0.011010593734681606, -0.39541423320770264, 0.016984576359391212, -0.01781122200191021, 0.5932329893112183, -0.25264692306518555, -0.019719796255230904, 0.0035220684949308634, 0.006794210057705641, -0.022193223237991333, 0.03166232258081436, 0.09008542448282242, -0.024951156228780746, 1.3560510873794556, 0.2969331443309784, -0.6126096248626709, 0.13382785022258759, -0.3772154748439789, -0.328008234500885, -0.15952202677726746, 0.01583116129040718, 0.6812792420387268, -0.4253561198711395, 0.4810348153114319]} +{"t": 2.5493, "q": [-0.30676719546318054, -0.027410533279180527, 0.019458424299955368, 0.6141888499259949, -0.33995941281318665, 0.011010593734681606, -0.39544832706451416, 0.0169675312936306, -0.017878180369734764, 0.5933097004890442, -0.2526804506778717, -0.01966218277812004, 0.003575636073946953, 0.007203978952020407, -0.02194063365459442, 0.031015174463391304, 0.08961803466081619, -0.024987109005451202, 1.3562906980514526, 0.29692116379737854, -0.6124178767204285, 0.13363610208034515, -0.3917403519153595, -0.34362369775772095, -0.1726926863193512, -0.01013865415006876, 0.7024313807487488, -0.39552736282348633, 0.462387353181839]} +{"t": 2.5661, "q": [-0.30662232637405396, -0.02742757648229599, 0.01949859969317913, 0.6140525341033936, -0.33995121717453003, 0.010996129363775253, -0.3954653739929199, 0.01691639982163906, -0.01782461255788803, 0.5933863520622253, -0.2526678442955017, -0.019655009731650352, 0.003575636073946953, 0.007287533953785896, -0.02201431803405285, 0.030907316133379936, 0.08935438096523285, -0.024999093264341354, 1.3564225435256958, 0.29689720273017883, -0.6122980117797852, 0.13356418907642365, -0.4079430401325226, -0.3594069182872772, -0.18371817469596863, -0.028294755145907402, 0.7181546688079834, -0.37513020634651184, 0.4481980502605438]} +{"t": 2.5828, "q": [-0.30657970905303955, -0.027410533279180527, 0.01949859969317913, 0.6143507957458496, -0.33995121717453003, 0.010996129363775253, -0.3954312801361084, 0.0169675312936306, -0.017851397395133972, 0.5936505794525146, -0.2526762783527374, -0.01966938190162182, 0.003589028026908636, 0.007613809313625097, -0.02180548384785652, 0.03003246895968914, 0.0890188217163086, -0.025142904371023178, 1.3567101955413818, 0.2969810962677002, -0.6120942831039429, 0.13309679925441742, -0.42540404200553894, -0.3770357072353363, -0.19909393787384033, -0.05265868455171585, 0.7415719032287598, -0.3412148654460907, 0.4265425503253937]} +{"t": 2.5997, "q": [-0.3065967559814453, -0.027384966611862183, 0.0195119921118021, 0.6141462326049805, -0.3399471342563629, 0.010988897643983364, -0.39555057883262634, 0.01697605475783348, -0.017744261771440506, 0.5936846733093262, -0.2526930570602417, -0.019640568643808365, 0.003736338810995221, 0.00772002711892128, -0.021757179871201515, 0.0291815884411335, 0.08869525045156479, -0.02521480992436409, 1.3568899631500244, 0.2969810962677002, -0.6119744777679443, 0.132905051112175, -0.4436799883842468, -0.3951079249382019, -0.21195301413536072, -0.06997589021921158, 0.7586134672164917, -0.3169228434562683, 0.4096088409423828]} +{"t": 2.6165, "q": [-0.30649447441101074, -0.027384966611862183, 0.01932450570166111, 0.614180326461792, -0.3399389386177063, 0.010974414646625519, -0.39541423320770264, 0.017010143026709557, -0.018012098968029022, 0.5936846733093262, -0.25270983576774597, -0.019626157358288765, 0.0036292036529630423, 0.00794766191393137, -0.021680178120732307, 0.028606345877051353, 0.08853945881128311, -0.02527473121881485, 1.357297420501709, 0.29694512486457825, -0.6118306517601013, 0.13261744379997253, -0.4646523892879486, -0.41272473335266113, -0.22550716996192932, -0.08429703861474991, 0.7744206190109253, -0.29249897599220276, 0.39262717962265015]} +{"t": 2.6332, "q": [-0.30658823251724243, -0.02736792154610157, 0.019445031881332397, 0.6143763661384583, -0.3399389386177063, 0.010974414646625519, -0.395576149225235, 0.017010143026709557, -0.017864787951111794, 0.5940852165222168, -0.2527562379837036, -0.0196764525026083, 0.004419325385242701, 0.008266197517514229, -0.021408310160040855, 0.027479829266667366, 0.08820389956235886, -0.0255743358284235, 1.357537031173706, 0.2971368730068207, -0.611255407333374, 0.13186243176460266, -0.48718273639678955, -0.43174371123313904, -0.24088293313980103, -0.09946907311677933, 0.7918816804885864, -0.2624785006046295, 0.372913122177124]} +{"t": 2.65, "q": [-0.30666491389274597, -0.027393488213419914, 0.01931111328303814, 0.6144104599952698, -0.3399307429790497, 0.010959950275719166, -0.3956187665462494, 0.016950488090515137, -0.01795853115618229, 0.5940937399864197, -0.25276461243629456, -0.019662052392959595, 0.0045130690559744835, 0.00903990212827921, -0.020864812657237053, 0.02629338949918747, 0.08771254122257233, -0.025969816371798515, 1.3581362962722778, 0.2971728444099426, -0.6106442213058472, 0.1308078169822693, -0.5144468545913696, -0.4529677629470825, -0.2578645646572113, -0.11112972348928452, 0.8119671940803528, -0.2281556874513626, 0.34973564743995667]} +{"t": 2.6667, "q": [-0.3068353533744812, -0.027453143149614334, 0.01949859969317913, 0.6142314672470093, -0.33990612626075745, 0.010931062512099743, -0.39604488015174866, 0.016805611550807953, -0.01782461255788803, 0.5942556262016296, -0.25276461243629456, -0.019662052392959595, 0.004807690624147654, 0.009517930448055267, -0.02069607935845852, 0.025310683995485306, 0.0872930958867073, -0.026389263570308685, 1.358567714691162, 0.29731664061546326, -0.6100450158119202, 0.12939368188381195, -0.5417828559875488, -0.47445547580718994, -0.273012638092041, -0.1179487481713295, 0.8245626091957092, -0.20271317660808563, 0.3321068584918976]} +{"t": 2.6835, "q": [-0.30690354108810425, -0.027512798085808754, 0.019445031881332397, 0.6145126819610596, -0.33990204334259033, 0.010923829860985279, -0.39601078629493713, 0.016763001680374146, -0.017878180369734764, 0.5943323373794556, -0.2527603805065155, -0.019640464335680008, 0.004539852496236563, 0.010352468118071556, -0.02039790153503418, 0.02431599237024784, 0.08671785145998001, -0.026940537616610527, 1.3590351343154907, 0.297484427690506, -0.609685480594635, 0.12784771621227264, -0.5744279026985168, -0.49642255902290344, -0.2903418242931366, -0.12078900635242462, 0.8361393809318542, -0.17514945566654205, 0.3136511445045471]} +{"t": 2.7002, "q": [-0.3069291114807129, -0.02749575488269329, 0.01947181671857834, 0.6142314672470093, -0.33990204334259033, 0.010923829860985279, -0.3963431417942047, 0.016771523281931877, -0.01765051856637001, 0.5944857001304626, -0.2527855634689331, -0.019626040011644363, 0.004874649923294783, 0.010800307616591454, -0.020483622327446938, 0.023369239643216133, 0.08650213479995728, -0.02725212834775448, 1.3593946695327759, 0.2977360785007477, -0.6092420816421509, 0.12645754218101501, -0.6039450168609619, -0.5180061459541321, -0.3032967746257782, -0.12245481461286545, 0.8454750776290894, -0.15574699640274048, 0.300396591424942]} +{"t": 2.717, "q": [-0.30693763494491577, -0.027478709816932678, 0.019418248906731606, 0.6142399907112122, -0.33991023898124695, 0.010938312858343124, -0.3963005244731903, 0.016873788088560104, -0.017771044746041298, 0.594443142414093, -0.2528446912765503, -0.01972668245434761, 0.004472893197089434, 0.011104021221399307, -0.020622115582227707, 0.022350579500198364, 0.08610665798187256, -0.02755173295736313, 1.359694242477417, 0.29781997203826904, -0.6089783906936646, 0.1257145255804062, -0.6376206874847412, -0.5411357283592224, -0.3194275498390198, -0.12202338129281998, 0.8500051498413086, -0.13176655769348145, 0.2841459810733795]} +{"t": 2.7338, "q": [-0.3070143163204193, -0.027384966611862183, 0.019445031881332397, 0.6140269637107849, -0.33990204334259033, 0.010923829860985279, -0.3964880108833313, 0.016941964626312256, -0.01782461255788803, 0.5943920016288757, -0.253017783164978, -0.019992634654045105, 0.004874649923294783, 0.011255833320319653, -0.020652329549193382, 0.020960409194231033, 0.08593887835741043, -0.0279831662774086, 1.3600298166275024, 0.2980476915836334, -0.6084390878677368, 0.12489959597587585, -0.6698702573776245, -0.5640615224838257, -0.3326581120491028, -0.12199941277503967, 0.8529173135757446, -0.11329886317253113, 0.2727130353450775]} +{"t": 2.7505, "q": [-0.3069717288017273, -0.027274178341031075, 0.01915041171014309, 0.61380535364151, -0.33990612626075745, 0.010931062512099743, -0.39636871218681335, 0.017078319564461708, -0.018105842173099518, 0.5943408608436584, -0.2531825304031372, -0.020287372171878815, 0.004205055069178343, 0.011331836692988873, -0.0207503829151392, 0.020241355523467064, 0.08599880337715149, -0.028306739404797554, 1.3600777387619019, 0.29826340079307556, -0.6081754565238953, 0.1245400682091713, -0.7002143263816833, -0.583907425403595, -0.3424132764339447, -0.11878763884305954, 0.8547748923301697, -0.09954097121953964, 0.26354509592056274]} +{"t": 2.7673, "q": [-0.30693763494491577, -0.02712930366396904, 0.019217370077967644, 0.6139672994613647, -0.33991843461990356, 0.010938254185020924, -0.3965647220611572, 0.017299894243478775, -0.018025491386651993, 0.5947754979133606, -0.2534570097923279, -0.020740216597914696, 0.004338974133133888, 0.01129385270178318, -0.020715992897748947, 0.01900698058307171, 0.08605872094631195, -0.02882206253707409, 1.3609405755996704, 0.2988745868206024, -0.6073605418205261, 0.12395284324884415, -0.7325477600097656, -0.6040409207344055, -0.35388219356536865, -0.11581555008888245, 0.8557335734367371, -0.08382965624332428, 0.25520408153533936]} +{"t": 2.784, "q": [-0.3068438768386841, -0.0270099937915802, 0.018936140462756157, 0.6136605143547058, -0.33992666006088257, 0.010923672467470169, -0.3965306282043457, 0.01745329238474369, -0.018253153190016747, 0.594673216342926, -0.2535836696624756, -0.020941488444805145, 0.0037497307639569044, 0.011331836692988873, -0.0207503829151392, 0.01812014915049076, 0.08608268946409225, -0.029409289360046387, 1.3614919185638428, 0.2992580831050873, -0.6070249676704407, 0.12316188216209412, -0.7654923796653748, -0.6222449541091919, -0.3623550236225128, -0.10721088200807571, 0.8550744652748108, -0.06968826800584793, 0.24761806428432465]} +{"t": 2.8008, "q": [-0.30694615840911865, -0.026992948725819588, 0.019123626872897148, 0.6134815216064453, -0.3399266302585602, 0.010952718555927277, -0.3970845639705658, 0.017478859052062035, -0.018092451617121696, 0.5949459075927734, -0.2538074254989624, -0.021279290318489075, 0.0036425956059247255, 0.011377358809113503, -0.02074090577661991, 0.01629854552447796, 0.0860707089304924, -0.030643664300441742, 1.3627022504806519, 0.30086398124694824, -0.6053351759910583, 0.12146012485027313, -0.7989163994789124, -0.6392146348953247, -0.3711394667625427, -0.09894176572561264, 0.8550265431404114, -0.05553489923477173, 0.240139901638031]} +{"t": 2.8175, "q": [-0.30709102749824524, -0.026958860456943512, 0.019096843898296356, 0.6130639314651489, -0.33991843461990356, 0.010938254185020924, -0.39729762077331543, 0.017521468922495842, -0.01811923459172249, 0.5948606729507446, -0.2538413107395172, -0.021379990503191948, 0.004231838975101709, 0.011514096520841122, -0.020858850330114365, 0.014309165067970753, 0.08616658300161362, -0.03196192905306816, 1.3633134365081787, 0.3026735782623291, -0.6044124364852905, 0.12005797028541565, -0.8296200037002563, -0.6570471525192261, -0.37707164883613586, -0.09014534205198288, 0.8546310663223267, -0.04388623312115669, 0.23480692505836487]} +{"t": 2.8344, "q": [-0.3073040843009949, -0.026933293789625168, 0.019029883667826653, 0.6132599711418152, -0.3399389386177063, 0.010945369489490986, -0.397629976272583, 0.017598168924450874, -0.018186194822192192, 0.5953379273414612, -0.25426751375198364, -0.021947719156742096, 0.0037095551379024982, 0.01170369703322649, -0.020757565274834633, 0.013062805868685246, 0.08619055151939392, -0.03347194194793701, 1.364248275756836, 0.3046989142894745, -0.6026867032051086, 0.11768509447574615, -0.8643262982368469, -0.6707450747489929, -0.38236868381500244, -0.07455386221408844, 0.8540678024291992, -0.029648972675204277, 0.23046863079071045]} +{"t": 2.8511, "q": [-0.30741485953330994, -0.026916250586509705, 0.01917719468474388, 0.6130298376083374, -0.3399389386177063, 0.010945369489490986, -0.39806461334228516, 0.01768338866531849, -0.018025491386651993, 0.5954828262329102, -0.2543308138847351, -0.022041145712137222, 0.003655987558886409, 0.011946827173233032, -0.02096451446413994, 0.01197224110364914, 0.08628641813993454, -0.03443067893385887, 1.3647276163101196, 0.3054419457912445, -0.5999782681465149, 0.11512047052383423, -0.8963241577148438, -0.6840475797653198, -0.3862156271934509, -0.0589863583445549, 0.8524739146232605, -0.01918674446642399, 0.2267894744873047]} +{"t": 2.8679, "q": [-0.3075767755508423, -0.026933293789625168, 0.01931111328303814, 0.613132119178772, -0.3399266302585602, 0.010952718555927277, -0.39835435152053833, 0.01768338866531849, -0.018012098968029022, 0.5959004163742065, -0.25442367792129517, -0.022170525044202805, 0.003696163184940815, 0.012204689905047417, -0.02082955650985241, 0.010330402292311192, 0.08626244962215424, -0.03586878627538681, 1.3657941818237305, 0.3060411512851715, -0.5966945886611938, 0.1116570234298706, -0.9302515387535095, -0.6968947052955627, -0.3898947834968567, -0.039440084248781204, 0.848770797252655, -0.005584648810327053, 0.2244165986776352]} +{"t": 2.8848, "q": [-0.3084034323692322, -0.026924772188067436, 0.019244154915213585, 0.612825334072113, -0.3399225175380707, 0.010960008949041367, -0.3992747366428375, 0.01769191212952137, -0.018052276223897934, 0.5959855914115906, -0.2544616162776947, -0.022206448018550873, 0.003669379511848092, 0.012531436048448086, -0.02112038992345333, 0.00906007457524538, 0.08622650057077408, -0.03681553900241852, 1.3663934469223022, 0.3061969578266144, -0.5943096876144409, 0.10939200967550278, -0.9629085063934326, -0.7085433602333069, -0.3926871120929718, -0.021703431382775307, 0.8450077176094055, 0.0049375006929039955, 0.22170816361904144]} +{"t": 2.9015, "q": [-0.30900850892066956, -0.02694181725382805, 0.01952538453042507, 0.613132119178772, -0.33991843461990356, 0.010952777229249477, -0.4001525342464447, 0.0177004337310791, -0.017838004976511, 0.5966929793357849, -0.2544575333595276, -0.022256802767515182, 0.003669379511848092, 0.012834719382226467, -0.020897777751088142, 0.007981494069099426, 0.08610665798187256, -0.03781023249030113, 1.3671483993530273, 0.3064126670360565, -0.5921405553817749, 0.10787001252174377, -0.9959130883216858, -0.7184183597564697, -0.39325037598609924, -0.0012223910307511687, 0.8435336351394653, 0.015028218738734722, 0.22060561180114746]} +{"t": 2.9183, "q": [-0.3098095953464508, -0.0270099937915802, 0.019873572513461113, 0.6130980253219604, -0.3398856222629547, 0.010953010991215706, -0.40105587244033813, 0.017666345462203026, -0.017516599968075752, 0.5972639322280884, -0.25434014201164246, -0.022444050759077072, 0.004312190227210522, 0.012948425486683846, -0.020795967429876328, 0.0063156867399811745, 0.08620253205299377, -0.03888881206512451, 1.3674839735031128, 0.30655649304389954, -0.5909661054611206, 0.10667158663272858, -1.0255740880966187, -0.7294678092002869, -0.39309456944465637, 0.015519571490585804, 0.8408012390136719, 0.021871211007237434, 0.22047379612922668]} +{"t": 2.935, "q": [-0.31003114581108093, -0.026992948725819588, 0.019779829308390617, 0.6133962869644165, -0.33990201354026794, 0.010952912271022797, -0.401439368724823, 0.017674867063760757, -0.01763712614774704, 0.5976729989051819, -0.25436532497406006, -0.022429626435041428, 0.003776514669880271, 0.013546985574066639, -0.020042721182107925, 0.00535694882273674, 0.08611864596605301, -0.04000334441661835, 1.367843508720398, 0.30670028924942017, -0.5904028415679932, 0.10566491633653641, -1.0609993934631348, -0.7370178699493408, -0.3919440805912018, 0.03795403987169266, 0.8332871198654175, 0.02943325787782669, 0.22158832848072052]} +{"t": 2.9517, "q": [-0.3102782964706421, -0.0270099937915802, 0.019953925162553787, 0.6129360795021057, -0.3398774266242981, 0.010938546620309353, -0.4018995761871338, 0.017657823860645294, -0.01744963973760605, 0.5977497100830078, -0.2543569505214691, -0.022444024682044983, 0.00445950124412775, 0.013615379109978676, -0.02010677568614483, 0.004589958116412163, 0.08608268946409225, -0.04086620733141899, 1.3679993152618408, 0.3071437180042267, -0.5899354815483093, 0.10492189228534698, -1.0875684022903442, -0.7440765500068665, -0.3919680416584015, 0.05251487344503403, 0.8265520334243774, 0.03594069182872772, 0.22158832848072052]} +{"t": 2.9685, "q": [-0.3102697730064392, -0.02707817032933235, 0.019605735316872597, 0.6134985685348511, -0.3398733139038086, 0.010931314900517464, -0.4017120897769928, 0.017674867063760757, -0.017757654190063477, 0.5981161594390869, -0.2533845901489258, -0.024157941341400146, 0.0038702578749507666, 0.013888062909245491, -0.019806548953056335, 0.003918841481208801, 0.08601078391075134, -0.0415373258292675, 1.3681191205978394, 0.3074433207511902, -0.5897916555404663, 0.1044185534119606, -1.119027018547058, -0.750236451625824, -0.3887203335762024, 0.07529688626527786, 0.8155505061149597, 0.04254399985074997, 0.22313429415225983]} +{"t": 2.9854, "q": [-0.31026124954223633, -0.027086691930890083, 0.02002088353037834, 0.6132940649986267, -0.3398774266242981, 0.010924023576080799, -0.402070015668869, 0.017666345462203026, -0.017436247318983078, 0.5987041592597961, -0.2527611255645752, -0.02574898861348629, 0.004272014833986759, 0.014031962491571903, -0.019636843353509903, 0.003055977402254939, 0.08603475242853165, -0.04195677116513252, 1.3683468103408813, 0.3075391948223114, -0.5892403721809387, 0.10387926548719406, -1.1488078832626343, -0.755689263343811, -0.38465768098831177, 0.09622134268283844, 0.8049564361572266, 0.046954195946455, 0.22586669027805328]} +{"t": 3.0022, "q": [-0.31028681993484497, -0.027103736996650696, 0.02014141157269478, 0.6131406426429749, -0.339865118265152, 0.01091685052961111, -0.40229156613349915, 0.017606690526008606, -0.017275545746088028, 0.5987297296524048, -0.2527611255645752, -0.02574898861348629, 0.004084527958184481, 0.014486923813819885, -0.019435646012425423, 0.002157160546630621, 0.08586697280406952, -0.04242415726184845, 1.3684786558151245, 0.30762308835983276, -0.5890965461730957, 0.10341188311576843, -1.183286428451538, -0.7614536881446838, -0.3793606460094452, 0.12173575907945633, 0.7945301532745361, 0.053952980786561966, 0.22942601144313812]} +{"t": 3.0189, "q": [-0.31029534339904785, -0.02712930366396904, 0.01998070813715458, 0.6127741932868958, -0.33984872698783875, 0.010902426205575466, -0.4022148847579956, 0.017598168924450874, -0.01750320754945278, 0.5986700654029846, -0.25275275111198425, -0.025763386860489845, 0.004888041876256466, 0.014494519680738449, -0.01944059506058693, 0.000850879994686693, 0.08590292930603027, -0.042520031332969666, 1.3682390451431274, 0.30752721428871155, -0.5891924500465393, 0.10318417847156525, -1.2107902765274048, -0.7683446407318115, -0.3738119602203369, 0.14082662761211395, 0.7860932946205139, 0.05814746022224426, 0.23111578822135925]} +{"t": 3.0359, "q": [-0.3103720545768738, -0.02712078019976616, 0.019686086103320122, 0.6133025288581848, -0.3398733139038086, 0.010931314900517464, -0.40224897861480713, 0.017598168924450874, -0.017744261771440506, 0.5990279912948608, -0.25289618968963623, -0.025935862213373184, 0.004218447022140026, 0.01459276583045721, -0.019192345440387726, 0.0003834952076431364, 0.08580705523490906, -0.04256796836853027, 1.3682869672775269, 0.3073714077472687, -0.5891565084457397, 0.10300441831350327, -1.2426443099975586, -0.7713766694068909, -0.36810746788978577, 0.16649684309959412, 0.7756909728050232, 0.06215019151568413, 0.2365685999393463]} +{"t": 3.0526, "q": [-0.3102271556854248, -0.027052603662014008, 0.02002088353037834, 0.6129446029663086, -0.339873343706131, 0.01091679185628891, -0.402300089597702, 0.017726000398397446, -0.017516599968075752, 0.599087655544281, -0.2529469132423401, -0.026050884276628494, 0.004539852496236563, 0.014570008963346481, -0.01919703371822834, -0.00028762139845639467, 0.08562728762626648, -0.04284360632300377, 1.368358850479126, 0.3076949715614319, -0.588533341884613, 0.10253702849149704, -1.271993637084961, -0.7747681736946106, -0.362714558839798, 0.18678613007068634, 0.7674338221549988, 0.06512227654457092, 0.24119451642036438]} +{"t": 3.0693, "q": [-0.3101760447025299, -0.027112258598208427, 0.02002088353037834, 0.6130127906799316, -0.339865118265152, 0.01091685052961111, -0.4023682773113251, 0.017666345462203026, -0.01744963973760605, 0.5992496013641357, -0.25294697284698486, -0.026065288111567497, 0.0038702578749507666, 0.014600266702473164, -0.019138682633638382, -0.0010186590952798724, 0.08583102375268936, -0.04286757484078407, 1.36841881275177, 0.30750322341918945, -0.588473379611969, 0.10236924886703491, -1.305741310119629, -0.7770092487335205, -0.35692617297172546, 0.21539248526096344, 0.7549343109130859, 0.06864564120769501, 0.244657963514328]} +{"t": 3.0861, "q": [-0.31021010875701904, -0.02706112712621689, 0.02000749297440052, 0.6127997636795044, -0.33985692262649536, 0.010902367532253265, -0.40242794156074524, 0.017674867063760757, -0.01746303215622902, 0.5992240309715271, -0.2529427707195282, -0.026072487235069275, 0.004419325385242701, 0.014585074968636036, -0.01912878267467022, -0.0025166873820126057, 0.08583102375268936, -0.04292749613523483, 1.36841881275177, 0.30752721428871155, -0.5883415937423706, 0.10222543776035309, -1.3345273733139038, -0.7803887724876404, -0.3525279760360718, 0.23640082776546478, 0.7471205592155457, 0.07532085478305817, 0.2468031346797943]} +{"t": 3.1028, "q": [-0.31020161509513855, -0.02706112712621689, 0.019686086103320122, 0.6130895018577576, -0.33986103534698486, 0.0109241409227252, -0.40227454900741577, 0.017708955332636833, -0.01782461255788803, 0.5992836952209473, -0.2529553771018982, -0.026065275073051453, 0.0041247038170695305, 0.014584948308765888, -0.019050631672143936, -0.003775030840188265, 0.08585499227046967, -0.04286757484078407, 1.3682869672775269, 0.30734744668006897, -0.5883775353431702, 0.10218948870897293, -1.3651111125946045, -0.7818508744239807, -0.34629616141319275, 0.2628859579563141, 0.7340338230133057, 0.08028232306241989, 0.2510814964771271]} +{"t": 3.1196, "q": [-0.31020161509513855, -0.027086691930890083, 0.020061058923602104, 0.6129701733589172, -0.33985692262649536, 0.010902367532253265, -0.4025301933288574, 0.017666345462203026, -0.01744963973760605, 0.5995222926139832, -0.25297656655311584, -0.02612999454140663, 0.00445950124412775, 0.01459245104342699, -0.018996980041265488, -0.005332980304956436, 0.08581903576850891, -0.04292749613523483, 1.3684786558151245, 0.30750322341918945, -0.5880539417266846, 0.10192583501338959, -1.3970850706100464, -0.7833848595619202, -0.34025612473487854, 0.28790903091430664, 0.7242786288261414, 0.08486030250787735, 0.25283119082450867]} +{"t": 3.1364, "q": [-0.3101760447025299, -0.027103736996650696, 0.019927140325307846, 0.6130042672157288, -0.33985692262649536, 0.010902367532253265, -0.4023938477039337, 0.017657823860645294, -0.01750320754945278, 0.5994114875793457, -0.2529807984828949, -0.026137182489037514, 0.004044352564960718, 0.014592437073588371, -0.018987230956554413, -0.006819024216383696, 0.08580705523490906, -0.04290352761745453, 1.3682869672775269, 0.3072875142097473, -0.5881977677345276, 0.10187789797782898, -1.4298498630523682, -0.7850146889686584, -0.3311121463775635, 0.32003873586654663, 0.706589937210083, 0.0896899402141571, 0.2559471130371094]} +{"t": 3.1532, "q": [-0.310167521238327, -0.027035560458898544, 0.01996731571853161, 0.6128509044647217, -0.33985692262649536, 0.010902367532253265, -0.4024023711681366, 0.017674867063760757, -0.01750320754945278, 0.5993433594703674, -0.2529975473880768, -0.026108384132385254, 0.004338974133133888, 0.01456971000880003, -0.01901143603026867, -0.00866459496319294, 0.0857710987329483, -0.04290352761745453, 1.3682749271392822, 0.3073953688144684, -0.5878022909164429, 0.10161424428224564, -1.458923578262329, -0.7871119379997253, -0.32380178570747375, 0.3445105254650116, 0.6939225792884827, 0.09574197232723236, 0.2592427730560303]} +{"t": 3.17, "q": [-0.3101249039173126, -0.027018515393137932, 0.019900357350707054, 0.613132119178772, -0.3398692309856415, 0.010924082249403, -0.4023171365261078, 0.01768338866531849, -0.017610343173146248, 0.5993944406509399, -0.25301435589790344, -0.02609395608305931, 0.004044352564960718, 0.014524143189191818, -0.018981846049427986, -0.010366355068981647, 0.08573514968156815, -0.04278368502855301, 1.3683228492736816, 0.3072875142097473, -0.5877543687820435, 0.10138654708862305, -1.4906938076019287, -0.7877111434936523, -0.3156764805316925, 0.37711960077285767, 0.6757185459136963, 0.09816279262304306, 0.2642281949520111]} +{"t": 3.1867, "q": [-0.31021010875701904, -0.027018515393137932, 0.020114626735448837, 0.6127230525016785, -0.33985692262649536, 0.010902367532253265, -0.40266653895378113, 0.017649300396442413, -0.017235370352864265, 0.5993944406509399, -0.25308990478515625, -0.026021892204880714, 0.004312190227210522, 0.014471038244664669, -0.018986325711011887, -0.011984225362539291, 0.08569919317960739, -0.04286757484078407, 1.368430733680725, 0.3073714077472687, -0.5872510075569153, 0.10091915726661682, -1.521013855934143, -0.7883822321891785, -0.3087376058101654, 0.4069962799549103, 0.6620085835456848, 0.10115884244441986, 0.2679792642593384]} +{"t": 3.2035, "q": [-0.31029534339904785, -0.02707817032933235, 0.01983339712023735, 0.6127400994300842, -0.3398692309856415, 0.010909559205174446, -0.4024960994720459, 0.017606690526008606, -0.017516599968075752, 0.5990535616874695, -0.25308987498283386, -0.026007506996393204, 0.004138095770031214, 0.014493708498775959, -0.018923118710517883, -0.013590111397206783, 0.08555538207292557, -0.0427357479929924, 1.3682749271392822, 0.3072875142097473, -0.5873109102249146, 0.10073939710855484, -1.5499318838119507, -0.788334310054779, -0.30003705620765686, 0.4388383626937866, 0.6427739262580872, 0.09986454993486404, 0.2722935676574707]} +{"t": 3.2203, "q": [-0.31061065196990967, -0.027112258598208427, 0.020114626735448837, 0.6127912402153015, -0.33985283970832825, 0.010895135812461376, -0.4029989242553711, 0.017461813986301422, -0.017195194959640503, 0.5993263125419617, -0.2530982792377472, -0.025993090122938156, 0.004727339372038841, 0.014455721713602543, -0.01888870820403099, -0.015675365924835205, 0.08533966541290283, -0.04283162206411362, 1.3684786558151245, 0.30734744668006897, -0.5866278409957886, 0.10042780637741089, -1.5818817615509033, -0.7893170118331909, -0.2925349473953247, 0.47063252329826355, 0.6273741722106934, 0.09968478232622147, 0.27732694149017334]} +{"t": 3.2371, "q": [-0.3106873631477356, -0.027163391932845116, 0.019900357350707054, 0.6127145290374756, -0.33986514806747437, 0.010902327485382557, -0.4028710722923279, 0.017461813986301422, -0.017382681369781494, 0.5990535616874695, -0.2530982792377472, -0.025993090122938156, 0.0045130690559744835, 0.014448113739490509, -0.018874026834964752, -0.01734117418527603, 0.08531569689512253, -0.04286757484078407, 1.3681670427322388, 0.30732348561286926, -0.5871191620826721, 0.10054764896631241, -1.6136280298233032, -0.7886459231376648, -0.2853563725948334, 0.5047875642776489, 0.6113033294677734, 0.09619737416505814, 0.2824082672595978]} +{"t": 3.2539, "q": [-0.3107640743255615, -0.02712930366396904, 0.020034275949001312, 0.6126889586448669, -0.339865118265152, 0.01091685052961111, -0.40307560563087463, 0.01744477078318596, -0.017208585515618324, 0.5990620851516724, -0.25310665369033813, -0.0259786918759346, 0.0049148257821798325, 0.014372183009982109, -0.018834460526704788, -0.018971027806401253, 0.08511196821928024, -0.04292749613523483, 1.3681910037994385, 0.30732348561286926, -0.5871071815490723, 0.10048773139715195, -1.6429173946380615, -0.7886698842048645, -0.28029903769493103, 0.535563051700592, 0.5977611541748047, 0.09489109367132187, 0.2861952781677246]} +{"t": 3.2706, "q": [-0.31084927916526794, -0.02718043513596058, 0.019739653915166855, 0.6127486228942871, -0.3398733139038086, 0.010931314900517464, -0.40287959575653076, 0.017419204115867615, -0.017516599968075752, 0.5987553000450134, -0.2530815005302429, -0.02602190524339676, 0.0043523660860955715, 0.014265859499573708, -0.018765415996313095, -0.020445087924599648, 0.08478839695453644, -0.04292749613523483, 1.3679513931274414, 0.3072875142097473, -0.5875865817070007, 0.10060757398605347, -1.6750351190567017, -0.7877950072288513, -0.27292874455451965, 0.5718752145767212, 0.5800724625587463, 0.08817993104457855, 0.2904856503009796]} +{"t": 3.2874, "q": [-0.3110111951828003, -0.02718043513596058, 0.019900357350707054, 0.6125611066818237, -0.3398815393447876, 0.01091673318296671, -0.40307560563087463, 0.017368070781230927, -0.017355896532535553, 0.5986871123313904, -0.2531234622001648, -0.025964280590415, 0.0047541228123009205, 0.014151942916214466, -0.01869143918156624, -0.022278673946857452, 0.08432100713253021, -0.043167177587747574, 1.3678674697875977, 0.30732348561286926, -0.5875506401062012, 0.10055963695049286, -1.704444408416748, -0.7876152396202087, -0.26765570044517517, 0.60520339012146, 0.5652239918708801, 0.08466855436563492, 0.2935056686401367]} +{"t": 3.3042, "q": [-0.31112200021743774, -0.027154870331287384, 0.019766438752412796, 0.612313985824585, -0.3398692309856415, 0.010924082249403, -0.40298187732696533, 0.017368070781230927, -0.017610343173146248, 0.5982609987258911, -0.2530437409877777, -0.02607233077287674, 0.004821082577109337, 0.013946962542831898, -0.018607033416628838, -0.02425607107579708, 0.0836019515991211, -0.043227098882198334, 1.36767578125, 0.30734744668006897, -0.5876105427742004, 0.10051169991493225, -1.7290960550308228, -0.7878190279006958, -0.26279008388519287, 0.6292916536331177, 0.5542704463005066, 0.08161257207393646, 0.2950636148452759]} +{"t": 3.3209, "q": [-0.3111305236816406, -0.027171913534402847, 0.01964591071009636, 0.6122117042541504, -0.3398733139038086, 0.010931314900517464, -0.4028540253639221, 0.01739363744854927, -0.01766391098499298, 0.5981417298316956, -0.25310248136520386, -0.02598589099943638, 0.004740730859339237, 0.013460922054946423, -0.01829124428331852, -0.026149580255150795, 0.08282297849655151, -0.043346941471099854, 1.3673760890960693, 0.30727553367614746, -0.5877183675765991, 0.10057161748409271, -1.7525371313095093, -0.7876991629600525, -0.2572653591632843, 0.6527447700500488, 0.5442516207695007, 0.07808921486139297, 0.29816752672195435]} +{"t": 3.3379, "q": [-0.31125834584236145, -0.02718043513596058, 0.02000749297440052, 0.6125866770744324, -0.3399266004562378, 0.010996305383741856, -0.4033142328262329, 0.01739363744854927, -0.017248760908842087, 0.5985848903656006, -0.2532033920288086, -0.02595694735646248, 0.004218447022140026, 0.013407276943325996, -0.017915023490786552, -0.027767449617385864, 0.08167249709367752, -0.04339487850666046, 1.3671125173568726, 0.3071197271347046, -0.5883296132087708, 0.10070344805717468, -1.7847627401351929, -0.7857816815376282, -0.25098562240600586, 0.6881581544876099, 0.5259876251220703, 0.06605704873800278, 0.3056696355342865]} +{"t": 3.3546, "q": [-0.3111816346645355, -0.027342356741428375, 0.02019497938454151, 0.6120583415031433, -0.33990612626075745, 0.01097466703504324, -0.40329718589782715, 0.017316939309239388, -0.017047883942723274, 0.5982184410095215, -0.2531655430793762, -0.025964215397834778, 0.0038300822488963604, 0.013452772982418537, -0.017895840108394623, -0.029469210654497147, 0.08018644899129868, -0.04369448497891426, 1.3670165538787842, 0.3072156012058258, -0.5884613990783691, 0.10066749155521393, -1.814028263092041, -0.7848948240280151, -0.24501748383045197, 0.7229963541030884, 0.5087782740592957, 0.059669457376003265, 0.30914506316185]} +{"t": 3.3714, "q": [-0.3111390471458435, -0.02736792154610157, 0.020034275949001312, 0.6117174625396729, -0.3399142920970917, 0.010989131405949593, -0.4031267464160919, 0.01732546091079712, -0.017288938164711, 0.5979968309402466, -0.2531486451625824, -0.025935452431440353, 0.0038300822488963604, 0.013179365545511246, -0.01770833507180214, -0.03136271610856056, 0.07844873517751694, -0.04388623312115669, 1.366645097732544, 0.30715569853782654, -0.588844895362854, 0.10070344805717468, -1.8408608436584473, -0.784739077091217, -0.24057133495807648, 0.7524176239967346, 0.49307897686958313, 0.052442967891693115, 0.3112662732601166]} +{"t": 3.3882, "q": [-0.3111560642719269, -0.027410533279180527, 0.020087843760848045, 0.6117174625396729, -0.3399184048175812, 0.010996364057064056, -0.4032289981842041, 0.01727432757616043, -0.017275545746088028, 0.5981332063674927, -0.2531863749027252, -0.025870641693472862, 0.0038702578749507666, 0.012868039309978485, -0.017535187304019928, -0.03314836695790291, 0.0770346000790596, -0.04398210719227791, 1.3663215637207031, 0.3072635531425476, -0.5891205668449402, 0.10067947953939438, -1.8685084581375122, -0.7844274640083313, -0.23572970926761627, 0.7818628549575806, 0.48026782274246216, 0.04471314325928688, 0.3148255944252014]} +{"t": 3.4049, "q": [-0.3110623359680176, -0.027453143149614334, 0.020114626735448837, 0.6116918921470642, -0.3399142920970917, 0.010989131405949593, -0.40316084027290344, 0.0172658059746027, -0.017248760908842087, 0.5980564951896667, -0.2532031536102295, -0.025856249034404755, 0.003696163184940815, 0.012609830126166344, -0.01735767349600792, -0.03480219095945358, 0.07630356401205063, -0.04406599700450897, 1.3662855625152588, 0.30715569853782654, -0.5892283916473389, 0.10069146007299423, -1.8955928087234497, -0.7835046648979187, -0.23044466972351074, 0.8139206171035767, 0.46378952264785767, 0.0357968807220459, 0.3173542618751526]} +{"t": 3.4217, "q": [-0.3111986815929413, -0.02748723141849041, 0.020128019154071808, 0.611632227897644, -0.33990612626075745, 0.01097466703504324, -0.40324604511260986, 0.017231717705726624, -0.017235370352864265, 0.5980820655822754, -0.2532157003879547, -0.025820229202508926, 0.0038434739690274, 0.012442626059055328, -0.017113059759140015, -0.0363960936665535, 0.07566839456558228, -0.04422179237008095, 1.3662855625152588, 0.30717965960502625, -0.5891924500465393, 0.10064352303743362, -1.9220300912857056, -0.7832170724868774, -0.22551915049552917, 0.8442287445068359, 0.44834184646606445, 0.030056437477469444, 0.31893619894981384]} +{"t": 3.4386, "q": [-0.31130096316337585, -0.027521319687366486, 0.01999410055577755, 0.6114873290061951, -0.33991020917892456, 0.010981899686157703, -0.4032630920410156, 0.017189105972647667, -0.017409464344382286, 0.5979201197624207, -0.2532283067703247, -0.025813035666942596, 0.0038702578749507666, 0.012260311283171177, -0.016916967928409576, -0.037714358419179916, 0.07506918907165527, -0.04429369792342186, 1.365962028503418, 0.30708378553390503, -0.5894680619239807, 0.10069146007299423, -1.9494140148162842, -0.7831331491470337, -0.2196468859910965, 0.874261200428009, 0.4333975315093994, 0.021679462864995003, 0.3212251663208008]} +{"t": 3.4554, "q": [-0.31117311120033264, -0.027521319687366486, 0.020034275949001312, 0.611419141292572, -0.33990609645843506, 0.010989190079271793, -0.403237521648407, 0.017231717705726624, -0.017396071925759315, 0.5980991125106812, -0.25321146845817566, -0.025813043117523193, 0.003910433501005173, 0.012222136370837688, -0.016716768965125084, -0.03856523707509041, 0.07394266873598099, -0.04458131641149521, 1.3657103776931763, 0.30720362067222595, -0.5894800424575806, 0.10064352303743362, -1.9765583276748657, -0.7824620604515076, -0.21364277601242065, 0.9043536186218262, 0.41833335161209106, 0.012775183655321598, 0.3224954903125763]} +{"t": 3.4722, "q": [-0.31103676557540894, -0.02754688635468483, 0.019940532743930817, 0.6112061142921448, -0.33991020917892456, 0.010981899686157703, -0.40307560563087463, 0.017231717705726624, -0.017556775361299515, 0.5980650186538696, -0.2532199025154114, -0.02581303007900715, 0.00388364982791245, 0.012085544876754284, -0.016686655580997467, -0.039392147213220596, 0.07269631326198578, -0.04478504881262779, 1.3656504154205322, 0.3071437180042267, -0.5895160436630249, 0.10069146007299423, -2.002312421798706, -0.7818987965583801, -0.20854948461055756, 0.9298800230026245, 0.40558212995529175, 0.007909588515758514, 0.32292693853378296]} +{"t": 3.489, "q": [-0.3110197186470032, -0.027538364753127098, 0.019927140325307846, 0.6114532351493835, -0.3399184048175812, 0.010981841012835503, -0.403237521648407, 0.017223196104168892, -0.017610343173146248, 0.5986530184745789, -0.2532157003879547, -0.025820229202508926, 0.003910433501005173, 0.01182733103632927, -0.01646069996058941, -0.03984754905104637, 0.07144995033740997, -0.04501274973154068, 1.3653987646102905, 0.3072395920753479, -0.5895160436630249, 0.10058360546827316, -2.0327043533325195, -0.7813834547996521, -0.20358802378177643, 0.964142918586731, 0.387521892786026, -0.0019054918084293604, 0.32400551438331604]} +{"t": 3.5057, "q": [-0.31089189648628235, -0.02754688635468483, 0.01986018195748329, 0.6110867857933044, -0.33991020917892456, 0.010981899686157703, -0.4030330181121826, 0.017248760908842087, -0.01766391098499298, 0.598482608795166, -0.25321152806282043, -0.025827428326010704, 0.0037497307639569044, 0.011751466430723667, -0.016460228711366653, -0.040350887924432755, 0.07061105221509933, -0.045048702508211136, 1.3653508424758911, 0.3072875142097473, -0.5894920825958252, 0.10066749155521393, -2.05729603767395, -0.7808921337127686, -0.1976318657398224, 0.9891899228096008, 0.37278130650520325, -0.006807039957493544, 0.3239096403121948]} +{"t": 3.5225, "q": [-0.3110197186470032, -0.027529843151569366, 0.019793221727013588, 0.6113254427909851, -0.3399142920970917, 0.010989131405949593, -0.4032119810581207, 0.01727432757616043, -0.017771044746041298, 0.598712682723999, -0.25322413444519043, -0.025820234790444374, 0.003977392800152302, 0.0117058539763093, -0.01638191007077694, -0.04066247493028641, 0.06935270875692368, -0.04519251361489296, 1.3654106855392456, 0.3072635531425476, -0.5894081592559814, 0.10055963695049286, -2.08646559715271, -0.7804007530212402, -0.19299396872520447, 1.0227338075637817, 0.35450536012649536, -0.01435710210353136, 0.3234902024269104]} +{"t": 3.5394, "q": [-0.31090041995048523, -0.027512798085808754, 0.019726261496543884, 0.6110526919364929, -0.33990612626075745, 0.01097466703504324, -0.40310969948768616, 0.0172658059746027, -0.01781122200191021, 0.5986785888671875, -0.2532157599925995, -0.02583463303744793, 0.004044352564960718, 0.011683099903166294, -0.016386646777391434, -0.040590569376945496, 0.06808238476514816, -0.04530037194490433, 1.36544668674469, 0.30729949474334717, -0.5891085863113403, 0.10043979436159134, -2.114185094833374, -0.7802689075469971, -0.18734939396381378, 1.0498061180114746, 0.3379911184310913, -0.0186474546790123, 0.3228430449962616]} +{"t": 3.5563, "q": [-0.31088337302207947, -0.02754688635468483, 0.019686086103320122, 0.6110526919364929, -0.33989381790161133, 0.010967493988573551, -0.40319493412971497, 0.017248760908842087, -0.017904965206980705, 0.5989683866500854, -0.2532115578651428, -0.025841832160949707, 0.0043523660860955715, 0.011721002869307995, -0.016362497583031654, -0.040578585118055344, 0.06717158108949661, -0.04524045065045357, 1.3654946088790894, 0.30734744668006897, -0.5889168381690979, 0.10046376287937164, -2.1447689533233643, -0.7796337604522705, -0.18307103216648102, 1.0792633295059204, 0.3208177089691162, -0.02653307467699051, 0.32015857100486755]} +{"t": 3.573, "q": [-0.31074702739715576, -0.027521319687366486, 0.019538775086402893, 0.6108822822570801, -0.33989793062210083, 0.010960202664136887, -0.4030330181121826, 0.01727432757616043, -0.018079059198498726, 0.5989001989364624, -0.25320735573768616, -0.025849031284451485, 0.004151487722992897, 0.011705877259373665, -0.016401419416069984, -0.0409381128847599, 0.0664525255560875, -0.045096639543771744, 1.3653028011322021, 0.30722761154174805, -0.5890126824378967, 0.10058360546827316, -2.167215347290039, -0.7789146900177002, -0.17804963886737823, 1.0981504917144775, 0.3093128502368927, -0.030188262462615967, 0.3170187175273895]} +{"t": 3.5898, "q": [-0.3106958866119385, -0.02748723141849041, 0.019565559923648834, 0.611120879650116, -0.33991432189941406, 0.010974608361721039, -0.403050035238266, 0.017308415845036507, -0.018105842173099518, 0.5992240309715271, -0.2532115876674652, -0.025856217369437218, 0.004553244449198246, 0.01169826090335846, -0.016376987099647522, -0.0403149351477623, 0.06519418209791183, -0.04532434046268463, 1.3656024932861328, 0.30750322341918945, -0.5884494185447693, 0.10041582584381104, -2.1979787349700928, -0.7781956791877747, -0.17305220663547516, 1.1295851469039917, 0.28905951976776123, -0.03694736585021019, 0.3120812177658081]} +{"t": 3.6068, "q": [-0.31057658791542053, -0.027521319687366486, 0.019538775086402893, 0.610814094543457, -0.3398815095424652, 0.01096030231565237, -0.4029477834701538, 0.017282849177718163, -0.018092451617121696, 0.5991899371147156, -0.2531989812850952, -0.025863448157906532, 0.004111311864107847, 0.0116907162591815, -0.016411079093813896, -0.03983556479215622, 0.06431933492422104, -0.04530037194490433, 1.365806221961975, 0.30743134021759033, -0.588018000125885, 0.10040383785963058, -2.2254586219787598, -0.7775365114212036, -0.16927717626094818, 1.1542726755142212, 0.27253326773643494, -0.037642452865839005, 0.3065444827079773]} +{"t": 3.6237, "q": [-0.31057658791542053, -0.027461664751172066, 0.019538775086402893, 0.6110016107559204, -0.33989381790161133, 0.010952952317893505, -0.40297335386276245, 0.01732546091079712, -0.018186194822192192, 0.5993604063987732, -0.2532115876674652, -0.025856217369437218, 0.004379149992018938, 0.011652695015072823, -0.01633768528699875, -0.03916444629430771, 0.06325273960828781, -0.04557600989937782, 1.3659859895706177, 0.30757513642311096, -0.5872390270233154, 0.10029598325490952, -2.2553234100341797, -0.7762662172317505, -0.16528643667697906, 1.183286428451538, 0.25333455204963684, -0.04571982100605965, 0.30001309514045715]} +{"t": 3.6404, "q": [-0.31047430634498596, -0.027461664751172066, 0.01949859969317913, 0.6108396649360657, -0.3398897051811218, 0.01096024364233017, -0.40288811922073364, 0.017299894243478775, -0.018199585378170013, 0.5992581248283386, -0.2532115876674652, -0.025856217369437218, 0.004151487722992897, 0.011614850722253323, -0.01641060784459114, -0.03882889077067375, 0.06238987669348717, -0.04559997841715813, 1.3659380674362183, 0.3075631558895111, -0.5864001512527466, 0.10030796378850937, -2.2780814170837402, -0.7755711078643799, -0.1636326164007187, 1.2000044584274292, 0.24244087934494019, -0.04863198474049568, 0.29295438528060913]} +{"t": 3.6572, "q": [-0.3104061186313629, -0.02742757648229599, 0.019592342898249626, 0.6109334230422974, -0.33989381790161133, 0.010952952317893505, -0.402862548828125, 0.01733398251235485, -0.01813262701034546, 0.5994796752929688, -0.25320738554000854, -0.025863435119390488, 0.004111311864107847, 0.011622431688010693, -0.016405778005719185, -0.038900796324014664, 0.06064017862081528, -0.0457557737827301, 1.365962028503418, 0.30775490403175354, -0.5856091380119324, 0.10031995177268982, -2.303248167037964, -0.7748640775680542, -0.16351276636123657, 1.2207731008529663, 0.22731678187847137, -0.05439639836549759, 0.2850208282470703]} +{"t": 3.674, "q": [-0.3101845681667328, -0.02743609994649887, 0.019592342898249626, 0.6108652353286743, -0.33989381790161133, 0.010952952317893505, -0.4027688205242157, 0.01732546091079712, -0.018092451617121696, 0.5994029641151428, -0.2532031238079071, -0.02584182657301426, 0.0036827712319791317, 0.011546696536242962, -0.01651260256767273, -0.03858920559287071, 0.05940580368041992, -0.0457557737827301, 1.3659380674362183, 0.30773094296455383, -0.5851537585258484, 0.10035590082406998, -2.322411060333252, -0.7746962904930115, -0.1634049117565155, 1.2314870357513428, 0.2174777388572693, -0.05691308528184891, 0.2805746793746948]} +{"t": 3.6908, "q": [-0.3098521828651428, -0.027444621548056602, 0.019605735316872597, 0.6109163761138916, -0.33990201354026794, 0.010952912271022797, -0.40247055888175964, 0.01732546091079712, -0.018065666779875755, 0.5994541049003601, -0.2532409131526947, -0.025805823504924774, 0.0036024199798703194, 0.01144060306251049, -0.01660948432981968, -0.03857722133398056, 0.058339208364486694, -0.04579172283411026, 1.3659141063690186, 0.30780282616615295, -0.584590494632721, 0.10037986934185028, -2.3403873443603516, -0.7747202515602112, -0.16366855800151825, 1.2408466339111328, 0.210083469748497, -0.0595615990459919, 0.27682361006736755]} +{"t": 3.7075, "q": [-0.3096221089363098, -0.027453143149614334, 0.01983339712023735, 0.6109930872917175, -0.33990201354026794, 0.010952912271022797, -0.4023938477039337, 0.017248760908842087, -0.01782461255788803, 0.599607527256012, -0.2532367408275604, -0.025813022628426552, 0.003093527862802148, 0.011501448228955269, -0.016736667603254318, -0.03843341022729874, 0.05788380652666092, -0.0457318052649498, 1.3660458326339722, 0.3077908456325531, -0.583763599395752, 0.10042780637741089, -2.357968330383301, -0.7744086384773254, -0.1637764275074005, 1.2511531114578247, 0.2016226053237915, -0.06266551464796066, 0.2717662751674652]} +{"t": 3.7242, "q": [-0.3095880150794983, -0.027444621548056602, 0.020047668367624283, 0.6111379265785217, -0.33989793062210083, 0.010945661924779415, -0.40237680077552795, 0.017231717705726624, -0.017596950754523277, 0.599675714969635, -0.25322413444519043, -0.025820234790444374, 0.0027051628567278385, 0.011607824824750423, -0.016873890534043312, -0.0385173000395298, 0.05735650286078453, -0.045767758041620255, 1.3663934469223022, 0.30789870023727417, -0.5827808976173401, 0.10055963695049286, -2.375201463699341, -0.774360716342926, -0.1642318218946457, 1.2626819610595703, 0.18935075402259827, -0.06719554960727692, 0.2658221125602722]} +{"t": 3.741, "q": [-0.3094516694545746, -0.02743609994649887, 0.02030211314558983, 0.6110782623291016, -0.33989381790161133, 0.010938430204987526, -0.40242794156074524, 0.017240239307284355, -0.017221977934241295, 0.5996501445770264, -0.2532409131526947, -0.02579141966998577, 0.002356973709538579, 0.01179015077650547, -0.01707976870238781, -0.038421425968408585, 0.05697300657629967, -0.0457318052649498, 1.3664532899856567, 0.3078627586364746, -0.5815345048904419, 0.10065551102161407, -2.390062093734741, -0.7743247747421265, -0.16436365246772766, 1.270399808883667, 0.18066219985485077, -0.06846588104963303, 0.26011762022972107]} +{"t": 3.7578, "q": [-0.30934086441993713, -0.027453143149614334, 0.0203155055642128, 0.6111975908279419, -0.33991023898124695, 0.010938312858343124, -0.4024108946323395, 0.017231717705726624, -0.016873788088560104, 0.5996245741844177, -0.25334152579307556, -0.025632986798882484, 0.0022632302716374397, 0.011987618170678616, -0.017256371676921844, -0.038613174110651016, 0.056481651961803436, -0.0457318052649498, 1.366477370262146, 0.30787473917007446, -0.579209566116333, 0.10073939710855484, -2.405413866043091, -0.7743247747421265, -0.16477110981941223, 1.280202865600586, 0.16773121058940887, -0.07040732353925705, 0.25347834825515747]} +{"t": 3.7748, "q": [-0.30924713611602783, -0.02742757648229599, 0.020235154777765274, 0.6111805438995361, -0.33989793062210083, 0.01091659814119339, -0.402444988489151, 0.017257284373044968, -0.016512207686901093, 0.599530816078186, -0.2534632086753845, -0.0254816971719265, 0.0022498385515064, 0.012139745056629181, -0.017578834667801857, -0.038661111146211624, 0.056241970509290695, -0.04557600989937782, 1.3665372133255005, 0.30777886509895325, -0.5769206285476685, 0.1007993221282959, -2.417397975921631, -0.774276852607727, -0.16479508578777313, 1.2849485874176025, 0.16088822484016418, -0.07103050500154495, 0.24752219021320343]} +{"t": 3.7916, "q": [-0.30923008918762207, -0.027410533279180527, 0.02016819454729557, 0.6113424897193909, -0.3398897051811218, 0.010945720598101616, -0.40247905254364014, 0.017257284373044968, -0.01629793643951416, 0.5995393395423889, -0.2534632086753845, -0.0254816971719265, 0.002236446598544717, 0.012238611467182636, -0.017759891226887703, -0.03888881206512451, 0.05567871034145355, -0.04563593119382858, 1.3665013313293457, 0.3079346716403961, -0.5748473405838013, 0.10106296837329865, -2.429490089416504, -0.7740851044654846, -0.16531039774417877, 1.2919714450836182, 0.1516963243484497, -0.07192932069301605, 0.2418895959854126]} +{"t": 3.8084, "q": [-0.3092215657234192, -0.027393488213419914, 0.020101236179471016, 0.611402153968811, -0.3398733139038086, 0.010931314900517464, -0.4025301933288574, 0.017257284373044968, -0.016043491661548615, 0.5994711518287659, -0.2536308467388153, -0.025179235264658928, 0.002236446598544717, 0.012307640165090561, -0.01828264817595482, -0.038912780582904816, 0.05554688349366188, -0.04556402564048767, 1.3665013313293457, 0.3078627586364746, -0.5720190405845642, 0.10130265355110168, -2.43953275680542, -0.7737495303153992, -0.1654062718153, 1.297663927078247, 0.14449380338191986, -0.0724925771355629, 0.23841418325901031]} +{"t": 3.8252, "q": [-0.30923008918762207, -0.02737644501030445, 0.01996731571853161, 0.6115555167198181, -0.3398733139038086, 0.010931314900517464, -0.4025387167930603, 0.0172658059746027, -0.015896180644631386, 0.5994370579719543, -0.25590553879737854, -0.021240005269646645, 0.0022498385515064, 0.012293479405343533, -0.0189847219735384, -0.03910452872514725, 0.05513941869139671, -0.045528072863817215, 1.3665492534637451, 0.3078867197036743, -0.5699458122253418, 0.10149440169334412, -2.447646141052246, -0.7736536264419556, -0.1660294532775879, 1.3019901514053345, 0.13763882219791412, -0.0728161558508873, 0.23491477966308594]} +{"t": 3.8422, "q": [-0.30924713611602783, -0.02731679007411003, 0.019953925162553787, 0.6119645833969116, -0.339865118265152, 0.01091685052961111, -0.40251314640045166, 0.017223196104168892, -0.015829220414161682, 0.599462628364563, -0.2557637691497803, -0.02142733708024025, 0.0022632302716374397, 0.012407884001731873, -0.019419707357883453, -0.039200399070978165, 0.054672036319971085, -0.04554005712270737, 1.3666211366653442, 0.3078867197036743, -0.5693225860595703, 0.1017221063375473, -2.4553160667419434, -0.7729825377464294, -0.16682042181491852, 1.305825114250183, 0.13129916787147522, -0.0728640928864479, 0.2298814058303833]} +{"t": 3.8589, "q": [-0.3093067705631256, -0.027333833277225494, 0.019886964932084084, 0.6120412945747375, -0.33986103534698486, 0.0109241409227252, -0.4025387167930603, 0.017129452899098396, -0.015842612832784653, 0.599462628364563, -0.2557511627674103, -0.02139139734208584, 0.002356973709538579, 0.012461644597351551, -0.019971858710050583, -0.03947603702545166, 0.05398893356323242, -0.045468151569366455, 1.3665611743927002, 0.30789870023727417, -0.5692267417907715, 0.1019977405667305, -2.463045835494995, -0.7725391387939453, -0.16843828558921814, 1.3107026815414429, 0.12232298403978348, -0.07316369563341141, 0.22311031818389893]} +{"t": 3.8756, "q": [-0.3093579113483429, -0.027325311675667763, 0.01984678953886032, 0.6121265292167664, -0.33984872698783875, 0.01091694924980402, -0.40252166986465454, 0.017069797962903976, -0.015829220414161682, 0.5994455814361572, -0.25570085644721985, -0.021333932876586914, 0.002383757382631302, 0.0125231659039855, -0.020616833120584488, -0.03976365923881531, 0.05355750396847725, -0.04542021453380585, 1.3665372133255005, 0.30782681703567505, -0.5691908001899719, 0.10212957113981247, -2.469553232192993, -0.7719398736953735, -0.1696726679801941, 1.3137826919555664, 0.11761318892240524, -0.07319964468479156, 0.21710622310638428]} +{"t": 3.8924, "q": [-0.3093664348125458, -0.027333833277225494, 0.01980661414563656, 0.6122798919677734, -0.33984872698783875, 0.01091694924980402, -0.4025046229362488, 0.017018664628267288, -0.015896180644631386, 0.5994285345077515, -0.2556798458099365, -0.021312374621629715, 0.0024105412885546684, 0.012410227209329605, -0.02128566987812519, -0.04009921848773956, 0.05313805490732193, -0.04542021453380585, 1.3665252923965454, 0.30787473917007446, -0.569118857383728, 0.10226139426231384, -2.4745147228240967, -0.7714844942092896, -0.1721414178609848, 1.3173420429229736, 0.11335878819227219, -0.07318766415119171, 0.21292373538017273]} +{"t": 3.9107, "q": [-0.3094090521335602, -0.027291223406791687, 0.019739653915166855, 0.6125611066818237, -0.33984461426734924, 0.010924240574240685, -0.4024960994720459, 0.01697605475783348, -0.01581582799553871, 0.5994200110435486, -0.2556587755680084, -0.02129082754254341, 0.0026382035575807095, 0.012380530126392841, -0.02176395058631897, -0.04060255363583565, 0.052442967891693115, -0.04539624601602554, 1.366429328918457, 0.3078387975692749, -0.5690469741821289, 0.10241718590259552, -2.4807944297790527, -0.7706695795059204, -0.1741907149553299, 1.3209731578826904, 0.10513760894536972, -0.07306782156229019, 0.20815400779247284]} +{"t": 3.9274, "q": [-0.3094942569732666, -0.02729974500834942, 0.019619127735495567, 0.6126548647880554, -0.33985280990600586, 0.01090965885668993, -0.4024960994720459, 0.01690787635743618, -0.015842612832784653, 0.5994029641151428, -0.2556207478046417, -0.02122613415122032, 0.0027453387156128883, 0.012532539665699005, -0.021921323612332344, -0.04152534157037735, 0.0517478846013546, -0.045348308980464935, 1.366417407989502, 0.3079706132411957, -0.5689151287078857, 0.10256099700927734, -2.487637519836426, -0.7698066830635071, -0.17637184262275696, 1.324113130569458, 0.09817477315664291, -0.07290004193782806, 0.20170649886131287]} +{"t": 3.9442, "q": [-0.30959653854370117, -0.027274178341031075, 0.019605735316872597, 0.6126548647880554, -0.33984872698783875, 0.01091694924980402, -0.4025387167930603, 0.016771523281931877, -0.015882788226008415, 0.5993433594703674, -0.2555868923664093, -0.02113983780145645, 0.0026783791836351156, 0.01284404844045639, -0.02216288633644581, -0.0421125665307045, 0.051304467022418976, -0.04520449787378311, 1.3663934469223022, 0.30798259377479553, -0.5689031481742859, 0.10268083959817886, -2.4927427768707275, -0.768536388874054, -0.17737852036952972, 1.3249999284744263, 0.09607753157615662, -0.07293599843978882, 0.19783559441566467]} +{"t": 3.961, "q": [-0.30960506200790405, -0.027291223406791687, 0.019592342898249626, 0.6127912402153015, -0.33984461426734924, 0.010924240574240685, -0.4025301933288574, 0.016771523281931877, -0.015896180644631386, 0.5993348360061646, -0.25554895401000977, -0.021103914827108383, 0.0027453387156128883, 0.013011183589696884, -0.022281309589743614, -0.04236423596739769, 0.05083708465099335, -0.04526441916823387, 1.3665132522583008, 0.30805450677871704, -0.5688073039054871, 0.10283663868904114, -2.497824192047119, -0.7671701908111572, -0.1787806749343872, 1.3262702226638794, 0.09196694195270538, -0.07288806140422821, 0.19497136771678925]} +{"t": 3.9778, "q": [-0.3095794916152954, -0.027291223406791687, 0.019565559923648834, 0.6127912402153015, -0.33984872698783875, 0.010931489989161491, -0.4024960994720459, 0.01679708994925022, -0.015856005251407623, 0.5993348360061646, -0.25553634762763977, -0.021111126989126205, 0.0027453387156128883, 0.013125155121088028, -0.022374926134943962, -0.04247209429740906, 0.05050152540206909, -0.04526441916823387, 1.3665013313293457, 0.30810245871543884, -0.5687713027000427, 0.10299243032932281, -2.5022342205047607, -0.766067624092102, -0.17939186096191406, 1.3272050619125366, 0.08641824871301651, -0.07280416786670685, 0.1920112520456314]} +{"t": 3.9945, "q": [-0.3095794916152954, -0.02725713513791561, 0.019538775086402893, 0.6127997636795044, -0.33985280990600586, 0.010938722640275955, -0.4024960994720459, 0.01683969981968403, -0.015842612832784653, 0.5992410778999329, -0.2555069029331207, -0.02111838385462761, 0.002624811604619026, 0.013148011639714241, -0.022438568994402885, -0.04249606281518936, 0.0499502494931221, -0.04526441916823387, 1.3665372133255005, 0.3081863224506378, -0.5687593221664429, 0.10308830440044403, -2.507147789001465, -0.7645216584205627, -0.18220816552639008, 1.3286430835723877, 0.07994676381349564, -0.07273226231336594, 0.18935075402259827]} +{"t": 4.0114, "q": [-0.3095880150794983, -0.027265656739473343, 0.019565559923648834, 0.6127741932868958, -0.33985692262649536, 0.01093143131583929, -0.40247055888175964, 0.01689935475587845, -0.015842612832784653, 0.5991302728652954, -0.25547340512275696, -0.021190380677580833, 0.0024775005877017975, 0.013140590861439705, -0.02256058156490326, -0.04254399985074997, 0.049386993050575256, -0.04526441916823387, 1.3665851354599, 0.30819833278656006, -0.5686994194984436, 0.10318417847156525, -2.5104315280914307, -0.7630236148834229, -0.18510834872722626, 1.3294100761413574, 0.07794540375471115, -0.07269631326198578, 0.18688200414180756]} +{"t": 4.0282, "q": [-0.30955392122268677, -0.027223046869039536, 0.019592342898249626, 0.6128168106079102, -0.339865118265152, 0.010931373573839664, -0.402444988489151, 0.016924921423196793, -0.01581582799553871, 0.5991132259368896, -0.2554524540901184, -0.021226394921541214, 0.0025712440256029367, 0.013125398196280003, -0.022550703957676888, -0.04256796836853027, 0.04838031902909279, -0.04526441916823387, 1.3665851354599, 0.3082702159881592, -0.5686994194984436, 0.10330402106046677, -2.5143864154815674, -0.7612379789352417, -0.19042934477329254, 1.3313156366348267, 0.07759785652160645, -0.07267234474420547, 0.1829511821269989]} +{"t": 4.0449, "q": [-0.30965617299079895, -0.02724861353635788, 0.019578952342271805, 0.61275714635849, -0.33986103534698486, 0.0109241409227252, -0.402444988489151, 0.016933443024754524, -0.015842612832784653, 0.5990365147590637, -0.25542303919792175, -0.021248018369078636, 0.0026649872306734324, 0.013102595694363117, -0.022526120766997337, -0.04265185818076134, 0.047038085758686066, -0.04530037194490433, 1.3665492534637451, 0.30835410952568054, -0.5686874389648438, 0.10338791459798813, -2.5184130668640137, -0.7596201300621033, -0.1952110379934311, 1.3333529233932495, 0.0773581713438034, -0.07264837622642517, 0.17981131374835968]} +{"t": 4.0617, "q": [-0.30974993109703064, -0.02725713513791561, 0.019592342898249626, 0.6127741932868958, -0.33986103534698486, 0.0109241409227252, -0.40242794156074524, 0.016933443024754524, -0.01598992384970188, 0.5989172458648682, -0.2554146647453308, -0.02126241661608219, 0.002731946762651205, 0.013041770085692406, -0.02244754694402218, -0.042448125779628754, 0.045468151569366455, -0.04532434046268463, 1.3665492534637451, 0.30840206146240234, -0.5687233805656433, 0.10348378121852875, -2.5226314067840576, -0.7580861449241638, -0.19983695447444916, 1.3350666761398315, 0.07726229727268219, -0.07250456511974335, 0.17724668979644775]} +{"t": 4.0784, "q": [-0.3098521828651428, -0.027274178341031075, 0.019605735316872597, 0.6127400994300842, -0.33985692262649536, 0.01093143131583929, -0.402444988489151, 0.016933443024754524, -0.016043491661548615, 0.598857581615448, -0.25539788603782654, -0.021291231736540794, 0.002959609031677246, 0.012943032197654247, -0.022393107414245605, -0.042280346155166626, 0.04398210719227791, -0.04530037194490433, 1.366429328918457, 0.30842602252960205, -0.5687353610992432, 0.10361561179161072, -2.526190757751465, -0.756504237651825, -0.20400746166706085, 1.3367085456848145, 0.07727428525686264, -0.07232479751110077, 0.17532920837402344]} +{"t": 4.0952, "q": [-0.30983513593673706, -0.02729974500834942, 0.019605735316872597, 0.6126974821090698, -0.33986103534698486, 0.0109241409227252, -0.4023171365261078, 0.016984576359391212, -0.016164017841219902, 0.5986871123313904, -0.2553768754005432, -0.02129845693707466, 0.00287925754673779, 0.012927825562655926, -0.022373463958501816, -0.0421125665307045, 0.042460110038518906, -0.04533632472157478, 1.3664653301239014, 0.30852189660072327, -0.5687713027000427, 0.10368751734495163, -2.528347969055176, -0.7546945810317993, -0.2076866179704666, 1.3376193046569824, 0.07737015932798386, -0.07222892343997955, 0.1748618334531784]} +{"t": 4.1119, "q": [-0.3098010718822479, -0.02729974500834942, 0.01964591071009636, 0.6127230525016785, -0.339865118265152, 0.010931373573839664, -0.40224045515060425, 0.01703570783138275, -0.016217585653066635, 0.598712682723999, -0.25537270307540894, -0.02130565606057644, 0.0028256899677217007, 0.012813892215490341, -0.022309143096208572, -0.04079430177807808, 0.04102200269699097, -0.04542021453380585, 1.366489291191101, 0.3089413344860077, -0.5688192844390869, 0.10371148586273193, -2.530792713165283, -0.7521060109138489, -0.21467342972755432, 1.338937520980835, 0.07835286110639572, -0.07089867442846298, 0.17482587695121765]} +{"t": 4.1286, "q": [-0.30982664227485657, -0.027291223406791687, 0.01965930312871933, 0.6126207709312439, -0.3398733139038086, 0.010931314900517464, -0.40229156613349915, 0.017061274498701096, -0.016204193234443665, 0.5986019372940063, -0.2553810775279999, -0.021291257813572884, 0.0028122980147600174, 0.012791021727025509, -0.022235732525587082, -0.04009921848773956, 0.03923635184764862, -0.045767758041620255, 1.3662736415863037, 0.30964842438697815, -0.569034993648529, 0.103819340467453, -2.5341124534606934, -0.748666524887085, -0.22097712755203247, 1.3398723602294922, 0.07921572774648666, -0.06936469674110413, 0.1759404093027115]} +{"t": 4.1459, "q": [-0.3098692297935486, -0.027333833277225494, 0.019699478521943092, 0.6125441193580627, -0.33986103534698486, 0.0109241409227252, -0.4023086130619049, 0.017069797962903976, -0.016204193234443665, 0.5986019372940063, -0.2553476095199585, -0.021377641707658768, 0.002718554809689522, 0.012836289592087269, -0.02204076200723648, -0.03898468613624573, 0.03804991394281387, -0.046127282083034515, 1.3661537170410156, 0.3101876974105835, -0.5693345665931702, 0.10387926548719406, -2.538294792175293, -0.7448675632476807, -0.2275325059890747, 1.3402798175811768, 0.07992279529571533, -0.06783071160316467, 0.17683923244476318]} +{"t": 4.1626, "q": [-0.30993741750717163, -0.02735939994454384, 0.019766438752412796, 0.6123651266098022, -0.339865118265152, 0.010931373573839664, -0.4023682773113251, 0.017069797962903976, -0.01631132885813713, 0.5985678434371948, -0.25516316294670105, -0.021694514900445938, 0.0028926494996994734, 0.01285118330270052, -0.021835800260305405, -0.037582531571388245, 0.0370192714035511, -0.046546731144189835, 1.365806221961975, 0.3107629418373108, -0.5696222186088562, 0.10398712009191513, -2.5438435077667236, -0.7410805225372314, -0.23411184549331665, 1.3405314683914185, 0.0803302600979805, -0.06754309684038162, 0.17945179343223572]} +{"t": 4.1795, "q": [-0.3100481927394867, -0.027393488213419914, 0.019779829308390617, 0.6122713685035706, -0.33986103534698486, 0.0109241409227252, -0.4023512303829193, 0.017078319564461708, -0.016605950891971588, 0.5985422730445862, -0.25507938861846924, -0.02186732366681099, 0.003106919815763831, 0.01291180681437254, -0.021767891943454742, -0.03683950752019882, 0.03630021959543228, -0.04681038483977318, 1.3652548789978027, 0.31105056405067444, -0.5703772306442261, 0.10408299416303635, -2.5498955249786377, -0.7374732494354248, -0.2380906045436859, 1.3405194282531738, 0.0806778073310852, -0.06748317182064056, 0.18333467841148376]} +{"t": 4.1962, "q": [-0.31007376313209534, -0.027410533279180527, 0.01982000470161438, 0.6120924353599548, -0.33986103534698486, 0.0109241409227252, -0.40223193168640137, 0.017052752897143364, -0.017061274498701096, 0.5984740853309631, -0.2548910081386566, -0.022306500002741814, 0.00321405497379601, 0.012873864732682705, -0.021772492676973343, -0.03634815663099289, 0.03603656589984894, -0.0469302274286747, 1.364931344985962, 0.31144604086875916, -0.5704970359802246, 0.1041189506649971, -2.555959701538086, -0.7340817451477051, -0.24049943685531616, 1.3404356241226196, 0.08076169341802597, -0.06750714033842087, 0.18670225143432617]} +{"t": 4.213, "q": [-0.310167521238327, -0.027384966611862183, 0.019726261496543884, 0.6120924353599548, -0.339865118265152, 0.010931373573839664, -0.40219783782958984, 0.01709536276757717, -0.017529990524053574, 0.5984740853309631, -0.2539105713367462, -0.024178722873330116, 0.0032810145057737827, 0.012782666832208633, -0.02168392948806286, -0.03566505387425423, 0.035772912204265594, -0.04715792462229729, 1.3636010885238647, 0.31199732422828674, -0.5711562037467957, 0.1041429191827774, -2.5641088485717773, -0.7305343747138977, -0.24474184215068817, 1.3407951593399048, 0.08121709525585175, -0.06733936071395874, 0.19322165846824646]} +{"t": 4.2299, "q": [-0.3102697730064392, -0.027333833277225494, 0.019538775086402893, 0.6117600798606873, -0.33985283970832825, 0.010924199596047401, -0.40223193168640137, 0.017180584371089935, -0.017744261771440506, 0.598269522190094, -0.2534499764442444, -0.025201112031936646, 0.003347973804920912, 0.012714245356619358, -0.02160041593015194, -0.03474226966500282, 0.03546132147312164, -0.04733768850564957, 1.3623906373977661, 0.31229692697525024, -0.5718153119087219, 0.10420283675193787, -2.5732288360595703, -0.7266035676002502, -0.24716265499591827, 1.3403037786483765, 0.08124106377363205, -0.06732738018035889, 0.19839884340763092]} +{"t": 4.2466, "q": [-0.3102697730064392, -0.027231568470597267, 0.019418248906731606, 0.6115810871124268, -0.33985692262649536, 0.010916909202933311, -0.4022063612937927, 0.017248760908842087, -0.018079059198498726, 0.5980564951896667, -0.2534794807434082, -0.025222644209861755, 0.0032274469267576933, 0.01270664855837822, -0.02159547619521618, -0.0336996428668499, 0.03546132147312164, -0.047637294977903366, 1.3607968091964722, 0.31284821033477783, -0.5726662278175354, 0.10431069880723953, -2.5823729038238525, -0.7224929928779602, -0.2506261169910431, 1.3401479721069336, 0.08133693784475327, -0.06726745516061783, 0.2018263339996338]} +{"t": 4.2634, "q": [-0.3101334273815155, -0.027154870331287384, 0.019364681094884872, 0.6112146377563477, -0.33985692262649536, 0.010902367532253265, -0.40219783782958984, 0.017419204115867615, -0.018092451617121696, 0.5979968309402466, -0.2535427212715149, -0.025287317112088203, 0.0030801359098404646, 0.012691482901573181, -0.021605130285024643, -0.032357409596443176, 0.035413384437561035, -0.04803277552127838, 1.3592149019241333, 0.3135073184967041, -0.5733732581138611, 0.10432267934083939, -2.5919482707977295, -0.7175195217132568, -0.2530948519706726, 1.339440941810608, 0.08128900080919266, -0.06706372648477554, 0.2045467495918274]} +{"t": 4.2805, "q": [-0.31001412868499756, -0.02707817032933235, 0.019378073513507843, 0.6111038327217102, -0.339865118265152, 0.01091685052961111, -0.40214669704437256, 0.017555557191371918, -0.018052276223897934, 0.5979883074760437, -0.2535891532897949, -0.02535199746489525, 0.0027721223887056112, 0.012691482901573181, -0.021605130285024643, -0.031158985570073128, 0.03540140017867088, -0.048703890293836594, 1.3575011491775513, 0.3145619332790375, -0.5748593211174011, 0.10435863584280014, -2.6015117168426514, -0.7129655480384827, -0.25506025552749634, 1.3395967483520508, 0.08118113875389099, -0.06623681634664536, 0.20653614401817322]} +{"t": 4.2973, "q": [-0.3099033236503601, -0.027018515393137932, 0.019404856488108635, 0.6108993291854858, -0.3398692309856415, 0.010909559205174446, -0.40210407972335815, 0.017726000398397446, -0.018025491386651993, 0.5979797840118408, -0.25359341502189636, -0.025373568758368492, 0.0024908925406634808, 0.012676357291638851, -0.021644078195095062, -0.029996516183018684, 0.03567703813314438, -0.04930310323834419, 1.3567941188812256, 0.3151012361049652, -0.577328085899353, 0.10431069880723953, -2.6123812198638916, -0.7080759406089783, -0.25603097677230835, 1.3389135599136353, 0.08110923320055008, -0.06605704873800278, 0.20801019668579102]} +{"t": 4.314, "q": [-0.30974993109703064, -0.026992948725819588, 0.019391464069485664, 0.6108737587928772, -0.3398692309856415, 0.010909559205174446, -0.4019506871700287, 0.01776008866727352, -0.018038883805274963, 0.5979968309402466, -0.2535892128944397, -0.02538076788187027, 0.0023301898036152124, 0.012699173763394356, -0.02167842723429203, -0.029109682887792587, 0.03597664460539818, -0.04984239116311073, 1.3560150861740112, 0.31513717770576477, -0.5796889662742615, 0.10431069880723953, -2.621872901916504, -0.7040732502937317, -0.2578645646572113, 1.3390334844589233, 0.08073772490024567, -0.06515823304653168, 0.20772257447242737]} +{"t": 4.3308, "q": [-0.3095880150794983, -0.026992948725819588, 0.019364681094884872, 0.6106947660446167, -0.339873343706131, 0.01091679185628891, -0.40178877115249634, 0.017777131870388985, -0.018038883805274963, 0.5979712605476379, -0.2535892128944397, -0.02538076788187027, 0.0022096626926213503, 0.012646147049963474, -0.021751273423433304, -0.028246818110346794, 0.03621632978320122, -0.050153981894254684, 1.355643630027771, 0.3151491582393646, -0.5823614597320557, 0.10431069880723953, -2.6314241886138916, -0.7006098031997681, -0.2593626081943512, 1.3386139869689941, 0.08070177584886551, -0.06502640247344971, 0.20780646800994873]} +{"t": 4.3475, "q": [-0.30923008918762207, -0.026984427124261856, 0.019391464069485664, 0.6106862425804138, -0.3398815393447876, 0.01091673318296671, -0.40146493911743164, 0.017794176936149597, -0.018038883805274963, 0.5979797840118408, -0.25359344482421875, -0.025387953966856003, 0.002089135814458132, 0.012562707997858524, -0.021784832701086998, -0.02726411260664463, 0.03670768067240715, -0.05089700594544411, 1.3552241325378418, 0.31531694531440735, -0.5861724019050598, 0.10426276177167892, -2.6411314010620117, -0.6972782015800476, -0.26124411821365356, 1.3387937545776367, 0.07968311011791229, -0.0647028312087059, 0.20632041990756989]} +{"t": 4.3643, "q": [-0.30919599533081055, -0.026992948725819588, 0.019404856488108635, 0.6106436848640442, -0.3398774266242981, 0.010909500531852245, -0.40142232179641724, 0.01776008866727352, -0.018012098968029022, 0.5979797840118408, -0.25359758734703064, -0.025366369634866714, 0.0021159194875508547, 0.012365512549877167, -0.021881023421883583, -0.026509106159210205, 0.03706720843911171, -0.051903679966926575, 1.3549245595932007, 0.31543678045272827, -0.5891804695129395, 0.10423879325389862, -2.6487174034118652, -0.6949892044067383, -0.26219087839126587, 1.3386139869689941, 0.07935953885316849, -0.06449910253286362, 0.2052178680896759]} +{"t": 4.381, "q": [-0.30910223722457886, -0.027035560458898544, 0.019418248906731606, 0.61066073179245, -0.339873343706131, 0.010902268812060356, -0.40126892924308777, 0.017674867063760757, -0.018012098968029022, 0.5979712605476379, -0.25358498096466064, -0.025373581796884537, 0.0021025275345891714, 0.012107696384191513, -0.022074677050113678, -0.02593386359512806, 0.03753459453582764, -0.05319797620177269, 1.3545171022415161, 0.31554466485977173, -0.5903668999671936, 0.10422680526971817, -2.6562795639038086, -0.693443238735199, -0.2622508108615875, 1.3386739492416382, 0.07716642320156097, -0.0646788626909256, 0.20289292931556702]} +{"t": 4.3977, "q": [-0.3089914619922638, -0.027086691930890083, 0.01948520727455616, 0.6107373833656311, -0.339873343706131, 0.010902268812060356, -0.40108996629714966, 0.017538513988256454, -0.01797192357480526, 0.5979712605476379, -0.2536310851573944, -0.025279968976974487, 0.0021025275345891714, 0.011758830398321152, -0.022366056218743324, -0.025502432137727737, 0.037870150059461594, -0.05409679189324379, 1.3543133735656738, 0.3156285285949707, -0.5906785130500793, 0.10422680526971817, -2.6624274253845215, -0.6925444006919861, -0.2622508108615875, 1.3385779857635498, 0.07593204826116562, -0.0647267997264862, 0.20110727846622467]} +{"t": 4.4145, "q": [-0.3088891804218292, -0.027154870331287384, 0.019592342898249626, 0.6107544302940369, -0.3398774266242981, 0.010909500531852245, -0.40099620819091797, 0.017410682514309883, -0.017931748181581497, 0.5979883074760437, -0.2536059021949768, -0.025308797135949135, 0.0020757438614964485, 0.011395275592803955, -0.023097164928913116, -0.02502306178212166, 0.038181740790605545, -0.05464806780219078, 1.3542413711547852, 0.31559258699417114, -0.5907743573188782, 0.10422680526971817, -2.6673529148101807, -0.6921369433403015, -0.2622508108615875, 1.3384342193603516, 0.07485347241163254, -0.06477473676204681, 0.19989687204360962]} +{"t": 4.4313, "q": [-0.3086164891719818, -0.02729974500834942, 0.019686086103320122, 0.6108481884002686, -0.3398774266242981, 0.010909500531852245, -0.40078315138816833, 0.017248760908842087, -0.017757654190063477, 0.5979627370834351, -0.2535889446735382, -0.0252656489610672, 0.0020757438614964485, 0.011069612577557564, -0.023764614015817642, -0.024687504395842552, 0.03837348893284798, -0.05517537146806717, 1.354157567024231, 0.315604567527771, -0.5908702611923218, 0.10420283675193787, -2.6718590259552, -0.6920770406723022, -0.26239460706710815, 1.338709831237793, 0.07268432527780533, -0.0646548941731453, 0.1979554295539856]} +{"t": 4.4481, "q": [-0.3085738718509674, -0.027333833277225494, 0.019766438752412796, 0.6109078526496887, -0.3398856222629547, 0.01090944278985262, -0.4007405638694763, 0.01709536276757717, -0.017556775361299515, 0.5978519916534424, -0.2536475956439972, -0.025136051699519157, 0.0020757438614964485, 0.010887918062508106, -0.024252530187368393, -0.024327976629137993, 0.03864912688732147, -0.055750615894794464, 1.3541096448898315, 0.315604567527771, -0.5910380482673645, 0.10416688770055771, -2.676868438720703, -0.6921129822731018, -0.2628140449523926, 1.339213252067566, 0.06816627085208893, -0.06455902010202408, 0.19450397789478302]} +{"t": 4.4648, "q": [-0.30855682492256165, -0.027410533279180527, 0.019779829308390617, 0.6108993291854858, -0.3398774266242981, 0.010909500531852245, -0.4007405638694763, 0.016941964626312256, -0.01730232872068882, 0.5977582335472107, -0.2537565529346466, -0.02493441477417946, 0.002022176282480359, 0.010812440887093544, -0.024683019146323204, -0.024088293313980103, 0.03876896947622299, -0.05625395476818085, 1.3540616035461426, 0.3156285285949707, -0.5911458730697632, 0.10416688770055771, -2.682213306427002, -0.6920890212059021, -0.26354509592056274, 1.339225172996521, 0.06379202753305435, -0.06455902010202408, 0.1916157752275467]} +{"t": 4.4816, "q": [-0.30859091877937317, -0.027410533279180527, 0.019699478521943092, 0.6109675168991089, -0.339873343706131, 0.010902268812060356, -0.4008001983165741, 0.016882311552762985, -0.017047883942723274, 0.5976303815841675, -0.25386935472488403, -0.02458168752491474, 0.001982000656425953, 0.010820399969816208, -0.02503073960542679, -0.02371678128838539, 0.038972701877355576, -0.056829195469617844, 1.3540616035461426, 0.31561654806137085, -0.5911818146705627, 0.1041429191827774, -2.68679141998291, -0.6920890212059021, -0.26451581716537476, 1.339165210723877, 0.06060422584414482, -0.06446314603090286, 0.18911106884479523]} +{"t": 4.4983, "q": [-0.308531254529953, -0.027384966611862183, 0.0196726955473423, 0.6110526919364929, -0.3398856520652771, 0.010894901119172573, -0.4008001983165741, 0.016890833154320717, -0.016726477071642876, 0.5974514484405518, -0.25590866804122925, -0.020757941529154778, 0.001834689755924046, 0.01076778955757618, -0.025544606149196625, -0.02328534983098507, 0.039092544466257095, -0.0571887232363224, 1.3540736436843872, 0.315604567527771, -0.5911818146705627, 0.10413093119859695, -2.6899311542510986, -0.692101001739502, -0.2654266059398651, 1.3392012119293213, 0.06011287495493889, -0.06441520899534225, 0.1867981255054474]} +{"t": 4.5151, "q": [-0.30837786197662354, -0.027342356741428375, 0.01965930312871933, 0.6110782623291016, -0.3398856520652771, 0.010894901119172573, -0.4007916748523712, 0.016924921423196793, -0.016338111832737923, 0.5973491668701172, -0.25554028153419495, -0.020988808944821358, 0.0015936355339363217, 0.01055592019110918, -0.02624852955341339, -0.022853918373584747, 0.03917643055319786, -0.057452376931905746, 1.3540496826171875, 0.3155806064605713, -0.5912297964096069, 0.10410696268081665, -2.6926157474517822, -0.6921129822731018, -0.2664572596549988, 1.3391412496566772, 0.0592619925737381, -0.06409163773059845, 0.18254372477531433]} +{"t": 4.5319, "q": [-0.3081988990306854, -0.02731679007411003, 0.019605735316872597, 0.6110782623291016, -0.3398856520652771, 0.010894901119172573, -0.40076613426208496, 0.016993097960948944, -0.01596313901245594, 0.5972383618354797, -0.25554826855659485, -0.020787345245480537, 0.001272230059839785, 0.010085828602313995, -0.027069363743066788, -0.022410500794649124, 0.03923635184764862, -0.05764412507414818, 1.3540736436843872, 0.31559258699417114, -0.5911698341369629, 0.1040949821472168, -2.6943533420562744, -0.6921728849411011, -0.2674279808998108, 1.3389854431152344, 0.058890484273433685, -0.06395980715751648, 0.17991916835308075]} +{"t": 4.5486, "q": [-0.30805402994155884, -0.0273082684725523, 0.019699478521943092, 0.6110782623291016, -0.3398897349834442, 0.010902133770287037, -0.40078315138816833, 0.016993097960948944, -0.015574774704873562, 0.5971701741218567, -0.2554638683795929, -0.020672356709837914, 0.0009776083752512932, 0.009760048240423203, -0.027974223718047142, -0.021823273971676826, 0.03924833610653877, -0.05794372782111168, 1.3541096448898315, 0.315604567527771, -0.5911219120025635, 0.10410696268081665, -2.6955997943878174, -0.6921609044075012, -0.2691177725791931, 1.3390214443206787, 0.0577879324555397, -0.06393583863973618, 0.1768871694803238]} +{"t": 4.5653, "q": [-0.30795174837112427, -0.027291223406791687, 0.019766438752412796, 0.6111549735069275, -0.3398897349834442, 0.010902133770287037, -0.4007576107978821, 0.016993097960948944, -0.015360504388809204, 0.5971020460128784, -0.2553752362728119, -0.020550182089209557, 0.0009106489014811814, 0.009647066704928875, -0.028929857537150383, -0.021260015666484833, 0.03927230462431908, -0.0586627833545208, 1.3541215658187866, 0.3155806064605713, -0.5911338925361633, 0.1041189506649971, -2.6966185569763184, -0.6921968460083008, -0.2710951566696167, 1.3390693664550781, 0.056529588997364044, -0.06393583863973618, 0.17469404637813568]} +{"t": 4.5821, "q": [-0.3079347312450409, -0.0273082684725523, 0.019766438752412796, 0.6112061142921448, -0.3398815393447876, 0.010887669399380684, -0.40073204040527344, 0.01691639982163906, -0.015320328995585442, 0.5969827175140381, -0.25528234243392944, -0.020406415686011314, 0.0009106489014811814, 0.009457769803702831, -0.029729411005973816, -0.02070874162018299, 0.03917643055319786, -0.05909421294927597, 1.3541096448898315, 0.31556862592697144, -0.5911937952041626, 0.10417886823415756, -2.6969540119171143, -0.6923646330833435, -0.27307257056236267, 1.3389256000518799, 0.055391088128089905, -0.06397179514169693, 0.1738671362400055]} +{"t": 4.5988, "q": [-0.3079347312450409, -0.02729974500834942, 0.019726261496543884, 0.6112828254699707, -0.339873343706131, 0.010902268812060356, -0.4006638526916504, 0.016882311552762985, -0.015320328995585442, 0.5968804359436035, -0.2551431357860565, -0.020241161808371544, 0.0009374326909892261, 0.009207485243678093, -0.030233528465032578, -0.0201694518327713, 0.039140477776527405, -0.05957358330488205, 1.3541096448898315, 0.31559258699417114, -0.5912057757377625, 0.10416688770055771, -2.6969780921936035, -0.6924245953559875, -0.2739953398704529, 1.3389256000518799, 0.053940996527671814, -0.06398377567529678, 0.1732439547777176]} +{"t": 4.6156, "q": [-0.3079432547092438, -0.0273082684725523, 0.019699478521943092, 0.6114617586135864, -0.3398774266242981, 0.010909500531852245, -0.4006041884422302, 0.016882311552762985, -0.015320328995585442, 0.5967952013015747, -0.2549911439418793, -0.019996773451566696, 0.0009776083752512932, 0.009245731867849827, -0.030572181567549706, -0.019773971289396286, 0.03906857594847679, -0.059969063848257065, 1.3541096448898315, 0.31556862592697144, -0.5912657380104065, 0.10417886823415756, -2.6967742443084717, -0.6924125552177429, -0.27440279722213745, 1.3390214443206787, 0.05261074751615524, -0.06397179514169693, 0.17284847795963287]} +{"t": 4.6323, "q": [-0.3079858422279358, -0.02731679007411003, 0.01965930312871933, 0.6115555167198181, -0.3398692309856415, 0.010909559205174446, -0.40058717131614685, 0.01684822142124176, -0.015333720482885838, 0.5966759324073792, -0.25481387972831726, -0.01975240372121334, 0.001044567907229066, 0.0093217883259058, -0.030690280720591545, -0.01943841390311718, 0.038960717618465424, -0.060268670320510864, 1.354097604751587, 0.31556862592697144, -0.591301679611206, 0.10421482473611832, -2.6964027881622314, -0.6924005746841431, -0.2746664583683014, 1.3390214443206787, 0.05122057721018791, -0.06393583863973618, 0.1726207733154297]} +{"t": 4.649, "q": [-0.3080369830131531, -0.027291223406791687, 0.01964591071009636, 0.6116151809692383, -0.3398692309856415, 0.010909559205174446, -0.40057864785194397, 0.016822656616568565, -0.015320328995585442, 0.5964969396591187, -0.2545821964740753, -0.019630467519164085, 0.001044567907229066, 0.009321804158389568, -0.030709903687238693, -0.01919872872531414, 0.03880492225289345, -0.060568273067474365, 1.3541096448898315, 0.31556862592697144, -0.5913496017456055, 0.10429871082305908, -2.6950724124908447, -0.6924125552177429, -0.27479827404022217, 1.3388177156448364, 0.049626678228378296, -0.06395980715751648, 0.1724889576435089]} +{"t": 4.666, "q": [-0.30804550647735596, -0.027291223406791687, 0.01963251829147339, 0.6116407513618469, -0.33986103534698486, 0.010909617878496647, -0.4005701243877411, 0.016822656616568565, -0.015333720482885838, 0.5963265299797058, -0.2544430196285248, -0.01947956532239914, 0.0010311759542673826, 0.009481402114033699, -0.030803881585597992, -0.018887139856815338, 0.03874500095844269, -0.06097573786973953, 1.3541336059570312, 0.3155566453933716, -0.5913376212120056, 0.10429871082305908, -2.693071126937866, -0.6924125552177429, -0.27484622597694397, 1.3386619091033936, 0.04731371998786926, -0.06395980715751648, 0.17259681224822998]} +{"t": 4.6827, "q": [-0.3080710768699646, -0.02724861353635788, 0.01964591071009636, 0.6117174625396729, -0.33985692262649536, 0.010902367532253265, -0.4005616009235382, 0.016814133152365685, -0.015306936576962471, 0.596173107624054, -0.25435036420822144, -0.019436532631516457, 0.0010311759542673826, 0.009755060076713562, -0.030982233583927155, -0.0186474546790123, 0.03843341022729874, -0.061239391565322876, 1.3541336059570312, 0.31554466485977173, -0.5913735628128052, 0.10434664785861969, -2.690638303756714, -0.6924005746841431, -0.2750140130519867, 1.3389256000518799, 0.045108623802661896, -0.06389988958835602, 0.17256085574626923]} +{"t": 4.6994, "q": [-0.30808812379837036, -0.027240090072155, 0.01964591071009636, 0.6117259860038757, -0.33986103534698486, 0.010909617878496647, -0.40054455399513245, 0.016822656616568565, -0.015333720482885838, 0.5960196852684021, -0.2543208599090576, -0.01941501908004284, 0.001044567907229066, 0.010051512159407139, -0.031155837699770927, -0.0183478482067585, 0.03833753615617752, -0.06131129711866379, 1.3541455268859863, 0.31556862592697144, -0.5914095044136047, 0.1043945848941803, -2.6877381801605225, -0.6924245953559875, -0.27507391571998596, 1.3389495611190796, 0.04139351472258568, -0.06376805901527405, 0.17257283627986908]} +{"t": 4.7164, "q": [-0.30813074111938477, -0.027223046869039536, 0.019578952342271805, 0.6117686033248901, -0.33985692262649536, 0.010902367532253265, -0.40054455399513245, 0.016831178218126297, -0.01538728829473257, 0.5959515571594238, -0.25427019596099854, -0.01934313401579857, 0.0010713516967371106, 0.010325111448764801, -0.03126545995473862, -0.018156101927161217, 0.03810983523726463, -0.061467092484235764, 1.3541934490203857, 0.31556862592697144, -0.5914814472198486, 0.10451442748308182, -2.684274673461914, -0.6924365758895874, -0.2750619351863861, 1.3388416767120361, 0.039679769426584244, -0.06363623589277267, 0.17251291871070862]} +{"t": 4.7331, "q": [-0.30818185210227966, -0.027223046869039536, 0.0195119921118021, 0.6117686033248901, -0.33985283970832825, 0.010895135812461376, -0.40057864785194397, 0.016822656616568565, -0.0153738958761096, 0.595866322517395, -0.2542743980884552, -0.01933593489229679, 0.0012186624808236957, 0.010644322261214256, -0.03140481188893318, -0.018036259338259697, 0.0378941185772419, -0.06158693507313728, 1.3541815280914307, 0.31556862592697144, -0.5915653109550476, 0.10459832102060318, -2.681051015853882, -0.6924605369567871, -0.27507391571998596, 1.339225172996521, 0.038780953735113144, -0.06337258219718933, 0.172464981675148]} +{"t": 4.7498, "q": [-0.30827561020851135, -0.027206001803278923, 0.019445031881332397, 0.611777126789093, -0.33985280990600586, 0.01090965885668993, -0.4005616009235382, 0.016822656616568565, -0.015414072200655937, 0.5958151817321777, -0.2542576789855957, -0.019379135221242905, 0.0014597165863960981, 0.010910206474363804, -0.03139159455895424, -0.017976338043808937, 0.03772634267807007, -0.0616828091442585, 1.3541815280914307, 0.3155566453933716, -0.5916132926940918, 0.10464625805616379, -2.6783785820007324, -0.692472517490387, -0.2751338481903076, 1.3397284746170044, 0.03838547319173813, -0.06321679055690765, 0.1723451465368271]} +{"t": 4.7666, "q": [-0.30846309661865234, -0.02718043513596058, 0.019257545471191406, 0.6117600798606873, -0.33984053134918213, 0.010902484878897667, -0.4006041884422302, 0.01683969981968403, -0.015588166192173958, 0.5956702828407288, -0.25424924492836, -0.019379129633307457, 0.0015802436973899603, 0.0112064890563488, -0.031388476490974426, -0.01794038526713848, 0.03712712973356247, -0.06187455356121063, 1.354169487953186, 0.3155326545238495, -0.5918649435043335, 0.10477808117866516, -2.6756579875946045, -0.6924485564231873, -0.2751338481903076, 1.3396925926208496, 0.03739078342914581, -0.06301305443048477, 0.1721893548965454]} +{"t": 4.7833, "q": [-0.3085823953151703, -0.02712930366396904, 0.01898970827460289, 0.6117259860038757, -0.33984464406967163, 0.010880671441555023, -0.400621235370636, 0.01689935475587845, -0.01578904502093792, 0.595491349697113, -0.2542366683483124, -0.019400745630264282, 0.0016472031129524112, 0.011411585845053196, -0.03136524185538292, -0.01788046397268772, 0.03683950752019882, -0.062018364667892456, 1.354157567024231, 0.3155326545238495, -0.5919727683067322, 0.10481403023004532, -2.6730096340179443, -0.6924605369567871, -0.275217741727829, 1.3397644758224487, 0.0360964871942997, -0.06289321184158325, 0.1721414178609848]} +{"t": 4.8001, "q": [-0.3086335361003876, -0.0270099937915802, 0.018869180232286453, 0.6116918921470642, -0.33985283970832825, 0.010895135812461376, -0.400621235370636, 0.016993097960948944, -0.015896180644631386, 0.5953123569488525, -0.2542493939399719, -0.019436707720160484, 0.001673986902460456, 0.011472305282950401, -0.03130669146776199, -0.017844511196017265, 0.03676760196685791, -0.062138207256793976, 1.3541455268859863, 0.3155326545238495, -0.5921645164489746, 0.10484998673200607, -2.6702051162719727, -0.6924605369567871, -0.275589257478714, 1.339752435684204, 0.03357980027794838, -0.06256964057683945, 0.1718178391456604]} +{"t": 4.8168, "q": [-0.3087272644042969, -0.026848074048757553, 0.018735261633992195, 0.6115810871124268, -0.33984872698783875, 0.010902426205575466, -0.40062975883483887, 0.017163541167974472, -0.01596313901245594, 0.5950737595558167, -0.2542494833469391, -0.019479863345623016, 0.001673986902460456, 0.011517832055687904, -0.031248044222593307, -0.017844511196017265, 0.03683950752019882, -0.06217416003346443, 1.3541455268859863, 0.31552067399024963, -0.5923083424568176, 0.10489792376756668, -2.6676764488220215, -0.6924365758895874, -0.2757810056209564, 1.3398603200912476, 0.03226153552532196, -0.062126222997903824, 0.17163807153701782]} +{"t": 4.8335, "q": [-0.3087613582611084, -0.026737285777926445, 0.018721869215369225, 0.611419141292572, -0.33984872698783875, 0.010902426205575466, -0.4006127119064331, 0.01732546091079712, -0.016097059473395348, 0.5948095917701721, -0.254194974899292, -0.01957348920404911, 0.0016338112764060497, 0.011533007957041264, -0.03122849576175213, -0.01780855841934681, 0.03681553900241852, -0.06221011281013489, 1.354157567024231, 0.31552067399024963, -0.5925719738006592, 0.10492189228534698, -2.6647284030914307, -0.6923766136169434, -0.2760685980319977, 1.3398244380950928, 0.03151851147413254, -0.06004096940159798, 0.17159013450145721]} +{"t": 4.8503, "q": [-0.3088124990463257, -0.026626497507095337, 0.018721869215369225, 0.6113254427909851, -0.33985692262649536, 0.010902367532253265, -0.40058717131614685, 0.017461813986301422, -0.016190802678465843, 0.5946135520935059, -0.25412389636039734, -0.019782261922955513, 0.0016873788554221392, 0.011540582403540611, -0.0312039852142334, -0.01780855841934681, 0.03682752326130867, -0.062258049845695496, 1.3541215658187866, 0.3155326545238495, -0.5927517414093018, 0.10492189228534698, -2.6621158123016357, -0.6923646330833435, -0.2762363851070404, 1.3398603200912476, 0.03105112724006176, -0.057512298226356506, 0.17155417799949646]} +{"t": 4.867, "q": [-0.30897441506385803, -0.026617975905537605, 0.018775437027215958, 0.6112657785415649, -0.33985692262649536, 0.010902367532253265, -0.40057864785194397, 0.017538513988256454, -0.016405072063207626, 0.5944090485572815, -0.2541492283344269, -0.0198109932243824, 0.0017409464344382286, 0.011601257137954235, -0.0310963187366724, -0.017796574160456657, 0.03700728714466095, -0.062258049845695496, 1.3541455268859863, 0.3155086934566498, -0.5929315090179443, 0.10490990430116653, -2.6599228382110596, -0.692328691482544, -0.276416152715683, 1.339968204498291, 0.03063168004155159, -0.05553489923477173, 0.17157815396785736]} +{"t": 4.8837, "q": [-0.30910223722457886, -0.026617975905537605, 0.01882900483906269, 0.6111038327217102, -0.33985283970832825, 0.010895135812461376, -0.4005530774593353, 0.01757260225713253, -0.01661934331059456, 0.5941448211669922, -0.2541325092315674, -0.019868578761816025, 0.0017007706919685006, 0.011699873954057693, -0.030944691970944405, -0.017832526937127113, 0.03705522418022156, -0.06223408132791519, 1.3541096448898315, 0.3154967129230499, -0.5931112766265869, 0.10494586080312729, -2.6578614711761475, -0.6922927498817444, -0.276559978723526, 1.3401000499725342, 0.03021223098039627, -0.05463608354330063, 0.17155417799949646]} +{"t": 4.9005, "q": [-0.30924713611602783, -0.026617975905537605, 0.018936140462756157, 0.6109930872917175, -0.33985692262649536, 0.010902367532253265, -0.40054455399513245, 0.017598168924450874, -0.016739869490265846, 0.5938465595245361, -0.25413674116134644, -0.019875764846801758, 0.0017677302239462733, 0.011752847582101822, -0.03072400763630867, -0.017784589901566505, 0.03727094084024429, -0.062198128551244736, 1.3539897203445435, 0.3154008388519287, -0.5933749675750732, 0.10502974689006805, -2.655979871749878, -0.6921848654747009, -0.2767637073993683, 1.3400760889053345, 0.029768815264105797, -0.05421663448214531, 0.1715661734342575]} +{"t": 4.9173, "q": [-0.3093152940273285, -0.02665206417441368, 0.019096843898296356, 0.610890805721283, -0.33985283970832825, 0.010895135812461376, -0.4004422724246979, 0.01763225719332695, -0.016873788088560104, 0.5936335325241089, -0.2540905773639679, -0.019926203414797783, 0.0017677302239462733, 0.011836271733045578, -0.030572280287742615, -0.017796574160456657, 0.0373188778758049, -0.062186144292354584, 1.3540136814117432, 0.3154008388519287, -0.5936026573181152, 0.10505371540784836, -2.6538708209991455, -0.6919571757316589, -0.27691948413848877, 1.3401240110397339, 0.02955309860408306, -0.054072823375463486, 0.1715661734342575]} +{"t": 4.934, "q": [-0.30929824709892273, -0.026660587638616562, 0.01915041171014309, 0.6108652353286743, -0.33986514806747437, 0.010902327485382557, -0.40030592679977417, 0.017674867063760757, -0.01699431613087654, 0.5934886336326599, -0.25401929020881653, -0.020034240558743477, 0.0018079059664160013, 0.011851062998175621, -0.03017955645918846, -0.017832526937127113, 0.03743872046470642, -0.06215019151568413, 1.3538459539413452, 0.3154008388519287, -0.5938782691955566, 0.10507768392562866, -2.652780055999756, -0.6919571757316589, -0.27701535820961, 1.340651273727417, 0.028618330135941505, -0.052383050322532654, 0.17198561131954193]} +{"t": 4.9508, "q": [-0.3095027804374695, -0.026728764176368713, 0.01913701929152012, 0.610745906829834, -0.33986514806747437, 0.010902327485382557, -0.40030592679977417, 0.017649300396442413, -0.017101449891924858, 0.5934033989906311, -0.25393128395080566, -0.020199865102767944, 0.002022176282480359, 0.011918997392058372, -0.029811937361955643, -0.01780855841934681, 0.03755856305360794, -0.062138207256793976, 1.3534504175186157, 0.3153529167175293, -0.5942737460136414, 0.10517355799674988, -2.6528401374816895, -0.6920410990715027, -0.27702733874320984, 1.3407472372055054, 0.026017753407359123, -0.04930310323834419, 0.17224927246570587]} +{"t": 4.9675, "q": [-0.30957096815109253, -0.02683102898299694, 0.01916380226612091, 0.6105754971504211, -0.339865118265152, 0.01091685052961111, -0.40026330947875977, 0.01757260225713253, -0.017275545746088028, 0.5931988954544067, -0.2538474202156067, -0.02032949961721897, 0.0020355682354420424, 0.011880694888532162, -0.029531922191381454, -0.01782054267823696, 0.037654437124729156, -0.06210225448012352, 1.3533785343170166, 0.31536489725112915, -0.5946572422981262, 0.10522149503231049, -2.6534032821655273, -0.6925444006919861, -0.27694347500801086, 1.3410347700119019, 0.022913837805390358, -0.0451325923204422, 0.17310014367103577]} +{"t": 4.9843, "q": [-0.30964764952659607, -0.026848074048757553, 0.019190587103366852, 0.6104817390441895, -0.339873343706131, 0.010902268812060356, -0.4001951515674591, 0.01757260225713253, -0.017409464344382286, 0.5929262042045593, -0.2538306415081024, -0.020358314737677574, 0.0021962709724903107, 0.01180447731167078, -0.029305675998330116, -0.017796574160456657, 0.03783419728279114, -0.062006380409002304, 1.3531149625778198, 0.3153049647808075, -0.5951366424560547, 0.10524546355009079, -2.6540863513946533, -0.693299412727356, -0.2769075036048889, 1.341094732284546, 0.021032314747571945, -0.04247209429740906, 0.17390309274196625]} +{"t": 5.001, "q": [-0.30960506200790405, -0.02694181725382805, 0.01929772086441517, 0.6102346181869507, -0.3398692309856415, 0.010909559205174446, -0.4001099169254303, 0.0175640806555748, -0.01747642457485199, 0.5927642583847046, -0.2532857358455658, -0.021294502541422844, 0.0022096626926213503, 0.011652364395558834, -0.029098883271217346, -0.017712684348225594, 0.038241662085056305, -0.062006380409002304, 1.3531149625778198, 0.31531694531440735, -0.5956279635429382, 0.10532935708761215, -2.654745578765869, -0.6941742897033691, -0.2768116295337677, 1.3414182662963867, 0.02015746757388115, -0.0391165129840374, 0.1745861917734146]} +{"t": 5.0178, "q": [-0.30960506200790405, -0.026958860456943512, 0.01929772086441517, 0.6099874377250671, -0.3398815393447876, 0.01091673318296671, -0.40008434653282166, 0.01751294732093811, -0.01750320754945278, 0.5925597548484802, -0.25173482298851013, -0.023973429575562477, 0.0023301898036152124, 0.011500222608447075, -0.02886267937719822, -0.01770070008933544, 0.038421425968408585, -0.06197042763233185, 1.3528392314910889, 0.3152810037136078, -0.5962871313095093, 0.10542523115873337, -2.6563754081726074, -0.695384681224823, -0.2767397165298462, 1.341454267501831, 0.01979793980717659, -0.033483926206827164, 0.17522135376930237]} +{"t": 5.0347, "q": [-0.3095453977584839, -0.027035560458898544, 0.01931111328303814, 0.6096465587615967, -0.339873343706131, 0.010902268812060356, -0.4000247120857239, 0.01751294732093811, -0.017556775361299515, 0.5924148559570312, -0.25180187821388245, -0.02385820634663105, 0.0024105412885546684, 0.01152284536510706, -0.028701070696115494, -0.01762879453599453, 0.03874500095844269, -0.06191050633788109, 1.3525396585464478, 0.3152810037136078, -0.5972458720207214, 0.10547316819429398, -2.6597788333892822, -0.6967868208885193, -0.2767157554626465, 1.3418017625808716, 0.018695391714572906, -0.02900182455778122, 0.17590445280075073]} +{"t": 5.0515, "q": [-0.3095453977584839, -0.027103736996650696, 0.01931111328303814, 0.6095017194747925, -0.339873343706131, 0.010902268812060356, -0.4000076651573181, 0.01750442571938038, -0.017516599968075752, 0.5923210978507996, -0.25177252292633057, -0.023908618837594986, 0.002383757382631302, 0.01169741153717041, -0.028579598292708397, -0.01752093806862831, 0.03892476484179497, -0.061838600784540176, 1.3519763946533203, 0.31522107124328613, -0.5982165932655334, 0.10549713671207428, -2.6634581089019775, -0.6978174448013306, -0.2766917943954468, 1.3418856859207153, 0.017377126961946487, -0.02534663677215576, 0.17613215744495392]} +{"t": 5.0683, "q": [-0.3095283508300781, -0.02712078019976616, 0.019378073513507843, 0.6093653440475464, -0.3398692309856415, 0.010909559205174446, -0.4000076651573181, 0.01750442571938038, -0.01750320754945278, 0.5922273397445679, -0.2517809271812439, -0.02389422059059143, 0.002316797850653529, 0.011765604838728905, -0.02841826342046261, -0.017293237149715424, 0.039140477776527405, -0.061826616525650024, 1.351700782775879, 0.3151971101760864, -0.5988157987594604, 0.10555705428123474, -2.6661665439605713, -0.6984646320343018, -0.27670377492904663, 1.341837763786316, 0.016502277925610542, -0.024052340537309647, 0.17649167776107788]} +{"t": 5.085, "q": [-0.30941757559776306, -0.02712930366396904, 0.01948520727455616, 0.6090841293334961, -0.339873343706131, 0.010902268812060356, -0.39999061822891235, 0.01750442571938038, -0.017409464344382286, 0.5922103524208069, -0.25178512930870056, -0.023901406675577164, 0.0022230546455830336, 0.01181107759475708, -0.02832043170928955, -0.017017599195241928, 0.03935619443655014, -0.061826616525650024, 1.3513052463531494, 0.3151971101760864, -0.5992352366447449, 0.10560499131679535, -2.6687192916870117, -0.6990638375282288, -0.27675172686576843, 1.3418138027191162, 0.015867114067077637, -0.023321302607655525, 0.17675533890724182]} +{"t": 5.1019, "q": [-0.30928120017051697, -0.027171913534402847, 0.0195119921118021, 0.6088539958000183, -0.339873343706131, 0.010902268812060356, -0.4000076651573181, 0.01751294732093811, -0.01730232872068882, 0.5921762585639954, -0.25177672505378723, -0.02390141971409321, 0.0021159194875508547, 0.011818639002740383, -0.028286129236221313, -0.016717994585633278, 0.03984754905104637, -0.061826616525650024, 1.3508977890014648, 0.3152090907096863, -0.5992951393127441, 0.10570086538791656, -2.6716554164886475, -0.6996510624885559, -0.276787668466568, 1.3418617248535156, 0.014177338220179081, -0.022278673946857452, 0.17713883519172668]} +{"t": 5.1186, "q": [-0.30919599533081055, -0.02718043513596058, 0.019552167505025864, 0.608717679977417, -0.3398692309856415, 0.010909559205174446, -0.39999914169311523, 0.01751294732093811, -0.01731572113931179, 0.592201828956604, -0.251776784658432, -0.02393019013106823, 0.0021159194875508547, 0.011803438887000084, -0.028276221826672554, -0.01655021496117115, 0.04015913978219032, -0.061826616525650024, 1.3506821393966675, 0.3152090907096863, -0.5992831587791443, 0.10576079040765762, -2.674699306488037, -0.7003461122512817, -0.27677568793296814, 1.3418017625808716, 0.012475578114390373, -0.021283984184265137, 0.17745041847229004]} +{"t": 5.1354, "q": [-0.3090851902961731, -0.027206001803278923, 0.019538775086402893, 0.6086153984069824, -0.3398692309856415, 0.010909559205174446, -0.39993947744369507, 0.017521468922495842, -0.01731572113931179, 0.5922699570655823, -0.2517767548561096, -0.02391580492258072, 0.002008784329518676, 0.011742657981812954, -0.02825622260570526, -0.01631052978336811, 0.040518663823604584, -0.06173074245452881, 1.3504184484481812, 0.3151851296424866, -0.5992831587791443, 0.10582070797681808, -2.6779470443725586, -0.7010292410850525, -0.27684760093688965, 1.3418017625808716, 0.012008193880319595, -0.02003762498497963, 0.17798970639705658]} +{"t": 5.1522, "q": [-0.3090255558490753, -0.027206001803278923, 0.019578952342271805, 0.608572781085968, -0.339873343706131, 0.010902268812060356, -0.3999224305152893, 0.017538513988256454, -0.01732911355793476, 0.5922955274581909, -0.2517768144607544, -0.02394457533955574, 0.0019686087034642696, 0.011735058389604092, -0.028251267969608307, -0.016202673316001892, 0.040770333260297775, -0.061706773936748505, 1.3503226041793823, 0.3151731491088867, -0.5992831587791443, 0.10586864501237869, -2.6810269355773926, -0.7016404271125793, -0.2768835425376892, 1.341681957244873, 0.01170858833938837, -0.018791265785694122, 0.1784331351518631]} +{"t": 5.169, "q": [-0.30888068675994873, -0.027206001803278923, 0.019605735316872597, 0.6085472106933594, -0.33986514806747437, 0.010902327485382557, -0.399871289730072, 0.01757260225713253, -0.01732911355793476, 0.5923551917076111, -0.25178518891334534, -0.023930177092552185, 0.0019552167505025864, 0.011719867587089539, -0.028251174837350845, -0.015903066843748093, 0.041010018438100815, -0.0616828091442585, 1.3502147197723389, 0.3151731491088867, -0.5992591977119446, 0.10592857003211975, -2.683603525161743, -0.7021557688713074, -0.2769913971424103, 1.3415501117706299, 0.011540808714926243, -0.017245300114154816, 0.17893646657466888]} +{"t": 5.1858, "q": [-0.30877840518951416, -0.02719748020172119, 0.01964591071009636, 0.6085386872291565, -0.33986103534698486, 0.010895077139139175, -0.39982870221138, 0.017606690526008606, -0.017288938164711, 0.5924233794212341, -0.25177261233329773, -0.023937389254570007, 0.001794514013454318, 0.011742686852812767, -0.028285663574934006, -0.015591477043926716, 0.041201766580343246, -0.061658840626478195, 1.350046992301941, 0.3151491582393646, -0.5992711782455444, 0.10597650706768036, -2.6854851245880127, -0.7025632262229919, -0.2771831452846527, 1.3414303064346313, 0.011325092986226082, -0.015303855761885643, 0.1796315461397171]} +{"t": 5.2026, "q": [-0.30850571393966675, -0.027146346867084503, 0.019686086103320122, 0.6085472106933594, -0.33985692262649536, 0.010887844488024712, -0.39972642064094543, 0.017615212127566338, -0.017275545746088028, 0.5925853252410889, -0.2517768144607544, -0.02394457533955574, 0.001607027486898005, 0.011666755191981792, -0.028304828330874443, -0.015207981690764427, 0.04134557768702507, -0.061658840626478195, 1.349998950958252, 0.31513717770576477, -0.5993430614471436, 0.10606039315462112, -2.6864798069000244, -0.7029587030410767, -0.27737489342689514, 1.3414422273635864, 0.010989534668624401, -0.01362606417387724, 0.18037457764148712]} +{"t": 5.2194, "q": [-0.30819037556648254, -0.02712930366396904, 0.019686086103320122, 0.6085386872291565, -0.33986103534698486, 0.010880554094910622, -0.3995133638381958, 0.01763225719332695, -0.017195194959640503, 0.5927216410636902, -0.25179368257522583, -0.023958953097462654, 0.0014329327968880534, 0.011636403389275074, -0.028334084898233414, -0.014944328926503658, 0.04146542027592659, -0.06162288784980774, 1.3499630689620972, 0.31511321663856506, -0.599367082118988, 0.10608436167240143, -2.6869592666625977, -0.7033661603927612, -0.2776625156402588, 1.3415021896362305, 0.010606039315462112, -0.012535499408841133, 0.1811535507440567]} +{"t": 5.2362, "q": [-0.3077046275138855, -0.027112258598208427, 0.019699478521943092, 0.6085472106933594, -0.33986103534698486, 0.010880554094910622, -0.3991895318031311, 0.017606690526008606, -0.017101449891924858, 0.5927898287773132, -0.25182732939720154, -0.023944498971104622, 0.0013257976388558745, 0.011666812933981419, -0.02836371399462223, -0.014800517819821835, 0.041501373052597046, -0.06163487210869789, 1.3499270677566528, 0.31506529450416565, -0.5994749069213867, 0.10614427924156189, -2.6872947216033936, -0.7038215398788452, -0.2779621183872223, 1.3415021896362305, 0.010486196726560593, -0.011780492961406708, 0.18166887760162354]} +{"t": 5.2531, "q": [-0.30749157071113586, -0.027112258598208427, 0.0196726955473423, 0.6085642576217651, -0.33985283970832825, 0.010880612768232822, -0.39907023310661316, 0.017555557191371918, -0.017007706686854362, 0.5928921103477478, -0.2518356740474701, -0.023915713652968407, 0.001379365217871964, 0.01168966293334961, -0.028427602723240852, -0.014512896537780762, 0.0415373258292675, -0.06158693507313728, 1.3498191833496094, 0.3150532841682434, -0.5996666550636292, 0.1061682477593422, -2.687666177749634, -0.7041930556297302, -0.2785613238811493, 1.3414901494979858, 0.010450243949890137, -0.01119326613843441, 0.18211229145526886]} +{"t": 5.2699, "q": [-0.3073892891407013, -0.027112258598208427, 0.01964591071009636, 0.6085813045501709, -0.33984464406967163, 0.01086614839732647, -0.3990020453929901, 0.017478859052062035, -0.01699431613087654, 0.5929347276687622, -0.2518902122974396, -0.023850876837968826, 0.001419540960341692, 0.011872113682329655, -0.028595367446541786, -0.014249243773519993, 0.04158526286482811, -0.061538998037576675, 1.3497353792190552, 0.315005362033844, -0.5998703837394714, 0.10626412183046341, -2.68792986869812, -0.7045525908470154, -0.27917253971099854, 1.3414782285690308, 0.010426276363432407, -0.010749850422143936, 0.18245983123779297]} +{"t": 5.2867, "q": [-0.3073296546936035, -0.027103736996650696, 0.019578952342271805, 0.6086153984069824, -0.3398282527923584, 0.010851742699742317, -0.39897647500038147, 0.01745329238474369, -0.0169675312936306, 0.592951774597168, -0.2519069314002991, -0.023793291300535202, 0.0014463247498497367, 0.012031757272779942, -0.028738487511873245, -0.01390170119702816, 0.041681136935949326, -0.061419155448675156, 1.349615454673767, 0.3148975074291229, -0.6001700162887573, 0.10632404685020447, -2.68827748298645, -0.7048881649971008, -0.28023913502693176, 1.3415021896362305, 0.010390323586761951, -0.010390323586761951, 0.18271149694919586]} +{"t": 5.3035, "q": [-0.3073381781578064, -0.027103736996650696, 0.019578952342271805, 0.6086750626564026, -0.3398159444332123, 0.010844551026821136, -0.3990020453929901, 0.017461813986301422, -0.016833612695336342, 0.5929858088493347, -0.252007395029068, -0.023562878370285034, 0.0014329327968880534, 0.012206590734422207, -0.028881698846817017, -0.013650032691657543, 0.04171708971261978, -0.0613832026720047, 1.349603533744812, 0.31478965282440186, -0.6004456281661987, 0.10643190145492554, -2.688601016998291, -0.7052596807479858, -0.2817251682281494, 1.3415021896362305, 0.010402307845652103, -0.010174606926739216, 0.18283134698867798]} +{"t": 5.3204, "q": [-0.30732113122940063, -0.027027036994695663, 0.019565559923648834, 0.6087347269058228, -0.3398159444332123, 0.010844551026821136, -0.39903613924980164, 0.017478859052062035, -0.01679343730211258, 0.592951774597168, -0.25367969274520874, -0.020588770508766174, 0.0014329327968880534, 0.012335803359746933, -0.02897561714053154, -0.01344630029052496, 0.04175304248929024, -0.06120343878865242, 1.3495914936065674, 0.31469377875328064, -0.6008171439170837, 0.1065397635102272, -2.6889007091522217, -0.7058828473091125, -0.2826719284057617, 1.3415021896362305, 0.010402307845652103, -0.010018812492489815, 0.18286728858947754]} +{"t": 5.3371, "q": [-0.30732113122940063, -0.026984427124261856, 0.01948520727455616, 0.6087858080863953, -0.33981186151504517, 0.010822795331478119, -0.3990617096424103, 0.01745329238474369, -0.016686301678419113, 0.5929176807403564, -0.253884881734848, -0.02014956995844841, 0.0014061490073800087, 0.012472708709537983, -0.029133589938282967, -0.013206616044044495, 0.04180097579956055, -0.061119548976421356, 1.3495914936065674, 0.3146578073501587, -0.6011167764663696, 0.10662364959716797, -2.689284086227417, -0.7065060138702393, -0.2833789885044098, 1.3414901494979858, 0.010354370810091496, -0.009875001385807991, 0.1829272210597992]} +{"t": 5.3539, "q": [-0.3073296546936035, -0.02694181725382805, 0.019458424299955368, 0.6088454723358154, -0.33980363607406616, 0.010837377049028873, -0.3991042971611023, 0.017427725717425346, -0.01665951870381832, 0.5929006338119507, -0.2539016306400299, -0.02010638639330864, 0.0013659733813256025, 0.012640022672712803, -0.02931143343448639, -0.012871057726442814, 0.041729073971509933, -0.06095176935195923, 1.3495196104049683, 0.31462186574935913, -0.6014882922172546, 0.10665960609912872, -2.6898353099823, -0.7070812582969666, -0.2837744653224945, 1.3414901494979858, 0.010390323586761951, -0.009767143987119198, 0.1829751580953598]} +{"t": 5.3706, "q": [-0.3073296546936035, -0.02694181725382805, 0.019418248906731606, 0.6089051365852356, -0.3398159444332123, 0.010815504938364029, -0.39912134408950806, 0.017427725717425346, -0.01663273386657238, 0.592875063419342, -0.2539100646972656, -0.020120758563280106, 0.0013391895918175578, 0.012928943149745464, -0.029549019411206245, -0.012499546632170677, 0.04177701100707054, -0.06095176935195923, 1.349387764930725, 0.3146098852157593, -0.6019077301025391, 0.10669555515050888, -2.690446615219116, -0.7074407935142517, -0.28399017453193665, 1.3414661884307861, 0.010354370810091496, -0.009707222692668438, 0.1830230951309204]} +{"t": 5.3874, "q": [-0.3073381781578064, -0.026933293789625168, 0.019378073513507843, 0.6089392304420471, -0.3398241400718689, 0.010829969309270382, -0.3991128206253052, 0.01738511584699154, -0.016592558473348618, 0.5928835868835449, -0.25390586256980896, -0.020113572478294373, 0.0012990138493478298, 0.013187422417104244, -0.029737314209342003, -0.012104067951440811, 0.04169312119483948, -0.060927800834178925, 1.3492799997329712, 0.3145499527454376, -0.6026267409324646, 0.1067914292216301, -2.6911895275115967, -0.7077164649963379, -0.28431376814842224, 1.3414661884307861, 0.0103783393278718, -0.00965928565710783, 0.18305903673171997]} +{"t": 5.4041, "q": [-0.3073296546936035, -0.02689068391919136, 0.019190587103366852, 0.6089818477630615, -0.3398200571537018, 0.010837259702384472, -0.39917248487472534, 0.01738511584699154, -0.016512207686901093, 0.5928153991699219, -0.2539268732070923, -0.020106330513954163, 0.0012990138493478298, 0.013362336903810501, -0.0299201812595129, -0.011720572598278522, 0.04177701100707054, -0.060927800834178925, 1.349160075187683, 0.3145020306110382, -0.6036095023155212, 0.10682738572359085, -2.6918368339538574, -0.708016037940979, -0.2843976616859436, 1.341382384300232, 0.010342386551201344, -0.009623332880437374, 0.18313094973564148]} +{"t": 5.4209, "q": [-0.3073296546936035, -0.02689068391919136, 0.019096843898296356, 0.6089648008346558, -0.3398200571537018, 0.010837259702384472, -0.3991810083389282, 0.017368070781230927, -0.01645863987505436, 0.592806875705719, -0.25393104553222656, -0.020084744319319725, 0.0012052706442773342, 0.013537205755710602, -0.030063852667808533, -0.011217234656214714, 0.04177701100707054, -0.0607600212097168, 1.3489444255828857, 0.3145020306110382, -0.6048438549041748, 0.10688730329275131, -2.6921963691711426, -0.7083635926246643, -0.28463733196258545, 1.3412505388259888, 0.010342386551201344, -0.009611348621547222, 0.18314293026924133]} +{"t": 5.4377, "q": [-0.30736374855041504, -0.026848074048757553, 0.019016491249203682, 0.6089818477630615, -0.3398282527923584, 0.010851742699742317, -0.39921510219573975, 0.01738511584699154, -0.01644524745643139, 0.5927301645278931, -0.253935307264328, -0.02012070268392563, 0.0010713516967371106, 0.013598017394542694, -0.03010358288884163, -0.010809770785272121, 0.04171708971261978, -0.0607839897274971, 1.3487406969070435, 0.31451401114463806, -0.6061261892318726, 0.10689929127693176, -2.692376136779785, -0.7088909149169922, -0.284817099571228, 1.3412505388259888, 0.010354370810091496, -0.009623332880437374, 0.18308301270008087]} +{"t": 5.4544, "q": [-0.30741485953330994, -0.026805462315678596, 0.01896292343735695, 0.6089733242988586, -0.339836448431015, 0.010851684026420116, -0.3992236256599426, 0.017376594245433807, -0.016391679644584656, 0.5926790237426758, -0.2539394795894623, -0.02009911835193634, 0.0010177841177210212, 0.013613209128379822, -0.03010369837284088, -0.01059405505657196, 0.04169312119483948, -0.0607839897274971, 1.3485848903656006, 0.3145020306110382, -0.6069291234016418, 0.10689929127693176, -2.6924118995666504, -0.7094541788101196, -0.28496089577674866, 1.3412744998931885, 0.010330402292311192, -0.009611348621547222, 0.18309499323368073]} +{"t": 5.4712, "q": [-0.30749157071113586, -0.026805462315678596, 0.01896292343735695, 0.6090074181556702, -0.3398282527923584, 0.010851742699742317, -0.3992747366428375, 0.01739363744854927, -0.016405072063207626, 0.5926108360290527, -0.253935307264328, -0.02012070268392563, 0.0009910003282129765, 0.013598017394542694, -0.03010358288884163, -0.010498180985450745, 0.04177701100707054, -0.060807958245277405, 1.3484410047531128, 0.3145020306110382, -0.607372522354126, 0.10689929127693176, -2.6923880577087402, -0.7099095582962036, -0.28511670231819153, 1.3412864208221436, 0.01031841803342104, -0.009551427327096462, 0.18307103216648102]} +{"t": 5.488, "q": [-0.3076108694076538, -0.026805462315678596, 0.01896292343735695, 0.6090244650840759, -0.339836448431015, 0.01086620707064867, -0.3992832601070404, 0.017402159050107002, -0.016418464481830597, 0.5925256609916687, -0.25394371151924133, -0.020106304436922073, 0.0010579597437754273, 0.013597995042800903, -0.030083950608968735, -0.010450243949890137, 0.041848912835121155, -0.06081994250416756, 1.3483332395553589, 0.3145020306110382, -0.6076481342315674, 0.10689929127693176, -2.692363977432251, -0.7104249000549316, -0.2854282855987549, 1.3413103818893433, 0.010246512480080128, -0.009503490291535854, 0.1826276034116745]} +{"t": 5.5048, "q": [-0.3077557682991028, -0.02683102898299694, 0.01898970827460289, 0.6090670824050903, -0.33984053134918213, 0.01087343879044056, -0.3992917835712433, 0.017402159050107002, -0.016512207686901093, 0.5925171375274658, -0.2539269030094147, -0.020120715722441673, 0.0011784868547692895, 0.013582768850028515, -0.03005438670516014, -0.010414292104542255, 0.04186089709401131, -0.06083192676305771, 1.3482013940811157, 0.3145020306110382, -0.6078998446464539, 0.10689929127693176, -2.692340135574341, -0.7108802795410156, -0.28565600514411926, 1.3413463830947876, 0.010234528221189976, -0.009395632892847061, 0.18244785070419312]} +{"t": 5.5215, "q": [-0.3078750669956207, -0.026839550584554672, 0.019043276086449623, 0.6091182231903076, -0.33984464406967163, 0.010880671441555023, -0.3992917835712433, 0.017376594245433807, -0.016565775498747826, 0.592431902885437, -0.253922700881958, -0.020127931609749794, 0.0012588382232934237, 0.013567541725933552, -0.030024822801351547, -0.010402307845652103, 0.04186089709401131, -0.06073605269193649, 1.3482013940811157, 0.3145020306110382, -0.6081035733222961, 0.10692325979471207, -2.6923160552978516, -0.7111798524856567, -0.28588369488716125, 1.3413703441619873, 0.010210559703409672, -0.009287774562835693, 0.18196848034858704]} +{"t": 5.5383, "q": [-0.30796879529953003, -0.026848074048757553, 0.019096843898296356, 0.6091352701187134, -0.33984053134918213, 0.010887961834669113, -0.39930030703544617, 0.01739363744854927, -0.01665951870381832, 0.5923722386360168, -0.25388917326927185, -0.020185545086860657, 0.0012990138493478298, 0.01355994027107954, -0.030019856989383698, -0.010402307845652103, 0.041908834129571915, -0.0607600212097168, 1.3480455875396729, 0.3145020306110382, -0.608199417591095, 0.10689929127693176, -2.6923041343688965, -0.711383581161499, -0.28613537549972534, 1.3414063453674316, 0.010174606926739216, -0.009155947715044022, 0.18160894513130188]} +{"t": 5.555, "q": [-0.30805402994155884, -0.026873638853430748, 0.01913701929152012, 0.6091607809066772, -0.33984464406967163, 0.010880671441555023, -0.3992832601070404, 0.01739363744854927, -0.01665951870381832, 0.5923040509223938, -0.2538682222366333, -0.020221540704369545, 0.001379365217871964, 0.013552316464483738, -0.029995258897542953, -0.010354370810091496, 0.04199272394180298, -0.060807958245277405, 1.3479856252670288, 0.31451401114463806, -0.6084031462669373, 0.10689929127693176, -2.6922922134399414, -0.7114794850349426, -0.28623124957084656, 1.3414063453674316, 0.009827064350247383, -0.008988169021904469, 0.18130934238433838]} +{"t": 5.5718, "q": [-0.3080796003341675, -0.026924772188067436, 0.01915041171014309, 0.6091863512992859, -0.33985692262649536, 0.010887844488024712, -0.3992917835712433, 0.01739363744854927, -0.016672909259796143, 0.5922784805297852, -0.2538808584213257, -0.020228713750839233, 0.0013525814283639193, 0.01353709027171135, -0.02996569499373436, -0.010282465256750584, 0.04205264523625374, -0.06079597398638725, 1.3478058576583862, 0.3145020306110382, -0.608487069606781, 0.10689929127693176, -2.692268133163452, -0.711527407169342, -0.28627917170524597, 1.3414063453674316, 0.009791111573576927, -0.008772453293204308, 0.18106965720653534]} +{"t": 5.5885, "q": [-0.3081051707267761, -0.026967382058501244, 0.019230762496590614, 0.6091863512992859, -0.33985692262649536, 0.010902367532253265, -0.3992832601070404, 0.017402159050107002, -0.016686301678419113, 0.5923040509223938, -0.25385984778404236, -0.020250342786312103, 0.001379365217871964, 0.013537067919969559, -0.029946062713861465, -0.010234528221189976, 0.04219645634293556, -0.06081994250416756, 1.347733974456787, 0.31449005007743835, -0.6085829138755798, 0.10692325979471207, -2.6922800540924072, -0.711527407169342, -0.2863271236419678, 1.3414422273635864, 0.009731191210448742, -0.008556736633181572, 0.18056632578372955]} +{"t": 5.6054, "q": [-0.30808812379837036, -0.0270099937915802, 0.01931111328303814, 0.6092119216918945, -0.33985692262649536, 0.010902367532253265, -0.3992406725883484, 0.017402159050107002, -0.016726477071642876, 0.5923296213150024, -0.2538389265537262, -0.020300723612308502, 0.0013927571708336473, 0.013537067919969559, -0.029946062713861465, -0.01019857544451952, 0.04230431467294693, -0.060807958245277405, 1.347733974456787, 0.3145020306110382, -0.6086788177490234, 0.10692325979471207, -2.6922800540924072, -0.711527407169342, -0.2863510847091675, 1.3414661884307861, 0.009707222692668438, -0.008364989422261715, 0.1801828294992447]} +{"t": 5.6222, "q": [-0.30808812379837036, -0.02706112712621689, 0.01931111328303814, 0.609246015548706, -0.33985692262649536, 0.010902367532253265, -0.3991810083389282, 0.01739363744854927, -0.016766652464866638, 0.5924063324928284, -0.2538095712661743, -0.020336750894784927, 0.001419540960341692, 0.013514251448214054, -0.02992134913802147, -0.010186591185629368, 0.042388204485177994, -0.06066414713859558, 1.347662091255188, 0.3144780397415161, -0.6087746620178223, 0.10692325979471207, -2.6922922134399414, -0.711527407169342, -0.2863750457763672, 1.3414661884307861, 0.009551427327096462, -0.008173241280019283, 0.17976337671279907]} +{"t": 5.6389, "q": [-0.3080796003341675, -0.02712930366396904, 0.019378073513507843, 0.6092630624771118, -0.33986514806747437, 0.010902327485382557, -0.3991469144821167, 0.017368070781230927, -0.016847005113959312, 0.5924489498138428, -0.2537047564983368, -0.020516784861683846, 0.001419540960341692, 0.01352184172719717, -0.02991649881005287, -0.010162622667849064, 0.042508047074079514, -0.06066414713859558, 1.3476260900497437, 0.31449005007743835, -0.6089065074920654, 0.10692325979471207, -2.6922922134399414, -0.711527407169342, -0.28638702630996704, 1.3414661884307861, 0.009515474550426006, -0.007993478327989578, 0.17921210825443268]} +{"t": 5.6559, "q": [-0.3080796003341675, -0.02718043513596058, 0.019404856488108635, 0.6093056797981262, -0.33986103534698486, 0.010895077139139175, -0.39912986755371094, 0.017359549179673195, -0.01695414073765278, 0.5925000905990601, -0.25362929701805115, -0.020632022991776466, 0.0014463247498497367, 0.013499037362635136, -0.029901599511504173, -0.01013865415006876, 0.04265185818076134, -0.060628194361925125, 1.3475902080535889, 0.31439417600631714, -0.609086275100708, 0.10693524032831192, -2.6923160552978516, -0.711527407169342, -0.286422997713089, 1.3414661884307861, 0.009455553255975246, -0.00777776213362813, 0.1786608248949051]} +{"t": 5.6728, "q": [-0.3080625534057617, -0.027206001803278923, 0.019418248906731606, 0.6093056797981262, -0.33985283970832825, 0.010895135812461376, -0.3991128206253052, 0.01732546091079712, -0.01695414073765278, 0.5925171375274658, -0.25293344259262085, -0.021827472373843193, 0.0014597165863960981, 0.013468620367348194, -0.029871920123696327, -0.01011468656361103, 0.04267582669854164, -0.06066414713859558, 1.3475662469863892, 0.31437018513679504, -0.609230101108551, 0.10695920884609222, -2.6922922134399414, -0.7115154266357422, -0.286422997713089, 1.3414901494979858, 0.009467537514865398, -0.0076459357514977455, 0.1781095564365387]} +{"t": 5.6895, "q": [-0.3080710768699646, -0.027223046869039536, 0.0195119921118021, 0.6092971563339233, -0.33985283970832825, 0.010895135812461376, -0.3991128206253052, 0.01732546091079712, -0.017007706686854362, 0.5925597548484802, -0.251554399728775, -0.02421114221215248, 0.0014597165863960981, 0.013468620367348194, -0.029871920123696327, -0.01011468656361103, 0.04274773225188255, -0.06055628880858421, 1.3475542068481445, 0.3143102824687958, -0.6094218492507935, 0.10694722831249237, -2.6922922134399414, -0.7115034461021423, -0.2865787744522095, 1.341514229774475, 0.009455553255975246, -0.007430219557136297, 0.17763018608093262]} +{"t": 5.7063, "q": [-0.30805402994155884, -0.027223046869039536, 0.0195119921118021, 0.6093056797981262, -0.33985283970832825, 0.010895135812461376, -0.39908725023269653, 0.017342504113912582, -0.017007706686854362, 0.5925682783126831, -0.2515879273414612, -0.024153530597686768, 0.0014865003759041429, 0.013430612161755562, -0.02984708733856678, -0.010090718045830727, 0.04286757484078407, -0.060436446219682693, 1.3475422859191895, 0.3142983019351959, -0.6095656156539917, 0.10694722831249237, -2.6922922134399414, -0.7115154266357422, -0.28671059012413025, 1.3415021896362305, 0.009467537514865398, -0.007250456139445305, 0.17730660736560822]} +{"t": 5.7231, "q": [-0.30805402994155884, -0.027214523404836655, 0.01952538453042507, 0.6093056797981262, -0.33985283970832825, 0.010895135812461376, -0.3990957736968994, 0.017342504113912582, -0.01699431613087654, 0.5926364064216614, -0.2516004741191864, -0.02411752939224243, 0.0014865003759041429, 0.013430589810013771, -0.029827456921339035, -0.010066749528050423, 0.04286757484078407, -0.060436446219682693, 1.3475183248519897, 0.31427431106567383, -0.609685480594635, 0.10698317736387253, -2.6922922134399414, -0.7115154266357422, -0.28675854206085205, 1.341514229774475, 0.009443569928407669, -0.0070587084628641605, 0.17704296112060547]} +{"t": 5.7399, "q": [-0.3080284595489502, -0.027223046869039536, 0.0195119921118021, 0.609322726726532, -0.33985283970832825, 0.010880612768232822, -0.3991128206253052, 0.017342504113912582, -0.017034491524100304, 0.5927216410636902, -0.25161728262901306, -0.02410311810672283, 0.0014731085393577814, 0.013430612161755562, -0.02984708733856678, -0.01005476526916027, 0.04290352761745453, -0.06040049344301224, 1.3475062847137451, 0.31428632140159607, -0.6097214221954346, 0.10698317736387253, -2.6923041343688965, -0.711527407169342, -0.286878377199173, 1.341514229774475, 0.009455553255975246, -0.0068789455108344555, 0.17697104811668396]} +{"t": 5.7566, "q": [-0.30800288915634155, -0.027206001803278923, 0.0195119921118021, 0.6093994379043579, -0.33984872698783875, 0.010887903161346912, -0.3991128206253052, 0.017351027578115463, -0.01699431613087654, 0.5928239226341248, -0.2516215145587921, -0.024110304191708565, 0.0014597165863960981, 0.013415432535111904, -0.029856787994503975, -0.010030796751379967, 0.04292749613523483, -0.060328591614961624, 1.3475062847137451, 0.314262330532074, -0.6098053455352783, 0.10699516534805298, -2.6923160552978516, -0.711527407169342, -0.2869982123374939, 1.3415021896362305, 0.009371664375066757, -0.006711166352033615, 0.1768871694803238]} +{"t": 5.7734, "q": [-0.30795174837112427, -0.02718043513596058, 0.0195119921118021, 0.6094591021537781, -0.33984872698783875, 0.010887903161346912, -0.3991128206253052, 0.017342504113912582, -0.0169675312936306, 0.5929347276687622, -0.2516215145587921, -0.024110304191708565, 0.0014463247498497367, 0.013423033989965916, -0.029861753806471825, -0.010030796751379967, 0.042939480394124985, -0.06030462309718132, 1.3475062847137451, 0.314262330532074, -0.6098892092704773, 0.10699516534805298, -2.6923282146453857, -0.711527407169342, -0.28701022267341614, 1.341514229774475, 0.009347695857286453, -0.006591323763132095, 0.17687517404556274]} +{"t": 5.7901, "q": [-0.3079432547092438, -0.027171913534402847, 0.01949859969317913, 0.6095272898674011, -0.33984872698783875, 0.010873380117118359, -0.3991383910179138, 0.017359549179673195, -0.016927355900406837, 0.5930284261703491, -0.25165092945098877, -0.024088680744171143, 0.0014061490073800087, 0.013438236899673939, -0.029871685430407524, -0.009982859715819359, 0.04295146465301514, -0.060268670320510864, 1.3475062847137451, 0.3142503499984741, -0.6098892092704773, 0.10700714588165283, -2.692363977432251, -0.7115513682365417, -0.28713005781173706, 1.3414782285690308, 0.009347695857286453, -0.006423544604331255, 0.17681525647640228]} +{"t": 5.807, "q": [-0.30790916085243225, -0.027146346867084503, 0.01948520727455616, 0.6095868945121765, -0.33984053134918213, 0.01087343879044056, -0.3991383910179138, 0.017402159050107002, -0.016927355900406837, 0.5931307077407837, -0.25165513157844543, -0.024095866829156876, 0.0013659733813256025, 0.01344583835452795, -0.029876653105020523, -0.009958891198039055, 0.04295146465301514, -0.06025668606162071, 1.3475183248519897, 0.3142263889312744, -0.6099371314048767, 0.10700714588165283, -2.6924118995666504, -0.7115633487701416, -0.28720197081565857, 1.3414901494979858, 0.009359680116176605, -0.006219812668859959, 0.1766354888677597]} +{"t": 5.8237, "q": [-0.30791768431663513, -0.027112258598208427, 0.01949859969317913, 0.6097232699394226, -0.33984464406967163, 0.01086614839732647, -0.3991383910179138, 0.017419204115867615, -0.01695414073765278, 0.5931477546691895, -0.2517222762107849, -0.02400941401720047, 0.0013525814283639193, 0.01344583835452795, -0.029876653105020523, -0.009922938421368599, 0.04296344891190529, -0.06023271754384041, 1.3474942445755005, 0.3142503499984741, -0.6099371314048767, 0.10700714588165283, -2.692471981048584, -0.7116832137107849, -0.28735774755477905, 1.3414901494979858, 0.009359680116176605, -0.006052033975720406, 0.17649167776107788]} +{"t": 5.8405, "q": [-0.30791768431663513, -0.027052603662014008, 0.01947181671857834, 0.6098255515098572, -0.33984053134918213, 0.01087343879044056, -0.3991554379463196, 0.017487380653619766, -0.0169675312936306, 0.5931733250617981, -0.2517474591732025, -0.023980602622032166, 0.001379365217871964, 0.013453450985252857, -0.02989143505692482, -0.009910954162478447, 0.042939480394124985, -0.06011287495493889, 1.3475062847137451, 0.3142263889312744, -0.6099850535392761, 0.10701913386583328, -2.6926276683807373, -0.7118510007858276, -0.28756147623062134, 1.3414901494979858, 0.009335711598396301, -0.0057404437102377415, 0.17643176019191742]} +{"t": 5.8572, "q": [-0.3079347312450409, -0.027018515393137932, 0.019458424299955368, 0.6098937392234802, -0.33984464406967163, 0.01086614839732647, -0.3991554379463196, 0.01750442571938038, -0.0169675312936306, 0.5931733250617981, -0.25178098678588867, -0.023922991007566452, 0.0013659733813256025, 0.013461052440106869, -0.02989640086889267, -0.009898969903588295, 0.04296344891190529, -0.060088906437158585, 1.3474942445755005, 0.3142263889312744, -0.6100210547447205, 0.10701913386583328, -2.692843437194824, -0.7120786905288696, -0.28765735030174255, 1.3414901494979858, 0.009347695857286453, -0.005560680292546749, 0.1763598620891571]} +{"t": 5.874, "q": [-0.3079347312450409, -0.026984427124261856, 0.01947181671857834, 0.6099789142608643, -0.33984053134918213, 0.01087343879044056, -0.3991469144821167, 0.017521468922495842, -0.01698092371225357, 0.5932159423828125, -0.25253966450691223, -0.022605132311582565, 0.001379365217871964, 0.013476255349814892, -0.02990633249282837, -0.009886985644698143, 0.04295146465301514, -0.060028985142707825, 1.3474702835083008, 0.3142263889312744, -0.6100450158119202, 0.10703111439943314, -2.6932268142700195, -0.7122704386711121, -0.28786107897758484, 1.3415021896362305, 0.009359680116176605, -0.005225121974945068, 0.1763358861207962]} +{"t": 5.8907, "q": [-0.30796027183532715, -0.026958860456943512, 0.019445031881332397, 0.6100044846534729, -0.33984053134918213, 0.01087343879044056, -0.3991810083389282, 0.01750442571938038, -0.01698092371225357, 0.5932585597038269, -0.2538432776927948, -0.020365487784147263, 0.001379365217871964, 0.013461075723171234, -0.029916033148765564, -0.009839048609137535, 0.04296344891190529, -0.059885174036026, 1.3474702835083008, 0.3142263889312744, -0.61005699634552, 0.10701913386583328, -2.693610429763794, -0.7125820517539978, -0.2879449725151062, 1.3414661884307861, 0.009347695857286453, -0.005105279851704836, 0.17625200748443604]} +{"t": 5.9077, "q": [-0.3079347312450409, -0.026967382058501244, 0.01947181671857834, 0.610072672367096, -0.3398323357105255, 0.010858974419534206, -0.3991895318031311, 0.01751294732093811, -0.01698092371225357, 0.5932756066322327, -0.25391870737075806, -0.020221462473273277, 0.001379365217871964, 0.013499059714376926, -0.029921231791377068, -0.009791111573576927, 0.04295146465301514, -0.05974136292934418, 1.3474823236465454, 0.3142024278640747, -0.6101168990135193, 0.10700714588165283, -2.694305419921875, -0.7129775285720825, -0.28818467259407043, 1.3414901494979858, 0.009359680116176605, -0.004829642828553915, 0.17613215744495392]} +{"t": 5.9245, "q": [-0.30796027183532715, -0.026958860456943512, 0.019404856488108635, 0.6101152896881104, -0.33984053134918213, 0.01087343879044056, -0.399198055267334, 0.017478859052062035, -0.01698092371225357, 0.5932670831680298, -0.2539271116256714, -0.020221449434757233, 0.0013659733813256025, 0.013483880087733269, -0.029930930584669113, -0.009767143987119198, 0.04295146465301514, -0.059549614787101746, 1.3474942445755005, 0.3142024278640747, -0.6101888418197632, 0.10701913386583328, -2.6950485706329346, -0.7134448885917664, -0.28850823640823364, 1.3414661884307861, 0.009359680116176605, -0.004673847928643227, 0.17600032687187195]} +{"t": 5.9413, "q": [-0.3079858422279358, -0.02694181725382805, 0.019431641325354576, 0.610140860080719, -0.33984875679016113, 0.01085885800421238, -0.39921510219573975, 0.017478859052062035, -0.0169675312936306, 0.5932415127754211, -0.25393548607826233, -0.020192665979266167, 0.001379365217871964, 0.013506662100553513, -0.029926197603344917, -0.009731191210448742, 0.042939480394124985, -0.059357866644859314, 1.3474823236465454, 0.3142024278640747, -0.6102128028869629, 0.10701913386583328, -2.69612717628479, -0.713768482208252, -0.2891194224357605, 1.3414901494979858, 0.00938364863395691, -0.00441019469872117, 0.17585651576519012]} +{"t": 5.958, "q": [-0.3080199360847473, -0.02694181725382805, 0.019391464069485664, 0.6101579070091248, -0.33984464406967163, 0.01086614839732647, -0.3992406725883484, 0.017461813986301422, -0.0169675312936306, 0.5932585597038269, -0.2539355158805847, -0.020207051187753677, 0.0013525814283639193, 0.013491458259522915, -0.029916265979409218, -0.009731191210448742, 0.04295146465301514, -0.05920207127928734, 1.3474823236465454, 0.31421440839767456, -0.6102607250213623, 0.10701913386583328, -2.6974453926086426, -0.7141759395599365, -0.28977856040000916, 1.3414661884307861, 0.009371664375066757, -0.004326305352151394, 0.17582057416439056]} +{"t": 5.9748, "q": [-0.3080284595489502, -0.02694181725382805, 0.019418248906731606, 0.610209047794342, -0.33984875679016113, 0.01085885800421238, -0.39924919605255127, 0.017470337450504303, -0.01695414073765278, 0.593250036239624, -0.253939688205719, -0.0201998520642519, 0.0013391895918175578, 0.013483880087733269, -0.029930930584669113, -0.009611348621547222, 0.04295146465301514, -0.05904627591371536, 1.3474942445755005, 0.31416645646095276, -0.610284686088562, 0.10701913386583328, -2.6988234519958496, -0.714511513710022, -0.2908211946487427, 1.3414661884307861, 0.009527458809316158, -0.0041345576755702496, 0.1756887435913086]} +{"t": 5.9915, "q": [-0.3080369830131531, -0.02694181725382805, 0.019418248906731606, 0.6101920008659363, -0.33985283970832825, 0.010880612768232822, -0.39924919605255127, 0.01744477078318596, -0.01695414073765278, 0.5932329893112183, -0.2539397180080414, -0.02021423727273941, 0.0013391895918175578, 0.013491492718458176, -0.02994571253657341, -0.009587380103766918, 0.04292749613523483, -0.0589623898267746, 1.3474823236465454, 0.3141544759273529, -0.610284686088562, 0.10701913386583328, -2.700117826461792, -0.7148230671882629, -0.2916121482849121, 1.3414063453674316, 0.009635317139327526, -0.00407463638111949, 0.17556889355182648]} +{"t": 6.0083, "q": [-0.3080199360847473, -0.02695033885538578, 0.019351288676261902, 0.6101834774017334, -0.33986103534698486, 0.010880554094910622, -0.3992321491241455, 0.01745329238474369, -0.016913963481783867, 0.5932415127754211, -0.25394392013549805, -0.020207038149237633, 0.001272230059839785, 0.01349148154258728, -0.029935896396636963, -0.00953944306820631, 0.04292749613523483, -0.05884254723787308, 1.3474583625793457, 0.31409457325935364, -0.610284686088562, 0.10700714588165283, -2.70137619972229, -0.7150627970695496, -0.2921154797077179, 1.341382384300232, 0.009563411585986614, -0.004014715552330017, 0.17544905841350555]} +{"t": 6.025, "q": [-0.3080284595489502, -0.02694181725382805, 0.019378073513507843, 0.6101920008659363, -0.33986103534698486, 0.010880554094910622, -0.3992321491241455, 0.017478859052062035, -0.016847005113959312, 0.5932159423828125, -0.2539271116256714, -0.020221449434757233, 0.001232054433785379, 0.013506684452295303, -0.02994582988321781, -0.009491506032645702, 0.04292749613523483, -0.05867476761341095, 1.3474583625793457, 0.31409457325935364, -0.610284686088562, 0.10700714588165283, -2.702275037765503, -0.7152185440063477, -0.2924150824546814, 1.3413463830947876, 0.009563411585986614, -0.003978762775659561, 0.1753891408443451]} +{"t": 6.0418, "q": [-0.3080199360847473, -0.026967382058501244, 0.019391464069485664, 0.6102175712585449, -0.33985692262649536, 0.010887844488024712, -0.3992236256599426, 0.01744477078318596, -0.016766652464866638, 0.5932244658470154, -0.2539271116256714, -0.020221449434757233, 0.001191878691315651, 0.013491492718458176, -0.02994571253657341, -0.00947952177375555, 0.042939480394124985, -0.05848301947116852, 1.3474583625793457, 0.3141065537929535, -0.610284686088562, 0.10699516534805298, -2.7028982639312744, -0.7153983116149902, -0.29277461767196655, 1.3413463830947876, 0.009587380103766918, -0.003966778516769409, 0.17528127133846283]} +{"t": 6.0587, "q": [-0.3080199360847473, -0.026984427124261856, 0.019378073513507843, 0.6102516651153564, -0.33985283970832825, 0.010895135812461376, -0.3992321491241455, 0.017427725717425346, -0.01679343730211258, 0.5931903719902039, -0.2539271116256714, -0.020221449434757233, 0.0012186624808236957, 0.013476300984621048, -0.029945597052574158, -0.009455553255975246, 0.04292749613523483, -0.05817142874002457, 1.347446322441101, 0.314034640789032, -0.6102727055549622, 0.10697119683027267, -2.70320987701416, -0.7154582738876343, -0.2930143177509308, 1.3413463830947876, 0.00953944306820631, -0.003942809998989105, 0.1751853972673416]} +{"t": 6.0754, "q": [-0.3080284595489502, -0.026992948725819588, 0.019391464069485664, 0.610302746295929, -0.33985283970832825, 0.010895135812461376, -0.39920657873153687, 0.017419204115867615, -0.016739869490265846, 0.5931988954544067, -0.2539229094982147, -0.0202142633497715, 0.0012186624808236957, 0.013499082997441292, -0.029940864071249962, -0.009431585669517517, 0.04291551187634468, -0.057692062109708786, 1.3474702835083008, 0.314034640789032, -0.6102727055549622, 0.10695920884609222, -2.703329563140869, -0.7154582738876343, -0.29317009449005127, 1.3413703441619873, 0.009515474550426006, -0.003954794257879257, 0.175137460231781]} +{"t": 6.0922, "q": [-0.3080710768699646, -0.027018515393137932, 0.019391464069485664, 0.6103538870811462, -0.33985283970832825, 0.010895135812461376, -0.3992236256599426, 0.01739363744854927, -0.016753261908888817, 0.5932074189186096, -0.25390610098838806, -0.020228693261742592, 0.0012588382232934237, 0.01349148154258728, -0.029935896396636963, -0.009419601410627365, 0.042879559099674225, -0.057020943611860275, 1.3474702835083008, 0.3140106797218323, -0.6102727055549622, 0.10698317736387253, -2.703305721282959, -0.7154462337493896, -0.2932659685611725, 1.341394305229187, 0.009503490291535854, -0.003942809998989105, 0.1750895380973816]} +{"t": 6.1091, "q": [-0.30809664726257324, -0.027052603662014008, 0.019391464069485664, 0.6104305982589722, -0.33985692262649536, 0.010887844488024712, -0.39921510219573975, 0.017368070781230927, -0.016753261908888817, 0.5932244658470154, -0.2539103031158447, -0.020221492275595665, 0.0013391895918175578, 0.013476278632879257, -0.029925964772701263, -0.00938364863395691, 0.04280765354633331, -0.05643371492624283, 1.347446322441101, 0.3139866888523102, -0.6102607250213623, 0.10694722831249237, -2.703293561935425, -0.7154222726821899, -0.2932300269603729, 1.3414063453674316, 0.009335711598396301, -0.003918841481208801, 0.17504160106182098]} +{"t": 6.1258, "q": [-0.308156281709671, -0.027052603662014008, 0.019391464069485664, 0.6105584502220154, -0.33985283970832825, 0.010895135812461376, -0.3991810083389282, 0.017351027578115463, -0.016847005113959312, 0.5932329893112183, -0.2538893520832062, -0.020257489755749702, 0.0013659733813256025, 0.013468677178025246, -0.029920998960733414, -0.00938364863395691, 0.042759716510772705, -0.056062206625938416, 1.3474223613739014, 0.3139866888523102, -0.6102607250213623, 0.10694722831249237, -2.703305721282959, -0.7153983116149902, -0.29321804642677307, 1.3414303064346313, 0.00932372733950615, -0.003906857222318649, 0.17498166859149933]} +{"t": 6.1425, "q": [-0.3082074224948883, -0.027052603662014008, 0.019391464069485664, 0.6106266379356384, -0.33985283970832825, 0.010895135812461376, -0.39916396141052246, 0.017359549179673195, -0.016913963481783867, 0.593250036239624, -0.2538767457008362, -0.020264701917767525, 0.001379365217871964, 0.013476278632879257, -0.029925964772701263, -0.009371664375066757, 0.04274773225188255, -0.05553489923477173, 1.347434401512146, 0.3139627277851105, -0.6102367639541626, 0.10694722831249237, -2.703305721282959, -0.715338408946991, -0.2932300269603729, 1.3414303064346313, 0.009239837527275085, -0.003882888937368989, 0.17489778995513916]} +{"t": 6.1594, "q": [-0.30818185210227966, -0.027052603662014008, 0.019391464069485664, 0.6106436848640442, -0.33985692262649536, 0.010887844488024712, -0.3991810083389282, 0.017351027578115463, -0.016913963481783867, 0.5932756066322327, -0.25386834144592285, -0.020279118791222572, 0.0014597165863960981, 0.013476278632879257, -0.029925964772701263, -0.009359680116176605, 0.04272376373410225, -0.055043548345565796, 1.3474223613739014, 0.31393876671791077, -0.6102487444877625, 0.10695920884609222, -2.703305721282959, -0.7153144478797913, -0.2932060658931732, 1.3414303064346313, 0.009215869009494781, -0.003858920419588685, 0.1748378574848175]} +{"t": 6.1762, "q": [-0.30814775824546814, -0.02707817032933235, 0.019404856488108635, 0.6106777191162109, -0.33985692262649536, 0.010887844488024712, -0.3991554379463196, 0.017368070781230927, -0.016873788088560104, 0.5933778285980225, -0.2538766860961914, -0.02025029808282852, 0.0014463247498497367, 0.013461075723171234, -0.029916033148765564, -0.009335711598396301, 0.042699795216321945, -0.05438441410660744, 1.3474223613739014, 0.31391480565071106, -0.6102247834205627, 0.10693524032831192, -2.703305721282959, -0.7152425050735474, -0.2932420074939728, 1.3414303064346313, 0.009167931973934174, -0.003858920419588685, 0.17477793991565704]} +{"t": 6.1929, "q": [-0.3081222176551819, -0.02706964872777462, 0.019391464069485664, 0.6106947660446167, -0.33985283970832825, 0.010895135812461376, -0.39916396141052246, 0.017376594245433807, -0.016873788088560104, 0.5934715867042542, -0.25388094782829285, -0.020271888002753258, 0.0014329327968880534, 0.013468677178025246, -0.029920998960733414, -0.009299758821725845, 0.04261590540409088, -0.05402488633990288, 1.3474583625793457, 0.31389081478118896, -0.6102128028869629, 0.10694722831249237, -2.703305721282959, -0.7151826024055481, -0.2932899296283722, 1.3414303064346313, 0.00920388475060463, -0.003858920419588685, 0.1747419834136963]} +{"t": 6.2096, "q": [-0.308113694190979, -0.027086691930890083, 0.019404856488108635, 0.6107288599014282, -0.33984053134918213, 0.010902484878897667, -0.39916396141052246, 0.01739363744854927, -0.016887180507183075, 0.5935312509536743, -0.2538766860961914, -0.02025029808282852, 0.0014061490073800087, 0.013468677178025246, -0.029920998960733414, -0.009275790303945541, 0.04261590540409088, -0.05361742526292801, 1.3474583625793457, 0.31389081478118896, -0.6102128028869629, 0.10692325979471207, -2.703293561935425, -0.7151826024055481, -0.2932659685611725, 1.3414063453674316, 0.009084043093025684, -0.003906857222318649, 0.1745622307062149]} +{"t": 6.2264, "q": [-0.30808812379837036, -0.027086691930890083, 0.019404856488108635, 0.6107629537582397, -0.33984464406967163, 0.010880671441555023, -0.39917248487472534, 0.01738511584699154, -0.016913963481783867, 0.5936164855957031, -0.25386831164360046, -0.02026471495628357, 0.0013927571708336473, 0.013476278632879257, -0.029925964772701263, -0.009251821786165237, 0.04255598410964012, -0.05336575582623482, 1.347446322441101, 0.3139028251171112, -0.6101528406143188, 0.10692325979471207, -2.703305721282959, -0.7151826024055481, -0.29325398802757263, 1.3414063453674316, 0.009072058834135532, -0.003870904678478837, 0.17452627420425415]} +{"t": 6.2431, "q": [-0.30808812379837036, -0.02707817032933235, 0.01947181671857834, 0.610814094543457, -0.33984464406967163, 0.01086614839732647, -0.39917248487472534, 0.017419204115867615, -0.016873788088560104, 0.5937187075614929, -0.2538767457008362, -0.020279105752706528, 0.0013659733813256025, 0.013468677178025246, -0.029920998960733414, -0.009251821786165237, 0.04253201559185982, -0.05309011787176132, 1.347434401512146, 0.3139028251171112, -0.6101648211479187, 0.10692325979471207, -2.703305721282959, -0.7151226997375488, -0.29327794909477234, 1.3414303064346313, 0.009072058834135532, -0.003870904678478837, 0.1744423806667328]} +{"t": 6.2599, "q": [-0.3080625534057617, -0.02707817032933235, 0.019458424299955368, 0.6108396649360657, -0.33984053134918213, 0.01087343879044056, -0.39917248487472534, 0.017419204115867615, -0.016900572925806046, 0.5937442779541016, -0.2538767457008362, -0.020279105752706528, 0.0014061490073800087, 0.013468677178025246, -0.029920998960733414, -0.009227853268384933, 0.042520031332969666, -0.05281447991728783, 1.347434401512146, 0.3138788342475891, -0.6101648211479187, 0.10694722831249237, -2.703305721282959, -0.7151346802711487, -0.29327794909477234, 1.3414063453674316, 0.009072058834135532, -0.003894873196259141, 0.17439444363117218]} +{"t": 6.2766, "q": [-0.30805402994155884, -0.027086691930890083, 0.019445031881332397, 0.6108481884002686, -0.33984053134918213, 0.01087343879044056, -0.3991810083389282, 0.017419204115867615, -0.01695414073765278, 0.5937954187393188, -0.2538725435733795, -0.020271919667720795, 0.0013927571708336473, 0.013468677178025246, -0.029920998960733414, -0.00920388475060463, 0.04247209429740906, -0.05251487344503403, 1.3474583625793457, 0.3139028251171112, -0.6101528406143188, 0.10692325979471207, -2.703305721282959, -0.7151226997375488, -0.293337881565094, 1.3414303064346313, 0.009096027351915836, -0.003858920419588685, 0.17425063252449036]} +{"t": 6.2933, "q": [-0.30805402994155884, -0.02707817032933235, 0.019431641325354576, 0.6108737587928772, -0.33984053134918213, 0.01087343879044056, -0.3991810083389282, 0.017427725717425346, -0.0169675312936306, 0.5938039422035217, -0.2538767457008362, -0.020279105752706528, 0.001379365217871964, 0.013468677178025246, -0.029920998960733414, -0.009191900491714478, 0.0424361415207386, -0.052155349403619766, 1.347446322441101, 0.3139028251171112, -0.6101648211479187, 0.10692325979471207, -2.703305721282959, -0.715110719203949, -0.29334986209869385, 1.3414303064346313, 0.009048090316355228, -0.003882888937368989, 0.17417873442173004]} +{"t": 6.3103, "q": [-0.3080369830131531, -0.027052603662014008, 0.019458424299955368, 0.610890805721283, -0.33984464406967163, 0.010880671441555023, -0.3991810083389282, 0.01744477078318596, -0.0169675312936306, 0.5938295125961304, -0.2538851499557495, -0.02026468887925148, 0.0013927571708336473, 0.013476278632879257, -0.029925964772701263, -0.009179916232824326, 0.042400188744068146, -0.051783837378025055, 1.3474583625793457, 0.3138788342475891, -0.6101288795471191, 0.10692325979471207, -2.703305721282959, -0.7150627970695496, -0.29337382316589355, 1.3414063453674316, 0.009072058834135532, -0.003858920419588685, 0.17403492331504822]} +{"t": 6.3271, "q": [-0.30805402994155884, -0.027027036994695663, 0.019418248906731606, 0.6108993291854858, -0.33984053134918213, 0.01087343879044056, -0.3991810083389282, 0.017427725717425346, -0.016940748319029808, 0.5938465595245361, -0.2538893520832062, -0.020257489755749702, 0.0013927571708336473, 0.013483880087733269, -0.029930930584669113, -0.009167931973934174, 0.042340267449617386, -0.051484230905771255, 1.3474702835083008, 0.3139028251171112, -0.6100929379463196, 0.10692325979471207, -2.703305721282959, -0.7150747776031494, -0.2934097945690155, 1.3414303064346313, 0.009096027351915836, -0.003870904678478837, 0.1739150732755661]} +{"t": 6.3439, "q": [-0.30805402994155884, -0.027052603662014008, 0.019445031881332397, 0.610890805721283, -0.33984464406967163, 0.010880671441555023, -0.3991895318031311, 0.017427725717425346, -0.01695414073765278, 0.5938465595245361, -0.25388938188552856, -0.020271874964237213, 0.0014061490073800087, 0.013483880087733269, -0.029930930584669113, -0.009131979197263718, 0.04230431467294693, -0.051124703139066696, 1.3474702835083008, 0.3139267861843109, -0.6100450158119202, 0.10693524032831192, -2.7032697200775146, -0.7150747776031494, -0.2934337556362152, 1.3414063453674316, 0.009084043093025684, -0.003870904678478837, 0.17374730110168457]} +{"t": 6.3607, "q": [-0.30804550647735596, -0.027018515393137932, 0.019445031881332397, 0.610890805721283, -0.33984464406967163, 0.010880671441555023, -0.3991810083389282, 0.01744477078318596, -0.01695414073765278, 0.5938465595245361, -0.25389355421066284, -0.020264675840735435, 0.001379365217871964, 0.01349148154258728, -0.029935896396636963, -0.009131979197263718, 0.04229233041405678, -0.050705257803201675, 1.3474823236465454, 0.3139627277851105, -0.6099850535392761, 0.10692325979471207, -2.703305721282959, -0.7150987386703491, -0.2934337556362152, 1.3414063453674316, 0.009072058834135532, -0.003894873196259141, 0.17362745106220245]} +{"t": 6.3775, "q": [-0.30805402994155884, -0.027018515393137932, 0.019418248906731606, 0.6109334230422974, -0.33984464406967163, 0.01086614839732647, -0.3991895318031311, 0.017436247318983078, -0.016940748319029808, 0.593855082988739, -0.2539103031158447, -0.020221492275595665, 0.0013927571708336473, 0.013483880087733269, -0.029930930584669113, -0.009108011610805988, 0.042208440601825714, -0.05026184022426605, 1.3475183248519897, 0.31393876671791077, -0.6099730730056763, 0.10692325979471207, -2.703305721282959, -0.7150627970695496, -0.2934577167034149, 1.3414063453674316, 0.009084043093025684, -0.003882888937368989, 0.17349563539028168]} +{"t": 6.3942, "q": [-0.3080284595489502, -0.027018515393137932, 0.019418248906731606, 0.6109078526496887, -0.33984464406967163, 0.010880671441555023, -0.399198055267334, 0.017427725717425346, -0.016913963481783867, 0.5938380360603333, -0.2539018988609314, -0.02023589238524437, 0.001379365217871964, 0.013483880087733269, -0.029930930584669113, -0.00906007457524538, 0.04219645634293556, -0.04996223375201225, 1.3474942445755005, 0.31393876671791077, -0.6099251508712769, 0.10692325979471207, -2.7032816410064697, -0.7150747776031494, -0.29355359077453613, 1.3414063453674316, 0.009084043093025684, -0.003882888937368989, 0.17339976131916046]} +{"t": 6.411, "q": [-0.3080369830131531, -0.027018515393137932, 0.019445031881332397, 0.6109078526496887, -0.33984872698783875, 0.010873380117118359, -0.39921510219573975, 0.017427725717425346, -0.016927355900406837, 0.5938380360603333, -0.25390610098838806, -0.020228693261742592, 0.001379365217871964, 0.013499082997441292, -0.029940864071249962, -0.009036106057465076, 0.04217248782515526, -0.04977048560976982, 1.3474942445755005, 0.3139507472515106, -0.6099011898040771, 0.10689929127693176, -2.7032816410064697, -0.7150867581367493, -0.2935296297073364, 1.3414303064346313, 0.009096027351915836, -0.003894873196259141, 0.1732679307460785]} +{"t": 6.4278, "q": [-0.3080625534057617, -0.0270099937915802, 0.019431641325354576, 0.6109334230422974, -0.33986103534698486, 0.010880554094910622, -0.39921510219573975, 0.01738511584699154, -0.016913963481783867, 0.5937783718109131, -0.25391867756843567, -0.020207077264785767, 0.0013927571708336473, 0.013483891263604164, -0.02994074672460556, -0.009048090316355228, 0.042160503566265106, -0.04969858378171921, 1.347446322441101, 0.3139627277851105, -0.609913170337677, 0.10691127181053162, -2.703293561935425, -0.7150867581367493, -0.2935176491737366, 1.3414063453674316, 0.00906007457524538, -0.003906857222318649, 0.17312411963939667]} +{"t": 6.4445, "q": [-0.3080625534057617, -0.027018515393137932, 0.019418248906731606, 0.6109078526496887, -0.33985283970832825, 0.010880612768232822, -0.39921510219573975, 0.017376594245433807, -0.016913963481783867, 0.5938124656677246, -0.2539103031158447, -0.020221492275595665, 0.0013659733813256025, 0.01349148154258728, -0.029935896396636963, -0.009036106057465076, 0.042160503566265106, -0.04960270971059799, 1.3474702835083008, 0.3139866888523102, -0.609913170337677, 0.10691127181053162, -2.7032816410064697, -0.7150627970695496, -0.2935296297073364, 1.3414063453674316, 0.00906007457524538, -0.003906857222318649, 0.17302824556827545]} +{"t": 6.4613, "q": [-0.30808812379837036, -0.027018515393137932, 0.019418248906731606, 0.6109248995780945, -0.33985283970832825, 0.010895135812461376, -0.3992236256599426, 0.017351027578115463, -0.016847005113959312, 0.5937954187393188, -0.2539145052433014, -0.020214276388287544, 0.0014061490073800087, 0.013499071821570396, -0.029931047931313515, -0.009036106057465076, 0.0421125665307045, -0.04954278841614723, 1.3474583625793457, 0.3140106797218323, -0.6099011898040771, 0.10689929127693176, -2.703293561935425, -0.7150627970695496, -0.293565571308136, 1.3414063453674316, 0.009072058834135532, -0.003894873196259141, 0.17287245392799377]} +{"t": 6.4781, "q": [-0.30809664726257324, -0.027027036994695663, 0.019364681094884872, 0.6109419465065002, -0.33985283970832825, 0.010895135812461376, -0.3992321491241455, 0.017342504113912582, -0.016847005113959312, 0.5937528014183044, -0.25391867756843567, -0.020207077264785767, 0.001379365217871964, 0.013476289808750153, -0.02993578091263771, -0.009012137539684772, 0.042148519307374954, -0.049434930086135864, 1.3474702835083008, 0.3140106797218323, -0.609913170337677, 0.10688730329275131, -2.7032816410064697, -0.7150627970695496, -0.29357755184173584, 1.3414063453674316, 0.00906007457524538, -0.003894873196259141, 0.17277657985687256]} +{"t": 6.4948, "q": [-0.308113694190979, -0.027035560458898544, 0.019364681094884872, 0.6109248995780945, -0.33985283970832825, 0.010895135812461376, -0.3992321491241455, 0.017342504113912582, -0.016847005113959312, 0.5937357544898987, -0.253927081823349, -0.020207064226269722, 0.0014061490073800087, 0.01349148154258728, -0.029935896396636963, -0.009012137539684772, 0.0421125665307045, -0.04942294582724571, 1.3474702835083008, 0.3140106797218323, -0.6099011898040771, 0.10688730329275131, -2.7032816410064697, -0.7150627970695496, -0.29364946484565735, 1.3414063453674316, 0.00906007457524538, -0.003894873196259141, 0.1726926863193512]} +{"t": 6.5116, "q": [-0.3081222176551819, -0.027027036994695663, 0.019378073513507843, 0.6109248995780945, -0.33984872698783875, 0.010887903161346912, -0.39921510219573975, 0.01733398251235485, -0.016833612695336342, 0.593693196773529, -0.2539270520210266, -0.02019267901778221, 0.0014061490073800087, 0.01349148154258728, -0.029935896396636963, -0.009012137539684772, 0.0421125665307045, -0.04939897730946541, 1.3474702835083008, 0.314034640789032, -0.609913170337677, 0.10688730329275131, -2.7032816410064697, -0.7150627970695496, -0.293709397315979, 1.3414063453674316, 0.009048090316355228, -0.003894873196259141, 0.17263276875019073]} +{"t": 6.5284, "q": [-0.30813923478126526, -0.027044082060456276, 0.019378073513507843, 0.6109078526496887, -0.33986103534698486, 0.010880554094910622, -0.3992406725883484, 0.01732546091079712, -0.016833612695336342, 0.5936761498451233, -0.25392287969589233, -0.02019987814128399, 0.0013927571708336473, 0.013483880087733269, -0.029930930584669113, -0.008988169021904469, 0.04212455078959465, -0.049375008791685104, 1.3474583625793457, 0.314034640789032, -0.609913170337677, 0.10689929127693176, -2.7032816410064697, -0.7150747776031494, -0.29376929998397827, 1.3414063453674316, 0.009024121798574924, -0.003906857222318649, 0.17257283627986908]} +{"t": 6.5452, "q": [-0.30818185210227966, -0.027035560458898544, 0.019391464069485664, 0.6109163761138916, -0.3398692309856415, 0.010895036160945892, -0.39924919605255127, 0.01732546091079712, -0.01682022027671337, 0.5936846733093262, -0.2539270520210266, -0.02019267901778221, 0.0014061490073800087, 0.013483880087733269, -0.029930930584669113, -0.009012137539684772, 0.042100582271814346, -0.0493510402739048, 1.3474702835083008, 0.314034640789032, -0.6099251508712769, 0.10689929127693176, -2.703305721282959, -0.7150627970695496, -0.29376929998397827, 1.3414063453674316, 0.00906007457524538, -0.003906857222318649, 0.17254887521266937]} +{"t": 6.562, "q": [-0.3082074224948883, -0.027018515393137932, 0.019364681094884872, 0.6108993291854858, -0.3398692309856415, 0.010895036160945892, -0.39925771951675415, 0.01732546091079712, -0.01682022027671337, 0.5936335325241089, -0.25393548607826233, -0.020192665979266167, 0.001419540960341692, 0.013483880087733269, -0.029930930584669113, -0.009012137539684772, 0.0421125665307045, -0.049327071756124496, 1.3474702835083008, 0.314034640789032, -0.6099371314048767, 0.10691127181053162, -2.703305721282959, -0.7150627970695496, -0.2937813103199005, 1.3414063453674316, 0.00906007457524538, -0.003882888937368989, 0.17256085574626923]} +{"t": 6.5788, "q": [-0.3082159459590912, -0.027035560458898544, 0.019364681094884872, 0.6108993291854858, -0.33986514806747437, 0.010902327485382557, -0.39926624298095703, 0.01732546091079712, -0.01682022027671337, 0.5936335325241089, -0.2539312541484833, -0.020185479894280434, 0.0014061490073800087, 0.013483880087733269, -0.029930930584669113, -0.009012137539684772, 0.0421125665307045, -0.049315087497234344, 1.3474583625793457, 0.314034640789032, -0.6099371314048767, 0.10689929127693176, -2.7032816410064697, -0.7150627970695496, -0.29376929998397827, 1.3414063453674316, 0.009072058834135532, -0.003870904678478837, 0.17253689467906952]} +{"t": 6.5955, "q": [-0.30823299288749695, -0.027035560458898544, 0.019364681094884872, 0.6109078526496887, -0.33986514806747437, 0.010902327485382557, -0.39925771951675415, 0.01732546091079712, -0.01682022027671337, 0.593625009059906, -0.25391867756843567, -0.020207077264785767, 0.0014061490073800087, 0.013483880087733269, -0.029930930584669113, -0.009012137539684772, 0.0421125665307045, -0.04930310323834419, 1.3474702835083008, 0.314034640789032, -0.6099371314048767, 0.10689929127693176, -2.7032816410064697, -0.7150627970695496, -0.2938052713871002, 1.3414063453674316, 0.009072058834135532, -0.003870904678478837, 0.17263276875019073]} +{"t": 6.6123, "q": [-0.30823299288749695, -0.027035560458898544, 0.019378073513507843, 0.6109078526496887, -0.33986514806747437, 0.010902327485382557, -0.39924919605255127, 0.01733398251235485, -0.016833612695336342, 0.5936335325241089, -0.25391867756843567, -0.020207077264785767, 0.0014329327968880534, 0.013483880087733269, -0.029930930584669113, -0.009024121798574924, 0.042100582271814346, -0.04926715046167374, 1.347446322441101, 0.314034640789032, -0.6099491119384766, 0.10689929127693176, -2.7032816410064697, -0.7150627970695496, -0.29376929998397827, 1.3414063453674316, 0.009048090316355228, -0.003870904678478837, 0.17265672981739044]} +{"t": 6.629, "q": [-0.3082159459590912, -0.027052603662014008, 0.019378073513507843, 0.6109078526496887, -0.339865118265152, 0.010887786746025085, -0.3992406725883484, 0.017342504113912582, -0.01682022027671337, 0.5936505794525146, -0.2539145052433014, -0.020214276388287544, 0.0014329327968880534, 0.013461075723171234, -0.029916033148765564, -0.009012137539684772, 0.0421125665307045, -0.04914730787277222, 1.3474583625793457, 0.314034640789032, -0.6099371314048767, 0.10691127181053162, -2.703293561935425, -0.7150627970695496, -0.2937333583831787, 1.3414063453674316, 0.009048090316355228, -0.0038469363935291767, 0.17270466685295105]} +{"t": 6.6458, "q": [-0.30822446942329407, -0.027035560458898544, 0.019391464069485664, 0.6109163761138916, -0.33986514806747437, 0.010902327485382557, -0.3992406725883484, 0.017342504113912582, -0.016833612695336342, 0.5936505794525146, -0.25391867756843567, -0.020207077264785767, 0.0014463247498497367, 0.013476255349814892, -0.02990633249282837, -0.00900015328079462, 0.0421125665307045, -0.049135323613882065, 1.347446322441101, 0.314034640789032, -0.6099371314048767, 0.10688730329275131, -2.703293561935425, -0.7150627970695496, -0.29372137784957886, 1.3414063453674316, 0.009048090316355228, -0.0038469363935291767, 0.17265672981739044]} +{"t": 6.6625, "q": [-0.30822446942329407, -0.027052603662014008, 0.019378073513507843, 0.6109334230422974, -0.33985692262649536, 0.010887844488024712, -0.3992406725883484, 0.017342504113912582, -0.016847005113959312, 0.593693196773529, -0.25389352440834045, -0.020250290632247925, 0.001419540960341692, 0.013476255349814892, -0.02990633249282837, -0.009012137539684772, 0.0421125665307045, -0.04912333935499191, 1.3474823236465454, 0.314034640789032, -0.6099491119384766, 0.10687532275915146, -2.7032816410064697, -0.7150627970695496, -0.293709397315979, 1.3414063453674316, 0.008904279209673405, -0.0038349521346390247, 0.1727166473865509]} +{"t": 6.6793, "q": [-0.3082159459590912, -0.027052603662014008, 0.019404856488108635, 0.610958993434906, -0.33986103534698486, 0.010880554094910622, -0.3992236256599426, 0.017351027578115463, -0.016887180507183075, 0.5937017202377319, -0.2538893520832062, -0.020257489755749702, 0.0014329327968880534, 0.01349144708365202, -0.02990644983947277, -0.008988169021904469, 0.042100582271814346, -0.04909937083721161, 1.3474583625793457, 0.314034640789032, -0.6099610924720764, 0.10689929127693176, -2.703293561935425, -0.7150507569313049, -0.29372137784957886, 1.3414063453674316, 0.008844357915222645, -0.0038469363935291767, 0.17277657985687256]} +{"t": 6.696, "q": [-0.3082074224948883, -0.027052603662014008, 0.019391464069485664, 0.6109845638275146, -0.33985692262649536, 0.010887844488024712, -0.3992236256599426, 0.01738511584699154, -0.016873788088560104, 0.5937187075614929, -0.25388094782829285, -0.020271888002753258, 0.0014061490073800087, 0.013468677178025246, -0.029920998960733414, -0.009012137539684772, 0.04207661375403404, -0.04915929213166237, 1.3474583625793457, 0.314034640789032, -0.6099251508712769, 0.10689929127693176, -2.703293561935425, -0.7150507569313049, -0.2937333583831787, 1.3414063453674316, 0.008796420879662037, -0.0038469363935291767, 0.1726926863193512]} +{"t": 6.7127, "q": [-0.3081988990306854, -0.027052603662014008, 0.019391464069485664, 0.61104416847229, -0.33985283970832825, 0.010895135812461376, -0.3992236256599426, 0.017402159050107002, -0.016900572925806046, 0.5937357544898987, -0.2538851499557495, -0.02026468887925148, 0.001419540960341692, 0.013476267457008362, -0.029916148632764816, -0.00900015328079462, 0.04206462949514389, -0.04915929213166237, 1.3474583625793457, 0.314034640789032, -0.6099371314048767, 0.10688730329275131, -2.703305721282959, -0.7150507569313049, -0.29367342591285706, 1.3414063453674316, 0.008772453293204308, -0.003798999357968569, 0.17263276875019073]} +{"t": 6.7294, "q": [-0.3082074224948883, -0.02706112712621689, 0.019404856488108635, 0.6110526919364929, -0.33985692262649536, 0.010887844488024712, -0.39921510219573975, 0.01738511584699154, -0.016927355900406837, 0.5937442779541016, -0.2538893520832062, -0.020257489755749702, 0.001419540960341692, 0.013483880087733269, -0.029930930584669113, -0.009012137539684772, 0.04207661375403404, -0.049195244908332825, 1.3474702835083008, 0.314034640789032, -0.609913170337677, 0.10688730329275131, -2.703305721282959, -0.7150387763977051, -0.29364946484565735, 1.3414063453674316, 0.008736500516533852, -0.0037630468141287565, 0.17259681224822998]} +{"t": 6.7462, "q": [-0.30819037556648254, -0.027052603662014008, 0.019404856488108635, 0.6110782623291016, -0.33986103534698486, 0.010880554094910622, -0.39921510219573975, 0.01738511584699154, -0.016913963481783867, 0.5937698483467102, -0.25388094782829285, -0.020271888002753258, 0.0013927571708336473, 0.013491458259522915, -0.029916265979409218, -0.009012137539684772, 0.04206462949514389, -0.04917127639055252, 1.3474583625793457, 0.314034640789032, -0.6099251508712769, 0.10687532275915146, -2.703305721282959, -0.7150387763977051, -0.2936374843120575, 1.3414063453674316, 0.008712531998753548, -0.0037390782963484526, 0.17257283627986908]} +{"t": 6.7629, "q": [-0.30819037556648254, -0.027052603662014008, 0.019431641325354576, 0.6110697388648987, -0.33984872698783875, 0.010887903161346912, -0.399198055267334, 0.01738511584699154, -0.016913963481783867, 0.5938295125961304, -0.2538851499557495, -0.02026468887925148, 0.001419540960341692, 0.013491458259522915, -0.029916265979409218, -0.00900015328079462, 0.04205264523625374, -0.04915929213166237, 1.347446322441101, 0.31407058238983154, -0.609913170337677, 0.10687532275915146, -2.703329563140869, -0.7150507569313049, -0.29364946484565735, 1.3414063453674316, 0.008712531998753548, -0.0037031255196779966, 0.17253689467906952]} +{"t": 6.7797, "q": [-0.308156281709671, -0.02706112712621689, 0.019404856488108635, 0.6111123561859131, -0.33985692262649536, 0.010887844488024712, -0.39921510219573975, 0.01738511584699154, -0.016913963481783867, 0.5938295125961304, -0.25388091802597046, -0.020257502794265747, 0.001419540960341692, 0.013483880087733269, -0.029930930584669113, -0.008988169021904469, 0.04205264523625374, -0.04917127639055252, 1.3474583625793457, 0.31409457325935364, -0.6099011898040771, 0.10688730329275131, -2.703305721282959, -0.7150627970695496, -0.29362550377845764, 1.3414063453674316, 0.008652610704302788, -0.0036671729758381844, 0.1724889576435089]} +{"t": 6.7964, "q": [-0.30814775824546814, -0.027035560458898544, 0.019404856488108635, 0.6111038327217102, -0.33984872698783875, 0.010887903161346912, -0.3992236256599426, 0.01738511584699154, -0.01695414073765278, 0.5938295125961304, -0.2538893520832062, -0.020257489755749702, 0.001419540960341692, 0.013491458259522915, -0.029916265979409218, -0.009012137539684772, 0.04205264523625374, -0.04915929213166237, 1.3474702835083008, 0.3140825629234314, -0.6099011898040771, 0.10689929127693176, -2.703305721282959, -0.7150507569313049, -0.2935416102409363, 1.341382384300232, 0.008628642186522484, -0.0036432044580578804, 0.1724410206079483]} +{"t": 6.8131, "q": [-0.30814775824546814, -0.027035560458898544, 0.019391464069485664, 0.6111123561859131, -0.33985692262649536, 0.010887844488024712, -0.399198055267334, 0.01738511584699154, -0.016913963481783867, 0.5938295125961304, -0.253889262676239, -0.02022870071232319, 0.0014061490073800087, 0.01349148154258728, -0.029935896396636963, -0.008988169021904469, 0.04205264523625374, -0.04914730787277222, 1.3474702835083008, 0.31409457325935364, -0.609913170337677, 0.10687532275915146, -2.703293561935425, -0.7150507569313049, -0.2934577167034149, 1.3414063453674316, 0.008556736633181572, -0.0036072516813874245, 0.1724170446395874]} +{"t": 6.8299, "q": [-0.30813923478126526, -0.027035560458898544, 0.019391464069485664, 0.611120879650116, -0.33985692262649536, 0.010887844488024712, -0.399198055267334, 0.01739363744854927, -0.016887180507183075, 0.5938209891319275, -0.2538893520832062, -0.020257489755749702, 0.0014061490073800087, 0.013483880087733269, -0.029930930584669113, -0.008952216245234013, 0.04205264523625374, -0.04917127639055252, 1.3474702835083008, 0.31409457325935364, -0.6099371314048767, 0.10688730329275131, -2.703305721282959, -0.7150387763977051, -0.2934337556362152, 1.341382384300232, 0.008460862562060356, -0.003571299137547612, 0.1724170446395874]} +{"t": 6.8466, "q": [-0.30813923478126526, -0.027052603662014008, 0.019404856488108635, 0.611120879650116, -0.33985692262649536, 0.010887844488024712, -0.399198055267334, 0.01738511584699154, -0.016913963481783867, 0.5938124656677246, -0.2538893520832062, -0.020257489755749702, 0.001419540960341692, 0.01349148154258728, -0.029935896396636963, -0.008952216245234013, 0.04207661375403404, -0.04917127639055252, 1.3474702835083008, 0.3140825629234314, -0.6099371314048767, 0.10689929127693176, -2.703293561935425, -0.7150507569313049, -0.29342177510261536, 1.341394305229187, 0.008317052386701107, -0.0035353463608771563, 0.17240506410598755]} +{"t": 6.8634, "q": [-0.30814775824546814, -0.027035560458898544, 0.019404856488108635, 0.6111379265785217, -0.33985283970832825, 0.010895135812461376, -0.399198055267334, 0.017376594245433807, -0.016900572925806046, 0.5938039422035217, -0.2539103031158447, -0.020221492275595665, 0.001379365217871964, 0.013499082997441292, -0.029940864071249962, -0.008928247727453709, 0.04207661375403404, -0.04917127639055252, 1.3474823236465454, 0.31409457325935364, -0.6099371314048767, 0.10689929127693176, -2.703305721282959, -0.7150507569313049, -0.2934097945690155, 1.341394305229187, 0.00812530517578125, -0.003511378075927496, 0.1723930835723877]} +{"t": 6.8801, "q": [-0.30814775824546814, -0.0270099937915802, 0.019391464069485664, 0.6111464500427246, -0.33985692262649536, 0.010887844488024712, -0.3992236256599426, 0.017368070781230927, -0.016927355900406837, 0.5938209891319275, -0.2539060711860657, -0.020214306190609932, 0.0013927571708336473, 0.013506684452295303, -0.02994582988321781, -0.00894023198634386, 0.04207661375403404, -0.04915929213166237, 1.3474583625793457, 0.31407058238983154, -0.6099730730056763, 0.10689929127693176, -2.703329563140869, -0.7150387763977051, -0.29337382316589355, 1.341382384300232, 0.007873635739088058, -0.00347542529925704, 0.17240506410598755]} +{"t": 6.8968, "q": [-0.308156281709671, -0.0270099937915802, 0.019391464069485664, 0.611120879650116, -0.33985692262649536, 0.010887844488024712, -0.39921510219573975, 0.017368070781230927, -0.016873788088560104, 0.5938209891319275, -0.2539103031158447, -0.020221492275595665, 0.001379365217871964, 0.013499071821570396, -0.029931047931313515, -0.008916263468563557, 0.04205264523625374, -0.04914730787277222, 1.3474823236465454, 0.31407058238983154, -0.6099610924720764, 0.10691127181053162, -2.703305721282959, -0.7150387763977051, -0.2933858036994934, 1.341382384300232, 0.00755006168037653, -0.003487409558147192, 0.1723691076040268]} +{"t": 6.9136, "q": [-0.30818185210227966, -0.027018515393137932, 0.019391464069485664, 0.6111379265785217, -0.33986103534698486, 0.010880554094910622, -0.3992321491241455, 0.017368070781230927, -0.016873788088560104, 0.5937954187393188, -0.2539103031158447, -0.020221492275595665, 0.0014061490073800087, 0.013483880087733269, -0.029930930584669113, -0.008916263468563557, 0.04205264523625374, -0.04914730787277222, 1.3474583625793457, 0.31409457325935364, -0.6099850535392761, 0.10691127181053162, -2.703305721282959, -0.7150267958641052, -0.29339781403541565, 1.341382384300232, 0.006423544604331255, -0.003499393817037344, 0.1723691076040268]} +{"t": 6.9303, "q": [-0.30819037556648254, -0.027018515393137932, 0.019391464069485664, 0.611120879650116, -0.339865118265152, 0.010887786746025085, -0.3992236256599426, 0.017368070781230927, -0.016900572925806046, 0.5937783718109131, -0.25390610098838806, -0.020228693261742592, 0.0013927571708336473, 0.01349148154258728, -0.029935896396636963, -0.008916263468563557, 0.04205264523625374, -0.04915929213166237, 1.3474583625793457, 0.31409457325935364, -0.6099850535392761, 0.10689929127693176, -2.703305721282959, -0.7150387763977051, -0.2934097945690155, 1.341382384300232, 0.004038684070110321, -0.003499393817037344, 0.17238110303878784]} +{"t": 6.947, "q": [-0.30819037556648254, -0.027018515393137932, 0.019391464069485664, 0.6111379265785217, -0.33986103534698486, 0.010880554094910622, -0.3992321491241455, 0.017376594245433807, -0.016900572925806046, 0.593786895275116, -0.25390610098838806, -0.020228693261742592, 0.001419540960341692, 0.01349148154258728, -0.029935896396636963, -0.008916263468563557, 0.04206462949514389, -0.04914730787277222, 1.3474583625793457, 0.31407058238983154, -0.6100090742111206, 0.10692325979471207, -2.703317642211914, -0.7149908542633057, -0.29342177510261536, 1.3414303064346313, 0.003055977402254939, -0.00347542529925704, 0.1723930835723877]} +{"t": 6.9639, "q": [-0.3081988990306854, -0.027027036994695663, 0.019351288676261902, 0.6111294031143188, -0.33985692262649536, 0.010887844488024712, -0.3992321491241455, 0.017376594245433807, -0.016873788088560104, 0.5937613248825073, -0.25390610098838806, -0.020228693261742592, 0.0014061490073800087, 0.013483880087733269, -0.029930930584669113, -0.008904279209673405, 0.04205264523625374, -0.04911135509610176, 1.3474702835083008, 0.31407058238983154, -0.6100210547447205, 0.10692325979471207, -2.703293561935425, -0.7149788737297058, -0.29344573616981506, 1.3414063453674316, 0.0024807346053421497, -0.003511378075927496, 0.17242904007434845]} +{"t": 6.9806, "q": [-0.3082159459590912, -0.027018515393137932, 0.019404856488108635, 0.6111379265785217, -0.33985692262649536, 0.010902367532253265, -0.39921510219573975, 0.017368070781230927, -0.016887180507183075, 0.593786895275116, -0.25390610098838806, -0.020228693261742592, 0.0014061490073800087, 0.013491458259522915, -0.029916265979409218, -0.008892294950783253, 0.04205264523625374, -0.049075402319431305, 1.3474583625793457, 0.3140825629234314, -0.6100330352783203, 0.10692325979471207, -2.703305721282959, -0.7149788737297058, -0.2935176491737366, 1.341394305229187, 0.0019294602097943425, -0.003511378075927496, 0.17245300114154816]} +{"t": 6.9974, "q": [-0.3082159459590912, -0.027035560458898544, 0.019391464069485664, 0.6111294031143188, -0.33985283970832825, 0.010895135812461376, -0.39921510219573975, 0.017368070781230927, -0.016900572925806046, 0.5937783718109131, -0.2539103031158447, -0.020221492275595665, 0.001419540960341692, 0.013468677178025246, -0.029920998960733414, -0.008892294950783253, 0.042040660977363586, -0.049051433801651, 1.3474583625793457, 0.3140825629234314, -0.6100330352783203, 0.10692325979471207, -2.703305721282959, -0.7149549126625061, -0.2935416102409363, 1.3414063453674316, 0.0014500912511721253, -0.003511378075927496, 0.17247696220874786]} +{"t": 7.0141, "q": [-0.3082159459590912, -0.027018515393137932, 0.019404856488108635, 0.6111379265785217, -0.339865118265152, 0.010887786746025085, -0.3992321491241455, 0.017359549179673195, -0.016873788088560104, 0.5937613248825073, -0.25390610098838806, -0.020228693261742592, 0.0013927571708336473, 0.013491458259522915, -0.029916265979409218, -0.008844357915222645, 0.04205264523625374, -0.04900349676609039, 1.3474583625793457, 0.3140825629234314, -0.61005699634552, 0.10692325979471207, -2.703305721282959, -0.7149309515953064, -0.29355359077453613, 1.3414063453674316, 0.0008269115351140499, -0.003487409558147192, 0.17252489924430847]} +{"t": 7.0308, "q": [-0.30822446942329407, -0.027018515393137932, 0.019418248906731606, 0.611120879650116, -0.33986103534698486, 0.010880554094910622, -0.3992236256599426, 0.017359549179673195, -0.016860397532582283, 0.5937698483467102, -0.25390610098838806, -0.020228693261742592, 0.0014061490073800087, 0.013483856804668903, -0.029911300167441368, -0.008832373656332493, 0.04205264523625374, -0.048895638436079025, 1.3474223613739014, 0.31409457325935364, -0.6100450158119202, 0.10692325979471207, -2.703293561935425, -0.714883029460907, -0.2936374843120575, 1.341394305229187, 0.00044341632747091353, -0.00347542529925704, 0.17253689467906952]} +{"t": 7.0477, "q": [-0.30823299288749695, -0.027044082060456276, 0.019404856488108635, 0.611120879650116, -0.33986103534698486, 0.010895077139139175, -0.39920657873153687, 0.017368070781230927, -0.016900572925806046, 0.5937528014183044, -0.25390610098838806, -0.020228693261742592, 0.0013927571708336473, 0.013468677178025246, -0.029920998960733414, -0.008808405138552189, 0.042028676718473434, -0.04884770140051842, 1.3474583625793457, 0.31407058238983154, -0.6100689768791199, 0.10693524032831192, -2.703317642211914, -0.7148470282554626, -0.293709397315979, 1.3414063453674316, 0.00025166873820126057, -0.003463441040366888, 0.17256085574626923]} +{"t": 7.0644, "q": [-0.30823299288749695, -0.027035560458898544, 0.019391464069485664, 0.6111294031143188, -0.33986103534698486, 0.010880554094910622, -0.3992236256599426, 0.01738511584699154, -0.016900572925806046, 0.5937613248825073, -0.25390613079071045, -0.020243078470230103, 0.001379365217871964, 0.013483856804668903, -0.029911300167441368, -0.008796420879662037, 0.042040660977363586, -0.04881174862384796, 1.3474223613739014, 0.3140825629234314, -0.6100809574127197, 0.10694722831249237, -2.703305721282959, -0.7148230671882629, -0.293709397315979, 1.341382384300232, 0.000215716048842296, -0.003463441040366888, 0.17256085574626923]} +{"t": 7.0811, "q": [-0.30822446942329407, -0.027035560458898544, 0.019378073513507843, 0.6111294031143188, -0.339865118265152, 0.010887786746025085, -0.39921510219573975, 0.017368070781230927, -0.016913963481783867, 0.5937272310256958, -0.2539018988609314, -0.02023589238524437, 0.001379365217871964, 0.013468677178025246, -0.029920998960733414, -0.00878443755209446, 0.04200470820069313, -0.048775795847177505, 1.3474223613739014, 0.31407058238983154, -0.6100689768791199, 0.10695920884609222, -2.703329563140869, -0.7147991061210632, -0.2938052713871002, 1.3414063453674316, -1.1984225238848012e-05, -0.003451456781476736, 0.17258483171463013]} +{"t": 7.0979, "q": [-0.30823299288749695, -0.027052603662014008, 0.019378073513507843, 0.6111379265785217, -0.33985692262649536, 0.010887844488024712, -0.3992236256599426, 0.017368070781230927, -0.016900572925806046, 0.5937613248825073, -0.2539018988609314, -0.02023589238524437, 0.0014061490073800087, 0.013491458259522915, -0.029916265979409218, -0.008796420879662037, 0.04200470820069313, -0.0487518273293972, 1.3474223613739014, 0.31407058238983154, -0.6100689768791199, 0.10695920884609222, -2.703317642211914, -0.7147991061210632, -0.2938292324542999, 1.3414063453674316, -0.000107858024421148, -0.0034274884965270758, 0.17260879278182983]} +{"t": 7.1146, "q": [-0.30824151635169983, -0.027052603662014008, 0.019391464069485664, 0.6111294031143188, -0.33986103534698486, 0.010880554094910622, -0.3992321491241455, 0.01738511584699154, -0.016913963481783867, 0.5937528014183044, -0.2539060711860657, -0.020214306190609932, 0.001379365217871964, 0.013483856804668903, -0.029911300167441368, -0.008772453293204308, 0.04198073968291283, -0.048715874552726746, 1.347446322441101, 0.31407058238983154, -0.61005699634552, 0.10698317736387253, -2.703305721282959, -0.7147871255874634, -0.2938651740550995, 1.341382384300232, -0.00016777915880084038, -0.0033555831760168076, 0.1726207733154297]} +{"t": 7.1314, "q": [-0.30824151635169983, -0.027035560458898544, 0.019391464069485664, 0.6111549735069275, -0.33986103534698486, 0.010895077139139175, -0.3992236256599426, 0.017368070781230927, -0.016887180507183075, 0.5937442779541016, -0.25389769673347473, -0.020228706300258636, 0.0013927571708336473, 0.013499059714376926, -0.029921231791377068, -0.008796420879662037, 0.04195677116513252, -0.0487278588116169, 1.3474104404449463, 0.31407058238983154, -0.6100929379463196, 0.10699516534805298, -2.703317642211914, -0.7147751450538635, -0.29392510652542114, 1.3414063453674316, -0.0002037318336078897, -0.0032956618815660477, 0.1726207733154297]} +{"t": 7.1484, "q": [-0.30822446942329407, -0.027044082060456276, 0.019378073513507843, 0.6111294031143188, -0.339865118265152, 0.010887786746025085, -0.3992236256599426, 0.017368070781230927, -0.016873788088560104, 0.5937613248825073, -0.2539018988609314, -0.02023589238524437, 0.0013927571708336473, 0.013483880087733269, -0.029930930584669113, -0.008748484775424004, 0.04192081838846207, -0.04866793751716614, 1.3474223613739014, 0.31407058238983154, -0.6100929379463196, 0.10699516534805298, -2.703305721282959, -0.7147751450538635, -0.2941048741340637, 1.3414063453674316, -0.000215716048842296, -0.0031997880432754755, 0.17259681224822998]} +{"t": 7.1651, "q": [-0.3082159459590912, -0.027035560458898544, 0.019378073513507843, 0.6111379265785217, -0.33985692262649536, 0.010887844488024712, -0.3992321491241455, 0.017351027578115463, -0.016887180507183075, 0.5937698483467102, -0.25390610098838806, -0.020228693261742592, 0.001379365217871964, 0.013483880087733269, -0.029930930584669113, -0.008748484775424004, 0.04192081838846207, -0.048655953258275986, 1.3474583625793457, 0.31407058238983154, -0.6100929379463196, 0.10700714588165283, -2.703305721282959, -0.7147511839866638, -0.2942127287387848, 1.3414063453674316, -0.0002037318336078897, -0.0031398669816553593, 0.17258483171463013]} +{"t": 7.1819, "q": [-0.30822446942329407, -0.0270099937915802, 0.019391464069485664, 0.6111549735069275, -0.33986103534698486, 0.010895077139139175, -0.3992236256599426, 0.017368070781230927, -0.016873788088560104, 0.5937442779541016, -0.2539018988609314, -0.02023589238524437, 0.0013525814283639193, 0.01349148154258728, -0.029935896396636963, -0.008748484775424004, 0.04188486561179161, -0.04867992177605629, 1.347446322441101, 0.31407058238983154, -0.6100929379463196, 0.10700714588165283, -2.703293561935425, -0.7147511839866638, -0.29434454441070557, 1.3414063453674316, -0.00022770027862861753, -0.003032008884474635, 0.17258483171463013]} +{"t": 7.1986, "q": [-0.3082159459590912, -0.027018515393137932, 0.019378073513507843, 0.6111464500427246, -0.33986103534698486, 0.010880554094910622, -0.3992236256599426, 0.017368070781230927, -0.016887180507183075, 0.5937698483467102, -0.2539018988609314, -0.02023589238524437, 0.0013659733813256025, 0.013483880087733269, -0.029930930584669113, -0.008736500516533852, 0.04186089709401131, -0.04862000048160553, 1.3474223613739014, 0.31407058238983154, -0.6100929379463196, 0.10700714588165283, -2.703305721282959, -0.7147631645202637, -0.2944644093513489, 1.3414063453674316, -0.00025166873820126057, -0.002960103563964367, 0.17258483171463013]} +{"t": 7.2154, "q": [-0.3082159459590912, -0.027018515393137932, 0.019391464069485664, 0.6111379265785217, -0.33985692262649536, 0.010902367532253265, -0.39921510219573975, 0.017368070781230927, -0.016887180507183075, 0.5937783718109131, -0.25389769673347473, -0.020228706300258636, 0.001379365217871964, 0.01349148154258728, -0.029935896396636963, -0.008748484775424004, 0.041848912835121155, -0.04857206344604492, 1.3474223613739014, 0.31407058238983154, -0.6100929379463196, 0.10700714588165283, -2.703293561935425, -0.7147511839866638, -0.2945602834224701, 1.3414063453674316, -0.00025166873820126057, -0.0027324033435434103, 0.17268070578575134]} +{"t": 7.2321, "q": [-0.3081988990306854, -0.027018515393137932, 0.019378073513507843, 0.6111634969711304, -0.33985692262649536, 0.010887844488024712, -0.39921510219573975, 0.017368070781230927, -0.016887180507183075, 0.5937783718109131, -0.2539018988609314, -0.02023589238524437, 0.0013659733813256025, 0.013499082997441292, -0.029940864071249962, -0.008736500516533852, 0.04182494431734085, -0.04850015789270401, 1.347434401512146, 0.31407058238983154, -0.6100809574127197, 0.10700714588165283, -2.703305721282959, -0.714739203453064, -0.29459622502326965, 1.3414063453674316, -0.00025166873820126057, -0.0024927188642323017, 0.17277657985687256]} +{"t": 7.2489, "q": [-0.30819037556648254, -0.027018515393137932, 0.019391464069485664, 0.6111549735069275, -0.33985283970832825, 0.010895135812461376, -0.39921510219573975, 0.017359549179673195, -0.016887180507183075, 0.5937783718109131, -0.2538893520832062, -0.020257489755749702, 0.0013659733813256025, 0.013499082997441292, -0.029940864071249962, -0.008736500516533852, 0.0418129600584507, -0.04848817363381386, 1.3474223613739014, 0.31407058238983154, -0.6100689768791199, 0.10701913386583328, -2.703305721282959, -0.7147152423858643, -0.29464414715766907, 1.3414063453674316, -0.00023968450841493905, -0.0023249397054314613, 0.17280054092407227]} +{"t": 7.2656, "q": [-0.30819037556648254, -0.027035560458898544, 0.019378073513507843, 0.6111634969711304, -0.33985692262649536, 0.010887844488024712, -0.39921510219573975, 0.017368070781230927, -0.016913963481783867, 0.5937783718109131, -0.25390610098838806, -0.020228693261742592, 0.0013525814283639193, 0.013499082997441292, -0.029940864071249962, -0.008736500516533852, 0.04178899526596069, -0.04850015789270401, 1.347446322441101, 0.31407058238983154, -0.61005699634552, 0.10701913386583328, -2.7032337188720703, -0.7146432995796204, -0.29387718439102173, 1.3414063453674316, -0.0014021543320268393, -0.0016178704099729657, 0.17367538809776306]} +{"t": 7.2824, "q": [-0.30819037556648254, -0.027027036994695663, 0.019391464069485664, 0.6111634969711304, -0.33985692262649536, 0.010887844488024712, -0.3992236256599426, 0.017368070781230927, -0.016913963481783867, 0.5937783718109131, -0.25389769673347473, -0.020228706300258636, 0.0013257976388558745, 0.01349148154258728, -0.029935896396636963, -0.008736500516533852, 0.0418129600584507, -0.048476189374923706, 1.347446322441101, 0.31407058238983154, -0.6100450158119202, 0.10704310238361359, -2.703185796737671, -0.7145354747772217, -0.2932300269603729, 1.3414303064346313, -0.0028522456996142864, -0.00046738478704355657, 0.17445436120033264]} +{"t": 7.2992, "q": [-0.308156281709671, -0.02700147219002247, 0.019391464069485664, 0.6111634969711304, -0.33985283970832825, 0.010895135812461376, -0.3992236256599426, 0.01738511584699154, -0.016873788088560104, 0.5937783718109131, -0.2539018988609314, -0.02023589238524437, 0.0013257976388558745, 0.013499082997441292, -0.029940864071249962, -0.008736500516533852, 0.041729073971509933, -0.04848817363381386, 1.347446322441101, 0.31407058238983154, -0.6099850535392761, 0.10707905143499374, -2.7030179500579834, -0.7142837643623352, -0.29177993535995483, 1.3414063453674316, -0.006651245057582855, 0.0012463594321161509, 0.17564080655574799]} +{"t": 7.316, "q": [-0.30814775824546814, -0.0270099937915802, 0.019404856488108635, 0.6111549735069275, -0.33986103534698486, 0.010880554094910622, -0.3992236256599426, 0.01738511584699154, -0.016913963481783867, 0.5937954187393188, -0.2539018988609314, -0.02023589238524437, 0.0012990138493478298, 0.013514263555407524, -0.029931163415312767, -0.008736500516533852, 0.04169312119483948, -0.048476189374923706, 1.3474104404449463, 0.31407058238983154, -0.6099491119384766, 0.10707905143499374, -2.702850341796875, -0.7139841914176941, -0.29097700119018555, 1.3414901494979858, -0.008964200504124165, 0.003020024858415127, 0.1759883463382721]} +{"t": 7.3327, "q": [-0.30813923478126526, -0.0270099937915802, 0.019404856488108635, 0.6111634969711304, -0.33986103534698486, 0.010880554094910622, -0.3992236256599426, 0.01738511584699154, -0.016900572925806046, 0.5937783718109131, -0.2539018988609314, -0.02023589238524437, 0.001232054433785379, 0.013506707735359669, -0.029965462163090706, -0.008736500516533852, 0.041681136935949326, -0.048476189374923706, 1.3474583625793457, 0.31407058238983154, -0.6097933053970337, 0.10707905143499374, -2.701687812805176, -0.7130134701728821, -0.28970664739608765, 1.34115469455719, -0.01047421246767044, 0.006759102921932936, 0.17715081572532654]} +{"t": 7.3495, "q": [-0.3080284595489502, -0.026992948725819588, 0.019404856488108635, 0.6111720204353333, -0.33985283970832825, 0.010895135812461376, -0.3991895318031311, 0.017410682514309883, -0.01678004488348961, 0.5938465595245361, -0.2538977265357971, -0.020243091508746147, 0.0011249192757532, 0.013521910645067692, -0.029975393787026405, -0.008748484775424004, 0.04159724712371826, -0.048464205116033554, 1.3474583625793457, 0.31407058238983154, -0.6095536351203918, 0.10705508291721344, -2.7003934383392334, -0.7116113305091858, -0.2880887985229492, 1.3414063453674316, -0.011660651303827763, 0.011385014280676842, 0.1781335175037384]} +{"t": 7.3662, "q": [-0.30796879529953003, -0.026958860456943512, 0.019378073513507843, 0.6111549735069275, -0.33985692262649536, 0.010887844488024712, -0.39921510219573975, 0.017419204115867615, -0.016672909259796143, 0.5938721299171448, -0.2538893520832062, -0.020257489755749702, 0.0009508245857432485, 0.013544715009629726, -0.029990293085575104, -0.008736500516533852, 0.04159724712371826, -0.04850015789270401, 1.3474583625793457, 0.31409457325935364, -0.6092660427093506, 0.10707905143499374, -2.698320150375366, -0.709873616695404, -0.2868184745311737, 1.3413703441619873, -0.01308677438646555, 0.01423725951462984, 0.17959560453891754]} +{"t": 7.383, "q": [-0.3079347312450409, -0.02694181725382805, 0.019391464069485664, 0.6111805438995361, -0.33984872698783875, 0.010887903161346912, -0.3992321491241455, 0.01744477078318596, -0.016605950891971588, 0.5939062237739563, -0.2538934648036957, -0.02022150158882141, 0.0008704732172191143, 0.013559894636273384, -0.029980594292283058, -0.008748484775424004, 0.04152534157037735, -0.04851214215159416, 1.347446322441101, 0.31414249539375305, -0.6090503334999084, 0.10706707090139389, -2.6962709426879883, -0.7076325416564941, -0.2857998013496399, 1.341621994972229, -0.014429006725549698, 0.016082830727100372, 0.18111759424209595]} +{"t": 7.3999, "q": [-0.30795174837112427, -0.026924772188067436, 0.019391464069485664, 0.6111975908279419, -0.33985283970832825, 0.010895135812461376, -0.3992321491241455, 0.01745329238474369, -0.01663273386657238, 0.5938977003097534, -0.253889262676239, -0.02022870071232319, 0.0007499461644329131, 0.013666304759681225, -0.030040305107831955, -0.008748484775424004, 0.041501373052597046, -0.048524126410484314, 1.3475062847137451, 0.3141784369945526, -0.6088945269584656, 0.10707905143499374, -2.692711591720581, -0.7040852308273315, -0.28385835886001587, 1.3413344621658325, -0.01818007044494152, 0.017113473266363144, 0.18311895430088043]} +{"t": 7.4166, "q": [-0.3078494966030121, -0.026924772188067436, 0.019404856488108635, 0.6112743020057678, -0.33984464406967163, 0.010880671441555023, -0.3992321491241455, 0.017427725717425346, -0.016592558473348618, 0.5940511226654053, -0.253876656293869, -0.02023591287434101, 0.0007633380591869354, 0.013734717853367329, -0.0300850011408329, -0.008748484775424004, 0.04146542027592659, -0.048524126410484314, 1.3474702835083008, 0.3142983019351959, -0.6086068749427795, 0.10706707090139389, -2.6896915435791016, -0.7001903653144836, -0.2829715311527252, 1.341741919517517, -0.019102854654192924, 0.01788046397268772, 0.18436531722545624]} +{"t": 7.4334, "q": [-0.3078324496746063, -0.026873638853430748, 0.019378073513507843, 0.6113765835762024, -0.33984464406967163, 0.010880671441555023, -0.3992236256599426, 0.017427725717425346, -0.01663273386657238, 0.594161868095398, -0.253889262676239, -0.02022870071232319, 0.0006294191116467118, 0.013825947418808937, -0.030154410749673843, -0.008736500516533852, 0.04140549898147583, -0.04857206344604492, 1.3475183248519897, 0.3143582046031952, -0.6084151268005371, 0.10703111439943314, -2.6850178241729736, -0.6946296691894531, -0.28171318769454956, 1.341394305229187, -0.020600883290171623, 0.019486350938677788, 0.18615096807479858]} +{"t": 7.4502, "q": [-0.3077642619609833, -0.02683102898299694, 0.019364681094884872, 0.6114532351493835, -0.33984464406967163, 0.010880671441555023, -0.39924919605255127, 0.01744477078318596, -0.016565775498747826, 0.5942556262016296, -0.25391021370887756, -0.020192686468362808, 0.0006829866906628013, 0.013901961967349052, -0.03020407445728779, -0.008748484775424004, 0.041489388793706894, -0.04869190603494644, 1.3475062847137451, 0.3144540786743164, -0.6081634759902954, 0.10701913386583328, -2.680979013442993, -0.6889371275901794, -0.2802870571613312, 1.3420294523239136, -0.022614233195781708, 0.02112818881869316, 0.18905115127563477]} +{"t": 7.467, "q": [-0.3079432547092438, -0.02682250738143921, 0.01933789812028408, 0.6116577982902527, -0.33985283970832825, 0.010866089724004269, -0.39924919605255127, 0.017478859052062035, -0.016713086515665054, 0.5942897200584412, -0.25389760732650757, -0.020199917256832123, 0.0007767299539409578, 0.01389433816075325, -0.030179476365447044, -0.008748484775424004, 0.04146542027592659, -0.04867992177605629, 1.3474823236465454, 0.3144780397415161, -0.608199417591095, 0.10699516534805298, -2.6768085956573486, -0.6836161613464355, -0.2786332368850708, 1.3425568342208862, -0.02443583495914936, 0.023333286866545677, 0.19208316504955292]} +{"t": 7.4837, "q": [-0.3079773187637329, -0.026779895648360252, 0.01933789812028408, 0.6116833686828613, -0.33984053134918213, 0.01087343879044056, -0.39925771951675415, 0.017478859052062035, -0.01680682972073555, 0.5943152904510498, -0.2539018392562866, -0.020207103341817856, 0.0008169056382030249, 0.013909541070461273, -0.030189407989382744, -0.008772453293204308, 0.041441451758146286, -0.04869190603494644, 1.3474583625793457, 0.3145619332790375, -0.6081035733222961, 0.10697119683027267, -2.6721227169036865, -0.6772645115852356, -0.27647608518600464, 1.342592716217041, -0.027000458911061287, 0.024280039593577385, 0.1942882537841797]} +{"t": 7.5006, "q": [-0.3079773187637329, -0.026779895648360252, 0.01931111328303814, 0.6117174625396729, -0.33984053134918213, 0.01087343879044056, -0.3992832601070404, 0.01750442571938038, -0.01680682972073555, 0.5944005250930786, -0.25389763712882996, -0.020214302465319633, 0.0009374326909892261, 0.013894360512495041, -0.03019910678267479, -0.008808405138552189, 0.041441451758146286, -0.04867992177605629, 1.3474702835083008, 0.31457391381263733, -0.6080915927886963, 0.10698317736387253, -2.6669094562530518, -0.6698582768440247, -0.27493011951446533, 1.3426166772842407, -0.027695544064044952, 0.02653307467699051, 0.19599002599716187]} +{"t": 7.5174, "q": [-0.30790063738822937, -0.0267117191106081, 0.01929772086441517, 0.6117259860038757, -0.33984053134918213, 0.01087343879044056, -0.3992406725883484, 0.017555557191371918, -0.016833612695336342, 0.5943664312362671, -0.25389763712882996, -0.020214302465319633, 0.0008704732172191143, 0.013917176984250546, -0.030223822221159935, -0.00882038939744234, 0.04152534157037735, -0.048715874552726746, 1.3475062847137451, 0.3146098852157593, -0.6080076694488525, 0.10694722831249237, -2.661456823348999, -0.6626318097114563, -0.27415114641189575, 1.3426766395568848, -0.027851339429616928, 0.029325399547815323, 0.1974281221628189]} +{"t": 7.5341, "q": [-0.3078409731388092, -0.026549799367785454, 0.019270937889814377, 0.6118026375770569, -0.33984464406967163, 0.01086614839732647, -0.3992406725883484, 0.017649300396442413, -0.016766652464866638, 0.5943664312362671, -0.253901869058609, -0.02022150531411171, 0.0007633380591869354, 0.01393240224570036, -0.03025338612496853, -0.008808405138552189, 0.0415373258292675, -0.048715874552726746, 1.3475662469863892, 0.31458592414855957, -0.6079597473144531, 0.10693524032831192, -2.6548774242401123, -0.6540271043777466, -0.27419906854629517, 1.342712640762329, -0.028079040348529816, 0.033495910465717316, 0.19791947305202484]} +{"t": 7.551, "q": [-0.30786654353141785, -0.02652423270046711, 0.019270937889814377, 0.6118793487548828, -0.33984464406967163, 0.01086614839732647, -0.3992747366428375, 0.017657823860645294, -0.016713086515665054, 0.5943493843078613, -0.2539060413837433, -0.020199885591864586, 0.0008704732172191143, 0.013902018778026104, -0.030253153294324875, -0.008868326433002949, 0.041561294347047806, -0.048775795847177505, 1.3475183248519897, 0.31458592414855957, -0.60782790184021, 0.10692325979471207, -2.6488492488861084, -0.6458898186683655, -0.273983359336853, 1.3433597087860107, -0.028258802369236946, 0.035173699259757996, 0.19843479990959167]} +{"t": 7.5677, "q": [-0.3080796003341675, -0.026498666033148766, 0.01916380226612091, 0.612007200717926, -0.3398323357105255, 0.010888020507991314, -0.39924919605255127, 0.017657823860645294, -0.016927355900406837, 0.5942556262016296, -0.25391021370887756, -0.020192686468362808, 0.000897257006727159, 0.013848786242306232, -0.030198758468031883, -0.008892294950783253, 0.04163319990038872, -0.04869190603494644, 1.3474823236465454, 0.31458592414855957, -0.6078998446464539, 0.10692325979471207, -2.6423659324645996, -0.6383517384529114, -0.2739953398704529, 1.3434556722640991, -0.02846253477036953, 0.0370192714035511, 0.19848273694515228]} +{"t": 7.5845, "q": [-0.308343768119812, -0.026549799367785454, 0.01915041171014309, 0.6121180057525635, -0.33984464406967163, 0.010880671441555023, -0.3992832601070404, 0.017581123858690262, -0.017047883942723274, 0.5942471027374268, -0.2539018392562866, -0.020207103341817856, 0.001379365217871964, 0.013780361041426659, -0.03014424629509449, -0.009036106057465076, 0.04164518415927887, -0.04869190603494644, 1.3474223613739014, 0.31458592414855957, -0.6079597473144531, 0.10689929127693176, -2.636146068572998, -0.6307657361030579, -0.2739354074001312, 1.343946933746338, -0.028630314394831657, 0.03869706392288208, 0.1985546499490738]} +{"t": 7.6012, "q": [-0.30870169401168823, -0.026609454303979874, 0.01913701929152012, 0.612152099609375, -0.33984464406967163, 0.010880671441555023, -0.39934292435646057, 0.01751294732093811, -0.017221977934241295, 0.5940596461296082, -0.25388917326927185, -0.020185545086860657, 0.0017141626449301839, 0.013749955222010612, -0.030124381184577942, -0.009287774562835693, 0.04163319990038872, -0.048655953258275986, 1.347374439239502, 0.3145499527454376, -0.6080676317214966, 0.10688730329275131, -2.6306092739105225, -0.6239227056503296, -0.2737916111946106, 1.3441746234893799, -0.02889396622776985, 0.04039882495999336, 0.19879433512687683]} +{"t": 7.618, "q": [-0.3088977038860321, -0.026669109240174294, 0.01915041171014309, 0.612152099609375, -0.33984464406967163, 0.010880671441555023, -0.3992917835712433, 0.017427725717425346, -0.01748981513082981, 0.5937528014183044, -0.25388073921203613, -0.02017117105424404, 0.0018212978029623628, 0.013666372746229172, -0.03009920008480549, -0.009371664375066757, 0.04165716841816902, -0.04862000048160553, 1.347374439239502, 0.3145499527454376, -0.6081514954566956, 0.10692325979471207, -2.6239700317382812, -0.6177029013633728, -0.27373167872428894, 1.3442705869674683, -0.029337383806705475, 0.04169312119483948, 0.1989021897315979]} +{"t": 7.6348, "q": [-0.3090340793132782, -0.026677630841732025, 0.01917719468474388, 0.6121861338615417, -0.33985283970832825, 0.010895135812461376, -0.3993258774280548, 0.017419204115867615, -0.01748981513082981, 0.5937187075614929, -0.253868043422699, -0.0201495960354805, 0.001941824913956225, 0.013461132533848286, -0.02996511198580265, -0.009611348621547222, 0.04178899526596069, -0.04862000048160553, 1.3473025560379028, 0.31453797221183777, -0.6081874370574951, 0.10692325979471207, -2.617642402648926, -0.6118306517601013, -0.27352795004844666, 1.3445701599121094, -0.029768815264105797, 0.0424121730029583, 0.19932162761688232]} +{"t": 7.6515, "q": [-0.30911076068878174, -0.02670319750905037, 0.01913701929152012, 0.6121435761451721, -0.3398692309856415, 0.010909559205174446, -0.3992917835712433, 0.017419204115867615, -0.017516599968075752, 0.5934289693832397, -0.25380489230155945, -0.020128097385168076, 0.0018480815924704075, 0.013210296630859375, -0.029811089858412743, -0.009731191210448742, 0.04194478690624237, -0.04860801622271538, 1.3473025560379028, 0.3145499527454376, -0.6081634759902954, 0.10691127181053162, -2.6115543842315674, -0.6068811416625977, -0.27340811491012573, 1.3447858095169067, -0.03027215227484703, 0.042579952627420425, 0.19976505637168884]} +{"t": 7.6683, "q": [-0.30924713611602783, -0.026745807379484177, 0.01917719468474388, 0.6121265292167664, -0.3398815393447876, 0.01091673318296671, -0.3993344008922577, 0.017402159050107002, -0.01747642457485199, 0.5932926535606384, -0.2537670135498047, -0.020120980218052864, 0.0018748653819784522, 0.01286820974200964, -0.02957804501056671, -0.00999484397470951, 0.042100582271814346, -0.048536110669374466, 1.3472905158996582, 0.31453797221183777, -0.6081634759902954, 0.10692325979471207, -2.6059577465057373, -0.6016680002212524, -0.2735159695148468, 1.345492959022522, -0.030415963381528854, 0.04343083128333092, 0.2000526785850525]} +{"t": 7.685, "q": [-0.3094601631164551, -0.026873638853430748, 0.019230762496590614, 0.6120753884315491, -0.3398897349834442, 0.010931197553873062, -0.3993344008922577, 0.017368070781230927, -0.01747642457485199, 0.5931392312049866, -0.25373759865760803, -0.020142586901783943, 0.0018079059664160013, 0.012488046661019325, -0.02926129847764969, -0.010270480997860432, 0.042340267449617386, -0.048536110669374466, 1.3472425937652588, 0.3145499527454376, -0.6081514954566956, 0.10689929127693176, -2.600816488265991, -0.5974615812301636, -0.2736477851867676, 1.3459722995758057, -0.030415963381528854, 0.04416187107563019, 0.19999274611473083]} +{"t": 7.7018, "q": [-0.3096221089363098, -0.026992948725819588, 0.019244154915213585, 0.6119986772537231, -0.33989381790161133, 0.010938430204987526, -0.39939406514167786, 0.017231717705726624, -0.017436247318983078, 0.593036949634552, -0.2537418007850647, -0.020135387778282166, 0.001834689755924046, 0.012244640849530697, -0.028955455869436264, -0.010546118021011353, 0.042460110038518906, -0.048524126410484314, 1.3472306728363037, 0.3145499527454376, -0.6081634759902954, 0.10692325979471207, -2.5964064598083496, -0.5933389663696289, -0.27387550473213196, 1.3464516401290894, -0.030415963381528854, 0.045048702508211136, 0.20004068315029144]} +{"t": 7.7185, "q": [-0.30966469645500183, -0.02712078019976616, 0.019257545471191406, 0.611862301826477, -0.33991023898124695, 0.010938312858343124, -0.39940258860588074, 0.017163541167974472, -0.017436247318983078, 0.5929091572761536, -0.253720760345459, -0.020142629742622375, 0.0017677302239462733, 0.012039436027407646, -0.028821859508752823, -0.010665960609912872, 0.042699795216321945, -0.04844023659825325, 1.347206711769104, 0.3145499527454376, -0.6081275343894958, 0.10692325979471207, -2.5914089679718018, -0.5892283916473389, -0.27410319447517395, 1.34640371799469, -0.03032008931040764, 0.045468151569366455, 0.20004068315029144]} +{"t": 7.7354, "q": [-0.3096221089363098, -0.027214523404836655, 0.019284330308437347, 0.6118367314338684, -0.33991843461990356, 0.010952777229249477, -0.39935144782066345, 0.017112407833337784, -0.017422856763005257, 0.5929347276687622, -0.2536872625350952, -0.02021462842822075, 0.0018212978029623628, 0.011781030334532261, -0.02865363098680973, -0.010893660597503185, 0.04289154335856438, -0.04836833477020264, 1.347206711769104, 0.3145259916782379, -0.6081395149230957, 0.10692325979471207, -2.5864953994750977, -0.5854533910751343, -0.2741870880126953, 1.34640371799469, -0.03032008931040764, 0.046307045966386795, 0.20018449425697327]} +{"t": 7.7522, "q": [-0.30955392122268677, -0.027291223406791687, 0.01931111328303814, 0.6117515563964844, -0.3399266302585602, 0.01096724160015583, -0.39930030703544617, 0.017103886231780052, -0.017396071925759315, 0.5929602980613708, -0.2535489797592163, -0.02046665921807289, 0.0017409464344382286, 0.011621429584920406, -0.02854972518980503, -0.011157313361763954, 0.04314320906996727, -0.048296429216861725, 1.3472306728363037, 0.31449005007743835, -0.6081275343894958, 0.10691127181053162, -2.5813660621643066, -0.5823734402656555, -0.2742590010166168, 1.3464995622634888, -0.030344057828187943, 0.04712197184562683, 0.2003762423992157]} +{"t": 7.7689, "q": [-0.30957096815109253, -0.02736792154610157, 0.019391464069485664, 0.6117345094680786, -0.3399266302585602, 0.01096724160015583, -0.3992917835712433, 0.01708684116601944, -0.01744963973760605, 0.5929772853851318, -0.2534022629261017, -0.020718704909086227, 0.0017811221769079566, 0.011598560027778149, -0.02846626006066799, -0.011636682786047459, 0.04343083128333092, -0.048176586627960205, 1.3471946716308594, 0.3145020306110382, -0.6081275343894958, 0.10692325979471207, -2.577411413192749, -0.5800125598907471, -0.2742709815502167, 1.3466074466705322, -0.03032008931040764, 0.04963866248726845, 0.20060394704341888]} +{"t": 7.7857, "q": [-0.30957096815109253, -0.027410533279180527, 0.019431641325354576, 0.6115725636482239, -0.3399225175380707, 0.010960008949041367, -0.3992917835712433, 0.017069797962903976, -0.017436247318983078, 0.5930284261703491, -0.2521279752254486, -0.022907953709363937, 0.0017409464344382286, 0.011621280573308468, -0.028402678668498993, -0.012056130915880203, 0.04394615441560745, -0.04814063385128975, 1.3471227884292603, 0.3145020306110382, -0.6081395149230957, 0.10693524032831192, -2.5733368396759033, -0.5772202014923096, -0.2743428945541382, 1.3465476036071777, -0.030344057828187943, 0.05277852714061737, 0.2012510895729065]} +{"t": 7.8024, "q": [-0.30951130390167236, -0.02743609994649887, 0.019445031881332397, 0.6115214228630066, -0.33991843461990356, 0.010952777229249477, -0.39930030703544617, 0.017137974500656128, -0.01747642457485199, 0.5930539965629578, -0.25142380595207214, -0.024132205173373222, 0.0017811221769079566, 0.011757858097553253, -0.02826612815260887, -0.012751216068863869, 0.044437509030103683, -0.04810468107461929, 1.3471107482910156, 0.31451401114463806, -0.6081754565238953, 0.10691127181053162, -2.5698013305664062, -0.5753147006034851, -0.27440279722213745, 1.3467153310775757, -0.030356042087078094, 0.05409679189324379, 0.20175443589687347]} +{"t": 7.8192, "q": [-0.3095027804374695, -0.02742757648229599, 0.019431641325354576, 0.6114532351493835, -0.33991843461990356, 0.010952777229249477, -0.3993258774280548, 0.017172062769532204, -0.01748981513082981, 0.593105137348175, -0.25144481658935547, -0.024124979972839355, 0.0017141626449301839, 0.01197025366127491, -0.027992628514766693, -0.013578127138316631, 0.04501274973154068, -0.04808071255683899, 1.3470988273620605, 0.31449005007743835, -0.608115553855896, 0.10693524032831192, -2.565978527069092, -0.5730017423629761, -0.27465447783470154, 1.3466793298721313, -0.030224215239286423, 0.05511545017361641, 0.20228174328804016]} +{"t": 7.8361, "q": [-0.3094601631164551, -0.027402011677622795, 0.019445031881332397, 0.6114702820777893, -0.33989793062210083, 0.010945661924779415, -0.3993258774280548, 0.017240239307284355, -0.017556775361299515, 0.5932670831680298, -0.25144481658935547, -0.024124979972839355, 0.0017677302239462733, 0.011681116186082363, -0.027460899204015732, -0.01450091227889061, 0.04562394693493843, -0.04810468107461929, 1.3470988273620605, 0.3145020306110382, -0.6080915927886963, 0.10692325979471207, -2.56317400932312, -0.5713239908218384, -0.27490612864494324, 1.3470269441604614, -0.03020024672150612, 0.05614609643816948, 0.20266523957252502]} +{"t": 7.853, "q": [-0.30951130390167236, -0.027342356741428375, 0.019364681094884872, 0.6114447116851807, -0.33989793062210083, 0.010945661924779415, -0.39935997128486633, 0.01727432757616043, -0.017717478796839714, 0.5933182239532471, -0.25144487619400024, -0.024153752252459526, 0.0017275545978918672, 0.010890364646911621, -0.026573652401566505, -0.01541171409189701, 0.046247124671936035, -0.04803277552127838, 1.347086787223816, 0.3145020306110382, -0.6080436110496521, 0.10692325979471207, -2.559938430786133, -0.5689990520477295, -0.27490612864494324, 1.3471227884292603, -0.030248183757066727, 0.057512298226356506, 0.2040194571018219]} +{"t": 7.8697, "q": [-0.30951130390167236, -0.027291223406791687, 0.01929772086441517, 0.6114106774330139, -0.33989381790161133, 0.010938430204987526, -0.39935997128486633, 0.017351027578115463, -0.017851397395133972, 0.5933182239532471, -0.2514617443084717, -0.024168111383914948, 0.0017275545978918672, 0.01026705838739872, -0.02594325877726078, -0.01605886220932007, 0.04676244780421257, -0.04802079126238823, 1.3470988273620605, 0.3145020306110382, -0.6079597473144531, 0.10693524032831192, -2.557121992111206, -0.5665183067321777, -0.2747862935066223, 1.3471348285675049, -0.030296120792627335, 0.05904627591371536, 0.20539763569831848]} +{"t": 7.8865, "q": [-0.30947721004486084, -0.027154870331287384, 0.019270937889814377, 0.6113851070404053, -0.33989793062210083, 0.010931138880550861, -0.3993344008922577, 0.017487380653619766, -0.017904965206980705, 0.5933182239532471, -0.2514870762825012, -0.024211246520280838, 0.0016338112764060497, 0.009818782098591328, -0.025681139901280403, -0.01631052978336811, 0.047086022794246674, -0.04802079126238823, 1.3471107482910156, 0.3145020306110382, -0.6079238057136536, 0.10694722831249237, -2.5532033443450928, -0.5633664727210999, -0.2747383713722229, 1.3469550609588623, -0.030296120792627335, 0.06019676476716995, 0.20772257447242737]} +{"t": 7.9034, "q": [-0.30934086441993713, -0.027112258598208427, 0.01932450570166111, 0.6113680601119995, -0.33990612626075745, 0.010931062512099743, -0.3993344008922577, 0.017615212127566338, -0.017864787951111794, 0.5933522582054138, -0.2515377104282379, -0.024268709123134613, 0.0015802436973899603, 0.009583295322954655, -0.025586741045117378, -0.016454340890049934, 0.0472298301756382, -0.04802079126238823, 1.3471348285675049, 0.3145499527454376, -0.6078518629074097, 0.10692325979471207, -2.549008846282959, -0.5595075488090515, -0.2746904194355011, 1.3470628261566162, -0.03032008931040764, 0.061658840626478195, 0.2097359299659729]} +{"t": 7.9201, "q": [-0.3093067705631256, -0.027103736996650696, 0.019391464069485664, 0.6112316846847534, -0.33991023898124695, 0.010938312858343124, -0.3993344008922577, 0.017598168924450874, -0.01782461255788803, 0.5933352708816528, -0.25157982110977173, -0.024283047765493393, 0.0013927571708336473, 0.00955293234437704, -0.025596359744668007, -0.01643037237226963, 0.04724181443452835, -0.04804475978016853, 1.3471587896347046, 0.3145499527454376, -0.6077320575714111, 0.10694722831249237, -2.5449819564819336, -0.5551572442054749, -0.27465447783470154, 1.3470269441604614, -0.03032008931040764, 0.062198128551244736, 0.2121088057756424]} +{"t": 7.9369, "q": [-0.30934086441993713, -0.02712930366396904, 0.01948520727455616, 0.611189067363739, -0.33990612626075745, 0.010931062512099743, -0.399385541677475, 0.017547035589814186, -0.017704086378216743, 0.5933607816696167, -0.25158819556236267, -0.024268649518489838, 0.001379365217871964, 0.009613637812435627, -0.025557534769177437, -0.016502277925610542, 0.04718189314007759, -0.048056744039058685, 1.3471707105636597, 0.31458592414855957, -0.6075043678283691, 0.10694722831249237, -2.5415425300598145, -0.5506751537322998, -0.2745586037635803, 1.3471827507019043, -0.030344057828187943, 0.06296511739492416, 0.21346302330493927]} +{"t": 7.9536, "q": [-0.3094601631164551, -0.027171913534402847, 0.019445031881332397, 0.6110612154006958, -0.33990612626075745, 0.010931062512099743, -0.3995474576950073, 0.01745329238474369, -0.017690693959593773, 0.5933522582054138, -0.25160086154937744, -0.02429022639989853, 0.0013927571708336473, 0.009651578031480312, -0.025533270090818405, -0.016538230702280998, 0.047086022794246674, -0.048056744039058685, 1.3471587896347046, 0.31457391381263733, -0.607456386089325, 0.10693524032831192, -2.5383307933807373, -0.5458215475082397, -0.2747383713722229, 1.3470628261566162, -0.030248183757066727, 0.06334861367940903, 0.2145775556564331]} +{"t": 7.9704, "q": [-0.3094346225261688, -0.02718043513596058, 0.019404856488108635, 0.610958993434906, -0.33990612626075745, 0.010931062512099743, -0.3995645046234131, 0.017427725717425346, -0.017744261771440506, 0.5933352708816528, -0.2516176700592041, -0.024275796487927437, 0.0014061490073800087, 0.009651598520576954, -0.025552857667207718, -0.016526246443390846, 0.04699014872312546, -0.048056744039058685, 1.3471827507019043, 0.31458592414855957, -0.607456386089325, 0.10695920884609222, -2.5342321395874023, -0.5409679412841797, -0.27493011951446533, 1.3469669818878174, -0.03003246895968914, 0.06374409049749374, 0.21566811203956604]} +{"t": 7.9871, "q": [-0.30934086441993713, -0.027171913534402847, 0.019431641325354576, 0.6109760403633118, -0.33990612626075745, 0.010931062512099743, -0.39953893423080444, 0.017461813986301422, -0.017704086378216743, 0.5933522582054138, -0.25169336795806885, -0.024261293932795525, 0.0014463247498497367, 0.009644052013754845, -0.02559688501060009, -0.016502277925610542, 0.04694221168756485, -0.04808071255683899, 1.3471707105636597, 0.3146098852157593, -0.607456386089325, 0.10695920884609222, -2.5299417972564697, -0.5373007655143738, -0.275217741727829, 1.3470509052276611, -0.02996056340634823, 0.0640556812286377, 0.21654295921325684]} +{"t": 8.0039, "q": [-0.3093152940273285, -0.027154870331287384, 0.019418248906731606, 0.6109845638275146, -0.33990612626075745, 0.010931062512099743, -0.3995218873023987, 0.017470337450504303, -0.017677301540970802, 0.5933607816696167, -0.2516849935054779, -0.02427569217979908, 0.0014061490073800087, 0.009644052013754845, -0.02559688501060009, -0.016502277925610542, 0.046858321875333786, -0.0481286495923996, 1.3471946716308594, 0.31464582681655884, -0.6074804067611694, 0.10697119683027267, -2.5262506008148193, -0.535047709941864, -0.2754094898700714, 1.3471227884292603, -0.029924610629677773, 0.06454703956842422, 0.2175496369600296]} +{"t": 8.0206, "q": [-0.3093664348125458, -0.027171913534402847, 0.019458424299955368, 0.6109845638275146, -0.33990204334259033, 0.010923829860985279, -0.3996071219444275, 0.017427725717425346, -0.01763712614774704, 0.5933948755264282, -0.2516850233078003, -0.02429007738828659, 0.0014061490073800087, 0.009651608765125275, -0.025562651455402374, -0.016526246443390846, 0.046906258910894394, -0.04818857088685036, 1.3471707105636597, 0.31464582681655884, -0.607516348361969, 0.10695920884609222, -2.522643566131592, -0.5303978323936462, -0.27661988139152527, 1.34714674949646, -0.028618330135941505, 0.06550577282905579, 0.21795710921287537]} +{"t": 8.0375, "q": [-0.30957096815109253, -0.02718043513596058, 0.019445031881332397, 0.6109675168991089, -0.33990612626075745, 0.010931062512099743, -0.3997946083545685, 0.017410682514309883, -0.01766391098499298, 0.5934204459190369, -0.2516849637031555, -0.02426130697131157, 0.0015534599078819156, 0.009666775353252888, -0.025543151423335075, -0.016586167737841606, 0.04683435335755348, -0.04824849218130112, 1.34714674949646, 0.31464582681655884, -0.607516348361969, 0.10698317736387253, -2.520150661468506, -0.5263471603393555, -0.27709925174713135, 1.3473025560379028, -0.027911260724067688, 0.06669221073389053, 0.21811290085315704]} +{"t": 8.0543, "q": [-0.3096902668476105, -0.02719748020172119, 0.019378073513507843, 0.6109675168991089, -0.33989381790161133, 0.010938430204987526, -0.39989686012268066, 0.017351027578115463, -0.017677301540970802, 0.5934033989906311, -0.2516891360282898, -0.02425410784780979, 0.0016204193234443665, 0.009636432863771915, -0.025572357699275017, -0.016562199220061302, 0.04688229039311409, -0.04822452366352081, 1.34714674949646, 0.31464582681655884, -0.6076720952987671, 0.10705508291721344, -2.516735315322876, -0.5210621356964111, -0.2781538665294647, 1.3470388650894165, -0.02708434872329235, 0.06785468012094498, 0.21883195638656616]} +{"t": 8.071, "q": [-0.30959653854370117, -0.027171913534402847, 0.019378073513507843, 0.6109845638275146, -0.33990612626075745, 0.010931062512099743, -0.39986276626586914, 0.017419204115867615, -0.017690693959593773, 0.593480110168457, -0.25170183181762695, -0.0242900513112545, 0.0016605950659140944, 0.009636463597416878, -0.025601739063858986, -0.016586167737841606, 0.046858321875333786, -0.04832039773464203, 1.3471348285675049, 0.31464582681655884, -0.6076961159706116, 0.10704310238361359, -2.5132358074188232, -0.5164601802825928, -0.2790646553039551, 1.347086787223816, -0.026940537616610527, 0.06948453933000565, 0.21917949616909027]} +{"t": 8.0879, "q": [-0.3095453977584839, -0.027171913534402847, 0.019404856488108635, 0.6109675168991089, -0.33991023898124695, 0.010938312858343124, -0.39986276626586914, 0.017427725717425346, -0.01763712614774704, 0.593480110168457, -0.2517186999320984, -0.024304410442709923, 0.0015400679549202323, 0.00956056173890829, -0.025630682706832886, -0.016514262184500694, 0.04687030613422394, -0.04833238199353218, 1.3471587896347046, 0.31464582681655884, -0.6076961159706116, 0.10706707090139389, -2.509352922439575, -0.5120260119438171, -0.27991554141044617, 1.3468711376190186, -0.02690458483994007, 0.07263638824224472, 0.2200423628091812]} +{"t": 8.1046, "q": [-0.3095283508300781, -0.027146346867084503, 0.019431641325354576, 0.6109760403633118, -0.33991023898124695, 0.010923771187663078, -0.399871289730072, 0.01744477078318596, -0.01762373559176922, 0.5934886336326599, -0.2517144978046417, -0.0243116095662117, 0.0014061490073800087, 0.009537797421216965, -0.025645241141319275, -0.016502277925610542, 0.04682236909866333, -0.04839230328798294, 1.3471827507019043, 0.3146578073501587, -0.6076601147651672, 0.1070910394191742, -2.5053021907806396, -0.5083468556404114, -0.2810300886631012, 1.3469310998916626, -0.026820696890354156, 0.07470966130495071, 0.22055767476558685]} +{"t": 8.1213, "q": [-0.3095794916152954, -0.027146346867084503, 0.019458424299955368, 0.6110101342201233, -0.33991023898124695, 0.010923771187663078, -0.39990538358688354, 0.01745329238474369, -0.017556775361299515, 0.5935056805610657, -0.2517144978046417, -0.0243116095662117, 0.0014329327968880534, 0.009476989507675171, -0.02558612823486328, -0.016502277925610542, 0.04683435335755348, -0.04836833477020264, 1.3471587896347046, 0.3146817982196808, -0.607744038105011, 0.10712698847055435, -2.500448703765869, -0.5046676993370056, -0.2817251682281494, 1.3470388650894165, -0.02683268114924431, 0.07624363899230957, 0.22173213958740234]} +{"t": 8.1381, "q": [-0.30964764952659607, -0.02719748020172119, 0.019445031881332397, 0.6110016107559204, -0.33990612626075745, 0.010931062512099743, -0.3998798131942749, 0.01739363744854927, -0.017570167779922485, 0.5934886336326599, -0.25171029567718506, -0.024304423481225967, 0.0014463247498497367, 0.009446595795452595, -0.02556636556982994, -0.016526246443390846, 0.046738479286432266, -0.048356350511312485, 1.3471587896347046, 0.31466978788375854, -0.6077679991722107, 0.10712698847055435, -2.496098518371582, -0.5012162327766418, -0.2820966839790344, 1.3470748662948608, -0.0267847441136837, 0.07711848616600037, 0.2229425460100174]} +{"t": 8.1548, "q": [-0.3096817433834076, -0.027240090072155, 0.019458424299955368, 0.6110357046127319, -0.33990201354026794, 0.010938371531665325, -0.3999224305152893, 0.017291372641921043, -0.017610343173146248, 0.5935312509536743, -0.25171446800231934, -0.02429722435772419, 0.0014865003759041429, 0.009423770010471344, -0.02552216127514839, -0.016514262184500694, 0.046798400580883026, -0.048356350511312485, 1.3471107482910156, 0.3146578073501587, -0.6078638434410095, 0.10725881904363632, -2.4917960166931152, -0.4974292516708374, -0.2826839089393616, 1.3470509052276611, -0.026760775595903397, 0.07830492407083511, 0.22509969770908356]} +{"t": 8.1716, "q": [-0.3096732199192047, -0.027274178341031075, 0.01947181671857834, 0.6110612154006958, -0.33990612626075745, 0.010931062512099743, -0.3999139070510864, 0.0172658059746027, -0.017583558335900307, 0.5936164855957031, -0.25168517231941223, -0.024362023919820786, 0.0015132841654121876, 0.009400985203683376, -0.025517133995890617, -0.016502277925610542, 0.04676244780421257, -0.04836833477020264, 1.34714674949646, 0.31464582681655884, -0.6078758835792542, 0.10733072459697723, -2.487409830093384, -0.49443319439888, -0.28311532735824585, 1.3471227884292603, -0.026736807078123093, 0.07977898418903351, 0.2278081327676773]} +{"t": 8.1883, "q": [-0.30970731377601624, -0.027274178341031075, 0.019458424299955368, 0.6111038327217102, -0.33989381790161133, 0.010938430204987526, -0.3999224305152893, 0.017257284373044968, -0.017556775361299515, 0.5935994386672974, -0.25168511271476746, -0.024333251640200615, 0.0015936355339363217, 0.009309782646596432, -0.025438256561756134, -0.016514262184500694, 0.04675046354532242, -0.0484282523393631, 1.347086787223816, 0.3146578073501587, -0.6081634759902954, 0.10740263015031815, -2.4837186336517334, -0.4914371371269226, -0.28343892097473145, 1.3472425937652588, -0.026760775595903397, 0.08138487488031387, 0.23001323640346527]} +{"t": 8.205, "q": [-0.30983513593673706, -0.027333833277225494, 0.019458424299955368, 0.6110953092575073, -0.33991023898124695, 0.010938312858343124, -0.40003320574760437, 0.01721467263996601, -0.017596950754523277, 0.5936079621315002, -0.2516893148422241, -0.024340437725186348, 0.0015936355339363217, 0.009309721179306507, -0.025379493832588196, -0.016502277925610542, 0.04675046354532242, -0.04850015789270401, 1.3470628261566162, 0.31466978788375854, -0.6082473397254944, 0.1074385792016983, -2.4807586669921875, -0.48845306038856506, -0.28371456265449524, 1.347446322441101, -0.02671283856034279, 0.08295480906963348, 0.23187078535556793]} +{"t": 8.2218, "q": [-0.3099544644355774, -0.02735939994454384, 0.0195119921118021, 0.6111123561859131, -0.33990612626075745, 0.010931062512099743, -0.4001610577106476, 0.017197629436850548, -0.017543382942676544, 0.5936591029167175, -0.2516809105873108, -0.024340450763702393, 0.0015266761183738708, 0.009332465007901192, -0.025345347821712494, -0.01649029366672039, 0.04676244780421257, -0.048524126410484314, 1.3470388650894165, 0.31466978788375854, -0.6082713603973389, 0.10751048475503922, -2.4780380725860596, -0.484654039144516, -0.28436169028282166, 1.3473864793777466, -0.026377279311418533, 0.08373378217220306, 0.23351262509822845]} +{"t": 8.2385, "q": [-0.30987775325775146, -0.027342356741428375, 0.019538775086402893, 0.6110612154006958, -0.33989793062210083, 0.010945661924779415, -0.4001951515674591, 0.017231717705726624, -0.01748981513082981, 0.5937017202377319, -0.2516893148422241, -0.024340437725186348, 0.0014061490073800087, 0.009362838231027126, -0.02534552291035652, -0.016466325148940086, 0.046798400580883026, -0.048643968999385834, 1.3470509052276611, 0.31466978788375854, -0.608259379863739, 0.10755842179059982, -2.47536563873291, -0.48093894124031067, -0.2848290801048279, 1.3473984003067017, -0.026161564514040947, 0.0842730700969696, 0.23503462970256805]} +{"t": 8.2553, "q": [-0.30983513593673706, -0.027333833277225494, 0.019552167505025864, 0.6110612154006958, -0.33990201354026794, 0.010952912271022797, -0.400246262550354, 0.017342504113912582, -0.017396071925759315, 0.5938039422035217, -0.2516809403896332, -0.024354835972189903, 0.0012856220128014684, 0.009355229325592518, -0.025330789387226105, -0.016466325148940086, 0.04675046354532242, -0.04879976436495781, 1.3470628261566162, 0.31469377875328064, -0.6082473397254944, 0.10761833935976028, -2.4726333618164062, -0.4760613739490509, -0.2855001986026764, 1.3473625183105469, -0.02582600526511669, 0.08505204319953918, 0.23634091019630432]} +{"t": 8.272, "q": [-0.3098010718822479, -0.02729974500834942, 0.019578952342271805, 0.6109930872917175, -0.33990201354026794, 0.010952912271022797, -0.40026330947875977, 0.017376594245433807, -0.017382681369781494, 0.5938465595245361, -0.2516809403896332, -0.024354835972189903, 0.0010981354862451553, 0.009355229325592518, -0.025330789387226105, -0.016454340890049934, 0.04675046354532242, -0.048955559730529785, 1.347086787223816, 0.3147057592868805, -0.6082473397254944, 0.10763032734394073, -2.4699487686157227, -0.4719387888908386, -0.28641098737716675, 1.3473625183105469, -0.025418542325496674, 0.08560331910848618, 0.23800671100616455]} +{"t": 8.2888, "q": [-0.30982664227485657, -0.02729974500834942, 0.019605735316872597, 0.6109930872917175, -0.33991023898124695, 0.010938312858343124, -0.40026330947875977, 0.017427725717425346, -0.01748981513082981, 0.5939658880233765, -0.2517189681529999, -0.024419531226158142, 0.0011784868547692895, 0.009340032003819942, -0.025320908054709435, -0.016454340890049934, 0.046666573733091354, -0.04908738657832146, 1.3470748662948608, 0.3147297203540802, -0.6082233786582947, 0.10764230787754059, -2.4672043323516846, -0.46810382604599, -0.2869982123374939, 1.3472905158996582, -0.025226794183254242, 0.08633435517549515, 0.2397444248199463]} +{"t": 8.3055, "q": [-0.30983513593673706, -0.0273082684725523, 0.01948520727455616, 0.6110016107559204, -0.33989793062210083, 0.010945661924779415, -0.4002547860145569, 0.017419204115867615, -0.01762373559176922, 0.5940766930580139, -0.2517359256744385, -0.024477064609527588, 0.001191878691315651, 0.009309648536145687, -0.0253109373152256, -0.016466325148940086, 0.046678557991981506, -0.04914730787277222, 1.3470628261566162, 0.3147297203540802, -0.6082473397254944, 0.10763032734394073, -2.46417236328125, -0.4638374447822571, -0.2874895930290222, 1.3473385572433472, -0.025130920112133026, 0.08730508387088776, 0.24091887474060059]} +{"t": 8.3225, "q": [-0.3098181188106537, -0.02731679007411003, 0.01947181671857834, 0.611027181148529, -0.33989793062210083, 0.010945661924779415, -0.40027183294296265, 0.017402159050107002, -0.01763712614774704, 0.5943238139152527, -0.2517654299736023, -0.02449861541390419, 0.0013659733813256025, 0.009233658201992512, -0.025251751765608788, -0.01649029366672039, 0.046678557991981506, -0.04918326064944267, 1.346990942955017, 0.31471773982048035, -0.6083073019981384, 0.10767826437950134, -2.4614040851593018, -0.4594632089138031, -0.28772926330566406, 1.3473145961761475, -0.024879250675439835, 0.08857540786266327, 0.2416619062423706]} +{"t": 8.3392, "q": [-0.30983513593673706, -0.02731679007411003, 0.01949859969317913, 0.6110101342201233, -0.33989381790161133, 0.010938430204987526, -0.4003741145133972, 0.01738511584699154, -0.01766391098499298, 0.5945027470588684, -0.25179076194763184, -0.02454175055027008, 0.0013525814283639193, 0.009226001799106598, -0.02517831325531006, -0.016502277925610542, 0.046666573733091354, -0.04920722916722298, 1.346979022026062, 0.31474170088768005, -0.6083073019981384, 0.10767826437950134, -2.4586715698242188, -0.4549451470375061, -0.28780117630958557, 1.3473385572433472, -0.024459803476929665, 0.09015733003616333, 0.24204540252685547]} +{"t": 8.3559, "q": [-0.30982664227485657, -0.02731679007411003, 0.0195119921118021, 0.61104416847229, -0.33989381790161133, 0.010938430204987526, -0.4004422724246979, 0.01738511584699154, -0.01762373559176922, 0.5946305990219116, -0.25179919600486755, -0.024556122720241547, 0.0014597165863960981, 0.009172817692160606, -0.025133991613984108, -0.016526246443390846, 0.04658268392086029, -0.04926715046167374, 1.346919059753418, 0.3147057592868805, -0.6083192825317383, 0.10766627639532089, -2.455831289291382, -0.45064282417297363, -0.28828054666519165, 1.3473385572433472, -0.023908529430627823, 0.0926380604505539, 0.2425127774477005]} +{"t": 8.3728, "q": [-0.30982664227485657, -0.027333833277225494, 0.0195119921118021, 0.6110612154006958, -0.3398897349834442, 0.010931197553873062, -0.4004422724246979, 0.01738511584699154, -0.01765051856637001, 0.5948521494865417, -0.2518160343170166, -0.024556096643209457, 0.0015132841654121876, 0.008990516886115074, -0.025035163387656212, -0.01655021496117115, 0.04647482559084892, -0.049255166202783585, 1.3468711376190186, 0.31469377875328064, -0.6083552241325378, 0.1076902449131012, -2.453314781188965, -0.44717937707901, -0.2887119650840759, 1.3474223613739014, -0.022674154490232468, 0.09634118527173996, 0.24280039966106415]} +{"t": 8.3895, "q": [-0.3098095953464508, -0.027333833277225494, 0.0195119921118021, 0.6111123561859131, -0.3398897349834442, 0.010931197553873062, -0.40050193667411804, 0.017368070781230927, -0.01763712614774704, 0.5950311422348022, -0.25182870030403137, -0.024577654898166656, 0.0014865003759041429, 0.008899376727640629, -0.024995537474751472, -0.01655021496117115, 0.04628307744860649, -0.04927913472056389, 1.3468232154846191, 0.31471773982048035, -0.6083791851997375, 0.10767826437950134, -2.450582265853882, -0.4434402883052826, -0.2898864150047302, 1.3471707105636597, -0.02159557305276394, 0.09847437590360641, 0.24290825426578522]} +{"t": 8.4063, "q": [-0.3097158372402191, -0.027333833277225494, 0.019619127735495567, 0.6111720204353333, -0.33989381790161133, 0.010938430204987526, -0.40050193667411804, 0.017368070781230927, -0.017516599968075752, 0.5950822830200195, -0.2518455982208252, -0.02460641786456108, 0.001312405802309513, 0.008891788311302662, -0.02500038966536522, -0.016562199220061302, 0.04619918763637543, -0.04939897730946541, 1.3468471765518188, 0.31471773982048035, -0.6083672046661377, 0.10766627639532089, -2.447741985321045, -0.43932971358299255, -0.29134848713874817, 1.3472546339035034, -0.02064882032573223, 0.09994843602180481, 0.24289627373218536]} +{"t": 8.4231, "q": [-0.3096732199192047, -0.027333833277225494, 0.019766438752412796, 0.6112146377563477, -0.33989381790161133, 0.010938430204987526, -0.4005530774593353, 0.017368070781230927, -0.017369288951158524, 0.5952356457710266, -0.2518497705459595, -0.024599218741059303, 0.0011784868547692895, 0.00889177992939949, -0.02499060332775116, -0.01655021496117115, 0.04604339227080345, -0.049494851380586624, 1.346859097480774, 0.3147057592868805, -0.6082833409309387, 0.10766627639532089, -2.4446260929107666, -0.4347996711730957, -0.29287049174308777, 1.347218632698059, -0.01828792691230774, 0.10162623226642609, 0.24272850155830383]} +{"t": 8.4398, "q": [-0.30965617299079895, -0.027333833277225494, 0.01984678953886032, 0.6112316846847534, -0.33989381790161133, 0.010938430204987526, -0.40063828229904175, 0.017342504113912582, -0.017235370352864265, 0.5953208804130554, -0.2518834173679352, -0.024584762752056122, 0.0011249192757532, 0.008884184062480927, -0.024985669180750847, -0.01655021496117115, 0.046007439494132996, -0.04969858378171921, 1.346859097480774, 0.31471773982048035, -0.6082233786582947, 0.10767826437950134, -2.442025661468506, -0.4311085343360901, -0.2938412129878998, 1.3472785949707031, -0.017604826018214226, 0.1028965562582016, 0.24272850155830383]} +{"t": 8.4565, "q": [-0.3097584545612335, -0.027333833277225494, 0.01980661414563656, 0.6112913489341736, -0.33989381790161133, 0.010938430204987526, -0.4007064700126648, 0.017291372641921043, -0.017235370352864265, 0.5953975915908813, -0.25187918543815613, -0.02457757666707039, 0.001232054433785379, 0.008861410431563854, -0.024990443140268326, -0.016574183478951454, 0.0457318052649498, -0.049734536558389664, 1.3468351364135742, 0.3147536814212799, -0.6082113981246948, 0.10767826437950134, -2.4388856887817383, -0.4278128743171692, -0.2952074110507965, 1.3470748662948608, -0.016682041808962822, 0.10420283675193787, 0.24265658855438232]} +{"t": 8.4734, "q": [-0.30974140763282776, -0.02735939994454384, 0.019726261496543884, 0.611402153968811, -0.3398897349834442, 0.010931197553873062, -0.40063828229904175, 0.017231717705726624, -0.017369288951158524, 0.5954146385192871, -0.25190022587776184, -0.024584736675024033, 0.0013659733813256025, 0.008800704963505268, -0.025029301643371582, -0.016562199220061302, 0.04550410434603691, -0.04980643838644028, 1.3468351364135742, 0.3147297203540802, -0.6082113981246948, 0.10767826437950134, -2.435194492340088, -0.42522427439689636, -0.29599836468696594, 1.347086787223816, -0.016238626092672348, 0.10522149503231049, 0.2425607144832611]} +{"t": 8.4901, "q": [-0.30979254841804504, -0.02736792154610157, 0.019712870940566063, 0.611564040184021, -0.33989381790161133, 0.010938430204987526, -0.40062975883483887, 0.017240239307284355, -0.017382681369781494, 0.5955169200897217, -0.25192126631736755, -0.024577511474490166, 0.0014061490073800087, 0.008762773126363754, -0.02506338059902191, -0.016574183478951454, 0.04512060806155205, -0.04980643838644028, 1.3467872142791748, 0.3147297203540802, -0.6082113981246948, 0.10765429586172104, -2.4317190647125244, -0.42263567447662354, -0.29699307680130005, 1.346990942955017, -0.015399729833006859, 0.1065397635102272, 0.24259667098522186]} +{"t": 8.5069, "q": [-0.3097669780254364, -0.02735939994454384, 0.019739653915166855, 0.6116066575050354, -0.33991023898124695, 0.010938312858343124, -0.40063828229904175, 0.017231717705726624, -0.017355896532535553, 0.5954998731613159, -0.2519296705722809, -0.02456311322748661, 0.0013391895918175578, 0.008717235177755356, -0.025082746520638466, -0.016574183478951454, 0.0445094108581543, -0.049854375422000885, 1.3467992544174194, 0.3147297203540802, -0.6081874370574951, 0.10765429586172104, -2.4273927211761475, -0.41985535621643066, -0.2977840304374695, 1.3470149040222168, -0.014093449339270592, 0.10754643380641937, 0.24260865151882172]} +{"t": 8.5238, "q": [-0.30979254841804504, -0.02735939994454384, 0.019739653915166855, 0.6116663217544556, -0.33989793062210083, 0.010945661924779415, -0.4006979465484619, 0.017240239307284355, -0.017195194959640503, 0.5955595374107361, -0.25193795561790466, -0.02451992593705654, 0.0013391895918175578, 0.008694453164935112, -0.02507774904370308, -0.01661013625562191, 0.04406599700450897, -0.04999818652868271, 1.3467872142791748, 0.3147297203540802, -0.6081634759902954, 0.10766627639532089, -2.4228627681732178, -0.41711094975471497, -0.2987067997455597, 1.346990942955017, -0.011684619821608067, 0.10873287916183472, 0.24290825426578522]} +{"t": 8.5405, "q": [-0.30978402495384216, -0.02736792154610157, 0.019726261496543884, 0.6117259860038757, -0.33989381790161133, 0.010938430204987526, -0.4006979465484619, 0.017189105972647667, -0.01715501770377159, 0.5955595374107361, -0.2519337832927704, -0.02452712506055832, 0.0013257976388558745, 0.008671646006405354, -0.025043392553925514, -0.01661013625562191, 0.043910201638936996, -0.05011802911758423, 1.3467872142791748, 0.3147536814212799, -0.6080915927886963, 0.10765429586172104, -2.418536424636841, -0.41516950726509094, -0.29950976371765137, 1.3470509052276611, -0.009431585669517517, 0.10954780131578445, 0.24323183298110962]} +{"t": 8.5572, "q": [-0.3098521828651428, -0.027410533279180527, 0.019699478521943092, 0.6118111610412598, -0.33990201354026794, 0.010952912271022797, -0.4007149934768677, 0.01714649610221386, -0.01714162714779377, 0.5955851078033447, -0.2519253194332123, -0.024512752890586853, 0.0013391895918175578, 0.008679242804646492, -0.02504832111299038, -0.016658073291182518, 0.04382631182670593, -0.05011802911758423, 1.3467752933502197, 0.3147297203540802, -0.6081275343894958, 0.10766627639532089, -2.4138987064361572, -0.4132760167121887, -0.30121150612831116, 1.3470509052276611, -0.008221178315579891, 0.11048257350921631, 0.24360334873199463]} +{"t": 8.5739, "q": [-0.3098607063293457, -0.02743609994649887, 0.019699478521943092, 0.6118282079696655, -0.33989793062210083, 0.010945661924779415, -0.4007064700126648, 0.017078319564461708, -0.017195194959640503, 0.5955851078033447, -0.25191691517829895, -0.024512765929102898, 0.0013391895918175578, 0.00867162924259901, -0.025023819878697395, -0.01667005755007267, 0.04374242201447487, -0.050165966153144836, 1.3467752933502197, 0.3147297203540802, -0.6081275343894958, 0.10767826437950134, -2.409883975982666, -0.41167011857032776, -0.30356043577194214, 1.347086787223816, -0.00695085059851408, 0.11151321232318878, 0.24390295147895813]} +{"t": 8.5907, "q": [-0.3099544644355774, -0.027478709816932678, 0.019686086103320122, 0.6118452548980713, -0.33989793062210083, 0.010945661924779415, -0.4007490873336792, 0.017061274498701096, -0.01714162714779377, 0.5956106185913086, -0.251908540725708, -0.024527164176106453, 0.001419540960341692, 0.008580461144447327, -0.0249549001455307, -0.016741963103413582, 0.04374242201447487, -0.050213903188705444, 1.3467752933502197, 0.3147536814212799, -0.6081634759902954, 0.10766627639532089, -2.405988931655884, -0.4101121723651886, -0.3054179847240448, 1.3470748662948608, -0.005920207127928734, 0.11304719746112823, 0.2442624717950821]} +{"t": 8.6074, "q": [-0.31001412868499756, -0.02748723141849041, 0.019699478521943092, 0.6118367314338684, -0.33990201354026794, 0.010952912271022797, -0.4008342921733856, 0.01703570783138275, -0.01715501770377159, 0.5956106185913086, -0.25191691517829895, -0.024512765929102898, 0.0014061490073800087, 0.008588031865656376, -0.024930467829108238, -0.016777915880084038, 0.04370646923780441, -0.05030977725982666, 1.3467752933502197, 0.3147297203540802, -0.6081874370574951, 0.10767826437950134, -2.402681350708008, -0.40890175104141235, -0.3070957660675049, 1.3471227884292603, -0.0041705104522407055, 0.1164267510175705, 0.2445620894432068]} +{"t": 8.6241, "q": [-0.31006523966789246, -0.02749575488269329, 0.019699478521943092, 0.6118282079696655, -0.33990612626075745, 0.010931062512099743, -0.40091952681541443, 0.017044231295585632, -0.017168410122394562, 0.5956191420555115, -0.25190436840057373, -0.02454874850809574, 0.0014061490073800087, 0.008580401539802551, -0.024886393919587135, -0.016837837174534798, 0.043598610907793045, -0.050345730036497116, 1.3467752933502197, 0.3147297203540802, -0.6081874370574951, 0.10767826437950134, -2.399852991104126, -0.4076673984527588, -0.30916905403137207, 1.3470269441604614, -0.003055977402254939, 0.12001003324985504, 0.2450055032968521]} +{"t": 8.6409, "q": [-0.31003114581108093, -0.027478709816932678, 0.019699478521943092, 0.6118026375770569, -0.33990201354026794, 0.010952912271022797, -0.4009280502796173, 0.017112407833337784, -0.01714162714779377, 0.5956020951271057, -0.25190016627311707, -0.02455596625804901, 0.001312405802309513, 0.008572813123464584, -0.02489125356078148, -0.0168618056923151, 0.04350273683667183, -0.050465572625398636, 1.3467992544174194, 0.31476566195487976, -0.6081634759902954, 0.10766627639532089, -2.3964614868164062, -0.4063371419906616, -0.31204524636268616, 1.3470149040222168, 0.0006831008358858526, 0.12203536927700043, 0.24579645693302155]} +{"t": 8.6576, "q": [-0.3100396692752838, -0.027478709816932678, 0.019699478521943092, 0.6118026375770569, -0.33990612626075745, 0.010960143990814686, -0.4009365737438202, 0.01714649610221386, -0.01714162714779377, 0.5956361889839172, -0.25194239616394043, -0.02461344189941883, 0.0012990138493478298, 0.008504442870616913, -0.02484690211713314, -0.016897758468985558, 0.043418847024440765, -0.05066930502653122, 1.3467992544174194, 0.31476566195487976, -0.6081514954566956, 0.10767826437950134, -2.3932018280029297, -0.40491101145744324, -0.3139747083187103, 1.3470628261566162, 0.0012583436910063028, 0.12343751639127731, 0.24661138653755188]} +{"t": 8.6743, "q": [-0.31003114581108093, -0.027461664751172066, 0.0196726955473423, 0.6116577982902527, -0.33990201354026794, 0.010952912271022797, -0.4009706377983093, 0.017180584371089935, -0.01715501770377159, 0.5956020951271057, -0.25195083022117615, -0.02462783269584179, 0.001084743533283472, 0.008496854454278946, -0.024851761758327484, -0.016897758468985558, 0.043346941471099854, -0.05081311613321304, 1.3468351364135742, 0.31476566195487976, -0.608055591583252, 0.10767826437950134, -2.3894028663635254, -0.4028257727622986, -0.3164314925670624, 1.3468711376190186, 0.0038109836168587208, 0.1251392811536789, 0.24748623371124268]} +{"t": 8.6911, "q": [-0.3099629878997803, -0.027453143149614334, 0.019739653915166855, 0.6116833686828613, -0.33990612626075745, 0.010960143990814686, -0.40101325511932373, 0.01720615103840828, -0.01711484231054783, 0.5957299470901489, -0.25203102827072144, -0.02473563514649868, 0.0010177841177210212, 0.008534795604646206, -0.024827467277646065, -0.01690974272787571, 0.0433349572122097, -0.051004864275455475, 1.3468232154846191, 0.31478965282440186, -0.6080076694488525, 0.10767826437950134, -2.385376214981079, -0.4005008339881897, -0.3177737295627594, 1.3469310998916626, 0.0049375006929039955, 0.12708072364330292, 0.24824124574661255]} +{"t": 8.7079, "q": [-0.30998003482818604, -0.02742757648229599, 0.019739653915166855, 0.6116663217544556, -0.33990201354026794, 0.010952912271022797, -0.4010729193687439, 0.01721467263996601, -0.0171282347291708, 0.5958322286605835, -0.25205644965171814, -0.024821944534778595, 0.0009240407962352037, 0.008549955673515797, -0.024798177182674408, -0.016897758468985558, 0.0433109886944294, -0.05120859295129776, 1.3468471765518188, 0.31481361389160156, -0.6079118251800537, 0.10767826437950134, -2.3809659481048584, -0.3973369896411896, -0.31933167576789856, 1.3467992544174194, 0.006615292280912399, 0.1289862096309662, 0.24858878552913666]} +{"t": 8.7246, "q": [-0.3099544644355774, -0.027410533279180527, 0.019779829308390617, 0.6116237044334412, -0.33989793062210083, 0.010945661924779415, -0.40108996629714966, 0.01727432757616043, -0.017195194959640503, 0.5959515571594238, -0.2520606815814972, -0.024843517690896988, 0.0008838651119731367, 0.008542358875274658, -0.024793250486254692, -0.016897758468985558, 0.0433109886944294, -0.05140034109354019, 1.3468232154846191, 0.31481361389160156, -0.6078159213066101, 0.1076902449131012, -2.3759806156158447, -0.3942929804325104, -0.3206019997596741, 1.346859097480774, 0.010282465256750584, 0.1299569457769394, 0.2487565577030182]} +{"t": 8.7413, "q": [-0.3099544644355774, -0.027393488213419914, 0.019766438752412796, 0.6116492748260498, -0.33989793062210083, 0.010945661924779415, -0.40108996629714966, 0.017291372641921043, -0.01731572113931179, 0.5960452556610107, -0.25209444761276245, -0.024886639788746834, 0.0009106489014811814, 0.00853476207703352, -0.024788321927189827, -0.016921725124120712, 0.04327503591775894, -0.05155613645911217, 1.3468232154846191, 0.31481361389160156, -0.6077919602394104, 0.10767826437950134, -2.3703598976135254, -0.39064979553222656, -0.32255542278289795, 1.3467272520065308, 0.013218600302934647, 0.13126322627067566, 0.2494516521692276]} +{"t": 8.7581, "q": [-0.30997151136398315, -0.027393488213419914, 0.019712870940566063, 0.611632227897644, -0.33989793062210083, 0.010945661924779415, -0.40109848976135254, 0.017308415845036507, -0.017396071925759315, 0.596173107624054, -0.2521577775478363, -0.02498006448149681, 0.0010981354862451553, 0.008489122614264488, -0.02469024993479252, -0.017101489007472992, 0.043299004435539246, -0.051783837378025055, 1.3467872142791748, 0.3148016333580017, -0.6078039407730103, 0.10767826437950134, -2.36554217338562, -0.38765373826026917, -0.32347822189331055, 1.3470269441604614, 0.013709953986108303, 0.13256950676441193, 0.24983514845371246]} +{"t": 8.7748, "q": [-0.31007376313209534, -0.027393488213419914, 0.0196726955473423, 0.6116577982902527, -0.3398856222629547, 0.010938487946987152, -0.40123483538627625, 0.017291372641921043, -0.01746303215622902, 0.5963435769081116, -0.2522042393684387, -0.025059131905436516, 0.0014329327968880534, 0.008405405096709728, -0.02445988729596138, -0.017413079738616943, 0.04320313036441803, -0.051903679966926575, 1.346763253211975, 0.31481361389160156, -0.6078039407730103, 0.1077142134308815, -2.3610363006591797, -0.3844299912452698, -0.32444894313812256, 1.3470509052276611, 0.01495631318539381, 0.13425926864147186, 0.25061410665512085]} +{"t": 8.7916, "q": [-0.3101249039173126, -0.027410533279180527, 0.01963251829147339, 0.6116833686828613, -0.3398774266242981, 0.010938546620309353, -0.40123483538627625, 0.01727432757616043, -0.017556775361299515, 0.5964628458023071, -0.25220003724098206, -0.025066347792744637, 0.0014597165863960981, 0.008412874303758144, -0.024318017065525055, -0.017532922327518463, 0.04321511462330818, -0.05195161700248718, 1.3467752933502197, 0.3148016333580017, -0.6078039407730103, 0.10772620141506195, -2.3564462661743164, -0.38133805990219116, -0.32497623562812805, 1.3470628261566162, 0.017077520489692688, 0.13668008148670197, 0.25146499276161194]} +{"t": 8.8083, "q": [-0.3100396692752838, -0.027393488213419914, 0.019619127735495567, 0.6117430329322815, -0.3398815095424652, 0.010931256227195263, -0.40122631192207336, 0.017308415845036507, -0.017516599968075752, 0.5965992212295532, -0.2522253394126892, -0.025095079094171524, 0.001379365217871964, 0.008435656316578388, -0.02432301454246044, -0.017496969550848007, 0.043119240552186966, -0.05201153829693794, 1.3467872142791748, 0.314777672290802, -0.6077200770378113, 0.1076902449131012, -2.351280927658081, -0.37755101919174194, -0.3263184726238251, 1.3468111753463745, 0.01991778239607811, 0.14065885543823242, 0.25243571400642395]} +{"t": 8.825, "q": [-0.3099033236503601, -0.02736792154610157, 0.019739653915166855, 0.6117430329322815, -0.33989381790161133, 0.010938430204987526, -0.4012092649936676, 0.017368070781230927, -0.017436247318983078, 0.596778154373169, -0.2523435950279236, -0.025296347215771675, 0.0012990138493478298, 0.008405286818742752, -0.0243228767067194, -0.017532922327518463, 0.04310726001858711, -0.052155349403619766, 1.3467992544174194, 0.31481361389160156, -0.6075522899627686, 0.10770223289728165, -2.3457322120666504, -0.37372806668281555, -0.327181339263916, 1.3470269441604614, 0.02088850550353527, 0.14327141642570496, 0.25356224179267883]} +{"t": 8.8419, "q": [-0.3099885582923889, -0.027333833277225494, 0.019779829308390617, 0.6118282079696655, -0.33989381790161133, 0.010938430204987526, -0.4013371169567108, 0.01739363744854927, -0.017396071925759315, 0.5968889594078064, -0.2523520588874817, -0.02531071938574314, 0.0012052706442773342, 0.008367277681827545, -0.024268876761198044, -0.017532922327518463, 0.042999401688575745, -0.052275191992521286, 1.3467992544174194, 0.31478965282440186, -0.6075283288955688, 0.10772620141506195, -2.340651035308838, -0.3699050843715668, -0.32827189564704895, 1.346919059753418, 0.02202700637280941, 0.1456802487373352, 0.2553718686103821]} +{"t": 8.8587, "q": [-0.3100396692752838, -0.02735939994454384, 0.019766438752412796, 0.6118196845054626, -0.3398815095424652, 0.010931256227195263, -0.40137118101119995, 0.017342504113912582, -0.017409464344382286, 0.596914529800415, -0.252347856760025, -0.02531793713569641, 0.0012052706442773342, 0.00838241446763277, -0.024210229516029358, -0.01756887510418892, 0.04295146465301514, -0.0523710660636425, 1.3467992544174194, 0.3148016333580017, -0.6074084639549255, 0.10772620141506195, -2.336468458175659, -0.36663341522216797, -0.3291108012199402, 1.346979022026062, 0.022122880443930626, 0.14795725047588348, 0.257660835981369]} +{"t": 8.8755, "q": [-0.31006523966789246, -0.027384966611862183, 0.019753046333789825, 0.6118963956832886, -0.3398856222629547, 0.010938487946987152, -0.4013967514038086, 0.017342504113912582, -0.017396071925759315, 0.5970764756202698, -0.252347856760025, -0.02531793713569641, 0.001312405802309513, 0.00836711935698986, -0.024082934483885765, -0.017664747312664986, 0.04290352761745453, -0.05243098363280296, 1.3467752933502197, 0.31478965282440186, -0.6074084639549255, 0.10777413845062256, -2.331974506378174, -0.36291828751564026, -0.33062079548835754, 1.3468351364135742, 0.022829949855804443, 0.15027019381523132, 0.26006966829299927]} +{"t": 8.8923, "q": [-0.31006523966789246, -0.02735939994454384, 0.019766438752412796, 0.6118878722190857, -0.3398897349834442, 0.010931197553873062, -0.4014905095100403, 0.01733398251235485, -0.017382681369781494, 0.597059428691864, -0.2523983120918274, -0.025303473696112633, 0.0012052706442773342, 0.008405077271163464, -0.024078214541077614, -0.017652763053774834, 0.042879559099674225, -0.052442967891693115, 1.3468111753463745, 0.31478965282440186, -0.6074324250221252, 0.10782207548618317, -2.3274922370910645, -0.3586638867855072, -0.3322266936302185, 1.3469430208206177, 0.025106951594352722, 0.15140870213508606, 0.2622508108615875]} +{"t": 8.9091, "q": [-0.310099333524704, -0.027350878342986107, 0.019793221727013588, 0.6118878722190857, -0.33989381790161133, 0.010938430204987526, -0.40165242552757263, 0.017342504113912582, -0.017275545746088028, 0.597144603729248, -0.2524068057537079, -0.02534661628305912, 0.0011784868547692895, 0.008526402525603771, -0.023902611806988716, -0.01768871583044529, 0.0427357479929924, -0.05245495215058327, 1.3467992544174194, 0.31478965282440186, -0.6074084639549255, 0.10788199305534363, -2.3242926597595215, -0.35378631949424744, -0.3335689306259155, 1.3470269441604614, 0.02702442742884159, 0.15266704559326172, 0.26349717378616333]} +{"t": 8.9258, "q": [-0.310167521238327, -0.027350878342986107, 0.01983339712023735, 0.6118708252906799, -0.33989381790161133, 0.010938430204987526, -0.4018058180809021, 0.017359549179673195, -0.017168410122394562, 0.5971786975860596, -0.252390056848526, -0.02537541463971138, 0.0009910003282129765, 0.008579409681260586, -0.023741375654935837, -0.01768871583044529, 0.04262788966298103, -0.05247892066836357, 1.3468111753463745, 0.31478965282440186, -0.6073126196861267, 0.10795389860868454, -2.321512222290039, -0.34876492619514465, -0.33523473143577576, 1.3470509052276611, 0.032045818865299225, 0.15382951498031616, 0.2641562819480896]} +{"t": 8.9426, "q": [-0.30993741750717163, -0.02731679007411003, 0.01982000470161438, 0.6115214228630066, -0.33984872698783875, 0.010887903161346912, -0.4017632007598877, 0.017351027578115463, -0.0171282347291708, 0.5972468852996826, -0.2523774802684784, -0.025397028774023056, 0.001004392164759338, 0.008177210576832294, -0.02396952547132969, -0.019354524090886116, 0.043071307241916656, -0.05205947533249855, 1.3461041450500488, 0.31462186574935913, -0.6093738675117493, 0.10776215046644211, -2.305657148361206, -0.344330757856369, -0.3325982093811035, 1.3221476078033447, 0.0375945158302784, 0.16350078582763672, 0.27437883615493774]} +{"t": 8.9593, "q": [-0.3094090521335602, -0.02729974500834942, 0.019753046333789825, 0.611939013004303, -0.3398938477039337, 0.010909365490078926, -0.4011496305465698, 0.017538513988256454, -0.01732911355793476, 0.5975536704063416, -0.2526264190673828, -0.025720424950122833, 0.002464108867570758, 0.006233649328351021, -0.024108298122882843, -0.02142779529094696, 0.04297543317079544, -0.052155349403619766, 1.3462239503860474, 0.31494542956352234, -0.6092180609703064, 0.10770223289728165, -2.2835941314697266, -0.34272485971450806, -0.33196303248405457, 1.286698341369629, 0.04583965986967087, 0.1670241504907608, 0.29155224561691284]} +{"t": 8.9761, "q": [-0.30961358547210693, -0.027274178341031075, 0.019445031881332397, 0.6124588847160339, -0.33990204334259033, 0.010923829860985279, -0.4011581242084503, 0.017368070781230927, -0.01781122200191021, 0.598337709903717, -0.2530982196331024, -0.025964319705963135, 0.0032274469267576933, 0.0033863219432532787, -0.02394953928887844, -0.022961774840950966, 0.042759716510772705, -0.05186772719025612, 1.3450136184692383, 0.3147297203540802, -0.6106442213058472, 0.1077142134308815, -2.2646710872650146, -0.3435158431529999, -0.33133986592292786, 1.2605847120285034, 0.05398893356323242, 0.1703198105096817, 0.30103176832199097]} +{"t": 8.9929, "q": [-0.309724360704422, -0.027291223406791687, 0.01898970827460289, 0.6125185489654541, -0.339873343706131, 0.010902268812060356, -0.40094509720802307, 0.017257284373044968, -0.01845403201878071, 0.5982184410095215, -0.2530519366264343, -0.025971584022045135, 0.0032676225528120995, 0.001009842730127275, -0.023434802889823914, -0.024459803476929665, 0.04279566928744316, -0.05171193182468414, 1.3445461988449097, 0.31481361389160156, -0.6118066906929016, 0.10766627639532089, -2.240630626678467, -0.3439352810382843, -0.3304769992828369, 1.2266693115234375, 0.061179470270872116, 0.17754629254341125, 0.31259652972221375]} +{"t": 9.0097, "q": [-0.310167521238327, -0.027171913534402847, 0.01896292343735695, 0.6134133338928223, -0.339873343706131, 0.010902268812060356, -0.40108996629714966, 0.017308415845036507, -0.0186415184289217, 0.5982780456542969, -0.25299713015556335, -0.025921301916241646, 0.0032676225528120995, -0.0009792111814022064, -0.02211795002222061, -0.026101643219590187, 0.04260392114520073, -0.051544152200222015, 1.3438031673431396, 0.3148495554924011, -0.6124298572540283, 0.10758239030838013, -2.2205090522766113, -0.3440670967102051, -0.33039310574531555, 1.1998246908187866, 0.0659012570977211, 0.18199244141578674, 0.3220161199569702]} +{"t": 9.0264, "q": [-0.3106362223625183, -0.027086691930890083, 0.01897631585597992, 0.6136434674263, -0.339865118265152, 0.01091685052961111, -0.4012944996356964, 0.017342504113912582, -0.018561167642474174, 0.5979542136192322, -0.25288280844688416, -0.025583330541849136, 0.0032676225528120995, -0.002413808600977063, -0.021199336275458336, -0.02726411260664463, 0.042340267449617386, -0.05113668739795685, 1.3422452211380005, 0.3148495554924011, -0.6133526563644409, 0.10758239030838013, -2.1943235397338867, -0.34341996908187866, -0.3289549946784973, 1.1594258546829224, 0.07393068820238113, 0.19225093722343445, 0.33376067876815796]} +{"t": 9.0432, "q": [-0.31093451380729675, -0.027112258598208427, 0.019043276086449623, 0.6138309240341187, -0.33986103534698486, 0.010909617878496647, -0.4014052748680115, 0.017240239307284355, -0.018440639600157738, 0.5978605151176453, -0.2527053952217102, -0.025281401351094246, 0.003441717242822051, -0.003498925594612956, -0.020473608747124672, -0.02852245606482029, 0.0421365350484848, -0.0508730374276638, 1.3400400876998901, 0.3148255944252014, -0.6137840747833252, 0.10752246528863907, -2.16904878616333, -0.3431083559989929, -0.3283917307853699, 1.1225743293762207, 0.08406934142112732, 0.19990886747837067, 0.34427082538604736]} +{"t": 9.0599, "q": [-0.31097710132598877, -0.027282701805233955, 0.019029883667826653, 0.6139843463897705, -0.3398733139038086, 0.010931314900517464, -0.4013030230998993, 0.017018664628267288, -0.018440639600157738, 0.5977156162261963, -0.25256597995758057, -0.025015413761138916, 0.0037497307639569044, -0.004014905542135239, -0.02008379064500332, -0.029397305101156235, 0.04192081838846207, -0.050405651330947876, 1.3384342193603516, 0.3148735463619232, -0.6140357255935669, 0.10749849677085876, -2.1405622959136963, -0.3428806662559509, -0.3273850679397583, 1.0829904079437256, 0.09248226881027222, 0.20974791049957275, 0.35542815923690796]} +{"t": 9.0767, "q": [-0.3110879063606262, -0.027521319687366486, 0.019284330308437347, 0.6141291856765747, -0.3398856222629547, 0.010953010991215706, -0.40132859349250793, 0.0167374350130558, -0.01817280240356922, 0.5976218581199646, -0.2524350583553314, -0.024792570620775223, 0.0038568659219890833, -0.004083163570612669, -0.019903237000107765, -0.029636988416314125, 0.04171708971261978, -0.049746520817279816, 1.3368762731552124, 0.314861536026001, -0.6142754554748535, 0.10752246528863907, -2.112339496612549, -0.34265297651290894, -0.3265102207660675, 1.0446289777755737, 0.10247711092233658, 0.2196468859910965, 0.3652072846889496]} +{"t": 9.0935, "q": [-0.3110964298248291, -0.027742896229028702, 0.01932450570166111, 0.6140269637107849, -0.33990612626075745, 0.01097466703504324, -0.4012433588504791, 0.016507336869835854, -0.018052276223897934, 0.5971616506576538, -0.2522871792316437, -0.024512192234396935, 0.0038568659219890833, -0.0039617158472537994, -0.019834691658616066, -0.029684925451874733, 0.04163319990038872, -0.04948286712169647, 1.3360973596572876, 0.3148735463619232, -0.6142874360084534, 0.10752246528863907, -2.085446834564209, -0.34232938289642334, -0.3255155384540558, 1.005991816520691, 0.1098354235291481, 0.2286829799413681, 0.3737400472164154]} +{"t": 9.1102, "q": [-0.3111475706100464, -0.027990037575364113, 0.019364681094884872, 0.6139672994613647, -0.3399347960948944, 0.011010787449777126, -0.40141379833221436, 0.016166452318429947, -0.01762373559176922, 0.5971360802650452, -0.2522236704826355, -0.02433241903781891, 0.0037095551379024982, -0.003566975938156247, -0.019453249871730804, -0.029924610629677773, 0.041489388793706894, -0.04915929213166237, 1.3353902101516724, 0.31488552689552307, -0.6144552230834961, 0.10751048475503922, -2.058626174926758, -0.3428806662559509, -0.3253836929798126, 0.9734786152839661, 0.11851200461387634, 0.23641280829906464, 0.38039129972457886]} +{"t": 9.1273, "q": [-0.3110026717185974, -0.028117869049310684, 0.019391464069485664, 0.613277018070221, -0.3399184048175812, 0.01101088710129261, -0.4013882279396057, 0.016047142446041107, -0.01715501770377159, 0.5966333150863647, -0.25194141268730164, -0.024167386814951897, 0.003441717242822051, -0.003437937470152974, -0.019379811361432076, -0.029996516183018684, 0.041429467499256134, -0.04888365417718887, 1.334826946258545, 0.3148495554924011, -0.6145390868186951, 0.10751048475503922, -2.028402090072632, -0.34260502457618713, -0.3242931365966797, 0.933211624622345, 0.12676914036273956, 0.24746227264404297, 0.38806119561195374]} +{"t": 9.1441, "q": [-0.3110623359680176, -0.02821161225438118, 0.019404856488108635, 0.6134815216064453, -0.3399675786495209, 0.01106866355985403, -0.4015160799026489, 0.016047142446041107, -0.01682022027671337, 0.5965821743011475, -0.25193294882774353, -0.02415299601852894, 0.003361365757882595, -0.0029748647939413786, -0.018885968253016472, -0.030140327289700508, 0.04117779806256294, -0.04881174862384796, 1.334503412246704, 0.314861536026001, -0.6145989894866943, 0.10751048475503922, -2.0006825923919678, -0.3426889181137085, -0.32400551438331604, 0.8987090587615967, 0.1350741982460022, 0.2563665509223938, 0.39539554715156555]} +{"t": 9.1608, "q": [-0.3110197186470032, -0.02827978879213333, 0.019391464069485664, 0.6128935217857361, -0.33996349573135376, 0.011061413213610649, -0.40146493911743164, 0.016030099242925644, -0.016565775498747826, 0.5961475372314453, -0.2519287168979645, -0.024131406098604202, 0.0032006630208343267, -0.0029824399389326572, -0.01885182596743107, -0.03020024672150612, 0.04099803417921066, -0.0484282523393631, 1.3340599536895752, 0.314861536026001, -0.6146109700202942, 0.10753445327281952, -1.9698591232299805, -0.3428806662559509, -0.32313066720962524, 0.858717679977417, 0.1441342830657959, 0.26603782176971436, 0.40148353576660156]} +{"t": 9.1776, "q": [-0.31098562479019165, -0.028288310393691063, 0.019445031881332397, 0.6130724549293518, -0.3399880826473236, 0.01111934706568718, -0.4015842378139496, 0.01618349738419056, -0.01629793643951416, 0.5962242484092712, -0.2518993616104126, -0.024181818589568138, 0.00287925754673779, -0.0026330482214689255, -0.01815836690366268, -0.030296120792627335, 0.0409141443669796, -0.04836833477020264, 1.3337963819503784, 0.3149094879627228, -0.6146349310874939, 0.10751048475503922, -1.941288709640503, -0.3429166078567505, -0.3230467736721039, 0.825018048286438, 0.15179219841957092, 0.2755413055419922, 0.4070681929588318]} +{"t": 9.1945, "q": [-0.31098562479019165, -0.028296833857893944, 0.019418248906731606, 0.6126974821090698, -0.3399839699268341, 0.011097592301666737, -0.4015416204929352, 0.01625167392194271, -0.016164017841219902, 0.5959259867668152, -0.2518404424190521, -0.02418190985918045, 0.002731946762651205, -0.0025115744210779667, -0.017886904999613762, -0.030356042087078094, 0.04066247493028641, -0.04809269681572914, 1.3333289623260498, 0.31488552689552307, -0.6146349310874939, 0.10752246528863907, -1.90901517868042, -0.34304845333099365, -0.3227950930595398, 0.7853023409843445, 0.16112791001796722, 0.2857039272785187, 0.41214948892593384]} +{"t": 9.2112, "q": [-0.3108663260936737, -0.028313877061009407, 0.01952538453042507, 0.6128338575363159, -0.3399921655654907, 0.01111205667257309, -0.4015757143497467, 0.016277240589261055, -0.01613723486661911, 0.5963094830513, -0.25184884667396545, -0.024167511612176895, 0.0025712440256029367, -0.002149634063243866, -0.01679183542728424, -0.030475884675979614, 0.040638506412506104, -0.04790094867348671, 1.3330533504486084, 0.315005362033844, -0.6146349310874939, 0.10753445327281952, -1.8843516111373901, -0.3425571024417877, -0.32287898659706116, 0.7602672576904297, 0.16840232908725739, 0.2911207973957062, 0.41621214151382446]} +{"t": 9.228, "q": [-0.31088337302207947, -0.02838205359876156, 0.019592342898249626, 0.612382173538208, -0.3399757742881775, 0.011097650974988937, -0.40169504284858704, 0.016345417127013206, -0.016204193234443665, 0.596241295337677, -0.2518194913864136, -0.02421792410314083, 0.002691771136596799, -0.0018740221858024597, -0.01642775908112526, -0.03051183745265007, 0.040422793477773666, -0.047577373683452606, 1.3328256607055664, 0.3149574100971222, -0.6146469712257385, 0.10751048475503922, -1.8524136543273926, -0.3431682884693146, -0.32230374217033386, 0.7231041789054871, 0.17612017691135406, 0.3016069829463959, 0.4196755886077881]} +{"t": 9.2447, "q": [-0.31092599034309387, -0.028467275202274323, 0.019619127735495567, 0.6125696301460266, -0.339979887008667, 0.011104882694780827, -0.4017206132411957, 0.016405072063207626, -0.01647203229367733, 0.5967525839805603, -0.25180691480636597, -0.024239521473646164, 0.0026649872306734324, -0.0012171962298452854, -0.015507875941693783, -0.030583743005990982, 0.04024302959442139, -0.04713395610451698, 1.3326338529586792, 0.3149574100971222, -0.6146589517593384, 0.10749849677085876, -1.824358582496643, -0.3425331115722656, -0.322291761636734, 0.695756196975708, 0.1831549108028412, 0.3058494031429291, 0.4242415726184845]} +{"t": 9.2615, "q": [-0.3108322322368622, -0.02850988507270813, 0.01964591071009636, 0.6120412945747375, -0.3399716913700104, 0.011090418323874474, -0.4018058180809021, 0.016379505395889282, -0.01665951870381832, 0.5970082879066467, -0.2517775893211365, -0.0242899339646101, 0.0030131766106933355, -0.0011712642153725028, -0.015263943001627922, -0.030595727264881134, 0.04002731293439865, -0.0469302274286747, 1.3325859308242798, 0.3149814009666443, -0.6147068738937378, 0.10752246528863907, -1.7925764322280884, -0.34267693758010864, -0.3214169144630432, 0.6595038771629333, 0.19062109291553497, 0.3152810037136078, 0.428460031747818]} +{"t": 9.2782, "q": [-0.31066179275512695, -0.028612151741981506, 0.019873572513461113, 0.6124759316444397, -0.3399757742881775, 0.011097650974988937, -0.40174615383148193, 0.016515860334038734, -0.017181802541017532, 0.5979371666908264, -0.2516978979110718, -0.0244123712182045, 0.002946217078715563, -0.0005511836498044431, -0.014595547690987587, -0.03063168004155159, 0.03984754905104637, -0.04649879410862923, 1.3322863578796387, 0.3149574100971222, -0.6147428154945374, 0.10751048475503922, -1.7645094394683838, -0.34165826439857483, -0.32110533118247986, 0.6335460543632507, 0.19819511473178864, 0.3196192979812622, 0.4328462481498718]} +{"t": 9.295, "q": [-0.31055954098701477, -0.028595106676220894, 0.01986018195748329, 0.612007200717926, -0.33996349573135376, 0.01107595395296812, -0.401814341545105, 0.01649029366672039, -0.01746303215622902, 0.5984485149383545, -0.2517147958278656, -0.024441132321953773, 0.0032274469267576933, -0.00039804098196327686, -0.01436138991266489, -0.030499853193759918, 0.039571911096572876, -0.04629506170749664, 1.3321545124053955, 0.31499338150024414, -0.6147428154945374, 0.10749849677085876, -1.7313131093978882, -0.34152644872665405, -0.3199668228626251, 0.5997985005378723, 0.20476247370243073, 0.3271573781967163, 0.43790358304977417]} +{"t": 9.3118, "q": [-0.31033796072006226, -0.02845023013651371, 0.0196726955473423, 0.6120924353599548, -0.33995938301086426, 0.011068703606724739, -0.4018569588661194, 0.01667778007686138, -0.017717478796839714, 0.5990961790084839, -0.2517823874950409, -0.024556148797273636, 0.00321405497379601, 6.876139377709478e-05, -0.013947014696896076, -0.030475884675979614, 0.03929627314209938, -0.0460314080119133, 1.3317230939865112, 0.3149814009666443, -0.6147907376289368, 0.10752246528863907, -1.7042527198791504, -0.3401362895965576, -0.31905603408813477, 0.5757341384887695, 0.21226459741592407, 0.32947030663490295, 0.4403723478317261]} +{"t": 9.3285, "q": [-0.3102697730064392, -0.02833092212677002, 0.01952538453042507, 0.611564040184021, -0.33995118737220764, 0.011054239235818386, -0.40196773409843445, 0.016890833154320717, -0.017838004976511, 0.5992666482925415, -0.2519089877605438, -0.02472863160073757, 0.0033077981788665056, 0.0001833625283325091, -0.01380580198019743, -0.030415963381528854, 0.03905659168958664, -0.045875612646341324, 1.3316631317138672, 0.315005362033844, -0.6147787570953369, 0.10749849677085876, -1.6715956926345825, -0.3399685025215149, -0.31721046566963196, 0.5413873791694641, 0.21961092948913574, 0.335330605506897, 0.4447106420993805]} +{"t": 9.3454, "q": [-0.310167521238327, -0.02810082398355007, 0.019270937889814377, 0.6116066575050354, -0.33995527029037476, 0.01106147188693285, -0.4019847810268402, 0.017129452899098396, -0.01811923459172249, 0.5995904803276062, -0.2521918714046478, -0.02518147975206375, 0.0033077981788665056, 0.0005500899278558791, -0.013581817038357258, -0.030427947640419006, 0.03887682780623436, -0.04563593119382858, 1.331243634223938, 0.3149814009666443, -0.6148266792297363, 0.10752246528863907, -1.6438401937484741, -0.3386742174625397, -0.3165513277053833, 0.5180301070213318, 0.22477613389492035, 0.3389977812767029, 0.44751495122909546]} +{"t": 9.3622, "q": [-0.3099033236503601, -0.027981514111161232, 0.019096843898296356, 0.6110526919364929, -0.339942991733551, 0.011039774864912033, -0.40209558606147766, 0.01733398251235485, -0.018266545608639717, 0.5998290777206421, -0.25231003761291504, -0.025339573621749878, 0.0034149333368986845, 0.000580650579649955, -0.013542861677706242, -0.03043993189930916, 0.03863714262843132, -0.04556402564048767, 1.33107590675354, 0.31504130363464355, -0.6147907376289368, 0.10752246528863907, -1.6095293760299683, -0.33830270171165466, -0.31494542956352234, 0.4859483540058136, 0.232350155711174, 0.34489402174949646, 0.45081061124801636]} +{"t": 9.3789, "q": [-0.30988627672195435, -0.027879249304533005, 0.01896292343735695, 0.6112657785415649, -0.3399471044540405, 0.011032484471797943, -0.4021637439727783, 0.017470337450504303, -0.018520992249250412, 0.6003915667533875, -0.252664715051651, -0.025914624333381653, 0.003321190131828189, 0.0011765803210437298, -0.013094887137413025, -0.030427947640419006, 0.03834952041506767, -0.045468151569366455, 1.3303568363189697, 0.3150293231010437, -0.6148866415023804, 0.10751048475503922, -1.5803956985473633, -0.3364930748939514, -0.31380695104599, 0.4633820652961731, 0.23839020729064941, 0.3472549021244049, 0.45472943782806396]} +{"t": 9.3956, "q": [-0.3099033236503601, -0.027879249304533005, 0.01898970827460289, 0.6109163761138916, -0.3399224877357483, 0.011003595776855946, -0.40246203541755676, 0.017547035589814186, -0.01850759983062744, 0.600579023361206, -0.25276580452919006, -0.025957642123103142, 0.0034149333368986845, 0.001382864429615438, -0.012797852978110313, -0.030368026345968246, 0.03816975653171539, -0.04550410434603691, 1.330260992050171, 0.31508925557136536, -0.6147787570953369, 0.10749849677085876, -1.5487333536148071, -0.3361455202102661, -0.3125126361846924, 0.43448808789253235, 0.24220119416713715, 0.35143741965293884, 0.4594871699810028]} +{"t": 9.4124, "q": [-0.30982664227485657, -0.02779402770102024, 0.01882900483906269, 0.6108993291854858, -0.3399224877357483, 0.0110181188210845, -0.40252166986465454, 0.017768610268831253, -0.018775437027215958, 0.6008517742156982, -0.2528713643550873, -0.026122964918613434, 0.003334582084789872, 0.001780151855200529, -0.012554391287267208, -0.03027215227484703, 0.037642452865839005, -0.045432198792696, 1.329350233078003, 0.31504130363464355, -0.6149225831031799, 0.10751048475503922, -1.515021800994873, -0.33479130268096924, -0.31129026412963867, 0.40657681226730347, 0.2506261169910431, 0.35330694913864136, 0.4626030921936035]} +{"t": 9.4293, "q": [-0.3098010718822479, -0.02780255116522312, 0.01882900483906269, 0.6107288599014282, -0.3399184048175812, 0.01101088710129261, -0.40270063281059265, 0.017887920141220093, -0.0188022218644619, 0.6009966135025024, -0.25299373269081116, -0.026288244873285294, 0.0036024199798703194, 0.0018259910866618156, -0.012544654309749603, -0.030236199498176575, 0.03727094084024429, -0.04542021453380585, 1.32919442653656, 0.31506529450416565, -0.614838719367981, 0.10752246528863907, -1.4800277948379517, -0.3347553610801697, -0.30957651138305664, 0.37457895278930664, 0.25760093331336975, 0.3587357997894287, 0.46761247515678406]} +{"t": 9.446, "q": [-0.30978402495384216, -0.02778550609946251, 0.018788829445838928, 0.6108822822570801, -0.3399224877357483, 0.011003595776855946, -0.40269210934638977, 0.01810949482023716, -0.01900310069322586, 0.6011926531791687, -0.2531794011592865, -0.026532601565122604, 0.003361365757882595, 0.002146402606740594, -0.012359905987977982, -0.030104374513030052, 0.037043239921331406, -0.045348308980464935, 1.3284034729003906, 0.3150293231010437, -0.6149345636367798, 0.10753445327281952, -1.4453215599060059, -0.3333292305469513, -0.30805450677871704, 0.349448025226593, 0.2610763609409332, 0.36010199785232544, 0.4709920287132263]} +{"t": 9.4628, "q": [-0.30974140763282776, -0.02766619622707367, 0.018922748044133186, 0.6104305982589722, -0.33989381790161133, 0.010952952317893505, -0.4029904007911682, 0.01817767135798931, -0.018855789676308632, 0.6012948751449585, -0.2532344162464142, -0.02666921354830265, 0.003361365757882595, 0.0022303222212940454, -0.012335634790360928, -0.029996516183018684, 0.036911413073539734, -0.04537227749824524, 1.3284393548965454, 0.3151491582393646, -0.6148626804351807, 0.10752246528863907, -1.408098578453064, -0.3330056667327881, -0.3052382171154022, 0.3202424645423889, 0.26564234495162964, 0.36414068937301636, 0.47685232758522034]} +{"t": 9.4796, "q": [-0.3097669780254364, -0.027657674625515938, 0.018882572650909424, 0.6106862425804138, -0.33989793062210083, 0.010960202664136887, -0.403007447719574, 0.018203238025307655, -0.018922748044133186, 0.6015846729278564, -0.2532554268836975, -0.026661988347768784, 0.003321190131828189, 0.0026801577769219875, -0.012029464356601238, -0.02990064211189747, 0.036683712154626846, -0.04533632472157478, 1.3279839754104614, 0.3151491582393646, -0.6150064468383789, 0.10752246528863907, -1.375597357749939, -0.3311600983142853, -0.30348852276802063, 0.29996514320373535, 0.271442711353302, 0.36508744955062866, 0.48123854398727417]} +{"t": 9.4965, "q": [-0.3100056052207947, -0.027640629559755325, 0.019096843898296356, 0.6106522083282471, -0.3398856222629547, 0.010953010991215706, -0.4036295413970947, 0.018186194822192192, -0.018721869215369225, 0.601848840713501, -0.2533145844936371, -0.02677701599895954, 0.002946217078715563, 0.0032367880921810865, -0.011684450320899487, -0.029744846746325493, 0.03651593253016472, -0.04530037194490433, 1.3280798196792603, 0.31516116857528687, -0.6148866415023804, 0.10748651623725891, -1.340867042541504, -0.33011746406555176, -0.30088794231414795, 0.27806997299194336, 0.2766318619251251, 0.36771199107170105, 0.48476192355155945]} +{"t": 9.5132, "q": [-0.3099885582923889, -0.02761506289243698, 0.01931111328303814, 0.610515832901001, -0.3398815095424652, 0.010945779271423817, -0.40384259819984436, 0.018194716423749924, -0.018520992249250412, 0.6019511222839355, -0.2533271908760071, -0.02676980383694172, 0.00258463597856462, 0.003915461711585522, -0.01129087433218956, -0.02966095693409443, 0.03636014088988304, -0.045348308980464935, 1.327864170074463, 0.3151971101760864, -0.614994466304779, 0.10752246528863907, -1.3109064102172852, -0.3287033438682556, -0.2982034683227539, 0.26006966829299927, 0.2783336341381073, 0.3679037392139435, 0.48711082339286804]} +{"t": 9.5299, "q": [-0.31028681993484497, -0.027598019689321518, 0.019766438752412796, 0.6106351613998413, -0.3398733139038086, 0.010931314900517464, -0.40468630194664, 0.018135061487555504, -0.018025491386651993, 0.6023942232131958, -0.25333136320114136, -0.02676260471343994, 0.0025578520726412535, 0.004372709896415472, -0.011048157699406147, -0.029565082862973213, 0.036024581640958786, -0.04533632472157478, 1.3280439376831055, 0.31522107124328613, -0.6148506999015808, 0.10751048475503922, -1.2791961431503296, -0.32752886414527893, -0.29442843794822693, 0.24012792110443115, 0.27954402565956116, 0.36826324462890625, 0.4898432195186615]} +{"t": 9.5466, "q": [-0.3104061186313629, -0.027598019689321518, 0.019793221727013588, 0.610515832901001, -0.3398733139038086, 0.010931314900517464, -0.4048311710357666, 0.018160628154873848, -0.017945140600204468, 0.6024112701416016, -0.25333136320114136, -0.02676260471343994, 0.0025712440256029367, 0.004594090394675732, -0.01113108266144991, -0.029325399547815323, 0.0357968807220459, -0.04532434046268463, 1.3278162479400635, 0.3151971101760864, -0.6150783896446228, 0.10751048475503922, -1.2476537227630615, -0.3259828984737396, -0.29297834634780884, 0.22050973773002625, 0.28111398220062256, 0.36791571974754333, 0.4920603036880493]} +{"t": 9.5634, "q": [-0.31055954098701477, -0.027572453022003174, 0.01998070813715458, 0.6103879809379578, -0.33985283970832825, 0.010895135812461376, -0.405248761177063, 0.018143583089113235, -0.01779782958328724, 0.6026584506034851, -0.25333985686302185, -0.02679138071835041, 0.002718554809689522, 0.004776219837367535, -0.011131437495350838, -0.029169604182243347, 0.03573695942759514, -0.04533632472157478, 1.3280318975448608, 0.315233051776886, -0.6149585247039795, 0.10753445327281952, -1.213390827178955, -0.32500019669532776, -0.2904856503009796, 0.20019648969173431, 0.2824082672595978, 0.3674243688583374, 0.49534398317337036]} +{"t": 9.5802, "q": [-0.31057658791542053, -0.027580974623560905, 0.019779829308390617, 0.610584020614624, -0.33985692262649536, 0.010902367532253265, -0.4051890969276428, 0.01817767135798931, -0.017945140600204468, 0.602666974067688, -0.2533440887928009, -0.026798566803336143, 0.002464108867570758, 0.0048661306500434875, -0.011160924099385738, -0.028929919004440308, 0.03570100665092468, -0.045288387686014175, 1.327720284461975, 0.31513717770576477, -0.6152101755142212, 0.10752246528863907, -1.180374264717102, -0.32329845428466797, -0.28837642073631287, 0.18259166181087494, 0.2846493124961853, 0.3667772114276886, 0.49949052929878235]} +{"t": 9.597, "q": [-0.3108322322368622, -0.027572453022003174, 0.020034275949001312, 0.6105499267578125, -0.33985692262649536, 0.010887844488024712, -0.40572598576545715, 0.018143583089113235, -0.01765051856637001, 0.6029055714607239, -0.2533651888370514, -0.02683449722826481, 0.0024373249616473913, 0.0048810383304953575, -0.011170710436999798, -0.02882206253707409, 0.03572497516870499, -0.04532434046268463, 1.3279600143432617, 0.3151731491088867, -0.6151143312454224, 0.10751048475503922, -1.1481726169586182, -0.32145288586616516, -0.2840980291366577, 0.16668859124183655, 0.28593161702156067, 0.3663218021392822, 0.5041883587837219]} +{"t": 9.6137, "q": [-0.3108322322368622, -0.027640629559755325, 0.020034275949001312, 0.610439121723175, -0.33985692262649536, 0.010902367532253265, -0.4057515561580658, 0.018160628154873848, -0.01763712614774704, 0.6028800010681152, -0.25334423780441284, -0.026870494708418846, 0.002423933008685708, 0.004933681804686785, -0.011175733059644699, -0.028606345877051353, 0.03567703813314438, -0.04538426175713539, 1.3278162479400635, 0.315233051776886, -0.6153300404548645, 0.10753445327281952, -1.1145329475402832, -0.3191039562225342, -0.28136563301086426, 0.15064170956611633, 0.2873457670211792, 0.36478784680366516, 0.5064773559570312]} +{"t": 9.6304, "q": [-0.31124982237815857, -0.027623586356639862, 0.020208369940519333, 0.6106351613998413, -0.33984872698783875, 0.010902426205575466, -0.4064333140850067, 0.018135061487555504, -0.017382681369781494, 0.6032549738883972, -0.25335684418678284, -0.026863282546401024, 0.0024105412885546684, 0.005047668237239122, -0.011112730018794537, -0.028198881074786186, 0.03561711683869362, -0.04536029323935509, 1.32810378074646, 0.31522107124328613, -0.6151382923126221, 0.10753445327281952, -1.0822354555130005, -0.31661126017570496, -0.2763322591781616, 0.13718342781066895, 0.2873218059539795, 0.3631819486618042, 0.5100366473197937]} +{"t": 9.6472, "q": [-0.3112327754497528, -0.02760654129087925, 0.020128019154071808, 0.6105328798294067, -0.33984872698783875, 0.010902426205575466, -0.4063395857810974, 0.018135061487555504, -0.01747642457485199, 0.6031612157821655, -0.25334420800209045, -0.026856109499931335, 0.002611419651657343, 0.005047668237239122, -0.011112730018794537, -0.027827370911836624, 0.03556917980313301, -0.04530037194490433, 1.327864170074463, 0.3152090907096863, -0.6153300404548645, 0.10754643380641937, -1.0497581958770752, -0.3141784369945526, -0.27290478348731995, 0.12354537844657898, 0.28750157356262207, 0.3593350052833557, 0.5130446553230286]} +{"t": 9.6639, "q": [-0.3113180100917816, -0.02761506289243698, 0.020221762359142303, 0.6106862425804138, -0.33985692262649536, 0.010916909202933311, -0.40659525990486145, 0.01810949482023716, -0.017342504113912582, 0.6033743023872375, -0.2533484399318695, -0.02686329558491707, 0.0022900141775608063, 0.005108232609927654, -0.01109341811388731, -0.027647607028484344, 0.035533227026462555, -0.04532434046268463, 1.3278281688690186, 0.3151251971721649, -0.6153420209884644, 0.10754643380641937, -1.019294261932373, -0.3100678622722626, -0.26873427629470825, 0.11567173898220062, 0.2871659994125366, 0.3555479943752289, 0.5166998505592346]} +{"t": 9.6807, "q": [-0.31124982237815857, -0.02766619622707367, 0.020409248769283295, 0.6105328798294067, -0.33984053134918213, 0.01091700792312622, -0.4066634178161621, 0.01804983988404274, -0.017168410122394562, 0.6033231616020203, -0.25333166122436523, -0.02689211070537567, 0.002865865593776107, 0.005085560027509928, -0.0110982246696949, -0.027288081124424934, 0.0355212427675724, -0.04538426175713539, 1.327996015548706, 0.3153529167175293, -0.6153180599212646, 0.10754643380641937, -0.9890101552009583, -0.30842602252960205, -0.2620111107826233, 0.10546118021011353, 0.2865907549858093, 0.3518448770046234, 0.5203670263290405]} +{"t": 9.6974, "q": [-0.31125834584236145, -0.027640629559755325, 0.020248545333743095, 0.6106862425804138, -0.33984872698783875, 0.010931489989161491, -0.4067486524581909, 0.01798166334629059, -0.017342504113912582, 0.6035276651382446, -0.2533358335494995, -0.026884911581873894, 0.0028122980147600174, 0.005078262183815241, -0.011083588935434818, -0.02695252187550068, 0.035473305732011795, -0.04542021453380585, 1.3279720544815063, 0.31536489725112915, -0.6153659820556641, 0.10752246528863907, -0.9568445086479187, -0.3050944209098816, -0.2553119361400604, 0.09710817784070969, 0.2860035300254822, 0.34401917457580566, 0.5245136022567749]} +{"t": 9.7144, "q": [-0.31121572852134705, -0.027683241292834282, 0.020087843760848045, 0.6105669736862183, -0.3398364186286926, 0.010909775272011757, -0.40663784742355347, 0.017947575077414513, -0.01746303215622902, 0.6033743023872375, -0.25334423780441284, -0.026870494708418846, 0.003173879347741604, 0.005039903335273266, -0.011127321980893612, -0.026521090418100357, 0.03534147888422012, -0.04538426175713539, 1.328163743019104, 0.31526902318000793, -0.6153300404548645, 0.10755842179059982, -0.9242594242095947, -0.30240994691848755, -0.247701957821846, 0.08770056068897247, 0.2842298746109009, 0.3351508378982544, 0.5265868306159973]} +{"t": 9.7312, "q": [-0.31120720505714417, -0.027691762894392014, 0.020074451342225075, 0.6108993291854858, -0.33985692262649536, 0.010916909202933311, -0.40673160552978516, 0.017896441742777824, -0.01748981513082981, 0.6035788059234619, -0.2533484399318695, -0.02686329558491707, 0.0030801359098404646, 0.005047823768109083, -0.011102987453341484, -0.026341326534748077, 0.03534147888422012, -0.045408230274915695, 1.3280439376831055, 0.3152570426464081, -0.6153899431228638, 0.10754643380641937, -0.8921416997909546, -0.2986468970775604, -0.23937290906906128, 0.08324243128299713, 0.28136563301086426, 0.3252638578414917, 0.5282287001609802]} +{"t": 9.7479, "q": [-0.3111986815929413, -0.027776984497904778, 0.020221762359142303, 0.6108737587928772, -0.33984872698783875, 0.010931489989161491, -0.40691909193992615, 0.017768610268831253, -0.01731572113931179, 0.6036981344223022, -0.2533484399318695, -0.02686329558491707, 0.0028926494996994734, 0.005215855780988932, -0.010957323014736176, -0.026209499686956406, 0.03534147888422012, -0.04548013582825661, 1.3280678987503052, 0.31538885831832886, -0.6153540015220642, 0.10754643380641937, -0.8651412129402161, -0.29539915919303894, -0.2320745289325714, 0.0833502858877182, 0.2768835425376892, 0.3170546591281891, 0.5297866463661194]} +{"t": 9.7647, "q": [-0.3111390471458435, -0.02784516103565693, 0.020369073376059532, 0.6107970476150513, -0.339819997549057, 0.010938956402242184, -0.40754973888397217, 0.017606690526008606, -0.017181802541017532, 0.6036640405654907, -0.25333157181739807, -0.026848936453461647, 0.0031872710678726435, 0.005214921664446592, -0.011015779338777065, -0.026041721925139427, 0.03531751036643982, -0.04551608860492706, 1.3281877040863037, 0.31538885831832886, -0.6153180599212646, 0.10755842179059982, -0.8342458605766296, -0.2946561574935913, -0.22187595069408417, 0.08287091553211212, 0.27143073081970215, 0.29901841282844543, 0.5321235656738281]} +{"t": 9.7816, "q": [-0.3110623359680176, -0.027879249304533005, 0.020061058923602104, 0.6109845638275146, -0.3398281931877136, 0.010953421704471111, -0.40733668208122253, 0.01750442571938038, -0.017516599968075752, 0.6037748456001282, -0.2533358037471771, -0.02685612253844738, 0.0032274469267576933, 0.005184795241802931, -0.011015692725777626, -0.025742115452885628, 0.03528155758976936, -0.045408230274915695, 1.3280199766159058, 0.3152570426464081, -0.6154019236564636, 0.10754643380641937, -0.803434431552887, -0.2934816777706146, -0.21257618069648743, 0.08293084055185318, 0.2648753523826599, 0.2800833284854889, 0.5336934924125671]} +{"t": 9.7985, "q": [-0.3111305236816406, -0.027921859174966812, 0.020128019154071808, 0.6110101342201233, -0.3398323059082031, 0.010946130380034447, -0.40737926959991455, 0.017461813986301422, -0.017369288951158524, 0.6038174629211426, -0.25334417819976807, -0.026841724291443825, 0.0032274469267576933, 0.005108388606458902, -0.011083675548434258, -0.025646241381764412, 0.035293541848659515, -0.045408230274915695, 1.3281277418136597, 0.3152570426464081, -0.6153540015220642, 0.10758239030838013, -0.7726349830627441, -0.291767954826355, -0.20071180164813995, 0.0860227718949318, 0.2537899315357208, 0.25847578048706055, 0.5347601175308228]} +{"t": 9.8153, "q": [-0.3110538125038147, -0.027947425842285156, 0.020235154777765274, 0.6108652353286743, -0.3398323059082031, 0.010946130380034447, -0.4071662425994873, 0.017478859052062035, -0.017355896532535553, 0.6037237048149109, -0.2533399164676666, -0.026820151135325432, 0.0032006630208343267, 0.005107921082526445, -0.011112903244793415, -0.02569417841732502, 0.03532949462532997, -0.04550410434603691, 1.3280918598175049, 0.3154727518558502, -0.6153899431228638, 0.10754643380641937, -0.7422429919242859, -0.2901860177516937, -0.189518541097641, 0.08899485319852829, 0.24713869392871857, 0.23650868237018585, 0.5355750322341919]} +{"t": 9.832, "q": [-0.3110623359680176, -0.027990037575364113, 0.020248545333743095, 0.6110357046127319, -0.33984050154685974, 0.010960612446069717, -0.4074559807777405, 0.017316939309239388, -0.01732911355793476, 0.6039708256721497, -0.2533567249774933, -0.026805739849805832, 0.00321405497379601, 0.0051155309192836285, -0.011108053848147392, -0.025478463619947433, 0.03528155758976936, -0.04549212008714676, 1.3282116651535034, 0.315376877784729, -0.6154019236564636, 0.10759437084197998, -0.7116832137107849, -0.28701022267341614, -0.1763838231563568, 0.0944356918334961, 0.23743146657943726, 0.21467342972755432, 0.5368813276290894]} +{"t": 9.8487, "q": [-0.3110623359680176, -0.02803264744579792, 0.020248545333743095, 0.6108481884002686, -0.339819997549057, 0.010953479446470737, -0.407302588224411, 0.017240239307284355, -0.017235370352864265, 0.6039111614227295, -0.25335249304771423, -0.0267985537648201, 0.0031203117687255144, 0.005130438134074211, -0.011117839254438877, -0.02539457380771637, 0.03534147888422012, -0.04557600989937782, 1.3282116651535034, 0.31546077132225037, -0.6153659820556641, 0.10757040232419968, -0.6820701956748962, -0.28538036346435547, -0.16448348760604858, 0.10336394608020782, 0.22647789120674133, 0.18658240139484406, 0.5368813276290894]} +{"t": 9.8655, "q": [-0.3110879063606262, -0.02802412584424019, 0.020409248769283295, 0.611027181148529, -0.3398323059082031, 0.010960671119391918, -0.4073196351528168, 0.017223196104168892, -0.017061274498701096, 0.6042606234550476, -0.25336092710494995, -0.02679852396249771, 0.0030533522367477417, 0.005138203501701355, -0.011103247292339802, -0.025202825665473938, 0.03534147888422012, -0.045587994158267975, 1.328163743019104, 0.3154727518558502, -0.6153899431228638, 0.10758239030838013, -0.6503958702087402, -0.28198882937431335, -0.152870774269104, 0.11364641040563583, 0.21526065468788147, 0.16137957572937012, 0.5376363396644592]} +{"t": 9.8823, "q": [-0.3109685778617859, -0.028049692511558533, 0.020409248769283295, 0.6108993291854858, -0.3398281931877136, 0.010953421704471111, -0.40711510181427, 0.017223196104168892, -0.017007706686854362, 0.6042606234550476, -0.2533566951751709, -0.02679133601486683, 0.0029997846577316523, 0.0051659937016665936, -0.011249474249780178, -0.0249631404876709, 0.035353463143110275, -0.045707836747169495, 1.3282835483551025, 0.3154847323894501, -0.6153300404548645, 0.10760635882616043, -0.6208308339118958, -0.2800353765487671, -0.13778263330459595, 0.13096360862255096, 0.20234166085720062, 0.12499547004699707, 0.5371928811073303]} +{"t": 9.899, "q": [-0.3110623359680176, -0.028075257316231728, 0.020409248769283295, 0.61104416847229, -0.33984050154685974, 0.010946090333163738, -0.4069020450115204, 0.017223196104168892, -0.01698092371225357, 0.6046866774559021, -0.2533944547176361, -0.02675531432032585, 0.0029730007518082857, 0.005150462966412306, -0.011278659105300903, -0.024867268279194832, 0.03538941591978073, -0.04580370709300041, 1.3283075094223022, 0.3155086934566498, -0.6153420209884644, 0.10759437084197998, -0.5908942222595215, -0.27749472856521606, -0.12505538761615753, 0.14729811251163483, 0.18987806141376495, 0.10004431009292603, 0.5370491147041321]} +{"t": 9.9158, "q": [-0.31103676557540894, -0.02810082398355007, 0.02050299197435379, 0.6109845638275146, -0.3398281931877136, 0.010938898660242558, -0.4070724844932556, 0.017180584371089935, -0.016579166054725647, 0.60513836145401, -0.2533944547176361, -0.02675531432032585, 0.0030399602837860584, 0.005156425293534994, -0.011429106816649437, -0.024591630324721336, 0.03538941591978073, -0.045827675610780716, 1.328679084777832, 0.31554466485977173, -0.6153060793876648, 0.10764230787754059, -0.5612452626228333, -0.27537351846694946, -0.10879279673099518, 0.1712665557861328, 0.17227323353290558, 0.06097573786973953, 0.5355989933013916]} +{"t": 9.9326, "q": [-0.31103676557540894, -0.028186045587062836, 0.02050299197435379, 0.6111549735069275, -0.3398323059082031, 0.010946130380034447, -0.4068423807621002, 0.01715501770377159, -0.01663273386657238, 0.6054195761680603, -0.2533986568450928, -0.02674809657037258, 0.003106919815763831, 0.0052243489772081375, -0.011414753273129463, -0.024292023852467537, 0.03531751036643982, -0.04601942375302315, 1.328834891319275, 0.3157244026660919, -0.6153060793876648, 0.10764230787754059, -0.5323033332824707, -0.2739593982696533, -0.09577792882919312, 0.19125625491142273, 0.16007329523563385, 0.03441869467496872, 0.5343406796455383]} +{"t": 9.9494, "q": [-0.3109515607357025, -0.028228655457496643, 0.02052977681159973, 0.6111549735069275, -0.3398281931877136, 0.010938898660242558, -0.4071236252784729, 0.017018664628267288, -0.016338111832737923, 0.6061780452728271, -0.25345316529273987, -0.02665448933839798, 0.0030399602837860584, 0.005223791114985943, -0.011472946032881737, -0.02334527112543583, 0.03532949462532997, -0.046007439494132996, 1.3290386199951172, 0.31568846106529236, -0.6153180599212646, 0.1076902449131012, -0.502690315246582, -0.2718501687049866, -0.07983890920877457, 0.22126474976539612, 0.14099441468715668, -0.005644570104777813, 0.5298465490341187]} +{"t": 9.9661, "q": [-0.3111305236816406, -0.0282030887901783, 0.020476208999753, 0.6112146377563477, -0.3398323059082031, 0.010931607335805893, -0.4074133634567261, 0.017001619562506676, -0.016097059473395348, 0.6064167022705078, -0.2536254823207855, -0.02656068094074726, 0.0031203117687255144, 0.0052766515873372555, -0.011458548717200756, -0.023153522983193398, 0.03528155758976936, -0.04615125060081482, 1.3292423486709595, 0.31582027673721313, -0.6152940988540649, 0.10767826437950134, -0.47462326288223267, -0.2691537141799927, -0.06723150610923767, 0.2471027374267578, 0.12639762461185455, -0.032297488301992416, 0.5263711214065552]} +{"t": 9.9829, "q": [-0.3110623359680176, -0.02826274372637272, 0.02048959955573082, 0.6112572550773621, -0.3398159146308899, 0.010931724682450294, -0.4075752794742584, 0.016882311552762985, -0.015882788226008415, 0.6067831516265869, -0.25361284613609314, -0.026567911729216576, 0.00287925754673779, 0.005434491205960512, -0.011492949910461903, -0.0222666896879673, 0.035233620554208755, -0.04604339227080345, 1.3293981552124023, 0.3157244026660919, -0.6153180599212646, 0.1076902449131012, -0.4495522677898407, -0.26711639761924744, -0.05225122347474098, 0.2772550582885742, 0.10854113101959229, -0.06745920330286026, 0.5214096903800964]} +{"t": 9.9997, "q": [-0.3111305236816406, -0.028254222124814987, 0.02048959955573082, 0.6113765835762024, -0.3398241102695465, 0.010931666009128094, -0.40797582268714905, 0.01679708994925022, -0.01562834158539772, 0.6072348356246948, -0.2536886930465698, -0.026610950008034706, 0.0027989062946289778, 0.0055771744810044765, -0.011537006124854088, -0.022134864702820778, 0.03525758907198906, -0.04615125060081482, 1.3294700384140015, 0.3157963156700134, -0.6153180599212646, 0.10770223289728165, -0.4275132715702057, -0.26564234495162964, -0.04115382954478264, 0.30473488569259644, 0.09424394369125366, -0.09278187155723572, 0.5183656811714172]} +{"t": 10.0164, "q": [-0.3109685778617859, -0.02821161225438118, 0.020462816581130028, 0.6114276647567749, -0.3398241102695465, 0.010931666009128094, -0.4082229733467102, 0.01683969981968403, -0.015106058679521084, 0.6076268553733826, -0.25376012921333313, -0.02657487615942955, 0.002611419651657343, 0.005786481313407421, -0.011702494695782661, -0.02172739990055561, 0.03528155758976936, -0.04607934504747391, 1.3295059204101562, 0.315748393535614, -0.6153300404548645, 0.10772620141506195, -0.40692436695098877, -0.26431208848953247, -0.0276835598051548, 0.3396688997745514, 0.07618372142314911, -0.12681707739830017, 0.5112829804420471]} +{"t": 10.0332, "q": [-0.3108578026294708, -0.02814343571662903, 0.020449424162507057, 0.6116237044334412, -0.339819997549057, 0.010924434289336205, -0.40824002027511597, 0.01690787635743618, -0.014918571338057518, 0.6078484058380127, -0.2537769675254822, -0.02657483145594597, 0.0022498385515064, 0.005974354222416878, -0.011746681295335293, -0.0213678739964962, 0.03528155758976936, -0.04611529782414436, 1.3294579982757568, 0.3157963156700134, -0.6153659820556641, 0.1076902449131012, -0.38907986879348755, -0.2636050283908844, -0.015148060396313667, 0.37031257152557373, 0.061538998037576675, -0.15237942337989807, 0.5036250948905945]} +{"t": 10.0499, "q": [-0.31089189648628235, -0.02809230238199234, 0.020623520016670227, 0.6115299463272095, -0.3398118019104004, 0.01092449203133583, -0.4086490869522095, 0.016993097960948944, -0.014543598517775536, 0.6078398823738098, -0.25401318073272705, -0.026847880333662033, 0.0019552167505025864, 0.006511525250971317, -0.012281682342290878, -0.02118811011314392, 0.03532949462532997, -0.04619918763637543, 1.329577922821045, 0.3157963156700134, -0.6153420209884644, 0.1076902449131012, -0.37365615367889404, -0.2636289894580841, -0.002145176287740469, 0.410160094499588, 0.04110589250922203, -0.19183149933815002, 0.49335458874702454]} +{"t": 10.0667, "q": [-0.31084927916526794, -0.027990037575364113, 0.020623520016670227, 0.6117686033248901, -0.339819997549057, 0.010924434289336205, -0.40861499309539795, 0.01702718622982502, -0.014570382423698902, 0.6079421639442444, -0.25412267446517944, -0.026890885084867477, 0.0018748653819784522, 0.006758352275937796, -0.01246182806789875, -0.02052897773683071, 0.03531751036643982, -0.04622315615415573, 1.3295179605484009, 0.31589218974113464, -0.6153779625892639, 0.1076902449131012, -0.35814857482910156, -0.26347318291664124, 0.010893660597503185, 0.4437159299850464, 0.023549001663923264, -0.22460834681987762, 0.48208943009376526]} +{"t": 10.0836, "q": [-0.3109089434146881, -0.0279729925096035, 0.020596735179424286, 0.6118111610412598, -0.3398159146308899, 0.01091720163822174, -0.4086490869522095, 0.017018664628267288, -0.014610557816922665, 0.6078654527664185, -0.25432905554771423, -0.02698410674929619, 0.001673986902460456, 0.007098033092916012, -0.012711120769381523, -0.020061593502759933, 0.03531751036643982, -0.0463549830019474, 1.3296856880187988, 0.31594014167785645, -0.6153659820556641, 0.1076902449131012, -0.3446063995361328, -0.26377278566360474, 0.023501066491007805, 0.4823291003704071, 0.00535694882273674, -0.2566182017326355, 0.4707523584365845]} +{"t": 10.1003, "q": [-0.31102824211120605, -0.027947425842285156, 0.02050299197435379, 0.6118367314338684, -0.33979952335357666, 0.010902795940637589, -0.408725768327713, 0.016984576359391212, -0.014597166329622269, 0.6078398823738098, -0.25459057092666626, -0.02728588692843914, 0.0017007706919685006, 0.007378795649856329, -0.012892362661659718, -0.019450398162007332, 0.03528155758976936, -0.04619918763637543, 1.3294700384140015, 0.3158802092075348, -0.6155337691307068, 0.1077142134308815, -0.33261018991470337, -0.2636529505252838, 0.035413384437561035, 0.5168556571006775, -0.012080099433660507, -0.2873457670211792, 0.45935535430908203]} +{"t": 10.1171, "q": [-0.3109685778617859, -0.02790481597185135, 0.02050299197435379, 0.611939013004303, -0.33978310227394104, 0.010873849503695965, -0.4086916744709015, 0.016993097960948944, -0.014637341722846031, 0.6076949834823608, -0.25489383935928345, -0.027429308742284775, 0.001673986902460456, 0.007667177822440863, -0.013107655569911003, -0.01894705928862095, 0.035293541848659515, -0.04631903022527695, 1.3296377658843994, 0.31589218974113464, -0.6155577301979065, 0.10770223289728165, -0.3227471709251404, -0.2636529505252838, 0.048703890293836594, 0.5551093220710754, -0.033795516937971115, -0.32066190242767334, 0.44499826431274414]} +{"t": 10.1339, "q": [-0.31111347675323486, -0.02778550609946251, 0.02050299197435379, 0.6123651266098022, -0.33978721499443054, 0.0108665581792593, -0.40870019793510437, 0.017061274498701096, -0.014677518047392368, 0.6077716946601868, -0.25495702028274536, -0.02746519260108471, 0.0019284329609945416, 0.00792512483894825, -0.013225593604147434, -0.018515627831220627, 0.03525758907198906, -0.046366967260837555, 1.3295419216156006, 0.3159041702747345, -0.6157614588737488, 0.1076902449131012, -0.31199732422828674, -0.2635570764541626, 0.061179470270872116, 0.5875746011734009, -0.050885021686553955, -0.34643998742103577, 0.43358927965164185]} +{"t": 10.1507, "q": [-0.31116458773612976, -0.027751417830586433, 0.020462816581130028, 0.612237274646759, -0.3397544324398041, 0.010837729088962078, -0.4088110029697418, 0.01703570783138275, -0.014650734141469002, 0.6076523661613464, -0.25495705008506775, -0.02747957780957222, 0.0015266761183738708, 0.008501909673213959, -0.013675619848072529, -0.01788046397268772, 0.03530552610754967, -0.0463310144841671, 1.3296977281570435, 0.31582027673721313, -0.6157974004745483, 0.10775016993284225, -0.3060891032218933, -0.2639285922050476, 0.07381084561347961, 0.6235632300376892, -0.07150987535715103, -0.3783899247646332, 0.41713494062423706]} +{"t": 10.1674, "q": [-0.3110964298248291, -0.027700284495949745, 0.020436033606529236, 0.6123906970024109, -0.3397544324398041, 0.010837729088962078, -0.40871724486351013, 0.017061274498701096, -0.014731084927916527, 0.607686460018158, -0.25495287775993347, -0.027486776933073997, 0.0017275545978918672, 0.008866164833307266, -0.013930175453424454, -0.017305221408605576, 0.03530552610754967, -0.046366967260837555, 1.329577922821045, 0.31586822867393494, -0.616037130355835, 0.1077381819486618, -0.2985510230064392, -0.26377278566360474, 0.08597483485937119, 0.6572868227958679, -0.09078050404787064, -0.4045394957065582, 0.40350887179374695]} +{"t": 10.1843, "q": [-0.3110623359680176, -0.027623586356639862, 0.020449424162507057, 0.612382173538208, -0.3397544324398041, 0.010837729088962078, -0.40870872139930725, 0.01708684116601944, -0.01471769344061613, 0.6076012849807739, -0.2549528181552887, -0.027472391724586487, 0.0014998923288658261, 0.009359930641949177, -0.014619133435189724, -0.016526246443390846, 0.03540140017867088, -0.0463310144841671, 1.3296856880187988, 0.3157963156700134, -0.6161808967590332, 0.10776215046644211, -0.29512351751327515, -0.26426413655281067, 0.10059558600187302, 0.6958640217781067, -0.11412577331066132, -0.43513524532318115, 0.38336339592933655]} +{"t": 10.201, "q": [-0.31102824211120605, -0.027598019689321518, 0.020476208999753, 0.6124418377876282, -0.3397544324398041, 0.010837729088962078, -0.40870019793510437, 0.017078319564461708, -0.014677518047392368, 0.6076012849807739, -0.25496119260787964, -0.02744358964264393, 0.0017141626449301839, 0.009625730104744434, -0.01492740772664547, -0.01593901962041855, 0.03540140017867088, -0.04653474688529968, 1.3297576904296875, 0.3159041702747345, -0.6163726449012756, 0.10777413845062256, -0.29035380482673645, -0.2642281949520111, 0.11322695761919022, 0.7275503277778625, -0.132677361369133, -0.45834869146347046, 0.36916208267211914]} +{"t": 10.2178, "q": [-0.31107938289642334, -0.02755540981888771, 0.020422641187906265, 0.6123992204666138, -0.3397544324398041, 0.010837729088962078, -0.40860646963119507, 0.017103886231780052, -0.014744477346539497, 0.6074137687683105, -0.2549654245376587, -0.02745077572762966, 0.001312405802309513, 0.010028369724750519, -0.015538394451141357, -0.015351792797446251, 0.03554521128535271, -0.04646284133195877, 1.329877495765686, 0.3157843351364136, -0.6166243553161621, 0.10779810696840286, -0.28910744190216064, -0.26424017548561096, 0.1278836727142334, 0.7656841278076172, -0.15675365924835205, -0.4875662326812744, 0.3482735753059387]} +{"t": 10.2347, "q": [-0.3111305236816406, -0.02749575488269329, 0.020449424162507057, 0.6124418377876282, -0.3397544324398041, 0.010837729088962078, -0.4086320400238037, 0.017120929434895515, -0.01470430102199316, 0.6073881983757019, -0.2549654245376587, -0.02745077572762966, 0.0012454462703317404, 0.010476462543010712, -0.016062121838331223, -0.014632739126682281, 0.03562910109758377, -0.04634299874305725, 1.329805612564087, 0.3157723546028137, -0.6171995997428894, 0.10781008750200272, -0.28818467259407043, -0.2646596431732178, 0.1441342830657959, 0.803206741809845, -0.1810816377401352, -0.5137158036231995, 0.32767269015312195]} +{"t": 10.2514, "q": [-0.3111305236816406, -0.027470188215374947, 0.020422641187906265, 0.6123906970024109, -0.3397503197193146, 0.010830496437847614, -0.4085979461669922, 0.017120929434895515, -0.014744477346539497, 0.6070899367332458, -0.25496962666511536, -0.027457961812615395, 0.0012454462703317404, 0.010606123134493828, -0.016633551567792892, -0.014045512303709984, 0.03570100665092468, -0.04641490429639816, 1.3299014568328857, 0.3157843351364136, -0.6174033284187317, 0.10784604400396347, -0.2882445752620697, -0.26481541991233826, 0.1603129804134369, 0.838991641998291, -0.20470255613327026, -0.5383912920951843, 0.30637672543525696]} +{"t": 10.2682, "q": [-0.3111305236816406, -0.027453143149614334, 0.02030211314558983, 0.6124418377876282, -0.3397503197193146, 0.010830496437847614, -0.40847864747047424, 0.017112407833337784, -0.014838220551609993, 0.6070643663406372, -0.2549528181552887, -0.027472391724586487, 0.0012990138493478298, 0.010796205140650272, -0.016981011256575584, -0.01318264752626419, 0.03572497516870499, -0.046366967260837555, 1.3297696113586426, 0.31564053893089294, -0.618433952331543, 0.10788199305534363, -0.28800490498542786, -0.26451581716537476, 0.17809757590293884, 0.8745728135108948, -0.2284552901983261, -0.5609456300735474, 0.2847212255001068]} +{"t": 10.2849, "q": [-0.31116458773612976, -0.027453143149614334, 0.020288722589612007, 0.6123651266098022, -0.3397544324398041, 0.010837729088962078, -0.4084530770778656, 0.017129452899098396, -0.014851612038910389, 0.6068342924118042, -0.2549401521682739, -0.027450833469629288, 0.001191878691315651, 0.010941149666905403, -0.017629830166697502, -0.012595420703291893, 0.03594069182872772, -0.04645085707306862, 1.3297816514968872, 0.31568846106529236, -0.6192368865013123, 0.10795389860868454, -0.2894909381866455, -0.2643720209598541, 0.19569040834903717, 0.9129822254180908, -0.2562706768512726, -0.5843388438224792, 0.25942251086235046]} +{"t": 10.3017, "q": [-0.31116458773612976, -0.02742757648229599, 0.0201548021286726, 0.6124077439308167, -0.3397462069988251, 0.010852309875190258, -0.4082229733467102, 0.017129452899098396, -0.014998923055827618, 0.6066723465919495, -0.25492340326309204, -0.0274796299636364, 0.0014865003759041429, 0.011032658629119396, -0.018010374158620834, -0.012068115174770355, 0.03598862886428833, -0.04645085707306862, 1.3297456502914429, 0.3156525194644928, -0.6205791234970093, 0.10808572918176651, -0.2892152965068817, -0.2640364468097687, 0.2109822779893875, 0.9439614415168762, -0.27779433131217957, -0.6005175709724426, 0.2401638776063919]} +{"t": 10.3184, "q": [-0.3111475706100464, -0.027504276484251022, 0.020087843760848045, 0.6123480796813965, -0.3397462069988251, 0.010852309875190258, -0.40810367465019226, 0.01708684116601944, -0.015079274773597717, 0.6066297292709351, -0.25490251183509827, -0.0275444146245718, 0.0010579597437754273, 0.011124242097139359, -0.018439743667840958, -0.011061440221965313, 0.03645601496100426, -0.04652276262640953, 1.3297696113586426, 0.31559258699417114, -0.6227842569351196, 0.1083134263753891, -0.29260683059692383, -0.26354509592056274, 0.2314034104347229, 0.9816998243331909, -0.30727553367614746, -0.6198720932006836, 0.21064673364162445]} +{"t": 10.3352, "q": [-0.3111390471458435, -0.027461664751172066, 0.020087843760848045, 0.6123395562171936, -0.3397585153579712, 0.010844960808753967, -0.40797582268714905, 0.017112407833337784, -0.015106058679521084, 0.606331467628479, -0.25487735867500305, -0.02758762799203396, 0.001232054433785379, 0.011177940294146538, -0.018933387473225594, -0.009946906939148903, 0.0367196649312973, -0.0466306209564209, 1.3297337293624878, 0.3154967129230499, -0.625229001045227, 0.10850517451763153, -0.2952553629875183, -0.26276612281799316, 0.25061410665512085, 1.0153155326843262, -0.3347793221473694, -0.6344329118728638, 0.18464095890522003]} +{"t": 10.352, "q": [-0.3111475706100464, -0.027461664751172066, 0.020087843760848045, 0.6121946573257446, -0.3397585153579712, 0.010859501548111439, -0.4079502522945404, 0.017103886231780052, -0.015106058679521084, 0.6060076355934143, -0.25486472249031067, -0.02758045494556427, 0.0007365542696788907, 0.011368398554623127, -0.01957445964217186, -0.008113320916891098, 0.03749864175915718, -0.046918243169784546, 1.3301291465759277, 0.3154967129230499, -0.6281651258468628, 0.10916430503129959, -0.3005284070968628, -0.26169952750205994, 0.2713228464126587, 1.0542643070220947, -0.36496758460998535, -0.6476155519485474, 0.15152853727340698]} +{"t": 10.3688, "q": [-0.31116458773612976, -0.027478709816932678, 0.02002088353037834, 0.6121946573257446, -0.3397585153579712, 0.010859501548111439, -0.4076264202594757, 0.017129452899098396, -0.015226585790514946, 0.6056667566299438, -0.2547508478164673, -0.027458319440484047, 0.0008436894277110696, 0.011459780856966972, -0.019848555326461792, -0.00689092930406332, 0.03784618154168129, -0.04746951535344124, 1.3302370309829712, 0.31552067399024963, -0.6310413479804993, 0.10958375781774521, -0.3025897145271301, -0.2607407867908478, 0.28895166516304016, 1.086453914642334, -0.3884926438331604, -0.6578620672225952, 0.12914201617240906]} +{"t": 10.3856, "q": [-0.31111347675323486, -0.027529843151569366, 0.01998070813715458, 0.6121094822883606, -0.3397544324398041, 0.010866792872548103, -0.4073196351528168, 0.017069797962903976, -0.015467639081180096, 0.6054110527038574, -0.2547508478164673, -0.027458319440484047, -0.00012052706006215885, 0.011740952730178833, -0.020177191123366356, -0.005596633069217205, 0.03834952041506767, -0.047517452389001846, 1.330260992050171, 0.3152810037136078, -0.6329708099365234, 0.11048257350921631, -0.308545857667923, -0.2592068016529083, 0.3091091215610504, 1.1207528114318848, -0.41639190912246704, -0.6657836437225342, 0.09721603244543076]} +{"t": 10.4023, "q": [-0.3110026717185974, -0.02754688635468483, 0.01996731571853161, 0.6120327711105347, -0.3397585153579712, 0.010859501548111439, -0.40714067220687866, 0.017069797962903976, -0.015333720482885838, 0.605070173740387, -0.2547002136707306, -0.02740083821117878, 0.00012052706006215885, 0.01201464794576168, -0.020598484203219414, -0.005332980304956436, 0.038493331521749496, -0.04806872829794884, 1.3302489519119263, 0.31534090638160706, -0.6339415311813354, 0.11060241609811783, -0.31119439005851746, -0.2577926814556122, 0.32280710339546204, 1.146159291267395, -0.4378676414489746, -0.6669461131095886, 0.07751397043466568]} +{"t": 10.4191, "q": [-0.31093451380729675, -0.02754688635468483, 0.02002088353037834, 0.612007200717926, -0.3397667109966278, 0.010859442874789238, -0.40691056847572327, 0.017069797962903976, -0.015320328995585442, 0.6047804355621338, -0.2546117901802063, -0.02736499346792698, -0.0007767299539409578, 0.012356563471257687, -0.020889341831207275, -0.004374242387712002, 0.038960717618465424, -0.04821253940463066, 1.330272912979126, 0.315233051776886, -0.6352118849754333, 0.11114170402288437, -0.3168988823890686, -0.2561628222465515, 0.34035199880599976, 1.1736152172088623, -0.4604099690914154, -0.6674014925956726, 0.04918326064944267]} +{"t": 10.4359, "q": [-0.31084927916526794, -0.02754688635468483, 0.0201548021286726, 0.6119560599327087, -0.3397667109966278, 0.010859442874789238, -0.4067656993865967, 0.01709536276757717, -0.01519980188459158, 0.6043969392776489, -0.25446847081184387, -0.027250094339251518, -0.0009776083752512932, 0.012675607576966286, -0.02109701745212078, -0.004050668329000473, 0.03935619443655014, -0.04881174862384796, 1.330320954322815, 0.31526902318000793, -0.6352478265762329, 0.11118964105844498, -0.32093754410743713, -0.25518012046813965, 0.352024644613266, 1.1918312311172485, -0.47533032298088074, -0.6670299768447876, 0.033136382699012756]} +{"t": 10.4528, "q": [-0.3108237087726593, -0.02754688635468483, 0.020248545333743095, 0.6118708252906799, -0.3397667109966278, 0.010859442874789238, -0.40668046474456787, 0.017129452899098396, -0.015132841654121876, 0.6040304899215698, -0.2543545961380005, -0.027127958834171295, -0.0018079059664160013, 0.012933854013681412, -0.021245582029223442, -0.0032117723021656275, 0.03983556479215622, -0.04878778010606766, 1.33033287525177, 0.3151731491088867, -0.6359788775444031, 0.11146527528762817, -0.3273371160030365, -0.25278326869010925, 0.3615880310535431, 1.2118808031082153, -0.49125736951828003, -0.6665985584259033, 0.01501623447984457]} +{"t": 10.4696, "q": [-0.31074702739715576, -0.027521319687366486, 0.020288722589612007, 0.6118111610412598, -0.3397503197193146, 0.010859542526304722, -0.4065270721912384, 0.01715501770377159, -0.015106058679521084, 0.6037066578865051, -0.2541690170764923, -0.02691240981221199, -0.0022900141775608063, 0.013131547719240189, -0.021510740742087364, -0.002672482281923294, 0.04018310829997063, -0.04911135509610176, 1.3302969932556152, 0.31522107124328613, -0.6360867023468018, 0.11146527528762817, -0.3330535888671875, -0.2504942715167999, 0.3699650168418884, 1.2289942502975464, -0.49866360425949097, -0.6639620065689087, 0.0006831008358858526]} +{"t": 10.4864, "q": [-0.3106447458267212, -0.027504276484251022, 0.020261937752366066, 0.6117686033248901, -0.3397626280784607, 0.010852211154997349, -0.4063395857810974, 0.017180584371089935, -0.01511945016682148, 0.603485107421875, -0.2541395127773285, -0.026890859007835388, -0.003334582084789872, 0.013093972578644753, -0.021779008209705353, -0.0019054918084293604, 0.0406145378947258, -0.04900349676609039, 1.3302969932556152, 0.3150772750377655, -0.6366739273071289, 0.11152520030736923, -0.34000444412231445, -0.24676717817783356, 0.37423139810562134, 1.2454725503921509, -0.5058780908584595, -0.6604865789413452, -0.010126669891178608]} +{"t": 10.5032, "q": [-0.3105936050415039, -0.02748723141849041, 0.020114626735448837, 0.6117430329322815, -0.3397585153579712, 0.010844960808753967, -0.40610095858573914, 0.01720615103840828, -0.015253368765115738, 0.6032634973526001, -0.2541268467903137, -0.02686930075287819, -0.003964001312851906, 0.013033973053097725, -0.022296126931905746, -0.0014021543320268393, 0.04079430177807808, -0.04903944954276085, 1.3302849531173706, 0.31506529450416565, -0.6367937922477722, 0.11153718084096909, -0.3457329273223877, -0.24284833669662476, 0.3766881823539734, 1.2577564716339111, -0.510324239730835, -0.6570711135864258, -0.0186474546790123]} +{"t": 10.5211, "q": [-0.31052544713020325, -0.027461664751172066, 0.01998070813715458, 0.611632227897644, -0.3397544324398041, 0.010837729088962078, -0.40591347217559814, 0.017240239307284355, -0.015427463687956333, 0.6030760407447815, -0.25412264466285706, -0.026876499876379967, -0.004687163513153791, 0.012852655723690987, -0.02300851419568062, -0.0005392901366576552, 0.04115382954478264, -0.04912333935499191, 1.3302370309829712, 0.31506529450416565, -0.6370214819908142, 0.11153718084096909, -0.35275566577911377, -0.2382703721523285, 0.3829798996448517, 1.269824504852295, -0.5171433091163635, -0.6537994146347046, -0.03226153552532196]} +{"t": 10.538, "q": [-0.3103635311126709, -0.02741905488073826, 0.019953925162553787, 0.611564040184021, -0.3397544324398041, 0.010837729088962078, -0.40573450922966003, 0.017291372641921043, -0.0154542475938797, 0.602965235710144, -0.25412264466285706, -0.026876499876379967, -0.005490677431225777, 0.01277004275470972, -0.023708000779151917, 0.0002996056282427162, 0.04147740453481674, -0.049327071756124496, 1.3301891088485718, 0.3151012361049652, -0.6370813846588135, 0.11147726327180862, -0.3606652617454529, -0.2338481843471527, 0.39380162954330444, 1.2811856269836426, -0.5309970378875732, -0.6477833390235901, -0.04688229039311409]} +{"t": 10.5549, "q": [-0.3100822865962982, -0.027342356741428375, 0.019940532743930817, 0.6114106774330139, -0.3397626280784607, 0.010837670415639877, -0.40553849935531616, 0.017436247318983078, -0.015400679782032967, 0.6027947664260864, -0.2541268467903137, -0.02686930075287819, -0.00605313666164875, 0.012505119666457176, -0.02431778609752655, 0.0008269115351140499, 0.04180097579956055, -0.04969858378171921, 1.3302010297775269, 0.3151251971721649, -0.6370813846588135, 0.11145329475402832, -0.36921000480651855, -0.23042069375514984, 0.4048271179199219, 1.2911803722381592, -0.545366108417511, -0.6399456262588501, -0.06256964057683945]} +{"t": 10.5717, "q": [-0.3100481927394867, -0.027265656739473343, 0.01996731571853161, 0.6113680601119995, -0.3397544324398041, 0.010837729088962078, -0.4052828550338745, 0.017470337450504303, -0.015588166192173958, 0.602522075176239, -0.25412681698799133, -0.02685491554439068, -0.005785298999398947, 0.011989692226052284, -0.024989204481244087, 0.001330249011516571, 0.04212455078959465, -0.05005810782313347, 1.3301531076431274, 0.3152090907096863, -0.6370813846588135, 0.11142932623624802, -0.3743392527103424, -0.2274366319179535, 0.4178300201892853, 1.2995693683624268, -0.5574342608451843, -0.6342172026634216, -0.07328353822231293]} +{"t": 10.5884, "q": [-0.30982664227485657, -0.027274178341031075, 0.019953925162553787, 0.6112487316131592, -0.3397585153579712, 0.010830437764525414, -0.4045669734477997, 0.017461813986301422, -0.016230978071689606, 0.60199373960495, -0.25412681698799133, -0.02685491554439068, -0.0058388663455843925, 0.0115802101790905, -0.025505604222416878, 0.0018935075495392084, 0.042639873921871185, -0.050633352249860764, 1.3301531076431274, 0.3151971101760864, -0.6371173858642578, 0.1113574206829071, -0.38001978397369385, -0.22470422089099884, 0.4310845732688904, 1.307455062866211, -0.574499785900116, -0.6259959936141968, -0.08788032084703445]} +{"t": 10.6052, "q": [-0.30923008918762207, -0.027274178341031075, 0.019913749769330025, 0.6111038327217102, -0.3397626280784607, 0.010823147371411324, -0.40343353152275085, 0.017461813986301422, -0.016873788088560104, 0.6014142036437988, -0.2541562020778656, -0.026833273470401764, -0.005289798602461815, 0.01137556228786707, -0.02585195004940033, 0.002181129064410925, 0.04314320906996727, -0.05137637257575989, 1.3300691843032837, 0.31522107124328613, -0.6371772885322571, 0.1113574206829071, -0.38428616523742676, -0.2214205414056778, 0.44522595405578613, 1.3156402111053467, -0.5898755788803101, -0.6176549792289734, -0.09619737416505814]} +{"t": 10.622, "q": [-0.30887216329574585, -0.027274178341031075, 0.01949859969317913, 0.6110526919364929, -0.3397626280784607, 0.010837670415639877, -0.40247905254364014, 0.01744477078318596, -0.017690693959593773, 0.6008772850036621, -0.2541772127151489, -0.026826048269867897, -0.00512909609824419, 0.011064590886235237, -0.026178015395998955, 0.0024807346053421497, 0.04380234330892563, -0.052682653069496155, 1.3300572633743286, 0.315233051776886, -0.6372132301330566, 0.11132147163152695, -0.3873181641101837, -0.21826869249343872, 0.45640721917152405, 1.322339415550232, -0.6025548577308655, -0.6102727055549622, -0.1073906421661377]} +{"t": 10.6388, "q": [-0.3085653483867645, -0.027265656739473343, 0.019083451479673386, 0.6109163761138916, -0.3397667109966278, 0.010830379091203213, -0.401882529258728, 0.01739363744854927, -0.01814601942896843, 0.6005278825759888, -0.25424879789352417, -0.026847533881664276, -0.004272014833986759, 0.01073098462074995, -0.026646185666322708, 0.002600576961413026, 0.04429369792342186, -0.05337774008512497, 1.330045223236084, 0.31524503231048584, -0.637261152267456, 0.11128551512956619, -0.38758182525634766, -0.21554827690124512, 0.46546730399131775, 1.3261983394622803, -0.6133885979652405, -0.6064976453781128, -0.11159710586071014]} +{"t": 10.6555, "q": [-0.3081988990306854, -0.027274178341031075, 0.019029883667826653, 0.610814094543457, -0.3397667109966278, 0.010830379091203213, -0.4015416204929352, 0.01738511584699154, -0.01811923459172249, 0.6004682779312134, -0.25427404046058655, -0.02683309093117714, -0.003816690295934677, 0.01065531000494957, -0.026949699968099594, 0.0028642297256737947, 0.045108623802661896, -0.05410877615213394, 1.3299493789672852, 0.31522107124328613, -0.6376806497573853, 0.11112972348928452, -0.3885885179042816, -0.2115335613489151, 0.47724780440330505, 1.3318068981170654, -0.6275898814201355, -0.5976653099060059, -0.12223909795284271]} +{"t": 10.6723, "q": [-0.30799436569213867, -0.027274178341031075, 0.019123626872897148, 0.6106862425804138, -0.3397749364376068, 0.010844862088561058, -0.401439368724823, 0.017419204115867615, -0.018038883805274963, 0.6003659963607788, -0.2542949914932251, -0.02679709531366825, -0.003254230599850416, 0.010617423802614212, -0.0270523764193058, 0.002960103563964367, 0.045815691351890564, -0.05483981594443321, 1.3299254179000854, 0.3152570426464081, -0.6377645134925842, 0.11109376698732376, -0.38905587792396545, -0.2078663855791092, 0.48518136143684387, 1.3374155759811401, -0.6364102959632874, -0.5914934277534485, -0.12797954678535461]} +{"t": 10.6891, "q": [-0.30791768431663513, -0.027274178341031075, 0.019284330308437347, 0.6104987859725952, -0.3397749364376068, 0.010844862088561058, -0.40142232179641724, 0.01738511584699154, -0.017918355762958527, 0.6002978086471558, -0.25428658723831177, -0.026811493560671806, -0.003321190131828189, 0.010761793702840805, -0.027146141976118088, 0.003379551460966468, 0.0472298301756382, -0.05638577789068222, 1.3298654556274414, 0.3152570426464081, -0.6381000876426697, 0.11096194386482239, -0.38928359746932983, -0.20322848856449127, 0.5000897645950317, 1.343048095703125, -0.6512827277183533, -0.5836557149887085, -0.14075472950935364]} +{"t": 10.706, "q": [-0.3078068792819977, -0.0273082684725523, 0.019458424299955368, 0.6104305982589722, -0.3397749364376068, 0.010844862088561058, -0.4014308452606201, 0.017419204115867615, -0.017771044746041298, 0.6002978086471558, -0.2542908191680908, -0.02681867964565754, -0.0036292036529630423, 0.010814963839948177, -0.02715137042105198, 0.0036551887169480324, 0.04917127639055252, -0.058099523186683655, 1.3298414945602417, 0.3152810037136078, -0.6382198929786682, 0.11086606979370117, -0.3888162076473236, -0.19867448508739471, 0.5102763175964355, 1.346919059753418, -0.6631470918655396, -0.5765371322631836, -0.14813700318336487]} +{"t": 10.723, "q": [-0.3078068792819977, -0.027274178341031075, 0.019592342898249626, 0.6104135513305664, -0.3397749364376068, 0.010844862088561058, -0.4015330970287323, 0.01745329238474369, -0.01763712614774704, 0.6003404259681702, -0.2542824447154999, -0.026833077892661095, -0.004392541944980621, 0.010890915989875793, -0.027151834219694138, 0.0041824947111308575, 0.05167597904801369, -0.05983723700046539, 1.329877495765686, 0.31526902318000793, -0.6383397579193115, 0.1106863021850586, -0.3883248567581177, -0.19306586682796478, 0.5248011946678162, 1.3512094020843506, -0.6788224577903748, -0.5695862770080566, -0.16046877205371857]} +{"t": 10.7397, "q": [-0.3077898323535919, -0.027265656739473343, 0.01965930312871933, 0.6103624105453491, -0.3397749364376068, 0.010844862088561058, -0.4015160799026489, 0.01745329238474369, -0.017583558335900307, 0.6003148555755615, -0.2542698085308075, -0.026825904846191406, -0.005263015162199736, 0.01095171645283699, -0.027191461995244026, 0.0049375006929039955, 0.05448028817772865, -0.06149106100201607, 1.3298654556274414, 0.3153049647808075, -0.6383397579193115, 0.11032677441835403, -0.38818103075027466, -0.1885957568883896, 0.5369052886962891, 1.3546608686447144, -0.6910223960876465, -0.5649003982543945, -0.16900154948234558]} +{"t": 10.7565, "q": [-0.30763643980026245, -0.027223046869039536, 0.019686086103320122, 0.6103624105453491, -0.3397749364376068, 0.010844862088561058, -0.40145641565322876, 0.01751294732093811, -0.017516599968075752, 0.6003233790397644, -0.25426560640335083, -0.026833103969693184, -0.006120096426457167, 0.010974525474011898, -0.02721613645553589, 0.005980128422379494, 0.05790777504444122, -0.062126222997903824, 1.329877495765686, 0.315233051776886, -0.6383517384529114, 0.10995526611804962, -0.38808515667915344, -0.18278340995311737, 0.5540067553520203, 1.358268141746521, -0.710328996181488, -0.5551332831382751, -0.18483270704746246]} +{"t": 10.7733, "q": [-0.3075682818889618, -0.02718043513596058, 0.019699478521943092, 0.6103879809379578, -0.3397790193557739, 0.010837570764124393, -0.4014308452606201, 0.01763225719332695, -0.017409464344382286, 0.6003233790397644, -0.25426140427589417, -0.026840321719646454, -0.006213839631527662, 0.010951725766062737, -0.027201276272535324, 0.006711166352033615, 0.06089184805750847, -0.062437813729047775, 1.3298894166946411, 0.3152570426464081, -0.6383277773857117, 0.10976351797580719, -0.3877975344657898, -0.17733058333396912, 0.5656914114952087, 1.3616117238998413, -0.7230322957038879, -0.5480865836143494, -0.19377294182777405]} +{"t": 10.7901, "q": [-0.3075767755508423, -0.027171913534402847, 0.019699478521943092, 0.610370934009552, -0.33978724479675293, 0.010822971351444721, -0.4014819860458374, 0.017615212127566338, -0.01730232872068882, 0.6003659963607788, -0.25426140427589417, -0.026840321719646454, -0.006361150648444891, 0.010944144800305367, -0.027215950191020966, 0.0076339514926075935, 0.06424742937088013, -0.06271345168352127, 1.3298654556274414, 0.3152570426464081, -0.6383397579193115, 0.10948788374662399, -0.38780951499938965, -0.17217735946178436, 0.5805278420448303, 1.3637089729309082, -0.7378926873207092, -0.5400331616401672, -0.20548152923583984]} +{"t": 10.8068, "q": [-0.3075597584247589, -0.027163391932845116, 0.019712870940566063, 0.6103879809379578, -0.3397749364376068, 0.010830339044332504, -0.40146493911743164, 0.017589645460247993, -0.01730232872068882, 0.6003574728965759, -0.2542572617530823, -0.026861906051635742, -0.006240623537451029, 0.010989706963300705, -0.027206415310502052, 0.008676579222083092, 0.06733936071395874, -0.06284527480602264, 1.3298894166946411, 0.315233051776886, -0.6384236216545105, 0.10928414762020111, -0.3877016603946686, -0.16708406805992126, 0.5900793075561523, 1.365230917930603, -0.7476598620414734, -0.5337174534797668, -0.21311548352241516]} +{"t": 10.8238, "q": [-0.3075682818889618, -0.02719748020172119, 0.019686086103320122, 0.6103879809379578, -0.3397667109966278, 0.010830379091203213, -0.40146493911743164, 0.017529990524053574, -0.01732911355793476, 0.6003659963607788, -0.2542530298233032, -0.02685471996665001, -0.006187055725604296, 0.010989696718752384, -0.027196601033210754, 0.00999484397470951, 0.07103050500154495, -0.0628812313079834, 1.3298894166946411, 0.31522107124328613, -0.6384116411209106, 0.10904446244239807, -0.38778555393218994, -0.15967781841754913, 0.5987438559532166, 1.3665851354599, -0.7560847997665405, -0.527198076248169, -0.22140856087207794]} +{"t": 10.8407, "q": [-0.30744895339012146, -0.02713782526552677, 0.0196726955473423, 0.6103879809379578, -0.3397749364376068, 0.010830339044332504, -0.40141379833221436, 0.017615212127566338, -0.01732911355793476, 0.6003148555755615, -0.2542446553707123, -0.026869118213653564, -0.006039745174348354, 0.01092897541821003, -0.0272354856133461, 0.01185239851474762, 0.07538077980279922, -0.06321679055690765, 1.3299973011016846, 0.315233051776886, -0.6383517384529114, 0.10870891064405441, -0.38830089569091797, -0.15465642511844635, 0.6064377427101135, 1.3680951595306396, -0.76435387134552, -0.520331084728241, -0.22700519859790802]} +{"t": 10.8575, "q": [-0.3070313632488251, -0.027018515393137932, 0.01965930312871933, 0.6103794574737549, -0.33978724479675293, 0.010822971351444721, -0.4010814428329468, 0.017734521999955177, -0.01732911355793476, 0.6003233790397644, -0.25426140427589417, -0.026840321719646454, -0.005731731187552214, 0.010913833044469357, -0.027284463867545128, 0.013697969727218151, 0.07908390462398529, -0.06332464516162872, 1.3301891088485718, 0.3153049647808075, -0.6382918357849121, 0.1086370050907135, -0.38820502161979675, -0.14671088755130768, 0.6137361526489258, 1.3691858053207397, -0.7689438462257385, -0.5131285786628723, -0.2316550761461258]} +{"t": 10.8742, "q": [-0.30690354108810425, -0.026984427124261856, 0.01964591071009636, 0.6103794574737549, -0.3397831320762634, 0.010830261744558811, -0.40090247988700867, 0.017836786806583405, -0.01732911355793476, 0.6001614332199097, -0.2542698383331299, -0.026840290054678917, -0.005584420636296272, 0.01081518642604351, -0.027377096936106682, 0.016166720539331436, 0.08146876096725464, -0.06385195255279541, 1.331591248512268, 0.31546077132225037, -0.6379562616348267, 0.10855311155319214, -0.3883488178253174, -0.13880129158496857, 0.621118426322937, 1.3710312843322754, -0.7756670117378235, -0.5041044354438782, -0.23692813515663147]} +{"t": 10.891, "q": [-0.3067757189273834, -0.026899205520749092, 0.019605735316872597, 0.6103879809379578, -0.33978724479675293, 0.010822971351444721, -0.4008769094944, 0.017947575077414513, -0.017235370352864265, 0.600135862827301, -0.25427818298339844, -0.02681150659918785, -0.004995177034288645, 0.010800063610076904, -0.027445703744888306, 0.019522303715348244, 0.08629840612411499, -0.06417552381753922, 1.3339041471481323, 0.3157963156700134, -0.6373450756072998, 0.10856509953737259, -0.3883488178253174, -0.1278357356786728, 0.6303582787513733, 1.374986171722412, -0.783996045589447, -0.49644652009010315, -0.24037958681583405]} +{"t": 10.9078, "q": [-0.30668196082115173, -0.026796940714120865, 0.01963251829147339, 0.6103538870811462, -0.33979544043540955, 0.01082291267812252, -0.4008854329586029, 0.01817767135798931, -0.017088059335947037, 0.6000592112541199, -0.2542908191680908, -0.02681867964565754, -0.004727339372038841, 0.010807664133608341, -0.02745065651834011, 0.02418416738510132, 0.09122392535209656, -0.06446314603090286, 1.3371758460998535, 0.31601202487945557, -0.6366379857063293, 0.10855311155319214, -0.3883248567581177, -0.11883557587862015, 0.6359908580780029, 1.3783177137374878, -0.7895807027816772, -0.4877459704875946, -0.2410387247800827]} +{"t": 10.9245, "q": [-0.3060087263584137, -0.026728764176368713, 0.01965930312871933, 0.6099703907966614, -0.33979955315589905, 0.010830145329236984, -0.4008769094944, 0.01828845962882042, -0.016378289088606834, 0.600135862827301, -0.2543119192123413, -0.026854610070586205, -0.00388364982791245, 0.010837996378540993, -0.027401771396398544, 0.031027158722281456, 0.09551427513360977, -0.0647267997264862, 1.340639352798462, 0.31676703691482544, -0.6354156136512756, 0.10845723748207092, -0.38792937994003296, -0.10875684767961502, 0.6463092565536499, 1.3813977241516113, -0.7986527681350708, -0.4815501272678375, -0.24240492284297943]} +{"t": 10.9413, "q": [-0.3054206967353821, -0.026660587638616562, 0.01964591071009636, 0.609322726726532, -0.33980363607406616, 0.01082285400480032, -0.40082576870918274, 0.01846742443740368, -0.015762262046337128, 0.6001018285751343, -0.2543162405490875, -0.02689058519899845, -0.0031872710678726435, 0.010533970780670643, -0.027154823765158653, 0.03954794257879257, 0.09803096204996109, -0.06511029601097107, 1.345948338508606, 0.31771379709243774, -0.6347444653511047, 0.10837335139513016, -0.3871743679046631, -0.09976867586374283, 0.6546502709388733, 1.3835668563842773, -0.8066102862358093, -0.4758456349372864, -0.24301612377166748]} +{"t": 10.958, "q": [-0.3055485188961029, -0.026617975905537605, 0.01963251829147339, 0.6091607809066772, -0.33979955315589905, 0.010844668373465538, -0.400808721780777, 0.01859525591135025, -0.01580243743956089, 0.5999313592910767, -0.2543204426765442, -0.026897771283984184, -0.0015400679549202323, 0.009667708538472652, -0.026542777195572853, 0.0487278588116169, 0.09883390367031097, -0.06434330344200134, 1.3489323854446411, 0.3189481794834137, -0.635463535785675, 0.10911636799573898, -0.38513705134391785, -0.08899485319852829, 0.6656158566474915, 1.3846813440322876, -0.816209614276886, -0.47028496861457825, -0.2458324134349823]} +{"t": 10.9748, "q": [-0.3060172498226166, -0.02670319750905037, 0.019605735316872597, 0.6092374920845032, -0.3397626280784607, 0.010823147371411324, -0.40078315138816833, 0.01840776950120926, -0.01682022027671337, 0.5997438430786133, -0.2542659640312195, -0.02699139714241028, 0.0007901218486949801, 0.008079707622528076, -0.025481710210442543, 0.054672036319971085, 0.1044185534119606, -0.06518220156431198, 1.3508379459381104, 0.31999078392982483, -0.6354275941848755, 0.10897255688905716, -0.38381877541542053, -0.0791078731417656, 0.6740527749061584, 1.386203408241272, -0.8252577185630798, -0.4650118947029114, -0.25043436884880066]} +{"t": 10.9916, "q": [-0.3061962127685547, -0.026541277766227722, 0.019619127735495567, 0.6095783710479736, -0.3397585451602936, 0.01081591472029686, -0.40050193667411804, 0.018441857770085335, -0.01747642457485199, 0.5995222926139832, -0.2542533278465271, -0.02698422409594059, 0.002946217078715563, 0.00653002830222249, -0.024545034393668175, 0.057020943611860275, 0.10775016993284225, -0.06508632749319077, 1.3523838520050049, 0.32011064887046814, -0.6350201368331909, 0.10904446244239807, -0.3822488486766815, -0.06948453933000565, 0.6852220296859741, 1.3871500492095947, -0.8346293568611145, -0.46284276247024536, -0.2541015148162842]} +{"t": 11.0084, "q": [-0.3070313632488251, -0.026558320969343185, 0.01917719468474388, 0.6100556254386902, -0.3397626280784607, 0.010823147371411324, -0.40054455399513245, 0.01836515963077545, -0.01813262701034546, 0.5993773937225342, -0.2542533278465271, -0.02698422409594059, 0.0036425956059247255, 0.005603397730737925, -0.023974578827619553, 0.05970541015267372, 0.11038669943809509, -0.06473878771066666, 1.354684829711914, 0.32018253207206726, -0.6351879239082336, 0.10943994671106339, -0.3821290135383606, -0.06095176935195923, 0.6959359645843506, 1.3879530429840088, -0.8452713489532471, -0.45915162563323975, -0.259865939617157]} +{"t": 11.0252, "q": [-0.307670533657074, -0.026617975905537605, 0.018520992249250412, 0.6106010675430298, -0.3397503197193146, 0.010830496437847614, -0.40041670203208923, 0.017887920141220093, -0.01913701929152012, 0.5991387963294983, -0.2542575001716614, -0.026977024972438812, 0.005329974461346865, 0.005094547756016254, -0.02364528551697731, 0.061958443373441696, 0.11205250769853592, -0.06449910253286362, 1.3552840948104858, 0.32003873586654663, -0.6356672644615173, 0.10995526611804962, -0.3818773329257965, -0.05402488633990288, 0.7028748393058777, 1.3880728483200073, -0.8521023988723755, -0.45825281739234924, -0.2619391977787018]} +{"t": 11.042, "q": [-0.30819037556648254, -0.0267117191106081, 0.01830672100186348, 0.6107800006866455, -0.3397544324398041, 0.010823206044733524, -0.4003741145133972, 0.017197629436850548, -0.02002088353037834, 0.5989854335784912, -0.25425323843955994, -0.026955435052514076, 0.006012961268424988, 0.004995865281671286, -0.023698899894952774, 0.06391187012195587, 0.11301124095916748, -0.06447513401508331, 1.3554757833480835, 0.3200267553329468, -0.636290431022644, 0.11032677441835403, -0.3823567032814026, -0.04310726001858711, 0.7106885313987732, 1.3878811597824097, -0.8610905408859253, -0.4565989673137665, -0.26347318291664124]} +{"t": 11.0587, "q": [-0.30805402994155884, -0.026848074048757553, 0.018212977796792984, 0.6107800006866455, -0.3397585451602936, 0.01081591472029686, -0.39976903796195984, 0.016745956614613533, -0.020610127598047256, 0.5984740853309631, -0.2542908489704132, -0.02683306485414505, 0.006655772216618061, 0.0049958862364292145, -0.02374786138534546, 0.06543386727571487, 0.1134786307811737, -0.06446314603090286, 1.355595588684082, 0.3200267553329468, -0.6367219090461731, 0.11055447906255722, -0.3822847902774811, -0.03536544740200043, 0.7168723940849304, 1.387929081916809, -0.864026665687561, -0.4550650119781494, -0.26404842734336853]} +{"t": 11.0755, "q": [-0.307738721370697, -0.027035560458898544, 0.018105842173099518, 0.6107800006866455, -0.3397667109966278, 0.010830379091203213, -0.3992832601070404, 0.01648177206516266, -0.02063691057264805, 0.5980820655822754, -0.25432416796684265, -0.026674719527363777, 0.00672273151576519, 0.00501110078766942, -0.023816445842385292, 0.06588926911354065, 0.1137063279747963, -0.06445116549730301, 1.3556915521621704, 0.3200507164001465, -0.6367937922477722, 0.1107102707028389, -0.3822728097438812, -0.025802036747336388, 0.7218458652496338, 1.3879890441894531, -0.8650093674659729, -0.4496840834617615, -0.2637608051300049]} +{"t": 11.0923, "q": [-0.30735522508621216, -0.02706112712621689, 0.01829332858324051, 0.610745906829834, -0.33979135751724243, 0.010830204002559185, -0.39884865283966064, 0.016498815268278122, -0.020382465794682503, 0.5976048111915588, -0.2542310953140259, -0.02644464187324047, 0.006267406977713108, 0.004935216624289751, -0.02391418255865574, 0.06605704873800278, 0.11406585574150085, -0.06448711454868317, 1.3556915521621704, 0.3201465904712677, -0.6369256377220154, 0.11083011329174042, -0.38211703300476074, -0.016454340890049934, 0.7244224548339844, 1.3882646560668945, -0.8647337555885315, -0.44484245777130127, -0.2613639533519745]} +{"t": 11.1091, "q": [-0.30699729919433594, -0.027112258598208427, 0.018561167642474174, 0.610745906829834, -0.33980363607406616, 0.010851900093257427, -0.3984651565551758, 0.016635170206427574, -0.01986018195748329, 0.5970764756202698, -0.2540031671524048, -0.026114020496606827, 0.005637987982481718, 0.004722679033875465, -0.024050751700997353, 0.06606903672218323, 0.11417371034622192, -0.06451108306646347, 1.355751395225525, 0.32030239701271057, -0.6369256377220154, 0.11091400682926178, -0.3816496431827545, -0.0068669612519443035, 0.7264237999916077, 1.3888758420944214, -0.8647217750549316, -0.440264493227005, -0.2599618136882782]} +{"t": 11.1259, "q": [-0.306477427482605, -0.027171913534402847, 0.018721869215369225, 0.6107373833656311, -0.3398323357105255, 0.010888020507991314, -0.3977833688259125, 0.016711868345737457, -0.01949859969317913, 0.5966077446937561, -0.25382158160209656, -0.025819292291998863, 0.00512909609824419, 0.004540424328297377, -0.02398175746202469, 0.06628475338220596, 0.1143295094370842, -0.06466688215732574, 1.3561229705810547, 0.3205181062221527, -0.636889636516571, 0.1110338494181633, -0.380607008934021, 0.0020013656467199326, 0.7265915870666504, 1.3896307945251465, -0.8636671900749207, -0.43656134605407715, -0.2583079934120178]} +{"t": 11.1427, "q": [-0.3057700991630554, -0.027240090072155, 0.01882900483906269, 0.6105584502220154, -0.3398364186286926, 0.010895253159105778, -0.39696526527404785, 0.016686301678419113, -0.019257545471191406, 0.5961219668388367, -0.25367823243141174, -0.02567562274634838, 0.004700555466115475, 0.0042670490220189095, -0.023892952129244804, 0.06608101725578308, 0.1143295094370842, -0.06481069326400757, 1.3561828136444092, 0.321464866399765, -0.636889636516571, 0.11112972348928452, -0.3793007433414459, 0.00814927276223898, 0.7264357805252075, 1.390313982963562, -0.8629840612411499, -0.43351736664772034, -0.2553239166736603]} +{"t": 11.1595, "q": [-0.3045940399169922, -0.027265656739473343, 0.018855789676308632, 0.6103624105453491, -0.339865118265152, 0.01091685052961111, -0.3954824209213257, 0.016711868345737457, -0.019190587103366852, 0.5952953100204468, -0.253593772649765, -0.025531861931085587, 0.00445950124412775, 0.0040468014776706696, -0.02375042252242565, 0.06523013859987259, 0.11456919461488724, -0.06487061083316803, 1.3559551239013672, 0.32295089960098267, -0.6372012495994568, 0.11123757809400558, -0.37732332944869995, 0.013877732679247856, 0.7262080907821655, 1.391008973121643, -0.8623608946800232, -0.42826828360557556, -0.25103357434272766]} +{"t": 11.1762, "q": [-0.30314528942108154, -0.027342356741428375, 0.019043276086449623, 0.6096891760826111, -0.3398856222629547, 0.01090944278985262, -0.39416149258613586, 0.016711868345737457, -0.0188022218644619, 0.5946902632713318, -0.2535598576068878, -0.025431180372834206, 0.004379149992018938, 0.003606525482609868, -0.023984355852007866, 0.0653020441532135, 0.11507253348827362, -0.06489457935094833, 1.355811357498169, 0.3231666088104248, -0.6378723978996277, 0.1113334521651268, -0.37499839067459106, 0.018635470420122147, 0.7256807684898376, 1.3921475410461426, -0.8615099787712097, -0.42227616906166077, -0.24567662179470062]} +{"t": 11.1931, "q": [-0.30180731415748596, -0.027410533279180527, 0.019029883667826653, 0.6089818477630615, -0.33991435170173645, 0.010945544578135014, -0.3931729197502136, 0.016694823279976845, -0.018079059198498726, 0.5943920016288757, -0.25358086824417114, -0.025409551337361336, 0.004365758039057255, 0.0028170987498015165, -0.024481387808918953, 0.06569752097129822, 0.11603126674890518, -0.06466688215732574, 1.3559311628341675, 0.3232145607471466, -0.6384835839271545, 0.11142932623624802, -0.3726614713668823, 0.022410500794649124, 0.7251055240631104, 1.3934059143066406, -0.8606950640678406, -0.4170030951499939, -0.23920513689517975]} +{"t": 11.2099, "q": [-0.30149200558662415, -0.02742757648229599, 0.019029883667826653, 0.6087262034416199, -0.3399266302585602, 0.010952718555927277, -0.39293429255485535, 0.016686301678419113, -0.01763712614774704, 0.5941448211669922, -0.25355973839759827, -0.02537362091243267, 0.004218447022140026, 0.0021869183983653784, -0.025004904717206955, 0.06663229316473007, 0.11671437323093414, -0.06457100808620453, 1.355811357498169, 0.3231905996799469, -0.6396340727806091, 0.11168099194765091, -0.37082788348197937, 0.024639567360281944, 0.7246261835098267, 1.3949878215789795, -0.8602277040481567, -0.41367149353027344, -0.23578962683677673]} +{"t": 11.2267, "q": [-0.30117666721343994, -0.02755540981888771, 0.019016491249203682, 0.6087262034416199, -0.3399471342563629, 0.010988897643983364, -0.39266160130500793, 0.016686301678419113, -0.01731572113931179, 0.5941789150238037, -0.253488153219223, -0.02535213530063629, 0.004044352564960718, 0.0017768826801329851, -0.025141600519418716, 0.06733936071395874, 0.11697801947593689, -0.06449910253286362, 1.3557394742965698, 0.32320258021354675, -0.6407126188278198, 0.11176488548517227, -0.3693178594112396, 0.02575409971177578, 0.7241348028182983, 1.3963899612426758, -0.8598442077636719, -0.41086718440055847, -0.23297333717346191]} +{"t": 11.2435, "q": [-0.301244854927063, -0.027598019689321518, 0.019016491249203682, 0.608717679977417, -0.3399471342563629, 0.010988897643983364, -0.3926701247692108, 0.016584036871790886, -0.017275545746088028, 0.5941362977027893, -0.25339528918266296, -0.02520838938653469, 0.003937217406928539, 0.0013972065644338727, -0.02521953359246254, 0.06854976713657379, 0.11733754724264145, -0.06399576365947723, 1.3556315898895264, 0.3231666088104248, -0.6422226428985596, 0.11199258267879486, -0.3678557872772217, 0.02630537375807762, 0.7214024066925049, 1.397732138633728, -0.8581304550170898, -0.40533047914505005, -0.228107750415802]} +{"t": 11.2603, "q": [-0.3011851906776428, -0.027691762894392014, 0.019056666642427444, 0.6087517738342285, -0.3399389088153839, 0.010988937690854073, -0.39265307784080505, 0.016592558473348618, -0.017074666917324066, 0.5941277742385864, -0.25325605273246765, -0.025028731673955917, 0.0037631227169185877, 0.0010250763734802604, -0.025067178532481194, 0.06985604763031006, 0.11756525188684464, -0.06372012197971344, 1.355643630027771, 0.3231666088104248, -0.643984317779541, 0.11237607896327972, -0.3667772114276886, 0.026209499686956406, 0.7179030179977417, 1.398630976676941, -0.8557815551757812, -0.40171122550964355, -0.22318223118782043]} +{"t": 11.277, "q": [-0.3011851906776428, -0.027708806097507477, 0.019070059061050415, 0.6089051365852356, -0.3399348258972168, 0.010981705971062183, -0.39265307784080505, 0.016575515270233154, -0.0169675312936306, 0.5941533446311951, -0.25314217805862427, -0.024906596168875694, 0.003696163184940815, 0.0006985379150137305, -0.02484666183590889, 0.07149788737297058, 0.11800866574048996, -0.06343250721693039, 1.3555716276168823, 0.3231666088104248, -0.6463931798934937, 0.11309513449668884, -0.3659263253211975, 0.026077674701809883, 0.7130853533744812, 1.3997215032577515, -0.8504365682601929, -0.39813992381095886, -0.21788519620895386]} +{"t": 11.2937, "q": [-0.3011937141418457, -0.02772585116326809, 0.019070059061050415, 0.6089903712272644, -0.3399348258972168, 0.010981705971062183, -0.39265307784080505, 0.016566991806030273, -0.016873788088560104, 0.5941533446311951, -0.25304508209228516, -0.02475564368069172, 0.003589028026908636, 0.0005542741273529828, -0.024743959307670593, 0.07291202992200851, 0.11853597313165665, -0.06340853869915009, 1.3556315898895264, 0.32317858934402466, -0.6485263705253601, 0.114053875207901, -0.36529117822647095, 0.025442510843276978, 0.7069854140281677, 1.400416612625122, -0.8477041721343994, -0.3967377841472626, -0.21494905650615692]} +{"t": 11.3105, "q": [-0.3011511266231537, -0.02773437276482582, 0.01916380226612091, 0.6090244650840759, -0.3399266004562378, 0.010996305383741856, -0.3926445543766022, 0.016558470204472542, -0.016739869490265846, 0.5941789150238037, -0.2529480457305908, -0.024647867307066917, 0.0032810145057737827, 0.000539088505320251, -0.024743959307670593, 0.0743141770362854, 0.11877565830945969, -0.06334861367940903, 1.3555716276168823, 0.32315462827682495, -0.6503838896751404, 0.11573166400194168, -0.3648357689380646, 0.024399882182478905, 0.7025033235549927, 1.400860071182251, -0.8408132195472717, -0.3957310914993286, -0.2114856243133545]} +{"t": 11.3273, "q": [-0.30090397596359253, -0.02773437276482582, 0.019404856488108635, 0.609177827835083, -0.3399307131767273, 0.01097447331994772, -0.3926275074481964, 0.016626646742224693, -0.016431856900453568, 0.5943664312362671, -0.25291433930397034, -0.024619149044156075, 0.0031470954418182373, 0.0005618669674731791, -0.024739068001508713, 0.07544069737195969, 0.11891946941614151, -0.06321679055690765, 1.3556315898895264, 0.3231666088104248, -0.6517141461372375, 0.11766112595796585, -0.36489570140838623, 0.0216554943472147, 0.6980571746826172, 1.4013274908065796, -0.8386321067810059, -0.3951798379421234, -0.20880115032196045]} +{"t": 11.3441, "q": [-0.3007676303386688, -0.02772585116326809, 0.019458424299955368, 0.6092119216918945, -0.3399266004562378, 0.010981782339513302, -0.392584890127182, 0.016626646742224693, -0.01631132885813713, 0.5944601893424988, -0.25292274355888367, -0.02461913600564003, 0.0031203117687255144, 0.0005846454878337681, -0.024773303419351578, 0.07692674547433853, 0.11879962682723999, -0.0631808340549469, 1.3555716276168823, 0.3231666088104248, -0.6523013710975647, 0.12104067206382751, -0.3648357689380646, 0.017604826018214226, 0.693587064743042, 1.4016749858856201, -0.8349888920783997, -0.3950839638710022, -0.20783042907714844]} +{"t": 11.3608, "q": [-0.30052047967910767, -0.027691762894392014, 0.01947181671857834, 0.609246015548706, -0.33991432189941406, 0.010974608361721039, -0.39238888025283813, 0.016635170206427574, -0.01628454588353634, 0.5945709347724915, -0.2529185712337494, -0.024626335129141808, 0.002986392704769969, 0.0005922382697463036, -0.02477819286286831, 0.07878429442644119, 0.11873970180749893, -0.06304901093244553, 1.355643630027771, 0.3231426477432251, -0.6532002091407776, 0.12425244599580765, -0.3649076819419861, 0.01489639189094305, 0.6898239850997925, 1.4017229080200195, -0.8324242830276489, -0.3950120508670807, -0.2072432041168213]} +{"t": 11.3775, "q": [-0.3003585636615753, -0.027649153023958206, 0.019445031881332397, 0.6092801094055176, -0.33991432189941406, 0.010974608361721039, -0.39228662848472595, 0.01666925847530365, -0.01631132885813713, 0.5947754979133606, -0.2529059648513794, -0.02463354729115963, 0.003093527862802148, 0.0005846454878337681, -0.024773303419351578, 0.08094145357608795, 0.11881160736083984, -0.0625816211104393, 1.355595588684082, 0.3230707347393036, -0.6534159183502197, 0.12712866067886353, -0.3648357689380646, 0.008616657927632332, 0.6832566261291504, 1.401890754699707, -0.8264321684837341, -0.3949161767959595, -0.20719526708126068]} +{"t": 11.3943, "q": [-0.3002818524837494, -0.027598019689321518, 0.01932450570166111, 0.6094591021537781, -0.33991432189941406, 0.010974608361721039, -0.39224401116371155, 0.0167374350130558, -0.016405072063207626, 0.5949629545211792, -0.2529186010360718, -0.024640720337629318, 0.0031604873947799206, 0.0006226096302270889, -0.02477819286286831, 0.08240353316068649, 0.11878763884305954, -0.062305986881256104, 1.355655550956726, 0.32299885153770447, -0.653763473033905, 0.12847089767456055, -0.36487171053886414, 0.00453003728762269, 0.6783910393714905, 1.4018666744232178, -0.8205479383468628, -0.3948322832584381, -0.20730312168598175]} +{"t": 11.411, "q": [-0.30019664764404297, -0.02754688635468483, 0.019217370077967644, 0.6095868945121765, -0.33989793062210083, 0.010960202664136887, -0.39215025305747986, 0.01678004488348961, -0.016538990661501884, 0.5950993299484253, -0.2529228627681732, -0.024676695466041565, 0.003347973804920912, 0.000645388092380017, -0.024773303419351578, 0.08361393958330154, 0.11879962682723999, -0.06242582947015762, 1.355751395225525, 0.32333439588546753, -0.6535717248916626, 0.13280917704105377, -0.36451220512390137, -0.002205097349360585, 0.6651244759559631, 1.401842713356018, -0.8095104694366455, -0.3947364091873169, -0.20503811538219452]} +{"t": 11.4277, "q": [-0.3002307116985321, -0.027478709816932678, 0.019230762496590614, 0.609697699546814, -0.33989793062210083, 0.010960202664136887, -0.39215877652168274, 0.01685674488544464, -0.016579166054725647, 0.5951675176620483, -0.2529733180999756, -0.024647846817970276, 0.0033077981788665056, 0.0006985379150137305, -0.024758631363511086, 0.0851718857884407, 0.11879962682723999, -0.06227003410458565, 1.3558473587036133, 0.32317858934402466, -0.653535783290863, 0.13600897789001465, -0.36462005972862244, -0.006591323763132095, 0.6564479470252991, 1.401770830154419, -0.801037609577179, -0.39459261298179626, -0.2037438154220581]} +{"t": 11.4444, "q": [-0.3001369833946228, -0.027384966611862183, 0.019217370077967644, 0.6097232699394226, -0.33989381790161133, 0.010952952317893505, -0.39215025305747986, 0.016984576359391212, -0.016672909259796143, 0.5951504707336426, -0.2529985010623932, -0.02461901865899563, 0.003441717242822051, 0.0008731717825867236, -0.024871114641427994, 0.08614261448383331, 0.11883557587862015, -0.06333663314580917, 1.3559551239013672, 0.324640691280365, -0.6526848673820496, 0.14069479703903198, -0.36427250504493713, -0.013338442891836166, 0.6437805891036987, 1.4013633728027344, -0.7901319265365601, -0.3948802351951599, -0.2004241794347763]} +{"t": 11.4613, "q": [-0.30011993646621704, -0.02735939994454384, 0.019230762496590614, 0.6098681688308716, -0.33989381790161133, 0.010938430204987526, -0.3921246826648712, 0.017078319564461708, -0.01664612628519535, 0.5952356457710266, -0.253048837184906, -0.024561380967497826, 0.0034551091957837343, 0.001002253033220768, -0.0248662531375885, 0.08659800887107849, 0.11873970180749893, -0.06453505158424377, 1.3560150861740112, 0.32640236616134644, -0.6508752703666687, 0.14766962826251984, -0.3638051152229309, -0.020720725879073143, 0.6308136582374573, 1.401159644126892, -0.7786750197410583, -0.3948802351951599, -0.1986025869846344]} +{"t": 11.478, "q": [-0.3001796007156372, -0.027291223406791687, 0.01915041171014309, 0.6100300550460815, -0.3398897051811218, 0.01096024364233017, -0.3921332061290741, 0.01709536276757717, -0.016699694097042084, 0.5952697396278381, -0.2530781924724579, -0.02451096847653389, 0.0037497307639569044, 0.0011844972614198923, -0.024827277287840843, 0.08652610331773758, 0.11871573328971863, -0.06690792739391327, 1.3562067747116089, 0.33004555106163025, -0.6463931798934937, 0.15574699640274048, -0.3628343939781189, -0.02943325787782669, 0.6141316294670105, 1.400871992111206, -0.762040913105011, -0.3952277600765228, -0.19449199736118317]} +{"t": 11.4947, "q": [-0.300239235162735, -0.02729974500834942, 0.01915041171014309, 0.6102005243301392, -0.3398856222629547, 0.010953010991215706, -0.3921332061290741, 0.01703570783138275, -0.016739869490265846, 0.5953549742698669, -0.25308656692504883, -0.024496570229530334, 0.004231838975101709, 0.0014730797847732902, -0.024906029924750328, 0.08585499227046967, 0.11871573328971863, -0.07139003276824951, 1.3567941188812256, 0.3358219563961029, -0.6386633515357971, 0.1655740588903427, -0.362858384847641, -0.04024302959442139, 0.6009489893913269, 1.4005484580993652, -0.750607967376709, -0.3951558470726013, -0.19246666133403778]} +{"t": 11.5115, "q": [-0.30029889941215515, -0.027384966611862183, 0.019070059061050415, 0.610302746295929, -0.3398815095424652, 0.01096030231565237, -0.3920735716819763, 0.01689935475587845, -0.017021099105477333, 0.5953890681266785, -0.25308239459991455, -0.024503769353032112, 0.0051424880512058735, 0.0017237071879208088, -0.025058237835764885, 0.08504006266593933, 0.11926700919866562, -0.0782569944858551, 1.357309341430664, 0.34407907724380493, -0.6289440989494324, 0.18033862113952637, -0.3619595468044281, -0.051472246646881104, 0.5863761305809021, 1.400416612625122, -0.7393907308578491, -0.39534759521484375, -0.190489262342453]} +{"t": 11.5282, "q": [-0.3005460500717163, -0.02736792154610157, 0.019056666642427444, 0.6106010675430298, -0.3398856222629547, 0.010953010991215706, -0.3920820951461792, 0.016882311552762985, -0.017248760908842087, 0.5953634977340698, -0.254323273897171, -0.022429708391427994, 0.0051424880512058735, 0.002133825561031699, -0.02531353570520878, 0.08313456922769547, 0.1200459823012352, -0.08412925899028778, 1.3579685688018799, 0.34671562910079956, -0.623203694820404, 0.19220300018787384, -0.36206740140914917, -0.06300107389688492, 0.5768846273422241, 1.4002608060836792, -0.7308459877967834, -0.39509594440460205, -0.18885940313339233]} +{"t": 11.5449, "q": [-0.300494909286499, -0.027333833277225494, 0.019070059061050415, 0.6106266379356384, -0.3398897051811218, 0.01096024364233017, -0.39206504821777344, 0.01690787635743618, -0.017221977934241295, 0.5953464508056641, -0.255203515291214, -0.020902998745441437, 0.005075528286397457, 0.002331297378987074, -0.025460775941610336, 0.08018644899129868, 0.12077701836824417, -0.08949819207191467, 1.3586995601654053, 0.3552364110946655, -0.6104045510292053, 0.20660804212093353, -0.36146819591522217, -0.07413441687822342, 0.5650322437286377, 1.3999732732772827, -0.72101891040802, -0.3948802351951599, -0.18718160688877106]} +{"t": 11.5617, "q": [-0.300426721572876, -0.027265656739473343, 0.019016491249203682, 0.6106862425804138, -0.33989793062210083, 0.010960202664136887, -0.3920735716819763, 0.0169675312936306, -0.017088059335947037, 0.5953720211982727, -0.25519099831581116, -0.020953385159373283, 0.004325582180172205, 0.002354084048420191, -0.02548530325293541, 0.07737015932798386, 0.12155599892139435, -0.09363275021314621, 1.359861969947815, 0.3587357997894287, -0.6027346253395081, 0.21719011664390564, -0.3612644672393799, -0.08536363393068314, 0.5559242367744446, 1.3997575044631958, -0.7149788737297058, -0.39482030272483826, -0.18623486161231995]} +{"t": 11.5785, "q": [-0.3004097044467926, -0.02718043513596058, 0.01897631585597992, 0.6106777191162109, -0.33989381790161133, 0.010967493988573551, -0.39206504821777344, 0.017061274498701096, -0.017074666917324066, 0.5953038334846497, -0.2551867961883545, -0.02096058428287506, 0.004539852496236563, 0.002392060589045286, -0.025519628077745438, 0.07485347241163254, 0.12210726737976074, -0.09756357967853546, 1.3610364198684692, 0.3657225966453552, -0.5934588313102722, 0.2274845689535141, -0.3589634895324707, -0.09702428430318832, 0.542286217212677, 1.3995537757873535, -0.7027789354324341, -0.39461657404899597, -0.1841975450515747]} +{"t": 11.5952, "q": [-0.3004693388938904, -0.02718043513596058, 0.018922748044133186, 0.6107032895088196, -0.33989381790161133, 0.010967493988573551, -0.39209914207458496, 0.017061274498701096, -0.017101449891924858, 0.5953634977340698, -0.25519099831581116, -0.020953385159373283, 0.0045130690559744835, 0.0023768635001033545, -0.02548043243587017, 0.07207313179969788, 0.12255068868398666, -0.10191385447978973, 1.3630019426345825, 0.36808350682258606, -0.5879220962524414, 0.23521438241004944, -0.3570100665092468, -0.10646785795688629, 0.5332021713256836, 1.3994818925857544, -0.6974339485168457, -0.3944128453731537, -0.18344253301620483]} +{"t": 11.6119, "q": [-0.3004608154296875, -0.02712930366396904, 0.018869180232286453, 0.6107118129730225, -0.33989381790161133, 0.010952952317893505, -0.39209914207458496, 0.017129452899098396, -0.017047883942723274, 0.595278263092041, -0.25519099831581116, -0.020953385159373283, 0.004780906718224287, 0.0023692718241363764, -0.025485321879386902, 0.06816627085208893, 0.12273044884204865, -0.10698317736387253, 1.3647276163101196, 0.3749144971370697, -0.5819779634475708, 0.24813337624073029, -0.3540979027748108, -0.1161031723022461, 0.523530900478363, 1.39944589138031, -0.6890450119972229, -0.3943409323692322, -0.18129736185073853]} +{"t": 11.6287, "q": [-0.3006056845188141, -0.027146346867084503, 0.018909357488155365, 0.6107629537582397, -0.33989381790161133, 0.010967493988573551, -0.3920820951461792, 0.01708684116601944, -0.01730232872068882, 0.5953208804130554, -0.2551953196525574, -0.021003728732466698, 0.004995177034288645, 0.002384454244747758, -0.025465741753578186, 0.06247376650571823, 0.12263457477092743, -0.11251989006996155, 1.3668608665466309, 0.3813020884990692, -0.5715397000312805, 0.2623826265335083, -0.35019105672836304, -0.12450411915779114, 0.5113669037818909, 1.3993620872497559, -0.6810515522956848, -0.3939933776855469, -0.1808779090642929]} +{"t": 11.6455, "q": [-0.3007676303386688, -0.027154870331287384, 0.018936140462756157, 0.610814094543457, -0.3398856222629547, 0.010953010991215706, -0.39209914207458496, 0.017078319564461708, -0.017677301540970802, 0.5952867865562439, -0.25519537925720215, -0.021032534539699554, 0.005396933760493994, 0.002338880905881524, -0.02541668713092804, 0.055582836270332336, 0.12262259423732758, -0.12195147573947906, 1.368886113166809, 0.3912849426269531, -0.5598670244216919, 0.2849009931087494, -0.34504979848861694, -0.13621270656585693, 0.49819621443748474, 1.398858666419983, -0.6706372499465942, -0.39375370740890503, -0.18063822388648987]} +{"t": 11.6622, "q": [-0.3009721636772156, -0.027112258598208427, 0.01900310069322586, 0.6109930872917175, -0.3398856222629547, 0.010953010991215706, -0.3921332061290741, 0.017120929434895515, -0.017851397395133972, 0.5952867865562439, -0.2551995813846588, -0.021039720624685287, 0.005115704145282507, 0.002323660533875227, -0.025259869173169136, 0.04951881989836693, 0.12171179056167603, -0.12729644775390625, 1.3689340353012085, 0.3992305099964142, -0.5528562664985657, 0.29871881008148193, -0.3410350978374481, -0.1432114988565445, 0.49017879366874695, 1.3989065885543823, -0.6625239253044128, -0.39332225918769836, -0.18067418038845062]} +{"t": 11.6789, "q": [-0.3009721636772156, -0.026992948725819588, 0.019029883667826653, 0.6110016107559204, -0.33989381790161133, 0.010952952317893505, -0.39223548769950867, 0.01727432757616043, -0.017771044746041298, 0.5952697396278381, -0.25519537925720215, -0.021032534539699554, 0.004687163513153791, 0.002323652384802699, -0.02522066980600357, 0.04200470820069313, 0.12052535265684128, -0.1327013224363327, 1.3693774938583374, 0.40692436695098877, -0.5466005206108093, 0.3107629418373108, -0.33700838685035706, -0.1504260003566742, 0.48144227266311646, 1.3988347053527832, -0.6561363339424133, -0.39287886023521423, -0.18051838874816895]} +{"t": 11.6959, "q": [-0.30094659328460693, -0.026967382058501244, 0.019083451479673386, 0.6110357046127319, -0.33989381790161133, 0.010967493988573551, -0.39225253462791443, 0.01733398251235485, -0.017704086378216743, 0.5953464508056641, -0.25519120693206787, -0.021054118871688843, 0.004071136470884085, 0.0023464227560907602, -0.025166798382997513, 0.03543735295534134, 0.11927899718284607, -0.13633254170417786, 1.3692456483840942, 0.4110828936100006, -0.5447070002555847, 0.32050612568855286, -0.333269327878952, -0.15520770847797394, 0.4724181592464447, 1.3988707065582275, -0.6493173241615295, -0.39227965474128723, -0.18122544884681702]} +{"t": 11.7126, "q": [-0.30068239569664, -0.02670319750905037, 0.019070059061050415, 0.6110526919364929, -0.33991020917892456, 0.01096737664192915, -0.3921246826648712, 0.01768338866531849, -0.017570167779922485, 0.5953038334846497, -0.25514093041419983, -0.021140528842806816, 0.0037631227169185877, 0.0026046400889754295, -0.025294514372944832, 0.027000458911061287, 0.11845207959413528, -0.14357101917266846, 1.3692935705184937, 0.4186209738254547, -0.5416989922523499, 0.33181923627853394, -0.32921865582466125, -0.16018114984035492, 0.46235141158103943, 1.3985470533370972, -0.6413357853889465, -0.3918601870536804, -0.1812014877796173]} +{"t": 11.7294, "q": [-0.3003670871257782, -0.02659240923821926, 0.019096843898296356, 0.6110526919364929, -0.33990612626075745, 0.010960143990814686, -0.3919883370399475, 0.017853831872344017, -0.017101449891924858, 0.5952697396278381, -0.25508639216423035, -0.0212197694927454, 0.004258622881025076, 0.002741315169259906, -0.025226082652807236, 0.01732918992638588, 0.11909922957420349, -0.15253521502017975, 1.3694733381271362, 0.4275851845741272, -0.5350596904754639, 0.34459441900253296, -0.3252159059047699, -0.1645314246416092, 0.45355498790740967, 1.3984991312026978, -0.6342172026634216, -0.3916324973106384, -0.18211229145526886]} +{"t": 11.7461, "q": [-0.30043524503707886, -0.02659240923821926, 0.01913701929152012, 0.6111294031143188, -0.33989793062210083, 0.010960202664136887, -0.3919457197189331, 0.017913486808538437, -0.017235370352864265, 0.5953038334846497, -0.25507381558418274, -0.021241366863250732, 0.003816690295934677, 0.003158940002322197, -0.02505509927868843, 0.005836317781358957, 0.11955463141202927, -0.16619724035263062, 1.3696051836013794, 0.44557350873947144, -0.5213737487792969, 0.3628823459148407, -0.32135701179504395, -0.16913336515426636, 0.44484245777130127, 1.3980916738510132, -0.6263555288314819, -0.3915126621723175, -0.18242387473583221]} +{"t": 11.7629, "q": [-0.30056309700012207, -0.02670319750905037, 0.01915041171014309, 0.6112061142921448, -0.3398855924606323, 0.01096753403544426, -0.39202243089675903, 0.01775156706571579, -0.017369288951158524, 0.5954487323760986, -0.2550696134567261, -0.02124856598675251, 0.003803298342972994, 0.0036524671595543623, -0.02486487291753292, -0.004841627087444067, 0.12008193880319595, -0.17649167776107788, 1.369844913482666, 0.4568865895271301, -0.5090060234069824, 0.37919285893440247, -0.3184208571910858, -0.1732439547777176, 0.4372444450855255, 1.398079752922058, -0.6194645762443542, -0.39122503995895386, -0.18390992283821106]} +{"t": 11.7796, "q": [-0.3005375266075134, -0.02670319750905037, 0.01915041171014309, 0.6112316846847534, -0.3398815095424652, 0.01096030231565237, -0.39200538396835327, 0.01774304360151291, -0.017396071925759315, 0.5954487323760986, -0.25507381558418274, -0.021241366863250732, 0.0038300822488963604, 0.004267433192580938, -0.02477346546947956, -0.016921725124120712, 0.11907526105642319, -0.1883440911769867, 1.3705040216445923, 0.47028496861457825, -0.4972614645957947, 0.39627039432525635, -0.31458592414855957, -0.17814551293849945, 0.4262429475784302, 1.397204875946045, -0.6112793684005737, -0.39142876863479614, -0.18458104133605957]} +{"t": 11.7965, "q": [-0.3005460500717163, -0.02677137404680252, 0.01917719468474388, 0.6112572550773621, -0.3398897051811218, 0.01096024364233017, -0.39200538396835327, 0.017606690526008606, -0.017342504113912582, 0.5955169200897217, -0.25507381558418274, -0.021241366863250732, 0.004379149992018938, 0.004548313561826944, -0.024661673232913017, -0.027779433876276016, 0.11776898056268692, -0.19829098880290985, 1.3710912466049194, 0.4841746985912323, -0.4848457872867584, 0.4101361334323883, -0.3109307289123535, -0.18253172934055328, 0.4172308146953583, 1.3969172239303589, -0.6035974621772766, -0.3912849426269531, -0.18667827546596527]} +{"t": 11.8132, "q": [-0.30058014392852783, -0.026779895648360252, 0.01917719468474388, 0.6112743020057678, -0.3398856222629547, 0.010953010991215706, -0.3919883370399475, 0.017555557191371918, -0.017409464344382286, 0.5954657793045044, -0.25508639216423035, -0.0212197694927454, 0.004057744517922401, 0.004814120940864086, -0.02480415441095829, -0.03815777227282524, 0.11605523526668549, -0.20688368380069733, 1.3715466260910034, 0.49444517493247986, -0.47560596466064453, 0.42170092463493347, -0.3071437180042267, -0.1869179606437683, 0.40915343165397644, 1.3961862325668335, -0.5962751507759094, -0.3914886713027954, -0.18726550042629242]} +{"t": 11.83, "q": [-0.3005545735359192, -0.026805462315678596, 0.01916380226612091, 0.6112828254699707, -0.33989381790161133, 0.010952952317893505, -0.3919968605041504, 0.017555557191371918, -0.017342504113912582, 0.595491349697113, -0.25508639216423035, -0.0212197694927454, 0.0041247038170695305, 0.004829310346394777, -0.024813972413539886, -0.048416271805763245, 0.11501260846853256, -0.21548835933208466, 1.371726393699646, 0.5030019283294678, -0.4664500057697296, 0.43400871753692627, -0.30318892002105713, -0.19092069566249847, 0.4012678265571594, 1.3955869674682617, -0.5894920825958252, -0.39147669076919556, -0.18865567445755005]} +{"t": 11.8467, "q": [-0.30058014392852783, -0.02683102898299694, 0.019123626872897148, 0.6112657785415649, -0.33990201354026794, 0.01096743531525135, -0.39197981357574463, 0.017581123858690262, -0.017275545746088028, 0.5953890681266785, -0.2550905644893646, -0.021212570369243622, 0.004057744517922401, 0.004821711219847202, -0.024799281731247902, -0.05940580368041992, 0.11337076872587204, -0.22477613389492035, 1.3725173473358154, 0.5142551064491272, -0.45290783047676086, 0.45004361867904663, -0.2989824414253235, -0.19507922232151031, 0.39112916588783264, 1.3946881294250488, -0.5831883549690247, -0.39159655570983887, -0.18957845866680145]} +{"t": 11.8635, "q": [-0.30066534876823425, -0.02683102898299694, 0.019110234454274178, 0.6112572550773621, -0.33990612626075745, 0.01097466703504324, -0.3920309543609619, 0.017538513988256454, -0.017288938164711, 0.5954146385192871, -0.2550947666168213, -0.021205371245741844, 0.0037229470908641815, 0.004753357730805874, -0.024755099788308144, -0.0698440670967102, 0.1106863021850586, -0.23229023814201355, 1.3728768825531006, 0.5240941643714905, -0.4409715533256531, 0.4618360996246338, -0.29524338245391846, -0.19939354062080383, 0.38356712460517883, 1.3945083618164062, -0.5757941007614136, -0.39154860377311707, -0.19126823544502258]} +{"t": 11.8802, "q": [-0.3006909191608429, -0.026848074048757553, 0.019123626872897148, 0.6112657785415649, -0.33991020917892456, 0.01096737664192915, -0.39209914207458496, 0.017538513988256454, -0.01714162714779377, 0.5953549742698669, -0.2551031708717346, -0.021190954372286797, 0.003655987558886409, 0.004745762795209885, -0.02475018985569477, -0.07920374721288681, 0.10634801536798477, -0.24176976084709167, 1.3735240697860718, 0.5350237488746643, -0.4264586567878723, 0.47777509689331055, -0.2917200028896332, -0.2031445950269699, 0.37510624527931213, 1.3938732147216797, -0.5694783926010132, -0.3916444778442383, -0.1919633150100708]} +{"t": 11.897, "q": [-0.30065682530403137, -0.026848074048757553, 0.019123626872897148, 0.6112146377563477, -0.33991432189941406, 0.010974608361721039, -0.3921246826648712, 0.017547035589814186, -0.017034491524100304, 0.5953038334846497, -0.2551031708717346, -0.021190954372286797, 0.0033077981788665056, 0.004745762795209885, -0.02475018985569477, -0.08822786808013916, 0.10180599242448807, -0.25038641691207886, 1.3747464418411255, 0.5427056550979614, -0.4111308455467224, 0.4915210008621216, -0.28858014941215515, -0.20645225048065186, 0.36856287717819214, 1.393393874168396, -0.5649124383926392, -0.39159655570983887, -0.19389277696609497]} +{"t": 11.9137, "q": [-0.30052047967910767, -0.026848074048757553, 0.019123626872897148, 0.6111805438995361, -0.3399307131767273, 0.01097447331994772, -0.3921161890029907, 0.01757260225713253, -0.016860397532582283, 0.595278263092041, -0.2551031708717346, -0.021190954372286797, 0.0029730007518082857, 0.004776142071932554, -0.024769825860857964, -0.09644904732704163, 0.09689246118068695, -0.26064491271972656, 1.3756572008132935, 0.5526285767555237, -0.39435291290283203, 0.5075678825378418, -0.2853923439979553, -0.20960409939289093, 0.360880970954895, 1.3926987648010254, -0.5608617663383484, -0.39170441031455994, -0.19395269453525543]} +{"t": 11.9305, "q": [-0.30066534876823425, -0.026805462315678596, 0.019123626872897148, 0.6110953092575073, -0.3399266302585602, 0.01096724160015583, -0.3923036754131317, 0.01762373559176922, -0.01678004488348961, 0.595278263092041, -0.25509896874427795, -0.021198153495788574, 0.002611419651657343, 0.004692547023296356, -0.02459845133125782, -0.1043945848941803, 0.0930095687508583, -0.26788339018821716, 1.3766878843307495, 0.5628032088279724, -0.37979209423065186, 0.5202831625938416, -0.282875657081604, -0.2125042825937271, 0.35293543338775635, 1.3924471139907837, -0.554402232170105, -0.3916205167770386, -0.1944560408592224]} +{"t": 11.9472, "q": [-0.3007761538028717, -0.0267117191106081, 0.019110234454274178, 0.6110526919364929, -0.33991432189941406, 0.010974608361721039, -0.3925422728061676, 0.017777131870388985, -0.016579166054725647, 0.5952612161636353, -0.2550905644893646, -0.021212570369243622, 0.0018212978029623628, 0.004487415309995413, -0.0242996234446764, -0.11127353459596634, 0.08985771983861923, -0.2762843370437622, 1.3769155740737915, 0.5702813267707825, -0.36674126982688904, 0.5320636630058289, -0.28071850538253784, -0.2154763638973236, 0.3471590280532837, 1.3919557332992554, -0.5502197742462158, -0.391668438911438, -0.19448000192642212]} +{"t": 11.9639, "q": [-0.30080169439315796, -0.026617975905537605, 0.019096843898296356, 0.6110101342201233, -0.3399307131767273, 0.01097447331994772, -0.3926701247692108, 0.0179305300116539, -0.016525600105524063, 0.5951845645904541, -0.25508639216423035, -0.0212197694927454, 0.001673986902460456, 0.004365845583379269, -0.02410370111465454, -0.11780493706464767, 0.08705341070890427, -0.2847931385040283, 1.3772151470184326, 0.5793294310569763, -0.35171303153038025, 0.544683039188385, -0.277986079454422, -0.21867616474628448, 0.34132272005081177, 1.3916682004928589, -0.5465525984764099, -0.3915725648403168, -0.19507922232151031]} +{"t": 11.9808, "q": [-0.30075910687446594, -0.02664354257285595, 0.019070059061050415, 0.6109334230422974, -0.3399307131767273, 0.01097447331994772, -0.3926786482334137, 0.0179305300116539, -0.016525600105524063, 0.5951419472694397, -0.25509482622146606, -0.021234141662716866, 0.001794514013454318, 0.004365845583379269, -0.02410370111465454, -0.12410863488912582, 0.08465656638145447, -0.29699307680130005, 1.3782697916030884, 0.5894321203231812, -0.3376914858818054, 0.5595674514770508, -0.2747383713722229, -0.22178007662296295, 0.33511489629745483, 1.3913086652755737, -0.5445631742477417, -0.3916085362434387, -0.19547469913959503]} +{"t": 11.9975, "q": [-0.3007761538028717, -0.026635020971298218, 0.019070059061050415, 0.6108311414718628, -0.3399307131767273, 0.01097447331994772, -0.3926786482334137, 0.017904965206980705, -0.01665951870381832, 0.5951845645904541, -0.25516653060913086, -0.021313168108463287, 0.0019284329609945416, 0.004403797443956137, -0.0240793414413929, -0.1296813040971756, 0.08273909240961075, -0.3047229051589966, 1.378449559211731, 0.6009010672569275, -0.3266060948371887, 0.5699217915534973, -0.27235350012779236, -0.224692240357399, 0.3316035270690918, 1.391296625137329, -0.5413034558296204, -0.3915725648403168, -0.19597803056240082]} +{"t": 12.0143, "q": [-0.30081021785736084, -0.026617975905537605, 0.019096843898296356, 0.6107629537582397, -0.3399266302585602, 0.01096724160015583, -0.39269566535949707, 0.017964620143175125, -0.01679343730211258, 0.5951419472694397, -0.25518766045570374, -0.021363502368330956, 0.002423933008685708, 0.004494884982705116, -0.024020813405513763, -0.1351221352815628, 0.08072574436664581, -0.31224897503852844, 1.379480242729187, 0.6070728898048401, -0.32057803869247437, 0.5758060812950134, -0.26970499753952026, -0.22684940695762634, 0.3262825310230255, 1.3908412456512451, -0.5373726487159729, -0.3916085362434387, -0.19639748334884644]} +{"t": 12.031, "q": [-0.30088692903518677, -0.026635020971298218, 0.019096843898296356, 0.6107544302940369, -0.3399225175380707, 0.010960008949041367, -0.39270418882369995, 0.017947575077414513, -0.0169675312936306, 0.5951504707336426, -0.2552594244480133, -0.021456915885210037, 0.0027453387156128883, 0.004684650804847479, -0.023898877203464508, -0.13965217769145966, 0.07944343239068985, -0.3184927701950073, 1.3799954652786255, 0.6125257611274719, -0.31529298424720764, 0.5804319977760315, -0.2675718069076538, -0.22825154662132263, 0.3221000134944916, 1.3907214403152466, -0.5335017442703247, -0.3915845453739166, -0.19714049994945526]} +{"t": 12.0478, "q": [-0.3009636402130127, -0.026626497507095337, 0.019083451479673386, 0.610745906829834, -0.33991843461990356, 0.010952777229249477, -0.3926871418952942, 0.0179305300116539, -0.017195194959640503, 0.5951334238052368, -0.2553059160709381, -0.021550385281443596, 0.002718554809689522, 0.00482886703684926, -0.023796413093805313, -0.1440623700618744, 0.07783754169940948, -0.32398155331611633, 1.3806307315826416, 0.6170557737350464, -0.31102660298347473, 0.5825412273406982, -0.2654985189437866, -0.22915036976337433, 0.31534090638160706, 1.3903738260269165, -0.5301701426506042, -0.39172837138175964, -0.19723637402057648]} +{"t": 12.0645, "q": [-0.30099770426750183, -0.026600932702422142, 0.019096843898296356, 0.6107288599014282, -0.33991843461990356, 0.010952777229249477, -0.39271271228790283, 0.017947575077414513, -0.017275545746088028, 0.5951589941978455, -0.2553481459617615, -0.02162226475775242, 0.002839081920683384, 0.005011046305298805, -0.02368914522230625, -0.1474778801202774, 0.0767110288143158, -0.32742100954055786, 1.3810501098632812, 0.6199918985366821, -0.3082462549209595, 0.5832962393760681, -0.2640005052089691, -0.2299053817987442, 0.3111344575881958, 1.389870524406433, -0.5279530882835388, -0.39168041944503784, -0.1986025869846344]} +{"t": 12.0813, "q": [-0.30093806982040405, -0.026566844433546066, 0.019096843898296356, 0.6107373833656311, -0.3399225175380707, 0.010960008949041367, -0.39269566535949707, 0.01798166334629059, -0.01731572113931179, 0.5951675176620483, -0.25537344813346863, -0.0216510146856308, 0.0028256899677217007, 0.005140095483511686, -0.0236258115619421, -0.15033012628555298, 0.07527291774749756, -0.3306088149547577, 1.381529450416565, 0.621118426322937, -0.3069639503955841, 0.5839793086051941, -0.2625863552093506, -0.23074427247047424, 0.30478280782699585, 1.3891035318374634, -0.5264909863471985, -0.3919680416584015, -0.1988542526960373]} +{"t": 12.0981, "q": [-0.30099770426750183, -0.026541277766227722, 0.019096843898296356, 0.6107373833656311, -0.3399225175380707, 0.010960008949041367, -0.39270418882369995, 0.017964620143175125, -0.017422856763005257, 0.5951419472694397, -0.25541555881500244, -0.021665334701538086, 0.002986392704769969, 0.005276729818433523, -0.023547811433672905, -0.15278688073158264, 0.07423029094934464, -0.3328258991241455, 1.3818291425704956, 0.6218854188919067, -0.30655649304389954, 0.5843388438224792, -0.2610044479370117, -0.2320745289325714, 0.2996295988559723, 1.3883605003356934, -0.524070143699646, -0.3919920325279236, -0.20006465911865234]} +{"t": 12.1148, "q": [-0.30108293890953064, -0.026541277766227722, 0.019123626872897148, 0.6107288599014282, -0.33991843461990356, 0.010952777229249477, -0.39270418882369995, 0.0179305300116539, -0.017529990524053574, 0.5951249003410339, -0.25543659925460815, -0.021672513335943222, 0.003106919815763831, 0.005360234994441271, -0.02351374365389347, -0.15613049268722534, 0.07304385304450989, -0.34320423007011414, 1.3827159404754639, 0.6309095621109009, -0.3014032542705536, 0.5899474620819092, -0.2583918869495392, -0.23390810191631317, 0.2913604974746704, 1.3870302438735962, -0.5188930034637451, -0.3923875093460083, -0.19994480907917023]} +{"t": 12.1318, "q": [-0.30115965008735657, -0.026566844433546066, 0.019123626872897148, 0.6107544302940369, -0.33991432189941406, 0.010974608361721039, -0.39271271228790283, 0.017904965206980705, -0.017610343173146248, 0.595116376876831, -0.2554408013820648, -0.021665295585989952, 0.003254230599850416, 0.005466504022479057, -0.023445457220077515, -0.1597617119550705, 0.0728161558508873, -0.35249200463294983, 1.3838783502578735, 0.6429417133331299, -0.29406893253326416, 0.5971260070800781, -0.25605496764183044, -0.23628097772598267, 0.2841220200061798, 1.3865388631820679, -0.5106478333473206, -0.39249536395072937, -0.20030434429645538]} +{"t": 12.1485, "q": [-0.30117666721343994, -0.02659240923821926, 0.019123626872897148, 0.6107629537582397, -0.3399225175380707, 0.010960008949041367, -0.39270418882369995, 0.017828265205025673, -0.017610343173146248, 0.595116376876831, -0.2554408013820648, -0.021665295585989952, 0.0032810145057737827, 0.005618297960609198, -0.023348012939095497, -0.16353674232959747, 0.07212106883525848, -0.3687186539173126, 1.385304570198059, 0.6580777764320374, -0.28415796160697937, 0.6062220335006714, -0.25375398993492126, -0.23898941278457642, 0.2739713788032532, 1.3858438730239868, -0.5051590800285339, -0.39295077323913574, -0.1998009979724884]} +{"t": 12.1653, "q": [-0.3012959957122803, -0.02664354257285595, 0.019123626872897148, 0.6108226180076599, -0.3399266302585602, 0.01096724160015583, -0.3927212357521057, 0.01776008866727352, -0.017610343173146248, 0.5950908064842224, -0.25542813539505005, -0.021658122539520264, 0.003803298342972994, 0.0057396967895329, -0.023250626400113106, -0.16798289120197296, 0.07182145863771439, -0.38114631175994873, 1.3871980905532837, 0.6715240478515625, -0.2757450342178345, 0.6148866415023804, -0.2514290511608124, -0.24209333956241608, 0.2650071680545807, 1.3855202198028564, -0.4980284571647644, -0.393010675907135, -0.19992084801197052]} +{"t": 12.182, "q": [-0.30134713649749756, -0.02677137404680252, 0.019110234454274178, 0.6108055710792542, -0.33991020917892456, 0.01096737664192915, -0.3927212357521057, 0.017598168924450874, -0.017610343173146248, 0.5950737595558167, -0.25544077157974243, -0.02165091037750244, 0.0039506093598902225, 0.0058687105774879456, -0.023187492042779922, -0.17133846879005432, 0.07128217071294785, -0.3954554498195648, 1.3884563446044922, 0.6853538751602173, -0.26836276054382324, 0.620890736579895, -0.24965538084506989, -0.24554479122161865, 0.2581402063369751, 1.385076880455017, -0.49275538325309753, -0.39317846298217773, -0.1995493322610855]} +{"t": 12.1988, "q": [-0.30154314637184143, -0.026848074048757553, 0.019083451479673386, 0.6108822822570801, -0.33991432189941406, 0.010974608361721039, -0.3927297592163086, 0.017478859052062035, -0.017717478796839714, 0.5950226187705994, -0.2554406225681305, -0.021593350917100906, 0.0042854067869484425, 0.005952188279479742, -0.023143762722611427, -0.1756887435913086, 0.07050319761037827, -0.41010019183158875, 1.3902300596237183, 0.7005138993263245, -0.2567140758037567, 0.6316046118736267, -0.24776187539100647, -0.24893632531166077, 0.25029054284095764, 1.3847652673721313, -0.4865475594997406, -0.3933941721916199, -0.19936956465244293]} +{"t": 12.2155, "q": [-0.30153462290763855, -0.026873638853430748, 0.019096843898296356, 0.6109078526496887, -0.3399184048175812, 0.010967317968606949, -0.39275532960891724, 0.017402159050107002, -0.017610343173146248, 0.5950226187705994, -0.25541117787361145, -0.021586203947663307, 0.004231838975101709, 0.006081196013838053, -0.02307084947824478, -0.17922408878803253, 0.06964033097028732, -0.42146122455596924, 1.3910210132598877, 0.7116352915763855, -0.24936775863170624, 0.6391666531562805, -0.24633574485778809, -0.2534424066543579, 0.24404676258563995, 1.3843817710876465, -0.4840069115161896, -0.39364585280418396, -0.19843479990959167]} +{"t": 12.2324, "q": [-0.30157721042633057, -0.026933293789625168, 0.019070059061050415, 0.6109248995780945, -0.33991432189941406, 0.010974608361721039, -0.392772376537323, 0.017308415845036507, -0.017583558335900307, 0.5949885249137878, -0.25540271401405334, -0.02157181315124035, 0.004298798739910126, 0.006119143683463335, -0.023056307807564735, -0.1830230951309204, 0.0683460384607315, -0.43153995275497437, 1.3920516967773438, 0.7225289344787598, -0.24135030806064606, 0.6468126177787781, -0.2446100264787674, -0.2576368749141693, 0.23648472130298615, 1.3841540813446045, -0.4791533052921295, -0.3938855230808258, -0.1979554295539856]} +{"t": 12.2492, "q": [-0.30154314637184143, -0.026958860456943512, 0.019096843898296356, 0.6109248995780945, -0.3399266004562378, 0.010996305383741856, -0.392772376537323, 0.0172658059746027, -0.01748981513082981, 0.5949714779853821, -0.2553942799568176, -0.021557440981268883, 0.0037497307639569044, 0.006119143683463335, -0.023056307807564735, -0.18549184501171112, 0.06726745516061783, -0.43768787384033203, 1.3923033475875854, 0.7287008166313171, -0.2392171174287796, 0.6507194638252258, -0.24329175055027008, -0.262406587600708, 0.23111578822135925, 1.3841540813446045, -0.4760853350162506, -0.39389750361442566, -0.19753599166870117]} +{"t": 12.2659, "q": [-0.30148348212242126, -0.02694181725382805, 0.019070059061050415, 0.6109163761138916, -0.3399348258972168, 0.010981705971062183, -0.392772376537323, 0.017308415845036507, -0.017355896532535553, 0.594903290271759, -0.2553984522819519, -0.021535856649279594, 0.0036292036529630423, 0.0061267646960914135, -0.023100338876247406, -0.18826019763946533, 0.06573347747325897, -0.441462904214859, 1.3929145336151123, 0.7303426265716553, -0.23842616379261017, 0.6503120064735413, -0.24118253588676453, -0.2667448818683624, 0.2250397801399231, 1.3837226629257202, -0.46908655762672424, -0.393981397151947, -0.1962297111749649]} +{"t": 12.2827, "q": [-0.30149200558662415, -0.02694181725382805, 0.019070059061050415, 0.6109078526496887, -0.3399348258972168, 0.010981705971062183, -0.3927809000015259, 0.01733398251235485, -0.01731572113931179, 0.5948862433433533, -0.2554026246070862, -0.021528657525777817, 0.00354885240085423, 0.006103993393480778, -0.02310515195131302, -0.19080084562301636, 0.06393583863973618, -0.44272124767303467, 1.393621563911438, 0.7307741045951843, -0.2355739176273346, 0.6480709314346313, -0.23841418325901031, -0.27093935012817383, 0.21903568506240845, 1.3832073211669922, -0.4663781225681305, -0.3940652906894684, -0.19483953714370728]} +{"t": 12.2995, "q": [-0.30157721042633057, -0.026967382058501244, 0.019043276086449623, 0.6108993291854858, -0.3399389088153839, 0.010988937690854073, -0.392772376537323, 0.017308415845036507, -0.017355896532535553, 0.594818115234375, -0.2553900480270386, -0.02155025489628315, 0.0036827712319791317, 0.006081222090870142, -0.02310996688902378, -0.1938328593969345, 0.06139518693089485, -0.44294893741607666, 1.394076943397522, 0.7303426265716553, -0.23036077618598938, 0.6454344391822815, -0.2349746972322464, -0.2750140130519867, 0.21444572508335114, 1.383015513420105, -0.462902694940567, -0.39401736855506897, -0.1940845251083374]} +{"t": 12.3162, "q": [-0.30161982774734497, -0.026958860456943512, 0.019070059061050415, 0.6109078526496887, -0.3399348258972168, 0.010981705971062183, -0.392772376537323, 0.017282849177718163, -0.017396071925759315, 0.5948010683059692, -0.25537747144699097, -0.021571870893239975, 0.003589028026908636, 0.006073614116758108, -0.023085493594408035, -0.1962297111749649, 0.05873468890786171, -0.44312870502471924, 1.3943406343460083, 0.7302348017692566, -0.22260698676109314, 0.642498254776001, -0.2313554733991623, -0.2790287137031555, 0.210682675242424, 1.3828957080841064, -0.4595590829849243, -0.3940293490886688, -0.19289809465408325]} +{"t": 12.333, "q": [-0.3016027808189392, -0.026967382058501244, 0.019083451479673386, 0.6108652353286743, -0.3399389088153839, 0.010988937690854073, -0.39275532960891724, 0.01732546091079712, -0.017396071925759315, 0.5947584509849548, -0.2553732991218567, -0.021579070016741753, 0.0037631227169185877, 0.006103980354964733, -0.023085594177246094, -0.19889020919799805, 0.05655355751514435, -0.4433324337005615, 1.3950117826461792, 0.7301269173622131, -0.2142539769411087, 0.6325034499168396, -0.2271130532026291, -0.28164127469062805, 0.20437897741794586, 1.3828836679458618, -0.45513689517974854, -0.3939933776855469, -0.19108846783638]} +{"t": 12.3497, "q": [-0.3015686869621277, -0.026975905522704124, 0.019123626872897148, 0.6108567118644714, -0.3399348258972168, 0.010981705971062183, -0.3927809000015259, 0.017402159050107002, -0.01750320754945278, 0.5948010683059692, -0.25538596510887146, -0.02160062827169895, 0.003481892868876457, 0.006096365861594677, -0.023051341995596886, -0.20057997107505798, 0.055271245539188385, -0.44336840510368347, 1.3957427740097046, 0.729683518409729, -0.20863337814807892, 0.626271665096283, -0.22382937371730804, -0.28373852372169495, 0.19930964708328247, 1.383075475692749, -0.45043909549713135, -0.39396941661834717, -0.18943464756011963]} +{"t": 12.3665, "q": [-0.30161982774734497, -0.02688216231763363, 0.01915041171014309, 0.6108481884002686, -0.3399307131767273, 0.01097447331994772, -0.39279794692993164, 0.017555557191371918, -0.017596950754523277, 0.5947754979133606, -0.25537756085395813, -0.021615026518702507, 0.003481892868876457, 0.0061494894325733185, -0.023027071729302406, -0.20265324413776398, 0.05402488633990288, -0.4455135762691498, 1.3966776132583618, 0.7301868796348572, -0.19718843698501587, 0.6201956272125244, -0.2203179895877838, -0.28521257638931274, 0.1924906224012375, 1.3829675912857056, -0.4461127817630768, -0.39389750361442566, -0.1871936023235321]} +{"t": 12.3833, "q": [-0.30152609944343567, -0.026779895648360252, 0.01915041171014309, 0.6108226180076599, -0.3399266004562378, 0.010981782339513302, -0.39278942346572876, 0.01769191212952137, -0.017556775361299515, 0.5948777198791504, -0.25539451837539673, -0.021672559902071953, 0.0031872710678726435, 0.00617981655523181, -0.02296849712729454, -0.20445087552070618, 0.052982259541749954, -0.4464603364467621, 1.3975523710250854, 0.729971170425415, -0.1911124438047409, 0.6143473386764526, -0.21726201474666595, -0.2866746485233307, 0.18854781985282898, 1.3830275535583496, -0.4443870484828949, -0.3938855230808258, -0.18573153018951416]} +{"t": 12.4, "q": [-0.30144086480140686, -0.026737285777926445, 0.01915041171014309, 0.610814094543457, -0.3399348258972168, 0.010981705971062183, -0.39278942346572876, 0.01781974360346794, -0.017543382942676544, 0.5948947668075562, -0.2553946077823639, -0.021701332181692123, 0.0030533522367477417, 0.006301261950284243, -0.022939564660191536, -0.20635637640953064, 0.0523470975458622, -0.4504989981651306, 1.3977560997009277, 0.7322481274604797, -0.18065020442008972, 0.6128732562065125, -0.2136068344116211, -0.2884243428707123, 0.18279539048671722, 1.3830394744873047, -0.4401446282863617, -0.3938615620136261, -0.18301109969615936]} +{"t": 12.4168, "q": [-0.3013726770877838, -0.02670319750905037, 0.01917719468474388, 0.6107970476150513, -0.3399225175380707, 0.010960008949041367, -0.39278942346572876, 0.01787087693810463, -0.017516599968075752, 0.5949459075927734, -0.2553904354572296, -0.021722933277487755, 0.002865865593776107, 0.006475792266428471, -0.022827686741948128, -0.20804615318775177, 0.05167597904801369, -0.45398640632629395, 1.3982714414596558, 0.7342135310173035, -0.17318403720855713, 0.6118785738945007, -0.21073061227798462, -0.29053357243537903, 0.1787566989660263, 1.3830394744873047, -0.43790358304977417, -0.39387354254722595, -0.18096180260181427]} +{"t": 12.4335, "q": [-0.3013726770877838, -0.02670319750905037, 0.01915041171014309, 0.6108226180076599, -0.33991432189941406, 0.010974608361721039, -0.39279794692993164, 0.017887920141220093, -0.017543382942676544, 0.5949885249137878, -0.2553904354572296, -0.021722933277487755, 0.002839081920683384, 0.006832452025264502, -0.022618770599365234, -0.20954418182373047, 0.051292482763528824, -0.4560357332229614, 1.3984512090682983, 0.7356037497520447, -0.16993631422519684, 0.6105243563652039, -0.2082618623971939, -0.29282256960868835, 0.17462214827537537, 1.3831114768981934, -0.43473976850509644, -0.39380162954330444, -0.1787566989660263]} +{"t": 12.4503, "q": [-0.3013386130332947, -0.026677630841732025, 0.01917719468474388, 0.6108311414718628, -0.33991020917892456, 0.01096737664192915, -0.3928149938583374, 0.01787939853966236, -0.01747642457485199, 0.5950567126274109, -0.2553946077823639, -0.021715734153985977, 0.002758730435743928, 0.007143567781895399, -0.022419564425945282, -0.21092236042022705, 0.05090899020433426, -0.45693454146385193, 1.3985111713409424, 0.7367542386054993, -0.1676712930202484, 0.6093618869781494, -0.20683574676513672, -0.2955549657344818, 0.17284847795963287, 1.383303165435791, -0.43056923151016235, -0.39380162954330444, -0.17722272872924805]} +{"t": 12.4671, "q": [-0.30125337839126587, -0.026686152443289757, 0.019230762496590614, 0.6108737587928772, -0.33990612626075745, 0.010960143990814686, -0.39284056425094604, 0.01787939853966236, -0.017409464344382286, 0.5952271223068237, -0.2553904056549072, -0.021708548069000244, 0.002731946762651205, 0.007371252868324518, -0.022332480177283287, -0.2123604714870453, 0.05035771429538727, -0.45822882652282715, 1.3985111713409424, 0.7374013662338257, -0.16357268393039703, 0.6082233786582947, -0.20593692362308502, -0.29823943972587585, 0.1690494865179062, 1.3832192420959473, -0.42810049653053284, -0.39384958148002625, -0.17492175102233887]} +{"t": 12.4839, "q": [-0.3011085093021393, -0.026677630841732025, 0.019203977659344673, 0.6108737587928772, -0.33990612626075745, 0.010960143990814686, -0.39284056425094604, 0.017853831872344017, -0.017355896532535553, 0.5953634977340698, -0.25538620352745056, -0.021715747192502022, 0.002731946762651205, 0.007561108563095331, -0.022435933351516724, -0.21339111030101776, 0.04975850135087967, -0.45915162563323975, 1.3984872102737427, 0.7377369403839111, -0.15989352762699127, 0.6077320575714111, -0.20561335980892181, -0.30079206824302673, 0.16561001539230347, 1.383231282234192, -0.4262669086456299, -0.39384958148002625, -0.17295633256435394]} +{"t": 12.5006, "q": [-0.3010999858379364, -0.026669109240174294, 0.019230762496590614, 0.6108822822570801, -0.33990201354026794, 0.010952912271022797, -0.39284056425094604, 0.017853831872344017, -0.017342504113912582, 0.5953805446624756, -0.25538620352745056, -0.021715747192502022, 0.0027989062946289778, 0.007735830266028643, -0.022617556154727936, -0.21442176401615143, 0.04908738657832146, -0.4605657458305359, 1.3985230922698975, 0.7379526495933533, -0.15478825569152832, 0.6075043678283691, -0.2055414468050003, -0.30280542373657227, 0.16049274802207947, 1.3832073211669922, -0.4241097569465637, -0.39387354254722595, -0.17182981967926025]} +{"t": 12.5176, "q": [-0.3010658919811249, -0.026617975905537605, 0.019217370077967644, 0.6109675168991089, -0.33990201354026794, 0.010952912271022797, -0.3928235173225403, 0.017853831872344017, -0.017369288951158524, 0.59542316198349, -0.25537776947021484, -0.021701375022530556, 0.0028926494996994734, 0.007826993241906166, -0.022715719416737556, -0.21506890654563904, 0.04879976436495781, -0.4616563320159912, 1.3984872102737427, 0.7379167079925537, -0.15335014462471008, 0.6074683666229248, -0.20555342733860016, -0.30473488569259644, 0.15645405650138855, 1.3829196691513062, -0.4214492440223694, -0.39389750361442566, -0.1711946576833725]} +{"t": 12.5343, "q": [-0.3011085093021393, -0.02659240923821926, 0.019203977659344673, 0.611027181148529, -0.33989381790161133, 0.010952952317893505, -0.3928235173225403, 0.017853831872344017, -0.017409464344382286, 0.59542316198349, -0.2553819417953491, -0.021694175899028778, 0.003066744189709425, 0.007880176417529583, -0.022779500111937523, -0.21557223796844482, 0.048643968999385834, -0.46314236521720886, 1.3984872102737427, 0.7381084561347961, -0.15205584466457367, 0.6074923872947693, -0.20555342733860016, -0.3061370253562927, 0.1531703770160675, 1.3828357458114624, -0.4190044701099396, -0.3939334750175476, -0.16986440122127533]} +{"t": 12.5511, "q": [-0.30111703276634216, -0.026600932702422142, 0.019217370077967644, 0.611027181148529, -0.33989381790161133, 0.010967493988573551, -0.3928149938583374, 0.017828265205025673, -0.017436247318983078, 0.5953890681266785, -0.2553861141204834, -0.021672572940587997, 0.0031604873947799206, 0.007940934039652348, -0.02281886339187622, -0.2156801074743271, 0.04854809492826462, -0.46449658274650574, 1.3985111713409424, 0.7383720874786377, -0.1513727456331253, 0.608055591583252, -0.20555342733860016, -0.30755117535591125, 0.15078552067279816, 1.3827399015426636, -0.4184292256832123, -0.39394545555114746, -0.16859407722949982]} +{"t": 12.5678, "q": [-0.3011511266231537, -0.026575366035103798, 0.01917719468474388, 0.611027181148529, -0.33989381790161133, 0.010967493988573551, -0.3928235173225403, 0.017828265205025673, -0.01750320754945278, 0.5953975915908813, -0.25539031624794006, -0.02166537381708622, 0.003240838646888733, 0.007933339104056358, -0.022813944146037102, -0.21564415097236633, 0.048596031963825226, -0.4682716131210327, 1.3985830545425415, 0.7404214143753052, -0.15023425221443176, 0.6093618869781494, -0.2055414468050003, -0.3084380030632019, 0.14795725047588348, 1.3826799392700195, -0.41745850443840027, -0.39396941661834717, -0.1657298505306244]} +{"t": 12.5846, "q": [-0.3011937141418457, -0.026566844433546066, 0.01917719468474388, 0.611027181148529, -0.3398856222629547, 0.010953010991215706, -0.3928149938583374, 0.01780269853770733, -0.01748981513082981, 0.5953634977340698, -0.255398690700531, -0.021650975570082664, 0.0033077981788665056, 0.007956109941005707, -0.022809145972132683, -0.21562017500400543, 0.04881174862384796, -0.47540223598480225, 1.3988227844238281, 0.746269702911377, -0.1482808142900467, 0.6129332184791565, -0.20550549030303955, -0.30922895669937134, 0.1459319144487381, 1.3826919794082642, -0.41618818044662476, -0.39401736855506897, -0.16316522657871246]} +{"t": 12.6013, "q": [-0.3012363314628601, -0.02659240923821926, 0.01915041171014309, 0.6110357046127319, -0.33989381790161133, 0.010952952317893505, -0.3928490877151489, 0.017785655334591866, -0.017516599968075752, 0.5953720211982727, -0.25540292263031006, -0.021658161655068398, 0.0032676225528120995, 0.007956103421747684, -0.02279936708509922, -0.21560819447040558, 0.04921921342611313, -0.4804835319519043, 1.3990265130996704, 0.7539156079292297, -0.14607572555541992, 0.618062436580658, -0.20542161166667938, -0.3097682595252991, 0.1438586413860321, 1.3827039003372192, -0.4147021174430847, -0.3940053880214691, -0.16134361922740936]} +{"t": 12.6182, "q": [-0.3012959957122803, -0.026566844433546066, 0.01915041171014309, 0.6110186576843262, -0.33989793062210083, 0.010960202664136887, -0.39288315176963806, 0.017777131870388985, -0.017516599968075752, 0.5953208804130554, -0.25543227791786194, -0.021622134372591972, 0.003361365757882595, 0.007978888228535652, -0.022814128547906876, -0.21558423340320587, 0.049614693969488144, -0.48646366596221924, 1.3990983963012695, 0.7599077224731445, -0.14412228763103485, 0.6204712986946106, -0.20537367463111877, -0.31022366881370544, 0.14140187203884125, 1.3826320171356201, -0.4141268730163574, -0.3940652906894684, -0.1594381332397461]} +{"t": 12.635, "q": [-0.30130451917648315, -0.026575366035103798, 0.019123626872897148, 0.6110101342201233, -0.33990612626075745, 0.010960143990814686, -0.39289167523384094, 0.017777131870388985, -0.017529990524053574, 0.5952697396278381, -0.255436509847641, -0.021629320457577705, 0.0033881496638059616, 0.00800925400108099, -0.022814251482486725, -0.21556025743484497, 0.04963866248726845, -0.4911614954471588, 1.399158239364624, 0.7639943361282349, -0.14009559154510498, 0.6245099902153015, -0.20536167919635773, -0.31063112616539, 0.14005963504314423, 1.382560133934021, -0.41379132866859436, -0.3941372036933899, -0.15737684071063995]} +{"t": 12.6517, "q": [-0.3013812005519867, -0.026566844433546066, 0.019123626872897148, 0.6110101342201233, -0.33991020917892456, 0.01096737664192915, -0.39292576909065247, 0.017785655334591866, -0.01747642457485199, 0.5952101349830627, -0.25544074177742004, -0.02163650654256344, 0.0034149333368986845, 0.008001672104001045, -0.02282889001071453, -0.21556025743484497, 0.04980643838644028, -0.49647051095962524, 1.399158239364624, 0.7683686017990112, -0.13612881302833557, 0.6285966038703918, -0.20537367463111877, -0.31112247705459595, 0.13958026468753815, 1.382560133934021, -0.41376736760139465, -0.39422109723091125, -0.15565112233161926]} +{"t": 12.6685, "q": [-0.3014749586582184, -0.02659240923821926, 0.019123626872897148, 0.6110186576843262, -0.33991020917892456, 0.01096737664192915, -0.392959862947464, 0.017768610268831253, -0.017516599968075752, 0.5951249003410339, -0.255449116230011, -0.021622108295559883, 0.003361365757882595, 0.007978875190019608, -0.02279457077383995, -0.21541644632816315, 0.050034139305353165, -0.5001975893974304, 1.399278163909912, 0.7706096768379211, -0.13451094925403595, 0.6344209313392639, -0.20537367463111877, -0.311458021402359, 0.13950836658477783, 1.3824282884597778, -0.4138033092021942, -0.39437687397003174, -0.15373364090919495]} +{"t": 12.6852, "q": [-0.30157721042633057, -0.026575366035103798, 0.019123626872897148, 0.6109845638275146, -0.33991432189941406, 0.010974608361721039, -0.39301952719688416, 0.017768610268831253, -0.017543382942676544, 0.5949970483779907, -0.25545749068260193, -0.021607710048556328, 0.003347973804920912, 0.00795609038323164, -0.022779809311032295, -0.2153804898262024, 0.050393667072057724, -0.50246262550354, 1.399314045906067, 0.7724911570549011, -0.13399562239646912, 0.6379442811012268, -0.20537367463111877, -0.311601847410202, 0.139364555478096, 1.3824403285980225, -0.41381528973579407, -0.39447274804115295, -0.152271568775177]} +{"t": 12.702, "q": [-0.30167096853256226, -0.02659240923821926, 0.019096843898296356, 0.6109675168991089, -0.33991432189941406, 0.010974608361721039, -0.3930536210536957, 0.017768610268831253, -0.017583558335900307, 0.5949288606643677, -0.255436509847641, -0.021629320457577705, 0.0033077981788665056, 0.00795609038323164, -0.022779809311032295, -0.21523667871952057, 0.051232561469078064, -0.5071843862533569, 1.3993860483169556, 0.7768055200576782, -0.13169464468955994, 0.6469324231147766, -0.20536167919635773, -0.31162580847740173, 0.13977201282978058, 1.3823684453964233, -0.41464221477508545, -0.39484426379203796, -0.15143266320228577]} +{"t": 12.7189, "q": [-0.30167096853256226, -0.02659240923821926, 0.019096843898296356, 0.610958993434906, -0.3399184048175812, 0.010981841012835503, -0.39307063817977905, 0.017777131870388985, -0.017543382942676544, 0.5948947668075562, -0.255423903465271, -0.021636532619595528, 0.003347973804920912, 0.00795609038323164, -0.022779809311032295, -0.21497303247451782, 0.05213138088583946, -0.5123016834259033, 1.399433970451355, 0.7788068652153015, -0.12994495034217834, 0.6552135348320007, -0.20536167919635773, -0.311601847410202, 0.1402633786201477, 1.3823564052581787, -0.4150856137275696, -0.39532363414764404, -0.1514206826686859]} +{"t": 12.7357, "q": [-0.3016453981399536, -0.026635020971298218, 0.019123626872897148, 0.6108993291854858, -0.3399348258972168, 0.010981705971062183, -0.39307063817977905, 0.01775156706571579, -0.01747642457485199, 0.5948947668075562, -0.255436509847641, -0.021629320457577705, 0.0032810145057737827, 0.007963678799569607, -0.02277494966983795, -0.21494905650615692, 0.05320996046066284, -0.5214096903800964, 1.3995777368545532, 0.7872077822685242, -0.12280235439538956, 0.6661791205406189, -0.20536167919635773, -0.311601847410202, 0.14091052114963531, 1.382332444190979, -0.41676342487335205, -0.39579102396965027, -0.1513727456331253]} +{"t": 12.7524, "q": [-0.30161982774734497, -0.026677630841732025, 0.01913701929152012, 0.6108993291854858, -0.3399348258972168, 0.010981705971062183, -0.39307916164398193, 0.01775156706571579, -0.01746303215622902, 0.5949288606643677, -0.2554323077201843, -0.021636519581079483, 0.0032006630208343267, 0.007986462675035, -0.022789711132645607, -0.21468541026115417, 0.05469600483775139, -0.5270422697067261, 1.3998054265975952, 0.7965195178985596, -0.11665444821119308, 0.6748077273368835, -0.20537367463111877, -0.3115898668766022, 0.14122210443019867, 1.3822126388549805, -0.4182734191417694, -0.39639022946357727, -0.1513727456331253]} +{"t": 12.7693, "q": [-0.30163687467575073, -0.026669109240174294, 0.01915041171014309, 0.610890805721283, -0.3399348258972168, 0.010981705971062183, -0.39307063817977905, 0.01774304360151291, -0.017396071925759315, 0.5948777198791504, -0.25542813539505005, -0.021658122539520264, 0.0032006630208343267, 0.007978862151503563, -0.022775012999773026, -0.21412214636802673, 0.056529588997364044, -0.5345324277877808, 1.399961233139038, 0.801265299320221, -0.11212441325187683, 0.6843591928482056, -0.20536167919635773, -0.3115778863430023, 0.1420849710702896, 1.3822005987167358, -0.41987931728363037, -0.3969774544239044, -0.1514206826686859]} +{"t": 12.7861, "q": [-0.3016453981399536, -0.02670319750905037, 0.01915041171014309, 0.6109078526496887, -0.3399266302585602, 0.01096724160015583, -0.39306211471557617, 0.01776008866727352, -0.017422856763005257, 0.5948777198791504, -0.2554197311401367, -0.02165813557803631, 0.0032274469267576933, 0.007963672280311584, -0.02276517078280449, -0.21348698437213898, 0.05799166485667229, -0.538786768913269, 1.4003926515579224, 0.8052200675010681, -0.11023090034723282, 0.6917654275894165, -0.20536167919635773, -0.3115898668766022, 0.14260029792785645, 1.3822126388549805, -0.42033472657203674, -0.3972530961036682, -0.15143266320228577]} +{"t": 12.8028, "q": [-0.3016453981399536, -0.026720240712165833, 0.01917719468474388, 0.6108737587928772, -0.3399348258972168, 0.010981705971062183, -0.39306211471557617, 0.01774304360151291, -0.017396071925759315, 0.594903290271759, -0.25542396306991577, -0.02166532166302204, 0.003240838646888733, 0.007940888404846191, -0.022750409319996834, -0.2124084085226059, 0.06010089069604874, -0.5435445308685303, 1.4006084203720093, 0.8082760572433472, -0.11007510870695114, 0.6986083984375, -0.20534969866275787, -0.3115299344062805, 0.14370284974575043, 1.3821886777877808, -0.4212934672832489, -0.397528737783432, -0.1514206826686859]} +{"t": 12.8196, "q": [-0.30162835121154785, -0.026737285777926445, 0.01917719468474388, 0.6108822822570801, -0.3399307131767273, 0.01097447331994772, -0.3930450975894928, 0.017726000398397446, -0.017436247318983078, 0.594903290271759, -0.2554113566875458, -0.021672533825039864, 0.003240838646888733, 0.007948489859700203, -0.022765109315514565, -0.21124593913555145, 0.06186256930232048, -0.545737624168396, 1.400920033454895, 0.8100857138633728, -0.1101350262761116, 0.702263593673706, -0.20537367463111877, -0.31151795387268066, 0.14490126073360443, 1.3821407556533813, -0.42206043004989624, -0.397900253534317, -0.1514206826686859]} +{"t": 12.8363, "q": [-0.30161982774734497, -0.02677137404680252, 0.01917719468474388, 0.6108737587928772, -0.3399266302585602, 0.01096724160015583, -0.3930450975894928, 0.017717478796839714, -0.017436247318983078, 0.5949629545211792, -0.25540298223495483, -0.021686933934688568, 0.0033077981788665056, 0.007940901443362236, -0.022769968956708908, -0.20986774563789368, 0.06421148031949997, -0.5456058382987976, 1.4011356830596924, 0.810600996017456, -0.11262775212526321, 0.7056791186332703, -0.20539763569831848, -0.31142207980155945, 0.1465071588754654, 1.3819849491119385, -0.42300719022750854, -0.3981758952140808, -0.15140870213508606]} +{"t": 12.853, "q": [-0.3016113042831421, -0.02677137404680252, 0.01917719468474388, 0.6108737587928772, -0.3399307131767273, 0.01097447331994772, -0.3930365741252899, 0.017717478796839714, -0.01747642457485199, 0.5949544310569763, -0.2554113566875458, -0.021672533825039864, 0.0032810145057737827, 0.007933313027024269, -0.022774826735258102, -0.20811805129051208, 0.06633269041776657, -0.5455938577651978, 1.4011237621307373, 0.8108527064323425, -0.11515641957521439, 0.710412859916687, -0.20539763569831848, -0.31127825379371643, 0.1481010615825653, 1.38188898563385, -0.4240378439426422, -0.3987031877040863, -0.1513967216014862]} +{"t": 12.8698, "q": [-0.30158573389053345, -0.02677137404680252, 0.01917719468474388, 0.610890805721283, -0.33991432189941406, 0.010974608361721039, -0.3930365741252899, 0.017726000398397446, -0.01747642457485199, 0.594980001449585, -0.2554030120372772, -0.02170131914317608, 0.0032944062259048223, 0.007948496378958225, -0.022774888202548027, -0.20602081716060638, 0.06893326342105865, -0.54505455493927, 1.4011237621307373, 0.8102534413337708, -0.11784088611602783, 0.7143437266349792, -0.20539763569831848, -0.31102660298347473, 0.149227574467659, 1.381877064704895, -0.4247089624404907, -0.3991226255893707, -0.1513248085975647]} +{"t": 12.8865, "q": [-0.3015516400337219, -0.026754330843687057, 0.019203977659344673, 0.610890805721283, -0.33991432189941406, 0.010974608361721039, -0.39302805066108704, 0.01774304360151291, -0.01744963973760605, 0.5950140953063965, -0.25539878010749817, -0.021694133058190346, 0.0032274469267576933, 0.00795609038323164, -0.022779809311032295, -0.20340825617313385, 0.07226487994194031, -0.5443834066390991, 1.4010398387908936, 0.8092827200889587, -0.12326974421739578, 0.7161293625831604, -0.20539763569831848, -0.31082287430763245, 0.15027019381523132, 1.3818410634994507, -0.42639872431755066, -0.3999495506286621, -0.1512768715620041]} +{"t": 12.9033, "q": [-0.30153462290763855, -0.026737285777926445, 0.019203977659344673, 0.6108993291854858, -0.33991432189941406, 0.010974608361721039, -0.3930365741252899, 0.01776008866727352, -0.01746303215622902, 0.595048189163208, -0.25539878010749817, -0.021694133058190346, 0.00321405497379601, 0.00795609038323164, -0.022779809311032295, -0.20061592757701874, 0.07605189085006714, -0.5430172085762024, 1.4013394117355347, 0.8071975111961365, -0.1326294243335724, 0.7200002670288086, -0.20542161166667938, -0.31042739748954773, 0.1516963243484497, 1.381805181503296, -0.42757317423820496, -0.40071654319763184, -0.15121695399284363]} +{"t": 12.92, "q": [-0.3015090525150299, -0.02670319750905037, 0.019203977659344673, 0.6109078526496887, -0.33991020917892456, 0.01096737664192915, -0.3930110037326813, 0.01781122200191021, -0.01747642457485199, 0.5950396656990051, -0.25539878010749817, -0.021694133058190346, 0.0031872710678726435, 0.007963685318827629, -0.022784728556871414, -0.1973801851272583, 0.07976700365543365, -0.5420824885368347, 1.4011956453323364, 0.8060949444770813, -0.14007163047790527, 0.7281615138053894, -0.20543359220027924, -0.3100918233394623, 0.1531224399805069, 1.3816972970962524, -0.4287596344947815, -0.4016513228416443, -0.15116901695728302]} +{"t": 12.9368, "q": [-0.3014749586582184, -0.026677630841732025, 0.019203977659344673, 0.6109248995780945, -0.33991020917892456, 0.01096737664192915, -0.3930024802684784, 0.01781974360346794, -0.01746303215622902, 0.595116376876831, -0.25539878010749817, -0.021694133058190346, 0.0031872710678726435, 0.007978875190019608, -0.02279457077383995, -0.19432421028614044, 0.08319449424743652, -0.5408840179443359, 1.4013394117355347, 0.804465115070343, -0.14731009304523468, 0.7341536283493042, -0.2054455727338791, -0.30955255031585693, 0.1548961102962494, 1.3817331790924072, -0.43034154176712036, -0.40228646993637085, -0.15119299292564392]} +{"t": 12.9536, "q": [-0.3014238178730011, -0.026660587638616562, 0.019190587103366852, 0.6109163761138916, -0.33990201354026794, 0.01096743531525135, -0.39301952719688416, 0.01781974360346794, -0.01748981513082981, 0.5951589941978455, -0.2553946077823639, -0.021701332181692123, 0.0032676225528120995, 0.00795609038323164, -0.022779809311032295, -0.19153188169002533, 0.08658602833747864, -0.5403327345848083, 1.4013394117355347, 0.8030868768692017, -0.15543539822101593, 0.736778199672699, -0.20545755326747894, -0.3087855577468872, 0.15604659914970398, 1.3816972970962524, -0.43153995275497437, -0.403472900390625, -0.15119299292564392]} +{"t": 12.9704, "q": [-0.3014664351940155, -0.026677630841732025, 0.019203977659344673, 0.6109675168991089, -0.33990612626075745, 0.010960143990814686, -0.3929939568042755, 0.017785655334591866, -0.017543382942676544, 0.5951504707336426, -0.2553945481777191, -0.021686946973204613, 0.0033881496638059616, 0.007963685318827629, -0.022784728556871414, -0.18969830870628357, 0.08927049487829208, -0.5401290059089661, 1.4015551805496216, 0.8027873039245605, -0.15887486934661865, 0.7370178699493408, -0.20543359220027924, -0.30768299102783203, 0.15724502503871918, 1.3817092180252075, -0.4319114685058594, -0.404215931892395, -0.151300847530365]} +{"t": 12.9872, "q": [-0.3015175759792328, -0.026660587638616562, 0.019203977659344673, 0.6110016107559204, -0.33990201354026794, 0.010952912271022797, -0.3929939568042755, 0.017785655334591866, -0.017583558335900307, 0.5951334238052368, -0.25539034605026245, -0.02167975902557373, 0.003347973804920912, 0.007933313027024269, -0.022774826735258102, -0.18815234303474426, 0.09145162254571915, -0.5399252772331238, 1.401902675628662, 0.8020442724227905, -0.1609840989112854, 0.7370178699493408, -0.20545755326747894, -0.3063167929649353, 0.15844343602657318, 1.3816972970962524, -0.4321032166481018, -0.40503084659576416, -0.151300847530365]} +{"t": 13.0041, "q": [-0.3015175759792328, -0.026660587638616562, 0.019190587103366852, 0.6110357046127319, -0.33989793062210083, 0.010960202664136887, -0.3930110037326813, 0.017777131870388985, -0.017610343173146248, 0.5951589941978455, -0.25539034605026245, -0.02167975902557373, 0.0033747577108442783, 0.007925724610686302, -0.022779684513807297, -0.1868220865726471, 0.0935848131775856, -0.5397934913635254, 1.402118444442749, 0.8010016679763794, -0.1636326164007187, 0.7368980050086975, -0.20545755326747894, -0.3047229051589966, 0.15922240912914276, 1.3816972970962524, -0.43227100372314453, -0.4056660234928131, -0.1513248085975647]} +{"t": 13.0209, "q": [-0.3015175759792328, -0.026660587638616562, 0.01917719468474388, 0.6110953092575073, -0.33989793062210083, 0.010960202664136887, -0.3929939568042755, 0.017768610268831253, -0.017610343173146248, 0.5951760411262512, -0.255386084318161, -0.021658187732100487, 0.0034952848218381405, 0.00794850941747427, -0.022794445976614952, -0.18580342829227448, 0.09541840106248856, -0.5397455096244812, 1.402358055114746, 0.7998511791229248, -0.16613730788230896, 0.7368500828742981, -0.20546954870224, -0.3034166097640991, 0.15991750359535217, 1.3816852569580078, -0.4323309361934662, -0.40625324845314026, -0.1513487845659256]} +{"t": 13.0376, "q": [-0.30153462290763855, -0.026686152443289757, 0.019203977659344673, 0.6111464500427246, -0.33990201354026794, 0.01096743531525135, -0.3929939568042755, 0.01768338866531849, -0.017610343173146248, 0.5951675176620483, -0.2553776502609253, -0.02164381556212902, 0.0038702578749507666, 0.007948515936732292, -0.022804226726293564, -0.18514429032802582, 0.09703627228736877, -0.5397335290908813, 1.4027296304702759, 0.7988204956054688, -0.16810272634029388, 0.736550509929657, -0.20546954870224, -0.30215826630592346, 0.1603369563817978, 1.381649374961853, -0.43246275186538696, -0.4067206382751465, -0.1513727456331253]} +{"t": 13.0544, "q": [-0.30159425735473633, -0.02676285244524479, 0.01917719468474388, 0.611120879650116, -0.33990201354026794, 0.01096743531525135, -0.39297690987586975, 0.017589645460247993, -0.01762373559176922, 0.5951675176620483, -0.25537756085395813, -0.021615026518702507, 0.004097919911146164, 0.008024455979466438, -0.022843651473522186, -0.18480873107910156, 0.09821072220802307, -0.5397335290908813, 1.4031010866165161, 0.7986527681350708, -0.16936106979846954, 0.7361550331115723, -0.2055414468050003, -0.3013433516025543, 0.16090020537376404, 1.3816133737564087, -0.43253466486930847, -0.4070921540260315, -0.15136076509952545]} +{"t": 13.0712, "q": [-0.3016453981399536, -0.026839550584554672, 0.01917719468474388, 0.6112316846847534, -0.33990201354026794, 0.01096743531525135, -0.39297690987586975, 0.017470337450504303, -0.017596950754523277, 0.5951675176620483, -0.25536489486694336, -0.021593468263745308, 0.004338974133133888, 0.00806242972612381, -0.02286825329065323, -0.18459302186965942, 0.0989537462592125, -0.5397455096244812, 1.4033766984939575, 0.7985329031944275, -0.1700681447982788, 0.7361070513725281, -0.2055893838405609, -0.3009478747844696, 0.16117584705352783, 1.3814935684204102, -0.43248671293258667, -0.4074157178401947, -0.1513727456331253]} +{"t": 13.088, "q": [-0.30162835121154785, -0.026924772188067436, 0.019217370077967644, 0.6112146377563477, -0.33991020917892456, 0.010981899686157703, -0.392959862947464, 0.01738511584699154, -0.017516599968075752, 0.5951249003410339, -0.25534799695014954, -0.021564705297350883, 0.004258622881025076, 0.008138364180922508, -0.022897901013493538, -0.18363428115844727, 0.09889382869005203, -0.5221047401428223, 1.4027535915374756, 0.7809999585151672, -0.17948773503303528, 0.7072250843048096, -0.20618858933448792, -0.3007561266422272, 0.16131965816020966, 1.381529450416565, -0.4323309361934662, -0.40752357244491577, -0.15158846974372864]} +{"t": 13.1048, "q": [-0.30162835121154785, -0.026924772188067436, 0.01917719468474388, 0.6112146377563477, -0.33991020917892456, 0.010981899686157703, -0.392959862947464, 0.01733398251235485, -0.01748981513082981, 0.5950908064842224, -0.25533950328826904, -0.021521562710404396, 0.004030960611999035, 0.008130788803100586, -0.022922318428754807, -0.18379007279872894, 0.09793508797883987, -0.5034213662147522, 1.4026696681976318, 0.7610102891921997, -0.18672621250152588, 0.6735494136810303, -0.20707543194293976, -0.30063626170158386, 0.16137957572937012, 1.3815054893493652, -0.43229496479034424, -0.4075595438480377, -0.15173228085041046]} +{"t": 13.1217, "q": [-0.3016027808189392, -0.026916250586509705, 0.01915041171014309, 0.6112061142921448, -0.3399184048175812, 0.010981841012835503, -0.39297690987586975, 0.01732546091079712, -0.017288938164711, 0.5950822830200195, -0.25535207986831665, -0.02149994671344757, 0.0036292036529630423, 0.008092808537185192, -0.022887935861945152, -0.18316689133644104, 0.09793508797883987, -0.4815261662006378, 1.4026097059249878, 0.7357835173606873, -0.20161062479019165, 0.6403411030769348, -0.20820194482803345, -0.30028873682022095, 0.16170315444469452, 1.381421685218811, -0.4322470426559448, -0.4076434075832367, -0.15173228085041046]} +{"t": 13.1385, "q": [-0.3016624450683594, -0.026873638853430748, 0.01916380226612091, 0.6112316846847534, -0.3399184048175812, 0.010981841012835503, -0.39297690987586975, 0.01739363744854927, -0.017262153327465057, 0.5949459075927734, -0.2553141117095947, -0.021464042365550995, 0.003562244353815913, 0.008039665408432484, -0.02288283035159111, -0.18313094973564148, 0.09813882410526276, -0.466677725315094, 1.402573823928833, 0.7189576625823975, -0.21138975024223328, 0.6130889654159546, -0.2090648114681244, -0.300252765417099, 0.16199077665805817, 1.381421685218811, -0.43229496479034424, -0.40767937898635864, -0.15170830488204956]} +{"t": 13.1552, "q": [-0.3017050623893738, -0.02689068391919136, 0.019190587103366852, 0.6112231612205505, -0.3399142920970917, 0.010989131405949593, -0.39297690987586975, 0.017368070781230927, -0.01730232872068882, 0.5949288606643677, -0.255305677652359, -0.02144966833293438, 0.0035220684949308634, 0.007933339104056358, -0.022813944146037102, -0.1826755404472351, 0.09954097121953964, -0.44614872336387634, 1.402358055114746, 0.7007176280021667, -0.2226669043302536, 0.585848867893219, -0.21025124192237854, -0.29966554045677185, 0.1642797589302063, 1.3814336061477661, -0.4337210953235626, -0.4077153205871582, -0.15145663917064667]} +{"t": 13.1722, "q": [-0.30167949199676514, -0.026848074048757553, 0.019190587103366852, 0.6112146377563477, -0.3399266004562378, 0.010996305383741856, -0.39298543334007263, 0.01745329238474369, -0.017288938164711, 0.5948777198791504, -0.255305677652359, -0.02144966833293438, 0.0032006630208343267, 0.00789540447294712, -0.022848015651106834, -0.1823999136686325, 0.10088320821523666, -0.42605119943618774, 1.4023340940475464, 0.6786666512489319, -0.23248198628425598, 0.5560920238494873, -0.21130585670471191, -0.29888656735420227, 0.1675274819135666, 1.3813138008117676, -0.43870654702186584, -0.4078111946582794, -0.151300847530365]} +{"t": 13.1889, "q": [-0.3016027808189392, -0.026754330843687057, 0.01917719468474388, 0.6112146377563477, -0.3399307131767273, 0.01097447331994772, -0.3929939568042755, 0.01757260225713253, -0.017248760908842087, 0.5948862433433533, -0.25530990958213806, -0.021456856280565262, 0.002865865593776107, 0.007842248305678368, -0.022823352366685867, -0.18151307106018066, 0.10332798957824707, -0.4081587493419647, 1.4021782875061035, 0.6600791215896606, -0.24380707740783691, 0.5348799228668213, -0.21249230206012726, -0.29784396290779114, 0.17402292788028717, 1.3813496828079224, -0.4447346031665802, -0.4078950881958008, -0.15116901695728302]} +{"t": 13.2057, "q": [-0.30162835121154785, -0.026669109240174294, 0.01915041171014309, 0.6111464500427246, -0.3399348258972168, 0.010981705971062183, -0.39301952719688416, 0.017717478796839714, -0.017288938164711, 0.5948436856269836, -0.25532257556915283, -0.02147841453552246, 0.002758730435743928, 0.007728333584964275, -0.022759323939681053, -0.18126140534877777, 0.10650380700826645, -0.3961625397205353, 1.4021424055099487, 0.6492334008216858, -0.24931982159614563, 0.5205467939376831, -0.21323531866073608, -0.2962260842323303, 0.17872075736522675, 1.3813856840133667, -0.4497320353984833, -0.40814676880836487, -0.1507735401391983]} +{"t": 13.2225, "q": [-0.30167949199676514, -0.026575366035103798, 0.019190587103366852, 0.611120879650116, -0.3399307131767273, 0.01097447331994772, -0.3930365741252899, 0.01781974360346794, -0.017369288951158524, 0.5947925448417664, -0.2553352415561676, -0.021499991416931152, 0.002651595277711749, 0.0076675559394061565, -0.02269062213599682, -0.18105767667293549, 0.11005114018917084, -0.38810914754867554, 1.402118444442749, 0.6425222754478455, -0.2548685073852539, 0.5156332850456238, -0.21376262605190277, -0.2946321666240692, 0.18356238305568695, 1.3813977241516113, -0.452296644449234, -0.4083864390850067, -0.1506536900997162]} +{"t": 13.2394, "q": [-0.301688015460968, -0.02652423270046711, 0.019190587103366852, 0.6110782623291016, -0.3399266302585602, 0.01096724160015583, -0.3930365741252899, 0.017887920141220093, -0.017382681369781494, 0.5947328805923462, -0.25533950328826904, -0.021521562710404396, 0.0028256899677217007, 0.00769032072275877, -0.022676046937704086, -0.18099775910377502, 0.1143295094370842, -0.3822847902774811, 1.4020224809646606, 0.6382678747177124, -0.2601895034313202, 0.5120260119438171, -0.21413414180278778, -0.2932300269603729, 0.18665431439876556, 1.381421685218811, -0.4550650119781494, -0.4086381196975708, -0.1504499614238739]} +{"t": 13.2562, "q": [-0.3016624450683594, -0.026541277766227722, 0.01917719468474388, 0.61104416847229, -0.3399307131767273, 0.01097447331994772, -0.39307063817977905, 0.017853831872344017, -0.01747642457485199, 0.5947669744491577, -0.2553732395172119, -0.02155028097331524, 0.0029194331727921963, 0.007796601392328739, -0.022676479071378708, -0.18051838874816895, 0.11809255182743073, -0.37423139810562134, 1.4016270637512207, 0.6350440979003906, -0.2655104994773865, 0.5020191669464111, -0.21509286761283875, -0.29224732518196106, 0.19017766416072845, 1.3814575672149658, -0.4607095718383789, -0.40890175104141235, -0.15009044110774994]} +{"t": 13.2729, "q": [-0.301688015460968, -0.026541277766227722, 0.01915041171014309, 0.611027181148529, -0.3399348258972168, 0.010981705971062183, -0.39306211471557617, 0.017845310270786285, -0.017529990524053574, 0.5947584509849548, -0.25536903738975525, -0.02155749872326851, 0.0031604873947799206, 0.007986449636518955, -0.022770153358578682, -0.180254727602005, 0.12180766463279724, -0.36879056692123413, 1.4016510248184204, 0.6310413479804993, -0.2669486105442047, 0.4956076443195343, -0.2163512110710144, -0.2913365066051483, 0.19368904829025269, 1.381421685218811, -0.4641130864620209, -0.40947699546813965, -0.14964702725410461]} +{"t": 13.2898, "q": [-0.30167949199676514, -0.026549799367785454, 0.01916380226612091, 0.6110101342201233, -0.3399266302585602, 0.01096724160015583, -0.39306211471557617, 0.01780269853770733, -0.017543382942676544, 0.5947669744491577, -0.25537747144699097, -0.021571870893239975, 0.003254230599850416, 0.008077573962509632, -0.022809641435742378, -0.17923606932163239, 0.12498348206281662, -0.36227113008499146, 1.4016270637512207, 0.621573805809021, -0.27200594544410706, 0.48570865392684937, -0.21829266846179962, -0.2908931076526642, 0.1977277249097824, 1.3813977241516113, -0.46888279914855957, -0.41069939732551575, -0.14829280972480774]} +{"t": 13.3065, "q": [-0.3016965389251709, -0.02658388763666153, 0.01917719468474388, 0.6109930872917175, -0.3399184048175812, 0.010981841012835503, -0.39306211471557617, 0.017794176936149597, -0.017529990524053574, 0.594749927520752, -0.2553732991218567, -0.021579070016741753, 0.003361365757882595, 0.00810037087649107, -0.02284396067261696, -0.17852900922298431, 0.12744024395942688, -0.35724976658821106, 1.4016270637512207, 0.616864025592804, -0.27636823058128357, 0.4786140024662018, -0.21965886652469635, -0.29058149456977844, 0.19911789894104004, 1.3813856840133667, -0.47008123993873596, -0.41316816210746765, -0.14689065515995026]} +{"t": 13.3233, "q": [-0.30172210931777954, -0.026617975905537605, 0.01916380226612091, 0.6110016107559204, -0.3399307131767273, 0.01097447331994772, -0.3930536210536957, 0.01774304360151291, -0.017543382942676544, 0.5947669744491577, -0.25537747144699097, -0.021571870893239975, 0.0033881496638059616, 0.00809277594089508, -0.02283903956413269, -0.1774624139070511, 0.1297052651643753, -0.35265979170799255, 1.4015791416168213, 0.6143113970756531, -0.28161731362342834, 0.4730892777442932, -0.2216722071170807, -0.2906414270401001, 0.20218586921691895, 1.3814096450805664, -0.47141149640083313, -0.4156608581542969, -0.14448182284832]} +{"t": 13.3401, "q": [-0.3017561733722687, -0.02665206417441368, 0.01917719468474388, 0.6110101342201233, -0.3399225175380707, 0.010989072732627392, -0.3930536210536957, 0.017726000398397446, -0.01750320754945278, 0.5947243571281433, -0.2553732991218567, -0.021579070016741753, 0.003347973804920912, 0.008039619773626328, -0.022814376279711723, -0.17604826390743256, 0.13108345866203308, -0.3489327132701874, 1.4015910625457764, 0.6119624972343445, -0.2852964699268341, 0.47010520100593567, -0.22417691349983215, -0.2906414270401001, 0.20596089959144592, 1.381421685218811, -0.4721425175666809, -0.4169551730155945, -0.14294783771038055]} +{"t": 13.3569, "q": [-0.3018243610858917, -0.02670319750905037, 0.01917719468474388, 0.6110612154006958, -0.3399225175380707, 0.010989072732627392, -0.3930536210536957, 0.017649300396442413, -0.01748981513082981, 0.5947243571281433, -0.25534793734550476, -0.021535934880375862, 0.0033881496638059616, 0.007978868670761585, -0.022784791886806488, -0.17480191588401794, 0.13179051876068115, -0.34659576416015625, 1.4015671014785767, 0.6105243563652039, -0.28606346249580383, 0.4683195650577545, -0.22732876241207123, -0.2906174659729004, 0.20914870500564575, 1.3814575672149658, -0.47432366013526917, -0.4175783395767212, -0.14209695160388947]} +{"t": 13.3737, "q": [-0.3018328845500946, -0.02677137404680252, 0.01916380226612091, 0.6110782623291016, -0.3399307131767273, 0.01097447331994772, -0.3930450975894928, 0.017521468922495842, -0.017409464344382286, 0.5947158336639404, -0.25532686710357666, -0.021514389663934708, 0.003361365757882595, 0.00795609038323164, -0.022779809311032295, -0.1735915094614029, 0.13200624287128448, -0.34537339210510254, 1.4015910625457764, 0.6098652482032776, -0.2862671911716461, 0.46601858735084534, -0.2307083159685135, -0.2907373011112213, 0.21343904733657837, 1.3814456462860107, -0.48031577467918396, -0.41791391372680664, -0.1413898915052414]} +{"t": 13.3906, "q": [-0.3018243610858917, -0.026848074048757553, 0.01917719468474388, 0.6110867857933044, -0.3399225175380707, 0.010989072732627392, -0.39306211471557617, 0.017419204115867615, -0.017342504113912582, 0.5947243571281433, -0.2553141117095947, -0.021464042365550995, 0.0033881496638059616, 0.00794091448187828, -0.022789526730775833, -0.17263276875019073, 0.13206616044044495, -0.34431877732276917, 1.4015551805496216, 0.6094937324523926, -0.2866267263889313, 0.46166831254959106, -0.23403993248939514, -0.2907732427120209, 0.21765749156475067, 1.381421685218811, -0.4854689836502075, -0.41822549700737, -0.14065885543823242]} +{"t": 13.4073, "q": [-0.3018243610858917, -0.026873638853430748, 0.01916380226612091, 0.6111549735069275, -0.3399266004562378, 0.010996305383741856, -0.39301952719688416, 0.017402159050107002, -0.01730232872068882, 0.5946987867355347, -0.2552887797355652, -0.021420907229185104, 0.0033747577108442783, 0.007910548709332943, -0.022789401933550835, -0.17188973724842072, 0.13204219937324524, -0.34364765882492065, 1.4015671014785767, 0.6094098091125488, -0.2868184745311737, 0.45957106351852417, -0.23717980086803436, -0.2906893789768219, 0.2201981544494629, 1.3814336061477661, -0.4893758296966553, -0.41853708028793335, -0.1393166184425354]} +{"t": 13.424, "q": [-0.30184993147850037, -0.026907728984951973, 0.019123626872897148, 0.6111549735069275, -0.3399307131767273, 0.011003537103533745, -0.39301952719688416, 0.017351027578115463, -0.017221977934241295, 0.5946817398071289, -0.2552465796470642, -0.021363411098718643, 0.0034149333368986845, 0.00789534579962492, -0.022760003805160522, -0.170895054936409, 0.13200624287128448, -0.3424372375011444, 1.4014472961425781, 0.609170138835907, -0.2874176800251007, 0.4586842358112335, -0.24087093770503998, -0.2906414270401001, 0.22307436168193817, 1.3814456462860107, -0.49059823155403137, -0.4189205765724182, -0.1372193843126297]} +{"t": 13.4408, "q": [-0.30185845494270325, -0.02695033885538578, 0.01913701929152012, 0.6111549735069275, -0.3399225175380707, 0.010989072732627392, -0.39302805066108704, 0.0172658059746027, -0.017195194959640503, 0.5946987867355347, -0.2552254796028137, -0.021327480673789978, 0.003361365757882595, 0.007880156859755516, -0.022750163450837135, -0.1700441688299179, 0.13200624287128448, -0.3415384292602539, 1.4014112949371338, 0.609026312828064, -0.28770530223846436, 0.4581209719181061, -0.24445421993732452, -0.29065340757369995, 0.22542327642440796, 1.3815054893493652, -0.49114951491355896, -0.41904041171073914, -0.13483451306819916]} +{"t": 13.4576, "q": [-0.3018243610858917, -0.026967382058501244, 0.01915041171014309, 0.6111634969711304, -0.3399184048175812, 0.010981841012835503, -0.39302805066108704, 0.01727432757616043, -0.017235370352864265, 0.5947243571281433, -0.2552086412906647, -0.021327488124370575, 0.003361365757882595, 0.00787256844341755, -0.02275502122938633, -0.1687019318342209, 0.1323298215866089, -0.3395250737667084, 1.401255488395691, 0.6082953214645386, -0.2887239456176758, 0.45689859986305237, -0.24869664013385773, -0.29067736864089966, 0.22839535772800446, 1.3814575672149658, -0.4924198389053345, -0.419423907995224, -0.1317545771598816]} +{"t": 13.4744, "q": [-0.30181583762168884, -0.026984427124261856, 0.01915041171014309, 0.6111549735069275, -0.3399307131767273, 0.010989014990627766, -0.3930110037326813, 0.017308415845036507, -0.017208585515618324, 0.5947073101997375, -0.2552086412906647, -0.021327488124370575, 0.003361365757882595, 0.00785740464925766, -0.022784296423196793, -0.16780312359333038, 0.1327732354402542, -0.33857834339141846, 1.4012196063995361, 0.6078398823738098, -0.28935912251472473, 0.45565223693847656, -0.2518724501132965, -0.29067736864089966, 0.2292102873325348, 1.3812059164047241, -0.49305498600006104, -0.42010700702667236, -0.12977717816829681]} +{"t": 13.4913, "q": [-0.30181583762168884, -0.026958860456943512, 0.01915041171014309, 0.6111549735069275, -0.3399225175380707, 0.010989072732627392, -0.3929939568042755, 0.01733398251235485, -0.017275545746088028, 0.5947158336639404, -0.2552171051502228, -0.021341878920793533, 0.0034283252898603678, 0.007811849471181631, -0.022774333134293556, -0.1670241504907608, 0.13324061036109924, -0.33735594153404236, 1.4010158777236938, 0.6074923872947693, -0.2902219891548157, 0.4544897675514221, -0.2544970214366913, -0.2906893789768219, 0.23031283915042877, 1.3811699151992798, -0.49345046281814575, -0.42065829038619995, -0.12902216613292694]} +{"t": 13.508, "q": [-0.3018414080142975, -0.026958860456943512, 0.019123626872897148, 0.6111464500427246, -0.3399266004562378, 0.010996305383741856, -0.3929939568042755, 0.017368070781230927, -0.017355896532535553, 0.5946987867355347, -0.2552171051502228, -0.021341878920793533, 0.00354885240085423, 0.007789065130054951, -0.0227595716714859, -0.16589762270450592, 0.1339716613292694, -0.33624139428138733, 1.400572419166565, 0.6071088910102844, -0.29219937324523926, 0.45353102684020996, -0.2567380666732788, -0.2908211946487427, 0.2329254001379013, 1.38114595413208, -0.49446913599967957, -0.42100584506988525, -0.12842296063899994]} +{"t": 13.5248, "q": [-0.30190107226371765, -0.02694181725382805, 0.019110234454274178, 0.6111464500427246, -0.3399184048175812, 0.010981841012835503, -0.3929939568042755, 0.017410682514309883, -0.01747642457485199, 0.5946987867355347, -0.2552255392074585, -0.021356251090765, 0.003589028026908636, 0.00777387572452426, -0.022749729454517365, -0.16424380242824554, 0.13508619368076324, -0.33518680930137634, 1.400177001953125, 0.6069650650024414, -0.2946561574935913, 0.45258426666259766, -0.2588352859020233, -0.2908211946487427, 0.2365685999393463, 1.3810621500015259, -0.4987235367298126, -0.4220244884490967, -0.1275361180305481]} +{"t": 13.5417, "q": [-0.30190107226371765, -0.026899205520749092, 0.01916380226612091, 0.6111549735069275, -0.3399307131767273, 0.01097447331994772, -0.3929939568042755, 0.01750442571938038, -0.017610343173146248, 0.5946987867355347, -0.2552551031112671, -0.021406572312116623, 0.0037497307639569044, 0.0077510918490588665, -0.02273496799170971, -0.16267387568950653, 0.13618873059749603, -0.33408424258232117, 1.399901270866394, 0.6069890260696411, -0.29636988043785095, 0.4521048963069916, -0.26020148396492004, -0.29079723358154297, 0.23849806189537048, 1.3809422254562378, -0.5026064515113831, -0.4233187735080719, -0.1261579394340515]} +{"t": 13.5585, "q": [-0.3019266128540039, -0.02689068391919136, 0.01917719468474388, 0.6111038327217102, -0.3399266302585602, 0.01096724160015583, -0.3929939568042755, 0.01750442571938038, -0.017757654190063477, 0.5947243571281433, -0.2552804946899414, -0.021478479728102684, 0.003910433501005173, 0.007773862686008215, -0.02273017168045044, -0.16131965816020966, 0.13736319541931152, -0.33283787965774536, 1.3997095823287964, 0.6069650650024414, -0.2976761758327484, 0.4519011676311493, -0.2610164284706116, -0.29074928164482117, 0.24049943685531616, 1.3809782266616821, -0.5064533352851868, -0.4243853986263275, -0.12473181635141373]} +{"t": 13.5753, "q": [-0.30194365978240967, -0.02689068391919136, 0.01913701929152012, 0.6110101342201233, -0.3399225175380707, 0.010960008949041367, -0.39301952719688416, 0.017529990524053574, -0.017878180369734764, 0.5947158336639404, -0.25531846284866333, -0.021514402702450752, 0.0038568659219890833, 0.0077814445830881596, -0.022715533152222633, -0.15982162952423096, 0.13862153887748718, -0.3317233622074127, 1.399673581123352, 0.6069890260696411, -0.3000969886779785, 0.45166146755218506, -0.2619032561779022, -0.2907852530479431, 0.2431119978427887, 1.3810021877288818, -0.5092337131500244, -0.4254160225391388, -0.12253870069980621]} +{"t": 13.592, "q": [-0.30195218324661255, -0.02682250738143921, 0.01915041171014309, 0.6109675168991089, -0.3399225175380707, 0.010960008949041367, -0.3930024802684784, 0.01764077879488468, -0.017904965206980705, 0.5947073101997375, -0.25532272458076477, -0.021550359204411507, 0.0038300822488963604, 0.007789032533764839, -0.02271067537367344, -0.1582876443862915, 0.13995178043842316, -0.33089643716812134, 1.3995777368545532, 0.6070369482040405, -0.3023739755153656, 0.45154163241386414, -0.2625264525413513, -0.29074928164482117, 0.2465035319328308, 1.3810021877288818, -0.5106717944145203, -0.4260871410369873, -0.12147210538387299]} +{"t": 13.609, "q": [-0.30189254879951477, -0.026745807379484177, 0.01915041171014309, 0.6109419465065002, -0.3399266302585602, 0.01096724160015583, -0.3930110037326813, 0.017726000398397446, -0.017904965206980705, 0.5947328805923462, -0.2553691267967224, -0.02160065434873104, 0.0036292036529630423, 0.00777384964749217, -0.022710613906383514, -0.1567896157503128, 0.14147378504276276, -0.3301294445991516, 1.399505853652954, 0.6071088910102844, -0.3044951856136322, 0.4514937102794647, -0.26317358016967773, -0.29074928164482117, 0.25021862983703613, 1.3810261487960815, -0.5113309621810913, -0.42677024006843567, -0.12042947858572006]} +{"t": 13.6257, "q": [-0.301875501871109, -0.0267117191106081, 0.01915041171014309, 0.6109248995780945, -0.3399225175380707, 0.010960008949041367, -0.3930024802684784, 0.017768610268831253, -0.017904965206980705, 0.5947328805923462, -0.2553817927837372, -0.02162221260368824, 0.0036292036529630423, 0.007789032533764839, -0.02271067537367344, -0.15547135472297668, 0.14269617199897766, -0.3294823169708252, 1.3994100093841553, 0.6071328520774841, -0.30547788739204407, 0.4514457583427429, -0.26337730884552, -0.29070135951042175, 0.2521960437297821, 1.3810381889343262, -0.5117144584655762, -0.42727357149124146, -0.12011788785457611]} +{"t": 13.6425, "q": [-0.30185845494270325, -0.02670319750905037, 0.01916380226612091, 0.6109078526496887, -0.3399225175380707, 0.010960008949041367, -0.3930024802684784, 0.017768610268831253, -0.017918355762958527, 0.5947414040565491, -0.2553776502609253, -0.02164381556212902, 0.00354885240085423, 0.00777384964749217, -0.022710613906383514, -0.15422499179840088, 0.14363093674182892, -0.3290388882160187, 1.3992302417755127, 0.6071568131446838, -0.30644863843917847, 0.45143377780914307, -0.26371288299560547, -0.29072532057762146, 0.25470075011253357, 1.3810621500015259, -0.5126012563705444, -0.4276091456413269, -0.11963851749897003]} +{"t": 13.6593, "q": [-0.30186697840690613, -0.02670319750905037, 0.01916380226612091, 0.6108993291854858, -0.33991020917892456, 0.01096737664192915, -0.3930024802684784, 0.01781122200191021, -0.017945140600204468, 0.5947584509849548, -0.2553776502609253, -0.02164381556212902, 0.0035220684949308634, 0.007743464317172766, -0.02268115244805813, -0.1531224399805069, 0.14461363852024078, -0.32861945033073425, 1.3991223573684692, 0.607228696346283, -0.30692797899246216, 0.4514577388763428, -0.2638806700706482, -0.29067736864089966, 0.2568459212779999, 1.3810381889343262, -0.5133442878723145, -0.42792072892189026, -0.1194228008389473]} +{"t": 13.676, "q": [-0.30184993147850037, -0.026686152443289757, 0.01917719468474388, 0.6109078526496887, -0.3399225175380707, 0.010960008949041367, -0.3929939568042755, 0.01781974360346794, -0.017931748181581497, 0.5947754979133606, -0.2553776502609253, -0.02164381556212902, 0.0035220684949308634, 0.007743457797914743, -0.022671373561024666, -0.15216371417045593, 0.14550048112869263, -0.32827189564704895, 1.3990744352340698, 0.6072406768798828, -0.3073354661464691, 0.4514457583427429, -0.26401248574256897, -0.2906414270401001, 0.2584398090839386, 1.3810381889343262, -0.5147943496704102, -0.42840009927749634, -0.11903931200504303]} +{"t": 13.6928, "q": [-0.3018414080142975, -0.02670319750905037, 0.019190587103366852, 0.6109078526496887, -0.33991020917892456, 0.01096737664192915, -0.3929939568042755, 0.017794176936149597, -0.017931748181581497, 0.5947840213775635, -0.2553776502609253, -0.02164381556212902, 0.00354885240085423, 0.0077358693815767765, -0.02267623133957386, -0.15148060023784637, 0.14637532830238342, -0.32794833183288574, 1.3990265130996704, 0.6074324250221252, -0.3075631558895111, 0.4514697194099426, -0.2640364468097687, -0.29055753350257874, 0.2595423758029938, 1.3810501098632812, -0.5158130526542664, -0.4287596344947815, -0.11872772127389908]} +{"t": 13.7097, "q": [-0.3018328845500946, -0.0267117191106081, 0.019230762496590614, 0.6109334230422974, -0.33991432189941406, 0.010974608361721039, -0.3930024802684784, 0.01776008866727352, -0.017891572788357735, 0.5947925448417664, -0.2553691864013672, -0.021629424765706062, 0.003562244353815913, 0.007728281430900097, -0.022681090980768204, -0.15086941421031952, 0.14721421897411346, -0.3278404772281647, 1.398858666419983, 0.6074444055557251, -0.30792269110679626, 0.4515056908130646, -0.26409637928009033, -0.2904856503009796, 0.26036927103996277, 1.3810381889343262, -0.5169155597686768, -0.4292390048503876, -0.11834422498941422]} +{"t": 13.7265, "q": [-0.30181583762168884, -0.026720240712165833, 0.019244154915213585, 0.6109248995780945, -0.3399184048175812, 0.010967317968606949, -0.3930024802684784, 0.017726000398397446, -0.017838004976511, 0.5948010683059692, -0.2553565502166748, -0.021622251719236374, 0.003562244353815913, 0.007743470836430788, -0.02269093133509159, -0.15023425221443176, 0.14816097915172577, -0.32764872908592224, 1.3988347053527832, 0.6074683666229248, -0.3080904483795166, 0.4515056908130646, -0.2641802728176117, -0.29037776589393616, 0.26135197281837463, 1.3810621500015259, -0.5187371969223022, -0.4296105206012726, -0.1179727166891098]} +{"t": 13.7432, "q": [-0.3017987906932831, -0.026745807379484177, 0.019230762496590614, 0.6109334230422974, -0.33991432189941406, 0.010974608361721039, -0.3930024802684784, 0.0177004337310791, -0.01778443716466427, 0.5948095917701721, -0.2553480863571167, -0.021593494340777397, 0.0035220684949308634, 0.0077282944694161415, -0.02270064875483513, -0.1494792401790619, 0.1491556614637375, -0.3274809420108795, 1.3985950946807861, 0.6074683666229248, -0.308545857667923, 0.45158958435058594, -0.26421621441841125, -0.29015007615089417, 0.26246652007102966, 1.3810381889343262, -0.5193244218826294, -0.43017375469207764, -0.11757723242044449]} +{"t": 13.76, "q": [-0.30177322030067444, -0.026737285777926445, 0.019230762496590614, 0.6109419465065002, -0.33991432189941406, 0.010974608361721039, -0.3930110037326813, 0.01768338866531849, -0.017730869352817535, 0.5948095917701721, -0.25535646080970764, -0.021579096093773842, 0.003481892868876457, 0.0077282944694161415, -0.02270064875483513, -0.1486043930053711, 0.15023425221443176, -0.3273850679397583, 1.3985230922698975, 0.6075403094291687, -0.309061199426651, 0.4516255259513855, -0.26426413655281067, -0.289790540933609, 0.2633533477783203, 1.3810621500015259, -0.5195161700248718, -0.43084487318992615, -0.11689413338899612]} +{"t": 13.7769, "q": [-0.3017902672290802, -0.026737285777926445, 0.019217370077967644, 0.6109419465065002, -0.33991432189941406, 0.010974608361721039, -0.3930110037326813, 0.01768338866531849, -0.017690693959593773, 0.5947840213775635, -0.2553522288799286, -0.02157191000878811, 0.0034952848218381405, 0.007720699533820152, -0.02269572764635086, -0.1477055698633194, 0.15125291049480438, -0.3273371160030365, 1.3984991312026978, 0.6075522899627686, -0.30932483077049255, 0.45163750648498535, -0.26426413655281067, -0.28943103551864624, 0.26394057273864746, 1.3810621500015259, -0.5196000337600708, -0.4316598176956177, -0.11586348712444305]} +{"t": 13.7937, "q": [-0.30180731415748596, -0.026745807379484177, 0.019217370077967644, 0.610958993434906, -0.33991432189941406, 0.010974608361721039, -0.3929939568042755, 0.017649300396442413, -0.017677301540970802, 0.5947840213775635, -0.2553606331348419, -0.021557511761784554, 0.0035220684949308634, 0.0077282944694161415, -0.02270064875483513, -0.14689065515995026, 0.15246331691741943, -0.32727721333503723, 1.3984872102737427, 0.6075283288955688, -0.3094087243080139, 0.4516494870185852, -0.2642521560192108, -0.2890235483646393, 0.2644079625606537, 1.381074070930481, -0.5196360349655151, -0.43324172496795654, -0.11478491127490997]} +{"t": 13.8105, "q": [-0.30181583762168884, -0.02677137404680252, 0.019203977659344673, 0.610958993434906, -0.33991432189941406, 0.010974608361721039, -0.3929939568042755, 0.01764077879488468, -0.01762373559176922, 0.5947754979133606, -0.2553563714027405, -0.021550307050347328, 0.0034551091957837343, 0.00771310506388545, -0.02269080840051174, -0.14609968662261963, 0.15380555391311646, -0.32719331979751587, 1.3985111713409424, 0.607600212097168, -0.3096364140510559, 0.4516734778881073, -0.2642521560192108, -0.28875991702079773, 0.2647075653076172, 1.3810980319976807, -0.5196959376335144, -0.4363935887813568, -0.11368235945701599]} +{"t": 13.8273, "q": [-0.3018243610858917, -0.02676285244524479, 0.019217370077967644, 0.610958993434906, -0.3399225175380707, 0.010960008949041367, -0.3930024802684784, 0.01764077879488468, -0.01763712614774704, 0.5947584509849548, -0.25534793734550476, -0.021535934880375862, 0.0034551091957837343, 0.00771310506388545, -0.02269080840051174, -0.14548850059509277, 0.1549919843673706, -0.3270854651927948, 1.3985230922698975, 0.6076121926307678, -0.30969634652137756, 0.4516734778881073, -0.2642521560192108, -0.2884243428707123, 0.26483938097953796, 1.381074070930481, -0.5196959376335144, -0.4385747015476227, -0.11314307153224945]} +{"t": 13.844, "q": [-0.3017987906932831, -0.02677137404680252, 0.019190587103366852, 0.6109504699707031, -0.3399184048175812, 0.010967317968606949, -0.3930110037326813, 0.01764077879488468, -0.01765051856637001, 0.5947669744491577, -0.2553563714027405, -0.021550307050347328, 0.0035220684949308634, 0.007697915658354759, -0.022680966183543205, -0.1452607959508896, 0.1561424732208252, -0.32702553272247314, 1.3984872102737427, 0.6076361536979675, -0.30974429845809937, 0.45168545842170715, -0.2642521560192108, -0.2881247401237488, 0.26483938097953796, 1.3810501098632812, -0.5196599960327148, -0.4395933747291565, -0.11249592155218124]} +{"t": 13.8608, "q": [-0.30181583762168884, -0.02677137404680252, 0.019230762496590614, 0.610958993434906, -0.3399266302585602, 0.01096724160015583, -0.39298543334007263, 0.01764077879488468, -0.01762373559176922, 0.594749927520752, -0.2553563714027405, -0.021550307050347328, 0.0034952848218381405, 0.007720699533820152, -0.02269572764635086, -0.1452607959508896, 0.15692144632339478, -0.3269416391849518, 1.398475170135498, 0.6076241731643677, -0.3097802400588989, 0.4517214000225067, -0.2642761468887329, -0.28802886605262756, 0.2648513913154602, 1.381074070930481, -0.519648015499115, -0.43983304500579834, -0.11213639378547668]} +{"t": 13.8776, "q": [-0.3018243610858917, -0.026796940714120865, 0.019217370077967644, 0.610958993434906, -0.3399184048175812, 0.010981841012835503, -0.3930110037326813, 0.017606690526008606, -0.017610343173146248, 0.5947158336639404, -0.2553521990776062, -0.021557506173849106, 0.0034551091957837343, 0.007720699533820152, -0.02269572764635086, -0.1452607959508896, 0.15767645835876465, -0.3267858624458313, 1.3983793258666992, 0.6076121926307678, -0.30988809466362, 0.45173338055610657, -0.2642761468887329, -0.28802886605262756, 0.26474350690841675, 1.3810621500015259, -0.5195401310920715, -0.4402884542942047, -0.11157313734292984]} +{"t": 13.8943, "q": [-0.3018243610858917, -0.026779895648360252, 0.019203977659344673, 0.610958993434906, -0.3399184048175812, 0.010981841012835503, -0.3930110037326813, 0.017589645460247993, -0.017583558335900307, 0.5947158336639404, -0.2553563714027405, -0.021550307050347328, 0.0035086767747998238, 0.007728281430900097, -0.022681090980768204, -0.1452607959508896, 0.15822772681713104, -0.3267379105091095, 1.3983433246612549, 0.6076241731643677, -0.30994802713394165, 0.4517214000225067, -0.2642761468887329, -0.28805282711982727, 0.264755517244339, 1.3810621500015259, -0.5195161700248718, -0.4406359791755676, -0.11123757809400558]} +{"t": 13.9113, "q": [-0.3018328845500946, -0.026796940714120865, 0.019203977659344673, 0.610958993434906, -0.3399266004562378, 0.010996305383741856, -0.3930110037326813, 0.017606690526008606, -0.017596950754523277, 0.5946987867355347, -0.25534799695014954, -0.021564705297350883, 0.003481892868876457, 0.00771310506388545, -0.02269080840051174, -0.14521285891532898, 0.1585393100976944, -0.3266899883747101, 1.3983314037322998, 0.6076121926307678, -0.30999594926834106, 0.4517693519592285, -0.2642761468887329, -0.2880408465862274, 0.26428812742233276, 1.3810621500015259, -0.5193483829498291, -0.4410674273967743, -0.11060241609811783]} +{"t": 13.9282, "q": [-0.30185845494270325, -0.026796940714120865, 0.019230762496590614, 0.6109675168991089, -0.3399184048175812, 0.010981841012835503, -0.3930024802684784, 0.017606690526008606, -0.01762373559176922, 0.594673216342926, -0.25534793734550476, -0.021535934880375862, 0.0034952848218381405, 0.00771310506388545, -0.02269080840051174, -0.14518888294696808, 0.15868312120437622, -0.32665401697158813, 1.3982954025268555, 0.6076361536979675, -0.3101397752761841, 0.4517933130264282, -0.26428812742233276, -0.28805282711982727, 0.26401248574256897, 1.3810501098632812, -0.5192165374755859, -0.44154679775238037, -0.10984741151332855]} +{"t": 13.945, "q": [-0.301875501871109, -0.026813985779881477, 0.019230762496590614, 0.6109504699707031, -0.3399225175380707, 0.010989072732627392, -0.3930024802684784, 0.017589645460247993, -0.01762373559176922, 0.5946902632713318, -0.25534799695014954, -0.021564705297350883, 0.003481892868876457, 0.007705510128289461, -0.022685887292027473, -0.14515294134616852, 0.15868312120437622, -0.3266300559043884, 1.398247480392456, 0.6076121926307678, -0.31027159094810486, 0.45184123516082764, -0.26426413655281067, -0.28805282711982727, 0.26306572556495667, 1.3810381889343262, -0.5187132358551025, -0.4421579837799072, -0.10899652540683746]} +{"t": 13.9617, "q": [-0.301875501871109, -0.026805462315678596, 0.019203977659344673, 0.6109504699707031, -0.3399307131767273, 0.01097447331994772, -0.3930024802684784, 0.017589645460247993, -0.01763712614774704, 0.5946987867355347, -0.25534799695014954, -0.021564705297350883, 0.0035086767747998238, 0.007697915658354759, -0.022680966183543205, -0.145081028342247, 0.15864717960357666, -0.32665401697158813, 1.398235559463501, 0.6076481342315674, -0.31042739748954773, 0.45184123516082764, -0.26426413655281067, -0.28805282711982727, 0.262406587600708, 1.3810261487960815, -0.5185454487800598, -0.4428171217441559, -0.10842128843069077]} +{"t": 13.9785, "q": [-0.30185845494270325, -0.026839550584554672, 0.019230762496590614, 0.6109675168991089, -0.3399184048175812, 0.010981841012835503, -0.3929939568042755, 0.017606690526008606, -0.01762373559176922, 0.5947073101997375, -0.25534799695014954, -0.021564705297350883, 0.00354885240085423, 0.007697915658354759, -0.022680966183543205, -0.14502111077308655, 0.1586591601371765, -0.32665401697158813, 1.3981995582580566, 0.6077560186386108, -0.3106550872325897, 0.45188918709754944, -0.26426413655281067, -0.28805282711982727, 0.26099246740341187, 1.3810021877288818, -0.5179582238197327, -0.4439676105976105, -0.10792993009090424]} +{"t": 13.9953, "q": [-0.301875501871109, -0.02683102898299694, 0.019203977659344673, 0.610958993434906, -0.3399184048175812, 0.010981841012835503, -0.3929939568042755, 0.017606690526008606, -0.01765051856637001, 0.5947073101997375, -0.2553396224975586, -0.02157910354435444, 0.0035220684949308634, 0.007675131317228079, -0.02266620472073555, -0.14493721723556519, 0.15868312120437622, -0.32665401697158813, 1.398175597190857, 0.6077799797058105, -0.3108108937740326, 0.45191314816474915, -0.2642761468887329, -0.2880648076534271, 0.2597940266132355, 1.3809661865234375, -0.5176585912704468, -0.44532182812690735, -0.10779810696840286]} +{"t": 14.012, "q": [-0.3018840253353119, -0.02683102898299694, 0.019203977659344673, 0.6109675168991089, -0.3399266004562378, 0.010996305383741856, -0.3929939568042755, 0.017615212127566338, -0.017690693959593773, 0.5947328805923462, -0.2553311884403229, -0.021564731374382973, 0.00354885240085423, 0.007705510128289461, -0.022685887292027473, -0.14484134316444397, 0.15869511663913727, -0.32665401697158813, 1.3981635570526123, 0.6078518629074097, -0.311002641916275, 0.4519490897655487, -0.2642761468887329, -0.2881007790565491, 0.25817617774009705, 1.380846381187439, -0.5161006450653076, -0.44691571593284607, -0.10751048475503922]} +{"t": 14.0289, "q": [-0.30184993147850037, -0.02682250738143921, 0.019230762496590614, 0.6109504699707031, -0.33991432189941406, 0.010974608361721039, -0.3929939568042755, 0.017615212127566338, -0.017690693959593773, 0.594749927520752, -0.2553311884403229, -0.021564731374382973, 0.0035354604478925467, 0.0077054970897734165, -0.02266632951796055, -0.14474546909332275, 0.15873105823993683, -0.32665401697158813, 1.3981395959854126, 0.6079357862472534, -0.3111104965209961, 0.45196110010147095, -0.26426413655281067, -0.2881007790565491, 0.2574930489063263, 1.380678653717041, -0.5140274167060852, -0.44776660203933716, -0.10746254771947861]} +{"t": 14.0456, "q": [-0.3018414080142975, -0.026805462315678596, 0.019217370077967644, 0.6109504699707031, -0.3399184048175812, 0.010967317968606949, -0.3929939568042755, 0.01764077879488468, -0.01765051856637001, 0.5947669744491577, -0.255327045917511, -0.021600719541311264, 0.00354885240085423, 0.00769032072275877, -0.022676046937704086, -0.14461363852024078, 0.15876701474189758, -0.32665401697158813, 1.3981276750564575, 0.6079357862472534, -0.3113621473312378, 0.45203298330307007, -0.2642521560192108, -0.28813672065734863, 0.25680994987487793, 1.3804868459701538, -0.5121578574180603, -0.4484257400035858, -0.10740263015031815]} +{"t": 14.0624, "q": [-0.3018328845500946, -0.026805462315678596, 0.019190587103366852, 0.610958993434906, -0.3399184048175812, 0.010967317968606949, -0.3929939568042755, 0.01764077879488468, -0.017690693959593773, 0.5947669744491577, -0.2553396224975586, -0.02157910354435444, 0.0035220684949308634, 0.00769032072275877, -0.022676046937704086, -0.14444586634635925, 0.15874305367469788, -0.32667800784111023, 1.3980916738510132, 0.607971727848053, -0.3116617500782013, 0.452068954706192, -0.2642521560192108, -0.2881487011909485, 0.25605496764183044, 1.380391001701355, -0.5107796788215637, -0.4488331973552704, -0.10737866163253784]} +{"t": 14.0793, "q": [-0.30180731415748596, -0.026805462315678596, 0.019230762496590614, 0.610958993434906, -0.33991432189941406, 0.010974608361721039, -0.39298543334007263, 0.017649300396442413, -0.017690693959593773, 0.5947754979133606, -0.25532281398773193, -0.021579129621386528, 0.0034952848218381405, 0.007697915658354759, -0.022680966183543205, -0.14421816170215607, 0.15876701474189758, -0.32670196890830994, 1.398019790649414, 0.6080676317214966, -0.3119613528251648, 0.45218878984451294, -0.26421621441841125, -0.28816068172454834, 0.2549404203891754, 1.3803191184997559, -0.5102882981300354, -0.44933652877807617, -0.10729476809501648]} +{"t": 14.096, "q": [-0.3017987906932831, -0.026805462315678596, 0.019230762496590614, 0.610958993434906, -0.33991432189941406, 0.010974608361721039, -0.3929939568042755, 0.017666345462203026, -0.017717478796839714, 0.594818115234375, -0.2553354799747467, -0.02160070650279522, 0.003481892868876457, 0.007682725787162781, -0.022671125829219818, -0.1440863460302353, 0.15876701474189758, -0.3266899883747101, 1.3979958295822144, 0.6081275343894958, -0.31220105290412903, 0.4522247314453125, -0.26419225335121155, -0.2882445752620697, 0.2542453408241272, 1.3802831172943115, -0.50995272397995, -0.44951629638671875, -0.10725881904363632]} +{"t": 14.1129, "q": [-0.30180731415748596, -0.026788419112563133, 0.019244154915213585, 0.6109675168991089, -0.33991432189941406, 0.010974608361721039, -0.3930024802684784, 0.017666345462203026, -0.017730869352817535, 0.5948095917701721, -0.2553228437900543, -0.02160791866481304, 0.0034952848218381405, 0.007705510128289461, -0.022685887292027473, -0.14387062191963196, 0.15876701474189758, -0.3266899883747101, 1.3979718685150146, 0.6081514954566956, -0.31254860758781433, 0.45230862498283386, -0.2641323208808899, -0.28835242986679077, 0.2534184157848358, 1.3803070783615112, -0.5091378092765808, -0.4496241509914398, -0.10686333477497101]} +{"t": 14.1298, "q": [-0.3017987906932831, -0.026779895648360252, 0.019203977659344673, 0.6109760403633118, -0.33991432189941406, 0.010974608361721039, -0.3929939568042755, 0.017666345462203026, -0.017717478796839714, 0.5948095917701721, -0.255327045917511, -0.021600719541311264, 0.0034551091957837343, 0.00769032072275877, -0.022676046937704086, -0.14364291727542877, 0.15879099071025848, -0.32670196890830994, 1.3979358673095703, 0.608199417591095, -0.31303995847702026, 0.45235657691955566, -0.2640244662761688, -0.28835242986679077, 0.25195634365081787, 1.380331039428711, -0.5084067583084106, -0.44969606399536133, -0.10655174404382706]} +{"t": 14.1465, "q": [-0.30177322030067444, -0.026796940714120865, 0.019230762496590614, 0.610958993434906, -0.33991020917892456, 0.01096737664192915, -0.3929939568042755, 0.017674867063760757, -0.017690693959593773, 0.5948436856269836, -0.25533124804496765, -0.021593501791357994, 0.0034551091957837343, 0.007705510128289461, -0.022685887292027473, -0.14329537749290466, 0.1588149517774582, -0.3267139494419098, 1.3979239463806152, 0.6082233786582947, -0.3133874833583832, 0.452524334192276, -0.2638806700706482, -0.28848427534103394, 0.2502426207065582, 1.3802831172943115, -0.5076158046722412, -0.44983989000320435, -0.10606039315462112]} +{"t": 14.1632, "q": [-0.30177322030067444, -0.026779895648360252, 0.019257545471191406, 0.6109675168991089, -0.33991432189941406, 0.010974608361721039, -0.39297690987586975, 0.017674867063760757, -0.017704086378216743, 0.5948266386985779, -0.25534382462501526, -0.02157190442085266, 0.003468500915914774, 0.007705510128289461, -0.022685887292027473, -0.14285196363925934, 0.15882693231105804, -0.32679784297943115, 1.3979119062423706, 0.6082353591918945, -0.3139507472515106, 0.4527041018009186, -0.2636769115924835, -0.2886160910129547, 0.24849291145801544, 1.3802831172943115, -0.5065851807594299, -0.4499717056751251, -0.10562895983457565]} +{"t": 14.18, "q": [-0.30176469683647156, -0.02677137404680252, 0.019217370077967644, 0.6109760403633118, -0.33991432189941406, 0.010974608361721039, -0.39298543334007263, 0.017666345462203026, -0.017704086378216743, 0.5948010683059692, -0.25534799695014954, -0.021564705297350883, 0.0034551091957837343, 0.00771310506388545, -0.02269080840051174, -0.14230069518089294, 0.1588868647813797, -0.3268817365169525, 1.3978999853134155, 0.6082473397254944, -0.31458592414855957, 0.45295578241348267, -0.26331740617752075, -0.28890371322631836, 0.24674321711063385, 1.3802591562271118, -0.5061178207397461, -0.45021137595176697, -0.1050417348742485]} +{"t": 14.1967, "q": [-0.3017817437648773, -0.026788419112563133, 0.019217370077967644, 0.6109760403633118, -0.3399184048175812, 0.010967317968606949, -0.3929939568042755, 0.017649300396442413, -0.017704086378216743, 0.5947840213775635, -0.25536057353019714, -0.02154310792684555, 0.003481892868876457, 0.00771310506388545, -0.02269080840051174, -0.1417614072561264, 0.1589348018169403, -0.3269416391849518, 1.3979239463806152, 0.6083192825317383, -0.3151491582393646, 0.45311155915260315, -0.26292192935943604, -0.2892872095108032, 0.24547287821769714, 1.3802591562271118, -0.5057702660560608, -0.45036718249320984, -0.10468220710754395]} +{"t": 14.2135, "q": [-0.30181583762168884, -0.026779895648360252, 0.019217370077967644, 0.6109675168991089, -0.33991432189941406, 0.010974608361721039, -0.39297690987586975, 0.017666345462203026, -0.017704086378216743, 0.594749927520752, -0.2553648054599762, -0.021550312638282776, 0.0034551091957837343, 0.007728281430900097, -0.022681090980768204, -0.14093448221683502, 0.15903067588806152, -0.327037513256073, 1.3978999853134155, 0.6083672046661377, -0.31571242213249207, 0.45336323976516724, -0.26227477192878723, -0.2896946668624878, 0.24369922280311584, 1.3801872730255127, -0.5054227113723755, -0.45076265931129456, -0.10429871082305908]} +{"t": 14.2302, "q": [-0.3018243610858917, -0.026779895648360252, 0.019203977659344673, 0.6109675168991089, -0.3399184048175812, 0.010981841012835503, -0.3930024802684784, 0.017649300396442413, -0.017730869352817535, 0.5947754979133606, -0.2553563714027405, -0.021550307050347328, 0.0034952848218381405, 0.007705510128289461, -0.022685887292027473, -0.1401675045490265, 0.1591145545244217, -0.32712140679359436, 1.3978639841079712, 0.608427107334137, -0.3163715600967407, 0.45355498790740967, -0.26156771183013916, -0.29012611508369446, 0.24179372191429138, 1.3801872730255127, -0.5050272345542908, -0.4513019621372223, -0.10413093119859695]} +{"t": 14.247, "q": [-0.30180731415748596, -0.026796940714120865, 0.019230762496590614, 0.6109504699707031, -0.3399184048175812, 0.010981841012835503, -0.3930024802684784, 0.017657823860645294, -0.017677301540970802, 0.5947669744491577, -0.25536057353019714, -0.02154310792684555, 0.0034952848218381405, 0.007720686495304108, -0.022676169872283936, -0.13922074437141418, 0.15927034616470337, -0.3271573781967163, 1.3978760242462158, 0.6085349917411804, -0.31679099798202515, 0.45368680357933044, -0.26071682572364807, -0.2906174659729004, 0.2398163378238678, 1.3802112340927124, -0.5043321251869202, -0.4517573416233063, -0.1038433089852333]} +{"t": 14.2637, "q": [-0.3018328845500946, -0.026796940714120865, 0.019217370077967644, 0.6109334230422974, -0.3399266302585602, 0.01096724160015583, -0.3929939568042755, 0.017666345462203026, -0.017690693959593773, 0.5947584509849548, -0.25535643100738525, -0.02156471088528633, 0.0035220684949308634, 0.00771310506388545, -0.02269080840051174, -0.13840581476688385, 0.1594381332397461, -0.32716935873031616, 1.3978760242462158, 0.6085469722747803, -0.3176299035549164, 0.4539265036582947, -0.25962626934051514, -0.291168749332428, 0.2379707545042038, 1.380175232887268, -0.502918004989624, -0.4525962471961975, -0.10368751734495163]} +{"t": 14.2804, "q": [-0.30184993147850037, -0.02677137404680252, 0.019217370077967644, 0.6109504699707031, -0.3399266302585602, 0.01096724160015583, -0.3930024802684784, 0.017649300396442413, -0.017730869352817535, 0.5946902632713318, -0.25536057353019714, -0.02154310792684555, 0.003468500915914774, 0.007682725787162781, -0.022671125829219818, -0.13771073520183563, 0.159689798951149, -0.327181339263916, 1.397887945175171, 0.6085469722747803, -0.31873244047164917, 0.45413023233413696, -0.25842782855033875, -0.29173198342323303, 0.23661653697490692, 1.380175232887268, -0.5021150708198547, -0.4539145231246948, -0.1035197377204895]} +{"t": 14.2971, "q": [-0.3018414080142975, -0.026796940714120865, 0.019203977659344673, 0.6109504699707031, -0.3399307131767273, 0.01097447331994772, -0.3930024802684784, 0.017674867063760757, -0.017704086378216743, 0.5946817398071289, -0.25534799695014954, -0.021564705297350883, 0.0034551091957837343, 0.007697915658354759, -0.022680966183543205, -0.1369677037000656, 0.1600133776664734, -0.32719331979751587, 1.3978999853134155, 0.60857093334198, -0.32033833861351013, 0.45433396100997925, -0.25722941756248474, -0.29240310192108154, 0.23605328798294067, 1.3801991939544678, -0.5015997290611267, -0.4563233554363251, -0.10332798957824707]} +{"t": 14.3139, "q": [-0.30185845494270325, -0.026779895648360252, 0.019217370077967644, 0.6109504699707031, -0.3399184048175812, 0.010981841012835503, -0.3930024802684784, 0.017649300396442413, -0.017704086378216743, 0.5946902632713318, -0.25534799695014954, -0.021564705297350883, 0.0034551091957837343, 0.007667523343116045, -0.022641725838184357, -0.13614079356193542, 0.16050472855567932, -0.3272412419319153, 1.397887945175171, 0.60857093334198, -0.3222198784351349, 0.4545257091522217, -0.2564863860607147, -0.2928944528102875, 0.2355499416589737, 1.3801991939544678, -0.5015398263931274, -0.4583127200603485, -0.10301639884710312]} +{"t": 14.3306, "q": [-0.30185845494270325, -0.026779895648360252, 0.019203977659344673, 0.6109248995780945, -0.3399225175380707, 0.010989072732627392, -0.39301952719688416, 0.017657823860645294, -0.017744261771440506, 0.5946902632713318, -0.2553647756576538, -0.02153589017689228, 0.0034149333368986845, 0.007667529862374067, -0.02265150658786297, -0.13526594638824463, 0.1609121859073639, -0.3272652328014374, 1.3978999853134155, 0.6086308360099792, -0.3237178921699524, 0.4546455442905426, -0.2561867833137512, -0.29309821128845215, 0.23533423244953156, 1.3802112340927124, -0.5014559626579285, -0.45912766456604004, -0.10288457572460175]} diff --git a/Data/G1/think_1.jsonl b/Data/G1/think_1.jsonl new file mode 100644 index 0000000..d6bc1bb --- /dev/null +++ b/Data/G1/think_1.jsonl @@ -0,0 +1,987 @@ +{"meta": {"hz": 60.0, "motors": 29}} +{"t": 0.0, "q": [-0.12153900414705276, 0.008211910724639893, 0.003254230599850416, 0.30469971895217896, -0.18915708363056183, -0.014922869391739368, -0.07912443578243256, -0.029512085020542145, 0.02098510041832924, 0.3373734951019287, -0.2810765504837036, 0.019786028191447258, -0.012508030980825424, 0.000475498556625098, 0.0038522726390510798, 0.24866068363189697, 0.28961077332496643, -0.07669904083013535, 0.8265640139579773, 0.0009827064350247383, 0.002157160546630621, -0.0005033374764025211, 0.24633574485778809, -0.27878904342651367, 0.07946740090847015, 0.802008330821991, -0.005021390505135059, 0.011097392998635769, 0.0018335864879190922]} +{"t": 0.0167, "q": [-0.121521957218647, 0.008203387260437012, 0.0032274469267576933, 0.30469971895217896, -0.18915267288684845, -0.01490155141800642, -0.07904773205518723, -0.02949504181742668, 0.020918140187859535, 0.33736497163772583, -0.2810724377632141, 0.019793212413787842, -0.013432071544229984, 0.0006415455136448145, 0.004092991817742586, 0.2482771873474121, 0.28780117630958557, -0.07677094638347626, 0.8278942704200745, 0.0010186590952798724, 0.002181129064410925, -0.00046738478704355657, 0.24603614211082458, -0.27714720368385315, 0.07935953885316849, 0.8040096759796143, -0.00523710623383522, 0.011480887420475483, 0.0019294602097943425]} +{"t": 0.0335, "q": [-0.1211128979921341, 0.008322697132825851, 0.0031872710678726435, 0.3051343560218811, -0.18910640478134155, -0.01497945562005043, -0.07881763577461243, -0.02943538688123226, 0.020730653777718544, 0.3380126655101776, -0.2810682952404022, 0.019800415262579918, -0.014155233278870583, 0.000686831190250814, 0.004526336211711168, 0.2478817105293274, 0.28618329763412476, -0.0767589658498764, 0.8294522166252136, 0.0010186590952798724, 0.0023249397054314613, -0.000431432097684592, 0.2448377162218094, -0.2753615379333496, 0.07938350737094879, 0.8065863251686096, -0.005332980304956436, 0.011828429996967316, 0.0019054918084293604]} +{"t": 0.0502, "q": [-0.12093393504619598, 0.008245998993515968, 0.0031872710678726435, 0.3053814768791199, -0.18910640478134155, -0.01497945562005043, -0.0784597098827362, -0.02953765168786049, 0.02067708782851696, 0.3379785716533661, -0.2810641825199127, 0.01980760134756565, -0.014851612038910389, 0.0008377829217351973, 0.00506563251838088, 0.24780981242656708, 0.2833310663700104, -0.07687880843877792, 0.8305187821388245, 0.0010066749528050423, 0.0023369239643216133, -0.00046738478704355657, 0.24429842829704285, -0.273012638092041, 0.07946740090847015, 0.8083480000495911, -0.00535694882273674, 0.011876367032527924, 0.0019054918084293604]} +{"t": 0.0669, "q": [-0.1206527054309845, 0.00837383046746254, 0.0030533522367477417, 0.305560439825058, -0.18908485770225525, -0.014943842776119709, -0.07799951732158661, -0.029520608484745026, 0.020569952204823494, 0.3380723297595978, -0.2810474932193756, 0.019807446748018265, -0.015507815405726433, 0.0010634048376232386, 0.005431030411273241, 0.2476779818534851, 0.2796878516674042, -0.07740610837936401, 0.831525444984436, 0.0009707222343422472, 0.0024088292848318815, -0.0005033374764025211, 0.24422653019428253, -0.26993268728256226, 0.07969509810209274, 0.8096662163734436, -0.005392901133745909, 0.012020178139209747, 0.0019773971289396286]} +{"t": 0.0838, "q": [-0.11997093260288239, 0.00837383046746254, 0.002959609031677246, 0.30588430166244507, -0.18908485770225525, -0.014943842776119709, -0.07738592475652695, -0.029571739956736565, 0.020409248769283295, 0.3382001519203186, -0.2810474932193756, 0.019807446748018265, -0.016190802678465843, 0.001114728394895792, 0.006561176385730505, 0.24757012724876404, 0.2755053639411926, -0.07819706946611404, 0.8323044180870056, 0.0010066749528050423, 0.0024208135437220335, -0.0004913532175123692, 0.24427446722984314, -0.266696959733963, 0.07994676381349564, 0.8104332089424133, -0.005380917340517044, 0.012104067951440811, 0.002037318190559745]} +{"t": 0.1005, "q": [-0.11993684619665146, 0.008501661941409111, 0.0028256899677217007, 0.30556896328926086, -0.18908055126667023, -0.014936723746359348, -0.077224001288414, -0.029563218355178833, 0.020114626735448837, 0.33814048767089844, -0.28105172514915466, 0.019814709201455116, -0.016753261908888817, 0.0014084739377722144, 0.007296411320567131, 0.24747425317764282, 0.27150261402130127, -0.07979097217321396, 0.8329516053199768, 0.0009707222343422472, 0.0023968450259417295, -0.0005033374764025211, 0.2445381134748459, -0.2634612023830414, 0.08017446845769882, 0.8111522793769836, -0.005416869651526213, 0.012152004055678844, 0.0020852552261203527]} +{"t": 0.1172, "q": [-0.11993684619665146, 0.00831417553126812, 0.0027453387156128883, 0.30557748675346375, -0.18909326195716858, -0.01492968201637268, -0.07706208527088165, -0.029639918357133865, 0.020087843760848045, 0.33798709511756897, -0.2810516059398651, 0.019800260663032532, -0.017221977934241295, 0.0014679563464596868, 0.007949487306177616, 0.2474023401737213, 0.26811107993125916, -0.08158860355615616, 0.8336107134819031, 0.0010066749528050423, 0.0023968450259417295, -0.0005392901366576552, 0.24472986161708832, -0.260237455368042, 0.08042613416910172, 0.8120391368865967, -0.005440838169306517, 0.012235893867909908, 0.0020972394850105047]} +{"t": 0.134, "q": [-0.11998797953128815, 0.008390873670578003, 0.002611419651657343, 0.3056456744670868, -0.18908905982971191, -0.014936761930584908, -0.07701095193624496, -0.0295546967536211, 0.01984678953886032, 0.33818310499191284, -0.2810474932193756, 0.019807446748018265, -0.017516599968075752, 0.0015720525989308953, 0.008707943372428417, 0.24734242260456085, 0.26531875133514404, -0.08278702944517136, 0.8342698812484741, 0.0010066749528050423, 0.0024088292848318815, -0.0005632585962302983, 0.24488565325737, -0.2580922842025757, 0.0809055045247078, 0.8126503229141235, -0.005416869651526213, 0.012295815162360668, 0.002145176287740469]} +{"t": 0.1507, "q": [-0.11999650299549103, 0.008442007005214691, 0.0025176764465868473, 0.30575644969940186, -0.18908895552158356, -0.01492256298661232, -0.0769939050078392, -0.029520608484745026, 0.019712870940566063, 0.3381916284561157, -0.2810474932193756, 0.019807446748018265, -0.017704086378216743, 0.0017215455882251263, 0.00931280106306076, 0.247330442070961, 0.26294589042663574, -0.08341021090745926, 0.8348451256752014, 0.0010066749528050423, 0.0023968450259417295, -0.0005512743373401463, 0.24496954679489136, -0.2568698823451996, 0.08112122118473053, 0.8130338191986084, -0.0055127437226474285, 0.012319783680140972, 0.002145176287740469]} +{"t": 0.1674, "q": [-0.11999650299549103, 0.008442007005214691, 0.002464108867570758, 0.3058672547340393, -0.18908905982971191, -0.014936761930584908, -0.07696834206581116, -0.029529130086302757, 0.019712870940566063, 0.33818310499191284, -0.2810474932193756, 0.019807446748018265, -0.01797192357480526, 0.0019166412530466914, 0.009773445315659046, 0.2473783791065216, 0.260980486869812, -0.08375775068998337, 0.8353124856948853, 0.0010066749528050423, 0.0023608924821019173, -0.0005752427969127893, 0.24506542086601257, -0.2565463185310364, 0.08130098134279251, 0.8132495284080505, -0.005476790945976973, 0.012355736456811428, 0.002145176287740469]} +{"t": 0.1841, "q": [-0.12001354247331619, 0.008467573672533035, 0.0024373249616473913, 0.3061058521270752, -0.18908905982971191, -0.014936761930584908, -0.0769512951374054, -0.029529130086302757, 0.0196726955473423, 0.3382342457771301, -0.2810474932193756, 0.019807446748018265, -0.01829332858324051, 0.001999084372073412, 0.010075469501316547, 0.2474023401737213, 0.25960227847099304, -0.08387759327888489, 0.8357439041137695, 0.0010186590952798724, 0.0024208135437220335, -0.0005992112564854324, 0.24517327547073364, -0.2565463185310364, 0.0812530443072319, 0.8135611414909363, -0.0055007594637572765, 0.012379704974591732, 0.002121207769960165]} +{"t": 0.2009, "q": [-0.12003058940172195, 0.008484616875648499, 0.0023301898036152124, 0.3062422275543213, -0.18909326195716858, -0.01492968201637268, -0.07694277167320251, -0.02949504181742668, 0.019619127735495567, 0.33827686309814453, -0.2810474932193756, 0.019807446748018265, -0.01850759983062744, 0.002051382791250944, 0.010233559645712376, 0.2474023401737213, 0.25887125730514526, -0.0839255303144455, 0.8359236717224121, 0.0010066749528050423, 0.0024208135437220335, -0.0005872270558029413, 0.24529312551021576, -0.25660622119903564, 0.08114518970251083, 0.813812792301178, -0.0055007594637572765, 0.01245160959661007, 0.0021092237439006567]} +{"t": 0.2177, "q": [-0.12002206593751907, 0.008501661941409111, 0.0022632302716374397, 0.3063870966434479, -0.18909326195716858, -0.01492968201637268, -0.07684902846813202, -0.029392777010798454, 0.019552167505025864, 0.33831945061683655, -0.2810516059398651, 0.019800260663032532, -0.018681693822145462, 0.002021254738792777, 0.010291079059243202, 0.24734242260456085, 0.2586195766925812, -0.08391354233026505, 0.8361274003982544, 0.0010186590952798724, 0.0024208135437220335, -0.0006111955153755844, 0.24540098011493683, -0.25660622119903564, 0.08112122118473053, 0.8139446377754211, -0.0055007594637572765, 0.012439625337719917, 0.0020852552261203527]} +{"t": 0.2344, "q": [-0.12004762887954712, 0.008518707007169724, 0.0022230546455830336, 0.3064552843570709, -0.18909326195716858, -0.01492968201637268, -0.07681494206190109, -0.02935868687927723, 0.01948520727455616, 0.33831092715263367, -0.2810474932193756, 0.019807446748018265, -0.018721869215369225, 0.001998642925173044, 0.010343803092837334, 0.24731846153736115, 0.25863155722618103, -0.08387759327888489, 0.836223304271698, 0.0010186590952798724, 0.0024327978026121855, -0.0005992112564854324, 0.2454608976840973, -0.2565942406654358, 0.08112122118473053, 0.8140045404434204, -0.005476790945976973, 0.01245160959661007, 0.0021092237439006567]} +{"t": 0.2512, "q": [-0.12007319927215576, 0.008535750210285187, 0.0021427033934742212, 0.3064126670360565, -0.18909326195716858, -0.01492968201637268, -0.07680641859769821, -0.029333122074604034, 0.019431641325354576, 0.33831945061683655, -0.2810474932193756, 0.019807446748018265, -0.01882900483906269, 0.002028644783422351, 0.010362949222326279, 0.24731846153736115, 0.258667528629303, -0.08388957381248474, 0.8362712264060974, 0.0010306433541700244, 0.0024208135437220335, -0.0005992112564854324, 0.24556875228881836, -0.2565942406654358, 0.08112122118473053, 0.8140764236450195, -0.005560680292546749, 0.012475578114390373, 0.002121207769960165]} +{"t": 0.268, "q": [-0.12007319927215576, 0.008527228608727455, 0.0021159194875508547, 0.3064211905002594, -0.18909746408462524, -0.01492260117083788, -0.07681494206190109, -0.029341643676161766, 0.019378073513507843, 0.3383024036884308, -0.2810390591621399, 0.019792921841144562, -0.018895965069532394, 0.0020661631133407354, 0.010377299971878529, 0.24729448556900024, 0.2586555480957031, -0.08386560529470444, 0.8363431096076965, 0.0010186590952798724, 0.0024208135437220335, -0.0006111955153755844, 0.24565264582633972, -0.25660622119903564, 0.08110923320055008, 0.8142561912536621, -0.0055486964993178844, 0.012487562373280525, 0.0020852552261203527]} +{"t": 0.2847, "q": [-0.12008172273635864, 0.008527228608727455, 0.0021025275345891714, 0.3064297139644623, -0.18908485770225525, -0.014943842776119709, -0.07681494206190109, -0.029324598610401154, 0.01933789812028408, 0.33831945061683655, -0.28104326128959656, 0.019800184294581413, -0.018936140462756157, 0.002141152275726199, 0.010434749536216259, 0.24731846153736115, 0.25870347023010254, -0.08385362476110458, 0.8364030718803406, 0.0010066749528050423, 0.0024088292848318815, -0.0006111955153755844, 0.24570058286190033, -0.25660622119903564, 0.08112122118473053, 0.8143160939216614, -0.0055367122404277325, 0.01251153089106083, 0.002121207769960165]} +{"t": 0.3015, "q": [-0.12007319927215576, 0.008501661941409111, 0.0021025275345891714, 0.30658310651779175, -0.18908905982971191, -0.014936761930584908, -0.07678085565567017, -0.029350165277719498, 0.019378073513507843, 0.33837059140205383, -0.2810433804988861, 0.01981463097035885, -0.01897631585597992, 0.002201155526563525, 0.010473040863871574, 0.24731846153736115, 0.2587154507637024, -0.08386560529470444, 0.8364270329475403, 0.0010186590952798724, 0.0024088292848318815, -0.0005872270558029413, 0.24565264582633972, -0.25660622119903564, 0.08113320171833038, 0.8144479393959045, -0.0055367122404277325, 0.01251153089106083, 0.002133192028850317]} +{"t": 0.3183, "q": [-0.12009876221418381, 0.008510183542966843, 0.0020757438614964485, 0.30659162998199463, -0.18909746408462524, -0.01492260117083788, -0.07679789513349533, -0.029350165277719498, 0.019378073513507843, 0.3383450210094452, -0.2810516059398651, 0.019800260663032532, -0.01897631585597992, 0.002223656978458166, 0.010487398132681847, 0.24731846153736115, 0.25867950916290283, -0.08387759327888489, 0.8364270329475403, 0.0009946906939148903, 0.0024088292848318815, -0.0005992112564854324, 0.24571256339550018, -0.25658226013183594, 0.08112122118473053, 0.8145438432693481, -0.0055367122404277325, 0.012523515149950981, 0.002121207769960165]} +{"t": 0.335, "q": [-0.12010728567838669, 0.008527228608727455, 0.0020623519085347652, 0.3066597878932953, -0.18908485770225525, -0.014943842776119709, -0.07679789513349533, -0.029384253546595573, 0.019378073513507843, 0.33835354447364807, -0.28104326128959656, 0.019800184294581413, -0.018949532881379128, 0.0022761444561183453, 0.010530482977628708, 0.24731846153736115, 0.2586914896965027, -0.08385362476110458, 0.8364749550819397, 0.0010066749528050423, 0.0024327978026121855, -0.0006111955153755844, 0.24571256339550018, -0.2566182017326355, 0.08110923320055008, 0.8145797848701477, -0.0055127437226474285, 0.012547483667731285, 0.0021092237439006567]} +{"t": 0.3517, "q": [-0.12010728567838669, 0.008510183542966843, 0.0020757438614964485, 0.3066512644290924, -0.18908905982971191, -0.014936761930584908, -0.07678937166929245, -0.029401298612356186, 0.019364681094884872, 0.3383450210094452, -0.28103914856910706, 0.019807368516921997, -0.01896292343735695, 0.0022685809526592493, 0.010564030148088932, 0.247330442070961, 0.2586914896965027, -0.08386560529470444, 0.8364869356155396, 0.0010066749528050423, 0.0024327978026121855, -0.0005752427969127893, 0.24571256339550018, -0.25660622119903564, 0.08112122118473053, 0.8145797848701477, -0.0055127437226474285, 0.012559467926621437, 0.0021092237439006567]} +{"t": 0.3684, "q": [-0.12011580914258957, 0.00849314033985138, 0.0020757438614964485, 0.3066597878932953, -0.18909326195716858, -0.01492968201637268, -0.07679789513349533, -0.02942686527967453, 0.019378073513507843, 0.33832797408103943, -0.2810433804988861, 0.01981463097035885, -0.018949532881379128, 0.0022685336880385876, 0.010592780075967312, 0.24731846153736115, 0.2586914896965027, -0.08386560529470444, 0.8365108966827393, 0.0010066749528050423, 0.0024088292848318815, -0.0006231797160580754, 0.2456047087907791, -0.25660622119903564, 0.08114518970251083, 0.8145797848701477, -0.0054887752048671246, 0.012559467926621437, 0.002121207769960165]} +{"t": 0.3852, "q": [-0.12012433260679245, 0.00849314033985138, 0.002089135814458132, 0.306753545999527, -0.18908905982971191, -0.014936761930584908, -0.07679789513349533, -0.029460953548550606, 0.019364681094884872, 0.33831092715263367, -0.28104326128959656, 0.019800184294581413, -0.018909357488155365, 0.002268486423417926, 0.010621530935168266, 0.2472585290670395, 0.258667528629303, -0.08386560529470444, 0.8365828394889832, 0.0010066749528050423, 0.0024208135437220335, -0.0006111955153755844, 0.2453051060438156, -0.25660622119903564, 0.08112122118473053, 0.8146037459373474, -0.0055127437226474285, 0.012559467926621437, 0.0020972394850105047]} +{"t": 0.402, "q": [-0.12012433260679245, 0.008459052070975304, 0.0020757438614964485, 0.30672797560691833, -0.18909326195716858, -0.01492968201637268, -0.07679789513349533, -0.029460953548550606, 0.019364681094884872, 0.33827686309814453, -0.28104740381240845, 0.01979299820959568, -0.018869180232286453, 0.002245984971523285, 0.01060717273503542, 0.24713869392871857, 0.2586914896965027, -0.08384163677692413, 0.8365707993507385, 0.0010186590952798724, 0.0023968450259417295, -0.0006111955153755844, 0.24502946436405182, -0.2565942406654358, 0.08112122118473053, 0.8146037459373474, -0.0055127437226474285, 0.012559467926621437, 0.0021092237439006567]} +{"t": 0.4188, "q": [-0.12009876221418381, 0.008459052070975304, 0.0020757438614964485, 0.30680468678474426, -0.18908485770225525, -0.014943842776119709, -0.07678085565567017, -0.02947799675166607, 0.019364681094884872, 0.33825981616973877, -0.2810433804988861, 0.01981463097035885, -0.01882900483906269, 0.002245954005047679, 0.010626339353621006, 0.2470308393239975, 0.2586914896965027, -0.08384163677692413, 0.8365707993507385, 0.0010066749528050423, 0.0024208135437220335, -0.0005992112564854324, 0.2449096292257309, -0.25660622119903564, 0.08112122118473053, 0.8145678043365479, -0.0055367122404277325, 0.012571452185511589, 0.0020972394850105047]} +{"t": 0.4355, "q": [-0.1201498955488205, 0.008442007005214691, 0.002089135814458132, 0.3068728446960449, -0.18908905982971191, -0.014936761930584908, -0.07679789513349533, -0.02949504181742668, 0.01933789812028408, 0.3382512927055359, -0.2810474932193756, 0.019807446748018265, -0.01882900483906269, 0.0022534229792654514, 0.010650292038917542, 0.246958926320076, 0.2586914896965027, -0.08382965624332428, 0.8365828394889832, 0.0010186590952798724, 0.0024208135437220335, -0.0005872270558029413, 0.24488565325737, -0.25660622119903564, 0.08112122118473053, 0.8145797848701477, -0.0055127437226474285, 0.012559467926621437, 0.0020972394850105047]} +{"t": 0.4523, "q": [-0.12012433260679245, 0.008442007005214691, 0.0020757438614964485, 0.30695807933807373, -0.18908905982971191, -0.014936761930584908, -0.07679789513349533, -0.02949504181742668, 0.019351288676261902, 0.3382001519203186, -0.2810474932193756, 0.019807446748018265, -0.01882900483906269, 0.0022758764680474997, 0.010693399235606194, 0.24697090685367584, 0.2586914896965027, -0.08382965624332428, 0.8366187810897827, 0.0010186590952798724, 0.0024208135437220335, -0.0005872270558029413, 0.24488565325737, -0.2565942406654358, 0.08114518970251083, 0.8145678043365479, -0.0055367122404277325, 0.012559467926621437, 0.0021092237439006567]} +{"t": 0.469, "q": [-0.12012433260679245, 0.008416440337896347, 0.002048959955573082, 0.30699217319488525, -0.18909746408462524, -0.01492260117083788, -0.07681494206190109, -0.029503563418984413, 0.019284330308437347, 0.33818310499191284, -0.2810433804988861, 0.01981463097035885, -0.018775437027215958, 0.0022532963193953037, 0.010726958513259888, 0.24701884388923645, 0.25870347023010254, -0.08385362476110458, 0.8366427421569824, 0.0010186590952798724, 0.0024088292848318815, -0.0006231797160580754, 0.24492160975933075, -0.25660622119903564, 0.08112122118473053, 0.8145797848701477, -0.0055486964993178844, 0.012559467926621437, 0.0020972394850105047]} +{"t": 0.4857, "q": [-0.12013285607099533, 0.008442007005214691, 0.002008784329518676, 0.30705180764198303, -0.18909746408462524, -0.01492260117083788, -0.07681494206190109, -0.02949504181742668, 0.019244154915213585, 0.3381660580635071, -0.2810433804988861, 0.01981463097035885, -0.018708478659391403, 0.0022607336286455393, 0.01077007781714201, 0.24711471796035767, 0.2586914896965027, -0.08385362476110458, 0.8367026448249817, 0.0010066749528050423, 0.0024088292848318815, -0.0005872270558029413, 0.24492160975933075, -0.25660622119903564, 0.08113320171833038, 0.8146037459373474, -0.005560680292546749, 0.012571452185511589, 0.002121207769960165]} +{"t": 0.5024, "q": [-0.12014137208461761, 0.00843348540365696, 0.001982000656425953, 0.30726486444473267, -0.18908905982971191, -0.014936761930584908, -0.07681494206190109, -0.029503563418984413, 0.019203977659344673, 0.3381660580635071, -0.2810433804988861, 0.01981463097035885, -0.018614735454320908, 0.0022755926474928856, 0.010865899734199047, 0.24711471796035767, 0.2586914896965027, -0.08384163677692413, 0.8368704319000244, 0.0010066749528050423, 0.0024208135437220335, -0.0006111955153755844, 0.24489764869213104, -0.25660622119903564, 0.08112122118473053, 0.8145797848701477, -0.0055367122404277325, 0.012559467926621437, 0.0020972394850105047]} +{"t": 0.5192, "q": [-0.12014137208461761, 0.008459052070975304, 0.001982000656425953, 0.3074438273906708, -0.18908895552158356, -0.01492256298661232, -0.07681494206190109, -0.02948652021586895, 0.019190587103366852, 0.33813196420669556, -0.2810516059398651, 0.019800260663032532, -0.018587950617074966, 0.0022454652935266495, 0.010923422873020172, 0.24711471796035767, 0.2587154507637024, -0.08385362476110458, 0.8370861411094666, 0.0010186590952798724, 0.0023968450259417295, -0.0005992112564854324, 0.2448377162218094, -0.25660622119903564, 0.08112122118473053, 0.8145917654037476, -0.0055367122404277325, 0.012559467926621437, 0.002121207769960165]} +{"t": 0.5359, "q": [-0.12012433260679245, 0.008484616875648499, 0.0019284329609945416, 0.3079296052455902, -0.18909326195716858, -0.01492968201637268, -0.07678937166929245, -0.029469475150108337, 0.019190587103366852, 0.3381149172782898, -0.2810474932193756, 0.019807446748018265, -0.018601343035697937, 0.002237885259091854, 0.01096655335277319, 0.24717465043067932, 0.2586914896965027, -0.08385362476110458, 0.8371220827102661, 0.0010066749528050423, 0.0024088292848318815, -0.0006111955153755844, 0.24480177462100983, -0.25660622119903564, 0.08112122118473053, 0.8145678043365479, -0.0055007594637572765, 0.012559467926621437, 0.0021092237439006567]} +{"t": 0.5526, "q": [-0.12015841901302338, 0.008459052070975304, 0.001901649171486497, 0.30873918533325195, -0.18908485770225525, -0.014943842776119709, -0.07680641859769821, -0.029469475150108337, 0.01916380226612091, 0.33813196420669556, -0.2810474932193756, 0.019807446748018265, -0.018614735454320908, 0.0022378696594387293, 0.010976136662065983, 0.24716265499591827, 0.2587154507637024, -0.08385362476110458, 0.8371580243110657, 0.0010426276130601764, 0.0024208135437220335, -0.0006111955153755844, 0.24480177462100983, -0.25660622119903564, 0.08112122118473053, 0.8145678043365479, -0.0055007594637572765, 0.012571452185511589, 0.002133192028850317]} +{"t": 0.5693, "q": [-0.12017546594142914, 0.00849314033985138, 0.0018614735454320908, 0.30914825201034546, -0.18908905982971191, -0.014936761930584908, -0.07678085565567017, -0.029469475150108337, 0.01913701929152012, 0.33814048767089844, -0.2810474932193756, 0.019807446748018265, -0.0186415184289217, 0.0022378379944711924, 0.010995304211974144, 0.2471267133951187, 0.2586914896965027, -0.08385362476110458, 0.8371820449829102, 0.0010306433541700244, 0.0024088292848318815, -0.0006111955153755844, 0.24482573568820953, -0.25660622119903564, 0.08112122118473053, 0.8145678043365479, -0.0055127437226474285, 0.012595420703291893, 0.0021092237439006567]} +{"t": 0.5862, "q": [-0.12020102888345718, 0.008510183542966843, 0.0018480815924704075, 0.30952322483062744, -0.18909326195716858, -0.01492968201637268, -0.07677233219146729, -0.029469475150108337, 0.019056666642427444, 0.3381575345993042, -0.2810474932193756, 0.019807446748018265, -0.018695086240768433, 0.0022377590648829937, 0.01104322075843811, 0.24704281985759735, 0.2587154507637024, -0.08385362476110458, 0.83719402551651, 0.0010066749528050423, 0.0024208135437220335, -0.0005992112564854324, 0.24480177462100983, -0.25660622119903564, 0.08112122118473053, 0.8145917654037476, -0.0055127437226474285, 0.012607404962182045, 0.0020972394850105047]} +{"t": 0.6029, "q": [-0.12022659927606583, 0.008459052070975304, 0.0018079059664160013, 0.30975332856178284, -0.18909326195716858, -0.01492968201637268, -0.07674676179885864, -0.029460953548550606, 0.019029883667826653, 0.3381660580635071, -0.2810516059398651, 0.019800260663032532, -0.018735261633992195, 0.002215131651610136, 0.011105529963970184, 0.246958926320076, 0.25870347023010254, -0.08386560529470444, 0.8372179865837097, 0.0010186590952798724, 0.0024088292848318815, -0.0005752427969127893, 0.2448377162218094, -0.2566182017326355, 0.08110923320055008, 0.8145678043365479, -0.0055127437226474285, 0.012583436444401741, 0.0021092237439006567]} +{"t": 0.6197, "q": [-0.12026068568229675, 0.008476095274090767, 0.0017811221769079566, 0.30992376804351807, -0.18909326195716858, -0.01492968201637268, -0.07674676179885864, -0.029443908482789993, 0.01900310069322586, 0.3382086753845215, -0.2810516059398651, 0.019800260663032532, -0.018775437027215958, 0.0022225533612072468, 0.011158231645822525, 0.24692296981811523, 0.2586914896965027, -0.08384163677692413, 0.8372179865837097, 0.0010186590952798724, 0.0023968450259417295, -0.0006111955153755844, 0.24480177462100983, -0.25660622119903564, 0.08110923320055008, 0.8145797848701477, -0.0055367122404277325, 0.012583436444401741, 0.002121207769960165]} +{"t": 0.6364, "q": [-0.12032034248113632, 0.008484616875648499, 0.0017409464344382286, 0.30998343229293823, -0.18909326195716858, -0.01492968201637268, -0.07675528526306152, -0.029443908482789993, 0.01898970827460289, 0.33821719884872437, -0.28104326128959656, 0.019800184294581413, -0.018748654052615166, 0.0022149740252643824, 0.011201363056898117, 0.24688702821731567, 0.2587154507637024, -0.08386560529470444, 0.8372299671173096, 0.0010186590952798724, 0.0024208135437220335, -0.0005752427969127893, 0.24482573568820953, -0.25660622119903564, 0.08114518970251083, 0.8145797848701477, -0.0055367122404277325, 0.012583436444401741, 0.002121207769960165]} +{"t": 0.6531, "q": [-0.12037147581577301, 0.00849314033985138, 0.0016873788554221392, 0.3101794421672821, -0.18909746408462524, -0.01492260117083788, -0.0767211988568306, -0.02943538688123226, 0.01896292343735695, 0.33822572231292725, -0.2810474932193756, 0.019807446748018265, -0.0188022218644619, 0.0021923778112977743, 0.011244505643844604, 0.24688702821731567, 0.2586914896965027, -0.08384163677692413, 0.8372299671173096, 0.0010186590952798724, 0.0024208135437220335, -0.0006111955153755844, 0.24482573568820953, -0.25660622119903564, 0.08110923320055008, 0.8145797848701477, -0.0055127437226474285, 0.012559467926621437, 0.002157160546630621]} +{"t": 0.6698, "q": [-0.12038851529359818, 0.008484616875648499, 0.0016204193234443665, 0.31034988164901733, -0.18908905982971191, -0.014936761930584908, -0.07664449512958527, -0.029443908482789993, 0.018936140462756157, 0.3382853865623474, -0.28104326128959656, 0.019800184294581413, -0.018788829445838928, 0.0022222851403057575, 0.01132114976644516, 0.24686305224895477, 0.2586914896965027, -0.08382965624332428, 0.8372299671173096, 0.0010426276130601764, 0.0024088292848318815, -0.0006111955153755844, 0.24481375515460968, -0.25660622119903564, 0.08112122118473053, 0.8145797848701477, -0.0055367122404277325, 0.012595420703291893, 0.002121207769960165]} +{"t": 0.6866, "q": [-0.12038851529359818, 0.008476095274090767, 0.0015802436973899603, 0.3105970323085785, -0.18909746408462524, -0.01492260117083788, -0.07654223591089249, -0.029452430084347725, 0.018869180232286453, 0.33831092715263367, -0.2810516059398651, 0.019800260663032532, -0.018788829445838928, 0.002207142999395728, 0.011397827416658401, 0.24685107171535492, 0.2587154507637024, -0.08386560529470444, 0.8372299671173096, 0.0010186590952798724, 0.0024208135437220335, -0.0005992112564854324, 0.24484971165657043, -0.25660622119903564, 0.08112122118473053, 0.8145797848701477, -0.0055367122404277325, 0.012607404962182045, 0.0021092237439006567]} +{"t": 0.7033, "q": [-0.12040556222200394, 0.008459052070975304, 0.0015132841654121876, 0.3108185827732086, -0.18909746408462524, -0.01492260117083788, -0.07651666551828384, -0.029452430084347725, 0.01884239725768566, 0.33835354447364807, -0.2810433804988861, 0.01981463097035885, -0.01881561428308487, 0.0021995792631059885, 0.0114313755184412, 0.24686305224895477, 0.2586914896965027, -0.08384163677692413, 0.8372539281845093, 0.0010066749528050423, 0.0024208135437220335, -0.0006111955153755844, 0.24488565325737, -0.25658226013183594, 0.08110923320055008, 0.8145917654037476, -0.0055367122404277325, 0.012607404962182045, 0.002121207769960165]} +{"t": 0.7202, "q": [-0.12049930542707443, 0.008476095274090767, 0.0014329327968880534, 0.3110145926475525, -0.18909746408462524, -0.01492260117083788, -0.07647405564785004, -0.029460953548550606, 0.018788829445838928, 0.3383791148662567, -0.28103914856910706, 0.019807368516921997, -0.01881561428308487, 0.002184578450396657, 0.011421803385019302, 0.24686305224895477, 0.2587154507637024, -0.08384163677692413, 0.8372659087181091, 0.0010186590952798724, 0.0024088292848318815, -0.0006111955153755844, 0.2449335902929306, -0.25660622119903564, 0.08112122118473053, 0.8145678043365479, -0.0055127437226474285, 0.012607404962182045, 0.0020972394850105047]} +{"t": 0.7369, "q": [-0.12063565850257874, 0.008476095274090767, 0.001312405802309513, 0.31131288409233093, -0.189114511013031, -0.014922695234417915, -0.07642292231321335, -0.029460953548550606, 0.018735261633992195, 0.338430255651474, -0.2810349464416504, 0.019800106063485146, -0.01882900483906269, 0.00218454678542912, 0.011440970003604889, 0.24687503278255463, 0.2587154507637024, -0.08384163677692413, 0.8372659087181091, 0.0010426276130601764, 0.0024088292848318815, -0.0005992112564854324, 0.24494558572769165, -0.25660622119903564, 0.08112122118473053, 0.8145797848701477, -0.0055486964993178844, 0.012619389221072197, 0.002133192028850317]} +{"t": 0.7536, "q": [-0.12071235477924347, 0.008450528606772423, 0.001191878691315651, 0.3115940988063812, -0.18909746408462524, -0.01492260117083788, -0.07637178897857666, -0.029443908482789993, 0.01865491084754467, 0.3384728729724884, -0.2810516059398651, 0.019800260663032532, -0.0188022218644619, 0.002184578450396657, 0.011421803385019302, 0.24687503278255463, 0.2586914896965027, -0.08384163677692413, 0.8373138308525085, 0.0010186590952798724, 0.0024088292848318815, -0.0005752427969127893, 0.24494558572769165, -0.25660622119903564, 0.08112122118473053, 0.8145797848701477, -0.0055367122404277325, 0.012619389221072197, 0.002121207769960165]} +{"t": 0.7703, "q": [-0.12077201157808304, 0.008459052070975304, 0.0010981354862451553, 0.31180715560913086, -0.1891016662120819, -0.014915520325303078, -0.07634622603654861, -0.029460953548550606, 0.018574560061097145, 0.33854103088378906, -0.2810390591621399, 0.019792921841144562, -0.0188022218644619, 0.0021920788567513227, 0.011426589451730251, 0.24686305224895477, 0.2587154507637024, -0.08380568772554398, 0.8373138308525085, 0.0010306433541700244, 0.0023968450259417295, -0.0005872270558029413, 0.2449815273284912, -0.2565942406654358, 0.08112122118473053, 0.8145797848701477, -0.0055486964993178844, 0.012631373479962349, 0.0020972394850105047]} +{"t": 0.7871, "q": [-0.12082314491271973, 0.008450528606772423, 0.0009642164804972708, 0.31199464201927185, -0.1891016662120819, -0.014915520325303078, -0.07625248283147812, -0.029452430084347725, 0.018520992249250412, 0.3386092185974121, -0.2810349464416504, 0.019800106063485146, -0.018788829445838928, 0.002184578450396657, 0.011421803385019302, 0.24687503278255463, 0.25872743129730225, -0.08384163677692413, 0.8373018503189087, 0.0010066749528050423, 0.0024088292848318815, -0.0005992112564854324, 0.2450055032968521, -0.2565942406654358, 0.08112122118473053, 0.8145917654037476, -0.0055367122404277325, 0.012619389221072197, 0.0020972394850105047]} +{"t": 0.8039, "q": [-0.12087427824735641, 0.00843348540365696, 0.0008838651119731367, 0.3121565580368042, -0.1891016662120819, -0.014915520325303078, -0.07625248283147812, -0.029452430084347725, 0.01846742443740368, 0.3387540876865387, -0.2810390591621399, 0.019792921841144562, -0.018775437027215958, 0.0021920788567513227, 0.011426589451730251, 0.24685107171535492, 0.2586914896965027, -0.08385362476110458, 0.8373258113861084, 0.0010066749528050423, 0.0024088292848318815, -0.0005752427969127893, 0.2450055032968521, -0.2565942406654358, 0.08112122118473053, 0.8145917654037476, -0.0055127437226474285, 0.012619389221072197, 0.002121207769960165]} +{"t": 0.8206, "q": [-0.1208828017115593, 0.008459052070975304, 0.0008169056382030249, 0.31231847405433655, -0.18911440670490265, -0.01490847859531641, -0.07623543590307236, -0.029443908482789993, 0.01845403201878071, 0.3388563394546509, -0.2810390591621399, 0.019792921841144562, -0.018775437027215958, 0.0021770778112113476, 0.011417016386985779, 0.24689900875091553, 0.25872743129730225, -0.08382965624332428, 0.8373258113861084, 0.0010066749528050423, 0.0023848607670515776, -0.0006111955153755844, 0.24502946436405182, -0.2565942406654358, 0.08112122118473053, 0.8145917654037476, -0.005560680292546749, 0.012643357738852501, 0.0020972394850105047]} +{"t": 0.8373, "q": [-0.12094245105981827, 0.008442007005214691, 0.0007901218486949801, 0.312429279088974, -0.1891016662120819, -0.014915520325303078, -0.07623543590307236, -0.029443908482789993, 0.018400464206933975, 0.3389415740966797, -0.28104326128959656, 0.019800184294581413, -0.018748654052615166, 0.0021921105217188597, 0.011407422833144665, 0.24691098928451538, 0.2587154507637024, -0.08382965624332428, 0.8373258113861084, 0.0010186590952798724, 0.0024088292848318815, -0.0006111955153755844, 0.24501748383045197, -0.2566182017326355, 0.08112122118473053, 0.8146037459373474, -0.005572664551436901, 0.012643357738852501, 0.0021092237439006567]} +{"t": 0.8542, "q": [-0.12102767825126648, 0.008442007005214691, 0.0006963785854168236, 0.31259119510650635, -0.18911029398441315, -0.014929776079952717, -0.07620987296104431, -0.029443908482789993, 0.018387073650956154, 0.3389841914176941, -0.28103482723236084, 0.01978565938770771, -0.018788829445838928, 0.002199626760557294, 0.011402624659240246, 0.24693496525287628, 0.25870347023010254, -0.08382965624332428, 0.8373497724533081, 0.0010306433541700244, 0.0024088292848318815, -0.0005992112564854324, 0.2449815273284912, -0.2565942406654358, 0.08112122118473053, 0.8145917654037476, -0.005596633069217205, 0.012655341997742653, 0.0020972394850105047]} +{"t": 0.871, "q": [-0.12104471772909164, 0.008459052070975304, 0.0006160272168926895, 0.31277868151664734, -0.18909746408462524, -0.01492260117083788, -0.0761672630906105, -0.02943538688123226, 0.018360288813710213, 0.338992714881897, -0.28103071451187134, 0.019792843610048294, -0.018762046471238136, 0.0021996577270329, 0.011383458971977234, 0.24692296981811523, 0.2587154507637024, -0.08380568772554398, 0.8373497724533081, 0.0010186590952798724, 0.0024208135437220335, -0.0005872270558029413, 0.24501748383045197, -0.2565942406654358, 0.08114518970251083, 0.8146037459373474, -0.005560680292546749, 0.012631373479962349, 0.0021092237439006567]} +{"t": 0.8877, "q": [-0.12108732759952545, 0.008442007005214691, 0.0005356758483685553, 0.31296616792678833, -0.1891016662120819, -0.014915520325303078, -0.07610760629177094, -0.02943538688123226, 0.01832011342048645, 0.33906087279319763, -0.2810305953025818, 0.019778378307819366, -0.018748654052615166, 0.002199626760557294, 0.011402624659240246, 0.246958926320076, 0.2587154507637024, -0.08382965624332428, 0.8373497724533081, 0.0010306433541700244, 0.0024208135437220335, -0.0005992112564854324, 0.24504145979881287, -0.2565942406654358, 0.08112122118473053, 0.8145917654037476, -0.0055367122404277325, 0.012655341997742653, 0.0021092237439006567]} +{"t": 0.9044, "q": [-0.12112993746995926, 0.00843348540365696, 0.0004955001641064882, 0.3130258321762085, -0.1891016662120819, -0.014915520325303078, -0.07606499642133713, -0.029409820213913918, 0.01832011342048645, 0.33909496665000916, -0.2810305953025818, 0.019778378307819366, -0.018762046471238136, 0.0021771409083157778, 0.011378683149814606, 0.2469829022884369, 0.2586914896965027, -0.08382965624332428, 0.8373737931251526, 0.0010186590952798724, 0.0024208135437220335, -0.0006111955153755844, 0.24506542086601257, -0.25660622119903564, 0.08112122118473053, 0.8146157264709473, -0.005572664551436901, 0.012631373479962349, 0.002121207769960165]} +{"t": 0.9211, "q": [-0.12112993746995926, 0.008450528606772423, 0.0004151487664785236, 0.3131536543369293, -0.18909746408462524, -0.01492260117083788, -0.07600533962249756, -0.02941834181547165, 0.018266545608639717, 0.3391631543636322, -0.2810263931751251, 0.019771115854382515, -0.018775437027215958, 0.0021771409083157778, 0.011378683149814606, 0.24697090685367584, 0.2586914896965027, -0.08384163677692413, 0.8373737931251526, 0.0010066749528050423, 0.0024208135437220335, -0.0005872270558029413, 0.24506542086601257, -0.25660622119903564, 0.08112122118473053, 0.8146037459373474, -0.005596633069217205, 0.012643357738852501, 0.002121207769960165]} +{"t": 0.9379, "q": [-0.12114698439836502, 0.008459052070975304, 0.0003481892927084118, 0.3132473826408386, -0.189114511013031, -0.014922695234417915, -0.07596272975206375, -0.029401298612356186, 0.018226370215415955, 0.3392142951488495, -0.2810263931751251, 0.019771115854382515, -0.0188022218644619, 0.0021771409083157778, 0.011378683149814606, 0.2469829022884369, 0.2587154507637024, -0.08382965624332428, 0.8373737931251526, 0.0010306433541700244, 0.0024447820615023375, -0.0006111955153755844, 0.24504145979881287, -0.2565942406654358, 0.08112122118473053, 0.8146037459373474, -0.005572664551436901, 0.012655341997742653, 0.0021092237439006567]} +{"t": 0.9546, "q": [-0.12114698439836502, 0.008450528606772423, 0.0002946217136923224, 0.3132985234260559, -0.1891016662120819, -0.014915520325303078, -0.07591159641742706, -0.029401298612356186, 0.018212977796792984, 0.33923983573913574, -0.28102216124534607, 0.019763853400945663, -0.018788829445838928, 0.0022072053980082273, 0.011359494179487228, 0.2469829022884369, 0.25870347023010254, -0.08381766825914383, 0.8374097347259521, 0.0010066749528050423, 0.0024088292848318815, -0.0005872270558029413, 0.24506542086601257, -0.2565942406654358, 0.08114518970251083, 0.8146157264709473, -0.005572664551436901, 0.012655341997742653, 0.002121207769960165]} +{"t": 0.9713, "q": [-0.12116403132677078, 0.008442007005214691, 0.0002544460294302553, 0.31337523460388184, -0.189114511013031, -0.014922695234417915, -0.0758945494890213, -0.029401298612356186, 0.01815940998494625, 0.339290976524353, -0.281017929315567, 0.019756590947508812, -0.018762046471238136, 0.002192172920331359, 0.011369089595973492, 0.2469829022884369, 0.2587154507637024, -0.08381766825914383, 0.8373977541923523, 0.0010066749528050423, 0.0024208135437220335, -0.0006111955153755844, 0.24505344033241272, -0.25658226013183594, 0.08112122118473053, 0.8146037459373474, -0.005560680292546749, 0.012655341997742653, 0.002121207769960165]} +{"t": 0.988, "q": [-0.12116403132677078, 0.00843348540365696, 0.00020087843586225063, 0.31341785192489624, -0.18910609185695648, -0.014936856925487518, -0.07587751001119614, -0.029409820213913918, 0.01815940998494625, 0.3392994999885559, -0.281017929315567, 0.019756590947508812, -0.018788829445838928, 0.0022072053980082273, 0.011359494179487228, 0.2469829022884369, 0.25872743129730225, -0.08381766825914383, 0.8374336957931519, 0.0010306433541700244, 0.0024208135437220335, -0.0006231797160580754, 0.24506542086601257, -0.25660622119903564, 0.08112122118473053, 0.8145917654037476, -0.0055367122404277325, 0.012655341997742653, 0.0021092237439006567]} +{"t": 1.0048, "q": [-0.12116403132677078, 0.00843348540365696, 0.0001740946463542059, 0.3134519159793854, -0.18909746408462524, -0.01492260117083788, -0.07581785321235657, -0.029409820213913918, 0.01811923459172249, 0.3393421173095703, -0.2810138165950775, 0.019763777032494545, -0.018775437027215958, 0.002207173965871334, 0.011378660798072815, 0.2469829022884369, 0.2586914896965027, -0.08384163677692413, 0.837421715259552, 0.0010306433541700244, 0.0024208135437220335, -0.0005992112564854324, 0.24508939683437347, -0.2566182017326355, 0.08114518970251083, 0.8146157264709473, -0.0055486964993178844, 0.012643357738852501, 0.002133192028850317]} +{"t": 1.0215, "q": [-0.12117255479097366, 0.008450528606772423, 6.695948104606941e-05, 0.31346043944358826, -0.1891016662120819, -0.014915520325303078, -0.07577524334192276, -0.029409820213913918, 0.018052276223897934, 0.33933359384536743, -0.28101372718811035, 0.01974932849407196, -0.018775437027215958, 0.002192172920331359, 0.011369089595973492, 0.24697090685367584, 0.2587154507637024, -0.08382965624332428, 0.8374456763267517, 0.0010186590952798724, 0.0024327978026121855, -0.0005992112564854324, 0.24502946436405182, -0.25660622119903564, 0.08112122118473053, 0.8146157264709473, -0.005596633069217205, 0.012655341997742653, 0.002145176287740469]} +{"t": 1.0382, "q": [-0.12118107080459595, 0.00843348540365696, 2.6783791327034123e-05, 0.313477486371994, -0.1891016662120819, -0.014915520325303078, -0.075758196413517, -0.029409820213913918, 0.018012098968029022, 0.33933359384536743, -0.2810094952583313, 0.01974206604063511, -0.018788829445838928, 0.002207173965871334, 0.011378660798072815, 0.24699488282203674, 0.25870347023010254, -0.08381766825914383, 0.8374456763267517, 0.0010306433541700244, 0.0024208135437220335, -0.0006231797160580754, 0.24502946436405182, -0.25660622119903564, 0.08112122118473053, 0.8146157264709473, -0.0055486964993178844, 0.012679310515522957, 0.002121207769960165]} +{"t": 1.055, "q": [-0.12117255479097366, 0.00843348540365696, 0.0, 0.3134519159793854, -0.1891016662120819, -0.014915520325303078, -0.07574967294931412, -0.029401298612356186, 0.01798531599342823, 0.3393421173095703, -0.28100961446762085, 0.019756514579057693, -0.018775437027215958, 0.002192172920331359, 0.011369089595973492, 0.2469829022884369, 0.2587154507637024, -0.08384163677692413, 0.8374576568603516, 0.0010066749528050423, 0.0024208135437220335, -0.0005992112564854324, 0.24502946436405182, -0.25660622119903564, 0.08112122118473053, 0.8146157264709473, -0.005560680292546749, 0.012667326256632805, 0.0021092237439006567]} +{"t": 1.0717, "q": [-0.12117255479097366, 0.00843348540365696, -4.017568790004589e-05, 0.31346043944358826, -0.18909746408462524, -0.01492260117083788, -0.07574967294931412, -0.029401298612356186, 0.01795853115618229, 0.33931654691696167, -0.28100961446762085, 0.019756514579057693, -0.018775437027215958, 0.002207173965871334, 0.011378660798072815, 0.24697090685367584, 0.2586914896965027, -0.08381766825914383, 0.8374456763267517, 0.0010186590952798724, 0.0024208135437220335, -0.0006231797160580754, 0.24501748383045197, -0.25660622119903564, 0.08114518970251083, 0.8146157264709473, -0.005620601586997509, 0.012667326256632805, 0.0020972394850105047]} +{"t": 1.0884, "q": [-0.12117255479097366, 0.00843348540365696, -5.3567582654068246e-05, 0.3134519159793854, -0.18909746408462524, -0.01492260117083788, -0.07573263347148895, -0.029401298612356186, 0.017931748181581497, 0.3393506407737732, -0.28101372718811035, 0.01974932849407196, -0.018775437027215958, 0.0022222064435482025, 0.011369066312909126, 0.246958926320076, 0.2586914896965027, -0.08381766825914383, 0.8374576568603516, 0.0009946906939148903, 0.0024088292848318815, -0.0006231797160580754, 0.24501748383045197, -0.25660622119903564, 0.08112122118473053, 0.8146157264709473, -0.005572664551436901, 0.012667326256632805, 0.0021092237439006567]} +{"t": 1.1053, "q": [-0.12116403132677078, 0.00843348540365696, -8.035137580009177e-05, 0.3134263753890991, -0.1891016662120819, -0.014915520325303078, -0.07573263347148895, -0.029384253546595573, 0.017904965206980705, 0.3392994999885559, -0.2810053825378418, 0.019749252125620842, -0.018735261633992195, 0.0022222064435482025, 0.011369066312909126, 0.246958926320076, 0.2587154507637024, -0.08382965624332428, 0.8374696373939514, 0.0009946906939148903, 0.0024327978026121855, -0.0006111955153755844, 0.24501748383045197, -0.25658226013183594, 0.08112122118473053, 0.8146157264709473, -0.005572664551436901, 0.012679310515522957, 0.002121207769960165]} +{"t": 1.122, "q": [-0.12117255479097366, 0.00843348540365696, -9.374327055411413e-05, 0.31341785192489624, -0.1891016662120819, -0.014915520325303078, -0.07571558654308319, -0.029409820213913918, 0.017904965206980705, 0.3393080234527588, -0.28100961446762085, 0.019756514579057693, -0.018762046471238136, 0.002207173965871334, 0.011378660798072815, 0.24697090685367584, 0.2586914896965027, -0.08384163677692413, 0.8374456763267517, 0.0010066749528050423, 0.0024208135437220335, -0.0006111955153755844, 0.24502946436405182, -0.25660622119903564, 0.08114518970251083, 0.8146157264709473, -0.005572664551436901, 0.012667326256632805, 0.0020972394850105047]} +{"t": 1.1388, "q": [-0.12118107080459595, 0.008459052070975304, -0.00013391896209213883, 0.31341785192489624, -0.18909746408462524, -0.01492260117083788, -0.07571558654308319, -0.029401298612356186, 0.01782461255788803, 0.3392654061317444, -0.2810094952583313, 0.01974206604063511, -0.018775437027215958, 0.002199626760557294, 0.011402624659240246, 0.24693496525287628, 0.2586914896965027, -0.08382965624332428, 0.8374576568603516, 0.0010066749528050423, 0.0024208135437220335, -0.0006111955153755844, 0.24501748383045197, -0.25660622119903564, 0.08112122118473053, 0.8146037459373474, -0.0055486964993178844, 0.012679310515522957, 0.0020972394850105047]} +{"t": 1.1555, "q": [-0.12119811773300171, 0.008450528606772423, -0.00016070275160018355, 0.3134008049964905, -0.18909746408462524, -0.01492260117083788, -0.07572411000728607, -0.029392777010798454, 0.017838004976511, 0.3392654061317444, -0.2810053825378418, 0.019749252125620842, -0.018735261633992195, 0.002207142999395728, 0.011397827416658401, 0.246958926320076, 0.2586914896965027, -0.08380568772554398, 0.8374696373939514, 0.0010066749528050423, 0.0024088292848318815, -0.0006111955153755844, 0.2450055032968521, -0.25660622119903564, 0.08112122118473053, 0.8146157264709473, -0.005560680292546749, 0.012667326256632805, 0.0020852552261203527]} +{"t": 1.1725, "q": [-0.12120664119720459, 0.008424961939454079, -0.00018748654110822827, 0.3133837580680847, -0.1891016662120819, -0.014915520325303078, -0.07571558654308319, -0.029392777010798454, 0.017838004976511, 0.33923131227493286, -0.28101372718811035, 0.01974932849407196, -0.018748654052615166, 0.002199626760557294, 0.011402624659240246, 0.24694694578647614, 0.2586914896965027, -0.08381766825914383, 0.8374696373939514, 0.0010066749528050423, 0.0024208135437220335, -0.0006111955153755844, 0.2450055032968521, -0.25658226013183594, 0.08112122118473053, 0.8146157264709473, -0.005596633069217205, 0.012691294774413109, 0.0021092237439006567]} +{"t": 1.1892, "q": [-0.12121516466140747, 0.008459052070975304, -0.00020087843586225063, 0.31336671113967896, -0.18909746408462524, -0.01492260117083788, -0.07571558654308319, -0.029384253546595573, 0.017838004976511, 0.3392142951488495, -0.28100961446762085, 0.019756514579057693, -0.018735261633992195, 0.0022146275732666254, 0.011412196792662144, 0.24691098928451538, 0.2586914896965027, -0.08380568772554398, 0.8374935984611511, 0.0010306433541700244, 0.0024208135437220335, -0.0006111955153755844, 0.2449815273284912, -0.2566182017326355, 0.08114518970251083, 0.8146037459373474, -0.005596633069217205, 0.012667326256632805, 0.0020732709672302008]} +{"t": 1.206, "q": [-0.12123220413923264, 0.008450528606772423, -0.00020087843586225063, 0.3133837580680847, -0.18910609185695648, -0.014936856925487518, -0.07574115693569183, -0.029392777010798454, 0.01782461255788803, 0.3392057716846466, -0.28100961446762085, 0.019756514579057693, -0.018788829445838928, 0.002192094689235091, 0.011417006142437458, 0.24693496525287628, 0.2587154507637024, -0.08380568772554398, 0.8374816179275513, 0.0010066749528050423, 0.0024088292848318815, -0.0006231797160580754, 0.24501748383045197, -0.2565942406654358, 0.08112122118473053, 0.8146157264709473, -0.0055486964993178844, 0.012655341997742653, 0.0021092237439006567]} +{"t": 1.2227, "q": [-0.12122368067502975, 0.008450528606772423, -0.00021427033061627299, 0.3133922815322876, -0.1891016662120819, -0.014915520325303078, -0.07573263347148895, -0.029392777010798454, 0.01782461255788803, 0.33923983573913574, -0.28101372718811035, 0.01974932849407196, -0.0188022218644619, 0.0021770778112113476, 0.011417016386985779, 0.24692296981811523, 0.2586914896965027, -0.08380568772554398, 0.8374816179275513, 0.0010186590952798724, 0.0024208135437220335, -0.0006111955153755844, 0.24502946436405182, -0.2565942406654358, 0.08114518970251083, 0.8146157264709473, -0.005620601586997509, 0.012679310515522957, 0.0021092237439006567]} +{"t": 1.2394, "q": [-0.12123220413923264, 0.008442007005214691, -0.00020087843586225063, 0.31337523460388184, -0.1891016662120819, -0.014915520325303078, -0.07573263347148895, -0.029401298612356186, 0.01781122200191021, 0.33923131227493286, -0.2810053825378418, 0.019749252125620842, -0.0188022218644619, 0.002192094689235091, 0.011417006142437458, 0.24692296981811523, 0.25872743129730225, -0.08382965624332428, 0.8374935984611511, 0.0010066749528050423, 0.0024208135437220335, -0.0005992112564854324, 0.24502946436405182, -0.25660622119903564, 0.08114518970251083, 0.8146157264709473, -0.005596633069217205, 0.012679310515522957, 0.0020972394850105047]} +{"t": 1.2562, "q": [-0.1212492510676384, 0.008459052070975304, -0.00021427033061627299, 0.3133496642112732, -0.18910588324069977, -0.014908439479768276, -0.07573263347148895, -0.029392777010798454, 0.017757654190063477, 0.33923131227493286, -0.28101372718811035, 0.01974932849407196, -0.018788829445838928, 0.002184578450396657, 0.011421803385019302, 0.24692296981811523, 0.2586914896965027, -0.08382965624332428, 0.837505578994751, 0.0010066749528050423, 0.0024208135437220335, -0.0005872270558029413, 0.2450055032968521, -0.25660622119903564, 0.08112122118473053, 0.8146157264709473, -0.005596633069217205, 0.012679310515522957, 0.002121207769960165]} +{"t": 1.2731, "q": [-0.12126629799604416, 0.008424961939454079, -0.0002410541201243177, 0.31337523460388184, -0.18909746408462524, -0.01492260117083788, -0.07571558654308319, -0.029392777010798454, 0.017744261771440506, 0.3392142951488495, -0.28101372718811035, 0.01974932849407196, -0.018775437027215958, 0.002199595095589757, 0.011421792209148407, 0.24692296981811523, 0.25870347023010254, -0.08382965624332428, 0.837505578994751, 0.0010186590952798724, 0.0024208135437220335, -0.0006111955153755844, 0.24501748383045197, -0.25658226013183594, 0.08112122118473053, 0.8146157264709473, -0.005620601586997509, 0.012679310515522957, 0.0021092237439006567]} +{"t": 1.2898, "q": [-0.12126629799604416, 0.008407918736338615, -0.00026783792418427765, 0.31341785192489624, -0.1891016662120819, -0.014915520325303078, -0.07569854706525803, -0.029392777010798454, 0.017744261771440506, 0.3392483592033386, -0.28101372718811035, 0.01974932849407196, -0.018775437027215958, 0.002184578450396657, 0.011421803385019302, 0.24689900875091553, 0.2587154507637024, -0.08382965624332428, 0.8374935984611511, 0.0010186590952798724, 0.0024327978026121855, -0.0006111955153755844, 0.2450055032968521, -0.25660622119903564, 0.08114518970251083, 0.8146157264709473, -0.005596633069217205, 0.012691294774413109, 0.0020972394850105047]} +{"t": 1.3065, "q": [-0.12126629799604416, 0.008442007005214691, -0.00026783792418427765, 0.3133496642112732, -0.18909746408462524, -0.01492260117083788, -0.07571558654308319, -0.029392777010798454, 0.017730869352817535, 0.33923983573913574, -0.2810012698173523, 0.019756436347961426, -0.018762046471238136, 0.002184578450396657, 0.011421803385019302, 0.24694694578647614, 0.25870347023010254, -0.08382965624332428, 0.8375175595283508, 0.0010186590952798724, 0.0024208135437220335, -0.0006111955153755844, 0.24501748383045197, -0.2565942406654358, 0.08112122118473053, 0.8146157264709473, -0.005572664551436901, 0.012679310515522957, 0.0021092237439006567]} +{"t": 1.3233, "q": [-0.12125777453184128, 0.008416440337896347, -0.0002812298189383, 0.3134008049964905, -0.18909746408462524, -0.01492260117083788, -0.07571558654308319, -0.029401298612356186, 0.017717478796839714, 0.33923131227493286, -0.28100961446762085, 0.019756514579057693, -0.018762046471238136, 0.0021845942828804255, 0.011412220075726509, 0.24693496525287628, 0.2586914896965027, -0.08382965624332428, 0.8375175595283508, 0.0010186590952798724, 0.0024208135437220335, -0.0005992112564854324, 0.2450055032968521, -0.2565942406654358, 0.08112122118473053, 0.8146037459373474, -0.005572664551436901, 0.012691294774413109, 0.0020972394850105047]} +{"t": 1.34, "q": [-0.12125777453184128, 0.008442007005214691, -0.0002812298189383, 0.3134008049964905, -0.18909326195716858, -0.01492968201637268, -0.07570706307888031, -0.029401298612356186, 0.017717478796839714, 0.3392483592033386, -0.2810053825378418, 0.019749252125620842, -0.0188022218644619, 0.002192094689235091, 0.011417006142437458, 0.24694694578647614, 0.2586914896965027, -0.08382965624332428, 0.8375295400619507, 0.0010066749528050423, 0.0024208135437220335, -0.0006111955153755844, 0.24501748383045197, -0.25660622119903564, 0.08112122118473053, 0.8146157264709473, -0.0055486964993178844, 0.012691294774413109, 0.0021092237439006567]} +{"t": 1.3567, "q": [-0.1212492510676384, 0.008442007005214691, -0.00030801360844634473, 0.3134263753890991, -0.18909746408462524, -0.01492260117083788, -0.07570706307888031, -0.029392777010798454, 0.017704086378216743, 0.33927392959594727, -0.2810053825378418, 0.019749252125620842, -0.018775437027215958, 0.002177093643695116, 0.011407433077692986, 0.24694694578647614, 0.2587154507637024, -0.08382965624332428, 0.8375295400619507, 0.0010186590952798724, 0.0024327978026121855, -0.0006111955153755844, 0.24501748383045197, -0.25660622119903564, 0.08112122118473053, 0.8146157264709473, -0.005572664551436901, 0.012679310515522957, 0.0021092237439006567]} +{"t": 1.3735, "q": [-0.12125777453184128, 0.008459052070975304, -0.00030801360844634473, 0.31346043944358826, -0.1891016662120819, -0.014915520325303078, -0.07571558654308319, -0.029392777010798454, 0.017730869352817535, 0.33927392959594727, -0.28100961446762085, 0.019756514579057693, -0.018788829445838928, 0.002184578450396657, 0.011421803385019302, 0.24694694578647614, 0.2587154507637024, -0.08382965624332428, 0.8375175595283508, 0.0009827064350247383, 0.0024447820615023375, -0.0005992112564854324, 0.24501748383045197, -0.25660622119903564, 0.08112122118473053, 0.8146157264709473, -0.005596633069217205, 0.012691294774413109, 0.002169144805520773]} +{"t": 1.3902, "q": [-0.12125777453184128, 0.008484616875648499, -0.00030801360844634473, 0.31346896290779114, -0.18908905982971191, -0.014936761930584908, -0.07567297667264938, -0.029384253546595573, 0.017717478796839714, 0.3392994999885559, -0.28101372718811035, 0.01974932849407196, -0.0188022218644619, 0.002192094689235091, 0.011417006142437458, 0.24694694578647614, 0.2587154507637024, -0.08380568772554398, 0.8375535607337952, 0.0010186590952798724, 0.0024208135437220335, -0.0006111955153755844, 0.24501748383045197, -0.25660622119903564, 0.08112122118473053, 0.8146157264709473, -0.005572664551436901, 0.012679310515522957, 0.002145176287740469]} +{"t": 1.4069, "q": [-0.12126629799604416, 0.008442007005214691, -0.0003214055032003671, 0.3134348690509796, -0.18909746408462524, -0.01492260117083788, -0.07570706307888031, -0.029409820213913918, 0.017717478796839714, 0.33928245306015015, -0.28100961446762085, 0.019756514579057693, -0.018708478659391403, 0.0021845942828804255, 0.011412220075726509, 0.24694694578647614, 0.25870347023010254, -0.08380568772554398, 0.8375775218009949, 0.0010066749528050423, 0.0024327978026121855, -0.0005992112564854324, 0.2450055032968521, -0.25660622119903564, 0.08112122118473053, 0.8146037459373474, -0.005596633069217205, 0.01270327903330326, 0.002169144805520773]} +{"t": 1.4236, "q": [-0.12127481400966644, 0.008442007005214691, -0.0003214055032003671, 0.3134433925151825, -0.18909746408462524, -0.01492260117083788, -0.07569002360105515, -0.029409820213913918, 0.017717478796839714, 0.339290976524353, -0.28101372718811035, 0.01974932849407196, -0.018762046471238136, 0.0021845942828804255, 0.011412220075726509, 0.246958926320076, 0.2587154507637024, -0.08382965624332428, 0.8375535607337952, 0.0009707222343422472, 0.0024088292848318815, -0.0005992112564854324, 0.24501748383045197, -0.25660622119903564, 0.08112122118473053, 0.8146157264709473, -0.005560680292546749, 0.012691294774413109, 0.0021092237439006567]} +{"t": 1.4405, "q": [-0.12126629799604416, 0.008416440337896347, -0.0003214055032003671, 0.3134519159793854, -0.18909746408462524, -0.01492260117083788, -0.07568150013685226, -0.029392777010798454, 0.017717478796839714, 0.33927392959594727, -0.28101372718811035, 0.01974932849407196, -0.018775437027215958, 0.0021846257150173187, 0.011393053457140923, 0.24693496525287628, 0.25872743129730225, -0.08382965624332428, 0.837565541267395, 0.0010306433541700244, 0.0024567660875618458, -0.0005992112564854324, 0.24502946436405182, -0.25660622119903564, 0.08112122118473053, 0.8146277070045471, -0.005620601586997509, 0.012679310515522957, 0.0021092237439006567]} +{"t": 1.4572, "q": [-0.12127481400966644, 0.008459052070975304, -0.00030801360844634473, 0.3134860098361969, -0.18909746408462524, -0.01492260117083788, -0.07565592974424362, -0.029392777010798454, 0.017730869352817535, 0.33931654691696167, -0.28100961446762085, 0.019756514579057693, -0.018762046471238136, 0.0021921261213719845, 0.011397839523851871, 0.246958926320076, 0.2587154507637024, -0.08380568772554398, 0.837565541267395, 0.0010426276130601764, 0.0024327978026121855, -0.0006111955153755844, 0.24502946436405182, -0.25660622119903564, 0.08112122118473053, 0.8146277070045471, -0.005596633069217205, 0.012679310515522957, 0.0021092237439006567]} +{"t": 1.4739, "q": [-0.1212918609380722, 0.008459052070975304, -0.00033479739795438945, 0.31350305676460266, -0.18909746408462524, -0.01492260117083788, -0.07564741373062134, -0.029401298612356186, 0.017717478796839714, 0.3393080234527588, -0.28100961446762085, 0.019756514579057693, -0.018748654052615166, 0.0022071271669119596, 0.011407410725951195, 0.24692296981811523, 0.25870347023010254, -0.08382965624332428, 0.8375775218009949, 0.0010306433541700244, 0.0024208135437220335, -0.0005992112564854324, 0.24501748383045197, -0.2566182017326355, 0.08112122118473053, 0.8146277070045471, -0.005608617328107357, 0.01270327903330326, 0.0021092237439006567]} +{"t": 1.4907, "q": [-0.12127481400966644, 0.008442007005214691, -0.00033479739795438945, 0.31346896290779114, -0.18911029398441315, -0.014929776079952717, -0.07564741373062134, -0.029401298612356186, 0.017717478796839714, 0.33928245306015015, -0.2810053825378418, 0.019749252125620842, -0.018735261633992195, 0.002199626760557294, 0.011402624659240246, 0.24693496525287628, 0.25872743129730225, -0.08381766825914383, 0.8375775218009949, 0.0010066749528050423, 0.0024208135437220335, -0.0005992112564854324, 0.24505344033241272, -0.25658226013183594, 0.08114518970251083, 0.8146277070045471, -0.005596633069217205, 0.01270327903330326, 0.002121207769960165]} +{"t": 1.5075, "q": [-0.12127481400966644, 0.008450528606772423, -0.00033479739795438945, 0.31346896290779114, -0.18909746408462524, -0.01492260117083788, -0.07565592974424362, -0.029401298612356186, 0.017717478796839714, 0.339290976524353, -0.28101372718811035, 0.01974932849407196, -0.018775437027215958, 0.002199626760557294, 0.011402624659240246, 0.24693496525287628, 0.2587154507637024, -0.08380568772554398, 0.8375775218009949, 0.0010066749528050423, 0.0024208135437220335, -0.0006231797160580754, 0.24502946436405182, -0.25660622119903564, 0.08114518970251083, 0.8146157264709473, -0.005632585845887661, 0.012715263292193413, 0.002121207769960165]} +{"t": 1.5242, "q": [-0.12127481400966644, 0.008459052070975304, -0.0003481892927084118, 0.31350305676460266, -0.1891016662120819, -0.014915520325303078, -0.07563889026641846, -0.029409820213913918, 0.017730869352817535, 0.33931654691696167, -0.28101372718811035, 0.01974932849407196, -0.0188022218644619, 0.002192094689235091, 0.011417006142437458, 0.24694694578647614, 0.2587154507637024, -0.08379369974136353, 0.8375775218009949, 0.0010186590952798724, 0.0024208135437220335, -0.0006111955153755844, 0.24501748383045197, -0.25660622119903564, 0.08114518970251083, 0.8146277070045471, -0.005620601586997509, 0.01270327903330326, 0.002133192028850317]} +{"t": 1.5411, "q": [-0.12127481400966644, 0.008459052070975304, -0.0003481892927084118, 0.3134860098361969, -0.18909326195716858, -0.01492968201637268, -0.07563036680221558, -0.029384253546595573, 0.017717478796839714, 0.339290976524353, -0.28101372718811035, 0.01974932849407196, -0.018788829445838928, 0.0021845942828804255, 0.011412220075726509, 0.24694694578647614, 0.2587154507637024, -0.08381766825914383, 0.8375775218009949, 0.0010426276130601764, 0.0024327978026121855, -0.0006231797160580754, 0.24501748383045197, -0.2566182017326355, 0.08114518970251083, 0.8146157264709473, -0.005596633069217205, 0.012691294774413109, 0.002133192028850317]} +{"t": 1.5578, "q": [-0.12127481400966644, 0.008450528606772423, -0.00036158118746243417, 0.3134860098361969, -0.18909746408462524, -0.01492260117083788, -0.07563889026641846, -0.029375731945037842, 0.017717478796839714, 0.33928245306015015, -0.28101372718811035, 0.01974932849407196, -0.018762046471238136, 0.0021845942828804255, 0.011412220075726509, 0.24693496525287628, 0.25872743129730225, -0.08380568772554398, 0.8375895023345947, 0.0010306433541700244, 0.0024327978026121855, -0.0006111955153755844, 0.2450055032968521, -0.25660622119903564, 0.08113320171833038, 0.8146157264709473, -0.005596633069217205, 0.012715263292193413, 0.002121207769960165]} +{"t": 1.5746, "q": [-0.12128333747386932, 0.008459052070975304, -0.00037497308221645653, 0.31350305676460266, -0.18910609185695648, -0.014936856925487518, -0.07564741373062134, -0.029384253546595573, 0.017704086378216743, 0.33928245306015015, -0.28100961446762085, 0.019756514579057693, -0.018762046471238136, 0.002192094689235091, 0.011417006142437458, 0.24692296981811523, 0.2587154507637024, -0.08380568772554398, 0.8375895023345947, 0.0010546118719503284, 0.0024088292848318815, -0.0006231797160580754, 0.2450055032968521, -0.2565942406654358, 0.08110923320055008, 0.8146157264709473, -0.005632585845887661, 0.012715263292193413, 0.002121207769960165]} +{"t": 1.5915, "q": [-0.12127481400966644, 0.00843348540365696, -0.00036158118746243417, 0.31350305676460266, -0.1891016662120819, -0.014915520325303078, -0.07564741373062134, -0.029401298612356186, 0.017690693959593773, 0.339290976524353, -0.2810053825378418, 0.019749252125620842, -0.018788829445838928, 0.002192094689235091, 0.011417006142437458, 0.24694694578647614, 0.2587154507637024, -0.08381766825914383, 0.8376014828681946, 0.0010306433541700244, 0.0024088292848318815, -0.0005872270558029413, 0.2450055032968521, -0.25660622119903564, 0.08114518970251083, 0.8145917654037476, -0.005596633069217205, 0.01270327903330326, 0.002121207769960165]} +{"t": 1.6082, "q": [-0.12125777453184128, 0.008459052070975304, -0.00036158118746243417, 0.3134860098361969, -0.18909326195716858, -0.01492968201637268, -0.07563889026641846, -0.029401298612356186, 0.01763712614774704, 0.33928245306015015, -0.2810094952583313, 0.01974206604063511, -0.018775437027215958, 0.002184578450396657, 0.011421803385019302, 0.24693496525287628, 0.2587154507637024, -0.08380568772554398, 0.8376014828681946, 0.0010546118719503284, 0.0024088292848318815, -0.0006231797160580754, 0.2450055032968521, -0.2565942406654358, 0.08113320171833038, 0.8146277070045471, -0.005572664551436901, 0.012727247551083565, 0.002121207769960165]} +{"t": 1.6249, "q": [-0.12127481400966644, 0.008450528606772423, -0.0003883649769704789, 0.31346896290779114, -0.18909746408462524, -0.01492260117083788, -0.07563036680221558, -0.029401298612356186, 0.01763712614774704, 0.33928245306015015, -0.28101372718811035, 0.01974932849407196, -0.018748654052615166, 0.0021845942828804255, 0.011412220075726509, 0.24694694578647614, 0.2587154507637024, -0.08379369974136353, 0.8376014828681946, 0.0010905645322054625, 0.0023968450259417295, -0.0006111955153755844, 0.24501748383045197, -0.25660622119903564, 0.08112122118473053, 0.8146037459373474, -0.005596633069217205, 0.012727247551083565, 0.002145176287740469]} +{"t": 1.6419, "q": [-0.12127481400966644, 0.00843348540365696, -0.00040175687172450125, 0.31346043944358826, -0.1891016662120819, -0.014915520325303078, -0.07564741373062134, -0.029392777010798454, 0.01762373559176922, 0.3392654061317444, -0.28101372718811035, 0.01974932849407196, -0.0188022218644619, 0.0021845942828804255, 0.011412220075726509, 0.24691098928451538, 0.2587154507637024, -0.08382965624332428, 0.8376014828681946, 0.0010665960144251585, 0.0024088292848318815, -0.0006111955153755844, 0.2450055032968521, -0.25660622119903564, 0.08112122118473053, 0.8146037459373474, -0.005596633069217205, 0.012727247551083565, 0.002121207769960165]} +{"t": 1.6586, "q": [-0.12128333747386932, 0.00843348540365696, -0.00040175687172450125, 0.31346896290779114, -0.1891016662120819, -0.014915520325303078, -0.07563889026641846, -0.029392777010798454, 0.01765051856637001, 0.3392654061317444, -0.28101372718811035, 0.01974932849407196, -0.018721869215369225, 0.0021845942828804255, 0.011412220075726509, 0.24693496525287628, 0.2587394118309021, -0.08382965624332428, 0.8376134634017944, 0.0010665960144251585, 0.0024088292848318815, -0.0006231797160580754, 0.24501748383045197, -0.2565942406654358, 0.08112122118473053, 0.8146157264709473, -0.005596633069217205, 0.01270327903330326, 0.002121207769960165]} +{"t": 1.6753, "q": [-0.12127481400966644, 0.008407918736338615, -0.00040175687172450125, 0.3134519159793854, -0.1891016662120819, -0.014915520325303078, -0.07564741373062134, -0.029401298612356186, 0.01762373559176922, 0.3392483592033386, -0.2810053825378418, 0.019749252125620842, -0.018775437027215958, 0.002192094689235091, 0.011417006142437458, 0.246958926320076, 0.2586914896965027, -0.08380568772554398, 0.8376014828681946, 0.0010426276130601764, 0.0023728765081614256, -0.0006111955153755844, 0.2450055032968521, -0.2566182017326355, 0.08114518970251083, 0.8146157264709473, -0.005620601586997509, 0.012739231809973717, 0.002133192028850317]} +{"t": 1.6921, "q": [-0.12127481400966644, 0.008450528606772423, -0.0004151487664785236, 0.31346896290779114, -0.18909746408462524, -0.01492260117083788, -0.07563889026641846, -0.029392777010798454, 0.01763712614774704, 0.3392483592033386, -0.28100961446762085, 0.019756514579057693, -0.018788829445838928, 0.0021845942828804255, 0.011412220075726509, 0.24693496525287628, 0.2586914896965027, -0.08382965624332428, 0.8376254439353943, 0.0010905645322054625, 0.0023968450259417295, -0.0006111955153755844, 0.24499352276325226, -0.2565942406654358, 0.08112122118473053, 0.8146037459373474, -0.005632585845887661, 0.012727247551083565, 0.0021092237439006567]} +{"t": 1.7089, "q": [-0.12125777453184128, 0.008450528606772423, -0.0004151487664785236, 0.3134860098361969, -0.1891016662120819, -0.014915520325303078, -0.07564741373062134, -0.029392777010798454, 0.01763712614774704, 0.3392483592033386, -0.2810094952583313, 0.01974206604063511, -0.01881561428308487, 0.0021770622115582228, 0.011426599696278572, 0.24694694578647614, 0.2587154507637024, -0.08384163677692413, 0.8376134634017944, 0.0010905645322054625, 0.0024088292848318815, -0.0006111955153755844, 0.24502946436405182, -0.2565942406654358, 0.08112122118473053, 0.8146037459373474, -0.005656554363667965, 0.012715263292193413, 0.0021092237439006567]} +{"t": 1.7256, "q": [-0.12128333747386932, 0.008450528606772423, -0.0004151487664785236, 0.31346896290779114, -0.18911029398441315, -0.014929776079952717, -0.07561331987380981, -0.029392777010798454, 0.01762373559176922, 0.3392142951488495, -0.2810094952583313, 0.01974206604063511, -0.018775437027215958, 0.0021845942828804255, 0.011412220075726509, 0.24694694578647614, 0.2587394118309021, -0.08380568772554398, 0.8376134634017944, 0.0010306433541700244, 0.0024088292848318815, -0.0006111955153755844, 0.24504145979881287, -0.25660622119903564, 0.08114518970251083, 0.8146037459373474, -0.005620601586997509, 0.012715263292193413, 0.0020972394850105047]} +{"t": 1.7425, "q": [-0.1212918609380722, 0.00843348540365696, -0.00042854066123254597, 0.313477486371994, -0.18909746408462524, -0.01492260117083788, -0.07564741373062134, -0.029401298612356186, 0.01763712614774704, 0.3392142951488495, -0.28100961446762085, 0.019756514579057693, -0.018775437027215958, 0.002184578450396657, 0.011421803385019302, 0.24694694578647614, 0.2587154507637024, -0.08381766825914383, 0.8376374244689941, 0.0010186590952798724, 0.0024088292848318815, -0.0006231797160580754, 0.24504145979881287, -0.25660622119903564, 0.08114518970251083, 0.8146157264709473, -0.005620601586997509, 0.012727247551083565, 0.0021092237439006567]} +{"t": 1.7592, "q": [-0.12130890786647797, 0.008442007005214691, -0.00042854066123254597, 0.31346896290779114, -0.18909746408462524, -0.01492260117083788, -0.07564741373062134, -0.029401298612356186, 0.01763712614774704, 0.3392142951488495, -0.28100529313087463, 0.019734805449843407, -0.018762046471238136, 0.0021770778112113476, 0.011417016386985779, 0.24693496525287628, 0.2587154507637024, -0.08380568772554398, 0.8376134634017944, 0.0010066749528050423, 0.0024327978026121855, -0.0006111955153755844, 0.24502946436405182, -0.25658226013183594, 0.08112122118473053, 0.8146037459373474, -0.005632585845887661, 0.012727247551083565, 0.002121207769960165]} +{"t": 1.7759, "q": [-0.1212918609380722, 0.008424961939454079, -0.00040175687172450125, 0.31346896290779114, -0.1891016662120819, -0.014915520325303078, -0.07564741373062134, -0.029392777010798454, 0.01763712614774704, 0.33923131227493286, -0.28101372718811035, 0.01974932849407196, -0.018788829445838928, 0.0021845942828804255, 0.011412220075726509, 0.246958926320076, 0.2587154507637024, -0.08382965624332428, 0.8376134634017944, 0.0010066749528050423, 0.0024088292848318815, -0.0006111955153755844, 0.24502946436405182, -0.25660622119903564, 0.08114518970251083, 0.8146157264709473, -0.005620601586997509, 0.012739231809973717, 0.0021092237439006567]} +{"t": 1.7927, "q": [-0.1212918609380722, 0.008424961939454079, -0.00042854066123254597, 0.31346896290779114, -0.18911029398441315, -0.014929776079952717, -0.07564741373062134, -0.029392777010798454, 0.01765051856637001, 0.33923131227493286, -0.2810136079788208, 0.019734881818294525, -0.018748654052615166, 0.002199595095589757, 0.011421792209148407, 0.24693496525287628, 0.2586914896965027, -0.08384163677692413, 0.8376134634017944, 0.0009707222343422472, 0.0023968450259417295, -0.0006111955153755844, 0.24501748383045197, -0.2565942406654358, 0.08112122118473053, 0.8146157264709473, -0.005620601586997509, 0.012739231809973717, 0.002133192028850317]} +{"t": 1.8095, "q": [-0.1212918609380722, 0.008450528606772423, -0.0004151487664785236, 0.3134860098361969, -0.1891016662120819, -0.014915520325303078, -0.07564741373062134, -0.029409820213913918, 0.01763712614774704, 0.3392142951488495, -0.28101372718811035, 0.01974932849407196, -0.018762046471238136, 0.0021845942828804255, 0.011412220075726509, 0.24694694578647614, 0.2586914896965027, -0.08384163677692413, 0.8376374244689941, 0.0010186590952798724, 0.0024088292848318815, -0.0006231797160580754, 0.24502946436405182, -0.25660622119903564, 0.08112122118473053, 0.8146157264709473, -0.005632585845887661, 0.012751216068863869, 0.0020972394850105047]} +{"t": 1.8262, "q": [-0.12130038440227509, 0.008424961939454079, -0.0004151487664785236, 0.31346043944358826, -0.1891016662120819, -0.014915520325303078, -0.07565592974424362, -0.029392777010798454, 0.01766391098499298, 0.33923131227493286, -0.2810136079788208, 0.019734881818294525, -0.018762046471238136, 0.002192094689235091, 0.011417006142437458, 0.246958926320076, 0.2587154507637024, -0.08380568772554398, 0.8376374244689941, 0.0010186590952798724, 0.0024208135437220335, -0.0006111955153755844, 0.24501748383045197, -0.25660622119903564, 0.08112122118473053, 0.8146157264709473, -0.005632585845887661, 0.012739231809973717, 0.002121207769960165]} +{"t": 1.8429, "q": [-0.1212918609380722, 0.00843348540365696, -0.00042854066123254597, 0.313477486371994, -0.18911029398441315, -0.014929776079952717, -0.07563889026641846, -0.029392777010798454, 0.01765051856637001, 0.3392483592033386, -0.28100961446762085, 0.019756514579057693, -0.018788829445838928, 0.0021770778112113476, 0.011417016386985779, 0.24693496525287628, 0.25872743129730225, -0.08380568772554398, 0.8376613855361938, 0.0010186590952798724, 0.0024208135437220335, -0.0006231797160580754, 0.24502946436405182, -0.25660622119903564, 0.08112122118473053, 0.8146157264709473, -0.005596633069217205, 0.012727247551083565, 0.002121207769960165]} +{"t": 1.8596, "q": [-0.12130890786647797, 0.008416440337896347, -0.00042854066123254597, 0.313477486371994, -0.1891016662120819, -0.014915520325303078, -0.0756644532084465, -0.029392777010798454, 0.01762373559176922, 0.33922281861305237, -0.28100115060806274, 0.01974198967218399, -0.018762046471238136, 0.0021770778112113476, 0.011417016386985779, 0.24693496525287628, 0.2586914896965027, -0.08381766825914383, 0.8376374244689941, 0.0010306433541700244, 0.0024208135437220335, -0.0005992112564854324, 0.24504145979881287, -0.2566182017326355, 0.08112122118473053, 0.8146037459373474, -0.005632585845887661, 0.012739231809973717, 0.002133192028850317]} +{"t": 1.8764, "q": [-0.12130890786647797, 0.00843348540365696, -0.0004151487664785236, 0.31346896290779114, -0.1891016662120819, -0.014915520325303078, -0.07564741373062134, -0.029392777010798454, 0.01762373559176922, 0.33923983573913574, -0.28101372718811035, 0.01974932849407196, -0.018775437027215958, 0.002199595095589757, 0.011421792209148407, 0.246958926320076, 0.2587154507637024, -0.08380568772554398, 0.837649405002594, 0.0010066749528050423, 0.0024208135437220335, -0.0006111955153755844, 0.24504145979881287, -0.2565942406654358, 0.08112122118473053, 0.8146277070045471, -0.005632585845887661, 0.012727247551083565, 0.002121207769960165]} +{"t": 1.8932, "q": [-0.12130890786647797, 0.008442007005214691, -0.00042854066123254597, 0.31346896290779114, -0.1891016662120819, -0.014915520325303078, -0.07564741373062134, -0.029401298612356186, 0.01762373559176922, 0.33923131227493286, -0.28101372718811035, 0.01974932849407196, -0.018788829445838928, 0.0021920788567513227, 0.011426589451730251, 0.24693496525287628, 0.25870347023010254, -0.08380568772554398, 0.8376613855361938, 0.0010066749528050423, 0.0024208135437220335, -0.0006111955153755844, 0.2450055032968521, -0.25660622119903564, 0.08114518970251083, 0.8146157264709473, -0.005584648810327053, 0.012727247551083565, 0.002121207769960165]} +{"t": 1.9099, "q": [-0.12130038440227509, 0.008442007005214691, -0.00042854066123254597, 0.3134519159793854, -0.1891016662120819, -0.014915520325303078, -0.07564741373062134, -0.029392777010798454, 0.01763712614774704, 0.33923131227493286, -0.2810053825378418, 0.019749252125620842, -0.018762046471238136, 0.0021695615723729134, 0.011421813629567623, 0.24693496525287628, 0.2586914896965027, -0.08379369974136353, 0.8376613855361938, 0.0010186590952798724, 0.0024208135437220335, -0.0005992112564854324, 0.24502946436405182, -0.25660622119903564, 0.08110923320055008, 0.8146157264709473, -0.005620601586997509, 0.012739231809973717, 0.0021092237439006567]} +{"t": 1.9268, "q": [-0.12130890786647797, 0.008442007005214691, -0.00042854066123254597, 0.31346896290779114, -0.18909746408462524, -0.01492260117083788, -0.07563889026641846, -0.029401298612356186, 0.01765051856637001, 0.3392483592033386, -0.2810094952583313, 0.01974206604063511, -0.018762046471238136, 0.0022146119736135006, 0.011421780101954937, 0.24692296981811523, 0.2587154507637024, -0.08380568772554398, 0.8376613855361938, 0.0010306433541700244, 0.0024208135437220335, -0.0006231797160580754, 0.24501748383045197, -0.25660622119903564, 0.08114518970251083, 0.8146157264709473, -0.005620601586997509, 0.012739231809973717, 0.002145176287740469]} +{"t": 1.9437, "q": [-0.12130890786647797, 0.00843348540365696, -0.00044193255598656833, 0.3134519159793854, -0.18911029398441315, -0.014929776079952717, -0.07564741373062134, -0.029392777010798454, 0.01762373559176922, 0.33922281861305237, -0.28100547194480896, 0.019763698801398277, -0.018788829445838928, 0.002192094689235091, 0.011417006142437458, 0.24693496525287628, 0.2587154507637024, -0.08380568772554398, 0.8376613855361938, 0.0010306433541700244, 0.0024208135437220335, -0.0006111955153755844, 0.24502946436405182, -0.25660622119903564, 0.08112122118473053, 0.8146157264709473, -0.005644570104777813, 0.012751216068863869, 0.002133192028850317]} +{"t": 1.9605, "q": [-0.12131742388010025, 0.008450528606772423, -0.00042854066123254597, 0.31346896290779114, -0.18909746408462524, -0.01492260117083788, -0.07565592974424362, -0.029384253546595573, 0.01763712614774704, 0.33923131227493286, -0.28100529313087463, 0.019734805449843407, -0.01881561428308487, 0.0021920788567513227, 0.011426589451730251, 0.24692296981811523, 0.2586914896965027, -0.08381766825914383, 0.837649405002594, 0.0010306433541700244, 0.0024088292848318815, -0.0006231797160580754, 0.24501748383045197, -0.25660622119903564, 0.08112122118473053, 0.8146157264709473, -0.005596633069217205, 0.012751216068863869, 0.002121207769960165]} +{"t": 1.9772, "q": [-0.12130890786647797, 0.008442007005214691, -0.00042854066123254597, 0.31346896290779114, -0.18909746408462524, -0.01492260117083788, -0.0756644532084465, -0.029401298612356186, 0.01763712614774704, 0.3392142951488495, -0.28100961446762085, 0.019756514579057693, -0.01882900483906269, 0.002184578450396657, 0.011421803385019302, 0.24694694578647614, 0.2587154507637024, -0.08381766825914383, 0.8376613855361938, 0.0010066749528050423, 0.0024208135437220335, -0.0006231797160580754, 0.2450055032968521, -0.2566182017326355, 0.08112122118473053, 0.8146037459373474, -0.005632585845887661, 0.012739231809973717, 0.002133192028850317]} +{"t": 1.9939, "q": [-0.12133447080850601, 0.00843348540365696, -0.00042854066123254597, 0.3134263753890991, -0.1891016662120819, -0.014915520325303078, -0.07567297667264938, -0.029409820213913918, 0.01763712614774704, 0.3391631543636322, -0.28100961446762085, 0.019756514579057693, -0.0188022218644619, 0.002199626760557294, 0.011402624659240246, 0.24692296981811523, 0.25870347023010254, -0.08382965624332428, 0.8376613855361938, 0.0010186590952798724, 0.0024327978026121855, -0.0006111955153755844, 0.2450055032968521, -0.2565942406654358, 0.08114518970251083, 0.8146037459373474, -0.005608617328107357, 0.012751216068863869, 0.002133192028850317]} +{"t": 2.0106, "q": [-0.12133447080850601, 0.00843348540365696, -0.0004151487664785236, 0.31346896290779114, -0.18909746408462524, -0.01492260117083788, -0.0756644532084465, -0.02941834181547165, 0.01765051856637001, 0.3391631543636322, -0.28101372718811035, 0.01974932849407196, -0.0188022218644619, 0.0021770778112113476, 0.011417016386985779, 0.24692296981811523, 0.2587154507637024, -0.08380568772554398, 0.8376613855361938, 0.0010066749528050423, 0.0024208135437220335, -0.0006111955153755844, 0.24502946436405182, -0.25660622119903564, 0.08112122118473053, 0.8146157264709473, -0.005596633069217205, 0.012739231809973717, 0.0020972394850105047]} +{"t": 2.0275, "q": [-0.12131742388010025, 0.008416440337896347, -0.00042854066123254597, 0.31346896290779114, -0.18910609185695648, -0.014936856925487518, -0.0756644532084465, -0.029409820213913918, 0.01763712614774704, 0.3392057716846466, -0.28100961446762085, 0.019756514579057693, -0.018855789676308632, 0.0021770778112113476, 0.011417016386985779, 0.246958926320076, 0.2587154507637024, -0.08382965624332428, 0.8376733660697937, 0.0010066749528050423, 0.0023968450259417295, -0.0006111955153755844, 0.24502946436405182, -0.25660622119903564, 0.08112122118473053, 0.8146037459373474, -0.005596633069217205, 0.012739231809973717, 0.0020852552261203527]} +{"t": 2.0442, "q": [-0.12133447080850601, 0.008416440337896347, -0.00042854066123254597, 0.31346043944358826, -0.18910178542137146, -0.014929737895727158, -0.07564741373062134, -0.029401298612356186, 0.01765051856637001, 0.3391972482204437, -0.28101372718811035, 0.01974932849407196, -0.01881561428308487, 0.002192094689235091, 0.011417006142437458, 0.24694694578647614, 0.25870347023010254, -0.08380568772554398, 0.8376613855361938, 0.0010306433541700244, 0.0024208135437220335, -0.0005992112564854324, 0.24501748383045197, -0.25660622119903564, 0.08114518970251083, 0.8146037459373474, -0.005632585845887661, 0.012739231809973717, 0.002121207769960165]} +{"t": 2.061, "q": [-0.12131742388010025, 0.00843348540365696, -0.00042854066123254597, 0.31346896290779114, -0.1891016662120819, -0.014915520325303078, -0.07565592974424362, -0.02941834181547165, 0.01763712614774704, 0.3392483592033386, -0.28101372718811035, 0.01974932849407196, -0.01882900483906269, 0.0021845942828804255, 0.011412220075726509, 0.246958926320076, 0.25872743129730225, -0.08384163677692413, 0.8376613855361938, 0.0010186590952798724, 0.0024208135437220335, -0.0005992112564854324, 0.24502946436405182, -0.25660622119903564, 0.08114518970251083, 0.8146157264709473, -0.005656554363667965, 0.012739231809973717, 0.0021092237439006567]} +{"t": 2.0779, "q": [-0.12133447080850601, 0.00843348540365696, -0.00042854066123254597, 0.31346896290779114, -0.18909746408462524, -0.01492260117083788, -0.07565592974424362, -0.029401298612356186, 0.01763712614774704, 0.3392142951488495, -0.28101372718811035, 0.01974932849407196, -0.0188022218644619, 0.0022070957347750664, 0.011426577344536781, 0.24692296981811523, 0.2586914896965027, -0.08382965624332428, 0.8376733660697937, 0.0010306433541700244, 0.0024088292848318815, -0.0006231797160580754, 0.2450055032968521, -0.25660622119903564, 0.08112122118473053, 0.8146157264709473, -0.005596633069217205, 0.012751216068863869, 0.0021092237439006567]} +{"t": 2.0946, "q": [-0.12133447080850601, 0.00843348540365696, -0.00042854066123254597, 0.313477486371994, -0.1891016662120819, -0.014915520325303078, -0.0756644532084465, -0.029392777010798454, 0.01763712614774704, 0.3392057716846466, -0.2810094952583313, 0.01974206604063511, -0.018788829445838928, 0.0021995792631059885, 0.0114313755184412, 0.24691098928451538, 0.25870347023010254, -0.08381766825914383, 0.837649405002594, 0.0010186590952798724, 0.0024088292848318815, -0.0005992112564854324, 0.2450055032968521, -0.2565942406654358, 0.08112122118473053, 0.8146157264709473, -0.005620601586997509, 0.012739231809973717, 0.0021092237439006567]} +{"t": 2.1113, "q": [-0.12133447080850601, 0.00843348540365696, -0.00042854066123254597, 0.3134348690509796, -0.18909746408462524, -0.01492260117083788, -0.07568150013685226, -0.029384253546595573, 0.01766391098499298, 0.33918872475624084, -0.28100961446762085, 0.019756514579057693, -0.018775437027215958, 0.002184578450396657, 0.011421803385019302, 0.24693496525287628, 0.2586914896965027, -0.08382965624332428, 0.8376613855361938, 0.0010186590952798724, 0.0024327978026121855, -0.0006231797160580754, 0.24501748383045197, -0.25660622119903564, 0.08114518970251083, 0.8146157264709473, -0.005632585845887661, 0.012751216068863869, 0.002121207769960165]} +{"t": 2.1282, "q": [-0.12133447080850601, 0.008424961939454079, -0.00042854066123254597, 0.3134860098361969, -0.18911029398441315, -0.014929776079952717, -0.07564741373062134, -0.029392777010798454, 0.01763712614774704, 0.3392142951488495, -0.2810094952583313, 0.01974206604063511, -0.0188022218644619, 0.002192094689235091, 0.011417006142437458, 0.24692296981811523, 0.2586914896965027, -0.08384163677692413, 0.8376733660697937, 0.0010066749528050423, 0.0024208135437220335, -0.0005992112564854324, 0.2450055032968521, -0.25660622119903564, 0.08114518970251083, 0.8146157264709473, -0.005620601586997509, 0.012775183655321598, 0.0020972394850105047]} +{"t": 2.145, "q": [-0.12134299427270889, 0.008442007005214691, -0.00042854066123254597, 0.31346043944358826, -0.18909746408462524, -0.01492260117083788, -0.0756644532084465, -0.029401298612356186, 0.01763712614774704, 0.3392142951488495, -0.2810053825378418, 0.019749252125620842, -0.01882900483906269, 0.0021920788567513227, 0.011426589451730251, 0.24692296981811523, 0.2587154507637024, -0.08380568772554398, 0.8376613855361938, 0.0009827064350247383, 0.0024327978026121855, -0.0006111955153755844, 0.2450055032968521, -0.2566182017326355, 0.08112122118473053, 0.8146157264709473, -0.005632585845887661, 0.012739231809973717, 0.0020972394850105047]} +{"t": 2.1617, "q": [-0.12134299427270889, 0.008424961939454079, -0.00044193255598656833, 0.31346896290779114, -0.1891016662120819, -0.014915520325303078, -0.0756644532084465, -0.029401298612356186, 0.01763712614774704, 0.3392142951488495, -0.2810094952583313, 0.01974206604063511, -0.01881561428308487, 0.0021770778112113476, 0.011417016386985779, 0.24692296981811523, 0.25870347023010254, -0.08380568772554398, 0.8376613855361938, 0.0010066749528050423, 0.0024088292848318815, -0.0006111955153755844, 0.24501748383045197, -0.25660622119903564, 0.08112122118473053, 0.8146037459373474, -0.005608617328107357, 0.012739231809973717, 0.0021092237439006567]} +{"t": 2.1785, "q": [-0.12132594734430313, 0.00843348540365696, -0.00044193255598656833, 0.31346043944358826, -0.18909746408462524, -0.01492260117083788, -0.07565592974424362, -0.029409820213913918, 0.01762373559176922, 0.3392142951488495, -0.2810053825378418, 0.019749252125620842, -0.018855789676308632, 0.0021920788567513227, 0.011426589451730251, 0.24692296981811523, 0.2586914896965027, -0.08380568772554398, 0.8376853466033936, 0.0010066749528050423, 0.0024208135437220335, -0.0005992112564854324, 0.2450055032968521, -0.2566182017326355, 0.08114518970251083, 0.814639687538147, -0.005596633069217205, 0.012739231809973717, 0.0021092237439006567]} +{"t": 2.1952, "q": [-0.12133447080850601, 0.008442007005214691, -0.00042854066123254597, 0.313477486371994, -0.18910178542137146, -0.014929737895727158, -0.0756644532084465, -0.029401298612356186, 0.01765051856637001, 0.33923131227493286, -0.2810053825378418, 0.019749252125620842, -0.0188022218644619, 0.0021770622115582228, 0.011426599696278572, 0.24693496525287628, 0.25870347023010254, -0.08381766825914383, 0.8376733660697937, 0.0010186590952798724, 0.0024088292848318815, -0.0005872270558029413, 0.24501748383045197, -0.25660622119903564, 0.08112122118473053, 0.8146277070045471, -0.005596633069217205, 0.012751216068863869, 0.0020972394850105047]} +{"t": 2.212, "q": [-0.12132594734430313, 0.008416440337896347, -0.00044193255598656833, 0.31346896290779114, -0.18909746408462524, -0.01492260117083788, -0.07565592974424362, -0.029409820213913918, 0.01762373559176922, 0.3392483592033386, -0.28100115060806274, 0.01974198967218399, -0.0188022218644619, 0.002184578450396657, 0.011421803385019302, 0.24693496525287628, 0.2587394118309021, -0.08382965624332428, 0.8376853466033936, 0.0010066749528050423, 0.0024208135437220335, -0.0006231797160580754, 0.24502946436405182, -0.25660622119903564, 0.08114518970251083, 0.8146277070045471, -0.005608617328107357, 0.012739231809973717, 0.002121207769960165]} +{"t": 2.2287, "q": [-0.12131742388010025, 0.008450528606772423, -0.0004553244507405907, 0.3134860098361969, -0.18909746408462524, -0.01492260117083788, -0.07564741373062134, -0.029392777010798454, 0.01762373559176922, 0.33923131227493286, -0.28100961446762085, 0.019756514579057693, -0.01881561428308487, 0.002184578450396657, 0.011421803385019302, 0.246958926320076, 0.2587154507637024, -0.08381766825914383, 0.8376613855361938, 0.0010066749528050423, 0.0024208135437220335, -0.0006111955153755844, 0.24501748383045197, -0.2566182017326355, 0.08112122118473053, 0.814639687538147, -0.005620601586997509, 0.012739231809973717, 0.0021092237439006567]} +{"t": 2.2454, "q": [-0.12132594734430313, 0.00843348540365696, -0.0004553244507405907, 0.3134945333003998, -0.18909746408462524, -0.01492260117083788, -0.0756644532084465, -0.029401298612356186, 0.01762373559176922, 0.3392483592033386, -0.2810053825378418, 0.019749252125620842, -0.018788829445838928, 0.0021770622115582228, 0.011426599696278572, 0.24691098928451538, 0.2587154507637024, -0.08382965624332428, 0.8376613855361938, 0.0010066749528050423, 0.0024208135437220335, -0.0005992112564854324, 0.2450055032968521, -0.2566182017326355, 0.08112122118473053, 0.814639687538147, -0.005620601586997509, 0.012739231809973717, 0.002133192028850317]} +{"t": 2.2621, "q": [-0.12133447080850601, 0.008442007005214691, -0.00044193255598656833, 0.31350305676460266, -0.1891016662120819, -0.014915520325303078, -0.07567297667264938, -0.029392777010798454, 0.01763712614774704, 0.33923983573913574, -0.28100961446762085, 0.019756514579057693, -0.018762046471238136, 0.002184578450396657, 0.011421803385019302, 0.24694694578647614, 0.25870347023010254, -0.08379369974136353, 0.8376733660697937, 0.0009946906939148903, 0.0024208135437220335, -0.0005872270558029413, 0.24502946436405182, -0.2565942406654358, 0.08114518970251083, 0.814639687538147, -0.005608617328107357, 0.01276320032775402, 0.002133192028850317]} +{"t": 2.2791, "q": [-0.12133447080850601, 0.00843348540365696, -0.00044193255598656833, 0.31346896290779114, -0.18909746408462524, -0.01492260117083788, -0.07565592974424362, -0.029401298612356186, 0.01765051856637001, 0.33923131227493286, -0.2810053825378418, 0.019749252125620842, -0.018788829445838928, 0.002184578450396657, 0.011421803385019302, 0.24694694578647614, 0.2587154507637024, -0.08381766825914383, 0.8376733660697937, 0.0010186590952798724, 0.0024208135437220335, -0.0006111955153755844, 0.24502946436405182, -0.2565942406654358, 0.08112122118473053, 0.8146157264709473, -0.005572664551436901, 0.01276320032775402, 0.0021092237439006567]} +{"t": 2.2958, "q": [-0.12132594734430313, 0.008442007005214691, -0.00044193255598656833, 0.31350305676460266, -0.1891016662120819, -0.014915520325303078, -0.07564741373062134, -0.029401298612356186, 0.01762373559176922, 0.3392568826675415, -0.2810094952583313, 0.01974206604063511, -0.0188022218644619, 0.002184578450396657, 0.011421803385019302, 0.246958926320076, 0.25870347023010254, -0.08382965624332428, 0.8376853466033936, 0.0010066749528050423, 0.0024208135437220335, -0.0006231797160580754, 0.24499352276325226, -0.25660622119903564, 0.08112122118473053, 0.8146277070045471, -0.005572664551436901, 0.01276320032775402, 0.0020852552261203527]} +{"t": 2.3125, "q": [-0.12133447080850601, 0.00843348540365696, -0.00044193255598656833, 0.3134945333003998, -0.1891016662120819, -0.014915520325303078, -0.07567297667264938, -0.029392777010798454, 0.01763712614774704, 0.33922281861305237, -0.2810053825378418, 0.019749252125620842, -0.018788829445838928, 0.002192094689235091, 0.011417006142437458, 0.24693496525287628, 0.2587154507637024, -0.08382965624332428, 0.8376613855361938, 0.0010186590952798724, 0.0024208135437220335, -0.0006111955153755844, 0.24501748383045197, -0.2565942406654358, 0.08114518970251083, 0.814639687538147, -0.005572664551436901, 0.012751216068863869, 0.002133192028850317]} +{"t": 2.3293, "q": [-0.12131742388010025, 0.008424961939454079, -0.0004553244507405907, 0.3134945333003998, -0.1891016662120819, -0.014915520325303078, -0.07563889026641846, -0.029401298612356186, 0.01763712614774704, 0.33923131227493286, -0.2810053825378418, 0.019749252125620842, -0.018748654052615166, 0.002222096547484398, 0.01143614947795868, 0.24694694578647614, 0.25870347023010254, -0.08381766825914383, 0.8376853466033936, 0.0010066749528050423, 0.0024327978026121855, -0.0006111955153755844, 0.24502946436405182, -0.25660622119903564, 0.08114518970251083, 0.8146277070045471, -0.005620601586997509, 0.01276320032775402, 0.002157160546630621]} +{"t": 2.346, "q": [-0.12133447080850601, 0.008416440337896347, -0.0004553244507405907, 0.313477486371994, -0.18911029398441315, -0.014929776079952717, -0.0756644532084465, -0.029392777010798454, 0.01763712614774704, 0.3392142951488495, -0.2810094952583313, 0.01974206604063511, -0.018788829445838928, 0.0021996109280735254, 0.011412207968533039, 0.246958926320076, 0.2587154507637024, -0.08381766825914383, 0.8376733660697937, 0.0010306433541700244, 0.0024208135437220335, -0.0006111955153755844, 0.24502946436405182, -0.25660622119903564, 0.08112122118473053, 0.8146277070045471, -0.005620601586997509, 0.012751216068863869, 0.002121207769960165]} +{"t": 2.3629, "q": [-0.12133447080850601, 0.008407918736338615, -0.0004553244507405907, 0.313477486371994, -0.18909746408462524, -0.01492260117083788, -0.07564741373062134, -0.029409820213913918, 0.01762373559176922, 0.3392057716846466, -0.28100529313087463, 0.019734805449843407, -0.01881561428308487, 0.002192094689235091, 0.011417006142437458, 0.24693496525287628, 0.25870347023010254, -0.08382965624332428, 0.8376853466033936, 0.0010306433541700244, 0.0024208135437220335, -0.0005992112564854324, 0.2450055032968521, -0.25660622119903564, 0.08112122118473053, 0.814639687538147, -0.005596633069217205, 0.012751216068863869, 0.0021092237439006567]} +{"t": 2.3796, "q": [-0.12131742388010025, 0.008407918736338615, -0.0004553244507405907, 0.3134860098361969, -0.18910609185695648, -0.014936856925487518, -0.07564741373062134, -0.029401298612356186, 0.01763712614774704, 0.33922281861305237, -0.2810094952583313, 0.01974206604063511, -0.0188022218644619, 0.002192094689235091, 0.011417006142437458, 0.246958926320076, 0.25872743129730225, -0.08382965624332428, 0.8376733660697937, 0.0010306433541700244, 0.0024327978026121855, -0.0006111955153755844, 0.24502946436405182, -0.2566182017326355, 0.08112122118473053, 0.8146277070045471, -0.005620601586997509, 0.012751216068863869, 0.002121207769960165]} +{"t": 2.3963, "q": [-0.12133447080850601, 0.008442007005214691, -0.0004553244507405907, 0.3134945333003998, -0.18910598754882812, -0.014922657050192356, -0.07563889026641846, -0.029401298612356186, 0.01763712614774704, 0.33923983573913574, -0.2810053825378418, 0.019749252125620842, -0.018788829445838928, 0.002192094689235091, 0.011417006142437458, 0.24692296981811523, 0.25870347023010254, -0.08375775068998337, 0.8376733660697937, 0.0010426276130601764, 0.0024327978026121855, -0.0006111955153755844, 0.24501748383045197, -0.2565942406654358, 0.08112122118473053, 0.8146277070045471, -0.005596633069217205, 0.01276320032775402, 0.002133192028850317]} +{"t": 2.4131, "q": [-0.12135151773691177, 0.008424961939454079, -0.0004553244507405907, 0.31346043944358826, -0.18911029398441315, -0.014929776079952717, -0.07564741373062134, -0.029401298612356186, 0.01762373559176922, 0.3392142951488495, -0.2810094952583313, 0.01974206604063511, -0.018788829445838928, 0.002199626760557294, 0.011402624659240246, 0.24693496525287628, 0.25870347023010254, -0.08380568772554398, 0.8376853466033936, 0.0010186590952798724, 0.0024447820615023375, -0.0006231797160580754, 0.24501748383045197, -0.25660622119903564, 0.08112122118473053, 0.8146277070045471, -0.005596633069217205, 0.012751216068863869, 0.002133192028850317]} +{"t": 2.4299, "q": [-0.12135151773691177, 0.00843348540365696, -0.00046871634549461305, 0.31346043944358826, -0.1891016662120819, -0.014915520325303078, -0.07564741373062134, -0.029401298612356186, 0.01762373559176922, 0.33923983573913574, -0.28100961446762085, 0.019756514579057693, -0.018775437027215958, 0.002199595095589757, 0.011421792209148407, 0.24693496525287628, 0.2586914896965027, -0.08380568772554398, 0.8376613855361938, 0.0010306433541700244, 0.0024208135437220335, -0.0006111955153755844, 0.2450055032968521, -0.25660622119903564, 0.08112122118473053, 0.8146277070045471, -0.005620601586997509, 0.01276320032775402, 0.002121207769960165]} +{"t": 2.4466, "q": [-0.12135151773691177, 0.008424961939454079, -0.0004553244507405907, 0.3134945333003998, -0.18910588324069977, -0.014908439479768276, -0.07565592974424362, -0.029401298612356186, 0.01763712614774704, 0.33923131227493286, -0.28100961446762085, 0.019756514579057693, -0.018775437027215958, 0.0022070957347750664, 0.011426577344536781, 0.24694694578647614, 0.2586914896965027, -0.08381766825914383, 0.8376733660697937, 0.0010066749528050423, 0.0024208135437220335, -0.0006231797160580754, 0.24502946436405182, -0.2566182017326355, 0.08114518970251083, 0.8146277070045471, -0.005656554363667965, 0.01276320032775402, 0.002133192028850317]} +{"t": 2.4635, "q": [-0.12134299427270889, 0.008416440337896347, -0.0004553244507405907, 0.31350305676460266, -0.18909746408462524, -0.01492260117083788, -0.07565592974424362, -0.029401298612356186, 0.01763712614774704, 0.3392483592033386, -0.2810053825378418, 0.019749252125620842, -0.018788829445838928, 0.002184578450396657, 0.011421803385019302, 0.24693496525287628, 0.25870347023010254, -0.08381766825914383, 0.8376853466033936, 0.0009946906939148903, 0.0024208135437220335, -0.0006231797160580754, 0.24502946436405182, -0.2565942406654358, 0.08112122118473053, 0.814639687538147, -0.005656554363667965, 0.012775183655321598, 0.002121207769960165]} +{"t": 2.4803, "q": [-0.12131742388010025, 0.008416440337896347, -0.0004553244507405907, 0.3134860098361969, -0.18909746408462524, -0.01492260117083788, -0.0756644532084465, -0.029401298612356186, 0.01762373559176922, 0.33923131227493286, -0.28101372718811035, 0.01974932849407196, -0.018762046471238136, 0.002184578450396657, 0.011421803385019302, 0.24694694578647614, 0.2587154507637024, -0.08380568772554398, 0.8376973271369934, 0.0010066749528050423, 0.0024327978026121855, -0.0006111955153755844, 0.2450055032968521, -0.25658226013183594, 0.08114518970251083, 0.8146277070045471, -0.005596633069217205, 0.012775183655321598, 0.0020852552261203527]} +{"t": 2.497, "q": [-0.12134299427270889, 0.008442007005214691, -0.00046871634549461305, 0.31351158022880554, -0.18909746408462524, -0.01492260117083788, -0.07565592974424362, -0.029401298612356186, 0.01762373559176922, 0.3392483592033386, -0.28100115060806274, 0.01974198967218399, -0.018788829445838928, 0.0021920788567513227, 0.011426589451730251, 0.24692296981811523, 0.25870347023010254, -0.08379369974136353, 0.8376733660697937, 0.0010306433541700244, 0.0024327978026121855, -0.0006111955153755844, 0.24501748383045197, -0.2566182017326355, 0.08112122118473053, 0.814639687538147, -0.005596633069217205, 0.012775183655321598, 0.0021092237439006567]} +{"t": 2.5138, "q": [-0.12133447080850601, 0.008450528606772423, -0.00046871634549461305, 0.3134945333003998, -0.1891016662120819, -0.014915520325303078, -0.07567297667264938, -0.029392777010798454, 0.01763712614774704, 0.3392483592033386, -0.2810053825378418, 0.019749252125620842, -0.018788829445838928, 0.0022070957347750664, 0.011426577344536781, 0.24692296981811523, 0.25870347023010254, -0.08379369974136353, 0.8376853466033936, 0.0010186590952798724, 0.0024088292848318815, -0.0006111955153755844, 0.24499352276325226, -0.25658226013183594, 0.08112122118473053, 0.8146277070045471, -0.005632585845887661, 0.01278716791421175, 0.0021092237439006567]} +{"t": 2.5306, "q": [-0.12133447080850601, 0.00843348540365696, -0.00046871634549461305, 0.3134860098361969, -0.18909746408462524, -0.01492260117083788, -0.07565592974424362, -0.029401298612356186, 0.01762373559176922, 0.3392483592033386, -0.2810053825378418, 0.019749252125620842, -0.018788829445838928, 0.0021920788567513227, 0.011426589451730251, 0.24692296981811523, 0.2586914896965027, -0.08382965624332428, 0.8376853466033936, 0.0010066749528050423, 0.0024208135437220335, -0.0005992112564854324, 0.2450055032968521, -0.2565942406654358, 0.08114518970251083, 0.814639687538147, -0.005596633069217205, 0.012775183655321598, 0.0021092237439006567]} +{"t": 2.5473, "q": [-0.12135151773691177, 0.008424961939454079, -0.00046871634549461305, 0.313477486371994, -0.1891016662120819, -0.014915520325303078, -0.07565592974424362, -0.029392777010798454, 0.01763712614774704, 0.33923131227493286, -0.28100961446762085, 0.019756514579057693, -0.018762046471238136, 0.0021995792631059885, 0.0114313755184412, 0.24693496525287628, 0.25870347023010254, -0.08382965624332428, 0.8376853466033936, 0.0010066749528050423, 0.0024208135437220335, -0.0006231797160580754, 0.2450055032968521, -0.2565942406654358, 0.08114518970251083, 0.814639687538147, -0.005632585845887661, 0.012751216068863869, 0.0021092237439006567]} +{"t": 2.5643, "q": [-0.12132594734430313, 0.008407918736338615, -0.0004553244507405907, 0.3134860098361969, -0.18908905982971191, -0.014936761930584908, -0.07563889026641846, -0.029401298612356186, 0.01762373559176922, 0.3392568826675415, -0.2810053825378418, 0.019749252125620842, -0.018788829445838928, 0.002184578450396657, 0.011421803385019302, 0.24694694578647614, 0.2586914896965027, -0.08380568772554398, 0.8376853466033936, 0.0010066749528050423, 0.0024088292848318815, -0.0006111955153755844, 0.24501748383045197, -0.2565942406654358, 0.08112122118473053, 0.8146277070045471, -0.005620601586997509, 0.01278716791421175, 0.0021092237439006567]} +{"t": 2.581, "q": [-0.12134299427270889, 0.008442007005214691, -0.00046871634549461305, 0.31350305676460266, -0.18909746408462524, -0.01492260117083788, -0.07564741373062134, -0.029401298612356186, 0.01762373559176922, 0.3392483592033386, -0.28100115060806274, 0.01974198967218399, -0.018748654052615166, 0.002184578450396657, 0.011421803385019302, 0.246958926320076, 0.2587154507637024, -0.08382965624332428, 0.8376853466033936, 0.0010066749528050423, 0.0024327978026121855, -0.0006111955153755844, 0.24499352276325226, -0.2566182017326355, 0.08112122118473053, 0.8146277070045471, -0.005620601586997509, 0.012775183655321598, 0.0020972394850105047]} +{"t": 2.5978, "q": [-0.12133447080850601, 0.00843348540365696, -0.00046871634549461305, 0.3134860098361969, -0.18909326195716858, -0.01492968201637268, -0.07563889026641846, -0.029401298612356186, 0.01762373559176922, 0.3392483592033386, -0.28101372718811035, 0.01974932849407196, -0.018762046471238136, 0.0021920788567513227, 0.011426589451730251, 0.24694694578647614, 0.2586914896965027, -0.08380568772554398, 0.8376853466033936, 0.0010306433541700244, 0.0024208135437220335, -0.0005992112564854324, 0.24501748383045197, -0.2565942406654358, 0.08112122118473053, 0.8146277070045471, -0.005632585845887661, 0.01276320032775402, 0.002121207769960165]} +{"t": 2.6145, "q": [-0.12132594734430313, 0.008424961939454079, -0.00046871634549461305, 0.3134860098361969, -0.1891016662120819, -0.014915520325303078, -0.07564741373062134, -0.029392777010798454, 0.01762373559176922, 0.33923131227493286, -0.28100961446762085, 0.019756514579057693, -0.018762046471238136, 0.002192094689235091, 0.011417006142437458, 0.24693496525287628, 0.2586914896965027, -0.08382965624332428, 0.8376733660697937, 0.0010306433541700244, 0.0024208135437220335, -0.0005992112564854324, 0.24502946436405182, -0.25658226013183594, 0.08112122118473053, 0.814639687538147, -0.005632585845887661, 0.01276320032775402, 0.002145176287740469]} +{"t": 2.6313, "q": [-0.12132594734430313, 0.008450528606772423, -0.0004955001641064882, 0.3134945333003998, -0.1891016662120819, -0.014915520325303078, -0.07561331987380981, -0.029409820213913918, 0.017610343173146248, 0.33927392959594727, -0.2810094952583313, 0.01974206604063511, -0.018788829445838928, 0.0022070957347750664, 0.011426577344536781, 0.24693496525287628, 0.2586914896965027, -0.08380568772554398, 0.8376853466033936, 0.0010306433541700244, 0.0024208135437220335, -0.0006111955153755844, 0.24504145979881287, -0.2565942406654358, 0.08114518970251083, 0.814639687538147, -0.005632585845887661, 0.01276320032775402, 0.0021092237439006567]} +{"t": 2.648, "q": [-0.12133447080850601, 0.008450528606772423, -0.0004553244507405907, 0.3134860098361969, -0.18909326195716858, -0.01492968201637268, -0.07564741373062134, -0.029401298612356186, 0.017596950754523277, 0.3392654061317444, -0.2810053825378418, 0.019749252125620842, -0.018788829445838928, 0.0022070957347750664, 0.011426577344536781, 0.24694694578647614, 0.2586914896965027, -0.08380568772554398, 0.8376733660697937, 0.0010066749528050423, 0.0024327978026121855, -0.0006111955153755844, 0.2450055032968521, -0.25660622119903564, 0.08112122118473053, 0.8146277070045471, -0.005608617328107357, 0.012775183655321598, 0.0021092237439006567]} +{"t": 2.6648, "q": [-0.12133447080850601, 0.00843348540365696, -0.00046871634549461305, 0.3134860098361969, -0.18909746408462524, -0.01492260117083788, -0.07564741373062134, -0.029392777010798454, 0.017583558335900307, 0.3392654061317444, -0.28100115060806274, 0.01974198967218399, -0.018762046471238136, 0.0021995792631059885, 0.0114313755184412, 0.24693496525287628, 0.25870347023010254, -0.08382965624332428, 0.8376853466033936, 0.0010066749528050423, 0.0024447820615023375, -0.0005872270558029413, 0.24502946436405182, -0.2565942406654358, 0.08112122118473053, 0.814639687538147, -0.005620601586997509, 0.012775183655321598, 0.0020972394850105047]} +{"t": 2.6815, "q": [-0.12131742388010025, 0.00843348540365696, -0.0004821082402486354, 0.31351158022880554, -0.18909746408462524, -0.01492260117083788, -0.07561331987380981, -0.029392777010798454, 0.017596950754523277, 0.33928245306015015, -0.28100529313087463, 0.019734805449843407, -0.018788829445838928, 0.0021770622115582228, 0.011426599696278572, 0.24693496525287628, 0.25872743129730225, -0.08380568772554398, 0.8376853466033936, 0.0010306433541700244, 0.0024208135437220335, -0.0006111955153755844, 0.24501748383045197, -0.2565942406654358, 0.08112122118473053, 0.8146277070045471, -0.005644570104777813, 0.012775183655321598, 0.002145176287740469]} +{"t": 2.6983, "q": [-0.12132594734430313, 0.008450528606772423, -0.0004955001641064882, 0.31350305676460266, -0.18910188972949982, -0.014943936839699745, -0.0756218433380127, -0.029401298612356186, 0.01762373559176922, 0.3392483592033386, -0.28100115060806274, 0.01974198967218399, -0.018775437027215958, 0.002184578450396657, 0.011421803385019302, 0.24693496525287628, 0.25870347023010254, -0.08379369974136353, 0.8376853466033936, 0.0010306433541700244, 0.0024208135437220335, -0.0005992112564854324, 0.24501748383045197, -0.2566182017326355, 0.08112122118473053, 0.8146277070045471, -0.005656554363667965, 0.012775183655321598, 0.002133192028850317]} +{"t": 2.715, "q": [-0.12135151773691177, 0.008442007005214691, -0.0004955001641064882, 0.31350305676460266, -0.18909746408462524, -0.01492260117083788, -0.0756218433380127, -0.029401298612356186, 0.017610343173146248, 0.3392568826675415, -0.28100529313087463, 0.019734805449843407, -0.0188022218644619, 0.002184578450396657, 0.011421803385019302, 0.24693496525287628, 0.2587394118309021, -0.08378171920776367, 0.8376973271369934, 0.0010066749528050423, 0.0024208135437220335, -0.0005992112564854324, 0.24504145979881287, -0.2566182017326355, 0.08112122118473053, 0.814639687538147, -0.005632585845887661, 0.012775183655321598, 0.002133192028850317]} +{"t": 2.7317, "q": [-0.12133447080850601, 0.00843348540365696, -0.00046871634549461305, 0.3135201036930084, -0.1891016662120819, -0.014915520325303078, -0.07563036680221558, -0.029392777010798454, 0.01762373559176922, 0.33923983573913574, -0.28100115060806274, 0.01974198967218399, -0.01881561428308487, 0.0021695615723729134, 0.011421813629567623, 0.24694694578647614, 0.2587154507637024, -0.08381766825914383, 0.8376973271369934, 0.0010665960144251585, 0.0024208135437220335, -0.0006111955153755844, 0.24504145979881287, -0.25660622119903564, 0.08112122118473053, 0.814639687538147, -0.005608617328107357, 0.01276320032775402, 0.0021092237439006567]} +{"t": 2.7486, "q": [-0.12134299427270889, 0.008424961939454079, -0.0004955001641064882, 0.3135371506214142, -0.18909746408462524, -0.01492260117083788, -0.07563036680221558, -0.029401298612356186, 0.017610343173146248, 0.33928245306015015, -0.2810053825378418, 0.019749252125620842, -0.0188022218644619, 0.0021995792631059885, 0.0114313755184412, 0.246958926320076, 0.2587154507637024, -0.08381766825914383, 0.8376853466033936, 0.0010665960144251585, 0.0024327978026121855, -0.0006111955153755844, 0.24504145979881287, -0.25660622119903564, 0.08114518970251083, 0.8146516680717468, -0.005620601586997509, 0.012775183655321598, 0.0020972394850105047]} +{"t": 2.7655, "q": [-0.12132594734430313, 0.00843348540365696, -0.0004821082402486354, 0.3135201036930084, -0.18909746408462524, -0.01492260117083788, -0.07564741373062134, -0.029392777010798454, 0.017610343173146248, 0.33923983573913574, -0.28100115060806274, 0.01974198967218399, -0.018788829445838928, 0.0021995792631059885, 0.0114313755184412, 0.24693496525287628, 0.25870347023010254, -0.08379369974136353, 0.8376973271369934, 0.0010426276130601764, 0.0024208135437220335, -0.0006111955153755844, 0.24502946436405182, -0.2565942406654358, 0.08112122118473053, 0.814639687538147, -0.005620601586997509, 0.012775183655321598, 0.0021092237439006567]} +{"t": 2.7823, "q": [-0.12131742388010025, 0.008424961939454079, -0.0005088920588605106, 0.31350305676460266, -0.18911029398441315, -0.014929776079952717, -0.07564741373062134, -0.029401298612356186, 0.017596950754523277, 0.33923131227493286, -0.2810012698173523, 0.019756436347961426, -0.018748654052615166, 0.002192094689235091, 0.011417006142437458, 0.24693496525287628, 0.25870347023010254, -0.08380568772554398, 0.8376733660697937, 0.0010186590952798724, 0.0024327978026121855, -0.0005992112564854324, 0.24502946436405182, -0.25660622119903564, 0.08112122118473053, 0.8146277070045471, -0.005632585845887661, 0.012751216068863869, 0.0021092237439006567]} +{"t": 2.799, "q": [-0.12132594734430313, 0.008459052070975304, -0.0004955001641064882, 0.3135201036930084, -0.18909326195716858, -0.01492968201637268, -0.07565592974424362, -0.029401298612356186, 0.01762373559176922, 0.3392483592033386, -0.2810094952583313, 0.01974206604063511, -0.018735261633992195, 0.0021995792631059885, 0.0114313755184412, 0.24692296981811523, 0.2587394118309021, -0.08380568772554398, 0.8376853466033936, 0.0010066749528050423, 0.0024208135437220335, -0.0006111955153755844, 0.2450055032968521, -0.25660622119903564, 0.08112122118473053, 0.814639687538147, -0.005656554363667965, 0.01278716791421175, 0.0021092237439006567]} +{"t": 2.8158, "q": [-0.12133447080850601, 0.008416440337896347, -0.0004821082402486354, 0.3135201036930084, -0.18909326195716858, -0.01492968201637268, -0.07564741373062134, -0.029401298612356186, 0.017610343173146248, 0.33923983573913574, -0.2810053825378418, 0.019749252125620842, -0.018762046471238136, 0.002184578450396657, 0.011421803385019302, 0.24694694578647614, 0.25870347023010254, -0.08378171920776367, 0.8376853466033936, 0.0010426276130601764, 0.0024208135437220335, -0.0006111955153755844, 0.2450055032968521, -0.2566182017326355, 0.08112122118473053, 0.8146277070045471, -0.005632585845887661, 0.012775183655321598, 0.0021092237439006567]} +{"t": 2.8326, "q": [-0.12133447080850601, 0.008424961939454079, -0.0004955001641064882, 0.3135371506214142, -0.18909746408462524, -0.01492260117083788, -0.07564741373062134, -0.029401298612356186, 0.017596950754523277, 0.3392483592033386, -0.2810094952583313, 0.01974206604063511, -0.018762046471238136, 0.002184578450396657, 0.011421803385019302, 0.24692296981811523, 0.25870347023010254, -0.08380568772554398, 0.8376973271369934, 0.0010426276130601764, 0.0024208135437220335, -0.0006111955153755844, 0.24502946436405182, -0.2565942406654358, 0.08110923320055008, 0.814639687538147, -0.005620601586997509, 0.012775183655321598, 0.0020732709672302008]} +{"t": 2.8494, "q": [-0.12133447080850601, 0.008450528606772423, -0.0004955001641064882, 0.3135286271572113, -0.1891016662120819, -0.014915520325303078, -0.07563889026641846, -0.029392777010798454, 0.01763712614774704, 0.33922281861305237, -0.2810053825378418, 0.019749252125620842, -0.018788829445838928, 0.0021995792631059885, 0.0114313755184412, 0.24691098928451538, 0.25870347023010254, -0.08378171920776367, 0.8376733660697937, 0.0010306433541700244, 0.0024208135437220335, -0.0006111955153755844, 0.24504145979881287, -0.2565942406654358, 0.08112122118473053, 0.8146516680717468, -0.005632585845887661, 0.01276320032775402, 0.0021092237439006567]} +{"t": 2.8661, "q": [-0.12133447080850601, 0.00843348540365696, -0.0004955001641064882, 0.3135286271572113, -0.18909746408462524, -0.01492260117083788, -0.07565592974424362, -0.029401298612356186, 0.01762373559176922, 0.3392483592033386, -0.2810053825378418, 0.019749252125620842, -0.018762046471238136, 0.0021920630242675543, 0.011436172761023045, 0.24692296981811523, 0.2586914896965027, -0.08380568772554398, 0.8376973271369934, 0.0010306433541700244, 0.0024327978026121855, -0.0006111955153755844, 0.24502946436405182, -0.2566182017326355, 0.08112122118473053, 0.8146516680717468, -0.005656554363667965, 0.012775183655321598, 0.002121207769960165]} +{"t": 2.8828, "q": [-0.12131742388010025, 0.008442007005214691, -0.0004955001641064882, 0.3135201036930084, -0.18909746408462524, -0.01492260117083788, -0.07564741373062134, -0.029392777010798454, 0.01762373559176922, 0.33923983573913574, -0.28101372718811035, 0.01974932849407196, -0.0188022218644619, 0.0021995792631059885, 0.0114313755184412, 0.24692296981811523, 0.25870347023010254, -0.08378171920776367, 0.8376853466033936, 0.0010186590952798724, 0.0024208135437220335, -0.0006231797160580754, 0.24504145979881287, -0.2566182017326355, 0.08113320171833038, 0.8146277070045471, -0.005608617328107357, 0.01278716791421175, 0.002121207769960165]} +{"t": 2.8996, "q": [-0.12132594734430313, 0.008450528606772423, -0.0004955001641064882, 0.3135286271572113, -0.1891016662120819, -0.014915520325303078, -0.07564741373062134, -0.029392777010798454, 0.017610343173146248, 0.3392654061317444, -0.28100115060806274, 0.01974198967218399, -0.018762046471238136, 0.002184578450396657, 0.011421803385019302, 0.24692296981811523, 0.25872743129730225, -0.08380568772554398, 0.8376733660697937, 0.0010186590952798724, 0.0024327978026121855, -0.0006231797160580754, 0.2450055032968521, -0.2565942406654358, 0.08112122118473053, 0.814639687538147, -0.005632585845887661, 0.012775183655321598, 0.0020852552261203527]} +{"t": 2.9163, "q": [-0.12131742388010025, 0.008424961939454079, -0.0004955001641064882, 0.31351158022880554, -0.18909746408462524, -0.01492260117083788, -0.07564741373062134, -0.029392777010798454, 0.01763712614774704, 0.3392483592033386, -0.2810094952583313, 0.01974206604063511, -0.018788829445838928, 0.0021995792631059885, 0.0114313755184412, 0.24694694578647614, 0.25870347023010254, -0.08379369974136353, 0.8376973271369934, 0.0010306433541700244, 0.0024208135437220335, -0.0006111955153755844, 0.24504145979881287, -0.25660622119903564, 0.08114518970251083, 0.8146277070045471, -0.005596633069217205, 0.012775183655321598, 0.0020852552261203527]} +{"t": 2.9331, "q": [-0.12131742388010025, 0.008424961939454079, -0.0004955001641064882, 0.31351158022880554, -0.18909746408462524, -0.01492260117083788, -0.07563036680221558, -0.029409820213913918, 0.01762373559176922, 0.3392483592033386, -0.2810053825378418, 0.019749252125620842, -0.018788829445838928, 0.002222128212451935, 0.011416982859373093, 0.24694694578647614, 0.25870347023010254, -0.08376973122358322, 0.8376733660697937, 0.0010546118719503284, 0.0024208135437220335, -0.0006111955153755844, 0.24501748383045197, -0.2565942406654358, 0.08114518970251083, 0.814639687538147, -0.005620601586997509, 0.012775183655321598, 0.0020972394850105047]} +{"t": 2.95, "q": [-0.12133447080850601, 0.008416440337896347, -0.0004955001641064882, 0.31350305676460266, -0.18909746408462524, -0.01492260117083788, -0.07563889026641846, -0.029409820213913918, 0.017596950754523277, 0.33923131227493286, -0.28100115060806274, 0.01974198967218399, -0.018762046471238136, 0.0021995792631059885, 0.0114313755184412, 0.24693496525287628, 0.2587154507637024, -0.08379369974136353, 0.8376733660697937, 0.0010665960144251585, 0.0024208135437220335, -0.0006231797160580754, 0.24501748383045197, -0.2565942406654358, 0.08112122118473053, 0.814639687538147, -0.005608617328107357, 0.01278716791421175, 0.0020972394850105047]} +{"t": 2.9667, "q": [-0.12133447080850601, 0.008442007005214691, -0.0004955001641064882, 0.31350305676460266, -0.1891016662120819, -0.014915520325303078, -0.07563036680221558, -0.029401298612356186, 0.017610343173146248, 0.3392483592033386, -0.2810053825378418, 0.019749252125620842, -0.018788829445838928, 0.0021996109280735254, 0.011412207968533039, 0.24693496525287628, 0.25870347023010254, -0.08380568772554398, 0.8376853466033936, 0.0010905645322054625, 0.0024208135437220335, -0.0005992112564854324, 0.24502946436405182, -0.2565942406654358, 0.08113320171833038, 0.8146516680717468, -0.005620601586997509, 0.01278716791421175, 0.002133192028850317]} +{"t": 2.9835, "q": [-0.12134299427270889, 0.008450528606772423, -0.0004955001641064882, 0.3135201036930084, -0.18909746408462524, -0.01492260117083788, -0.07563889026641846, -0.029392777010798454, 0.01762373559176922, 0.33923983573913574, -0.2810094952583313, 0.01974206604063511, -0.018788829445838928, 0.0022145803086459637, 0.011440946720540524, 0.24693496525287628, 0.25870347023010254, -0.08380568772554398, 0.8376853466033936, 0.0010306433541700244, 0.0024088292848318815, -0.0006111955153755844, 0.24502946436405182, -0.25660622119903564, 0.08112122118473053, 0.814639687538147, -0.005596633069217205, 0.01278716791421175, 0.002133192028850317]} +{"t": 3.0002, "q": [-0.12135151773691177, 0.008407918736338615, -0.0004955001641064882, 0.31350305676460266, -0.1891016662120819, -0.014915520325303078, -0.07563036680221558, -0.029401298612356186, 0.017610343173146248, 0.3392142951488495, -0.2810094952583313, 0.01974206604063511, -0.018788829445838928, 0.0022146119736135006, 0.011421780101954937, 0.24692296981811523, 0.2587154507637024, -0.08380568772554398, 0.8376973271369934, 0.0010665960144251585, 0.0024327978026121855, -0.0006111955153755844, 0.24502946436405182, -0.2565942406654358, 0.08112122118473053, 0.8146516680717468, -0.005620601586997509, 0.01278716791421175, 0.002121207769960165]} +{"t": 3.017, "q": [-0.12133447080850601, 0.008450528606772423, -0.0004955001641064882, 0.31351158022880554, -0.1891016662120819, -0.014915520325303078, -0.07559628039598465, -0.029392777010798454, 0.017570167779922485, 0.33923983573913574, -0.28100115060806274, 0.01974198967218399, -0.0188022218644619, 0.0022371758241206408, 0.011397804133594036, 0.2464795559644699, 0.25582724809646606, -0.08387759327888489, 0.8398544788360596, 0.0011265171924605966, 0.002169144805520773, -0.0005992112564854324, 0.244657963514328, -0.2553119361400604, 0.08059391379356384, 0.8167129755020142, -0.005596633069217205, 0.012883041985332966, 0.0021092237439006567]} +{"t": 3.0337, "q": [-0.12131742388010025, 0.008399397134780884, -0.00046871634549461305, 0.31355419754981995, -0.18909746408462524, -0.01492260117083788, -0.07561331987380981, -0.02943538688123226, 0.01762373559176922, 0.33928245306015015, -0.28100529313087463, 0.019734805449843407, -0.018775437027215958, 0.0022898840252310038, 0.011306721717119217, 0.24478977918624878, 0.25217205286026, -0.08393751084804535, 0.8452473878860474, 0.0011504855938255787, 0.002205097349360585, -0.0005392901366576552, 0.24356739223003387, -0.2538738250732422, 0.08019843697547913, 0.8202962279319763, -0.005632585845887661, 0.013038837350904942, 0.0019654128700494766]} +{"t": 3.0506, "q": [-0.12132594734430313, 0.00837383046746254, -0.0004955001641064882, 0.31355419754981995, -0.1891016662120819, -0.014915520325303078, -0.07557923346757889, -0.029469475150108337, 0.01762373559176922, 0.33923983573913574, -0.28100115060806274, 0.01974198967218399, -0.0188022218644619, 0.002380125690251589, 0.011220402084290981, 0.2437831163406372, 0.24876855313777924, -0.0839494988322258, 0.8492621183395386, 0.0011504855938255787, 0.0023848607670515776, -0.0005392901366576552, 0.24307604134082794, -0.2516447603702545, 0.08004263788461685, 0.8232083916664124, -0.005632585845887661, 0.013062805868685246, 0.0019893813878297806]} +{"t": 3.0674, "q": [-0.12132594734430313, 0.008356785401701927, -0.0004955001641064882, 0.31354567408561707, -0.1891016662120819, -0.014915520325303078, -0.07557071000337601, -0.02947799675166607, 0.01763712614774704, 0.3392483592033386, -0.2810053825378418, 0.019749252125620842, -0.018788829445838928, 0.002425223123282194, 0.011191616766154766, 0.24356739223003387, 0.24417859315872192, -0.08477640897035599, 0.8521623015403748, 0.0011864382540807128, 0.0023968450259417295, -0.0006231797160580754, 0.24257270991802216, -0.2481573522090912, 0.07988684624433517, 0.8270673155784607, -0.005656554363667965, 0.013074790127575397, 0.002037318190559745]} +{"t": 3.0841, "q": [-0.12131742388010025, 0.008348263800144196, -0.00046871634549461305, 0.3135201036930084, -0.1891016662120819, -0.014915520325303078, -0.07555367052555084, -0.02949504181742668, 0.01762373559176922, 0.3392483592033386, -0.2810053825378418, 0.019749252125620842, -0.0188022218644619, 0.002417659619823098, 0.011225164867937565, 0.24300412833690643, 0.23700003325939178, -0.08441688120365143, 0.8563687801361084, 0.0011864382540807128, 0.0023608924821019173, -0.0005512743373401463, 0.24205738306045532, -0.2433396875858307, 0.0797070786356926, 0.8322325348854065, -0.005620601586997509, 0.013098758645355701, 0.0019654128700494766]} +{"t": 3.1022, "q": [-0.12133447080850601, 0.008339742198586464, -0.00046871634549461305, 0.31350305676460266, -0.1891016662120819, -0.014915520325303078, -0.07557071000337601, -0.02948652021586895, 0.017610343173146248, 0.3392142951488495, -0.2810053825378418, 0.019749252125620842, -0.018735261633992195, 0.0024026271421462297, 0.011234759353101254, 0.2425127774477005, 0.2299533188343048, -0.08471649140119553, 0.8604553937911987, 0.0012104067718610168, 0.0023848607670515776, -0.0005752427969127893, 0.24200944602489471, -0.2376232147216797, 0.07962319254875183, 0.8375175595283508, -0.005632585845887661, 0.013110741972923279, 0.0019414444686844945]} +{"t": 3.1189, "q": [-0.12131742388010025, 0.008356785401701927, -0.000522283953614533, 0.31350305676460266, -0.1891016662120819, -0.014915520325303078, -0.07554514706134796, -0.029469475150108337, 0.017596950754523277, 0.3392142951488495, -0.2810053825378418, 0.019749252125620842, -0.018614735454320908, 0.0023950485046952963, 0.011277889832854271, 0.24181769788265228, 0.22044982016086578, -0.08494418859481812, 0.8660160899162292, 0.0011744541116058826, 0.0023968450259417295, -0.0005752427969127893, 0.242213174700737, -0.2305525243282318, 0.07977898418903351, 0.8430662751197815, -0.005608617328107357, 0.013206616044044495, 0.0020732709672302008]} +{"t": 3.1356, "q": [-0.12130038440227509, 0.008365308865904808, -0.0005758515326306224, 0.3134860098361969, -0.1891016662120819, -0.014915520325303078, -0.07557071000337601, -0.029469475150108337, 0.017529990524053574, 0.33922281861305237, -0.28100961446762085, 0.019756514579057693, -0.018587950617074966, 0.002439941046759486, 0.011373688466846943, 0.2418895959854126, 0.2110062539577484, -0.08509998023509979, 0.8701985478401184, 0.0012104067718610168, 0.0024807346053421497, -0.0005632585962302983, 0.24241690337657928, -0.22357770800590515, 0.07969509810209274, 0.8481236100196838, -0.005620601586997509, 0.013278521597385406, 0.0020253341645002365]} +{"t": 3.1523, "q": [-0.12133447080850601, 0.008399397134780884, -0.0006026353221386671, 0.3134945333003998, -0.1891016662120819, -0.014915520325303078, -0.07559628039598465, -0.02942686527967453, 0.01748981513082981, 0.33922281861305237, -0.2810053825378418, 0.019749252125620842, -0.018681693822145462, 0.0024697997141629457, 0.011479081586003304, 0.24208134412765503, 0.20141887664794922, -0.08533966541290283, 0.8740814328193665, 0.0011624698527157307, 0.0024807346053421497, -0.0006111955153755844, 0.2425127774477005, -0.21614748239517212, 0.07985088974237442, 0.8530851006507874, -0.005620601586997509, 0.013350427150726318, 0.002061286708340049]} +{"t": 3.1691, "q": [-0.12133447080850601, 0.008424961939454079, -0.0006026353221386671, 0.3135286271572113, -0.1891016662120819, -0.014915520325303078, -0.07556218653917313, -0.02941834181547165, 0.01748981513082981, 0.33923983573913574, -0.2810094952583313, 0.01974206604063511, -0.01865491084754467, 0.0025447257794439793, 0.01157485693693161, 0.24203340709209442, 0.19186744093894958, -0.08515990525484085, 0.8782040476799011, 0.0012223910307511687, 0.0025047031231224537, -0.0005872270558029413, 0.24289627373218536, -0.20932845771312714, 0.07999470084905624, 0.8569679856300354, -0.005632585845887661, 0.013410348445177078, 0.0021092237439006567]} +{"t": 3.1858, "q": [-0.12130890786647797, 0.008407918736338615, -0.0006160272168926895, 0.31350305676460266, -0.18909746408462524, -0.01492260117083788, -0.07557923346757889, -0.029401298612356186, 0.01747642457485199, 0.3392483592033386, -0.2810094952583313, 0.01974206604063511, -0.018708478659391403, 0.002657280070707202, 0.01161789521574974, 0.24200944602489471, 0.18183664977550507, -0.08532768487930298, 0.882182776927948, 0.0011864382540807128, 0.0024687503464519978, -0.0005512743373401463, 0.24296818673610687, -0.20210197567939758, 0.07988684624433517, 0.8616418242454529, -0.005644570104777813, 0.013458284549415112, 0.0020852552261203527]} +{"t": 3.2026, "q": [-0.12131742388010025, 0.00843348540365696, -0.0006562029011547565, 0.3135286271572113, -0.18909746408462524, -0.01492260117083788, -0.07557071000337601, -0.02936721034348011, 0.01747642457485199, 0.3392483592033386, -0.28100115060806274, 0.01974198967218399, -0.018748654052615166, 0.0027248160913586617, 0.01164180040359497, 0.24175778031349182, 0.17200958728790283, -0.08524379134178162, 0.8869525194168091, 0.0011984225129708648, 0.0024807346053421497, -0.0005033374764025211, 0.24292024970054626, -0.1947556436061859, 0.07991081476211548, 0.8663156628608704, -0.005656554363667965, 0.013494237326085567, 0.002061286708340049]} +{"t": 3.2193, "q": [-0.12131742388010025, 0.008476095274090767, -0.0007365542696788907, 0.3135286271572113, -0.1891016662120819, -0.014915520325303078, -0.07555367052555084, -0.02929903194308281, 0.017422856763005257, 0.3392994999885559, -0.2810094952583313, 0.01974206604063511, -0.018748654052615166, 0.0027548810467123985, 0.011622610501945019, 0.24176976084709167, 0.1633090376853943, -0.08509998023509979, 0.89024817943573, 0.0012223910307511687, 0.0024687503464519978, -0.0004074636672157794, 0.24272850155830383, -0.18808043003082275, 0.07991081476211548, 0.8714209794998169, -0.005632585845887661, 0.01350622158497572, 0.0021092237439006567]} +{"t": 3.236, "q": [-0.12131742388010025, 0.00849314033985138, -0.0008570813224650919, 0.3135201036930084, -0.18909746408462524, -0.01492260117083788, -0.07554514706134796, -0.02924790047109127, 0.017409464344382286, 0.3393080234527588, -0.28100529313087463, 0.019734805449843407, -0.018721869215369225, 0.002800009911879897, 0.011574658565223217, 0.24147015810012817, 0.15477627515792847, -0.0848243460059166, 0.8931244015693665, 0.0012343751732259989, 0.0024208135437220335, 0.00017976337403524667, 0.24268056452274323, -0.18105767667293549, 0.07983890920877457, 0.8765142560005188, -0.005596633069217205, 0.013530190102756023, 0.0020852552261203527]} +{"t": 3.253, "q": [-0.12131742388010025, 0.00849314033985138, -0.0010177841177210212, 0.3135712444782257, -0.18909326195716858, -0.01492968201637268, -0.0754343569278717, -0.029205288738012314, 0.01731572113931179, 0.3393421173095703, -0.28100529313087463, 0.019734805449843407, -0.01849420741200447, 0.0029427865520119667, 0.011502672918140888, 0.24059531092643738, 0.14796923100948334, -0.08460862934589386, 0.8963481187820435, 0.0012583436910063028, 0.0023608924821019173, 0.0010785802733153105, 0.24269254505634308, -0.17477793991565704, 0.07989882677793503, 0.8823385834693909, -0.005620601586997509, 0.013542174361646175, 0.0021092237439006567]} +{"t": 3.2698, "q": [-0.12132594734430313, 0.008484616875648499, -0.001379365217871964, 0.3136308789253235, -0.18909326195716858, -0.01492968201637268, -0.07526391744613647, -0.029205288738012314, 0.017061274498701096, 0.33932507038116455, -0.28099703788757324, 0.019749173894524574, -0.018253153190016747, 0.0031681470572948456, 0.011435415595769882, 0.23975640535354614, 0.14182132482528687, -0.08451275527477264, 0.8987450003623962, 0.0013542174128815532, 0.0023129554465413094, 0.0024327978026121855, 0.24269254505634308, -0.16834241151809692, 0.07987485826015472, 0.8878273367881775, -0.005596633069217205, 0.013578127138316631, 0.0021092237439006567]} +{"t": 3.2865, "q": [-0.12133447080850601, 0.008467573672533035, -0.0017543383873999119, 0.313664972782135, -0.18909746408462524, -0.01492260117083788, -0.07515312731266022, -0.029171200469136238, 0.016833612695336342, 0.3393506407737732, -0.2810094952583313, 0.01974206604063511, -0.018038883805274963, 0.003415898187085986, 0.011449596844613552, 0.23871378600597382, 0.13697969913482666, -0.08327838033437729, 0.9014414548873901, 0.0013542174128815532, 0.002229065867140889, 0.004014715552330017, 0.2428842931985855, -0.16254204511642456, 0.07981494069099426, 0.8922615051269531, -0.005656554363667965, 0.01362606417387724, 0.0020253341645002365]} +{"t": 3.3034, "q": [-0.12133447080850601, 0.008467573672533035, -0.002089135814458132, 0.31369906663894653, -0.18909326195716858, -0.01492968201637268, -0.07505938410758972, -0.0291200689971447, 0.01661934331059456, 0.33933359384536743, -0.28100529313087463, 0.019734805449843407, -0.017931748181581497, 0.0035584073048084974, 0.011540528386831284, 0.23740750551223755, 0.13551761209964752, -0.08330234885215759, 0.9047490954399109, 0.0013901700731366873, 0.0020253341645002365, 0.005416869651526213, 0.24292024970054626, -0.15728096663951874, 0.07951533794403076, 0.8965398669242859, -0.005680522881448269, 0.01362606417387724, 0.0015939020086079836]} +{"t": 3.3202, "q": [-0.12132594734430313, 0.008510183542966843, -0.002236446598544717, 0.3137587308883667, -0.18908905982971191, -0.014936761930584908, -0.07499121129512787, -0.029043368995189667, 0.016538990661501884, 0.3393506407737732, -0.28100115060806274, 0.01974198967218399, -0.01814601942896843, 0.003761192550882697, 0.011612273752689362, 0.23664051294326782, 0.13545769453048706, -0.08311060070991516, 0.9072058796882629, 0.0013901700731366873, 0.0018815234070643783, 0.0063276709988713264, 0.2427404820919037, -0.15283481776714325, 0.07905993610620499, 0.9006505012512207, -0.005644570104777813, 0.013602095656096935, 0.0010665960144251585]} +{"t": 3.3369, "q": [-0.12133447080850601, 0.008510183542966843, -0.0022498385515064, 0.31377577781677246, -0.18908485770225525, -0.014943842776119709, -0.07496564090251923, -0.029026325792074203, 0.016565775498747826, 0.33931654691696167, -0.28100529313087463, 0.019734805449843407, -0.01833350583910942, 0.003867712337523699, 0.011679506860673428, 0.23565781116485596, 0.1357453167438507, -0.08308663219213486, 0.9096865653991699, 0.0013662016717717052, 0.0017137442482635379, 0.006699182093143463, 0.24235698580741882, -0.149227574467659, 0.07872437685728073, 0.9050726294517517, -0.005668538622558117, 0.013602095656096935, 0.000431432097684592]} +{"t": 3.3538, "q": [-0.12133447080850601, 0.008476095274090767, -0.0022498385515064, 0.3138013482093811, -0.18909326195716858, -0.01492968201637268, -0.0749315544962883, -0.029077457264065742, 0.016592558473348618, 0.33931654691696167, -0.28100529313087463, 0.019734805449843407, -0.018427249044179916, 0.00398147152736783, 0.01171314436942339, 0.23459121584892273, 0.13591310381889343, -0.08312258869409561, 0.9119036793708801, 0.0013662016717717052, 0.0016418388113379478, 0.0068549769930541515, 0.24220119416713715, -0.1465071588754654, 0.07817310094833374, 0.9087158441543579, -0.005680522881448269, 0.013590111397206783, -0.0004913532175123692]} +{"t": 3.3705, "q": [-0.12133447080850601, 0.008399397134780884, -0.0022096626926213503, 0.3138183653354645, -0.18909746408462524, -0.01492260117083788, -0.07490598410367966, -0.029196767136454582, 0.01661934331059456, 0.3393080234527588, -0.28100529313087463, 0.019734805449843407, -0.018440639600157738, 0.004178464412689209, 0.011751608923077583, 0.23346468806266785, 0.1357692927122116, -0.08315853774547577, 0.9139769673347473, 0.0013662016717717052, 0.0016418388113379478, 0.006902913562953472, 0.2418895959854126, -0.14581206440925598, 0.07655522972345352, 0.9118197560310364, -0.005644570104777813, 0.01356614287942648, -0.001342233270406723]} +{"t": 3.3872, "q": [-0.12132594734430313, 0.008288608863949776, -0.002156095113605261, 0.31387802958488464, -0.18909746408462524, -0.01492260117083788, -0.07482928782701492, -0.02935868687927723, 0.016699694097042084, 0.33931654691696167, -0.28100115060806274, 0.01974198967218399, -0.01848081685602665, 0.004557511303573847, 0.011741701513528824, 0.23219436407089233, 0.13549365103244781, -0.08324243128299713, 0.9157266616821289, 0.001330249011516571, 0.0016418388113379478, 0.006962834857404232, 0.24127840995788574, -0.14599183201789856, 0.07516506314277649, 0.9147559404373169, -0.005620601586997509, 0.013530190102756023, -0.001785649568773806]} +{"t": 3.404, "q": [-0.12133447080850601, 0.008211910724639893, -0.0021427033934742212, 0.31397178769111633, -0.18909746408462524, -0.01492260117083788, -0.07477815449237823, -0.029460953548550606, 0.016686301678419113, 0.33931654691696167, -0.28100115060806274, 0.01974198967218399, -0.01848081685602665, 0.005036358255892992, 0.01170710101723671, 0.23074427247047424, 0.13531388342380524, -0.0833742544054985, 0.9173445105552673, 0.001330249011516571, 0.0016658073291182518, 0.006998787634074688, 0.24027173221111298, -0.1462554782629013, 0.07435013353824615, 0.9182673096656799, -0.005596633069217205, 0.013518205843865871, -0.0020253341645002365]} +{"t": 3.4207, "q": [-0.12133447080850601, 0.008186344057321548, -0.002129311440512538, 0.31409960985183716, -0.18909746408462524, -0.01492260117083788, -0.07476963102817535, -0.029469475150108337, 0.016686301678419113, 0.33936768770217896, -0.28100115060806274, 0.01974198967218399, -0.01862812601029873, 0.0053943367674946785, 0.011778410524129868, 0.2292582243680954, 0.13528992235660553, -0.08336227387189865, 0.918794572353363, 0.001318264752626419, 0.0016658073291182518, 0.007034740410745144, 0.2392410933971405, -0.14639928936958313, 0.07346329838037491, 0.9219464659690857, -0.005608617328107357, 0.013518205843865871, -0.002205097349360585]} +{"t": 3.4374, "q": [-0.12133447080850601, 0.008237475529313087, -0.0021427033934742212, 0.3141592741012573, -0.18909746408462524, -0.01492260117083788, -0.07477815449237823, -0.02942686527967453, 0.016699694097042084, 0.33937621116638184, -0.28100529313087463, 0.019734805449843407, -0.01862812601029873, 0.005470617208629847, 0.01180706825107336, 0.22793996334075928, 0.13533785939216614, -0.0833502858877182, 0.9201128482818604, 0.001342233270406723, 0.001689775730483234, 0.0070826769806444645, 0.23803068697452545, -0.14632739126682281, 0.07236075401306152, 0.9263086915016174, -0.005620601586997509, 0.013542174361646175, -0.0023249397054314613]} +{"t": 3.4542, "q": [-0.12133447080850601, 0.008288608863949776, -0.0021427033934742212, 0.314227432012558, -0.18908905982971191, -0.014936761930584908, -0.07477815449237823, -0.029350165277719498, 0.016699694097042084, 0.33946993947029114, -0.28100529313087463, 0.019734805449843407, -0.018601343035697937, 0.005478149279952049, 0.011802260763943195, 0.22657376527786255, 0.1353738009929657, -0.0833502858877182, 0.9225816130638123, 0.0013542174128815532, 0.0016658073291182518, 0.00711862975731492, 0.23761123418807983, -0.14626747369766235, 0.07174955308437347, 0.9293047785758972, -0.005596633069217205, 0.013542174361646175, -0.0023968450259417295]} +{"t": 3.4709, "q": [-0.12132594734430313, 0.008331218734383583, -0.0021962709724903107, 0.31429561972618103, -0.18909326195716858, -0.01492968201637268, -0.07476110756397247, -0.029290510341525078, 0.01664612628519535, 0.3394869863986969, -0.28100115060806274, 0.01974198967218399, -0.018587950617074966, 0.00548580102622509, 0.01180704403668642, 0.2256389856338501, 0.13536182045936584, -0.08330234885215759, 0.9248586297035217, 0.001330249011516571, 0.0016538230702280998, 0.007202519569545984, 0.23751536011695862, -0.1462554782629013, 0.07143796980381012, 0.9311023950576782, -0.005632585845887661, 0.013530190102756023, -0.0024687503464519978]} +{"t": 3.4877, "q": [-0.12132594734430313, 0.008356785401701927, -0.0022096626926213503, 0.31428709626197815, -0.18908905982971191, -0.014936761930584908, -0.07476110756397247, -0.02924790047109127, 0.01663273386657238, 0.339478462934494, -0.2809969484806061, 0.01973472721874714, -0.018614735454320908, 0.005440489389002323, 0.01182629819959402, 0.22490794956684113, 0.13530190289020538, -0.0833263173699379, 0.9267041683197021, 0.001342233270406723, 0.0016298546688631177, 0.007322361692786217, 0.23723971843719482, -0.1462554782629013, 0.07110241055488586, 0.93284010887146, -0.005608617328107357, 0.013530190102756023, -0.002600576961413026]} +{"t": 3.5046, "q": [-0.12131742388010025, 0.00837383046746254, -0.0022230546455830336, 0.3143126666545868, -0.18909315764904022, -0.014915482141077518, -0.07476110756397247, -0.029171200469136238, 0.01663273386657238, 0.33950403332710266, -0.28099682927131653, 0.01972026191651821, -0.018614735454320908, 0.0055241817608475685, 0.011840556748211384, 0.2241649329662323, 0.13528992235660553, -0.0833263173699379, 0.928202211856842, 0.001330249011516571, 0.0016058861510828137, 0.007454188074916601, 0.23689217865467072, -0.14626747369766235, 0.07082676887512207, 0.9342542290687561, -0.005620601586997509, 0.013530190102756023, -0.0027324033435434103]} +{"t": 3.5213, "q": [-0.12130038440227509, 0.00837383046746254, -0.0022632302716374397, 0.3143041431903839, -0.18908044695854187, -0.01492252480238676, -0.07477815449237823, -0.029154157266020775, 0.01663273386657238, 0.3395296037197113, -0.280992716550827, 0.019727446138858795, -0.018614735454320908, 0.005539485719054937, 0.011850125156342983, 0.22311031818389893, 0.13525396585464478, -0.0833263173699379, 0.9301077127456665, 0.001330249011516571, 0.0014261228498071432, 0.00760998297482729, 0.23658059537410736, -0.1462315171957016, 0.0704193040728569, 0.935524582862854, -0.005620601586997509, 0.01350622158497572, -0.0028522456996142864]} +{"t": 3.5381, "q": [-0.12131742388010025, 0.008407918736338615, -0.002316797850653529, 0.3143126666545868, -0.18909326195716858, -0.01492968201637268, -0.07476110756397247, -0.0291200689971447, 0.01661934331059456, 0.3395381271839142, -0.28099682927131653, 0.01972026191651821, -0.018601343035697937, 0.005562562495470047, 0.011874068528413773, 0.22122879326343536, 0.13526594638824463, -0.0833263173699379, 0.9331397414207458, 0.001318264752626419, 0.001282312092371285, 0.007765777874737978, 0.23572970926761627, -0.14621953666210175, 0.07013168931007385, 0.9375738501548767, -0.005596633069217205, 0.013530190102756023, -0.0029241510201245546]} +{"t": 3.5548, "q": [-0.12132594734430313, 0.00837383046746254, -0.0023301898036152124, 0.3143211901187897, -0.18909326195716858, -0.01492968201637268, -0.07474406808614731, -0.0291200689971447, 0.01661934331059456, 0.3395636975765228, -0.280988484621048, 0.019720183685421944, -0.018601343035697937, 0.005592930130660534, 0.011874021962285042, 0.21910758316516876, 0.13521800935268402, -0.08331433683633804, 0.9358721375465393, 0.001342233270406723, 0.001282312092371285, 0.007993478327989578, 0.23445938527584076, -0.1462315171957016, 0.06983207911252975, 0.9401265382766724, -0.005596633069217205, 0.013518205843865871, -0.003020024858415127]} +{"t": 3.5715, "q": [-0.12131742388010025, 0.00843348540365696, -0.0023301898036152124, 0.3143552839756012, -0.18908895552158356, -0.01492256298661232, -0.07476963102817535, -0.029111545532941818, 0.016605950891971588, 0.33960628509521484, -0.2809842824935913, 0.019712921231985092, -0.018587950617074966, 0.005639443639665842, 0.01195068471133709, 0.2169983685016632, 0.13518206775188446, -0.0833263173699379, 0.9379933476448059, 0.001330249011516571, 0.001294296351261437, 0.008305068127810955, 0.23284150660037994, -0.14621953666210175, 0.06950850784778595, 0.9428948760032654, -0.005584648810327053, 0.013530190102756023, -0.003055977402254939]} +{"t": 3.5887, "q": [-0.12132594734430313, 0.00843348540365696, -0.002356973709538579, 0.31433823704719543, -0.18908044695854187, -0.01492252480238676, -0.07473554462194443, -0.029111545532941818, 0.01661934331059456, 0.3396148085594177, -0.2809842824935913, 0.019712921231985092, -0.018547775223851204, 0.0056701721623539925, 0.011979412287473679, 0.21466144919395447, 0.1351461112499237, -0.08333830535411835, 0.9406777620315552, 0.001330249011516571, 0.001294296351261437, 0.008616657927632332, 0.2305045872926712, -0.1462075412273407, 0.06926882266998291, 0.9472811222076416, -0.005596633069217205, 0.013518205843865871, -0.003103914437815547]} +{"t": 3.6057, "q": [-0.12131742388010025, 0.00837383046746254, -0.002356973709538579, 0.3143552839756012, -0.18908905982971191, -0.014936761930584908, -0.07474406808614731, -0.0291200689971447, 0.01663273386657238, 0.3396148085594177, -0.28098005056381226, 0.01970565877854824, -0.01845403201878071, 0.005647691898047924, 0.012003427371382713, 0.21173729002475739, 0.1350981742143631, -0.08333830535411835, 0.944560706615448, 0.001330249011516571, 0.001318264752626419, 0.008916263468563557, 0.22809575498104095, -0.14621953666210175, 0.06913699209690094, 0.9511160254478455, -0.005596633069217205, 0.013530190102756023, -0.0031398669816553593]} +{"t": 3.6225, "q": [-0.12133447080850601, 0.008356785401701927, -0.002356973709538579, 0.3143211901187897, -0.18908905982971191, -0.014936761930584908, -0.07472702115774155, -0.029137112200260162, 0.01661934331059456, 0.33958926796913147, -0.2809758186340332, 0.01969839818775654, -0.01849420741200447, 0.00570918433368206, 0.01207049936056137, 0.20940037071704865, 0.1350502371788025, -0.08338624238967896, 0.947700560092926, 0.0013542174128815532, 0.0013662016717717052, 0.009299758821725845, 0.22509969770908356, -0.1462075412273407, 0.06910104304552078, 0.9547712206840515, -0.005620601586997509, 0.013578127138316631, -0.0031398669816553593]} +{"t": 3.6392, "q": [-0.12133447080850601, 0.008390873670578003, -0.0023301898036152124, 0.3143552839756012, -0.1890847533941269, -0.014929642900824547, -0.07474406808614731, -0.029162678867578506, 0.01664612628519535, 0.33960628509521484, -0.28098005056381226, 0.01970565877854824, -0.018534382805228233, 0.0057247658260166645, 0.01210886798799038, 0.20765067636966705, 0.13499031960964203, -0.08342219144105911, 0.9501932859420776, 0.0013662016717717052, 0.001342233270406723, 0.009695238433778286, 0.22210364043712616, -0.1461596041917801, 0.06895723193883896, 0.9584144353866577, -0.005644570104777813, 0.013554158620536327, -0.0031638354994356632]} +{"t": 3.6559, "q": [-0.12133447080850601, 0.008382352069020271, -0.0023301898036152124, 0.3143211901187897, -0.18908905982971191, -0.014936761930584908, -0.07474406808614731, -0.029205288738012314, 0.01664612628519535, 0.3395636975765228, -0.28098416328430176, 0.019698474556207657, -0.01862812601029873, 0.005693972576409578, 0.012070531956851482, 0.20585303008556366, 0.13491840660572052, -0.08347012847661972, 0.9537286162376404, 0.001342233270406723, 0.001282312092371285, 0.010426276363432407, 0.2195989489555359, -0.14614762365818024, 0.0688973143696785, 0.9625610113143921, -0.005620601586997509, 0.013542174361646175, -0.003175819758325815]} +{"t": 3.6726, "q": [-0.12130890786647797, 0.008348263800144196, -0.0023301898036152124, 0.31427857279777527, -0.18909746408462524, -0.01492260117083788, -0.07474406808614731, -0.029230855405330658, 0.01663273386657238, 0.3395636975765228, -0.28098416328430176, 0.019698474556207657, -0.01862812601029873, 0.005709000863134861, 0.012051300145685673, 0.20470255613327026, 0.13469070196151733, -0.08348211646080017, 0.9558258652687073, 0.001330249011516571, 0.001306280493736267, 0.011456918902695179, 0.2175256758928299, -0.14612366259098053, 0.0688733458518982, 0.966168224811554, -0.005596633069217205, 0.013542174361646175, -0.003175819758325815]} +{"t": 3.6894, "q": [-0.12130890786647797, 0.008305653929710388, -0.0023435817565768957, 0.31423595547676086, -0.18909746408462524, -0.01492260117083788, -0.07474406808614731, -0.02923937886953354, 0.01665951870381832, 0.3394955098628998, -0.2809842824935913, 0.019712921231985092, -0.018574560061097145, 0.005755096673965454, 0.012099204584956169, 0.2036719024181366, 0.13451094925403595, -0.08349409699440002, 0.957563579082489, 0.001294296351261437, 0.0012463594321161509, 0.012463593855500221, 0.21571604907512665, -0.14609968662261963, 0.0688733458518982, 0.9697155952453613, -0.005596633069217205, 0.013542174361646175, -0.0031997880432754755]} +{"t": 3.7062, "q": [-0.12132594734430313, 0.00831417553126812, -0.002316797850653529, 0.31420186161994934, -0.18908905982971191, -0.014936761930584908, -0.07476110756397247, -0.029273467138409615, 0.01664612628519535, 0.339478462934494, -0.28098005056381226, 0.01970565877854824, -0.018614735454320908, 0.005878731142729521, 0.012300549075007439, 0.20243753492832184, 0.1341993510723114, -0.08350608497858047, 0.9593492150306702, 0.001306280493736267, 0.0012343751732259989, 0.013470268808305264, 0.21440976858139038, -0.14603976905345917, 0.0688733458518982, 0.9716809988021851, -0.005620601586997509, 0.013542174361646175, -0.0031997880432754755]} +{"t": 3.7232, "q": [-0.12132594734430313, 0.00831417553126812, -0.0023301898036152124, 0.3141763210296631, -0.18909746408462524, -0.01492260117083788, -0.07477815449237823, -0.029264943674206734, 0.01661934331059456, 0.3394443690776825, -0.2809799611568451, 0.019691212102770805, -0.018534382805228233, 0.006116221658885479, 0.01247765589505434, 0.2007477581501007, 0.1338757872581482, -0.08351806551218033, 0.9621655344963074, 0.001294296351261437, 0.0011504855938255787, 0.014369086362421513, 0.21346302330493927, -0.1459798514842987, 0.06883738934993744, 0.9730112552642822, -0.005584648810327053, 0.013554158620536327, -0.0031997880432754755]} +{"t": 3.7399, "q": [-0.12133447080850601, 0.00831417553126812, -0.0023301898036152124, 0.3141763210296631, -0.18909326195716858, -0.01492968201637268, -0.07476110756397247, -0.029273467138409615, 0.01661934331059456, 0.3394443690776825, -0.2809925973415375, 0.01971299946308136, -0.018574560061097145, 0.006224275100976229, 0.012640632688999176, 0.19926171004772186, 0.13349229097366333, -0.08351806551218033, 0.964514434337616, 0.001282312092371285, 0.0011624698527157307, 0.015423697419464588, 0.21279190480709076, -0.1459798514842987, 0.06878945231437683, 0.9736104607582092, -0.005596633069217205, 0.013542174361646175, -0.0032357408199459314]} +{"t": 3.7567, "q": [-0.12133447080850601, 0.008356785401701927, -0.0023301898036152124, 0.3140910863876343, -0.18909326195716858, -0.01492968201637268, -0.07477815449237823, -0.029264943674206734, 0.016592558473348618, 0.33937621116638184, -0.28098005056381226, 0.01970565877854824, -0.018587950617074966, 0.006300980690866709, 0.012707673013210297, 0.19814717769622803, 0.1330009251832962, -0.08350608497858047, 0.9661083221435547, 0.001270327833481133, 0.0011624698527157307, 0.016502277925610542, 0.2121807038784027, -0.14601579308509827, 0.06881342083215714, 0.9741377234458923, -0.005644570104777813, 0.013554158620536327, -0.0032357408199459314]} +{"t": 3.7736, "q": [-0.12133447080850601, 0.008339742198586464, -0.0023301898036152124, 0.31406551599502563, -0.18909326195716858, -0.01492968201637268, -0.07476963102817535, -0.029256422072649002, 0.016579166054725647, 0.33932507038116455, -0.2809840738773346, 0.01968402788043022, -0.018561167642474174, 0.006316745653748512, 0.012765240855515003, 0.19744011759757996, 0.13230584561824799, -0.08339822292327881, 0.96719890832901, 0.001318264752626419, 0.0011744541116058826, 0.01734117418527603, 0.21131783723831177, -0.14605174958705902, 0.06877747178077698, 0.9752522706985474, -0.005656554363667965, 0.013578127138316631, -0.0032477250788360834]} +{"t": 3.7903, "q": [-0.12133447080850601, 0.00831417553126812, -0.0023301898036152124, 0.3140484690666199, -0.18909326195716858, -0.01492968201637268, -0.07477815449237823, -0.029256422072649002, 0.016565775498747826, 0.3393421173095703, -0.28098005056381226, 0.01970565877854824, -0.018547775223851204, 0.006384865380823612, 0.012798560783267021, 0.19651731848716736, 0.13153885304927826, -0.08339822292327881, 0.9687328338623047, 0.001342233270406723, 0.0011504855938255787, 0.01804824359714985, 0.21055085957050323, -0.14605174958705902, 0.06872953474521637, 0.9765106439590454, -0.005680522881448269, 0.01356614287942648, -0.0032357408199459314]} +{"t": 3.8071, "q": [-0.12133447080850601, 0.008331218734383583, -0.0023301898036152124, 0.31401437520980835, -0.18909326195716858, -0.01492968201637268, -0.07478667795658112, -0.029256422072649002, 0.016579166054725647, 0.3393080234527588, -0.2809925973415375, 0.01971299946308136, -0.018587950617074966, 0.006414966657757759, 0.012903817929327488, 0.19535484910011292, 0.13069996237754822, -0.08338624238967896, 0.9710698127746582, 0.001306280493736267, 0.0011025486746802926, 0.018635470420122147, 0.2096879929304123, -0.14603976905345917, 0.06870556622743607, 0.9777809381484985, -0.005680522881448269, 0.01356614287942648, -0.0032716935966163874]} +{"t": 3.8239, "q": [-0.12133447080850601, 0.00831417553126812, -0.002356973709538579, 0.3139973282814026, -0.18909326195716858, -0.01492968201637268, -0.07481224089860916, -0.029281988739967346, 0.016565775498747826, 0.33927392959594727, -0.2809842824935913, 0.019712921231985092, -0.018574560061097145, 0.006407354027032852, 0.012956526130437851, 0.19388079643249512, 0.12994495034217834, -0.08325441181659698, 0.9742815494537354, 0.001330249011516571, 0.0009227853151969612, 0.019174760207533836, 0.20877718925476074, -0.14602778851985931, 0.06868159770965576, 0.9793628454208374, -0.005644570104777813, 0.013542174361646175, -0.0032836776226758957]} +{"t": 3.8406, "q": [-0.12133447080850601, 0.008297130465507507, -0.0023301898036152124, 0.31395474076271057, -0.18909326195716858, -0.01492968201637268, -0.074795201420784, -0.029264943674206734, 0.016592558473348618, 0.33928245306015015, -0.280988484621048, 0.019720183685421944, -0.018574560061097145, 0.006467714905738831, 0.01302336249500513, 0.1924906224012375, 0.12923789024353027, -0.08324243128299713, 0.9770139455795288, 0.001318264752626419, 0.0009587380336597562, 0.01973801851272583, 0.2073870152235031, -0.1460038125514984, 0.06868159770965576, 0.9815919399261475, -0.005620601586997509, 0.013542174361646175, -0.0032716935966163874]} +{"t": 3.8573, "q": [-0.12133447080850601, 0.008331218734383583, -0.002356973709538579, 0.31392917037010193, -0.18909746408462524, -0.01492260117083788, -0.07482928782701492, -0.029256422072649002, 0.016565775498747826, 0.3392483592033386, -0.28098005056381226, 0.01970565877854824, -0.018587950617074966, 0.006520538125187159, 0.013075857423245907, 0.19112442433834076, 0.12874652445316315, -0.08327838033437729, 0.9791951179504395, 0.001306280493736267, 0.0008868326549418271, 0.020313261076807976, 0.20568525791168213, -0.14602778851985931, 0.06869357824325562, 0.9845041036605835, -0.005596633069217205, 0.013542174361646175, -0.0033076461404561996]} +{"t": 3.874, "q": [-0.12132594734430313, 0.008339742198586464, -0.002356973709538579, 0.31395474076271057, -0.18909746408462524, -0.01492260117083788, -0.07481224089860916, -0.02924790047109127, 0.016579166054725647, 0.3392568826675415, -0.2809842824935913, 0.019712921231985092, -0.018561167642474174, 0.006596059072762728, 0.013094748370349407, 0.18947060406208038, 0.12844692170619965, -0.08323044329881668, 0.9819035530090332, 0.001330249011516571, 0.000862864195369184, 0.02081659995019436, 0.20411533117294312, -0.14601579308509827, 0.06864564120769501, 0.9877398610115051, -0.005644570104777813, 0.013494237326085567, -0.0033076461404561996]} +{"t": 3.8908, "q": [-0.12133447080850601, 0.008339742198586464, -0.002356973709538579, 0.31395474076271057, -0.18909326195716858, -0.01492968201637268, -0.074795201420784, -0.02924790047109127, 0.016565775498747826, 0.3392568826675415, -0.2809842824935913, 0.019712921231985092, -0.01850759983062744, 0.006497827358543873, 0.013119040988385677, 0.18792463839054108, 0.12837502360343933, -0.08325441181659698, 0.9843482971191406, 0.001306280493736267, 0.0008388957940042019, 0.02129596844315529, 0.20259332656860352, -0.14601579308509827, 0.06858572363853455, 0.9912272691726685, -0.005620601586997509, 0.013518205843865871, -0.0033076461404561996]} +{"t": 3.9076, "q": [-0.12134299427270889, 0.00831417553126812, -0.002356973709538579, 0.3139803111553192, -0.18909746408462524, -0.01492260117083788, -0.07477815449237823, -0.02924790047109127, 0.016579166054725647, 0.3392994999885559, -0.28098005056381226, 0.01970565877854824, -0.01848081685602665, 0.006512957625091076, 0.013099830597639084, 0.1871696263551712, 0.12831510603427887, -0.08323044329881668, 0.9851751923561096, 0.001306280493736267, 0.0008149273344315588, 0.02171541564166546, 0.20158664882183075, -0.14601579308509827, 0.06854976713657379, 0.9934203624725342, -0.005620601586997509, 0.013530190102756023, -0.0033316146582365036]} +{"t": 3.9245, "q": [-0.12133447080850601, 0.00831417553126812, -0.0023301898036152124, 0.31400585174560547, -0.18909746408462524, -0.01492260117083788, -0.07477815449237823, -0.02924790047109127, 0.016592558473348618, 0.3392994999885559, -0.28098005056381226, 0.01970565877854824, -0.018547775223851204, 0.006475201342254877, 0.013085596263408661, 0.18664231896400452, 0.128159299492836, -0.08323044329881668, 0.9862777590751648, 0.0013542174128815532, 0.0008029430755414069, 0.022122880443930626, 0.20066386461257935, -0.14603976905345917, 0.06845389306545258, 0.9952659606933594, -0.005644570104777813, 0.013518205843865871, -0.0033196303993463516]} +{"t": 3.9412, "q": [-0.12135151773691177, 0.00831417553126812, -0.0023435817565768957, 0.314039945602417, -0.1891016662120819, -0.014915520325303078, -0.07477815449237823, -0.029290510341525078, 0.016592558473348618, 0.3392994999885559, -0.2809799611568451, 0.019691212102770805, -0.018601343035697937, 0.006505419034510851, 0.01308548916131258, 0.1862228810787201, 0.1281113624572754, -0.08321846276521683, 0.9872964024543762, 0.001342233270406723, 0.0008029430755414069, 0.022518359124660492, 0.20001672208309174, -0.14601579308509827, 0.06845389306545258, 0.9965482354164124, -0.005584648810327053, 0.013494237326085567, -0.0033316146582365036]} +{"t": 3.9581, "q": [-0.12132594734430313, 0.008288608863949776, -0.0023301898036152124, 0.3140740394592285, -0.18909746408462524, -0.01492260117083788, -0.07480372488498688, -0.02930755540728569, 0.01663273386657238, 0.3393421173095703, -0.2809925079345703, 0.019698552787303925, -0.018587950617074966, 0.0065431962721049786, 0.013080567121505737, 0.18605509400367737, 0.12796755135059357, -0.08321846276521683, 0.9882551431655884, 0.001342233270406723, 0.0007190534961409867, 0.023021696135401726, 0.1992257535457611, -0.14602778851985931, 0.06844191253185272, 0.9981781244277954, -0.005596633069217205, 0.013494237326085567, -0.0033435989171266556]} +{"t": 3.975, "q": [-0.12135151773691177, 0.008271565660834312, -0.0023034061305224895, 0.3141592741012573, -0.18909746408462524, -0.01492260117083788, -0.07477815449237823, -0.029341643676161766, 0.01665951870381832, 0.3393847346305847, -0.2809799611568451, 0.019691212102770805, -0.018601343035697937, 0.006573434453457594, 0.01306130364537239, 0.1855996996164322, 0.12775184214115143, -0.08327838033437729, 0.9895973801612854, 0.001306280493736267, 0.0006231797160580754, 0.023549001663923264, 0.19875837862491608, -0.1460038125514984, 0.06845389306545258, 0.9996761083602905, -0.005620601586997509, 0.013482253067195415, -0.0033555831760168076]} +{"t": 3.9917, "q": [-0.12136004120111465, 0.008245998993515968, -0.0023034061305224895, 0.3141677975654602, -0.18909746408462524, -0.01492260117083788, -0.07477815449237823, -0.02936721034348011, 0.01665951870381832, 0.33942732214927673, -0.2809842824935913, 0.019712921231985092, -0.018587950617074966, 0.006633901037275791, 0.013032331131398678, 0.18466491997241974, 0.12747620046138763, -0.08330234885215759, 0.9915028810501099, 0.001318264752626419, 0.0004074636672157794, 0.023968450725078583, 0.19856663048267365, -0.14601579308509827, 0.06845389306545258, 1.0013179779052734, -0.005620601586997509, 0.013494237326085567, -0.003367567202076316]} +{"t": 4.0085, "q": [-0.12134299427270889, 0.008237475529313087, -0.0023435817565768957, 0.31420186161994934, -0.18909746408462524, -0.01492260117083788, -0.07476110756397247, -0.029384253546595573, 0.01665951870381832, 0.3394528925418854, -0.28098416328430176, 0.019698474556207657, -0.018427249044179916, 0.006762264762073755, 0.013084459118545055, 0.18328674137592316, 0.12716461718082428, -0.08330234885215759, 0.9936720132827759, 0.001294296351261437, 0.0003475425182841718, 0.024387897923588753, 0.19817115366458893, -0.14601579308509827, 0.06841794401407242, 1.0037987232208252, -0.005620601586997509, 0.013470268808305264, -0.003415504237636924]} +{"t": 4.0252, "q": [-0.12139412760734558, 0.008237475529313087, -0.002356973709538579, 0.3142530024051666, -0.18909746408462524, -0.01492260117083788, -0.07475259155035019, -0.029375731945037842, 0.016592558473348618, 0.3394528925418854, -0.28098005056381226, 0.01970565877854824, -0.01795853115618229, 0.006966152228415012, 0.013155419379472733, 0.1814531534910202, 0.12684103846549988, -0.08327838033437729, 0.996272623538971, 0.0012583436910063028, 0.00032357408781535923, 0.024711472913622856, 0.19766780734062195, -0.14599183201789856, 0.06838198751211166, 1.0063632726669312, -0.005584648810327053, 0.013494237326085567, -0.0034394727554172277]} +{"t": 4.042, "q": [-0.12144526094198227, 0.008228953927755356, -0.002464108867570758, 0.3142700493335724, -0.18908905982971191, -0.014936761930584908, -0.07476110756397247, -0.029375731945037842, 0.016538990661501884, 0.33946141600608826, -0.2809842824935913, 0.019712921231985092, -0.017529990524053574, 0.007192674558609724, 0.013250228948891163, 0.1795836091041565, 0.1264335811138153, -0.08330234885215759, 0.9985975623130798, 0.001270327833481133, 0.0003834952076431364, 0.024999093264341354, 0.19720043241977692, -0.14601579308509827, 0.0682741329073906, 1.0082927942276, -0.005584648810327053, 0.013494237326085567, -0.00347542529925704]} +{"t": 4.0587, "q": [-0.12145378440618515, 0.008245998993515968, -0.0025176764465868473, 0.31428709626197815, -0.1890888512134552, -0.014908363111317158, -0.07476110756397247, -0.02935868687927723, 0.016538990661501884, 0.3394358456134796, -0.2809758186340332, 0.01969839818775654, -0.01747642457485199, 0.0075248838402330875, 0.013411632739007473, 0.17786987125873566, 0.12599016726016998, -0.08330234885215759, 1.0008865594863892, 0.001318264752626419, 0.0003834952076431364, 0.02521480992436409, 0.19619375467300415, -0.14611166715621948, 0.06817825883626938, 1.0105937719345093, -0.005596633069217205, 0.013494237326085567, -0.00355931487865746]} +{"t": 4.0756, "q": [-0.12143673747777939, 0.008263042196631432, -0.002504284493625164, 0.3143126666545868, -0.18909326195716858, -0.01492968201637268, -0.07476110756397247, -0.029341643676161766, 0.016525600105524063, 0.3394869863986969, -0.2809758186340332, 0.01969839818775654, -0.017570167779922485, 0.007879792712628841, 0.013539413921535015, 0.17615613341331482, 0.12564261257648468, -0.08330234885215759, 1.0031275749206543, 0.001306280493736267, 0.00046738478704355657, 0.025418542325496674, 0.19518707692623138, -0.1462075412273407, 0.06803444772958755, 1.0122954845428467, -0.005620601586997509, 0.01350622158497572, -0.0036072516813874245]} +{"t": 4.0923, "q": [-0.12144526094198227, 0.008288608863949776, -0.002504284493625164, 0.3143211901187897, -0.18909326195716858, -0.01492968201637268, -0.07475259155035019, -0.029324598610401154, 0.016525600105524063, 0.3394869863986969, -0.2809883952140808, 0.01970573700964451, -0.017704086378216743, 0.008317851461470127, 0.013633274473249912, 0.17401094734668732, 0.1251632422208786, -0.08330234885215759, 1.0052129030227661, 0.001282312092371285, 0.0005752427969127893, 0.025622272863984108, 0.1943361908197403, -0.14631541073322296, 0.06795055419206619, 1.0131584405899048, -0.005620601586997509, 0.01350622158497572, -0.0036312201991677284]} +{"t": 4.1091, "q": [-0.12144526094198227, 0.008263042196631432, -0.002504284493625164, 0.3143126666545868, -0.18909746408462524, -0.01492260117083788, -0.07476110756397247, -0.02930755540728569, 0.016525600105524063, 0.33951255679130554, -0.28098005056381226, 0.01970565877854824, -0.017838004976511, 0.008861657232046127, 0.013783986680209637, 0.1717938631772995, 0.12476776540279388, -0.0833502858877182, 1.0066509246826172, 0.001330249011516571, 0.0006591323763132095, 0.025790052488446236, 0.19300594925880432, -0.14637532830238342, 0.06786666810512543, 1.0143208503723145, -0.005620601586997509, 0.013494237326085567, -0.0036551887169480324]} +{"t": 4.126, "q": [-0.12147082388401031, 0.008271565660834312, -0.002504284493625164, 0.3143126666545868, -0.18909746408462524, -0.01492260117083788, -0.07475259155035019, -0.029316077008843422, 0.016565775498747826, 0.33951255679130554, -0.2809799611568451, 0.019691212102770805, -0.017931748181581497, 0.009307115338742733, 0.013939430005848408, 0.1706673502922058, 0.1243123710155487, -0.08336227387189865, 1.008220911026001, 0.0013901700731366873, 0.0006950850365683436, 0.025921879336237907, 0.1919393539428711, -0.14638730883598328, 0.06775880604982376, 1.0151118040084839, -0.005584648810327053, 0.01350622158497572, -0.0036911412607878447]} +{"t": 4.1427, "q": [-0.12143673747777939, 0.0082545205950737, -0.0024507169146090746, 0.31428709626197815, -0.18909326195716858, -0.01492968201637268, -0.07476110756397247, -0.029333122074604034, 0.01661934331059456, 0.3395381271839142, -0.28098005056381226, 0.01970565877854824, -0.018105842173099518, 0.009707309305667877, 0.014027967117726803, 0.16915734112262726, 0.12377307564020157, -0.0833742544054985, 1.0106056928634644, 0.0013781859306618571, 0.0006950850365683436, 0.02606569044291973, 0.19082482159137726, -0.14639928936958313, 0.06768690049648285, 1.0160466432571411, -0.005596633069217205, 0.013542174361646175, -0.0037031255196779966]} +{"t": 4.1595, "q": [-0.12146230041980743, 0.0082545205950737, -0.0024507169146090746, 0.31429561972618103, -0.18909326195716858, -0.01492968201637268, -0.07476110756397247, -0.02935868687927723, 0.01661934331059456, 0.3394869863986969, -0.2809842824935913, 0.019712921231985092, -0.01833350583910942, 0.01003215741366148, 0.014011608436703682, 0.16788701713085175, 0.12332966178655624, -0.0833502858877182, 1.0133501291275024, 0.0013662016717717052, 0.0006831008358858526, 0.02623346820473671, 0.1893148124217987, -0.14645922183990479, 0.0676988884806633, 1.0169693231582642, -0.005632585845887661, 0.013554158620536327, -0.003798999357968569]} +{"t": 4.1762, "q": [-0.12144526094198227, 0.008228953927755356, -0.0024507169146090746, 0.3142530024051666, -0.18909326195716858, -0.01492968201637268, -0.07476963102817535, -0.02935868687927723, 0.01663273386657238, 0.3394955098628998, -0.28098416328430176, 0.019698474556207657, -0.01845403201878071, 0.0102361049503088, 0.014015145599842072, 0.1672039031982422, 0.12289822846651077, -0.08330234885215759, 1.0157829523086548, 0.0013662016717717052, 0.0006351639167405665, 0.026437200605869293, 0.18734939396381378, -0.14643524587154388, 0.0676988884806633, 1.0181318521499634, -0.005632585845887661, 0.01356614287942648, -0.003798999357968569]} +{"t": 4.193, "q": [-0.12144526094198227, 0.008228953927755356, -0.0024373249616473913, 0.31423595547676086, -0.18909326195716858, -0.01492968201637268, -0.074795201420784, -0.02936721034348011, 0.01661934331059456, 0.33946141600608826, -0.2809842824935913, 0.019712921231985092, -0.018547775223851204, 0.010462619364261627, 0.014071225188672543, 0.16664065420627594, 0.12264656275510788, -0.08330234885215759, 1.0185153484344482, 0.0013662016717717052, 0.00044341632747091353, 0.026628948748111725, 0.18552778661251068, -0.14645922183990479, 0.0676988884806633, 1.0199054479599, -0.005620601586997509, 0.013590111397206783, -0.0038229678757488728]} +{"t": 4.2097, "q": [-0.12144526094198227, 0.008237475529313087, -0.0024105412885546684, 0.3142189085483551, -0.18908905982971191, -0.014936761930584908, -0.07481224089860916, -0.02935868687927723, 0.01661934331059456, 0.33941879868507385, -0.2809883952140808, 0.01970573700964451, -0.018775437027215958, 0.010771987959742546, 0.014256101101636887, 0.1657538264989853, 0.12228703498840332, -0.08323044329881668, 1.021451473236084, 0.0013542174128815532, 0.0004074636672157794, 0.026796728372573853, 0.18380206823349, -0.14644722640514374, 0.06763897091150284, 1.021751046180725, -0.005620601586997509, 0.01356614287942648, -0.0038349521346390247]} +{"t": 4.2265, "q": [-0.12144526094198227, 0.008237475529313087, -0.0024373249616473913, 0.3141848146915436, -0.18909746408462524, -0.01492260117083788, -0.07481224089860916, -0.029375731945037842, 0.01661934331059456, 0.3394017815589905, -0.2809842824935913, 0.019712921231985092, -0.018788829445838928, 0.011104063130915165, 0.014416811987757683, 0.16511864960193634, 0.12185560166835785, -0.08324243128299713, 1.0232371091842651, 0.001330249011516571, 0.0003115898580290377, 0.026928553357720375, 0.18254372477531433, -0.14647120237350464, 0.06761500239372253, 1.0239322185516357, -0.005620601586997509, 0.013578127138316631, -0.003858920419588685]} +{"t": 4.2432, "q": [-0.12146230041980743, 0.008228953927755356, -0.0024507169146090746, 0.31415075063705444, -0.18909746408462524, -0.01492260117083788, -0.07481224089860916, -0.02936721034348011, 0.016592558473348618, 0.3393506407737732, -0.28098005056381226, 0.01970565877854824, -0.01865491084754467, 0.011587156914174557, 0.01460503414273262, 0.16449548304080963, 0.12128035724163055, -0.08323044329881668, 1.0240280628204346, 0.001330249011516571, 0.00025166873820126057, 0.027048395946621895, 0.18164490163326263, -0.14649516344070435, 0.06754309684038162, 1.0262930393218994, -0.005620601586997509, 0.013554158620536327, -0.003942809998989105]} +{"t": 4.2601, "q": [-0.12144526094198227, 0.008228953927755356, -0.0024507169146090746, 0.3140910863876343, -0.18909326195716858, -0.01492968201637268, -0.07482076436281204, -0.029375731945037842, 0.016592558473348618, 0.3393080234527588, -0.28098416328430176, 0.019698474556207657, -0.01865491084754467, 0.012168345972895622, 0.014806665480136871, 0.1637524515390396, 0.12056130915880203, -0.08319449424743652, 1.0244954824447632, 0.001342233270406723, 0.000215716048842296, 0.027180222794413567, 0.18091386556625366, -0.1464831829071045, 0.06750714033842087, 1.0284262895584106, -0.005620601586997509, 0.013542174361646175, -0.004062652587890625]} +{"t": 4.277, "q": [-0.12144526094198227, 0.008228953927755356, -0.0024507169146090746, 0.3140740394592285, -0.18909746408462524, -0.01492260117083788, -0.07481224089860916, -0.029375731945037842, 0.016579166054725647, 0.33931654691696167, -0.2809842824935913, 0.019712921231985092, -0.018520992249250412, 0.012817155569791794, 0.015088497661054134, 0.16268585622310638, 0.11975836008787155, -0.08321846276521683, 1.0252864360809326, 0.001342233270406723, 0.00022770027862861753, 0.02731204964220524, 0.18035060167312622, -0.1464831829071045, 0.0674472227692604, 1.0303677320480347, -0.005596633069217205, 0.013518205843865871, -0.0041824947111308575]} +{"t": 4.2938, "q": [-0.12143673747777939, 0.008228953927755356, -0.0024908925406634808, 0.3140740394592285, -0.18910178542137146, -0.014929737895727158, -0.07480372488498688, -0.029375731945037842, 0.016525600105524063, 0.33931654691696167, -0.2809801399707794, 0.019720107316970825, -0.01815940998494625, 0.013420550152659416, 0.01541859470307827, 0.16159529983997345, 0.11903931200504303, -0.08321846276521683, 1.0263769626617432, 0.001306280493736267, 0.00025166873820126057, 0.027515782043337822, 0.17902036011219025, -0.14649516344070435, 0.06738729774951935, 1.0332319736480713, -0.005620601586997509, 0.013494237326085567, -0.004230431281030178]} +{"t": 4.3105, "q": [-0.12147082388401031, 0.008211910724639893, -0.0025176764465868473, 0.3140484690666199, -0.18910609185695648, -0.014936856925487518, -0.07482076436281204, -0.029375731945037842, 0.016512207686901093, 0.3392994999885559, -0.2809883952140808, 0.01970573700964451, -0.0179987084120512, 0.01410697028040886, 0.01577230542898178, 0.16060060262680054, 0.11850001662969589, -0.08327838033437729, 1.0274676084518433, 0.001342233270406723, 0.00025166873820126057, 0.0276835598051548, 0.17745041847229004, -0.1465311199426651, 0.06732738018035889, 1.0356048345565796, -0.005620601586997509, 0.013542174361646175, -0.004278368316590786]} +{"t": 4.3272, "q": [-0.12146230041980743, 0.008237475529313087, -0.002531068166717887, 0.3140484690666199, -0.18909746408462524, -0.01492260117083788, -0.07482928782701492, -0.02935868687927723, 0.016498815268278122, 0.33931654691696167, -0.28098416328430176, 0.019698474556207657, -0.018025491386651993, 0.01482339110225439, 0.0161347147077322, 0.15967781841754913, 0.11810453981161118, -0.08321846276521683, 1.0284981727600098, 0.001342233270406723, 0.0002636529679875821, 0.02780340239405632, 0.17619207501411438, -0.14651913940906525, 0.06730341166257858, 1.0370908975601196, -0.005596633069217205, 0.013518205843865871, -0.00430233683437109]} +{"t": 4.344, "q": [-0.12144526094198227, 0.0082545205950737, -0.002531068166717887, 0.314039945602417, -0.18909326195716858, -0.01492968201637268, -0.0748378112912178, -0.02935868687927723, 0.01644524745643139, 0.33931654691696167, -0.2809799611568451, 0.019691212102770805, -0.018025491386651993, 0.015668099746108055, 0.016452185809612274, 0.1586112231016159, 0.11773303151130676, -0.08325441181659698, 1.0298644304275513, 0.001342233270406723, 0.0002636529679875821, 0.02780340239405632, 0.17496968805789948, -0.14654310047626495, 0.06724348664283752, 1.0383013486862183, -0.005596633069217205, 0.013518205843865871, -0.004314321093261242]} +{"t": 4.3607, "q": [-0.12144526094198227, 0.008237475529313087, -0.002531068166717887, 0.3140484690666199, -0.18908905982971191, -0.014936761930584908, -0.07482076436281204, -0.029333122074604034, 0.01644524745643139, 0.3393421173095703, -0.28098827600479126, 0.019691290333867073, -0.01813262701034546, 0.016505587846040726, 0.01664019376039505, 0.15748471021652222, 0.11742144078016281, -0.0833263173699379, 1.0316380262374878, 0.001318264752626419, 0.00027563716867007315, 0.027839355170726776, 0.17402292788028717, -0.14661501348018646, 0.06720753759145737, 1.039236068725586, -0.005572664551436901, 0.01350622158497572, -0.004326305352151394]} +{"t": 4.3774, "q": [-0.12143673747777939, 0.008263042196631432, -0.002531068166717887, 0.3140314221382141, -0.18908905982971191, -0.014936761930584908, -0.07482928782701492, -0.029341643676161766, 0.01647203229367733, 0.33931654691696167, -0.2809883952140808, 0.01970573700964451, -0.018253153190016747, 0.017275651916861534, 0.01663283444941044, 0.15657390654087067, 0.11706191301345825, -0.0833263173699379, 1.033255934715271, 0.001330249011516571, 0.00027563716867007315, 0.027851339429616928, 0.17335182428359985, -0.14666295051574707, 0.06720753759145737, 1.0402427911758423, -0.005620601586997509, 0.013518205843865871, -0.004314321093261242]} +{"t": 4.3942, "q": [-0.12144526094198227, 0.008263042196631432, -0.002531068166717887, 0.31400585174560547, -0.18909746408462524, -0.01492260117083788, -0.07481224089860916, -0.029341643676161766, 0.01645863987505436, 0.33931654691696167, -0.28098827600479126, 0.019691290333867073, -0.01832011342048645, 0.01815190725028515, 0.016479939222335815, 0.15566310286521912, 0.11683420836925507, -0.08336227387189865, 1.034897804260254, 0.001318264752626419, 0.00027563716867007315, 0.027851339429616928, 0.17292039096355438, -0.1467588245868683, 0.06720753759145737, 1.0413812398910522, -0.005596633069217205, 0.01350622158497572, -0.00430233683437109]} +{"t": 4.411, "q": [-0.12143673747777939, 0.008288608863949776, -0.002531068166717887, 0.3139888346195221, -0.18909326195716858, -0.01492968201637268, -0.07482076436281204, -0.029324598610401154, 0.01645863987505436, 0.33931654691696167, -0.28098005056381226, 0.01970565877854824, -0.018360288813710213, 0.01904359646141529, 0.016201885417103767, 0.154572531580925, 0.11659453064203262, -0.08345814794301987, 1.036455750465393, 0.001318264752626419, 0.0002996056282427162, 0.027839355170726776, 0.17282451689243317, -0.14689065515995026, 0.06715960055589676, 1.0423280000686646, -0.005596633069217205, 0.01350622158497572, -0.004338289611041546]} +{"t": 4.4277, "q": [-0.12144526094198227, 0.008288608863949776, -0.002531068166717887, 0.31401437520980835, -0.18910609185695648, -0.014936856925487518, -0.07482928782701492, -0.02930755540728569, 0.01647203229367733, 0.3392994999885559, -0.28098005056381226, 0.01970565877854824, -0.018360288813710213, 0.019912593066692352, 0.01593843288719654, 0.15338610112667084, 0.11633087694644928, -0.08348211646080017, 1.03855299949646, 0.001318264752626419, 0.0002636529679875821, 0.027827370911836624, 0.1727645844221115, -0.14693859219551086, 0.067123644053936, 1.043334722518921, -0.005572664551436901, 0.013482253067195415, -0.0043982104398310184]} +{"t": 4.4445, "q": [-0.12142821401357651, 0.008288608863949776, -0.002531068166717887, 0.31401437520980835, -0.18909746408462524, -0.01492260117083788, -0.07480372488498688, -0.02930755540728569, 0.01645863987505436, 0.33931654691696167, -0.2809883952140808, 0.01970573700964451, -0.018373681232333183, 0.02069862000644207, 0.015670934692025185, 0.1516004502773285, 0.11605523526668549, -0.08349409699440002, 1.0418007373809814, 0.001306280493736267, 0.00032357408781535923, 0.027851339429616928, 0.17259681224822998, -0.1470584273338318, 0.06699182093143463, 1.0445210933685303, -0.005572664551436901, 0.013458284549415112, -0.004458131734281778]} +{"t": 4.4612, "q": [-0.12140265107154846, 0.008288608863949776, -0.0025578520726412535, 0.31401437520980835, -0.18909746408462524, -0.01492260117083788, -0.07482928782701492, -0.02930755540728569, 0.01645863987505436, 0.3392994999885559, -0.2809883952140808, 0.01970573700964451, -0.018427249044179916, 0.02158256433904171, 0.015511414036154747, 0.1506536900997162, 0.11586348712444305, -0.08356600254774094, 1.043130874633789, 0.001342233270406723, 0.0003834952076431364, 0.027827370911836624, 0.17229720950126648, -0.14719025790691376, 0.06694388389587402, 1.045731544494629, -0.005572664551436901, 0.013482253067195415, -0.004601942375302315]} +{"t": 4.4779, "q": [-0.12142821401357651, 0.008297130465507507, -0.002531068166717887, 0.3139973282814026, -0.18910188972949982, -0.014943936839699745, -0.07482928782701492, -0.029281988739967346, 0.01645863987505436, 0.33931654691696167, -0.280988484621048, 0.019720183685421944, -0.018413856625556946, 0.022458568215370178, 0.015452103689312935, 0.14994663000106812, 0.11558785289525986, -0.08357799053192139, 1.0438978672027588, 0.001318264752626419, 0.000431432097684592, 0.027815386652946472, 0.17200958728790283, -0.1474059671163559, 0.0668240413069725, 1.0468580722808838, -0.005596633069217205, 0.013458284549415112, -0.004685832187533379]} +{"t": 4.4947, "q": [-0.12142821401357651, 0.00831417553126812, -0.0025578520726412535, 0.31401437520980835, -0.18909326195716858, -0.01492968201637268, -0.07482928782701492, -0.029273467138409615, 0.01645863987505436, 0.33931654691696167, -0.28098005056381226, 0.01970565877854824, -0.018413856625556946, 0.02325112745165825, 0.015494062565267086, 0.14945527911186218, 0.11531221866607666, -0.08366187661886215, 1.0444371700286865, 0.001294296351261437, 0.00037151097785681486, 0.02780340239405632, 0.17153021693229675, -0.14766962826251984, 0.06674014776945114, 1.048188328742981, -0.005596633069217205, 0.013458284549415112, -0.004745753016322851]} +{"t": 4.5114, "q": [-0.12143673747777939, 0.008280087262392044, -0.0025578520726412535, 0.31405699253082275, -0.18909746408462524, -0.01492260117083788, -0.07482076436281204, -0.029264943674206734, 0.01647203229367733, 0.33936768770217896, -0.2809842824935913, 0.019712921231985092, -0.01846742443740368, 0.02392282895743847, 0.015537449158728123, 0.1493234485387802, 0.11496467143297195, -0.083673857152462, 1.04489266872406, 0.001330249011516571, 0.00035952674807049334, 0.02780340239405632, 0.1711467206478119, -0.1480051875114441, 0.06668023020029068, 1.0491230487823486, -0.0055486964993178844, 0.013434316031634808, -0.004781705792993307]} +{"t": 4.5282, "q": [-0.12141969054937363, 0.008322697132825851, -0.0025578520726412535, 0.31406551599502563, -0.18909326195716858, -0.01492968201637268, -0.07482928782701492, -0.02924790047109127, 0.01647203229367733, 0.3393591642379761, -0.28098005056381226, 0.01970565877854824, -0.018520992249250412, 0.024503471329808235, 0.015658067539334297, 0.14934740960597992, 0.1146051436662674, -0.08368584513664246, 1.0451922416687012, 0.001318264752626419, 0.00037151097785681486, 0.02780340239405632, 0.17077520489692688, -0.1483527272939682, 0.06662030518054962, 1.0495065450668335, -0.0055486964993178844, 0.01344630029052496, -0.004793690051883459]} +{"t": 4.5449, "q": [-0.12143673747777939, 0.00831417553126812, -0.0025578520726412535, 0.3140740394592285, -0.18909326195716858, -0.01492968201637268, -0.0748378112912178, -0.029256422072649002, 0.01644524745643139, 0.33936768770217896, -0.2809925079345703, 0.019698552787303925, -0.01846742443740368, 0.02509160339832306, 0.015792911872267723, 0.14944328367710114, 0.11420966684818268, -0.0836259201169014, 1.045515775680542, 0.001330249011516571, 0.00037151097785681486, 0.027791418135166168, 0.17017599940299988, -0.1486762911081314, 0.06660832464694977, 1.0498780012130737, -0.005644570104777813, 0.013458284549415112, -0.004781705792993307]} +{"t": 4.5616, "q": [-0.12143673747777939, 0.00831417553126812, -0.0025578520726412535, 0.31410813331604004, -0.18909326195716858, -0.01492968201637268, -0.07482076436281204, -0.029256422072649002, 0.01647203229367733, 0.33937621116638184, -0.28098005056381226, 0.01970565877854824, -0.018534382805228233, 0.025611743330955505, 0.01595231145620346, 0.14946725964546204, 0.11389807611703873, -0.0836498886346817, 1.0456116199493408, 0.001306280493736267, 0.00037151097785681486, 0.027815386652946472, 0.1696726679801941, -0.1489279717206955, 0.06651245057582855, 1.0502735376358032, -0.005560680292546749, 0.01344630029052496, -0.004817658569663763]} +{"t": 4.5783, "q": [-0.12144526094198227, 0.00831417553126812, -0.0025712440256029367, 0.3141166567802429, -0.18908905982971191, -0.014936761930584908, -0.07481224089860916, -0.02923937886953354, 0.01644524745643139, 0.3394358456134796, -0.2809883952140808, 0.01970573700964451, -0.018534382805228233, 0.026176922023296356, 0.01616842672228813, 0.14939534664154053, 0.11352656781673431, -0.0836259201169014, 1.0457075834274292, 0.001318264752626419, 0.00035952674807049334, 0.02780340239405632, 0.1691213846206665, -0.14911971986293793, 0.06648848205804825, 1.0507768392562866, -0.005572664551436901, 0.013470268808305264, -0.004853611346334219]} +{"t": 4.595, "q": [-0.12144526094198227, 0.00831417553126812, -0.00254446011967957, 0.3141337037086487, -0.18909746408462524, -0.01492260117083788, -0.07481224089860916, -0.02924790047109127, 0.01647203229367733, 0.33942732214927673, -0.28098416328430176, 0.019698474556207657, -0.018547775223851204, 0.026666997000575066, 0.01629955694079399, 0.1492755115032196, 0.1131071150302887, -0.0836259201169014, 1.0457913875579834, 0.001330249011516571, 0.00035952674807049334, 0.027815386652946472, 0.16865399479866028, -0.1492515355348587, 0.06640458852052689, 1.0512322187423706, -0.005596633069217205, 0.013482253067195415, -0.004889564123004675]} +{"t": 4.6118, "q": [-0.12146230041980743, 0.008348263800144196, -0.0025712440256029367, 0.31414222717285156, -0.18909746408462524, -0.01492260117083788, -0.07482076436281204, -0.029256422072649002, 0.016498815268278122, 0.33942732214927673, -0.28098005056381226, 0.01970565877854824, -0.018520992249250412, 0.027172187343239784, 0.016391688957810402, 0.14933542907238007, 0.1125798150897026, -0.0836019515991211, 1.0458513498306274, 0.001318264752626419, 0.00033555831760168076, 0.027815386652946472, 0.16813868284225464, -0.14938336610794067, 0.06635665148496628, 1.0518674850463867, -0.005596633069217205, 0.013470268808305264, -0.004889564123004675]} +{"t": 4.6285, "q": [-0.12143673747777939, 0.00831417553126812, -0.0025578520726412535, 0.3141763210296631, -0.18908905982971191, -0.014936761930584908, -0.074795201420784, -0.029290510341525078, 0.016498815268278122, 0.33942732214927673, -0.2809842824935913, 0.019712921231985092, -0.018547775223851204, 0.02755681611597538, 0.016437867656350136, 0.14937138557434082, 0.11201655119657516, -0.0836019515991211, 1.0460790395736694, 0.001318264752626419, 0.00033555831760168076, 0.027815386652946472, 0.16723985970020294, -0.14953915774822235, 0.06628475338220596, 1.0531257390975952, -0.005596633069217205, 0.013494237326085567, -0.0049255164340138435]} +{"t": 4.6452, "q": [-0.12144526094198227, 0.008263042196631432, -0.0025578520726412535, 0.3141677975654602, -0.18909326195716858, -0.01492968201637268, -0.07482076436281204, -0.029290510341525078, 0.016525600105524063, 0.33941879868507385, -0.2809883952140808, 0.01970573700964451, -0.01850759983062744, 0.027956586331129074, 0.01647423766553402, 0.14938336610794067, 0.11134544014930725, -0.08354203402996063, 1.0463306903839111, 0.001330249011516571, 0.00032357408781535923, 0.027839355170726776, 0.16623318195343018, -0.14965900778770447, 0.06626078486442566, 1.054707646369934, -0.005596633069217205, 0.013470268808305264, -0.0049494849517941475]} +{"t": 4.662, "q": [-0.12144526094198227, 0.008263042196631432, -0.0025578520726412535, 0.3141763210296631, -0.18909746408462524, -0.01492260117083788, -0.0748378112912178, -0.029316077008843422, 0.016538990661501884, 0.33941879868507385, -0.28098005056381226, 0.01970565877854824, -0.018520992249250412, 0.028318926692008972, 0.0164490919560194, 0.14937138557434082, 0.11053051054477692, -0.08342219144105911, 1.0466662645339966, 0.0013542174128815532, 0.00033555831760168076, 0.02792324498295784, 0.16531039774417877, -0.14968296885490417, 0.0661768913269043, 1.0559180974960327, -0.005560680292546749, 0.013494237326085567, -0.0049614692106842995]} +{"t": 4.6788, "q": [-0.12143673747777939, 0.008237475529313087, -0.002531068166717887, 0.3141677975654602, -0.18909746408462524, -0.01492260117083788, -0.07481224089860916, -0.029341643676161766, 0.016538990661501884, 0.33942732214927673, -0.2809925079345703, 0.019698552787303925, -0.018534382805228233, 0.028802383691072464, 0.016345294192433357, 0.14931146800518036, 0.10970360040664673, -0.08336227387189865, 1.047217607498169, 0.0013662016717717052, 0.0003115898580290377, 0.028091024607419968, 0.16481904685497284, -0.1498028188943863, 0.06608101725578308, 1.0563615560531616, -0.005596633069217205, 0.013494237326085567, -0.005033374764025211]} +{"t": 4.6956, "q": [-0.12143673747777939, 0.008228953927755356, -0.002531068166717887, 0.31420186161994934, -0.18909746408462524, -0.01492260117083788, -0.07481224089860916, -0.02935868687927723, 0.016552383080124855, 0.33941879868507385, -0.2809883952140808, 0.01970573700964451, -0.018534382805228233, 0.02926349639892578, 0.016179541125893593, 0.14928749203681946, 0.10887668281793594, -0.08338624238967896, 1.0480684041976929, 0.0013662016717717052, 0.0002636529679875821, 0.028378644958138466, 0.16454340517520905, -0.14991067349910736, 0.06602109968662262, 1.0567809343338013, -0.005596633069217205, 0.013494237326085567, -0.005045359022915363]} +{"t": 4.7123, "q": [-0.12141969054937363, 0.00819486565887928, -0.002531068166717887, 0.3141848146915436, -0.18909326195716858, -0.01492968201637268, -0.07481224089860916, -0.029375731945037842, 0.016592558473348618, 0.33941879868507385, -0.2809883952140808, 0.01970573700964451, -0.018520992249250412, 0.029822831973433495, 0.015988178551197052, 0.1491796374320984, 0.10820557177066803, -0.0833742544054985, 1.0494465827941895, 0.0013662016717717052, 0.000107858024421148, 0.028738172724843025, 0.16439960896968842, -0.15006646513938904, 0.06588926911354065, 1.0572603940963745, -0.005596633069217205, 0.013494237326085567, -0.005081311333924532]} +{"t": 4.729, "q": [-0.12143673747777939, 0.008228953927755356, -0.002531068166717887, 0.31415075063705444, -0.18909746408462524, -0.01492260117083788, -0.07480372488498688, -0.029384253546595573, 0.016565775498747826, 0.33937621116638184, -0.2809883952140808, 0.01970573700964451, -0.018561167642474174, 0.03029143251478672, 0.01585547998547554, 0.14910772442817688, 0.10779810696840286, -0.0833502858877182, 1.050752878189087, 0.0013662016717717052, -0.00016777915880084038, 0.029025793075561523, 0.16433967649936676, -0.15021027624607086, 0.06586530059576035, 1.0577397346496582, -0.005632585845887661, 0.013482253067195415, -0.00512924836948514]} +{"t": 4.7457, "q": [-0.12141116708517075, 0.008237475529313087, -0.002531068166717887, 0.31415075063705444, -0.18909746408462524, -0.01492260117083788, -0.07481224089860916, -0.029392777010798454, 0.016552383080124855, 0.3394443690776825, -0.2809842824935913, 0.019712921231985092, -0.018587950617074966, 0.03074430674314499, 0.01584737002849579, 0.14910772442817688, 0.10752246528863907, -0.0833742544054985, 1.052466630935669, 0.0013781859306618571, -0.00035952674807049334, 0.029265478253364563, 0.16429173946380615, -0.15036606788635254, 0.06573347747325897, 1.0581711530685425, -0.005632585845887661, 0.01350622158497572, -0.005165201146155596]} +{"t": 4.7625, "q": [-0.12144526094198227, 0.0082545205950737, -0.0025578520726412535, 0.3141763210296631, -0.18909746408462524, -0.01492260117083788, -0.07481224089860916, -0.02936721034348011, 0.016525600105524063, 0.3394358456134796, -0.28098416328430176, 0.019698474556207657, -0.018534382805228233, 0.03121957927942276, 0.015881575644016266, 0.1491796374320984, 0.10737866163253784, -0.0833502858877182, 1.053952693939209, 0.0013662016717717052, -0.0005273059359751642, 0.02943325787782669, 0.16429173946380615, -0.15055781602859497, 0.065601646900177, 1.0583029985427856, -0.005584648810327053, 0.013470268808305264, -0.005213138181716204]} +{"t": 4.7792, "q": [-0.12144526094198227, 0.008263042196631432, -0.0025578520726412535, 0.3141848146915436, -0.18909326195716858, -0.01492968201637268, -0.07482928782701492, -0.02930755540728569, 0.016498815268278122, 0.33942732214927673, -0.2809883952140808, 0.01970573700964451, -0.01850759983062744, 0.031710248440504074, 0.015858059749007225, 0.14921559393405914, 0.10734270513057709, -0.08336227387189865, 1.0550073385238647, 0.0013662016717717052, -0.0007909588748589158, 0.0294811949133873, 0.16429173946380615, -0.150797501206398, 0.06554172933101654, 1.058350920677185, -0.005572664551436901, 0.013470268808305264, -0.005249090492725372]} +{"t": 4.796, "q": [-0.12144526094198227, 0.008288608863949776, -0.0025578520726412535, 0.31419333815574646, -0.18908044695854187, -0.01492252480238676, -0.07481224089860916, -0.029281988739967346, 0.016512207686901093, 0.3394528925418854, -0.2809883952140808, 0.01970573700964451, -0.018534382805228233, 0.032133352011442184, 0.01575431041419506, 0.14908376336097717, 0.10735469311475754, -0.08339822292327881, 1.0562655925750732, 0.001342233270406723, -0.0009946906939148903, 0.029529130086302757, 0.16429173946380615, -0.15108512341976166, 0.06542188674211502, 1.0583868026733398, -0.005632585845887661, 0.013458284549415112, -0.005249090492725372]} +{"t": 4.8128, "q": [-0.12143673747777939, 0.008263042196631432, -0.00258463597856462, 0.314227432012558, -0.18908905982971191, -0.014936761930584908, -0.074795201420784, -0.02929903194308281, 0.016512207686901093, 0.3395210802555084, -0.28098005056381226, 0.01970565877854824, -0.01850759983062744, 0.03260153532028198, 0.015678253024816513, 0.14871224761009216, 0.107414610683918, -0.0833502858877182, 1.057547926902771, 0.0013662016717717052, -0.0011744541116058826, 0.029565082862973213, 0.16426777839660645, -0.15149259567260742, 0.06542188674211502, 1.0584228038787842, -0.005596633069217205, 0.013470268808305264, -0.005261074751615524]} +{"t": 4.8296, "q": [-0.12140265107154846, 0.00831417553126812, -0.0025712440256029367, 0.3142700493335724, -0.18908485770225525, -0.014943842776119709, -0.074795201420784, -0.029273467138409615, 0.01647203229367733, 0.33954665064811707, -0.2809883952140808, 0.01970573700964451, -0.018520992249250412, 0.033198509365320206, 0.01550892274826765, 0.14812502264976501, 0.10749849677085876, -0.0833263173699379, 1.0589979887008667, 0.0013781859306618571, -0.0013662016717717052, 0.02955309860408306, 0.1642318218946457, -0.15181615948677063, 0.06536196172237396, 1.0584348440170288, -0.005572664551436901, 0.013470268808305264, -0.005285043269395828]} +{"t": 4.8463, "q": [-0.12143673747777939, 0.008288608863949776, -0.0025578520726412535, 0.3143041431903839, -0.18909326195716858, -0.01492968201637268, -0.07476963102817535, -0.029281988739967346, 0.016498815268278122, 0.3395636975765228, -0.28098416328430176, 0.019698474556207657, -0.018520992249250412, 0.03374963626265526, 0.015445427037775517, 0.1471303403377533, 0.10751048475503922, -0.0833502858877182, 1.0612510442733765, 0.0013781859306618571, -0.0016298546688631177, 0.029529130086302757, 0.16418388485908508, -0.15215171873569489, 0.0652541071176529, 1.0585306882858276, -0.005596633069217205, 0.013470268808305264, -0.005285043269395828]} +{"t": 4.8632, "q": [-0.12142821401357651, 0.008263042196631432, -0.0025712440256029367, 0.3143552839756012, -0.18909746408462524, -0.01492260117083788, -0.07476110756397247, -0.029324598610401154, 0.016525600105524063, 0.3396318554878235, -0.2809925079345703, 0.019698552787303925, -0.018561167642474174, 0.03421005606651306, 0.01542163547128439, 0.14631541073322296, 0.10755842179059982, -0.0833742544054985, 1.0631566047668457, 0.0013901700731366873, -0.001749696908518672, 0.02949317917227745, 0.1640520542860031, -0.15234346687793732, 0.06520617008209229, 1.0585665702819824, -0.005572664551436901, 0.013482253067195415, -0.005285043269395828]} +{"t": 4.88, "q": [-0.12142821401357651, 0.008263042196631432, -0.0025578520726412535, 0.31438082456588745, -0.18909326195716858, -0.01492968201637268, -0.07476110756397247, -0.029341643676161766, 0.016525600105524063, 0.3396744728088379, -0.2809883952140808, 0.01970573700964451, -0.018561167642474174, 0.03439111262559891, 0.015427486971020699, 0.146183580160141, 0.10759437084197998, -0.0833742544054985, 1.063659906387329, 0.0013781859306618571, -0.0018335864879190922, 0.029469210654497147, 0.16389626264572144, -0.15237942337989807, 0.06508632749319077, 1.0586265325546265, -0.005572664551436901, 0.013470268808305264, -0.005285043269395828]} +{"t": 4.8968, "q": [-0.12141969054937363, 0.008237475529313087, -0.0025712440256029367, 0.31443196535110474, -0.18908905982971191, -0.014936761930584908, -0.07476110756397247, -0.02935868687927723, 0.016565775498747826, 0.3397085666656494, -0.28098416328430176, 0.019698474556207657, -0.018561167642474174, 0.03449687734246254, 0.015406187623739243, 0.1461596041917801, 0.10761833935976028, -0.08342219144105911, 1.0641512870788574, 0.0013901700731366873, -0.0019414444686844945, 0.029469210654497147, 0.16384832561016083, -0.15237942337989807, 0.06507433950901031, 1.058746337890625, -0.005620601586997509, 0.013470268808305264, -0.00529702752828598]} +{"t": 4.9136, "q": [-0.12144526094198227, 0.008211910724639893, -0.0025578520726412535, 0.31447458267211914, -0.18908895552158356, -0.01492256298661232, -0.07472702115774155, -0.029375731945037842, 0.016579166054725647, 0.33970004320144653, -0.28098005056381226, 0.01970565877854824, -0.018601343035697937, 0.034512028098106384, 0.01539631187915802, 0.14613564312458038, 0.10759437084197998, -0.08342219144105911, 1.064498782157898, 0.0013781859306618571, -0.002037318190559745, 0.029445242136716843, 0.16378840804100037, -0.15235546231269836, 0.06502640247344971, 1.0587823390960693, -0.005620601586997509, 0.013482253067195415, -0.00529702752828598]} +{"t": 4.9304, "q": [-0.12143673747777939, 0.008220432326197624, -0.002531068166717887, 0.3145257234573364, -0.18909326195716858, -0.01492968201637268, -0.07472702115774155, -0.029375731945037842, 0.016592558473348618, 0.3397597074508667, -0.2809842824935913, 0.019712921231985092, -0.018614735454320908, 0.034489359706640244, 0.015401558950543404, 0.1461596041917801, 0.10759437084197998, -0.08345814794301987, 1.064846396446228, 0.0014021543320268393, -0.0020852552261203527, 0.029445242136716843, 0.16374047100543976, -0.15233148634433746, 0.06501442193984985, 1.058866262435913, -0.005596633069217205, 0.013458284549415112, -0.005285043269395828]} +{"t": 4.9471, "q": [-0.12141969054937363, 0.008169298991560936, -0.0025176764465868473, 0.31456831097602844, -0.18908895552158356, -0.01492256298661232, -0.07472702115774155, -0.029452430084347725, 0.016592558473348618, 0.33979377150535583, -0.28098416328430176, 0.019698474556207657, -0.018601343035697937, 0.03449687734246254, 0.015406187623739243, 0.14617159962654114, 0.10759437084197998, -0.08344615995883942, 1.0649422407150269, 0.0014141385909169912, -0.002169144805520773, 0.02942127361893654, 0.1636805534362793, -0.15230752527713776, 0.06503839045763016, 1.0588902235031128, -0.005572664551436901, 0.013482253067195415, -0.00529702752828598]} +{"t": 4.9638, "q": [-0.12141969054937363, 0.008126689121127129, -0.002464108867570758, 0.31461092829704285, -0.18908905982971191, -0.014936761930584908, -0.07472702115774155, -0.029520608484745026, 0.01661934331059456, 0.3398193418979645, -0.28098416328430176, 0.019698474556207657, -0.018601343035697937, 0.034512028098106384, 0.01539631187915802, 0.14601579308509827, 0.10761833935976028, -0.08343417942523956, 1.065086007118225, 0.0014500912511721253, -0.002241050126031041, 0.02937333658337593, 0.16369253396987915, -0.15233148634433746, 0.06501442193984985, 1.058962106704712, -0.005620601586997509, 0.013458284549415112, -0.00529702752828598]} +{"t": 4.9806, "q": [-0.12143673747777939, 0.008049989119172096, -0.0024775005877017975, 0.3146194517612457, -0.1890888512134552, -0.014908363111317158, -0.0746588408946991, -0.02959730662405491, 0.01661934331059456, 0.33983638882637024, -0.2809842824935913, 0.019712921231985092, -0.018601343035697937, 0.03453480824828148, 0.015371930785477161, 0.14569222927093506, 0.10761833935976028, -0.08350608497858047, 1.06507408618927, 0.0014860439114272594, -0.002253034384921193, 0.02936135232448578, 0.16364459693431854, -0.1523195058107376, 0.06499045342206955, 1.0589860677719116, -0.005572664551436901, 0.013470268808305264, -0.00529702752828598]} +{"t": 4.9973, "q": [-0.12143673747777939, 0.008041467517614365, -0.0024775005877017975, 0.3146876394748688, -0.18909315764904022, -0.014915482141077518, -0.07465032488107681, -0.029631394892930984, 0.01663273386657238, 0.3398875296115875, -0.2809883952140808, 0.01970573700964451, -0.018587950617074966, 0.03454255312681198, 0.015338294208049774, 0.1452847570180893, 0.10770223289728165, -0.08350608497858047, 1.0651099681854248, 0.0014980281703174114, -0.002277002902701497, 0.029337383806705475, 0.16351276636123657, -0.15234346687793732, 0.06493053585290909, 1.0590460300445557, -0.005596633069217205, 0.013494237326085567, -0.005285043269395828]} +{"t": 5.014, "q": [-0.12143673747777939, 0.007964769378304482, -0.0024507169146090746, 0.3146876394748688, -0.18909326195716858, -0.01492968201637268, -0.07464180141687393, -0.02967400662600994, 0.01663273386657238, 0.3398960530757904, -0.28098416328430176, 0.019698474556207657, -0.018614735454320908, 0.034550074487924576, 0.015342922881245613, 0.14484134316444397, 0.10777413845062256, -0.08354203402996063, 1.065086007118225, 0.0015459650894626975, -0.0023009711876511574, 0.02931341528892517, 0.16341689229011536, -0.15236744284629822, 0.06491854786872864, 1.0591058731079102, -0.005572664551436901, 0.013482253067195415, -0.005309011787176132]} +{"t": 5.0307, "q": [-0.12141969054937363, 0.007964769378304482, -0.0024373249616473913, 0.31475579738616943, -0.1890888512134552, -0.014908363111317158, -0.07462475448846817, -0.029699571430683136, 0.016672909259796143, 0.33997276425361633, -0.28097179532051086, 0.019720029085874557, -0.018601343035697937, 0.03456510975956917, 0.015352179296314716, 0.14434999227523804, 0.10794191807508469, -0.08348211646080017, 1.065086007118225, 0.0015579492319375277, -0.0023728765081614256, 0.029265478253364563, 0.16341689229011536, -0.15239140391349792, 0.06484664231538773, 1.0591537952423096, -0.005560680292546749, 0.013482253067195415, -0.005320996046066284]} +{"t": 5.0475, "q": [-0.12143673747777939, 0.007947724312543869, -0.0024373249616473913, 0.3147813677787781, -0.18909315764904022, -0.014915482141077518, -0.07460770756006241, -0.029708094894886017, 0.016726477071642876, 0.3399897813796997, -0.2809842824935913, 0.019712921231985092, -0.018587950617074966, 0.034610502421855927, 0.015332117676734924, 0.1434871256351471, 0.10814564675092697, -0.08343417942523956, 1.06507408618927, 0.0015939020086079836, -0.0024447820615023375, 0.029205556958913803, 0.16341689229011536, -0.15240339934825897, 0.06484664231538773, 1.0592856407165527, -0.005572664551436901, 0.013482253067195415, -0.005309011787176132]} +{"t": 5.0642, "q": [-0.12142821401357651, 0.007922157645225525, -0.0024373249616473913, 0.31479841470718384, -0.1890888512134552, -0.014908363111317158, -0.07459919154644012, -0.029742183163762093, 0.016726477071642876, 0.34000682830810547, -0.28098005056381226, 0.01970565877854824, -0.018587950617074966, 0.03472418338060379, 0.015248481184244156, 0.14239656925201416, 0.1082894578576088, -0.08348211646080017, 1.0649781227111816, 0.0016298546688631177, -0.00256462418474257, 0.02913365140557289, 0.16339293122291565, -0.15242736041545868, 0.06482267379760742, 1.0595253705978394, -0.005572664551436901, 0.013470268808305264, -0.005332980304956436]} +{"t": 5.081, "q": [-0.12141969054937363, 0.007905114442110062, -0.0024105412885546684, 0.31478989124298096, -0.18909746408462524, -0.01492260117083788, -0.0745650976896286, -0.029759226366877556, 0.016726477071642876, 0.3400494456291199, -0.28098005056381226, 0.01970565877854824, -0.018547775223851204, 0.03486047685146332, 0.015169164165854454, 0.14047908782958984, 0.10837335139513016, -0.08350608497858047, 1.065002202987671, 0.0016418388113379478, -0.0026964505668729544, 0.02906174585223198, 0.1633809357881546, -0.15245133638381958, 0.06473878771066666, 1.0596811771392822, -0.005572664551436901, 0.013470268808305264, -0.005332980304956436]} +{"t": 5.0977, "q": [-0.12143673747777939, 0.007905114442110062, -0.0024373249616473913, 0.3148069381713867, -0.18909315764904022, -0.014915482141077518, -0.07453101128339767, -0.029759226366877556, 0.016726477071642876, 0.3401346802711487, -0.28098005056381226, 0.01970565877854824, -0.018534382805228233, 0.03493605554103851, 0.015148483216762543, 0.1383458971977234, 0.10840930044651031, -0.08348211646080017, 1.0649781227111816, 0.0016418388113379478, -0.0028043086640536785, 0.028989840298891068, 0.1633569747209549, -0.15248727798461914, 0.0647267997264862, 1.0598009824752808, -0.005560680292546749, 0.013482253067195415, -0.005344964563846588]} +{"t": 5.1144, "q": [-0.12142821401357651, 0.007913636043667793, -0.0024105412885546684, 0.3148239850997925, -0.1890973597764969, -0.014908401295542717, -0.07451396435499191, -0.029767749831080437, 0.016713086515665054, 0.3401602506637573, -0.28098416328430176, 0.019698474556207657, -0.018547775223851204, 0.035034239292144775, 0.015132119879126549, 0.13570936024188995, 0.10838533192873001, -0.08353005349636078, 1.065014123916626, 0.0016658073291182518, -0.002972087822854519, 0.028869997709989548, 0.16332101821899414, -0.1525472104549408, 0.0647267997264862, 1.0598849058151245, -0.005572664551436901, 0.01350622158497572, -0.005344964563846588]} +{"t": 5.1311, "q": [-0.12143673747777939, 0.007905114442110062, -0.0024373249616473913, 0.31478989124298096, -0.18909315764904022, -0.014915482141077518, -0.07451396435499191, -0.029767749831080437, 0.016739869490265846, 0.34019431471824646, -0.28098416328430176, 0.019698474556207657, -0.018534382805228233, 0.03510207310318947, 0.0151450764387846, 0.13310879468917847, 0.10822954028844833, -0.08353005349636078, 1.0650261640548706, 0.0016658073291182518, -0.0032477250788360834, 0.028810078278183937, 0.1633090376853943, -0.15258315205574036, 0.06469085067510605, 1.0600167512893677, -0.005572664551436901, 0.013470268808305264, -0.005368933081626892]} +{"t": 5.1479, "q": [-0.12144526094198227, 0.007905114442110062, -0.002423933008685708, 0.31479841470718384, -0.18909305334091187, -0.014901282265782356, -0.07447987794876099, -0.029742183163762093, 0.016726477071642876, 0.34024545550346375, -0.2809801399707794, 0.019720107316970825, -0.01862812601029873, 0.03517742455005646, 0.015162661671638489, 0.13064004480838776, 0.1079898551106453, -0.08354203402996063, 1.0649422407150269, 0.0016658073291182518, -0.0038109836168587208, 0.02870221994817257, 0.16336895525455475, -0.15264306962490082, 0.06466688215732574, 1.0602684020996094, -0.005572664551436901, 0.013470268808305264, -0.005368933081626892]} +{"t": 5.1646, "q": [-0.12145378440618515, 0.00788806937634945, -0.0024373249616473913, 0.31479841470718384, -0.18909326195716858, -0.01492968201637268, -0.0744713544845581, -0.029750704765319824, 0.016726477071642876, 0.34037327766418457, -0.28098005056381226, 0.01970565877854824, -0.018561167642474174, 0.03521529585123062, 0.015137949958443642, 0.1287585198879242, 0.10796588659286499, -0.08351806551218033, 1.064211130142212, 0.0016658073291182518, -0.004877579864114523, 0.0285943616181612, 0.1633569747209549, -0.15276291966438293, 0.06463092565536499, 1.060460090637207, -0.005596633069217205, 0.013494237326085567, -0.00535694882273674]} +{"t": 5.1813, "q": [-0.12144526094198227, 0.007905114442110062, -0.0024507169146090746, 0.3148154616355896, -0.18909315764904022, -0.014915482141077518, -0.07441170513629913, -0.029742183163762093, 0.016726477071642876, 0.3404073715209961, -0.2809883952140808, 0.01970573700964451, -0.01848081685602665, 0.035328857600688934, 0.015073358081281185, 0.1275840550661087, 0.10792993009090424, -0.08353005349636078, 1.0637198686599731, 0.0016658073291182518, -0.006459497381001711, 0.028486503288149834, 0.16332101821899414, -0.152870774269104, 0.06461894512176514, 1.060520052909851, -0.005620601586997509, 0.013494237326085567, -0.005368933081626892]} +{"t": 5.198, "q": [-0.12144526094198227, 0.007939202710986137, -0.0024775005877017975, 0.3148069381713867, -0.18909305334091187, -0.014901282265782356, -0.07440318167209625, -0.02972513809800148, 0.016699694097042084, 0.340484082698822, -0.28098005056381226, 0.01970565877854824, -0.01848081685602665, 0.035450052469968796, 0.01499425619840622, 0.1270327866077423, 0.10792993009090424, -0.0836259201169014, 1.0636719465255737, 0.0016538230702280998, -0.008760469034314156, 0.028378644958138466, 0.16327308118343353, -0.15302656590938568, 0.06459497660398483, 1.0605560541152954, -0.005572664551436901, 0.013482253067195415, -0.005380917340517044]} +{"t": 5.2148, "q": [-0.12144526094198227, 0.007922157645225525, -0.0024908925406634808, 0.31483250856399536, -0.18909315764904022, -0.014915482141077518, -0.07436908781528473, -0.02971661649644375, 0.016713086515665054, 0.3405011296272278, -0.28098005056381226, 0.01970565877854824, -0.018400464206933975, 0.03568423539400101, 0.014946226961910725, 0.1263856440782547, 0.1079898551106453, -0.0836259201169014, 1.0623056888580322, 0.0016658073291182518, -0.011636682786047459, 0.028270786628127098, 0.16332101821899414, -0.15323030948638916, 0.06454703956842422, 1.06061589717865, -0.005632585845887661, 0.013482253067195415, -0.005392901133745909]} +{"t": 5.2317, "q": [-0.12143673747777939, 0.007922157645225525, -0.0024908925406634808, 0.31487512588500977, -0.18908895552158356, -0.01492256298661232, -0.07434352487325668, -0.02973366156220436, 0.016726477071642876, 0.3405522406101227, -0.28098416328430176, 0.019698474556207657, -0.01833350583910942, 0.03595589101314545, 0.014940443448722363, 0.1245640367269516, 0.10808572918176651, -0.08370981365442276, 1.0618982315063477, 0.001689775730483234, -0.01543568167835474, 0.02811499312520027, 0.16329705715179443, -0.15345799922943115, 0.06454703956842422, 1.0609514713287354, -0.005620601586997509, 0.013470268808305264, -0.005380917340517044]} +{"t": 5.2485, "q": [-0.12141969054937363, 0.007913636043667793, -0.0024775005877017975, 0.3148666024208069, -0.1890888512134552, -0.014908363111317158, -0.0743350014090538, -0.029759226366877556, 0.016726477071642876, 0.34061190485954285, -0.28098005056381226, 0.01970565877854824, -0.01832011342048645, 0.0363708920776844, 0.014936390332877636, 0.12251473218202591, 0.10815763473510742, -0.08373378217220306, 1.0618503093719482, 0.0018096179701387882, -0.020253339782357216, 0.027971182018518448, 0.16320118308067322, -0.15366174280643463, 0.06454703956842422, 1.0613230466842651, -0.005608617328107357, 0.013470268808305264, -0.005380917340517044]} +{"t": 5.2653, "q": [-0.12143673747777939, 0.00789659097790718, -0.0024908925406634808, 0.31487512588500977, -0.18909315764904022, -0.014915482141077518, -0.07431796193122864, -0.029767749831080437, 0.016739869490265846, 0.3406204283237457, -0.2809801399707794, 0.019720107316970825, -0.01833350583910942, 0.036982256919145584, 0.014899459667503834, 0.12022574990987778, 0.10822954028844833, -0.08376973122358322, 1.0613110065460205, 0.0019054918084293604, -0.024567661806941032, 0.02780340239405632, 0.16296149790287018, -0.15391340851783752, 0.06451108306646347, 1.061946153640747, -0.005596633069217205, 0.013458284549415112, -0.005368933081626892]} +{"t": 5.2822, "q": [-0.12141969054937363, 0.007845459505915642, -0.0024507169146090746, 0.3148666024208069, -0.1890888512134552, -0.014908363111317158, -0.07431796193122864, -0.029810359701514244, 0.016753261908888817, 0.34061190485954285, -0.28097593784332275, 0.019712844863533974, -0.018387073650956154, 0.037540316581726074, 0.014944656752049923, 0.1179727166891098, 0.10830144584178925, -0.08380568772554398, 1.0608795881271362, 0.002037318190559745, -0.027815386652946472, 0.027575701475143433, 0.16274577379226685, -0.15420103073120117, 0.06449910253286362, 1.0627251863479614, -0.005620601586997509, 0.013470268808305264, -0.005404885392636061]} +{"t": 5.299, "q": [-0.12141969054937363, 0.0078028482384979725, -0.0024507169146090746, 0.3149092197418213, -0.18908464908599854, -0.01491544395685196, -0.07427534461021423, -0.02985296957194805, 0.01678004488348961, 0.34064599871635437, -0.28097593784332275, 0.019712844863533974, -0.018427249044179916, 0.038210973143577576, 0.015048463828861713, 0.11524031311273575, 0.10843326896429062, -0.08379369974136353, 1.0606039762496948, 0.002229065867140889, -0.03177018091082573, 0.027288081124424934, 0.16260196268558502, -0.15452459454536438, 0.06439124047756195, 1.0633363723754883, -0.005596633069217205, 0.01344630029052496, -0.005392901133745909]} +{"t": 5.3157, "q": [-0.12140265107154846, 0.007777282502502203, -0.0024507169146090746, 0.31483250856399536, -0.1890973597764969, -0.014908401295542717, -0.07428386807441711, -0.029861493036150932, 0.01680682972073555, 0.3406374752521515, -0.28097179532051086, 0.019720029085874557, -0.01849420741200447, 0.038955990225076675, 0.015313252806663513, 0.11245997250080109, 0.10846922546625137, -0.08402140438556671, 1.0605919361114502, 0.0024927188642323017, -0.03763046860694885, 0.027060380205512047, 0.1624102145433426, -0.15482421219348907, 0.06434330344200134, 1.063887596130371, -0.005620601586997509, 0.01342233270406723, -0.005404885392636061]} +{"t": 5.3325, "q": [-0.12141116708517075, 0.0077602374367415905, -0.0024507169146090746, 0.3148921728134155, -0.1890888512134552, -0.014908363111317158, -0.07430091500282288, -0.029895581305027008, 0.01679343730211258, 0.3406289517879486, -0.2809677720069885, 0.019741680473089218, -0.01850759983062744, 0.03963339701294899, 0.015536568127572536, 0.10991931706666946, 0.10830144584178925, -0.08420116454362869, 1.0601125955581665, 0.003103914437815547, -0.04537227749824524, 0.026760775595903397, 0.16200275719165802, -0.1551957130432129, 0.06428338587284088, 1.0645467042922974, -0.005620601586997509, 0.013410348445177078, -0.005428853910416365]} +{"t": 5.3493, "q": [-0.12141969054937363, 0.007734671700745821, -0.0024373249616473913, 0.31491774320602417, -0.1890888512134552, -0.014908363111317158, -0.07430943846702576, -0.02991262450814247, 0.01682022027671337, 0.34064599871635437, -0.2809719145298004, 0.019734477624297142, -0.01850759983062744, 0.04046258702874184, 0.015622341074049473, 0.10779810696840286, 0.10826548933982849, -0.08451275527477264, 1.0589021444320679, 0.004062652587890625, -0.05059739947319031, 0.026628948748111725, 0.16159529983997345, -0.15560318529605865, 0.06427139788866043, 1.0654336214065552, -0.005620601586997509, 0.013410348445177078, -0.005440838169306517]} +{"t": 5.366, "q": [-0.12141116708517075, 0.007734671700745821, -0.002423933008685708, 0.3149006962776184, -0.1890888512134552, -0.014908363111317158, -0.07430091500282288, -0.029921147972345352, 0.01680682972073555, 0.34065452218055725, -0.28098025918006897, 0.01973455399274826, -0.018547775223851204, 0.041284553706645966, 0.01562630385160446, 0.10588063299655914, 0.10836136341094971, -0.08456069231033325, 1.0571285486221313, 0.005093295592814684, -0.05553489923477173, 0.026497121900320053, 0.16104401648044586, -0.1561424732208252, 0.06427139788866043, 1.0666199922561646, -0.005572664551436901, 0.013386379927396774, -0.005464806687086821]} +{"t": 5.3828, "q": [-0.12140265107154846, 0.007717627566307783, -0.002423933008685708, 0.3148921728134155, -0.18908895552158356, -0.01492256298661232, -0.07430091500282288, -0.029921147972345352, 0.01680682972073555, 0.34066304564476013, -0.28096768260002136, 0.01972721517086029, -0.018561167642474174, 0.04229465872049332, 0.01566806621849537, 0.1041429191827774, 0.1086609736084938, -0.084596648812294, 1.0550432205200195, 0.006111954804509878, -0.06173074245452881, 0.026377279311418533, 0.16048076748847961, -0.15672969818115234, 0.06419949233531952, 1.0679742097854614, -0.005572664551436901, 0.013350427150726318, -0.005464806687086821]} +{"t": 5.3997, "q": [-0.12140265107154846, 0.007726149167865515, -0.0024105412885546684, 0.3148921728134155, -0.1890888512134552, -0.014908363111317158, -0.07430943846702576, -0.029938191175460815, 0.01680682972073555, 0.3406289517879486, -0.2809634804725647, 0.01971995271742344, -0.018534382805228233, 0.04334187135100365, 0.015789691358804703, 0.10244115442037582, 0.10904446244239807, -0.08469252288341522, 1.05276620388031, 0.00711862975731492, -0.06846588104963303, 0.026209499686956406, 0.160061314702034, -0.1573408991098404, 0.06415155529975891, 1.0693044662475586, -0.005572664551436901, 0.013338442891836166, -0.005452822428196669]} +{"t": 5.4164, "q": [-0.12137708067893982, 0.007709105033427477, -0.0024373249616473913, 0.31492626667022705, -0.1890888512134552, -0.014908363111317158, -0.07430091500282288, -0.029955236241221428, 0.01680682972073555, 0.3406374752521515, -0.28096768260002136, 0.01972721517086029, -0.018547775223851204, 0.04446524381637573, 0.015822559595108032, 0.10021208971738815, 0.10924819856882095, -0.08476442843675613, 1.0503095388412476, 0.008964200504124165, -0.0746137872338295, 0.025957832112908363, 0.1595340073108673, -0.15813185274600983, 0.06413957476615906, 1.0711740255355835, -0.005572664551436901, 0.013338442891836166, -0.005464806687086821]} +{"t": 5.4332, "q": [-0.1213856041431427, 0.007657972630113363, -0.002423933008685708, 0.3149092197418213, -0.18908895552158356, -0.01492256298661232, -0.07431796193122864, -0.029989324510097504, 0.01680682972073555, 0.34060338139533997, -0.2809719145298004, 0.019734477624297142, -0.01846742443740368, 0.0456569641828537, 0.015742581337690353, 0.09822271019220352, 0.10940399020910263, -0.08486030250787735, 1.0477328300476074, 0.01059405505657196, -0.08219980448484421, 0.025730131193995476, 0.1592104285955429, -0.15897074341773987, 0.064079649746418, 1.0726600885391235, -0.005560680292546749, 0.013326458632946014, -0.005476790945976973]} +{"t": 5.45, "q": [-0.12140265107154846, 0.0076238843612372875, -0.0024105412885546684, 0.3148921728134155, -0.1890888512134552, -0.014908363111317158, -0.07430091500282288, -0.030048979446291924, 0.01678004488348961, 0.34056928753852844, -0.28096768260002136, 0.01972721517086029, -0.01829332858324051, 0.046879447996616364, 0.015575174242258072, 0.09691642969846725, 0.10972756892442703, -0.08489625155925751, 1.0441735982894897, 0.011456918902695179, -0.09027716517448425, 0.0255743358284235, 0.15869511663913727, -0.1597377359867096, 0.06400774419307709, 1.07443368434906, -0.005560680292546749, 0.013314474374055862, -0.005476790945976973]} +{"t": 5.4668, "q": [-0.1213856041431427, 0.007572751026600599, -0.0024507169146090746, 0.3148921728134155, -0.18908044695854187, -0.01492252480238676, -0.07427534461021423, -0.030100110918283463, 0.016766652464866638, 0.3405948579311371, -0.28096356987953186, 0.019734418019652367, -0.018025491386651993, 0.04818478226661682, 0.01542852632701397, 0.09486712515354156, 0.11026685684919357, -0.08502807468175888, 1.0410337448120117, 0.011864382773637772, -0.09702428430318832, 0.02552640065550804, 0.15770041942596436, -0.160660520195961, 0.06393583863973618, 1.0769025087356567, -0.0055367122404277325, 0.013326458632946014, -0.005476790945976973]} +{"t": 5.4837, "q": [-0.12139412760734558, 0.007521618623286486, -0.0024373249616473913, 0.31491774320602417, -0.1890888512134552, -0.014908363111317158, -0.07428386807441711, -0.030168289318680763, 0.016726477071642876, 0.34061190485954285, -0.28096768260002136, 0.01972721517086029, -0.01778443716466427, 0.04949607700109482, 0.015466868877410889, 0.09223059564828873, 0.11065035313367844, -0.08500410616397858, 1.0399311780929565, 0.012140019796788692, -0.10332798957824707, 0.02545449510216713, 0.15654993057250977, -0.16139155626296997, 0.06383996456861496, 1.0789518356323242, -0.005572664551436901, 0.01336241140961647, -0.0054887752048671246]} +{"t": 5.5003, "q": [-0.12140265107154846, 0.0074960519559681416, -0.002464108867570758, 0.3148921728134155, -0.1890803426504135, -0.014908324927091599, -0.07431796193122864, -0.030193854123353958, 0.016713086515665054, 0.3405948579311371, -0.28096768260002136, 0.01972721517086029, -0.01766391098499298, 0.05073991045355797, 0.015415471978485584, 0.08997756242752075, 0.11086606979370117, -0.08494418859481812, 1.0386728048324585, 0.0121879568323493, -0.11217235028743744, 0.025238778442144394, 0.15548333525657654, -0.1621585488319397, 0.06367219239473343, 1.0805696249008179, -0.005596633069217205, 0.013374395668506622, -0.0054887752048671246]} +{"t": 5.5171, "q": [-0.12140265107154846, 0.00748753035441041, -0.0024507169146090746, 0.3148921728134155, -0.18907591700553894, -0.014887006022036076, -0.0743350014090538, -0.030193854123353958, 0.016713086515665054, 0.34056928753852844, -0.2809719145298004, 0.019734477624297142, -0.017610343173146248, 0.05173591151833534, 0.015260890126228333, 0.08843159675598145, 0.11098591238260269, -0.08478839695453644, 1.0354371070861816, 0.012163988314568996, -0.11998606473207474, 0.024831315502524376, 0.15454857051372528, -0.1628296673297882, 0.06356433033943176, 1.0817919969558716, -0.005620601586997509, 0.013350427150726318, -0.0054887752048671246]} +{"t": 5.5339, "q": [-0.1213856041431427, 0.007504574488848448, -0.0024775005877017975, 0.3149092197418213, -0.18908454477787018, -0.014901244081556797, -0.07430943846702576, -0.03020237758755684, 0.016699694097042084, 0.34056076407432556, -0.2809677720069885, 0.019741680473089218, -0.017570167779922485, 0.052590176463127136, 0.014962050132453442, 0.0875687301158905, 0.11110575497150421, -0.08466855436563492, 1.0310388803482056, 0.012068115174770355, -0.12899820506572723, 0.024567661806941032, 0.15397332608699799, -0.1634288728237152, 0.06339655071496964, 1.082858681678772, -0.005596633069217205, 0.013386379927396774, -0.0054887752048671246]} +{"t": 5.5507, "q": [-0.12137708067893982, 0.007504574488848448, -0.0025176764465868473, 0.31491774320602417, -0.1890801340341568, -0.014879926107823849, -0.07431796193122864, -0.030185332521796227, 0.01663273386657238, 0.3405778110027313, -0.28096768260002136, 0.01972721517086029, -0.017436247318983078, 0.053339794278144836, 0.014560856856405735, 0.08663396537303925, 0.11136940866708755, -0.08456069231033325, 1.026472806930542, 0.012044146656990051, -0.1365482658147812, 0.024327976629137993, 0.15350593626499176, -0.1640520542860031, 0.06334861367940903, 1.0839132070541382, -0.005620601586997509, 0.01336241140961647, -0.0055007594637572765]} +{"t": 5.5675, "q": [-0.1213856041431427, 0.007504574488848448, -0.002531068166717887, 0.31493479013442993, -0.1890803426504135, -0.014908324927091599, -0.07431796193122864, -0.030176810920238495, 0.016605950891971588, 0.3404926061630249, -0.28096768260002136, 0.01972721517086029, -0.017262153327465057, 0.05416537821292877, 0.014090214855968952, 0.08559133857488632, 0.11172892898321152, -0.08462061733007431, 1.0208163261413574, 0.012008193880319595, -0.1429598182439804, 0.024208135902881622, 0.15293069183826447, -0.16468721628189087, 0.06326472759246826, 1.0851476192474365, -0.005596633069217205, 0.013350427150726318, -0.0054887752048671246]} +{"t": 5.5843, "q": [-0.12137708067893982, 0.007530141156166792, -0.002504284493625164, 0.31491774320602417, -0.18907591700553894, -0.014887006022036076, -0.0743350014090538, -0.030176810920238495, 0.01661934331059456, 0.34039032459259033, -0.28096768260002136, 0.01972721517086029, -0.01714162714779377, 0.054984200745821, 0.01355694979429245, 0.0839734673500061, 0.1119326651096344, -0.08465656638145447, 1.0176165103912354, 0.012008193880319595, -0.15205584466457367, 0.02401638776063919, 0.15240339934825897, -0.16533437371253967, 0.06301305443048477, 1.0861783027648926, -0.005608617328107357, 0.013374395668506622, -0.005476790945976973]} +{"t": 5.6011, "q": [-0.12136855721473694, 0.00748753035441041, -0.002504284493625164, 0.31493479013442993, -0.18907591700553894, -0.014887006022036076, -0.07430943846702576, -0.030219420790672302, 0.01663273386657238, 0.3403988480567932, -0.28097614645957947, 0.019741740077733994, -0.0171282347291708, 0.05568933114409447, 0.013088936917483807, 0.08228369057178497, 0.11218433082103729, -0.08472847193479538, 1.0132182836532593, 0.01197224110364914, -0.16116386651992798, 0.023740749806165695, 0.151900053024292, -0.16608937084674835, 0.06297710537910461, 1.0871130228042603, -0.005596633069217205, 0.013350427150726318, -0.005464806687086821]} +{"t": 5.6178, "q": [-0.12136855721473694, 0.007436397019773722, -0.0024908925406634808, 0.31491774320602417, -0.18907591700553894, -0.014887006022036076, -0.0743350014090538, -0.030279075726866722, 0.01663273386657238, 0.3403647541999817, -0.2809720039367676, 0.01974894292652607, -0.0171282347291708, 0.05634905397891998, 0.012641550973057747, 0.08070177584886551, 0.11231616139411926, -0.08475244045257568, 1.0079692602157593, 0.011948272585868835, -0.17051155865192413, 0.02352503500878811, 0.1513487845659256, -0.1666526347398758, 0.06286924332380295, 1.0881556272506714, -0.005632585845887661, 0.013314474374055862, -0.005440838169306517]} +{"t": 5.6345, "q": [-0.12136855721473694, 0.007393787149339914, -0.0024775005877017975, 0.3149092197418213, -0.18907591700553894, -0.014887006022036076, -0.07434352487325668, -0.030313163995742798, 0.01663273386657238, 0.34033921360969543, -0.2809720039367676, 0.01974894292652607, -0.017168410122394562, 0.05684928223490715, 0.01233744341880083, 0.0797070786356926, 0.11245997250080109, -0.08481236547231674, 1.0013419389724731, 0.011924304068088531, -0.17910423874855042, 0.02340519241988659, 0.15060575306415558, -0.1670720875263214, 0.06277336925268173, 1.089198350906372, -0.005572664551436901, 0.013374395668506622, -0.005452822428196669]} +{"t": 5.6514, "q": [-0.12136855721473694, 0.007393787149339914, -0.0024775005877017975, 0.3149006962776184, -0.18907171487808228, -0.014894086867570877, -0.07434352487325668, -0.030313163995742798, 0.01665951870381832, 0.3403136432170868, -0.28097614645957947, 0.019741740077733994, -0.017181802541017532, 0.05725084990262985, 0.012108373455703259, 0.0782569944858551, 0.1125558465719223, -0.0848483145236969, 0.9953618049621582, 0.011900335550308228, -0.1873973309993744, 0.023309318348765373, 0.1495511531829834, -0.16799487173557281, 0.06271345168352127, 1.090564489364624, -0.005596633069217205, 0.013398364186286926, -0.005440838169306517]} +{"t": 5.6681, "q": [-0.12137708067893982, 0.0073767430149018764, -0.0024775005877017975, 0.31487512588500977, -0.18907591700553894, -0.014887006022036076, -0.0743350014090538, -0.030355775728821754, 0.016686301678419113, 0.34033069014549255, -0.28096768260002136, 0.01972721517086029, -0.017342504113912582, 0.05744034796953201, 0.011991824954748154, 0.07716642320156097, 0.11271163821220398, -0.0848243460059166, 0.9897651672363281, 0.01191231980919838, -0.1986265480518341, 0.0231774915009737, 0.14836470782756805, -0.16892963647842407, 0.06264154613018036, 1.0922303199768066, -0.005572664551436901, 0.013374395668506622, -0.005440838169306517]} +{"t": 5.6849, "q": [-0.12137708067893982, 0.00736822048202157, -0.0024507169146090746, 0.31488364934921265, -0.18907171487808228, -0.014894086867570877, -0.0743350014090538, -0.030347252264618874, 0.016672909259796143, 0.3403136432170868, -0.2809719145298004, 0.019734477624297142, -0.017355896532535553, 0.05755409970879555, 0.011916148476302624, 0.0760878473520279, 0.11305917799472809, -0.08486030250787735, 0.9822510480880737, 0.011924304068088531, -0.20732709765434265, 0.023069633170962334, 0.14719025790691376, -0.1699482947587967, 0.06250971555709839, 1.0934886932373047, -0.005560680292546749, 0.013386379927396774, -0.005428853910416365]} +{"t": 5.7017, "q": [-0.12137708067893982, 0.0073341322131454945, -0.0024775005877017975, 0.31492626667022705, -0.18906310200691223, -0.014879848808050156, -0.07430943846702576, -0.030364297330379486, 0.016672909259796143, 0.34033921360969543, -0.28097614645957947, 0.019741740077733994, -0.017248760908842087, 0.05762993544340134, 0.011865696869790554, 0.07419434189796448, 0.11344267427921295, -0.0848483145236969, 0.975803554058075, 0.011936288326978683, -0.2169264554977417, 0.022973759099841118, 0.14633937180042267, -0.1709190160036087, 0.06250971555709839, 1.0947589874267578, -0.005608617328107357, 0.013398364186286926, -0.005392901133745909]} +{"t": 5.7184, "q": [-0.1213856041431427, 0.007274477276951075, -0.0024775005877017975, 0.31492626667022705, -0.18907591700553894, -0.014887006022036076, -0.07428386807441711, -0.03045804053544998, 0.01664612628519535, 0.3403562605381012, -0.2809719145298004, 0.019734477624297142, -0.017047883942723274, 0.05762244015932083, 0.011861161328852177, 0.07197725772857666, 0.1140299066901207, -0.0848722830414772, 0.9687208533287048, 0.011888351291418076, -0.22625018656253815, 0.022793997079133987, 0.1452368199825287, -0.17137442529201508, 0.06247376650571823, 1.0964487791061401, -0.005572664551436901, 0.013386379927396774, -0.005428853910416365]} +{"t": 5.7352, "q": [-0.12140265107154846, 0.007240389008074999, -0.0024775005877017975, 0.31487512588500977, -0.1890673041343689, -0.014872768893837929, -0.07428386807441711, -0.03050917387008667, 0.01664612628519535, 0.3404073715209961, -0.28097614645957947, 0.019741740077733994, -0.017007706686854362, 0.05762993544340134, 0.011865696869790554, 0.0700717642903328, 0.11399395018815994, -0.08502807468175888, 0.9612547159194946, 0.011924304068088531, -0.23569375276565552, 0.02263820171356201, 0.14403840899467468, -0.17150624096393585, 0.06247376650571823, 1.0985220670700073, -0.005620601586997509, 0.013374395668506622, -0.005404885392636061]} +{"t": 5.7519, "q": [-0.12140265107154846, 0.007206300739198923, -0.0024507169146090746, 0.3148921728134155, -0.18907591700553894, -0.014887006022036076, -0.07427534461021423, -0.030551783740520477, 0.016672909259796143, 0.3404499888420105, -0.28096768260002136, 0.01972721517086029, -0.017074666917324066, 0.057599958032369614, 0.01184755377471447, 0.06838198751211166, 0.1134546622633934, -0.0851718857884407, 0.9532492160797119, 0.011936288326978683, -0.24634774029254913, 0.022230736911296844, 0.14301975071430206, -0.17159013450145721, 0.06246178224682808, 1.1005473136901855, -0.005656554363667965, 0.013386379927396774, -0.005404885392636061]} +{"t": 5.7687, "q": [-0.12140265107154846, 0.007146645803004503, -0.002464108867570758, 0.31493479013442993, -0.18907591700553894, -0.014887006022036076, -0.07420717179775238, -0.03062848374247551, 0.016713086515665054, 0.34046703577041626, -0.2809596359729767, 0.01977049745619297, -0.017101449891924858, 0.057599958032369614, 0.01184755377471447, 0.06644054502248764, 0.11278354376554489, -0.08536363393068314, 0.9454475045204163, 0.011948272585868835, -0.25563549995422363, 0.021883195266127586, 0.14257632195949554, -0.1715661734342575, 0.06246178224682808, 1.1018056869506836, -0.005620601586997509, 0.013374395668506622, -0.005368933081626892]} +{"t": 5.7854, "q": [-0.12139412760734558, 0.007044380065053701, -0.002464108867570758, 0.3149006962776184, -0.1890801340341568, -0.014879926107823849, -0.07417308539152145, -0.030781880021095276, 0.016672909259796143, 0.34047555923461914, -0.2809555232524872, 0.019777681678533554, -0.01711484231054783, 0.05759255588054657, 0.011833438649773598, 0.06451108306646347, 0.11214838176965714, -0.08541157096624374, 0.9384487271308899, 0.011936288326978683, -0.26536670327186584, 0.021391842514276505, 0.1422886997461319, -0.17159013450145721, 0.062437813729047775, 1.1028003692626953, -0.005596633069217205, 0.01336241140961647, -0.005380917340517044]} +{"t": 5.8021, "q": [-0.12140265107154846, 0.0069847251288592815, -0.002423933008685708, 0.3148666024208069, -0.18907591700553894, -0.014887006022036076, -0.07418160140514374, -0.03087562508881092, 0.016713086515665054, 0.3404926061630249, -0.28093060851097107, 0.019791916012763977, -0.01711484231054783, 0.057600051164627075, 0.011837974190711975, 0.06227003410458565, 0.11141734570264816, -0.08541157096624374, 0.9305031895637512, 0.011936288326978683, -0.27484622597694397, 0.020852552726864815, 0.14202505350112915, -0.17157815396785736, 0.06238987669348717, 1.1038908958435059, -0.005584648810327053, 0.013338442891836166, -0.005368933081626892]} +{"t": 5.819, "q": [-0.12141969054937363, 0.006908026058226824, -0.0024373249616473913, 0.3148495554924011, -0.18907161056995392, -0.01487988792359829, -0.07415603846311569, -0.030977889895439148, 0.016753261908888817, 0.3404926061630249, -0.2809225618839264, 0.019835179671645164, -0.017101449891924858, 0.05761512368917465, 0.011837463825941086, 0.06006493791937828, 0.11049455404281616, -0.08538760244846344, 0.9231808185577393, 0.01191231980919838, -0.2853204309940338, 0.02027730830013752, 0.1417134702205658, -0.1715661734342575, 0.06242582947015762, 1.1048496961593628, -0.005608617328107357, 0.013338442891836166, -0.005368933081626892]} +{"t": 5.8357, "q": [-0.12142821401357651, 0.00679723871871829, -0.002423933008685708, 0.314858078956604, -0.1890673041343689, -0.014872768893837929, -0.07409638166427612, -0.03105458803474903, 0.016739869490265846, 0.3405011296272278, -0.28087303042411804, 0.019906971603631973, -0.017007706686854362, 0.057607632130384445, 0.011832929216325283, 0.057512298226356506, 0.10947589576244354, -0.08532768487930298, 0.9147679209709167, 0.011936288326978683, -0.29422470927238464, 0.01985786110162735, 0.14142584800720215, -0.1715661734342575, 0.06236590817570686, 1.106024146080017, -0.005596633069217205, 0.013314474374055862, -0.005368933081626892]} +{"t": 5.8525, "q": [-0.12141969054937363, 0.006729062180966139, -0.0024373249616473913, 0.3148495554924011, -0.18906718492507935, -0.014858551323413849, -0.07400263845920563, -0.03117389790713787, 0.016726477071642876, 0.3405267000198364, -0.2808193564414978, 0.01998596452176571, -0.01680682972073555, 0.057615216821432114, 0.011827884241938591, 0.05462409928441048, 0.10854113101959229, -0.08531569689512253, 0.9070261120796204, 0.01191231980919838, -0.30280542373657227, 0.0195582564920187, 0.14100639522075653, -0.17160211503505707, 0.06236590817570686, 1.1071746349334717, -0.005584648810327053, 0.013314474374055862, -0.005368933081626892]} +{"t": 5.8694, "q": [-0.12143673747777939, 0.006609752308577299, -0.0024373249616473913, 0.3149006962776184, -0.18906718492507935, -0.014858551323413849, -0.0739259421825409, -0.03130172938108444, 0.016699694097042084, 0.3405522406101227, -0.28077825903892517, 0.02007227949798107, -0.016672909259796143, 0.05763029307126999, 0.011827373877167702, 0.05175986886024475, 0.10778611898422241, -0.08532768487930298, 0.9004707336425781, 0.011900335550308228, -0.31250065565109253, 0.019246665760874748, 0.1404910683631897, -0.17163807153701782, 0.06238987669348717, 1.1082412004470825, -0.005608617328107357, 0.013314474374055862, -0.005380917340517044]} +{"t": 5.8862, "q": [-0.12142821401357651, 0.006533053237944841, -0.0024105412885546684, 0.31487512588500977, -0.18906718492507935, -0.014858551323413849, -0.0738748088479042, -0.031386952847242355, 0.016726477071642876, 0.34060338139533997, -0.28069984912872314, 0.02019440196454525, -0.016726477071642876, 0.057630471885204315, 0.011808212846517563, 0.04957874119281769, 0.1071629449725151, -0.08535165339708328, 0.8920937180519104, 0.011888351291418076, -0.322291761636734, 0.018983012065291405, 0.13952034711837769, -0.17170998454093933, 0.06238987669348717, 1.1095595359802246, -0.005572664551436901, 0.013314474374055862, -0.005368933081626892]} +{"t": 5.9029, "q": [-0.12143673747777939, 0.006507486570626497, -0.002316797850653529, 0.3148495554924011, -0.18906277418136597, -0.014837232418358326, -0.0738748088479042, -0.0314125157892704, 0.01680682972073555, 0.34061190485954285, -0.2805968225002289, 0.020374080166220665, -0.016873788088560104, 0.057607900351285934, 0.0118041867390275, 0.04797285422682762, 0.10644388943910599, -0.08537562191486359, 0.8827460408210754, 0.011900335550308228, -0.33324533700942993, 0.01871936023235321, 0.13847772777080536, -0.17170998454093933, 0.062377892434597015, 1.1111294031143188, -0.005632585845887661, 0.013326458632946014, -0.005368933081626892]} +{"t": 5.9198, "q": [-0.12141969054937363, 0.006456354167312384, -0.0022900141775608063, 0.3148921728134155, -0.1890585720539093, -0.014844313263893127, -0.07372993230819702, -0.03147217258810997, 0.016873788088560104, 0.34060338139533997, -0.28050217032432556, 0.020553836598992348, -0.016833612695336342, 0.05762298032641411, 0.011803677305579185, 0.04646284133195877, 0.10584467649459839, -0.08533966541290283, 0.8738417625427246, 0.011900335550308228, -0.3412148654460907, 0.01858753338456154, 0.13765081763267517, -0.17172196507453918, 0.06235392391681671, 1.1129870414733887, -0.005632585845887661, 0.013326458632946014, -0.00535694882273674]} +{"t": 5.9367, "q": [-0.12143673747777939, 0.006396699231117964, -0.0023301898036152124, 0.3148495554924011, -0.1890585720539093, -0.014844313263893127, -0.07362766563892365, -0.03152330592274666, 0.016833612695336342, 0.34064599871635437, -0.28044015169143677, 0.020632734522223473, -0.016699694097042084, 0.057630740106105804, 0.01177947036921978, 0.04488092288374901, 0.10560499131679535, -0.08538760244846344, 0.864997386932373, 0.011900335550308228, -0.3521444797515869, 0.01847967505455017, 0.13670405745506287, -0.1717459261417389, 0.06232995539903641, 1.1151081323623657, -0.005608617328107357, 0.013350427150726318, -0.005368933081626892]} +{"t": 5.9533, "q": [-0.12144526094198227, 0.006302956026047468, -0.002356973709538579, 0.3148921728134155, -0.18906277418136597, -0.014837232418358326, -0.07347427308559418, -0.03160000219941139, 0.016833612695336342, 0.34074825048446655, -0.2803701162338257, 0.020754916593432426, -0.016418464481830597, 0.05763082951307297, 0.01176988985389471, 0.04272376373410225, 0.10530538856983185, -0.08541157096624374, 0.8572795391082764, 0.011924304068088531, -0.36097684502601624, 0.018323879688978195, 0.13610485196113586, -0.1717699021100998, 0.06232995539903641, 1.116786003112793, -0.005632585845887661, 0.013314474374055862, -0.005380917340517044]} +{"t": 5.9701, "q": [-0.12145378440618515, 0.006311478558927774, -0.0023703654296696186, 0.3149432837963104, -0.18906277418136597, -0.014837232418358326, -0.07334643602371216, -0.0316426157951355, 0.016833612695336342, 0.3408675789833069, -0.28032055497169495, 0.02082672342658043, -0.016418464481830597, 0.05764608457684517, 0.011750218458473682, 0.04098604992032051, 0.10524546355009079, -0.0854235589504242, 0.8484951257705688, 0.01191231980919838, -0.3718705177307129, 0.018311895430088043, 0.1351461112499237, -0.1717459261417389, 0.062377892434597015, 1.1185595989227295, -0.005596633069217205, 0.01330249011516571, -0.005368933081626892]} +{"t": 5.9868, "q": [-0.12144526094198227, 0.006251823622733355, -0.0023703654296696186, 0.3150540888309479, -0.18906277418136597, -0.014837232418358326, -0.07322712987661362, -0.03166818246245384, 0.016860397532582283, 0.3409527838230133, -0.28019222617149353, 0.020962810143828392, -0.01628454588353634, 0.05769185349345207, 0.011691205203533173, 0.03953595831990242, 0.10517355799674988, -0.08541157096624374, 0.8396987318992615, 0.011960256844758987, -0.3796602487564087, 0.01828792691230774, 0.13439109921455383, -0.1717459261417389, 0.06232995539903641, 1.1206209659576416, -0.005560680292546749, 0.013278521597385406, -0.005368933081626892]} +{"t": 6.0036, "q": [-0.12143673747777939, 0.006209212820976973, -0.002397149335592985, 0.3152756690979004, -0.18904563784599304, -0.01482295710593462, -0.07312486320734024, -0.031736359000205994, 0.016847005113959312, 0.34102949500083923, -0.2800932228565216, 0.021120857447385788, -0.016257761046290398, 0.05776796117424965, 0.01161202508956194, 0.037822213023900986, 0.10520951449871063, -0.08541157096624374, 0.8312378525733948, 0.011936288326978683, -0.3896910548210144, 0.01828792691230774, 0.13379189372062683, -0.17175792157649994, 0.06232995539903641, 1.122154951095581, -0.0055486964993178844, 0.013266537338495255, -0.005368933081626892]} +{"t": 6.0205, "q": [-0.12142821401357651, 0.006166602019220591, -0.002383757382631302, 0.315420538187027, -0.18903270363807678, -0.01480158232152462, -0.07306520640850067, -0.0317789688706398, 0.016847005113959312, 0.3410806357860565, -0.280014306306839, 0.021156245842576027, -0.016217585653066635, 0.05785120278596878, 0.011575731448829174, 0.03658783808350563, 0.1052694320678711, -0.0854235589504242, 0.8225972056388855, 0.011984225362539291, -0.3995540738105774, 0.018251974135637283, 0.133648082613945, -0.1717699021100998, 0.06232995539903641, 1.12299382686615, -0.0055486964993178844, 0.013278521597385406, -0.005368933081626892]} +{"t": 6.0372, "q": [-0.12143673747777939, 0.006098425481468439, -0.002397149335592985, 0.31556540727615356, -0.18900254368782043, -0.01475175004452467, -0.0729629397392273, -0.031804535537958145, 0.016873788088560104, 0.34110620617866516, -0.2798978388309479, 0.021184081211686134, -0.016016706824302673, 0.05795738101005554, 0.011505180969834328, 0.03434678912162781, 0.1053173691034317, -0.08535165339708328, 0.8147954940795898, 0.011984225362539291, -0.408961683511734, 0.018275942653417587, 0.13356418907642365, -0.17178188264369965, 0.06232995539903641, 1.1239285469055176, -0.005572664551436901, 0.013254553079605103, -0.005368933081626892]} +{"t": 6.054, "q": [-0.12142821401357651, 0.006021726410835981, -0.0024507169146090746, 0.31579551100730896, -0.1889723688364029, -0.014701899141073227, -0.07290329039096832, -0.03183862194418907, 0.016873788088560104, 0.34116584062576294, -0.2797936201095581, 0.02119033969938755, -0.016016706824302673, 0.05804089829325676, 0.01144017931073904, 0.03262105956673622, 0.10530538856983185, -0.08524379134178162, 0.805292010307312, 0.011960256844758987, -0.41898050904273987, 0.018275942653417587, 0.13358816504478455, -0.1718178391456604, 0.062305986881256104, 1.1245038509368896, -0.005572664551436901, 0.01324256882071495, -0.005392901133745909]} +{"t": 6.0707, "q": [-0.12141116708517075, 0.006021726410835981, -0.0024507169146090746, 0.31589776277542114, -0.1889335811138153, -0.014637811109423637, -0.07281806319952011, -0.03185566887259483, 0.016900572925806046, 0.3411743640899658, -0.2795603573322296, 0.021217074245214462, -0.015896180644631386, 0.05825325474143028, 0.011299078352749348, 0.03075152263045311, 0.1052694320678711, -0.08504006266593933, 0.7953810691833496, 0.011948272585868835, -0.42802858352661133, 0.01828792691230774, 0.1335761696100235, -0.1718418002128601, 0.062258049845695496, 1.1248992681503296, -0.005596633069217205, 0.013266537338495255, -0.005368933081626892]} +{"t": 6.0875, "q": [-0.1213856041431427, 0.006013203877955675, -0.0024373249616473913, 0.31603413820266724, -0.1888042688369751, -0.014424172230064869, -0.0727754533290863, -0.03185566887259483, 0.01695414073765278, 0.34116584062576294, -0.2792814075946808, 0.021265074610710144, -0.01593635603785515, 0.058556441217660904, 0.01111664343625307, 0.0291815884411335, 0.10530538856983185, -0.08466855436563492, 0.7859015464782715, 0.011744541116058826, -0.4381192922592163, 0.01828792691230774, 0.13358816504478455, -0.1720934808254242, 0.062246065586805344, 1.125067114830017, -0.0055247279815375805, 0.013254553079605103, -0.005368933081626892]} +{"t": 6.1042, "q": [-0.12141116708517075, 0.005970594007521868, -0.0024373249616473913, 0.31602561473846436, -0.18860609829425812, -0.014110795222222805, -0.0727328434586525, -0.03189827874302864, 0.01699431613087654, 0.34110620617866516, -0.27891480922698975, 0.021305039525032043, -0.015882788226008415, 0.05904214456677437, 0.010764260776340961, 0.026856649667024612, 0.10528142005205154, -0.08448878675699234, 0.7753194570541382, 0.011337077245116234, -0.4457053244113922, 0.018311895430088043, 0.13358816504478455, -0.1724410206079483, 0.062258049845695496, 1.1251989603042603, -0.005572664551436901, 0.013266537338495255, -0.005404885392636061]} +{"t": 6.121, "q": [-0.12142821401357651, 0.0058768498711287975, -0.0024373249616473913, 0.31612786650657654, -0.18844261765480042, -0.013882803730666637, -0.07270728051662445, -0.03195793181657791, 0.017021099105477333, 0.3410806357860565, -0.27860280871391296, 0.02138163335621357, -0.01581582799553871, 0.0596110075712204, 0.010384924709796906, 0.02364487573504448, 0.10486196726560593, -0.08434497565031052, 0.7662473917007446, 0.010869692079722881, -0.4516494870185852, 0.018323879688978195, 0.1335522085428238, -0.17293237149715424, 0.06227003410458565, 1.12522292137146, -0.005572664551436901, 0.013278521597385406, -0.005380917340517044]} +{"t": 6.1377, "q": [-0.12141116708517075, 0.005808673333376646, -0.0024373249616473913, 0.31620457768440247, -0.18830469250679016, -0.013654926791787148, -0.07269875705242157, -0.03200054168701172, 0.017047883942723274, 0.34106358885765076, -0.27828216552734375, 0.02142924815416336, -0.015722084790468216, 0.06025565415620804, 0.009964813478291035, 0.019330555573105812, 0.10369949787855148, -0.0833502858877182, 0.7573071718215942, 0.010246512480080128, -0.45807304978370667, 0.018371816724538803, 0.13356418907642365, -0.17342372238636017, 0.0622820183634758, 1.125234842300415, -0.0055247279815375805, 0.013326458632946014, -0.005380917340517044]} +{"t": 6.1545, "q": [-0.12142821401357651, 0.0056978859938681126, -0.0024507169146090746, 0.31630682945251465, -0.18817138671875, -0.013476802967488766, -0.07265614718198776, -0.03207724168896675, 0.017021099105477333, 0.3410976827144623, -0.27794861793518066, 0.021440604701638222, -0.0154542475938797, 0.06100654602050781, 0.009473719634115696, 0.014177338220179081, 0.10341188311576843, -0.08267916738986969, 0.7494694590568542, 0.00971920695155859, -0.4634539484977722, 0.018515627831220627, 0.13370800018310547, -0.17374730110168457, 0.062258049845695496, 1.125522494316101, -0.0055367122404277325, 0.013290505856275558, -0.00535694882273674]} +{"t": 6.1712, "q": [-0.12144526094198227, 0.005604142788797617, -0.0024373249616473913, 0.316426157951355, -0.18803797662258148, -0.013284444808959961, -0.07260501384735107, -0.03217098489403725, 0.017074666917324066, 0.3410806357860565, -0.277715802192688, 0.021510707214474678, -0.0153738958761096, 0.06188652664422989, 0.008885551244020462, 0.009898969903588295, 0.10342386364936829, -0.08266718685626984, 0.7414999604225159, 0.009707222692668438, -0.4667016863822937, 0.018503643572330475, 0.13370800018310547, -0.17380721867084503, 0.062258049845695496, 1.12596595287323, -0.0055127437226474285, 0.013290505856275558, -0.005368933081626892]} +{"t": 6.1879, "q": [-0.12147082388401031, 0.005467788781970739, -0.002356973709538579, 0.31644317507743835, -0.18784885108470917, -0.013042120262980461, -0.0725964903831482, -0.03225620836019516, 0.017248760908842087, 0.3410550653934479, -0.2774629294872284, 0.021660147234797478, -0.015494422987103462, 0.06293366104364395, 0.008167227730154991, 0.006243781186640263, 0.10271679610013962, -0.08281099796295166, 0.7327634692192078, 0.009707222692668438, -0.47187885642051697, 0.018551580607891083, 0.13368403911590576, -0.17383117973804474, 0.06222209706902504, 1.1261576414108276, -0.0055367122404277325, 0.013290505856275558, -0.005380917340517044]} +{"t": 6.2047, "q": [-0.12144526094198227, 0.0053484789095819, -0.0021962709724903107, 0.3165454566478729, -0.1877240538597107, -0.012864034622907639, -0.0725964903831482, -0.03244369477033615, 0.017355896532535553, 0.34106358885765076, -0.2772437632083893, 0.02183876372873783, -0.0155345993116498, 0.06402620673179626, 0.007435414474457502, 0.002984072081744671, 0.10093114525079727, -0.08301472663879395, 0.7235715389251709, 0.009791111573576927, -0.47779908776283264, 0.01858753338456154, 0.13374395668506622, -0.173939049243927, 0.06222209706902504, 1.126493215560913, -0.0055127437226474285, 0.01330249011516571, -0.005368933081626892]} +{"t": 6.2214, "q": [-0.12144526094198227, 0.0051439483650028706, -0.0021427033934742212, 0.3166988492012024, -0.18759915232658386, -0.012671714648604393, -0.07257945090532303, -0.032648224383592606, 0.017409464344382286, 0.34106358885765076, -0.27704915404319763, 0.02197425812482834, -0.015574774704873562, 0.0648532509803772, 0.006881737150251865, 8.388957940042019e-05, 0.09855826944112778, -0.08297877758741379, 0.7143796682357788, 0.009851032868027687, -0.48331183195114136, 0.01858753338456154, 0.13383983075618744, -0.17399896681308746, 0.062246065586805344, 1.1269965171813965, -0.005572664551436901, 0.013290505856275558, -0.005368933081626892]} +{"t": 6.2381, "q": [-0.12144526094198227, 0.005033161025494337, -0.0021025275345891714, 0.3167329430580139, -0.1874486207962036, -0.012465080246329308, -0.07257945090532303, -0.032776057720184326, 0.017436247318983078, 0.3410550653934479, -0.2768959701061249, 0.02208125963807106, -0.015521206893026829, 0.06593824177980423, 0.006163533311337233, -0.0028522456996142864, 0.09659285843372345, -0.08314655721187592, 0.7044687271118164, 0.009886985644698143, -0.4866194725036621, 0.018563564866781235, 0.13400760293006897, -0.17405888438224792, 0.06223408132791519, 1.1275238990783691, -0.005596633069217205, 0.01330249011516571, -0.005368933081626892]} +{"t": 6.2549, "q": [-0.12144526094198227, 0.004879762884229422, -0.002089135814458132, 0.3167840838432312, -0.1872684210538864, -0.012279627844691277, -0.07256240397691727, -0.03292093053460121, 0.01744963973760605, 0.34112322330474854, -0.27675899863243103, 0.02214500866830349, -0.015427463687956333, 0.0668867751955986, 0.005526830907911062, -0.00601608119904995, 0.09561014920473099, -0.08308663219213486, 0.6956003904342651, 0.009886985644698143, -0.4893878102302551, 0.018563564866781235, 0.13407951593399048, -0.174166738986969, 0.06222209706902504, 1.1281111240386963, -0.005560680292546749, 0.01330249011516571, -0.005368933081626892]} +{"t": 6.2717, "q": [-0.12146230041980743, 0.00483715208247304, -0.002129311440512538, 0.31680965423583984, -0.1871015727519989, -0.012172365561127663, -0.07252831757068634, -0.033006154000759125, 0.017422856763005257, 0.34112322330474854, -0.27660566568374634, 0.022237541154026985, -0.01538728829473257, 0.06794917583465576, 0.004823024850338697, -0.009863017126917839, 0.09583784639835358, -0.08284694701433182, 0.6849344372749329, 0.009863017126917839, -0.4925396740436554, 0.01853959634900093, 0.13413943350315094, -0.17437048256397247, 0.062258049845695496, 1.1285425424575806, -0.005608617328107357, 0.013314474374055862, -0.005392901133745909]} +{"t": 6.2888, "q": [-0.12146230041980743, 0.004734887275844812, -0.0021159194875508547, 0.31680113077163696, -0.18697772920131683, -0.012122093699872494, -0.0725027471780777, -0.03309137374162674, 0.017436247318983078, 0.34111469984054565, -0.2764814496040344, 0.022323118522763252, -0.0153738958761096, 0.06881443411111832, 0.004231349099427462, -0.014225275255739689, 0.09671270102262497, -0.08240353316068649, 0.6744841933250427, 0.009815080091357231, -0.4959551692008972, 0.018551580607891083, 0.13413943350315094, -0.17463412880897522, 0.062198128551244736, 1.128890037536621, -0.005584648810327053, 0.013314474374055862, -0.005380917340517044]} +{"t": 6.3056, "q": [-0.12143673747777939, 0.0045900107361376286, -0.0021159194875508547, 0.3169715702533722, -0.18686628341674805, -0.012022163718938828, -0.0723663941025734, -0.03326181694865227, 0.017422856763005257, 0.3411743640899658, -0.2764274477958679, 0.02234429121017456, -0.01519980188459158, 0.06948165595531464, 0.0038395258598029613, -0.02081659995019436, 0.0971561148762703, -0.08224774152040482, 0.6649807095527649, 0.009743175469338894, -0.501431941986084, 0.01852761209011078, 0.134247288107872, -0.17567676305770874, 0.06222209706902504, 1.1290338039398193, -0.0055486964993178844, 0.013314474374055862, -0.005380917340517044]} +{"t": 6.3223, "q": [-0.12144526094198227, 0.004479223396629095, -0.0021427033934742212, 0.31698861718177795, -0.18667347729206085, -0.011857952922582626, -0.07234083116054535, -0.03338964655995369, 0.017369288951158524, 0.34116584062576294, -0.2763940691947937, 0.022343982011079788, -0.015132841654121876, 0.06999662518501282, 0.0035975025966763496, -0.026688870042562485, 0.09728793799877167, -0.0818762257695198, 0.6576583385467529, 0.009707222692668438, -0.5044160485267639, 0.01847967505455017, 0.134247288107872, -0.17664748430252075, 0.062258049845695496, 1.12933349609375, -0.005560680292546749, 0.01330249011516571, -0.005380917340517044]} +{"t": 6.339, "q": [-0.12144526094198227, 0.004419568460434675, -0.0021427033934742212, 0.31695452332496643, -0.18640895187854767, -0.011785740032792091, -0.07237491756677628, -0.033423736691474915, 0.017436247318983078, 0.3412169814109802, -0.2763024568557739, 0.022357581183314323, -0.015226585790514946, 0.07034504413604736, 0.003429332049563527, -0.031015174463391304, 0.09860620647668839, -0.08091749250888824, 0.6490656137466431, 0.009395632892847061, -0.5058661103248596, 0.018455706536769867, 0.1341753900051117, -0.17707891762256622, 0.06227003410458565, 1.1293574571609497, -0.005572664551436901, 0.013314474374055862, -0.005380917340517044]} +{"t": 6.3558, "q": [-0.12143673747777939, 0.004411046858876944, -0.0021159194875508547, 0.31695452332496643, -0.18630225956439972, -0.01174976211041212, -0.0723663941025734, -0.03344930335879326, 0.017422856763005257, 0.3411743640899658, -0.2761281728744507, 0.022442694753408432, -0.015132841654121876, 0.0704587921500206, 0.003362155519425869, -0.03485012799501419, 0.09997240453958511, -0.07874834537506104, 0.6425222754478455, 0.00854475237429142, -0.5068128705024719, 0.018455706536769867, 0.1341993510723114, -0.17791780829429626, 0.062258049845695496, 1.1294173002243042, -0.005572664551436901, 0.01330249011516571, -0.005368933081626892]} +{"t": 6.3725, "q": [-0.12144526094198227, 0.004394001793116331, -0.0021427033934742212, 0.3169715702533722, -0.18626807630062103, -0.011735400184988976, -0.0723663941025734, -0.03344930335879326, 0.01744963973760605, 0.3411828875541687, -0.2760699391365051, 0.02245660312473774, -0.015159625560045242, 0.07047376781702042, 0.003371157683432102, -0.038217693567276, 0.10046376287937164, -0.07538077980279922, 0.636506199836731, 0.00755006168037653, -0.5068368315696716, 0.01841975376009941, 0.1342233270406723, -0.1790802776813507, 0.06229400262236595, 1.129561185836792, -0.005584648810327053, 0.013290505856275558, -0.00535694882273674]} +{"t": 6.3892, "q": [-0.12146230041980743, 0.004402524325996637, -0.0020757438614964485, 0.3169715702533722, -0.18625515699386597, -0.011714044027030468, -0.07237491756677628, -0.03345782682299614, 0.017516599968075752, 0.34110620617866516, -0.2759370505809784, 0.02251318469643593, -0.015239977277815342, 0.07045120000839233, 0.0033672754652798176, -0.04075834900140762, 0.10018812119960785, -0.07121026515960693, 0.6302144527435303, 0.0057284594513475895, -0.5065612196922302, 0.018443722277879715, 0.13416339457035065, -0.17979933321475983, 0.06229400262236595, 1.129573106765747, -0.005596633069217205, 0.01330249011516571, -0.005320996046066284]} +{"t": 6.406, "q": [-0.12144526094198227, 0.004368436057120562, -0.0018882573349401355, 0.3169715702533722, -0.18624232709407806, -0.01170686911791563, -0.07237491756677628, -0.03350043669342995, 0.01766391098499298, 0.34101244807243347, -0.27576687932014465, 0.02259109355509281, -0.015253368765115738, 0.07045868784189224, 0.003371776547282934, -0.04285559058189392, 0.09982859343290329, -0.0682741329073906, 0.6255765557289124, 0.004086620640009642, -0.5065971612930298, 0.018431738018989563, 0.13416339457035065, -0.1803026646375656, 0.06227003410458565, 1.1296210289001465, -0.0055486964993178844, 0.01330249011516571, -0.005344964563846588]} +{"t": 6.4227, "q": [-0.1214793473482132, 0.00426617031916976, -0.0017007706919685006, 0.31690338253974915, -0.18624232709407806, -0.01170686911791563, -0.07239195704460144, -0.033602699637413025, 0.017730869352817535, 0.34098687767982483, -0.27573761343955994, 0.022583596408367157, -0.015306936576962471, 0.07044371217489243, 0.003362774383276701, -0.04482100158929825, 0.0992773249745369, -0.06531402468681335, 0.621489942073822, 0.0032117723021656275, -0.5065851807594299, 0.018395785242319107, 0.1341753900051117, -0.18036259710788727, 0.062246065586805344, 1.1296330690383911, -0.005572664551436901, 0.013278521597385406, -0.005344964563846588]} +{"t": 6.4395, "q": [-0.12146230041980743, 0.0041639055125415325, -0.0015802436973899603, 0.3168692886829376, -0.18624642491340637, -0.011685588397085667, -0.07241752743721008, -0.03374757617712021, 0.01778443716466427, 0.3409613072872162, -0.27572548389434814, 0.02261962555348873, -0.015467639081180096, 0.0704360231757164, 0.0033775153569877148, -0.04637895151972771, 0.09916946291923523, -0.06282130628824234, 0.616636335849762, 0.0020852552261203527, -0.5066810846328735, 0.018395785242319107, 0.1341753900051117, -0.18042251467704773, 0.062258049845695496, 1.1296570301055908, -0.0055367122404277325, 0.013266537338495255, -0.00535694882273674]} +{"t": 6.4562, "q": [-0.12146230041980743, 0.0040786839090287685, -0.0015400679549202323, 0.31685224175453186, -0.18624211847782135, -0.011678469367325306, -0.0724090039730072, -0.033849842846393585, 0.01781122200191021, 0.3409527838230133, -0.2757049798965454, 0.02265557460486889, -0.015414072200655937, 0.07045868784189224, 0.003371776547282934, -0.04806872829794884, 0.09910954535007477, -0.061119548976421356, 0.6087027788162231, -4.793690095539205e-05, -0.5070285797119141, 0.018443722277879715, 0.1342233270406723, -0.18051838874816895, 0.06227003410458565, 1.1296809911727905, -0.0055367122404277325, 0.01330249011516571, -0.005368933081626892]} +{"t": 6.4729, "q": [-0.12146230041980743, 0.003950852435082197, -0.0015534599078819156, 0.3167926073074341, -0.18624211847782135, -0.011678469367325306, -0.07238344103097916, -0.0339350625872612, 0.017744261771440506, 0.34087610244750977, -0.2756969630718231, 0.022684399038553238, -0.015226585790514946, 0.07045868784189224, 0.003371776547282934, -0.05008207634091377, 0.09913351386785507, -0.05969342589378357, 0.600505530834198, -0.0031638354994356632, -0.5083468556404114, 0.018491659313440323, 0.1342712640762329, -0.1805303692817688, 0.062246065586805344, 1.1297169923782349, -0.005572664551436901, 0.013290505856275558, -0.00535694882273674]} +{"t": 6.4897, "q": [-0.12146230041980743, 0.0038571092300117016, -0.001566851744428277, 0.31680965423583984, -0.18625052273273468, -0.011664299294352531, -0.07238344103097916, -0.03399471938610077, 0.017730869352817535, 0.3408931493759155, -0.2756928503513336, 0.02269158512353897, -0.014878395944833755, 0.07046617567539215, 0.003376277629286051, -0.05158010497689247, 0.09939716756343842, -0.05697300657629967, 0.5924641489982605, -0.008472846820950508, -0.5098928213119507, 0.018611501902341843, 0.13423530757427216, -0.18054234981536865, 0.06221011281013489, 1.1297169923782349, -0.005560680292546749, 0.013278521597385406, -0.00535694882273674]} +{"t": 6.5064, "q": [-0.12147082388401031, 0.0038315425626933575, -0.0016204193234443665, 0.31680965423583984, -0.18623779714107513, -0.011671350337564945, -0.07237491756677628, -0.03406289592385292, 0.017690693959593773, 0.34087610244750977, -0.2756843566894531, 0.02267705649137497, -0.014168625697493553, 0.0704360231757164, 0.0033775153569877148, -0.0529702752828598, 0.09928930550813675, -0.05152018368244171, 0.5837875604629517, -0.012020178139209747, -0.5123376250267029, 0.01877928152680397, 0.1342233270406723, -0.18056632578372955, 0.062246065586805344, 1.1297649145126343, -0.0055486964993178844, 0.013314474374055862, -0.00535694882273674]} +{"t": 6.5232, "q": [-0.1214793473482132, 0.0037974542938172817, -0.001673986902460456, 0.3168181777000427, -0.18622487783432007, -0.011649994179606438, -0.07234934717416763, -0.034079939126968384, 0.017596950754523277, 0.3408675789833069, -0.2756843566894531, 0.02267705649137497, -0.013244585134088993, 0.07044351100921631, 0.0033820164389908314, -0.05421663448214531, 0.09904962033033371, -0.044557347893714905, 0.5755903720855713, -0.016945693641901016, -0.5150220990180969, 0.018791265785694122, 0.1342233270406723, -0.18066219985485077, 0.06222209706902504, 1.1299446821212769, -0.0055486964993178844, 0.013314474374055862, -0.005368933081626892]} +{"t": 6.54, "q": [-0.1214793473482132, 0.0038059758953750134, -0.0017141626449301839, 0.3168778121471405, -0.18620362877845764, -0.011656980030238628, -0.07235787063837051, -0.03404585272073746, 0.017583558335900307, 0.34091871976852417, -0.275680273771286, 0.022684244439005852, -0.012374111451208591, 0.0704360231757164, 0.0033775153569877148, -0.05517537146806717, 0.09904962033033371, -0.03856523707509041, 0.567237377166748, -0.022038990631699562, -0.5185813903808594, 0.01883920282125473, 0.1341993510723114, -0.18068616092205048, 0.06223408132791519, 1.1300045251846313, -0.0055486964993178844, 0.013314474374055862, -0.005368933081626892]} +{"t": 6.5567, "q": [-0.12150491029024124, 0.003823020961135626, -0.001834689755924046, 0.31690338253974915, -0.18619900941848755, -0.011607262305915356, -0.07233230769634247, -0.03406289592385292, 0.01748981513082981, 0.34092721343040466, -0.27566784620285034, 0.022691352292895317, -0.011463462375104427, 0.07042843103408813, 0.0033826353028416634, -0.05620601773262024, 0.09948105365037918, -0.034934017807245255, 0.5597112774848938, -0.02870221994817257, -0.5220927596092224, 0.018755313009023666, 0.13423530757427216, -0.18071013689041138, 0.06222209706902504, 1.1302682161331177, -0.005584648810327053, 0.013338442891836166, -0.00535694882273674]} +{"t": 6.5735, "q": [-0.12151343375444412, 0.0037889317609369755, -0.0018212978029623628, 0.3169289529323578, -0.18616043031215668, -0.01157157402485609, -0.07229821383953094, -0.0340714156627655, 0.017516599968075752, 0.34096983075141907, -0.2756429612636566, 0.02270558848977089, -0.01032515149563551, 0.0704285278916359, 0.003373014274984598, -0.05758420377969742, 0.09944510459899902, -0.030044453218579292, 0.5521971583366394, -0.03561711683869362, -0.5253644585609436, 0.018683407455682755, 0.1342712640762329, -0.18071013689041138, 0.06227003410458565, 1.1305798292160034, -0.005560680292546749, 0.013326458632946014, -0.00535694882273674]} +{"t": 6.5903, "q": [-0.12149639427661896, 0.0037548434920608997, -0.0018079059664160013, 0.3170141577720642, -0.18613025546073914, -0.011521723121404648, -0.07228969782590866, -0.0340714156627655, 0.017529990524053574, 0.34098687767982483, -0.2755727469921112, 0.022769957780838013, -0.009146664291620255, 0.0704285278916359, 0.003373014274984598, -0.059297945350408554, 0.09907358884811401, -0.024627583101391792, 0.5446111559867859, -0.04180097579956055, -0.5270302891731262, 0.018563564866781235, 0.1342233270406723, -0.18071013689041138, 0.062246065586805344, 1.1314666271209717, -0.0055486964993178844, 0.013338442891836166, -0.005344964563846588]} +{"t": 6.607, "q": [-0.12149639427661896, 0.003746321890503168, -0.0018079059664160013, 0.3171164393424988, -0.18609577417373657, -0.011464754119515419, -0.07222151756286621, -0.03410550579428673, 0.017570167779922485, 0.34102097153663635, -0.275465190410614, 0.022855689749121666, -0.007834259420633316, 0.0704285278916359, 0.003373014274984598, -0.061359234154224396, 0.09903763979673386, -0.019869845360517502, 0.5361862182617188, -0.049375008791685104, -0.5275935530662537, 0.018503643572330475, 0.13418737053871155, -0.18067418038845062, 0.06227003410458565, 1.1325931549072266, -0.005596633069217205, 0.013314474374055862, -0.005344964563846588]} +{"t": 6.6237, "q": [-0.121521957218647, 0.0037548434920608997, -0.001794514013454318, 0.3172016441822052, -0.18603985011577606, -0.011386389844119549, -0.07220447063446045, -0.03410550579428673, 0.017570167779922485, 0.34102097153663635, -0.27532002329826355, 0.022933848202228546, -0.006495069246739149, 0.07041344791650772, 0.00337363313883543, -0.06366020441055298, 0.0990256518125534, -0.015855129808187485, 0.5279410481452942, -0.05631387606263161, -0.5277733206748962, 0.018371816724538803, 0.13418737053871155, -0.18071013689041138, 0.062258049845695496, 1.1338036060333252, -0.005620601586997509, 0.013326458632946014, -0.00535694882273674]} +{"t": 6.6405, "q": [-0.1216157004237175, 0.003720755223184824, -0.001794514013454318, 0.31722721457481384, -0.18598811328411102, -0.01130092702805996, -0.07220447063446045, -0.03409698233008385, 0.017583558335900307, 0.34096983075141907, -0.27514931559562683, 0.022953860461711884, -0.005517460871487856, 0.07042104005813599, 0.0033685131929814816, -0.06506235897541046, 0.0989537462592125, -0.01179247722029686, 0.5211100578308105, -0.06137121841311455, -0.5275216102600098, 0.017952369526028633, 0.13403157889842987, -0.18071013689041138, 0.062258049845695496, 1.135037899017334, -0.005656554363667965, 0.01330249011516571, -0.00535694882273674]} +{"t": 6.6572, "q": [-0.1216157004237175, 0.0036866669543087482, -0.0017543383873999119, 0.3172442615032196, -0.18590222299098969, -0.011201120913028717, -0.07221299409866333, -0.03412254899740219, 0.01765051856637001, 0.34092721343040466, -0.27497029304504395, 0.022959232330322266, -0.004740730859339237, 0.07044371217489243, 0.003362774383276701, -0.06563760340213776, 0.09896573424339294, -0.009275790303945541, 0.5140753388404846, -0.06596117466688156, -0.5274137854576111, 0.016777915880084038, 0.13374395668506622, -0.18073409795761108, 0.062246065586805344, 1.1360806226730347, -0.005608617328107357, 0.013290505856275558, -0.005368933081626892]} +{"t": 6.6739, "q": [-0.1216157004237175, 0.0036696228198707104, -0.001607027486898005, 0.31726130843162537, -0.18583346903324127, -0.01111559011042118, -0.07224708795547485, -0.03413959592580795, 0.01781122200191021, 0.34091871976852417, -0.2748206853866577, 0.02298656851053238, -0.004272014833986759, 0.07042104005813599, 0.0033685131929814816, -0.06603308022022247, 0.09894176572561264, -0.005009406246244907, 0.5082510113716125, -0.07019160687923431, -0.5269943475723267, 0.01561544556170702, 0.1335282325744629, -0.18071013689041138, 0.06223408132791519, 1.1367276906967163, -0.005608617328107357, 0.013278521597385406, -0.005344964563846588]} +{"t": 6.6907, "q": [-0.12159865349531174, 0.0036866669543087482, -0.0014865003759041429, 0.31726983189582825, -0.18580761551856995, -0.011072876863181591, -0.07224708795547485, -0.034156639128923416, 0.017851397395133972, 0.34087610244750977, -0.27465033531188965, 0.023020893335342407, -0.00388364982791245, 0.07041344791650772, 0.00337363313883543, -0.06634467095136642, 0.09896573424339294, -0.0019174760673195124, 0.50246262550354, -0.07690277695655823, -0.5264670252799988, 0.014692660421133041, 0.13354022800922394, -0.18073409795761108, 0.062258049845695496, 1.1371471881866455, -0.005584648810327053, 0.013266537338495255, -0.00535694882273674]} +{"t": 6.7085, "q": [-0.12159013748168945, 0.0037122326903045177, -0.0014061490073800087, 0.3173294961452484, -0.18578605353832245, -0.01103726401925087, -0.07226412743330002, -0.03413959592580795, 0.017945140600204468, 0.34084200859069824, -0.2744058072566986, 0.023126674816012383, -0.0032944062259048223, 0.07039836794137955, 0.003374252002686262, -0.06644054502248764, 0.09894176572561264, 0.0004913532175123692, 0.496602326631546, -0.08295480906963348, -0.5261074900627136, 0.013470268808305264, 0.1335522085428238, -0.18074607849121094, 0.062198128551244736, 1.1377583742141724, -0.005596633069217205, 0.013254553079605103, -0.00535694882273674]} +{"t": 6.7253, "q": [-0.12159865349531174, 0.0036866669543087482, -0.0010177841177210212, 0.3173465430736542, -0.18576020002365112, -0.010994533076882362, -0.07233230769634247, -0.03413959592580795, 0.018266545608639717, 0.3406886160373688, -0.2741206884384155, 0.023333122953772545, -0.0021159194875508547, 0.07042094320058823, 0.0033781342208385468, -0.06638062000274658, 0.09891779720783234, 0.0027923244051635265, 0.4912693500518799, -0.08864731341600418, -0.5256041288375854, 0.011720572598278522, 0.13358816504478455, -0.18074607849121094, 0.06222209706902504, 1.1388369798660278, -0.0055486964993178844, 0.013254553079605103, -0.00535694882273674]} +{"t": 6.7421, "q": [-0.12158161401748657, 0.003746321890503168, -0.0005624596378766, 0.31735506653785706, -0.18574726581573486, -0.01097317598760128, -0.07241752743721008, -0.03413959592580795, 0.018601343035697937, 0.3405948579311371, -0.27384936809539795, 0.0234240610152483, -0.00037497308221645653, 0.07042094320058823, 0.0033781342208385468, -0.06634467095136642, 0.09896573424339294, 0.0038109836168587208, 0.4876261353492737, -0.0927099660038948, -0.525328516960144, 0.009575395844876766, 0.1336001455783844, -0.18074607849121094, 0.062198128551244736, 1.1405866146087646, -0.005584648810327053, 0.01324256882071495, -0.005368933081626892]} +{"t": 6.7588, "q": [-0.12158161401748657, 0.0037292768247425556, -0.00026783792418427765, 0.3173806369304657, -0.18572139739990234, -0.010930445045232773, -0.07246866077184677, -0.034148115664720535, 0.01881561428308487, 0.340484082698822, -0.27357834577560425, 0.023543883115053177, 0.0013391895918175578, 0.07042863219976425, 0.003363393247127533, -0.06624879688024521, 0.09894176572561264, 0.0038469363935291767, 0.482628732919693, -0.0983785018324852, -0.5250288844108582, 0.00612393906340003, 0.13354022800922394, -0.18071013689041138, 0.06222209706902504, 1.142624020576477, -0.005584648810327053, 0.013266537338495255, -0.00535694882273674]} +{"t": 6.7757, "q": [-0.12162422388792038, 0.003720755223184824, -0.00013391896209213883, 0.3173806369304657, -0.18566979467868805, -0.010859199799597263, -0.07246866077184677, -0.03421629220247269, 0.018882572650909424, 0.3403051197528839, -0.2733367681503296, 0.023671260103583336, 0.0027721223887056112, 0.07042094320058823, 0.0033781342208385468, -0.06623681634664536, 0.09894176572561264, 0.0038349521346390247, 0.477367639541626, -0.10337592661380768, -0.5247412919998169, 0.0016058861510828137, 0.13348029553890228, -0.18073409795761108, 0.06221011281013489, 1.144205927848816, -0.005584648810327053, 0.01324256882071495, -0.00535694882273674]} +{"t": 6.7924, "q": [-0.12166683375835419, 0.003661100286990404, -1.3391895663517062e-05, 0.3173891305923462, -0.18563951551914215, -0.010795149952173233, -0.07246013730764389, -0.03434412553906441, 0.018922748044133186, 0.3401602506637573, -0.273150235414505, 0.02384975738823414, 0.0034149333368986845, 0.07040586322546005, 0.0033787530846893787, -0.06624879688024521, 0.09894176572561264, 0.0038469363935291767, 0.4723222851753235, -0.10782207548618317, -0.5243937373161316, -0.002660498023033142, 0.13327656686306, -0.18079401552677155, 0.06222209706902504, 1.1451046466827393, -0.005572664551436901, 0.01324256882071495, -0.00535694882273674]} +{"t": 6.8091, "q": [-0.1216583102941513, 0.003456569742411375, 0.00010713516530813649, 0.3173976540565491, -0.1855575144290924, -0.010645628906786442, -0.07245161384344101, -0.034565698355436325, 0.018949532881379128, 0.34010058641433716, -0.2730092406272888, 0.023978210985660553, 0.003816690295934677, 0.07040586322546005, 0.0033787530846893787, -0.06603308022022247, 0.09894176572561264, 0.003787015099078417, 0.4695179760456085, -0.11141734570264816, -0.52413010597229, -0.007238471880555153, 0.1330009251832962, -0.1808299720287323, 0.06222209706902504, 1.145859718322754, -0.005632585845887661, 0.013230584561824799, -0.00535694882273674]} +{"t": 6.8259, "q": [-0.12168388068675995, 0.0033287382684648037, 0.0002812298189383, 0.31740617752075195, -0.18548443913459778, -0.010552979074418545, -0.07246013730764389, -0.03472762182354927, 0.019056666642427444, 0.34010910987854004, -0.2729140520095825, 0.024085523560643196, 0.0037899063900113106, 0.07042083889245987, 0.003387755248695612, -0.06556569784879684, 0.0989537462592125, 0.003523362334817648, 0.4674566984176636, -0.11853597313165665, -0.52338707447052, -0.011924304068088531, 0.13252156972885132, -0.1808299720287323, 0.062198128551244736, 1.1463390588760376, -0.005584648810327053, 0.013218600302934647, -0.005368933081626892]} +{"t": 6.8426, "q": [-0.12167535722255707, 0.0032605607993900776, 0.0005892434273846447, 0.3174232244491577, -0.18545836210250854, -0.010481839999556541, -0.07248570770025253, -0.03477023169398308, 0.019244154915213585, 0.34000682830810547, -0.2727442979812622, 0.024264220148324966, 0.003803298342972994, 0.0704057589173317, 0.003388374112546444, -0.06517021358013153, 0.09890580922365189, 0.003571299137547612, 0.465335488319397, -0.12537896633148193, -0.522500216960907, -0.016454340890049934, 0.13228188455104828, -0.18079401552677155, 0.062186144292354584, 1.1466506719589233, -0.005596633069217205, 0.01324256882071495, -0.005344964563846588]} +{"t": 6.8594, "q": [-0.12167535722255707, 0.0032179499976336956, 0.0008570813224650919, 0.3174402713775635, -0.18544113636016846, -0.010453364811837673, -0.0725027471780777, -0.034863974899053574, 0.019458424299955368, 0.339853435754776, -0.2725107669830322, 0.024362772703170776, 0.0038434739690274, 0.07039038091897964, 0.0034178560599684715, -0.06485863029956818, 0.09882192313671112, 0.0038349521346390247, 0.4628068208694458, -0.13067598640918732, -0.5216134190559387, -0.021811289712786674, 0.13213807344436646, -0.1808060109615326, 0.06221011281013489, 1.146902322769165, -0.0055486964993178844, 0.013206616044044495, -0.00535694882273674]} +{"t": 6.8761, "q": [-0.12170092016458511, 0.0031582950614392757, 0.0011784868547692895, 0.3174317479133606, -0.18542388081550598, -0.010424870997667313, -0.07251127064228058, -0.03495771810412407, 0.01965930312871933, 0.3397511839866638, -0.2723194658756256, 0.02449069917201996, 0.003816690295934677, 0.07036032527685165, 0.0034094727598130703, -0.06466688215732574, 0.09821072220802307, 0.0036671729758381844, 0.4606856107711792, -0.13768675923347473, -0.5207625031471252, -0.026521090418100357, 0.1320302039384842, -0.1808299720287323, 0.062186144292354584, 1.1472139358520508, -0.005560680292546749, 0.013218600302934647, -0.00535694882273674]} +{"t": 6.8928, "q": [-0.12170092016458511, 0.003107162658125162, 0.0014463247498497367, 0.31744879484176636, -0.18540234863758087, -0.010389276780188084, -0.07255388051271439, -0.035042937844991684, 0.019927140325307846, 0.33974266052246094, -0.27214083075523376, 0.02462596260011196, 0.003803298342972994, 0.07036012411117554, 0.003428713185712695, -0.06459497660398483, 0.09661682695150375, 0.0037151097785681486, 0.4587081968784332, -0.14637532830238342, -0.5198637247085571, -0.030847394838929176, 0.1318264752626419, -0.1808060109615326, 0.06222209706902504, 1.14728581905365, -0.0055486964993178844, 0.013206616044044495, -0.00535694882273674]} +{"t": 6.9096, "q": [-0.12170092016458511, 0.003107162658125162, 0.0018212978029623628, 0.3174658417701721, -0.18540224432945251, -0.010375076904892921, -0.07266467064619064, -0.03509407117962837, 0.020261937752366066, 0.3397682309150696, -0.2720080316066742, 0.024740070104599, 0.003736338810995221, 0.07034504413604736, 0.003429332049563527, -0.06460695713758469, 0.09545435756444931, 0.0037151097785681486, 0.4566229581832886, -0.1540452241897583, -0.5188930034637451, -0.03413107246160507, 0.13164670765399933, -0.18084195256233215, 0.06221011281013489, 1.147345781326294, -0.005596633069217205, 0.013206616044044495, -0.00535694882273674]} +{"t": 6.9266, "q": [-0.12170092016458511, 0.003107162658125162, 0.0022096626926213503, 0.3175084590911865, -0.18540224432945251, -0.010375076904892921, -0.07281806319952011, -0.03510259464383125, 0.020744046196341515, 0.3397170901298523, -0.27187874913215637, 0.02474614605307579, 0.0035354604478925467, 0.07028443366289139, 0.0034606705885380507, -0.06441520899534225, 0.09455553442239761, 0.003583283396437764, 0.4545976221561432, -0.16497483849525452, -0.5177185535430908, -0.03965580090880394, 0.13141901791095734, -0.1808060109615326, 0.06221011281013489, 1.1474056243896484, -0.0055367122404277325, 0.013218600302934647, -0.005344964563846588]} +{"t": 6.9433, "q": [-0.12168388068675995, 0.0030986410565674305, 0.0025980276986956596, 0.31749141216278076, -0.1853979229927063, -0.01036795787513256, -0.07295442372560501, -0.03507702797651291, 0.0211859792470932, 0.3397256135940552, -0.2717415392398834, 0.02479543350636959, 0.003347973804920912, 0.07021642476320267, 0.003477887250483036, -0.06421148031949997, 0.09394434094429016, 0.0034274884965270758, 0.45345911383628845, -0.17374730110168457, -0.51629239320755, -0.04557600989937782, 0.13116735219955444, -0.1808299720287323, 0.062246065586805344, 1.1475015878677368, -0.005560680292546749, 0.013206616044044495, -0.005368933081626892]} +{"t": 6.9601, "q": [-0.121709443628788, 0.003107162658125162, 0.0029194331727921963, 0.31749141216278076, -0.18540224432945251, -0.010375076904892921, -0.07311633974313736, -0.03507702797651291, 0.02153416909277439, 0.33973413705825806, -0.27161675691604614, 0.024837620556354523, 0.003240838646888733, 0.07017847895622253, 0.003503486979752779, -0.0641036182641983, 0.09375259280204773, 0.0033435989171266556, 0.4529438018798828, -0.18480873107910156, -0.5140153765678406, -0.051112718880176544, 0.13102354109287262, -0.18075807392597198, 0.06223408132791519, 1.1476573944091797, -0.005584648810327053, 0.013194631785154343, -0.00535694882273674]} +{"t": 6.9768, "q": [-0.12171796709299088, 0.0030986410565674305, 0.0031872710678726435, 0.31749993562698364, -0.1854105442762375, -0.010346706956624985, -0.07325269281864166, -0.03509407117962837, 0.021909141913056374, 0.3397170901298523, -0.2715087831020355, 0.02489437907934189, 0.003066744189709425, 0.07014072686433792, 0.0035098446533083916, -0.06421148031949997, 0.0930095687508583, 0.003055977402254939, 0.45241647958755493, -0.19537882506847382, -0.510611891746521, -0.054863784462213516, 0.1308078169822693, -0.1808060109615326, 0.06223408132791519, 1.1478490829467773, -0.005572664551436901, 0.013206616044044495, -0.005368933081626892]} +{"t": 6.9935, "q": [-0.121709443628788, 0.003107162658125162, 0.00354885240085423, 0.3175084590911865, -0.1854105442762375, -0.010346706956624985, -0.07343165576457977, -0.03509407117962837, 0.02235107310116291, 0.3397256135940552, -0.27140069007873535, 0.02493671141564846, 0.002758730435743928, 0.07012564688920975, 0.0035104635171592236, -0.0644271969795227, 0.09067264944314957, 0.0027563718613237143, 0.4519490897655487, -0.207638680934906, -0.5070525407791138, -0.059729378670454025, 0.13052019476890564, -0.18077005445957184, 0.062246065586805344, 1.1481965780258179, -0.005584648810327053, 0.013206616044044495, -0.00535694882273674]} +{"t": 7.0103, "q": [-0.12171796709299088, 0.0030901185236871243, 0.003910433501005173, 0.31749993562698364, -0.18541064858436584, -0.010360915213823318, -0.07358505576848984, -0.03509407117962837, 0.022886749356985092, 0.33968299627304077, -0.2713421583175659, 0.024921758100390434, 0.002718554809689522, 0.07010318338871002, 0.0034969605039805174, -0.06473878771066666, 0.08657404035329819, 0.0029241510201245546, 0.4514697194099426, -0.21830464899539948, -0.5040205717086792, -0.06566157191991806, 0.1302805095911026, -0.1808299720287323, 0.06229400262236595, 1.1487479209899902, -0.005608617328107357, 0.013194631785154343, -0.00535694882273674]} +{"t": 7.027, "q": [-0.12171796709299088, 0.0030901185236871243, 0.004151487722992897, 0.3174828886985779, -0.18541894853115082, -0.010332546196877956, -0.07366175949573517, -0.03509407117962837, 0.023261722177267075, 0.3396744728088379, -0.27120980620384216, 0.02505042776465416, 0.002718554809689522, 0.07008041441440582, 0.003512320341542363, -0.0649784728884697, 0.08252337574958801, 0.0029121667612344027, 0.4507746398448944, -0.22978553175926208, -0.5022948384284973, -0.0709705799818039, 0.13007678091526031, -0.18079401552677155, 0.06223408132791519, 1.1495388746261597, -0.005584648810327053, 0.01318264752626419, -0.00535694882273674]} +{"t": 7.0438, "q": [-0.12171796709299088, 0.0030389861203730106, 0.004405933897942305, 0.31749141216278076, -0.18542326986789703, -0.010339665226638317, -0.0737384557723999, -0.03513668105006218, 0.02351616881787777, 0.3396318554878235, -0.2711188793182373, 0.025150636211037636, 0.0028122980147600174, 0.07007302343845367, 0.0034981982316821814, -0.06531402468681335, 0.07770571857690811, 0.0029241510201245546, 0.449755996465683, -0.24112261831760406, -0.501204252243042, -0.07508116960525513, 0.1299569457769394, -0.1808299720287323, 0.06221011281013489, 1.1501621007919312, -0.0055486964993178844, 0.013206616044044495, -0.00535694882273674]} +{"t": 7.0605, "q": [-0.12171796709299088, 0.0029878527857363224, 0.004620204214006662, 0.31749993562698364, -0.18542326986789703, -0.010339665226638317, -0.07380662858486176, -0.03521338105201721, 0.023730438202619553, 0.3396318554878235, -0.27105265855789185, 0.025207743048667908, 0.002839081920683384, 0.07008060812950134, 0.0034930782858282328, -0.06574545800685883, 0.07291202992200851, 0.002960103563964367, 0.4487732946872711, -0.25233983993530273, -0.5002694725990295, -0.07988684624433517, 0.1297532021999359, -0.1808060109615326, 0.06222209706902504, 1.1506893634796143, -0.005560680292546749, 0.01318264752626419, -0.00535694882273674]} +{"t": 7.0772, "q": [-0.121709443628788, 0.0029793311841785908, 0.0047541228123009205, 0.31749141216278076, -0.18541905283927917, -0.010346746072173119, -0.07389185577630997, -0.035230424255132675, 0.023904534056782722, 0.33964890241622925, -0.27096956968307495, 0.025250297039747238, 0.0027989062946289778, 0.07008051127195358, 0.003502699313685298, -0.06580538302659988, 0.06931675970554352, 0.002972087822854519, 0.4475748538970947, -0.26404842734336853, -0.4991549551486969, -0.08571118116378784, 0.12950153648853302, -0.18084195256233215, 0.06222209706902504, 1.1512526273727417, -0.0055486964993178844, 0.013170663267374039, -0.00535694882273674]} +{"t": 7.094, "q": [-0.12170092016458511, 0.0029963753186166286, 0.004968393128365278, 0.31749141216278076, -0.1854146420955658, -0.010325409471988678, -0.07398559898138046, -0.035238947719335556, 0.024078628048300743, 0.3396148085594177, -0.27086135745048523, 0.025278206914663315, 0.0028256899677217007, 0.07005025446414948, 0.003513558069244027, -0.06569752097129822, 0.06491854786872864, 0.0029361352790147066, 0.44532182812690735, -0.27620044350624084, -0.4978486895561218, -0.09123590588569641, 0.12920193374156952, -0.18079401552677155, 0.06223408132791519, 1.1518638134002686, -0.005560680292546749, 0.013170663267374039, -0.00535694882273674]} +{"t": 7.1107, "q": [-0.12169239670038223, 0.0029793311841785908, 0.005075528286397457, 0.3175084590911865, -0.18542326986789703, -0.010339665226638317, -0.07401968538761139, -0.035238947719335556, 0.024225939065217972, 0.33958926796913147, -0.27076223492622375, 0.02539272978901863, 0.0029997846577316523, 0.07003507018089294, 0.0035237979609519243, -0.06531402468681335, 0.06042446196079254, 0.002948119305074215, 0.4430568218231201, -0.2859915494918823, -0.4974052608013153, -0.09444767981767654, 0.12902216613292694, -0.18084195256233215, 0.062258049845695496, 1.1526787281036377, -0.0055486964993178844, 0.013146694749593735, -0.00535694882273674]} +{"t": 7.1275, "q": [-0.12171796709299088, 0.002928198780864477, 0.00512909609824419, 0.31753402948379517, -0.1854146420955658, -0.010325409471988678, -0.07401968538761139, -0.03531564772129059, 0.02418576367199421, 0.33958926796913147, -0.2707124352455139, 0.025421153753995895, 0.0032944062259048223, 0.07001230865716934, 0.00353915779851377, -0.06517021358013153, 0.055762600153684616, 0.003008040599524975, 0.44040828943252563, -0.29629799723625183, -0.49722549319267273, -0.09686849266290665, 0.1287345439195633, -0.1808060109615326, 0.06223408132791519, 1.1539850234985352, -0.005596633069217205, 0.013170663267374039, -0.005332980304956436]} +{"t": 7.1442, "q": [-0.121709443628788, 0.0029111537151038647, 0.005102312192320824, 0.31762775778770447, -0.1854018121957779, -0.010318252258002758, -0.07400263845920563, -0.03534121438860893, 0.02419915609061718, 0.33964037895202637, -0.2706919014453888, 0.025457046926021576, 0.0033747577108442783, 0.07001230865716934, 0.00353915779851377, -0.06531402468681335, 0.05201153829693794, 0.003067961661145091, 0.4380953311920166, -0.30650854110717773, -0.4967341423034668, -0.0987260490655899, 0.12803946435451508, -0.1808299720287323, 0.06222209706902504, 1.1555548906326294, -0.005560680292546749, 0.013158679008483887, -0.005344964563846588]} +{"t": 7.161, "q": [-0.12173501402139664, 0.0029111537151038647, 0.005155880004167557, 0.317661851644516, -0.18539740145206451, -0.010296933352947235, -0.07403673231601715, -0.03533269092440605, 0.024266114458441734, 0.3396233320236206, -0.2706586420536041, 0.02547115832567215, 0.003334582084789872, 0.07001230865716934, 0.00353915779851377, -0.06544585525989532, 0.048763811588287354, 0.004086620640009642, 0.43630969524383545, -0.31706663966178894, -0.4966262876987457, -0.10064352303743362, 0.12715263664722443, -0.1808539479970932, 0.062246065586805344, 1.1574125289916992, -0.0055367122404277325, 0.013158679008483887, -0.005368933081626892]} +{"t": 7.1778, "q": [-0.12172649055719376, 0.002919676247984171, 0.00516927195712924, 0.31768742203712463, -0.18540170788764954, -0.010304052382707596, -0.07404524832963943, -0.03530712425708771, 0.024292899295687675, 0.33960628509521484, -0.27062103152275085, 0.025463635101914406, 0.003361365757882595, 0.06997435539960861, 0.003564757527783513, -0.06481069326400757, 0.046618636697530746, 0.004290352575480938, 0.43473976850509644, -0.3255155384540558, -0.49665024876594543, -0.10359164327383041, 0.12660135328769684, -0.1808299720287323, 0.06222209706902504, 1.1588146686553955, -0.0055486964993178844, 0.013134710490703583, -0.005344964563846588]} +{"t": 7.1947, "q": [-0.12172649055719376, 0.002919676247984171, 0.00516927195712924, 0.31768742203712463, -0.18539319932460785, -0.010304014198482037, -0.07402820885181427, -0.03532416746020317, 0.024239331483840942, 0.3396148085594177, -0.27061691880226135, 0.025470810011029243, 0.003441717242822051, 0.06998185068368912, 0.0035692586097866297, -0.06369615346193314, 0.04482100158929825, 0.003978762775659561, 0.43331363797187805, -0.3308844566345215, -0.49716559052467346, -0.10800183564424515, 0.1263616681098938, -0.1808539479970932, 0.06222209706902504, 1.1599770784378052, -0.005572664551436901, 0.01312272623181343, -0.005344964563846588]} +{"t": 7.2117, "q": [-0.12173501402139664, 0.002919676247984171, 0.005155880004167557, 0.31767889857292175, -0.18538889288902283, -0.010296895168721676, -0.07403673231601715, -0.03532416746020317, 0.024239331483840942, 0.33960628509521484, -0.27061691880226135, 0.025470810011029243, 0.0037497307639569044, 0.06998953968286514, 0.003554517636075616, -0.06282130628824234, 0.04367051646113396, 0.003798999357968569, 0.4322230815887451, -0.33536654710769653, -0.4983520209789276, -0.11129750311374664, 0.12605008482933044, -0.18084195256233215, 0.06221011281013489, 1.1614272594451904, -0.005572664551436901, 0.013110741972923279, -0.005344964563846588]} +{"t": 7.2286, "q": [-0.121709443628788, 0.002919676247984171, 0.00512909609824419, 0.3177044689655304, -0.18538467586040497, -0.010303976014256477, -0.07403673231601715, -0.03532416746020317, 0.024212546646595, 0.33964037895202637, -0.27061691880226135, 0.025470810011029243, 0.003937217406928539, 0.07002728432416916, 0.0035481599625200033, -0.06191050633788109, 0.04254399985074997, 0.0036072516813874245, 0.43128830194473267, -0.3373679220676422, -0.5002215504646301, -0.11396998167037964, 0.12564261257648468, -0.1808299720287323, 0.06223408132791519, 1.1630570888519287, -0.005572664551436901, 0.013098758645355701, -0.005368933081626892]} +{"t": 7.2454, "q": [-0.121709443628788, 0.002945242915302515, 0.005102312192320824, 0.31773003935813904, -0.1853717416524887, -0.010282601229846478, -0.07401968538761139, -0.035290081053972244, 0.024118803441524506, 0.33968299627304077, -0.27060845494270325, 0.02545631304383278, 0.0041247038170695305, 0.07003497332334518, 0.0035334189888089895, -0.06162288784980774, 0.041729073971509933, 0.0033196303993463516, 0.4300539195537567, -0.33820682764053345, -0.5026184320449829, -0.11542007327079773, 0.12534300982952118, -0.18084195256233215, 0.062246065586805344, 1.1642194986343384, -0.0055486964993178844, 0.01312272623181343, -0.00535694882273674]} +{"t": 7.2621, "q": [-0.121709443628788, 0.0029963753186166286, 0.005035352893173695, 0.31777262687683105, -0.18535050749778748, -0.010289614088833332, -0.07402820885181427, -0.03522190451622009, 0.02405184507369995, 0.33974266052246094, -0.27061691880226135, 0.025470810011029243, 0.004298798739910126, 0.07003497332334518, 0.0035334189888089895, -0.06163487210869789, 0.04128565639257431, 0.003175819758325815, 0.42897534370422363, -0.3377394378185272, -0.5046437382698059, -0.11630690842866898, 0.12519919872283936, -0.18088988959789276, 0.06222209706902504, 1.1650584936141968, -0.0055486964993178844, 0.013098758645355701, -0.00535694882273674]} +{"t": 7.2789, "q": [-0.12169239670038223, 0.003107162658125162, 0.004968393128365278, 0.31777262687683105, -0.18533769249916077, -0.010282456874847412, -0.07403673231601715, -0.03510259464383125, 0.02401166968047619, 0.3397682309150696, -0.27060845494270325, 0.02545631304383278, 0.004258622881025076, 0.07006513327360153, 0.0035321812611073256, -0.06149106100201607, 0.04260392114520073, 0.002948119305074215, 0.4278368353843689, -0.33678069710731506, -0.5060818195343018, -0.11758922040462494, 0.12519919872283936, -0.1808299720287323, 0.06222209706902504, 1.1654778718948364, -0.005560680292546749, 0.013110741972923279, -0.00535694882273674]} +{"t": 7.2957, "q": [-0.12166683375835419, 0.00318386172875762, 0.004861257970333099, 0.3177896738052368, -0.18532486259937286, -0.010275308042764664, -0.07403673231601715, -0.03500032797455788, 0.02401166968047619, 0.33983638882637024, -0.27060407400131226, 0.025434624403715134, 0.004245230928063393, 0.07013323903083801, 0.003505343571305275, -0.061419155448675156, 0.0463310144841671, 0.0028642297256737947, 0.4261949956417084, -0.33396440744400024, -0.5067649483680725, -0.11927899718284607, 0.12522317469120026, -0.18086592853069305, 0.06221011281013489, 1.1656217575073242, -0.005572664551436901, 0.013110741972923279, -0.00535694882273674]} +{"t": 7.3125, "q": [-0.12164978682994843, 0.0032605607993900776, 0.004821082577109337, 0.31778115034103394, -0.18530771136283875, -0.01026101503521204, -0.0740622952580452, -0.03494919463992119, 0.023931317031383514, 0.3398875296115875, -0.2705998420715332, 0.025427374988794327, 0.004178271628916264, 0.07019345462322235, 0.0035124889109283686, -0.06155098229646683, 0.051412325352430344, 0.002205097349360585, 0.42395395040512085, -0.32951825857162476, -0.5074840188026428, -0.12148409336805344, 0.1252351552248001, -0.1808299720287323, 0.06221011281013489, 1.1658254861831665, -0.005560680292546749, 0.013098758645355701, -0.005368933081626892]} +{"t": 7.3292, "q": [-0.12164978682994843, 0.0033202157355844975, 0.004807690624147654, 0.3177641034126282, -0.18529069423675537, -0.010260937735438347, -0.07408785820007324, -0.034863974899053574, 0.023971492424607277, 0.33987900614738464, -0.2705872654914856, 0.02542005479335785, 0.003990784753113985, 0.07026146352291107, 0.003495272481814027, -0.0622820183634758, 0.05705689638853073, 0.0018335864879190922, 0.4220964014530182, -0.32267525792121887, -0.5083588361740112, -0.1245880052447319, 0.1252351552248001, -0.18084195256233215, 0.06223408132791519, 1.1659692525863647, -0.005596633069217205, 0.013098758645355701, -0.005344964563846588]} +{"t": 7.346, "q": [-0.12162422388792038, 0.003413958940654993, 0.00483447453007102, 0.3177470862865448, -0.18529069423675537, -0.010260937735438347, -0.07412195205688477, -0.03478727489709854, 0.023984884843230247, 0.3398875296115875, -0.2705954909324646, 0.025405704975128174, 0.003816690295934677, 0.07034435123205185, 0.00349667901173234, -0.06286924332380295, 0.0637560784816742, 0.00173771264962852, 0.4199512302875519, -0.31826508045196533, -0.509269654750824, -0.12841098010540009, 0.1252351552248001, -0.18088988959789276, 0.06222209706902504, 1.166113018989563, -0.005572664551436901, 0.01312272623181343, -0.005368933081626892]} +{"t": 7.3628, "q": [-0.12162422388792038, 0.0034650913439691067, 0.004821082577109337, 0.3177470862865448, -0.18528227508068085, -0.010275107808411121, -0.07417308539152145, -0.03471909835934639, 0.023998277261853218, 0.3398875296115875, -0.2705998420715332, 0.025427374988794327, 0.0036158119328320026, 0.07041195780038834, 0.0035179464612156153, -0.06296511739492416, 0.07063502073287964, 0.001701759989373386, 0.4171229302883148, -0.31216511130332947, -0.5096651315689087, -0.13071194291114807, 0.12525911629199982, -0.18086592853069305, 0.06221011281013489, 1.1661969423294067, -0.005608617328107357, 0.013098758645355701, -0.005344964563846588]} +{"t": 7.3796, "q": [-0.12163274735212326, 0.003499180544167757, 0.004821082577109337, 0.3177129924297333, -0.1852821707725525, -0.010260908864438534, -0.07426682859659195, -0.034693531692028046, 0.02403845265507698, 0.33987048268318176, -0.2705913782119751, 0.02541287988424301, 0.003361365757882595, 0.07047926634550095, 0.0035680767614394426, -0.0628572627902031, 0.07983890920877457, 0.0007190534961409867, 0.41457030177116394, -0.304770827293396, -0.5097609758377075, -0.13331252336502075, 0.12525911629199982, -0.1808299720287323, 0.062258049845695496, 1.1662927865982056, -0.005620601586997509, 0.01312272623181343, -0.00535694882273674]} +{"t": 7.3964, "q": [-0.12164978682994843, 0.003490658011287451, 0.004888041876256466, 0.31762775778770447, -0.18528638780117035, -0.010253818705677986, -0.07435204833745956, -0.03471057489514351, 0.024145588278770447, 0.33979377150535583, -0.27059972286224365, 0.02541295252740383, 0.00321405497379601, 0.07048675417900085, 0.0035725778434425592, -0.0628812313079834, 0.08885104954242706, 0.00017976337403524667, 0.4129524230957031, -0.29646575450897217, -0.5097130537033081, -0.13590110838413239, 0.12527111172676086, -0.1808539479970932, 0.062258049845695496, 1.1663886308670044, -0.0055367122404277325, 0.013110741972923279, -0.005344964563846588]} +{"t": 7.4132, "q": [-0.12164978682994843, 0.003431003075093031, 0.004968393128365278, 0.3175510764122009, -0.1852821707725525, -0.010260908864438534, -0.07443726807832718, -0.034753188490867615, 0.024239331483840942, 0.3397511839866638, -0.27058714628219604, 0.025405630469322205, 0.0030131766106933355, 0.07052410393953323, 0.00360470381565392, -0.06283329427242279, 0.09875001758337021, -0.0006950850365683436, 0.4121614694595337, -0.2882685661315918, -0.5097370147705078, -0.1374950110912323, 0.12525911629199982, -0.1808539479970932, 0.062198128551244736, 1.1664246320724487, -0.0055486964993178844, 0.01308677438646555, -0.00535694882273674]} +{"t": 7.4302, "q": [-0.12169239670038223, 0.003405436407774687, 0.005102312192320824, 0.3174828886985779, -0.18529058992862701, -0.01024673879146576, -0.07446283847093582, -0.034821365028619766, 0.02435985766351223, 0.3396148085594177, -0.27059561014175415, 0.02542012743651867, 0.003026568330824375, 0.07053149491548538, 0.003618825925514102, -0.06259360909461975, 0.10966764390468597, -0.0014620755100622773, 0.4120536148548126, -0.27747076749801636, -0.5097130537033081, -0.13886122405529022, 0.12529507279396057, -0.18086592853069305, 0.062258049845695496, 1.1665085554122925, -0.005572664551436901, 0.01312272623181343, -0.005344964563846588]} +{"t": 7.4469, "q": [-0.1217520534992218, 0.003252039197832346, 0.00516927195712924, 0.31741470098495483, -0.18529899418354034, -0.010232577100396156, -0.07450544834136963, -0.034991804510354996, 0.02435985766351223, 0.3395636975765228, -0.2705913782119751, 0.02541287988424301, 0.0030131766106933355, 0.07056884467601776, 0.0036509521305561066, -0.06232995539903641, 0.1197943165898323, -0.0017137442482635379, 0.41199368238449097, -0.2688421308994293, -0.5097370147705078, -0.13955630362033844, 0.12531904876232147, -0.18084195256233215, 0.06222209706902504, 1.1664965152740479, -0.005596633069217205, 0.01308677438646555, -0.00535694882273674]} +{"t": 7.4637, "q": [-0.12180318683385849, 0.0031156851910054684, 0.005182663444429636, 0.31726130843162537, -0.18530330061912537, -0.010239696130156517, -0.07453101128339767, -0.035119637846946716, 0.02435985766351223, 0.3394869863986969, -0.2705957591533661, 0.025434549897909164, 0.00321405497379601, 0.0705612525343895, 0.003656072076410055, -0.06199439615011215, 0.13077186048030853, -0.0018335864879190922, 0.41192179918289185, -0.25957831740379333, -0.5097489953041077, -0.1401435285806656, 0.12534300982952118, -0.18086592853069305, 0.06222209706902504, 1.166568398475647, -0.005572664551436901, 0.01308677438646555, -0.005368933081626892]} +{"t": 7.4805, "q": [-0.12193101644515991, 0.0029878527857363224, 0.005196055397391319, 0.3172016441822052, -0.185303196310997, -0.010225487872958183, -0.07455658167600632, -0.03529860079288483, 0.024333074688911438, 0.3393506407737732, -0.2705998420715332, 0.025427374988794327, 0.0034015413839370012, 0.07058372348546982, 0.0036695750895887613, -0.0616828091442585, 0.14246846735477448, -0.0018815234070643783, 0.4118379056453705, -0.24931982159614563, -0.5097969770431519, -0.14082662761211395, 0.12531904876232147, -0.1808539479970932, 0.06223408132791519, 1.1665804386138916, -0.0055486964993178844, 0.013110741972923279, -0.005368933081626892]} +{"t": 7.4973, "q": [-0.12205885350704193, 0.002894109580665827, 0.005236231256276369, 0.31713348627090454, -0.185303196310997, -0.010225487872958183, -0.07458214461803436, -0.035409390926361084, 0.024292899295687675, 0.3392142951488495, -0.2705957591533661, 0.025434549897909164, 0.0036425956059247255, 0.07059091329574585, 0.0037029392551630735, -0.06125137582421303, 0.15348197519779205, -0.0019773971289396286, 0.4116820991039276, -0.2397923618555069, -0.5097730159759521, -0.14174941182136536, 0.1252351552248001, -0.18084195256233215, 0.06222209706902504, 1.166568398475647, -0.0055486964993178844, 0.013110741972923279, -0.005368933081626892]} +{"t": 7.5141, "q": [-0.12208441644906998, 0.0028088889084756374, 0.005276407115161419, 0.3171164393424988, -0.18530741333961487, -0.010218407027423382, -0.07459066808223724, -0.035528700798749924, 0.024306289851665497, 0.3391716778278351, -0.2705957591533661, 0.025434549897909164, 0.00388364982791245, 0.07059810310602188, 0.003736303187906742, -0.0607839897274971, 0.16546620428562164, -0.002169144805520773, 0.4115143120288849, -0.2296297401189804, -0.5098209381103516, -0.1435590386390686, 0.12519919872283936, -0.18084195256233215, 0.062258049845695496, 1.1665924787521362, -0.005608617328107357, 0.01312272623181343, -0.005368933081626892]} +{"t": 7.5309, "q": [-0.12219520658254623, 0.0027066231705248356, 0.005289798602461815, 0.31698861718177795, -0.1853158175945282, -0.010204246267676353, -0.07462475448846817, -0.03562244400382042, 0.024306289851665497, 0.3390353322029114, -0.2705998420715332, 0.025427374988794327, 0.0039506093598902225, 0.0706205740571022, 0.0037498062010854483, -0.060388509184122086, 0.17765416204929352, -0.0027204190846532583, 0.41129860281944275, -0.2193712443113327, -0.5098209381103516, -0.146555095911026, 0.12519919872283936, -0.1808539479970932, 0.06221011281013489, 1.1666643619537354, -0.0055486964993178844, 0.013134710490703583, -0.005368933081626892]} +{"t": 7.548, "q": [-0.1222548633813858, 0.0026640123687684536, 0.005276407115161419, 0.31694599986076355, -0.1853117197751999, -0.010225526057183743, -0.07465032488107681, -0.03569062054157257, 0.024306289851665497, 0.33895862102508545, -0.2705913782119751, 0.02541287988424301, 0.003977392800152302, 0.0706581249833107, 0.003762690583243966, -0.06006493791937828, 0.18872757256031036, -0.0028282771818339825, 0.41107091307640076, -0.2085614651441574, -0.5098448991775513, -0.14913170039653778, 0.1251632422208786, -0.1808299720287323, 0.06221011281013489, 1.166628360748291, -0.005560680292546749, 0.013098758645355701, -0.00535694882273674]} +{"t": 7.5647, "q": [-0.12231451272964478, 0.002629924099892378, 0.005303190555423498, 0.31689485907554626, -0.18532012403011322, -0.010211365297436714, -0.07471849769353867, -0.03573323041200638, 0.024306289851665497, 0.33896714448928833, -0.2705998420715332, 0.025427374988794327, 0.003964001312851906, 0.07070286571979523, 0.003808938665315509, -0.059729378670454025, 0.20022045075893402, -0.003571299137547612, 0.4108072519302368, -0.1985306739807129, -0.5098329186439514, -0.1510971188545227, 0.1251632422208786, -0.1808060109615326, 0.06221011281013489, 1.1666523218154907, -0.005596633069217205, 0.013110741972923279, -0.005368933081626892]} +{"t": 7.5815, "q": [-0.12234008312225342, 0.002638446632772684, 0.005343366414308548, 0.3168692886829376, -0.1853117197751999, -0.010225526057183743, -0.07478667795658112, -0.03573323041200638, 0.024333074688911438, 0.3389330506324768, -0.2705957591533661, 0.025434549897909164, 0.003910433501005173, 0.0707554891705513, 0.003821202553808689, -0.05932191386818886, 0.21109014749526978, -0.004254399798810482, 0.4104597270488739, -0.18675018846988678, -0.5097609758377075, -0.1528947502374649, 0.12517523765563965, -0.18084195256233215, 0.062186144292354584, 1.1666643619537354, -0.005560680292546749, 0.01312272623181343, -0.005368933081626892]} +{"t": 7.5982, "q": [-0.1223486065864563, 0.0026640123687684536, 0.005356758367270231, 0.31686076521873474, -0.18532434105873108, -0.010204275138676167, -0.07486337423324585, -0.03569062054157257, 0.024333074688911438, 0.3389245271682739, -0.2705872654914856, 0.02542005479335785, 0.003816690295934677, 0.07077796012163162, 0.003834707196801901, -0.059058260172605515, 0.22168420255184174, -0.0051891696639359, 0.4104357361793518, -0.17618009448051453, -0.5095093250274658, -0.15506389737129211, 0.1251632422208786, -0.18084195256233215, 0.06221011281013489, 1.1666643619537354, -0.0055486964993178844, 0.013110741972923279, -0.005368933081626892]} +{"t": 7.615, "q": [-0.12234008312225342, 0.0026640123687684536, 0.00542371766641736, 0.31685224175453186, -0.18532001972198486, -0.01019715704023838, -0.07489746809005737, -0.03569062054157257, 0.024333074688911438, 0.3389415740966797, -0.2705998420715332, 0.025427374988794327, 0.003696163184940815, 0.07083018869161606, 0.0038854549638926983, -0.05881857872009277, 0.23151126503944397, -0.005452822428196669, 0.4104597270488739, -0.16314126551151276, -0.5092576742172241, -0.15693342685699463, 0.1251632422208786, -0.18086592853069305, 0.06223408132791519, 1.1666643619537354, -0.0055486964993178844, 0.013098758645355701, -0.005368933081626892]} +{"t": 7.6317, "q": [-0.12235712260007858, 0.0026895790360867977, 0.005410325713455677, 0.316843718290329, -0.18531161546707153, -0.01021132618188858, -0.07488894462585449, -0.03564801067113876, 0.024306289851665497, 0.33895009756088257, -0.2705998420715332, 0.025427374988794327, 0.003575636073946953, 0.0708601251244545, 0.0039034136570990086, -0.05825531855225563, 0.24065522849559784, -0.005872270558029413, 0.4104836881160736, -0.15138472616672516, -0.5090060234069824, -0.15811987221240997, 0.12519919872283936, -0.18084195256233215, 0.06221011281013489, 1.1666643619537354, -0.005596633069217205, 0.013098758645355701, -0.005368933081626892]} +{"t": 7.6485, "q": [-0.12234008312225342, 0.002698101568967104, 0.00542371766641736, 0.31686076521873474, -0.18532001972198486, -0.01019715704023838, -0.07494859397411346, -0.035596877336502075, 0.024333074688911438, 0.3389415740966797, -0.2705954909324646, 0.025405704975128174, 0.0035086767747998238, 0.07089006900787354, 0.0039213597774505615, -0.057440392673015594, 0.24931982159614563, -0.006579339504241943, 0.4104836881160736, -0.13928066194057465, -0.5088741779327393, -0.1589108258485794, 0.12517523765563965, -0.18088988959789276, 0.06223408132791519, 1.1666404008865356, -0.005620601586997509, 0.013098758645355701, -0.005344964563846588]} +{"t": 7.6653, "q": [-0.12236564606428146, 0.0027492339722812176, 0.005410325713455677, 0.3168351948261261, -0.18532434105873108, -0.010204275138676167, -0.0749741643667221, -0.03554574400186539, 0.02434646710753441, 0.3389245271682739, -0.2705998420715332, 0.025427374988794327, 0.003321190131828189, 0.07092010974884033, 0.003929700702428818, -0.05638577789068222, 0.25764885544776917, -0.006902913562953472, 0.4105435907840729, -0.12448015064001083, -0.5087423324584961, -0.15947408974170685, 0.1251392811536789, -0.1808299720287323, 0.062186144292354584, 1.1666404008865356, -0.005572664551436901, 0.013098758645355701, -0.005368933081626892]} +{"t": 7.6821, "q": [-0.12235712260007858, 0.0027833222411572933, 0.00542371766641736, 0.3168266713619232, -0.18532001972198486, -0.01019715704023838, -0.07503382116556168, -0.03554574400186539, 0.02435985766351223, 0.33900123834609985, -0.2705998420715332, 0.025427374988794327, 0.003240838646888733, 0.07092748582363129, 0.003943793475627899, -0.05505553260445595, 0.2656543254852295, -0.007442203816026449, 0.4106874167919159, -0.11023090034723282, -0.5082510113716125, -0.16004933416843414, 0.1251392811536789, -0.18086592853069305, 0.06221011281013489, 1.166628360748291, -0.005584648810327053, 0.013098758645355701, -0.005368933081626892]} +{"t": 7.699, "q": [-0.12237416952848434, 0.0028088889084756374, 0.005437109619379044, 0.31686076521873474, -0.18530741333961487, -0.010218407027423382, -0.07504233717918396, -0.03551165387034416, 0.02435985766351223, 0.33900976181030273, -0.2705998420715332, 0.025427374988794327, 0.003173879347741604, 0.07094234973192215, 0.003962371498346329, -0.05336575582623482, 0.27403128147125244, -0.008556736633181572, 0.4106634557247162, -0.09436378628015518, -0.5080112814903259, -0.1606365591287613, 0.1251392811536789, -0.18081799149513245, 0.06222209706902504, 1.1666043996810913, -0.0055486964993178844, 0.01308677438646555, -0.00535694882273674]} +{"t": 7.7158, "q": [-0.12237416952848434, 0.002800366375595331, 0.00546389352530241, 0.316843718290329, -0.18532001972198486, -0.01019715704023838, -0.0750679075717926, -0.0354946106672287, 0.0243732500821352, 0.3389841914176941, -0.2705957591533661, 0.025434549897909164, 0.003133703488856554, 0.07097239047288895, 0.003970712423324585, -0.05167597904801369, 0.28216859698295593, -0.010222543962299824, 0.41062748432159424, -0.07961120456457138, -0.5079633593559265, -0.16137957572937012, 0.1251392811536789, -0.18086592853069305, 0.06221011281013489, 1.166616439819336, -0.0055486964993178844, 0.013110741972923279, -0.005380917340517044]} +{"t": 7.7325, "q": [-0.12237416952848434, 0.0027833222411572933, 0.005450501572340727, 0.31685224175453186, -0.18531592190265656, -0.010218445211648941, -0.07505938410758972, -0.03550313413143158, 0.024400033056735992, 0.3389841914176941, -0.2705998420715332, 0.025427374988794327, 0.003106919815763831, 0.07100233435630798, 0.003988658543676138, -0.04963866248726845, 0.2910369038581848, -0.01344630029052496, 0.41039979457855225, -0.064079649746418, -0.5080592632293701, -0.16179902851581573, 0.1251392811536789, -0.1808060109615326, 0.062198128551244736, 1.1666404008865356, -0.005560680292546749, 0.013098758645355701, -0.005368933081626892]} +{"t": 7.7494, "q": [-0.12236564606428146, 0.0027833222411572933, 0.00546389352530241, 0.3168266713619232, -0.1853073090314865, -0.010204208083450794, -0.07505938410758972, -0.03552017733454704, 0.024413425475358963, 0.3389841914176941, -0.2705998420715332, 0.025427374988794327, 0.003133703488856554, 0.0710173025727272, 0.003997631371021271, -0.04748149961233139, 0.3007561266422272, -0.017916416749358177, 0.4098604917526245, -0.04836833477020264, -0.5082390308380127, -0.16207465529441833, 0.1251632422208786, -0.1808299720287323, 0.06217416003346443, 1.1666404008865356, -0.005572664551436901, 0.013098758645355701, -0.005368933081626892]} +{"t": 7.7661, "q": [-0.12237416952848434, 0.0027662781067192554, 0.00546389352530241, 0.3168692886829376, -0.18531161546707153, -0.01021132618188858, -0.07504233717918396, -0.03555426374077797, 0.024400033056735992, 0.3389841914176941, -0.2705998420715332, 0.025427374988794327, 0.0032006630208343267, 0.07106220722198486, 0.0040245503187179565, -0.04524045065045357, 0.31001991033554077, -0.022278673946857452, 0.408961683511734, -0.03296860307455063, -0.5084187984466553, -0.1625300645828247, 0.1251632422208786, -0.1808060109615326, 0.06217416003346443, 1.166628360748291, -0.0055367122404277325, 0.013098758645355701, -0.005368933081626892]} +{"t": 7.783, "q": [-0.1223912164568901, 0.002757756505161524, 0.005477285478264093, 0.3168692886829376, -0.1853073090314865, -0.010204208083450794, -0.07505086064338684, -0.03557131066918373, 0.02438664250075817, 0.33900123834609985, -0.2705913782119751, 0.02541287988424301, 0.003240838646888733, 0.07106968760490417, 0.004029035568237305, -0.04314320906996727, 0.3189961016178131, -0.02629338949918747, 0.40809881687164307, -0.016322514042258263, -0.5086105465888977, -0.16322514414787292, 0.1251392811536789, -0.18081799149513245, 0.06221011281013489, 1.166616439819336, -0.005584648810327053, 0.013110741972923279, -0.005368933081626892]} +{"t": 7.7998, "q": [-0.12242530286312103, 0.0027407114394009113, 0.00546389352530241, 0.3168863356113434, -0.18531161546707153, -0.01021132618188858, -0.07505938410758972, -0.03557131066918373, 0.024400033056735992, 0.33900123834609985, -0.2705957591533661, 0.025434549897909164, 0.0033077981788665056, 0.0710921436548233, 0.0040424964390695095, -0.04086620733141899, 0.327181339263916, -0.02913365140557289, 0.40767937898635864, 0.0006831008358858526, -0.5089700222015381, -0.1646033376455307, 0.1251632422208786, -0.18084195256233215, 0.06221011281013489, 1.166628360748291, -0.005596633069217205, 0.013098758645355701, -0.005368933081626892]} +{"t": 7.8165, "q": [-0.12241677939891815, 0.0027407114394009113, 0.005504068918526173, 0.3168692886829376, -0.1853158175945282, -0.010204246267676353, -0.07505086064338684, -0.035596877336502075, 0.024426817893981934, 0.3389756679534912, -0.2705872654914856, 0.02542005479335785, 0.0032810145057737827, 0.07109951972961426, 0.004056589212268591, -0.03828959912061691, 0.3349950611591339, -0.03191399201750755, 0.4074636697769165, 0.016178704798221588, -0.5096052289009094, -0.16656874120235443, 0.1251392811536789, -0.1808060109615326, 0.06222209706902504, 1.166616439819336, -0.005572664551436901, 0.013098758645355701, -0.005368933081626892]} +{"t": 7.8332, "q": [-0.12240825593471527, 0.0027236673049628735, 0.005490677431225777, 0.316911906003952, -0.18530741333961487, -0.010218407027423382, -0.0750252977013588, -0.035596877336502075, 0.024413425475358963, 0.338992714881897, -0.2705872654914856, 0.02542005479335785, 0.003334582084789872, 0.07109203189611435, 0.004052101634442806, -0.03592870756983757, 0.3431682884693146, -0.03570100665092468, 0.40710413455963135, 0.03224955126643181, -0.5104560852050781, -0.1687019318342209, 0.12519919872283936, -0.1808539479970932, 0.062198128551244736, 1.1666523218154907, -0.0055486964993178844, 0.01308677438646555, -0.00535694882273674]} +{"t": 7.85, "q": [-0.12241677939891815, 0.002715145703405142, 0.00546389352530241, 0.31689485907554626, -0.18531151115894318, -0.010197127237915993, -0.07500825077295303, -0.03562244400382042, 0.02435985766351223, 0.33900976181030273, -0.27060407400131226, 0.025434624403715134, 0.0035354604478925467, 0.07111459225416183, 0.0040559545159339905, -0.03419099375605583, 0.35008320212364197, -0.039020638912916183, 0.40700826048851013, 0.045815691351890564, -0.5113069415092468, -0.1699962317943573, 0.12528309226036072, -0.18084195256233215, 0.062198128551244736, 1.1666523218154907, -0.005572664551436901, 0.013098758645355701, -0.00535694882273674]} +{"t": 7.8667, "q": [-0.12245938926935196, 0.002715145703405142, 0.00546389352530241, 0.31690338253974915, -0.18531161546707153, -0.01021132618188858, -0.07500825077295303, -0.03563948720693588, 0.024333074688911438, 0.3390353322029114, -0.2705872654914856, 0.02542005479335785, 0.0038568659219890833, 0.07109962403774261, 0.004046981688588858, -0.032525185495615005, 0.357369601726532, -0.04283162206411362, 0.4069123864173889, 0.05962152034044266, -0.5124334692955017, -0.17081116139888763, 0.1252351552248001, -0.18081799149513245, 0.062186144292354584, 1.1666762828826904, -0.005584648810327053, 0.01312272623181343, -0.005368933081626892]} +{"t": 7.8835, "q": [-0.1224849596619606, 0.0026895790360867977, 0.00546389352530241, 0.31690338253974915, -0.1853029876947403, -0.010197089053690434, -0.07500825077295303, -0.03564801067113876, 0.024333074688911438, 0.3390268087387085, -0.2705957591533661, 0.025434549897909164, 0.00388364982791245, 0.07109203189611435, 0.004052101634442806, -0.030883347615599632, 0.362858384847641, -0.044377587735652924, 0.40655285120010376, 0.0746137872338295, -0.5139315128326416, -0.17132648825645447, 0.1251632422208786, -0.18084195256233215, 0.06222209706902504, 1.1666523218154907, -0.005596633069217205, 0.013110741972923279, -0.005368933081626892]} +{"t": 7.9003, "q": [-0.12250199913978577, 0.0027066231705248356, 0.00546389352530241, 0.316911906003952, -0.1853158175945282, -0.010204246267676353, -0.07500825077295303, -0.03562244400382042, 0.024333074688911438, 0.3390182852745056, -0.2705957591533661, 0.025434549897909164, 0.0038970415480434895, 0.07109962403774261, 0.004046981688588858, -0.02912166714668274, 0.3682273030281067, -0.04562394693493843, 0.4063131809234619, 0.08894691616296768, -0.5163043737411499, -0.17180585861206055, 0.12510332465171814, -0.18081799149513245, 0.06221011281013489, 1.1666404008865356, -0.005584648810327053, 0.013110741972923279, -0.005368933081626892]} +{"t": 7.917, "q": [-0.12249347567558289, 0.0027236673049628735, 0.005490677431225777, 0.31699714064598083, -0.18531161546707153, -0.01021132618188858, -0.07499121129512787, -0.03561392053961754, 0.024333074688911438, 0.33909496665000916, -0.2705957591533661, 0.025434549897909164, 0.003816690295934677, 0.07109962403774261, 0.004046981688588858, -0.027527766302227974, 0.37333258986473083, -0.046307045966386795, 0.40622928738594055, 0.10431069880723953, -0.5195401310920715, -0.17223729193210602, 0.12512730062007904, -0.1808299720287323, 0.06221011281013489, 1.1666523218154907, -0.005608617328107357, 0.013098758645355701, -0.00535694882273674]} +{"t": 7.9338, "q": [-0.12249347567558289, 0.002715145703405142, 0.00546389352530241, 0.31699714064598083, -0.18531151115894318, -0.010197127237915993, -0.07500825077295303, -0.035596877336502075, 0.02435985766351223, 0.33909496665000916, -0.2705872654914856, 0.02542005479335785, 0.003816690295934677, 0.07111459225416183, 0.0040559545159339905, -0.026281405240297318, 0.37722745537757874, -0.046486809849739075, 0.4061693549156189, 0.11848803609609604, -0.522500216960907, -0.17259681224822998, 0.12519919872283936, -0.1808299720287323, 0.06222209706902504, 1.1667122840881348, -0.005584648810327053, 0.01312272623181343, -0.00535694882273674]} +{"t": 7.9507, "q": [-0.12249347567558289, 0.0027236673049628735, 0.00546389352530241, 0.31703120470046997, -0.18530309200286865, -0.010211287997663021, -0.07500825077295303, -0.035596877336502075, 0.024333074688911438, 0.3391290605068207, -0.2705998420715332, 0.025427374988794327, 0.0037899063900113106, 0.07109192758798599, 0.0040617091581225395, -0.025598304346203804, 0.380007803440094, -0.046618636697530746, 0.4061453938484192, 0.130232572555542, -0.5251607298851013, -0.1727406233549118, 0.12525911629199982, -0.1808299720287323, 0.06221011281013489, 1.166688323020935, -0.0055486964993178844, 0.013074790127575397, -0.005368933081626892]} +{"t": 7.9674, "q": [-0.12249347567558289, 0.002757756505161524, 0.005450501572340727, 0.31708234548568726, -0.18530741333961487, -0.010218407027423382, -0.0749741643667221, -0.03557131066918373, 0.024333074688911438, 0.3391631543636322, -0.2705872654914856, 0.02542005479335785, 0.0038568659219890833, 0.07108444720506668, 0.004057221580296755, -0.02539457380771637, 0.3815537691116333, -0.04623514041304588, 0.40600156784057617, 0.13955630362033844, -0.5268744826316833, -0.1727885603904724, 0.12527111172676086, -0.18084195256233215, 0.06223408132791519, 1.1667122840881348, -0.0055486964993178844, 0.01308677438646555, -0.00535694882273674]} +{"t": 7.9842, "q": [-0.1224849596619606, 0.002757756505161524, 0.005383542273193598, 0.3171164393424988, -0.1853117197751999, -0.010225526057183743, -0.0749315544962883, -0.03555426374077797, 0.024239331483840942, 0.3391716778278351, -0.2705872654914856, 0.02542005479335785, 0.0039506093598902225, 0.07106947898864746, 0.004048248287290335, -0.02563425712287426, 0.3816496431827545, -0.045036718249320984, 0.4055701494216919, 0.1462315171957016, -0.5275575518608093, -0.17272864282131195, 0.12525911629199982, -0.18086592853069305, 0.06221011281013489, 1.1667362451553345, -0.005596633069217205, 0.013110741972923279, -0.00535694882273674]} +{"t": 8.0009, "q": [-0.12249347567558289, 0.002757756505161524, 0.005383542273193598, 0.3171931505203247, -0.18531161546707153, -0.01021132618188858, -0.07492303103208542, -0.03557131066918373, 0.024252723902463913, 0.3391972482204437, -0.2705872654914856, 0.02542005479335785, 0.004057744517922401, 0.07106199115514755, 0.004043763503432274, -0.02576608397066593, 0.38121819496154785, -0.04424576088786125, 0.4044915735721588, 0.1491796374320984, -0.5279890298843384, -0.17263276875019073, 0.12519919872283936, -0.18084195256233215, 0.06221011281013489, 1.1667242050170898, -0.0055367122404277325, 0.013098758645355701, -0.005368933081626892]} +{"t": 8.0176, "q": [-0.12247643619775772, 0.0027748006395995617, 0.005356758367270231, 0.31722721457481384, -0.1853158175945282, -0.010204246267676353, -0.07490598410367966, -0.03555426374077797, 0.024266114458441734, 0.3392142951488495, -0.2705872654914856, 0.02542005479335785, 0.0041247038170695305, 0.07106968760490417, 0.004029035568237305, -0.025849973782896996, 0.3808107376098633, -0.04231629893183708, 0.40272989869117737, 0.14963503181934357, -0.5282167196273804, -0.17253689467906952, 0.12517523765563965, -0.18081799149513245, 0.06221011281013489, 1.1667362451553345, -0.0055486964993178844, 0.01308677438646555, -0.00535694882273674]} +{"t": 8.0343, "q": [-0.12246791273355484, 0.0027321898378431797, 0.005329974461346865, 0.3173294961452484, -0.18531161546707153, -0.01021132618188858, -0.07485485076904297, -0.03557131066918373, 0.024212546646595, 0.3392142951488495, -0.2705872654914856, 0.02542005479335785, 0.004392541944980621, 0.07105450332164764, 0.004039275459945202, -0.026341326534748077, 0.37944453954696655, -0.04013517126441002, 0.40166330337524414, 0.14937138557434082, -0.5283605456352234, -0.17223729193210602, 0.12525911629199982, -0.1808539479970932, 0.06222209706902504, 1.1668201684951782, -0.005572664551436901, 0.01308677438646555, -0.005368933081626892]} +{"t": 8.051, "q": [-0.1224849596619606, 0.0027492339722812176, 0.005316582508385181, 0.3173976540565491, -0.18530741333961487, -0.010218407027423382, -0.07485485076904297, -0.03557131066918373, 0.024225939065217972, 0.3392483592033386, -0.2705872654914856, 0.02542005479335785, 0.0045800283551216125, 0.07103953510522842, 0.004030302632600069, -0.026377279311418533, 0.37787461280822754, -0.039092544466257095, 0.400105357170105, 0.14891597628593445, -0.5287919640541077, -0.1720934808254242, 0.12529507279396057, -0.1808299720287323, 0.06223408132791519, 1.1668800115585327, -0.005572664551436901, 0.013110741972923279, -0.00535694882273674]} +{"t": 8.0678, "q": [-0.12249347567558289, 0.0027407114394009113, 0.005303190555423498, 0.3174658417701721, -0.18530741333961487, -0.010218407027423382, -0.0748378112912178, -0.03555426374077797, 0.024239331483840942, 0.33927392959594727, -0.27058303356170654, 0.025412805378437042, 0.004660379607230425, 0.07100918143987656, 0.004050782416015863, -0.026509106159210205, 0.37550172209739685, -0.03803792968392372, 0.3970613479614258, 0.14796923100948334, -0.529139518737793, -0.1718418002128601, 0.12528309226036072, -0.1808539479970932, 0.06221011281013489, 1.166856050491333, -0.0055486964993178844, 0.013110741972923279, -0.005368933081626892]} +{"t": 8.0845, "q": [-0.12249347567558289, 0.0027407114394009113, 0.005289798602461815, 0.31754255294799805, -0.18530741333961487, -0.010218407027423382, -0.07482076436281204, -0.035579830408096313, 0.024225939065217972, 0.33928245306015015, -0.2705957591533661, 0.025434549897909164, 0.004928217735141516, 0.07101677358150482, 0.004045662470161915, -0.026509106159210205, 0.37140312790870667, -0.035293541848659515, 0.39350202679634094, 0.1465071588754654, -0.5300382971763611, -0.17139838635921478, 0.12529507279396057, -0.18081799149513245, 0.06221011281013489, 1.1668680906295776, -0.0055486964993178844, 0.013110741972923279, -0.00535694882273674]} +{"t": 8.1012, "q": [-0.1224849596619606, 0.002715145703405142, 0.005289798602461815, 0.31762775778770447, -0.18531161546707153, -0.01021132618188858, -0.07474406808614731, -0.035596877336502075, 0.02419915609061718, 0.3393591642379761, -0.27058303356170654, 0.025412805378437042, 0.00546389352530241, 0.07097924500703812, 0.0040328362956643105, -0.026569027453660965, 0.3666094243526459, -0.031866054981946945, 0.3905659019947052, 0.14454174041748047, -0.5315243601799011, -0.17095497250556946, 0.1255107969045639, -0.18086592853069305, 0.06221011281013489, 1.1669518947601318, -0.0055367122404277325, 0.013134710490703583, -0.005368933081626892]} +{"t": 8.118, "q": [-0.1224849596619606, 0.002715145703405142, 0.005276407115161419, 0.3177470862865448, -0.1853029876947403, -0.010197089053690434, -0.07474406808614731, -0.035596877336502075, 0.024212546646595, 0.3393932580947876, -0.2705748379230499, 0.025427155196666718, 0.005785298999398947, 0.0709943175315857, 0.004032204393297434, -0.02660498023033142, 0.36074915528297424, -0.027036411687731743, 0.3871024549007416, 0.14212092757225037, -0.5332021713256836, -0.17075124382972717, 0.12547484040260315, -0.18081799149513245, 0.062246065586805344, 1.1669518947601318, -0.0055486964993178844, 0.013146694749593735, -0.00535694882273674]} +{"t": 8.1347, "q": [-0.12251052260398865, 0.002698101568967104, 0.005276407115161419, 0.31778115034103394, -0.1852944791316986, -0.010197050869464874, -0.07475259155035019, -0.035596877336502075, 0.02418576367199421, 0.3394017815589905, -0.2705458104610443, 0.025448551401495934, 0.0059995693154633045, 0.07098682969808578, 0.004027716349810362, -0.02660498023033142, 0.3543975055217743, -0.022194785997271538, 0.38381877541542053, 0.13813017308712006, -0.5356588959693909, -0.1703198105096817, 0.12545086443424225, -0.1808299720287323, 0.06227003410458565, 1.1669878959655762, -0.005572664551436901, 0.01312272623181343, -0.005368933081626892]} +{"t": 8.1515, "q": [-0.12251904606819153, 0.002715145703405142, 0.005236231256276369, 0.3178834319114685, -0.18529027700424194, -0.010204130783677101, -0.07470997422933578, -0.035596877336502075, 0.02417237125337124, 0.3394528925418854, -0.27052924036979675, 0.025462809950113297, 0.00638793408870697, 0.07095689326524734, 0.004009770229458809, -0.027120301499962807, 0.3479020595550537, -0.017736652866005898, 0.38096654415130615, 0.13460682332515717, -0.5399132966995239, -0.16985242068767548, 0.1255107969045639, -0.1808539479970932, 0.06222209706902504, 1.1671197414398193, -0.0055127437226474285, 0.01312272623181343, -0.005368933081626892]} +{"t": 8.1683, "q": [-0.12253609299659729, 0.002715145703405142, 0.005222839303314686, 0.31796011328697205, -0.18528605997562408, -0.010211220011115074, -0.0747014507651329, -0.035579830408096313, 0.024145588278770447, 0.3395210802555084, -0.2705250084400177, 0.02545556239783764, 0.006454893853515387, 0.0709342360496521, 0.004015525337308645, -0.027180222794413567, 0.34147852659225464, -0.013398364186286926, 0.3771315813064575, 0.12957344949245453, -0.5451623797416687, -0.16962473094463348, 0.125486820936203, -0.18084195256233215, 0.06227003410458565, 1.1671797037124634, -0.005560680292546749, 0.013110741972923279, -0.005380917340517044]} +{"t": 8.185, "q": [-0.12255313247442245, 0.0027321898378431797, 0.0052094473503530025, 0.3179686367511749, -0.18529878556728363, -0.01020416896790266, -0.0747014507651329, -0.03557131066918373, 0.024145588278770447, 0.3395296037197113, -0.27050408720970154, 0.025448167696595192, 0.00646828580647707, 0.07091167569160461, 0.004011671990156174, -0.027108317241072655, 0.33386853337287903, -0.007478156592696905, 0.37255361676216125, 0.1236652210354805, -0.5501598119735718, -0.16945694386959076, 0.125486820936203, -0.1808299720287323, 0.06222209706902504, 1.1671676635742188, -0.005560680292546749, 0.013134710490703583, -0.005368933081626892]} +{"t": 8.2018, "q": [-0.12254460901021957, 0.002715145703405142, 0.0052094473503530025, 0.31804534792900085, -0.1852944791316986, -0.010197050869464874, -0.07466736435890198, -0.03557131066918373, 0.02417237125337124, 0.33954665064811707, -0.2704792022705078, 0.02546238712966442, 0.006454893853515387, 0.07091167569160461, 0.004011671990156174, -0.02708434872329235, 0.32592299580574036, -0.0016058861510828137, 0.36858683824539185, 0.11559983342885971, -0.5529282093048096, -0.16927717626094818, 0.12549880146980286, -0.18081799149513245, 0.062258049845695496, 1.167143702507019, -0.0055367122404277325, 0.01312272623181343, -0.005368933081626892]} +{"t": 8.2187, "q": [-0.12260426580905914, 0.0027236673049628735, 0.0052094473503530025, 0.31804534792900085, -0.18529878556728363, -0.01020416896790266, -0.07469293475151062, -0.03557131066918373, 0.02419915609061718, 0.33954665064811707, -0.2704665958881378, 0.02545504830777645, 0.006441501900553703, 0.07089660316705704, 0.004012304358184338, -0.027108317241072655, 0.3175699710845947, 0.003187804017215967, 0.36462005972862244, 0.1077381819486618, -0.5561758875846863, -0.16925321519374847, 0.1255107969045639, -0.18084195256233215, 0.06223408132791519, 1.1671797037124634, -0.0055486964993178844, 0.01312272623181343, -0.005368933081626892]} +{"t": 8.2355, "q": [-0.12262983620166779, 0.002715145703405142, 0.005222839303314686, 0.31809648871421814, -0.1852901577949524, -0.010189914144575596, -0.07468441128730774, -0.03557131066918373, 0.024158980697393417, 0.33951255679130554, -0.2704166769981384, 0.02546904981136322, 0.006655772216618061, 0.07090409100055695, 0.004016791936010122, -0.026916569098830223, 0.3102356493473053, 0.006914897821843624, 0.3623310625553131, 0.0990016832947731, -0.5602145791053772, -0.16925321519374847, 0.12565460801124573, -0.1808539479970932, 0.06221011281013489, 1.1671797037124634, -0.005608617328107357, 0.013110741972923279, -0.005368933081626892]} +{"t": 8.2522, "q": [-0.12269800901412964, 0.002715145703405142, 0.005182663444429636, 0.3181731700897217, -0.1853029876947403, -0.010197089053690434, -0.07469293475151062, -0.035579830408096313, 0.024092020466923714, 0.3395210802555084, -0.2703876495361328, 0.025490446016192436, 0.00672273151576519, 0.07087372988462448, 0.004037271719425917, -0.026269420981407166, 0.30252978205680847, 0.009431585669517517, 0.36112067103385925, 0.08868326991796494, -0.5650202631950378, -0.1693970263004303, 0.12570254504680634, -0.18086592853069305, 0.06221011281013489, 1.1671916246414185, -0.005572664551436901, 0.01312272623181343, -0.005368933081626892]} +{"t": 8.2689, "q": [-0.12283436208963394, 0.002715145703405142, 0.0051424880512058735, 0.3181987404823303, -0.1852901577949524, -0.010189914144575596, -0.07475259155035019, -0.03557131066918373, 0.024105412885546684, 0.33951255679130554, -0.27035054564476013, 0.02554059587419033, 0.006749515421688557, 0.07074470818042755, 0.004124310798943043, -0.025190841406583786, 0.2935296297073364, 0.01342233270406723, 0.35929906368255615, 0.07824500650167465, -0.5693585276603699, -0.16975654661655426, 0.12564261257648468, -0.18084195256233215, 0.06221011281013489, 1.1672155857086182, -0.005584648810327053, 0.013098758645355701, -0.00535694882273674]} +{"t": 8.2856, "q": [-0.12289401888847351, 0.002715145703405142, 0.005155880004167557, 0.31823283433914185, -0.1852901577949524, -0.010189914144575596, -0.07475259155035019, -0.035579830408096313, 0.024078628048300743, 0.33946141600608826, -0.2703215181827545, 0.025561973452568054, 0.006816474720835686, 0.07050195336341858, 0.004278458189219236, -0.02419615164399147, 0.2851286828517914, 0.01599894091486931, 0.3569861054420471, 0.06762698292732239, -0.5717554092407227, -0.17005614936351776, 0.12560667097568512, -0.1808539479970932, 0.062246065586805344, 1.1671916246414185, -0.005560680292546749, 0.013098758645355701, -0.005368933081626892]} +{"t": 8.3024, "q": [-0.12291958183050156, 0.0027066231705248356, 0.005155880004167557, 0.31822431087493896, -0.1852901577949524, -0.010189914144575596, -0.07473554462194443, -0.035579830408096313, 0.024078628048300743, 0.33941030502319336, -0.2703007459640503, 0.025569019839167595, 0.006937001831829548, 0.0703127533197403, 0.004358180798590183, -0.023560985922813416, 0.2758409082889557, 0.017892448231577873, 0.35390615463256836, 0.056589510291814804, -0.5740563869476318, -0.17060743272304535, 0.12560667097568512, -0.1808539479970932, 0.062246065586805344, 1.1672155857086182, -0.005620601586997509, 0.013098758645355701, -0.005368933081626892]} +{"t": 8.3191, "q": [-0.12297071516513824, 0.0027066231705248356, 0.005155880004167557, 0.31823283433914185, -0.18529005348682404, -0.010175714269280434, -0.07473554462194443, -0.03560539707541466, 0.024105412885546684, 0.3394017815589905, -0.2702717185020447, 0.02559039741754532, 0.007111096754670143, 0.07016202062368393, 0.0043643927201628685, -0.023441145196557045, 0.26633742451667786, 0.019666112959384918, 0.3517969250679016, 0.043970122933387756, -0.577639639377594, -0.1708231419324875, 0.12557071447372437, -0.18086592853069305, 0.062246065586805344, 1.1672155857086182, -0.005572664551436901, 0.01312272623181343, -0.00535694882273674]} +{"t": 8.3359, "q": [-0.122987762093544, 0.00267253490164876, 0.0051424880512058735, 0.3182413578033447, -0.18528585135936737, -0.010182795114815235, -0.07473554462194443, -0.035596877336502075, 0.024145588278770447, 0.3393847346305847, -0.270254909992218, 0.02557581104338169, 0.007070920895785093, 0.07004869729280472, 0.004392992705106735, -0.02335725538432598, 0.2556235194206238, 0.02142779529094696, 0.34973564743995667, 0.029109682887792587, -0.5814985632896423, -0.17138640582561493, 0.1255107969045639, -0.1808539479970932, 0.062246065586805344, 1.1671797037124634, -0.005560680292546749, 0.013110741972923279, -0.005368933081626892]} +{"t": 8.3526, "q": [-0.12299628555774689, 0.00267253490164876, 0.005182663444429636, 0.3182584047317505, -0.18528585135936737, -0.010182795114815235, -0.07476963102817535, -0.03561392053961754, 0.02417237125337124, 0.3393932580947876, -0.27022165060043335, 0.0255899578332901, 0.007044136989861727, 0.06991969048976898, 0.0044798231683671474, -0.023261381313204765, 0.2445381134748459, 0.02382463961839676, 0.348333477973938, 0.016178704798221588, -0.5868315696716309, -0.17161411046981812, 0.12547484040260315, -0.1808299720287323, 0.062258049845695496, 1.1671676635742188, -0.005572664551436901, 0.01312272623181343, -0.005368933081626892]} +{"t": 8.3694, "q": [-0.12301332503557205, 0.002681057434529066, 0.00516927195712924, 0.3182413578033447, -0.18528154492378235, -0.010175676085054874, -0.07478667795658112, -0.03561392053961754, 0.02417237125337124, 0.33936768770217896, -0.2702051103115082, 0.025604235008358955, 0.0068566505797207355, 0.06974533945322037, 0.004578082822263241, -0.02287788689136505, 0.2341477870941162, 0.025442510843276978, 0.34684744477272034, 0.0025286716409027576, -0.5912657380104065, -0.1720455437898636, 0.125486820936203, -0.1808539479970932, 0.062246065586805344, 1.1671556234359741, -0.0055367122404277325, 0.013110741972923279, -0.005368933081626892]} +{"t": 8.3861, "q": [-0.12307298183441162, 0.002681057434529066, 0.005196055397391319, 0.3182498812675476, -0.18529005348682404, -0.010175714269280434, -0.07480372488498688, -0.03561392053961754, 0.02419915609061718, 0.33932507038116455, -0.2701927721500397, 0.02562577649950981, 0.006870042532682419, 0.06962411850690842, 0.004640588536858559, -0.02262621745467186, 0.22382937371730804, 0.026161564514040947, 0.344929963350296, -0.012463593855500221, -0.5938782691955566, -0.17238110303878784, 0.12558269500732422, -0.18081799149513245, 0.06223408132791519, 1.1672395467758179, -0.005572664551436901, 0.01308677438646555, -0.005368933081626892]} +{"t": 8.403, "q": [-0.12312411516904831, 0.00267253490164876, 0.0052094473503530025, 0.3182413578033447, -0.18529435992240906, -0.010182833299040794, -0.07481224089860916, -0.03564801067113876, 0.02418576367199421, 0.33928245306015015, -0.270175963640213, 0.025611190125346184, 0.006896826438605785, 0.0695185661315918, 0.004644836764782667, -0.02232661098241806, 0.21357087790966034, 0.0267847441136837, 0.34352782368659973, -0.02582600526511669, -0.5962271690368652, -0.17280054092407227, 0.1256905496120453, -0.1808779090642929, 0.062258049845695496, 1.1672635078430176, -0.0055486964993178844, 0.013110741972923279, -0.005368933081626892]} +{"t": 8.4198, "q": [-0.12313263863325119, 0.0026640123687684536, 0.005196055397391319, 0.3182498812675476, -0.18529857695102692, -0.010175752453505993, -0.07480372488498688, -0.03564801067113876, 0.02418576367199421, 0.3392994999885559, -0.270167738199234, 0.02562553994357586, 0.0068566505797207355, 0.06947343051433563, 0.004637047648429871, -0.021859226748347282, 0.20472651720046997, 0.026640933007001877, 0.3425091505050659, -0.040231045335531235, -0.5987678170204163, -0.17348363995552063, 0.12565460801124573, -0.1809018850326538, 0.062258049845695496, 1.1672395467758179, -0.0055367122404277325, 0.013110741972923279, -0.005368933081626892]} +{"t": 8.4365, "q": [-0.12311559170484543, 0.002655490767210722, 0.0052094473503530025, 0.3182413578033447, -0.18529435992240906, -0.010182833299040794, -0.07480372488498688, -0.03564801067113876, 0.024212546646595, 0.33927392959594727, -0.27016350626945496, 0.025618290528655052, 0.006870042532682419, 0.0695037841796875, 0.004616617225110531, -0.02142779529094696, 0.19539080560207367, 0.026569027453660965, 0.34159836173057556, -0.05281447991728783, -0.6011766791343689, -0.1746101677417755, 0.12558269500732422, -0.1809018850326538, 0.062246065586805344, 1.1672155857086182, -0.0055367122404277325, 0.013110741972923279, -0.00535694882273674]} +{"t": 8.4535, "q": [-0.12314116209745407, 0.002638446632772684, 0.005182663444429636, 0.3182413578033447, -0.18529005348682404, -0.010175714269280434, -0.07480372488498688, -0.03564801067113876, 0.024158980697393417, 0.3393080234527588, -0.27016350626945496, 0.025618290528655052, 0.006843258626759052, 0.06948111951351166, 0.004622329957783222, -0.021152157336473465, 0.1871216893196106, 0.026581011712551117, 0.3406635820865631, -0.06563760340213776, -0.6037053465843201, -0.17590445280075073, 0.1255107969045639, -0.18086592853069305, 0.062258049845695496, 1.1672635078430176, -0.0055486964993178844, 0.013134710490703583, -0.005368933081626892]} +{"t": 8.4703, "q": [-0.12314116209745407, 0.002655490767210722, 0.005182663444429636, 0.3182413578033447, -0.185285747051239, -0.010168595239520073, -0.07482076436281204, -0.03564801067113876, 0.02417237125337124, 0.339290976524353, -0.27016350626945496, 0.025618290528655052, 0.0068566505797207355, 0.06949619948863983, 0.004621724598109722, -0.020624851807951927, 0.1784091591835022, 0.0264851376414299, 0.3394172191619873, -0.0806538388133049, -0.6074204444885254, -0.17736653983592987, 0.1255107969045639, -0.18088988959789276, 0.0622820183634758, 1.1672874689102173, -0.005572664551436901, 0.013110741972923279, -0.005368933081626892]} +{"t": 8.4872, "q": [-0.12314116209745407, 0.002681057434529066, 0.005196055397391319, 0.31823283433914185, -0.1852942556142807, -0.010168633423745632, -0.07481224089860916, -0.03561392053961754, 0.02417237125337124, 0.33928245306015015, -0.2701592743396759, 0.025611042976379395, 0.006776299327611923, 0.06951127201318741, 0.004621116444468498, -0.019833892583847046, 0.17079918086528778, 0.02642521634697914, 0.3374518156051636, -0.09310544282197952, -0.6102367639541626, -0.17858892679214478, 0.125486820936203, -0.1808539479970932, 0.062305986881256104, 1.1672395467758179, -0.005596633069217205, 0.013134710490703583, -0.00535694882273674]} +{"t": 8.5039, "q": [-0.12315820157527924, 0.0026895790360867977, 0.00516927195712924, 0.31822431087493896, -0.18528585135936737, -0.010182795114815235, -0.07482076436281204, -0.035588353872299194, 0.024158980697393417, 0.339290976524353, -0.27016350626945496, 0.025618290528655052, 0.00672273151576519, 0.06949619948863983, 0.004621724598109722, -0.018994996324181557, 0.16322514414787292, 0.02600576914846897, 0.33547443151474, -0.10698317736387253, -0.6124178767204285, -0.17966750264167786, 0.1255347579717636, -0.18086592853069305, 0.0622820183634758, 1.1672755479812622, -0.005608617328107357, 0.01312272623181343, -0.00535694882273674]} +{"t": 8.5207, "q": [-0.1230815052986145, 0.0026895790360867977, 0.0052094473503530025, 0.31822431087493896, -0.18529857695102692, -0.010175752453505993, -0.07482076436281204, -0.03557131066918373, 0.02419915609061718, 0.33931654691696167, -0.27015504240989685, 0.025603795424103737, 0.006655772216618061, 0.06949629634618759, 0.004612114746123552, -0.018323879688978195, 0.15532754361629486, 0.026017753407359123, 0.3335209786891937, -0.1200459823012352, -0.6137002110481262, -0.1804584562778473, 0.1255347579717636, -0.18088988959789276, 0.062246065586805344, 1.1672635078430176, -0.005608617328107357, 0.01312272623181343, -0.00535694882273674]} +{"t": 8.5374, "q": [-0.12309002876281738, 0.0026895790360867977, 0.0052094473503530025, 0.31823283433914185, -0.1852942556142807, -0.010168633423745632, -0.07482076436281204, -0.035596877336502075, 0.02417237125337124, 0.33931654691696167, -0.2701592743396759, 0.025611042976379395, 0.0066289883106946945, 0.06951896846294403, 0.004606401547789574, -0.017952369526028633, 0.1485804319381714, 0.026257436722517014, 0.33226263523101807, -0.13197028636932373, -0.6142035126686096, -0.1808299720287323, 0.1255347579717636, -0.1809018850326538, 0.06227003410458565, 1.167311429977417, -0.005608617328107357, 0.013134710490703583, -0.00535694882273674]} +{"t": 8.5542, "q": [-0.12307298183441162, 0.002715145703405142, 0.005196055397391319, 0.31823283433914185, -0.18529005348682404, -0.010175714269280434, -0.07482076436281204, -0.035579830408096313, 0.024145588278770447, 0.33932507038116455, -0.2701592743396759, 0.025611042976379395, 0.006588812451809645, 0.06952644884586334, 0.004610901232808828, -0.017556890845298767, 0.14232465624809265, 0.0261735487729311, 0.33131590485572815, -0.14617159962654114, -0.6142634749412537, -0.1816808581352234, 0.1255107969045639, -0.18086592853069305, 0.062258049845695496, 1.167311429977417, -0.005584648810327053, 0.01312272623181343, -0.00535694882273674]} +{"t": 8.571, "q": [-0.12309855222702026, 0.002715145703405142, 0.005182663444429636, 0.31822431087493896, -0.185285747051239, -0.010168595239520073, -0.07482076436281204, -0.03556278720498085, 0.02417237125337124, 0.33933359384536743, -0.2701592743396759, 0.025611042976379395, 0.006548637058585882, 0.06951147317886353, 0.004601899068802595, -0.01684982143342495, 0.13685984909534454, 0.0261735487729311, 0.3297819197177887, -0.1592344045639038, -0.6142634749412537, -0.18271149694919586, 0.12545086443424225, -0.1808539479970932, 0.062258049845695496, 1.1672874689102173, -0.005560680292546749, 0.01312272623181343, -0.005368933081626892]} +{"t": 8.5878, "q": [-0.12309855222702026, 0.002715145703405142, 0.00516927195712924, 0.31823283433914185, -0.1852901577949524, -0.010189914144575596, -0.07482076436281204, -0.03555426374077797, 0.02417237125337124, 0.3393421173095703, -0.27015504240989685, 0.025603795424103737, 0.006521853152662516, 0.06949629634618759, 0.004612114746123552, -0.016238626092672348, 0.13189838826656342, 0.02593386359512806, 0.32744500041007996, -0.17185379564762115, -0.6145390868186951, -0.18361032009124756, 0.12545086443424225, -0.18084195256233215, 0.062258049845695496, 1.1673353910446167, -0.005644570104777813, 0.013110741972923279, -0.005368933081626892]} +{"t": 8.6045, "q": [-0.12309855222702026, 0.002715145703405142, 0.005182663444429636, 0.31822431087493896, -0.18529005348682404, -0.010175714269280434, -0.07478667795658112, -0.03557131066918373, 0.02417237125337124, 0.3393421173095703, -0.27015915513038635, 0.0255966205149889, 0.006588812451809645, 0.06951147317886353, 0.004601899068802595, -0.015986956655979156, 0.1260380893945694, 0.02624545246362686, 0.3240174949169159, -0.18787670135498047, -0.6147188544273376, -0.18418556451797485, 0.125486820936203, -0.18086592853069305, 0.062246065586805344, 1.167311429977417, -0.005632585845887661, 0.013134710490703583, -0.00535694882273674]} +{"t": 8.6213, "q": [-0.12309855222702026, 0.00267253490164876, 0.00516927195712924, 0.31822431087493896, -0.18529005348682404, -0.010175714269280434, -0.07476110756397247, -0.03562244400382042, 0.024105412885546684, 0.33936768770217896, -0.2701508104801178, 0.02559654600918293, 0.006695947609841824, 0.06951906532049179, 0.004596791695803404, -0.01607084646821022, 0.12003400176763535, 0.027288081124424934, 0.32038629055023193, -0.20265324413776398, -0.614838719367981, -0.18432937562465668, 0.125486820936203, -0.18086592853069305, 0.062258049845695496, 1.167371392250061, -0.005584648810327053, 0.01312272623181343, -0.005368933081626892]} +{"t": 8.638, "q": [-0.12309002876281738, 0.0026640123687684536, 0.00516927195712924, 0.3182157874107361, -0.18529005348682404, -0.010175714269280434, -0.07476963102817535, -0.03563948720693588, 0.024145588278770447, 0.33937621116638184, -0.2701633870601654, 0.025603868067264557, 0.0067896912805736065, 0.06949659436941147, 0.004583289846777916, -0.016202673316001892, 0.11449728906154633, 0.028067056089639664, 0.3170306980609894, -0.21855631470680237, -0.6148027181625366, -0.18441325426101685, 0.12542690336704254, -0.18088988959789276, 0.062246065586805344, 1.1673953533172607, -0.005572664551436901, 0.013110741972923279, -0.00535694882273674]} +{"t": 8.6548, "q": [-0.12307298183441162, 0.0026640123687684536, 0.00516927195712924, 0.3182413578033447, -0.18528154492378235, -0.010175676085054874, -0.07476110756397247, -0.03563948720693588, 0.024158980697393417, 0.3393847346305847, -0.27015504240989685, 0.025603795424103737, 0.006709339562803507, 0.06948909908533096, 0.004578787367790937, -0.016382435336709023, 0.11048257350921631, 0.027851339429616928, 0.314034640789032, -0.23475898802280426, -0.6146829128265381, -0.18488064408302307, 0.12531904876232147, -0.18086592853069305, 0.06229400262236595, 1.1673953533172607, -0.0055486964993178844, 0.01312272623181343, -0.005368933081626892]} +{"t": 8.6715, "q": [-0.1230815052986145, 0.002681057434529066, 0.005182663444429636, 0.3182413578033447, -0.185285747051239, -0.010168595239520073, -0.07477815449237823, -0.03563948720693588, 0.024239331483840942, 0.33937621116638184, -0.2701466977596283, 0.025603720918297768, 0.006669164169579744, 0.06945914030075073, 0.004560783039778471, -0.016634104773402214, 0.10640793293714523, 0.02767157554626465, 0.310858815908432, -0.24867267906665802, -0.6145870089530945, -0.1855996996164322, 0.12530705332756042, -0.18086592853069305, 0.062258049845695496, 1.1673834323883057, -0.005608617328107357, 0.013146694749593735, -0.00535694882273674]} +{"t": 8.6882, "q": [-0.1230815052986145, 0.0026640123687684536, 0.0052094473503530025, 0.3182498812675476, -0.185285747051239, -0.010168595239520073, -0.07476963102817535, -0.03563948720693588, 0.024239331483840942, 0.33936768770217896, -0.2701425850391388, 0.025610895827412605, 0.00638793408870697, 0.06948181241750717, 0.00455507030710578, -0.016897758468985558, 0.1017221063375473, 0.027240144088864326, 0.30625689029693604, -0.2637368440628052, -0.6139518618583679, -0.18635469675064087, 0.12529507279396057, -0.18088988959789276, 0.06223408132791519, 1.1673953533172607, -0.005560680292546749, 0.013134710490703583, -0.005344964563846588]} +{"t": 8.7052, "q": [-0.12305594235658646, 0.0026640123687684536, 0.005249623209238052, 0.3182584047317505, -0.18528585135936737, -0.010182795114815235, -0.07477815449237823, -0.03563948720693588, 0.024292899295687675, 0.33937621116638184, -0.2701176702976227, 0.025625117123126984, 0.0061736637726426125, 0.06947432458400726, 0.004550567828118801, -0.01756887510418892, 0.0963052362203598, 0.02713228575885296, 0.30288931727409363, -0.27887290716171265, -0.6132208108901978, -0.18697787821292877, 0.12537896633148193, -0.1809018850326538, 0.0622820183634758, 1.1673834323883057, -0.005596633069217205, 0.01312272623181343, -0.005344964563846588]} +{"t": 8.7222, "q": [-0.12306445837020874, 0.00267253490164876, 0.005276407115161419, 0.31828397512435913, -0.18528585135936737, -0.010182795114815235, -0.07481224089860916, -0.03563948720693588, 0.024292899295687675, 0.3393506407737732, -0.2701176702976227, 0.025625117123126984, 0.005865650251507759, 0.0694969892501831, 0.0045448546297848225, -0.01800030656158924, 0.09159543365240097, 0.027156254276633263, 0.29991722106933594, -0.29457226395606995, -0.6120463609695435, -0.18728947639465332, 0.12535499036312103, -0.1808779090642929, 0.06227003410458565, 1.1674073934555054, -0.005560680292546749, 0.013110741972923279, -0.00535694882273674]} +{"t": 8.739, "q": [-0.12307298183441162, 0.00267253490164876, 0.005303190555423498, 0.31827545166015625, -0.18528994917869568, -0.010161514393985271, -0.07482076436281204, -0.03561392053961754, 0.0243732500821352, 0.3393506407737732, -0.2700885236263275, 0.02563205361366272, 0.00546389352530241, 0.06945904344320297, 0.004570393357425928, -0.017724668607115746, 0.08706539869308472, 0.026868632063269615, 0.2974604666233063, -0.3092649281024933, -0.6114591360092163, -0.18816432356834412, 0.12534300982952118, -0.1809018850326538, 0.062246065586805344, 1.1673353910446167, -0.005632585845887661, 0.013110741972923279, -0.00535694882273674]} +{"t": 8.7557, "q": [-0.12309002876281738, 0.002655490767210722, 0.005343366414308548, 0.3182584047317505, -0.1852942556142807, -0.010168633423745632, -0.07482928782701492, -0.03562244400382042, 0.02438664250075817, 0.3392994999885559, -0.2700718641281128, 0.02563190646469593, 0.00542371766641736, 0.06947432458400726, 0.004550567828118801, -0.017676731571555138, 0.08207996189594269, 0.02654505893588066, 0.29507559537887573, -0.3246167004108429, -0.611483097076416, -0.1894945651292801, 0.1254149228334427, -0.18091386556625366, 0.062258049845695496, 1.167359471321106, -0.005572664551436901, 0.013110741972923279, -0.00535694882273674]} +{"t": 8.7724, "q": [-0.12306445837020874, 0.002629924099892378, 0.0053701503202319145, 0.3182584047317505, -0.18528994917869568, -0.010161514393985271, -0.07482076436281204, -0.03568209707736969, 0.024400033056735992, 0.3392994999885559, -0.27007609605789185, 0.025639155879616737, 0.005410325713455677, 0.0694969892501831, 0.0045448546297848225, -0.01804824359714985, 0.07612379640340805, 0.02624545246362686, 0.2926907241344452, -0.3388180136680603, -0.6108239889144897, -0.19098061323165894, 0.12545086443424225, -0.18088988959789276, 0.06227003410458565, 1.1673834323883057, -0.005584648810327053, 0.013110741972923279, -0.005332980304956436]} +{"t": 8.7892, "q": [-0.12306445837020874, 0.0026214024983346462, 0.005383542273193598, 0.3182413578033447, -0.1852942556142807, -0.010168633423745632, -0.0748378112912178, -0.03567357361316681, 0.024426817893981934, 0.3393080234527588, -0.27008017897605896, 0.0256319809705019, 0.005396933760493994, 0.06948940455913544, 0.004549962468445301, -0.018335863947868347, 0.07147391885519028, 0.02642521634697914, 0.2909649908542633, -0.352851539850235, -0.6103206276893616, -0.1922149956226349, 0.1254149228334427, -0.18091386556625366, 0.06223408132791519, 1.1673474311828613, -0.005584648810327053, 0.013098758645355701, -0.005332980304956436]} +{"t": 8.8059, "q": [-0.12309855222702026, 0.002638446632772684, 0.0053701503202319145, 0.31823283433914185, -0.18528994917869568, -0.010161514393985271, -0.07485485076904297, -0.03563948720693588, 0.024426817893981934, 0.33927392959594727, -0.27007609605789185, 0.025639155879616737, 0.005316582508385181, 0.06948181241750717, 0.00455507030710578, -0.01835983246564865, 0.0674472227692604, 0.026461169123649597, 0.2890475392341614, -0.36819136142730713, -0.6093019843101501, -0.19367706775665283, 0.12533102929592133, -0.1809018850326538, 0.062258049845695496, 1.167311429977417, -0.005608617328107357, 0.013098758645355701, -0.005344964563846588]} +{"t": 8.8228, "q": [-0.12310706824064255, 0.0026640123687684536, 0.0053701503202319145, 0.3182072639465332, -0.1852942556142807, -0.010168633423745632, -0.07486337423324585, -0.03564801067113876, 0.024426817893981934, 0.33923131227493286, -0.2700759470462799, 0.025624731555581093, 0.005289798602461815, 0.06945904344320297, 0.004570393357425928, -0.01810816489160061, 0.06401973217725754, 0.02629338949918747, 0.286051481962204, -0.38184139132499695, -0.6089903712272644, -0.19529493153095245, 0.12535499036312103, -0.18091386556625366, 0.06229400262236595, 1.167371392250061, -0.0055486964993178844, 0.01308677438646555, -0.005344964563846588]} +{"t": 8.8396, "q": [-0.12312411516904831, 0.00261287996545434, 0.0053701503202319145, 0.3181561231613159, -0.18529416620731354, -0.010154425166547298, -0.07485485076904297, -0.03567357361316681, 0.024426817893981934, 0.3392057716846466, -0.270084410905838, 0.025639228522777557, 0.0053701503202319145, 0.06947432458400726, 0.004550567828118801, -0.01806022785604, 0.06004096940159798, 0.02599378488957882, 0.28263595700263977, -0.3954554498195648, -0.6087267398834229, -0.19639748334884644, 0.1254149228334427, -0.1809018850326538, 0.06227003410458565, 1.1673834323883057, -0.0055486964993178844, 0.013110741972923279, -0.00535694882273674]} +{"t": 8.8563, "q": [-0.12310706824064255, 0.0025787916965782642, 0.005383542273193598, 0.31809648871421814, -0.18529416620731354, -0.010154425166547298, -0.07487189769744873, -0.03573323041200638, 0.024413425475358963, 0.3391546308994293, -0.27007609605789185, 0.025639155879616737, 0.005316582508385181, 0.06948181241750717, 0.00455507030710578, -0.018455706536769867, 0.05571466311812401, 0.026437200605869293, 0.2793882489204407, -0.4096328020095825, -0.6079118251800537, -0.1970805823802948, 0.12535499036312103, -0.18088988959789276, 0.06227003410458565, 1.167371392250061, -0.005584648810327053, 0.013110741972923279, -0.005344964563846588]} +{"t": 8.873, "q": [-0.12309002876281738, 0.00261287996545434, 0.005383542273193598, 0.3180709183216095, -0.18529847264289856, -0.01016154419630766, -0.07485485076904297, -0.035716187208890915, 0.024413425475358963, 0.33914610743522644, -0.27007609605789185, 0.025639155879616737, 0.005289798602461815, 0.06948181241750717, 0.00455507030710578, -0.018827218562364578, 0.05325789749622345, 0.026209499686956406, 0.2768835425376892, -0.4241097569465637, -0.6074324250221252, -0.19769178330898285, 0.12533102929592133, -0.1809018850326538, 0.062305986881256104, 1.1673953533172607, -0.005572664551436901, 0.013110741972923279, -0.00535694882273674]} +{"t": 8.8898, "q": [-0.12309002876281738, 0.002655490767210722, 0.005383542273193598, 0.31805387139320374, -0.18530267477035522, -0.010154463350772858, -0.07487189769744873, -0.03564801067113876, 0.02438664250075817, 0.3391120135784149, -0.27007609605789185, 0.025639155879616737, 0.005329974461346865, 0.06947432458400726, 0.004550567828118801, -0.01913880743086338, 0.051292482763528824, 0.026029737666249275, 0.2751697897911072, -0.4364415109157562, -0.6071328520774841, -0.1986265480518341, 0.12533102929592133, -0.18086592853069305, 0.062258049845695496, 1.1673834323883057, -0.0055486964993178844, 0.013134710490703583, -0.005332980304956436]} +{"t": 8.9065, "q": [-0.12310706824064255, 0.0026469682343304157, 0.005396933760493994, 0.318036824464798, -0.18529416620731354, -0.010154425166547298, -0.07488894462585449, -0.035656530410051346, 0.02438664250075817, 0.3391120135784149, -0.27007609605789185, 0.025639155879616737, 0.005329974461346865, 0.06947432458400726, 0.004550567828118801, -0.01937849260866642, 0.04939897730946541, 0.02575409971177578, 0.2741391658782959, -0.4476347863674164, -0.6069650650024414, -0.1995733082294464, 0.12533102929592133, -0.18091386556625366, 0.062246065586805344, 1.1673953533172607, -0.005584648810327053, 0.013098758645355701, -0.005320996046066284]} +{"t": 8.9233, "q": [-0.12307298183441162, 0.002681057434529066, 0.0053701503202319145, 0.3180283010005951, -0.18529847264289856, -0.01016154419630766, -0.07492303103208542, -0.03564801067113876, 0.02438664250075817, 0.3391546308994293, -0.27007609605789185, 0.025639155879616737, 0.005289798602461815, 0.06948181241750717, 0.00455507030710578, -0.01973801851272583, 0.04728975147008896, 0.025658225640654564, 0.27392342686653137, -0.4577135145664215, -0.606857180595398, -0.2003283053636551, 0.12535499036312103, -0.1809018850326538, 0.062246065586805344, 1.1673953533172607, -0.005584648810327053, 0.013110741972923279, -0.00535694882273674]} +{"t": 8.94, "q": [-0.12310706824064255, 0.00267253490164876, 0.0053701503202319145, 0.3179856836795807, -0.18529416620731354, -0.010154425166547298, -0.07494007796049118, -0.03561392053961754, 0.02435985766351223, 0.3391205370426178, -0.2700803279876709, 0.025646403431892395, 0.005329974461346865, 0.06948181241750717, 0.00455507030710578, -0.020325245335698128, 0.04508465528488159, 0.026557043194770813, 0.27403128147125244, -0.46863114833831787, -0.6064497232437134, -0.20068784058094025, 0.12535499036312103, -0.18088988959789276, 0.06227003410458565, 1.167371392250061, -0.005572664551436901, 0.013110741972923279, -0.005368933081626892]} +{"t": 8.957, "q": [-0.12309855222702026, 0.0026895790360867977, 0.0053701503202319145, 0.31796011328697205, -0.18529416620731354, -0.010154425166547298, -0.07494007796049118, -0.035588353872299194, 0.024333074688911438, 0.3390864431858063, -0.270084410905838, 0.025639228522777557, 0.005329974461346865, 0.06948181241750717, 0.00455507030710578, -0.020672788843512535, 0.044018059968948364, 0.026760775595903397, 0.27403128147125244, -0.4776912033557892, -0.6059703826904297, -0.20115521550178528, 0.12537896633148193, -0.18086592853069305, 0.06223408132791519, 1.167371392250061, -0.005572664551436901, 0.013110741972923279, -0.005344964563846588]} +{"t": 8.974, "q": [-0.12311559170484543, 0.0026895790360867977, 0.005356758367270231, 0.31794309616088867, -0.18529416620731354, -0.010154425166547298, -0.07495711743831635, -0.035579830408096313, 0.024333074688911438, 0.33909496665000916, -0.27007609605789185, 0.025639155879616737, 0.005316582508385181, 0.06948181241750717, 0.00455507030710578, -0.02064882032573223, 0.04286757484078407, 0.02641323208808899, 0.27405527234077454, -0.4843544363975525, -0.6055389046669006, -0.20206601917743683, 0.12534300982952118, -0.18088988959789276, 0.06227003410458565, 1.167359471321106, -0.005584648810327053, 0.013098758645355701, -0.005332980304956436]} +{"t": 8.9907, "q": [-0.12309002876281738, 0.002681057434529066, 0.005383542273193598, 0.3178919553756714, -0.18529416620731354, -0.010154425166547298, -0.07496564090251923, -0.03561392053961754, 0.02438664250075817, 0.3390864431858063, -0.2700885236263275, 0.02563205361366272, 0.005263015162199736, 0.06948181241750717, 0.00455507030710578, -0.02052897773683071, 0.04175304248929024, 0.02606569044291973, 0.27415114641189575, -0.4907660186290741, -0.6053831577301025, -0.20262928307056427, 0.12534300982952118, -0.18088988959789276, 0.062258049845695496, 1.167371392250061, -0.005608617328107357, 0.01308677438646555, -0.00535694882273674]} +{"t": 9.0075, "q": [-0.12310706824064255, 0.00267253490164876, 0.0053701503202319145, 0.3178749084472656, -0.18529416620731354, -0.010154425166547298, -0.0749741643667221, -0.03562244400382042, 0.024400033056735992, 0.3390864431858063, -0.2700803279876709, 0.025646403431892395, 0.005182663444429636, 0.06948181241750717, 0.00455507030710578, -0.02039715088903904, 0.041189782321453094, 0.025897910818457603, 0.27447471022605896, -0.4952121675014496, -0.6050715446472168, -0.20297682285308838, 0.12535499036312103, -0.1808539479970932, 0.062258049845695496, 1.1673834323883057, -0.005596633069217205, 0.01308677438646555, -0.005344964563846588]} +{"t": 9.0243, "q": [-0.12309855222702026, 0.00267253490164876, 0.005383542273193598, 0.31782376766204834, -0.1852942556142807, -0.010168633423745632, -0.0750252977013588, -0.035630963742733, 0.02438664250075817, 0.3390779197216034, -0.27007609605789185, 0.025639155879616737, 0.00508892023935914, 0.06950438022613525, 0.004558964632451534, -0.02022937312722206, 0.04066247493028641, 0.025670209899544716, 0.27552932500839233, -0.49871155619621277, -0.6043644547462463, -0.20313261449337006, 0.12531904876232147, -0.1808539479970932, 0.06223408132791519, 1.167371392250061, -0.005560680292546749, 0.013098758645355701, -0.005368933081626892]} +{"t": 9.041, "q": [-0.12310706824064255, 0.0026895790360867977, 0.005383542273193598, 0.3178322911262512, -0.18529857695102692, -0.010175752453505993, -0.07503382116556168, -0.035630963742733, 0.024400033056735992, 0.33905234932899475, -0.2700885236263275, 0.02563205361366272, 0.004955001175403595, 0.06948909908533096, 0.004578787367790937, -0.01991778239607811, 0.040950097143650055, 0.02545449510216713, 0.27627235651016235, -0.4996702969074249, -0.6033937335014343, -0.20352809131145477, 0.12531904876232147, -0.1809018850326538, 0.06222209706902504, 1.167359471321106, -0.005560680292546749, 0.013110741972923279, -0.005380917340517044]} +{"t": 9.0577, "q": [-0.12309855222702026, 0.0026895790360867977, 0.005396933760493994, 0.3178322911262512, -0.18530277907848358, -0.01016866322606802, -0.07505938410758972, -0.035596877336502075, 0.024400033056735992, 0.33905234932899475, -0.270092636346817, 0.025624878704547882, 0.004740730859339237, 0.06950418651103973, 0.004578182008117437, -0.01907888613641262, 0.04355067387223244, 0.02545449510216713, 0.27802205085754395, -0.49958640336990356, -0.6013444662094116, -0.20467858016490936, 0.12529507279396057, -0.18088988959789276, 0.06223408132791519, 1.1673953533172607, -0.005584648810327053, 0.013098758645355701, -0.005332980304956436]} +{"t": 9.0746, "q": [-0.12310706824064255, 0.0026895790360867977, 0.005450501572340727, 0.31777262687683105, -0.1852942556142807, -0.010168633423745632, -0.07513608038425446, -0.03561392053961754, 0.024466993287205696, 0.33900976181030273, -0.2700803279876709, 0.025646403431892395, 0.004298798739910126, 0.06952675431966782, 0.004582076333463192, -0.016801884397864342, 0.045995455235242844, 0.02539457380771637, 0.27904069423675537, -0.49909505248069763, -0.598336398601532, -0.20572121441364288, 0.12525911629199982, -0.18088988959789276, 0.062258049845695496, 1.1672395467758179, -0.005572664551436901, 0.01308677438646555, -0.005332980304956436]} +{"t": 9.0913, "q": [-0.12312411516904831, 0.00267253490164876, 0.005490677431225777, 0.31767889857292175, -0.18529847264289856, -0.01016154419630766, -0.07517869770526886, -0.03562244400382042, 0.024493776261806488, 0.338992714881897, -0.270084410905838, 0.025639228522777557, 0.004231838975101709, 0.06952675431966782, 0.004582076333463192, -0.014872423373162746, 0.04909937083721161, 0.025166872888803482, 0.27901673316955566, -0.4983999729156494, -0.5963470339775085, -0.20618858933448792, 0.12528309226036072, -0.18084195256233215, 0.06223408132791519, 1.1672874689102173, -0.005560680292546749, 0.013098758645355701, -0.005332980304956436]} +{"t": 9.1081, "q": [-0.12312411516904831, 0.002681057434529066, 0.005477285478264093, 0.31767037510871887, -0.18529847264289856, -0.01016154419630766, -0.07517869770526886, -0.035656530410051346, 0.024453600868582726, 0.33896714448928833, -0.270084410905838, 0.025639228522777557, 0.004218447022140026, 0.06954172998666763, 0.004591078497469425, -0.013554158620536327, 0.05319797620177269, 0.023932497948408127, 0.27854934334754944, -0.49727344512939453, -0.5939861536026001, -0.20677582919597626, 0.12531904876232147, -0.18086592853069305, 0.06223408132791519, 1.1673953533172607, -0.005608617328107357, 0.013098758645355701, -0.005332980304956436]} +{"t": 9.1249, "q": [-0.12311559170484543, 0.0026895790360867977, 0.005490677431225777, 0.31759366393089294, -0.18529847264289856, -0.01016154419630766, -0.07518721371889114, -0.03563948720693588, 0.024480385705828667, 0.3389756679534912, -0.270084410905838, 0.025639228522777557, 0.004138095770031214, 0.06954193115234375, 0.004571861121803522, -0.01290701050311327, 0.05740443989634514, 0.023680828511714935, 0.2783336341381073, -0.49669820070266724, -0.5917810201644897, -0.2072432041168213, 0.12525911629199982, -0.18086592853069305, 0.06223408132791519, 1.167371392250061, -0.005608617328107357, 0.013110741972923279, -0.005344964563846588]} +{"t": 9.1416, "q": [-0.12310706824064255, 0.0026895790360867977, 0.005490677431225777, 0.3175766170024872, -0.18529416620731354, -0.010154425166547298, -0.07517869770526886, -0.035630963742733, 0.024453600868582726, 0.33900976181030273, -0.2700885236263275, 0.02563205361366272, 0.004004176706075668, 0.0695948526263237, 0.00455532455816865, -0.012655341997742653, 0.06163487210869789, 0.02370479702949524, 0.2784295082092285, -0.4960750341415405, -0.5903429388999939, -0.20779448747634888, 0.12522317469120026, -0.1808779090642929, 0.06222209706902504, 1.167371392250061, -0.005596633069217205, 0.013098758645355701, -0.005332980304956436]} +{"t": 9.1584, "q": [-0.12310706824064255, 0.0027066231705248356, 0.00546389352530241, 0.3175681233406067, -0.18529857695102692, -0.010175752453505993, -0.07519573718309402, -0.03562244400382042, 0.024466993287205696, 0.33900976181030273, -0.2700885236263275, 0.02563205361366272, 0.003803298342972994, 0.06961742043495178, 0.004559218883514404, -0.01224787812680006, 0.06651245057582855, 0.02340519241988659, 0.27836957573890686, -0.4949365258216858, -0.5895519852638245, -0.20887306332588196, 0.1251392811536789, -0.1809018850326538, 0.06223408132791519, 1.167371392250061, -0.005620601586997509, 0.013098758645355701, -0.005320996046066284]} +{"t": 9.1753, "q": [-0.12309855222702026, 0.0027236673049628735, 0.005490677431225777, 0.3175510764122009, -0.18530277907848358, -0.01016866322606802, -0.07523834705352783, -0.035588353872299194, 0.024440210312604904, 0.3390182852745056, -0.2700885236263275, 0.02563205361366272, 0.0036024199798703194, 0.06968522071838379, 0.004561292007565498, -0.011624698527157307, 0.07179749011993408, 0.022913837805390358, 0.278129905462265, -0.49282729625701904, -0.589216411113739, -0.21057482063770294, 0.1251392811536789, -0.18088988959789276, 0.062258049845695496, 1.1673353910446167, -0.005596633069217205, 0.01308677438646555, -0.005344964563846588]} +{"t": 9.1921, "q": [-0.12309002876281738, 0.0027492339722812176, 0.005490677431225777, 0.31753402948379517, -0.1852942556142807, -0.010168633423745632, -0.07527244091033936, -0.035579830408096313, 0.024453600868582726, 0.338992714881897, -0.2700885236263275, 0.02563205361366272, 0.0032810145057737827, 0.06973036378622055, 0.004569080658257008, -0.010689929127693176, 0.07806524634361267, 0.02244645357131958, 0.2778063118457794, -0.48828527331352234, -0.5891565084457397, -0.21318738162517548, 0.1251392811536789, -0.18086592853069305, 0.06223408132791519, 1.1673834323883057, -0.005572664551436901, 0.01308677438646555, -0.005320996046066284]} +{"t": 9.2088, "q": [-0.1230815052986145, 0.0027748006395995617, 0.005504068918526173, 0.3175084590911865, -0.18529005348682404, -0.010175714269280434, -0.07526391744613647, -0.035537220537662506, 0.024466993287205696, 0.338992714881897, -0.270092636346817, 0.025624878704547882, 0.0031872710678726435, 0.06981344521045685, 0.0045513310469686985, -0.00932372733950615, 0.08396147936582565, 0.022554311901330948, 0.27772244811058044, -0.4842585623264313, -0.58913254737854, -0.21589581668376923, 0.12519919872283936, -0.18084195256233215, 0.062246065586805344, 1.167359471321106, -0.005572664551436901, 0.01308677438646555, -0.005332980304956436]} +{"t": 9.2257, "q": [-0.12306445837020874, 0.0027748006395995617, 0.005477285478264093, 0.31749141216278076, -0.1852942556142807, -0.010168633423745632, -0.0752553939819336, -0.03552017733454704, 0.024466993287205696, 0.338992714881897, -0.2700885236263275, 0.02563205361366272, 0.0032810145057737827, 0.06990410387516022, 0.004528457298874855, -0.008616657927632332, 0.08989367634057999, 0.022602248936891556, 0.27620044350624084, -0.4793330430984497, -0.5891684889793396, -0.21783725917339325, 0.12527111172676086, -0.1809018850326538, 0.06223408132791519, 1.167371392250061, -0.0055486964993178844, 0.013098758645355701, -0.005332980304956436]} +{"t": 9.2424, "q": [-0.12306445837020874, 0.0027748006395995617, 0.00546389352530241, 0.31749993562698364, -0.1852942556142807, -0.010168633423745632, -0.07527244091033936, -0.03552017733454704, 0.024440210312604904, 0.33900123834609985, -0.2700885236263275, 0.02563205361366272, 0.0034015413839370012, 0.0701005831360817, 0.004472410771995783, -0.008412926457822323, 0.09767143428325653, 0.021883195266127586, 0.27597272396087646, -0.47660064697265625, -0.5890965461730957, -0.21973076462745667, 0.12525911629199982, -0.18086592853069305, 0.06223408132791519, 1.1674553155899048, -0.005596633069217205, 0.013110741972923279, -0.005344964563846588]} +{"t": 9.2591, "q": [-0.12306445837020874, 0.0027833222411572933, 0.005477285478264093, 0.3175169825553894, -0.1852942556142807, -0.010168633423745632, -0.0752980038523674, -0.035528700798749924, 0.024466993287205696, 0.3390182852745056, -0.2700885236263275, 0.02563205361366272, 0.003334582084789872, 0.07035630196332932, 0.004509821534156799, -0.00806538388133049, 0.10500577837228775, 0.021811289712786674, 0.2763322591781616, -0.4726458489894867, -0.5887730121612549, -0.22215157747268677, 0.12507936358451843, -0.1809018850326538, 0.062258049845695496, 1.1673953533172607, -0.005560680292546749, 0.013098758645355701, -0.005344964563846588]} +{"t": 9.2759, "q": [-0.12307298183441162, 0.0027918447740375996, 0.00546389352530241, 0.31749993562698364, -0.18529005348682404, -0.010175714269280434, -0.07528095692396164, -0.03550313413143158, 0.024453600868582726, 0.3390182852745056, -0.27009275555610657, 0.025639303028583527, 0.003347973804920912, 0.0704536959528923, 0.004558551590889692, -0.007310377433896065, 0.11200457066297531, 0.021919148042798042, 0.27672773599624634, -0.46738478541374207, -0.5885812640190125, -0.2245124727487564, 0.12510332465171814, -0.18093782663345337, 0.06223408132791519, 1.167359471321106, -0.0055486964993178844, 0.013098758645355701, -0.005332980304956436]} +{"t": 9.2926, "q": [-0.12309002876281738, 0.0027918447740375996, 0.00546389352530241, 0.3174828886985779, -0.18528585135936737, -0.010182795114815235, -0.0752980038523674, -0.035528700798749924, 0.024426817893981934, 0.33900976181030273, -0.270092636346817, 0.025624878704547882, 0.0033747577108442783, 0.07052105665206909, 0.004598931409418583, -0.006195844616740942, 0.11921907216310501, 0.021823273971676826, 0.276787668466568, -0.46124887466430664, -0.5884254574775696, -0.226262167096138, 0.1251632422208786, -0.1809018850326538, 0.062258049845695496, 1.1673953533172607, -0.0055486964993178844, 0.013110741972923279, -0.005332980304956436]} +{"t": 9.3093, "q": [-0.1230815052986145, 0.0027833222411572933, 0.00546389352530241, 0.31749993562698364, -0.185285747051239, -0.010168595239520073, -0.07530652731657028, -0.035528700798749924, 0.024453600868582726, 0.3389841914176941, -0.2701011300086975, 0.02563939429819584, 0.003347973804920912, 0.07058092951774597, 0.0046348231844604015, -0.004997421987354755, 0.12716461718082428, 0.02160755731165409, 0.2768595814704895, -0.45408228039741516, -0.5882337093353271, -0.2280118763446808, 0.12517523765563965, -0.18088988959789276, 0.062246065586805344, 1.1674073934555054, -0.005572664551436901, 0.013098758645355701, -0.005332980304956436]} +{"t": 9.326, "q": [-0.1230815052986145, 0.002757756505161524, 0.005490677431225777, 0.31745731830596924, -0.18528994917869568, -0.010161514393985271, -0.07534061372280121, -0.035528700798749924, 0.02452056109905243, 0.3389756679534912, -0.270092636346817, 0.025624878704547882, 0.003347973804920912, 0.07058082520961761, 0.004644416272640228, -0.004062652587890625, 0.13428324460983276, 0.021451763808727264, 0.2764401137828827, -0.4464123845100403, -0.5882097482681274, -0.22919830679893494, 0.12519919872283936, -0.18088988959789276, 0.06221011281013489, 1.167371392250061, -0.005572664551436901, 0.013098758645355701, -0.005332980304956436]} +{"t": 9.3428, "q": [-0.1230815052986145, 0.002757756505161524, 0.005477285478264093, 0.3174828886985779, -0.18529847264289856, -0.01016154419630766, -0.0752980038523674, -0.03557131066918373, 0.024466993287205696, 0.3389756679534912, -0.270097017288208, 0.025646569207310677, 0.0034283252898603678, 0.0706033781170845, 0.0046482812613248825, -0.0037510625552386045, 0.14191719889640808, 0.02087652124464512, 0.2760566174983978, -0.4388144016265869, -0.5882337093353271, -0.23032481968402863, 0.12517523765563965, -0.18088988959789276, 0.06221011281013489, 1.1674193143844604, -0.005572664551436901, 0.01312272623181343, -0.005332980304956436]} +{"t": 9.3595, "q": [-0.12309002876281738, 0.002715145703405142, 0.005477285478264093, 0.317474365234375, -0.185285747051239, -0.010168595239520073, -0.07528948038816452, -0.03561392053961754, 0.024493776261806488, 0.3389756679534912, -0.270097017288208, 0.025646569207310677, 0.0034952848218381405, 0.0706862285733223, 0.004649663344025612, -0.0036551887169480324, 0.14889201521873474, 0.020361198112368584, 0.2761405110359192, -0.4315519630908966, -0.5881977677345276, -0.2322063446044922, 0.1251632422208786, -0.18091386556625366, 0.062198128551244736, 1.1674073934555054, -0.005596633069217205, 0.013110741972923279, -0.00535694882273674]} +{"t": 9.3763, "q": [-0.12309002876281738, 0.0027066231705248356, 0.005490677431225777, 0.31749141216278076, -0.185285747051239, -0.010168595239520073, -0.0752980038523674, -0.03563948720693588, 0.024493776261806488, 0.338992714881897, -0.2700885236263275, 0.02563205361366272, 0.003575636073946953, 0.07074620574712753, 0.004675959702581167, -0.0036072516813874245, 0.15548333525657654, 0.019690081477165222, 0.2762603461742401, -0.42533212900161743, -0.5881498456001282, -0.235022634267807, 0.12510332465171814, -0.18086592853069305, 0.06223408132791519, 1.167359471321106, -0.005596633069217205, 0.013098758645355701, -0.005344964563846588]} +{"t": 9.393, "q": [-0.12309002876281738, 0.0026895790360867977, 0.005490677431225777, 0.317474365234375, -0.185285747051239, -0.010168595239520073, -0.07528948038816452, -0.03562244400382042, 0.02450716868042946, 0.3389841914176941, -0.27008429169654846, 0.025624806061387062, 0.0036024199798703194, 0.07075348496437073, 0.004699636250734329, -0.003379551460966468, 0.16251808404922485, 0.018623486161231995, 0.2763802111148834, -0.41821351647377014, -0.5881138443946838, -0.23813854157924652, 0.1251392811536789, -0.1809018850326538, 0.06223408132791519, 1.1673953533172607, -0.005572664551436901, 0.013098758645355701, -0.005344964563846588]} +{"t": 9.4099, "q": [-0.12309002876281738, 0.002715145703405142, 0.005504068918526173, 0.31749141216278076, -0.18528585135936737, -0.010182795114815235, -0.0752980038523674, -0.03563948720693588, 0.024493776261806488, 0.3389756679534912, -0.2700885236263275, 0.02563205361366272, 0.0036158119328320026, 0.07079111039638519, 0.004702878650277853, -0.0027443876024335623, 0.16921725869178772, 0.0171494260430336, 0.27629631757736206, -0.4116101861000061, -0.5881258249282837, -0.24007998406887054, 0.12519919872283936, -0.18091386556625366, 0.06223408132791519, 1.167431354522705, -0.0055486964993178844, 0.013110741972923279, -0.005344964563846588]} +{"t": 9.4266, "q": [-0.1230815052986145, 0.002698101568967104, 0.005490677431225777, 0.3174828886985779, -0.18530277907848358, -0.01016866322606802, -0.0752980038523674, -0.03562244400382042, 0.02450716868042946, 0.3389756679534912, -0.2700885236263275, 0.02563205361366272, 0.003575636073946953, 0.07078363001346588, 0.004698393866419792, -0.0024327978026121855, 0.17514945566654205, 0.01619068905711174, 0.2763442397117615, -0.40316131711006165, -0.5881258249282837, -0.2421892136335373, 0.12519919872283936, -0.18088988959789276, 0.062198128551244736, 1.1674792766571045, -0.0055486964993178844, 0.013098758645355701, -0.005344964563846588]} +{"t": 9.4434, "q": [-0.1230815052986145, 0.002715145703405142, 0.005504068918526173, 0.3174658417701721, -0.18529847264289856, -0.01016154419630766, -0.07531505078077316, -0.03563948720693588, 0.02456073649227619, 0.3389756679534912, -0.2700885236263275, 0.02563205361366272, 0.00354885240085423, 0.07080607861280441, 0.004711851943284273, -0.0016658073291182518, 0.18132132291793823, 0.014968297444283962, 0.2763442397117615, -0.3965100646018982, -0.588101863861084, -0.2449815273284912, 0.12517523765563965, -0.18091386556625366, 0.06223408132791519, 1.1674792766571045, -0.0055367122404277325, 0.013110741972923279, -0.005344964563846588]} +{"t": 9.4601, "q": [-0.12306445837020874, 0.002698101568967104, 0.0055442447774112225, 0.31749141216278076, -0.18528585135936737, -0.010182795114815235, -0.07531505078077316, -0.03563948720693588, 0.024574128910899162, 0.33900123834609985, -0.2700885236263275, 0.02563205361366272, 0.0034283252898603678, 0.07085857540369034, 0.00473366305232048, -0.0007070692954584956, 0.18667827546596527, 0.013925669714808464, 0.27635622024536133, -0.38855254650115967, -0.5880539417266846, -0.246731236577034, 0.1251632422208786, -0.18092584609985352, 0.06221011281013489, 1.1674193143844604, -0.005572664551436901, 0.013110741972923279, -0.005344964563846588]} +{"t": 9.4769, "q": [-0.12306445837020874, 0.0027321898378431797, 0.005530852824449539, 0.317474365234375, -0.18528994917869568, -0.010161514393985271, -0.07531505078077316, -0.03560539707541466, 0.02454734407365322, 0.33900123834609985, -0.27008840441703796, 0.025617631152272224, 0.003347973804920912, 0.0708734393119812, 0.004752231761813164, 0.000431432097684592, 0.192191019654274, 0.01276320032775402, 0.27632027864456177, -0.3795643746852875, -0.5880659222602844, -0.2474023401737213, 0.1251632422208786, -0.18091386556625366, 0.06227003410458565, 1.167431354522705, -0.005572664551436901, 0.013098758645355701, -0.005344964563846588]} +{"t": 9.4936, "q": [-0.12306445837020874, 0.0027236673049628735, 0.005530852824449539, 0.3174658417701721, -0.18529847264289856, -0.01016154419630766, -0.07534061372280121, -0.035588353872299194, 0.02452056109905243, 0.3390182852745056, -0.270097017288208, 0.025646569207310677, 0.0032944062259048223, 0.07089599221944809, 0.004756097216159105, 0.0015459650894626975, 0.19753599166870117, 0.011540808714926243, 0.2763442397117615, -0.37040844559669495, -0.5880659222602844, -0.24786972999572754, 0.1251632422208786, -0.18092584609985352, 0.06223408132791519, 1.1674432754516602, -0.0055486964993178844, 0.013098758645355701, -0.005344964563846588]} +{"t": 9.5106, "q": [-0.12306445837020874, 0.0027321898378431797, 0.005530852824449539, 0.317474365234375, -0.18529847264289856, -0.01016154419630766, -0.07533209025859833, -0.035579830408096313, 0.02454734407365322, 0.33900976181030273, -0.2700885236263275, 0.02563205361366272, 0.0033077981788665056, 0.07092592865228653, 0.004774042870849371, 0.0025166873820126057, 0.20173045992851257, 0.01113334484398365, 0.27640417218208313, -0.3598143756389618, -0.588101863861084, -0.2481573522090912, 0.12517523765563965, -0.18094982206821442, 0.06221011281013489, 1.167431354522705, -0.0055486964993178844, 0.01308677438646555, -0.005332980304956436]} +{"t": 9.5273, "q": [-0.12307298183441162, 0.0027236673049628735, 0.005530852824449539, 0.3174828886985779, -0.1852942556142807, -0.010168633423745632, -0.07532356679439545, -0.035596877336502075, 0.02452056109905243, 0.33900123834609985, -0.270092636346817, 0.025624878704547882, 0.003321190131828189, 0.07091855257749557, 0.0047599622048437595, 0.0036791572347283363, 0.20705145597457886, 0.008844357915222645, 0.27635622024536133, -0.3505985140800476, -0.5882816314697266, -0.2484569549560547, 0.12519919872283936, -0.18091386556625366, 0.06222209706902504, 1.1674432754516602, -0.005560680292546749, 0.013098758645355701, -0.00535694882273674]} +{"t": 9.544, "q": [-0.12306445837020874, 0.0027236673049628735, 0.005517460871487856, 0.317474365234375, -0.18529005348682404, -0.010175714269280434, -0.07531505078077316, -0.035588353872299194, 0.02452056109905243, 0.33900123834609985, -0.270097017288208, 0.025646569207310677, 0.0035086767747998238, 0.07092592865228653, 0.004774042870849371, 0.004745753016322851, 0.21309150755405426, 0.005824333522468805, 0.2763442397117615, -0.33905771374702454, -0.5883535742759705, -0.24867267906665802, 0.1251872181892395, -0.1809018850326538, 0.062246065586805344, 1.1674672365188599, -0.0055486964993178844, 0.01308677438646555, -0.005344964563846588]} +{"t": 9.5613, "q": [-0.1230815052986145, 0.0027407114394009113, 0.005517460871487856, 0.317474365234375, -0.1852901577949524, -0.010189914144575596, -0.07532356679439545, -0.035596877336502075, 0.024493776261806488, 0.3390182852745056, -0.270092636346817, 0.025624878704547882, 0.003589028026908636, 0.07092592865228653, 0.004774042870849371, 0.005764412228018045, 0.21913155913352966, 0.0023249397054314613, 0.2763322591781616, -0.32847562432289124, -0.5884374380111694, -0.24894830584526062, 0.12517523765563965, -0.18094982206821442, 0.06222209706902504, 1.1674432754516602, -0.005560680292546749, 0.013110741972923279, -0.005344964563846588]} +{"t": 9.5781, "q": [-0.12309002876281738, 0.0027321898378431797, 0.005504068918526173, 0.31749141216278076, -0.18528585135936737, -0.010182795114815235, -0.07530652731657028, -0.035596877336502075, 0.02452056109905243, 0.33904382586479187, -0.2700885236263275, 0.02563205361366272, 0.0036827712319791317, 0.07096345722675323, 0.004786881152540445, 0.006639260798692703, 0.22426080703735352, 0.0003115898580290377, 0.27629631757736206, -0.31573641300201416, -0.5885932445526123, -0.2491280734539032, 0.1251392811536789, -0.18088988959789276, 0.06222209706902504, 1.1674553155899048, -0.005584648810327053, 0.013110741972923279, -0.005344964563846588]} +{"t": 9.5949, "q": [-0.12309002876281738, 0.0027407114394009113, 0.005490677431225777, 0.3175084590911865, -0.185285747051239, -0.010168595239520073, -0.07531505078077316, -0.035596877336502075, 0.024493776261806488, 0.33906087279319763, -0.2700885236263275, 0.02563205361366272, 0.0037095551379024982, 0.07095576077699661, 0.004801581613719463, 0.007130614016205072, 0.22917434573173523, -0.0023728765081614256, 0.27632027864456177, -0.3052741587162018, -0.5890965461730957, -0.24918799102306366, 0.12517523765563965, -0.1809018850326538, 0.06222209706902504, 1.1674672365188599, -0.005560680292546749, 0.013110741972923279, -0.005344964563846588]} +{"t": 9.6116, "q": [-0.12309002876281738, 0.0027236673049628735, 0.005517460871487856, 0.3175255060195923, -0.1852942556142807, -0.010168633423745632, -0.07532356679439545, -0.035596877336502075, 0.02452056109905243, 0.3390268087387085, -0.270097017288208, 0.025646569207310677, 0.0037095551379024982, 0.07094079256057739, 0.0047926087863743305, 0.007789746392518282, 0.2343994677066803, -0.004601942375302315, 0.2763082981109619, -0.29307422041893005, -0.5897676944732666, -0.24925990402698517, 0.12519919872283936, -0.1809018850326538, 0.06222209706902504, 1.1674553155899048, -0.0055486964993178844, 0.01312272623181343, -0.00535694882273674]} +{"t": 9.6284, "q": [-0.12309855222702026, 0.0027236673049628735, 0.005530852824449539, 0.3175084590911865, -0.1852942556142807, -0.010168633423745632, -0.07532356679439545, -0.03560539707541466, 0.02454734407365322, 0.3390182852745056, -0.2700885236263275, 0.02563205361366272, 0.003589028026908636, 0.07095576077699661, 0.004801581613719463, 0.008796420879662037, 0.23895347118377686, -0.005656554363667965, 0.2762843370437622, -0.2802271246910095, -0.5903908610343933, -0.24941569566726685, 0.12517523765563965, -0.18088988959789276, 0.06223408132791519, 1.167431354522705, -0.0055486964993178844, 0.013110741972923279, -0.005332980304956436]} +{"t": 9.6451, "q": [-0.12309002876281738, 0.002715145703405142, 0.005530852824449539, 0.3175084590911865, -0.18529847264289856, -0.01016154419630766, -0.07530652731657028, -0.03560539707541466, 0.02454734407365322, 0.33904382586479187, -0.2700885236263275, 0.02563205361366272, 0.003655987558886409, 0.07095576077699661, 0.004801581613719463, 0.009731191210448742, 0.24217721819877625, -0.00618386035785079, 0.27525368332862854, -0.26916569471359253, -0.5919248461723328, -0.2497752159833908, 0.12522317469120026, -0.1809018850326538, 0.06222209706902504, 1.1674911975860596, -0.005572664551436901, 0.013098758645355701, -0.00535694882273674]} +{"t": 9.6619, "q": [-0.12309002876281738, 0.002715145703405142, 0.005530852824449539, 0.3175084590911865, -0.1852942556142807, -0.010168633423745632, -0.0752980038523674, -0.03562244400382042, 0.024493776261806488, 0.33906087279319763, -0.2700885236263275, 0.02563205361366272, 0.003696163184940815, 0.07097093760967255, 0.0047913664020597935, 0.010414292104542255, 0.24597622454166412, -0.006579339504241943, 0.2737436592578888, -0.2573612332344055, -0.5933030247688293, -0.250002920627594, 0.12522317469120026, -0.18088988959789276, 0.062246065586805344, 1.1674672365188599, -0.005572664551436901, 0.01312272623181343, -0.00535694882273674]} +{"t": 9.6788, "q": [-0.12307298183441162, 0.002715145703405142, 0.005517460871487856, 0.31754255294799805, -0.185285747051239, -0.010168595239520073, -0.07528095692396164, -0.03562244400382042, 0.02452056109905243, 0.33904382586479187, -0.270092636346817, 0.025624878704547882, 0.0037631227169185877, 0.0709482803940773, 0.0047970968298614025, 0.011121360585093498, 0.2507699131965637, -0.006747118663042784, 0.27175429463386536, -0.24410668015480042, -0.5944654941558838, -0.2502546012401581, 0.12519919872283936, -0.18091386556625366, 0.06222209706902504, 1.167431354522705, -0.0055486964993178844, 0.013110741972923279, -0.00535694882273674]} +{"t": 9.6956, "q": [-0.1230815052986145, 0.002715145703405142, 0.005504068918526173, 0.31753402948379517, -0.18528154492378235, -0.010175676085054874, -0.07528095692396164, -0.03560539707541466, 0.024466993287205696, 0.33905234932899475, -0.270097017288208, 0.025646569207310677, 0.0037899063900113106, 0.07096335291862488, 0.004796474240720272, 0.01176850963383913, 0.25577932596206665, -0.0070946612395346165, 0.26938140392303467, -0.2325538843870163, -0.5958676338195801, -0.25086578726768494, 0.1251632422208786, -0.18086592853069305, 0.062246065586805344, 1.1674432754516602, -0.0055367122404277325, 0.013110741972923279, -0.00535694882273674]} +{"t": 9.7123, "q": [-0.1230815052986145, 0.0027321898378431797, 0.005504068918526173, 0.31759366393089294, -0.1852942556142807, -0.010168633423745632, -0.0752980038523674, -0.035596877336502075, 0.024493776261806488, 0.33906087279319763, -0.2700885236263275, 0.02563205361366272, 0.0038434739690274, 0.07096335291862488, 0.004796474240720272, 0.01270327903330326, 0.2604292035102844, -0.00717855105176568, 0.26638534665107727, -0.22088125348091125, -0.5975574254989624, -0.2518724501132965, 0.1252111792564392, -0.18084195256233215, 0.06221011281013489, 1.1674911975860596, -0.0055486964993178844, 0.01312272623181343, -0.005332980304956436]} +{"t": 9.7292, "q": [-0.12307298183441162, 0.0027236673049628735, 0.005517460871487856, 0.3176107108592987, -0.185285747051239, -0.010168595239520073, -0.07528095692396164, -0.035596877336502075, 0.024493776261806488, 0.33909496665000916, -0.27008429169654846, 0.025624806061387062, 0.003910433501005173, 0.07096335291862488, 0.004796474240720272, 0.013206616044044495, 0.2647794783115387, -0.007370298728346825, 0.2634612023830414, -0.2090408354997635, -0.5994629263877869, -0.25368207693099976, 0.1252351552248001, -0.18092584609985352, 0.06223408132791519, 1.1674911975860596, -0.005560680292546749, 0.013098758645355701, -0.005344964563846588]} +{"t": 9.7459, "q": [-0.1230815052986145, 0.0027236673049628735, 0.005517460871487856, 0.3176107108592987, -0.18528154492378235, -0.010175676085054874, -0.0752980038523674, -0.035579830408096313, 0.024480385705828667, 0.3391205370426178, -0.27009686827659607, 0.02563212811946869, 0.003910433501005173, 0.07095576077699661, 0.004801581613719463, 0.013685985468327999, 0.2698967456817627, -0.008077368140220642, 0.25987792015075684, -0.19785955548286438, -0.6014043688774109, -0.2570975720882416, 0.1252351552248001, -0.18091386556625366, 0.06221011281013489, 1.1674911975860596, -0.005572664551436901, 0.013098758645355701, -0.005344964563846588]} +{"t": 9.7626, "q": [-0.1230815052986145, 0.002757756505161524, 0.005490677431225777, 0.3176107108592987, -0.18527312576770782, -0.010189846158027649, -0.0752980038523674, -0.03555426374077797, 0.024466993287205696, 0.3391120135784149, -0.2700885236263275, 0.02563205361366272, 0.0039506093598902225, 0.07095576077699661, 0.004801581613719463, 0.014057496562600136, 0.27567312121391296, -0.009335711598396301, 0.256462424993515, -0.1853240579366684, -0.604160726070404, -0.26024943590164185, 0.1252111792564392, -0.18086592853069305, 0.06223408132791519, 1.1674672365188599, -0.005572664551436901, 0.013110741972923279, -0.005344964563846588]} +{"t": 9.7794, "q": [-0.12307298183441162, 0.002757756505161524, 0.005504068918526173, 0.31763628125190735, -0.18528585135936737, -0.010182795114815235, -0.07527244091033936, -0.03555426374077797, 0.024480385705828667, 0.33914610743522644, -0.2700885236263275, 0.02563205361366272, 0.003990784753113985, 0.07096335291862488, 0.004796474240720272, 0.014225275255739689, 0.28046682476997375, -0.010426276363432407, 0.2546767592430115, -0.17530524730682373, -0.6080196499824524, -0.2633293867111206, 0.1252351552248001, -0.18091386556625366, 0.06223408132791519, 1.1674672365188599, -0.0055486964993178844, 0.01308677438646555, -0.00535694882273674]} +{"t": 9.7961, "q": [-0.1230815052986145, 0.0027492339722812176, 0.005490677431225777, 0.3176533281803131, -0.18528585135936737, -0.010182795114815235, -0.0752553939819336, -0.03557131066918373, 0.024453600868582726, 0.33914610743522644, -0.2700885236263275, 0.02563205361366272, 0.004044352564960718, 0.07097093760967255, 0.0047913664020597935, 0.014249243773519993, 0.28533241152763367, -0.011492871679365635, 0.2536461353302002, -0.16291356086730957, -0.6116748452186584, -0.2668048143386841, 0.12525911629199982, -0.18091386556625366, 0.062246065586805344, 1.1674672365188599, -0.0055486964993178844, 0.01312272623181343, -0.005344964563846588]} +{"t": 9.8129, "q": [-0.12310706824064255, 0.0027407114394009113, 0.005490677431225777, 0.3176533281803131, -0.18528154492378235, -0.010175676085054874, -0.07524687051773071, -0.035579830408096313, 0.024480385705828667, 0.3391631543636322, -0.27008429169654846, 0.025624806061387062, 0.004084527958184481, 0.07096335291862488, 0.004796474240720272, 0.014381070621311665, 0.29118072986602783, -0.014093449339270592, 0.25271135568618774, -0.15155251324176788, -0.6142154932022095, -0.2689499855041504, 0.12525911629199982, -0.18088988959789276, 0.06223408132791519, 1.1674792766571045, -0.005560680292546749, 0.01312272623181343, -0.00535694882273674]} +{"t": 9.8296, "q": [-0.12309002876281738, 0.0027407114394009113, 0.005490677431225777, 0.31767037510871887, -0.18528154492378235, -0.010175676085054874, -0.0752553939819336, -0.035579830408096313, 0.024453600868582726, 0.3391716778278351, -0.2700885236263275, 0.02563205361366272, 0.00416487967595458, 0.07097072899341583, 0.0048105549067258835, 0.014692660421133041, 0.2975803017616272, -0.017437048256397247, 0.25174063444137573, -0.14095845818519592, -0.6158214211463928, -0.2705199122428894, 0.12525911629199982, -0.18091386556625366, 0.062246065586805344, 1.1674672365188599, -0.0055486964993178844, 0.013098758645355701, -0.005368933081626892]} +{"t": 9.8463, "q": [-0.12310706824064255, 0.0027407114394009113, 0.005490677431225777, 0.31767889857292175, -0.18528585135936737, -0.010182795114815235, -0.07526391744613647, -0.035596877336502075, 0.024466993287205696, 0.3391972482204437, -0.2700885236263275, 0.02563205361366272, 0.004338974133133888, 0.07094058394432068, 0.0048117972910404205, 0.015423697419464588, 0.30308106541633606, -0.019905798137187958, 0.25038641691207886, -0.12957344949245453, -0.6172115802764893, -0.2718621492385864, 0.12527111172676086, -0.18091386556625366, 0.06223408132791519, 1.167431354522705, -0.005560680292546749, 0.013110741972923279, -0.00535694882273674]} +{"t": 9.8631, "q": [-0.12309855222702026, 0.002715145703405142, 0.005490677431225777, 0.31768742203712463, -0.18528585135936737, -0.010182795114815235, -0.0752553939819336, -0.03562244400382042, 0.024466993287205696, 0.3391972482204437, -0.270084410905838, 0.025639228522777557, 0.004405933897942305, 0.07094058394432068, 0.0048117972910404205, 0.01619068905711174, 0.3079346716403961, -0.02190716378390789, 0.2490801364183426, -0.11684619635343552, -0.6186496615409851, -0.27350398898124695, 0.12534300982952118, -0.18091386556625366, 0.06222209706902504, 1.1674672365188599, -0.0055486964993178844, 0.01312272623181343, -0.005332980304956436]} +{"t": 9.8798, "q": [-0.12310706824064255, 0.0026895790360867977, 0.005490677431225777, 0.31768742203712463, -0.18528585135936737, -0.010182795114815235, -0.0752553939819336, -0.03564801067113876, 0.024466993287205696, 0.3391546308994293, -0.270092636346817, 0.025624878704547882, 0.004566636402159929, 0.07095576077699661, 0.004801581613719463, 0.016933709383010864, 0.31269240379333496, -0.02413623034954071, 0.2479056864976883, -0.1061682477593422, -0.620663046836853, -0.2754693925380707, 0.12535499036312103, -0.18088988959789276, 0.06221011281013489, 1.1674911975860596, -0.0055486964993178844, 0.013110741972923279, -0.005344964563846588]} +{"t": 9.8965, "q": [-0.12310706824064255, 0.0026895790360867977, 0.005490677431225777, 0.3176959455013275, -0.18527734279632568, -0.010182756930589676, -0.0752553939819336, -0.03566505387425423, 0.024480385705828667, 0.3391631543636322, -0.2700803279876709, 0.025646403431892395, 0.004553244449198246, 0.07094058394432068, 0.0048117972910404205, 0.017856495454907417, 0.3172823488712311, -0.025598304346203804, 0.24671924114227295, -0.09485514461994171, -0.6238747835159302, -0.27889689803123474, 0.12534300982952118, -0.18086592853069305, 0.06221011281013489, 1.1674672365188599, -0.0055486964993178844, 0.013110741972923279, -0.00535694882273674]} +{"t": 9.9134, "q": [-0.12310706824064255, 0.002681057434529066, 0.005504068918526173, 0.3176959455013275, -0.1852816492319107, -0.010189875029027462, -0.0752553939819336, -0.03566505387425423, 0.024453600868582726, 0.3391205370426178, -0.270092636346817, 0.025624878704547882, 0.004620204214006662, 0.0709555521607399, 0.004820770118385553, 0.018743328750133514, 0.3206139802932739, -0.02599378488957882, 0.2458084374666214, -0.08402140438556671, -0.6288003325462341, -0.28233635425567627, 0.12533102929592133, -0.18088988959789276, 0.062198128551244736, 1.1674672365188599, -0.005608617328107357, 0.013098758645355701, -0.005332980304956436]} +{"t": 9.9301, "q": [-0.12314116209745407, 0.0026895790360867977, 0.005517460871487856, 0.31767889857292175, -0.18528994917869568, -0.010161514393985271, -0.07527244091033936, -0.03564801067113876, 0.024466993287205696, 0.3391205370426178, -0.2700885236263275, 0.02563205361366272, 0.004620204214006662, 0.07094058394432068, 0.0048117972910404205, 0.019905798137187958, 0.32447290420532227, -0.027228159829974174, 0.24464596807956696, -0.0739906057715416, -0.6338097453117371, -0.28595560789108276, 0.12534300982952118, -0.18088988959789276, 0.06221011281013489, 1.1674553155899048, -0.005572664551436901, 0.013110741972923279, -0.00535694882273674]} +{"t": 9.9468, "q": [-0.12312411516904831, 0.002681057434529066, 0.005504068918526173, 0.31767889857292175, -0.18528994917869568, -0.010161514393985271, -0.07528095692396164, -0.03564801067113876, 0.024493776261806488, 0.3390693962574005, -0.2700885236263275, 0.02563205361366272, 0.0045130690559744835, 0.0709555521607399, 0.004820770118385553, 0.021260015666484833, 0.32772061228752136, -0.028270786628127098, 0.24307604134082794, -0.06360028684139252, -0.6371173858642578, -0.2888917326927185, 0.12531904876232147, -0.1808779090642929, 0.06223408132791519, 1.1674672365188599, -0.005560680292546749, 0.013098758645355701, -0.00535694882273674]} +{"t": 9.9636, "q": [-0.12314116209745407, 0.0026895790360867977, 0.005517460871487856, 0.31764480471611023, -0.185285747051239, -0.010168595239520073, -0.07528095692396164, -0.03562244400382042, 0.024493776261806488, 0.33909496665000916, -0.2700885236263275, 0.02563205361366272, 0.004446109291166067, 0.0709555521607399, 0.004820770118385553, 0.02250637486577034, 0.33002158999443054, -0.02913365140557289, 0.24120649695396423, -0.054612115025520325, -0.6386033892631531, -0.2904137372970581, 0.12531904876232147, -0.18093782663345337, 0.062246065586805344, 1.1674553155899048, -0.005596633069217205, 0.013110741972923279, -0.00535694882273674]} +{"t": 9.9803, "q": [-0.12312411516904831, 0.002715145703405142, 0.005490677431225777, 0.3176533281803131, -0.18529005348682404, -0.010175714269280434, -0.07528095692396164, -0.03562244400382042, 0.024466993287205696, 0.3390864431858063, -0.2700885236263275, 0.02563205361366272, 0.004446109291166067, 0.07094796746969223, 0.004825877957046032, 0.023740749806165695, 0.3320589065551758, -0.03026016801595688, 0.23948077857494354, -0.0460314080119133, -0.6400055885314941, -0.2912885844707489, 0.12535499036312103, -0.18086592853069305, 0.062246065586805344, 1.1674672365188599, -0.0055486964993178844, 0.013098758645355701, -0.005344964563846588]} +{"t": 9.997, "q": [-0.12313263863325119, 0.0027236673049628735, 0.005504068918526173, 0.3176533281803131, -0.18529005348682404, -0.010175714269280434, -0.07528948038816452, -0.035596877336502075, 0.024466993287205696, 0.33909496665000916, -0.2700885236263275, 0.02563205361366272, 0.004432717338204384, 0.07094796746969223, 0.004825877957046032, 0.024831315502524376, 0.33331725001335144, -0.03147057443857193, 0.23811456561088562, -0.039739690721035004, -0.6418032050132751, -0.29167208075523376, 0.12535499036312103, -0.18091386556625366, 0.06223408132791519, 1.1674553155899048, -0.005608617328107357, 0.013098758645355701, -0.005344964563846588]} +{"t": 10.0137, "q": [-0.12315820157527924, 0.002715145703405142, 0.005490677431225777, 0.3176192343235016, -0.18528585135936737, -0.010182795114815235, -0.0752980038523674, -0.035579830408096313, 0.024413425475358963, 0.33904382586479187, -0.270092636346817, 0.025624878704547882, 0.0045130690559744835, 0.07094796746969223, 0.004825877957046032, 0.02569417841732502, 0.3336528241634369, -0.03211772441864014, 0.23735956847667694, -0.03536544740200043, -0.6439962983131409, -0.291767954826355, 0.12537896633148193, -0.18093782663345337, 0.06222209706902504, 1.1674672365188599, -0.005596633069217205, 0.013110741972923279, -0.005368933081626892]} +{"t": 10.0305, "q": [-0.12313263863325119, 0.002715145703405142, 0.00546389352530241, 0.3176533281803131, -0.1852942556142807, -0.010168633423745632, -0.07527244091033936, -0.035588353872299194, 0.024426817893981934, 0.33904382586479187, -0.2700885236263275, 0.02563205361366272, 0.004633595701307058, 0.07092540711164474, 0.00482201250270009, 0.02630537375807762, 0.3337007462978363, -0.03202185034751892, 0.2367723435163498, -0.03148255869746208, -0.6468485593795776, -0.29173198342323303, 0.1253909468650818, -0.1809018850326538, 0.06223408132791519, 1.1674672365188599, -0.005596633069217205, 0.013110741972923279, -0.005344964563846588]} +{"t": 10.0472, "q": [-0.12314116209745407, 0.002715145703405142, 0.00546389352530241, 0.3176533281803131, -0.185285747051239, -0.010168595239520073, -0.07523834705352783, -0.035596877336502075, 0.024413425475358963, 0.3390779197216034, -0.2700885236263275, 0.02563205361366272, 0.004847866017371416, 0.07092540711164474, 0.00482201250270009, 0.026521090418100357, 0.33371272683143616, -0.03171025961637497, 0.2361970990896225, -0.028498487547039986, -0.6499764323234558, -0.29164811968803406, 0.12537896633148193, -0.18091386556625366, 0.06221011281013489, 1.1675511598587036, -0.0055486964993178844, 0.013134710490703583, -0.005320996046066284]} +{"t": 10.0639, "q": [-0.12312411516904831, 0.002715145703405142, 0.005450501572340727, 0.31767889857292175, -0.18528154492378235, -0.010175676085054874, -0.07523834705352783, -0.03560539707541466, 0.024400033056735992, 0.33909496665000916, -0.270092636346817, 0.025624878704547882, 0.005048744846135378, 0.07092540711164474, 0.00482201250270009, 0.02671283856034279, 0.33281391859054565, -0.031614385545253754, 0.23556193709373474, -0.027096332982182503, -0.6538353562355042, -0.29150429368019104, 0.12535499036312103, -0.18086592853069305, 0.062198128551244736, 1.167539119720459, -0.005572664551436901, 0.013110741972923279, -0.00535694882273674]} +{"t": 10.0807, "q": [-0.12310706824064255, 0.0027236673049628735, 0.005450501572340727, 0.3176959455013275, -0.18528154492378235, -0.010175676085054874, -0.07522130757570267, -0.035596877336502075, 0.0243732500821352, 0.3390864431858063, -0.270084410905838, 0.025639228522777557, 0.005115704145282507, 0.07091792672872543, 0.004817527253180742, 0.026748791337013245, 0.33074066042900085, -0.031063111498951912, 0.23514248430728912, -0.026796728372573853, -0.6570231914520264, -0.2910608649253845, 0.12534300982952118, -0.18093782663345337, 0.06223408132791519, 1.167527198791504, -0.005560680292546749, 0.013134710490703583, -0.00535694882273674]} +{"t": 10.0974, "q": [-0.12310706824064255, 0.002715145703405142, 0.005450501572340727, 0.31773003935813904, -0.18528585135936737, -0.010182795114815235, -0.07519573718309402, -0.035588353872299194, 0.02438664250075817, 0.3391120135784149, -0.2700885236263275, 0.02563205361366272, 0.00516927195712924, 0.07090295851230621, 0.0048085544258356094, 0.02671283856034279, 0.32861945033073425, -0.0300923902541399, 0.23431557416915894, -0.026796728372573853, -0.6592881679534912, -0.2903657853603363, 0.12535499036312103, -0.18091386556625366, 0.062246065586805344, 1.1675631999969482, -0.005560680292546749, 0.013146694749593735, -0.005344964563846588]} +{"t": 10.1141, "q": [-0.12309855222702026, 0.0027407114394009113, 0.005437109619379044, 0.31777262687683105, -0.185285747051239, -0.010168595239520073, -0.0752042606472969, -0.03557131066918373, 0.024413425475358963, 0.3391716778278351, -0.27008017897605896, 0.0256319809705019, 0.00508892023935914, 0.07090295851230621, 0.0048085544258356094, 0.026628948748111725, 0.32564735412597656, -0.028019119054079056, 0.23335683345794678, -0.02714427001774311, -0.661541223526001, -0.2894669771194458, 0.12535499036312103, -0.18091386556625366, 0.06222209706902504, 1.1675511598587036, -0.005608617328107357, 0.013110741972923279, -0.005344964563846588]} +{"t": 10.1309, "q": [-0.12309002876281738, 0.0027236673049628735, 0.00546389352530241, 0.3177896738052368, -0.18528154492378235, -0.010175676085054874, -0.07517869770526886, -0.035579830408096313, 0.024453600868582726, 0.3391716778278351, -0.270084410905838, 0.025639228522777557, 0.005062136333435774, 0.0708954706788063, 0.0048040663823485374, 0.02623346820473671, 0.32133302092552185, -0.025790052488446236, 0.23281754553318024, -0.028150945901870728, -0.6652922630310059, -0.28800490498542786, 0.1253909468650818, -0.18091386556625366, 0.06221011281013489, 1.1675751209259033, -0.005596633069217205, 0.01312272623181343, -0.005320996046066284]} +{"t": 10.1476, "q": [-0.12307298183441162, 0.0027492339722812176, 0.005437109619379044, 0.31786638498306274, -0.185285747051239, -0.010168595239520073, -0.07511051744222641, -0.03557131066918373, 0.024400033056735992, 0.3392142951488495, -0.2700885236263275, 0.02563205361366272, 0.00512909609824419, 0.07088050246238708, 0.004795093555003405, 0.02527473121881485, 0.31508925557136536, -0.021379858255386353, 0.2319546788930893, -0.03021223098039627, -0.6706492304801941, -0.2861713171005249, 0.12560667097568512, -0.18091386556625366, 0.06221011281013489, 1.167587161064148, -0.005596633069217205, 0.01312272623181343, -0.005344964563846588]} +{"t": 10.1644, "q": [-0.12309002876281738, 0.0027321898378431797, 0.005356758367270231, 0.3179686367511749, -0.18528175354003906, -0.01020408421754837, -0.07507643103599548, -0.035579830408096313, 0.02435985766351223, 0.339290976524353, -0.2700885236263275, 0.02563205361366272, 0.005504068918526173, 0.07087302207946777, 0.0047906083054840565, 0.02412424609065056, 0.309516578912735, -0.017257284373044968, 0.23086410760879517, -0.0319020077586174, -0.676773190498352, -0.28463733196258545, 0.1257384866476059, -0.18091386556625366, 0.062246065586805344, 1.167599081993103, -0.005608617328107357, 0.013110741972923279, -0.00535694882273674]} +{"t": 10.1811, "q": [-0.12311559170484543, 0.0027321898378431797, 0.005343366414308548, 0.318036824464798, -0.18528154492378235, -0.010175676085054874, -0.07507643103599548, -0.03556278720498085, 0.02434646710753441, 0.339290976524353, -0.2700803279876709, 0.025646403431892395, 0.005678163841366768, 0.07085805386304855, 0.004781635478138924, 0.0231774915009737, 0.30441129207611084, -0.014057496562600136, 0.22871893644332886, -0.03440671041607857, -0.6803444623947144, -0.2836066782474518, 0.1257384866476059, -0.18088988959789276, 0.06223408132791519, 1.1676111221313477, -0.005596633069217205, 0.013110741972923279, -0.005368933081626892]} +{"t": 10.1978, "q": [-0.12310706824064255, 0.0027236673049628735, 0.005316582508385181, 0.318105012178421, -0.18528154492378235, -0.010175676085054874, -0.07507643103599548, -0.03556278720498085, 0.024333074688911438, 0.33932507038116455, -0.2700800597667694, 0.025617556646466255, 0.005825474392622709, 0.07084287703037262, 0.004791849292814732, 0.023189475759863853, 0.29856300354003906, -0.010785802267491817, 0.22664566338062286, -0.039092544466257095, -0.6828252077102661, -0.28249216079711914, 0.12570254504680634, -0.1809018850326538, 0.06221011281013489, 1.1676111221313477, -0.005608617328107357, 0.01312272623181343, -0.005320996046066284]} +{"t": 10.2146, "q": [-0.12310706824064255, 0.002715145703405142, 0.005316582508385181, 0.3181731700897217, -0.18528154492378235, -0.010175676085054874, -0.07504233717918396, -0.035588353872299194, 0.024333074688911438, 0.3394017815589905, -0.27008429169654846, 0.025624806061387062, 0.005892434157431126, 0.07085805386304855, 0.004781635478138924, 0.023273365572094917, 0.2911447584629059, -0.005596633069217205, 0.22514763474464417, -0.04117779806256294, -0.685377836227417, -0.2815094590187073, 0.1256905496120453, -0.1809018850326538, 0.06221011281013489, 1.1676470041275024, -0.0055486964993178844, 0.01312272623181343, -0.00535694882273674]} +{"t": 10.2313, "q": [-0.12311559170484543, 0.002715145703405142, 0.005316582508385181, 0.31831806898117065, -0.18529005348682404, -0.010175714269280434, -0.07504233717918396, -0.03556278720498085, 0.024333074688911438, 0.33946141600608826, -0.27008429169654846, 0.025624806061387062, 0.005879042204469442, 0.0708279088139534, 0.004782876465469599, 0.023333286866545677, 0.2848530411720276, -0.0016777915880084038, 0.22397318482398987, -0.04609132930636406, -0.6881341934204102, -0.28049078583717346, 0.12570254504680634, -0.18091386556625366, 0.06222209706902504, 1.1676111221313477, -0.005572664551436901, 0.013110741972923279, -0.00535694882273674]} +{"t": 10.248, "q": [-0.12310706824064255, 0.0027407114394009113, 0.005276407115161419, 0.31836065649986267, -0.18528154492378235, -0.010175676085054874, -0.0750252977013588, -0.03554574400186539, 0.024333074688911438, 0.3394528925418854, -0.2700759470462799, 0.025624731555581093, 0.005932609550654888, 0.0707903802394867, 0.004770038183778524, 0.023381223902106285, 0.27615249156951904, 0.0041944789700210094, 0.2221156358718872, -0.05140034109354019, -0.6917774081230164, -0.2796279191970825, 0.12572650611400604, -0.1809018850326538, 0.06223408132791519, 1.1676111221313477, -0.005572664551436901, 0.013110741972923279, -0.005332980304956436]} +{"t": 10.265, "q": [-0.12313263863325119, 0.002715145703405142, 0.005289798602461815, 0.31842032074928284, -0.1852816492319107, -0.010189875029027462, -0.07500825077295303, -0.03557131066918373, 0.02434646710753441, 0.3394528925418854, -0.2700759470462799, 0.025624731555581093, 0.00605313666164875, 0.07076771557331085, 0.004775765351951122, 0.023513050749897957, 0.2687702178955078, 0.008640626445412636, 0.22023411095142365, -0.05766809359192848, -0.6963793635368347, -0.2786571979522705, 0.12588229775428772, -0.1808779090642929, 0.06221011281013489, 1.167659044265747, -0.005560680292546749, 0.013098758645355701, -0.00535694882273674]} +{"t": 10.2817, "q": [-0.12314968556165695, 0.0027236673049628735, 0.005289798602461815, 0.31849703192710876, -0.18528585135936737, -0.010182795114815235, -0.07499121129512787, -0.03556278720498085, 0.024279506877064705, 0.33946993947029114, -0.27007171511650085, 0.025617484003305435, 0.00613348837941885, 0.07071491330862045, 0.004782738164067268, 0.023860592395067215, 0.26112428307533264, 0.013254553079605103, 0.21830464899539948, -0.06338457018136978, -0.7014366984367371, -0.27802205085754395, 0.12591825425624847, -0.1809018850326538, 0.06221011281013489, 1.1676350831985474, -0.005608617328107357, 0.01312272623181343, -0.00535694882273674]} +{"t": 10.2984, "q": [-0.12316672503948212, 0.0027066231705248356, 0.005289798602461815, 0.31851404905319214, -0.18528154492378235, -0.010175676085054874, -0.07499121129512787, -0.03557131066918373, 0.024306289851665497, 0.3394955098628998, -0.27006325125694275, 0.02560298703610897, 0.006267406977713108, 0.07070732116699219, 0.004787846002727747, 0.02407630905508995, 0.2521480917930603, 0.018551580607891083, 0.21659089624881744, -0.07045526057481766, -0.705103874206543, -0.2772310972213745, 0.12589429318904877, -0.1809018850326538, 0.06221011281013489, 1.1676350831985474, -0.005584648810327053, 0.013098758645355701, -0.00535694882273674]} +{"t": 10.3163, "q": [-0.12318377196788788, 0.0026895790360867977, 0.005303190555423498, 0.3185310959815979, -0.18528154492378235, -0.010175676085054874, -0.07496564090251923, -0.03562244400382042, 0.024306289851665497, 0.33951255679130554, -0.2700631320476532, 0.025588564574718475, 0.00646828580647707, 0.07068486511707306, 0.004774385131895542, 0.024052340537309647, 0.24339962005615234, 0.023153522983193398, 0.2151767611503601, -0.07909588515758514, -0.7085673213005066, -0.2760685980319977, 0.12591825425624847, -0.18091386556625366, 0.06221011281013489, 1.1676949262619019, -0.005596633069217205, 0.01312272623181343, -0.00535694882273674]} +{"t": 10.333, "q": [-0.12318377196788788, 0.0026895790360867977, 0.005316582508385181, 0.31854814291000366, -0.185285747051239, -0.010168595239520073, -0.07495711743831635, -0.03561392053961754, 0.024306289851665497, 0.3394869863986969, -0.2700549066066742, 0.02560291439294815, 0.0066289883106946945, 0.07068497687578201, 0.004764792043715715, 0.023908529430627823, 0.23378826677799225, 0.028126977384090424, 0.21414612233638763, -0.08728111535310745, -0.7129775285720825, -0.2744147777557373, 0.12590627372264862, -0.18093782663345337, 0.06221011281013489, 1.1676830053329468, -0.005572664551436901, 0.013110741972923279, -0.00535694882273674]} +{"t": 10.3498, "q": [-0.12318377196788788, 0.0026895790360867977, 0.005263015162199736, 0.31859076023101807, -0.18528154492378235, -0.010175676085054874, -0.07494007796049118, -0.035630963742733, 0.024266114458441734, 0.3395210802555084, -0.27004244923591614, 0.02561003342270851, 0.006776299327611923, 0.07066968828439713, 0.004784600343555212, 0.02400440350174904, 0.22462032735347748, 0.033136382699012756, 0.21372666954994202, -0.09606555104255676, -0.7183704376220703, -0.27200594544410706, 0.12590627372264862, -0.18093782663345337, 0.06221011281013489, 1.1677188873291016, -0.005584648810327053, 0.013134710490703583, -0.005344964563846588]} +{"t": 10.3665, "q": [-0.12320081144571304, 0.0026895790360867977, 0.005276407115161419, 0.31859076023101807, -0.18527723848819733, -0.010168557055294514, -0.07495711743831635, -0.03561392053961754, 0.024252723902463913, 0.339478462934494, -0.2700507938861847, 0.02561010792851448, 0.0068030827678740025, 0.07062415778636932, 0.004815246444195509, 0.024747425690293312, 0.21534454822540283, 0.03834952041506767, 0.21375064551830292, -0.10522149503231049, -0.7224810123443604, -0.2696211040019989, 0.12590627372264862, -0.18092584609985352, 0.06221011281013489, 1.1677188873291016, -0.005584648810327053, 0.01312272623181343, -0.00535694882273674]} +{"t": 10.3833, "q": [-0.12320081144571304, 0.0027236673049628735, 0.005276407115161419, 0.3185651898384094, -0.18528585135936737, -0.010182795114815235, -0.07499121129512787, -0.03560539707541466, 0.02419915609061718, 0.3394358456134796, -0.2700466811656952, 0.025617282837629318, 0.006829866673797369, 0.07054837793111801, 0.0048567308112978935, 0.026017753407359123, 0.20667995512485504, 0.04268781095743179, 0.21391841769218445, -0.11244798451662064, -0.7243265509605408, -0.2671763300895691, 0.125858336687088, -0.18091386556625366, 0.06221011281013489, 1.1677188873291016, -0.005560680292546749, 0.013134710490703583, -0.00535694882273674]} +{"t": 10.4001, "q": [-0.12320081144571304, 0.0027236673049628735, 0.005249623209238052, 0.31851404905319214, -0.18527723848819733, -0.010168557055294514, -0.07500825077295303, -0.03557131066918373, 0.02419915609061718, 0.3393506407737732, -0.27004683017730713, 0.025631705299019814, 0.006816474720835686, 0.07051043212413788, 0.004882269073277712, 0.02767157554626465, 0.19841083884239197, 0.04637895151972771, 0.21407420933246613, -0.12217917293310165, -0.7250815629959106, -0.26603782176971436, 0.12588229775428772, -0.1808779090642929, 0.062246065586805344, 1.1676949262619019, -0.005560680292546749, 0.01312272623181343, -0.00535694882273674]} +{"t": 10.4171, "q": [-0.1232178583741188, 0.002715145703405142, 0.005249623209238052, 0.31842032074928284, -0.18529005348682404, -0.010175714269280434, -0.07500825077295303, -0.03555426374077797, 0.024212546646595, 0.33932507038116455, -0.2700507938861847, 0.02561010792851448, 0.006816474720835686, 0.07051043212413788, 0.004882269073277712, 0.029277462512254715, 0.19017766416072845, 0.04999818652868271, 0.21424199640750885, -0.13054417073726654, -0.7253811955451965, -0.2652228772640228, 0.12590627372264862, -0.18091386556625366, 0.06221011281013489, 1.1677188873291016, -0.005596633069217205, 0.013110741972923279, -0.00535694882273674]} +{"t": 10.4338, "q": [-0.12323490530252457, 0.0027236673049628735, 0.005236231256276369, 0.3183010220527649, -0.18528994917869568, -0.010161514393985271, -0.07501677423715591, -0.03555426374077797, 0.02419915609061718, 0.3392654061317444, -0.2700551450252533, 0.025631777942180634, 0.006642380263656378, 0.07051791250705719, 0.00488675432279706, 0.030979221686720848, 0.18280737102031708, 0.05289836972951889, 0.21468541026115417, -0.138993039727211, -0.7253692150115967, -0.26509106159210205, 0.12588229775428772, -0.18092584609985352, 0.06221011281013489, 1.1677309274673462, -0.005572664551436901, 0.01312272623181343, -0.00535694882273674]} +{"t": 10.4506, "q": [-0.12322638183832169, 0.0027407114394009113, 0.005236231256276369, 0.31814759969711304, -0.185285747051239, -0.010168595239520073, -0.07509347051382065, -0.035537220537662506, 0.024239331483840942, 0.3391972482204437, -0.2700507938861847, 0.02561010792851448, 0.00646828580647707, 0.07051791250705719, 0.00488675432279706, 0.033304162323474884, 0.17525731027126312, 0.05589442700147629, 0.21571604907512665, -0.14910772442817688, -0.7251055240631104, -0.2650071680545807, 0.12579841911792755, -0.18093782663345337, 0.062246065586805344, 1.1676949262619019, -0.005572664551436901, 0.01312272623181343, -0.005344964563846588]} +{"t": 10.4675, "q": [-0.12323490530252457, 0.0027748006395995617, 0.005263015162199736, 0.31796011328697205, -0.1852942556142807, -0.010168633423745632, -0.07511051744222641, -0.035528700798749924, 0.02418576367199421, 0.33910349011421204, -0.27005502581596375, 0.025617355480790138, 0.006240623537451029, 0.07051043212413788, 0.004882269073277712, 0.035772912204265594, 0.16894161701202393, 0.05811150744557381, 0.21649502217769623, -0.158359557390213, -0.7245662808418274, -0.26499518752098083, 0.12575048208236694, -0.18091386556625366, 0.062246065586805344, 1.1677188873291016, -0.005584648810327053, 0.013134710490703583, -0.00535694882273674]} +{"t": 10.4843, "q": [-0.12323490530252457, 0.0027918447740375996, 0.005236231256276369, 0.3177641034126282, -0.1852942556142807, -0.010168633423745632, -0.07517869770526886, -0.03548608720302582, 0.02418576367199421, 0.3390268087387085, -0.2700592577457428, 0.025624603033065796, 0.006079920567572117, 0.07049514353275299, 0.0049020773731172085, 0.038553252816200256, 0.1619308441877365, 0.060867879539728165, 0.21751369535923004, -0.1685221791267395, -0.7234876751899719, -0.264983206987381, 0.12572650611400604, -0.18091386556625366, 0.06227003410458565, 1.1676949262619019, -0.005584648810327053, 0.013110741972923279, -0.005344964563846588]} +{"t": 10.501, "q": [-0.1232178583741188, 0.002817410510033369, 0.005249623209238052, 0.3175510764122009, -0.1852942556142807, -0.010168633423745632, -0.07523834705352783, -0.035469043999910355, 0.024212546646595, 0.3388819098472595, -0.2700592577457428, 0.025624603033065796, 0.005892434157431126, 0.07051770389080048, 0.00490594282746315, 0.041561294347047806, 0.15456055104732513, 0.06490656733512878, 0.21835258603096008, -0.1778578907251358, -0.7224690318107605, -0.264983206987381, 0.12570254504680634, -0.18093782663345337, 0.06223408132791519, 1.1676949262619019, -0.005596633069217205, 0.013098758645355701, -0.00535694882273674]} +{"t": 10.5178, "q": [-0.1232178583741188, 0.002817410510033369, 0.005263015162199736, 0.31736359000205994, -0.18529005348682404, -0.010175714269280434, -0.07528095692396164, -0.035460520535707474, 0.02418576367199421, 0.33882227540016174, -0.27006760239601135, 0.025624658912420273, 0.005637987982481718, 0.07051770389080048, 0.00490594282746315, 0.04435361921787262, 0.14813700318336487, 0.06814230233430862, 0.22048577666282654, -0.1888953596353531, -0.7206833958625793, -0.2649592459201813, 0.12564261257648468, -0.18092584609985352, 0.06227003410458565, 1.1676830053329468, -0.0055486964993178844, 0.013110741972923279, -0.00535694882273674]} +{"t": 10.5345, "q": [-0.12323490530252457, 0.002842977177351713, 0.005249623209238052, 0.3171505331993103, -0.18529847264289856, -0.01016154419630766, -0.07540879398584366, -0.035409390926361084, 0.02417237125337124, 0.3387029469013214, -0.2700759470462799, 0.025624731555581093, 0.005530852824449539, 0.07051001489162445, 0.004920646082609892, 0.04689427465200424, 0.14269617199897766, 0.07035938650369644, 0.22281071543693542, -0.1982550323009491, -0.7189337015151978, -0.26497122645378113, 0.12560667097568512, -0.18092584609985352, 0.062246065586805344, 1.1676830053329468, -0.005584648810327053, 0.01308677438646555, -0.005344964563846588]} +{"t": 10.5512, "q": [-0.1232689917087555, 0.002902632113546133, 0.005249623209238052, 0.3169289529323578, -0.18529005348682404, -0.010175714269280434, -0.07546844333410263, -0.03536677733063698, 0.02417237125337124, 0.3384898900985718, -0.2700633704662323, 0.025617411360144615, 0.005477285478264093, 0.07052507996559143, 0.0049200234934687614, 0.04933905601501465, 0.13759088516235352, 0.07232479751110077, 0.2255910485982895, -0.20817798376083374, -0.7174955606460571, -0.264983206987381, 0.1255347579717636, -0.18088988959789276, 0.06222209706902504, 1.1676830053329468, -0.005620601586997509, 0.013098758645355701, -0.00535694882273674]} +{"t": 10.5681, "q": [-0.12325194478034973, 0.002928198780864477, 0.005276407115161419, 0.3168181777000427, -0.18530277907848358, -0.01016866322606802, -0.07549401372671127, -0.035358257591724396, 0.024145588278770447, 0.33835354447364807, -0.27006348967552185, 0.025631852447986603, 0.005450501572340727, 0.07052519172430038, 0.004910430405288935, 0.051352404057979584, 0.13354022800922394, 0.0737389400601387, 0.22927021980285645, -0.2166747897863388, -0.7159136533737183, -0.2650071680545807, 0.12545086443424225, -0.18091386556625366, 0.062246065586805344, 1.1676709651947021, -0.005572664551436901, 0.01308677438646555, -0.00535694882273674]} +{"t": 10.585, "q": [-0.12325194478034973, 0.002945242915302515, 0.005249623209238052, 0.31668180227279663, -0.18530277907848358, -0.01016866322606802, -0.07551105320453644, -0.03531564772129059, 0.024105412885546684, 0.33831092715263367, -0.2700759470462799, 0.025624731555581093, 0.005383542273193598, 0.07054764032363892, 0.004923888482153416, 0.0529463067650795, 0.12981313467025757, 0.07486545294523239, 0.2337043732404709, -0.22617828845977783, -0.7137804627418518, -0.2650551199913025, 0.1253909468650818, -0.18092584609985352, 0.06223408132791519, 1.167659044265747, -0.005560680292546749, 0.01312272623181343, -0.005344964563846588]} +{"t": 10.6018, "q": [-0.12325194478034973, 0.0029708086512982845, 0.005249623209238052, 0.3165028393268585, -0.18529435992240906, -0.010182833299040794, -0.0755281001329422, -0.035290081053972244, 0.024078628048300743, 0.3382001519203186, -0.27008017897605896, 0.0256319809705019, 0.005329974461346865, 0.0705629214644432, 0.004904080647975206, 0.0538690909743309, 0.12642158567905426, 0.0764114186167717, 0.23833028972148895, -0.2353701889514923, -0.7105447053909302, -0.2650551199913025, 0.12531904876232147, -0.18091386556625366, 0.062246065586805344, 1.1676830053329468, -0.0055486964993178844, 0.013110741972923279, -0.005344964563846588]} +{"t": 10.6186, "q": [-0.12324342876672745, 0.0029963753186166286, 0.005222839303314686, 0.31634092330932617, -0.18530277907848358, -0.01016866322606802, -0.07561331987380981, -0.035290081053972244, 0.024065235629677773, 0.33817458152770996, -0.2700718641281128, 0.02563190646469593, 0.005182663444429636, 0.07056281715631485, 0.004913673270493746, 0.05475592613220215, 0.12305402755737305, 0.07817310094833374, 0.24182967841625214, -0.24425049126148224, -0.7051517963409424, -0.2650311291217804, 0.1251632422208786, -0.18093782663345337, 0.06223408132791519, 1.1676830053329468, -0.005584648810327053, 0.013110741972923279, -0.00535694882273674]} +{"t": 10.6355, "q": [-0.1232689917087555, 0.003004897851496935, 0.005236231256276369, 0.31631535291671753, -0.18529857695102692, -0.010175752453505993, -0.07563036680221558, -0.03528155758976936, 0.024065235629677773, 0.33809787034988403, -0.27008017897605896, 0.0256319809705019, 0.005021960940212011, 0.07056281715631485, 0.004913673270493746, 0.05529521405696869, 0.11939883977174759, 0.08113320171833038, 0.24522121250629425, -0.25153690576553345, -0.6993634104728699, -0.2650790810585022, 0.12506736814975739, -0.18092584609985352, 0.06223408132791519, 1.167659044265747, -0.005608617328107357, 0.013110741972923279, -0.005332980304956436]} +{"t": 10.6523, "q": [-0.1232689917087555, 0.0030475077219307423, 0.005236231256276369, 0.31626421213150024, -0.18530720472335815, -0.010190008208155632, -0.07564741373062134, -0.03528155758976936, 0.024078628048300743, 0.3381063938140869, -0.27007609605789185, 0.025639155879616737, 0.0047541228123009205, 0.07059307396411896, 0.004902838263660669, 0.05555886775255203, 0.11665444821119308, 0.08361393958330154, 0.24918799102306366, -0.25835591554641724, -0.6946536302566528, -0.26516297459602356, 0.12500745058059692, -0.18091386556625366, 0.062246065586805344, 1.1676709651947021, -0.005608617328107357, 0.013110741972923279, -0.005344964563846588]} +{"t": 10.6691, "q": [-0.12325194478034973, 0.0030219419859349728, 0.005249623209238052, 0.31626421213150024, -0.18529857695102692, -0.010175752453505993, -0.07564741373062134, -0.035290081053972244, 0.024118803441524506, 0.3381149172782898, -0.2700759470462799, 0.025624731555581093, 0.004245230928063393, 0.07060813903808594, 0.004902215674519539, 0.055870458483695984, 0.11568372696638107, 0.08505204319953918, 0.2532985806465149, -0.264983206987381, -0.6886375546455383, -0.26529479026794434, 0.12494753301143646, -0.18093782663345337, 0.0622820183634758, 1.1677309274673462, -0.005584648810327053, 0.01312272623181343, -0.005344964563846588]} +{"t": 10.6859, "q": [-0.12322638183832169, 0.0030134194530546665, 0.005249623209238052, 0.31626421213150024, -0.1853029876947403, -0.010197089053690434, -0.07564741373062134, -0.03529860079288483, 0.02417237125337124, 0.3381575345993042, -0.270084410905838, 0.025639228522777557, 0.003776514669880271, 0.070645771920681, 0.0049054608680307865, 0.056050222367048264, 0.11588745564222336, 0.08595086634159088, 0.25794845819473267, -0.27210181951522827, -0.6797332763671875, -0.26553449034690857, 0.12479173392057419, -0.18091386556625366, 0.06229400262236595, 1.1676949262619019, -0.005596633069217205, 0.013098758645355701, -0.005332980304956436]} +{"t": 10.7027, "q": [-0.12322638183832169, 0.0030219419859349728, 0.005276407115161419, 0.31629830598831177, -0.1852901577949524, -0.010189914144575596, -0.0756644532084465, -0.03528155758976936, 0.024212546646595, 0.3381916284561157, -0.2700759470462799, 0.025624731555581093, 0.003133703488856554, 0.07065336406230927, 0.004900353495031595, 0.05633784458041191, 0.11623500287532806, 0.08688563108444214, 0.2618792951107025, -0.2782856822013855, -0.672374963760376, -0.26561835408210754, 0.12463594228029251, -0.18091386556625366, 0.062246065586805344, 1.1676949262619019, -0.005560680292546749, 0.013110741972923279, -0.005332980304956436]} +{"t": 10.7194, "q": [-0.12320933490991592, 0.0030134194530546665, 0.005303190555423498, 0.3163323998451233, -0.18529435992240906, -0.010182833299040794, -0.0756644532084465, -0.035290081053972244, 0.024266114458441734, 0.3382342457771301, -0.2700759470462799, 0.025624731555581093, 0.002611419651657343, 0.07066084444522858, 0.004904838278889656, 0.056241970509290695, 0.11667841672897339, 0.0881439745426178, 0.26581010222435, -0.2841220200061798, -0.6651005148887634, -0.26571422815322876, 0.1245880052447319, -0.18091386556625366, 0.06227003410458565, 1.1676949262619019, -0.005572664551436901, 0.013110741972923279, -0.005320996046066284]} +{"t": 10.7362, "q": [-0.12318377196788788, 0.0030134194530546665, 0.005410325713455677, 0.31640058755874634, -0.18529435992240906, -0.010182833299040794, -0.07565592974424362, -0.03533269092440605, 0.02435985766351223, 0.3382853865623474, -0.27007171511650085, 0.025617484003305435, 0.0022900141775608063, 0.07067613303661346, 0.004885030444711447, 0.05585847422480583, 0.11691810190677643, 0.09000153094530106, 0.26956117153167725, -0.28818467259407043, -0.6560644507408142, -0.2657741606235504, 0.12461197376251221, -0.18091386556625366, 0.062258049845695496, 1.1677188873291016, -0.005572664551436901, 0.013098758645355701, -0.005320996046066284]} +{"t": 10.753, "q": [-0.12318377196788788, 0.0029793311841785908, 0.005477285478264093, 0.31645169854164124, -0.18529857695102692, -0.010175752453505993, -0.07564741373062134, -0.03534121438860893, 0.024426817893981934, 0.33831945061683655, -0.2700718641281128, 0.02563190646469593, 0.002129311440512538, 0.07070648670196533, 0.00486459955573082, 0.055510930716991425, 0.11718175560235977, 0.09090034663677216, 0.2733961343765259, -0.29297834634780884, -0.6488259434700012, -0.2659059762954712, 0.12461197376251221, -0.18093782663345337, 0.06227003410458565, 1.1676949262619019, -0.005572664551436901, 0.013098758645355701, -0.005332980304956436]} +{"t": 10.7698, "q": [-0.12315820157527924, 0.0029537645168602467, 0.005517460871487856, 0.3165454566478729, -0.18529005348682404, -0.010175714269280434, -0.07564741373062134, -0.03538382425904274, 0.024480385705828667, 0.33837059140205383, -0.2700674831867218, 0.025610236451029778, 0.0021159194875508547, 0.07075170427560806, 0.004862734582275152, 0.054983627051115036, 0.11722969263792038, 0.09127186238765717, 0.27760258316993713, -0.29634591937065125, -0.6402572393417358, -0.2660498023033142, 0.12461197376251221, -0.18091386556625366, 0.062258049845695496, 1.1676949262619019, -0.0055486964993178844, 0.013110741972923279, -0.005332980304956436]} +{"t": 10.7866, "q": [-0.12314116209745407, 0.002928198780864477, 0.0056112040765583515, 0.3166391849517822, -0.18530277907848358, -0.01016866322606802, -0.07565592974424362, -0.03543495759367943, 0.024493776261806488, 0.3384387791156769, -0.27006760239601135, 0.025624658912420273, 0.002022176282480359, 0.07078205794095993, 0.004842303693294525, 0.05488775297999382, 0.1173495352268219, 0.09122392535209656, 0.2804548442363739, -0.30045652389526367, -0.6310173869132996, -0.26628947257995605, 0.1245400682091713, -0.18088988959789276, 0.062258049845695496, 1.1676949262619019, -0.0055486964993178844, 0.013110741972923279, -0.005332980304956436]} +{"t": 10.8033, "q": [-0.12313263863325119, 0.002902632113546133, 0.0055978125892579556, 0.31668180227279663, -0.18529857695102692, -0.010175752453505993, -0.07564741373062134, -0.03545200079679489, 0.02454734407365322, 0.33844730257987976, -0.2700677216053009, 0.02563910000026226, 0.0018614735454320908, 0.0707896500825882, 0.0048371958546340466, 0.05507949739694595, 0.11750532686710358, 0.09115201979875565, 0.2828037440776825, -0.30273351073265076, -0.6242462992668152, -0.2665770947933197, 0.12448015064001083, -0.1808779090642929, 0.062258049845695496, 1.1676709651947021, -0.005572664551436901, 0.01308677438646555, -0.005332980304956436]} +{"t": 10.8201, "q": [-0.12314116209745407, 0.002902632113546133, 0.005637987982481718, 0.3168181777000427, -0.18529857695102692, -0.010175752453505993, -0.07561331987380981, -0.03545200079679489, 0.024614304304122925, 0.3385154604911804, -0.2700674831867218, 0.025610236451029778, 0.0019552167505025864, 0.07079713046550751, 0.0048416838981211185, 0.05507949739694595, 0.11851200461387634, 0.0911879688501358, 0.2850687801837921, -0.304027795791626, -0.6154019236564636, -0.2668048143386841, 0.12448015064001083, -0.18092584609985352, 0.0622820183634758, 1.167659044265747, -0.005560680292546749, 0.01308677438646555, -0.005332980304956436]} +{"t": 10.8369, "q": [-0.12314968556165695, 0.002894109580665827, 0.005678163841366768, 0.3168863356113434, -0.18530277907848358, -0.01016866322606802, -0.07558775693178177, -0.035460520535707474, 0.024667872115969658, 0.33858364820480347, -0.27005937695503235, 0.02563902735710144, 0.001982000656425953, 0.0707896500825882, 0.0048371958546340466, 0.05493569001555443, 0.11951867491006851, 0.09125987440347672, 0.2868663966655731, -0.30455511808395386, -0.6065096259117126, -0.2669725716114044, 0.12457602471113205, -0.1809018850326538, 0.062258049845695496, 1.1676949262619019, -0.0055486964993178844, 0.013098758645355701, -0.005332980304956436]} +{"t": 10.8537, "q": [-0.12315820157527924, 0.002860021311789751, 0.00571833923459053, 0.31695452332496643, -0.18529857695102692, -0.010175752453505993, -0.07559628039598465, -0.03550313413143158, 0.02468126453459263, 0.33860069513320923, -0.27006348967552185, 0.025631852447986603, 0.0019953923765569925, 0.07083507627248764, 0.004816145170480013, 0.054971642792224884, 0.12027368694543839, 0.09122392535209656, 0.28770530223846436, -0.30453115701675415, -0.5990315079689026, -0.26718831062316895, 0.12459999322891235, -0.1809018850326538, 0.06227003410458565, 1.1676949262619019, -0.005608617328107357, 0.01312272623181343, -0.005320996046066284]} +{"t": 10.8705, "q": [-0.12316672503948212, 0.0028259330429136753, 0.005745123140513897, 0.3169715702533722, -0.18529005348682404, -0.010175714269280434, -0.07558775693178177, -0.03552017733454704, 0.02470804750919342, 0.338617742061615, -0.2700677216053009, 0.02563910000026226, 0.002276622224599123, 0.07085025310516357, 0.004805929958820343, 0.05499561131000519, 0.12083694338798523, 0.09117598831653595, 0.28788506984710693, -0.30450716614723206, -0.5900912880897522, -0.2674998939037323, 0.12457602471113205, -0.18091386556625366, 0.0622820183634758, 1.1677788496017456, -0.005560680292546749, 0.013110741972923279, -0.005332980304956436]} +{"t": 10.8873, "q": [-0.12315820157527924, 0.0028088889084756374, 0.00571833923459053, 0.31703120470046997, -0.18529857695102692, -0.010175752453505993, -0.07557071000337601, -0.03557131066918373, 0.02468126453459263, 0.33867737650871277, -0.2700633704662323, 0.025617411360144615, 0.0023034061305224895, 0.07087302207946777, 0.0047906083054840565, 0.05505553260445595, 0.12149607390165329, 0.09094828367233276, 0.2884003818035126, -0.30443528294563293, -0.5834999680519104, -0.26785942912101746, 0.12450411915779114, -0.18092584609985352, 0.06229400262236595, 1.1677669286727905, -0.0055486964993178844, 0.01312272623181343, -0.005320996046066284]} +{"t": 10.9042, "q": [-0.12314116209745407, 0.0028088889084756374, 0.005731731187552214, 0.317099392414093, -0.1852942556142807, -0.010168633423745632, -0.07557071000337601, -0.03555426374077797, 0.02472143992781639, 0.33873704075813293, -0.2700636386871338, 0.025646274909377098, 0.002316797850653529, 0.07089567929506302, 0.004784878343343735, 0.05512743443250656, 0.12202338129281998, 0.09074455499649048, 0.288448303937912, -0.30425551533699036, -0.5767168998718262, -0.2682309150695801, 0.12443221360445023, -0.18099775910377502, 0.062258049845695496, 1.167754888534546, -0.005572664551436901, 0.013134710490703583, -0.005344964563846588]} +{"t": 10.9209, "q": [-0.12314968556165695, 0.0028088889084756374, 0.005731731187552214, 0.3171931505203247, -0.1852901577949524, -0.010189914144575596, -0.07557071000337601, -0.03557131066918373, 0.024748222902417183, 0.33877113461494446, -0.27005937695503235, 0.02563902735710144, 0.002316797850653529, 0.07091855257749557, 0.0047599622048437595, 0.05505553260445595, 0.12298212200403214, 0.09061272442340851, 0.28820863366127014, -0.3039678931236267, -0.5675369501113892, -0.26848259568214417, 0.12445618212223053, -0.18093782663345337, 0.06227003410458565, 1.1677669286727905, -0.005572664551436901, 0.01312272623181343, -0.005332980304956436]} +{"t": 10.9377, "q": [-0.12314968556165695, 0.0028088889084756374, 0.00571833923459053, 0.3172016441822052, -0.18529005348682404, -0.010175714269280434, -0.07557923346757889, -0.03557131066918373, 0.024801790714263916, 0.3388478457927704, -0.2700551450252533, 0.025631777942180634, 0.0022230546455830336, 0.07097146660089493, 0.004743396770209074, 0.054803863167762756, 0.1245640367269516, 0.09049288183450699, 0.2883884012699127, -0.3035484552383423, -0.5609815716743469, -0.26861441135406494, 0.12445618212223053, -0.18094982206821442, 0.062258049845695496, 1.1677669286727905, -0.0055486964993178844, 0.013110741972923279, -0.005332980304956436]} +{"t": 10.9547, "q": [-0.12310706824064255, 0.0028088889084756374, 0.0057719070464372635, 0.31722721457481384, -0.18529005348682404, -0.010175714269280434, -0.07557923346757889, -0.03555426374077797, 0.02484196610748768, 0.3388478457927704, -0.2700592577457428, 0.025624603033065796, 0.0021025275345891714, 0.0710320696234703, 0.004712128080427647, 0.05477989464998245, 0.12697286903858185, 0.0902651846408844, 0.28823259472846985, -0.3028533458709717, -0.5533356666564941, -0.2689260244369507, 0.12445618212223053, -0.18093782663345337, 0.06229400262236595, 1.1677788496017456, -0.005596633069217205, 0.01312272623181343, -0.005332980304956436]} +{"t": 10.9715, "q": [-0.12302184849977493, 0.002817410510033369, 0.005812082905322313, 0.31726983189582825, -0.1852901577949524, -0.010189914144575596, -0.07557071000337601, -0.035537220537662506, 0.02485535852611065, 0.3388819098472595, -0.27006348967552185, 0.025631852447986603, 0.0019953923765569925, 0.07108508795499802, 0.004685969557613134, 0.05469600483775139, 0.1296573281288147, 0.08916263282299042, 0.2878970503807068, -0.3013792932033539, -0.5458694696426392, -0.2695971429347992, 0.12448015064001083, -0.18094982206821442, 0.06223408132791519, 1.1677669286727905, -0.005596633069217205, 0.01312272623181343, -0.005332980304956436]} +{"t": 10.9882, "q": [-0.12297923862934113, 0.002817410510033369, 0.0058388663455843925, 0.31727835536003113, -0.18528585135936737, -0.010182795114815235, -0.07557071000337601, -0.035537220537662506, 0.02489553391933441, 0.33891600370407104, -0.27005937695503235, 0.02563902735710144, 0.0019552167505025864, 0.07116065919399261, 0.004663674160838127, 0.054492272436618805, 0.13186243176460266, 0.0881679430603981, 0.28788506984710693, -0.3000490367412567, -0.5399852395057678, -0.2706637382507324, 0.12445618212223053, -0.18097378313541412, 0.0622820183634758, 1.167754888534546, -0.005572664551436901, 0.01312272623181343, -0.005320996046066284]} +{"t": 11.005, "q": [-0.1229451522231102, 0.0028259330429136753, 0.005825474392622709, 0.31732097268104553, -0.18527734279632568, -0.010182756930589676, -0.07556218653917313, -0.035528700798749924, 0.02489553391933441, 0.3389756679534912, -0.2700592577457428, 0.025624603033065796, 0.0018882573349401355, 0.07133416086435318, 0.004642050713300705, 0.05440838262438774, 0.13488245010375977, 0.08678975701332092, 0.2875135540962219, -0.2986468970775604, -0.5329504609107971, -0.2718381881713867, 0.12442022562026978, -0.18097378313541412, 0.062258049845695496, 1.1677428483963013, -0.005572664551436901, 0.013110741972923279, -0.005344964563846588]} +{"t": 11.0218, "q": [-0.12289401888847351, 0.002842977177351713, 0.0058388663455843925, 0.31732097268104553, -0.1852816492319107, -0.010189875029027462, -0.07556218653917313, -0.03551165387034416, 0.02489553391933441, 0.33900976181030273, -0.2700592577457428, 0.025624603033065796, 0.0018614735454320908, 0.07155320793390274, 0.0045896368101239204, 0.05450425669550896, 0.138993039727211, 0.08468053489923477, 0.2866986095905304, -0.29662156105041504, -0.524213969707489, -0.273611843585968, 0.12439625710248947, -0.18097378313541412, 0.06229400262236595, 1.1677428483963013, -0.005560680292546749, 0.013110741972923279, -0.005344964563846588]} +{"t": 11.0386, "q": [-0.1228514090180397, 0.0028514997102320194, 0.005892434157431126, 0.31732097268104553, -0.18527743220329285, -0.01019696518778801, -0.07555367052555084, -0.035477567464113235, 0.024935709312558174, 0.33906087279319763, -0.2700592577457428, 0.025624603033065796, 0.0018079059664160013, 0.07183929532766342, 0.004606420174241066, 0.0544683039188385, 0.14370284974575043, 0.08224774152040482, 0.2868184745311737, -0.2920915186405182, -0.5176945328712463, -0.2767157554626465, 0.12436030805110931, -0.18097378313541412, 0.062305986881256104, 1.1677309274673462, -0.005560680292546749, 0.013098758645355701, -0.005332980304956436]} +{"t": 11.0556, "q": [-0.12284288555383682, 0.002860021311789751, 0.005946001503616571, 0.31731244921684265, -0.18527312576770782, -0.010189846158027649, -0.07557071000337601, -0.0354946106672287, 0.024989277124404907, 0.3390779197216034, -0.2700592577457428, 0.025624603033065796, 0.0015400679549202323, 0.07220738381147385, 0.004701375029981136, 0.05452822521328926, 0.1479812115430832, 0.08037819713354111, 0.2868184745311737, -0.2881726920604706, -0.5110912322998047, -0.2807304859161377, 0.12432435154914856, -0.18097378313541412, 0.06227003410458565, 1.1677428483963013, -0.005572664551436901, 0.01308677438646555, -0.005332980304956436]} +{"t": 11.0724, "q": [-0.12281732261180878, 0.002842977177351713, 0.006012961268424988, 0.31731244921684265, -0.18528154492378235, -0.010175676085054874, -0.07558775693178177, -0.0354946106672287, 0.02505623735487461, 0.3391120135784149, -0.2700592577457428, 0.025624603033065796, 0.0013659733813256025, 0.07260563224554062, 0.004795062355697155, 0.0544683039188385, 0.1521756947040558, 0.07878429442644119, 0.28666266798973083, -0.282875657081604, -0.5030977725982666, -0.28428977727890015, 0.12433633953332901, -0.18103370070457458, 0.062258049845695496, 1.1677069664001465, -0.0055486964993178844, 0.013098758645355701, -0.005320996046066284]} +{"t": 11.0891, "q": [-0.12277470529079437, 0.002860021311789751, 0.006106704473495483, 0.3173294961452484, -0.1852816492319107, -0.010189875029027462, -0.07557923346757889, -0.03550313413143158, 0.025163371115922928, 0.33913758397102356, -0.2700551450252533, 0.025631777942180634, 0.0011650949018076062, 0.07304144650697708, 0.004891643766313791, 0.05442036688327789, 0.15754462778568268, 0.07621967047452927, 0.2867226004600525, -0.27979570627212524, -0.49709367752075195, -0.28713005781173706, 0.12442022562026978, -0.1811056137084961, 0.06221011281013489, 1.1677669286727905, -0.0055486964993178844, 0.013110741972923279, -0.005320996046066284]} +{"t": 11.1059, "q": [-0.12277470529079437, 0.002860021311789751, 0.006146880332380533, 0.31732097268104553, -0.18528154492378235, -0.010175676085054874, -0.07557071000337601, -0.03551165387034416, 0.02520354837179184, 0.33914610743522644, -0.27005502581596375, 0.025617355480790138, 0.0011383111122995615, 0.07351581752300262, 0.004904880654066801, 0.05463608354330063, 0.16418388485908508, 0.07330750674009323, 0.2866746485233307, -0.2760925889015198, -0.4900110065937042, -0.28920331597328186, 0.12449213117361069, -0.18126140534877777, 0.06221011281013489, 1.1677788496017456, -0.0055486964993178844, 0.01312272623181343, -0.005344964563846588]} +{"t": 11.1228, "q": [-0.12277470529079437, 0.0028259330429136753, 0.0061736637726426125, 0.31732097268104553, -0.1852816492319107, -0.010189875029027462, -0.07556218653917313, -0.03554574400186539, 0.02521693892776966, 0.33913758397102356, -0.2700551450252533, 0.025631777942180634, 0.001272230059839785, 0.07389973104000092, 0.004912043921649456, 0.05482783168554306, 0.17014004290103912, 0.07065898925065994, 0.286422997713089, -0.2712389826774597, -0.48201751708984375, -0.2910129427909851, 0.12451609969139099, -0.18144117295742035, 0.06221011281013489, 1.1677908897399902, -0.0055486964993178844, 0.01312272623181343, -0.005344964563846588]} +{"t": 11.1396, "q": [-0.12274914234876633, 0.002817410510033369, 0.006200447678565979, 0.3173294961452484, -0.18528154492378235, -0.010175676085054874, -0.07556218653917313, -0.035588353872299194, 0.02523033134639263, 0.3392142951488495, -0.27005091309547424, 0.025624530389904976, 0.0013257976388558745, 0.07440317422151566, 0.0050002592615783215, 0.05510346591472626, 0.17736653983592987, 0.06753110885620117, 0.28655481338500977, -0.26543861627578735, -0.4765167534351349, -0.293110191822052, 0.12448015064001083, -0.18169283866882324, 0.06221011281013489, 1.1678388118743896, -0.0055486964993178844, 0.013134710490703583, -0.00535694882273674]} +{"t": 11.1563, "q": [-0.12275766581296921, 0.0028088889084756374, 0.006200447678565979, 0.31736359000205994, -0.18528585135936737, -0.010182795114815235, -0.07557923346757889, -0.03556278720498085, 0.025243723765015602, 0.3392142951488495, -0.2700592577457428, 0.025624603033065796, 0.0013257976388558745, 0.07474210858345032, 0.004990215878933668, 0.055630773305892944, 0.18438929319381714, 0.0644032284617424, 0.28650686144828796, -0.26010560989379883, -0.4714713990688324, -0.2950875759124756, 0.12433633953332901, -0.1820044219493866, 0.062198128551244736, 1.1678388118743896, -0.0055247279815375805, 0.013146694749593735, -0.005368933081626892]} +{"t": 11.173, "q": [-0.12275766581296921, 0.002817410510033369, 0.006187055725604296, 0.3173465430736542, -0.1852816492319107, -0.010189875029027462, -0.07556218653917313, -0.03556278720498085, 0.02523033134639263, 0.3392057716846466, -0.2700592577457428, 0.025624603033065796, 0.0014061490073800087, 0.07502055168151855, 0.005001995712518692, 0.056182049214839935, 0.19056116044521332, 0.062198128551244736, 0.28631511330604553, -0.2533944547176361, -0.4664500057697296, -0.29711291193962097, 0.12436030805110931, -0.18226808309555054, 0.062198128551244736, 1.1678627729415894, -0.0055367122404277325, 0.013134710490703583, -0.00535694882273674]} +{"t": 11.1898, "q": [-0.12274914234876633, 0.002817410510033369, 0.006187055725604296, 0.3173806369304657, -0.18527734279632568, -0.010182756930589676, -0.07555367052555084, -0.03556278720498085, 0.02523033134639263, 0.33923983573913574, -0.2700633704662323, 0.025617411360144615, 0.0014731085393577814, 0.07522355765104294, 0.005026665981858969, 0.056829195469617844, 0.19688883423805237, 0.060340575873851776, 0.28618329763412476, -0.24652749300003052, -0.46057775616645813, -0.300252765417099, 0.12442022562026978, -0.1823999136686325, 0.062186144292354584, 1.167886734008789, -0.0055486964993178844, 0.01312272623181343, -0.00535694882273674]} +{"t": 11.2066, "q": [-0.12274914234876633, 0.002817410510033369, 0.006187055725604296, 0.3173806369304657, -0.18528154492378235, -0.010175676085054874, -0.07555367052555084, -0.03555426374077797, 0.02520354837179184, 0.3392483592033386, -0.27006348967552185, 0.025631852447986603, 0.0015400679549202323, 0.07538114488124847, 0.005072496831417084, 0.05766809359192848, 0.20278507471084595, 0.05893842130899429, 0.28611138463020325, -0.24132634699344635, -0.45700645446777344, -0.30411168932914734, 0.12451609969139099, -0.18249578773975372, 0.062198128551244736, 1.1679946184158325, -0.005560680292546749, 0.013158679008483887, -0.00535694882273674]} +{"t": 11.2234, "q": [-0.12277470529079437, 0.002817410510033369, 0.006160271819680929, 0.3174317479133606, -0.18528154492378235, -0.010175676085054874, -0.07553662359714508, -0.03554574400186539, 0.02520354837179184, 0.33928245306015015, -0.27005091309547424, 0.025624530389904976, 0.0015802436973899603, 0.0754258930683136, 0.005108884535729885, 0.058638814836740494, 0.2084895670413971, 0.05644569918513298, 0.28601551055908203, -0.23516644537448883, -0.4546695351600647, -0.3067961633205414, 0.12463594228029251, -0.18253172934055328, 0.062198128551244736, 1.168042540550232, -0.005584648810327053, 0.013134710490703583, -0.005368933081626892]} +{"t": 11.2401, "q": [-0.12278322875499725, 0.002842977177351713, 0.006160271819680929, 0.31753402948379517, -0.18527734279632568, -0.010182756930589676, -0.07554514706134796, -0.03551165387034416, 0.02519015595316887, 0.33928245306015015, -0.2700551450252533, 0.025631777942180634, 0.002008784329518676, 0.07542578876018524, 0.005118477623909712, 0.05992112681269646, 0.21569208800792694, 0.05283844843506813, 0.2856919467449188, -0.22814369201660156, -0.45181727409362793, -0.3097802400588989, 0.12473181635141373, -0.18263959884643555, 0.062198128551244736, 1.1681983470916748, -0.0055247279815375805, 0.013146694749593735, -0.005368933081626892]} +{"t": 11.2569, "q": [-0.12281732261180878, 0.002817410510033369, 0.006106704473495483, 0.31754255294799805, -0.18527312576770782, -0.010189846158027649, -0.07549401372671127, -0.03556278720498085, 0.025123195722699165, 0.3392654061317444, -0.2700592577457428, 0.025624603033065796, 0.0026783791836351156, 0.07542578876018524, 0.005118477623909712, 0.06139518693089485, 0.2227148413658142, 0.049375008791685104, 0.2838823199272156, -0.22072546184062958, -0.44974401593208313, -0.31274035573005676, 0.12473181635141373, -0.18289126455783844, 0.06221011281013489, 1.1683541536331177, -0.0055486964993178844, 0.013146694749593735, -0.005332980304956436]} +{"t": 11.2736, "q": [-0.12283436208963394, 0.002757756505161524, 0.006106704473495483, 0.31758514046669006, -0.18527734279632568, -0.010182756930589676, -0.07548549026250839, -0.03562244400382042, 0.025096412748098373, 0.3392654061317444, -0.2700551450252533, 0.025631777942180634, 0.0031470954418182373, 0.07544074207544327, 0.005127409938722849, 0.06240186095237732, 0.22846727073192596, 0.04559997841715813, 0.28182104229927063, -0.21375064551830292, -0.44797033071517944, -0.3146098852157593, 0.12464793026447296, -0.1830230951309204, 0.062198128551244736, 1.1683660745620728, -0.005572664551436901, 0.013146694749593735, -0.00535694882273674]} +{"t": 11.2903, "q": [-0.12283436208963394, 0.0026895790360867977, 0.006120096426457167, 0.31758514046669006, -0.18527723848819733, -0.010168557055294514, -0.07548549026250839, -0.03569062054157257, 0.025069627910852432, 0.33927392959594727, -0.2700551450252533, 0.025631777942180634, 0.0032944062259048223, 0.07543326169252396, 0.0051229423843324184, 0.06418751180171967, 0.2353701889514923, 0.04199272394180298, 0.27947214245796204, -0.20467858016490936, -0.4460288882255554, -0.31681498885154724, 0.12449213117361069, -0.18304705619812012, 0.062186144292354584, 1.1683541536331177, -0.0055127437226474285, 0.013158679008483887, -0.005368933081626892]} +{"t": 11.3072, "q": [-0.12287697196006775, 0.0026640123687684536, 0.00613348837941885, 0.31758514046669006, -0.18527734279632568, -0.010182756930589676, -0.07546844333410263, -0.035707663744688034, 0.025149980559945107, 0.3392142951488495, -0.2700425684452057, 0.025624457746744156, 0.0032810145057737827, 0.07544074207544327, 0.005127409938722849, 0.06578141450881958, 0.2397684007883072, 0.039380162954330444, 0.2774108350276947, -0.2007477581501007, -0.44467467069625854, -0.31963127851486206, 0.12439625710248947, -0.1830230951309204, 0.06222209706902504, 1.168330192565918, -0.0055367122404277325, 0.013158679008483887, -0.005344964563846588]} +{"t": 11.3239, "q": [-0.12290254235267639, 0.002629924099892378, 0.006146880332380533, 0.31762775778770447, -0.18527734279632568, -0.010182756930589676, -0.07540879398584366, -0.035784363746643066, 0.025109805166721344, 0.3392142951488495, -0.27004683017730713, 0.025631705299019814, 0.0033881496638059616, 0.07542578876018524, 0.005118477623909712, 0.06723150610923767, 0.24361532926559448, 0.03754657879471779, 0.2758888602256775, -0.19427627325057983, -0.4438837170600891, -0.32402947545051575, 0.12457602471113205, -0.18296316266059875, 0.062258049845695496, 1.168402075767517, -0.0055367122404277325, 0.013146694749593735, -0.005332980304956436]} +{"t": 11.3407, "q": [-0.12290254235267639, 0.0025617475621402264, 0.00613348837941885, 0.31764480471611023, -0.18527723848819733, -0.010168557055294514, -0.07537470012903214, -0.03585254028439522, 0.025109805166721344, 0.33923131227493286, -0.2700425684452057, 0.025624457746744156, 0.003441717242822051, 0.07541061192750931, 0.005128728691488504, 0.06868159770965576, 0.2485048919916153, 0.03508981317281723, 0.2745346426963806, -0.1862228810787201, -0.44299688935279846, -0.32692965865135193, 0.12467189878225327, -0.1829272210597992, 0.06222209706902504, 1.1684379577636719, -0.0055486964993178844, 0.013158679008483887, -0.005368933081626892]} +{"t": 11.3576, "q": [-0.12291106581687927, 0.0025106146931648254, 0.006146880332380533, 0.3176192343235016, -0.185281440615654, -0.010161476209759712, -0.0753917470574379, -0.03593776002526283, 0.025136588141322136, 0.3391972482204437, -0.2700428366661072, 0.025653302669525146, 0.003347973804920912, 0.07542578876018524, 0.005118477623909712, 0.06988001614809036, 0.2536461353302002, 0.033004555851221085, 0.27258118987083435, -0.18005099892616272, -0.44207409024238586, -0.3293384909629822, 0.12464793026447296, -0.1829032450914383, 0.062246065586805344, 1.168497920036316, -0.0055247279815375805, 0.013170663267374039, -0.00535694882273674]} +{"t": 11.3743, "q": [-0.12290254235267639, 0.0024680043570697308, 0.006200447678565979, 0.31762775778770447, -0.18527312576770782, -0.010189846158027649, -0.07538322359323502, -0.035946283489465714, 0.0251767635345459, 0.3392142951488495, -0.27002614736557007, 0.025653157383203506, 0.003240838646888733, 0.07541808485984802, 0.005133193917572498, 0.07075486332178116, 0.2582360804080963, 0.03218962997198105, 0.27053189277648926, -0.17187775671482086, -0.4410434663295746, -0.33168739080429077, 0.12463594228029251, -0.18291522562503815, 0.06222209706902504, 1.168497920036316, -0.0055486964993178844, 0.013158679008483887, -0.005368933081626892]} +{"t": 11.3911, "q": [-0.12290254235267639, 0.0024680043570697308, 0.0061736637726426125, 0.3176107108592987, -0.18527723848819733, -0.010168557055294514, -0.07540027052164078, -0.035954803228378296, 0.0251767635345459, 0.33918872475624084, -0.27002614736557007, 0.025653157383203506, 0.003240838646888733, 0.07541808485984802, 0.005133193917572498, 0.07152185589075089, 0.2623586654663086, 0.03139866888523102, 0.2684226632118225, -0.16336895525455475, -0.4402884542942047, -0.33361685276031494, 0.12467189878225327, -0.1829272210597992, 0.06221011281013489, 1.168497920036316, -0.0055486964993178844, 0.013158679008483887, -0.00535694882273674]} +{"t": 11.408, "q": [-0.12291958183050156, 0.0024680043570697308, 0.0061736637726426125, 0.3176192343235016, -0.18527723848819733, -0.010168557055294514, -0.07540027052164078, -0.03592924028635025, 0.025149980559945107, 0.3391716778278351, -0.27002614736557007, 0.025653157383203506, 0.003254230599850416, 0.07541061192750931, 0.005128728691488504, 0.07242067158222198, 0.2665291726589203, 0.029864689335227013, 0.26658910512924194, -0.15698136389255524, -0.44015663862228394, -0.33491116762161255, 0.12470784783363342, -0.18291522562503815, 0.06221011281013489, 1.1684858798980713, -0.005572664551436901, 0.013170663267374039, -0.00535694882273674]} +{"t": 11.4247, "q": [-0.12292810529470444, 0.0024509597569704056, 0.0061736637726426125, 0.3176192343235016, -0.18527713418006897, -0.010154357179999352, -0.07540879398584366, -0.03592924028635025, 0.025083020329475403, 0.3391631543636322, -0.2700262665748596, 0.025667579844594002, 0.003347973804920912, 0.07538773119449615, 0.005153696518391371, 0.07345131784677505, 0.2712389826774597, 0.027431892231106758, 0.2645517587661743, -0.14823287725448608, -0.4405880570411682, -0.33608561754226685, 0.12473181635141373, -0.1829032450914383, 0.06222209706902504, 1.168497920036316, -0.0055486964993178844, 0.013158679008483887, -0.00535694882273674]} +{"t": 11.4414, "q": [-0.1229451522231102, 0.0024935705587267876, 0.006146880332380533, 0.3176107108592987, -0.185285747051239, -0.010168595239520073, -0.07540027052164078, -0.03592924028635025, 0.02502945251762867, 0.33913758397102356, -0.2700346112251282, 0.025667652487754822, 0.0035354604478925467, 0.07538025081157684, 0.005149231757968664, 0.07476957887411118, 0.276559978723526, 0.02448377199470997, 0.26174744963645935, -0.14067083597183228, -0.44105544686317444, -0.33710426092147827, 0.12475578486919403, -0.1829032450914383, 0.06221011281013489, 1.168509840965271, -0.005584648810327053, 0.013146694749593735, -0.00535694882273674]} +{"t": 11.4584, "q": [-0.1229451522231102, 0.0025106146931648254, 0.006146880332380533, 0.3175766170024872, -0.185285747051239, -0.010168595239520073, -0.07541730999946594, -0.03591219335794449, 0.02504284493625164, 0.3390864431858063, -0.2700346112251282, 0.025667652487754822, 0.0036827712319791317, 0.07539542764425278, 0.005138980224728584, 0.07612379640340805, 0.27984365820884705, 0.023632891476154327, 0.25767281651496887, -0.13229386508464813, -0.4415348172187805, -0.33813491463661194, 0.12473181635141373, -0.18293920159339905, 0.06223408132791519, 1.168509840965271, -0.005572664551436901, 0.013146694749593735, -0.00535694882273674]} +{"t": 11.4752, "q": [-0.12296219915151596, 0.0025020926259458065, 0.006106704473495483, 0.31758514046669006, -0.18527723848819733, -0.010168557055294514, -0.07541730999946594, -0.03591219335794449, 0.024989277124404907, 0.3390864431858063, -0.2700387239456177, 0.025660477578639984, 0.003910433501005173, 0.0753803625702858, 0.00513963820412755, 0.07744206488132477, 0.2829715311527252, 0.02311757020652294, 0.25386184453964233, -0.12281434237957001, -0.44234973192214966, -0.33928540349006653, 0.12473181635141373, -0.18296316266059875, 0.06222209706902504, 1.168509840965271, -0.0055486964993178844, 0.013158679008483887, -0.00535694882273674]} +{"t": 11.4919, "q": [-0.1229451522231102, 0.0025191367603838444, 0.00605313666164875, 0.3175681233406067, -0.185285747051239, -0.010168595239520073, -0.07542583346366882, -0.035886626690626144, 0.024962494149804115, 0.3390779197216034, -0.2700344920158386, 0.025653230026364326, 0.003937217406928539, 0.07540301978588104, 0.005133854690939188, 0.0785326287150383, 0.28548821806907654, 0.022782012820243835, 0.25130921602249146, -0.11514443904161453, -0.4431886374950409, -0.3413826525211334, 0.12473181635141373, -0.18293920159339905, 0.06227003410458565, 1.1685339212417603, -0.005572664551436901, 0.013146694749593735, -0.005368933081626892]} +{"t": 11.5086, "q": [-0.12297071516513824, 0.0025361808948218822, 0.00605313666164875, 0.3175595998764038, -0.18528564274311066, -0.01015439536422491, -0.07546844333410263, -0.03584401682019234, 0.024975884705781937, 0.33906087279319763, -0.2700346112251282, 0.025667652487754822, 0.003937217406928539, 0.07538773119449615, 0.005153696518391371, 0.07985088974237442, 0.28862807154655457, 0.0225662961602211, 0.24804949760437012, -0.10668357461690903, -0.44391965866088867, -0.34447458386421204, 0.12473181635141373, -0.18296316266059875, 0.06223408132791519, 1.1685458421707153, -0.005596633069217205, 0.013146694749593735, -0.005332980304956436]} +{"t": 11.5253, "q": [-0.12297923862934113, 0.0025787916965782642, 0.00605313666164875, 0.3175255060195923, -0.18528994917869568, -0.010161514393985271, -0.07546844333410263, -0.03579288348555565, 0.024962494149804115, 0.3390268087387085, -0.2700344920158386, 0.025653230026364326, 0.0038970415480434895, 0.07538025081157684, 0.005149231757968664, 0.08148074895143509, 0.29210349917411804, 0.02129596844315529, 0.24496954679489136, -0.0984264388680458, -0.4454776346683502, -0.34687140583992004, 0.12475578486919403, -0.1829511821269989, 0.062246065586805344, 1.1685458421707153, -0.005560680292546749, 0.013158679008483887, -0.00535694882273674]} +{"t": 11.542, "q": [-0.12299628555774689, 0.0026043583638966084, 0.006039745174348354, 0.31749141216278076, -0.185285747051239, -0.010168595239520073, -0.07545992732048035, -0.03575027361512184, 0.024949101731181145, 0.33900976181030273, -0.2700346112251282, 0.025667652487754822, 0.003923825453966856, 0.07538025081157684, 0.005149231757968664, 0.08309862017631531, 0.2957826554775238, 0.020085562020540237, 0.24157801270484924, -0.08800016343593597, -0.4480781853199005, -0.34853723645210266, 0.12482769042253494, -0.18293920159339905, 0.06223408132791519, 1.1685458421707153, -0.0055367122404277325, 0.013146694749593735, -0.005344964563846588]} +{"t": 11.5588, "q": [-0.12301332503557205, 0.002595835831016302, 0.006012961268424988, 0.3174828886985779, -0.185285747051239, -0.010168595239520073, -0.07545140385627747, -0.035767316818237305, 0.02489553391933441, 0.33896714448928833, -0.2700387239456177, 0.025660477578639984, 0.004017568659037352, 0.07538773119449615, 0.005153696518391371, 0.08446481823921204, 0.29764020442962646, 0.01949833519756794, 0.2380426675081253, -0.08047407120466232, -0.45131394267082214, -0.3501790761947632, 0.12491157650947571, -0.18293920159339905, 0.062246065586805344, 1.1685458421707153, -0.005572664551436901, 0.013146694749593735, -0.00535694882273674]} +{"t": 11.5755, "q": [-0.12305594235658646, 0.0025873142294585705, 0.005959393456578255, 0.3174658417701721, -0.18528994917869568, -0.010161514393985271, -0.07545140385627747, -0.03579288348555565, 0.02485535852611065, 0.3389841914176941, -0.2700388431549072, 0.02567490190267563, 0.004432717338204384, 0.07538773119449615, 0.005153696518391371, 0.08550744503736496, 0.2987547516822815, 0.019222697243094444, 0.23436351120471954, -0.072792187333107, -0.4557361304759979, -0.3518208861351013, 0.12498348206281662, -0.18296316266059875, 0.06221011281013489, 1.168569803237915, -0.0055367122404277325, 0.013146694749593735, -0.00535694882273674]} +{"t": 11.5923, "q": [-0.12304741889238358, 0.0025617475621402264, 0.005919218063354492, 0.31749993562698364, -0.18528994917869568, -0.010161514393985271, -0.07542583346366882, -0.03580993041396141, 0.024828573688864708, 0.3389841914176941, -0.2700387239456177, 0.025660477578639984, 0.0049817850813269615, 0.07539542764425278, 0.005138980224728584, 0.08591490983963013, 0.29971349239349365, 0.018695391714572906, 0.23153522610664368, -0.0647267997264862, -0.46030211448669434, -0.3531032204627991, 0.12500745058059692, -0.18293920159339905, 0.062258049845695496, 1.1685937643051147, -0.0055486964993178844, 0.013158679008483887, -0.005368933081626892]} +{"t": 11.6092, "q": [-0.12305594235658646, 0.0025617475621402264, 0.005919218063354492, 0.3175169825553894, -0.18528154492378235, -0.010175676085054874, -0.0754343569278717, -0.03580993041396141, 0.024775007739663124, 0.33900123834609985, -0.2700346112251282, 0.025667652487754822, 0.005222839303314686, 0.07538773119449615, 0.005153696518391371, 0.08617856353521347, 0.3006722331047058, 0.018132133409380913, 0.2284313142299652, -0.056649431586265564, -0.4625910818576813, -0.3539181351661682, 0.12494753301143646, -0.1829511821269989, 0.06222209706902504, 1.168569803237915, -0.0055486964993178844, 0.013158679008483887, -0.005368933081626892]} +{"t": 11.6259, "q": [-0.12305594235658646, 0.0025787916965782642, 0.005892434157431126, 0.3175255060195923, -0.18527723848819733, -0.010168557055294514, -0.07541730999946594, -0.03579288348555565, 0.024775007739663124, 0.3390182852745056, -0.2700346112251282, 0.025667652487754822, 0.005450501572340727, 0.07538773119449615, 0.005153696518391371, 0.08647816628217697, 0.30176278948783875, 0.017173394560813904, 0.22530344128608704, -0.047529436647892, -0.4642089605331421, -0.3543255925178528, 0.12492356449365616, -0.1829751580953598, 0.062198128551244736, 1.168569803237915, -0.005560680292546749, 0.013146694749593735, -0.005368933081626892]} +{"t": 11.6427, "q": [-0.12307298183441162, 0.0025702696293592453, 0.005865650251507759, 0.3175255060195923, -0.185281440615654, -0.010161476209759712, -0.07541730999946594, -0.03579288348555565, 0.024748222902417183, 0.33900123834609985, -0.2700346112251282, 0.025667652487754822, 0.00546389352530241, 0.07538025081157684, 0.005149231757968664, 0.08689761906862259, 0.3027934432029724, 0.01643037237226963, 0.22265492379665375, -0.041501373052597046, -0.46664175391197205, -0.3546012341976166, 0.12492356449365616, -0.18298713862895966, 0.062186144292354584, 1.16855788230896, -0.0055486964993178844, 0.013158679008483887, -0.005368933081626892]} +{"t": 11.6596, "q": [-0.12307298183441162, 0.0025787916965782642, 0.005892434157431126, 0.31753402948379517, -0.18528585135936737, -0.010182795114815235, -0.07544288039207458, -0.035775840282440186, 0.024788398295640945, 0.33900976181030273, -0.2700387239456177, 0.025660477578639984, 0.00542371766641736, 0.07538773119449615, 0.005153696518391371, 0.08755674958229065, 0.3033926486968994, 0.016226641833782196, 0.2193712443113327, -0.034874096512794495, -0.4695179760456085, -0.3546971082687378, 0.12497150152921677, -0.18296316266059875, 0.06221011281013489, 1.168569803237915, -0.0055486964993178844, 0.013158679008483887, -0.005368933081626892]} +{"t": 11.6763, "q": [-0.12307298183441162, 0.002595835831016302, 0.005892434157431126, 0.3175255060195923, -0.18528585135936737, -0.010182795114815235, -0.0754343569278717, -0.03575879707932472, 0.024775007739663124, 0.33895862102508545, -0.2700346112251282, 0.025667652487754822, 0.005383542273193598, 0.07538025081157684, 0.005149231757968664, 0.08829977363348007, 0.30363231897354126, 0.016178704798221588, 0.2161235213279724, -0.027395939454436302, -0.4734727740287781, -0.3546971082687378, 0.1252351552248001, -0.1829511821269989, 0.06222209706902504, 1.1685458421707153, -0.005560680292546749, 0.013158679008483887, -0.005368933081626892]} +{"t": 11.693, "q": [-0.12307298183441162, 0.002595835831016302, 0.005865650251507759, 0.3175169825553894, -0.185281440615654, -0.010161476209759712, -0.07544288039207458, -0.03575879707932472, 0.024748222902417183, 0.33895862102508545, -0.2700303792953491, 0.025660404935479164, 0.005410325713455677, 0.07538773119449615, 0.005153696518391371, 0.08863533288240433, 0.3036203384399414, 0.016142752021551132, 0.21409818530082703, -0.022338595241308212, -0.4786379635334015, -0.35468512773513794, 0.1254149228334427, -0.18296316266059875, 0.06222209706902504, 1.1685458421707153, -0.005596633069217205, 0.01312272623181343, -0.00535694882273674]} +{"t": 11.7097, "q": [-0.12307298183441162, 0.002595835831016302, 0.005852258298546076, 0.3175084590911865, -0.185285747051239, -0.010168595239520073, -0.0754343569278717, -0.03575879707932472, 0.024761615321040154, 0.33896714448928833, -0.2700344920158386, 0.025653230026364326, 0.005450501572340727, 0.07538773119449615, 0.005153696518391371, 0.08885104954242706, 0.303572416305542, 0.01637045107781887, 0.21212078630924225, -0.01593901962041855, -0.48259276151657104, -0.3546731472015381, 0.1254149228334427, -0.18296316266059875, 0.06223408132791519, 1.1685458421707153, -0.005584648810327053, 0.01312272623181343, -0.005368933081626892]} +{"t": 11.7265, "q": [-0.12307298183441162, 0.0025873142294585705, 0.005852258298546076, 0.3175084590911865, -0.18528154492378235, -0.010175676085054874, -0.07542583346366882, -0.03575879707932472, 0.02472143992781639, 0.3389841914176941, -0.2700388431549072, 0.02567490190267563, 0.005504068918526173, 0.07538773119449615, 0.005153696518391371, 0.0890188217163086, 0.30351248383522034, 0.016586167737841606, 0.20991568267345428, -0.010234528221189976, -0.4845222234725952, -0.35452932119369507, 0.1253909468650818, -0.1829511821269989, 0.06221011281013489, 1.16855788230896, -0.005560680292546749, 0.013158679008483887, -0.00535694882273674]} +{"t": 11.7432, "q": [-0.12307298183441162, 0.0025873142294585705, 0.005825474392622709, 0.3175084590911865, -0.18527734279632568, -0.010182756930589676, -0.0753917470574379, -0.035767316818237305, 0.024667872115969658, 0.33900123834609985, -0.2700303792953491, 0.025660404935479164, 0.005530852824449539, 0.07538025081157684, 0.005149231757968664, 0.0890667587518692, 0.30351248383522034, 0.016646089032292366, 0.20814202725887299, -0.007466172333806753, -0.48551690578460693, -0.35450536012649536, 0.12529507279396057, -0.1829511821269989, 0.06221011281013489, 1.16855788230896, -0.005596633069217205, 0.013134710490703583, -0.00535694882273674]} +{"t": 11.7599, "q": [-0.12307298183441162, 0.002595835831016302, 0.005825474392622709, 0.31749141216278076, -0.185285747051239, -0.010168595239520073, -0.07540879398584366, -0.03575879707932472, 0.02470804750919342, 0.3389841914176941, -0.2700346112251282, 0.025667652487754822, 0.005530852824449539, 0.07538025081157684, 0.005149231757968664, 0.0890667587518692, 0.30288931727409363, 0.017053551971912384, 0.20650018751621246, -0.006579339504241943, -0.4866673946380615, -0.3544694185256958, 0.12522317469120026, -0.18293920159339905, 0.062198128551244736, 1.1685339212417603, -0.005596633069217205, 0.013170663267374039, -0.005368933081626892]} +{"t": 11.7767, "q": [-0.12307298183441162, 0.0026043583638966084, 0.0057719070464372635, 0.31749141216278076, -0.18528585135936737, -0.010182795114815235, -0.07540027052164078, -0.03574175387620926, 0.02470804750919342, 0.3389841914176941, -0.2700346112251282, 0.025667652487754822, 0.005517460871487856, 0.07538025081157684, 0.005149231757968664, 0.08903080970048904, 0.3020743727684021, 0.0174490325152874, 0.20561335980892181, -0.006339655257761478, -0.4881414771080017, -0.3543495833873749, 0.1252351552248001, -0.18293920159339905, 0.06223408132791519, 1.1685339212417603, -0.005560680292546749, 0.013158679008483887, -0.00535694882273674]} +{"t": 11.7935, "q": [-0.12307298183441162, 0.00261287996545434, 0.00579869095236063, 0.31749993562698364, -0.185285747051239, -0.010168595239520073, -0.07540879398584366, -0.03573323041200638, 0.02470804750919342, 0.338992714881897, -0.2700387239456177, 0.025660477578639984, 0.005504068918526173, 0.07536507397890091, 0.005159482825547457, 0.08910271525382996, 0.3016788959503174, 0.01768871583044529, 0.20485834777355194, -0.0063037024810910225, -0.48980727791786194, -0.35422971844673157, 0.12529507279396057, -0.1829272210597992, 0.06223408132791519, 1.16855788230896, -0.005596633069217205, 0.013158679008483887, -0.005368933081626892]} +{"t": 11.8103, "q": [-0.12309002876281738, 0.002629924099892378, 0.00579869095236063, 0.31749141216278076, -0.18528994917869568, -0.010161514393985271, -0.07541730999946594, -0.03574175387620926, 0.02470804750919342, 0.33900123834609985, -0.2700387239456177, 0.025660477578639984, 0.00542371766641736, 0.07535012066364288, 0.00515055051073432, 0.08907874673604965, 0.3008520007133484, 0.01835983246564865, 0.20392358303070068, -0.006375608034431934, -0.49144911766052246, -0.3540739417076111, 0.12531904876232147, -0.18289126455783844, 0.062246065586805344, 1.1685458421707153, -0.005608617328107357, 0.013134710490703583, -0.00535694882273674]} +{"t": 11.827, "q": [-0.1230815052986145, 0.0026214024983346462, 0.005812082905322313, 0.31749141216278076, -0.18528154492378235, -0.010175676085054874, -0.07540027052164078, -0.0357247069478035, 0.02469465509057045, 0.3389756679534912, -0.2700346112251282, 0.025667652487754822, 0.005410325713455677, 0.07534264028072357, 0.005146082956343889, 0.08912668377161026, 0.299054354429245, 0.02057691477239132, 0.20223380625247955, -0.006519418675452471, -0.49315086007118225, -0.3537983000278473, 0.12535499036312103, -0.18289126455783844, 0.06222209706902504, 1.1685458421707153, -0.005572664551436901, 0.013146694749593735, -0.00535694882273674]} +{"t": 11.8437, "q": [-0.12309002876281738, 0.0026214024983346462, 0.00579869095236063, 0.31749993562698364, -0.18528564274311066, -0.01015439536422491, -0.07540879398584366, -0.03574175387620926, 0.02470804750919342, 0.3389756679534912, -0.2700387239456177, 0.025660477578639984, 0.00542371766641736, 0.07534264028072357, 0.005146082956343889, 0.08912668377161026, 0.2964537739753723, 0.024028372019529343, 0.20025640726089478, -0.006759102921932936, -0.49529603123664856, -0.35351067781448364, 0.12535499036312103, -0.18285530805587769, 0.06222209706902504, 1.1685818433761597, -0.005596633069217205, 0.013146694749593735, -0.005368933081626892]} +{"t": 11.8604, "q": [-0.12310706824064255, 0.0026214024983346462, 0.00579869095236063, 0.31753402948379517, -0.18528994917869568, -0.010161514393985271, -0.07537470012903214, -0.03573323041200638, 0.02472143992781639, 0.3389756679534912, -0.2700344920158386, 0.025653230026364326, 0.005557636730372906, 0.07531999051570892, 0.005151869263499975, 0.08912668377161026, 0.29404494166374207, 0.026940537616610527, 0.19844678044319153, -0.007334345951676369, -0.49877145886421204, -0.35316312313079834, 0.1253909468650818, -0.18285530805587769, 0.062198128551244736, 1.168569803237915, -0.005620601586997509, 0.013146694749593735, -0.00535694882273674]} +{"t": 11.8772, "q": [-0.12309855222702026, 0.0026043583638966084, 0.0057719070464372635, 0.3175595998764038, -0.18528154492378235, -0.010175676085054874, -0.07535766065120697, -0.03574175387620926, 0.02468126453459263, 0.3390182852745056, -0.2700388431549072, 0.02567490190267563, 0.005664771888405085, 0.07532746344804764, 0.005156334023922682, 0.08913866430521011, 0.2926667630672455, 0.02865428291261196, 0.19729630649089813, -0.007957525551319122, -0.5024386644363403, -0.35295939445495605, 0.1254149228334427, -0.18284332752227783, 0.06221011281013489, 1.1685818433761597, -0.0055486964993178844, 0.013146694749593735, -0.005368933081626892]} +{"t": 11.8939, "q": [-0.12311559170484543, 0.0026043583638966084, 0.005745123140513897, 0.31759366393089294, -0.18529005348682404, -0.010175714269280434, -0.07536618411540985, -0.03575027361512184, 0.02468126453459263, 0.3390182852745056, -0.2700387239456177, 0.025660477578639984, 0.005678163841366768, 0.07532009482383728, 0.0051422761753201485, 0.08915065228939056, 0.29162412881851196, 0.030463900417089462, 0.1965532749891281, -0.008412926457822323, -0.5049193501472473, -0.3527916371822357, 0.12534300982952118, -0.18286728858947754, 0.06223408132791519, 1.1685937643051147, -0.005596633069217205, 0.013146694749593735, -0.00535694882273674]} +{"t": 11.9106, "q": [-0.12310706824064255, 0.0026043583638966084, 0.005745123140513897, 0.31759366393089294, -0.185285747051239, -0.010168595239520073, -0.07535766065120697, -0.03574175387620926, 0.02468126453459263, 0.3390182852745056, -0.2700346112251282, 0.025667652487754822, 0.0056112040765583515, 0.07531251013278961, 0.005147401709109545, 0.0890667587518692, 0.2902459502220154, 0.03298058733344078, 0.19616977870464325, -0.008988169021904469, -0.5067529678344727, -0.35256391763687134, 0.12533102929592133, -0.18285530805587769, 0.06223408132791519, 1.16855788230896, -0.005596633069217205, 0.013134710490703583, -0.005368933081626892]} +{"t": 11.9273, "q": [-0.12309002876281738, 0.002629924099892378, 0.005745123140513897, 0.3176192343235016, -0.185285747051239, -0.010168595239520073, -0.07536618411540985, -0.03569062054157257, 0.02469465509057045, 0.3390693962574005, -0.2700303792953491, 0.025660404935479164, 0.005637987982481718, 0.07531251013278961, 0.005147401709109545, 0.08888699859380722, 0.28837642073631287, 0.036743633449077606, 0.19579827785491943, -0.009827064350247383, -0.5083588361740112, -0.35219240188598633, 0.12535499036312103, -0.1828792840242386, 0.062246065586805344, 1.16855788230896, -0.005596633069217205, 0.013158679008483887, -0.005368933081626892]} +{"t": 11.944, "q": [-0.1230815052986145, 0.00267253490164876, 0.005745123140513897, 0.31763628125190735, -0.185285747051239, -0.010168595239520073, -0.07536618411540985, -0.03567357361316681, 0.024667872115969658, 0.3390693962574005, -0.2700387239456177, 0.025660477578639984, 0.0055978125892579556, 0.07531251013278961, 0.005147401709109545, 0.08825183659791946, 0.2863750457763672, 0.04111787676811218, 0.19564247131347656, -0.01091762911528349, -0.50995272397995, -0.351880818605423, 0.12549880146980286, -0.18281935155391693, 0.062246065586805344, 1.16855788230896, -0.005596633069217205, 0.013110741972923279, -0.00535694882273674]} +{"t": 11.9608, "q": [-0.12307298183441162, 0.0026640123687684536, 0.00575851509347558, 0.317661851644516, -0.18527723848819733, -0.010168557055294514, -0.07537470012903214, -0.03566505387425423, 0.024734830483794212, 0.33905234932899475, -0.2700344920158386, 0.025653230026364326, 0.005490677431225777, 0.07531251013278961, 0.005147401709109545, 0.08766460418701172, 0.2836546301841736, 0.04621117189526558, 0.19549866020679474, -0.011948272585868835, -0.5113429427146912, -0.35171303153038025, 0.1255107969045639, -0.18286728858947754, 0.062258049845695496, 1.16855788230896, -0.005596633069217205, 0.013134710490703583, -0.00535694882273674]} +{"t": 11.9775, "q": [-0.12307298183441162, 0.0026640123687684536, 0.005745123140513897, 0.3176533281803131, -0.18529005348682404, -0.010175714269280434, -0.07537470012903214, -0.03566505387425423, 0.024734830483794212, 0.33906087279319763, -0.2700346112251282, 0.025667652487754822, 0.00546389352530241, 0.07532768696546555, 0.005137150641530752, 0.0869695246219635, 0.28134167194366455, 0.05007009208202362, 0.1955106556415558, -0.013578127138316631, -0.5131046175956726, -0.35118573904037476, 0.12557071447372437, -0.18284332752227783, 0.062246065586805344, 1.168569803237915, -0.005584648810327053, 0.013134710490703583, -0.00535694882273674]} +{"t": 11.9942, "q": [-0.12307298183441162, 0.0026469682343304157, 0.005745123140513897, 0.3176533281803131, -0.18528154492378235, -0.010175676085054874, -0.07535766065120697, -0.03566505387425423, 0.02472143992781639, 0.33904382586479187, -0.27004295587539673, 0.02566772699356079, 0.005383542273193598, 0.07531251013278961, 0.005147401709109545, 0.08645419776439667, 0.27839356660842896, 0.05373726412653923, 0.1953308880329132, -0.016106799244880676, -0.5158010721206665, -0.3509460389614105, 0.12559467554092407, -0.18284332752227783, 0.06222209706902504, 1.16855788230896, -0.005632585845887661, 0.013134710490703583, -0.00535694882273674]} +{"t": 12.0111, "q": [-0.1230815052986145, 0.00267253490164876, 0.005785298999398947, 0.31764480471611023, -0.18529005348682404, -0.010175714269280434, -0.07536618411540985, -0.03568209707736969, 0.024761615321040154, 0.3390268087387085, -0.27002614736557007, 0.025653157383203506, 0.005316582508385181, 0.07531251013278961, 0.005147401709109545, 0.08583102375268936, 0.274211049079895, 0.0580875389277935, 0.1952829509973526, -0.01859951764345169, -0.5196239948272705, -0.3503707945346832, 0.1255347579717636, -0.18281935155391693, 0.06221011281013489, 1.1685218811035156, -0.005596633069217205, 0.013134710490703583, -0.00535694882273674]} +{"t": 12.0278, "q": [-0.12307298183441162, 0.0026214024983346462, 0.0057719070464372635, 0.3176533281803131, -0.185285747051239, -0.010168595239520073, -0.07535766065120697, -0.0357247069478035, 0.024734830483794212, 0.33905234932899475, -0.2700344920158386, 0.025653230026364326, 0.005343366414308548, 0.07531251013278961, 0.005147401709109545, 0.08478839695453644, 0.2697529196739197, 0.0629051998257637, 0.1950073093175888, -0.021104220300912857, -0.5232312679290771, -0.3496997058391571, 0.12554673850536346, -0.18283134698867798, 0.06221011281013489, 1.16855788230896, -0.005608617328107357, 0.01312272623181343, -0.005344964563846588]} +{"t": 12.0446, "q": [-0.12306445837020874, 0.002638446632772684, 0.0057719070464372635, 0.31762775778770447, -0.18529416620731354, -0.010154425166547298, -0.07535766065120697, -0.035716187208890915, 0.024761615321040154, 0.3390268087387085, -0.2700346112251282, 0.025667652487754822, 0.005316582508385181, 0.07531251013278961, 0.005147401709109545, 0.0839494988322258, 0.26559439301490784, 0.06738729774951935, 0.19488747417926788, -0.025478463619947433, -0.5257239937782288, -0.3488847613334656, 0.12554673850536346, -0.18278340995311737, 0.06222209706902504, 1.1685458421707153, -0.005572664551436901, 0.013134710490703583, -0.005380917340517044]} +{"t": 12.0613, "q": [-0.1230815052986145, 0.0026043583638966084, 0.0057719070464372635, 0.3176192343235016, -0.185285747051239, -0.010168595239520073, -0.07535766065120697, -0.035707663744688034, 0.024801790714263916, 0.3390268087387085, -0.2700387239456177, 0.025660477578639984, 0.005276407115161419, 0.07527478784322739, 0.005153846461325884, 0.08301472663879395, 0.26062095165252686, 0.07228884845972061, 0.19497136771678925, -0.03076350688934326, -0.5267066955566406, -0.3476863503456116, 0.1255347579717636, -0.18278340995311737, 0.062246065586805344, 1.1685218811035156, -0.005596633069217205, 0.013134710490703583, -0.005368933081626892]} +{"t": 12.078, "q": [-0.12309002876281738, 0.00261287996545434, 0.00579869095236063, 0.3176107108592987, -0.18528994917869568, -0.010161514393985271, -0.07535766065120697, -0.03575027361512184, 0.024734830483794212, 0.3390182852745056, -0.2700346112251282, 0.025667652487754822, 0.005249623209238052, 0.07526719570159912, 0.00515897199511528, 0.08204400539398193, 0.2545928955078125, 0.07678293436765671, 0.19517509639263153, -0.036791570484638214, -0.5269224047660828, -0.3464280068874359, 0.1255347579717636, -0.18281935155391693, 0.06223408132791519, 1.1685218811035156, -0.005596633069217205, 0.013146694749593735, -0.00535694882273674]} +{"t": 12.0949, "q": [-0.1230815052986145, 0.0026043583638966084, 0.005812082905322313, 0.3175766170024872, -0.18529847264289856, -0.01016154419630766, -0.07535766065120697, -0.03573323041200638, 0.024748222902417183, 0.33900976181030273, -0.2700303792953491, 0.025660404935479164, 0.005222839303314686, 0.0752369612455368, 0.00516988430172205, 0.08130098134279251, 0.24843299388885498, 0.08194813132286072, 0.195235013961792, -0.042639873921871185, -0.5271500945091248, -0.34542131423950195, 0.12552277743816376, -0.18277141451835632, 0.062258049845695496, 1.1685339212417603, -0.005560680292546749, 0.01312272623181343, -0.005368933081626892]} +{"t": 12.1117, "q": [-0.12309002876281738, 0.002595835831016302, 0.00579869095236063, 0.3175510764122009, -0.18529416620731354, -0.010154425166547298, -0.07535766065120697, -0.03574175387620926, 0.024775007739663124, 0.33900123834609985, -0.2700387239456177, 0.025660477578639984, 0.005115704145282507, 0.07519923895597458, 0.005176329053938389, 0.0806538388133049, 0.24137428402900696, 0.08792825788259506, 0.19541478157043457, -0.0502498559653759, -0.5271860957145691, -0.34477418661117554, 0.1255107969045639, -0.18274745345115662, 0.06227003410458565, 1.1685218811035156, -0.005608617328107357, 0.013110741972923279, -0.005368933081626892]} +{"t": 12.1284, "q": [-0.12309002876281738, 0.0026043583638966084, 0.00579869095236063, 0.31754255294799805, -0.18529416620731354, -0.010154425166547298, -0.07535766065120697, -0.03573323041200638, 0.024761615321040154, 0.3389841914176941, -0.2700346112251282, 0.025667652487754822, 0.00508892023935914, 0.07516910135746002, 0.005177647806704044, 0.08028232306241989, 0.23436351120471954, 0.09339306503534317, 0.19564247131347656, -0.05687713250517845, -0.5271021723747253, -0.3445824384689331, 0.1255107969045639, -0.18273547291755676, 0.06222209706902504, 1.168497920036316, -0.005608617328107357, 0.01308677438646555, -0.00535694882273674]} +{"t": 12.1452, "q": [-0.12310706824064255, 0.002595835831016302, 0.00579869095236063, 0.31753402948379517, -0.18529416620731354, -0.010154425166547298, -0.07536618411540985, -0.03573323041200638, 0.024734830483794212, 0.33896714448928833, -0.2700303792953491, 0.025660404935479164, 0.0051424880512058735, 0.07516910135746002, 0.005177647806704044, 0.0800785943865776, 0.227736234664917, 0.098102867603302, 0.1959540694952011, -0.06423544883728027, -0.5270662307739258, -0.34415099024772644, 0.12554673850536346, -0.18277141451835632, 0.062246065586805344, 1.1685339212417603, -0.005560680292546749, 0.013134710490703583, -0.005368933081626892]} +{"t": 12.1621, "q": [-0.12310706824064255, 0.0026043583638966084, 0.00579869095236063, 0.3175255060195923, -0.18529416620731354, -0.010154425166547298, -0.0753917470574379, -0.03574175387620926, 0.024761615321040154, 0.3389245271682739, -0.2700303792953491, 0.025660404935479164, 0.005048744846135378, 0.07516910135746002, 0.005177647806704044, 0.08009057492017746, 0.2214684784412384, 0.10250107944011688, 0.19609788060188293, -0.0710424855351448, -0.5269943475723267, -0.3441390097141266, 0.12547484040260315, -0.18273547291755676, 0.06227003410458565, 1.1685218811035156, -0.005584648810327053, 0.013134710490703583, -0.00535694882273674]} +{"t": 12.1788, "q": [-0.12311559170484543, 0.00261287996545434, 0.00579869095236063, 0.3175169825553894, -0.18529847264289856, -0.01016154419630766, -0.0753917470574379, -0.03573323041200638, 0.024815183132886887, 0.3388989567756653, -0.2700346112251282, 0.025667652487754822, 0.004941609688103199, 0.07518427819013596, 0.0051673962734639645, 0.07994676381349564, 0.2133551687002182, 0.10848120599985123, 0.19637350738048553, -0.07922771573066711, -0.5267785787582397, -0.34415099024772644, 0.1254149228334427, -0.18272347748279572, 0.06227003410458565, 1.168509840965271, -0.005596633069217205, 0.013134710490703583, -0.00535694882273674]} +{"t": 12.1955, "q": [-0.12310706824064255, 0.002629924099892378, 0.00579869095236063, 0.3175084590911865, -0.18529416620731354, -0.010154425166547298, -0.07538322359323502, -0.03573323041200638, 0.024734830483794212, 0.3388989567756653, -0.2700428366661072, 0.025653302669525146, 0.00479429867118597, 0.07517658174037933, 0.005182112567126751, 0.07977898418903351, 0.20591296255588531, 0.11429355293512344, 0.19666112959384918, -0.08689761906862259, -0.5265149474143982, -0.34412702918052673, 0.1254149228334427, -0.18273547291755676, 0.06222209706902504, 1.168509840965271, -0.005572664551436901, 0.013134710490703583, -0.005368933081626892]} +{"t": 12.2122, "q": [-0.12309002876281738, 0.002629924099892378, 0.005785298999398947, 0.3174828886985779, -0.1852983683347702, -0.010147344321012497, -0.07540879398584366, -0.03568209707736969, 0.024748222902417183, 0.3388563394546509, -0.2700387239456177, 0.025660477578639984, 0.00479429867118597, 0.07516910135746002, 0.005177647806704044, 0.0797550156712532, 0.20047211647033691, 0.11738548427820206, 0.19687685370445251, -0.09336909651756287, -0.5261194705963135, -0.3441390097141266, 0.12545086443424225, -0.18273547291755676, 0.06223408132791519, 1.1685339212417603, -0.005584648810327053, 0.013146694749593735, -0.00535694882273674]} +{"t": 12.229, "q": [-0.12309002876281738, 0.002638446632772684, 0.00579869095236063, 0.3174658417701721, -0.18529416620731354, -0.010154425166547298, -0.0754343569278717, -0.03569062054157257, 0.024801790714263916, 0.33887338638305664, -0.27004706859588623, 0.025660552084445953, 0.0047541228123009205, 0.07517669349908829, 0.005172522272914648, 0.07977898418903351, 0.19392873346805573, 0.12106464058160782, 0.19696074724197388, -0.10083527117967606, -0.5256161093711853, -0.3442348837852478, 0.12542690336704254, -0.18273547291755676, 0.06223408132791519, 1.168509840965271, -0.0055486964993178844, 0.01312272623181343, -0.00535694882273674]} +{"t": 12.2459, "q": [-0.12309002876281738, 0.002638446632772684, 0.005785298999398947, 0.317474365234375, -0.1852942556142807, -0.010168633423745632, -0.07541730999946594, -0.035707663744688034, 0.024801790714263916, 0.3388989567756653, -0.2700346112251282, 0.025667652487754822, 0.004472893197089434, 0.07516932487487793, 0.005158463958650827, 0.07934755831956863, 0.18702581524848938, 0.12505538761615753, 0.19714049994945526, -0.10846922546625137, -0.5252925753593445, -0.3442828357219696, 0.12537896633148193, -0.18268753588199615, 0.06227003410458565, 1.168509840965271, -0.0055486964993178844, 0.013134710490703583, -0.00535694882273674]} +{"t": 12.2626, "q": [-0.1230815052986145, 0.002638446632772684, 0.005825474392622709, 0.317474365234375, -0.18530277907848358, -0.01016866322606802, -0.07540879398584366, -0.03567357361316681, 0.024788398295640945, 0.33890748023986816, -0.2700344920158386, 0.025653230026364326, 0.00416487967595458, 0.07516174018383026, 0.005163589492440224, 0.07888016849756241, 0.18103370070457458, 0.128530815243721, 0.1976797878742218, -0.11549197882413864, -0.5247532725334167, -0.3443906903266907, 0.12527111172676086, -0.18275943398475647, 0.06223408132791519, 1.168509840965271, -0.005632585845887661, 0.013146694749593735, -0.00535694882273674]} +{"t": 12.2793, "q": [-0.12306445837020874, 0.0026640123687684536, 0.005825474392622709, 0.31749993562698364, -0.18529416620731354, -0.010154425166547298, -0.0754343569278717, -0.035656530410051346, 0.02486875094473362, 0.3389415740966797, -0.2700344920158386, 0.025653230026364326, 0.0034952848218381405, 0.07517669349908829, 0.005172522272914648, 0.07888016849756241, 0.1742626130580902, 0.13259346783161163, 0.1989021897315979, -0.1233895793557167, -0.5238904356956482, -0.34452250599861145, 0.12507936358451843, -0.18271149694919586, 0.06227003410458565, 1.168497920036316, -0.005608617328107357, 0.013134710490703583, -0.005344964563846588]} +{"t": 12.2962, "q": [-0.12306445837020874, 0.0026640123687684536, 0.005852258298546076, 0.3174828886985779, -0.18529416620731354, -0.010154425166547298, -0.07545140385627747, -0.03563948720693588, 0.024922318756580353, 0.3389415740966797, -0.2700303792953491, 0.025660404935479164, 0.0030533522367477417, 0.07518427819013596, 0.0051673962734639645, 0.07889215648174286, 0.16837836802005768, 0.1351221352815628, 0.19965718686580658, -0.1305321753025055, -0.5228597521781921, -0.3445105254650116, 0.12510332465171814, -0.18268753588199615, 0.06229400262236595, 1.168497920036316, -0.005596633069217205, 0.01312272623181343, -0.005368933081626892]} +{"t": 12.3129, "q": [-0.12307298183441162, 0.00267253490164876, 0.005865650251507759, 0.31749141216278076, -0.18529416620731354, -0.010154425166547298, -0.07545140385627747, -0.03564801067113876, 0.024922318756580353, 0.33891600370407104, -0.2700346112251282, 0.025667652487754822, 0.0030131766106933355, 0.07517669349908829, 0.005172522272914648, 0.07908390462398529, 0.16344086825847626, 0.136320561170578, 0.19996878504753113, -0.13775867223739624, -0.5214336514472961, -0.34466633200645447, 0.12529507279396057, -0.18274745345115662, 0.06227003410458565, 1.1685339212417603, -0.005596633069217205, 0.013134710490703583, -0.005332980304956436]} +{"t": 12.3296, "q": [-0.12306445837020874, 0.002638446632772684, 0.005879042204469442, 0.31749141216278076, -0.18530277907848358, -0.01016866322606802, -0.0754343569278717, -0.03567357361316681, 0.024962494149804115, 0.3389415740966797, -0.2700346112251282, 0.025667652487754822, 0.0030399602837860584, 0.07517669349908829, 0.005172522272914648, 0.07925168424844742, 0.15804795920848846, 0.13780660927295685, 0.20029236376285553, -0.14612366259098053, -0.5199116468429565, -0.34479814767837524, 0.12531904876232147, -0.18278340995311737, 0.062258049845695496, 1.16855788230896, -0.005632585845887661, 0.013134710490703583, -0.005344964563846588]} +{"t": 12.3464, "q": [-0.1230815052986145, 0.002638446632772684, 0.005919218063354492, 0.3174828886985779, -0.18529847264289856, -0.01016154419630766, -0.07545140385627747, -0.03569062054157257, 0.024935709312558174, 0.3389330506324768, -0.2700387239456177, 0.025660477578639984, 0.0030399602837860584, 0.07517669349908829, 0.005172522272914648, 0.07927565276622772, 0.15258315205574036, 0.13985590636730194, 0.200951486825943, -0.15269100666046143, -0.5183896422386169, -0.3448580801486969, 0.12525911629199982, -0.18273547291755676, 0.06227003410458565, 1.1685458421707153, -0.005608617328107357, 0.013146694749593735, -0.005309011787176132]} +{"t": 12.3631, "q": [-0.12306445837020874, 0.002629924099892378, 0.005959393456578255, 0.31749141216278076, -0.18529847264289856, -0.01016154419630766, -0.0754343569278717, -0.035716187208890915, 0.024962494149804115, 0.33895862102508545, -0.2700387239456177, 0.025660477578639984, 0.0029730007518082857, 0.07518427819013596, 0.0051673962734639645, 0.07933557033538818, 0.14729811251163483, 0.14214488863945007, 0.20200610160827637, -0.16166719794273376, -0.5164002776145935, -0.3452295660972595, 0.12510332465171814, -0.18273547291755676, 0.0622820183634758, 1.1685339212417603, -0.005608617328107357, 0.013158679008483887, -0.005332980304956436]} +{"t": 12.3799, "q": [-0.1230388954281807, 0.002629924099892378, 0.005972785409539938, 0.31753402948379517, -0.18529847264289856, -0.01016154419630766, -0.0754343569278717, -0.0357247069478035, 0.024989277124404907, 0.338992714881897, -0.2700346112251282, 0.025667652487754822, 0.00287925754673779, 0.07518427819013596, 0.0051673962734639645, 0.07933557033538818, 0.14202505350112915, 0.14482936263084412, 0.2028210312128067, -0.16903749108314514, -0.5134041905403137, -0.3454812467098236, 0.12500745058059692, -0.18273547291755676, 0.0622820183634758, 1.1685339212417603, -0.005560680292546749, 0.013146694749593735, -0.00535694882273674]} +{"t": 12.3966, "q": [-0.12303037196397781, 0.0026043583638966084, 0.005986177362501621, 0.31753402948379517, -0.18529416620731354, -0.010154425166547298, -0.0754343569278717, -0.03574175387620926, 0.02501606196165085, 0.3389756679534912, -0.2700303792953491, 0.025660404935479164, 0.0027721223887056112, 0.07518427819013596, 0.0051673962734639645, 0.07933557033538818, 0.1372433453798294, 0.14781343936920166, 0.20352809131145477, -0.17532920837402344, -0.5094015002250671, -0.34590068459510803, 0.12497150152921677, -0.18272347748279572, 0.06229400262236595, 1.1685218811035156, -0.005596633069217205, 0.013146694749593735, -0.005332980304956436]} +{"t": 12.4133, "q": [-0.12303037196397781, 0.002595835831016302, 0.006012961268424988, 0.31753402948379517, -0.18529416620731354, -0.010154425166547298, -0.07545140385627747, -0.0357247069478035, 0.02502945251762867, 0.3389756679534912, -0.2700303792953491, 0.025660404935479164, 0.002651595277711749, 0.07518427819013596, 0.0051673962734639645, 0.07933557033538818, 0.1330488622188568, 0.15066568553447723, 0.2046426236629486, -0.18249578773975372, -0.5052189826965332, -0.34620028734207153, 0.12494753301143646, -0.18271149694919586, 0.062258049845695496, 1.168569803237915, -0.005608617328107357, 0.013134710490703583, -0.005344964563846588]} +{"t": 12.4301, "q": [-0.12301332503557205, 0.002629924099892378, 0.006012961268424988, 0.31753402948379517, -0.18529416620731354, -0.010154425166547298, -0.0754343569278717, -0.03569914028048515, 0.02502945251762867, 0.338992714881897, -0.2700344920158386, 0.025653230026364326, 0.002531068166717887, 0.07518427819013596, 0.0051673962734639645, 0.07922771573066711, 0.12951351702213287, 0.15313443541526794, 0.20600883662700653, -0.1885957568883896, -0.5021869540214539, -0.34629616141319275, 0.12498348206281662, -0.18273547291755676, 0.062258049845695496, 1.16855788230896, -0.005572664551436901, 0.013146694749593735, -0.005332980304956436]} +{"t": 12.4468, "q": [-0.12300480902194977, 0.002638446632772684, 0.006026353221386671, 0.31753402948379517, -0.18529416620731354, -0.010154425166547298, -0.07545140385627747, -0.03569062054157257, 0.024989277124404907, 0.33900976181030273, -0.2700344920158386, 0.025653230026364326, 0.0025176764465868473, 0.07519187033176422, 0.005162270739674568, 0.0791797786951065, 0.12634968757629395, 0.15500396490097046, 0.20747090876102448, -0.19549866020679474, -0.49983805418014526, -0.3463800549507141, 0.12498348206281662, -0.18271149694919586, 0.062246065586805344, 1.168569803237915, -0.005572664551436901, 0.013146694749593735, -0.005332980304956436]} +{"t": 12.4635, "q": [-0.12297923862934113, 0.00267253490164876, 0.006012961268424988, 0.31753402948379517, -0.18529416620731354, -0.010154425166547298, -0.07545140385627747, -0.03567357361316681, 0.024975884705781937, 0.33900976181030273, -0.27004295587539673, 0.02566772699356079, 0.0025712440256029367, 0.07519946247339249, 0.005157145205885172, 0.07922771573066711, 0.12409665435552597, 0.15569905936717987, 0.2085135281085968, -0.20179037749767303, -0.4977288544178009, -0.3464639484882355, 0.12500745058059692, -0.18273547291755676, 0.062246065586805344, 1.1685818433761597, -0.0055367122404277325, 0.013134710490703583, -0.005332980304956436]} +{"t": 12.4805, "q": [-0.12299628555774689, 0.00267253490164876, 0.006012961268424988, 0.3175255060195923, -0.18528994917869568, -0.010161514393985271, -0.0754343569278717, -0.03568209707736969, 0.024962494149804115, 0.33900976181030273, -0.2700387239456177, 0.025660477578639984, 0.0026649872306734324, 0.07518427819013596, 0.0051673962734639645, 0.07927565276622772, 0.12198743224143982, 0.15625032782554626, 0.20942433178424835, -0.2070874124765396, -0.4960270822048187, -0.34657180309295654, 0.12498348206281662, -0.18271149694919586, 0.06229400262236595, 1.16855788230896, -0.005572664551436901, 0.013134710490703583, -0.005344964563846588]} +{"t": 12.4972, "q": [-0.12299628555774689, 0.0026640123687684536, 0.005986177362501621, 0.31753402948379517, -0.18528994917869568, -0.010161514393985271, -0.0754343569278717, -0.03567357361316681, 0.024962494149804115, 0.33900976181030273, -0.2700346112251282, 0.025667652487754822, 0.0027989062946289778, 0.07519187033176422, 0.005162270739674568, 0.07937152683734894, 0.12003400176763535, 0.15686152875423431, 0.2103830724954605, -0.2109583169221878, -0.49370214343070984, -0.34666767716407776, 0.12494753301143646, -0.18277141451835632, 0.06223408132791519, 1.1686058044433594, -0.005560680292546749, 0.013158679008483887, -0.005332980304956436]} +{"t": 12.5139, "q": [-0.12299628555774689, 0.0026469682343304157, 0.005986177362501621, 0.31759366393089294, -0.18529416620731354, -0.010154425166547298, -0.07541730999946594, -0.03568209707736969, 0.024935709312558174, 0.3390353322029114, -0.2700346112251282, 0.025667652487754822, 0.0029730007518082857, 0.07519187033176422, 0.005162270739674568, 0.07961120456457138, 0.11873970180749893, 0.15723302960395813, 0.21081450581550598, -0.2148771584033966, -0.49070608615875244, -0.3467995226383209, 0.12494753301143646, -0.18280737102031708, 0.06227003410458565, 1.1686177253723145, -0.0055486964993178844, 0.013134710490703583, -0.005332980304956436]} +{"t": 12.5309, "q": [-0.12299628555774689, 0.0026640123687684536, 0.005986177362501621, 0.3176107108592987, -0.18529847264289856, -0.01016154419630766, -0.0754343569278717, -0.03569062054157257, 0.024962494149804115, 0.33904382586479187, -0.2700346112251282, 0.025667652487754822, 0.003106919815763831, 0.07519946247339249, 0.005157145205885172, 0.07982692122459412, 0.11804462224245071, 0.15732890367507935, 0.21105419099330902, -0.21704630553722382, -0.4880216121673584, -0.3469552993774414, 0.12492356449365616, -0.18281935155391693, 0.062246065586805344, 1.1685937643051147, -0.005560680292546749, 0.013146694749593735, -0.005332980304956436]} +{"t": 12.5476, "q": [-0.12300480902194977, 0.002638446632772684, 0.005986177362501621, 0.3176107108592987, -0.185285747051239, -0.010168595239520073, -0.07541730999946594, -0.03569062054157257, 0.024962494149804115, 0.3390693962574005, -0.2700388431549072, 0.02567490190267563, 0.0030801359098404646, 0.07519187033176422, 0.005162270739674568, 0.08019843697547913, 0.1179247796535492, 0.15730494260787964, 0.211186021566391, -0.21920345723628998, -0.4852412939071655, -0.34717100858688354, 0.12492356449365616, -0.18279539048671722, 0.0622820183634758, 1.1686177253723145, -0.005560680292546749, 0.013146694749593735, -0.005332980304956436]} +{"t": 12.5643, "q": [-0.12299628555774689, 0.002638446632772684, 0.006012961268424988, 0.3176533281803131, -0.18528994917869568, -0.010161514393985271, -0.07540027052164078, -0.035707663744688034, 0.024989277124404907, 0.33906087279319763, -0.2700303792953491, 0.025660404935479164, 0.0030533522367477417, 0.07519946247339249, 0.005157145205885172, 0.08046209067106247, 0.11798469722270966, 0.15726898610591888, 0.21131783723831177, -0.22245119512081146, -0.4824489653110504, -0.347506582736969, 0.12492356449365616, -0.18279539048671722, 0.06227003410458565, 1.1686177253723145, -0.005596633069217205, 0.013158679008483887, -0.005320996046066284]} +{"t": 12.5813, "q": [-0.12301332503557205, 0.002638446632772684, 0.0059995693154633045, 0.31767889857292175, -0.185281440615654, -0.010161476209759712, -0.07540879398584366, -0.035716187208890915, 0.02502945251762867, 0.33909496665000916, -0.2700346112251282, 0.025667652487754822, 0.0029730007518082857, 0.07519946247339249, 0.005157145205885172, 0.08064185082912445, 0.11804462224245071, 0.15726898610591888, 0.21143768727779388, -0.2244405746459961, -0.48107075691223145, -0.3477103114128113, 0.12494753301143646, -0.18278340995311737, 0.062258049845695496, 1.1686177253723145, -0.005632585845887661, 0.013134710490703583, -0.005332980304956436]} +{"t": 12.598, "q": [-0.12300480902194977, 0.002629924099892378, 0.005986177362501621, 0.31768742203712463, -0.18528994917869568, -0.010161514393985271, -0.07540027052164078, -0.03573323041200638, 0.02504284493625164, 0.33909496665000916, -0.2700387239456177, 0.025660477578639984, 0.0028926494996994734, 0.07519946247339249, 0.005157145205885172, 0.08070177584886551, 0.11817644536495209, 0.15726898610591888, 0.21147364377975464, -0.22581875324249268, -0.4804116487503052, -0.34804585576057434, 0.12494753301143646, -0.18278340995311737, 0.062258049845695496, 1.1686416864395142, -0.005596633069217205, 0.013158679008483887, -0.005332980304956436]} +{"t": 12.6148, "q": [-0.122987762093544, 0.002638446632772684, 0.006012961268424988, 0.31767889857292175, -0.185285747051239, -0.010168595239520073, -0.07541730999946594, -0.035716187208890915, 0.02505623735487461, 0.3391120135784149, -0.2700344920158386, 0.025653230026364326, 0.002839081920683384, 0.07519946247339249, 0.005157145205885172, 0.08083359897136688, 0.11826033145189285, 0.15720906853675842, 0.2115814983844757, -0.22609439492225647, -0.4802079200744629, -0.34848928451538086, 0.12494753301143646, -0.18274745345115662, 0.062258049845695496, 1.1686177253723145, -0.005608617328107357, 0.013134710490703583, -0.005332980304956436]} +{"t": 12.6315, "q": [-0.122987762093544, 0.00261287996545434, 0.006026353221386671, 0.3177044689655304, -0.18529847264289856, -0.01016154419630766, -0.07541730999946594, -0.03573323041200638, 0.02504284493625164, 0.3391631543636322, -0.2700303792953491, 0.025660404935479164, 0.002852473873645067, 0.07519946247339249, 0.005157145205885172, 0.08121709525585175, 0.11816445738077164, 0.157017320394516, 0.21165339648723602, -0.2259865403175354, -0.4801839292049408, -0.3492802381515503, 0.12494753301143646, -0.18273547291755676, 0.0622820183634758, 1.168629765510559, -0.005608617328107357, 0.013158679008483887, -0.005332980304956436]} +{"t": 12.6482, "q": [-0.12299628555774689, 0.00261287996545434, 0.006026353221386671, 0.3177044689655304, -0.18528994917869568, -0.010161514393985271, -0.07542583346366882, -0.035716187208890915, 0.02505623735487461, 0.3391631543636322, -0.27002614736557007, 0.025653157383203506, 0.0027453387156128883, 0.07519946247339249, 0.005157145205885172, 0.0815047174692154, 0.1182723194360733, 0.15666978061199188, 0.21162943542003632, -0.22587867081165314, -0.48019590973854065, -0.35028693079948425, 0.12497150152921677, -0.18278340995311737, 0.062305986881256104, 1.1686177253723145, -0.005572664551436901, 0.013134710490703583, -0.005332980304956436]} +{"t": 12.6649, "q": [-0.12300480902194977, 0.0026214024983346462, 0.006026353221386671, 0.31773003935813904, -0.185285747051239, -0.010168595239520073, -0.07541730999946594, -0.03573323041200638, 0.025083020329475403, 0.3391546308994293, -0.2700303792953491, 0.025660404935479164, 0.002718554809689522, 0.07519187033176422, 0.005162270739674568, 0.08178035169839859, 0.11935090273618698, 0.15647803246974945, 0.21159347891807556, -0.22539931535720825, -0.4802079200744629, -0.3517729640007019, 0.12498348206281662, -0.18277141451835632, 0.0622820183634758, 1.168629765510559, -0.005632585845887661, 0.013134710490703583, -0.005320996046066284]} +{"t": 12.6817, "q": [-0.12301332503557205, 0.0026214024983346462, 0.006026353221386671, 0.31772151589393616, -0.18529416620731354, -0.010154425166547298, -0.07542583346366882, -0.03574175387620926, 0.025083020329475403, 0.33918020129203796, -0.27003026008605957, 0.02564598247408867, 0.002718554809689522, 0.07519946247339249, 0.005157145205885172, 0.08197209984064102, 0.12098075449466705, 0.15657390654087067, 0.21156951785087585, -0.2248360514640808, -0.48042362928390503, -0.353079229593277, 0.12497150152921677, -0.18279539048671722, 0.0622820183634758, 1.1686058044433594, -0.005584648810327053, 0.01312272623181343, -0.005320996046066284]} +{"t": 12.6985, "q": [-0.12302184849977493, 0.00261287996545434, 0.006039745174348354, 0.31773003935813904, -0.185281440615654, -0.010161476209759712, -0.07540027052164078, -0.03575879707932472, 0.02505623735487461, 0.3392057716846466, -0.27003026008605957, 0.02564598247408867, 0.0027721223887056112, 0.07520704716444016, 0.005152019672095776, 0.08218781650066376, 0.12283831089735031, 0.15662184357643127, 0.2115335613489151, -0.2239132672548294, -0.4809629023075104, -0.3540020287036896, 0.12500745058059692, -0.18281935155391693, 0.062258049845695496, 1.1686058044433594, -0.005608617328107357, 0.013146694749593735, -0.005332980304956436]} +{"t": 12.7152, "q": [-0.12300480902194977, 0.0026043583638966084, 0.006039745174348354, 0.31772151589393616, -0.18529416620731354, -0.010154425166547298, -0.07540027052164078, -0.03575027361512184, 0.02505623735487461, 0.33918872475624084, -0.27002614736557007, 0.025653157383203506, 0.0027855143416672945, 0.07520704716444016, 0.005152019672095776, 0.08237956464290619, 0.1248876079916954, 0.15657390654087067, 0.21152158081531525, -0.22267888486385345, -0.48121458292007446, -0.35475704073905945, 0.12498348206281662, -0.18279539048671722, 0.062258049845695496, 1.1686416864395142, -0.005584648810327053, 0.01312272623181343, -0.005332980304956436]} +{"t": 12.7319, "q": [-0.12299628555774689, 0.0026214024983346462, 0.006039745174348354, 0.3177129924297333, -0.18529005348682404, -0.010175714269280434, -0.07542583346366882, -0.03574175387620926, 0.02505623735487461, 0.3391972482204437, -0.2700303792953491, 0.025660404935479164, 0.0027453387156128883, 0.0752069354057312, 0.0051616099663078785, 0.08259528130292892, 0.12732040882110596, 0.15635818243026733, 0.2115095853805542, -0.22143253684043884, -0.48149022459983826, -0.35542815923690796, 0.12494753301143646, -0.18280737102031708, 0.062246065586805344, 1.1686177253723145, -0.005584648810327053, 0.013146694749593735, -0.005320996046066284]} +{"t": 12.7486, "q": [-0.12297923862934113, 0.0026043583638966084, 0.006026353221386671, 0.31773003935813904, -0.18529005348682404, -0.010175714269280434, -0.0754343569278717, -0.03574175387620926, 0.02505623735487461, 0.33918020129203796, -0.2700303792953491, 0.025660404935479164, 0.0027721223887056112, 0.07520704716444016, 0.005152019672095776, 0.08309862017631531, 0.12996892631053925, 0.15610651671886444, 0.210682675242424, -0.22042585909366608, -0.4818018078804016, -0.35605132579803467, 0.12500745058059692, -0.18279539048671722, 0.0622820183634758, 1.168629765510559, -0.005596633069217205, 0.013146694749593735, -0.005332980304956436]} +{"t": 12.7654, "q": [-0.12297923862934113, 0.0025873142294585705, 0.006039745174348354, 0.31772151589393616, -0.18529416620731354, -0.010154425166547298, -0.07540879398584366, -0.03574175387620926, 0.025069627910852432, 0.33922281861305237, -0.27003026008605957, 0.02564598247408867, 0.0029730007518082857, 0.07522222399711609, 0.005141768138855696, 0.08317052572965622, 0.13218601047992706, 0.15599866211414337, 0.20958013832569122, -0.21871210634708405, -0.482628732919693, -0.3566625416278839, 0.12506736814975739, -0.18283134698867798, 0.06223408132791519, 1.1686656475067139, -0.005572664551436901, 0.013158679008483887, -0.005332980304956436]} +{"t": 12.7822, "q": [-0.122987762093544, 0.0025873142294585705, 0.006012961268424988, 0.31772151589393616, -0.185285747051239, -0.010168595239520073, -0.0753917470574379, -0.035767316818237305, 0.02504284493625164, 0.33923983573913574, -0.2700346112251282, 0.025667652487754822, 0.0030801359098404646, 0.07523728907108307, 0.005141107365489006, 0.08315853774547577, 0.13526594638824463, 0.15610651671886444, 0.2091367095708847, -0.21524867415428162, -0.48291632533073425, -0.3569381535053253, 0.12507936358451843, -0.18281935155391693, 0.062258049845695496, 1.1686656475067139, -0.005584648810327053, 0.013158679008483887, -0.00535694882273674]} +{"t": 12.7989, "q": [-0.122987762093544, 0.00261287996545434, 0.006012961268424988, 0.3177385628223419, -0.185285747051239, -0.010168595239520073, -0.07540879398584366, -0.03575027361512184, 0.024989277124404907, 0.33923131227493286, -0.2700344920158386, 0.025653230026364326, 0.0031470954418182373, 0.0752296969294548, 0.005146232899278402, 0.08319449424743652, 0.13938851654529572, 0.1560945361852646, 0.20910076797008514, -0.21124593913555145, -0.4832039475440979, -0.3573935627937317, 0.12504340708255768, -0.18283134698867798, 0.062246065586805344, 1.1686416864395142, -0.0055486964993178844, 0.013146694749593735, -0.005344964563846588]} +{"t": 12.8157, "q": [-0.12300480902194977, 0.0026469682343304157, 0.006012961268424988, 0.3177470862865448, -0.18528154492378235, -0.010175676085054874, -0.07540027052164078, -0.035716187208890915, 0.02501606196165085, 0.3392483592033386, -0.2700303792953491, 0.025660404935479164, 0.0032274469267576933, 0.07522222399711609, 0.005141768138855696, 0.08319449424743652, 0.1425643414258957, 0.15622636675834656, 0.20901687443256378, -0.2067158967256546, -0.4834316670894623, -0.3577890396118164, 0.12504340708255768, -0.18285530805587769, 0.062246065586805344, 1.168629765510559, -0.0055486964993178844, 0.013146694749593735, -0.005332980304956436]} +{"t": 12.8324, "q": [-0.12300480902194977, 0.002629924099892378, 0.0059995693154633045, 0.3177556097507477, -0.18528585135936737, -0.010182795114815235, -0.07540879398584366, -0.0357247069478035, 0.024989277124404907, 0.3392654061317444, -0.27002614736557007, 0.025653157383203506, 0.0031604873947799206, 0.07523740082979202, 0.005131516605615616, 0.08321846276521683, 0.14626747369766235, 0.1561904102563858, 0.20875321328639984, -0.2040194571018219, -0.48374325037002563, -0.3583163619041443, 0.12506736814975739, -0.1828792840242386, 0.062246065586805344, 1.1686416864395142, -0.0055486964993178844, 0.013134710490703583, -0.005332980304956436]} +{"t": 12.8491, "q": [-0.12299628555774689, 0.002638446632772684, 0.006012961268424988, 0.3177896738052368, -0.18528585135936737, -0.010182795114815235, -0.07541730999946594, -0.035716187208890915, 0.02502945251762867, 0.3392483592033386, -0.2700303792953491, 0.025660404935479164, 0.0032006630208343267, 0.07525235414505005, 0.00514044938609004, 0.08319449424743652, 0.14961107075214386, 0.15603461861610413, 0.2078903615474701, -0.20261730253696442, -0.4841746985912323, -0.35909533500671387, 0.12507936358451843, -0.18286728858947754, 0.06227003410458565, 1.1686776876449585, -0.005596633069217205, 0.013134710490703583, -0.005332980304956436]} +{"t": 12.8659, "q": [-0.12297923862934113, 0.002638446632772684, 0.005986177362501621, 0.31778115034103394, -0.185285747051239, -0.010168595239520073, -0.07540027052164078, -0.03573323041200638, 0.02505623735487461, 0.3392568826675415, -0.27003026008605957, 0.02564598247408867, 0.0031872710678726435, 0.07524476945400238, 0.0051455749198794365, 0.08321846276521683, 0.15258315205574036, 0.15605857968330383, 0.2069915384054184, -0.20150277018547058, -0.48448628187179565, -0.3603057265281677, 0.12510332465171814, -0.18285530805587769, 0.06227003410458565, 1.1686416864395142, -0.005596633069217205, 0.013146694749593735, -0.005344964563846588]} +{"t": 12.8826, "q": [-0.12299628555774689, 0.002629924099892378, 0.006012961268424988, 0.3177896738052368, -0.18528154492378235, -0.010175676085054874, -0.07540879398584366, -0.03573323041200638, 0.02504284493625164, 0.3392654061317444, -0.27002614736557007, 0.025653157383203506, 0.0031872710678726435, 0.0752296969294548, 0.005146232899278402, 0.08319449424743652, 0.1560945361852646, 0.15610651671886444, 0.20602081716060638, -0.19939354062080383, -0.48480984568595886, -0.3624149560928345, 0.125115305185318, -0.18284332752227783, 0.06227003410458565, 1.1686896085739136, -0.0055486964993178844, 0.013146694749593735, -0.005344964563846588]} +{"t": 12.8995, "q": [-0.12300480902194977, 0.00261287996545434, 0.005986177362501621, 0.3177896738052368, -0.18527723848819733, -0.010168557055294514, -0.07540879398584366, -0.03573323041200638, 0.02502945251762867, 0.3392483592033386, -0.270021915435791, 0.0256459079682827, 0.00321405497379601, 0.07522222399711609, 0.005141768138855696, 0.08321846276521683, 0.15952202677726746, 0.15613049268722534, 0.2051699310541153, -0.19589415192604065, -0.48510944843292236, -0.364883691072464, 0.1251392811536789, -0.18285530805587769, 0.062258049845695496, 1.1686537265777588, -0.0055486964993178844, 0.013146694749593735, -0.005320996046066284]} +{"t": 12.9162, "q": [-0.12299628555774689, 0.0026043583638966084, 0.006012961268424988, 0.3177896738052368, -0.18528154492378235, -0.010175676085054874, -0.0753917470574379, -0.035767316818237305, 0.02502945251762867, 0.3392142951488495, -0.27002614736557007, 0.025653157383203506, 0.0032274469267576933, 0.07522222399711609, 0.005141768138855696, 0.08321846276521683, 0.16321316361427307, 0.15615445375442505, 0.20425914227962494, -0.19027353823184967, -0.48556485772132874, -0.36718466877937317, 0.12510332465171814, -0.18285530805587769, 0.06227003410458565, 1.1686416864395142, -0.0055486964993178844, 0.013146694749593735, -0.005332980304956436]} +{"t": 12.9329, "q": [-0.12300480902194977, 0.0025787916965782642, 0.00605313666164875, 0.3177981972694397, -0.18528994917869568, -0.010161514393985271, -0.07540027052164078, -0.035775840282440186, 0.02505623735487461, 0.3391972482204437, -0.2700346112251282, 0.025667652487754822, 0.003240838646888733, 0.0752296969294548, 0.005146232899278402, 0.08317052572965622, 0.16676048934459686, 0.1560705602169037, 0.20290492475032806, -0.18443723022937775, -0.48614010214805603, -0.3685988187789917, 0.12510332465171814, -0.18285530805587769, 0.062258049845695496, 1.1686177253723145, -0.005560680292546749, 0.013170663267374039, -0.005332980304956436]} +{"t": 12.9497, "q": [-0.12299628555774689, 0.0025702696293592453, 0.006026353221386671, 0.3177896738052368, -0.18529005348682404, -0.010175714269280434, -0.07541730999946594, -0.035784363746643066, 0.02505623735487461, 0.3391716778278351, -0.2700303792953491, 0.025660404935479164, 0.00321405497379601, 0.07522222399711609, 0.005141768138855696, 0.08323044329881668, 0.16982845962047577, 0.15592674911022186, 0.20105934143066406, -0.18075807392597198, -0.4867512881755829, -0.3697972297668457, 0.12510332465171814, -0.18286728858947754, 0.062258049845695496, 1.1686058044433594, -0.005608617328107357, 0.013146694749593735, -0.005344964563846588]} +{"t": 12.9664, "q": [-0.1230388954281807, 0.0025617475621402264, 0.006026353221386671, 0.31777262687683105, -0.18528564274311066, -0.01015439536422491, -0.07541730999946594, -0.03579288348555565, 0.02505623735487461, 0.3391631543636322, -0.2700303792953491, 0.025660404935479164, 0.00321405497379601, 0.07523717731237411, 0.005150700453668833, 0.08324243128299713, 0.17314808070659637, 0.15587881207466125, 0.19909393787384033, -0.176012322306633, -0.4879017770290375, -0.3711754381656647, 0.12512730062007904, -0.18284332752227783, 0.06227003410458565, 1.1686177253723145, -0.005572664551436901, 0.013146694749593735, -0.005332980304956436]} +{"t": 12.9831, "q": [-0.1230388954281807, 0.0025447034277021885, 0.006039745174348354, 0.31773003935813904, -0.185281440615654, -0.010161476209759712, -0.07540027052164078, -0.03580993041396141, 0.02505623735487461, 0.33914610743522644, -0.27002203464508057, 0.025660332292318344, 0.00321405497379601, 0.07522959262132645, 0.005155825987458229, 0.08330234885215759, 0.17643176019191742, 0.15583087503910065, 0.19752399623394012, -0.16966067254543304, -0.489172101020813, -0.3728412389755249, 0.12512730062007904, -0.18283134698867798, 0.06223408132791519, 1.1686177253723145, -0.005572664551436901, 0.013146694749593735, -0.005320996046066284]} +{"t": 13.0, "q": [-0.12304741889238358, 0.0025361808948218822, 0.006039745174348354, 0.3177129924297333, -0.1852942556142807, -0.010168633423745632, -0.07540027052164078, -0.03584401682019234, 0.02505623735487461, 0.33913758397102356, -0.2700303792953491, 0.025660404935479164, 0.0032676225528120995, 0.07522959262132645, 0.005155825987458229, 0.08331433683633804, 0.1786608248949051, 0.15578293800354004, 0.1965532749891281, -0.1636086404323578, -0.4905862510204315, -0.37432727217674255, 0.12512730062007904, -0.18283134698867798, 0.062246065586805344, 1.1686177253723145, -0.005572664551436901, 0.013146694749593735, -0.005344964563846588]} +{"t": 13.0167, "q": [-0.12305594235658646, 0.0025276588276028633, 0.006012961268424988, 0.31768742203712463, -0.1852942556142807, -0.010168633423745632, -0.07540027052164078, -0.03584401682019234, 0.025002669543027878, 0.33910349011421204, -0.2700303792953491, 0.025660404935479164, 0.003347973804920912, 0.07523717731237411, 0.005150700453668833, 0.08331433683633804, 0.18122544884681702, 0.15568706393241882, 0.19594208896160126, -0.1592344045639038, -0.4921441972255707, -0.37550172209739685, 0.12510332465171814, -0.18285530805587769, 0.062246065586805344, 1.1686177253723145, -0.005572664551436901, 0.013134710490703583, -0.005344964563846588]} +{"t": 13.0335, "q": [-0.12306445837020874, 0.0025276588276028633, 0.006026353221386671, 0.31767889857292175, -0.185285747051239, -0.010168595239520073, -0.07541730999946594, -0.03585254028439522, 0.024989277124404907, 0.33910349011421204, -0.27003026008605957, 0.02564598247408867, 0.0033747577108442783, 0.07523717731237411, 0.005150700453668833, 0.08329036831855774, 0.1844492107629776, 0.15565112233161926, 0.19543874263763428, -0.15385349094867706, -0.4937380850315094, -0.37632864713668823, 0.12507936358451843, -0.18281935155391693, 0.06223408132791519, 1.1686058044433594, -0.005572664551436901, 0.013146694749593735, -0.005332980304956436]} +{"t": 13.0502, "q": [-0.12306445837020874, 0.0025532254949212074, 0.006012961268424988, 0.317661851644516, -0.18529005348682404, -0.010175714269280434, -0.0754343569278717, -0.03580993041396141, 0.024975884705781937, 0.33906087279319763, -0.2700303792953491, 0.025660404935479164, 0.0033881496638059616, 0.07524454593658447, 0.005164758767932653, 0.08333830535411835, 0.1875171661376953, 0.1555911898612976, 0.19524699449539185, -0.14671088755130768, -0.49591922760009766, -0.37695181369781494, 0.12507936358451843, -0.18284332752227783, 0.062246065586805344, 1.168629765510559, -0.005584648810327053, 0.013158679008483887, -0.00535694882273674]} +{"t": 13.0669, "q": [-0.12305594235658646, 0.0025787916965782642, 0.006026353221386671, 0.317661851644516, -0.18529416620731354, -0.010154425166547298, -0.07545992732048035, -0.03581845015287399, 0.024975884705781937, 0.3390864431858063, -0.27004295587539673, 0.02566772699356079, 0.003334582084789872, 0.07524454593658447, 0.005164758767932653, 0.08326639980077744, 0.19045330584049225, 0.15547135472297668, 0.19534286856651306, -0.14156965911388397, -0.49914297461509705, -0.3777068257331848, 0.12505538761615753, -0.18285530805587769, 0.06223408132791519, 1.1686177253723145, -0.005572664551436901, 0.013146694749593735, -0.005344964563846588]} +{"t": 13.0838, "q": [-0.12305594235658646, 0.0025702696293592453, 0.006026353221386671, 0.3176192343235016, -0.18529416620731354, -0.010154425166547298, -0.07546844333410263, -0.03580993041396141, 0.02504284493625164, 0.33904382586479187, -0.2700387239456177, 0.025660477578639984, 0.003240838646888733, 0.07523717731237411, 0.005150700453668833, 0.08325441181659698, 0.19289809465408325, 0.1549680233001709, 0.19527097046375275, -0.13494238257408142, -0.5022588968276978, -0.37859365344047546, 0.12507936358451843, -0.18285530805587769, 0.06223408132791519, 1.1686416864395142, -0.005596633069217205, 0.013146694749593735, -0.005344964563846588]} +{"t": 13.1005, "q": [-0.12306445837020874, 0.0025532254949212074, 0.006039745174348354, 0.31759366393089294, -0.18529847264289856, -0.01016154419630766, -0.07549401372671127, -0.03575879707932472, 0.02504284493625164, 0.33900976181030273, -0.2700387239456177, 0.025660477578639984, 0.0031203117687255144, 0.0752369612455368, 0.00516988430172205, 0.08331433683633804, 0.19534286856651306, 0.1544167399406433, 0.1952110379934311, -0.125858336687088, -0.5045118927955627, -0.37988796830177307, 0.12507936358451843, -0.18279539048671722, 0.062258049845695496, 1.1686177253723145, -0.005584648810327053, 0.013146694749593735, -0.005344964563846588]} +{"t": 13.1172, "q": [-0.12305594235658646, 0.0025702696293592453, 0.006026353221386671, 0.3175766170024872, -0.1852942556142807, -0.010168633423745632, -0.07549401372671127, -0.035767316818237305, 0.02502945251762867, 0.33896714448928833, -0.2700346112251282, 0.025667652487754822, 0.0030399602837860584, 0.0752369612455368, 0.00516988430172205, 0.08333830535411835, 0.19694875180721283, 0.15405721962451935, 0.19517509639263153, -0.11865581572055817, -0.5059620141983032, -0.3813859820365906, 0.12507936358451843, -0.18279539048671722, 0.06227003410458565, 1.1686416864395142, -0.005596633069217205, 0.013146694749593735, -0.005320996046066284]} +{"t": 13.134, "q": [-0.12304741889238358, 0.0025787916965782642, 0.006012961268424988, 0.3175255060195923, -0.18529416620731354, -0.010154425166547298, -0.07551105320453644, -0.035784363746643066, 0.02504284493625164, 0.33895009756088257, -0.2700387239456177, 0.025660477578639984, 0.0030801359098404646, 0.0752369612455368, 0.00516988430172205, 0.08333830535411835, 0.19773972034454346, 0.15403324365615845, 0.1949833482503891, -0.11144131422042847, -0.5071843862533569, -0.3830517828464508, 0.12510332465171814, -0.18281935155391693, 0.06223408132791519, 1.1686177253723145, -0.005572664551436901, 0.013158679008483887, -0.005344964563846588]} +{"t": 13.1507, "q": [-0.12305594235658646, 0.0025873142294585705, 0.006012961268424988, 0.3175255060195923, -0.18529416620731354, -0.010154425166547298, -0.07551105320453644, -0.035784363746643066, 0.02501606196165085, 0.33891600370407104, -0.2700346112251282, 0.025667652487754822, 0.003106919815763831, 0.07525213807821274, 0.00515963276848197, 0.08333830535411835, 0.19824305176734924, 0.15393736958503723, 0.194635808467865, -0.10313624143600464, -0.5083708167076111, -0.3849213421344757, 0.12507936358451843, -0.18281935155391693, 0.06222209706902504, 1.168629765510559, -0.005560680292546749, 0.01312272623181343, -0.00535694882273674]} +{"t": 13.1674, "q": [-0.12306445837020874, 0.0025787916965782642, 0.006026353221386671, 0.3175169825553894, -0.18530277907848358, -0.01016866322606802, -0.0755281001329422, -0.035775840282440186, 0.024989277124404907, 0.3389245271682739, -0.2700346112251282, 0.025667652487754822, 0.0031203117687255144, 0.07522936910390854, 0.005175009835511446, 0.08348211646080017, 0.198650524020195, 0.15380555391311646, 0.19442008435726166, -0.09487911313772202, -0.5097609758377075, -0.38780951499938965, 0.12504340708255768, -0.18281935155391693, 0.062246065586805344, 1.1686177253723145, -0.0055486964993178844, 0.013110741972923279, -0.005332980304956436]} +{"t": 13.1842, "q": [-0.12306445837020874, 0.0025617475621402264, 0.006039745174348354, 0.3175084590911865, -0.18529416620731354, -0.010154425166547298, -0.0755281001329422, -0.035775840282440186, 0.024989277124404907, 0.33891600370407104, -0.2700428366661072, 0.025653302669525146, 0.0031203117687255144, 0.0752369612455368, 0.00516988430172205, 0.08354203402996063, 0.19886623322963715, 0.1537695974111557, 0.19424031674861908, -0.08611864596605301, -0.511127233505249, -0.39062583446502686, 0.12504340708255768, -0.18280737102031708, 0.06221011281013489, 1.1686058044433594, -0.0055367122404277325, 0.013134710490703583, -0.005332980304956436]} +{"t": 13.2009, "q": [-0.12306445837020874, 0.0025702696293592453, 0.006026353221386671, 0.3175169825553894, -0.18528994917869568, -0.010161514393985271, -0.07551957666873932, -0.035767316818237305, 0.02501606196165085, 0.33890748023986816, -0.2700303792953491, 0.025660404935479164, 0.0031203117687255144, 0.0752369612455368, 0.00516988430172205, 0.08378171920776367, 0.19923774898052216, 0.15335014462471008, 0.19418039917945862, -0.07944343239068985, -0.5127570629119873, -0.39347806572914124, 0.12506736814975739, -0.18279539048671722, 0.06223408132791519, 1.1686058044433594, -0.0055486964993178844, 0.013158679008483887, -0.005332980304956436]} +{"t": 13.2178, "q": [-0.12304741889238358, 0.0025702696293592453, 0.006026353221386671, 0.3175255060195923, -0.18528994917869568, -0.010161514393985271, -0.07551957666873932, -0.03575879707932472, 0.02502945251762867, 0.33891600370407104, -0.2700388431549072, 0.02567490190267563, 0.003106919815763831, 0.0752369612455368, 0.00516988430172205, 0.0839494988322258, 0.1995493322610855, 0.1530984789133072, 0.19421635568141937, -0.07195328921079636, -0.514722466468811, -0.39604270458221436, 0.12506736814975739, -0.18281935155391693, 0.062246065586805344, 1.1686058044433594, -0.005584648810327053, 0.013134710490703583, -0.005320996046066284]} +{"t": 13.2345, "q": [-0.1230815052986145, 0.00261287996545434, 0.0059995693154633045, 0.3174828886985779, -0.1852942556142807, -0.010168633423745632, -0.07557071000337601, -0.03575027361512184, 0.024975884705781937, 0.33890748023986816, -0.2700344920158386, 0.025653230026364326, 0.0030399602837860584, 0.07522177696228027, 0.005180135369300842, 0.08416521549224854, 0.19999274611473083, 0.15270300209522247, 0.19430024921894073, -0.06307297945022583, -0.5177185535430908, -0.39854738116264343, 0.12506736814975739, -0.18281935155391693, 0.062246065586805344, 1.1686058044433594, -0.005596633069217205, 0.013146694749593735, -0.005332980304956436]} +{"t": 13.2513, "q": [-0.12307298183441162, 0.0026214024983346462, 0.006026353221386671, 0.3174658417701721, -0.18528994917869568, -0.010161514393985271, -0.07558775693178177, -0.035707663744688034, 0.024989277124404907, 0.3389415740966797, -0.2700346112251282, 0.025667652487754822, 0.0029060414526611567, 0.07522936910390854, 0.005175009835511446, 0.08440490067005157, 0.20052005350589752, 0.15237942337989807, 0.1943841278553009, -0.054000917822122574, -0.5212658643722534, -0.40071654319763184, 0.12505538761615753, -0.18281935155391693, 0.062246065586805344, 1.168569803237915, -0.005572664551436901, 0.013134710490703583, -0.005344964563846588]} +{"t": 13.268, "q": [-0.1230815052986145, 0.0026640123687684536, 0.0059995693154633045, 0.31740617752075195, -0.18529005348682404, -0.010175714269280434, -0.07560479640960693, -0.03569062054157257, 0.024975884705781937, 0.33890748023986816, -0.27004295587539673, 0.02566772699356079, 0.00287925754673779, 0.07523684203624725, 0.005179474595934153, 0.08470450341701508, 0.201323002576828, 0.15184013545513153, 0.1944560408592224, -0.04562394693493843, -0.5241540670394897, -0.4025261700153351, 0.12506736814975739, -0.18279539048671722, 0.06222209706902504, 1.1686058044433594, -0.005584648810327053, 0.01312272623181343, -0.005332980304956436]} +{"t": 13.2849, "q": [-0.12309002876281738, 0.0026640123687684536, 0.006012961268424988, 0.3173721134662628, -0.18529416620731354, -0.010154425166547298, -0.07559628039598465, -0.03567357361316681, 0.02501606196165085, 0.33887338638305664, -0.2700388431549072, 0.02567490190267563, 0.002852473873645067, 0.07522925734519958, 0.005184600595384836, 0.08518387377262115, 0.20218586921691895, 0.15128885209560394, 0.19444406032562256, -0.03840944170951843, -0.5264909863471985, -0.40360474586486816, 0.12504340708255768, -0.18278340995311737, 0.062246065586805344, 1.1685937643051147, -0.0055367122404277325, 0.01312272623181343, -0.005332980304956436]} +{"t": 13.3017, "q": [-0.12307298183441162, 0.00267253490164876, 0.006012961268424988, 0.31736359000205994, -0.18528994917869568, -0.010161514393985271, -0.07559628039598465, -0.035656530410051346, 0.024975884705781937, 0.3388904333114624, -0.2700388431549072, 0.02567490190267563, 0.002839081920683384, 0.07522936910390854, 0.005175009835511446, 0.08553141355514526, 0.2031445950269699, 0.15098924934864044, 0.1943841278553009, -0.030775491148233414, -0.5276534557342529, -0.40438371896743774, 0.12505538761615753, -0.18280737102031708, 0.062246065586805344, 1.1685937643051147, -0.005596633069217205, 0.013110741972923279, -0.005332980304956436]} +{"t": 13.3184, "q": [-0.12307298183441162, 0.00267253490164876, 0.006012961268424988, 0.3173380196094513, -0.1852942556142807, -0.010168633423745632, -0.07558775693178177, -0.03564801067113876, 0.024935709312558174, 0.3388819098472595, -0.2700346112251282, 0.025667652487754822, 0.002839081920683384, 0.07522925734519958, 0.005184600595384836, 0.08580705523490906, 0.2042711228132248, 0.15092933177947998, 0.1944081038236618, -0.023752734065055847, -0.5281088352203369, -0.40510275959968567, 0.12504340708255768, -0.18279539048671722, 0.062258049845695496, 1.1685937643051147, -0.005608617328107357, 0.01312272623181343, -0.005332980304956436]} +{"t": 13.3353, "q": [-0.12307298183441162, 0.0027066231705248356, 0.006012961268424988, 0.3173380196094513, -0.185285747051239, -0.010168595239520073, -0.07558775693178177, -0.03562244400382042, 0.024962494149804115, 0.33886486291885376, -0.2700303792953491, 0.025660404935479164, 0.002852473873645067, 0.07522177696228027, 0.005180135369300842, 0.08619055151939392, 0.20534969866275787, 0.15106116235256195, 0.19444406032562256, -0.015531555749475956, -0.5283605456352234, -0.4057618975639343, 0.12504340708255768, -0.18278340995311737, 0.06227003410458565, 1.168569803237915, -0.005608617328107357, 0.013146694749593735, -0.005344964563846588]} +{"t": 13.352, "q": [-0.1230815052986145, 0.002715145703405142, 0.006012961268424988, 0.31732097268104553, -0.18529416620731354, -0.010154425166547298, -0.07558775693178177, -0.03561392053961754, 0.024975884705781937, 0.3388819098472595, -0.2700428366661072, 0.025653302669525146, 0.0029328251257538795, 0.07522936910390854, 0.005175009835511446, 0.08644221723079681, 0.2063923329114914, 0.15121695399284363, 0.19446802139282227, -0.008101336658000946, -0.5284204483032227, -0.4065648317337036, 0.12504340708255768, -0.18279539048671722, 0.06229400262236595, 1.168629765510559, -0.0055486964993178844, 0.01312272623181343, -0.005344964563846588]} +{"t": 13.3687, "q": [-0.12307298183441162, 0.002698101568967104, 0.006012961268424988, 0.31732097268104553, -0.18529435992240906, -0.010182833299040794, -0.07557923346757889, -0.035630963742733, 0.024935709312558174, 0.33886486291885376, -0.2700346112251282, 0.025667652487754822, 0.0029730007518082857, 0.07524432241916656, 0.005183942150324583, 0.08684968203306198, 0.2072432041168213, 0.15115703642368317, 0.19455191493034363, -0.0043982104398310184, -0.5285282731056213, -0.40807485580444336, 0.12501943111419678, -0.18278340995311737, 0.0622820183634758, 1.1686058044433594, -0.005572664551436901, 0.013098758645355701, -0.005332980304956436]} +{"t": 13.3855, "q": [-0.12307298183441162, 0.002681057434529066, 0.005986177362501621, 0.31732097268104553, -0.1852983683347702, -0.010147344321012497, -0.07559628039598465, -0.03564801067113876, 0.024962494149804115, 0.3388393223285675, -0.2700346112251282, 0.025667652487754822, 0.0030131766106933355, 0.07523684203624725, 0.005179474595934153, 0.08713730424642563, 0.20745892822742462, 0.15156449377536774, 0.19459985196590424, 0.00022770027862861753, -0.5285882353782654, -0.4096567630767822, 0.12504340708255768, -0.18278340995311737, 0.062246065586805344, 1.1686058044433594, -0.0055486964993178844, 0.013134710490703583, -0.005344964563846588]} +{"t": 13.4022, "q": [-0.12309002876281738, 0.00267253490164876, 0.006012961268424988, 0.31732097268104553, -0.18529847264289856, -0.01016154419630766, -0.07557923346757889, -0.035656530410051346, 0.024962494149804115, 0.3388478457927704, -0.2700387239456177, 0.025660477578639984, 0.003106919815763831, 0.07522925734519958, 0.005184600595384836, 0.08734103292226791, 0.20749486982822418, 0.15210378170013428, 0.19480358064174652, 0.005848302040249109, -0.5285762548446655, -0.4110589325428009, 0.12505538761615753, -0.18275943398475647, 0.062258049845695496, 1.1685818433761597, -0.005560680292546749, 0.01312272623181343, -0.005344964563846588]} +{"t": 13.419, "q": [-0.12309002876281738, 0.0026640123687684536, 0.006012961268424988, 0.3173380196094513, -0.18529847264289856, -0.01016154419630766, -0.07557071000337601, -0.03567357361316681, 0.024975884705781937, 0.33881375193595886, -0.27004295587539673, 0.02566772699356079, 0.0032006630208343267, 0.07522177696228027, 0.005180135369300842, 0.0875926986336708, 0.20748288929462433, 0.15255919098854065, 0.19489945471286774, 0.011001518927514553, -0.5285882353782654, -0.4120056927204132, 0.12506736814975739, -0.18279539048671722, 0.06227003410458565, 1.1685937643051147, -0.0055486964993178844, 0.013110741972923279, -0.005332980304956436]} +{"t": 13.4357, "q": [-0.12310706824064255, 0.002638446632772684, 0.006026353221386671, 0.31732097268104553, -0.18529847264289856, -0.01016154419630766, -0.07557071000337601, -0.035707663744688034, 0.024962494149804115, 0.33881375193595886, -0.2700346112251282, 0.025667652487754822, 0.00321405497379601, 0.07522177696228027, 0.005180135369300842, 0.08779643476009369, 0.20748288929462433, 0.15281085669994354, 0.19515112042427063, 0.013877732679247856, -0.5285762548446655, -0.41252100467681885, 0.12504340708255768, -0.18277141451835632, 0.06229400262236595, 1.1685937643051147, -0.005560680292546749, 0.013146694749593735, -0.005344964563846588]} +{"t": 13.4524, "q": [-0.12311559170484543, 0.002638446632772684, 0.006012961268424988, 0.3173465430736542, -0.18529847264289856, -0.01016154419630766, -0.07555367052555084, -0.03573323041200638, 0.024962494149804115, 0.3388307988643646, -0.2700303792953491, 0.025660404935479164, 0.0032676225528120995, 0.07522925734519958, 0.005184600595384836, 0.08797619491815567, 0.2073870152235031, 0.1528947502374649, 0.19542676210403442, 0.015507587231695652, -0.5285282731056213, -0.41284456849098206, 0.12504340708255768, -0.18275943398475647, 0.06223408132791519, 1.1685937643051147, -0.005572664551436901, 0.013134710490703583, -0.005332980304956436]} +{"t": 13.4693, "q": [-0.12310706824064255, 0.0026214024983346462, 0.006012961268424988, 0.31736359000205994, -0.1852983683347702, -0.010147344321012497, -0.07557071000337601, -0.03575879707932472, 0.024989277124404907, 0.33881375193595886, -0.2700387239456177, 0.025660477578639984, 0.003240838646888733, 0.07522925734519958, 0.005184600595384836, 0.08810802549123764, 0.2072432041168213, 0.15306252241134644, 0.19569040834903717, 0.017484985291957855, -0.5284923315048218, -0.4130123555660248, 0.12504340708255768, -0.18277141451835632, 0.062246065586805344, 1.1686058044433594, -0.005560680292546749, 0.013134710490703583, -0.00535694882273674]} +{"t": 13.486, "q": [-0.12310706824064255, 0.002629924099892378, 0.006012961268424988, 0.31735506653785706, -0.18529847264289856, -0.01016154419630766, -0.07557071000337601, -0.03574175387620926, 0.024975884705781937, 0.33881375193595886, -0.2700387239456177, 0.025660477578639984, 0.0031872710678726435, 0.0752141922712326, 0.005185261368751526, 0.0881439745426178, 0.207039475440979, 0.15329022705554962, 0.1961098611354828, 0.02058889903128147, -0.5283605456352234, -0.4131561517715454, 0.12507936358451843, -0.18277141451835632, 0.06227003410458565, 1.1685937643051147, -0.005572664551436901, 0.01312272623181343, -0.005332980304956436]} +{"t": 13.5028, "q": [-0.12310706824064255, 0.00261287996545434, 0.006026353221386671, 0.31736359000205994, -0.18529847264289856, -0.01016154419630766, -0.07557923346757889, -0.03575027361512184, 0.024975884705781937, 0.33881375193595886, -0.2700346112251282, 0.025667652487754822, 0.003173879347741604, 0.07519901543855667, 0.0051955124363303185, 0.08820389956235886, 0.20681177079677582, 0.15338610112667084, 0.19668510556221008, 0.023740749806165695, -0.5281088352203369, -0.41326403617858887, 0.12506736814975739, -0.18275943398475647, 0.06227003410458565, 1.1686058044433594, -0.005656554363667965, 0.013158679008483887, -0.005332980304956436]} +{"t": 13.5196, "q": [-0.12310706824064255, 0.002629924099892378, 0.006039745174348354, 0.31736359000205994, -0.18529847264289856, -0.01016154419630766, -0.07557923346757889, -0.03573323041200638, 0.02501606196165085, 0.3388307988643646, -0.27003026008605957, 0.02564598247408867, 0.0029730007518082857, 0.0752141922712326, 0.005185261368751526, 0.08826381713151932, 0.2066919356584549, 0.1535179316997528, 0.19812321662902832, 0.028198881074786186, -0.5277853012084961, -0.4132520258426666, 0.12506736814975739, -0.18278340995311737, 0.062246065586805344, 1.1685937643051147, -0.005620601586997509, 0.013110741972923279, -0.005332980304956436]} +{"t": 13.5363, "q": [-0.12310706824064255, 0.002629924099892378, 0.006026353221386671, 0.3173721134662628, -0.1852983683347702, -0.010147344321012497, -0.07561331987380981, -0.035716187208890915, 0.02504284493625164, 0.33882227540016174, -0.2700387239456177, 0.025660477578639984, 0.0028122980147600174, 0.07518383860588074, 0.005205763969570398, 0.08843159675598145, 0.2066439986228943, 0.1534699946641922, 0.19905798137187958, 0.031147001311182976, -0.5274377465248108, -0.41334789991378784, 0.12506736814975739, -0.18274745345115662, 0.062258049845695496, 1.168569803237915, -0.0055367122404277325, 0.013098758645355701, -0.005320996046066284]} +{"t": 13.5531, "q": [-0.12310706824064255, 0.002638446632772684, 0.006039745174348354, 0.3173465430736542, -0.1853068768978119, -0.01014738343656063, -0.07561331987380981, -0.03569914028048515, 0.02501606196165085, 0.33881375193595886, -0.2700387239456177, 0.025660477578639984, 0.0027989062946289778, 0.07518361508846283, 0.005224947817623615, 0.08892294764518738, 0.2064882069826126, 0.1534220576286316, 0.19953735172748566, 0.03293265029788017, -0.5273778438568115, -0.4134557843208313, 0.12507936358451843, -0.18275943398475647, 0.062258049845695496, 1.1685937643051147, -0.005572664551436901, 0.013110741972923279, -0.005320996046066284]} +{"t": 13.5699, "q": [-0.12309855222702026, 0.002638446632772684, 0.006026353221386671, 0.3173294961452484, -0.18529416620731354, -0.010154425166547298, -0.07558775693178177, -0.035716187208890915, 0.02501606196165085, 0.3387967050075531, -0.2700346112251282, 0.025667652487754822, 0.002852473873645067, 0.07516855001449585, 0.005225603934377432, 0.08922255784273148, 0.2064162939786911, 0.15348197519779205, 0.1997530609369278, 0.03386741876602173, -0.527353823184967, -0.4134557843208313, 0.12510332465171814, -0.18275943398475647, 0.062258049845695496, 1.1685937643051147, -0.0055247279815375805, 0.013110741972923279, -0.005332980304956436]} +{"t": 13.5866, "q": [-0.12311559170484543, 0.002638446632772684, 0.006012961268424988, 0.31730392575263977, -0.1852983683347702, -0.010147344321012497, -0.07559628039598465, -0.0357247069478035, 0.024962494149804115, 0.33877965807914734, -0.2700346112251282, 0.025667652487754822, 0.0029060414526611567, 0.07516855001449585, 0.005225603934377432, 0.08947422355413437, 0.20567327737808228, 0.15338610112667084, 0.1998009979724884, 0.035125765949487686, -0.5273178815841675, -0.4135037064552307, 0.125115305185318, -0.18272347748279572, 0.062258049845695496, 1.1685937643051147, -0.005560680292546749, 0.013110741972923279, -0.005332980304956436]} +{"t": 13.6033, "q": [-0.12313263863325119, 0.002629924099892378, 0.006026353221386671, 0.31726983189582825, -0.18530277907848358, -0.01016866322606802, -0.07558775693178177, -0.035716187208890915, 0.024962494149804115, 0.3387455642223358, -0.2700346112251282, 0.025667652487754822, 0.002946217078715563, 0.07516107708215714, 0.005221139173954725, 0.08986970782279968, 0.20473849773406982, 0.15299062430858612, 0.20001672208309174, 0.03656386956572533, -0.527126133441925, -0.4136595129966736, 0.12505538761615753, -0.18273547291755676, 0.062246065586805344, 1.1686058044433594, -0.005620601586997509, 0.01312272623181343, -0.005344964563846588]} +{"t": 13.6201, "q": [-0.12311559170484543, 0.002655490767210722, 0.006012961268424988, 0.3171505331993103, -0.18530277907848358, -0.01016866322606802, -0.0756218433380127, -0.03569914028048515, 0.024922318756580353, 0.3387199938297272, -0.27004295587539673, 0.02566772699356079, 0.0029060414526611567, 0.07516095787286758, 0.0052307299338281155, 0.09018129855394363, 0.20410333573818207, 0.15269100666046143, 0.20053203403949738, 0.03858920559287071, -0.5269104242324829, -0.41379132866859436, 0.12497150152921677, -0.18274745345115662, 0.062246065586805344, 1.16855788230896, -0.005584648810327053, 0.01312272623181343, -0.005332980304956436]} +{"t": 13.6368, "q": [-0.12310706824064255, 0.00267253490164876, 0.006026353221386671, 0.3171079158782959, -0.18529416620731354, -0.010154425166547298, -0.07563036680221558, -0.035656530410051346, 0.024922318756580353, 0.3386518359184265, -0.2700386047363281, 0.02564605511724949, 0.0027989062946289778, 0.0751456767320633, 0.005250574089586735, 0.09050486981868744, 0.20375579595565796, 0.1525472104549408, 0.20153871178627014, 0.041429467499256134, -0.5265508890151978, -0.41383928060531616, 0.12498348206281662, -0.18275943398475647, 0.0622820183634758, 1.1685818433761597, -0.005620601586997509, 0.01312272623181343, -0.005332980304956436]} +{"t": 13.6537, "q": [-0.12313263863325119, 0.0026895790360867977, 0.006012961268424988, 0.31703972816467285, -0.18530267477035522, -0.010154463350772858, -0.07567297667264938, -0.03562244400382042, 0.024908926337957382, 0.33862626552581787, -0.2700387239456177, 0.025660477578639984, 0.002718554809689522, 0.07513060420751572, 0.005251232534646988, 0.09073256701231003, 0.20370785892009735, 0.15258315205574036, 0.20258134603500366, 0.04385028034448624, -0.5262752771377563, -0.41389918327331543, 0.12500745058059692, -0.18272347748279572, 0.0622820183634758, 1.1685818433761597, -0.005584648810327053, 0.01312272623181343, -0.005344964563846588]} +{"t": 13.6704, "q": [-0.12312411516904831, 0.0027407114394009113, 0.006026353221386671, 0.31698861718177795, -0.18529847264289856, -0.01016154419630766, -0.07572411000728607, -0.035596877336502075, 0.02489553391933441, 0.3386092185974121, -0.2700346112251282, 0.025667652487754822, 0.002731946762651205, 0.07513049989938736, 0.005260825622826815, 0.09085240960121155, 0.2037438154220581, 0.1527988761663437, 0.20385167002677917, 0.04784102737903595, -0.5261314511299133, -0.41389918327331543, 0.12504340708255768, -0.18271149694919586, 0.06227003410458565, 1.1685818433761597, -0.005560680292546749, 0.013146694749593735, -0.005332980304956436]} +{"t": 13.6872, "q": [-0.12313263863325119, 0.0027492339722812176, 0.006012961268424988, 0.316911906003952, -0.18529416620731354, -0.010154425166547298, -0.07571558654308319, -0.035588353872299194, 0.024908926337957382, 0.3385239839553833, -0.2700346112251282, 0.025667652487754822, 0.0027453387156128883, 0.07513060420751572, 0.005251232534646988, 0.09093630313873291, 0.20389960706233978, 0.15295466780662537, 0.2055414468050003, 0.051292482763528824, -0.5261793732643127, -0.41392314434051514, 0.12506736814975739, -0.18273547291755676, 0.062258049845695496, 1.1686058044433594, -0.0055486964993178844, 0.013146694749593735, -0.005344964563846588]} +{"t": 13.7039, "q": [-0.12314116209745407, 0.0027321898378431797, 0.006012961268424988, 0.31685224175453186, -0.18530277907848358, -0.01016866322606802, -0.07574967294931412, -0.03557131066918373, 0.02489553391933441, 0.3384898900985718, -0.2700388431549072, 0.02567490190267563, 0.002758730435743928, 0.07514555752277374, 0.005260164849460125, 0.09096027165651321, 0.20409135520458221, 0.15297862887382507, 0.20702749490737915, 0.05313805490732193, -0.526155412197113, -0.41397109627723694, 0.12500745058059692, -0.18273547291755676, 0.062246065586805344, 1.1685818433761597, -0.005560680292546749, 0.013098758645355701, -0.00535694882273674]} +{"t": 13.7206, "q": [-0.12313263863325119, 0.0027492339722812176, 0.006026353221386671, 0.3167926073074341, -0.18529847264289856, -0.01016154419630766, -0.07573263347148895, -0.035588353872299194, 0.02489553391933441, 0.3384813666343689, -0.2700387239456177, 0.025660477578639984, 0.0028122980147600174, 0.07514555752277374, 0.005260164849460125, 0.09099622070789337, 0.20419920980930328, 0.15295466780662537, 0.20863337814807892, 0.054731957614421844, -0.5262153744697571, -0.414078950881958, 0.12497150152921677, -0.18272347748279572, 0.06223408132791519, 1.1685937643051147, -0.005560680292546749, 0.01312272623181343, -0.005320996046066284]} +{"t": 13.7374, "q": [-0.12315820157527924, 0.0027407114394009113, 0.006012961268424988, 0.3167499899864197, -0.1853068768978119, -0.01014738343656063, -0.07573263347148895, -0.035596877336502075, 0.02489553391933441, 0.3384728729724884, -0.2700428366661072, 0.025653302669525146, 0.0028122980147600174, 0.07513797283172607, 0.005265290383249521, 0.09098424017429352, 0.2042471468448639, 0.1529187113046646, 0.2102871984243393, 0.056841179728507996, -0.5261673927307129, -0.41419878602027893, 0.12497150152921677, -0.18273547291755676, 0.06227003410458565, 1.16855788230896, -0.0055367122404277325, 0.01312272623181343, -0.005344964563846588]} +{"t": 13.7543, "q": [-0.12314116209745407, 0.0027407114394009113, 0.006012961268424988, 0.3167499899864197, -0.18530698120594025, -0.010161582380533218, -0.07574115693569183, -0.03560539707541466, 0.024922318756580353, 0.338430255651474, -0.27004295587539673, 0.02566772699356079, 0.0027989062946289778, 0.07514545321464539, 0.005269757937639952, 0.09099622070789337, 0.20421120524406433, 0.15296664834022522, 0.2117612659931183, 0.06011287495493889, -0.5260955095291138, -0.4142107665538788, 0.12495951354503632, -0.18272347748279572, 0.06227003410458565, 1.1685458421707153, -0.005560680292546749, 0.013134710490703583, -0.005332980304956436]} +{"t": 13.7711, "q": [-0.12315820157527924, 0.0027066231705248356, 0.006012961268424988, 0.3167073726654053, -0.18530698120594025, -0.010161582380533218, -0.07574967294931412, -0.03562244400382042, 0.024908926337957382, 0.3383876383304596, -0.2700387239456177, 0.025660477578639984, 0.0027721223887056112, 0.07513038069009781, 0.0052704159170389175, 0.09100820869207382, 0.20415127277374268, 0.15296664834022522, 0.2131034880876541, 0.06327670812606812, -0.5260236263275146, -0.41422274708747864, 0.12497150152921677, -0.18268753588199615, 0.06227003410458565, 1.1685818433761597, -0.005560680292546749, 0.013110741972923279, -0.005332980304956436]} +{"t": 13.7878, "q": [-0.123175248503685, 0.002715145703405142, 0.006026353221386671, 0.3166903257369995, -0.18530698120594025, -0.010161582380533218, -0.07574967294931412, -0.03564801067113876, 0.024922318756580353, 0.33837059140205383, -0.2700388431549072, 0.02567490190267563, 0.0027453387156128883, 0.07512279599905014, 0.005275541916489601, 0.09097225219011307, 0.20407937467098236, 0.15311045944690704, 0.21486517786979675, 0.06805841624736786, -0.52601158618927, -0.4142347574234009, 0.12500745058059692, -0.182699516415596, 0.062246065586805344, 1.1685937643051147, -0.0055486964993178844, 0.01312272623181343, -0.005332980304956436]} +{"t": 13.8046, "q": [-0.12320081144571304, 0.00267253490164876, 0.006012961268424988, 0.31668180227279663, -0.18531550467014313, -0.010161638259887695, -0.07574967294931412, -0.035656530410051346, 0.024935709312558174, 0.33836206793785095, -0.2700387239456177, 0.025660477578639984, 0.0027051628567278385, 0.07513038069009781, 0.0052704159170389175, 0.09098424017429352, 0.20413929224014282, 0.1531224399805069, 0.2164231240749359, 0.07143796980381012, -0.5259636640548706, -0.41427069902420044, 0.12500745058059692, -0.182699516415596, 0.062258049845695496, 1.1685937643051147, -0.005572664551436901, 0.013110741972923279, -0.005332980304956436]} +{"t": 13.8213, "q": [-0.12320081144571304, 0.00267253490164876, 0.006026353221386671, 0.3166903257369995, -0.18530698120594025, -0.010161582380533218, -0.075758196413517, -0.03568209707736969, 0.024962494149804115, 0.3383791148662567, -0.2700387239456177, 0.025660477578639984, 0.002691771136596799, 0.07513027638196945, 0.005280009470880032, 0.09103217720985413, 0.20415127277374268, 0.1530984789133072, 0.21799305081367493, 0.07315170764923096, -0.5259516835212708, -0.4143545925617218, 0.12500745058059692, -0.18273547291755676, 0.062258049845695496, 1.1685458421707153, -0.0055486964993178844, 0.01312272623181343, -0.005332980304956436]} +{"t": 13.8381, "q": [-0.12320081144571304, 0.00267253490164876, 0.00605313666164875, 0.3166903257369995, -0.18531538546085358, -0.01014742162078619, -0.07574967294931412, -0.03569062054157257, 0.024949101731181145, 0.33836206793785095, -0.2700388431549072, 0.02567490190267563, 0.0027051628567278385, 0.07511520385742188, 0.005280667450278997, 0.09103217720985413, 0.20418722927570343, 0.15296664834022522, 0.21905964612960815, 0.07534482330083847, -0.5259516835212708, -0.41459426283836365, 0.12500745058059692, -0.18271149694919586, 0.0622820183634758, 1.1685339212417603, -0.005560680292546749, 0.013110741972923279, -0.005332980304956436]} +{"t": 13.8555, "q": [-0.12320081144571304, 0.002681057434529066, 0.00605313666164875, 0.3167073726654053, -0.18531538546085358, -0.01014742162078619, -0.07574967294931412, -0.03569062054157257, 0.024962494149804115, 0.3383791148662567, -0.27004295587539673, 0.02566772699356079, 0.0026783791836351156, 0.07512268424034119, 0.005285135004669428, 0.09111606329679489, 0.20421120524406433, 0.1529187113046646, 0.2199704498052597, 0.07877231389284134, -0.5257599353790283, -0.4149058759212494, 0.12498348206281662, -0.18268753588199615, 0.06223408132791519, 1.1685458421707153, -0.0055486964993178844, 0.013110741972923279, -0.005332980304956436]} +{"t": 13.8723, "q": [-0.12320081144571304, 0.002681057434529066, 0.006039745174348354, 0.3167073726654053, -0.1853068768978119, -0.01014738343656063, -0.07574115693569183, -0.03569062054157257, 0.024935709312558174, 0.3383961617946625, -0.2700387239456177, 0.025660477578639984, 0.00254446011967957, 0.07512268424034119, 0.005285135004669428, 0.09127186238765717, 0.20422318577766418, 0.152870774269104, 0.22122879326343536, 0.08169646561145782, -0.5253524780273438, -0.41526538133621216, 0.12498348206281662, -0.18274745345115662, 0.062246065586805344, 1.1685218811035156, -0.005572664551436901, 0.013110741972923279, -0.005332980304956436]} +{"t": 13.889, "q": [-0.12320081144571304, 0.00267253490164876, 0.00605313666164875, 0.31671589612960815, -0.18530698120594025, -0.010161582380533218, -0.07577524334192276, -0.03568209707736969, 0.024975884705781937, 0.3383876383304596, -0.2700428366661072, 0.025653302669525146, 0.0024908925406634808, 0.07508485019207001, 0.00530117005109787, 0.09153551608324051, 0.20407937467098236, 0.15283481776714325, 0.22255904972553253, 0.08418918401002884, -0.525328516960144, -0.4156608581542969, 0.12500745058059692, -0.18273547291755676, 0.06227003410458565, 1.1685218811035156, -0.0055486964993178844, 0.013110741972923279, -0.005332980304956436]} +{"t": 13.9059, "q": [-0.12320081144571304, 0.0026895790360867977, 0.00605313666164875, 0.3167073726654053, -0.1853111833333969, -0.010154501534998417, -0.07578376680612564, -0.03566505387425423, 0.024935709312558174, 0.33837059140205383, -0.2700346112251282, 0.025667652487754822, 0.002504284493625164, 0.0750620886683464, 0.005316547118127346, 0.09158344566822052, 0.20392358303070068, 0.152870774269104, 0.22430874407291412, 0.08834771066904068, -0.525412380695343, -0.4159484803676605, 0.12501943111419678, -0.18268753588199615, 0.062246065586805344, 1.16855788230896, -0.0055486964993178844, 0.01312272623181343, -0.005344964563846588]} +{"t": 13.9226, "q": [-0.12320081144571304, 0.0026895790360867977, 0.006039745174348354, 0.31672441959381104, -0.1853111833333969, -0.010154501534998417, -0.07577524334192276, -0.03566505387425423, 0.024935709312558174, 0.3383961617946625, -0.27004295587539673, 0.02566772699356079, 0.00254446011967957, 0.07506956160068512, 0.0053210146725177765, 0.09155947715044022, 0.20392358303070068, 0.15281085669994354, 0.22669360041618347, 0.09248226881027222, -0.5254603624343872, -0.41634395718574524, 0.12504340708255768, -0.18275943398475647, 0.062258049845695496, 1.16855788230896, -0.0055367122404277325, 0.013110741972923279, -0.005332980304956436]} +{"t": 13.9393, "q": [-0.12319229543209076, 0.002681057434529066, 0.006039745174348354, 0.31672441959381104, -0.18530698120594025, -0.010161582380533218, -0.07577524334192276, -0.03566505387425423, 0.024935709312558174, 0.3383876383304596, -0.2700388431549072, 0.02567490190267563, 0.002464108867570758, 0.07507715374231339, 0.00531588913872838, 0.09158344566822052, 0.203995481133461, 0.15273894369602203, 0.22910243272781372, 0.0947832390666008, -0.5253524780273438, -0.41683530807495117, 0.12498348206281662, -0.182699516415596, 0.06227003410458565, 1.1685218811035156, -0.0055486964993178844, 0.01312272623181343, -0.005332980304956436]} +{"t": 13.9561, "q": [-0.12319229543209076, 0.0026895790360867977, 0.00605313666164875, 0.31672441959381104, -0.1853111833333969, -0.010154501534998417, -0.075758196413517, -0.03566505387425423, 0.024949101731181145, 0.3384217321872711, -0.2700428366661072, 0.025653302669525146, 0.00254446011967957, 0.07507715374231339, 0.00531588913872838, 0.09152352809906006, 0.20398350059986115, 0.1528228372335434, 0.23188278079032898, 0.09831858426332474, -0.5254843235015869, -0.417254775762558, 0.12500745058059692, -0.18271149694919586, 0.062246065586805344, 1.168509840965271, -0.0055486964993178844, 0.013110741972923279, -0.005320996046066284]} +{"t": 13.973, "q": [-0.12320933490991592, 0.0026895790360867977, 0.006039745174348354, 0.3167499899864197, -0.18530698120594025, -0.010161582380533218, -0.07576671987771988, -0.03564801067113876, 0.02489553391933441, 0.33841320872306824, -0.2700428366661072, 0.025653302669525146, 0.0025578520726412535, 0.07507715374231339, 0.00531588913872838, 0.09139170497655869, 0.20400746166706085, 0.15293069183826447, 0.23490279912948608, 0.10196179151535034, -0.525556206703186, -0.41761431097984314, 0.12504340708255768, -0.182699516415596, 0.062258049845695496, 1.1685339212417603, -0.005584648810327053, 0.013110741972923279, -0.005332980304956436]} +{"t": 13.9897, "q": [-0.12319229543209076, 0.002715145703405142, 0.00605313666164875, 0.3167414665222168, -0.1852983683347702, -0.010147344321012497, -0.07579229027032852, -0.03563948720693588, 0.024922318756580353, 0.3384387791156769, -0.2700346112251282, 0.025667652487754822, 0.002504284493625164, 0.07506967335939407, 0.00531142158433795, 0.09142765402793884, 0.20395952463150024, 0.15303856134414673, 0.23752734065055847, 0.10484998673200607, -0.5255801677703857, -0.41786596179008484, 0.12501943111419678, -0.182699516415596, 0.0622820183634758, 1.1684858798980713, -0.005584648810327053, 0.013110741972923279, -0.005320996046066284]} +{"t": 14.0065, "q": [-0.12320081144571304, 0.002715145703405142, 0.006039745174348354, 0.3167329430580139, -0.18531560897827148, -0.010175838135182858, -0.07577524334192276, -0.03563948720693588, 0.024949101731181145, 0.33841320872306824, -0.2700387239456177, 0.025660477578639984, 0.002531068166717887, 0.07506956160068512, 0.0053210146725177765, 0.09159543365240097, 0.2037917524576187, 0.1532183140516281, 0.23909728229045868, 0.10898454487323761, -0.5256161093711853, -0.4180217683315277, 0.12506736814975739, -0.18272347748279572, 0.06227003410458565, 1.168509840965271, -0.005560680292546749, 0.01312272623181343, -0.005332980304956436]} +{"t": 14.0232, "q": [-0.12323490530252457, 0.002715145703405142, 0.00605313666164875, 0.3167499899864197, -0.1853111833333969, -0.010154501534998417, -0.07578376680612564, -0.03564801067113876, 0.024935709312558174, 0.33841320872306824, -0.2700388431549072, 0.02567490190267563, 0.002624811604619026, 0.07506956160068512, 0.0053210146725177765, 0.09170328825712204, 0.203623965382576, 0.1531464159488678, 0.24057133495807648, 0.11066233366727829, -0.5256401300430298, -0.41816556453704834, 0.12517523765563965, -0.18268753588199615, 0.062258049845695496, 1.168509840965271, -0.0055367122404277325, 0.013074790127575397, -0.005320996046066284]} +{"t": 14.0399, "q": [-0.12326046824455261, 0.0027066231705248356, 0.00605313666164875, 0.3167926073074341, -0.18530698120594025, -0.010161582380533218, -0.075758196413517, -0.03566505387425423, 0.024922318756580353, 0.338430255651474, -0.2700346112251282, 0.025667652487754822, 0.0026783791836351156, 0.07506197690963745, 0.005326140206307173, 0.09187106788158417, 0.20310865342617035, 0.15326625108718872, 0.24197348952293396, 0.11117766052484512, -0.5261673927307129, -0.4181775450706482, 0.1252111792564392, -0.18272347748279572, 0.062258049845695496, 1.1685218811035156, -0.0055486964993178844, 0.013110741972923279, -0.005332980304956436]} +{"t": 14.0566, "q": [-0.12326046824455261, 0.0026895790360867977, 0.006026353221386671, 0.3168351948261261, -0.18530698120594025, -0.010161582380533218, -0.07573263347148895, -0.03566505387425423, 0.02489553391933441, 0.338430255651474, -0.2700428366661072, 0.025653302669525146, 0.0028926494996994734, 0.07506956160068512, 0.0053210146725177765, 0.09183511883020401, 0.20210197567939758, 0.1534939557313919, 0.24204540252685547, 0.11120162904262543, -0.5267066955566406, -0.4181775450706482, 0.12528309226036072, -0.182699516415596, 0.06223408132791519, 1.1685218811035156, -0.0055367122404277325, 0.013098758645355701, -0.005320996046066284]} +{"t": 14.0733, "q": [-0.12324342876672745, 0.002681057434529066, 0.006026353221386671, 0.3168863356113434, -0.18530267477035522, -0.010154463350772858, -0.07570706307888031, -0.03566505387425423, 0.02486875094473362, 0.3384898900985718, -0.2700428366661072, 0.025653302669525146, 0.0029060414526611567, 0.07503954321146011, 0.005312740337103605, 0.09160741418600082, 0.20023243129253387, 0.15373364090919495, 0.2419375330209732, 0.11097392439842224, -0.5274137854576111, -0.4181535840034485, 0.12524713575839996, -0.18271149694919586, 0.06223408132791519, 1.1684858798980713, -0.0055367122404277325, 0.013110741972923279, -0.005332980304956436]} +{"t": 14.0901, "q": [-0.12320933490991592, 0.0026895790360867977, 0.00605313666164875, 0.3170141577720642, -0.1853111833333969, -0.010154501534998417, -0.07567297667264938, -0.03567357361316681, 0.024935709312558174, 0.3385154604911804, -0.27004295587539673, 0.02566772699356079, 0.002865865593776107, 0.07499434798955917, 0.0053147198632359505, 0.09140368551015854, 0.19633756577968597, 0.1541171371936798, 0.24167388677597046, 0.1106863021850586, -0.5279410481452942, -0.41816556453704834, 0.12519919872283936, -0.18271149694919586, 0.06222209706902504, 1.1684379577636719, -0.005572664551436901, 0.013098758645355701, -0.005332980304956436]} +{"t": 14.1068, "q": [-0.12323490530252457, 0.0026895790360867977, 0.006026353221386671, 0.3171164393424988, -0.18530698120594025, -0.010161582380533218, -0.0756218433380127, -0.03566505387425423, 0.024922318756580353, 0.33859217166900635, -0.2700387239456177, 0.025660477578639984, 0.0030801359098404646, 0.07500974088907242, 0.005285284947603941, 0.09140368551015854, 0.1926344335079193, 0.15601064264774323, 0.2415420562028885, 0.1095118522644043, -0.5283365249633789, -0.41763827204704285, 0.12531904876232147, -0.182699516415596, 0.062246065586805344, 1.1684619188308716, -0.0055486964993178844, 0.013098758645355701, -0.00535694882273674]} +{"t": 14.1235, "q": [-0.12320933490991592, 0.00267253490164876, 0.005946001503616571, 0.31727835536003113, -0.18529416620731354, -0.010154425166547298, -0.07557071000337601, -0.03567357361316681, 0.024775007739663124, 0.33872851729393005, -0.27002614736557007, 0.025653157383203506, 0.003575636073946953, 0.07491890341043472, 0.005327609367668629, 0.09106812626123428, 0.18990203738212585, 0.15744875371456146, 0.2415899932384491, 0.10867295414209366, -0.5283845067024231, -0.41719484329223633, 0.12563063204288483, -0.18268753588199615, 0.06227003410458565, 1.1684739589691162, -0.005572664551436901, 0.01312272623181343, -0.005332980304956436]} +{"t": 14.1403, "q": [-0.12324342876672745, 0.002681057434529066, 0.005905826110392809, 0.3173976540565491, -0.18529857695102692, -0.010175752453505993, -0.07555367052555084, -0.03566505387425423, 0.024828573688864708, 0.3387967050075531, -0.27002614736557007, 0.025653157383203506, 0.0036827712319791317, 0.07489613443613052, 0.005342986434698105, 0.09008542448282242, 0.18710970878601074, 0.1588389277458191, 0.24143420159816742, 0.1080617606639862, -0.5284204483032227, -0.416883260011673, 0.12566658854484558, -0.18271149694919586, 0.062246065586805344, 1.1685218811035156, -0.005560680292546749, 0.013134710490703583, -0.005344964563846588]} +{"t": 14.157, "q": [-0.12320081144571304, 0.0026895790360867977, 0.005932609550654888, 0.3174828886985779, -0.18528994917869568, -0.010161514393985271, -0.07555367052555084, -0.03563948720693588, 0.02488214150071144, 0.3388563394546509, -0.270021915435791, 0.0256459079682827, 0.0035086767747998238, 0.07487359642982483, 0.005339179653674364, 0.08929446339607239, 0.18411365151405334, 0.16081631183624268, 0.2412664294242859, 0.10707905143499374, -0.5285642743110657, -0.4164518415927887, 0.12564261257648468, -0.1826755404472351, 0.062246065586805344, 1.168509840965271, -0.005584648810327053, 0.01312272623181343, -0.005344964563846588]} +{"t": 14.1737, "q": [-0.12318377196788788, 0.002715145703405142, 0.005946001503616571, 0.31764480471611023, -0.1853071004152298, -0.010175799950957298, -0.07553662359714508, -0.03561392053961754, 0.024908926337957382, 0.3389841914176941, -0.2700303792953491, 0.025660404935479164, 0.0031470954418182373, 0.07483631372451782, 0.005307256709784269, 0.0884915217757225, 0.18088988959789276, 0.16297347843647003, 0.24112261831760406, 0.10505371540784836, -0.528768002986908, -0.41574475169181824, 0.12566658854484558, -0.18268753588199615, 0.062258049845695496, 1.168509840965271, -0.005572664551436901, 0.01312272623181343, -0.005332980304956436]} +{"t": 14.1904, "q": [-0.12316672503948212, 0.0027236673049628735, 0.005932609550654888, 0.31763628125190735, -0.18529416620731354, -0.010154425166547298, -0.0755281001329422, -0.03557131066918373, 0.024962494149804115, 0.3389841914176941, -0.2700260281562805, 0.025638733059167862, 0.002839081920683384, 0.07473184913396835, 0.005225546192377806, 0.08785635232925415, 0.17700700461864471, 0.16589762270450592, 0.2409907877445221, 0.10101503133773804, -0.5288878083229065, -0.4150616526603699, 0.12570254504680634, -0.18268753588199615, 0.062258049845695496, 1.1685218811035156, -0.005584648810327053, 0.013110741972923279, -0.005344964563846588]} +{"t": 14.2072, "q": [-0.12312411516904831, 0.0027833222411572933, 0.005972785409539938, 0.317661851644516, -0.18528994917869568, -0.010161514393985271, -0.07554514706134796, -0.035537220537662506, 0.024989277124404907, 0.33905234932899475, -0.27002179622650146, 0.025631466880440712, 0.002531068166717887, 0.07458922266960144, 0.005188647657632828, 0.08704143017530441, 0.17229720950126648, 0.1706913262605667, 0.24029569327831268, 0.0971561148762703, -0.5291514992713928, -0.41436657309532166, 0.1257624626159668, -0.18273547291755676, 0.062258049845695496, 1.1685218811035156, -0.005572664551436901, 0.013110741972923279, -0.005332980304956436]} +{"t": 14.2239, "q": [-0.12314116209745407, 0.0028514997102320194, 0.005932609550654888, 0.31763628125190735, -0.18529416620731354, -0.010154425166547298, -0.07554514706134796, -0.03543495759367943, 0.024975884705781937, 0.33900976181030273, -0.2700134515762329, 0.025631394237279892, 0.0025712440256029367, 0.0744018405675888, 0.005115361884236336, 0.08592689782381058, 0.16793495416641235, 0.17475397884845734, 0.23982831835746765, 0.09133177995681763, -0.5294271111488342, -0.41359958052635193, 0.12605008482933044, -0.18268753588199615, 0.062258049845695496, 1.168509840965271, -0.005584648810327053, 0.01312272623181343, -0.005320996046066284]} +{"t": 14.2406, "q": [-0.12312411516904831, 0.002894109580665827, 0.005919218063354492, 0.31762775778770447, -0.18528154492378235, -0.010175676085054874, -0.07553662359714508, -0.03539234399795532, 0.024935709312558174, 0.3390182852745056, -0.27002179622650146, 0.025631466880440712, 0.0026649872306734324, 0.07420609146356583, 0.005114343017339706, 0.08468053489923477, 0.1636565774679184, 0.17837320268154144, 0.23915719985961914, 0.08670587092638016, -0.5299304723739624, -0.4132520258426666, 0.12644556164741516, -0.18272347748279572, 0.062258049845695496, 1.16855788230896, -0.005596633069217205, 0.01312272623181343, -0.00535694882273674]} +{"t": 14.2573, "q": [-0.12314968556165695, 0.002945242915302515, 0.005919218063354492, 0.3176107108592987, -0.18529857695102692, -0.010175752453505993, -0.07553662359714508, -0.03534121438860893, 0.02486875094473362, 0.3389841914176941, -0.2700134515762329, 0.025631394237279892, 0.002758730435743928, 0.07400989532470703, 0.005151691380888224, 0.08358997106552124, 0.15919844806194305, 0.1811775118112564, 0.2385459989309311, 0.07847270369529724, -0.5306015610694885, -0.41309624910354614, 0.12667326629161835, -0.182699516415596, 0.06223408132791519, 1.1685818433761597, -0.005572664551436901, 0.013110741972923279, -0.005332980304956436]} +{"t": 14.274, "q": [-0.12316672503948212, 0.002962287049740553, 0.005919218063354492, 0.3175681233406067, -0.18529435992240906, -0.010182833299040794, -0.07555367052555084, -0.03531564772129059, 0.02486875094473362, 0.3389330506324768, -0.27001330256462097, 0.025616969913244247, 0.0027721223887056112, 0.07381303608417511, 0.005246591288596392, 0.08257131278514862, 0.1541171371936798, 0.18399381637573242, 0.23770710825920105, 0.07016763836145401, -0.5319198369979858, -0.4129764139652252, 0.12679310142993927, -0.18268753588199615, 0.06227003410458565, 1.1685818433761597, -0.005572664551436901, 0.013110741972923279, -0.005332980304956436]} +{"t": 14.2908, "q": [-0.12316672503948212, 0.0029708086512982845, 0.005892434157431126, 0.31749141216278076, -0.18528994917869568, -0.010161514393985271, -0.07557923346757889, -0.035290081053972244, 0.02489553391933441, 0.3388478457927704, -0.27001768350601196, 0.02563864178955555, 0.0027855143416672945, 0.07364685833454132, 0.005292211193591356, 0.0815047174692154, 0.14901185035705566, 0.1875171661376953, 0.23723971843719482, 0.06447513401508331, -0.5337533950805664, -0.4128565490245819, 0.12679310142993927, -0.182699516415596, 0.062305986881256104, 1.1686058044433594, -0.0055486964993178844, 0.013134710490703583, -0.005332980304956436]} +{"t": 14.3075, "q": [-0.123175248503685, 0.0029963753186166286, 0.005905826110392809, 0.3174317479133606, -0.18530277907848358, -0.01016866322606802, -0.07560479640960693, -0.03530712425708771, 0.024908926337957382, 0.3388307988643646, -0.27002179622650146, 0.025631466880440712, 0.0026783791836351156, 0.07350345700979233, 0.005322455894201994, 0.08058193325996399, 0.14280402660369873, 0.19213110208511353, 0.23721575736999512, 0.05622998625040054, -0.5363659858703613, -0.412880539894104, 0.12675714492797852, -0.18268753588199615, 0.06229400262236595, 1.1685937643051147, -0.005560680292546749, 0.01312272623181343, -0.005320996046066284]} +{"t": 14.3242, "q": [-0.12315820157527924, 0.0029708086512982845, 0.005905826110392809, 0.31736359000205994, -0.18529416620731354, -0.010154425166547298, -0.07560479640960693, -0.035290081053972244, 0.02489553391933441, 0.3387626111507416, -0.2700134515762329, 0.025631394237279892, 0.002691771136596799, 0.07339051365852356, 0.005322605837136507, 0.07950334995985031, 0.13725532591342926, 0.195606529712677, 0.23717980086803436, 0.04746951535344124, -0.5398533940315247, -0.4128325879573822, 0.1267331838607788, -0.182699516415596, 0.06227003410458565, 1.1685937643051147, -0.0055486964993178844, 0.013146694749593735, -0.005332980304956436]} +{"t": 14.341, "q": [-0.12315820157527924, 0.0029708086512982845, 0.005892434157431126, 0.317286878824234, -0.18529857695102692, -0.010175752453505993, -0.07560479640960693, -0.03532416746020317, 0.02486875094473362, 0.33872851729393005, -0.2700134515762329, 0.025631394237279892, 0.0026649872306734324, 0.07325469702482224, 0.005347723141312599, 0.07854460924863815, 0.13168266415596008, 0.19872242212295532, 0.23694011569023132, 0.03814578801393509, -0.5447909235954285, -0.41289252042770386, 0.12672120332717896, -0.18268753588199615, 0.06229400262236595, 1.1685937643051147, -0.005572664551436901, 0.01312272623181343, -0.005332980304956436]} +{"t": 14.3577, "q": [-0.12315820157527924, 0.0029793311841785908, 0.005905826110392809, 0.3172357380390167, -0.18530267477035522, -0.010154463350772858, -0.07560479640960693, -0.03531564772129059, 0.02489553391933441, 0.33868589997291565, -0.270021915435791, 0.0256459079682827, 0.0027721223887056112, 0.07311809808015823, 0.005439985077828169, 0.07768175005912781, 0.12577444314956665, 0.2021259367465973, 0.23655661940574646, 0.02840261347591877, -0.5492490530014038, -0.41279664635658264, 0.12667326629161835, -0.182699516415596, 0.0622820183634758, 1.1685937643051147, -0.005560680292546749, 0.013110741972923279, -0.005332980304956436]} +{"t": 14.3746, "q": [-0.12316672503948212, 0.0029708086512982845, 0.005892434157431126, 0.3171505331993103, -0.18529857695102692, -0.010175752453505993, -0.07559628039598465, -0.03534121438860893, 0.024801790714263916, 0.3386688530445099, -0.27002179622650146, 0.025631466880440712, 0.0029997846577316523, 0.07304980605840683, 0.005486153997480869, 0.07677094638347626, 0.12015384435653687, 0.20423516631126404, 0.235897496342659, 0.02034921385347843, -0.5511305332183838, -0.4128086268901825, 0.1267092078924179, -0.18272347748279572, 0.062305986881256104, 1.1686058044433594, -0.005608617328107357, 0.013134710490703583, -0.005344964563846588]} +{"t": 14.3913, "q": [-0.12318377196788788, 0.0029537645168602467, 0.005892434157431126, 0.31716758012771606, -0.18530277907848358, -0.01016866322606802, -0.07560479640960693, -0.03538382425904274, 0.024748222902417183, 0.3386603593826294, -0.2700260281562805, 0.025638733059167862, 0.0031872710678726435, 0.07298921793699265, 0.005517603363841772, 0.0758361741900444, 0.11533618718385696, 0.20587700605392456, 0.23577764630317688, 0.011385014280676842, -0.5531079769134521, -0.41284456849098206, 0.12672120332717896, -0.18268753588199615, 0.0622820183634758, 1.1685937643051147, -0.005596633069217205, 0.013170663267374039, -0.005332980304956436]} +{"t": 14.4082, "q": [-0.12318377196788788, 0.0029537645168602467, 0.005865650251507759, 0.3170738220214844, -0.18530277907848358, -0.01016866322606802, -0.07561331987380981, -0.03537530079483986, 0.024775007739663124, 0.33859217166900635, -0.2700260281562805, 0.025638733059167862, 0.0031872710678726435, 0.07296645641326904, 0.005532997194677591, 0.07476957887411118, 0.11049455404281616, 0.20779448747634888, 0.23581360280513763, 0.002672482281923294, -0.5559481978416443, -0.4128565490245819, 0.12657739222049713, -0.1826755404472351, 0.06229400262236595, 1.1685818433761597, -0.0055486964993178844, 0.013170663267374039, -0.005332980304956436]} +{"t": 14.4251, "q": [-0.12315820157527924, 0.0029708086512982845, 0.005879042204469442, 0.31709086894989014, -0.18530277907848358, -0.01016866322606802, -0.0756218433380127, -0.03534121438860893, 0.024788398295640945, 0.3386092185974121, -0.27001768350601196, 0.02563864178955555, 0.003106919815763831, 0.07293599098920822, 0.005563125014305115, 0.07353520393371582, 0.10547316819429398, 0.21134181320667267, 0.2359933704137802, -0.00612393906340003, -0.5587405562400818, -0.4128565490245819, 0.12644556164741516, -0.182699516415596, 0.0622820183634758, 1.1685818433761597, -0.005560680292546749, 0.013146694749593735, -0.005332980304956436]} +{"t": 14.4419, "q": [-0.12318377196788788, 0.0029878527857363224, 0.005852258298546076, 0.3170652985572815, -0.18529847264289856, -0.01016154419630766, -0.07559628039598465, -0.03533269092440605, 0.024734830483794212, 0.3386518359184265, -0.2700258791446686, 0.025624291971325874, 0.0030533522367477417, 0.0728829875588417, 0.005589442793279886, 0.07228884845972061, 0.09952899068593979, 0.21479326486587524, 0.23620907962322235, -0.013937653973698616, -0.5619043707847595, -0.4128325879573822, 0.12648151814937592, -0.182699516415596, 0.062317971140146255, 1.1685818433761597, -0.0055486964993178844, 0.013146694749593735, -0.005320996046066284]} +{"t": 14.4586, "q": [-0.12318377196788788, 0.0029793311841785908, 0.0058388663455843925, 0.317099392414093, -0.18529435992240906, -0.010182833299040794, -0.07561331987380981, -0.03531564772129059, 0.024748222902417183, 0.3386518359184265, -0.2700175344944, 0.025624219328165054, 0.0030399602837860584, 0.07286769896745682, 0.005609307438135147, 0.07156979292631149, 0.09486712515354156, 0.2171781361103058, 0.23641280829906464, -0.021020330488681793, -0.5653079152107239, -0.41289252042770386, 0.12651745975017548, -0.1826755404472351, 0.06229400262236595, 1.1685937643051147, -0.005572664551436901, 0.013146694749593735, -0.005332980304956436]} +{"t": 14.4753, "q": [-0.123175248503685, 0.0030219419859349728, 0.005852258298546076, 0.31709086894989014, -0.185285747051239, -0.010168595239520073, -0.07564741373062134, -0.035290081053972244, 0.024775007739663124, 0.33867737650871277, -0.270021915435791, 0.0256459079682827, 0.0026783791836351156, 0.07282987236976624, 0.005625329911708832, 0.07141400128602982, 0.09147559106349945, 0.21871210634708405, 0.23660455644130707, -0.029265478253364563, -0.568291962146759, -0.41302433609962463, 0.12650547921657562, -0.182699516415596, 0.0622820183634758, 1.1685818433761597, -0.0055486964993178844, 0.013134710490703583, -0.005332980304956436]} +{"t": 14.4921, "q": [-0.12316672503948212, 0.0030901185236871243, 0.005852258298546076, 0.317099392414093, -0.18529435992240906, -0.010182833299040794, -0.07564741373062134, -0.035238947719335556, 0.024828573688864708, 0.3386688530445099, -0.27001768350601196, 0.02563864178955555, 0.0024507169146090746, 0.07281458377838135, 0.005645141005516052, 0.07127019017934799, 0.08750881254673004, 0.22103704512119293, 0.236496701836586, -0.03695935010910034, -0.5698379278182983, -0.41307228803634644, 0.12651745975017548, -0.18271149694919586, 0.06229400262236595, 1.168569803237915, -0.0055486964993178844, 0.01312272623181343, -0.005332980304956436]} +{"t": 14.5088, "q": [-0.12314968556165695, 0.003107162658125162, 0.005879042204469442, 0.317099392414093, -0.18529857695102692, -0.010175752453505993, -0.07560479640960693, -0.03521338105201721, 0.024801790714263916, 0.33864331245422363, -0.270021915435791, 0.0256459079682827, 0.002504284493625164, 0.07281480729579926, 0.00562597019597888, 0.07058708369731903, 0.08357799053192139, 0.22284667193889618, 0.2365206629037857, -0.04454536363482475, -0.5704491138458252, -0.41304829716682434, 0.12669722735881805, -0.18273547291755676, 0.06227003410458565, 1.16855788230896, -0.005560680292546749, 0.013110741972923279, -0.005332980304956436]} +{"t": 14.5256, "q": [-0.12314968556165695, 0.0030815969221293926, 0.005852258298546076, 0.3171079158782959, -0.18530277907848358, -0.01016866322606802, -0.07560479640960693, -0.03522190451622009, 0.024801790714263916, 0.33867737650871277, -0.27003014087677, 0.025631558150053024, 0.002611419651657343, 0.07283734530210495, 0.005629800725728273, 0.07010772079229355, 0.08004263788461685, 0.2238173931837082, 0.2365206629037857, -0.051424309611320496, -0.5706169009208679, -0.4130842685699463, 0.12676914036273956, -0.18271149694919586, 0.0622820183634758, 1.1685818433761597, -0.005572664551436901, 0.01312272623181343, -0.005332980304956436]} +{"t": 14.5423, "q": [-0.12314968556165695, 0.0030815969221293926, 0.005852258298546076, 0.3171164393424988, -0.18529416620731354, -0.010154425166547298, -0.07563889026641846, -0.03522190451622009, 0.024828573688864708, 0.3387199938297272, -0.2700134515762329, 0.025631394237279892, 0.0025980276986956596, 0.07283734530210495, 0.005629800725728273, 0.07001184672117233, 0.07653126120567322, 0.22482407093048096, 0.2364487648010254, -0.058411113917827606, -0.5707607269287109, -0.41312021017074585, 0.12675714492797852, -0.182699516415596, 0.0622820183634758, 1.1685937643051147, -0.005560680292546749, 0.013146694749593735, -0.005309011787176132]} +{"t": 14.5591, "q": [-0.12315820157527924, 0.0031156851910054684, 0.005865650251507759, 0.3171505331993103, -0.18529847264289856, -0.01016154419630766, -0.07563889026641846, -0.03522190451622009, 0.024801790714263916, 0.33872851729393005, -0.2700258791446686, 0.025624291971325874, 0.0025980276986956596, 0.07282987236976624, 0.005625329911708832, 0.07013168931007385, 0.0740145742893219, 0.2250397801399231, 0.23648472130298615, -0.06400774419307709, -0.5709524750709534, -0.4131561517715454, 0.12672120332717896, -0.182699516415596, 0.062258049845695496, 1.168569803237915, -0.0055486964993178844, 0.013146694749593735, -0.005332980304956436]} +{"t": 14.5758, "q": [-0.12314116209745407, 0.0030901185236871243, 0.005865650251507759, 0.3171505331993103, -0.1852901577949524, -0.010189914144575596, -0.07564741373062134, -0.03521338105201721, 0.024801790714263916, 0.3387199938297272, -0.2700260281562805, 0.025638733059167862, 0.002624811604619026, 0.07282976061105728, 0.0056349141523242, 0.07045526057481766, 0.07270829379558563, 0.2249918431043625, 0.23659257590770721, -0.06864564120769501, -0.5709884166717529, -0.4131561517715454, 0.1266612708568573, -0.18273547291755676, 0.06227003410458565, 1.1685937643051147, -0.005560680292546749, 0.013134710490703583, -0.005320996046066284]} +{"t": 14.5926, "q": [-0.12314968556165695, 0.0031327293254435062, 0.005852258298546076, 0.31717610359191895, -0.18529435992240906, -0.010182833299040794, -0.07564741373062134, -0.03521338105201721, 0.024801790714263916, 0.33873704075813293, -0.27002179622650146, 0.025631466880440712, 0.002651595277711749, 0.07283724099397659, 0.005639387294650078, 0.07081478834152222, 0.07220495492219925, 0.22482407093048096, 0.23667646944522858, -0.07065898925065994, -0.5709764361381531, -0.4132999777793884, 0.1266373097896576, -0.182699516415596, 0.062258049845695496, 1.168569803237915, -0.0055486964993178844, 0.013146694749593735, -0.005332980304956436]} +{"t": 14.6096, "q": [-0.12315820157527924, 0.0031242067925632, 0.005852258298546076, 0.31716758012771606, -0.18528585135936737, -0.010182795114815235, -0.07568150013685226, -0.03521338105201721, 0.024801790714263916, 0.33873704075813293, -0.27002179622650146, 0.025631466880440712, 0.00254446011967957, 0.07284504920244217, 0.005615099333226681, 0.07106645405292511, 0.07225289195775986, 0.22447651624679565, 0.2367963045835495, -0.07111439108848572, -0.5709764361381531, -0.4135756194591522, 0.12660135328769684, -0.1826755404472351, 0.06227003410458565, 1.1685818433761597, -0.0055486964993178844, 0.013146694749593735, -0.005332980304956436]} +{"t": 14.6263, "q": [-0.12312411516904831, 0.0031327293254435062, 0.005865650251507759, 0.31717610359191895, -0.18528585135936737, -0.010182795114815235, -0.07568150013685226, -0.03519633784890175, 0.02484196610748768, 0.33877113461494446, -0.27002179622650146, 0.025631466880440712, 0.002397149335592985, 0.07287496328353882, 0.00563298724591732, 0.07123423367738724, 0.07255250215530396, 0.22399716079235077, 0.2367483675479889, -0.07107844203710556, -0.5709404945373535, -0.41397109627723694, 0.12660135328769684, -0.18272347748279572, 0.062246065586805344, 1.1685818433761597, -0.005596633069217205, 0.013134710490703583, -0.005344964563846588]} +{"t": 14.6431, "q": [-0.12310706824064255, 0.0031582950614392757, 0.005865650251507759, 0.31716758012771606, -0.18528994917869568, -0.010161514393985271, -0.07569002360105515, -0.035162247717380524, 0.02484196610748768, 0.3387626111507416, -0.2700258791446686, 0.025624291971325874, 0.0022632302716374397, 0.07288265973329544, 0.0056182509288191795, 0.07135407626628876, 0.07316369563341141, 0.2235177904367447, 0.23671241104602814, -0.07089867442846298, -0.5709524750709534, -0.4143545925617218, 0.1266373097896576, -0.1826755404472351, 0.06227003410458565, 1.1685937643051147, -0.005572664551436901, 0.013110741972923279, -0.005332980304956436]} +{"t": 14.6598, "q": [-0.12311559170484543, 0.003226472530514002, 0.005852258298546076, 0.3171590566635132, -0.18529435992240906, -0.010182833299040794, -0.07569002360105515, -0.0351281613111496, 0.02484196610748768, 0.3387626111507416, -0.2700175344944, 0.025624219328165054, 0.0020623519085347652, 0.07287517935037613, 0.005613780580461025, 0.07152185589075089, 0.07384679466485977, 0.2231702357530594, 0.2364487648010254, -0.07032343000173569, -0.5709884166717529, -0.4150257110595703, 0.1266612708568573, -0.18271149694919586, 0.062246065586805344, 1.168569803237915, -0.005572664551436901, 0.013110741972923279, -0.005320996046066284]} +{"t": 14.6768, "q": [-0.12311559170484543, 0.003226472530514002, 0.005865650251507759, 0.31717610359191895, -0.18529416620731354, -0.010154425166547298, -0.07569854706525803, -0.03510259464383125, 0.024828573688864708, 0.3387540876865387, -0.27001768350601196, 0.02563864178955555, 0.0021828790195286274, 0.07289014011621475, 0.005622724536806345, 0.07250456511974335, 0.07460179924964905, 0.22297848761081696, 0.23659257590770721, -0.06968826800584793, -0.5710003972053528, -0.41588857769966125, 0.12669722735881805, -0.18268753588199615, 0.06227003410458565, 1.1685818433761597, -0.0055367122404277325, 0.01312272623181343, -0.005344964563846588]} +{"t": 14.6935, "q": [-0.12312411516904831, 0.0032349941320717335, 0.005825474392622709, 0.31717610359191895, -0.185285747051239, -0.010168595239520073, -0.07569002360105515, -0.03508554771542549, 0.024775007739663124, 0.3387967050075531, -0.2700134515762329, 0.025631394237279892, 0.0024105412885546684, 0.07289782911539078, 0.005607988219708204, 0.07335544377565384, 0.07534482330083847, 0.22297848761081696, 0.23673638701438904, -0.06901714950799942, -0.5709644556045532, -0.4170030951499939, 0.1267331838607788, -0.18271149694919586, 0.06227003410458565, 1.1686416864395142, -0.005560680292546749, 0.01312272623181343, -0.005344964563846588]} +{"t": 14.7102, "q": [-0.12313263863325119, 0.0032435166649520397, 0.00575851509347558, 0.3171590566635132, -0.18528154492378235, -0.010175676085054874, -0.07569854706525803, -0.03502589464187622, 0.024761615321040154, 0.3387455642223358, -0.27003014087677, 0.025631558150053024, 0.0024775005877017975, 0.07288243621587753, 0.0056374575942754745, 0.07425425946712494, 0.07563244551420212, 0.22302642464637756, 0.23690415918827057, -0.0682741329073906, -0.5709884166717529, -0.41856104135513306, 0.1267092078924179, -0.1826755404472351, 0.062258049845695496, 1.1686177253723145, -0.0055486964993178844, 0.01312272623181343, -0.005309011787176132]} +{"t": 14.7272, "q": [-0.12313263863325119, 0.0033031716011464596, 0.00575851509347558, 0.31716758012771606, -0.18528585135936737, -0.010182795114815235, -0.07570706307888031, -0.03500885143876076, 0.024775007739663124, 0.33877965807914734, -0.27002179622650146, 0.025631466880440712, 0.002464108867570758, 0.07289014011621475, 0.005622724536806345, 0.07462576776742935, 0.07606387883424759, 0.22315825521945953, 0.23696409165859222, -0.06743523478507996, -0.5709764361381531, -0.4200950264930725, 0.1266373097896576, -0.18266355991363525, 0.062258049845695496, 1.1685818433761597, -0.0055486964993178844, 0.013134710490703583, -0.005332980304956436]} +{"t": 14.7439, "q": [-0.12313263863325119, 0.0033287382684648037, 0.005745123140513897, 0.3171590566635132, -0.1852901577949524, -0.010189914144575596, -0.07569854706525803, -0.03500032797455788, 0.024761615321040154, 0.3387881815433502, -0.2700258791446686, 0.025624291971325874, 0.002397149335592985, 0.07289014011621475, 0.005622724536806345, 0.07450592517852783, 0.07919175922870636, 0.2235417515039444, 0.23761123418807983, -0.06627276539802551, -0.570688784122467, -0.42167696356773376, 0.12657739222049713, -0.182699516415596, 0.062305986881256104, 1.1685818433761597, -0.005560680292546749, 0.013146694749593735, -0.005320996046066284]} +{"t": 14.7606, "q": [-0.12313263863325119, 0.0033287382684648037, 0.0057719070464372635, 0.31713348627090454, -0.1852901577949524, -0.010189914144575596, -0.07571558654308319, -0.03500032797455788, 0.024828573688864708, 0.33877113461494446, -0.2700216472148895, 0.025617044419050217, 0.0021828790195286274, 0.0729127898812294, 0.005616932176053524, 0.07444600760936737, 0.08306266367435455, 0.22475215792655945, 0.23825837671756744, -0.06507433950901031, -0.5700536370277405, -0.4228154420852661, 0.12650547921657562, -0.18271149694919586, 0.06227003410458565, 1.16855788230896, -0.005572664551436901, 0.013134710490703583, -0.005332980304956436]} +{"t": 14.7774, "q": [-0.12314968556165695, 0.0032776049338281155, 0.005812082905322313, 0.3171079158782959, -0.1852901577949524, -0.010189914144575596, -0.07574967294931412, -0.035051461309194565, 0.02488214150071144, 0.33873704075813293, -0.2700260281562805, 0.025638733059167862, 0.0020623519085347652, 0.0729200541973114, 0.005640611983835697, 0.07444600760936737, 0.08734103292226791, 0.22544725239276886, 0.23822243511676788, -0.06361226737499237, -0.5700416564941406, -0.42375022172927856, 0.12654143571853638, -0.1826755404472351, 0.062258049845695496, 1.1685339212417603, -0.005608617328107357, 0.013110741972923279, -0.005320996046066284]} +{"t": 14.7941, "q": [-0.12319229543209076, 0.003209428396075964, 0.005825474392622709, 0.31695452332496643, -0.18529857695102692, -0.010175752453505993, -0.075758196413517, -0.0351281613111496, 0.02489553391933441, 0.3386603593826294, -0.2700260281562805, 0.025638733059167862, 0.0020623519085347652, 0.07290509343147278, 0.005631668027490377, 0.07450592517852783, 0.09269798547029495, 0.2268374115228653, 0.23847410082817078, -0.06019676476716995, -0.5700057148933411, -0.42485275864601135, 0.12669722735881805, -0.18271149694919586, 0.062305986881256104, 1.168569803237915, -0.005572664551436901, 0.01312272623181343, -0.005320996046066284]} +{"t": 14.8109, "q": [-0.12320081144571304, 0.0031753401271998882, 0.005865650251507759, 0.3168778121471405, -0.18529435992240906, -0.010182833299040794, -0.07579229027032852, -0.03522190451622009, 0.02489553391933441, 0.33860069513320923, -0.27001768350601196, 0.02563864178955555, 0.002089135814458132, 0.07288970053195953, 0.0056611052714288235, 0.07528490573167801, 0.10018812119960785, 0.22964172065258026, 0.24053537845611572, -0.055930379778146744, -0.5696701407432556, -0.42650657892227173, 0.12678112089633942, -0.18266355991363525, 0.062258049845695496, 1.1685818433761597, -0.005632585845887661, 0.013110741972923279, -0.005332980304956436]} +{"t": 14.8276, "q": [-0.12324342876672745, 0.0031242067925632, 0.005972785409539938, 0.31671589612960815, -0.18530277907848358, -0.01016866322606802, -0.07593715935945511, -0.0352645143866539, 0.024962494149804115, 0.33845582604408264, -0.2700260281562805, 0.025638733059167862, 0.002089135814458132, 0.07279094308614731, 0.005737164057791233, 0.07741809636354446, 0.10820557177066803, 0.23314112424850464, 0.2431359589099884, -0.05186772719025612, -0.5692507028579712, -0.429658442735672, 0.12675714492797852, -0.18271149694919586, 0.06227003410458565, 1.1685937643051147, -0.005608617328107357, 0.013134710490703583, -0.005332980304956436]} +{"t": 14.8443, "q": [-0.12332864850759506, 0.0029878527857363224, 0.00613348837941885, 0.3165625035762787, -0.18531140685081482, -0.010182918980717659, -0.07604794949293137, -0.035409390926361084, 0.02505623735487461, 0.3382512927055359, -0.270021915435791, 0.0256459079682827, 0.0019953923765569925, 0.07273001968860626, 0.005797241814434528, 0.0803542286157608, 0.11722969263792038, 0.23553796112537384, 0.2452092319726944, -0.04764927923679352, -0.569118857383728, -0.434548020362854, 0.12669722735881805, -0.182699516415596, 0.06227003410458565, 1.1685818433761597, -0.005572664551436901, 0.01312272623181343, -0.005344964563846588]} +{"t": 14.8611, "q": [-0.12332864850759506, 0.002860021311789751, 0.006254015490412712, 0.31634944677352905, -0.18531981110572815, -0.010168757289648056, -0.0761246457695961, -0.03557131066918373, 0.025096412748098373, 0.3381916284561157, -0.2700258791446686, 0.025624291971325874, 0.0018882573349401355, 0.07272958010435104, 0.005835583433508873, 0.08297877758741379, 0.12527111172676086, 0.23580162227153778, 0.24711471796035767, -0.04538426175713539, -0.5691068768501282, -0.4383949339389801, 0.12654143571853638, -0.1826515793800354, 0.06227003410458565, 1.168569803237915, -0.005596633069217205, 0.013134710490703583, -0.005320996046066284]} +{"t": 14.8778, "q": [-0.12332864850759506, 0.002757756505161524, 0.006481677293777466, 0.31608524918556213, -0.18531981110572815, -0.010168757289648056, -0.07624395936727524, -0.03573323041200638, 0.025136588141322136, 0.33803823590278625, -0.27002614736557007, 0.025653157383203506, 0.0017141626449301839, 0.07272969186306, 0.005825999192893505, 0.08531569689512253, 0.13195830583572388, 0.23572970926761627, 0.2486007660627365, -0.042819637805223465, -0.5692027807235718, -0.4421460032463074, 0.12650547921657562, -0.18268753588199615, 0.062258049845695496, 1.1685218811035156, -0.005584648810327053, 0.01312272623181343, -0.005320996046066284]} +{"t": 14.8946, "q": [-0.12333717197179794, 0.002681057434529066, 0.006615596357733011, 0.31606820225715637, -0.185324028134346, -0.01016167737543583, -0.076261006295681, -0.03580993041396141, 0.025243723765015602, 0.3379615247249603, -0.270021915435791, 0.0256459079682827, 0.0017543383873999119, 0.07271440327167511, 0.0058458102867007256, 0.087269127368927, 0.1377466917037964, 0.2355739176273346, 0.2494276762008667, -0.038661111146211624, -0.5692507028579712, -0.4439795911312103, 0.12654143571853638, -0.182699516415596, 0.0622820183634758, 1.1685458421707153, -0.005596633069217205, 0.01312272623181343, -0.005332980304956436]} +{"t": 14.9114, "q": [-0.12333717197179794, 0.0026640123687684536, 0.006588812451809645, 0.3158722221851349, -0.185324028134346, -0.01016167737543583, -0.07624395936727524, -0.035826973617076874, 0.02520354837179184, 0.3378763198852539, -0.2700260281562805, 0.025638733059167862, 0.0018079059664160013, 0.07269153743982315, 0.005870737135410309, 0.08913866430521011, 0.1425643414258957, 0.2355978786945343, 0.2500268816947937, -0.03560513257980347, -0.5692507028579712, -0.44532182812690735, 0.12656539678573608, -0.182699516415596, 0.062258049845695496, 1.1685218811035156, -0.005572664551436901, 0.013110741972923279, -0.005332980304956436]} +{"t": 14.9281, "q": [-0.12333717197179794, 0.00267253490164876, 0.006602204404771328, 0.31580403447151184, -0.18532812595367432, -0.010140388272702694, -0.07631213217973709, -0.03580993041396141, 0.025163371115922928, 0.33780813217163086, -0.270021915435791, 0.0256459079682827, 0.0018079059664160013, 0.07266877591609955, 0.005886076018214226, 0.09078050404787064, 0.14695057272911072, 0.23551400005817413, 0.2505542039871216, -0.031314779072999954, -0.5691908001899719, -0.4466280937194824, 0.12651745975017548, -0.18268753588199615, 0.062246065586805344, 1.1685458421707153, -0.005560680292546749, 0.013134710490703583, -0.005344964563846588]} +{"t": 14.9448, "q": [-0.12336273491382599, 0.0026895790360867977, 0.006575420964509249, 0.3157443702220917, -0.185324028134346, -0.01016167737543583, -0.0763547495007515, -0.035775840282440186, 0.025136588141322136, 0.3377399444580078, -0.270021915435791, 0.0256459079682827, 0.0018614735454320908, 0.0726761445403099, 0.005900133401155472, 0.09165535122156143, 0.15143266320228577, 0.23546606302261353, 0.25156086683273315, -0.026700854301452637, -0.5691308379173279, -0.44864144921302795, 0.12645754218101501, -0.18268753588199615, 0.06222209706902504, 1.1685458421707153, -0.005596633069217205, 0.013134710490703583, -0.005344964563846588]} +{"t": 14.9618, "q": [-0.12336273491382599, 0.0027321898378431797, 0.0065620290115475655, 0.3157273232936859, -0.18532812595367432, -0.010140388272702694, -0.07638031244277954, -0.035716187208890915, 0.025123195722699165, 0.33772289752960205, -0.2700303792953491, 0.025660404935479164, 0.0018212978029623628, 0.07269890606403351, 0.005884794518351555, 0.09199091047048569, 0.15595072507858276, 0.23531025648117065, 0.2531188130378723, -0.023513050749897957, -0.5691547989845276, -0.4522726833820343, 0.1263856440782547, -0.1826755404472351, 0.0622820183634758, 1.1685458421707153, -0.005572664551436901, 0.013146694749593735, -0.005344964563846588]} +{"t": 14.9785, "q": [-0.12333717197179794, 0.0028344555757939816, 0.006508461199700832, 0.31571879982948303, -0.185324028134346, -0.01016167737543583, -0.07638883590698242, -0.03561392053961754, 0.02505623735487461, 0.3377569913864136, -0.270021915435791, 0.0256459079682827, 0.0018480815924704075, 0.07272133976221085, 0.005898208823055029, 0.09224258363246918, 0.1607084572315216, 0.23486684262752533, 0.25483256578445435, -0.017293237149715424, -0.5693585276603699, -0.4566349387168884, 0.1263616681098938, -0.1826755404472351, 0.062258049845695496, 1.16855788230896, -0.005620601586997509, 0.013134710490703583, -0.005332980304956436]} +{"t": 14.9953, "q": [-0.12330307811498642, 0.0029537645168602467, 0.006454893853515387, 0.3157273232936859, -0.185324028134346, -0.01016167737543583, -0.0763973593711853, -0.035469043999910355, 0.02501606196165085, 0.3377825617790222, -0.2700343728065491, 0.02563880756497383, 0.0018079059664160013, 0.07273650914430618, 0.005887981969863176, 0.09261409193277359, 0.16477110981941223, 0.2340279519557953, 0.2558871805667877, -0.011085408739745617, -0.5693585276603699, -0.4614526033401489, 0.12628977000713348, -0.1826755404472351, 0.062258049845695496, 1.168569803237915, -0.005560680292546749, 0.013146694749593735, -0.005332980304956436]} +{"t": 15.0122, "q": [-0.12330307811498642, 0.0031327293254435062, 0.006454893853515387, 0.31579551100730896, -0.185324028134346, -0.01016167737543583, -0.07643996924161911, -0.03527303412556648, 0.02501606196165085, 0.33780813217163086, -0.27003026008605957, 0.02564598247408867, 0.0017141626449301839, 0.07275168597698212, 0.005877755116671324, 0.09282980859279633, 0.16813868284225464, 0.23327293992042542, 0.25677400827407837, -0.006747118663042784, -0.5691788196563721, -0.46556317806243896, 0.12625381350517273, -0.18271149694919586, 0.06235392391681671, 1.16855788230896, -0.005596633069217205, 0.01312272623181343, -0.005332980304956436]} +{"t": 15.029, "q": [-0.1233116015791893, 0.0032776049338281155, 0.006414717994630337, 0.31580403447151184, -0.18531560897827148, -0.010175838135182858, -0.07647405564785004, -0.0351281613111496, 0.02505623735487461, 0.33785074949264526, -0.27003014087677, 0.025631558150053024, 0.0016204193234443665, 0.07273650914430618, 0.005887981969863176, 0.09291369467973709, 0.17076322436332703, 0.23269769549369812, 0.2574091851711273, -0.00424241553992033, -0.5690829157829285, -0.46866708993911743, 0.12622983753681183, -0.18272347748279572, 0.062317971140146255, 1.1685339212417603, -0.005560680292546749, 0.013134710490703583, -0.005332980304956436]} +{"t": 15.0457, "q": [-0.12330307811498642, 0.003456569742411375, 0.006414717994630337, 0.31583812832832336, -0.18531140685081482, -0.010182918980717659, -0.07650814205408096, -0.034991804510354996, 0.02505623735487461, 0.3379274308681488, -0.27003014087677, 0.025631558150053024, 0.001272230059839785, 0.07275168597698212, 0.005877755116671324, 0.09288972616195679, 0.17387911677360535, 0.23241007328033447, 0.25847578048706055, 0.00028762139845639467, -0.5685915946960449, -0.47275370359420776, 0.12625381350517273, -0.182699516415596, 0.062317971140146255, 1.16855788230896, -0.0055486964993178844, 0.013158679008483887, -0.005332980304956436]} +{"t": 15.0625, "q": [-0.12328603863716125, 0.0035844012163579464, 0.006414717994630337, 0.3159233331680298, -0.18529857695102692, -0.010175752453505993, -0.07650814205408096, -0.034863974899053574, 0.025083020329475403, 0.3379700481891632, -0.2700260281562805, 0.025638733059167862, 0.0008704732172191143, 0.07274399697780609, 0.0058924551121890545, 0.0929616317152977, 0.17687517404556274, 0.23245801031589508, 0.259865939617157, 0.0055247279815375805, -0.5682560205459595, -0.47789496183395386, 0.12628977000713348, -0.182699516415596, 0.062305986881256104, 1.1685339212417603, -0.0055486964993178844, 0.013134710490703583, -0.005309011787176132]} +{"t": 15.0792, "q": [-0.12327751517295837, 0.00363553361967206, 0.006414717994630337, 0.3159233331680298, -0.18531140685081482, -0.010182918980717659, -0.07652518898248672, -0.034821365028619766, 0.025083020329475403, 0.33798709511756897, -0.2700260281562805, 0.025638733059167862, 0.0006428110064007342, 0.07274399697780609, 0.0058924551121890545, 0.09321330487728119, 0.17914019525051117, 0.23243404924869537, 0.2609564960002899, 0.011289140209555626, -0.5681840777397156, -0.4824489653110504, 0.12654143571853638, -0.18273547291755676, 0.062305986881256104, 1.16855788230896, -0.005584648810327053, 0.013110741972923279, -0.005320996046066284]} +{"t": 15.096, "q": [-0.12328603863716125, 0.00363553361967206, 0.0064013260416686535, 0.3159489035606384, -0.1853029876947403, -0.010197089053690434, -0.07651666551828384, -0.03483840823173523, 0.02505623735487461, 0.3379785716533661, -0.2700260281562805, 0.025638733059167862, 0.0006695947959087789, 0.07272892445325851, 0.005893095396459103, 0.09347695857286453, 0.1804584562778473, 0.23229023814201355, 0.26222681999206543, 0.014716628938913345, -0.5683638453483582, -0.48551690578460693, 0.12679310142993927, -0.18272347748279572, 0.0622820183634758, 1.168569803237915, -0.005572664551436901, 0.01312272623181343, -0.005332980304956436]} +{"t": 15.1127, "q": [-0.12332012504339218, 0.0036270120181143284, 0.006414717994630337, 0.3160085678100586, -0.1853071004152298, -0.010175799950957298, -0.07650814205408096, -0.03485545143485069, 0.025109805166721344, 0.3380126655101776, -0.2700260281562805, 0.025638733059167862, 0.000709770480170846, 0.07272903621196747, 0.005883511621505022, 0.09347695857286453, 0.18126140534877777, 0.2323741316795349, 0.2637368440628052, 0.016921725124120712, -0.5686155557632446, -0.48670336604118347, 0.12692493200302124, -0.1826755404472351, 0.0622820183634758, 1.1685937643051147, -0.0055486964993178844, 0.01312272623181343, -0.005320996046066284]} +{"t": 15.1295, "q": [-0.12330307811498642, 0.0035758796148002148, 0.006414717994630337, 0.3160426616668701, -0.18531140685081482, -0.010182918980717659, -0.07649961858987808, -0.03490658476948738, 0.025096412748098373, 0.33800414204597473, -0.2700342535972595, 0.025624383240938187, 0.0007633380591869354, 0.07275168597698212, 0.005877755116671324, 0.0933091789484024, 0.18192054331302643, 0.23268571496009827, 0.2653786838054657, 0.019426429644227028, -0.5687114000320435, -0.48708686232566833, 0.12710469961166382, -0.18272347748279572, 0.062305986881256104, 1.1686177253723145, -0.005596633069217205, 0.01312272623181343, -0.005320996046066284]} +{"t": 15.1463, "q": [-0.12330307811498642, 0.0035077021457254887, 0.006441501900553703, 0.31607672572135925, -0.18531140685081482, -0.010182918980717659, -0.0764911025762558, -0.034923627972602844, 0.025149980559945107, 0.33800414204597473, -0.27003014087677, 0.025631558150053024, 0.0007633380591869354, 0.07272892445325851, 0.005893095396459103, 0.09339306503534317, 0.18188458681106567, 0.23310516774654388, 0.2673201262950897, 0.021343905478715897, -0.5687833428382874, -0.48706287145614624, 0.12710469961166382, -0.1826755404472351, 0.0622820183634758, 1.1686416864395142, -0.005596633069217205, 0.013110741972923279, -0.005320996046066284]} +{"t": 15.1633, "q": [-0.12332012504339218, 0.0034821354784071445, 0.006414717994630337, 0.316093772649765, -0.18530720472335815, -0.010190008208155632, -0.07643996924161911, -0.03498328477144241, 0.025109805166721344, 0.33803823590278625, -0.2700258791446686, 0.025624291971325874, 0.0010579597437754273, 0.07271385937929153, 0.005893738474696875, 0.09342902153730392, 0.18188458681106567, 0.23605328798294067, 0.26918965578079224, 0.0213678739964962, -0.5691788196563721, -0.4864516854286194, 0.12724851071834564, -0.182699516415596, 0.062258049845695496, 1.1685937643051147, -0.005608617328107357, 0.01312272623181343, -0.005309011787176132]} +{"t": 15.1801, "q": [-0.12333717197179794, 0.0034224814735352993, 0.006441501900553703, 0.31612786650657654, -0.18531140685081482, -0.010182918980717659, -0.07643144577741623, -0.035042937844991684, 0.025083020329475403, 0.3380723297595978, -0.2700342535972595, 0.025624383240938187, 0.001232054433785379, 0.07264579087495804, 0.005920587107539177, 0.09333314746618271, 0.18186061084270477, 0.23811456561088562, 0.27163445949554443, 0.021200094372034073, -0.5693945288658142, -0.48554089665412903, 0.12732040882110596, -0.1826755404472351, 0.06227003410458565, 1.1686058044433594, -0.0055486964993178844, 0.013134710490703583, -0.005320996046066284]} +{"t": 15.1968, "q": [-0.12335421144962311, 0.0033798706717789173, 0.00642810994759202, 0.31612786650657654, -0.1853071004152298, -0.010175799950957298, -0.0763973593711853, -0.03509407117962837, 0.025123195722699165, 0.3380211889743805, -0.2700260281562805, 0.025638733059167862, 0.0018079059664160013, 0.07252448797225952, 0.005992814898490906, 0.093536876142025, 0.1796315461397171, 0.2392650544643402, 0.2750379741191864, 0.02088850550353527, -0.5698738694190979, -0.48478588461875916, 0.12747620046138763, -0.1826755404472351, 0.06229400262236595, 1.1686177253723145, -0.005572664551436901, 0.013170663267374039, -0.005320996046066284]} +{"t": 15.2136, "q": [-0.12343091517686844, 0.0032776049338281155, 0.006334366742521524, 0.3161875307559967, -0.18531560897827148, -0.010175838135182858, -0.07638031244277954, -0.03517929092049599, 0.024989277124404907, 0.33808085322380066, -0.270021915435791, 0.0256459079682827, 0.0024507169146090746, 0.07229717820882797, 0.006117463111877441, 0.09430386871099472, 0.17420269548892975, 0.24072712659835815, 0.2779381573200226, 0.019965719431638718, -0.5703052878379822, -0.4840308725833893, 0.1275361180305481, -0.18271149694919586, 0.0622820183634758, 1.168725609779358, -0.005572664551436901, 0.013146694749593735, -0.005320996046066284]} +{"t": 15.2304, "q": [-0.12356726825237274, 0.0032349941320717335, 0.006120096426457167, 0.31634944677352905, -0.18531140685081482, -0.010182918980717659, -0.07638031244277954, -0.035162247717380524, 0.02484196610748768, 0.3380723297595978, -0.27002179622650146, 0.025631466880440712, 0.002986392704769969, 0.0720619484782219, 0.0062759798020124435, 0.09557419270277023, 0.1694929003715515, 0.24176976084709167, 0.27929237484931946, 0.019150791689753532, -0.5704491138458252, -0.4836473762989044, 0.12752413749694824, -0.182699516415596, 0.062258049845695496, 1.1687616109848022, -0.005572664551436901, 0.01318264752626419, -0.005332980304956436]} +{"t": 15.2472, "q": [-0.12364396452903748, 0.0032605607993900776, 0.005986177362501621, 0.3164091110229492, -0.18531560897827148, -0.010175838135182858, -0.07637178897857666, -0.0351281613111496, 0.024748222902417183, 0.33808085322380066, -0.270021915435791, 0.0256459079682827, 0.0032676225528120995, 0.07181978970766068, 0.006382097490131855, 0.09712015837430954, 0.1645314246416092, 0.24239294230937958, 0.27969983220100403, 0.01800030656158924, -0.5705450177192688, -0.48346760869026184, 0.12729644775390625, -0.1826755404472351, 0.062305986881256104, 1.1687376499176025, -0.0055486964993178844, 0.013170663267374039, -0.005332980304956436]} +{"t": 15.264, "q": [-0.12366952747106552, 0.0033031716011464596, 0.005892434157431126, 0.316468745470047, -0.18531560897827148, -0.010175838135182858, -0.07638031244277954, -0.03507702797651291, 0.02468126453459263, 0.33808937668800354, -0.2700299918651581, 0.025617117062211037, 0.003347973804920912, 0.07168397307395935, 0.006407038774341345, 0.09860620647668839, 0.15982162952423096, 0.2425607144832611, 0.2802870571613312, 0.016825852915644646, -0.570533037185669, -0.48331183195114136, 0.1270327866077423, -0.18271149694919586, 0.062317971140146255, 1.1687616109848022, -0.005572664551436901, 0.013170663267374039, -0.005332980304956436]} +{"t": 15.2808, "q": [-0.12365248799324036, 0.0033457824029028416, 0.005892434157431126, 0.31649431586265564, -0.18531140685081482, -0.010182918980717659, -0.07637178897857666, -0.035051461309194565, 0.02469465509057045, 0.33809787034988403, -0.270021915435791, 0.0256459079682827, 0.0031470954418182373, 0.07160918414592743, 0.006362319458276033, 0.10021208971738815, 0.15511183440685272, 0.24250079691410065, 0.2812577784061432, 0.014788533560931683, -0.5705450177192688, -0.48333579301834106, 0.12687699496746063, -0.18263959884643555, 0.062305986881256104, 1.1687136888504028, -0.0055367122404277325, 0.013170663267374039, -0.005320996046066284]} +{"t": 15.2976, "q": [-0.12361840158700943, 0.003388392273336649, 0.005905826110392809, 0.3165113627910614, -0.18531140685081482, -0.010182918980717659, -0.07636326551437378, -0.03500885143876076, 0.02472143992781639, 0.33813196420669556, -0.270021915435791, 0.0256459079682827, 0.0028122980147600174, 0.071624256670475, 0.006361679639667273, 0.10163821280002594, 0.14956313371658325, 0.2424648404121399, 0.2823483347892761, 0.012607404962182045, -0.5705450177192688, -0.48333579301834106, 0.12688897550106049, -0.182699516415596, 0.062317971140146255, 1.168785572052002, -0.005560680292546749, 0.01318264752626419, -0.005320996046066284]} +{"t": 15.3144, "q": [-0.12362691760063171, 0.0034224814735352993, 0.005892434157431126, 0.3165028393268585, -0.18530720472335815, -0.010190008208155632, -0.07638031244277954, -0.03496623784303665, 0.024734830483794212, 0.33813196420669556, -0.27002179622650146, 0.025631466880440712, 0.0027453387156128883, 0.07163943350315094, 0.00635145278647542, 0.10266885906457901, 0.1437627673149109, 0.24252477288246155, 0.2828996181488037, 0.010929613374173641, -0.5706408619880676, -0.4833477735519409, 0.12717659771442413, -0.182699516415596, 0.0622820183634758, 1.1687376499176025, -0.005584648810327053, 0.013158679008483887, -0.005320996046066284]} +{"t": 15.3313, "q": [-0.12360135465860367, 0.003456569742411375, 0.005852258298546076, 0.3165028393268585, -0.18530277907848358, -0.01016866322606802, -0.0763547495007515, -0.03494919463992119, 0.02468126453459263, 0.3381490111351013, -0.27003014087677, 0.025631558150053024, 0.0028256899677217007, 0.07165461033582687, 0.006341225933283567, 0.10296846181154251, 0.13799835741519928, 0.24342358112335205, 0.2831752598285675, 0.009791111573576927, -0.5708685517311096, -0.48321595788002014, 0.12741628289222717, -0.18268753588199615, 0.06227003410458565, 1.1688334941864014, -0.0055486964993178844, 0.013158679008483887, -0.005332980304956436]} +{"t": 15.3481, "q": [-0.12360987812280655, 0.003490658011287451, 0.00575851509347558, 0.3165198862552643, -0.18529857695102692, -0.010175752453505993, -0.0763547495007515, -0.034872494637966156, 0.024587521329522133, 0.3382086753845215, -0.2700342535972595, 0.025624383240938187, 0.002852473873645067, 0.07165461033582687, 0.006341225933283567, 0.10290854424238205, 0.13367204368114471, 0.2440347820520401, 0.28373852372169495, 0.00878443755209446, -0.5710483193397522, -0.4830242097377777, 0.1275361180305481, -0.182699516415596, 0.0622820183634758, 1.1688214540481567, -0.0055486964993178844, 0.013146694749593735, -0.005332980304956436]} +{"t": 15.3648, "q": [-0.12360135465860367, 0.0035758796148002148, 0.005745123140513897, 0.31653693318367004, -0.18529435992240906, -0.010182833299040794, -0.07634622603654861, -0.03479579836130142, 0.024641087278723717, 0.33822572231292725, -0.2700299918651581, 0.025617117062211037, 0.002839081920683384, 0.07164734601974487, 0.006317583378404379, 0.1029205247759819, 0.12978915870189667, 0.24421453475952148, 0.2845534384250641, 0.00771784083917737, -0.5710722804069519, -0.48306015133857727, 0.12754811346530914, -0.18271149694919586, 0.0622820183634758, 1.1688095331192017, -0.005596633069217205, 0.013146694749593735, -0.005320996046066284]} +{"t": 15.3815, "q": [-0.12360987812280655, 0.0035929237492382526, 0.00575851509347558, 0.31652840971946716, -0.1853029876947403, -0.010197089053690434, -0.07637178897857666, -0.03477875143289566, 0.024627696722745895, 0.33821719884872437, -0.2700258791446686, 0.025624291971325874, 0.0027721223887056112, 0.07164712995290756, 0.006336752325296402, 0.10299243032932281, 0.12599016726016998, 0.2443583458662033, 0.2855001986026764, 0.005812349263578653, -0.5710842609405518, -0.4831080734729767, 0.12754811346530914, -0.18274745345115662, 0.062317971140146255, 1.1688334941864014, -0.005560680292546749, 0.013158679008483887, -0.005332980304956436]} +{"t": 15.3982, "q": [-0.12361840158700943, 0.0035929237492382526, 0.005731731187552214, 0.3165625035762787, -0.18530720472335815, -0.010190008208155632, -0.07634622603654861, -0.03477023169398308, 0.024654479697346687, 0.33821719884872437, -0.2700342535972595, 0.025624383240938187, 0.002731946762651205, 0.07163964956998825, 0.006332281976938248, 0.10298044979572296, 0.12150806188583374, 0.24443025887012482, 0.286051481962204, 0.0021092237439006567, -0.5710722804069519, -0.483084112405777, 0.12754811346530914, -0.1826755404472351, 0.062305986881256104, 1.1688334941864014, -0.0055486964993178844, 0.013158679008483887, -0.005320996046066284]} +{"t": 15.415, "q": [-0.12359283119440079, 0.0035844012163579464, 0.005745123140513897, 0.3165965974330902, -0.1853029876947403, -0.010197089053690434, -0.07633770257234573, -0.03477875143289566, 0.024641087278723717, 0.338242769241333, -0.27003014087677, 0.025631558150053024, 0.0027989062946289778, 0.07163986563682556, 0.006313112564384937, 0.10274076461791992, 0.11693008244037628, 0.2456047087907791, 0.2862192392349243, -0.001689775730483234, -0.5710842609405518, -0.48294031620025635, 0.1275361180305481, -0.1826515793800354, 0.06227003410458565, 1.1688454151153564, -0.005608617328107357, 0.013158679008483887, -0.005309011787176132]} +{"t": 15.4318, "q": [-0.12359283119440079, 0.0035588345490396023, 0.005745123140513897, 0.316656231880188, -0.18530720472335815, -0.010190008208155632, -0.07625248283147812, -0.034804318100214005, 0.024641087278723717, 0.33825981616973877, -0.2700258791446686, 0.025624291971325874, 0.0029060414526611567, 0.07159488648176193, 0.006295865401625633, 0.10241718590259552, 0.11358648538589478, 0.24661138653755188, 0.2864709198474884, -0.007370298728346825, -0.5710483193397522, -0.4828803837299347, 0.12745223939418793, -0.1826755404472351, 0.062305986881256104, 1.1688454151153564, -0.0055486964993178844, 0.01318264752626419, -0.005344964563846588]} +{"t": 15.4485, "q": [-0.12361840158700943, 0.0035077021457254887, 0.005745123140513897, 0.3166903257369995, -0.18530720472335815, -0.010190008208155632, -0.07626952230930328, -0.03483840823173523, 0.024654479697346687, 0.3382342457771301, -0.27003014087677, 0.025631558150053024, 0.0028926494996994734, 0.07159499824047089, 0.006286281161010265, 0.10239321738481522, 0.11086606979370117, 0.24806147813796997, 0.2865667939186096, -0.011265171691775322, -0.5710363388061523, -0.4829522967338562, 0.12739230692386627, -0.1826755404472351, 0.062305986881256104, 1.1688334941864014, -0.005572664551436901, 0.013134710490703583, -0.005320996046066284]} +{"t": 15.4653, "q": [-0.12361840158700943, 0.0034821354784071445, 0.005745123140513897, 0.31667327880859375, -0.18531140685081482, -0.010182918980717659, -0.07625248283147812, -0.03490658476948738, 0.024667872115969658, 0.338242769241333, -0.2700175344944, 0.025624219328165054, 0.0028256899677217007, 0.07162501662969589, 0.006294582039117813, 0.1023213118314743, 0.10735469311475754, 0.250002920627594, 0.2865787744522095, -0.015459650196135044, -0.5709524750709534, -0.48303619027137756, 0.12742826342582703, -0.1826755404472351, 0.062305986881256104, 1.1688334941864014, -0.0055486964993178844, 0.013170663267374039, -0.005320996046066284]} +{"t": 15.4821, "q": [-0.12361840158700943, 0.003405436407774687, 0.0057719070464372635, 0.316656231880188, -0.18531140685081482, -0.010182918980717659, -0.076261006295681, -0.03496623784303665, 0.02469465509057045, 0.3382512927055359, -0.2700343728065491, 0.02563880756497383, 0.0028256899677217007, 0.07158751785755157, 0.006281808018684387, 0.10233329981565475, 0.10393918305635452, 0.2516447603702545, 0.286650687456131, -0.020253339782357216, -0.5707966685295105, -0.4830242097377777, 0.12745223939418793, -0.18272347748279572, 0.062317971140146255, 1.1688334941864014, -0.0055486964993178844, 0.013158679008483887, -0.005332980304956436]} +{"t": 15.4988, "q": [-0.12362691760063171, 0.003354304004460573, 0.005785298999398947, 0.3166391849517822, -0.18531140685081482, -0.010182918980717659, -0.07625248283147812, -0.0350344181060791, 0.02470804750919342, 0.33818310499191284, -0.27002179622650146, 0.025631466880440712, 0.00287925754673779, 0.07158751785755157, 0.006281808018684387, 0.10230933129787445, 0.09934923052787781, 0.2537420094013214, 0.2868184745311737, -0.026688870042562485, -0.5704371333122253, -0.48294031620025635, 0.1275121569633484, -0.18271149694919586, 0.06232995539903641, 1.1688334941864014, -0.0055486964993178844, 0.01318264752626419, -0.005320996046066284]} +{"t": 15.5156, "q": [-0.1236354410648346, 0.0032861274667084217, 0.00579869095236063, 0.3166391849517822, -0.18531140685081482, -0.010182918980717659, -0.07624395936727524, -0.03507702797651291, 0.02469465509057045, 0.3381916284561157, -0.27003014087677, 0.025631558150053024, 0.0028926494996994734, 0.07157234102487564, 0.006292033474892378, 0.10205766558647156, 0.09486712515354156, 0.25718146562576294, 0.2870461642742157, -0.03329217806458473, -0.5700416564941406, -0.4825088679790497, 0.12754811346530914, -0.18271149694919586, 0.062317971140146255, 1.1688334941864014, -0.005596633069217205, 0.013170663267374039, -0.005332980304956436]} +{"t": 15.5323, "q": [-0.12364396452903748, 0.0032946490682661533, 0.005825474392622709, 0.31657955050468445, -0.18530277907848358, -0.01016866322606802, -0.07627804577350616, -0.03507702797651291, 0.02472143992781639, 0.3382001519203186, -0.27003014087677, 0.025631558150053024, 0.0028122980147600174, 0.07155716419219971, 0.00630226032808423, 0.10204567760229111, 0.09161940217018127, 0.25985395908355713, 0.28738170862197876, -0.04019509255886078, -0.5694304704666138, -0.48234111070632935, 0.12754811346530914, -0.18268753588199615, 0.0622820183634758, 1.1688454151153564, -0.005572664551436901, 0.013170663267374039, -0.005320996046066284]} +{"t": 15.5491, "q": [-0.1236354410648346, 0.003269083332270384, 0.005825474392622709, 0.31658807396888733, -0.18530277907848358, -0.01016866322606802, -0.076261006295681, -0.03510259464383125, 0.024734830483794212, 0.33818310499191284, -0.27001768350601196, 0.02563864178955555, 0.002758730435743928, 0.07157234102487564, 0.006292033474892378, 0.1020217090845108, 0.08772452920675278, 0.2631855607032776, 0.2872259318828583, -0.04664260521531105, -0.5691788196563721, -0.48231711983680725, 0.12752413749694824, -0.18268753588199615, 0.0622820183634758, 1.1688095331192017, -0.005584648810327053, 0.013158679008483887, -0.005332980304956436]} +{"t": 15.566, "q": [-0.12362691760063171, 0.0032605607993900776, 0.005825474392622709, 0.31658807396888733, -0.18531130254268646, -0.010168719105422497, -0.07624395936727524, -0.03514520451426506, 0.02470804750919342, 0.33817458152770996, -0.27003014087677, 0.025631558150053024, 0.0029060414526611567, 0.07158751785755157, 0.006281808018684387, 0.10161424428224564, 0.08369782567024231, 0.26656511425971985, 0.28775322437286377, -0.052862416952848434, -0.5680403113365173, -0.4819336235523224, 0.12754811346530914, -0.18268753588199615, 0.062305986881256104, 1.1688214540481567, -0.005584648810327053, 0.013170663267374039, -0.005332980304956436]} +{"t": 15.5827, "q": [-0.12362691760063171, 0.0032861274667084217, 0.00579869095236063, 0.3165198862552643, -0.18531140685081482, -0.010182918980717659, -0.07626952230930328, -0.03510259464383125, 0.02468126453459263, 0.3381660580635071, -0.2700260281562805, 0.025638733059167862, 0.002946217078715563, 0.0716024711728096, 0.006290751975029707, 0.1013745591044426, 0.07908390462398529, 0.27068769931793213, 0.28968268632888794, -0.06089184805750847, -0.5666860938072205, -0.4813344180583954, 0.1275121569633484, -0.182699516415596, 0.062305986881256104, 1.1688214540481567, -0.005596633069217205, 0.013158679008483887, -0.005332980304956436]} +{"t": 15.5995, "q": [-0.12364396452903748, 0.0033287382684648037, 0.005812082905322313, 0.3165198862552643, -0.18530720472335815, -0.010190008208155632, -0.07627804577350616, -0.035051461309194565, 0.024667872115969658, 0.3381490111351013, -0.27003014087677, 0.025631558150053024, 0.0029997846577316523, 0.07154969125986099, 0.006297789514064789, 0.10132662206888199, 0.07506918907165527, 0.27490612864494324, 0.29203158617019653, -0.06899318099021912, -0.5656194686889648, -0.48042362928390503, 0.1275121569633484, -0.182699516415596, 0.06234193965792656, 1.1688214540481567, -0.005608617328107357, 0.013170663267374039, -0.005320996046066284]} +{"t": 15.6162, "q": [-0.12364396452903748, 0.0033457824029028416, 0.00579869095236063, 0.3165028393268585, -0.18530720472335815, -0.010190008208155632, -0.07630361616611481, -0.03502589464187622, 0.024654479697346687, 0.33813196420669556, -0.2700175344944, 0.025624219328165054, 0.0029730007518082857, 0.07156464457511902, 0.0063067334704101086, 0.10114686191082001, 0.07246860861778259, 0.2787650525569916, 0.29517146944999695, -0.07633951306343079, -0.5646607279777527, -0.4800281524658203, 0.12747620046138763, -0.18271149694919586, 0.06229400262236595, 1.1688693761825562, -0.005572664551436901, 0.013170663267374039, -0.005320996046066284]} +{"t": 15.633, "q": [-0.1236354410648346, 0.003354304004460573, 0.00579869095236063, 0.3163750171661377, -0.18531140685081482, -0.010182918980717659, -0.07633770257234573, -0.03500885143876076, 0.02468126453459263, 0.33803823590278625, -0.27002179622650146, 0.025631466880440712, 0.0028256899677217007, 0.07157234102487564, 0.006292033474892378, 0.1010749563574791, 0.07026351243257523, 0.2826719284057617, 0.2984311878681183, -0.08331433683633804, -0.5632466077804565, -0.47966861724853516, 0.12745223939418793, -0.18271149694919586, 0.062305986881256104, 1.168857455253601, -0.005584648810327053, 0.013158679008483887, -0.005320996046066284]} +{"t": 15.6497, "q": [-0.12361840158700943, 0.0033287382684648037, 0.005812082905322313, 0.31630682945251465, -0.18531140685081482, -0.010182918980717659, -0.07637178897857666, -0.03502589464187622, 0.02469465509057045, 0.33800414204597473, -0.2700175344944, 0.025624219328165054, 0.0025712440256029367, 0.0716024711728096, 0.006290751975029707, 0.10100305080413818, 0.06784269958734512, 0.28643497824668884, 0.3003007173538208, -0.08873120695352554, -0.5606939792633057, -0.4793809950351715, 0.12741628289222717, -0.182699516415596, 0.0622820183634758, 1.1688214540481567, -0.0055367122404277325, 0.013158679008483887, -0.005332980304956436]} +{"t": 15.6665, "q": [-0.12362691760063171, 0.0033457824029028416, 0.005812082905322313, 0.3162301480770111, -0.18531140685081482, -0.010182918980717659, -0.07638031244277954, -0.03502589464187622, 0.02470804750919342, 0.3379359543323517, -0.2700342535972595, 0.025624383240938187, 0.0025712440256029367, 0.0716024711728096, 0.006290751975029707, 0.10081130266189575, 0.06502640247344971, 0.28998228907585144, 0.301223486661911, -0.09336909651756287, -0.557542085647583, -0.478709876537323, 0.1274881809949875, -0.18273547291755676, 0.062305986881256104, 1.168857455253601, -0.0055486964993178844, 0.013158679008483887, -0.005320996046066284]} +{"t": 15.6832, "q": [-0.1236354410648346, 0.0033798706717789173, 0.00579869095236063, 0.31606820225715637, -0.18531140685081482, -0.010182918980717659, -0.07638031244277954, -0.03502589464187622, 0.024641087278723717, 0.3378763198852539, -0.2700342535972595, 0.025624383240938187, 0.0026783791836351156, 0.07160995155572891, 0.006295225117355585, 0.09998439252376556, 0.06216217577457428, 0.29309821128845215, 0.30220621824264526, -0.09972073882818222, -0.5532996654510498, -0.4773556590080261, 0.1275840550661087, -0.18271149694919586, 0.062305986881256104, 1.1688693761825562, -0.005560680292546749, 0.013146694749593735, -0.005320996046066284]} +{"t": 15.6999, "q": [-0.12364396452903748, 0.003371348138898611, 0.00579869095236063, 0.31603413820266724, -0.18531140685081482, -0.010182918980717659, -0.0763973593711853, -0.03502589464187622, 0.024614304304122925, 0.33785074949264526, -0.27003014087677, 0.025631558150053024, 0.002718554809689522, 0.07159499824047089, 0.006286281161010265, 0.09891779720783234, 0.05887850001454353, 0.2973046600818634, 0.3030690848827362, -0.10555705428123474, -0.5480865836143494, -0.4762171506881714, 0.12757207453250885, -0.18272347748279572, 0.0622820183634758, 1.1688693761825562, -0.005572664551436901, 0.013158679008483887, -0.005320996046066284]} +{"t": 15.7167, "q": [-0.12362691760063171, 0.0033372598700225353, 0.005825474392622709, 0.31593185663223267, -0.18531981110572815, -0.010168757289648056, -0.07642292231321335, -0.03502589464187622, 0.024667872115969658, 0.33776551485061646, -0.2700342535972595, 0.025624383240938187, 0.002531068166717887, 0.07158730179071426, 0.00630097696557641, 0.09737183153629303, 0.05565474182367325, 0.30288931727409363, 0.3042435348033905, -0.1088886708021164, -0.5453421473503113, -0.4751146137714386, 0.12745223939418793, -0.182699516415596, 0.062246065586805344, 1.1688334941864014, -0.005560680292546749, 0.013158679008483887, -0.005320996046066284]} +{"t": 15.7334, "q": [-0.12361840158700943, 0.0033372598700225353, 0.005812082905322313, 0.31583812832832336, -0.18531571328639984, -0.01019003801047802, -0.07645700871944427, -0.03502589464187622, 0.024641087278723717, 0.33773142099380493, -0.27003014087677, 0.025631558150053024, 0.0024507169146090746, 0.07160225510597229, 0.00630992092192173, 0.09521467238664627, 0.05343766137957573, 0.3088095188140869, 0.30612504482269287, -0.11063836514949799, -0.5427296161651611, -0.47434762120246887, 0.12741628289222717, -0.18271149694919586, 0.062305986881256104, 1.1688214540481567, -0.005596633069217205, 0.013158679008483887, -0.005320996046066284]} +{"t": 15.7501, "q": [-0.12362691760063171, 0.0033628265373408794, 0.00579869095236063, 0.3158210813999176, -0.18531140685081482, -0.010182918980717659, -0.07646553218364716, -0.03502589464187622, 0.024600911885499954, 0.3376973569393158, -0.27003014087677, 0.025631558150053024, 0.002611419651657343, 0.07160225510597229, 0.00630992092192173, 0.09323727339506149, 0.052922338247299194, 0.31220105290412903, 0.3076111078262329, -0.11369434744119644, -0.5395058393478394, -0.47365254163742065, 0.12741628289222717, -0.182699516415596, 0.0622820183634758, 1.168797492980957, -0.005632585845887661, 0.013158679008483887, -0.005332980304956436]} +{"t": 15.7669, "q": [-0.12361840158700943, 0.003371348138898611, 0.0057719070464372635, 0.31579551100730896, -0.18531571328639984, -0.01019003801047802, -0.07650814205408096, -0.03502589464187622, 0.02454734407365322, 0.3376462161540985, -0.2700384855270386, 0.025631632655858994, 0.002651595277711749, 0.07162469625473022, 0.006323338020592928, 0.09199091047048569, 0.05319797620177269, 0.3141784369945526, 0.3087136447429657, -0.11790081113576889, -0.5348080396652222, -0.4728375971317291, 0.12741628289222717, -0.18271149694919586, 0.0622820183634758, 1.1688214540481567, -0.005608617328107357, 0.013170663267374039, -0.005332980304956436]} +{"t": 15.7837, "q": [-0.1235843077301979, 0.003371348138898611, 0.00579869095236063, 0.3158125579357147, -0.18531140685081482, -0.010182918980717659, -0.07664449512958527, -0.0350344181060791, 0.024627696722745895, 0.33757802844047546, -0.2700384855270386, 0.025631632655858994, 0.0025176764465868473, 0.07165493071079254, 0.006312469951808453, 0.0908883661031723, 0.05330583453178406, 0.31806135177612305, 0.3091930150985718, -0.11931494623422623, -0.5280129909515381, -0.4718908667564392, 0.1273323893547058, -0.18268753588199615, 0.0622820183634758, 1.1688334941864014, -0.005608617328107357, 0.013170663267374039, -0.005332980304956436]} +{"t": 15.8004, "q": [-0.12359283119440079, 0.003388392273336649, 0.005812082905322313, 0.3157358467578888, -0.18529868125915527, -0.010189970023930073, -0.07670415192842484, -0.03500885143876076, 0.024654479697346687, 0.3373905420303345, -0.2700469493865967, 0.02564612776041031, 0.0021828790195286274, 0.07170794159173965, 0.006286262534558773, 0.08984573930501938, 0.05361742526292801, 0.3222198784351349, 0.3099839687347412, -0.12020178139209747, -0.5229196548461914, -0.4711478352546692, 0.1272604912519455, -0.18268753588199615, 0.06229400262236595, 1.1688095331192017, -0.005620601586997509, 0.013170663267374039, -0.005320996046066284]} +{"t": 15.8172, "q": [-0.12359283119440079, 0.003396914806216955, 0.005852258298546076, 0.3157869875431061, -0.18532001972198486, -0.01019715704023838, -0.07678085565567017, -0.03500032797455788, 0.024641087278723717, 0.33729681372642517, -0.2700510621070862, 0.02563895285129547, 0.0019552167505025864, 0.07173818349838257, 0.0062753926031291485, 0.08905477821826935, 0.05434846132993698, 0.32622259855270386, 0.3118055760860443, -0.12022574990987778, -0.5198517441749573, -0.4709680676460266, 0.12716461718082428, -0.18271149694919586, 0.062317971140146255, 1.168797492980957, -0.005572664551436901, 0.013146694749593735, -0.005320996046066284]} +{"t": 15.834, "q": [-0.12359283119440079, 0.0034224814735352993, 0.005865650251507759, 0.3157784640789032, -0.18531140685081482, -0.010182918980717659, -0.07691720873117447, -0.03497476130723953, 0.024587521329522133, 0.33722010254859924, -0.2700510621070862, 0.02563895285129547, 0.0018614735454320908, 0.07171519845724106, 0.0063099036924541, 0.08915065228939056, 0.0553671196103096, 0.32959017157554626, 0.31384289264678955, -0.1194707378745079, -0.5180660486221313, -0.471423476934433, 0.12708072364330292, -0.182699516415596, 0.0622820183634758, 1.1687616109848022, -0.005560680292546749, 0.013146694749593735, -0.005320996046066284]} +{"t": 15.8508, "q": [-0.1235843077301979, 0.003456569742411375, 0.005879042204469442, 0.31576141715049744, -0.18532001972198486, -0.01019715704023838, -0.07702799141407013, -0.03494919463992119, 0.024667872115969658, 0.3371093273162842, -0.27005529403686523, 0.025646202266216278, 0.0017141626449301839, 0.07173015177249908, 0.006318847648799419, 0.08949819207191467, 0.061047643423080444, 0.3300335705280304, 0.3155806064605713, -0.11701397597789764, -0.5168077349662781, -0.47362855076789856, 0.12697286903858185, -0.18271149694919586, 0.062317971140146255, 1.1687136888504028, -0.005608617328107357, 0.01312272623181343, -0.005320996046066284]} +{"t": 15.8676, "q": [-0.12353317439556122, 0.003473613876849413, 0.006106704473495483, 0.31575289368629456, -0.18531140685081482, -0.010182918980717659, -0.07715582847595215, -0.03497476130723953, 0.024801790714263916, 0.3369218409061432, -0.27004683017730713, 0.025631705299019814, 0.0010579597437754273, 0.07180538028478622, 0.006325225345790386, 0.08976184576749802, 0.06662030518054962, 0.32986581325531006, 0.3162517249584198, -0.11484482884407043, -0.5146026611328125, -0.4770560562610626, 0.12687699496746063, -0.18268753588199615, 0.06229400262236595, 1.1686896085739136, -0.005596633069217205, 0.013098758645355701, -0.005320996046066284]} +{"t": 15.8844, "q": [-0.12349056452512741, 0.003448047209531069, 0.006320974789559841, 0.31571027636528015, -0.18531571328639984, -0.01019003801047802, -0.07721547782421112, -0.03502589464187622, 0.024962494149804115, 0.33675992488861084, -0.2700510621070862, 0.02563895285129547, 0.00044193255598656833, 0.07194020599126816, 0.006386549212038517, 0.09030113369226456, 0.07203717529773712, 0.3297579288482666, 0.31663522124290466, -0.11277155578136444, -0.5116305351257324, -0.4810108542442322, 0.12687699496746063, -0.18273547291755676, 0.062258049845695496, 1.1686656475067139, -0.005608617328107357, 0.013110741972923279, -0.005332980304956436]} +{"t": 15.9014, "q": [-0.12349056452512741, 0.003371348138898611, 0.006374542135745287, 0.3157273232936859, -0.18531140685081482, -0.010182918980717659, -0.07725808769464493, -0.03507702797651291, 0.024975884705781937, 0.3367428779602051, -0.2700510621070862, 0.02563895285129547, 0.0002946217136923224, 0.07208967208862305, 0.006485574413090944, 0.09185908734798431, 0.07832889258861542, 0.3296740651130676, 0.3177257776260376, -0.10856509953737259, -0.5089580416679382, -0.4847739040851593, 0.1269848495721817, -0.18273547291755676, 0.06227003410458565, 1.1686537265777588, -0.005572664551436901, 0.013134710490703583, -0.005332980304956436]} +{"t": 15.9181, "q": [-0.12352465838193893, 0.0033628265373408794, 0.00638793408870697, 0.3157443702220917, -0.18531571328639984, -0.01019003801047802, -0.07730922102928162, -0.03513668105006218, 0.024935709312558174, 0.33666616678237915, -0.2700428366661072, 0.025653302669525146, 0.0003883649769704789, 0.07217160612344742, 0.006563521455973387, 0.09323727339506149, 0.08477640897035599, 0.3284396827220917, 0.3187923729419708, -0.10278870165348053, -0.5062615871429443, -0.4887406826019287, 0.12710469961166382, -0.18268753588199615, 0.06229400262236595, 1.1687136888504028, -0.0055367122404277325, 0.013134710490703583, -0.005309011787176132]} +{"t": 15.9349, "q": [-0.12356726825237274, 0.0032776049338281155, 0.006414717994630337, 0.315676212310791, -0.18531571328639984, -0.01019003801047802, -0.0773603543639183, -0.03518781438469887, 0.024962494149804115, 0.3365383446216583, -0.2700427174568176, 0.02563888020813465, 0.00033479739795438945, 0.07220856100320816, 0.006624220870435238, 0.09459149092435837, 0.09034907072782516, 0.3257072865962982, 0.3196432590484619, -0.09593372046947479, -0.5040565133094788, -0.49335458874702454, 0.12704476714134216, -0.18271149694919586, 0.0622820183634758, 1.1687136888504028, -0.005560680292546749, 0.013134710490703583, -0.005320996046066284]} +{"t": 15.9519, "q": [-0.12357578426599503, 0.0032605607993900776, 0.006508461199700832, 0.31566768884658813, -0.18531140685081482, -0.010182918980717659, -0.07734331488609314, -0.03521338105201721, 0.02505623735487461, 0.3364531099796295, -0.2700427174568176, 0.02563888020813465, 0.00018748654110822827, 0.07218590378761292, 0.006629977375268936, 0.09577792882919312, 0.09677261859178543, 0.32156074047088623, 0.3210214376449585, -0.08801215142011642, -0.5022828578948975, -0.500748872756958, 0.12687699496746063, -0.182699516415596, 0.06227003410458565, 1.168725609779358, -0.005560680292546749, 0.013134710490703583, -0.005320996046066284]} +{"t": 15.9686, "q": [-0.12357578426599503, 0.0032605607993900776, 0.006548637058585882, 0.3156847357749939, -0.1853199154138565, -0.010182957164943218, -0.07728365808725357, -0.03522190451622009, 0.02505623735487461, 0.33648720383644104, -0.2700386047363281, 0.02564605511724949, -0.00022766222537029535, 0.07220108062028885, 0.006619750522077084, 0.09652095288038254, 0.10281267017126083, 0.3177018165588379, 0.32227978110313416, -0.08269115537405014, -0.5009526014328003, -0.5075319409370422, 0.12660135328769684, -0.18273547291755676, 0.062305986881256104, 1.1687016487121582, -0.0055486964993178844, 0.013146694749593735, -0.005332980304956436]} +{"t": 15.9853, "q": [-0.12355874478816986, 0.0032435166649520397, 0.006602204404771328, 0.31566768884658813, -0.18531571328639984, -0.01019003801047802, -0.07726661115884781, -0.03522190451622009, 0.025123195722699165, 0.3365894854068756, -0.2700384855270386, 0.025631632655858994, -0.0006026353221386671, 0.07220856100320816, 0.006624220870435238, 0.09692841023206711, 0.10914033651351929, 0.314262330532074, 0.32370591163635254, -0.07708253711462021, -0.5007608532905579, -0.5137637257575989, 0.12644556164741516, -0.182699516415596, 0.06232995539903641, 1.1686656475067139, -0.0055486964993178844, 0.013158679008483887, -0.005309011787176132]} +{"t": 16.0021, "q": [-0.12359283119440079, 0.003252039197832346, 0.0066289883106946945, 0.31547167897224426, -0.18532413244247437, -0.010175876319408417, -0.07725808769464493, -0.03524747118353844, 0.025149980559945107, 0.33656391501426697, -0.2700384855270386, 0.025631632655858994, -0.0007499461644329131, 0.07220108062028885, 0.006619750522077084, 0.09764746576547623, 0.1161271408200264, 0.3081863224506378, 0.3242571949958801, -0.07190535217523575, -0.5008566975593567, -0.5226081013679504, 0.12651745975017548, -0.18271149694919586, 0.06229400262236595, 1.1687136888504028, -0.005572664551436901, 0.013158679008483887, -0.005285043269395828]} +{"t": 16.0188, "q": [-0.12357578426599503, 0.003252039197832346, 0.006695947609841824, 0.3154546320438385, -0.18532423675060272, -0.010190076194703579, -0.07725808769464493, -0.035238947719335556, 0.02523033134639263, 0.33667469024658203, -0.2700386047363281, 0.02564605511724949, -0.0011249192757532, 0.07220108062028885, 0.006619750522077084, 0.0986781120300293, 0.12232298403978348, 0.3027934432029724, 0.32426917552948, -0.065601646900177, -0.5009046792984009, -0.5308172702789307, 0.12651745975017548, -0.182699516415596, 0.06234193965792656, 1.1687136888504028, -0.0055486964993178844, 0.013146694749593735, -0.005332980304956436]} +{"t": 16.0356, "q": [-0.12355022132396698, 0.003226472530514002, 0.006896826438605785, 0.31542906165122986, -0.18532413244247437, -0.010175876319408417, -0.07723252475261688, -0.0352645143866539, 0.02539103478193283, 0.3367769718170166, -0.27002614736557007, 0.025653157383203506, -0.001673986902460456, 0.07223901897668839, 0.006594183389097452, 0.09955295920372009, 0.12770390510559082, 0.29759228229522705, 0.3242931365966797, -0.06040049344301224, -0.5009406208992004, -0.538187563419342, 0.12651745975017548, -0.18271149694919586, 0.06232995539903641, 1.168725609779358, -0.005572664551436901, 0.013146694749593735, -0.00529702752828598]} +{"t": 16.0525, "q": [-0.12355874478816986, 0.0032435166649520397, 0.006923609878867865, 0.31534382700920105, -0.18533684313297272, -0.010168825276196003, -0.0771813914179802, -0.0352645143866539, 0.025404425337910652, 0.3369559347629547, -0.27002614736557007, 0.025653157383203506, -0.0024507169146090746, 0.07223924249410629, 0.00657501257956028, 0.10010423511266708, 0.1321021169424057, 0.2929304242134094, 0.32432907819747925, -0.05584648996591568, -0.5010724663734436, -0.5468641519546509, 0.12649349868297577, -0.1826755404472351, 0.06232995539903641, 1.1686537265777588, -0.005596633069217205, 0.013134710490703583, -0.005309011787176132]} +{"t": 16.0692, "q": [-0.1235843077301979, 0.0032435166649520397, 0.006910218391567469, 0.3153267800807953, -0.18533684313297272, -0.010168825276196003, -0.07707060128450394, -0.0352645143866539, 0.02535085938870907, 0.33708375692367554, -0.2700344920158386, 0.025653230026364326, -0.003173879347741604, 0.07223924249410629, 0.00657501257956028, 0.1005236804485321, 0.13693176209926605, 0.28713005781173706, 0.3243650496006012, -0.052395034581422806, -0.5013720393180847, -0.5539228916168213, 0.12648151814937592, -0.18266355991363525, 0.06232995539903641, 1.1686896085739136, -0.005596633069217205, 0.013146694749593735, -0.005309011787176132]} +{"t": 16.086, "q": [-0.12359283119440079, 0.003226472530514002, 0.006896826438605785, 0.31543758511543274, -0.18532833456993103, -0.010168795473873615, -0.07705356180667877, -0.03524747118353844, 0.02536424994468689, 0.33729681372642517, -0.27001768350601196, 0.02563864178955555, -0.004325582180172205, 0.07222416996955872, 0.006575652863830328, 0.10102701932191849, 0.14122210443019867, 0.28224048018455505, 0.3240654468536377, -0.04888365417718887, -0.5018993616104126, -0.5620721578598022, 0.1263856440782547, -0.1826755404472351, 0.06236590817570686, 1.1686537265777588, -0.0055486964993178844, 0.01312272623181343, -0.005309011787176132]} +{"t": 16.1029, "q": [-0.1236354410648346, 0.003226472530514002, 0.006896826438605785, 0.31556540727615356, -0.18532413244247437, -0.010175876319408417, -0.07695981860160828, -0.03527303412556648, 0.02535085938870907, 0.33736497163772583, -0.27003014087677, 0.025631558150053024, -0.006146880332380533, 0.07223176211118698, 0.006570539437234402, 0.10157829523086548, 0.14457769691944122, 0.27822577953338623, 0.32395756244659424, -0.047445546835660934, -0.5023427605628967, -0.5698858499526978, 0.12609802186489105, -0.18268753588199615, 0.062317971140146255, 1.1685937643051147, -0.005560680292546749, 0.013134710490703583, -0.00529702752828598]} +{"t": 16.1196, "q": [-0.12360987812280655, 0.003192384261637926, 0.006883434485644102, 0.31575289368629456, -0.18531981110572815, -0.010168757289648056, -0.07690016180276871, -0.03530712425708771, 0.02539103478193283, 0.3375695049762726, -0.2700258791446686, 0.025624291971325874, -0.007914610207080841, 0.07226991653442383, 0.006525801494717598, 0.10200972855091095, 0.14645922183990479, 0.27585288882255554, 0.3240654468536377, -0.04724181443452835, -0.5027142763137817, -0.5746915340423584, 0.12588229775428772, -0.18268753588199615, 0.062305986881256104, 1.1685818433761597, -0.005572664551436901, 0.013098758645355701, -0.005309011787176132]} +{"t": 16.1363, "q": [-0.12359283119440079, 0.00318386172875762, 0.006896826438605785, 0.3160170912742615, -0.18532833456993103, -0.010168795473873615, -0.07682346552610397, -0.03530712425708771, 0.025457993149757385, 0.33776551485061646, -0.27003014087677, 0.025631558150053024, -0.009829651564359665, 0.07225485891103745, 0.006526444107294083, 0.10250107944011688, 0.14695057272911072, 0.2744627296924591, 0.32432907819747925, -0.047457531094551086, -0.5031337141990662, -0.5785504579544067, 0.1257864236831665, -0.18263959884643555, 0.062305986881256104, 1.168569803237915, -0.005596633069217205, 0.013110741972923279, -0.005309011787176132]} +{"t": 16.1533, "q": [-0.12359283119440079, 0.0032009058631956577, 0.006883434485644102, 0.3161960542201996, -0.18531560897827148, -0.010175838135182858, -0.07678085565567017, -0.03528155758976936, 0.025457993149757385, 0.3378763198852539, -0.27000921964645386, 0.025624144822359085, -0.011798259802162647, 0.07220987230539322, 0.006509196944534779, 0.10308830440044403, 0.14644722640514374, 0.273611843585968, 0.3243890106678009, -0.04796086996793747, -0.5033974051475525, -0.5818221569061279, 0.1260380893945694, -0.18251974880695343, 0.06234193965792656, 1.1685937643051147, -0.005560680292546749, 0.01312272623181343, -0.00529702752828598]} +{"t": 16.1701, "q": [-0.12360987812280655, 0.003209428396075964, 0.006843258626759052, 0.3164091110229492, -0.18531140685081482, -0.010182918980717659, -0.07672972232103348, -0.03525599092245102, 0.025431210175156593, 0.33798709511756897, -0.2700006067752838, 0.025595225393772125, -0.01412845030426979, 0.07219480723142624, 0.006509839557111263, 0.10330402106046677, 0.14575214684009552, 0.2731684446334839, 0.3243650496006012, -0.04850015789270401, -0.5036011338233948, -0.5848901271820068, 0.12645754218101501, -0.18247181177139282, 0.062305986881256104, 1.1685937643051147, -0.005596633069217205, 0.01312272623181343, -0.005309011787176132]} +{"t": 16.1869, "q": [-0.12360135465860367, 0.00318386172875762, 0.0068566505797207355, 0.3166988492012024, -0.18531140685081482, -0.010182918980717659, -0.07671267539262772, -0.03527303412556648, 0.02551156096160412, 0.3381575345993042, -0.26997533440589905, 0.025566142052412033, -0.015681909397244453, 0.07220250368118286, 0.0064951395615935326, 0.1032441034913063, 0.14551246166229248, 0.27306056022644043, 0.3241613209247589, -0.049195244908332825, -0.5038408041000366, -0.5874906778335571, 0.1270088255405426, -0.1825796663761139, 0.062305986881256104, 1.1686416864395142, -0.005584648810327053, 0.01312272623181343, -0.00529702752828598]} +{"t": 16.2037, "q": [-0.12357578426599503, 0.00318386172875762, 0.006829866673797369, 0.3168778121471405, -0.18531140685081482, -0.010182918980717659, -0.07664449512958527, -0.035290081053972244, 0.02552495338022709, 0.33837059140205383, -0.26996248960494995, 0.025529973208904266, -0.016378289088606834, 0.0721951350569725, 0.0064810821786522865, 0.10311227291822433, 0.14267219603061676, 0.27380359172821045, 0.3241613209247589, -0.05080113187432289, -0.5042003393173218, -0.5887370705604553, 0.12736834585666656, -0.1825796663761139, 0.0622820183634758, 1.1686537265777588, -0.005572664551436901, 0.013134710490703583, -0.005309011787176132]} +{"t": 16.2206, "q": [-0.12353317439556122, 0.003209428396075964, 0.00676290737465024, 0.3171505331993103, -0.18530277907848358, -0.01016866322606802, -0.0765848457813263, -0.03522190451622009, 0.025471385568380356, 0.338617742061615, -0.2699582576751709, 0.02552272565662861, -0.016512207686901093, 0.0721951350569725, 0.0064810821786522865, 0.10301639884710312, 0.13947241008281708, 0.2757330536842346, 0.32423320412635803, -0.05315003916621208, -0.5044519901275635, -0.5889647603034973, 0.12745223939418793, -0.18254372477531433, 0.06227003410458565, 1.1686656475067139, -0.005584648810327053, 0.01312272623181343, -0.005320996046066284]} +{"t": 16.2373, "q": [-0.1235416978597641, 0.0032605607993900776, 0.0066289883106946945, 0.31732097268104553, -0.18530720472335815, -0.010190008208155632, -0.07655927538871765, -0.03513668105006218, 0.02537764236330986, 0.33872851729393005, -0.26995840668678284, 0.025537148118019104, -0.016405072063207626, 0.07217280566692352, 0.006458081305027008, 0.10299243032932281, 0.13705159723758698, 0.27777037024497986, 0.3242571949958801, -0.055630773305892944, -0.5045958161354065, -0.589072585105896, 0.1275121569633484, -0.18250776827335358, 0.062305986881256104, 1.1686896085739136, -0.0055486964993178844, 0.01312272623181343, -0.005320996046066284]} +{"t": 16.2541, "q": [-0.12355874478816986, 0.0032861274667084217, 0.006441501900553703, 0.3173806369304657, -0.1852942556142807, -0.010168633423745632, -0.07654223591089249, -0.035119637846946716, 0.025310682132840157, 0.3387967050075531, -0.26994144916534424, 0.025508137419819832, -0.016204193234443665, 0.07216522097587585, 0.006463194731622934, 0.10300441831350327, 0.13460682332515717, 0.28039491176605225, 0.3242571949958801, -0.058459050953388214, -0.5047875642776489, -0.5888089537620544, 0.1276080310344696, -0.18249578773975372, 0.06227003410458565, 1.1686896085739136, -0.0055486964993178844, 0.013110741972923279, -0.005320996046066284]} +{"t": 16.271, "q": [-0.1235416978597641, 0.003354304004460573, 0.006320974789559841, 0.3174402713775635, -0.1852944791316986, -0.010197050869464874, -0.07652518898248672, -0.035042937844991684, 0.02520354837179184, 0.3388989567756653, -0.2699413299560547, 0.025493714958429337, -0.016003314405679703, 0.07216522097587585, 0.006463194731622934, 0.10298044979572296, 0.13279719650745392, 0.2830314338207245, 0.3241852819919586, -0.06073605269193649, -0.5049193501472473, -0.5884494185447693, 0.12766794860363007, -0.1825796663761139, 0.062246065586805344, 1.1687495708465576, -0.005584648810327053, 0.01312272623181343, -0.005320996046066284]} +{"t": 16.2877, "q": [-0.12350761145353317, 0.0033798706717789173, 0.006200447678565979, 0.3175084590911865, -0.18528175354003906, -0.01020408421754837, -0.07646553218364716, -0.034991804510354996, 0.025123195722699165, 0.3389841914176941, -0.2699328660964966, 0.025479217991232872, -0.015842612832784653, 0.07220294326543808, 0.006456797942519188, 0.10274076461791992, 0.1309036910533905, 0.2866267263889313, 0.32395756244659424, -0.06268948316574097, -0.5052070021629333, -0.5881138443946838, 0.12766794860363007, -0.18256768584251404, 0.062258049845695496, 1.1687376499176025, -0.005608617328107357, 0.01312272623181343, -0.005332980304956436]} +{"t": 16.3044, "q": [-0.12350761145353317, 0.003448047209531069, 0.00613348837941885, 0.31749141216278076, -0.18527312576770782, -0.010189846158027649, -0.07645700871944427, -0.034932151436805725, 0.02505623735487461, 0.3389756679534912, -0.26993271708488464, 0.025464795529842377, -0.015748869627714157, 0.07221086323261261, 0.006422929931432009, 0.10238123685121536, 0.12893827259540558, 0.2904376983642578, 0.3237658143043518, -0.06623681634664536, -0.5055065751075745, -0.5875266194343567, 0.12776382267475128, -0.1825796663761139, 0.06229400262236595, 1.1687495708465576, -0.005572664551436901, 0.013134710490703583, -0.005320996046066284]} +{"t": 16.3213, "q": [-0.12351613491773605, 0.0034650913439691067, 0.006026353221386671, 0.317474365234375, -0.18528595566749573, -0.010196994058787823, -0.07643996924161911, -0.0348980613052845, 0.02501606196165085, 0.3389245271682739, -0.2699287533760071, 0.02548639290034771, -0.015574774704873562, 0.07222604006528854, 0.006412703078240156, 0.10198576003313065, 0.12729644775390625, 0.2934097945690155, 0.3234902024269104, -0.0688973143696785, -0.5057822465896606, -0.5869154334068298, 0.12776382267475128, -0.1825796663761139, 0.0622820183634758, 1.168797492980957, -0.005560680292546749, 0.01312272623181343, -0.00529702752828598]} +{"t": 16.338, "q": [-0.12355874478816986, 0.003499180544167757, 0.005932609550654888, 0.3174232244491577, -0.1852901577949524, -0.010189914144575596, -0.07645700871944427, -0.034863974899053574, 0.024922318756580353, 0.33890748023986816, -0.2699328660964966, 0.025479217991232872, -0.015467639081180096, 0.07224120944738388, 0.006402476225048304, 0.101698137819767, 0.12577444314956665, 0.2970769703388214, 0.32333439588546753, -0.0704193040728569, -0.5059620141983032, -0.5863761305809021, 0.12778779864311218, -0.18259166181087494, 0.06227003410458565, 1.1688334941864014, -0.005560680292546749, 0.013146694749593735, -0.005320996046066284]} +{"t": 16.3548, "q": [-0.12355022132396698, 0.0035247462801635265, 0.005932609550654888, 0.3173721134662628, -0.18528175354003906, -0.01020408421754837, -0.07646553218364716, -0.03483840823173523, 0.024935709312558174, 0.3388478457927704, -0.2699369490146637, 0.025472043082118034, -0.015467639081180096, 0.07222592830657959, 0.006422287318855524, 0.10159027576446533, 0.12374910712242126, 0.30218222737312317, 0.3232864737510681, -0.07177352160215378, -0.5062016844749451, -0.58616042137146, 0.12782374024391174, -0.1825796663761139, 0.062317971140146255, 1.1688095331192017, -0.005596633069217205, 0.013146694749593735, -0.005309011787176132]} +{"t": 16.3716, "q": [-0.1235416978597641, 0.0035247462801635265, 0.005932609550654888, 0.31727835536003113, -0.18527323007583618, -0.010204045102000237, -0.07646553218364716, -0.03483840823173523, 0.024908926337957382, 0.338805228471756, -0.2699369490146637, 0.025472043082118034, -0.015507815405726433, 0.07223351299762726, 0.006417173892259598, 0.10144646465778351, 0.1218675896525383, 0.30699989199638367, 0.32317858934402466, -0.0740145742893219, -0.5065372586250305, -0.5861005187034607, 0.12784771621227264, -0.1825796663761139, 0.0622820183634758, 1.168857455253601, -0.005584648810327053, 0.013170663267374039, -0.005309011787176132]} +{"t": 16.3883, "q": [-0.1235416978597641, 0.003516224678605795, 0.005932609550654888, 0.3171931505203247, -0.18528595566749573, -0.010196994058787823, -0.07646553218364716, -0.03483840823173523, 0.024935709312558174, 0.33872851729393005, -0.26993298530578613, 0.025493642315268517, -0.0155345993116498, 0.07223351299762726, 0.006417173892259598, 0.10126670449972153, 0.12010590732097626, 0.3108348548412323, 0.32315462827682495, -0.07681888341903687, -0.5067889094352722, -0.5860525965690613, 0.12789565324783325, -0.18261562287807465, 0.062317971140146255, 1.1688454151153564, -0.005572664551436901, 0.013170663267374039, -0.005309011787176132]} +{"t": 16.4051, "q": [-0.12357578426599503, 0.003499180544167757, 0.005946001503616571, 0.31704825162887573, -0.1852901577949524, -0.010189914144575596, -0.07647405564785004, -0.03488101810216904, 0.02489553391933441, 0.3386603593826294, -0.2699410617351532, 0.025464868173003197, -0.0154542475938797, 0.07222592830657959, 0.006422287318855524, 0.10106296837329865, 0.11905129253864288, 0.3131358325481415, 0.3230707347393036, -0.07878429442644119, -0.5069207549095154, -0.5859926342964172, 0.12801548838615417, -0.18256768584251404, 0.06232995539903641, 1.168857455253601, -0.005584648810327053, 0.01318264752626419, -0.005309011787176132]} +{"t": 16.4218, "q": [-0.12357578426599503, 0.0034821354784071445, 0.005932609550654888, 0.31693747639656067, -0.18529435992240906, -0.010182833299040794, -0.0764911025762558, -0.0348980613052845, 0.02489553391933441, 0.33859217166900635, -0.26993709802627563, 0.02548646740615368, -0.0154542475938797, 0.07223329693078995, 0.006436344236135483, 0.10031995177268982, 0.1182723194360733, 0.31501734256744385, 0.32303479313850403, -0.07997073233127594, -0.5069207549095154, -0.5859686732292175, 0.128159299492836, -0.18259166181087494, 0.062305986881256104, 1.1688693761825562, -0.005584648810327053, 0.013194631785154343, -0.005309011787176132]} +{"t": 16.4385, "q": [-0.1235843077301979, 0.003456569742411375, 0.005959393456578255, 0.31680113077163696, -0.18529435992240906, -0.010182833299040794, -0.07650814205408096, -0.034932151436805725, 0.024962494149804115, 0.3384813666343689, -0.26994118094444275, 0.02547929249703884, -0.015695301815867424, 0.07221833616495132, 0.00642740074545145, 0.09945708513259888, 0.11736151576042175, 0.3175220489501953, 0.3229748606681824, -0.08131296932697296, -0.5069327354431152, -0.5860166549682617, 0.12826716899871826, -0.18259166181087494, 0.062317971140146255, 1.1688814163208008, -0.005608617328107357, 0.013206616044044495, -0.005309011787176132]} +{"t": 16.4554, "q": [-0.12357578426599503, 0.0034650913439691067, 0.005986177362501621, 0.31662216782569885, -0.18529857695102692, -0.010175752453505993, -0.07652518898248672, -0.034932151436805725, 0.024989277124404907, 0.33837059140205383, -0.26994118094444275, 0.02547929249703884, -0.01615062542259693, 0.07222570478916168, 0.006441457662731409, 0.09855826944112778, 0.11669040471315384, 0.31988292932510376, 0.32299885153770447, -0.08265519887208939, -0.5070525407791138, -0.5860885381698608, 0.12863866984844208, -0.1826036423444748, 0.062317971140146255, 1.1688933372497559, -0.005596633069217205, 0.013206616044044495, -0.00529702752828598]} +{"t": 16.4721, "q": [-0.12356726825237274, 0.003448047209531069, 0.006012961268424988, 0.31644317507743835, -0.18529857695102692, -0.010175752453505993, -0.07655075192451477, -0.034923627972602844, 0.025002669543027878, 0.33826833963394165, -0.2699454426765442, 0.0254865400493145, -0.01645863987505436, 0.07222570478916168, 0.006441457662731409, 0.0974796861410141, 0.11657056212425232, 0.32170453667640686, 0.32299885153770447, -0.08315853774547577, -0.5072683095932007, -0.5862683057785034, 0.12923789024353027, -0.1825796663761139, 0.06232995539903641, 1.1689174175262451, -0.005572664551436901, 0.013194631785154343, -0.005285043269395828]} +{"t": 16.4889, "q": [-0.1235843077301979, 0.003448047209531069, 0.006012961268424988, 0.31625568866729736, -0.1853029876947403, -0.010197089053690434, -0.0765848457813263, -0.034932151436805725, 0.024989277124404907, 0.3381916284561157, -0.2699454426765442, 0.0254865400493145, -0.016538990661501884, 0.07221812009811401, 0.006446571089327335, 0.09581387788057327, 0.11661849915981293, 0.3230467736721039, 0.3229628801345825, -0.08320647478103638, -0.5074240565299988, -0.586591899394989, 0.12958543002605438, -0.1825796663761139, 0.0622820183634758, 1.1688814163208008, -0.0055486964993178844, 0.013194631785154343, -0.00529702752828598]} +{"t": 16.5057, "q": [-0.12357578426599503, 0.003456569742411375, 0.005986177362501621, 0.3161875307559967, -0.1853029876947403, -0.010197089053690434, -0.07660188525915146, -0.034923627972602844, 0.024922318756580353, 0.33813196420669556, -0.26994529366493225, 0.025472117587924004, -0.01648542284965515, 0.07219535112380981, 0.006461911369115114, 0.09368068724870682, 0.11666643619537354, 0.32419726252555847, 0.3233703374862671, -0.08315853774547577, -0.5074480772018433, -0.587047278881073, 0.13001686334609985, -0.18256768584251404, 0.06234193965792656, 1.1689293384552002, -0.0055486964993178844, 0.01318264752626419, -0.005285043269395828]} +{"t": 16.5226, "q": [-0.12359283119440079, 0.0034821354784071445, 0.0059995693154633045, 0.31612786650657654, -0.1853029876947403, -0.010197089053690434, -0.0767211988568306, -0.03488101810216904, 0.024935709312558174, 0.3381063938140869, -0.2699454426765442, 0.0254865400493145, -0.01661934331059456, 0.07218766212463379, 0.006476611830294132, 0.0926380604505539, 0.11652262508869171, 0.3257671892642975, 0.32372987270355225, -0.08300274610519409, -0.5073162317276001, -0.5874667167663574, 0.13008876144886017, -0.18259166181087494, 0.062305986881256104, 1.1689293384552002, -0.005572664551436901, 0.013170663267374039, -0.00529702752828598]} diff --git a/Data/G1/think_2.jsonl b/Data/G1/think_2.jsonl new file mode 100644 index 0000000..7bd1c22 --- /dev/null +++ b/Data/G1/think_2.jsonl @@ -0,0 +1,1047 @@ +{"meta": {"hz": 60.0, "motors": 29}} +{"t": 0.0, "q": [-0.1383531242609024, 0.0054933554492890835, 0.0070173535495996475, 0.3157784640789032, -0.18534588813781738, -0.010239887982606888, -0.09091051667928696, -0.03326181694865227, 0.02587314322590828, 0.3360099792480469, -0.2689521312713623, 0.025434523820877075, 0.001312405802309513, 0.005108367186039686, 0.006480129901319742, 0.2491041123867035, 0.2769314646720886, -0.07669904083013535, 0.826216459274292, -0.007538077887147665, 0.00035952674807049334, -0.006531402934342623, 0.24499352276325226, -0.28860411047935486, 0.0773342028260231, 0.7956327199935913, -0.004889564123004675, 0.011109377257525921, 0.0011864382540807128]} +{"t": 0.0167, "q": [-0.13801224529743195, 0.005501877050846815, 0.00705752894282341, 0.31588923931121826, -0.18530383706092834, -0.010310720652341843, -0.09050145745277405, -0.03315955027937889, 0.025806182995438576, 0.3363593816757202, -0.2689149081707001, 0.025470269843935966, 0.002089135814458132, 0.00615346385166049, 0.007040838245302439, 0.24838505685329437, 0.27445074915885925, -0.07666309177875519, 0.8275946378707886, -0.008041415363550186, 0.0003475425182841718, -0.006711166352033615, 0.2446819245815277, -0.28715401887893677, 0.07704658061265945, 0.797370433807373, -0.005093295592814684, 0.011504855938255787, 0.0012223910307511687]} +{"t": 0.0334, "q": [-0.1375264823436737, 0.005501877050846815, 0.007044136989861727, 0.3161790072917938, -0.18529962003231049, -0.01031780056655407, -0.09021170437335968, -0.03291241079568863, 0.025832965970039368, 0.33711785078048706, -0.2689315974712372, 0.025470416992902756, 0.002611419651657343, 0.007366181816905737, 0.007779632695019245, 0.24722258746623993, 0.27280890941619873, -0.07667507231235504, 0.828900933265686, -0.008317052386701107, 0.0003834952076431364, -0.00678307143971324, 0.24414263665676117, -0.2854522466659546, 0.0770106315612793, 0.7991440892219543, -0.005165201146155596, 0.011780492961406708, 0.0011025486746802926]} +{"t": 0.0502, "q": [-0.137577623128891, 0.005467788781970739, 0.006896826438605785, 0.31612786650657654, -0.18529531359672546, -0.010310681536793709, -0.0898793414235115, -0.03316807374358177, 0.025591911748051643, 0.3367684483528137, -0.2689274847507477, 0.025477591902017593, 0.0026783791836351156, 0.007963655516505241, 0.008227674290537834, 0.24662336707115173, 0.2698967456817627, -0.07719039171934128, 0.829584002494812, -0.008412926457822323, 0.0003954794374294579, -0.0068549769930541515, 0.24393890798091888, -0.2823723256587982, 0.07704658061265945, 0.8009417057037354, -0.005225121974945068, 0.011888351291418076, 0.0012223910307511687]} +{"t": 0.0669, "q": [-0.13726229965686798, 0.005578576121479273, 0.006508461199700832, 0.31634944677352905, -0.18524432182312012, -0.010324651375412941, -0.08941914886236191, -0.03315103054046631, 0.025243723765015602, 0.33712637424468994, -0.2689109146595001, 0.025491885840892792, 0.0027855143416672945, 0.008374481461942196, 0.008893654681742191, 0.24628780782222748, 0.26656511425971985, -0.07802928984165192, 0.8302791118621826, -0.008460862562060356, 0.00035952674807049334, -0.006926882080733776, 0.24393890798091888, -0.27892085909843445, 0.07737015932798386, 0.8020682334899902, -0.005225121974945068, 0.011984225362539291, 0.001282312092371285]} +{"t": 0.0836, "q": [-0.1369810700416565, 0.005612664390355349, 0.006079920567572117, 0.31663069128990173, -0.18525704741477966, -0.010317600332200527, -0.08908678591251373, -0.03304876387119293, 0.024801790714263916, 0.3371348977088928, -0.2689065635204315, 0.025470197200775146, 0.002865865593776107, 0.008561772294342518, 0.009622115641832352, 0.24622789025306702, 0.2628859579563141, -0.0788561999797821, 0.8311899304389954, -0.008460862562060356, 0.00037151097785681486, -0.006914897821843624, 0.24407073855400085, -0.27557724714279175, 0.0779334157705307, 0.8031827807426453, -0.00529702752828598, 0.01209208369255066, 0.0014141385909169912]} +{"t": 0.1004, "q": [-0.1368362009525299, 0.005476311314851046, 0.005972785409539938, 0.31662216782569885, -0.185265451669693, -0.010303439572453499, -0.08895043283700943, -0.033176593482494354, 0.024761615321040154, 0.33684512972831726, -0.26891079545021057, 0.025477444753050804, 0.002986392704769969, 0.008674204349517822, 0.00984711479395628, 0.24649155139923096, 0.2595303952693939, -0.08019843697547913, 0.8317771553993225, -0.008472846820950508, 0.00037151097785681486, -0.006926882080733776, 0.24425049126148224, -0.27250930666923523, 0.07828095555305481, 0.8043212890625, -0.005332980304956436, 0.012163988314568996, 0.0014021543320268393]} +{"t": 0.1172, "q": [-0.1368362009525299, 0.005518921185284853, 0.005986177362501621, 0.3167073726654053, -0.18526965379714966, -0.010296358726918697, -0.08886521309614182, -0.033193640410900116, 0.024761615321040154, 0.3367939889431, -0.2689065635204315, 0.025470197200775146, 0.003173879347741604, 0.008852318860590458, 0.01007190439850092, 0.24674321711063385, 0.25593510270118713, -0.08174440264701843, 0.8325681090354919, -0.008460862562060356, 0.0003954794374294579, -0.006938866339623928, 0.2443583458662033, -0.26998063921928406, 0.07866445183753967, 0.8055676221847534, -0.00535694882273674, 0.012235893867909908, 0.0014261228498071432]} +{"t": 0.1339, "q": [-0.136887326836586, 0.005518921185284853, 0.005932609550654888, 0.3167840838432312, -0.18526965379714966, -0.010296358726918697, -0.08885668963193893, -0.033193640410900116, 0.02470804750919342, 0.33685365319252014, -0.26891079545021057, 0.025477444753050804, 0.0031872710678726435, 0.00902310200035572, 0.010320748202502728, 0.24693496525287628, 0.2528192102909088, -0.08301472663879395, 0.8333351016044617, -0.00848483107984066, 0.0003834952076431364, -0.006938866339623928, 0.24440628290176392, -0.2677275836467743, 0.07886818796396255, 0.8066701889038086, -0.005332980304956436, 0.012259862385690212, 0.0014381069922819734]} +{"t": 0.1509, "q": [-0.13682767748832703, 0.005561531987041235, 0.005825474392622709, 0.3169204294681549, -0.18527387082576752, -0.010289269499480724, -0.08879703283309937, -0.03315955027937889, 0.024587521329522133, 0.33698999881744385, -0.26891079545021057, 0.025477444753050804, 0.003240838646888733, 0.009179806336760521, 0.01066572405397892, 0.24706678092479706, 0.25043436884880066, -0.08353005349636078, 0.8341500163078308, -0.008496815338730812, 0.0003954794374294579, -0.006974819116294384, 0.24440628290176392, -0.2660258412361145, 0.0791078731417656, 0.8078086972236633, -0.005368933081626892, 0.012331767939031124, 0.0014381069922819734]} +{"t": 0.1676, "q": [-0.13686175644397736, 0.005621186923235655, 0.005678163841366768, 0.31704825162887573, -0.185265451669693, -0.010303439572453499, -0.08872033655643463, -0.03315955027937889, 0.024574128910899162, 0.33698999881744385, -0.2689065635204315, 0.025470197200775146, 0.0031604873947799206, 0.00920593086630106, 0.010958520695567131, 0.24713869392871857, 0.24924792349338531, -0.08386560529470444, 0.8348091244697571, -0.008472846820950508, 0.0003954794374294579, -0.006986803375184536, 0.24440628290176392, -0.2647794783115387, 0.07927565276622772, 0.8083360195159912, -0.00535694882273674, 0.012355736456811428, 0.0014740596525371075]} +{"t": 0.1843, "q": [-0.13685323297977448, 0.005663797724992037, 0.005530852824449539, 0.3171590566635132, -0.18525704741477966, -0.010317600332200527, -0.08866067975759506, -0.03315103054046631, 0.024480385705828667, 0.337049663066864, -0.2689191401004791, 0.025477517396211624, 0.0031604873947799206, 0.009205516427755356, 0.011188636533915997, 0.24711471796035767, 0.2486007660627365, -0.08396147936582565, 0.8353963494300842, -0.008532768115401268, 0.0003954794374294579, -0.007022756151854992, 0.24434636533260345, -0.2639525532722473, 0.07933557033538818, 0.8085397481918335, -0.005320996046066284, 0.012355736456811428, 0.0014740596525371075]} +{"t": 0.2012, "q": [-0.13686175644397736, 0.005757540930062532, 0.00542371766641736, 0.3172527849674225, -0.18526124954223633, -0.010310519486665726, -0.08858398348093033, -0.03309137374162674, 0.024400033056735992, 0.3370581865310669, -0.268910676240921, 0.02546302229166031, 0.003173879347741604, 0.00924290344119072, 0.011413986794650555, 0.24709075689315796, 0.24856480956077576, -0.0839734673500061, 0.8356480598449707, -0.008520783856511116, 0.0004074636672157794, -0.006998787634074688, 0.2443343847990036, -0.2635331153869629, 0.07932358980178833, 0.8088393211364746, -0.005392901133745909, 0.012403673492372036, 0.0014620755100622773]} +{"t": 0.218, "q": [-0.13685323297977448, 0.00577458506450057, 0.005356758367270231, 0.31730392575263977, -0.185265451669693, -0.010303439572453499, -0.08856693655252457, -0.03309989720582962, 0.0243732500821352, 0.33707523345947266, -0.268910676240921, 0.02546302229166031, 0.0031872710678726435, 0.009250384755432606, 0.011457137763500214, 0.24704281985759735, 0.24863672256469727, -0.08388957381248474, 0.8358278274536133, -0.008520783856511116, 0.0003954794374294579, -0.00701077189296484, 0.2443823218345642, -0.26349717378616333, 0.07929962128400803, 0.8089472055435181, -0.005380917340517044, 0.012403673492372036, 0.0014620755100622773]} +{"t": 0.2347, "q": [-0.13685323297977448, 0.005791629198938608, 0.005343366414308548, 0.31735506653785706, -0.18526124954223633, -0.010310519486665726, -0.08853285014629364, -0.03309137374162674, 0.02435985766351223, 0.33711785078048706, -0.2689190208911896, 0.02546309493482113, 0.0032676225528120995, 0.009325841441750526, 0.011523840017616749, 0.24699488282203674, 0.24872061610221863, -0.08388957381248474, 0.8360315561294556, -0.00854475237429142, 0.0004074636672157794, -0.006998787634074688, 0.24432240426540375, -0.26349717378616333, 0.07921572774648666, 0.8090190887451172, -0.005392901133745909, 0.012415657751262188, 0.0014141385909169912]} +{"t": 0.2515, "q": [-0.13681915402412415, 0.005783106666058302, 0.005303190555423498, 0.3173891305923462, -0.18525704741477966, -0.010317600332200527, -0.08849024027585983, -0.03309137374162674, 0.024333074688911438, 0.3371093273162842, -0.268910676240921, 0.02546302229166031, 0.0032006630208343267, 0.00939383078366518, 0.011537803336977959, 0.2469829022884369, 0.24869664013385773, -0.08388957381248474, 0.8361034393310547, -0.008556736633181572, 0.0003954794374294579, -0.00701077189296484, 0.2443104088306427, -0.2635091543197632, 0.0791797786951065, 0.8091030120849609, -0.005416869651526213, 0.012403673492372036, 0.0014021543320268393]} +{"t": 0.2682, "q": [-0.13680210709571838, 0.005766062531620264, 0.005329974461346865, 0.3174232244491577, -0.18526124954223633, -0.010310519486665726, -0.0884561538696289, -0.033116940408945084, 0.02435985766351223, 0.3371093273162842, -0.2689065635204315, 0.025470197200775146, 0.003240838646888733, 0.009408894926309586, 0.011566505767405033, 0.24688702821731567, 0.24866068363189697, -0.08388957381248474, 0.8361513614654541, -0.008580705150961876, 0.0003954794374294579, -0.00701077189296484, 0.244286447763443, -0.2634851634502411, 0.07919175922870636, 0.8090909719467163, -0.005428853910416365, 0.01245160959661007, 0.0014021543320268393]} +{"t": 0.285, "q": [-0.1367935836315155, 0.005757540930062532, 0.005329974461346865, 0.31740617752075195, -0.18526124954223633, -0.010310519486665726, -0.08843058347702026, -0.03313398361206055, 0.024333074688911438, 0.33708375692367554, -0.268910676240921, 0.02546302229166031, 0.003254230599850416, 0.009439061395823956, 0.011604689061641693, 0.24686305224895477, 0.24866068363189697, -0.08388957381248474, 0.8361753225326538, -0.008580705150961876, 0.0003954794374294579, -0.007022756151854992, 0.24429842829704285, -0.2634612023830414, 0.07925168424844742, 0.8091389536857605, -0.005416869651526213, 0.01245160959661007, 0.0014381069922819734]} +{"t": 0.302, "q": [-0.13680210709571838, 0.005723452661186457, 0.005316582508385181, 0.3173976540565491, -0.18526124954223633, -0.010310519486665726, -0.08842206001281738, -0.03315103054046631, 0.02435985766351223, 0.3371348977088928, -0.2689065635204315, 0.025470197200775146, 0.0032676225528120995, 0.00946924276649952, 0.011633278802037239, 0.2468031346797943, 0.24867267906665802, -0.08388957381248474, 0.8361753225326538, -0.00854475237429142, 0.0003954794374294579, -0.007022756151854992, 0.2443104088306427, -0.2634612023830414, 0.07922771573066711, 0.8091748952865601, -0.005392901133745909, 0.01242764201015234, 0.0014141385909169912]} +{"t": 0.3187, "q": [-0.13680210709571838, 0.0056723193265497684, 0.005303190555423498, 0.31741470098495483, -0.1852569431066513, -0.010303400456905365, -0.08842206001281738, -0.03315103054046631, 0.0243732500821352, 0.3370922803878784, -0.268910676240921, 0.02546302229166031, 0.00321405497379601, 0.009461638517677784, 0.011666872538626194, 0.24679115414619446, 0.24870862066745758, -0.08384163677692413, 0.8361873030662537, -0.008532768115401268, 0.0004074636672157794, -0.007034740410745144, 0.244286447763443, -0.26347318291664124, 0.07921572774648666, 0.8092108368873596, -0.005368933081626892, 0.012463593855500221, 0.0014141385909169912]} +{"t": 0.3354, "q": [-0.1367935836315155, 0.005663797724992037, 0.005343366414308548, 0.3174232244491577, -0.185265451669693, -0.010303439572453499, -0.08842206001281738, -0.03316807374358177, 0.0243732500821352, 0.33707523345947266, -0.268910676240921, 0.02546302229166031, 0.0032006630208343267, 0.009461596608161926, 0.01169563177973032, 0.24674321711063385, 0.24870862066745758, -0.08385362476110458, 0.836223304271698, -0.008556736633181572, 0.0003954794374294579, -0.00701077189296484, 0.244286447763443, -0.2634612023830414, 0.07921572774648666, 0.8092347979545593, -0.00535694882273674, 0.012487562373280525, 0.0014261228498071432]} +{"t": 0.3522, "q": [-0.13680210709571838, 0.005646753590553999, 0.005343366414308548, 0.31741470098495483, -0.185265451669693, -0.010303439572453499, -0.08842206001281738, -0.033176593482494354, 0.02435985766351223, 0.33707523345947266, -0.2689191401004791, 0.025477517396211624, 0.0032274469267576933, 0.009469034150242805, 0.011777072213590145, 0.24674321711063385, 0.24867267906665802, -0.08390156179666519, 0.8362352848052979, -0.008556736633181572, 0.0004074636672157794, -0.007046724669635296, 0.24432240426540375, -0.2634612023830414, 0.07922771573066711, 0.8092467784881592, -0.005380917340517044, 0.012487562373280525, 0.0014381069922819734]} +{"t": 0.3689, "q": [-0.13681063055992126, 0.0056297085247933865, 0.005343366414308548, 0.3173891305923462, -0.18526114523410797, -0.010296320542693138, -0.0884135365486145, -0.033185116946697235, 0.024333074688911438, 0.33703261613845825, -0.268910676240921, 0.02546302229166031, 0.003240838646888733, 0.009438685141503811, 0.011863517574965954, 0.246731236577034, 0.24866068363189697, -0.08387759327888489, 0.8362472653388977, -0.00854475237429142, 0.0004074636672157794, -0.007022756151854992, 0.244286447763443, -0.2634612023830414, 0.07922771573066711, 0.809258759021759, -0.005392901133745909, 0.012499546632170677, 0.0014620755100622773]} +{"t": 0.3856, "q": [-0.13681063055992126, 0.005638231057673693, 0.005343366414308548, 0.3173806369304657, -0.18526114523410797, -0.010296320542693138, -0.08840502053499222, -0.033176593482494354, 0.024333074688911438, 0.33704113960266113, -0.2689065635204315, 0.025470197200775146, 0.0032274469267576933, 0.009476290084421635, 0.011983134783804417, 0.2466832995414734, 0.24867267906665802, -0.08386560529470444, 0.836223304271698, -0.00854475237429142, 0.0003954794374294579, -0.007022756151854992, 0.24427446722984314, -0.2634612023830414, 0.07922771573066711, 0.8093307018280029, -0.005392901133745909, 0.012499546632170677, 0.0014141385909169912]} +{"t": 0.4024, "q": [-0.13681063055992126, 0.005621186923235655, 0.005356758367270231, 0.3173721134662628, -0.18526965379714966, -0.010296358726918697, -0.08840502053499222, -0.03316807374358177, 0.02434646710753441, 0.337049663066864, -0.2689149081707001, 0.025470269843935966, 0.0032274469267576933, 0.009453393518924713, 0.012141435407102108, 0.24667130410671234, 0.24870862066745758, -0.08385362476110458, 0.8362592458724976, -0.008568720892071724, 0.0004074636672157794, -0.007022756151854992, 0.24427446722984314, -0.2634612023830414, 0.07921572774648666, 0.8093906044960022, -0.005416869651526213, 0.012547483667731285, 0.0014500912511721253]} +{"t": 0.4191, "q": [-0.13682767748832703, 0.005604142788797617, 0.005343366414308548, 0.31735506653785706, -0.1852695643901825, -0.010282150469720364, -0.08839649707078934, -0.03316807374358177, 0.024306289851665497, 0.33704113960266113, -0.268910676240921, 0.02546302229166031, 0.003240838646888733, 0.00948343612253666, 0.012265888042747974, 0.24659940600395203, 0.24870862066745758, -0.08385362476110458, 0.8362712264060974, -0.008568720892071724, 0.0003954794374294579, -0.006998787634074688, 0.24427446722984314, -0.2634612023830414, 0.07921572774648666, 0.8093666434288025, -0.005428853910416365, 0.012523515149950981, 0.0014381069922819734]} +{"t": 0.4359, "q": [-0.13681063055992126, 0.005595620255917311, 0.005329974461346865, 0.3173380196094513, -0.185265451669693, -0.010303439572453499, -0.08839649707078934, -0.033176593482494354, 0.024292899295687675, 0.33704113960266113, -0.2689065635204315, 0.025470197200775146, 0.003240838646888733, 0.009490761905908585, 0.012424018234014511, 0.24661138653755188, 0.24869664013385773, -0.08388957381248474, 0.8362592458724976, -0.008568720892071724, 0.0003834952076431364, -0.007022756151854992, 0.24427446722984314, -0.2634612023830414, 0.07922771573066711, 0.8093906044960022, -0.005416869651526213, 0.012523515149950981, 0.0014261228498071432]} +{"t": 0.4528, "q": [-0.13682767748832703, 0.005638231057673693, 0.005316582508385181, 0.3173294961452484, -0.18526965379714966, -0.010296358726918697, -0.08839649707078934, -0.03315955027937889, 0.024252723902463913, 0.3370070457458496, -0.268910676240921, 0.02546302229166031, 0.0032274469267576933, 0.00943006481975317, 0.012596909888088703, 0.24657543003559113, 0.24866068363189697, -0.08388957381248474, 0.836307168006897, -0.008568720892071724, 0.0003954794374294579, -0.007022756151854992, 0.2442624717950821, -0.2634612023830414, 0.07921572774648666, 0.8093666434288025, -0.005392901133745909, 0.012535499408841133, 0.0014141385909169912]} +{"t": 0.4695, "q": [-0.13681063055992126, 0.005638231057673693, 0.005316582508385181, 0.31732097268104553, -0.18526965379714966, -0.010296358726918697, -0.08837945014238358, -0.033176593482494354, 0.024252723902463913, 0.33698999881744385, -0.2689065635204315, 0.025470197200775146, 0.00321405497379601, 0.009459996595978737, 0.012798052281141281, 0.24658742547035217, 0.24870862066745758, -0.08387759327888489, 0.8362951874732971, -0.008556736633181572, 0.0003834952076431364, -0.007022756151854992, 0.24422653019428253, -0.26344922184944153, 0.07922771573066711, 0.8093666434288025, -0.005416869651526213, 0.012535499408841133, 0.0014141385909169912]} +{"t": 0.4862, "q": [-0.13682767748832703, 0.005655275192111731, 0.005289798602461815, 0.31732097268104553, -0.18526965379714966, -0.010296358726918697, -0.08837945014238358, -0.033176593482494354, 0.024266114458441734, 0.3370070457458496, -0.2689149081707001, 0.025470269843935966, 0.0032810145057737827, 0.009452196769416332, 0.0129658542573452, 0.24657543003559113, 0.24867267906665802, -0.08385362476110458, 0.8363311290740967, -0.008532768115401268, 0.0003954794374294579, -0.007034740410745144, 0.24422653019428253, -0.2634612023830414, 0.07921572774648666, 0.8093666434288025, -0.00535694882273674, 0.012535499408841133, 0.0014021543320268393]} +{"t": 0.503, "q": [-0.1368447244167328, 0.005663797724992037, 0.005303190555423498, 0.31731244921684265, -0.185265451669693, -0.010303439572453499, -0.08838797360658646, -0.03315955027937889, 0.024266114458441734, 0.3369729518890381, -0.2689065635204315, 0.025470197200775146, 0.0032274469267576933, 0.009497296065092087, 0.013128567487001419, 0.24657543003559113, 0.24868465960025787, -0.08380568772554398, 0.8363431096076965, -0.008568720892071724, 0.0004074636672157794, -0.007022756151854992, 0.24421453475952148, -0.2634612023830414, 0.07921572774648666, 0.8093786239624023, -0.005440838169306517, 0.012547483667731285, 0.0013901700731366873]} +{"t": 0.5197, "q": [-0.13682767748832703, 0.005655275192111731, 0.005303190555423498, 0.31732097268104553, -0.185265451669693, -0.010303439572453499, -0.08837945014238358, -0.033176593482494354, 0.024266114458441734, 0.3369559347629547, -0.2689023017883301, 0.025462931022047997, 0.003254230599850416, 0.009497073478996754, 0.013281947933137417, 0.24658742547035217, 0.24867267906665802, -0.08385362476110458, 0.8363670706748962, -0.008556736633181572, 0.0003954794374294579, -0.007022756151854992, 0.24423851072788239, -0.26344922184944153, 0.07920374721288681, 0.8093426823616028, -0.005452822428196669, 0.012559467926621437, 0.0013901700731366873]} +{"t": 0.5365, "q": [-0.13681915402412415, 0.005680841859430075, 0.005289798602461815, 0.3173294961452484, -0.18526124954223633, -0.010310519486665726, -0.08837945014238358, -0.03315955027937889, 0.024252723902463913, 0.3370070457458496, -0.2689147889614105, 0.02545584738254547, 0.00321405497379601, 0.009572436101734638, 0.01341573242098093, 0.24657543003559113, 0.24866068363189697, -0.08386560529470444, 0.8363670706748962, -0.008556736633181572, 0.0004074636672157794, -0.007022756151854992, 0.24422653019428253, -0.2634612023830414, 0.07921572774648666, 0.8093666434288025, -0.005476790945976973, 0.012571452185511589, 0.0014021543320268393]} +{"t": 0.5532, "q": [-0.13682767748832703, 0.0056723193265497684, 0.005276407115161419, 0.31732097268104553, -0.185265451669693, -0.010303439572453499, -0.0883709266781807, -0.03315955027937889, 0.024266114458441734, 0.33702409267425537, -0.268910676240921, 0.02546302229166031, 0.0031872710678726435, 0.009572324343025684, 0.013492421247065067, 0.24659940600395203, 0.24868465960025787, -0.08382965624332428, 0.8363670706748962, -0.008556736633181572, 0.0003954794374294579, -0.007022756151854992, 0.24425049126148224, -0.26347318291664124, 0.07921572774648666, 0.8093786239624023, -0.005452822428196669, 0.012571452185511589, 0.0014021543320268393]} +{"t": 0.5699, "q": [-0.13682767748832703, 0.005680841859430075, 0.005276407115161419, 0.3173294961452484, -0.185265451669693, -0.010303439572453499, -0.0883709266781807, -0.03315103054046631, 0.024306289851665497, 0.33699852228164673, -0.2689023017883301, 0.025462931022047997, 0.0032274469267576933, 0.009594819508492947, 0.013583275489509106, 0.24658742547035217, 0.24869664013385773, -0.08384163677692413, 0.8363910913467407, -0.008580705150961876, 0.0003954794374294579, -0.007046724669635296, 0.24425049126148224, -0.2634612023830414, 0.07921572774648666, 0.8093666434288025, -0.005452822428196669, 0.012607404962182045, 0.0013781859306618571]} +{"t": 0.5867, "q": [-0.1368362009525299, 0.005655275192111731, 0.005289798602461815, 0.31731244921684265, -0.185265451669693, -0.010303439572453499, -0.08837945014238358, -0.03315955027937889, 0.024266114458441734, 0.33699852228164673, -0.2689065635204315, 0.025470197200775146, 0.0032274469267576933, 0.009602293372154236, 0.013626331463456154, 0.24658742547035217, 0.24867267906665802, -0.08381766825914383, 0.8364030718803406, -0.008568720892071724, 0.0003834952076431364, -0.007022756151854992, 0.2442624717950821, -0.2634612023830414, 0.07921572774648666, 0.8093906044960022, -0.005440838169306517, 0.012583436444401741, 0.0013901700731366873]} +{"t": 0.6033, "q": [-0.13682767748832703, 0.005663797724992037, 0.005289798602461815, 0.31731244921684265, -0.185265451669693, -0.010303439572453499, -0.08837945014238358, -0.033193640410900116, 0.024279506877064705, 0.33699852228164673, -0.268910676240921, 0.02546302229166031, 0.003240838646888733, 0.009617296978831291, 0.013683708384633064, 0.24657543003559113, 0.24868465960025787, -0.08384163677692413, 0.8364030718803406, -0.008556736633181572, 0.0003954794374294579, -0.007034740410745144, 0.24425049126148224, -0.2634612023830414, 0.07923969626426697, 0.8093786239624023, -0.005416869651526213, 0.012583436444401741, 0.0014021543320268393]} +{"t": 0.6201, "q": [-0.13681915402412415, 0.005646753590553999, 0.005289798602461815, 0.3173380196094513, -0.18525704741477966, -0.010317600332200527, -0.08836240321397781, -0.03316807374358177, 0.024266114458441734, 0.33699852228164673, -0.2689023017883301, 0.025462931022047997, 0.0032006630208343267, 0.009587010368704796, 0.013722206465899944, 0.24657543003559113, 0.24867267906665802, -0.08384163677692413, 0.8364150524139404, -0.008556736633181572, 0.0003954794374294579, -0.007046724669635296, 0.24422653019428253, -0.26344922184944153, 0.07922771573066711, 0.8093906044960022, -0.005440838169306517, 0.012571452185511589, 0.0013901700731366873]} +{"t": 0.6368, "q": [-0.13682767748832703, 0.005655275192111731, 0.005289798602461815, 0.31731244921684265, -0.18526965379714966, -0.010296358726918697, -0.0883709266781807, -0.033176593482494354, 0.024292899295687675, 0.33698999881744385, -0.2689149081707001, 0.025470269843935966, 0.0032006630208343267, 0.009549195878207684, 0.013746383599936962, 0.24655146896839142, 0.24869664013385773, -0.08381766825914383, 0.83645099401474, -0.008568720892071724, 0.0003954794374294579, -0.007046724669635296, 0.24423851072788239, -0.2634612023830414, 0.07922771573066711, 0.8093546628952026, -0.005440838169306517, 0.012583436444401741, 0.0013901700731366873]} +{"t": 0.6536, "q": [-0.13682767748832703, 0.005646753590553999, 0.005289798602461815, 0.31732097268104553, -0.18526965379714966, -0.010296358726918697, -0.0883709266781807, -0.0332021601498127, 0.024266114458441734, 0.33698999881744385, -0.26891079545021057, 0.025477444753050804, 0.003254230599850416, 0.009564286097884178, 0.01375586912035942, 0.24655146896839142, 0.24870862066745758, -0.08382965624332428, 0.8364749550819397, -0.008568720892071724, 0.0003954794374294579, -0.007022756151854992, 0.24421453475952148, -0.2634612023830414, 0.07922771573066711, 0.8093546628952026, -0.0054887752048671246, 0.012595420703291893, 0.0013901700731366873]} +{"t": 0.6703, "q": [-0.13681063055992126, 0.005646753590553999, 0.005289798602461815, 0.31732097268104553, -0.18526965379714966, -0.010296358726918697, -0.08836240321397781, -0.03315955027937889, 0.024239331483840942, 0.33698999881744385, -0.26891079545021057, 0.025477444753050804, 0.0032274469267576933, 0.009564286097884178, 0.01375586912035942, 0.24651551246643066, 0.24868465960025787, -0.08384163677692413, 0.8364989161491394, -0.008568720892071724, 0.00041944789700210094, -0.007022756151854992, 0.24421453475952148, -0.2634612023830414, 0.07922771573066711, 0.8093666434288025, -0.005452822428196669, 0.012595420703291893, 0.0013781859306618571]} +{"t": 0.687, "q": [-0.13681063055992126, 0.005646753590553999, 0.005276407115161419, 0.31731244921684265, -0.18526975810527802, -0.010310557670891285, -0.0883709266781807, -0.033176593482494354, 0.024266114458441734, 0.33698147535324097, -0.268910676240921, 0.02546302229166031, 0.0032274469267576933, 0.009541545063257217, 0.013799110427498817, 0.24653948843479156, 0.24867267906665802, -0.08382965624332428, 0.8364989161491394, -0.008556736633181572, 0.0003954794374294579, -0.00701077189296484, 0.24420255422592163, -0.2634372413158417, 0.07921572774648666, 0.809402585029602, -0.005416869651526213, 0.012619389221072197, 0.0014381069922819734]} +{"t": 0.7038, "q": [-0.13681063055992126, 0.005646753590553999, 0.005289798602461815, 0.31732097268104553, -0.18526124954223633, -0.010310519486665726, -0.08834536373615265, -0.033176593482494354, 0.024239331483840942, 0.33699852228164673, -0.2689064145088196, 0.02545575611293316, 0.003240838646888733, 0.009579287841916084, 0.013813246041536331, 0.24651551246643066, 0.24867267906665802, -0.08384163677692413, 0.8365228772163391, -0.008580705150961876, 0.0004074636672157794, -0.007022756151854992, 0.24422653019428253, -0.26344922184944153, 0.07920374721288681, 0.8093906044960022, -0.005428853910416365, 0.012631373479962349, 0.0013901700731366873]} +{"t": 0.721, "q": [-0.13681063055992126, 0.005655275192111731, 0.005289798602461815, 0.3173294961452484, -0.185265451669693, -0.010303439572453499, -0.08832831680774689, -0.033176593482494354, 0.024239331483840942, 0.3370155692100525, -0.268910676240921, 0.02546302229166031, 0.00321405497379601, 0.009579198434948921, 0.013861136510968208, 0.24655146896839142, 0.24869664013385773, -0.08384163677692413, 0.8365228772163391, -0.008580705150961876, 0.0003954794374294579, -0.007046724669635296, 0.24423851072788239, -0.2634612023830414, 0.07921572774648666, 0.8093666434288025, -0.005452822428196669, 0.012631373479962349, 0.0014021543320268393]} +{"t": 0.7377, "q": [-0.13682767748832703, 0.0056723193265497684, 0.005289798602461815, 0.3173294961452484, -0.185265451669693, -0.010303439572453499, -0.08832831680774689, -0.03316807374358177, 0.024239331483840942, 0.3370070457458496, -0.268910676240921, 0.02546302229166031, 0.003240838646888733, 0.009594254195690155, 0.013889778405427933, 0.24656344950199127, 0.24868465960025787, -0.08384163677692413, 0.836534857749939, -0.008580705150961876, 0.0003954794374294579, -0.00701077189296484, 0.24417859315872192, -0.26344922184944153, 0.07922771573066711, 0.8093906044960022, -0.005476790945976973, 0.012655341997742653, 0.0014141385909169912]} +{"t": 0.7544, "q": [-0.13678506016731262, 0.005663797724992037, 0.005276407115161419, 0.3173294961452484, -0.185265451669693, -0.010303439572453499, -0.08826866000890732, -0.03316807374358177, 0.024239331483840942, 0.3370581865310669, -0.2688983380794525, 0.025484563782811165, 0.003240838646888733, 0.009571477770805359, 0.01395217515528202, 0.24652749300003052, 0.24867267906665802, -0.08384163677692413, 0.836534857749939, -0.008568720892071724, 0.0003954794374294579, -0.007034740410745144, 0.24421453475952148, -0.26347318291664124, 0.07922771573066711, 0.8093906044960022, -0.005476790945976973, 0.012631373479962349, 0.0014021543320268393]} +{"t": 0.7712, "q": [-0.13676801323890686, 0.005663797724992037, 0.005276407115161419, 0.3173380196094513, -0.185265451669693, -0.010303439572453499, -0.08826866000890732, -0.03315955027937889, 0.024225939065217972, 0.33703261613845825, -0.268910676240921, 0.02546302229166031, 0.0032274469267576933, 0.009594113565981388, 0.013966403901576996, 0.24656344950199127, 0.24868465960025787, -0.08384163677692413, 0.8365588188171387, -0.008592689409852028, 0.0003954794374294579, -0.00701077189296484, 0.24422653019428253, -0.26344922184944153, 0.07922771573066711, 0.8093786239624023, -0.005476790945976973, 0.012631373479962349, 0.0013901700731366873]} +{"t": 0.788, "q": [-0.13675948977470398, 0.005680841859430075, 0.005263015162199736, 0.31736359000205994, -0.185265451669693, -0.010303439572453499, -0.08826014399528503, -0.03315955027937889, 0.024239331483840942, 0.337049663066864, -0.2689065635204315, 0.025470197200775146, 0.00321405497379601, 0.009586567990481853, 0.01396166067570448, 0.24655146896839142, 0.24867267906665802, -0.08385362476110458, 0.8365588188171387, -0.008556736633181572, 0.0003954794374294579, -0.007022756151854992, 0.24422653019428253, -0.2634372413158417, 0.07920374721288681, 0.8093666434288025, -0.005452822428196669, 0.012631373479962349, 0.0013901700731366873]} +{"t": 0.8047, "q": [-0.13671688735485077, 0.005680841859430075, 0.005276407115161419, 0.3173891305923462, -0.18525704741477966, -0.010317600332200527, -0.08826014399528503, -0.033176593482494354, 0.024239331483840942, 0.33708375692367554, -0.2689065635204315, 0.025470197200775146, 0.0032006630208343267, 0.009594113565981388, 0.013966403901576996, 0.24655146896839142, 0.24870862066745758, -0.08384163677692413, 0.8365707993507385, -0.008568720892071724, 0.0003954794374294579, -0.007022756151854992, 0.24423851072788239, -0.2634612023830414, 0.07921572774648666, 0.8093906044960022, -0.005452822428196669, 0.012631373479962349, 0.0014141385909169912]} +{"t": 0.8215, "q": [-0.13669131696224213, 0.0056723193265497684, 0.005263015162199736, 0.31740617752075195, -0.18527387082576752, -0.010289269499480724, -0.08820901066064835, -0.033176593482494354, 0.024239331483840942, 0.3371008038520813, -0.26891079545021057, 0.025477444753050804, 0.00321405497379601, 0.00957889948040247, 0.014023966155946255, 0.24651551246643066, 0.24870862066745758, -0.08386560529470444, 0.8366068005561829, -0.008592689409852028, 0.0004074636672157794, -0.007022756151854992, 0.24423851072788239, -0.2634612023830414, 0.07922771573066711, 0.8093906044960022, -0.005452822428196669, 0.012655341997742653, 0.0013901700731366873]} +{"t": 0.8383, "q": [-0.13667427003383636, 0.005663797724992037, 0.005276407115161419, 0.31740617752075195, -0.185265451669693, -0.010303439572453499, -0.08819196373224258, -0.03315955027937889, 0.024239331483840942, 0.3371008038520813, -0.2689065635204315, 0.025470197200775146, 0.003254230599850416, 0.009541120380163193, 0.014028986915946007, 0.24652749300003052, 0.24870862066745758, -0.08387759327888489, 0.8366187810897827, -0.008556736633181572, 0.0003954794374294579, -0.007022756151854992, 0.24421453475952148, -0.2634612023830414, 0.07922771573066711, 0.809402585029602, -0.005416869651526213, 0.012643357738852501, 0.0014021543320268393]} +{"t": 0.855, "q": [-0.13668279349803925, 0.005663797724992037, 0.005263015162199736, 0.3174232244491577, -0.18525704741477966, -0.010317600332200527, -0.08816640079021454, -0.03315955027937889, 0.024212546646595, 0.3370922803878784, -0.268910676240921, 0.02546302229166031, 0.0032006630208343267, 0.009556245990097523, 0.0140193160623312, 0.2465035319328308, 0.24869664013385773, -0.08385362476110458, 0.8366068005561829, -0.008556736633181572, 0.0003954794374294579, -0.00701077189296484, 0.24422653019428253, -0.26344922184944153, 0.07921572774648666, 0.8093786239624023, -0.005476790945976973, 0.012655341997742653, 0.0014021543320268393]} +{"t": 0.8719, "q": [-0.13666574656963348, 0.005646753590553999, 0.005276407115161419, 0.3173976540565491, -0.18526114523410797, -0.010296320542693138, -0.08816640079021454, -0.03315103054046631, 0.024212546646595, 0.33708375692367554, -0.2689065635204315, 0.025470197200775146, 0.0032006630208343267, 0.00957889948040247, 0.014023966155946255, 0.24651551246643066, 0.24869664013385773, -0.08384163677692413, 0.8366307616233826, -0.008580705150961876, 0.00037151097785681486, -0.007034740410745144, 0.24422653019428253, -0.26344922184944153, 0.07921572774648666, 0.8093786239624023, -0.0055367122404277325, 0.012655341997742653, 0.0014261228498071432]} +{"t": 0.8887, "q": [-0.13666574656963348, 0.005646753590553999, 0.005263015162199736, 0.3173976540565491, -0.18526965379714966, -0.010296358726918697, -0.08814935386180878, -0.03316807374358177, 0.024212546646595, 0.337049663066864, -0.2689065635204315, 0.025470197200775146, 0.0032006630208343267, 0.009556245990097523, 0.0140193160623312, 0.24651551246643066, 0.24868465960025787, -0.08386560529470444, 0.8366427421569824, -0.008556736633181572, 0.0003834952076431364, -0.007022756151854992, 0.24420255422592163, -0.26344922184944153, 0.07922771573066711, 0.809402585029602, -0.0054887752048671246, 0.012655341997742653, 0.0014500912511721253]} +{"t": 0.9054, "q": [-0.1366572380065918, 0.005646753590553999, 0.005263015162199736, 0.3173976540565491, -0.18526124954223633, -0.010310519486665726, -0.08814935386180878, -0.033176593482494354, 0.024239331483840942, 0.337049663066864, -0.26891079545021057, 0.025477444753050804, 0.003240838646888733, 0.009541120380163193, 0.014028986915946007, 0.24651551246643066, 0.24869664013385773, -0.08384163677692413, 0.8366667032241821, -0.008568720892071724, 0.0003834952076431364, -0.007034740410745144, 0.24419057369232178, -0.2634612023830414, 0.07922771573066711, 0.8093906044960022, -0.005476790945976973, 0.012655341997742653, 0.0014500912511721253]} +{"t": 0.9223, "q": [-0.13664871454238892, 0.005646753590553999, 0.005276407115161419, 0.31740617752075195, -0.185265451669693, -0.010303439572453499, -0.0881408303976059, -0.033176593482494354, 0.024225939065217972, 0.337049663066864, -0.2689149081707001, 0.025470269843935966, 0.00321405497379601, 0.009556245990097523, 0.0140193160623312, 0.24652749300003052, 0.24869664013385773, -0.08384163677692413, 0.8367146253585815, -0.008580705150961876, 0.0004074636672157794, -0.007022756151854992, 0.24420255422592163, -0.26344922184944153, 0.07922771573066711, 0.8093906044960022, -0.005452822428196669, 0.012667326256632805, 0.0014261228498071432]} +{"t": 0.9392, "q": [-0.13664871454238892, 0.005655275192111731, 0.005263015162199736, 0.31740617752075195, -0.1852569431066513, -0.010303400456905365, -0.08811526745557785, -0.03316807374358177, 0.024239331483840942, 0.33708375692367554, -0.2689065635204315, 0.025470197200775146, 0.003240838646888733, 0.009556245990097523, 0.0140193160623312, 0.24656344950199127, 0.24869664013385773, -0.08385362476110458, 0.8367146253585815, -0.008568720892071724, 0.0003834952076431364, -0.007022756151854992, 0.24423851072788239, -0.2634612023830414, 0.07921572774648666, 0.809402585029602, -0.005428853910416365, 0.012667326256632805, 0.0013901700731366873]} +{"t": 0.9559, "q": [-0.13662314414978027, 0.0056723193265497684, 0.005249623209238052, 0.31740617752075195, -0.18526124954223633, -0.010310519486665726, -0.08810674399137497, -0.03315103054046631, 0.024225939065217972, 0.337049663066864, -0.268910676240921, 0.02546302229166031, 0.0032676225528120995, 0.009556210599839687, 0.014038472436368465, 0.24653948843479156, 0.24870862066745758, -0.08384163677692413, 0.8367146253585815, -0.008568720892071724, 0.00041944789700210094, -0.007022756151854992, 0.24423851072788239, -0.26344922184944153, 0.07921572774648666, 0.8093906044960022, -0.005452822428196669, 0.012667326256632805, 0.0014021543320268393]} +{"t": 0.9726, "q": [-0.13662314414978027, 0.005680841859430075, 0.005263015162199736, 0.3174317479133606, -0.18526114523410797, -0.010296320542693138, -0.08808969706296921, -0.03315955027937889, 0.02419915609061718, 0.3370922803878784, -0.2688983380794525, 0.025484563782811165, 0.003240838646888733, 0.009571337141096592, 0.014028801582753658, 0.24652749300003052, 0.24869664013385773, -0.08380568772554398, 0.8367266058921814, -0.008580705150961876, 0.0003954794374294579, -0.007022756151854992, 0.24422653019428253, -0.26344922184944153, 0.07921572774648666, 0.8093906044960022, -0.005428853910416365, 0.012643357738852501, 0.0014021543320268393]} +{"t": 0.9894, "q": [-0.1366060972213745, 0.005655275192111731, 0.005222839303314686, 0.3174317479133606, -0.185265451669693, -0.010303439572453499, -0.08809822052717209, -0.033176593482494354, 0.024212546646595, 0.337049663066864, -0.2689065635204315, 0.025470197200775146, 0.003240838646888733, 0.009563756175339222, 0.014043214730918407, 0.24653948843479156, 0.24868465960025787, -0.08381766825914383, 0.8367146253585815, -0.008568720892071724, 0.0003954794374294579, -0.007034740410745144, 0.24422653019428253, -0.2634612023830414, 0.07923969626426697, 0.8093906044960022, -0.005452822428196669, 0.012655341997742653, 0.0014021543320268393]} +{"t": 1.0061, "q": [-0.13662314414978027, 0.005646753590553999, 0.005249623209238052, 0.31741470098495483, -0.185265451669693, -0.010303439572453499, -0.08808117359876633, -0.03316807374358177, 0.02417237125337124, 0.33699852228164673, -0.2689065635204315, 0.025470197200775146, 0.0031872710678726435, 0.009586427360773087, 0.014038287103176117, 0.24652749300003052, 0.24867267906665802, -0.08384163677692413, 0.8367385864257812, -0.008556736633181572, 0.0003954794374294579, -0.007022756151854992, 0.24422653019428253, -0.26344922184944153, 0.07922771573066711, 0.8093786239624023, -0.005452822428196669, 0.012667326256632805, 0.0014021543320268393]} +{"t": 1.023, "q": [-0.13662314414978027, 0.005655275192111731, 0.005236231256276369, 0.31740617752075195, -0.18526114523410797, -0.010296320542693138, -0.08808117359876633, -0.033176593482494354, 0.024212546646595, 0.3370070457458496, -0.2689149081707001, 0.025470269843935966, 0.003240838646888733, 0.009571319445967674, 0.014038379304111004, 0.24651551246643066, 0.24869664013385773, -0.08384163677692413, 0.8367266058921814, -0.008568720892071724, 0.0003954794374294579, -0.007046724669635296, 0.24421453475952148, -0.2634612023830414, 0.07922771573066711, 0.8093786239624023, -0.005452822428196669, 0.012667326256632805, 0.0014500912511721253]} +{"t": 1.0397, "q": [-0.1366146206855774, 0.005646753590553999, 0.005263015162199736, 0.3173976540565491, -0.18526534736156464, -0.010289239697158337, -0.08808117359876633, -0.033176593482494354, 0.02419915609061718, 0.33698147535324097, -0.2689065635204315, 0.025470197200775146, 0.0032006630208343267, 0.009586445055902004, 0.014028708450496197, 0.24651551246643066, 0.24867267906665802, -0.08385362476110458, 0.8367266058921814, -0.008580705150961876, 0.0003954794374294579, -0.007034740410745144, 0.24420255422592163, -0.26344922184944153, 0.07923969626426697, 0.8093786239624023, -0.005464806687086821, 0.012679310515522957, 0.0014381069922819734]} +{"t": 1.0564, "q": [-0.13664871454238892, 0.005663797724992037, 0.005236231256276369, 0.3173721134662628, -0.18526965379714966, -0.010296358726918697, -0.08806413412094116, -0.03315955027937889, 0.024212546646595, 0.3370155692100525, -0.2689065635204315, 0.025470197200775146, 0.00321405497379601, 0.009578881785273552, 0.0140335438773036, 0.24651551246643066, 0.24867267906665802, -0.08387759327888489, 0.8367266058921814, -0.008568720892071724, 0.0003954794374294579, -0.007022756151854992, 0.24422653019428253, -0.26344922184944153, 0.07922771573066711, 0.8093786239624023, -0.005428853910416365, 0.012667326256632805, 0.0013901700731366873]} +{"t": 1.0733, "q": [-0.13664019107818604, 0.005655275192111731, 0.005222839303314686, 0.3173806369304657, -0.18526965379714966, -0.010296358726918697, -0.08808117359876633, -0.033176593482494354, 0.02418576367199421, 0.33698999881744385, -0.26891079545021057, 0.025477444753050804, 0.0032274469267576933, 0.009586427360773087, 0.014038287103176117, 0.24651551246643066, 0.24866068363189697, -0.08384163677692413, 0.8367266058921814, -0.008568720892071724, 0.0003954794374294579, -0.00701077189296484, 0.24423851072788239, -0.2634612023830414, 0.07922771573066711, 0.8093786239624023, -0.005428853910416365, 0.012655341997742653, 0.0013781859306618571]} +{"t": 1.0901, "q": [-0.13664871454238892, 0.005646753590553999, 0.005236231256276369, 0.3173806369304657, -0.185265451669693, -0.010303439572453499, -0.08807265758514404, -0.033193640410900116, 0.024212546646595, 0.33698999881744385, -0.268910676240921, 0.02546302229166031, 0.0032006630208343267, 0.009571284055709839, 0.01405753567814827, 0.24651551246643066, 0.24868465960025787, -0.08384163677692413, 0.8367385864257812, -0.008556736633181572, 0.0003834952076431364, -0.007034740410745144, 0.24422653019428253, -0.2634612023830414, 0.07921572774648666, 0.8093906044960022, -0.005452822428196669, 0.012667326256632805, 0.0014141385909169912]} +{"t": 1.1068, "q": [-0.13666574656963348, 0.005663797724992037, 0.005222839303314686, 0.3173976540565491, -0.185265451669693, -0.010303439572453499, -0.08807265758514404, -0.03316807374358177, 0.024212546646595, 0.33698147535324097, -0.2689190208911896, 0.02546309493482113, 0.0032274469267576933, 0.00954106729477644, 0.014057721011340618, 0.2465035319328308, 0.24869664013385773, -0.08385362476110458, 0.8367505669593811, -0.008556736633181572, 0.0003954794374294579, -0.007022756151854992, 0.24425049126148224, -0.2634612023830414, 0.07922771573066711, 0.8093786239624023, -0.005476790945976973, 0.012691294774413109, 0.0013901700731366873]} +{"t": 1.1235, "q": [-0.13664871454238892, 0.005638231057673693, 0.0052094473503530025, 0.3173976540565491, -0.18526965379714966, -0.010296358726918697, -0.08807265758514404, -0.033176593482494354, 0.024212546646595, 0.33698999881744385, -0.2689065635204315, 0.025470197200775146, 0.0031872710678726435, 0.009571284055709839, 0.01405753567814827, 0.24649155139923096, 0.24870862066745758, -0.08384163677692413, 0.8367505669593811, -0.008568720892071724, 0.0003954794374294579, -0.007034740410745144, 0.24422653019428253, -0.26344922184944153, 0.07922771573066711, 0.8093906044960022, -0.005428853910416365, 0.012691294774413109, 0.0013901700731366873]} +{"t": 1.1403, "q": [-0.13666574656963348, 0.005655275192111731, 0.0052094473503530025, 0.3173891305923462, -0.18525704741477966, -0.010317600332200527, -0.08807265758514404, -0.033176593482494354, 0.02419915609061718, 0.3369559347629547, -0.268910676240921, 0.02546302229166031, 0.0032006630208343267, 0.009563738480210304, 0.014052793383598328, 0.2465035319328308, 0.24868465960025787, -0.08386560529470444, 0.8367505669593811, -0.008568720892071724, 0.0003834952076431364, -0.007034740410745144, 0.24423851072788239, -0.26344922184944153, 0.07922771573066711, 0.809402585029602, -0.005452822428196669, 0.012691294774413109, 0.0013901700731366873]} +{"t": 1.157, "q": [-0.13664871454238892, 0.005646753590553999, 0.0052094473503530025, 0.3173806369304657, -0.185265451669693, -0.010303439572453499, -0.08805561065673828, -0.03315955027937889, 0.024212546646595, 0.33698147535324097, -0.2689147889614105, 0.02545584738254547, 0.0032006630208343267, 0.009571248665452003, 0.014076692052185535, 0.2465035319328308, 0.24869664013385773, -0.08384163677692413, 0.836762547492981, -0.008568720892071724, 0.0003954794374294579, -0.007022756151854992, 0.24416659772396088, -0.26344922184944153, 0.07922771573066711, 0.809402585029602, -0.005440838169306517, 0.012667326256632805, 0.0013901700731366873]} +{"t": 1.1737, "q": [-0.13664871454238892, 0.005646753590553999, 0.005196055397391319, 0.3173465430736542, -0.18526965379714966, -0.010296358726918697, -0.08806413412094116, -0.03315955027937889, 0.024212546646595, 0.3369559347629547, -0.2689023017883301, 0.025462931022047997, 0.0032006630208343267, 0.009548595175147057, 0.01407204195857048, 0.24652749300003052, 0.24868465960025787, -0.08382965624332428, 0.8367505669593811, -0.008556736633181572, 0.0003954794374294579, -0.007034740410745144, 0.24419057369232178, -0.26344922184944153, 0.07922771573066711, 0.8093906044960022, -0.005452822428196669, 0.012691294774413109, 0.0014021543320268393]} +{"t": 1.1904, "q": [-0.13662314414978027, 0.005655275192111731, 0.005196055397391319, 0.3173976540565491, -0.18526124954223633, -0.010310519486665726, -0.08807265758514404, -0.03316807374358177, 0.024212546646595, 0.3369729518890381, -0.2689149081707001, 0.025470269843935966, 0.003254230599850416, 0.009586374275386333, 0.014067021198570728, 0.24651551246643066, 0.24869664013385773, -0.08384163677692413, 0.8367505669593811, -0.008568720892071724, 0.0003834952076431364, -0.00701077189296484, 0.24419057369232178, -0.2634372413158417, 0.07922771573066711, 0.8093906044960022, -0.005476790945976973, 0.012691294774413109, 0.0014381069922819734]} +{"t": 1.2074, "q": [-0.13664019107818604, 0.005655275192111731, 0.005196055397391319, 0.3173721134662628, -0.18526965379714966, -0.010296358726918697, -0.08806413412094116, -0.033176593482494354, 0.02419915609061718, 0.3369729518890381, -0.268910676240921, 0.02546302229166031, 0.00321405497379601, 0.009571248665452003, 0.014076692052185535, 0.24649155139923096, 0.24869664013385773, -0.08381766825914383, 0.8368105292320251, -0.008592689409852028, 0.0003954794374294579, -0.007034740410745144, 0.24421453475952148, -0.2634372413158417, 0.07921572774648666, 0.8093906044960022, -0.005428853910416365, 0.01270327903330326, 0.0014021543320268393]} +{"t": 1.2241, "q": [-0.13664019107818604, 0.005655275192111731, 0.005196055397391319, 0.3173976540565491, -0.18526114523410797, -0.010296320542693138, -0.08805561065673828, -0.033176593482494354, 0.02417237125337124, 0.33698147535324097, -0.268910676240921, 0.02546302229166031, 0.0032274469267576933, 0.009571266360580921, 0.01406711433082819, 0.24649155139923096, 0.24870862066745758, -0.08385362476110458, 0.8367865681648254, -0.008568720892071724, 0.0003834952076431364, -0.007034740410745144, 0.24421453475952148, -0.26344922184944153, 0.07922771573066711, 0.8093906044960022, -0.005452822428196669, 0.012679310515522957, 0.0014021543320268393]} +{"t": 1.2409, "q": [-0.13662314414978027, 0.005646753590553999, 0.005182663444429636, 0.3173806369304657, -0.185265451669693, -0.010303439572453499, -0.08806413412094116, -0.033185116946697235, 0.02418576367199421, 0.3369644582271576, -0.2689065635204315, 0.025470197200775146, 0.003240838646888733, 0.009578846395015717, 0.014052700251340866, 0.24649155139923096, 0.24870862066745758, -0.08385362476110458, 0.8368344902992249, -0.008568720892071724, 0.0003954794374294579, -0.007046724669635296, 0.24417859315872192, -0.2634372413158417, 0.07923969626426697, 0.809402585029602, -0.005440838169306517, 0.012715263292193413, 0.0013901700731366873]} +{"t": 1.2576, "q": [-0.13662314414978027, 0.005638231057673693, 0.005182663444429636, 0.3173806369304657, -0.18526114523410797, -0.010296320542693138, -0.08806413412094116, -0.033176593482494354, 0.02417237125337124, 0.33698147535324097, -0.2689065635204315, 0.025470197200775146, 0.003173879347741604, 0.009563703089952469, 0.014071949757635593, 0.24649155139923096, 0.24869664013385773, -0.08385362476110458, 0.8368344902992249, -0.008580705150961876, 0.0003834952076431364, -0.007022756151854992, 0.24419057369232178, -0.2634372413158417, 0.07925168424844742, 0.809402585029602, -0.005452822428196669, 0.012691294774413109, 0.0013781859306618571]} +{"t": 1.2743, "q": [-0.13663166761398315, 0.0056297085247933865, 0.00516927195712924, 0.3173976540565491, -0.18526124954223633, -0.010310519486665726, -0.08805561065673828, -0.033176593482494354, 0.02417237125337124, 0.33702409267425537, -0.2689065635204315, 0.025470197200775146, 0.00321405497379601, 0.009593954309821129, 0.01405260805040598, 0.2465035319328308, 0.24870862066745758, -0.08384163677692413, 0.8368344902992249, -0.008568720892071724, 0.0003834952076431364, -0.007034740410745144, 0.24420255422592163, -0.2634612023830414, 0.07921572774648666, 0.8093906044960022, -0.005452822428196669, 0.012691294774413109, 0.0014021543320268393]} +{"t": 1.291, "q": [-0.13662314414978027, 0.005646753590553999, 0.005182663444429636, 0.3173891305923462, -0.18526124954223633, -0.010310519486665726, -0.0880470871925354, -0.03315955027937889, 0.02417237125337124, 0.33702409267425537, -0.268898069858551, 0.02545568160712719, 0.003173879347741604, 0.009571248665452003, 0.014076692052185535, 0.24649155139923096, 0.24869664013385773, -0.08382965624332428, 0.8368464708328247, -0.008568720892071724, 0.0003954794374294579, -0.00701077189296484, 0.24421453475952148, -0.26344922184944153, 0.07925168424844742, 0.8093906044960022, -0.005452822428196669, 0.012715263292193413, 0.0014261228498071432]} +{"t": 1.308, "q": [-0.1366146206855774, 0.005663797724992037, 0.00516927195712924, 0.31740617752075195, -0.18525274097919464, -0.010310481302440166, -0.0880470871925354, -0.033176593482494354, 0.02419915609061718, 0.33702409267425537, -0.268910676240921, 0.02546302229166031, 0.0032274469267576933, 0.009586374275386333, 0.014067021198570728, 0.24652749300003052, 0.24868465960025787, -0.08386560529470444, 0.8368344902992249, -0.008580705150961876, 0.0003954794374294579, -0.007046724669635296, 0.24422653019428253, -0.2634372413158417, 0.07922771573066711, 0.8093786239624023, -0.0055127437226474285, 0.012667326256632805, 0.0014500912511721253]} +{"t": 1.3247, "q": [-0.1366146206855774, 0.005646753590553999, 0.005182663444429636, 0.3174232244491577, -0.18526124954223633, -0.010310519486665726, -0.08803856372833252, -0.033176593482494354, 0.02417237125337124, 0.337049663066864, -0.268910676240921, 0.02546302229166031, 0.0032006630208343267, 0.009525871835649014, 0.014105705544352531, 0.24649155139923096, 0.24867267906665802, -0.08384163677692413, 0.8368464708328247, -0.008556736633181572, 0.0004074636672157794, -0.007046724669635296, 0.24421453475952148, -0.2634612023830414, 0.07920374721288681, 0.8093906044960022, -0.0054887752048671246, 0.012691294774413109, 0.0013901700731366873]} +{"t": 1.3414, "q": [-0.1366146206855774, 0.0056723193265497684, 0.00516927195712924, 0.31741470098495483, -0.18526124954223633, -0.010310519486665726, -0.08803004771471024, -0.033176593482494354, 0.02417237125337124, 0.3370667099952698, -0.26891079545021057, 0.025477444753050804, 0.0032006630208343267, 0.009548559784889221, 0.01409119926393032, 0.24649155139923096, 0.24868465960025787, -0.08387759327888489, 0.8368704319000244, -0.008580705150961876, 0.0004074636672157794, -0.007034740410745144, 0.24422653019428253, -0.26344922184944153, 0.07922771573066711, 0.8093906044960022, -0.0055007594637572765, 0.012727247551083565, 0.0014141385909169912]} +{"t": 1.3583, "q": [-0.1366146206855774, 0.005646753590553999, 0.005155880004167557, 0.31741470098495483, -0.185265451669693, -0.010303439572453499, -0.08803856372833252, -0.033176593482494354, 0.02417237125337124, 0.337049663066864, -0.26890257000923157, 0.025491813197731972, 0.0032274469267576933, 0.009540997445583344, 0.014096034690737724, 0.24649155139923096, 0.24869664013385773, -0.08385362476110458, 0.8368464708328247, -0.008592689409852028, 0.0003954794374294579, -0.007046724669635296, 0.24422653019428253, -0.2634612023830414, 0.07922771573066711, 0.8093666434288025, -0.0055127437226474285, 0.012715263292193413, 0.0013901700731366873]} +{"t": 1.375, "q": [-0.13659757375717163, 0.0056723193265497684, 0.00516927195712924, 0.3174317479133606, -0.1852569431066513, -0.010303400456905365, -0.08802152425050735, -0.03315955027937889, 0.024145588278770447, 0.33708375692367554, -0.2689065635204315, 0.025470197200775146, 0.0032006630208343267, 0.009533398784697056, 0.014120026491582394, 0.2465035319328308, 0.24867267906665802, -0.08385362476110458, 0.8368584513664246, -0.008568720892071724, 0.0004074636672157794, -0.007034740410745144, 0.24422653019428253, -0.2634612023830414, 0.07923969626426697, 0.8093906044960022, -0.005476790945976973, 0.012715263292193413, 0.0013901700731366873]} +{"t": 1.3917, "q": [-0.1366146206855774, 0.005655275192111731, 0.00516927195712924, 0.3174317479133606, -0.18525704741477966, -0.010317600332200527, -0.08802152425050735, -0.033193640410900116, 0.024145588278770447, 0.33703261613845825, -0.2689065635204315, 0.025470197200775146, 0.00321405497379601, 0.009548524394631386, 0.014110355637967587, 0.2465035319328308, 0.24869664013385773, -0.08385362476110458, 0.8368824124336243, -0.008592689409852028, 0.00041944789700210094, -0.007034740410745144, 0.24422653019428253, -0.26344922184944153, 0.07921572774648666, 0.809402585029602, -0.0055127437226474285, 0.012739231809973717, 0.0013901700731366873]} +{"t": 1.4084, "q": [-0.13659757375717163, 0.005646753590553999, 0.005196055397391319, 0.31741470098495483, -0.18526124954223633, -0.010310519486665726, -0.08802152425050735, -0.033176593482494354, 0.024145588278770447, 0.337049663066864, -0.2689065635204315, 0.025470197200775146, 0.0032006630208343267, 0.009533434174954891, 0.014100870117545128, 0.2465035319328308, 0.24869664013385773, -0.08384163677692413, 0.8368464708328247, -0.008580705150961876, 0.0003954794374294579, -0.007046724669635296, 0.24423851072788239, -0.2634612023830414, 0.07923969626426697, 0.8093786239624023, -0.0055127437226474285, 0.012739231809973717, 0.0014021543320268393]} +{"t": 1.4252, "q": [-0.13658052682876587, 0.005646753590553999, 0.005182663444429636, 0.3174402713775635, -0.185265451669693, -0.010303439572453499, -0.08800447732210159, -0.033185116946697235, 0.024145588278770447, 0.33707523345947266, -0.26891079545021057, 0.025477444753050804, 0.0032006630208343267, 0.009540979750454426, 0.01410561241209507, 0.2465035319328308, 0.24868465960025787, -0.08382965624332428, 0.8368943929672241, -0.008532768115401268, 0.0004074636672157794, -0.007034740410745144, 0.24423851072788239, -0.2634612023830414, 0.07923969626426697, 0.8093906044960022, -0.005476790945976973, 0.012739231809973717, 0.0014021543320268393]} +{"t": 1.4421, "q": [-0.13658052682876587, 0.005663797724992037, 0.00516927195712924, 0.3174317479133606, -0.18525704741477966, -0.010317600332200527, -0.08800447732210159, -0.03315955027937889, 0.024158980697393417, 0.33704113960266113, -0.268898069858551, 0.02545568160712719, 0.00321405497379601, 0.009540997445583344, 0.014096034690737724, 0.24649155139923096, 0.24869664013385773, -0.08382965624332428, 0.8368824124336243, -0.008592689409852028, 0.0003954794374294579, -0.007046724669635296, 0.24423851072788239, -0.2634372413158417, 0.07920374721288681, 0.8093906044960022, -0.005464806687086821, 0.012727247551083565, 0.0014021543320268393]} +{"t": 1.4588, "q": [-0.13658052682876587, 0.005655275192111731, 0.00516927195712924, 0.3174317479133606, -0.18526534736156464, -0.010289239697158337, -0.08800447732210159, -0.03315955027937889, 0.024118803441524506, 0.33702409267425537, -0.2689065635204315, 0.025470197200775146, 0.0032006630208343267, 0.009548577480018139, 0.0140816206112504, 0.24649155139923096, 0.24869664013385773, -0.08381766825914383, 0.836906373500824, -0.008592689409852028, 0.00041944789700210094, -0.007022756151854992, 0.24421453475952148, -0.2634372413158417, 0.07922771573066711, 0.8093906044960022, -0.005452822428196669, 0.012715263292193413, 0.0014261228498071432]} +{"t": 1.4756, "q": [-0.13658052682876587, 0.005655275192111731, 0.00516927195712924, 0.3174317479133606, -0.185265451669693, -0.010303439572453499, -0.08801300078630447, -0.03315955027937889, 0.024145588278770447, 0.33704113960266113, -0.26891079545021057, 0.025477444753050804, 0.0032006630208343267, 0.009533434174954891, 0.014100870117545128, 0.2465035319328308, 0.24869664013385773, -0.08382965624332428, 0.8368943929672241, -0.008568720892071724, 0.00045540055725723505, -0.007034740410745144, 0.24420255422592163, -0.26344922184944153, 0.07921572774648666, 0.8093786239624023, -0.005476790945976973, 0.012715263292193413, 0.0014381069922819734]} +{"t": 1.4923, "q": [-0.1366060972213745, 0.0056723193265497684, 0.005155880004167557, 0.3174317479133606, -0.18525274097919464, -0.010310481302440166, -0.08800447732210159, -0.033176593482494354, 0.024105412885546684, 0.33699852228164673, -0.26891079545021057, 0.025477444753050804, 0.0031872710678726435, 0.009525836445391178, 0.014124861918389797, 0.24649155139923096, 0.24868465960025787, -0.08382965624332428, 0.8368943929672241, -0.008568720892071724, 0.00041944789700210094, -0.007046724669635296, 0.24421453475952148, -0.2634612023830414, 0.07920374721288681, 0.809402585029602, -0.0055007594637572765, 0.012715263292193413, 0.0014141385909169912]} +{"t": 1.5091, "q": [-0.13659757375717163, 0.005655275192111731, 0.0051424880512058735, 0.3174317479133606, -0.1852569431066513, -0.010303400456905365, -0.08800447732210159, -0.03315955027937889, 0.024118803441524506, 0.33703261613845825, -0.2689065635204315, 0.025470197200775146, 0.00321405497379601, 0.009525836445391178, 0.014124861918389797, 0.2464795559644699, 0.24869664013385773, -0.08382965624332428, 0.836906373500824, -0.008592689409852028, 0.0004074636672157794, -0.007034740410745144, 0.24421453475952148, -0.26344922184944153, 0.07921572774648666, 0.809402585029602, -0.005464806687086821, 0.012715263292193413, 0.0014141385909169912]} +{"t": 1.5258, "q": [-0.13658905029296875, 0.005638231057673693, 0.0051424880512058735, 0.3174317479133606, -0.18526555597782135, -0.010317638516426086, -0.08799595385789871, -0.033176593482494354, 0.024145588278770447, 0.33703261613845825, -0.2689065635204315, 0.025470197200775146, 0.0032274469267576933, 0.00948802288621664, 0.01414903812110424, 0.24649155139923096, 0.24869664013385773, -0.08381766825914383, 0.8368943929672241, -0.008592689409852028, 0.0004074636672157794, -0.007034740410745144, 0.24421453475952148, -0.26344922184944153, 0.07921572774648666, 0.809402585029602, -0.0055007594637572765, 0.012727247551083565, 0.0013901700731366873]} +{"t": 1.5428, "q": [-0.13658052682876587, 0.005655275192111731, 0.005155880004167557, 0.3174232244491577, -0.18526124954223633, -0.010310519486665726, -0.08800447732210159, -0.033176593482494354, 0.024105412885546684, 0.33704113960266113, -0.2689065635204315, 0.025470197200775146, 0.0032006630208343267, 0.00945777166634798, 0.014168379828333855, 0.2465035319328308, 0.24870862066745758, -0.08384163677692413, 0.8368943929672241, -0.008568720892071724, 0.00041944789700210094, -0.007022756151854992, 0.24420255422592163, -0.26344922184944153, 0.07922771573066711, 0.8093906044960022, -0.005452822428196669, 0.012727247551083565, 0.0014021543320268393]} +{"t": 1.5595, "q": [-0.1366146206855774, 0.005646753590553999, 0.005155880004167557, 0.3174232244491577, -0.18526124954223633, -0.010310519486665726, -0.08800447732210159, -0.03316807374358177, 0.024145588278770447, 0.3370070457458496, -0.2689149081707001, 0.025470269843935966, 0.00321405497379601, 0.00947289727628231, 0.014158708974719048, 0.24651551246643066, 0.24867267906665802, -0.08382965624332428, 0.8369183540344238, -0.008568720892071724, 0.00044341632747091353, -0.007046724669635296, 0.24421453475952148, -0.2634372413158417, 0.07922771573066711, 0.809402585029602, -0.005476790945976973, 0.012739231809973717, 0.0014021543320268393]} +{"t": 1.5762, "q": [-0.13659757375717163, 0.005655275192111731, 0.005155880004167557, 0.3174232244491577, -0.18526124954223633, -0.010310519486665726, -0.08800447732210159, -0.033193640410900116, 0.024132195860147476, 0.3370070457458496, -0.2689065635204315, 0.025470197200775146, 0.0032006630208343267, 0.009487987495958805, 0.01416819542646408, 0.24649155139923096, 0.24869664013385773, -0.08382965624332428, 0.8369183540344238, -0.008556736633181572, 0.00041944789700210094, -0.007034740410745144, 0.24421453475952148, -0.26344922184944153, 0.07921572774648666, 0.8093786239624023, -0.005476790945976973, 0.012727247551083565, 0.0014141385909169912]} +{"t": 1.5929, "q": [-0.1366060972213745, 0.005646753590553999, 0.0051424880512058735, 0.3174232244491577, -0.18526114523410797, -0.010296320542693138, -0.08798743039369583, -0.03315103054046631, 0.024118803441524506, 0.3370155692100525, -0.2688983380794525, 0.025484563782811165, 0.003240838646888733, 0.009518221020698547, 0.014158431440591812, 0.24651551246643066, 0.24869664013385773, -0.08382965624332428, 0.8369303345680237, -0.008580705150961876, 0.00041944789700210094, -0.007022756151854992, 0.24422653019428253, -0.2634612023830414, 0.07922771573066711, 0.8093906044960022, -0.005464806687086821, 0.012715263292193413, 0.0014381069922819734]} +{"t": 1.6097, "q": [-0.13658052682876587, 0.005638231057673693, 0.0051424880512058735, 0.31740617752075195, -0.185265451669693, -0.010303439572453499, -0.08798743039369583, -0.03315955027937889, 0.024092020466923714, 0.33698999881744385, -0.2689065635204315, 0.025470197200775146, 0.0032006630208343267, 0.009487987495958805, 0.01416819542646408, 0.2465035319328308, 0.24867267906665802, -0.08380568772554398, 0.8369303345680237, -0.008592689409852028, 0.00041944789700210094, -0.0070587084628641605, 0.24421453475952148, -0.2634372413158417, 0.07922771573066711, 0.8093906044960022, -0.0055127437226474285, 0.012727247551083565, 0.0013901700731366873]} +{"t": 1.6264, "q": [-0.13659757375717163, 0.005655275192111731, 0.0051424880512058735, 0.31741470098495483, -0.18526965379714966, -0.010296358726918697, -0.08798743039369583, -0.033176593482494354, 0.024092020466923714, 0.33698999881744385, -0.26891079545021057, 0.025477444753050804, 0.003240838646888733, 0.009503113105893135, 0.014158523641526699, 0.24649155139923096, 0.24870862066745758, -0.08384163677692413, 0.8369542956352234, -0.008532768115401268, 0.000431432097684592, -0.007034740410745144, 0.24422653019428253, -0.2634612023830414, 0.07922771573066711, 0.8093786239624023, -0.0055007594637572765, 0.012739231809973717, 0.0013901700731366873]} +{"t": 1.6433, "q": [-0.13658052682876587, 0.0056723193265497684, 0.005115704145282507, 0.31740617752075195, -0.18525704741477966, -0.010317600332200527, -0.08798743039369583, -0.03316807374358177, 0.024105412885546684, 0.3370070457458496, -0.2689149081707001, 0.025470269843935966, 0.003240838646888733, 0.00951065868139267, 0.014163266867399216, 0.24649155139923096, 0.24870862066745758, -0.08380568772554398, 0.8369423151016235, -0.008568720892071724, 0.00041944789700210094, -0.007034740410745144, 0.24420255422592163, -0.2634372413158417, 0.07922771573066711, 0.809402585029602, -0.0055007594637572765, 0.012739231809973717, 0.0013781859306618571]} +{"t": 1.66, "q": [-0.13659757375717163, 0.005646753590553999, 0.00512909609824419, 0.3174232244491577, -0.18526124954223633, -0.010310519486665726, -0.08797891438007355, -0.03316807374358177, 0.024105412885546684, 0.33702409267425537, -0.26891079545021057, 0.025477444753050804, 0.00321405497379601, 0.00951820332556963, 0.014168010093271732, 0.24649155139923096, 0.24869664013385773, -0.08380568772554398, 0.8369303345680237, -0.008568720892071724, 0.00041944789700210094, -0.007022756151854992, 0.24420255422592163, -0.2634612023830414, 0.07922771573066711, 0.809402585029602, -0.005404885392636061, 0.012739231809973717, 0.0013781859306618571]} +{"t": 1.6767, "q": [-0.1366060972213745, 0.005646753590553999, 0.00512909609824419, 0.31740617752075195, -0.18526114523410797, -0.010296320542693138, -0.0879533439874649, -0.033176593482494354, 0.024118803441524506, 0.33702409267425537, -0.268910676240921, 0.02546302229166031, 0.003254230599850416, 0.009487969800829887, 0.014177773147821426, 0.2465035319328308, 0.24867267906665802, -0.08381766825914383, 0.8369542956352234, -0.008568720892071724, 0.0004074636672157794, -0.007034740410745144, 0.24420255422592163, -0.26344922184944153, 0.07921572774648666, 0.809402585029602, -0.005440838169306517, 0.012739231809973717, 0.0013901700731366873]} +{"t": 1.6935, "q": [-0.13659757375717163, 0.005646753590553999, 0.005102312192320824, 0.31741470098495483, -0.1852569431066513, -0.010303400456905365, -0.08792778104543686, -0.03315955027937889, 0.024078628048300743, 0.33703261613845825, -0.2689065635204315, 0.025470197200775146, 0.003254230599850416, 0.009495497681200504, 0.014192094095051289, 0.24649155139923096, 0.24868465960025787, -0.08381766825914383, 0.8369542956352234, -0.008556736633181572, 0.000431432097684592, -0.007022756151854992, 0.24419057369232178, -0.26344922184944153, 0.07922771573066711, 0.8093786239624023, -0.005476790945976973, 0.012739231809973717, 0.0014261228498071432]} +{"t": 1.7102, "q": [-0.13659757375717163, 0.005689363460987806, 0.005115704145282507, 0.31740617752075195, -0.185265451669693, -0.010303439572453499, -0.08792778104543686, -0.03315955027937889, 0.02405184507369995, 0.33702409267425537, -0.2688983380794525, 0.025484563782811165, 0.003254230599850416, 0.00948795210570097, 0.014187351800501347, 0.24649155139923096, 0.24868465960025787, -0.08380568772554398, 0.8369542956352234, -0.008580705150961876, 0.00041944789700210094, -0.007034740410745144, 0.24420255422592163, -0.2634612023830414, 0.07922771573066711, 0.809402585029602, -0.005452822428196669, 0.012715263292193413, 0.0013781859306618571]} +{"t": 1.727, "q": [-0.1366146206855774, 0.0056723193265497684, 0.005102312192320824, 0.3174232244491577, -0.18526965379714966, -0.010296358726918697, -0.08792778104543686, -0.03315955027937889, 0.024065235629677773, 0.3370070457458496, -0.2689065635204315, 0.025470197200775146, 0.003254230599850416, 0.009495497681200504, 0.014192094095051289, 0.24649155139923096, 0.24870862066745758, -0.08380568772554398, 0.8369542956352234, -0.008592689409852028, 0.00041944789700210094, -0.007022756151854992, 0.24421453475952148, -0.2634612023830414, 0.07922771573066711, 0.8093906044960022, -0.0054887752048671246, 0.012739231809973717, 0.0014141385909169912]} +{"t": 1.7437, "q": [-0.136572003364563, 0.005655275192111731, 0.00508892023935914, 0.3174402713775635, -0.18526965379714966, -0.010296358726918697, -0.08793630450963974, -0.033185116946697235, 0.02405184507369995, 0.3370070457458496, -0.2689065635204315, 0.025470197200775146, 0.003240838646888733, 0.009495497681200504, 0.014192094095051289, 0.2465035319328308, 0.24868465960025787, -0.08382965624332428, 0.8369542956352234, -0.008592689409852028, 0.00041944789700210094, -0.007046724669635296, 0.24419057369232178, -0.26344922184944153, 0.07921572774648666, 0.8093906044960022, -0.005452822428196669, 0.012727247551083565, 0.0014141385909169912]} +{"t": 1.7604, "q": [-0.13658052682876587, 0.005646753590553999, 0.00508892023935914, 0.3174232244491577, -0.18526965379714966, -0.010296358726918697, -0.08791925758123398, -0.03315955027937889, 0.024065235629677773, 0.33699852228164673, -0.2689065635204315, 0.025470197200775146, 0.0031872710678726435, 0.009487934410572052, 0.014196929521858692, 0.24651551246643066, 0.24867267906665802, -0.08380568772554398, 0.8369423151016235, -0.008592689409852028, 0.00041944789700210094, -0.007046724669635296, 0.24417859315872192, -0.2634612023830414, 0.07922771573066711, 0.809402585029602, -0.005452822428196669, 0.012739231809973717, 0.0013901700731366873]} +{"t": 1.7772, "q": [-0.13655497133731842, 0.0056723193265497684, 0.005102312192320824, 0.3174317479133606, -0.18526124954223633, -0.010310519486665726, -0.0879107341170311, -0.03316807374358177, 0.024078628048300743, 0.33702409267425537, -0.268910676240921, 0.02546302229166031, 0.0032274469267576933, 0.009518185630440712, 0.014177587814629078, 0.24652749300003052, 0.24869664013385773, -0.08382965624332428, 0.8369423151016235, -0.008580705150961876, 0.00041944789700210094, -0.007034740410745144, 0.24419057369232178, -0.2634612023830414, 0.07922771573066711, 0.809402585029602, -0.005476790945976973, 0.012727247551083565, 0.0014261228498071432]} +{"t": 1.7939, "q": [-0.13653792440891266, 0.005646753590553999, 0.005102312192320824, 0.31744879484176636, -0.18526124954223633, -0.010310519486665726, -0.08789368718862534, -0.033185116946697235, 0.024078628048300743, 0.337049663066864, -0.2689065635204315, 0.025470197200775146, 0.0032274469267576933, 0.009533275850117207, 0.014187073335051537, 0.24651551246643066, 0.24868465960025787, -0.08381766825914383, 0.8369423151016235, -0.008568720892071724, 0.0004074636672157794, -0.0070587084628641605, 0.24421453475952148, -0.26344922184944153, 0.07922771573066711, 0.809402585029602, -0.005452822428196669, 0.012739231809973717, 0.0014381069922819734]} +{"t": 1.8107, "q": [-0.1365634948015213, 0.005646753590553999, 0.005102312192320824, 0.3174317479133606, -0.185265451669693, -0.010303439572453499, -0.08787664771080017, -0.033193640410900116, 0.024065235629677773, 0.33703261613845825, -0.268910676240921, 0.02546302229166031, 0.003240838646888733, 0.009495497681200504, 0.014192094095051289, 0.24651551246643066, 0.24869664013385773, -0.08381766825914383, 0.8369542956352234, -0.008592689409852028, 0.000431432097684592, -0.007034740410745144, 0.24420255422592163, -0.26347318291664124, 0.07922771573066711, 0.809402585029602, -0.005464806687086821, 0.012739231809973717, 0.0014381069922819734]} +{"t": 1.8276, "q": [-0.13654644787311554, 0.005663797724992037, 0.005075528286397457, 0.3174402713775635, -0.18526114523410797, -0.010296320542693138, -0.08785107731819153, -0.03316807374358177, 0.024078628048300743, 0.3370581865310669, -0.268910676240921, 0.02546302229166031, 0.00321405497379601, 0.009510587900876999, 0.014201579615473747, 0.24649155139923096, 0.24868465960025787, -0.08378171920776367, 0.8369542956352234, -0.008568720892071724, 0.000431432097684592, -0.007046724669635296, 0.24421453475952148, -0.26344922184944153, 0.07922771573066711, 0.8093906044960022, -0.005452822428196669, 0.012751216068863869, 0.0014141385909169912]} +{"t": 1.8443, "q": [-0.13653792440891266, 0.005646753590553999, 0.00508892023935914, 0.3174317479133606, -0.18526114523410797, -0.010296320542693138, -0.0878169909119606, -0.033176593482494354, 0.024065235629677773, 0.337049663066864, -0.268910676240921, 0.02546302229166031, 0.00321405497379601, 0.009510587900876999, 0.014201579615473747, 0.2465035319328308, 0.24869664013385773, -0.08380568772554398, 0.8369423151016235, -0.008568720892071724, 0.0004074636672157794, -0.007046724669635296, 0.24422653019428253, -0.26344922184944153, 0.07923969626426697, 0.809402585029602, -0.005452822428196669, 0.012751216068863869, 0.0014141385909169912]} +{"t": 1.861, "q": [-0.13650383055210114, 0.005680841859430075, 0.005075528286397457, 0.31744879484176636, -0.185265451669693, -0.010303439572453499, -0.0878169909119606, -0.03315103054046631, 0.02403845265507698, 0.3370667099952698, -0.26891079545021057, 0.025477444753050804, 0.0032944062259048223, 0.009495497681200504, 0.014192094095051289, 0.2465035319328308, 0.24867267906665802, -0.08382965624332428, 0.8369542956352234, -0.008556736633181572, 0.00041944789700210094, -0.007046724669635296, 0.24416659772396088, -0.2634372413158417, 0.07922771573066711, 0.809402585029602, -0.005452822428196669, 0.012751216068863869, 0.0014261228498071432]} +{"t": 1.8777, "q": [-0.13650383055210114, 0.005646753590553999, 0.005075528286397457, 0.3174317479133606, -0.185265451669693, -0.010303439572453499, -0.0878169909119606, -0.033176593482494354, 0.02403845265507698, 0.33702409267425537, -0.26890257000923157, 0.025491813197731972, 0.003240838646888733, 0.009510623291134834, 0.014182423241436481, 0.2464795559644699, 0.24868465960025787, -0.08384163677692413, 0.8369542956352234, -0.008592689409852028, 0.00041944789700210094, -0.0070706927217543125, 0.24421453475952148, -0.26344922184944153, 0.07922771573066711, 0.8093906044960022, -0.005452822428196669, 0.012739231809973717, 0.0014500912511721253]} +{"t": 1.8944, "q": [-0.13649530708789825, 0.005655275192111731, 0.005075528286397457, 0.3174317479133606, -0.18526124954223633, -0.010310519486665726, -0.08779142796993256, -0.03315955027937889, 0.02401166968047619, 0.33703261613845825, -0.26891079545021057, 0.025477444753050804, 0.003240838646888733, 0.009518150240182877, 0.014196744188666344, 0.2465035319328308, 0.24869664013385773, -0.08385362476110458, 0.836966335773468, -0.00860467366874218, 0.00041944789700210094, -0.007046724669635296, 0.24420255422592163, -0.2634372413158417, 0.07922771573066711, 0.809402585029602, -0.005476790945976973, 0.01276320032775402, 0.0014261228498071432]} +{"t": 1.9112, "q": [-0.13650383055210114, 0.005655275192111731, 0.005062136333435774, 0.3174402713775635, -0.18526534736156464, -0.010289239697158337, -0.08779994398355484, -0.033176593482494354, 0.02405184507369995, 0.33702409267425537, -0.26891079545021057, 0.025477444753050804, 0.0032274469267576933, 0.009510587900876999, 0.014201579615473747, 0.24652749300003052, 0.24868465960025787, -0.08385362476110458, 0.836966335773468, -0.008556736633181572, 0.000431432097684592, -0.0070826769806444645, 0.24420255422592163, -0.2634372413158417, 0.07922771573066711, 0.809402585029602, -0.005428853910416365, 0.012739231809973717, 0.0013901700731366873]} +{"t": 1.9279, "q": [-0.13649530708789825, 0.005646753590553999, 0.005075528286397457, 0.3174317479133606, -0.185265451669693, -0.010303439572453499, -0.08779994398355484, -0.033176593482494354, 0.02403845265507698, 0.3370155692100525, -0.2689149081707001, 0.025470269843935966, 0.00321405497379601, 0.009533275850117207, 0.014187073335051537, 0.24651551246643066, 0.24869664013385773, -0.08382965624332428, 0.836966335773468, -0.00860467366874218, 0.0003954794374294579, -0.007046724669635296, 0.24421453475952148, -0.26344922184944153, 0.07922771573066711, 0.809402585029602, -0.005428853910416365, 0.012739231809973717, 0.0014141385909169912]} +{"t": 1.9447, "q": [-0.13650383055210114, 0.005646753590553999, 0.005062136333435774, 0.3174317479133606, -0.18526534736156464, -0.010289239697158337, -0.08779994398355484, -0.03316807374358177, 0.02403845265507698, 0.33703261613845825, -0.2689149081707001, 0.025470269843935966, 0.003240838646888733, 0.009503024630248547, 0.01420641504228115, 0.24651551246643066, 0.24868465960025787, -0.08384163677692413, 0.8369783163070679, -0.008592689409852028, 0.00041944789700210094, -0.0070587084628641605, 0.24422653019428253, -0.26344922184944153, 0.07922771573066711, 0.8093906044960022, -0.005440838169306517, 0.012751216068863869, 0.0014141385909169912]} +{"t": 1.9615, "q": [-0.13649530708789825, 0.005663797724992037, 0.005062136333435774, 0.3174232244491577, -0.18525704741477966, -0.010317600332200527, -0.08779994398355484, -0.03315955027937889, 0.02403845265507698, 0.33702409267425537, -0.268910676240921, 0.02546302229166031, 0.003254230599850416, 0.009510587900876999, 0.014201579615473747, 0.24649155139923096, 0.24870862066745758, -0.08380568772554398, 0.8370022773742676, -0.008592689409852028, 0.00041944789700210094, -0.007034740410745144, 0.24421453475952148, -0.2634612023830414, 0.07922771573066711, 0.8093906044960022, -0.005440838169306517, 0.012751216068863869, 0.0014021543320268393]} +{"t": 1.9782, "q": [-0.13650383055210114, 0.005646753590553999, 0.005048744846135378, 0.31741470098495483, -0.185265451669693, -0.010303439572453499, -0.08779994398355484, -0.03315955027937889, 0.02401166968047619, 0.3370155692100525, -0.2689065635204315, 0.025470197200775146, 0.003240838646888733, 0.009518132545053959, 0.014206322841346264, 0.24649155139923096, 0.24869664013385773, -0.08385362476110458, 0.8369902968406677, -0.008568720892071724, 0.0004074636672157794, -0.0070826769806444645, 0.24422653019428253, -0.2634372413158417, 0.07922771573066711, 0.809402585029602, -0.005440838169306517, 0.012727247551083565, 0.0014021543320268393]} +{"t": 1.9949, "q": [-0.13649530708789825, 0.0056723193265497684, 0.005048744846135378, 0.3174317479133606, -0.18526534736156464, -0.010289239697158337, -0.08779142796993256, -0.03315103054046631, 0.02401166968047619, 0.3370155692100525, -0.2689065635204315, 0.025470197200775146, 0.003254230599850416, 0.009510587900876999, 0.014201579615473747, 0.24651551246643066, 0.24869664013385773, -0.08384163677692413, 0.8369902968406677, -0.008592689409852028, 0.00041944789700210094, -0.007034740410745144, 0.24421453475952148, -0.2634372413158417, 0.07922771573066711, 0.809402585029602, -0.005440838169306517, 0.012751216068863869, 0.0014021543320268393]} +{"t": 2.0119, "q": [-0.13648678362369537, 0.005680841859430075, 0.005035352893173695, 0.3174232244491577, -0.18525704741477966, -0.010317600332200527, -0.08776585757732391, -0.03316807374358177, 0.02401166968047619, 0.33703261613845825, -0.268910676240921, 0.02546302229166031, 0.003240838646888733, 0.009495444595813751, 0.014220829121768475, 0.2465035319328308, 0.24867267906665802, -0.08382965624332428, 0.8370022773742676, -0.008592689409852028, 0.0004074636672157794, -0.0070587084628641605, 0.24422653019428253, -0.2634372413158417, 0.07922771573066711, 0.8093786239624023, -0.005452822428196669, 0.012739231809973717, 0.0013901700731366873]} +{"t": 2.0286, "q": [-0.13648678362369537, 0.0056723193265497684, 0.005035352893173695, 0.3174317479133606, -0.18526534736156464, -0.010289239697158337, -0.08776585757732391, -0.03315955027937889, 0.02401166968047619, 0.3370155692100525, -0.2689065635204315, 0.025470197200775146, 0.003254230599850416, 0.009502989239990711, 0.014225571416318417, 0.2465035319328308, 0.24867267906665802, -0.08382965624332428, 0.8369902968406677, -0.008592689409852028, 0.00041944789700210094, -0.007034740410745144, 0.24420255422592163, -0.2634612023830414, 0.07922771573066711, 0.809402585029602, -0.005452822428196669, 0.012751216068863869, 0.0013901700731366873]} +{"t": 2.0454, "q": [-0.1364782601594925, 0.005663797724992037, 0.005062136333435774, 0.3174317479133606, -0.18526124954223633, -0.010310519486665726, -0.08775733411312103, -0.033176593482494354, 0.02401166968047619, 0.33702409267425537, -0.26891079545021057, 0.025477444753050804, 0.0032274469267576933, 0.009510552510619164, 0.014220735989511013, 0.24649155139923096, 0.24870862066745758, -0.08380568772554398, 0.8369783163070679, -0.008568720892071724, 0.00041944789700210094, -0.0070587084628641605, 0.24421453475952148, -0.26344922184944153, 0.07922771573066711, 0.8093906044960022, -0.005452822428196669, 0.012739231809973717, 0.0014021543320268393]} +{"t": 2.0622, "q": [-0.1364782601594925, 0.0056723193265497684, 0.005048744846135378, 0.3174317479133606, -0.185265451669693, -0.010303439572453499, -0.08775733411312103, -0.033176593482494354, 0.023998277261853218, 0.33698147535324097, -0.2689150273799896, 0.025484692305326462, 0.0032274469267576933, 0.009518079459667206, 0.014235056936740875, 0.24649155139923096, 0.24867267906665802, -0.08381766825914383, 0.8369902968406677, -0.008556736633181572, 0.00041944789700210094, -0.007034740410745144, 0.24419057369232178, -0.26344922184944153, 0.07922771573066711, 0.8093906044960022, -0.0054887752048671246, 0.012739231809973717, 0.0013781859306618571]} +{"t": 2.079, "q": [-0.13646122813224792, 0.005646753590553999, 0.005035352893173695, 0.3174402713775635, -0.185265451669693, -0.010303439572453499, -0.08774881809949875, -0.03315103054046631, 0.02401166968047619, 0.3370155692100525, -0.2689191401004791, 0.025477517396211624, 0.00321405497379601, 0.009502989239990711, 0.014225571416318417, 0.2465035319328308, 0.24869664013385773, -0.08382965624332428, 0.8370022773742676, -0.008556736633181572, 0.0004074636672157794, -0.0070587084628641605, 0.24421453475952148, -0.26344922184944153, 0.07922771573066711, 0.8094145655632019, -0.005428853910416365, 0.012739231809973717, 0.0014021543320268393]} +{"t": 2.0957, "q": [-0.13645270466804504, 0.005655275192111731, 0.005035352893173695, 0.3174402713775635, -0.18526124954223633, -0.010310519486665726, -0.08774029463529587, -0.03321068361401558, 0.02403845265507698, 0.3370155692100525, -0.2689065635204315, 0.025470197200775146, 0.003240838646888733, 0.009495391510426998, 0.014249563217163086, 0.24651551246643066, 0.24868465960025787, -0.08381766825914383, 0.8369902968406677, -0.008580705150961876, 0.00041944789700210094, -0.007046724669635296, 0.24422653019428253, -0.26344922184944153, 0.07922771573066711, 0.809402585029602, -0.005464806687086821, 0.012751216068863869, 0.0013901700731366873]} +{"t": 2.1124, "q": [-0.13644418120384216, 0.005655275192111731, 0.005035352893173695, 0.3174317479133606, -0.185265451669693, -0.010303439572453499, -0.08773177117109299, -0.033176593482494354, 0.02401166968047619, 0.3370155692100525, -0.26891079545021057, 0.025477444753050804, 0.0032274469267576933, 0.009502989239990711, 0.014225571416318417, 0.24652749300003052, 0.24868465960025787, -0.08381766825914383, 0.8369783163070679, -0.008592689409852028, 0.00041944789700210094, -0.0070587084628641605, 0.24423851072788239, -0.2634612023830414, 0.07922771573066711, 0.8093666434288025, -0.005452822428196669, 0.01276320032775402, 0.0014021543320268393]} +{"t": 2.1291, "q": [-0.1364271342754364, 0.005646753590553999, 0.005048744846135378, 0.3174658417701721, -0.185265451669693, -0.010303439572453499, -0.08774029463529587, -0.033176593482494354, 0.023998277261853218, 0.33703261613845825, -0.268910676240921, 0.02546302229166031, 0.0032274469267576933, 0.009510517120361328, 0.014239892363548279, 0.24651551246643066, 0.24869664013385773, -0.08381766825914383, 0.8369902968406677, -0.008580705150961876, 0.0003954794374294579, -0.007046724669635296, 0.24422653019428253, -0.26344922184944153, 0.07923969626426697, 0.809402585029602, -0.005404885392636061, 0.012775183655321598, 0.0014261228498071432]} +{"t": 2.1459, "q": [-0.1364271342754364, 0.005638231057673693, 0.005048744846135378, 0.3174402713775635, -0.185265451669693, -0.010303439572453499, -0.08773177117109299, -0.033176593482494354, 0.02401166968047619, 0.3370070457458496, -0.2689149081707001, 0.025470269843935966, 0.003254230599850416, 0.009502971544861794, 0.014235150068998337, 0.24649155139923096, 0.24867267906665802, -0.08381766825914383, 0.8370022773742676, -0.00860467366874218, 0.0004074636672157794, -0.007022756151854992, 0.24422653019428253, -0.26344922184944153, 0.07921572774648666, 0.809402585029602, -0.005440838169306517, 0.01276320032775402, 0.0014141385909169912]} +{"t": 2.1626, "q": [-0.1364271342754364, 0.005646753590553999, 0.005021960940212011, 0.3174317479133606, -0.18526124954223633, -0.010310519486665726, -0.08769768476486206, -0.03315955027937889, 0.02401166968047619, 0.33703261613845825, -0.268910676240921, 0.02546302229166031, 0.0032006630208343267, 0.009480265900492668, 0.014259234070777893, 0.24649155139923096, 0.24869664013385773, -0.08381766825914383, 0.8370262384414673, -0.008580705150961876, 0.000431432097684592, -0.007046724669635296, 0.24421453475952148, -0.26347318291664124, 0.07921572774648666, 0.809402585029602, -0.005440838169306517, 0.012751216068863869, 0.0014261228498071432]} +{"t": 2.1794, "q": [-0.13641861081123352, 0.005646753590553999, 0.005008568987250328, 0.3174402713775635, -0.18527396023273468, -0.010303477756679058, -0.0876806378364563, -0.033176593482494354, 0.023998277261853218, 0.33698999881744385, -0.26891079545021057, 0.025477444753050804, 0.003240838646888733, 0.009472702629864216, 0.014264070428907871, 0.2465035319328308, 0.24868465960025787, -0.08382965624332428, 0.8370022773742676, -0.008568720892071724, 0.0004074636672157794, -0.007046724669635296, 0.24421453475952148, -0.2634372413158417, 0.07922771573066711, 0.8093906044960022, -0.005440838169306517, 0.012775183655321598, 0.0014261228498071432]} +{"t": 2.1962, "q": [-0.13643565773963928, 0.005646753590553999, 0.004995177034288645, 0.3174317479133606, -0.185265451669693, -0.010303439572453499, -0.08766359090805054, -0.03315955027937889, 0.023998277261853218, 0.3370070457458496, -0.2689065635204315, 0.025470197200775146, 0.003254230599850416, 0.009487828239798546, 0.01425439864397049, 0.2465035319328308, 0.24872061610221863, -0.08382965624332428, 0.8369902968406677, -0.008580705150961876, 0.0004074636672157794, -0.0070587084628641605, 0.24422653019428253, -0.26344922184944153, 0.07922771573066711, 0.8093906044960022, -0.005416869651526213, 0.01276320032775402, 0.0014381069922819734]} +{"t": 2.2129, "q": [-0.1364271342754364, 0.005646753590553999, 0.005008568987250328, 0.31744879484176636, -0.18526534736156464, -0.010289239697158337, -0.08766359090805054, -0.03315103054046631, 0.023998277261853218, 0.33699852228164673, -0.2689065635204315, 0.025470197200775146, 0.00321405497379601, 0.009457577019929886, 0.014273741282522678, 0.24649155139923096, 0.24869664013385773, -0.08384163677692413, 0.8369783163070679, -0.00854475237429142, 0.000431432097684592, -0.007046724669635296, 0.24419057369232178, -0.2634372413158417, 0.07922771573066711, 0.8094265460968018, -0.005452822428196669, 0.012751216068863869, 0.0013901700731366873]} +{"t": 2.2297, "q": [-0.13644418120384216, 0.005621186923235655, 0.005021960940212011, 0.3174402713775635, -0.185265451669693, -0.010303439572453499, -0.08765507489442825, -0.033176593482494354, 0.02401166968047619, 0.33698147535324097, -0.2689065635204315, 0.025470197200775146, 0.003240838646888733, 0.009495391510426998, 0.014249563217163086, 0.24651551246643066, 0.24867267906665802, -0.08382965624332428, 0.8369902968406677, -0.008568720892071724, 0.00041944789700210094, -0.0070587084628641605, 0.24422653019428253, -0.2634372413158417, 0.07920374721288681, 0.8094145655632019, -0.005440838169306517, 0.01276320032775402, 0.0014021543320268393]} +{"t": 2.2466, "q": [-0.1364271342754364, 0.005646753590553999, 0.005008568987250328, 0.31745731830596924, -0.18526114523410797, -0.010296320542693138, -0.08761245757341385, -0.033176593482494354, 0.02401166968047619, 0.33698147535324097, -0.268910676240921, 0.02546302229166031, 0.003240838646888733, 0.009495391510426998, 0.014249563217163086, 0.2465035319328308, 0.24868465960025787, -0.08381766825914383, 0.8370022773742676, -0.008556736633181572, 0.00041944789700210094, -0.007034740410745144, 0.24420255422592163, -0.2634372413158417, 0.07921572774648666, 0.8094265460968018, -0.0054887752048671246, 0.01276320032775402, 0.0013901700731366873]} +{"t": 2.2633, "q": [-0.13641008734703064, 0.005638231057673693, 0.005035352893173695, 0.3174658417701721, -0.18526975810527802, -0.010310557670891285, -0.08761245757341385, -0.033176593482494354, 0.02401166968047619, 0.3369729518890381, -0.268910676240921, 0.02546302229166031, 0.0032274469267576933, 0.009472702629864216, 0.014264070428907871, 0.24653948843479156, 0.24868465960025787, -0.08380568772554398, 0.8370022773742676, -0.008568720892071724, 0.00041944789700210094, -0.007046724669635296, 0.24419057369232178, -0.2634372413158417, 0.07922771573066711, 0.8094265460968018, -0.005476790945976973, 0.012751216068863869, 0.0014021543320268393]} +{"t": 2.2801, "q": [-0.13641008734703064, 0.005570054519921541, 0.005021960940212011, 0.31749141216278076, -0.18527387082576752, -0.010289269499480724, -0.08759541809558868, -0.033185116946697235, 0.02401166968047619, 0.3369729518890381, -0.2689065635204315, 0.025470197200775146, 0.003254230599850416, 0.009434924460947514, 0.014269091188907623, 0.24653948843479156, 0.24869664013385773, -0.08384163677692413, 0.8370142579078674, -0.008592689409852028, 0.0004074636672157794, -0.007046724669635296, 0.24416659772396088, -0.2634612023830414, 0.07922771573066711, 0.8094145655632019, -0.005428853910416365, 0.01276320032775402, 0.0014141385909169912]} +{"t": 2.2969, "q": [-0.1364271342754364, 0.005518921185284853, 0.005008568987250328, 0.3174658417701721, -0.18527396023273468, -0.010303477756679058, -0.08756133168935776, -0.03321068361401558, 0.02401166968047619, 0.33699852228164673, -0.2689149081707001, 0.025470269843935966, 0.0031872710678726435, 0.009419781155884266, 0.014288339763879776, 0.24652749300003052, 0.24868465960025787, -0.08382965624332428, 0.8370382189750671, -0.008592689409852028, 0.0004074636672157794, -0.007034740410745144, 0.24415461719036102, -0.2634612023830414, 0.07921572774648666, 0.809402585029602, -0.005452822428196669, 0.012775183655321598, 0.0014261228498071432]} +{"t": 2.3137, "q": [-0.13641008734703064, 0.005459266249090433, 0.005048744846135378, 0.317474365234375, -0.18526965379714966, -0.010296358726918697, -0.08750167489051819, -0.03322772681713104, 0.02402506023645401, 0.33693888783454895, -0.2688983380794525, 0.025484563782811165, 0.003254230599850416, 0.00935921911150217, 0.014365311712026596, 0.24653948843479156, 0.24869664013385773, -0.08384163677692413, 0.8370022773742676, -0.00854475237429142, 0.0004074636672157794, -0.0070587084628641605, 0.24415461719036102, -0.2634372413158417, 0.07920374721288681, 0.809402585029602, -0.005440838169306517, 0.01276320032775402, 0.0013901700731366873]} +{"t": 2.3304, "q": [-0.13641861081123352, 0.005382567178457975, 0.005048744846135378, 0.3174658417701721, -0.185265451669693, -0.010303439572453499, -0.08748462796211243, -0.03327886015176773, 0.02401166968047619, 0.3369218409061432, -0.2689068019390106, 0.02549906075000763, 0.0032676225528120995, 0.009313818998634815, 0.014422988519072533, 0.24651551246643066, 0.24869664013385773, -0.08382965624332428, 0.8370262384414673, -0.00860467366874218, 0.0004074636672157794, -0.007034740410745144, 0.24415461719036102, -0.2634252607822418, 0.07922771573066711, 0.8094265460968018, -0.005464806687086821, 0.012775183655321598, 0.0014141385909169912]} +{"t": 2.3471, "q": [-0.13636748492717743, 0.005339957308024168, 0.005075528286397457, 0.3174658417701721, -0.18526965379714966, -0.010296358726918697, -0.08740793168544769, -0.033304426819086075, 0.02401166968047619, 0.3369218409061432, -0.2688983380794525, 0.025484563782811165, 0.0032274469267576933, 0.009290925227105618, 0.014581027440726757, 0.24649155139923096, 0.24869664013385773, -0.08381766825914383, 0.8370382189750671, -0.008580705150961876, 0.00041944789700210094, -0.007046724669635296, 0.24415461719036102, -0.2634372413158417, 0.07922771573066711, 0.809402585029602, -0.005476790945976973, 0.012775183655321598, 0.0014021543320268393]} +{"t": 2.3638, "q": [-0.13628226518630981, 0.005297346506267786, 0.005062136333435774, 0.3174402713775635, -0.18527807295322418, -0.010282188653945923, -0.08732271194458008, -0.033364083617925644, 0.023984884843230247, 0.3368792235851288, -0.26891079545021057, 0.025477444753050804, 0.003173879347741604, 0.009336067363619804, 0.01469561830163002, 0.24646757543087006, 0.24870862066745758, -0.08381766825914383, 0.8370621800422668, -0.008592689409852028, 0.0004074636672157794, -0.0070587084628641605, 0.24416659772396088, -0.2634612023830414, 0.07922771573066711, 0.8093906044960022, -0.005440838169306517, 0.012751216068863869, 0.0013901700731366873]} +{"t": 2.3806, "q": [-0.13625669479370117, 0.00528882397338748, 0.005048744846135378, 0.31741470098495483, -0.18526114523410797, -0.010296320542693138, -0.08726305514574051, -0.0333385169506073, 0.023984884843230247, 0.3368280827999115, -0.26890257000923157, 0.025491813197731972, 0.0032006630208343267, 0.00936606153845787, 0.014839005656540394, 0.24646757543087006, 0.24870862066745758, -0.08382965624332428, 0.8370262384414673, -0.008592689409852028, 0.00041944789700210094, -0.007046724669635296, 0.24416659772396088, -0.2634372413158417, 0.07922771573066711, 0.809402585029602, -0.005452822428196669, 0.01276320032775402, 0.0014141385909169912]} +{"t": 2.3973, "q": [-0.1362055540084839, 0.005314390640705824, 0.005035352893173695, 0.31740617752075195, -0.18526114523410797, -0.010296320542693138, -0.08722896873950958, -0.033364083617925644, 0.023944709450006485, 0.3367939889431, -0.2688983380794525, 0.025484563782811165, 0.0031872710678726435, 0.009365876205265522, 0.014963421039283276, 0.2464795559644699, 0.24872061610221863, -0.08378171920776367, 0.8370382189750671, -0.008556736633181572, 0.00041944789700210094, -0.007046724669635296, 0.24416659772396088, -0.2634252607822418, 0.07923969626426697, 0.8094145655632019, -0.005440838169306517, 0.012775183655321598, 0.0014141385909169912]} +{"t": 2.414, "q": [-0.13617999851703644, 0.00532291317358613, 0.005035352893173695, 0.31741470098495483, -0.18527387082576752, -0.010289269499480724, -0.08719487488269806, -0.03332147002220154, 0.023931317031383514, 0.3367854654788971, -0.2689068019390106, 0.02549906075000763, 0.0031470954418182373, 0.009365717880427837, 0.01506869588047266, 0.24651551246643066, 0.24869664013385773, -0.08381766825914383, 0.8370262384414673, -0.008556736633181572, 0.0004074636672157794, -0.0070587084628641605, 0.24417859315872192, -0.2634252607822418, 0.07920374721288681, 0.8094145655632019, -0.005440838169306517, 0.012775183655321598, 0.0014381069922819734]} +{"t": 2.4308, "q": [-0.13605216145515442, 0.005374045576900244, 0.005008568987250328, 0.31740617752075195, -0.18526965379714966, -0.010296358726918697, -0.08707556873559952, -0.033304426819086075, 0.023944709450006485, 0.33681103587150574, -0.26891079545021057, 0.025477444753050804, 0.0031872710678726435, 0.00935027003288269, 0.015298470854759216, 0.24651551246643066, 0.24868465960025787, -0.08380568772554398, 0.8370262384414673, -0.00854475237429142, 0.000431432097684592, -0.0070587084628641605, 0.24416659772396088, -0.2634372413158417, 0.07922771573066711, 0.8094145655632019, -0.005452822428196669, 0.012775183655321598, 0.0014261228498071432]} +{"t": 2.4475, "q": [-0.13593284785747528, 0.005425177980214357, 0.004995177034288645, 0.31740617752075195, -0.18526965379714966, -0.010296358726918697, -0.08697330206632614, -0.03327886015176773, 0.023891141638159752, 0.3367854654788971, -0.26891079545021057, 0.025477444753050804, 0.0031872710678726435, 0.009334893897175789, 0.01548039447516203, 0.24649155139923096, 0.24866068363189697, -0.08381766825914383, 0.8370861411094666, -0.008580705150961876, 0.0004074636672157794, -0.007046724669635296, 0.24417859315872192, -0.26344922184944153, 0.07922771573066711, 0.809402585029602, -0.005416869651526213, 0.012775183655321598, 0.0014261228498071432]} +{"t": 2.4642, "q": [-0.13582205772399902, 0.005467788781970739, 0.0049817850813269615, 0.3173806369304657, -0.185265451669693, -0.010303439572453499, -0.08687955886125565, -0.03326181694865227, 0.02387774921953678, 0.3367428779602051, -0.26890257000923157, 0.025491813197731972, 0.003133703488856554, 0.00936488714069128, 0.015623780898749828, 0.24649155139923096, 0.24864870309829712, -0.08381766825914383, 0.8370741605758667, -0.008556736633181572, 0.00041944789700210094, -0.0070587084628641605, 0.24419057369232178, -0.26344922184944153, 0.07921572774648666, 0.8094265460968018, -0.005440838169306517, 0.01278716791421175, 0.0013901700731366873]} +{"t": 2.4811, "q": [-0.13571980595588684, 0.005467788781970739, 0.004941609688103199, 0.31735506653785706, -0.18526965379714966, -0.010296358726918697, -0.08678581565618515, -0.03325329348444939, 0.02386435866355896, 0.3367258310317993, -0.26890257000923157, 0.025491813197731972, 0.003133703488856554, 0.009425120428204536, 0.015747856348752975, 0.2464555948972702, 0.24868465960025787, -0.08382965624332428, 0.8370861411094666, -0.008508799597620964, 0.00041944789700210094, -0.007046724669635296, 0.24416659772396088, -0.2634252607822418, 0.07920374721288681, 0.8094145655632019, -0.005476790945976973, 0.01278716791421175, 0.0013781859306618571]} +{"t": 2.4979, "q": [-0.13561753928661346, 0.005459266249090433, 0.004955001175403595, 0.3173380196094513, -0.18526965379714966, -0.010296358726918697, -0.08670911937952042, -0.03327034041285515, 0.02383757382631302, 0.3367258310317993, -0.2689065635204315, 0.025470197200775146, 0.003133703488856554, 0.009508074261248112, 0.01582873798906803, 0.24649155139923096, 0.24870862066745758, -0.08382965624332428, 0.8370861411094666, -0.008556736633181572, 0.0003834952076431364, -0.007046724669635296, 0.24416659772396088, -0.2634372413158417, 0.07921572774648666, 0.8093906044960022, -0.005476790945976973, 0.01276320032775402, 0.0014261228498071432]} +{"t": 2.5146, "q": [-0.13543856143951416, 0.005476311314851046, 0.004955001175403595, 0.3173380196094513, -0.18527387082576752, -0.010289269499480724, -0.08650458604097366, -0.03326181694865227, 0.02383757382631302, 0.3367258310317993, -0.26890257000923157, 0.025491813197731972, 0.0031470954418182373, 0.009568233974277973, 0.016000667586922646, 0.24644361436367035, 0.24868465960025787, -0.08379369974136353, 0.8370741605758667, -0.008556736633181572, 0.00041944789700210094, -0.007034740410745144, 0.24414263665676117, -0.2634372413158417, 0.07922771573066711, 0.8094265460968018, -0.005452822428196669, 0.01278716791421175, 0.0014021543320268393]} +{"t": 2.5314, "q": [-0.13531926274299622, 0.005459266249090433, 0.004955001175403595, 0.3173465430736542, -0.18526965379714966, -0.010296358726918697, -0.0864449292421341, -0.03326181694865227, 0.02385096624493599, 0.33667469024658203, -0.2689065635204315, 0.025470197200775146, 0.0031470954418182373, 0.009598415344953537, 0.016019638627767563, 0.24641963839530945, 0.24868465960025787, -0.08381766825914383, 0.8370861411094666, -0.008568720892071724, 0.0004074636672157794, -0.0070587084628641605, 0.24415461719036102, -0.26344922184944153, 0.07923969626426697, 0.809402585029602, -0.005464806687086821, 0.01276320032775402, 0.0014261228498071432]} +{"t": 2.5481, "q": [-0.13517437875270844, 0.005467788781970739, 0.004928217735141516, 0.3173721134662628, -0.18527817726135254, -0.01029638759791851, -0.08626596629619598, -0.03327034041285515, 0.023810790851712227, 0.3367002606391907, -0.26891079545021057, 0.025477444753050804, 0.003133703488856554, 0.009583253413438797, 0.016058003529906273, 0.2464795559644699, 0.24868465960025787, -0.08381766825914383, 0.8370741605758667, -0.008556736633181572, 0.00041944789700210094, -0.007034740410745144, 0.24415461719036102, -0.2634612023830414, 0.07922771573066711, 0.8094265460968018, -0.005416869651526213, 0.012775183655321598, 0.0014261228498071432]} +{"t": 2.5649, "q": [-0.1350039392709732, 0.005459266249090433, 0.004888041876256466, 0.3173806369304657, -0.18526965379714966, -0.010296358726918697, -0.08613813668489456, -0.03326181694865227, 0.023784006014466286, 0.3367002606391907, -0.26891079545021057, 0.025477444753050804, 0.0031470954418182373, 0.009575608186423779, 0.01612025499343872, 0.24649155139923096, 0.24868465960025787, -0.08384163677692413, 0.8370741605758667, -0.008556736633181572, 0.00041944789700210094, -0.0070587084628641605, 0.24413065612316132, -0.2634252607822418, 0.07922771573066711, 0.8094145655632019, -0.005452822428196669, 0.012799152173101902, 0.0014261228498071432]} +{"t": 2.5816, "q": [-0.13492724299430847, 0.005476311314851046, 0.004888041876256466, 0.31736359000205994, -0.185265451669693, -0.010303439572453499, -0.08604439347982407, -0.03323625028133392, 0.023784006014466286, 0.33666616678237915, -0.26891079545021057, 0.025477444753050804, 0.003173879347741604, 0.009552929550409317, 0.01613473705947399, 0.24649155139923096, 0.24869664013385773, -0.08382965624332428, 0.8370861411094666, -0.008568720892071724, 0.000431432097684592, -0.007046724669635296, 0.24419057369232178, -0.26347318291664124, 0.07921572774648666, 0.809402585029602, -0.005452822428196669, 0.01278716791421175, 0.0014141385909169912]} +{"t": 2.5983, "q": [-0.13488462567329407, 0.005467788781970739, 0.004847866017371416, 0.3173976540565491, -0.18527817726135254, -0.01029638759791851, -0.08595917373895645, -0.03326181694865227, 0.023784006014466286, 0.3366917371749878, -0.2689150273799896, 0.025484692305326462, 0.003173879347741604, 0.009515132755041122, 0.016158876940608025, 0.24651551246643066, 0.24868465960025787, -0.08382965624332428, 0.8370861411094666, -0.008568720892071724, 0.00044341632747091353, -0.007046724669635296, 0.24417859315872192, -0.26344922184944153, 0.07919175922870636, 0.8094145655632019, -0.005464806687086821, 0.01276320032775402, 0.0014261228498071432]} +{"t": 2.6152, "q": [-0.13481645286083221, 0.005476311314851046, 0.004874649923294783, 0.3174317479133606, -0.185265451669693, -0.010303439572453499, -0.08582281321287155, -0.03326181694865227, 0.023797398433089256, 0.3366832137107849, -0.2689065635204315, 0.025470197200775146, 0.003133703488856554, 0.009477248415350914, 0.0162404365837574, 0.24649155139923096, 0.24866068363189697, -0.08385362476110458, 0.8370981216430664, -0.008580705150961876, 0.00041944789700210094, -0.007046724669635296, 0.24416659772396088, -0.26344922184944153, 0.07922771573066711, 0.809402585029602, -0.005476790945976973, 0.01276320032775402, 0.0014141385909169912]} +{"t": 2.632, "q": [-0.13479940593242645, 0.005442222114652395, 0.00483447453007102, 0.3174402713775635, -0.18527396023273468, -0.010303477756679058, -0.0857972502708435, -0.03326181694865227, 0.023770615458488464, 0.33665764331817627, -0.26891079545021057, 0.025477444753050804, 0.003133703488856554, 0.009439423680305481, 0.01628371700644493, 0.24652749300003052, 0.24868465960025787, -0.08384163677692413, 0.8370981216430664, -0.008592689409852028, 0.0004074636672157794, -0.007046724669635296, 0.24420255422592163, -0.26344922184944153, 0.07922771573066711, 0.8094145655632019, -0.0054887752048671246, 0.012775183655321598, 0.0014021543320268393]} +{"t": 2.6487, "q": [-0.1347312331199646, 0.005416656378656626, 0.004847866017371416, 0.3174828886985779, -0.18527387082576752, -0.010289269499480724, -0.08572055399417877, -0.03327886015176773, 0.023770615458488464, 0.33670878410339355, -0.26890257000923157, 0.025491813197731972, 0.0031470954418182373, 0.009462044574320316, 0.016307514160871506, 0.2465035319328308, 0.24869664013385773, -0.08382965624332428, 0.8371101021766663, -0.008580705150961876, 0.00041944789700210094, -0.007034740410745144, 0.24422653019428253, -0.2634612023830414, 0.07920374721288681, 0.8094265460968018, -0.0055367122404277325, 0.012775183655321598, 0.0013901700731366873]} +{"t": 2.6656, "q": [-0.13470566272735596, 0.005416656378656626, 0.004847866017371416, 0.3174828886985779, -0.18526965379714966, -0.010296358726918697, -0.08570350706577301, -0.03327886015176773, 0.023784006014466286, 0.3367002606391907, -0.2689065635204315, 0.025470197200775146, 0.003133703488856554, 0.009499766863882542, 0.016331221908330917, 0.2465035319328308, 0.24870862066745758, -0.08382965624332428, 0.8371101021766663, -0.008580705150961876, 0.00041944789700210094, -0.007046724669635296, 0.24423851072788239, -0.26344922184944153, 0.07922771573066711, 0.8094145655632019, -0.0054887752048671246, 0.012775183655321598, 0.0014261228498071432]} +{"t": 2.6823, "q": [-0.13465453684329987, 0.005382567178457975, 0.004861257970333099, 0.3174828886985779, -0.18526965379714966, -0.010296358726918697, -0.0856608971953392, -0.033312950283288956, 0.023797398433089256, 0.3367002606391907, -0.2689149081707001, 0.025470269843935966, 0.0031203117687255144, 0.00955259334295988, 0.01634524017572403, 0.2464795559644699, 0.24872061610221863, -0.08380568772554398, 0.8371101021766663, -0.008568720892071724, 0.0003954794374294579, -0.0070587084628641605, 0.24423851072788239, -0.2634372413158417, 0.07925168424844742, 0.8094145655632019, -0.0055127437226474285, 0.01278716791421175, 0.0013901700731366873]} +{"t": 2.6991, "q": [-0.13461191952228546, 0.005374045576900244, 0.00483447453007102, 0.317474365234375, -0.185265451669693, -0.010303439572453499, -0.08563532680273056, -0.033304426819086075, 0.023784006014466286, 0.33667469024658203, -0.2689068019390106, 0.02549906075000763, 0.0031604873947799206, 0.009582722559571266, 0.016383303329348564, 0.24649155139923096, 0.24868465960025787, -0.08380568772554398, 0.8371101021766663, -0.008556736633181572, 0.0004074636672157794, -0.007046724669635296, 0.2442624717950821, -0.26344922184944153, 0.07925168424844742, 0.809402585029602, -0.005416869651526213, 0.012775183655321598, 0.0014261228498071432]} +{"t": 2.7159, "q": [-0.13461191952228546, 0.0054081338457763195, 0.004807690624147654, 0.3174828886985779, -0.1852695643901825, -0.010282150469720364, -0.08562681078910828, -0.03327886015176773, 0.023770615458488464, 0.3366832137107849, -0.2689023017883301, 0.025462931022047997, 0.003133703488856554, 0.009635383263230324, 0.016483383253216743, 0.2464795559644699, 0.24868465960025787, -0.08380568772554398, 0.8371101021766663, -0.008556736633181572, 0.00041944789700210094, -0.007034740410745144, 0.2442624717950821, -0.2634252607822418, 0.07923969626426697, 0.8094145655632019, -0.005452822428196669, 0.01278716791421175, 0.0014021543320268393]} +{"t": 2.7326, "q": [-0.1345948725938797, 0.0054081338457763195, 0.00479429867118597, 0.31749141216278076, -0.18526965379714966, -0.010296358726918697, -0.0856182873249054, -0.03326181694865227, 0.023743830621242523, 0.3367258310317993, -0.2689023017883301, 0.025462931022047997, 0.0031470954418182373, 0.009657718241214752, 0.01665058359503746, 0.2465035319328308, 0.24869664013385773, -0.08380568772554398, 0.8371101021766663, -0.008592689409852028, 0.0004074636672157794, -0.0070826769806444645, 0.24427446722984314, -0.26344922184944153, 0.07925168424844742, 0.8094145655632019, -0.0055007594637572765, 0.012775183655321598, 0.0014141385909169912]} +{"t": 2.7493, "q": [-0.13460339605808258, 0.0054507446475327015, 0.004767514765262604, 0.31744879484176636, -0.18526965379714966, -0.010296358726918697, -0.08560976386070251, -0.03325329348444939, 0.02370365522801876, 0.33667469024658203, -0.2689191401004791, 0.025477517396211624, 0.0032274469267576933, 0.009747741743922234, 0.016956022009253502, 0.24652749300003052, 0.24869664013385773, -0.08380568772554398, 0.8371220827102661, -0.008568720892071724, 0.0004074636672157794, -0.007046724669635296, 0.2442624717950821, -0.26344922184944153, 0.07922771573066711, 0.809402585029602, -0.005452822428196669, 0.01278716791421175, 0.0014381069922819734]} +{"t": 2.7662, "q": [-0.13462896645069122, 0.005476311314851046, 0.004700555466115475, 0.3174402713775635, -0.18527396023273468, -0.010303477756679058, -0.0856182873249054, -0.03321920707821846, 0.023663479834794998, 0.33665764331817627, -0.2689149081707001, 0.025470269843935966, 0.003254230599850416, 0.00981510616838932, 0.017266379669308662, 0.2464795559644699, 0.24868465960025787, -0.08380568772554398, 0.8371220827102661, -0.008580705150961876, 0.0004074636672157794, -0.007046724669635296, 0.24423851072788239, -0.2634252607822418, 0.07922771573066711, 0.809402585029602, -0.005428853910416365, 0.01278716791421175, 0.0014141385909169912]} +{"t": 2.783, "q": [-0.13460339605808258, 0.0054933554492890835, 0.004646987654268742, 0.31741470098495483, -0.18526965379714966, -0.010296358726918697, -0.08562681078910828, -0.03321068361401558, 0.023596519604325294, 0.3366832137107849, -0.2689149081707001, 0.025470269843935966, 0.003254230599850416, 0.009874972514808178, 0.01757190190255642, 0.24646757543087006, 0.24870862066745758, -0.08381766825914383, 0.8371220827102661, -0.008556736633181572, 0.00041944789700210094, -0.007046724669635296, 0.24422653019428253, -0.26344922184944153, 0.07922771573066711, 0.809402585029602, -0.005452822428196669, 0.01278716791421175, 0.0013901700731366873]} +{"t": 2.7997, "q": [-0.13462896645069122, 0.0054933554492890835, 0.0045264605432748795, 0.31741470098495483, -0.185265451669693, -0.010303439572453499, -0.08563532680273056, -0.0332021601498127, 0.02351616881787777, 0.33662354946136475, -0.2689149081707001, 0.025470269843935966, 0.0032676225528120995, 0.010002749040722847, 0.017929472029209137, 0.2464555948972702, 0.24869664013385773, -0.08381766825914383, 0.8371220827102661, -0.008532768115401268, 0.00041944789700210094, -0.007034740410745144, 0.24423851072788239, -0.2634372413158417, 0.07925168424844742, 0.809402585029602, -0.005476790945976973, 0.01278716791421175, 0.0013901700731366873]} +{"t": 2.8164, "q": [-0.13464601337909698, 0.005544487852603197, 0.00445950124412775, 0.31731244921684265, -0.185265451669693, -0.010303439572453499, -0.08562681078910828, -0.03321920707821846, 0.023422425612807274, 0.3365553915500641, -0.26891079545021057, 0.025477444753050804, 0.0033077981788665056, 0.010243894532322884, 0.018195636570453644, 0.2464795559644699, 0.24867267906665802, -0.08381766825914383, 0.8371220827102661, -0.008592689409852028, 0.00041944789700210094, -0.007046724669635296, 0.244286447763443, -0.2634372413158417, 0.07922771573066711, 0.809402585029602, -0.005452822428196669, 0.012775183655321598, 0.0013901700731366873]} +{"t": 2.8332, "q": [-0.1346801072359085, 0.005527443718165159, 0.004379149992018938, 0.31726983189582825, -0.18526124954223633, -0.010310519486665726, -0.0856182873249054, -0.03321920707821846, 0.023301897570490837, 0.33647868037223816, -0.268910676240921, 0.02546302229166031, 0.0033881496638059616, 0.010635904036462307, 0.018498990684747696, 0.24646757543087006, 0.24867267906665802, -0.08382965624332428, 0.837134063243866, -0.008580705150961876, 0.00044341632747091353, -0.0070587084628641605, 0.244286447763443, -0.26344922184944153, 0.07922771573066711, 0.8094265460968018, -0.005464806687086821, 0.01278716791421175, 0.0014021543320268393]} +{"t": 2.8499, "q": [-0.13466306030750275, 0.005604142788797617, 0.004312190227210522, 0.31722721457481384, -0.18526965379714966, -0.010296358726918697, -0.08560976386070251, -0.03321068361401558, 0.023248331621289253, 0.3363679051399231, -0.2689064145088196, 0.02545575611293316, 0.0034015413839370012, 0.011088011786341667, 0.01884901337325573, 0.2464795559644699, 0.24867267906665802, -0.08386560529470444, 0.8371460437774658, -0.008592689409852028, 0.00041944789700210094, -0.0070587084628641605, 0.2442624717950821, -0.2634612023830414, 0.07922771573066711, 0.8094145655632019, -0.005428853910416365, 0.01278716791421175, 0.0014261228498071432]} +{"t": 2.8666, "q": [-0.13469713926315308, 0.005646753590553999, 0.004245230928063393, 0.3171590566635132, -0.185265451669693, -0.010303439572453499, -0.08559271693229675, -0.0332021601498127, 0.023114411160349846, 0.33629971742630005, -0.268910676240921, 0.02546302229166031, 0.003347973804920912, 0.011690974235534668, 0.019236205145716667, 0.24641963839530945, 0.24869664013385773, -0.08381766825914383, 0.837134063243866, -0.008568720892071724, 0.00041944789700210094, -0.0070587084628641605, 0.24422653019428253, -0.2634252607822418, 0.07922771573066711, 0.8094265460968018, -0.005452822428196669, 0.01278716791421175, 0.0014141385909169912]} +{"t": 2.8833, "q": [-0.13470566272735596, 0.0056723193265497684, 0.004138095770031214, 0.3171420097351074, -0.18527406454086304, -0.010317676700651646, -0.08558420091867447, -0.03316807374358177, 0.022980492562055588, 0.33624857664108276, -0.2689149081707001, 0.025470269843935966, 0.0034149333368986845, 0.012346831150352955, 0.019589729607105255, 0.246359720826149, 0.24867267906665802, -0.08382965624332428, 0.837134063243866, -0.008592689409852028, 0.0003954794374294579, -0.0070587084628641605, 0.24416659772396088, -0.26344922184944153, 0.07922771573066711, 0.8094145655632019, -0.005452822428196669, 0.01278716791421175, 0.0013901700731366873]} +{"t": 2.9002, "q": [-0.13470566272735596, 0.005680841859430075, 0.004071136470884085, 0.317099392414093, -0.18526124954223633, -0.010310519486665726, -0.08557567745447159, -0.03315955027937889, 0.022940317168831825, 0.33619746565818787, -0.2689190208911896, 0.02546309493482113, 0.0034149333368986845, 0.013228699564933777, 0.020027298480272293, 0.24628780782222748, 0.24866068363189697, -0.08385362476110458, 0.8371220827102661, -0.008592689409852028, 0.0004074636672157794, -0.007046724669635296, 0.24414263665676117, -0.26344922184944153, 0.07920374721288681, 0.809402585029602, -0.0054887752048671246, 0.012775183655321598, 0.0014021543320268393]} +{"t": 2.9169, "q": [-0.13473975658416748, 0.0057149301283061504, 0.003937217406928539, 0.3170738220214844, -0.185265451669693, -0.010303439572453499, -0.08557567745447159, -0.03315103054046631, 0.02284657396376133, 0.3361378014087677, -0.2689149081707001, 0.025470269843935966, 0.003481892868876457, 0.014027614146471024, 0.0203545019030571, 0.24619193375110626, 0.24867267906665802, -0.08386560529470444, 0.8371220827102661, -0.008592689409852028, 0.00041944789700210094, -0.0070706927217543125, 0.24416659772396088, -0.26344922184944153, 0.07922771573066711, 0.809402585029602, -0.005476790945976973, 0.01278716791421175, 0.0014021543320268393]} +{"t": 2.9336, "q": [-0.1347312331199646, 0.005749018397182226, 0.003736338810995221, 0.317099392414093, -0.18526965379714966, -0.010296358726918697, -0.08549897372722626, -0.03314250707626343, 0.02265908755362034, 0.3361463248729706, -0.26892325282096863, 0.025470342487096786, 0.0037497307639569044, 0.014969591982662678, 0.020799744874238968, 0.2461799532175064, 0.24866068363189697, -0.08382965624332428, 0.8371580243110657, -0.008616657927632332, 0.0003954794374294579, -0.007046724669635296, 0.24415461719036102, -0.2634252607822418, 0.07925168424844742, 0.809402585029602, -0.005476790945976973, 0.01278716791421175, 0.0014261228498071432]} +{"t": 2.9505, "q": [-0.13473975658416748, 0.005766062531620264, 0.0036292036529630423, 0.317099392414093, -0.18526124954223633, -0.010310519486665726, -0.08543932437896729, -0.03313398361206055, 0.022431425750255585, 0.3361378014087677, -0.2689149081707001, 0.025470269843935966, 0.003910433501005173, 0.015948956832289696, 0.021248381584882736, 0.24625186622142792, 0.24868465960025787, -0.08384163677692413, 0.8371580243110657, -0.008592689409852028, 0.00041944789700210094, -0.007046724669635296, 0.24411866068840027, -0.2634372413158417, 0.07928763329982758, 0.8094265460968018, -0.005428853910416365, 0.012775183655321598, 0.0014980281703174114]} +{"t": 2.9672, "q": [-0.13476532697677612, 0.00577458506450057, 0.003441717242822051, 0.3171590566635132, -0.18526124954223633, -0.010310519486665726, -0.08541375398635864, -0.03313398361206055, 0.022284114733338356, 0.33612075448036194, -0.2689190208911896, 0.02546309493482113, 0.0041247038170695305, 0.017003167420625687, 0.021848054602742195, 0.24631178379058838, 0.24866068363189697, -0.08386560529470444, 0.8371700644493103, -0.008592689409852028, 0.00041944789700210094, -0.007034740410745144, 0.24417859315872192, -0.2632574737071991, 0.07938350737094879, 0.809402585029602, -0.005464806687086821, 0.01278716791421175, 0.0015459650894626975]} +{"t": 2.984, "q": [-0.13476532697677612, 0.005800151731818914, 0.003361365757882595, 0.3172101676464081, -0.18525704741477966, -0.010317600332200527, -0.08532853424549103, -0.033116940408945084, 0.022150196135044098, 0.3361378014087677, -0.26892325282096863, 0.025470342487096786, 0.004258622881025076, 0.01820739544928074, 0.022607263177633286, 0.2463836818933487, 0.24863672256469727, -0.08384163677692413, 0.8371460437774658, -0.00860467366874218, 0.0004074636672157794, -0.007046724669635296, 0.24420255422592163, -0.26301780343055725, 0.0794554129242897, 0.8094505071640015, -0.005452822428196669, 0.012823120690882206, 0.0016298546688631177]} +{"t": 3.0012, "q": [-0.134773850440979, 0.00577458506450057, 0.003334582084789872, 0.31722721457481384, -0.18525704741477966, -0.010317600332200527, -0.08532001078128815, -0.03313398361206055, 0.022150196135044098, 0.3361463248729706, -0.2689147889614105, 0.02545584738254547, 0.004272014833986759, 0.019140414893627167, 0.023187357932329178, 0.2464795559644699, 0.24864870309829712, -0.08384163677692413, 0.8371460437774658, -0.008592689409852028, 0.00041944789700210094, -0.007046724669635296, 0.24429842829704285, -0.2626822292804718, 0.07952731847763062, 0.809486448764801, -0.005476790945976973, 0.012823120690882206, 0.0016658073291182518]} +{"t": 3.018, "q": [-0.13479940593242645, 0.0057404967956244946, 0.0033881496638059616, 0.3172442615032196, -0.18524011969566345, -0.010331732220947742, -0.08534558117389679, -0.03315955027937889, 0.022217154502868652, 0.3361378014087677, -0.2689190208911896, 0.02546309493482113, 0.004151487722992897, 0.019809963181614876, 0.02363223023712635, 0.24621590971946716, 0.24631178379058838, -0.0839255303144455, 0.8392552733421326, -0.008592689409852028, 0.0002037318336078897, -0.0070706927217543125, 0.2440587431192398, -0.26017752289772034, 0.0788322314620018, 0.812015175819397, -0.005452822428196669, 0.012883041985332966, 0.0016178704099729657]} +{"t": 3.0348, "q": [-0.13481645286083221, 0.005731974262744188, 0.0033747577108442783, 0.3172527849674225, -0.18525274097919464, -0.010310481302440166, -0.08531148731708527, -0.03315103054046631, 0.022230546921491623, 0.33616337180137634, -0.2689147889614105, 0.02545584738254547, 0.004057744517922401, 0.020193250849843025, 0.023927178233861923, 0.2449815273284912, 0.24380707740783691, -0.08403338491916656, 0.8443605899810791, -0.00860467366874218, 0.00027563716867007315, -0.007046724669635296, 0.24305206537246704, -0.2576129138469696, 0.07831691205501556, 0.8174320459365845, -0.005476790945976973, 0.013134710490703583, 0.0014860439114272594]} +{"t": 3.0515, "q": [-0.134773850440979, 0.005587098654359579, 0.0034283252898603678, 0.31722721457481384, -0.18526124954223633, -0.010310519486665726, -0.08527740091085434, -0.033176593482494354, 0.022243939340114594, 0.3361292779445648, -0.2689147889614105, 0.02545584738254547, 0.003977392800152302, 0.020592790096998215, 0.023926736786961555, 0.24419057369232178, 0.239540696144104, -0.08409330993890762, 0.8490464091300964, -0.008652610704302788, 0.00041944789700210094, -0.0070587084628641605, 0.24292024970054626, -0.25393375754356384, 0.07832889258861542, 0.8213269114494324, -0.005440838169306517, 0.013254553079605103, 0.0014740596525371075]} +{"t": 3.0684, "q": [-0.13462044298648834, 0.005510399583727121, 0.0034551091957837343, 0.3171931505203247, -0.18526965379714966, -0.010296358726918697, -0.08513252437114716, -0.03321920707821846, 0.02232429012656212, 0.33615484833717346, -0.2689149081707001, 0.025470269843935966, 0.0038970415480434895, 0.021414373070001602, 0.02395874634385109, 0.24411866068840027, 0.2340279519557953, -0.08409330993890762, 0.8523061275482178, -0.008688563480973244, 0.0003954794374294579, -0.007046724669635296, 0.24284833669662476, -0.24984712898731232, 0.07852064073085785, 0.8250779509544373, -0.005452822428196669, 0.013290505856275558, 0.0017137442482635379]} +{"t": 3.0851, "q": [-0.13456079363822937, 0.005339957308024168, 0.0034952848218381405, 0.3172016441822052, -0.18526965379714966, -0.010296358726918697, -0.08508991450071335, -0.033295903354883194, 0.02232429012656212, 0.3361718952655792, -0.26891079545021057, 0.025477444753050804, 0.0038300822488963604, 0.02244666777551174, 0.02408323809504509, 0.2435074746608734, 0.22682543098926544, -0.08451275527477264, 0.8561170697212219, -0.008688563480973244, 0.0003954794374294579, -0.007046724669635296, 0.24250079691410065, -0.24391493201255798, 0.07837682962417603, 0.8303150534629822, -0.0055007594637572765, 0.013278521597385406, 0.0014980281703174114]} +{"t": 3.1018, "q": [-0.13456931710243225, 0.005280302371829748, 0.0034952848218381405, 0.3172527849674225, -0.18527396023273468, -0.010303477756679058, -0.08508139103651047, -0.0333385169506073, 0.02236446551978588, 0.33620598912239075, -0.2689150273799896, 0.025484692305326462, 0.003816690295934677, 0.023177042603492737, 0.024287747219204903, 0.24296818673610687, 0.21862822771072388, -0.08456069231033325, 0.8599520325660706, -0.008712531998753548, 0.0003954794374294579, -0.0070587084628641605, 0.24203340709209442, -0.2367723435163498, 0.07838881760835648, 0.8362352848052979, -0.005452822428196669, 0.013350427150726318, 0.0014381069922819734]} +{"t": 3.1186, "q": [-0.13456079363822937, 0.005314390640705824, 0.0035220684949308634, 0.3172954022884369, -0.185265451669693, -0.010303439572453499, -0.08509843796491623, -0.03332147002220154, 0.022391250357031822, 0.3362230062484741, -0.26891079545021057, 0.025477444753050804, 0.0038300822488963604, 0.023575372993946075, 0.024524357169866562, 0.24202142655849457, 0.2097838670015335, -0.08481236547231674, 0.8648536205291748, -0.008700547739863396, 0.0003834952076431364, -0.0070587084628641605, 0.24197348952293396, -0.22944997251033783, 0.0785326287150383, 0.8418558835983276, -0.005452822428196669, 0.013398364186286926, 0.0014740596525371075]} +{"t": 3.1353, "q": [-0.134586364030838, 0.005339957308024168, 0.003468500915914774, 0.3173294961452484, -0.1852569431066513, -0.010303400456905365, -0.08508139103651047, -0.03327886015176773, 0.02235107310116291, 0.33629119396209717, -0.2689149081707001, 0.025470269843935966, 0.003816690295934677, 0.0238154549151659, 0.024758517742156982, 0.24137428402900696, 0.20115521550178528, -0.08504006266593933, 0.8690001368522644, -0.008688563480973244, 0.00046738478704355657, -0.0070946612395346165, 0.24212928116321564, -0.22197182476520538, 0.07854460924863815, 0.8468413352966309, -0.0055127437226474285, 0.013410348445177078, 0.0015459650894626975]} +{"t": 3.1522, "q": [-0.1345948725938797, 0.005391089711338282, 0.003481892868876457, 0.31741470098495483, -0.18525263667106628, -0.010296281427145004, -0.08508139103651047, -0.03322772681713104, 0.022284114733338356, 0.3363167643547058, -0.2689147889614105, 0.02545584738254547, 0.00388364982791245, 0.023814847692847252, 0.02489161491394043, 0.2413143664598465, 0.19148394465446472, -0.08513593673706055, 0.8724156618118286, -0.008760469034314156, 0.00044341632747091353, -0.0070826769806444645, 0.2422371506690979, -0.2138824611902237, 0.07874834537506104, 0.8519825339317322, -0.005476790945976973, 0.013410348445177078, 0.0015939020086079836]} +{"t": 3.169, "q": [-0.134586364030838, 0.005425177980214357, 0.0034952848218381405, 0.3174658417701721, -0.18525274097919464, -0.010310481302440166, -0.08508991450071335, -0.03321920707821846, 0.022270722314715385, 0.3363593816757202, -0.2689065635204315, 0.025470197200775146, 0.0038568659219890833, 0.023777056485414505, 0.02491592988371849, 0.24085895717144012, 0.18129736185073853, -0.08538760244846344, 0.8765621781349182, -0.008796420879662037, 0.00045540055725723505, -0.0070946612395346165, 0.2425367534160614, -0.20623652637004852, 0.07922771573066711, 0.8563567996025085, -0.005416869651526213, 0.01344630029052496, 0.001761681167408824]} +{"t": 3.1857, "q": [-0.13456079363822937, 0.005433700513094664, 0.0034551091957837343, 0.3175084590911865, -0.1852569431066513, -0.010303400456905365, -0.08504730463027954, -0.033193640410900116, 0.022257329896092415, 0.3364275395870209, -0.2689149081707001, 0.025470269843935966, 0.0038568659219890833, 0.023769497871398926, 0.024920793250203133, 0.24079903960227966, 0.1712425947189331, -0.0854714959859848, 0.8796900510787964, -0.0087245162576437, 0.00045540055725723505, -0.0070826769806444645, 0.24257270991802216, -0.19850671291351318, 0.0791558101773262, 0.8607909679412842, -0.005416869651526213, 0.013494237326085567, 0.00173771264962852]} +{"t": 3.2025, "q": [-0.13450965285301208, 0.005467788781970739, 0.003481892868876457, 0.3175766170024872, -0.18525274097919464, -0.010310481302440166, -0.08503878116607666, -0.033185116946697235, 0.02235107310116291, 0.3364275395870209, -0.2689147889614105, 0.02545584738254547, 0.00388364982791245, 0.023769540712237358, 0.024911286309361458, 0.2404155433177948, 0.16046877205371857, -0.08550744503736496, 0.8837886452674866, -0.0087245162576437, 0.00041944789700210094, -0.0070826769806444645, 0.24254873394966125, -0.19030949473381042, 0.07922771573066711, 0.8645779490470886, -0.005452822428196669, 0.013530190102756023, 0.001785649568773806]} +{"t": 3.2192, "q": [-0.134458526968956, 0.005433700513094664, 0.0034551091957837343, 0.31762775778770447, -0.18525704741477966, -0.010317600332200527, -0.08499617129564285, -0.033193640410900116, 0.02235107310116291, 0.33644458651542664, -0.2689150273799896, 0.025484692305326462, 0.0038702578749507666, 0.023777099326252937, 0.024906422942876816, 0.23985227942466736, 0.15088139474391937, -0.08553141355514526, 0.8879112601280212, -0.0087245162576437, 0.0004074636672157794, -0.007046724669635296, 0.24244087934494019, -0.18254372477531433, 0.07927565276622772, 0.8683410286903381, -0.005440838169306517, 0.013494237326085567, 0.001785649568773806]} +{"t": 3.236, "q": [-0.13444148004055023, 0.0054507446475327015, 0.0034551091957837343, 0.31773003935813904, -0.18526555597782135, -0.010317638516426086, -0.08497912436723709, -0.03321920707821846, 0.02235107310116291, 0.3366320729255676, -0.2689065635204315, 0.025470197200775146, 0.0038970415480434895, 0.023784657940268517, 0.024901559576392174, 0.23972046375274658, 0.14124608039855957, -0.08530371636152267, 0.890475869178772, -0.008748484775424004, 0.0003834952076431364, -0.006771087180823088, 0.24200944602489471, -0.17438246309757233, 0.07929962128400803, 0.8720561265945435, -0.005452822428196669, 0.013434316031634808, 0.0016178704099729657]} +{"t": 3.2527, "q": [-0.13439887762069702, 0.005425177980214357, 0.0034283252898603678, 0.3177981972694397, -0.1852569431066513, -0.010303400456905365, -0.0848853811621666, -0.033193640410900116, 0.02233768254518509, 0.336606502532959, -0.2689149081707001, 0.025470269843935966, 0.004097919911146164, 0.023762287572026253, 0.024849601089954376, 0.2392650544643402, 0.1327492594718933, -0.08511196821928024, 0.8927768468856812, -0.008712531998753548, 0.00033555831760168076, -0.005596633069217205, 0.2414102405309677, -0.1669043004512787, 0.07927565276622772, 0.8755075931549072, -0.0055007594637572765, 0.013410348445177078, 0.0013662016717717052]} +{"t": 3.2694, "q": [-0.13427956402301788, 0.005382567178457975, 0.003361365757882595, 0.31786638498306274, -0.18525274097919464, -0.010310481302440166, -0.0846978947520256, -0.0332021601498127, 0.02233768254518509, 0.3366405963897705, -0.26891079545021057, 0.025477444753050804, 0.004258622881025076, 0.023754814639687538, 0.02483545057475567, 0.23853401839733124, 0.12561865150928497, -0.0845726802945137, 0.895185649394989, -0.008616657927632332, 0.00022770027862861753, -0.0036072516813874245, 0.2407151460647583, -0.16062456369400024, 0.07841278612613678, 0.8782040476799011, -0.005560680292546749, 0.013386379927396774, -0.00044341632747091353]} +{"t": 3.2862, "q": [-0.13407503068447113, 0.005374045576900244, 0.003321190131828189, 0.31794309616088867, -0.18524421751499176, -0.010310451500117779, -0.08447632193565369, -0.03321068361401558, 0.02232429012656212, 0.3367002606391907, -0.268910676240921, 0.02546302229166031, 0.004298798739910126, 0.023717371746897697, 0.02478371188044548, 0.23780298233032227, 0.12012987583875656, -0.08295480906963348, 0.8975225687026978, -0.008592689409852028, 0.0002636529679875821, -0.000862864195369184, 0.2392890304327011, -0.1557949334383011, 0.0770106315612793, 0.8816554546356201, -0.005596633069217205, 0.01336241140961647, -0.0024687503464519978]} +{"t": 3.303, "q": [-0.13374267518520355, 0.005374045576900244, 0.003321190131828189, 0.31800273060798645, -0.18525263667106628, -0.010296281427145004, -0.08404169231653214, -0.0332021601498127, 0.02232429012656212, 0.3367002606391907, -0.2689149081707001, 0.025470269843935966, 0.004325582180172205, 0.023717457428574562, 0.02476469799876213, 0.23710790276527405, 0.11834422498941422, -0.08269115537405014, 0.8991644382476807, -0.008580705150961876, 0.00017976337403524667, 0.0016298546688631177, 0.23800671100616455, -0.1537695974111557, 0.07557252794504166, 0.8840882778167725, -0.005620601586997509, 0.013374395668506622, -0.004673847928643227]} +{"t": 3.3198, "q": [-0.13324838876724243, 0.005374045576900244, 0.0032810145057737827, 0.31800273060798645, -0.18525274097919464, -0.010310481302440166, -0.08347923308610916, -0.03321068361401558, 0.022284114733338356, 0.3366491198539734, -0.26891079545021057, 0.025477444753050804, 0.004258622881025076, 0.023702427744865417, 0.024755410850048065, 0.23616114258766174, 0.118248350918293, -0.08239154517650604, 0.9011777639389038, -0.00860467366874218, 8.388957940042019e-05, 0.003079945920035243, 0.23655661940574646, -0.15343403816223145, 0.07460179924964905, 0.8853945732116699, -0.005620601586997509, 0.01336241140961647, -0.005704491399228573]} +{"t": 3.3365, "q": [-0.13269445300102234, 0.005391089711338282, 0.003254230599850416, 0.31799420714378357, -0.1852569431066513, -0.010303400456905365, -0.08289121091365814, -0.03323625028133392, 0.022257329896092415, 0.3366405963897705, -0.268910676240921, 0.02546302229166031, 0.004111311864107847, 0.023709986358880997, 0.024750547483563423, 0.23478296399116516, 0.11838017404079437, -0.08239154517650604, 0.9042816758155823, -0.008592689409852028, -0.000107858024421148, 0.0035353463608771563, 0.23418374359607697, -0.1534460186958313, 0.07421831041574478, 0.8871322870254517, -0.005620601586997509, 0.01336241140961647, -0.005884254816919565]} +{"t": 3.3533, "q": [-0.13212347030639648, 0.0054081338457763195, 0.003254230599850416, 0.3180283010005951, -0.18524852395057678, -0.01031757052987814, -0.08242249488830566, -0.03321920707821846, 0.022284114733338356, 0.3366320729255676, -0.268910676240921, 0.02546302229166031, 0.004044352564960718, 0.023672455921769142, 0.024717820808291435, 0.23330889642238617, 0.11844009906053543, -0.08239154517650604, 0.9070500731468201, -0.008688563480973244, -8.388957940042019e-05, 0.003583283396437764, 0.23099593818187714, -0.15345799922943115, 0.07383481413125992, 0.88950514793396, -0.005644570104777813, 0.013410348445177078, -0.005860286299139261]} +{"t": 3.3701, "q": [-0.13162066042423248, 0.005399612244218588, 0.0032810145057737827, 0.3180283010005951, -0.18525274097919464, -0.010310481302440166, -0.08182594180107117, -0.03321920707821846, 0.022270722314715385, 0.33662354946136475, -0.2689065635204315, 0.025470197200775146, 0.003977392800152302, 0.023657383397221565, 0.024718040600419044, 0.23151126503944397, 0.1185239851474762, -0.08243948221206665, 0.9094828367233276, -0.008688563480973244, -0.00011984225420746952, 0.003595267655327916, 0.22784408926963806, -0.1534939557313919, 0.07347528636455536, 0.8916143774986267, -0.005644570104777813, 0.01342233270406723, -0.005812349263578653]} +{"t": 3.3868, "q": [-0.13114342093467712, 0.005374045576900244, 0.003254230599850416, 0.31804534792900085, -0.18525263667106628, -0.010296281427145004, -0.08128052949905396, -0.03321068361401558, 0.022257329896092415, 0.336606502532959, -0.268910676240921, 0.02546302229166031, 0.003910433501005173, 0.023642178624868393, 0.024746781215071678, 0.22970163822174072, 0.1185479536652565, -0.0824514701962471, 0.911771833896637, -0.008688563480973244, -9.58738019107841e-05, 0.003595267655327916, 0.22396120429039001, -0.1534699946641922, 0.07317567616701126, 0.8954133987426758, -0.005620601586997509, 0.013590111397206783, -0.005452822428196669]} +{"t": 3.4036, "q": [-0.13075140118598938, 0.005314390640705824, 0.0032676225528120995, 0.3180623948574066, -0.18525274097919464, -0.010310481302440166, -0.08091408014297485, -0.03323625028133392, 0.02233768254518509, 0.33662354946136475, -0.268910676240921, 0.02546302229166031, 0.003964001312851906, 0.02369513176381588, 0.02470323257148266, 0.22793996334075928, 0.11845207959413528, -0.0824754387140274, 0.9138091802597046, -0.008652610704302788, -7.190534961409867e-05, 0.0036312201991677284, 0.22148047387599945, -0.15333816409111023, 0.07306782156229019, 0.8992602825164795, -0.0055367122404277325, 0.01378185860812664, -0.005213138181716204]} +{"t": 3.4203, "q": [-0.13044461607933044, 0.005220647435635328, 0.0032676225528120995, 0.3180709183216095, -0.18526124954223633, -0.010310519486665726, -0.08054762333631516, -0.033312950283288956, 0.02235107310116291, 0.336606502532959, -0.268910676240921, 0.02546302229166031, 0.004138095770031214, 0.02376328594982624, 0.024630941450595856, 0.2265138477087021, 0.11848803609609604, -0.08246345072984695, 0.915283203125, -0.008652610704302788, -1.1984225238848012e-05, 0.0036312201991677284, 0.21993450820446014, -0.15168434381484985, 0.07304385304450989, 0.9032630324363708, -0.005584648810327053, 0.01378185860812664, -0.005392901133745909]} +{"t": 3.437, "q": [-0.13015486299991608, 0.005109860096126795, 0.0032944062259048223, 0.31808796525001526, -0.18526114523410797, -0.010296320542693138, -0.08031752705574036, -0.03338112682104111, 0.022391250357031822, 0.336606502532959, -0.2689065635204315, 0.025470197200775146, 0.004084527958184481, 0.023770930245518684, 0.024607064202427864, 0.22578279674053192, 0.1185239851474762, -0.0824275016784668, 0.9163857698440552, -0.008616657927632332, -2.3968450477696024e-05, 0.0037270940374583006, 0.2187480628490448, -0.14988671243190765, 0.07275623083114624, 0.906618595123291, -0.005572664551436901, 0.013709953986108303, -0.005860286299139261]} +{"t": 3.454, "q": [-0.13003554940223694, 0.005024638492614031, 0.003468500915914774, 0.31808796525001526, -0.1852695643901825, -0.010282150469720364, -0.08023230731487274, -0.03344930335879326, 0.022645695134997368, 0.3365894854068756, -0.2689065635204315, 0.025470197200775146, 0.004004176706075668, 0.0237407423555851, 0.024617010727524757, 0.22548319399356842, 0.11853597313165665, -0.0824514701962471, 0.9175242781639099, -0.008616657927632332, -4.793690095539205e-05, 0.0038469363935291767, 0.21753765642642975, -0.1489998698234558, 0.07233678549528122, 0.9082365036010742, -0.005644570104777813, 0.01356614287942648, -0.006219812668859959]} +{"t": 3.4708, "q": [-0.12993328273296356, 0.004879762884229422, 0.003655987558886409, 0.3181987404823303, -0.18526534736156464, -0.010289239697158337, -0.08015561103820801, -0.033543046563863754, 0.022926924750208855, 0.33667469024658203, -0.2688983380794525, 0.025484563782811165, 0.003910433501005173, 0.023605259135365486, 0.024580959230661392, 0.2253873199224472, 0.11848803609609604, -0.08243948221206665, 0.9187346696853638, -0.008676579222083092, -3.5952674807049334e-05, 0.0041585261933505535, 0.215428426861763, -0.14886803925037384, 0.07179749011993408, 0.9090514183044434, -0.005680522881448269, 0.01336241140961647, -0.006375608034431934]} +{"t": 3.4875, "q": [-0.12975431978702545, 0.00477749714627862, 0.0037899063900113106, 0.31828397512435913, -0.18526534736156464, -0.010289239697158337, -0.07999368757009506, -0.033662356436252594, 0.02304745279252529, 0.3367343544960022, -0.268902450799942, 0.025477388873696327, 0.0037095551379024982, 0.023417171090841293, 0.024512402713298798, 0.22519557178020477, 0.11853597313165665, -0.08246345072984695, 0.9199091196060181, -0.008652610704302788, -7.190534961409867e-05, 0.00436225812882185, 0.21197697520256042, -0.14898788928985596, 0.07133010774850845, 0.9096146821975708, -0.005644570104777813, 0.013158679008483887, -0.006399576086550951]} +{"t": 3.5044, "q": [-0.1293623000383377, 0.004726364742964506, 0.004004176706075668, 0.3183010220527649, -0.18527376651763916, -0.010275069624185562, -0.0797465518116951, -0.033739056438207626, 0.023275114595890045, 0.33681103587150574, -0.268902450799942, 0.025477388873696327, 0.003468500915914774, 0.023124264553189278, 0.024293269962072372, 0.2242128700017929, 0.11853597313165665, -0.0824754387140274, 0.9218865036964417, -0.008676579222083092, -8.388957940042019e-05, 0.004422178957611322, 0.20773455500602722, -0.14898788928985596, 0.07095859944820404, 0.9096745848655701, -0.005656554363667965, 0.012930979020893574, -0.0063276709988713264]} +{"t": 3.5211, "q": [-0.12878279387950897, 0.00469227647408843, 0.004178271628916264, 0.3183010220527649, -0.1852695643901825, -0.010282150469720364, -0.07925226539373398, -0.03375609964132309, 0.023435818031430244, 0.33693036437034607, -0.268902450799942, 0.025477388873696327, 0.0034952848218381405, 0.022763345390558243, 0.0240695271641016, 0.2225950062274933, 0.11853597313165665, -0.0824754387140274, 0.9241994619369507, -0.008712531998753548, -7.190534961409867e-05, 0.00441019469872117, 0.2024974524974823, -0.1489759087562561, 0.07068295776844025, 0.9096266627311707, -0.005716475658118725, 0.01278716791421175, -0.006231796927750111]} +{"t": 3.5378, "q": [-0.12823738157749176, 0.004666709806770086, 0.0041916631162166595, 0.31828397512435913, -0.1852695643901825, -0.010282150469720364, -0.07883468270301819, -0.03377314284443855, 0.023489385843276978, 0.33693888783454895, -0.268902450799942, 0.025477388873696327, 0.0037229470908641815, 0.02209470234811306, 0.023502115160226822, 0.22060561180114746, 0.11853597313165665, -0.08249940723180771, 0.926632285118103, -0.008700547739863396, -2.3968450477696024e-05, 0.00441019469872117, 0.1967090666294098, -0.14967098832130432, 0.06991597265005112, 0.9096146821975708, -0.005680522881448269, 0.012463593855500221, -0.005848302040249109]} +{"t": 3.5548, "q": [-0.12728290259838104, 0.004709320608526468, 0.004231838975101709, 0.31823283433914185, -0.1852695643901825, -0.010282150469720364, -0.07815290987491608, -0.033730532974004745, 0.02351616881787777, 0.3370922803878784, -0.268902450799942, 0.025477388873696327, 0.0037497307639569044, 0.02141806110739708, 0.023054350167512894, 0.21866416931152344, 0.11850001662969589, -0.08252337574958801, 0.9284538626670837, -0.008688563480973244, -1.1984225238848012e-05, 0.004422178957611322, 0.1898421049118042, -0.15068964660167694, 0.0688973143696785, 0.9096626043319702, -0.005704491399228573, 0.012295815162360668, -0.005560680292546749]} +{"t": 3.5715, "q": [-0.12649035453796387, 0.004820107948035002, 0.004312190227210522, 0.3181646466255188, -0.18527807295322418, -0.010282188653945923, -0.07747966796159744, -0.03362826630473137, 0.023636694997549057, 0.33717748522758484, -0.2689149081707001, 0.025470269843935966, 0.003776514669880271, 0.02054525725543499, 0.02257981151342392, 0.21672272682189941, 0.1185719221830368, -0.08251138776540756, 0.9312462210655212, -0.00866459496319294, -1.1984225238848012e-05, 0.00441019469872117, 0.18188458681106567, -0.15179219841957092, 0.06805841624736786, 0.9096985459327698, -0.005680522881448269, 0.012152004055678844, -0.005440838169306517]} +{"t": 3.5882, "q": [-0.12590232491493225, 0.004973506089299917, 0.004312190227210522, 0.31813907623291016, -0.18527817726135254, -0.01029638759791851, -0.07705356180667877, -0.033483389765024185, 0.02370365522801876, 0.33730533719062805, -0.26890668272972107, 0.025484638288617134, 0.003977392800152302, 0.01961309090256691, 0.021771617233753204, 0.2139303982257843, 0.1185479536652565, -0.08254734426736832, 0.9350571632385254, -0.008652610704302788, 2.3968450477696024e-05, 0.004422178957611322, 0.17439444363117218, -0.15325427055358887, 0.0668000727891922, 0.909602701663971, -0.005620601586997509, 0.012116051279008389, -0.005380917340517044]} +{"t": 3.605, "q": [-0.12545065581798553, 0.005092815961688757, 0.004258622881025076, 0.3181561231613159, -0.18526534736156464, -0.010289239697158337, -0.07661040872335434, -0.033432260155677795, 0.023596519604325294, 0.3375013470649719, -0.2689065635204315, 0.025470197200775146, 0.0045800283551216125, 0.01872510276734829, 0.021209588274359703, 0.21156951785087585, 0.11850001662969589, -0.08252337574958801, 0.9377296566963196, -0.00866459496319294, 5.992112710373476e-05, 0.004458131734281778, 0.1682705134153366, -0.1552915871143341, 0.0659252256155014, 0.9096146821975708, -0.005560680292546749, 0.012044146656990051, -0.005141232628375292]} +{"t": 3.6217, "q": [-0.1253739446401596, 0.005246214102953672, 0.00416487967595458, 0.3181561231613159, -0.18526124954223633, -0.010310519486665726, -0.07654223591089249, -0.033364083617925644, 0.02352956123650074, 0.33754393458366394, -0.268910676240921, 0.02546302229166031, 0.005102312192320824, 0.01779242604970932, 0.020351611077785492, 0.20954418182373047, 0.11850001662969589, -0.08254734426736832, 0.9409294724464417, -0.00866459496319294, 1.1984225238848012e-05, 0.004446147475391626, 0.16129568219184875, -0.15765248239040375, 0.06513426452875137, 0.909602701663971, -0.005560680292546749, 0.011960256844758987, -0.0047217849642038345]} +{"t": 3.6385, "q": [-0.12525464594364166, 0.005527443718165159, 0.00416487967595458, 0.31826692819595337, -0.18525704741477966, -0.010317600332200527, -0.07654223591089249, -0.03323625028133392, 0.023623304441571236, 0.3377058804035187, -0.268898069858551, 0.02545568160712719, 0.005222839303314686, 0.017085518687963486, 0.01964395120739937, 0.20801019668579102, 0.11847604811191559, -0.08249940723180771, 0.944416880607605, -0.008676579222083092, 3.5952674807049334e-05, 0.004589958116412163, 0.1537456214427948, -0.1601571887731552, 0.06439124047756195, 0.9095067977905273, -0.005560680292546749, 0.011744541116058826, -0.004458131734281778]} +{"t": 3.6554, "q": [-0.12507568299770355, 0.005783106666058302, 0.0041916631162166595, 0.318292498588562, -0.18524862825870514, -0.010331770405173302, -0.07655075192451477, -0.03326181694865227, 0.023730438202619553, 0.337867796421051, -0.26890629529953003, 0.025441331788897514, 0.004888041876256466, 0.016355296596884727, 0.019016163423657417, 0.20750686526298523, 0.11847604811191559, -0.08246345072984695, 0.9465740323066711, -0.008652610704302788, 3.5952674807049334e-05, 0.004733768757432699, 0.1456323117017746, -0.16267387568950653, 0.0635283812880516, 0.9093270301818848, -0.0055247279815375805, 0.011396998539566994, -0.00430233683437109]} +{"t": 3.6721, "q": [-0.12495636940002441, 0.005945027340203524, 0.004231838975101709, 0.318292498588562, -0.1852359175682068, -0.01033881213515997, -0.0765337124466896, -0.03325329348444939, 0.02387774921953678, 0.33791038393974304, -0.26886844635009766, 0.025404926389455795, 0.004606812261044979, 0.015715837478637695, 0.01831112615764141, 0.20725518465042114, 0.1185719221830368, -0.08249940723180771, 0.9484316110610962, -0.008676579222083092, -4.793690095539205e-05, 0.004853611346334219, 0.13755494356155396, -0.16562199592590332, 0.06199439615011215, 0.9085001349449158, -0.0055007594637572765, 0.011001518927514553, -0.004314321093261242]} +{"t": 3.6889, "q": [-0.12490523606538773, 0.006132513750344515, 0.004231838975101709, 0.3183095455169678, -0.1852359175682068, -0.01033881213515997, -0.07645700871944427, -0.03323625028133392, 0.023931317031383514, 0.33791038393974304, -0.2688557207584381, 0.025383181869983673, 0.0044996771030128, 0.014978496357798576, 0.017428966239094734, 0.2067158967256546, 0.11877565830945969, -0.08248741924762726, 0.9509482979774475, -0.00866459496319294, -0.00015579492901451886, 0.004985437728464603, 0.12907010316848755, -0.16955281794071198, 0.0610835961997509, 0.906618595123291, -0.0055007594637572765, 0.010570086538791656, -0.004350273869931698]} +{"t": 3.7056, "q": [-0.1248711496591568, 0.006234779488295317, 0.004231838975101709, 0.3183010220527649, -0.18522749841213226, -0.010352982208132744, -0.07643144577741623, -0.03326181694865227, 0.023917926475405693, 0.3379359543323517, -0.2688470184803009, 0.02533983811736107, 0.004432717338204384, 0.014241127297282219, 0.016488827764987946, 0.20567327737808228, 0.11894343793392181, -0.08243948221206665, 0.9539682865142822, -0.00866459496319294, -0.0002996056282427162, 0.005105279851704836, 0.12141218781471252, -0.17417873442173004, 0.06031660735607147, 0.9048929214477539, -0.005452822428196669, 0.010210559703409672, -0.004434163216501474]} +{"t": 3.7223, "q": [-0.12472627311944962, 0.00628591189160943, 0.004205055069178343, 0.3183095455169678, -0.18522760272026062, -0.010367182083427906, -0.07626952230930328, -0.03325329348444939, 0.023904534056782722, 0.33808937668800354, -0.26883867383003235, 0.025339746847748756, 0.004486285150051117, 0.013238879851996899, 0.015611536800861359, 0.20503811538219452, 0.1191711351275444, -0.08237956464290619, 0.9557539224624634, -0.008640626445412636, -0.0003475425182841718, 0.005225121974945068, 0.11271163821220398, -0.18019481003284454, 0.05992112681269646, 0.903766393661499, -0.0055007594637572765, 0.00999484397470951, -0.004458131734281778]} +{"t": 3.7391, "q": [-0.12471774965524673, 0.006251823622733355, 0.004218447022140026, 0.3183095455169678, -0.18522340059280396, -0.010374262928962708, -0.07626952230930328, -0.033176593482494354, 0.02386435866355896, 0.33803823590278625, -0.2688387930393219, 0.025354187935590744, 0.004660379607230425, 0.01221365574747324, 0.014806309714913368, 0.20451080799102783, 0.11938685178756714, -0.08234360814094543, 0.9570721983909607, -0.008688563480973244, -0.00037151097785681486, 0.005464806687086821, 0.1041429191827774, -0.18637867271900177, 0.05964548885822296, 0.9033828973770142, -0.005620601586997509, 0.009934922680258751, -0.004482100252062082]} +{"t": 3.7558, "q": [-0.12472627311944962, 0.0062944344244897366, 0.0041916631162166595, 0.3183095455169678, -0.18522340059280396, -0.010374262928962708, -0.07628656923770905, -0.03315955027937889, 0.02387774921953678, 0.3380297124385834, -0.2688429057598114, 0.025347013026475906, 0.004874649923294783, 0.010938582010567188, 0.014034782536327839, 0.20403143763542175, 0.11961454898118973, -0.08235559612512589, 0.9582586288452148, -0.008676579222083092, -0.00035952674807049334, 0.005776396486908197, 0.09677261859178543, -0.19245466589927673, 0.0592619925737381, 0.9029874205589294, -0.005620601586997509, 0.009815080091357231, -0.004542021546512842]} +{"t": 3.7725, "q": [-0.12471774965524673, 0.006260345224291086, 0.004205055069178343, 0.3183010220527649, -0.18521498143672943, -0.010388433001935482, -0.07629509270191193, -0.03315955027937889, 0.02385096624493599, 0.33803823590278625, -0.2688303291797638, 0.025339674204587936, 0.005048744846135378, 0.00973125547170639, 0.013314188458025455, 0.2034921497106552, 0.11992613971233368, -0.08227170258760452, 0.9599364399909973, -0.008676579222083092, -0.0004074636672157794, 0.006219812668859959, 0.0890907272696495, -0.19910591840744019, 0.05831523984670639, 0.9023402333259583, -0.005596633069217205, 0.009695238433778286, -0.004554005805402994]} +{"t": 3.7893, "q": [-0.12470071017742157, 0.00628591189160943, 0.0041916631162166595, 0.3183010220527649, -0.18520227074623108, -0.01039547473192215, -0.07627804577350616, -0.03316807374358177, 0.02383757382631302, 0.3380126655101776, -0.2688344419002533, 0.0253324992954731, 0.00516927195712924, 0.008787630125880241, 0.012729908339679241, 0.20250943303108215, 0.12032162398099899, -0.08222377300262451, 0.9624770879745483, -0.008652610704302788, -0.00044341632747091353, 0.006759102921932936, 0.0812290757894516, -0.20550549030303955, 0.05723666027188301, 0.9012856483459473, -0.005584648810327053, 0.009563411585986614, -0.004589958116412163]} +{"t": 3.8061, "q": [-0.12471774965524673, 0.0062944344244897366, 0.0041916631162166595, 0.31826692819595337, -0.18520647287368774, -0.010388394817709923, -0.07627804577350616, -0.03315955027937889, 0.02383757382631302, 0.33798709511756897, -0.2688344419002533, 0.0253324992954731, 0.00516927195712924, 0.007949663326144218, 0.012221084907650948, 0.20183831453323364, 0.1206691637635231, -0.0821278989315033, 0.9644904732704163, -0.008676579222083092, -0.0005273059359751642, 0.007538077887147665, 0.07322361320257187, -0.21201293170452118, 0.05662546306848526, 0.9009261131286621, -0.005572664551436901, 0.009551427327096462, -0.00453003728762269]} +{"t": 3.8228, "q": [-0.12472627311944962, 0.006277389358729124, 0.0041916631162166595, 0.31827545166015625, -0.18521498143672943, -0.010388433001935482, -0.07628656923770905, -0.03315955027937889, 0.023810790851712227, 0.33798709511756897, -0.2688429057598114, 0.025347013026475906, 0.005222839303314686, 0.007089429534971714, 0.01177915744483471, 0.20080767571926117, 0.12102869153022766, -0.08206797391176224, 0.9661562442779541, -0.008652610704302788, -0.0004793690168298781, 0.00914396345615387, 0.06460695713758469, -0.21963489055633545, 0.056409746408462524, 0.9009261131286621, -0.005632585845887661, 0.009563411585986614, -0.00441019469872117]} +{"t": 3.8395, "q": [-0.1247347965836525, 0.0062688677571713924, 0.004205055069178343, 0.31823283433914185, -0.18521088361740112, -0.010409712791442871, -0.07628656923770905, -0.03313398361206055, 0.023810790851712227, 0.3379785716533661, -0.26883020997047424, 0.02532525174319744, 0.005410325713455677, 0.00649102870374918, 0.011445802636444569, 0.19974108040332794, 0.12128035724163055, -0.08206797391176224, 0.9671868681907654, -0.008676579222083092, -0.0004793690168298781, 0.011325092986226082, 0.057799916714429855, -0.22619026899337769, 0.05608617514371872, 0.9008901715278625, -0.005632585845887661, 0.009563411585986614, -0.004314321093261242]} +{"t": 3.8562, "q": [-0.1247347965836525, 0.006251823622733355, 0.0041916631162166595, 0.3182413578033447, -0.18521498143672943, -0.010388433001935482, -0.07631213217973709, -0.03313398361206055, 0.023770615458488464, 0.33795300126075745, -0.2688385248184204, 0.02532532438635826, 0.0056112040765583515, 0.0060087088495492935, 0.011125221848487854, 0.19867448508739471, 0.12143615633249283, -0.08209194242954254, 0.96833735704422, -0.008652610704302788, -0.00046738478704355657, 0.013674001209437847, 0.05072922632098198, -0.2320505529642105, 0.05547497794032097, 0.9008901715278625, -0.005620601586997509, 0.00953944306820631, -0.004110589157789946]} +{"t": 3.873, "q": [-0.12479445338249207, 0.0062262569554150105, 0.0041916631162166595, 0.3181987404823303, -0.18521077930927277, -0.010395512916147709, -0.07632917910814285, -0.03315103054046631, 0.02383757382631302, 0.3378848433494568, -0.2688387930393219, 0.025354187935590744, 0.005624596029520035, 0.005595017224550247, 0.010828515514731407, 0.19782359898090363, 0.12142416834831238, -0.08211591094732285, 0.970194935798645, -0.008676579222083092, -0.0005153216770850122, 0.016082830727100372, 0.0436345636844635, -0.2373715490102768, 0.05456417798995972, 0.9002310037612915, -0.005620601586997509, 0.009443569928407669, -0.003906857222318649]} +{"t": 3.8897, "q": [-0.12478592991828918, 0.006200690288096666, 0.004218447022140026, 0.3181731700897217, -0.18521498143672943, -0.010388433001935482, -0.07632917910814285, -0.03313398361206055, 0.023891141638159752, 0.3378337025642395, -0.2688387930393219, 0.025354187935590744, 0.005410325713455677, 0.005168647039681673, 0.010570185258984566, 0.19698470830917358, 0.12141218781471252, -0.08211591094732285, 0.9725677967071533, -0.00866459496319294, -0.0006351639167405665, 0.018072212114930153, 0.03723498806357384, -0.24167388677597046, 0.05320996046066284, 0.8986730575561523, -0.0055367122404277325, 0.008964200504124165, -0.003775030840188265]} +{"t": 3.9064, "q": [-0.12476035952568054, 0.006200690288096666, 0.004231838975101709, 0.3181561231613159, -0.18521077930927277, -0.010395512916147709, -0.07633770257234573, -0.03316807374358177, 0.02387774921953678, 0.33785074949264526, -0.2688429057598114, 0.025347013026475906, 0.005102312192320824, 0.0048236907459795475, 0.010330887511372566, 0.19597803056240082, 0.12150806188583374, -0.08206797391176224, 0.9756597280502319, -0.008700547739863396, -0.0007550062146037817, 0.01949833519756794, 0.02960103563964367, -0.24549685418605804, 0.051604073494672775, 0.8965398669242859, -0.0055007594637572765, 0.008353005163371563, -0.0036312201991677284]} +{"t": 3.9232, "q": [-0.1247774064540863, 0.0062262569554150105, 0.004245230928063393, 0.3181220591068268, -0.18521498143672943, -0.010388433001935482, -0.07636326551437378, -0.03313398361206055, 0.023931317031383514, 0.3378337025642395, -0.2688429057598114, 0.025347013026475906, 0.00483447453007102, 0.004486077465116978, 0.010144338011741638, 0.19540278613567352, 0.12172377854585648, -0.08206797391176224, 0.9774214029312134, -0.008676579222083092, -0.0008029430755414069, 0.020720725879073143, 0.022122880443930626, -0.24826520681381226, 0.04986635968089104, 0.8945744633674622, -0.005332980304956436, 0.00771784083917737, -0.003379551460966468]} +{"t": 3.94, "q": [-0.12476035952568054, 0.006243301089853048, 0.004258622881025076, 0.31809648871421814, -0.18522340059280396, -0.010374262928962708, -0.07636326551437378, -0.03314250707626343, 0.023944709450006485, 0.3378337025642395, -0.2688429057598114, 0.025347013026475906, 0.0047541228123009205, 0.0040209232829511166, 0.009885997511446476, 0.19430024921894073, 0.12198743224143982, -0.08204400539398193, 0.979231059551239, -0.00866459496319294, -0.000874848454259336, 0.022074943408370018, 0.015483618713915348, -0.2510455548763275, 0.04736165702342987, 0.8915544748306274, -0.005117264110594988, 0.006447513122111559, -0.0031398669816553593]} +{"t": 3.958, "q": [-0.12476888298988342, 0.0062688677571713924, 0.004258622881025076, 0.3180709183216095, -0.1852106750011444, -0.010381313972175121, -0.07637178897857666, -0.03313398361206055, 0.023944709450006485, 0.3378422260284424, -0.2688303291797638, 0.025339674204587936, 0.004780906718224287, 0.0034803240559995174, 0.009714082814753056, 0.19287411868572235, 0.12223909795284271, -0.08202003687620163, 0.9814600944519043, -0.008676579222083092, -0.000874848454259336, 0.02359693869948387, 0.00894023198634386, -0.25381389260292053, 0.04388623312115669, 0.8882947564125061, -0.0049135321751236916, 0.0041944789700210094, -0.0018695391481742263]} +{"t": 3.9747, "q": [-0.12478592991828918, 0.006217735353857279, 0.004258622881025076, 0.3180283010005951, -0.18521498143672943, -0.010388433001935482, -0.07638031244277954, -0.03313398361206055, 0.023944709450006485, 0.33777403831481934, -0.2688303291797638, 0.025339674204587936, 0.0047541228123009205, 0.00292453495785594, 0.009590151719748974, 0.19090871512889862, 0.12238290905952454, -0.08203202486038208, 0.9841924905776978, -0.008676579222083092, -0.0007789746159687638, 0.024999093264341354, 0.0027683561202138662, -0.2562467157840729, 0.03991945460438728, 0.8848792314529419, -0.004649879410862923, -0.00015579492901451886, 0.0001917476038215682]} +{"t": 3.9916, "q": [-0.12479445338249207, 0.006200690288096666, 0.004258622881025076, 0.31800273060798645, -0.18521077930927277, -0.010395512916147709, -0.07636326551437378, -0.03315103054046631, 0.023931317031383514, 0.33777403831481934, -0.2688429057598114, 0.025347013026475906, 0.00479429867118597, 0.0026241217274218798, 0.009504205547273159, 0.18960243463516235, 0.12240687757730484, -0.08205599337816238, 0.9852950572967529, -0.00866459496319294, -0.0007430219557136297, 0.02600576914846897, -0.0029361352790147066, -0.2579844295978546, 0.03816975653171539, 0.881955087184906, -0.004326305352151394, -0.00490154791623354, 0.002133192028850317]} +{"t": 4.0083, "q": [-0.12478592991828918, 0.006141036283224821, 0.004258622881025076, 0.31799420714378357, -0.18521498143672943, -0.010388433001935482, -0.07637178897857666, -0.033116940408945084, 0.023971492424607277, 0.33777403831481934, -0.2688303291797638, 0.025339674204587936, 0.004780906718224287, 0.002654280746355653, 0.009465773589909077, 0.1887155920267105, 0.12240687757730484, -0.08207996189594269, 0.9865174293518066, -0.008652610704302788, -0.0007190534961409867, 0.02666490152478218, -0.009359680116176605, -0.2585596740245819, 0.03643204644322395, 0.8796061873435974, -0.0038469363935291767, -0.00938364863395691, 0.003918841481208801]} +{"t": 4.025, "q": [-0.1247774064540863, 0.006098425481468439, 0.004312190227210522, 0.3179856836795807, -0.18521498143672943, -0.010388433001935482, -0.07642292231321335, -0.0331084169447422, 0.023984884843230247, 0.3377825617790222, -0.26883456110954285, 0.025346921756863594, 0.004646987654268742, 0.002759588183835149, 0.009465678595006466, 0.18818828463554382, 0.12239488959312439, -0.08207996189594269, 0.9876918792724609, -0.008676579222083092, -0.0006711166352033615, 0.027048395946621895, -0.016993630677461624, -0.25875139236450195, 0.03380750119686127, 0.8774010539054871, -0.0028282771818339825, -0.014105432666838169, 0.006579339504241943]} +{"t": 4.0418, "q": [-0.1247774064540863, 0.006064337212592363, 0.0043523660860955715, 0.3179856836795807, -0.18522340059280396, -0.010374262928962708, -0.07644849270582199, -0.03309137374162674, 0.023984884843230247, 0.337799608707428, -0.26883456110954285, 0.025346921756863594, 0.004687163513153791, 0.0029701353050768375, 0.009436608292162418, 0.18762503564357758, 0.12235894054174423, -0.08211591094732285, 0.9887824654579163, -0.008676579222083092, -0.0007070692954584956, 0.02720419131219387, -0.022158833220601082, -0.2588352859020233, 0.03076350688934326, 0.8728231191635132, -0.0005153216770850122, -0.019114838913083076, 0.010186591185629368]} +{"t": 4.0585, "q": [-0.12475183606147766, 0.006132513750344515, 0.004338974133133888, 0.3179771602153778, -0.1852191835641861, -0.01038135215640068, -0.07643144577741623, -0.03315955027937889, 0.023971492424607277, 0.3377910852432251, -0.2688429057598114, 0.025347013026475906, 0.004660379607230425, 0.0030904263257980347, 0.009426848962903023, 0.18697787821292877, 0.12221512943506241, -0.0821758359670639, 0.9904842376708984, -0.008676579222083092, -0.000850879994686693, 0.02725212834775448, -0.027000458911061287, -0.25887125730514526, 0.02985270507633686, 0.8675860166549683, 0.0012343751732259989, -0.02713228575885296, 0.01462075486779213]} +{"t": 4.0752, "q": [-0.1247347965836525, 0.006209212820976973, 0.004312190227210522, 0.3179345726966858, -0.18521498143672943, -0.010388433001935482, -0.07642292231321335, -0.03314250707626343, 0.023944709450006485, 0.33780813217163086, -0.2688344419002533, 0.0253324992954731, 0.004660379607230425, 0.003143023932352662, 0.009431572631001472, 0.18651050329208374, 0.12183163315057755, -0.08219980448484421, 0.9923657774925232, -0.008700547739863396, -0.000874848454259336, 0.02732403390109539, -0.03173422813415527, -0.2577087879180908, 0.02984072081744671, 0.8618455529212952, 0.0028642297256737947, -0.03301654011011124, 0.019893813878297806]} +{"t": 4.092, "q": [-0.12471774965524673, 0.006354088429361582, 0.0042854067869484425, 0.31790900230407715, -0.18521487712860107, -0.01037423312664032, -0.07641439884901047, -0.033074330538511276, 0.023931317031383514, 0.33781665563583374, -0.2688429057598114, 0.025347013026475906, 0.004687163513153791, 0.003203122178092599, 0.009441081434488297, 0.18611501157283783, 0.1212444081902504, -0.08221178501844406, 0.9941514134407043, -0.008676579222083092, -0.0009467537747696042, 0.02738395519554615, -0.03665974363684654, -0.254377156496048, 0.030344057828187943, 0.8556497097015381, 0.00453003728762269, -0.03813380375504494, 0.02654505893588066]} +{"t": 4.1089, "q": [-0.12470071017742157, 0.006439310032874346, 0.004298798739910126, 0.3178834319114685, -0.1852065771818161, -0.01040259376168251, -0.07641439884901047, -0.03305728733539581, 0.023904534056782722, 0.3378763198852539, -0.2688385248184204, 0.02532532438635826, 0.004700555466115475, 0.0032181546557694674, 0.00944106001406908, 0.18552778661251068, 0.12054932117462158, -0.08221178501844406, 0.9958651661872864, -0.008736500516533852, -0.0010306433541700244, 0.027479829266667366, -0.04141748324036598, -0.25091370940208435, 0.03076350688934326, 0.8500291109085083, 0.0055007594637572765, -0.044377587735652924, 0.033915355801582336]} +{"t": 4.1258, "q": [-0.12471774965524673, 0.006507486570626497, 0.0042854067869484425, 0.3178834319114685, -0.18521077930927277, -0.010395512916147709, -0.0763973593711853, -0.033074330538511276, 0.023904534056782722, 0.33789336681365967, -0.2688426375389099, 0.025318149477243423, 0.004633595701307058, 0.003218123223632574, 0.00945065263658762, 0.18462897837162018, 0.11995010823011398, -0.08223575353622437, 0.9975309371948242, -0.0087245162576437, -0.0010785802733153105, 0.027635622769594193, -0.04616323485970497, -0.24655146896839142, 0.03081144392490387, 0.8427786827087402, 0.008353005163371563, -0.051723916083574295, 0.042220424860715866]} +{"t": 4.1426, "q": [-0.12470922619104385, 0.006550097372382879, 0.0042854067869484425, 0.3179260492324829, -0.18521077930927277, -0.010395512916147709, -0.07638883590698242, -0.03303172066807747, 0.023904534056782722, 0.3379274308681488, -0.2688429057598114, 0.025347013026475906, 0.004620204214006662, 0.0032557828817516565, 0.009426618926227093, 0.18369419872760773, 0.11969844251871109, -0.08224774152040482, 0.9991608262062073, -0.008736500516533852, -0.0010546118719503284, 0.027767449617385864, -0.051484230905771255, -0.24051141738891602, 0.030799459666013718, 0.8358038663864136, 0.013110741972923279, -0.05938183516263962, 0.050333745777606964]} +{"t": 4.1593, "q": [-0.12467513978481293, 0.006567141506820917, 0.004258622881025076, 0.31799420714378357, -0.18520236015319824, -0.010409682989120483, -0.07637178897857666, -0.03304876387119293, 0.023931317031383514, 0.33798709511756897, -0.2688385248184204, 0.02532532438635826, 0.004432717338204384, 0.0035571542102843523, 0.009205573238432407, 0.18222014605998993, 0.11961454898118973, -0.08224774152040482, 1.001665472984314, -0.0087245162576437, -0.0010306433541700244, 0.027935229241847992, -0.05709284916520119, -0.23374032974243164, 0.030679617077112198, 0.8295240998268127, 0.017257284373044968, -0.06816627085208893, 0.05802761763334274]} +{"t": 4.1762, "q": [-0.12458139657974243, 0.006541575770825148, 0.004298798739910126, 0.31805387139320374, -0.18520227074623108, -0.01039547473192215, -0.07631213217973709, -0.03304024040699005, 0.023944709450006485, 0.33813196420669556, -0.26883429288864136, 0.025318076834082603, 0.00445950124412775, 0.004325096495449543, 0.00881121400743723, 0.1805303692817688, 0.11949470639228821, -0.08228369057178497, 1.003606915473938, -0.0087245162576437, -0.000862864195369184, 0.028067056089639664, -0.06169478967785835, -0.22834742069244385, 0.030715569853782654, 0.8229807019233704, 0.02166747860610485, -0.07560847699642181, 0.06685999035835266]} +{"t": 4.1932, "q": [-0.12460696697235107, 0.0064733983017504215, 0.0042854067869484425, 0.31805387139320374, -0.18520227074623108, -0.01039547473192215, -0.07634622603654861, -0.03302319720387459, 0.023984884843230247, 0.33818310499191284, -0.2688387930393219, 0.025354187935590744, 0.004486285150051117, 0.00620253523811698, 0.008396882563829422, 0.1787327378988266, 0.11920709162950516, -0.08233162760734558, 1.0052967071533203, -0.008700547739863396, -0.0006950850365683436, 0.028150945901870728, -0.0653020441532135, -0.22276277840137482, 0.030583743005990982, 0.8140045404434204, 0.024399882182478905, -0.08146876096725464, 0.07625562697649002]} +{"t": 4.2099, "q": [-0.12461548298597336, 0.0064307874999940395, 0.004312190227210522, 0.3180709183216095, -0.18520668148994446, -0.010416802018880844, -0.07637178897857666, -0.03303172066807747, 0.02403845265507698, 0.3381660580635071, -0.26883020997047424, 0.02532525174319744, 0.0045130690559744835, 0.008262796327471733, 0.007698488421738148, 0.17772606015205383, 0.11865581572055817, -0.08243948221206665, 1.006567120552063, -0.00866459496319294, -0.0005872270558029413, 0.028234833851456642, -0.06946057081222534, -0.2172020971775055, 0.030523821711540222, 0.8061788082122803, 0.02978079952299595, -0.08903080970048904, 0.0857231616973877]} +{"t": 4.2267, "q": [-0.12458992004394531, 0.006396699231117964, 0.004338974133133888, 0.3180794417858124, -0.18519805371761322, -0.010402563959360123, -0.07634622603654861, -0.03304876387119293, 0.024078628048300743, 0.3381916284561157, -0.2688344419002533, 0.0253324992954731, 0.004419325385242701, 0.01035562064498663, 0.006831447593867779, 0.17687517404556274, 0.11803263425827026, -0.08254734426736832, 1.0080530643463135, -0.00866459496319294, -0.0005512743373401463, 0.02822284959256649, -0.07317567616701126, -0.2120608687400818, 0.030619695782661438, 0.7986647486686707, 0.03640807792544365, -0.09652095288038254, 0.09608951956033707]} +{"t": 4.2434, "q": [-0.1245473101735115, 0.006379655096679926, 0.004365758039057255, 0.31800273060798645, -0.18520236015319824, -0.010409682989120483, -0.07633770257234573, -0.03304024040699005, 0.024105412885546684, 0.33813196420669556, -0.2688344419002533, 0.0253324992954731, 0.004245230928063393, 0.012113844975829124, 0.005905565805733204, 0.17582057416439056, 0.11740945279598236, -0.08255932480096817, 1.01017427444458, -0.00866459496319294, -0.0005512743373401463, 0.02822284959256649, -0.07687880843877792, -0.2072671800851822, 0.030595727264881134, 0.79237300157547, 0.04310726001858711, -0.10338791459798813, 0.10698317736387253]} +{"t": 4.2602, "q": [-0.12453026324510574, 0.006379655096679926, 0.004392541944980621, 0.3179856836795807, -0.18520236015319824, -0.010409682989120483, -0.07637178897857666, -0.03304876387119293, 0.024145588278770447, 0.33813196420669556, -0.2688385248184204, 0.02532532438635826, 0.0036425956059247255, 0.013647252693772316, 0.005036444868892431, 0.17392705380916595, 0.1170738935470581, -0.08267916738986969, 1.0130864381790161, -0.008676579222083092, -0.0005992112564854324, 0.02822284959256649, -0.08168447762727737, -0.2018742710351944, 0.030296120792627335, 0.7873755693435669, 0.04986635968089104, -0.10995526611804962, 0.11929097771644592]} +{"t": 4.2769, "q": [-0.12440243363380432, 0.006439310032874346, 0.0044996771030128, 0.31791752576828003, -0.18520236015319824, -0.010409682989120483, -0.07634622603654861, -0.03303172066807747, 0.02419915609061718, 0.3381234407424927, -0.2688470184803009, 0.02533983811736107, 0.0029194331727921963, 0.014745447784662247, 0.004406269174069166, 0.17203354835510254, 0.11697801947593689, -0.08278702944517136, 1.0162503719329834, -0.0087245162576437, -0.0005992112564854324, 0.02822284959256649, -0.08575911819934845, -0.1961338371038437, 0.02996056340634823, 0.7816351652145386, 0.05980128422379494, -0.11604325473308563, 0.13111941516399384]} +{"t": 4.2937, "q": [-0.12421494722366333, 0.006533053237944841, 0.004620204214006662, 0.3178749084472656, -0.18520236015319824, -0.010409682989120483, -0.07632917910814285, -0.03303172066807747, 0.024400033056735992, 0.33818310499191284, -0.2688429057598114, 0.025347013026475906, 0.002356973709538579, 0.015518163330852985, 0.003908534999936819, 0.1708471179008484, 0.11691810190677643, -0.08279900997877121, 1.0202770233154297, -0.008700547739863396, -0.0007070692954584956, 0.02822284959256649, -0.08919858932495117, -0.1911364048719406, 0.02961301989853382, 0.7747561931610107, 0.06615292280912399, -0.12101670354604721, 0.14243251085281372]} +{"t": 4.3104, "q": [-0.12410415709018707, 0.006626796443015337, 0.004727339372038841, 0.31786638498306274, -0.18520236015319824, -0.010409682989120483, -0.07632917910814285, -0.03302319720387459, 0.0245339535176754, 0.3382001519203186, -0.2688385248184204, 0.02532532438635826, 0.0019284329609945416, 0.015753084793686867, 0.003747266950085759, 0.17009210586547852, 0.11691810190677643, -0.08285893499851227, 1.0235846042633057, -0.008700547739863396, -0.0006351639167405665, 0.028186898678541183, -0.092386394739151, -0.1872415393590927, 0.029289446771144867, 0.7688839435577393, 0.07426624745130539, -0.1252111792564392, 0.1543927788734436]} +{"t": 4.3272, "q": [-0.12401893734931946, 0.006720539648085833, 0.004874649923294783, 0.317849338054657, -0.18519815802574158, -0.010416763834655285, -0.07632917910814285, -0.03302319720387459, 0.024654479697346687, 0.33822572231292725, -0.26883020997047424, 0.02532525174319744, 0.0017007706919685006, 0.01573054865002632, 0.003675174666568637, 0.16938504576683044, 0.11696603894233704, -0.08283496648073196, 1.0252385139465332, -0.008640626445412636, -0.0006111955153755844, 0.02822284959256649, -0.0950828418135643, -0.1835024505853653, 0.02847451902925968, 0.7624004483222961, 0.0833502858877182, -0.1302805095911026, 0.16551414132118225]} +{"t": 4.3439, "q": [-0.12399337440729141, 0.00685689365491271, 0.004968393128365278, 0.31785786151885986, -0.18520236015319824, -0.010409682989120483, -0.0763547495007515, -0.03302319720387459, 0.024801790714263916, 0.33826833963394165, -0.26881325244903564, 0.025296257808804512, 0.001419540960341692, 0.01563241519033909, 0.0035748702939599752, 0.16846226155757904, 0.11709786206483841, -0.08281099796295166, 1.0262930393218994, -0.008640626445412636, -0.0005872270558029413, 0.028234833851456642, -0.0974557176232338, -0.18007497489452362, 0.027216175571084023, 0.7573670744895935, 0.09183511883020401, -0.13633254170417786, 0.17637184262275696]} +{"t": 4.3606, "q": [-0.12391667068004608, 0.006839849520474672, 0.00516927195712924, 0.3178919553756714, -0.18519805371761322, -0.010402563959360123, -0.07634622603654861, -0.03304024040699005, 0.024962494149804115, 0.3383024036884308, -0.2687837481498718, 0.025259925052523613, 0.001084743533283472, 0.015451014041900635, 0.0034898058511316776, 0.16795891523361206, 0.11708588153123856, -0.08282297849655151, 1.0275274515151978, -0.00866459496319294, -0.0005992112564854324, 0.028246818110346794, -0.099624864757061, -0.17724668979644775, 0.026616964489221573, 0.751434862613678, 0.10235726833343506, -0.14275608956813812, 0.18676216900348663]} +{"t": 4.3774, "q": [-0.1237717941403389, 0.006839849520474672, 0.005477285478264093, 0.31790047883987427, -0.18520236015319824, -0.010409682989120483, -0.07633770257234573, -0.03302319720387459, 0.02520354837179184, 0.3383450210094452, -0.2687752842903137, 0.025245429947972298, 0.0005088920588605106, 0.015246965922415257, 0.0033807135187089443, 0.16795891523361206, 0.11713381856679916, -0.08281099796295166, 1.028630018234253, -0.00866459496319294, -0.0005992112564854324, 0.028270786628127098, -0.10166218131780624, -0.17471802234649658, 0.024927187711000443, 0.7448675632476807, 0.11018296331167221, -0.14928749203681946, 0.19851869344711304]} +{"t": 4.3941, "q": [-0.12364396452903748, 0.00679723871871829, 0.005745123140513897, 0.31790900230407715, -0.18520236015319824, -0.010409682989120483, -0.07632917910814285, -0.033074330538511276, 0.025457993149757385, 0.3383791148662567, -0.26875820755958557, 0.02520199492573738, 0.00021427033061627299, 0.014974958263337612, 0.0032095257192850113, 0.1678750216960907, 0.11720572412014008, -0.08279900997877121, 1.0302239656448364, -0.008700547739863396, -0.0007310377550311387, 0.02834269218146801, -0.10277671366930008, -0.1730162650346756, 0.023441145196557045, 0.737461268901825, 0.12003400176763535, -0.1568135917186737, 0.20840567350387573]} +{"t": 4.4108, "q": [-0.12357578426599503, 0.006677928846329451, 0.005986177362501621, 0.31790900230407715, -0.1852065771818161, -0.01040259376168251, -0.07631213217973709, -0.033006154000759125, 0.025605304166674614, 0.338430255651474, -0.2687539756298065, 0.025194747373461723, 4.017568790004589e-05, 0.01455183606594801, 0.002943232888355851, 0.16765931248664856, 0.11736151576042175, -0.0827510729432106, 1.0319736003875732, -0.0087245162576437, -0.000874848454259336, 0.02840261347591877, -0.10343585163354874, -0.17125457525253296, 0.02171541564166546, 0.7279817461967468, 0.12927383184432983, -0.16409999132156372, 0.2192993313074112]} +{"t": 4.4275, "q": [-0.12351613491773605, 0.006584185641258955, 0.0062272315844893456, 0.3179260492324829, -0.1852065771818161, -0.01040259376168251, -0.07633770257234573, -0.03301467373967171, 0.025806182995438576, 0.33849841356277466, -0.26874151825904846, 0.025201866403222084, -0.00018748654110822827, 0.014136203564703465, 0.0027106173802167177, 0.1675993949174881, 0.11746937781572342, -0.0827510729432106, 1.0332080125808716, -0.008736500516533852, -0.0010186590952798724, 0.028450550511479378, -0.10426276177167892, -0.17019996047019958, 0.02093644067645073, 0.7192452549934387, 0.14008361101150513, -0.17015202343463898, 0.23001323640346527]} +{"t": 4.4443, "q": [-0.12349056452512741, 0.006413743365556002, 0.006481677293777466, 0.31796011328697205, -0.18521498143672943, -0.010388433001935482, -0.07634622603654861, -0.03298910707235336, 0.0260472372174263, 0.3385239839553833, -0.26873740553855896, 0.02520904131233692, -0.00037497308221645653, 0.013690304011106491, 0.0024782621767371893, 0.16756343841552734, 0.11757723242044449, -0.08269115537405014, 1.0343704223632812, -0.0087245162576437, -0.0010665960144251585, 0.028486503288149834, -0.1049937978386879, -0.1690974235534668, 0.02063683606684208, 0.7103050351142883, 0.1504260003566742, -0.1803026646375656, 0.24157801270484924]} +{"t": 4.4612, "q": [-0.1234479546546936, 0.0062944344244897366, 0.00672273151576519, 0.31801125407218933, -0.18521498143672943, -0.010388433001935482, -0.0763547495007515, -0.03303172066807747, 0.02623472362756729, 0.33854955434799194, -0.2687287926673889, 0.02518010325729847, -0.0005624596378766, 0.01331108808517456, 0.002415248891338706, 0.16745558381080627, 0.11766112595796585, -0.08266718685626984, 1.0353411436080933, -0.008760469034314156, -0.0011624698527157307, 0.028558408841490746, -0.10547316819429398, -0.167851060628891, 0.02057691477239132, 0.7007056474685669, 0.1606844961643219, -0.18912306427955627, 0.2515249252319336]} +{"t": 4.478, "q": [-0.12339682132005692, 0.006243301089853048, 0.006990569643676281, 0.318036824464798, -0.18522340059280396, -0.010374262928962708, -0.07638883590698242, -0.03302319720387459, 0.026489170268177986, 0.3385751247406006, -0.26869094371795654, 0.025143716484308243, -0.0007901218486949801, 0.012977296486496925, 0.0023422010708600283, 0.16741962730884552, 0.11770906299352646, -0.08265519887208939, 1.036228060722351, -0.008700547739863396, -0.0011744541116058826, 0.028618330135941505, -0.1059165820479393, -0.16608937084674835, 0.020481040701270103, 0.6901955008506775, 0.17127855122089386, -0.19783559441566467, 0.26324549317359924]} +{"t": 4.4947, "q": [-0.12336273491382599, 0.006166602019220591, 0.007204839959740639, 0.3181135356426239, -0.1852106750011444, -0.010381313972175121, -0.07638883590698242, -0.03303172066807747, 0.026636481285095215, 0.3385751247406006, -0.2686365246772766, 0.02512158639729023, -0.0009910003282129765, 0.012757295742630959, 0.0022918740287423134, 0.1673237532377243, 0.11776898056268692, -0.08265519887208939, 1.0374863147735596, -0.0087245162576437, -0.0011624698527157307, 0.028678251430392265, -0.10600047558546066, -0.1639801561832428, 0.020481040701270103, 0.6787625551223755, 0.18196848034858704, -0.20745892822742462, 0.2752417027950287]} +{"t": 4.5114, "q": [-0.12333717197179794, 0.006141036283224821, 0.00739232636988163, 0.3181646466255188, -0.18521909415721893, -0.010367143899202347, -0.07638883590698242, -0.03303172066807747, 0.026823967695236206, 0.338617742061615, -0.2685777246952057, 0.025077786296606064, -0.0010579597437754273, 0.012567554600536823, 0.0021836047526448965, 0.16679644584655762, 0.11775700002908707, -0.08264321833848953, 1.0398712158203125, -0.0087245162576437, -0.0012104067718610168, 0.02870221994817257, -0.10606039315462112, -0.1609361618757248, 0.020445087924599648, 0.6679527759552002, 0.19179554283618927, -0.21806496381759644, 0.2869502902030945]} +{"t": 4.5282, "q": [-0.12326046824455261, 0.006141036283224821, 0.007553029339760542, 0.3182498812675476, -0.18521909415721893, -0.010367143899202347, -0.07637178897857666, -0.03304024040699005, 0.02690431848168373, 0.33872851729393005, -0.2685651481151581, 0.025070464238524437, -0.0010981354862451553, 0.0124537143856287, 0.0021224829833954573, 0.16649684309959412, 0.11776898056268692, -0.08265519887208939, 1.0412614345550537, -0.008736500516533852, -0.001282312092371285, 0.028738172724843025, -0.10584467649459839, -0.15797606110572815, 0.020505009219050407, 0.6564479470252991, 0.20034028589725494, -0.23033681511878967, 0.2970290184020996]} +{"t": 4.5449, "q": [-0.1232178583741188, 0.006158080417662859, 0.007700339891016483, 0.31828397512435913, -0.1852106750011444, -0.010381313972175121, -0.07638883590698242, -0.03304876387119293, 0.02702484466135502, 0.3387967050075531, -0.2685483396053314, 0.025055894628167152, -0.0012454462703317404, 0.012051448225975037, 0.001882199547253549, 0.16641294956207275, 0.11779294908046722, -0.08264321833848953, 1.0423519611358643, -0.008760469034314156, -0.0012583436910063028, 0.028750156983733177, -0.10580872744321823, -0.15454857051372528, 0.02057691477239132, 0.6437087059020996, 0.20981980860233307, -0.24127840995788574, 0.30930086970329285]} +{"t": 4.5616, "q": [-0.12318377196788788, 0.006158080417662859, 0.007753907702863216, 0.3184288442134857, -0.1852147877216339, -0.010360024869441986, -0.07637178897857666, -0.03303172066807747, 0.02707841247320175, 0.3388819098472595, -0.2685021460056305, 0.025019433349370956, -0.001232054433785379, 0.01173274964094162, 0.001751379924826324, 0.16628111898899078, 0.11779294908046722, -0.08263123035430908, 1.0429271459579468, -0.008772453293204308, -0.0012463594321161509, 0.02877412550151348, -0.10567689687013626, -0.1512768715620041, 0.021020330488681793, 0.6309694647789001, 0.21855631470680237, -0.25400564074516296, 0.3209735155105591]} +{"t": 4.5783, "q": [-0.12316672503948212, 0.006141036283224821, 0.007807475049048662, 0.3186163306236267, -0.18522749841213226, -0.010352982208132744, -0.07634622603654861, -0.03304876387119293, 0.02707841247320175, 0.3389841914176941, -0.26843103766441345, 0.024997156113386154, -0.0011115273227915168, 0.011520384810864925, 0.0017345210071653128, 0.1661253273487091, 0.11776898056268692, -0.08263123035430908, 1.0430949926376343, -0.008736500516533852, -0.0012343751732259989, 0.028798094019293785, -0.10562895983457565, -0.1481010615825653, 0.021044299006462097, 0.6185058355331421, 0.22450049221515656, -0.2664332985877991, 0.3317353427410126]} +{"t": 4.5951, "q": [-0.12320933490991592, 0.006072858814150095, 0.007794083096086979, 0.31882938742637634, -0.18522340059280396, -0.010374262928962708, -0.07636326551437378, -0.033065807074308395, 0.02707841247320175, 0.33905234932899475, -0.26841843128204346, 0.024989835917949677, -0.0009374326909892261, 0.011497706174850464, 0.0017778973560780287, 0.16613730788230896, 0.11770906299352646, -0.08263123035430908, 1.043190836906433, -0.008772453293204308, -0.0012343751732259989, 0.02882206253707409, -0.10567689687013626, -0.14491325616836548, 0.021751368418335915, 0.6057066917419434, 0.23261381685733795, -0.28034698963165283, 0.3428207337856293]} +{"t": 4.6118, "q": [-0.12322638183832169, 0.005987638141959906, 0.007807475049048662, 0.3189401626586914, -0.18522340059280396, -0.010374262928962708, -0.07636326551437378, -0.03315103054046631, 0.02707841247320175, 0.3391290605068207, -0.26839354634284973, 0.025004038587212563, -0.0006428110064007342, 0.011497706174850464, 0.0017778973560780287, 0.16614930331707, 0.11775700002908707, -0.08260726183652878, 1.0433706045150757, -0.00878443755209446, -0.0012583436910063028, 0.028810078278183937, -0.10543721169233322, -0.1416655331850052, 0.021955100819468498, 0.5936865210533142, 0.2389654517173767, -0.29360154271125793, 0.35395410656929016]} +{"t": 4.6286, "q": [-0.12320933490991592, 0.0058768498711287975, 0.007807475049048662, 0.3189998269081116, -0.1852106750011444, -0.010381313972175121, -0.0763547495007515, -0.03315103054046631, 0.02706502191722393, 0.3392142951488495, -0.26838943362236023, 0.0250112134963274, -0.000522283953614533, 0.011520477011799812, 0.0017920417012646794, 0.16624517738819122, 0.11774501204490662, -0.08265519887208939, 1.0435503721237183, -0.008760469034314156, -0.0012583436910063028, 0.028905950486660004, -0.10524546355009079, -0.13803429901599884, 0.022410500794649124, 0.5808035135269165, 0.24330374598503113, -0.3101637363433838, 0.36384108662605286]} +{"t": 4.6455, "q": [-0.12320933490991592, 0.005902416538447142, 0.007807475049048662, 0.3190680146217346, -0.18521057069301605, -0.010367114096879959, -0.07636326551437378, -0.03314250707626343, 0.02705162949860096, 0.3392654061317444, -0.2683853209018707, 0.025018388405442238, -0.00040175687172450125, 0.011558381840586662, 0.0017868553986772895, 0.16629311442375183, 0.11785287410020828, -0.08264321833848953, 1.0437780618667603, -0.0087245162576437, -0.0012583436910063028, 0.028917934745550156, -0.1050177663564682, -0.13416339457035065, 0.022494390606880188, 0.5681960582733154, 0.25015872716903687, -0.3246646523475647, 0.3733445703983307]} +{"t": 4.6622, "q": [-0.12320933490991592, 0.005902416538447142, 0.007794083096086979, 0.3190935552120209, -0.18521487712860107, -0.01037423312664032, -0.07634622603654861, -0.03313398361206055, 0.027091804891824722, 0.3392994999885559, -0.26838943362236023, 0.0250112134963274, -0.00036158118746243417, 0.011573531664907932, 0.0017771113198250532, 0.16626913845539093, 0.11779294908046722, -0.08265519887208939, 1.0438499450683594, -0.008736500516533852, -0.0012223910307511687, 0.028977856040000916, -0.10492189228534698, -0.12981313467025757, 0.02268613874912262, 0.5555407404899597, 0.25757694244384766, -0.3413946330547333, 0.3827042579650879]} +{"t": 4.6789, "q": [-0.12320933490991592, 0.005936504807323217, 0.007780691608786583, 0.319085031747818, -0.1852147877216339, -0.010360024869441986, -0.07637178897857666, -0.03309989720582962, 0.02703823707997799, 0.33932507038116455, -0.2683853209018707, 0.025018388405442238, -0.00042854066123254597, 0.011588712222874165, 0.001786540960893035, 0.16624517738819122, 0.11780493706464767, -0.08261924982070923, 1.0438978672027588, -0.008736500516533852, -0.0012463594321161509, 0.02906174585223198, -0.10465823858976364, -0.1252111792564392, 0.022158833220601082, 0.5436643958091736, 0.2615557014942169, -0.35754936933517456, 0.3922676742076874]} +{"t": 4.6958, "q": [-0.12318377196788788, 0.005996159743517637, 0.007807475049048662, 0.3190935552120209, -0.1852106750011444, -0.010381313972175121, -0.07638031244277954, -0.03309137374162674, 0.027105197310447693, 0.339290976524353, -0.26839354634284973, 0.025004038587212563, -0.00040175687172450125, 0.011619072407484055, 0.001805399777367711, 0.16613730788230896, 0.11782890558242798, -0.08263123035430908, 1.0440057516098022, -0.00882038939744234, -0.001270327833481133, 0.029109682887792587, -0.10435863584280014, -0.12160393595695496, 0.022182801738381386, 0.5318599343299866, 0.26566630601882935, -0.3719903528690338, 0.3991825580596924]} +{"t": 4.7127, "q": [-0.12319229543209076, 0.006021726410835981, 0.007794083096086979, 0.31905949115753174, -0.1852106750011444, -0.010381313972175121, -0.07640587538480759, -0.03305728733539581, 0.02702484466135502, 0.3392568826675415, -0.26838943362236023, 0.0250112134963274, -0.00042854066123254597, 0.011641858145594597, 0.0018291310407221317, 0.16608937084674835, 0.11786485463380814, -0.08261924982070923, 1.0440657138824463, -0.008856342174112797, -0.0012583436910063028, 0.029205556958913803, -0.10238123685121536, -0.11750532686710358, 0.022170817479491234, 0.520331084728241, 0.26990872621536255, -0.3889719843864441, 0.40620532631874084]} +{"t": 4.7294, "q": [-0.12320933490991592, 0.006106947083026171, 0.007794083096086979, 0.31901687383651733, -0.18521487712860107, -0.01037423312664032, -0.07643996924161911, -0.03303172066807747, 0.02705162949860096, 0.33922281861305237, -0.26839354634284973, 0.025004038587212563, -0.00042854066123254597, 0.011543353088200092, 0.0018732936587184668, 0.1660773903131485, 0.11784088611602783, -0.08263123035430908, 1.04414963722229, -0.00882038939744234, -0.0012583436910063028, 0.029289446771144867, -0.10063154250383377, -0.11429355293512344, 0.022470422089099884, 0.509868860244751, 0.27488216757774353, -0.4035927653312683, 0.41252100467681885]} +{"t": 4.7462, "q": [-0.12320933490991592, 0.006106947083026171, 0.007807475049048662, 0.3189401626586914, -0.1852063685655594, -0.01037419494241476, -0.07644849270582199, -0.033065807074308395, 0.02703823707997799, 0.3391546308994293, -0.2683768570423126, 0.025003891438245773, -0.0005490677431225777, 0.011490358971059322, 0.0019265713635832071, 0.16604143381118774, 0.11782890558242798, -0.08263123035430908, 1.0441975593566895, -0.008796420879662037, -0.001270327833481133, 0.029445242136716843, -0.09865414351224899, -0.11084210127592087, 0.022530343383550644, 0.5008566975593567, 0.27811792492866516, -0.4183692932128906, 0.4187527894973755]} +{"t": 4.7629, "q": [-0.12322638183832169, 0.006158080417662859, 0.007794083096086979, 0.318854957818985, -0.18521487712860107, -0.01037423312664032, -0.07650814205408096, -0.03303172066807747, 0.02703823707997799, 0.33910349011421204, -0.26838943362236023, 0.0250112134963274, -0.0005624596378766, 0.011384263634681702, 0.0019660191610455513, 0.165777787566185, 0.11773303151130676, -0.08261924982070923, 1.0442934036254883, -0.008796420879662037, -0.001270327833481133, 0.029684925451874733, -0.09667674452066422, -0.10757040232419968, 0.022170817479491234, 0.4915330111980438, 0.2797837257385254, -0.431228369474411, 0.4250445067882538]} +{"t": 4.7796, "q": [-0.12324342876672745, 0.006166602019220591, 0.007794083096086979, 0.31873562932014465, -0.18521909415721893, -0.010367143899202347, -0.07655075192451477, -0.03302319720387459, 0.027011454105377197, 0.3390268087387085, -0.2683809697628021, 0.024996716529130936, -0.0005356758483685553, 0.011346450075507164, 0.0020287265069782734, 0.16562199592590332, 0.11776898056268692, -0.08263123035430908, 1.0443294048309326, -0.00882038939744234, -0.001282312092371285, 0.029924610629677773, -0.09517871588468552, -0.10518554598093033, 0.022122880443930626, 0.484426349401474, 0.281161904335022, -0.4441353976726532, 0.4307250380516052]} +{"t": 4.7964, "q": [-0.12326046824455261, 0.006149557884782553, 0.007780691608786583, 0.31860780715942383, -0.1852191835641861, -0.01038135215640068, -0.07657632231712341, -0.03303172066807747, 0.027011454105377197, 0.33890748023986816, -0.26838943362236023, 0.0250112134963274, -0.0004151487664785236, 0.011293455958366394, 0.0020820042118430138, 0.1654062718153, 0.11782890558242798, -0.08264321833848953, 1.0443413257598877, -0.008856342174112797, -0.001270327833481133, 0.030224215239286423, -0.09393236041069031, -0.10345982015132904, 0.022134864702820778, 0.4780147969722748, 0.28295955061912537, -0.4569944739341736, 0.43612992763519287]} +{"t": 4.8131, "q": [-0.12327751517295837, 0.006115469615906477, 0.007780691608786583, 0.3184373676776886, -0.1852191835641861, -0.01038135215640068, -0.0765848457813263, -0.03304024040699005, 0.026931101456284523, 0.3387967050075531, -0.26839354634284973, 0.025004038587212563, -0.00013391896209213883, 0.011316241696476936, 0.0021057354751974344, 0.16505873203277588, 0.11780493706464767, -0.08261924982070923, 1.044389247894287, -0.008832373656332493, -0.0012583436910063028, 0.030595727264881134, -0.0927099660038948, -0.10260893404483795, 0.022182801738381386, 0.47141149640083313, 0.2845294773578644, -0.46936216950416565, 0.4397971034049988]} +{"t": 4.8299, "q": [-0.12329455465078354, 0.006064337212592363, 0.0077672996558249, 0.31822431087493896, -0.18521487712860107, -0.01037423312664032, -0.07661040872335434, -0.03302319720387459, 0.02689092606306076, 0.33868589997291565, -0.26839789748191833, 0.025025710463523865, 0.00030801360844634473, 0.011361858807504177, 0.00218195840716362, 0.16486698389053345, 0.11774501204490662, -0.08264321833848953, 1.0444252490997314, -0.00882038939744234, -0.001270327833481133, 0.031087080016732216, -0.09185908734798431, -0.10198576003313065, 0.022242721170186996, 0.4640531837940216, 0.286051481962204, -0.47805073857307434, 0.4426133930683136]} +{"t": 4.8466, "q": [-0.12330307811498642, 0.0060472930781543255, 0.0077672996558249, 0.3180709183216095, -0.18521909415721893, -0.010367143899202347, -0.07666154205799103, -0.03304876387119293, 0.02689092606306076, 0.3385239839553833, -0.2683853209018707, 0.025018388405442238, 0.0006829866906628013, 0.011346815153956413, 0.0022588097490370274, 0.16474714875221252, 0.11760120093822479, -0.08265519887208939, 1.0444492101669312, -0.00882038939744234, -0.0012343751732259989, 0.03181811794638634, -0.09199091047048569, -0.10179401189088821, 0.022230736911296844, 0.4591396450996399, 0.2872738540172577, -0.48718273639678955, 0.44495031237602234]} +{"t": 4.8634, "q": [-0.12333717197179794, 0.006098425481468439, 0.007700339891016483, 0.3179345726966858, -0.1852235049009323, -0.010388471186161041, -0.07666154205799103, -0.03304876387119293, 0.026797182857990265, 0.3383791148662567, -0.26838943362236023, 0.0250112134963274, 0.001084743533283472, 0.011210511438548565, 0.002375266747549176, 0.1646512746810913, 0.11754128336906433, -0.08266718685626984, 1.0444731712341309, -0.008832373656332493, -0.001282312092371285, 0.03290868178009987, -0.09209877252578735, -0.10184194892644882, 0.022015022113919258, 0.45458564162254333, 0.28822061419487, -0.4959312081336975, 0.44606485962867737]} +{"t": 4.8801, "q": [-0.12334568798542023, 0.006089902948588133, 0.0076869479380548, 0.31781524419784546, -0.1852191835641861, -0.01038135215640068, -0.07665301859378815, -0.03304876387119293, 0.026743615046143532, 0.33826833963394165, -0.26840201020240784, 0.025018535554409027, 0.0011517030652612448, 0.01097558531910181, 0.0025261573027819395, 0.1646272987127304, 0.11754128336906433, -0.08267916738986969, 1.044485092163086, -0.008856342174112797, -0.001270327833481133, 0.034202978014945984, -0.09212274104356766, -0.10206964612007141, 0.021799305453896523, 0.449384480714798, 0.2890475392341614, -0.5041763782501221, 0.4462566077709198]} +{"t": 4.8969, "q": [-0.12332864850759506, 0.006106947083026171, 0.007660164497792721, 0.3176192343235016, -0.1852191835641861, -0.01038135215640068, -0.07666154205799103, -0.03301467373967171, 0.02673022449016571, 0.3381149172782898, -0.26839789748191833, 0.025025710463523865, 0.0011383111122995615, 0.010838787071406841, 0.0025462692137807608, 0.1646033376455307, 0.11749334633350372, -0.08266718685626984, 1.04454505443573, -0.008856342174112797, -0.0012343751732259989, 0.03544933721423149, -0.09232646971940994, -0.10218948870897293, 0.02147573232650757, 0.44472262263298035, 0.28998228907585144, -0.5104800462722778, 0.44631651043891907]} +{"t": 4.9136, "q": [-0.12332864850759506, 0.006141036283224821, 0.007660164497792721, 0.31749141216278076, -0.18522340059280396, -0.010374262928962708, -0.07667858898639679, -0.03304876387119293, 0.02671683207154274, 0.3379700481891632, -0.26840201020240784, 0.025018535554409027, 0.0012454462703317404, 0.010755117051303387, 0.00251328875310719, 0.16437563300132751, 0.11742144078016281, -0.08269115537405014, 1.0445690155029297, -0.008856342174112797, -0.001270327833481133, 0.036551885306835175, -0.09544236958026886, -0.10247711092233658, 0.02124803140759468, 0.44115132093429565, 0.2922593057155609, -0.5150700211524963, 0.4462326169013977]} +{"t": 4.9303, "q": [-0.12335421144962311, 0.006158080417662859, 0.007459285669028759, 0.3174402713775635, -0.18522340059280396, -0.010374262928962708, -0.0766274556517601, -0.03301467373967171, 0.02654273808002472, 0.33794447779655457, -0.26840201020240784, 0.025018535554409027, 0.0018079059664160013, 0.010800650343298912, 0.0024650420527905226, 0.16369253396987915, 0.11728961020708084, -0.0827750414609909, 1.0446408987045288, -0.008796420879662037, -0.001270327833481133, 0.037462688982486725, -0.09975668787956238, -0.10299243032932281, 0.020984377712011337, 0.438550740480423, 0.2946561574935913, -0.5169155597686768, 0.4457532465457916]} +{"t": 4.9471, "q": [-0.1234053447842598, 0.006158080417662859, 0.007178056053817272, 0.3173891305923462, -0.1852191835641861, -0.01038135215640068, -0.0765848457813263, -0.03301467373967171, 0.026288291439414024, 0.3379189074039459, -0.26839765906333923, 0.024996863678097725, 0.002691771136596799, 0.010808229446411133, 0.00245060957968235, 0.16264989972114563, 0.11720572412014008, -0.08279900997877121, 1.0446768999099731, -0.00882038939744234, -0.0011984225129708648, 0.03807388246059418, -0.1043706163764, -0.10320814698934555, 0.02082858420908451, 0.43795153498649597, 0.29544711112976074, -0.5171792507171631, 0.4448544383049011]} +{"t": 4.9638, "q": [-0.12353317439556122, 0.006149557884782553, 0.006776299327611923, 0.3173294961452484, -0.1852191835641861, -0.01038135215640068, -0.07657632231712341, -0.03302319720387459, 0.025980276986956596, 0.3378337025642395, -0.26840612292289734, 0.02501136064529419, 0.003173879347741604, 0.010739914141595364, 0.002513393061235547, 0.1609361618757248, 0.11710985004901886, -0.08285893499851227, 1.0447847843170166, -0.008796420879662037, -0.0011864382540807128, 0.03850531578063965, -0.10781008750200272, -0.10328005254268646, 0.02064882032573223, 0.43843090534210205, 0.2956867814064026, -0.5170234441757202, 0.4438597559928894]} +{"t": 4.9805, "q": [-0.1236780509352684, 0.006158080417662859, 0.006454893853515387, 0.3173380196094513, -0.1852193921804428, -0.01040975097566843, -0.0765337124466896, -0.03301467373967171, 0.025645479559898376, 0.3377399444580078, -0.26840201020240784, 0.025018535554409027, 0.004272014833986759, 0.010345025919377804, 0.0027653605211526155, 0.15935423970222473, 0.1170019879937172, -0.08284694701433182, 1.0447967052459717, -0.008832373656332493, -0.0012104067718610168, 0.038673095405101776, -0.10975153744220734, -0.10368751734495163, 0.02039715088903904, 0.438550740480423, 0.295878529548645, -0.5170593857765198, 0.44242164492607117]} +{"t": 4.9973, "q": [-0.12388258427381516, 0.006141036283224821, 0.006012961268424988, 0.3173465430736542, -0.18521498143672943, -0.010388433001935482, -0.07655075192451477, -0.033006154000759125, 0.02520354837179184, 0.3377058804035187, -0.26840201020240784, 0.025018535554409027, 0.005731731187552214, 0.010102169588208199, 0.0030162851326167583, 0.1584913730621338, 0.11701397597789764, -0.08285893499851227, 1.0448087453842163, -0.008796420879662037, -0.0012343751732259989, 0.03880492225289345, -0.11196861416101456, -0.10446649044752121, 0.020205404609441757, 0.4385627210140228, 0.2960343360900879, -0.5169755220413208, 0.4399169385433197]} +{"t": 5.014, "q": [-0.12412120401859283, 0.006106947083026171, 0.005678163841366768, 0.3173465430736542, -0.18521077930927277, -0.010395512916147709, -0.07657632231712341, -0.03296354413032532, 0.02486875094473362, 0.3375183939933777, -0.26841869950294495, 0.02501869946718216, 0.00646828580647707, 0.009927568957209587, 0.0031660792883485556, 0.15845543146133423, 0.11701397597789764, -0.08283496648073196, 1.044832706451416, -0.008796420879662037, -0.0012343751732259989, 0.03894873335957527, -0.114053875207901, -0.10458633303642273, 0.019965719431638718, 0.4384428858757019, 0.29609423875808716, -0.5168676376342773, 0.43690890073776245]} +{"t": 5.0308, "q": [-0.12412972748279572, 0.006141036283224821, 0.005624596029520035, 0.31716758012771606, -0.1852191835641861, -0.01038135215640068, -0.0765848457813263, -0.03301467373967171, 0.024828573688864708, 0.33726271986961365, -0.2684144675731659, 0.02501143328845501, 0.006602204404771328, 0.00978328287601471, 0.003258144250139594, 0.15867114067077637, 0.11709786206483841, -0.08279900997877121, 1.0449045896530151, -0.00882038939744234, -0.0012343751732259989, 0.0391165129840374, -0.11694207042455673, -0.10446649044752121, 0.019761987030506134, 0.4385747015476227, 0.2961062490940094, -0.5165320634841919, 0.43493151664733887]} +{"t": 5.0475, "q": [-0.12412120401859283, 0.006166602019220591, 0.005651379935443401, 0.3170567750930786, -0.18522781133651733, -0.010395590215921402, -0.07661040872335434, -0.03298910707235336, 0.02484196610748768, 0.3372030556201935, -0.26841869950294495, 0.02501869946718216, 0.006441501900553703, 0.009722576476633549, 0.0033256688620895147, 0.15875503420829773, 0.11715778708457947, -0.08279900997877121, 1.0451443195343018, -0.008832373656332493, -0.001270327833481133, 0.03929627314209938, -0.12093281745910645, -0.10435863584280014, 0.019486350938677788, 0.4386466145515442, 0.2961302101612091, -0.5161365866661072, 0.4326065480709076]} +{"t": 5.0644, "q": [-0.12412120401859283, 0.006192168686538935, 0.005624596029520035, 0.316911906003952, -0.185232013463974, -0.010388500988483429, -0.07663597911596298, -0.033006154000759125, 0.02484196610748768, 0.3371093273162842, -0.26841869950294495, 0.02501869946718216, 0.006267406977713108, 0.009615415707230568, 0.0034131587017327547, 0.15875503420829773, 0.11724167317152023, -0.08278702944517136, 1.0452520847320557, -0.00882038939744234, -0.001270327833481133, 0.039511989802122116, -0.12450411915779114, -0.10429871082305908, 0.018731344491243362, 0.4386226534843445, 0.2961302101612091, -0.5156213045120239, 0.42937082052230835]} +{"t": 5.0813, "q": [-0.12411268055438995, 0.006200690288096666, 0.005637987982481718, 0.31680113077163696, -0.18521519005298615, -0.010416831821203232, -0.0765848457813263, -0.033006154000759125, 0.02486875094473362, 0.33702409267425537, -0.2684144675731659, 0.02501143328845501, 0.006187055725604296, 0.009569261223077774, 0.0034617455676198006, 0.1586591601371765, 0.1173735037446022, -0.0827750414609909, 1.0453240871429443, -0.008856342174112797, -0.0012463594321161509, 0.0397157222032547, -0.12825517356395721, -0.10434664785861969, 0.01798832230269909, 0.44015663862228394, 0.2961302101612091, -0.5146146416664124, 0.42542800307273865]} +{"t": 5.098, "q": [-0.1241382509469986, 0.006209212820976973, 0.005624596029520035, 0.31680113077163696, -0.1852191835641861, -0.01038135215640068, -0.07659336179494858, -0.03298910707235336, 0.02484196610748768, 0.33704113960266113, -0.26841869950294495, 0.02501869946718216, 0.006039745174348354, 0.009538012556731701, 0.0035679612774401903, 0.15805993974208832, 0.11751731485128403, -0.08267916738986969, 1.0452880859375, -0.008832373656332493, -0.0011984225129708648, 0.03989548608660698, -0.13129916787147522, -0.10452641546726227, 0.016957677900791168, 0.441834419965744, 0.2960343360900879, -0.5127930045127869, 0.4205983579158783]} +{"t": 5.1148, "q": [-0.12412972748279572, 0.006192168686538935, 0.005651379935443401, 0.3167073726654053, -0.18522340059280396, -0.010374262928962708, -0.07660188525915146, -0.03298910707235336, 0.02484196610748768, 0.3370070457458496, -0.26841869950294495, 0.02501869946718216, 0.0059995693154633045, 0.009446077980101109, 0.003607359016314149, 0.15730494260787964, 0.11763715744018555, -0.08266718685626984, 1.0453120470046997, -0.008796420879662037, -0.0011984225129708648, 0.04000334441661835, -0.13395966589450836, -0.10520951449871063, 0.01581917703151703, 0.4449862539768219, 0.29591450095176697, -0.5103961825370789, 0.4145223796367645]} +{"t": 5.1315, "q": [-0.12416381388902664, 0.006166602019220591, 0.005651379935443401, 0.31667327880859375, -0.18522781133651733, -0.010395590215921402, -0.07661040872335434, -0.033006154000759125, 0.02484196610748768, 0.33698147535324097, -0.2684144675731659, 0.02501143328845501, 0.006026353221386671, 0.009200959466397762, 0.00370599958114326, 0.15677763521671295, 0.1176731064915657, -0.08269115537405014, 1.0453360080718994, -0.008796420879662037, -0.0011504855938255787, 0.04006326571106911, -0.13598500192165375, -0.10542523115873337, 0.012930979020893574, 0.44746699929237366, 0.29581862688064575, -0.5075439214706421, 0.40890175104141235]} +{"t": 5.1482, "q": [-0.12419790029525757, 0.006166602019220591, 0.005624596029520035, 0.31663069128990173, -0.18522340059280396, -0.010374262928962708, -0.0766274556517601, -0.032997630536556244, 0.024801790714263916, 0.336862176656723, -0.2684144675731659, 0.02501143328845501, 0.00605313666164875, 0.00857465248554945, 0.0040956661105155945, 0.1564420759677887, 0.11770906299352646, -0.08267916738986969, 1.045348048210144, -0.008772453293204308, -0.0011385014513507485, 0.04015913978219032, -0.13799835741519928, -0.10535332560539246, 0.008173241280019283, 0.4494084417819977, 0.29567480087280273, -0.5044999122619629, 0.40178313851356506]} +{"t": 5.1649, "q": [-0.1241808608174324, 0.006141036283224821, 0.005624596029520035, 0.3165965974330902, -0.18523621559143066, -0.010381420142948627, -0.0766274556517601, -0.03302319720387459, 0.024748222902417183, 0.3368280827999115, -0.26841869950294495, 0.02501869946718216, 0.006079920567572117, 0.008006257005035877, 0.004458344075828791, 0.15637017786502838, 0.11774501204490662, -0.08270313590765, 1.0453959703445435, -0.00882038939744234, -0.0011385014513507485, 0.04020707681775093, -0.14034725725650787, -0.10537729412317276, 0.0029361352790147066, 0.45138585567474365, 0.2952553629875183, -0.5021510124206543, 0.39474838972091675]} +{"t": 5.1817, "q": [-0.12421494722366333, 0.006132513750344515, 0.005624596029520035, 0.3165539801120758, -0.18523621559143066, -0.010381420142948627, -0.07664449512958527, -0.03298910707235336, 0.024734830483794212, 0.33670878410339355, -0.2684144675731659, 0.02501143328845501, 0.006200447678565979, 0.0075288680382072926, 0.004753364250063896, 0.15631024539470673, 0.11772104352712631, -0.08269115537405014, 1.045455813407898, -0.008868326433002949, -0.0011385014513507485, 0.04024302959442139, -0.14304371178150177, -0.10552110522985458, -0.0023848607670515776, 0.45363888144493103, 0.2947640120983124, -0.49953845143318176, 0.38806119561195374]} +{"t": 5.1984, "q": [-0.12419790029525757, 0.006132513750344515, 0.005584420636296272, 0.3165454566478729, -0.185232013463974, -0.010388500988483429, -0.07661040872335434, -0.033006154000759125, 0.02468126453459263, 0.3366491198539734, -0.26841869950294495, 0.02501869946718216, 0.006347758695483208, 0.007052926812320948, 0.004932422656565905, 0.15631024539470673, 0.11776898056268692, -0.08267916738986969, 1.045503854751587, -0.008832373656332493, -0.0011385014513507485, 0.04030295088887215, -0.14626747369766235, -0.10640793293714523, -0.007334345951676369, 0.4557481110095978, 0.2938172519207001, -0.49626675248146057, 0.381805419921875]} +{"t": 5.2153, "q": [-0.12420642375946045, 0.006141036283224821, 0.005517460871487856, 0.3165625035762787, -0.18522760272026062, -0.010367182083427906, -0.07654223591089249, -0.03303172066807747, 0.024574128910899162, 0.33665764331817627, -0.26841869950294495, 0.02501869946718216, 0.0066289883106946945, 0.006133560091257095, 0.004838187247514725, 0.15629826486110687, 0.11782890558242798, -0.08266718685626984, 1.0455278158187866, -0.00882038939744234, -0.0011265171924605966, 0.0403149351477623, -0.150198295712471, -0.1071389764547348, -0.012463593855500221, 0.45774945616722107, 0.2928585112094879, -0.49195244908332825, 0.3739437758922577]} +{"t": 5.232, "q": [-0.12423199415206909, 0.006166602019220591, 0.0053701503202319145, 0.31653693318367004, -0.185232013463974, -0.010388500988483429, -0.0764911025762558, -0.033006154000759125, 0.024480385705828667, 0.3366832137107849, -0.26841869950294495, 0.02501869946718216, 0.006896826438605785, 0.004610105417668819, 0.0046577309258282185, 0.15631024539470673, 0.11793676018714905, -0.08266718685626984, 1.045515775680542, -0.008832373656332493, -0.0011504855938255787, 0.04038684070110321, -0.15433284640312195, -0.10845723748207092, -0.016777915880084038, 0.4602062404155731, 0.2919597029685974, -0.48725461959838867, 0.36478784680366516]} +{"t": 5.2488, "q": [-0.12429164350032806, 0.006192168686538935, 0.005263015162199736, 0.31662216782569885, -0.18523621559143066, -0.010381420142948627, -0.07648257911205292, -0.03298058733344078, 0.024426817893981934, 0.3367002606391907, -0.2684144675731659, 0.02501143328845501, 0.007070920895785093, 0.0028218869119882584, 0.004491741769015789, 0.15631024539470673, 0.11830826848745346, -0.08264321833848953, 1.045515775680542, -0.00882038939744234, -0.0012104067718610168, 0.04045874625444412, -0.15882693231105804, -0.11032677441835403, -0.020433103665709496, 0.46217164397239685, 0.2905695140361786, -0.48219728469848633, 0.35517647862434387]} +{"t": 5.2656, "q": [-0.12433425337076187, 0.006192168686538935, 0.005263015162199736, 0.31668180227279663, -0.185232013463974, -0.010388500988483429, -0.07650814205408096, -0.03302319720387459, 0.024453600868582726, 0.3367002606391907, -0.2684144675731659, 0.02501143328845501, 0.00709770480170846, 0.0012679958017542958, 0.00442521832883358, 0.1564420759677887, 0.11878763884305954, -0.08259528130292892, 1.0455517768859863, -0.008796420879662037, -0.0012343751732259989, 0.04062652215361595, -0.16399213671684265, -0.1125798150897026, -0.023369239643216133, 0.46452054381370544, 0.2874775826931, -0.4770081043243408, 0.3454572856426239]} +{"t": 5.2823, "q": [-0.1243683472275734, 0.006192168686538935, 0.005276407115161419, 0.31680965423583984, -0.18522340059280396, -0.010374262928962708, -0.07650814205408096, -0.03301467373967171, 0.02450716868042946, 0.3367769718170166, -0.2684144675731659, 0.02501143328845501, 0.006963785737752914, -0.0003396417887415737, 0.004372251685708761, 0.15656191110610962, 0.11920709162950516, -0.08259528130292892, 1.0456116199493408, -0.008856342174112797, -0.0012104067718610168, 0.0409141443669796, -0.16960075497627258, -0.11447332054376602, -0.027240144088864326, 0.46703723073005676, 0.28431376814842224, -0.4701171815395355, 0.33615753054618835]} +{"t": 5.2991, "q": [-0.12440243363380432, 0.006192168686538935, 0.005276407115161419, 0.31689485907554626, -0.18522781133651733, -0.010395590215921402, -0.0764911025762558, -0.03302319720387459, 0.024493776261806488, 0.33680251240730286, -0.26841023564338684, 0.025004185736179352, 0.00709770480170846, -0.0021208736579865217, 0.004218167159706354, 0.15647803246974945, 0.11965050548315048, -0.08252337574958801, 1.0456715822219849, -0.00882038939744234, -0.0011744541116058826, 0.04128565639257431, -0.17462214827537537, -0.11604325473308563, -0.03377154842019081, 0.4697696566581726, 0.27882498502731323, -0.46209973096847534, 0.32389765977859497]} +{"t": 5.3158, "q": [-0.12447060644626617, 0.006141036283224821, 0.005115704145282507, 0.3169204294681549, -0.18522770702838898, -0.010381381958723068, -0.07643144577741623, -0.03298910707235336, 0.0243732500821352, 0.33680251240730286, -0.26841869950294495, 0.02501869946718216, 0.007619988638907671, -0.003676334861665964, 0.004004236776381731, 0.1562143713235855, 0.1200699508190155, -0.0824754387140274, 1.0456476211547852, -0.008796420879662037, -0.0011984225129708648, 0.041741058230400085, -0.17872075736522675, -0.11721770465373993, -0.041309624910354614, 0.47328102588653564, 0.2739354074001312, -0.4554245173931122, 0.3128841519355774]} +{"t": 5.3326, "q": [-0.12448765337467194, 0.006089902948588133, 0.005021960940212011, 0.3170141577720642, -0.18522340059280396, -0.010374262928962708, -0.07638883590698242, -0.03298910707235336, 0.024306289851665497, 0.3368195593357086, -0.26841869950294495, 0.02501869946718216, 0.008249407634139061, -0.005367700941860676, 0.003780375700443983, 0.15608255565166473, 0.12060924619436264, -0.08243948221206665, 1.0456836223602295, -0.008796420879662037, -0.0012463594321161509, 0.042328283190727234, -0.1829991191625595, -0.11919510364532471, -0.048056744039058685, 0.4775354266166687, 0.26986077427864075, -0.44744303822517395, 0.30139127373695374]} +{"t": 5.3494, "q": [-0.1245473101735115, 0.006055814679712057, 0.005008568987250328, 0.3170738220214844, -0.1852191835641861, -0.01038135215640068, -0.07640587538480759, -0.033006154000759125, 0.024266114458441734, 0.3368195593357086, -0.26841869950294495, 0.02501869946718216, 0.00847707036882639, -0.0069321636110544205, 0.0035509259905666113, 0.1561664342880249, 0.1212444081902504, -0.08241551369428635, 1.0456715822219849, -0.00878443755209446, -0.0012463594321161509, 0.0430353544652462, -0.18782876431941986, -0.12226306647062302, -0.052922338247299194, 0.4831080734729767, 0.2632814347743988, -0.4382511377334595, 0.289562851190567]} +{"t": 5.3663, "q": [-0.12463252991437912, 0.006030248012393713, 0.004955001175403595, 0.31716758012771606, -0.185232013463974, -0.010388500988483429, -0.07640587538480759, -0.03303172066807747, 0.024239331483840942, 0.33681103587150574, -0.26841023564338684, 0.025004185736179352, 0.008758299984037876, -0.008484989404678345, 0.0034243923146277666, 0.15615445375442505, 0.12190353870391846, -0.08236757665872574, 1.0456955432891846, -0.00878443755209446, -0.001270327833481133, 0.04388623312115669, -0.19172362983226776, -0.12605008482933044, -0.05692506954073906, 0.48923203349113464, 0.25538384914398193, -0.42976629734039307, 0.27854934334754944]} +{"t": 5.383, "q": [-0.12468366324901581, 0.005987638141959906, 0.004888041876256466, 0.31721869111061096, -0.18522340059280396, -0.010374262928962708, -0.07640587538480759, -0.03301467373967171, 0.024145588278770447, 0.3367684483528137, -0.26841047406196594, 0.025033049285411835, 0.009052921086549759, -0.010049346834421158, 0.003261113539338112, 0.15617842972278595, 0.12262259423732758, -0.08236757665872574, 1.0457075834274292, -0.008796420879662037, -0.0012463594321161509, 0.04488092288374901, -0.19501930475234985, -0.13121528923511505, -0.05909421294927597, 0.4959551692008972, 0.24948759377002716, -0.41846516728401184, 0.2673201262950897]} +{"t": 5.3998, "q": [-0.12474332004785538, 0.0060046822763979435, 0.00479429867118597, 0.3172357380390167, -0.18522340059280396, -0.010374262928962708, -0.07641439884901047, -0.03303172066807747, 0.024065235629677773, 0.33675140142440796, -0.26841869950294495, 0.02501869946718216, 0.009240408428013325, -0.011606111191213131, 0.0031956438906490803, 0.1562143713235855, 0.12335363030433655, -0.08237956464290619, 1.0457075834274292, -0.008796420879662037, -0.0012583436910063028, 0.04583965986967087, -0.19751201570034027, -0.13713549077510834, -0.060328591614961624, 0.5031576752662659, 0.24263262748718262, -0.4092133641242981, 0.2561987638473511]} +{"t": 5.4165, "q": [-0.12486262619495392, 0.006021726410835981, 0.004646987654268742, 0.3172357380390167, -0.18522340059280396, -0.010374262928962708, -0.07643144577741623, -0.03304024040699005, 0.023904534056782722, 0.3366491198539734, -0.26841869950294495, 0.02501869946718216, 0.009374327026307583, -0.012879207730293274, 0.0032123031560331583, 0.1562143713235855, 0.12390490621328354, -0.08237956464290619, 1.0457075834274292, -0.008808405138552189, -0.0012223910307511687, 0.046426888555288315, -0.19921377301216125, -0.14289990067481995, -0.06103565916419029, 0.5090779066085815, 0.23351262509822845, -0.3985833525657654, 0.2446339875459671]} +{"t": 5.4333, "q": [-0.1248711496591568, 0.006030248012393713, 0.004553244449198246, 0.31722721457481384, -0.1852191835641861, -0.01038135215640068, -0.07643144577741623, -0.03304876387119293, 0.02383757382631302, 0.3366491198539734, -0.2684144675731659, 0.02501143328845501, 0.009360934607684612, -0.014157376252114773, 0.0033900525886565447, 0.15620239078998566, 0.12452808767557144, -0.08237956464290619, 1.0457075834274292, -0.008856342174112797, -0.0012583436910063028, 0.04681038483977318, -0.20133498311042786, -0.14907178282737732, -0.06156296655535698, 0.5174309015274048, 0.22584272921085358, -0.3879173994064331, 0.23346468806266785]} +{"t": 5.4501, "q": [-0.12486262619495392, 0.006081381347030401, 0.004472893197089434, 0.3172101676464081, -0.1852193921804428, -0.01040975097566843, -0.07641439884901047, -0.03304876387119293, 0.023770615458488464, 0.3366491198539734, -0.2684144675731659, 0.02501143328845501, 0.009414502419531345, -0.01531413197517395, 0.003789683571085334, 0.15613049268722534, 0.12515126168727875, -0.08239154517650604, 1.0457195043563843, -0.008832373656332493, -0.0011984225129708648, 0.04700213298201561, -0.20325246453285217, -0.15480023622512817, -0.06297710537910461, 0.5262752771377563, 0.21631526947021484, -0.3755616545677185, 0.22245119512081146]} +{"t": 5.4668, "q": [-0.12486262619495392, 0.006166602019220591, 0.004379149992018938, 0.31716758012771606, -0.18522360920906067, -0.010402670130133629, -0.07645700871944427, -0.033006154000759125, 0.02371704764664173, 0.33665764331817627, -0.26842281222343445, 0.025011524558067322, 0.009347543120384216, -0.01619793102145195, 0.00432558823376894, 0.15597468614578247, 0.12577444314956665, -0.08240353316068649, 1.0456955432891846, -0.008832373656332493, -0.0012583436910063028, 0.04712197184562683, -0.20534969866275787, -0.16050472855567932, -0.06422346085309982, 0.536761462688446, 0.2073151171207428, -0.3659263253211975, 0.211785227060318]} +{"t": 5.4836, "q": [-0.12503306567668915, 0.006234779488295317, 0.004312190227210522, 0.3171079158782959, -0.1852193921804428, -0.01040975097566843, -0.0765337124466896, -0.03301467373967171, 0.023663479834794998, 0.336606502532959, -0.26841869950294495, 0.02501869946718216, 0.009360934607684612, -0.01692275144159794, 0.00484822690486908, 0.155543252825737, 0.12624183297157288, -0.08240353316068649, 1.0456715822219849, -0.008832373656332493, -0.0012583436910063028, 0.04715792462229729, -0.20679979026317596, -0.1670720875263214, -0.06546982377767563, 0.5454859733581543, 0.1965532749891281, -0.3534986972808838, 0.2001245766878128]} +{"t": 5.5005, "q": [-0.12513533234596252, 0.00628591189160943, 0.004097919911146164, 0.317099392414093, -0.1852193921804428, -0.01040975097566843, -0.07660188525915146, -0.033006154000759125, 0.023435818031430244, 0.33648720383644104, -0.2684226632118225, 0.024997083470225334, 0.009293975308537483, -0.017594682052731514, 0.005347313359379768, 0.155315563082695, 0.12667326629161835, -0.08241551369428635, 1.0457075834274292, -0.008832373656332493, -0.0012583436910063028, 0.047205861657857895, -0.2078663855791092, -0.1744903177022934, -0.06588926911354065, 0.5555287599563599, 0.1854199320077896, -0.34344393014907837, 0.18992599844932556]} +{"t": 5.5172, "q": [-0.12518645823001862, 0.006320000160485506, 0.004030960611999035, 0.3170652985572815, -0.1852193921804428, -0.01040975097566843, -0.0765848457813263, -0.03302319720387459, 0.02338225021958351, 0.33634233474731445, -0.26842692494392395, 0.025004349648952484, 0.00933415163308382, -0.01810789294540882, 0.005717186722904444, 0.15488412976264954, 0.12690095603466034, -0.08243948221206665, 1.045731544494629, -0.00882038939744234, -0.0012583436910063028, 0.04724181443452835, -0.20870527625083923, -0.18190854787826538, -0.06609300523996353, 0.563809871673584, 0.1751853972673416, -0.33364084362983704, 0.1804824322462082]} +{"t": 5.534, "q": [-0.12524612247943878, 0.006328522693365812, 0.003803298342972994, 0.3169800937175751, -0.18521077930927277, -0.010395512916147709, -0.07656779885292053, -0.03304024040699005, 0.023101020604372025, 0.33625710010528564, -0.26842692494392395, 0.025004349648952484, 0.00940111093223095, -0.01842491887509823, 0.0059157381765544415, 0.1544167399406433, 0.12712866067886353, -0.08243948221206665, 1.045731544494629, -0.008832373656332493, -0.0012343751732259989, 0.04727776721119881, -0.2090648114681244, -0.18867963552474976, -0.06626078486442566, 0.5725703239440918, 0.1645314246416092, -0.32497623562812805, 0.16942098736763]} +{"t": 5.5508, "q": [-0.12530577182769775, 0.006422265898436308, 0.0036292036529630423, 0.316911906003952, -0.18521519005298615, -0.010416831821203232, -0.0765848457813263, -0.032946497201919556, 0.022886749356985092, 0.33616337180137634, -0.26843103766441345, 0.024997156113386154, 0.009414502419531345, -0.01865142397582531, 0.006038311403244734, 0.15392538905143738, 0.1273323893547058, -0.0824514701962471, 1.0457555055618286, -0.008832373656332493, -0.0012463594321161509, 0.04728975147008896, -0.20929251611232758, -0.19492343068122864, -0.06654839962720871, 0.5801203846931458, 0.15375761687755585, -0.3148975074291229, 0.15984559059143066]} +{"t": 5.5678, "q": [-0.12532281875610352, 0.006439310032874346, 0.00354885240085423, 0.3168351948261261, -0.1852193921804428, -0.01040975097566843, -0.07660188525915146, -0.033006154000759125, 0.022793006151914597, 0.33603551983833313, -0.26842692494392395, 0.025004349648952484, 0.009374327026307583, -0.018847590312361717, 0.00619009742513299, 0.15332618355751038, 0.1275121569633484, -0.08243948221206665, 1.0458273887634277, -0.008832373656332493, -0.0012104067718610168, 0.04728975147008896, -0.20954418182373047, -0.2015986442565918, -0.06657236814498901, 0.5860645771026611, 0.14135393500328064, -0.30552583932876587, 0.1507735401391983]} +{"t": 5.5848, "q": [-0.12533986568450928, 0.006533053237944841, 0.0035354604478925467, 0.3166903257369995, -0.1852065771818161, -0.01040259376168251, -0.07660188525915146, -0.0329720638692379, 0.022739438340067863, 0.33592474460601807, -0.26842692494392395, 0.025004349648952484, 0.009347543120384216, -0.018983224406838417, 0.00635218620300293, 0.15273894369602203, 0.12764398753643036, -0.08243948221206665, 1.0459232330322266, -0.00882038939744234, -0.0011385014513507485, 0.04731371998786926, -0.20962806046009064, -0.20783042907714844, -0.06612895429134369, 0.5931951999664307, 0.12986107170581818, -0.2977480888366699, 0.14306768774986267]} +{"t": 5.6015, "q": [-0.12534838914871216, 0.006550097372382879, 0.0035354604478925467, 0.3166903257369995, -0.18522360920906067, -0.010402670130133629, -0.07660188525915146, -0.03296354413032532, 0.022726047784090042, 0.335856556892395, -0.26843515038490295, 0.024989983066916466, 0.009360934607684612, -0.018990345299243927, 0.006510723847895861, 0.15207982063293457, 0.12770390510559082, -0.08246345072984695, 1.0461629629135132, -0.008772453293204308, -0.0010186590952798724, 0.047325704246759415, -0.2097598910331726, -0.21301960945129395, -0.06588926911354065, 0.6003497838973999, 0.11846406757831573, -0.29070135951042175, 0.13461880385875702]} +{"t": 5.6183, "q": [-0.1254676878452301, 0.0064733983017504215, 0.0034551091957837343, 0.31663069128990173, -0.18522360920906067, -0.010402670130133629, -0.07659336179494858, -0.03298058733344078, 0.022605519741773605, 0.3357628285884857, -0.268439382314682, 0.024997230619192123, 0.009454678744077682, -0.018959438428282738, 0.0067513128742575645, 0.15133678913116455, 0.1276080310344696, -0.08246345072984695, 1.0463906526565552, -0.008796420879662037, -0.0009946906939148903, 0.047325704246759415, -0.20967599749565125, -0.21813686192035675, -0.06552974134683609, 0.6063178777694702, 0.10790596157312393, -0.2838224172592163, 0.12582238018512726]} +{"t": 5.635, "q": [-0.12547621130943298, 0.0064307874999940395, 0.003361365757882595, 0.3165198862552643, -0.18522360920906067, -0.010402670130133629, -0.0766274556517601, -0.03298058733344078, 0.022391250357031822, 0.33575430512428284, -0.26843515038490295, 0.024989983066916466, 0.00933415163308382, -0.018920935690402985, 0.007006512489169836, 0.15110909938812256, 0.12759605050086975, -0.08251138776540756, 1.0466902256011963, -0.008796420879662037, -0.0010066749528050423, 0.04736165702342987, -0.209711953997612, -0.22210364043712616, -0.06539791822433472, 0.6108239889144897, 0.0971800833940506, -0.27854934334754944, 0.11814048886299133]} +{"t": 5.6518, "q": [-0.12545065581798553, 0.0064307874999940395, 0.0034015413839370012, 0.3163750171661377, -0.18522360920906067, -0.010402670130133629, -0.07666154205799103, -0.032946497201919556, 0.02249838411808014, 0.3357287347316742, -0.2684352695941925, 0.02500440552830696, 0.009119881317019463, -0.018943114206194878, 0.0071939220651984215, 0.15110909938812256, 0.1276559680700302, -0.08251138776540756, 1.047457218170166, -0.008808405138552189, -0.0010306433541700244, 0.04734967276453972, -0.2097838670015335, -0.225063756108284, -0.06515823304653168, 0.6139878034591675, 0.08728111535310745, -0.27195802330970764, 0.11042264848947525]} +{"t": 5.6686, "q": [-0.12544213235378265, 0.006447831634432077, 0.0034551091957837343, 0.3163238763809204, -0.18522803485393524, -0.01042400673031807, -0.07666154205799103, -0.03298910707235336, 0.022592127323150635, 0.33570316433906555, -0.2684352695941925, 0.02500440552830696, 0.008945786394178867, -0.019048739224672318, 0.0072794328443706036, 0.15078552067279816, 0.12773986160755157, -0.08249940723180771, 1.0486077070236206, -0.00882038939744234, -0.0011504855938255787, 0.04736165702342987, -0.2099636197090149, -0.2268613874912262, -0.06545783579349518, 0.6163606643676758, 0.07684285193681717, -0.26748791337013245, 0.10487395524978638]} +{"t": 5.6855, "q": [-0.12545065581798553, 0.0064307874999940395, 0.0034551091957837343, 0.3162897825241089, -0.18522781133651733, -0.010395590215921402, -0.07665301859378815, -0.032946497201919556, 0.022605519741773605, 0.3357202112674713, -0.268439382314682, 0.024997230619192123, 0.008771691471338272, -0.01909400336444378, 0.007317455019801855, 0.15022225677967072, 0.12775184214115143, -0.08248741924762726, 1.049973964691162, -0.008832373656332493, -0.0012223910307511687, 0.04736165702342987, -0.2100115567445755, -0.2284552901983261, -0.06550577282905579, 0.6184459328651428, 0.06912501156330109, -0.26382073760032654, 0.09876199811697006]} +{"t": 5.7022, "q": [-0.12544213235378265, 0.006396699231117964, 0.003481892868876457, 0.31631535291671753, -0.18523211777210236, -0.010402709245681763, -0.07664449512958527, -0.032946497201919556, 0.02265908755362034, 0.3357372581958771, -0.26843515038490295, 0.024989983066916466, 0.008718123659491539, -0.019025782123208046, 0.007380706258118153, 0.14963503181934357, 0.12773986160755157, -0.08248741924762726, 1.0509926080703735, -0.0088803106918931, -0.0012583436910063028, 0.04737364128232002, -0.21004751324653625, -0.22971363365650177, -0.06575744599103928, 0.619860053062439, 0.06030462309718132, -0.2614838182926178, 0.09177519381046295]} +{"t": 5.7189, "q": [-0.12545065581798553, 0.006362610962241888, 0.0034551091957837343, 0.3163664937019348, -0.18522360920906067, -0.010402670130133629, -0.0766274556517601, -0.03298058733344078, 0.022605519741773605, 0.3357628285884857, -0.2684352695941925, 0.02500440552830696, 0.008798475377261639, -0.018972814083099365, 0.00739568704739213, 0.14896391332149506, 0.12772786617279053, -0.08251138776540756, 1.0522629022598267, -0.008832373656332493, -0.001282312092371285, 0.04737364128232002, -0.21076656877994537, -0.23101991415023804, -0.06556569784879684, 0.6199439764022827, 0.0535455197095871, -0.2605849802494049, 0.08581903576850891]} +{"t": 5.7359, "q": [-0.12543360888957977, 0.00634556682780385, 0.0034283252898603678, 0.316426157951355, -0.18522360920906067, -0.010402670130133629, -0.07657632231712341, -0.03289536386728287, 0.02252516895532608, 0.335813969373703, -0.2684352695941925, 0.02500440552830696, 0.0089190024882555, -0.018950168043375015, 0.007381487172096968, 0.1486283540725708, 0.12775184214115143, -0.08251138776540756, 1.0531017780303955, -0.008868326433002949, -0.001306280493736267, 0.04736165702342987, -0.21214476227760315, -0.23196665942668915, -0.06538593024015427, 0.6194525957107544, 0.04826047644019127, -0.26062095165252686, 0.08199606835842133]} +{"t": 5.7526, "q": [-0.125416561961174, 0.00637113256379962, 0.0034283252898603678, 0.31652840971946716, -0.18522781133651733, -0.010395590215921402, -0.07655075192451477, -0.03292093053460121, 0.02252516895532608, 0.3358650803565979, -0.26843103766441345, 0.024997156113386154, 0.0089190024882555, -0.018935149535536766, 0.007343152537941933, 0.1486043930053711, 0.12775184214115143, -0.08249940723180771, 1.0534254312515259, -0.0088803106918931, -0.0012223910307511687, 0.04734967276453972, -0.21383452415466309, -0.23288944363594055, -0.06534998118877411, 0.6191889643669128, 0.042328283190727234, -0.26087260246276855, 0.07886818796396255]} +{"t": 5.7694, "q": [-0.12540803849697113, 0.006354088429361582, 0.003441717242822051, 0.31662216782569885, -0.18522360920906067, -0.010402670130133629, -0.07655075192451477, -0.03296354413032532, 0.022592127323150635, 0.3358991742134094, -0.26843103766441345, 0.024997156113386154, 0.008892218582332134, -0.018904956057667732, 0.007324219681322575, 0.14868828654289246, 0.12766794860363007, -0.08249940723180771, 1.0538448095321655, -0.008856342174112797, -0.0012583436910063028, 0.04736165702342987, -0.2156801074743271, -0.23381222784519196, -0.06512227654457092, 0.617750883102417, 0.03826563060283661, -0.26207104325294495, 0.07582419365644455]} +{"t": 5.7862, "q": [-0.12540803849697113, 0.00634556682780385, 0.003481892868876457, 0.31667327880859375, -0.1852193921804428, -0.01040975097566843, -0.07655075192451477, -0.032946497201919556, 0.022645695134997368, 0.33596736192703247, -0.2684352695941925, 0.02500440552830696, 0.008852043189108372, -0.018829524517059326, 0.007257642224431038, 0.14866431057453156, 0.12766794860363007, -0.08251138776540756, 1.054408073425293, -0.008868326433002949, -0.001270327833481133, 0.04736165702342987, -0.21818479895591736, -0.23463915288448334, -0.06479870527982712, 0.6148626804351807, 0.036204345524311066, -0.26509106159210205, 0.07408647984266281]} +{"t": 5.803, "q": [-0.12536542117595673, 0.00637113256379962, 0.003481892868876457, 0.3167414665222168, -0.1852193921804428, -0.01040975097566843, -0.07654223591089249, -0.032946497201919556, 0.02265908755362034, 0.3361037075519562, -0.26843103766441345, 0.024997156113386154, 0.008758299984037876, -0.018663743510842323, 0.00704765971750021, 0.1486283540725708, 0.1276319921016693, -0.08249940723180771, 1.0550552606582642, -0.008856342174112797, -0.001330249011516571, 0.04736165702342987, -0.22100110352039337, -0.23455525934696198, -0.06448711454868317, 0.6106082797050476, 0.03362773731350899, -0.2675478160381317, 0.073391392827034]} +{"t": 5.8198, "q": [-0.12530577182769775, 0.00634556682780385, 0.0034551091957837343, 0.31694599986076355, -0.1852150857448578, -0.01040263194590807, -0.07644849270582199, -0.032946497201919556, 0.02267247997224331, 0.33625710010528564, -0.268435001373291, 0.02497554011642933, 0.00881186779588461, -0.018528426066040993, 0.006760572548955679, 0.1483527272939682, 0.12757207453250885, -0.08254734426736832, 1.0559899806976318, -0.008832373656332493, -0.001306280493736267, 0.04737364128232002, -0.2247162014245987, -0.23348866403102875, -0.0638040155172348, 0.6063058972358704, 0.031566448509693146, -0.27068769931793213, 0.07315170764923096]} +{"t": 5.8366, "q": [-0.12529724836349487, 0.00640522176399827, 0.0034551091957837343, 0.3170056641101837, -0.18521519005298615, -0.010416831821203232, -0.07642292231321335, -0.03292093053460121, 0.022632304579019547, 0.3363679051399231, -0.26843515038490295, 0.024989983066916466, 0.008852043189108372, -0.01826450228691101, 0.006499002687633038, 0.14793327450752258, 0.12754811346530914, -0.08252337574958801, 1.0572243928909302, -0.008856342174112797, -0.001294296351261437, 0.04736165702342987, -0.22892266511917114, -0.23238611221313477, -0.06261757761240005, 0.601020872592926, 0.031135017052292824, -0.27380359172821045, 0.0731397271156311]} +{"t": 5.8534, "q": [-0.125288724899292, 0.006413743365556002, 0.0034283252898603678, 0.31717610359191895, -0.18521519005298615, -0.010416831821203232, -0.07641439884901047, -0.032946497201919556, 0.022645695134997368, 0.3364616334438324, -0.26843103766441345, 0.024997156113386154, 0.008878827095031738, -0.017954999580979347, 0.006314790342003107, 0.14775350689888, 0.12741628289222717, -0.08253535628318787, 1.0583988428115845, -0.008856342174112797, -0.001294296351261437, 0.04736165702342987, -0.2332489788532257, -0.23116372525691986, -0.06137121841311455, 0.5952804088592529, 0.03117096982896328, -0.27714720368385315, 0.07324758172035217]} +{"t": 5.8702, "q": [-0.1252375990152359, 0.00646487670019269, 0.0034283252898603678, 0.31732097268104553, -0.18520236015319824, -0.010409682989120483, -0.07641439884901047, -0.032955020666122437, 0.02271265536546707, 0.33671730756759644, -0.26843926310539246, 0.024982808157801628, 0.008798475377261639, -0.017698228359222412, 0.006202113348990679, 0.14758573472499847, 0.12736834585666656, -0.08257131278514862, 1.060292363166809, -0.008868326433002949, -0.0015339808305725455, 0.04734967276453972, -0.23867782950401306, -0.2289106845855713, -0.0592619925737381, 0.5897916555404663, 0.03141065314412117, -0.2825281023979187, 0.073391392827034]} +{"t": 5.887, "q": [-0.12521202862262726, 0.0065160091035068035, 0.003441717242822051, 0.3174317479133606, -0.18520236015319824, -0.010409682989120483, -0.07642292231321335, -0.032946497201919556, 0.022806398570537567, 0.33689627051353455, -0.268426775932312, 0.024989889934659004, 0.008637772873044014, -0.017396116629242897, 0.006080294959247112, 0.1474299430847168, 0.12741628289222717, -0.08252337574958801, 1.062161922454834, -0.008868326433002949, -0.0015699334908276796, 0.04736165702342987, -0.24344755709171295, -0.22641797363758087, -0.058950405567884445, 0.5829726457595825, 0.031566448509693146, -0.28931117057800293, 0.07364306598901749]} +{"t": 5.9038, "q": [-0.1251949816942215, 0.006541575770825148, 0.0034283252898603678, 0.31745731830596924, -0.18519805371761322, -0.010402563959360123, -0.07645700871944427, -0.032946497201919556, 0.02284657396376133, 0.337049663066864, -0.268435001373291, 0.02497554011642933, 0.008249407634139061, -0.017139317467808723, 0.005977228749543428, 0.14756175875663757, 0.12738032639026642, -0.08253535628318787, 1.0630487203598022, -0.008856342174112797, -0.0016058861510828137, 0.04736165702342987, -0.24768996238708496, -0.22387731075286865, -0.058339208364486694, 0.5753386616706848, 0.031674306839704514, -0.29644179344177246, 0.07396663725376129]} +{"t": 5.9205, "q": [-0.12517793476581573, 0.006643840577453375, 0.0034551091957837343, 0.3174828886985779, -0.18520678579807281, -0.010431001894176006, -0.07645700871944427, -0.032946497201919556, 0.022926924750208855, 0.33704113960266113, -0.26843515038490295, 0.024989983066916466, 0.008008353412151337, -0.016905102878808975, 0.005897823255509138, 0.14763367176055908, 0.12736834585666656, -0.08253535628318787, 1.0633962154388428, -0.0088803106918931, -0.0015579492319375277, 0.04737364128232002, -0.2520042955875397, -0.22122879326343536, -0.05759618803858757, 0.5666261315345764, 0.03185407072305679, -0.304543137550354, 0.07439807057380676]} +{"t": 5.9373, "q": [-0.12513533234596252, 0.006660884711891413, 0.0034551091957837343, 0.3175084590911865, -0.1851983666419983, -0.010445162653923035, -0.07645700871944427, -0.03296354413032532, 0.022953709587454796, 0.3371434211730957, -0.268426775932312, 0.024989889934659004, 0.007968178018927574, -0.016814477741718292, 0.005840926896780729, 0.14751382172107697, 0.12739230692386627, -0.08253535628318787, 1.0635161399841309, -0.008856342174112797, -0.0015459650894626975, 0.04737364128232002, -0.2561867833137512, -0.21868814527988434, -0.0568651482462883, 0.5573983192443848, 0.03226153552532196, -0.31329160928726196, 0.07486545294523239]} +{"t": 5.954, "q": [-0.12509271502494812, 0.006729062180966139, 0.003441717242822051, 0.3175595998764038, -0.18518555164337158, -0.010438014753162861, -0.07638883590698242, -0.03293797746300697, 0.022926924750208855, 0.3372286260128021, -0.2684224247932434, 0.02496821992099285, 0.00798156950622797, -0.01661054976284504, 0.0057225353084504604, 0.14737001061439514, 0.12738032639026642, -0.08255932480096817, 1.0636838674545288, -0.0088803106918931, -0.0015100124292075634, 0.04737364128232002, -0.26017752289772034, -0.2163512110710144, -0.05634982883930206, 0.5486138463020325, 0.03265701234340668, -0.32075777649879456, 0.07528490573167801]} +{"t": 5.9708, "q": [-0.12507568299770355, 0.006763150449842215, 0.003441717242822051, 0.3175766170024872, -0.18518975377082825, -0.010430925525724888, -0.07638883590698242, -0.03292945399880409, 0.022913534194231033, 0.3372286260128021, -0.268435001373291, 0.02497554011642933, 0.008048529736697674, -0.0164142195135355, 0.005589635577052832, 0.1472022384405136, 0.12738032639026642, -0.08255932480096817, 1.0637917518615723, -0.008832373656332493, -0.0014980281703174114, 0.04737364128232002, -0.26352113485336304, -0.21434985101222992, -0.05615808069705963, 0.5391463041305542, 0.033435989171266556, -0.32924261689186096, 0.07577625662088394]} +{"t": 5.9876, "q": [-0.12512680888175964, 0.006763150449842215, 0.0034551091957837343, 0.3175681233406067, -0.18518555164337158, -0.010438014753162861, -0.07641439884901047, -0.03296354413032532, 0.022913534194231033, 0.3372030556201935, -0.268435001373291, 0.02497554011642933, 0.00814227294176817, -0.01634620502591133, 0.005566213745623827, 0.14719025790691376, 0.1273563653230667, -0.08253535628318787, 1.063827633857727, -0.008832373656332493, -0.0015339808305725455, 0.04737364128232002, -0.2660977244377136, -0.21289975941181183, -0.05615808069705963, 0.5297986268997192, 0.03450258448719978, -0.33954906463623047, 0.07650729268789291]} +{"t": 6.0044, "q": [-0.1251523792743683, 0.0067375837825238705, 0.0034551091957837343, 0.31753402948379517, -0.18519416451454163, -0.010452252812683582, -0.07645700871944427, -0.03296354413032532, 0.022953709587454796, 0.3371348977088928, -0.268426775932312, 0.024989889934659004, 0.00814227294176817, -0.016224943101406097, 0.0056732273660600185, 0.14719025790691376, 0.12738032639026642, -0.08252337574958801, 1.0640194416046143, -0.008844357915222645, -0.0015339808305725455, 0.04737364128232002, -0.26765570044517517, -0.21171332895755768, -0.056182049214839935, 0.521817147731781, 0.035904739052057266, -0.34754252433776855, 0.07721436023712158]} +{"t": 6.0211, "q": [-0.12517793476581573, 0.006635318975895643, 0.0034551091957837343, 0.3175169825553894, -0.18519416451454163, -0.010452252812683582, -0.07647405564785004, -0.0329720638692379, 0.022940317168831825, 0.3370667099952698, -0.268426775932312, 0.024989889934659004, 0.008088705129921436, -0.016095971688628197, 0.005842875223606825, 0.14721421897411346, 0.1273563653230667, -0.08253535628318787, 1.0641512870788574, -0.008856342174112797, -0.0015579492319375277, 0.047385625541210175, -0.2682189345359802, -0.21046696603298187, -0.05597831681370735, 0.5138596296310425, 0.03894873335957527, -0.3564228415489197, 0.07831691205501556]} +{"t": 6.038, "q": [-0.1251949816942215, 0.006575664039701223, 0.003481892868876457, 0.31740617752075195, -0.1851983666419983, -0.010445162653923035, -0.07647405564785004, -0.03296354413032532, 0.022913534194231033, 0.3369729518890381, -0.26843103766441345, 0.024997156113386154, 0.00806192122399807, -0.01599736697971821, 0.005964112933725119, 0.1472022384405136, 0.1273084282875061, -0.08253535628318787, 1.0641632080078125, -0.008832373656332493, -0.0016178704099729657, 0.047385625541210175, -0.2682549059391022, -0.20839369297027588, -0.05607419088482857, 0.5059620141983032, 0.04098604992032051, -0.3644043505191803, 0.07988684624433517]} +{"t": 6.0548, "q": [-0.12517793476581573, 0.006524530705064535, 0.0036024199798703194, 0.317286878824234, -0.1851983666419983, -0.010445162653923035, -0.0764911025762558, -0.03296354413032532, 0.022980492562055588, 0.33688774704933167, -0.2684308886528015, 0.024982715025544167, 0.007928002625703812, -0.015883633866906166, 0.006085492670536041, 0.14719025790691376, 0.1273323893547058, -0.08252337574958801, 1.0642950534820557, -0.008856342174112797, -0.0015819177497178316, 0.04737364128232002, -0.2683507800102234, -0.20475049316883087, -0.05607419088482857, 0.4976089894771576, 0.04295146465301514, -0.3743872046470642, 0.08237956464290619]} +{"t": 6.0715, "q": [-0.12517793476581573, 0.006456354167312384, 0.003696163184940815, 0.3171164393424988, -0.18520258367061615, -0.010438082739710808, -0.07651666551828384, -0.03296354413032532, 0.02302066795527935, 0.3368366062641144, -0.2684352695941925, 0.02500440552830696, 0.007619988638907671, -0.015709102153778076, 0.006332567427307367, 0.1471063643693924, 0.1273323893547058, -0.08249940723180771, 1.0643070936203003, -0.008856342174112797, -0.0016058861510828137, 0.047385625541210175, -0.2681949734687805, -0.1992257535457611, -0.05687713250517845, 0.4878897964954376, 0.044988781213760376, -0.3846217393875122, 0.08486030250787735]} +{"t": 6.0883, "q": [-0.12516090273857117, 0.006413743365556002, 0.0037899063900113106, 0.31690338253974915, -0.18521098792552948, -0.010423921048641205, -0.07655927538871765, -0.03293797746300697, 0.02318137139081955, 0.33671730756759644, -0.2684352695941925, 0.02500440552830696, 0.006736123468726873, -0.01546662487089634, 0.006527345161885023, 0.1471063643693924, 0.1273563653230667, -0.08255932480096817, 1.0644029378890991, -0.008856342174112797, -0.0015339808305725455, 0.04737364128232002, -0.26850655674934387, -0.1943601667881012, -0.057680077850818634, 0.47959670424461365, 0.0505494624376297, -0.3940892517566681, 0.08681372553110123]} +{"t": 6.1051, "q": [-0.12512680888175964, 0.006413743365556002, 0.004004176706075668, 0.3168266713619232, -0.1852193921804428, -0.01040975097566843, -0.07656779885292053, -0.03292093053460121, 0.02334207482635975, 0.3367002606391907, -0.2684352695941925, 0.02500440552830696, 0.006026353221386671, -0.015125498175621033, 0.006871857680380344, 0.1471063643693924, 0.12738032639026642, -0.08254734426736832, 1.0644389390945435, -0.008868326433002949, -0.0015219965716823936, 0.04737364128232002, -0.26843467354774475, -0.19094465672969818, -0.0577639639377594, 0.47148337960243225, 0.05734451860189438, -0.4035448133945465, 0.08899485319852829]} +{"t": 6.1218, "q": [-0.12513533234596252, 0.006388177629560232, 0.0041247038170695305, 0.3167073726654053, -0.18521519005298615, -0.010416831821203232, -0.0766274556517601, -0.032946497201919556, 0.023422425612807274, 0.3366320729255676, -0.2684352695941925, 0.02500440552830696, 0.005651379935443401, -0.01470871176570654, 0.007303220685571432, 0.14699850976467133, 0.12738032639026642, -0.08253535628318787, 1.0645227432250977, -0.008856342174112797, -0.0014740596525371075, 0.04737364128232002, -0.2683507800102234, -0.18775685131549835, -0.05788380652666092, 0.46277084946632385, 0.06313289701938629, -0.41237717866897583, 0.09062471240758896]} +{"t": 6.1388, "q": [-0.12512680888175964, 0.006311478558927774, 0.004138095770031214, 0.31663069128990173, -0.18521519005298615, -0.010416831821203232, -0.07667006552219391, -0.03296354413032532, 0.023462601006031036, 0.3364957273006439, -0.268426775932312, 0.024989889934659004, 0.005329974461346865, -0.014231395907700062, 0.007744723930954933, 0.1468786597251892, 0.1273323893547058, -0.08257131278514862, 1.0646785497665405, -0.008856342174112797, -0.0014740596525371075, 0.04737364128232002, -0.2683987021446228, -0.18488064408302307, -0.057919759303331375, 0.4552687406539917, 0.06706372648477554, -0.4222401976585388, 0.09201487898826599]} +{"t": 6.1555, "q": [-0.12512680888175964, 0.0062944344244897366, 0.004245230928063393, 0.31657955050468445, -0.18521519005298615, -0.010416831821203232, -0.07671267539262772, -0.03296354413032532, 0.02352956123650074, 0.3364616334438324, -0.268439382314682, 0.024997230619192123, 0.0049148257821798325, -0.013640464283525944, 0.00825913343578577, 0.14681874215602875, 0.12736834585666656, -0.08257131278514862, 1.064858317375183, -0.008856342174112797, -0.0014980281703174114, 0.04737364128232002, -0.2681949734687805, -0.18116553127765656, -0.05802761763334274, 0.44576525688171387, 0.0737389400601387, -0.4297303557395935, 0.0935608446598053]} +{"t": 6.1722, "q": [-0.12509271502494812, 0.006302956026047468, 0.004379149992018938, 0.31648579239845276, -0.18521519005298615, -0.010416831821203232, -0.07678937166929245, -0.032946497201919556, 0.023650087416172028, 0.33639347553253174, -0.268431156873703, 0.025011597201228142, 0.004044352564960718, -0.013027223758399487, 0.008672361262142658, 0.146782785654068, 0.1273563653230667, -0.08259528130292892, 1.0649182796478271, -0.008892294950783253, -0.0014500912511721253, 0.04737364128232002, -0.2683267891407013, -0.177582249045372, -0.05826730281114578, 0.4370526969432831, 0.0821758359670639, -0.4378916025161743, 0.09485514461994171]} +{"t": 6.1891, "q": [-0.12506715953350067, 0.006328522693365812, 0.0045130690559744835, 0.3164091110229492, -0.18521519005298615, -0.010416831821203232, -0.07684050500392914, -0.03296354413032532, 0.023810790851712227, 0.3363338112831116, -0.2684352695941925, 0.02500440552830696, 0.0032676225528120995, -0.012293130159378052, 0.009095456451177597, 0.1464831829071045, 0.1273323893547058, -0.08254734426736832, 1.0649302005767822, -0.00882038939744234, -0.0014860439114272594, 0.04737364128232002, -0.2683028280735016, -0.17447833716869354, -0.05890246853232384, 0.4282802641391754, 0.09039700776338577, -0.4458011984825134, 0.09590975195169449]} +{"t": 6.2059, "q": [-0.12499045580625534, 0.006362610962241888, 0.004606812261044979, 0.3163835406303406, -0.18522381782531738, -0.010431087575852871, -0.07684050500392914, -0.0329720638692379, 0.023904534056782722, 0.3363593816757202, -0.26843515038490295, 0.024989983066916466, 0.0027721223887056112, -0.01158951222896576, 0.009403099305927753, 0.14611166715621948, 0.1273563653230667, -0.08259528130292892, 1.064954161643982, -0.008832373656332493, -0.0014740596525371075, 0.04737364128232002, -0.2682549059391022, -0.1723211705684662, -0.05932191386818886, 0.41945987939834595, 0.10184194892644882, -0.452895849943161, 0.09680857509374619]} +{"t": 6.2227, "q": [-0.12495636940002441, 0.006439310032874346, 0.004687163513153791, 0.31631535291671753, -0.1852193921804428, -0.01040975097566843, -0.07686607539653778, -0.032946497201919556, 0.024065235629677773, 0.33635085821151733, -0.2684352695941925, 0.02500440552830696, 0.0024507169146090746, -0.01081051304936409, 0.009547566063702106, 0.14557237923145294, 0.12734438478946686, -0.08255932480096817, 1.0649781227111816, -0.008832373656332493, -0.0014500912511721253, 0.04737364128232002, -0.2683987021446228, -0.1703198105096817, -0.06047239899635315, 0.41086718440055847, 0.11187274008989334, -0.4611050486564636, 0.09749167412519455]} +{"t": 6.2395, "q": [-0.12492228299379349, 0.006507486570626497, 0.004727339372038841, 0.31634092330932617, -0.1852193921804428, -0.01040975097566843, -0.0768575519323349, -0.032946497201919556, 0.02405184507369995, 0.3363679051399231, -0.26843515038490295, 0.024989983066916466, 0.0023703654296696186, -0.009887292049825191, 0.009691847488284111, 0.14482936263084412, 0.12736834585666656, -0.08261924982070923, 1.06507408618927, -0.00882038939744234, -0.0014381069922819734, 0.04736165702342987, -0.26843467354774475, -0.1684742420911789, -0.062018364667892456, 0.40143558382987976, 0.1242404654622078, -0.467876136302948, 0.09824667870998383]} +{"t": 6.2562, "q": [-0.12492228299379349, 0.006601229775696993, 0.004713947419077158, 0.3163323998451233, -0.18522803485393524, -0.01042400673031807, -0.07690016180276871, -0.03296354413032532, 0.024078628048300743, 0.33634233474731445, -0.268426775932312, 0.024989889934659004, 0.002423933008685708, -0.008859489113092422, 0.009596535004675388, 0.14409832656383514, 0.12732040882110596, -0.08264321833848953, 1.0654455423355103, -0.008796420879662037, -0.001330249011516571, 0.04737364128232002, -0.26896196603775024, -0.1664489060640335, -0.06479870527982712, 0.39332225918769836, 0.13603293895721436, -0.47302934527397156, 0.09920541942119598]} +{"t": 6.273, "q": [-0.12489671260118484, 0.006729062180966139, 0.004713947419077158, 0.31635797023773193, -0.1852193921804428, -0.01040975097566843, -0.07689163833856583, -0.03298058733344078, 0.024065235629677773, 0.336376428604126, -0.26843926310539246, 0.024982808157801628, 0.002504284493625164, -0.007862618193030357, 0.009472264908254147, 0.14340323209762573, 0.1273084282875061, -0.08263123035430908, 1.0658529996871948, -0.008796420879662037, -0.0012583436910063028, 0.04737364128232002, -0.2698008716106415, -0.16359665989875793, -0.06841794401407242, 0.38495728373527527, 0.15086941421031952, -0.4779309034347534, 0.10072741657495499]} +{"t": 6.2899, "q": [-0.12487967312335968, 0.00685689365491271, 0.004660379607230425, 0.3163835406303406, -0.18521519005298615, -0.010416831821203232, -0.07687459886074066, -0.0329720638692379, 0.02401166968047619, 0.3364104926586151, -0.26843103766441345, 0.024997156113386154, 0.0026649872306734324, -0.006957424338907003, 0.009395048022270203, 0.14275608956813812, 0.12720057368278503, -0.08267916738986969, 1.0664162635803223, -0.008856342174112797, -0.0012104067718610168, 0.04736165702342987, -0.27028024196624756, -0.15992948412895203, -0.07295996695756912, 0.3775390386581421, 0.1643516719341278, -0.48333579301834106, 0.10299243032932281]} +{"t": 6.3066, "q": [-0.12486262619495392, 0.006959159392863512, 0.004620204214006662, 0.3164602220058441, -0.18521519005298615, -0.010416831821203232, -0.07687459886074066, -0.03292945399880409, 0.02401166968047619, 0.3364616334438324, -0.26843926310539246, 0.024982808157801628, 0.002718554809689522, -0.0057890331372618675, 0.009331823326647282, 0.14219282567501068, 0.12697286903858185, -0.08273909240961075, 1.0670874118804932, -0.00882038939744234, -0.0011624698527157307, 0.04736165702342987, -0.27108317613601685, -0.15495602786540985, -0.07989882677793503, 0.3702526390552521, 0.1781574934720993, -0.4891361594200134, 0.10592857003211975]} +{"t": 6.3233, "q": [-0.12484558671712875, 0.007112556602805853, 0.004633595701307058, 0.3165198862552643, -0.18521088361740112, -0.010409712791442871, -0.07689163833856583, -0.032946497201919556, 0.02403845265507698, 0.3365468680858612, -0.268435001373291, 0.02497554011642933, 0.0027051628567278385, -0.00458742119371891, 0.009036211296916008, 0.14186926186084747, 0.12660135328769684, -0.0827271044254303, 1.0675067901611328, -0.00882038939744234, -0.0011025486746802926, 0.04736165702342987, -0.2721138298511505, -0.15054583549499512, -0.08565125614404678, 0.36342161893844604, 0.19340142607688904, -0.49487659335136414, 0.10869692265987396]} +{"t": 6.3402, "q": [-0.12482853978872299, 0.007104035001248121, 0.004620204214006662, 0.3165625035762787, -0.18521098792552948, -0.010423921048641205, -0.07689163833856583, -0.03296354413032532, 0.024065235629677773, 0.3365553915500641, -0.26843926310539246, 0.024982808157801628, 0.0026649872306734324, -0.003452979726716876, 0.008764209225773811, 0.1416655331850052, 0.12597817182540894, -0.08278702944517136, 1.067986249923706, -0.008832373656332493, -0.0010905645322054625, 0.04737364128232002, -0.27320438623428345, -0.14673484861850739, -0.09067264944314957, 0.3567464053630829, 0.20675185322761536, -0.50023353099823, 0.11176488548517227]} +{"t": 6.3569, "q": [-0.1247774064540863, 0.007112556602805853, 0.004646987654268742, 0.31661364436149597, -0.18521098792552948, -0.010423921048641205, -0.07687459886074066, -0.03296354413032532, 0.024105412885546684, 0.33662354946136475, -0.26843926310539246, 0.024982808157801628, 0.002624811604619026, -0.0023171172942966223, 0.008596978150308132, 0.1413419544696808, 0.1254149228334427, -0.08281099796295166, 1.0689330101013184, -0.008796420879662037, -0.0010785802733153105, 0.04737364128232002, -0.27467843890190125, -0.14425411820411682, -0.09410014003515244, 0.35146138072013855, 0.2214205414056778, -0.5054706335067749, 0.11332283169031143]} +{"t": 6.3736, "q": [-0.1247347965836525, 0.007155167404562235, 0.004646987654268742, 0.3166903257369995, -0.18521519005298615, -0.010416831821203232, -0.07684050500392914, -0.032946497201919556, 0.024118803441524506, 0.33671730756759644, -0.26843515038490295, 0.024989983066916466, 0.002611419651657343, -0.0012562761548906565, 0.008564131334424019, 0.14037123322486877, 0.12482769042253494, -0.08283496648073196, 1.070538878440857, -0.00882038939744234, -0.0011265171924605966, 0.04737364128232002, -0.27642813324928284, -0.14219282567501068, -0.09821072220802307, 0.34532544016838074, 0.23593343794345856, -0.5100486278533936, 0.11482086032629013]} +{"t": 6.3903, "q": [-0.12472627311944962, 0.007189255673438311, 0.004660379607230425, 0.3167073726654053, -0.18521098792552948, -0.010423921048641205, -0.07684050500392914, -0.03293797746300697, 0.024118803441524506, 0.33680251240730286, -0.268435001373291, 0.02497554011642933, 0.0026382035575807095, -0.00042092218063771725, 0.008675160817801952, 0.1395443230867386, 0.1242644339799881, -0.08283496648073196, 1.0719050168991089, -0.00882038939744234, -0.0011145329335704446, 0.04736165702342987, -0.27817782759666443, -0.14077869057655334, -0.10124273598194122, 0.338985800743103, 0.2481813132762909, -0.5137996673583984, 0.11605523526668549]} +{"t": 6.4071, "q": [-0.12471774965524673, 0.007163689937442541, 0.004660379607230425, 0.3167840838432312, -0.1852152943611145, -0.010431040078401566, -0.07683198153972626, -0.032946497201919556, 0.02417237125337124, 0.3368195593357086, -0.268435001373291, 0.02497554011642933, 0.00258463597856462, 0.0004359419399406761, 0.008742316626012325, 0.1387893110513687, 0.1236652210354805, -0.08283496648073196, 1.0726361274719238, -0.00882038939744234, -0.0010785802733153105, 0.04734967276453972, -0.2802031636238098, -0.13990384340286255, -0.10308830440044403, 0.3325982093811035, 0.26246652007102966, -0.516735851764679, 0.11755326390266418]} +{"t": 6.4238, "q": [-0.12468366324901581, 0.007155167404562235, 0.004713947419077158, 0.3168692886829376, -0.18520668148994446, -0.010416802018880844, -0.07683198153972626, -0.03291241079568863, 0.024239331483840942, 0.33685365319252014, -0.2684308886528015, 0.024982715025544167, 0.0025578520726412535, 0.0008043601410463452, 0.008852533996105194, 0.1384417712688446, 0.1230660080909729, -0.08285893499851227, 1.0731514692306519, -0.00882038939744234, -0.0010665960144251585, 0.04734967276453972, -0.2822284996509552, -0.13902899622917175, -0.10535332560539246, 0.3279363512992859, 0.2760806083679199, -0.5182577967643738, 0.11929097771644592]} +{"t": 6.4406, "q": [-0.12469218671321869, 0.007163689937442541, 0.004700555466115475, 0.3168863356113434, -0.18520678579807281, -0.010431001894176006, -0.07681494206190109, -0.03296354413032532, 0.024252723902463913, 0.3369047939777374, -0.26842254400253296, 0.024982642382383347, 0.0026649872306734324, 0.0012180201010778546, 0.008953064680099487, 0.13766279816627502, 0.12226306647062302, -0.08288290351629257, 1.073678731918335, -0.008796420879662037, -0.0010665960144251585, 0.04736165702342987, -0.2846253514289856, -0.13771073520183563, -0.10906843096017838, 0.3242571949958801, 0.2872738540172577, -0.520331084728241, 0.1209687665104866]} +{"t": 6.4573, "q": [-0.12470071017742157, 0.007121079135686159, 0.004700555466115475, 0.3170056641101837, -0.18520258367061615, -0.010438082739710808, -0.07678085565567017, -0.032946497201919556, 0.02419915609061718, 0.3369729518890381, -0.2684308886528015, 0.024982715025544167, 0.0030399602837860584, 0.0014889186713844538, 0.008933665230870247, 0.13628460466861725, 0.12135226279497147, -0.08283496648073196, 1.0746374130249023, -0.00882038939744234, -0.0010546118719503284, 0.04734967276453972, -0.2866746485233307, -0.1365482658147812, -0.11237607896327972, 0.3204461932182312, 0.29996514320373535, -0.5239503383636475, 0.12291021645069122]} +{"t": 6.4742, "q": [-0.1247347965836525, 0.007095512468367815, 0.004687163513153791, 0.3170738220214844, -0.1852024793624878, -0.010423882864415646, -0.07678085565567017, -0.032955020666122437, 0.02417237125337124, 0.3370070457458496, -0.26842254400253296, 0.024982642382383347, 0.003347973804920912, 0.0015867713373154402, 0.008909587748348713, 0.13461880385875702, 0.12045344710350037, -0.08279900997877121, 1.075404405593872, -0.008796420879662037, -0.0009946906939148903, 0.04733768850564957, -0.2882445752620697, -0.13515809178352356, -0.116726353764534, 0.31598806381225586, 0.30916905403137207, -0.5281088352203369, 0.12533102929592133]} +{"t": 6.4911, "q": [-0.12475183606147766, 0.007052902597934008, 0.004673771560192108, 0.3170652985572815, -0.18520258367061615, -0.010438082739710808, -0.07679789513349533, -0.032946497201919556, 0.02417237125337124, 0.33699852228164673, -0.26843103766441345, 0.024997156113386154, 0.00354885240085423, 0.0018199312034994364, 0.008962235413491726, 0.13238973915576935, 0.11967447400093079, -0.08281099796295166, 1.0758118629455566, -0.008832373656332493, -0.0010306433541700244, 0.04737364128232002, -0.28977856040000916, -0.13400760293006897, -0.12027368694543839, 0.31149399280548096, 0.31999078392982483, -0.531907856464386, 0.1278357356786728]} +{"t": 6.5079, "q": [-0.12476035952568054, 0.007010291796177626, 0.004687163513153791, 0.31708234548568726, -0.18520678579807281, -0.010431001894176006, -0.07678937166929245, -0.03292945399880409, 0.024145588278770447, 0.3369644582271576, -0.2684308886528015, 0.024982715025544167, 0.003696163184940815, 0.0019553021993488073, 0.009000548161566257, 0.13126322627067566, 0.11924304068088531, -0.08278702944517136, 1.0766148567199707, -0.008856342174112797, -0.0010785802733153105, 0.047385625541210175, -0.29079723358154297, -0.1333005428314209, -0.12322180718183517, 0.3078867197036743, 0.3295062780380249, -0.534820020198822, 0.130975604057312]} +{"t": 6.5246, "q": [-0.12476888298988342, 0.00697620352730155, 0.004620204214006662, 0.31703972816467285, -0.18520678579807281, -0.010431001894176006, -0.07675528526306152, -0.03293797746300697, 0.024092020466923714, 0.33693036437034607, -0.26843103766441345, 0.024997156113386154, 0.003736338810995221, 0.002105768071487546, 0.009010042995214462, 0.1306520253419876, 0.11909922957420349, -0.08281099796295166, 1.0780888795852661, -0.008832373656332493, -0.0011504855938255787, 0.047385625541210175, -0.2908092141151428, -0.1327013224363327, -0.12554673850536346, 0.30513036251068115, 0.33988460898399353, -0.536389946937561, 0.1330728381872177]} +{"t": 6.5415, "q": [-0.1247774064540863, 0.006967680994421244, 0.004646987654268742, 0.3170056641101837, -0.18521098792552948, -0.010423921048641205, -0.07678937166929245, -0.03292093053460121, 0.024092020466923714, 0.33689627051353455, -0.268426775932312, 0.024989889934659004, 0.0037095551379024982, 0.002293736906722188, 0.009091529995203018, 0.1305561512708664, 0.11909922957420349, -0.08282297849655151, 1.079503059387207, -0.008832373656332493, -0.0012463594321161509, 0.04739760980010033, -0.2906414270401001, -0.13194632530212402, -0.12764398753643036, 0.3033207356929779, 0.34733879566192627, -0.5370850563049316, 0.13379189372062683]} +{"t": 6.5582, "q": [-0.12484558671712875, 0.006950636859983206, 0.004646987654268742, 0.3169715702533722, -0.18521519005298615, -0.010416831821203232, -0.07678937166929245, -0.03292093053460121, 0.024092020466923714, 0.3368280827999115, -0.2684308886528015, 0.024982715025544167, 0.004004176706075668, 0.0024140439927577972, 0.009139456786215305, 0.13041234016418457, 0.1191471666097641, -0.08278702944517136, 1.0807254314422607, -0.008796420879662037, -0.001318264752626419, 0.04739760980010033, -0.2903657853603363, -0.1315268725156784, -0.12904614210128784, 0.30100777745246887, 0.3550446629524231, -0.5378520488739014, 0.1341274529695511]} +{"t": 6.575, "q": [-0.12493932992219925, 0.006890981923788786, 0.004660379607230425, 0.3169715702533722, -0.18521098792552948, -0.010423921048641205, -0.07684902846813202, -0.03292945399880409, 0.024078628048300743, 0.3367769718170166, -0.268426775932312, 0.024989889934659004, 0.004298798739910126, 0.002225478645414114, 0.00942286942154169, 0.13006480038166046, 0.1191231980919838, -0.08281099796295166, 1.0820796489715576, -0.00882038939744234, -0.001342233270406723, 0.04739760980010033, -0.2900661826133728, -0.13133512437343597, -0.12934574484825134, 0.29811957478523254, 0.3615640699863434, -0.5386430025100708, 0.1342233270406723]} +{"t": 6.5919, "q": [-0.1250074952840805, 0.0068228053860366344, 0.004660379607230425, 0.31694599986076355, -0.18521519005298615, -0.010416831821203232, -0.07689163833856583, -0.032946497201919556, 0.024118803441524506, 0.3366832137107849, -0.26842692494392395, 0.025004349648952484, 0.004178271628916264, 0.002066965913400054, 0.009869363158941269, 0.12952551245689392, 0.11915915459394455, -0.08279900997877121, 1.0828826427459717, -0.00882038939744234, -0.0013542174128815532, 0.04739760980010033, -0.2899223864078522, -0.13116735219955444, -0.12944161891937256, 0.29550701379776, 0.36646562814712524, -0.539158284664154, 0.13443903625011444]} +{"t": 6.6087, "q": [-0.12499897927045822, 0.006720539648085833, 0.004700555466115475, 0.316843718290329, -0.18521098792552948, -0.010423921048641205, -0.07690016180276871, -0.032946497201919556, 0.024145588278770447, 0.3365979790687561, -0.26843515038490295, 0.024989983066916466, 0.004097919911146164, 0.0019612512551248074, 0.010252786800265312, 0.12916597723960876, 0.11915915459394455, -0.08279900997877121, 1.0836735963821411, -0.0088803106918931, -0.0013542174128815532, 0.04740959405899048, -0.28973063826560974, -0.13101154565811157, -0.12934574484825134, 0.2936374843120575, 0.3683471381664276, -0.5395298004150391, 0.13464276492595673]} +{"t": 6.6254, "q": [-0.1250074952840805, 0.006541575770825148, 0.004727339372038841, 0.3167073726654053, -0.18522360920906067, -0.010402670130133629, -0.07690016180276871, -0.032946497201919556, 0.024145588278770447, 0.336419016122818, -0.2684308886528015, 0.024982715025544167, 0.004084527958184481, 0.0019384654005989432, 0.01041092723608017, 0.12893827259540558, 0.1191471666097641, -0.08278702944517136, 1.0839731693267822, -0.00882038939744234, -0.0013542174128815532, 0.04739760980010033, -0.28962278366088867, -0.13109543919563293, -0.12922589480876923, 0.29275065660476685, 0.3698931038379669, -0.5395417809486389, 0.13540975749492645]} +{"t": 6.6424, "q": [-0.1250074952840805, 0.0064733983017504215, 0.004767514765262604, 0.3165454566478729, -0.1852193921804428, -0.01040975097566843, -0.07689163833856583, -0.03296354413032532, 0.024118803441524506, 0.3362400531768799, -0.26843515038490295, 0.024989983066916466, 0.004084527958184481, 0.0018330806633457541, 0.010573914274573326, 0.12842296063899994, 0.11911121755838394, -0.08278702944517136, 1.0841408967971802, -0.008856342174112797, -0.001342233270406723, 0.04739760980010033, -0.2895987927913666, -0.1311793327331543, -0.12893827259540558, 0.29235517978668213, 0.37080392241477966, -0.5395537614822388, 0.1369437426328659]} +{"t": 6.6591, "q": [-0.12507568299770355, 0.006379655096679926, 0.004727339372038841, 0.3163750171661377, -0.18522360920906067, -0.010402670130133629, -0.07690016180276871, -0.03293797746300697, 0.02401166968047619, 0.3361037075519562, -0.268431156873703, 0.025011597201228142, 0.004539852496236563, 0.00163750140927732, 0.010794461704790592, 0.1278836727142334, 0.11913518607616425, -0.08278702944517136, 1.0841408967971802, -0.008832373656332493, -0.001318264752626419, 0.04739760980010033, -0.28955087065696716, -0.13176655769348145, -0.1288064569234848, 0.2923192083835602, 0.37091177701950073, -0.5394698977470398, 0.14041917026042938]} +{"t": 6.6759, "q": [-0.12510976195335388, 0.006234779488295317, 0.004713947419077158, 0.31631535291671753, -0.18522360920906067, -0.010402670130133629, -0.07693424820899963, -0.0329720638692379, 0.023904534056782722, 0.33594179153442383, -0.26844361424446106, 0.02500447817146778, 0.004968393128365278, 0.0013743218732997775, 0.011029429733753204, 0.12767992913722992, 0.11909922957420349, -0.08281099796295166, 1.0841768980026245, -0.008856342174112797, -0.0013542174128815532, 0.04737364128232002, -0.2894669771194458, -0.13550563156604767, -0.1287824809551239, 0.2924390733242035, 0.37077993154525757, -0.539158284664154, 0.1450570672750473]} +{"t": 6.6927, "q": [-0.12518645823001862, 0.0062262569554150105, 0.004673771560192108, 0.3162216246128082, -0.18522781133651733, -0.010395590215921402, -0.07697685807943344, -0.03296354413032532, 0.02383757382631302, 0.33584803342819214, -0.2684478461742401, 0.025011727586388588, 0.005410325713455677, 0.0011035327333956957, 0.01132669486105442, 0.12767992913722992, 0.11911121755838394, -0.08279900997877121, 1.0841889381408691, -0.0088803106918931, -0.0013542174128815532, 0.04739760980010033, -0.28950291872024536, -0.14088654518127441, -0.1275361180305481, 0.29279857873916626, 0.36978524923324585, -0.538187563419342, 0.15245133638381958]} +{"t": 6.7097, "q": [-0.12522055208683014, 0.006277389358729124, 0.0045800283551216125, 0.3161790072917938, -0.18523643910884857, -0.010409845970571041, -0.07701095193624496, -0.03296354413032532, 0.02370365522801876, 0.33570316433906555, -0.2684437334537506, 0.025018902495503426, 0.0061736637726426125, 0.0008025504648685455, 0.0117581095546484, 0.12752413749694824, 0.11911121755838394, -0.08278702944517136, 1.0842368602752686, -0.008856342174112797, -0.001342233270406723, 0.04739760980010033, -0.28950291872024536, -0.14725017547607422, -0.12482769042253494, 0.29284653067588806, 0.3675801455974579, -0.5368813276290894, 0.15928234159946442]} +{"t": 6.7264, "q": [-0.1252375990152359, 0.006337044294923544, 0.004379149992018938, 0.31606820225715637, -0.1852279156446457, -0.01040978915989399, -0.07702799141407013, -0.0329720638692379, 0.023462601006031036, 0.33560943603515625, -0.2684519588947296, 0.02500455267727375, 0.006977177690714598, 0.0003975255531258881, 0.012112372554838657, 0.12745223939418793, 0.11907526105642319, -0.08279900997877121, 1.0842128992080688, -0.008856342174112797, -0.0013542174128815532, 0.04739760980010033, -0.28945499658584595, -0.15348197519779205, -0.12161591649055481, 0.2929064631462097, 0.3639369606971741, -0.5349518656730652, 0.16616128385066986]} +{"t": 6.7432, "q": [-0.12524612247943878, 0.0064307874999940395, 0.004057744517922401, 0.31607672572135925, -0.1852193921804428, -0.01040975097566843, -0.07700242847204208, -0.032946497201919556, 0.02318137139081955, 0.33555829524993896, -0.2684437334537506, 0.025018902495503426, 0.008115489035844803, 1.5000986422819551e-05, 0.012519292533397675, 0.12722453474998474, 0.11915915459394455, -0.08281099796295166, 1.0842368602752686, -0.008868326433002949, -0.001342233270406723, 0.04739760980010033, -0.29102492332458496, -0.15895876288414001, -0.11798469722270966, 0.29402098059654236, 0.3603177070617676, -0.5337414145469666, 0.1736154705286026]} +{"t": 6.76, "q": [-0.12536542117595673, 0.006498964969068766, 0.003468500915914774, 0.31607672572135925, -0.18521961569786072, -0.010438176803290844, -0.07694277167320251, -0.03293797746300697, 0.02252516895532608, 0.3353963792324066, -0.2684519588947296, 0.02500455267727375, 0.009601988829672337, -0.0006825437303632498, 0.01299317367374897, 0.12655341625213623, 0.11909922957420349, -0.0827750414609909, 1.0841889381408691, -0.008856342174112797, -0.0013781859306618571, 0.04739760980010033, -0.29222333431243896, -0.16366855800151825, -0.11419767886400223, 0.2951594889163971, 0.3557876646518707, -0.5322913527488708, 0.17975139617919922]} +{"t": 6.7769, "q": [-0.12545065581798553, 0.006609752308577299, 0.0027721223887056112, 0.3161022961139679, -0.18520258367061615, -0.010438082739710808, -0.07684902846813202, -0.03292945399880409, 0.021601127460598946, 0.33543047308921814, -0.2684726119041443, 0.024983100593090057, 0.010726908221840858, -0.0014541323762387037, 0.01364839356392622, 0.12619389593601227, 0.11915915459394455, -0.08278702944517136, 1.0841768980026245, -0.0088803106918931, -0.0013901700731366873, 0.04739760980010033, -0.29312217235565186, -0.1673716902732849, -0.11024288833141327, 0.2957347333431244, 0.35191676020622253, -0.5310090184211731, 0.1858993023633957]} +{"t": 6.7937, "q": [-0.12563814222812653, 0.006660884711891413, 0.0021828790195286274, 0.3161790072917938, -0.1851983666419983, -0.010445162653923035, -0.07684902846813202, -0.03298910707235336, 0.020757438614964485, 0.33538785576820374, -0.26848918199539185, 0.02496880665421486, 0.01158398948609829, -0.0020899311639368534, 0.014293587766587734, 0.12624183297157288, 0.11919510364532471, -0.08278702944517136, 1.0841889381408691, -0.008856342174112797, -0.0014980281703174114, 0.04740959405899048, -0.2943565547466278, -0.17191371321678162, -0.10514958947896957, 0.2964537739753723, 0.34593665599823, -0.5296907424926758, 0.1928381621837616]} +{"t": 6.8105, "q": [-0.12567222118377686, 0.00679723871871829, 0.0017677302239462733, 0.3161875307559967, -0.18518996238708496, -0.01045933272689581, -0.07681494206190109, -0.03298058733344078, 0.020248545333743095, 0.3353196680545807, -0.26850560307502747, 0.02494010701775551, 0.012173233553767204, -0.002840990200638771, 0.015017230994999409, 0.12637364864349365, 0.1191231980919838, -0.08273909240961075, 1.0842008590698242, -0.0088803106918931, -0.0015219965716823936, 0.047445546835660934, -0.29574671387672424, -0.176983043551445, -0.09909755736589432, 0.2970769703388214, 0.3392254710197449, -0.5282167196273804, 0.19829098880290985]} +{"t": 6.8272, "q": [-0.12584266066551208, 0.006865415256470442, 0.0012588382232934237, 0.31617048382759094, -0.1851857602596283, -0.01046641357243061, -0.07681494206190109, -0.03298058733344078, 0.019766438752412796, 0.3351747989654541, -0.2685180604457855, 0.02493300475180149, 0.012655341066420078, -0.0032648046035319567, 0.015686819329857826, 0.12645754218101501, 0.1191471666097641, -0.08270313590765, 1.0842608213424683, -0.008856342174112797, -0.0015219965716823936, 0.047457531094551086, -0.2971608638763428, -0.18218418955802917, -0.09314139932394028, 0.29777204990386963, 0.3326221704483032, -0.5265748500823975, 0.20315659046173096]} +{"t": 6.844, "q": [-0.12604719400405884, 0.006908026058226824, 0.0005892434273846447, 0.31616196036338806, -0.18517734110355377, -0.010480583645403385, -0.07678937166929245, -0.03303172066807747, 0.019217370077967644, 0.33500435948371887, -0.268526166677475, 0.024904213845729828, 0.013003530912101269, -0.003700331086292863, 0.01617245003581047, 0.12642158567905426, 0.11915915459394455, -0.08270313590765, 1.0842487812042236, -0.008856342174112797, -0.0015819177497178316, 0.04746951535344124, -0.2983233332633972, -0.18715764582157135, -0.0875687301158905, 0.29868283867836, 0.3241133689880371, -0.5254603624343872, 0.2078663855791092]} +{"t": 6.8607, "q": [-0.12626025080680847, 0.00691654859110713, -5.3567582654068246e-05, 0.31611934304237366, -0.18517336249351501, -0.010516081005334854, -0.0767211988568306, -0.032955020666122437, 0.01866830326616764, 0.33482539653778076, -0.26853451132774353, 0.024904288351535797, 0.013164233416318893, -0.00409685680642724, 0.016489794477820396, 0.12621785700321198, 0.11909922957420349, -0.08266718685626984, 1.0842487812042236, -0.0088803106918931, -0.0015699334908276796, 0.04748149961233139, -0.2989225387573242, -0.19211912155151367, -0.08259528130292892, 0.2993539571762085, 0.3136031925678253, -0.524357795715332, 0.21339111030101776]} +{"t": 6.8774, "q": [-0.1263454705476761, 0.006899504456669092, -0.0005892434273846447, 0.3161449134349823, -0.18515631556510925, -0.01051599532365799, -0.0766274556517601, -0.03296354413032532, 0.018212977796792984, 0.33474016189575195, -0.26853862404823303, 0.02489711344242096, 0.013378503732383251, -0.004424643702805042, 0.01673501543700695, 0.12588229775428772, 0.11908724904060364, -0.08267916738986969, 1.084224820137024, -0.008856342174112797, -0.0015939020086079836, 0.04748149961233139, -0.29916220903396606, -0.1971285194158554, -0.07766976207494736, 0.3001329302787781, 0.30418360233306885, -0.5232073068618774, 0.21892783045768738]} +{"t": 6.8942, "q": [-0.12640511989593506, 0.006890981923788786, -0.0010311759542673826, 0.316093772649765, -0.1851521134376526, -0.010523076169192791, -0.07661040872335434, -0.03296354413032532, 0.017878180369734764, 0.33469757437705994, -0.26854270696640015, 0.024889938533306122, 0.0137802604585886, -0.0048323730006814, 0.01699197292327881, 0.12540292739868164, 0.11905129253864288, -0.08269115537405014, 1.084224820137024, -0.008856342174112797, -0.0015339808305725455, 0.04749348387122154, -0.2992341220378876, -0.2018982470035553, -0.07391870021820068, 0.30143922567367554, 0.29312217235565186, -0.521529495716095, 0.2245364487171173]} +{"t": 6.9109, "q": [-0.126481831073761, 0.006882460322231054, -0.0013257976388558745, 0.316093772649765, -0.18516051769256592, -0.010508914478123188, -0.0766274556517601, -0.03292945399880409, 0.01762373559176922, 0.3346293866634369, -0.26856353878974915, 0.024882908910512924, 0.014409679919481277, -0.0051869279704988, 0.017282377928495407, 0.12494753301143646, 0.11909922957420349, -0.08269115537405014, 1.084224820137024, -0.008832373656332493, -0.0015339808305725455, 0.04749348387122154, -0.299198180437088, -0.20627248287200928, -0.06930477172136307, 0.3033446967601776, 0.28366661071777344, -0.5190487504005432, 0.23036077618598938]} +{"t": 6.9277, "q": [-0.12659260630607605, 0.006839849520474672, -0.0014329327968880534, 0.31603413820266724, -0.18516914546489716, -0.010523170232772827, -0.0766274556517601, -0.03298058733344078, 0.017529990524053574, 0.33427998423576355, -0.26855531334877014, 0.024897277355194092, 0.014757868833839893, -0.005496191326528788, 0.017601529136300087, 0.12457602471113205, 0.11909922957420349, -0.08266718685626984, 1.0842487812042236, -0.008892294950783253, -0.0014860439114272594, 0.04746951535344124, -0.29883864521980286, -0.2123364955186844, -0.06186256930232048, 0.3056696355342865, 0.27177825570106506, -0.5143749117851257, 0.23593343794345856]} +{"t": 6.9444, "q": [-0.12669487297534943, 0.006814282853156328, -0.0014329327968880534, 0.31603413820266724, -0.18515631556510925, -0.01051599532365799, -0.0766274556517601, -0.03304876387119293, 0.01748981513082981, 0.33392205834388733, -0.26854681968688965, 0.024882763624191284, 0.015226585790514946, -0.005684566684067249, 0.018054811283946037, 0.12404871731996536, 0.11907526105642319, -0.0827271044254303, 1.0842608213424683, -0.008868326433002949, -0.0014381069922819734, 0.04748149961233139, -0.29828736186027527, -0.219574972987175, -0.052670668810606, 0.308917373418808, 0.2604891061782837, -0.5100845694541931, 0.24208134412765503]} +{"t": 6.9612, "q": [-0.12692497670650482, 0.006788717117160559, -0.0014865003759041429, 0.3160426616668701, -0.1851521134376526, -0.010523076169192791, -0.07661040872335434, -0.03298910707235336, 0.017409464344382286, 0.3335129916667938, -0.26854681968688965, 0.024882763624191284, 0.016030099242925644, -0.005963335745036602, 0.018698809668421745, 0.12300609052181244, 0.11909922957420349, -0.08269115537405014, 1.0842727422714233, -0.008856342174112797, -0.0014261228498071432, 0.04749348387122154, -0.298227459192276, -0.22616629302501678, -0.04476108029484749, 0.31271636486053467, 0.24886442720890045, -0.5055785179138184, 0.24754615128040314]} +{"t": 6.9779, "q": [-0.1271209865808487, 0.006754627916961908, -0.0017007706919685006, 0.31602561473846436, -0.18516914546489716, -0.010523170232772827, -0.07664449512958527, -0.03298910707235336, 0.017221977934241295, 0.3332914113998413, -0.2685510516166687, 0.024890011176466942, 0.01679343730211258, -0.006105918902903795, 0.01939043402671814, 0.12204734981060028, 0.11913518607616425, -0.08266718685626984, 1.0843087434768677, -0.008868326433002949, -0.0013901700731366873, 0.047505468130111694, -0.2981795072555542, -0.23149928450584412, -0.0394161157310009, 0.31751006841659546, 0.2355499416589737, -0.5024865865707397, 0.25183650851249695]} +{"t": 6.9947, "q": [-0.1273510754108429, 0.006712018046528101, -0.001834689755924046, 0.31603413820266724, -0.18516471982002258, -0.010501825250685215, -0.07668711245059967, -0.033006154000759125, 0.01714162714779377, 0.33317211270332336, -0.26855093240737915, 0.024875588715076447, 0.017436247318983078, -0.006067484151571989, 0.019987236708402634, 0.12111257761716843, 0.1191471666097641, -0.08271512389183044, 1.084296703338623, -0.008856342174112797, -0.0014381069922819734, 0.04749348387122154, -0.29816752672195435, -0.23670043051242828, -0.034634411334991455, 0.32202813029289246, 0.22470422089099884, -0.49988600611686707, 0.25522804260253906]} +{"t": 7.0114, "q": [-0.127530038356781, 0.006660884711891413, -0.002008784329518676, 0.3160170912742615, -0.18516051769256592, -0.010508914478123188, -0.07671267539262772, -0.03298910707235336, 0.01698092371225357, 0.3329334855079651, -0.26855939626693726, 0.024890102446079254, 0.017838004976511, -0.005938662216067314, 0.02043161354959011, 0.12074106931686401, 0.11913518607616425, -0.08273909240961075, 1.0842727422714233, -0.00882038939744234, -0.0014381069922819734, 0.04746951535344124, -0.29819148778915405, -0.2407630831003189, -0.030919300392270088, 0.32617464661598206, 0.21372666954994202, -0.4975490868091583, 0.25900307297706604]} +{"t": 7.0282, "q": [-0.12764082849025726, 0.006592708174139261, -0.0020757438614964485, 0.31602561473846436, -0.18516051769256592, -0.010508914478123188, -0.07672972232103348, -0.03302319720387459, 0.016940748319029808, 0.3327886164188385, -0.26855531334877014, 0.024897277355194092, 0.017730869352817535, -0.005885558668524027, 0.02074187435209751, 0.12084892392158508, 0.11907526105642319, -0.08271512389183044, 1.0843087434768677, -0.00882038939744234, -0.0014381069922819734, 0.04749348387122154, -0.2981315851211548, -0.24469390511512756, -0.02575409971177578, 0.33108818531036377, 0.2034202367067337, -0.4942654073238373, 0.2628500163555145]} +{"t": 7.045, "q": [-0.12764082849025726, 0.006618273910135031, -0.002048959955573082, 0.31602561473846436, -0.1851690411567688, -0.010508944280445576, -0.07673823833465576, -0.03302319720387459, 0.01699431613087654, 0.3325499892234802, -0.26855531334877014, 0.024897277355194092, 0.017529990524053574, -0.005825015716254711, 0.020970989018678665, 0.12100472301244736, 0.11913518607616425, -0.08271512389183044, 1.0843206644058228, -0.008844357915222645, -0.0014500912511721253, 0.04749348387122154, -0.2981315851211548, -0.24867267906665802, -0.019642144441604614, 0.33648109436035156, 0.19174760580062866, -0.49125736951828003, 0.26476749777793884]} +{"t": 7.0618, "q": [-0.127717524766922, 0.006592708174139261, -0.002008784329518676, 0.3160085678100586, -0.1851690411567688, -0.010508944280445576, -0.07671267539262772, -0.03302319720387459, 0.017034491524100304, 0.332379549741745, -0.26854681968688965, 0.024882763624191284, 0.01750320754945278, -0.005832449998706579, 0.02110927738249302, 0.12082495540380478, 0.1191231980919838, -0.08270313590765, 1.0843446254730225, -0.008856342174112797, -0.0014381069922819734, 0.047505468130111694, -0.2981795072555542, -0.25283119082450867, -0.01495631318539381, 0.3405197858810425, 0.18127338588237762, -0.48812946677207947, 0.26638534665107727]} +{"t": 7.0785, "q": [-0.12792205810546875, 0.006567141506820917, -0.0021025275345891714, 0.31597447395324707, -0.18516471982002258, -0.010501825250685215, -0.07672972232103348, -0.03302319720387459, 0.016927355900406837, 0.33231136202812195, -0.26854681968688965, 0.024882763624191284, 0.017570167779922485, -0.00580221600830555, 0.021176140755414963, 0.12035757303237915, 0.11913518607616425, -0.08267916738986969, 1.0843087434768677, -0.00882038939744234, -0.0014021543320268393, 0.047505468130111694, -0.29821544885635376, -0.25792449712753296, -0.010665960609912872, 0.34374353289604187, 0.17090703547000885, -0.48538509011268616, 0.26771560311317444]} +{"t": 7.0954, "q": [-0.12810954451560974, 0.006481920834630728, -0.0022632302716374397, 0.3160000443458557, -0.18516914546489716, -0.010523170232772827, -0.07672972232103348, -0.03301467373967171, 0.01679343730211258, 0.3322346806526184, -0.26855531334877014, 0.024897277355194092, 0.017690693959593773, -0.005772034637629986, 0.021176232025027275, 0.1200459823012352, 0.11913518607616425, -0.0827271044254303, 1.0843206644058228, -0.008832373656332493, -0.0014141385909169912, 0.047505468130111694, -0.29811957478523254, -0.262178897857666, -0.0070946612395346165, 0.3464519679546356, 0.15991750359535217, -0.48268863558769226, 0.26942935585975647]} +{"t": 7.1121, "q": [-0.12821181118488312, 0.0064307874999940395, -0.0023301898036152124, 0.31598299741744995, -0.18517336249351501, -0.010516081005334854, -0.07674676179885864, -0.03302319720387459, 0.016739869490265846, 0.3321835398674011, -0.26855531334877014, 0.024897277355194092, 0.01763712614774704, -0.005741845816373825, 0.0211858619004488, 0.12001003324985504, 0.1191231980919838, -0.08271512389183044, 1.0843446254730225, -0.0088803106918931, -0.0014261228498071432, 0.04749348387122154, -0.298227459192276, -0.2650551199913025, -0.0041585261933505535, 0.3496517539024353, 0.14896391332149506, -0.48033973574638367, 0.270699679851532]} +{"t": 7.1289, "q": [-0.12832260131835938, 0.0064307874999940395, -0.002383757382631302, 0.31598299741744995, -0.18517756462097168, -0.010509000159800053, -0.07674676179885864, -0.033006154000759125, 0.016726477071642876, 0.3321579694747925, -0.26854681968688965, 0.024882763624191284, 0.01762373559176922, -0.005734304431825876, 0.02118111588060856, 0.12001003324985504, 0.11909922957420349, -0.0827510729432106, 1.0843806266784668, -0.008832373656332493, -0.0014261228498071432, 0.047505468130111694, -0.2982993423938751, -0.2674040198326111, -0.000898816913831979, 0.35348671674728394, 0.13742311298847198, -0.4777631163597107, 0.27147865295410156]} +{"t": 7.1456, "q": [-0.1284930408000946, 0.006447831634432077, -0.0024908925406634808, 0.31598299741744995, -0.1851690411567688, -0.010508944280445576, -0.07675528526306152, -0.03302319720387459, 0.01663273386657238, 0.33217501640319824, -0.26854681968688965, 0.024882763624191284, 0.017610343173146248, -0.005734296515583992, 0.02119065448641777, 0.11996209621429443, 0.11909922957420349, -0.0827510729432106, 1.0843806266784668, -0.008856342174112797, -0.0014261228498071432, 0.047505468130111694, -0.2983832359313965, -0.2690218985080719, 0.0011624698527157307, 0.35814857482910156, 0.1267092078924179, -0.4755820035934448, 0.27170634269714355]} +{"t": 7.1624, "q": [-0.12880836427211761, 0.0064307874999940395, -0.0027721223887056112, 0.3160000443458557, -0.18517336249351501, -0.010516081005334854, -0.07674676179885864, -0.03298058733344078, 0.016391679644584656, 0.33217501640319824, -0.26855531334877014, 0.024897277355194092, 0.01765051856637001, -0.005726755131036043, 0.02118590846657753, 0.11980629712343216, 0.11909922957420349, -0.08267916738986969, 1.0843687057495117, -0.008856342174112797, -0.0014500912511721253, 0.04749348387122154, -0.2983233332633972, -0.27020832896232605, 0.0020852552261203527, 0.36222320795059204, 0.11488078534603119, -0.4711238741874695, 0.2717423141002655]} +{"t": 7.1792, "q": [-0.12929412722587585, 0.00640522176399827, -0.003173879347741604, 0.3159233331680298, -0.18517336249351501, -0.010516081005334854, -0.07681494206190109, -0.033006154000759125, 0.016083667054772377, 0.3321579694747925, -0.26854681968688965, 0.024882763624191284, 0.01766391098499298, -0.005696581210941076, 0.02117646113038063, 0.119770348072052, 0.11907526105642319, -0.08276306092739105, 1.0843687057495117, -0.008832373656332493, -0.0014381069922819734, 0.04749348387122154, -0.29814356565475464, -0.271071195602417, 0.0027803401462733746, 0.3661300539970398, 0.10265687108039856, -0.4671810567378998, 0.27168238162994385]} +{"t": 7.1959, "q": [-0.13000145554542542, 0.006388177629560232, -0.0036425956059247255, 0.3158807158470154, -0.18517324328422546, -0.010501863434910774, -0.07690868526697159, -0.032997630536556244, 0.01565512642264366, 0.33212387561798096, -0.26854681968688965, 0.024882763624191284, 0.017677301540970802, -0.005651301704347134, 0.021186135709285736, 0.11966248601675034, 0.11909922957420349, -0.0827271044254303, 1.084356665611267, -0.00882038939744234, -0.0014620755100622773, 0.047505468130111694, -0.29819148778915405, -0.2719700038433075, 0.0034394727554172277, 0.3711754381656647, 0.0905647873878479, -0.4641250669956207, 0.27161046862602234]} +{"t": 7.2127, "q": [-0.13099002838134766, 0.006396699231117964, -0.004258622881025076, 0.3159233331680298, -0.18517756462097168, -0.010509000159800053, -0.07714730501174927, -0.03298910707235336, 0.015146234072744846, 0.3321068286895752, -0.26855504512786865, 0.024868395179510117, 0.017690693959593773, -0.005621120799332857, 0.021186228841543198, 0.11955463141202927, 0.11906328052282333, -0.0827271044254303, 1.0843687057495117, -0.008856342174112797, -0.0014261228498071432, 0.04749348387122154, -0.298227459192276, -0.2725212872028351, 0.003511378075927496, 0.37695181369781494, 0.0763874500989914, -0.4610331356525421, 0.27138277888298035]} +{"t": 7.2294, "q": [-0.13178257644176483, 0.006354088429361582, -0.00483447453007102, 0.3162301480770111, -0.18517756462097168, -0.010509000159800053, -0.0773603543639183, -0.03298058733344078, 0.014757868833839893, 0.3320983052253723, -0.26855504512786865, 0.024868395179510117, 0.017838004976511, -0.0055682845413684845, 0.021210234612226486, 0.11932693421840668, 0.1191231980919838, -0.08271512389183044, 1.0843687057495117, -0.008856342174112797, -0.0014500912511721253, 0.047517452389001846, -0.29821544885635376, -0.27337217330932617, 0.0036791572347283363, 0.3825964033603668, 0.0647267997264862, -0.45852842926979065, 0.2712389826774597]} +{"t": 7.2462, "q": [-0.13283079862594604, 0.0062944344244897366, -0.005624596029520035, 0.3166391849517822, -0.18516914546489716, -0.010523170232772827, -0.07765010744333267, -0.03296354413032532, 0.014490030705928802, 0.3319534361362457, -0.26854681968688965, 0.024882763624191284, 0.01813262701034546, -0.005575818475335836, 0.021224521100521088, 0.11920709162950516, 0.11907526105642319, -0.08269115537405014, 1.0843446254730225, -0.008832373656332493, -0.0014381069922819734, 0.047505468130111694, -0.2981315851211548, -0.27424702048301697, 0.0036432044580578804, 0.38728222250938416, 0.05307813361287117, -0.4564671516418457, 0.2708434760570526]} +{"t": 7.2629, "q": [-0.13360631465911865, 0.0062688677571713924, -0.006187055725604296, 0.3171079158782959, -0.18516051769256592, -0.010508914478123188, -0.07776089757680893, -0.03296354413032532, 0.01436950359493494, 0.331817090511322, -0.2685508131980896, 0.02486114762723446, 0.018373681232333183, -0.005568269174546003, 0.02122931182384491, 0.11929097771644592, 0.11909922957420349, -0.0827271044254303, 1.0843687057495117, -0.008856342174112797, -0.0014381069922819734, 0.04748149961233139, -0.29811957478523254, -0.275217741727829, 0.0036072516813874245, 0.3917403519153595, 0.0406145378947258, -0.454873263835907, 0.27046000957489014]} +{"t": 7.2797, "q": [-0.134083554148674, 0.006243301089853048, -0.00646828580647707, 0.31745731830596924, -0.18513518571853638, -0.010537208057940006, -0.07778646051883698, -0.033006154000759125, 0.01411505788564682, 0.33175742626190186, -0.2685508131980896, 0.02486114762723446, 0.018587950617074966, -0.005538080353289843, 0.021238943561911583, 0.11948272585868835, 0.11911121755838394, -0.0827510729432106, 1.0844045877456665, -0.008856342174112797, -0.0014500912511721253, 0.04746951535344124, -0.2981075942516327, -0.2759367823600769, 0.0037390782963484526, 0.3981998562812805, 0.02949317917227745, -0.4525722861289978, 0.2699926197528839]} +{"t": 7.2964, "q": [-0.1343221664428711, 0.006251823622733355, -0.006682556122541428, 0.3175766170024872, -0.1851268708705902, -0.010565577074885368, -0.07776089757680893, -0.03298910707235336, 0.013914179988205433, 0.331748902797699, -0.26853835582733154, 0.02486826665699482, 0.018936140462756157, -0.005522989667952061, 0.021238988265395164, 0.11951867491006851, 0.11909922957420349, -0.0827271044254303, 1.0844285488128662, -0.008856342174112797, -0.0014381069922819734, 0.047505468130111694, -0.29811957478523254, -0.2759847342967987, 0.003595267655327916, 0.40406012535095215, 0.019210712984204292, -0.44836580753326416, 0.26893800497055054]} +{"t": 7.3131, "q": [-0.1345011293888092, 0.006243301089853048, -0.006829866673797369, 0.3176107108592987, -0.18511846661567688, -0.010579738765954971, -0.07776089757680893, -0.033006154000759125, 0.013753476552665234, 0.3317829966545105, -0.2685425877571106, 0.024875514209270477, 0.019552167505025864, -0.005500365048646927, 0.021224748343229294, 0.11953066289424896, 0.11909922957420349, -0.08273909240961075, 1.0844166278839111, -0.0088803106918931, -0.0014381069922819734, 0.04749348387122154, -0.2981075942516327, -0.2760086953639984, 0.003487409558147192, 0.41056758165359497, 0.008113320916891098, -0.44372791051864624, 0.26730814576148987]} +{"t": 7.33, "q": [-0.1345437467098236, 0.006251823622733355, -0.006896826438605785, 0.3176192343235016, -0.1851058453321457, -0.010600988753139973, -0.07775237411260605, -0.03301467373967171, 0.013592774048447609, 0.3317744731903076, -0.26854681968688965, 0.024882763624191284, 0.01999410055577755, -0.005439987406134605, 0.02124400995671749, 0.11945875734090805, 0.11909922957420349, -0.08270313590765, 1.0843926668167114, -0.008856342174112797, -0.0015100124292075634, 0.04746951535344124, -0.297712117433548, -0.2760685980319977, 0.003367567202076316, 0.41678738594055176, -0.0028282771818339825, -0.43950948119163513, 0.26504313945770264]} +{"t": 7.3467, "q": [-0.1345948725938797, 0.0062688677571713924, -0.006923609878867865, 0.3176021873950958, -0.18510153889656067, -0.010593869723379612, -0.07775237411260605, -0.0329720638692379, 0.01352581474930048, 0.3317829966545105, -0.26854681968688965, 0.024882763624191284, 0.020569952204823494, -0.0053946939297020435, 0.02127276174724102, 0.11941082030534744, 0.11906328052282333, -0.08269115537405014, 1.0844166278839111, -0.008856342174112797, -0.0014860439114272594, 0.047505468130111694, -0.2969571053981781, -0.2761165499687195, 0.0032716935966163874, 0.4237861633300781, -0.013158679008483887, -0.4352790415287018, 0.2626582682132721]} +{"t": 7.3635, "q": [-0.13460339605808258, 0.0062688677571713924, -0.006910218391567469, 0.31759366393089294, -0.1850932240486145, -0.010622239671647549, -0.07776089757680893, -0.03303172066807747, 0.01351242233067751, 0.33180856704711914, -0.26854681968688965, 0.024882763624191284, 0.0211859792470932, -0.005281450226902962, 0.021354185417294502, 0.11920709162950516, 0.11907526105642319, -0.08270313590765, 1.0843806266784668, -0.0088803106918931, -0.0014980281703174114, 0.047505468130111694, -0.2955789268016815, -0.27615249156951904, 0.002948119305074215, 0.42951464653015137, -0.023668844252824783, -0.43029361963272095, 0.26054903864860535]} +{"t": 7.3803, "q": [-0.13462896645069122, 0.00628591189160943, -0.0068566505797207355, 0.31753402948379517, -0.1851060688495636, -0.01062940526753664, -0.0778205469250679, -0.033006154000759125, 0.01352581474930048, 0.331817090511322, -0.2685508131980896, 0.02486114762723446, 0.02166808769106865, -0.00512292655184865, 0.02144528366625309, 0.11909922957420349, 0.11906328052282333, -0.08269115537405014, 1.0844045877456665, -0.008832373656332493, -0.0015100124292075634, 0.047505468130111694, -0.2943805158138275, -0.27620044350624084, 0.002612560987472534, 0.4347037971019745, -0.03366369009017944, -0.4247209429740906, 0.2583439350128174]} +{"t": 7.397, "q": [-0.13461191952228546, 0.00628591189160943, -0.006829866673797369, 0.31749141216278076, -0.18510164320468903, -0.010608069598674774, -0.07788020372390747, -0.033006154000759125, 0.013499030843377113, 0.331817090511322, -0.2685425877571106, 0.024875514209270477, 0.022270722314715385, -0.004919118247926235, 0.021555596962571144, 0.11890748143196106, 0.11905129253864288, -0.08270313590765, 1.0843687057495117, -0.0088803106918931, -0.0014860439114272594, 0.047505468130111694, -0.2935895621776581, -0.27615249156951904, 0.0023009711876511574, 0.44193029403686523, -0.04398210719227791, -0.41975948214530945, 0.2551681101322174]} +{"t": 7.4137, "q": [-0.1345948725938797, 0.0062688677571713924, -0.0067896912805736065, 0.3174232244491577, -0.1851058453321457, -0.010600988753139973, -0.07793133705854416, -0.03301467373967171, 0.01344546303153038, 0.33180856704711914, -0.2685508131980896, 0.02486114762723446, 0.023315289989113808, -0.004677546676248312, 0.02170894853770733, 0.11836819350719452, 0.11907526105642319, -0.08270313590765, 1.0844045877456665, -0.008892294950783253, -0.0014620755100622773, 0.047505468130111694, -0.29242709279060364, -0.2761644721031189, 0.0015579492319375277, 0.44914478063583374, -0.05438441410660744, -0.4156249165534973, 0.25054222345352173]} +{"t": 7.4304, "q": [-0.13461191952228546, 0.006243301089853048, -0.0067896912805736065, 0.3173806369304657, -0.18510164320468903, -0.010608069598674774, -0.07794838398694992, -0.033006154000759125, 0.013365112245082855, 0.3317829966545105, -0.26854681968688965, 0.024882763624191284, 0.024453600868582726, -0.004352927673608065, 0.021924519911408424, 0.11754128336906433, 0.11903931200504303, -0.08276306092739105, 1.0843926668167114, -0.008832373656332493, -0.0014261228498071432, 0.047505468130111694, -0.2906174659729004, -0.276188462972641, 0.0011025486746802926, 0.4551249146461487, -0.06250971555709839, -0.4126648008823395, 0.246958926320076]} +{"t": 7.4472, "q": [-0.13467158377170563, 0.006234779488295317, -0.006736123468726873, 0.3172954022884369, -0.18510153889656067, -0.010593869723379612, -0.07805916666984558, -0.03298910707235336, 0.01317762490361929, 0.3317318558692932, -0.26854681968688965, 0.024882763624191284, 0.02585975080728531, -0.004005687776952982, 0.02213512733578682, 0.11666643619537354, 0.11885954439640045, -0.08273909240961075, 1.0844166278839111, -0.008832373656332493, -0.0014381069922819734, 0.04749348387122154, -0.2888917326927185, -0.27612853050231934, 0.0008269115351140499, 0.4607814848423004, -0.071869395673275, -0.4090335965156555, 0.2425367534160614]} +{"t": 7.464, "q": [-0.13466306030750275, 0.006200690288096666, -0.006749515421688557, 0.31730392575263977, -0.1851058453321457, -0.010600988753139973, -0.07807621359825134, -0.033006154000759125, 0.013057098723948002, 0.3317318558692932, -0.26854681968688965, 0.024882763624191284, 0.026837358251214027, -0.003703871974721551, 0.022326260805130005, 0.1158515065908432, 0.11859589070081711, -0.08278702944517136, 1.0844405889511108, -0.008832373656332493, -0.0013901700731366873, 0.04746951535344124, -0.287621408700943, -0.2761405110359192, 0.00046738478704355657, 0.46541938185691833, -0.07982692122459412, -0.403988242149353, 0.2388695776462555]} +{"t": 7.4808, "q": [-0.1346801072359085, 0.006166602019220591, -0.006736123468726873, 0.3172954022884369, -0.1851058453321457, -0.010600988753139973, -0.0780932605266571, -0.032997630536556244, 0.012963354587554932, 0.33170628547668457, -0.26854681968688965, 0.024882763624191284, 0.02738642692565918, -0.003447322640568018, 0.022498253732919693, 0.1152762621641159, 0.11842811107635498, -0.08279900997877121, 1.0844885110855103, -0.0088803106918931, -0.0014381069922819734, 0.047505468130111694, -0.2870701253414154, -0.27617648243904114, -0.00025166873820126057, 0.47051265835762024, -0.08746087551116943, -0.39899080991744995, 0.23560987412929535]} +{"t": 7.4975, "q": [-0.13466306030750275, 0.0061836461536586285, -0.006736123468726873, 0.317286878824234, -0.185097336769104, -0.010600950568914413, -0.07813587039709091, -0.03301467373967171, 0.012869611382484436, 0.33171480894088745, -0.26855504512786865, 0.024868395179510117, 0.02753373794257641, -0.003145515685901046, 0.022670326754450798, 0.11484482884407043, 0.11832025647163391, -0.08282297849655151, 1.0846322774887085, -0.008832373656332493, -0.0014261228498071432, 0.04748149961233139, -0.2870940864086151, -0.276188462972641, -0.0005752427969127893, 0.47519850730895996, -0.09571800380945206, -0.3945087194442749, 0.2316311001777649]} +{"t": 7.5144, "q": [-0.13462896645069122, 0.006234779488295317, -0.006709339562803507, 0.3172357380390167, -0.1851058453321457, -0.010600988753139973, -0.07816143333911896, -0.03298910707235336, 0.012829435989260674, 0.33171480894088745, -0.2685508131980896, 0.02486114762723446, 0.027426602318882942, -0.0028890057001262903, 0.022747013717889786, 0.11440141499042511, 0.11829628795385361, -0.08282297849655151, 1.0847041606903076, -0.008856342174112797, -0.0014141385909169912, 0.04749348387122154, -0.2873457670211792, -0.27617648243904114, -0.0006950850365683436, 0.47971653938293457, -0.10040383785963058, -0.39138081669807434, 0.22829948365688324]} +{"t": 7.5311, "q": [-0.13462044298648834, 0.006234779488295317, -0.006695947609841824, 0.3172101676464081, -0.1851058453321457, -0.010600988753139973, -0.07814439386129379, -0.03298058733344078, 0.012829435989260674, 0.3317318558692932, -0.26855504512786865, 0.024868395179510117, 0.027439994737505913, -0.002677780808880925, 0.022766437381505966, 0.11376625299453735, 0.11828429996967316, -0.08282297849655151, 1.0847522020339966, -0.008856342174112797, -0.0014021543320268393, 0.04749348387122154, -0.2874775826931, -0.27612853050231934, -0.0009587380336597562, 0.4837791919708252, -0.10536530613899231, -0.3880012631416321, 0.2248120754957199]} +{"t": 7.5479, "q": [-0.13457784056663513, 0.006251823622733355, -0.006709339562803507, 0.31722721457481384, -0.18510164320468903, -0.010608069598674774, -0.07811030000448227, -0.03298910707235336, 0.012682124972343445, 0.33175742626190186, -0.2685467004776001, 0.02486833930015564, 0.027279291301965714, -0.002534448402002454, 0.022780979052186012, 0.11311910301446915, 0.11820041388273239, -0.08281099796295166, 1.0848599672317505, -0.00882038939744234, -0.001294296351261437, 0.04748149961233139, -0.28768134117126465, -0.2757090926170349, -0.0012583436910063028, 0.48750630021095276, -0.1107342392206192, -0.38371092081069946, 0.22046180069446564]} +{"t": 7.5648, "q": [-0.13449262082576752, 0.006260345224291086, -0.006695947609841824, 0.3172527849674225, -0.1851058453321457, -0.010600988753139973, -0.0780932605266571, -0.03302319720387459, 0.01260177418589592, 0.331748902797699, -0.2685508131980896, 0.02486114762723446, 0.027118587866425514, -0.002443941542878747, 0.02274301089346409, 0.11268766969442368, 0.11816445738077164, -0.08279900997877121, 1.08490788936615, -0.008856342174112797, -0.0011624698527157307, 0.04748149961233139, -0.28775322437286377, -0.27472639083862305, -0.0015939020086079836, 0.49110156297683716, -0.1158754751086235, -0.38041526079177856, 0.21719011664390564]} +{"t": 7.5815, "q": [-0.13447557389736176, 0.006277389358729124, -0.006655772216618061, 0.3172357380390167, -0.18511447310447693, -0.010615244507789612, -0.07811030000448227, -0.03298910707235336, 0.01260177418589592, 0.33175742626190186, -0.2685467004776001, 0.02486833930015564, 0.02703823707997799, -0.002293052151799202, 0.022790923714637756, 0.11224425584077835, 0.11818842589855194, -0.08285893499851227, 1.0849559307098389, -0.008832373656332493, -0.0011385014513507485, 0.04749348387122154, -0.2878251373767853, -0.27375566959381104, -0.0018695391481742263, 0.4945410490036011, -0.11841613054275513, -0.37819817662239075, 0.21355889737606049]} +{"t": 7.5982, "q": [-0.134458526968956, 0.006243301089853048, -0.006615596357733011, 0.31727835536003113, -0.1851058453321457, -0.010600988753139973, -0.07811882346868515, -0.03302319720387459, 0.012615165673196316, 0.33175742626190186, -0.2685510516166687, 0.024890011176466942, 0.02686414308845997, -0.0022025187499821186, 0.022819671779870987, 0.11207647621631622, 0.11815247684717178, -0.08283496648073196, 1.0849918127059937, -0.008856342174112797, -0.0010546118719503284, 0.04749348387122154, -0.28800490498542786, -0.272269606590271, -0.0023968450259417295, 0.49667423963546753, -0.11975836008787155, -0.3768919110298157, 0.20979584753513336]} +{"t": 7.615, "q": [-0.1344500035047531, 0.006251823622733355, -0.0065620290115475655, 0.31732097268104553, -0.1851058453321457, -0.010600988753139973, -0.07812734693288803, -0.033006154000759125, 0.012641949579119682, 0.3317829966545105, -0.2685508131980896, 0.02486114762723446, 0.026609696447849274, -0.002044093329459429, 0.02285138890147209, 0.11208845674991608, 0.11816445738077164, -0.08288290351629257, 1.0850757360458374, -0.008832373656332493, -0.0010785802733153105, 0.04748149961233139, -0.2884123623371124, -0.2702682614326477, -0.003523362334817648, 0.49744123220443726, -0.11997407674789429, -0.3762567341327667, 0.20597288012504578]} +{"t": 7.6317, "q": [-0.13433068990707397, 0.006234779488295317, -0.006521853152662516, 0.3173294961452484, -0.1851058453321457, -0.010600988753139973, -0.07810177654027939, -0.03298058733344078, 0.012695517390966415, 0.3318341374397278, -0.2685425877571106, 0.024875514209270477, 0.02639542706310749, -0.001998843625187874, 0.02282230742275715, 0.11216036230325699, 0.11820041388273239, -0.08288290351629257, 1.0853153467178345, -0.008796420879662037, -0.0010665960144251585, 0.04748149961233139, -0.28922727704048157, -0.26739203929901123, -0.005285043269395828, 0.4974052608013153, -0.1197463795542717, -0.37602904438972473, 0.20238959789276123]} +{"t": 7.6484, "q": [-0.1343136429786682, 0.006209212820976973, -0.00646828580647707, 0.31735506653785706, -0.18510153889656067, -0.010593869723379612, -0.07807621359825134, -0.03301467373967171, 0.012708908878266811, 0.3318341374397278, -0.26853835582733154, 0.02486826665699482, 0.0262079406529665, -0.0019159114453941584, 0.022702276706695557, 0.1122322678565979, 0.11818842589855194, -0.08287091553211212, 1.0855071544647217, -0.008796420879662037, -0.0011025486746802926, 0.04749348387122154, -0.29019802808761597, -0.2637608051300049, -0.009024121798574924, 0.4971296191215515, -0.11938685178756714, -0.3760170638561249, 0.19851869344711304]} +{"t": 7.6651, "q": [-0.13424547016620636, 0.006217735353857279, -0.00646828580647707, 0.3174317479133606, -0.1851058453321457, -0.010600988753139973, -0.07802508026361465, -0.03301467373967171, 0.01277586817741394, 0.33189377188682556, -0.26853835582733154, 0.02486826665699482, 0.026114197447896004, -0.0018480559810996056, 0.022610999643802643, 0.11222028732299805, 0.11817644536495209, -0.08289488404989243, 1.0857348442077637, -0.008832373656332493, -0.0010905645322054625, 0.04748149961233139, -0.29127660393714905, -0.2602853775024414, -0.012631373479962349, 0.49688994884490967, -0.11903931200504303, -0.37600505352020264, 0.19566644728183746]} +{"t": 7.6819, "q": [-0.13421139121055603, 0.006166602019220591, -0.006441501900553703, 0.31749141216278076, -0.18511447310447693, -0.010615244507789612, -0.07799099385738373, -0.03302319720387459, 0.012802652083337307, 0.3319619596004486, -0.26853835582733154, 0.02486826665699482, 0.025953494012355804, -0.0018254463793709874, 0.022558337077498436, 0.11214838176965714, 0.11814048886299133, -0.08284694701433182, 1.0859026908874512, -0.00882038939744234, -0.0010665960144251585, 0.04746951535344124, -0.2923911213874817, -0.2580922842025757, -0.015052187256515026, 0.49681803584098816, -0.11818842589855194, -0.3760649859905243, 0.19269435107707977]} +{"t": 7.6986, "q": [-0.1341858208179474, 0.006106947083026171, -0.0064013260416686535, 0.3175510764122009, -0.1851058453321457, -0.010600988753139973, -0.07800803333520889, -0.03304024040699005, 0.012923179194331169, 0.33199605345726013, -0.2685341238975525, 0.024861017242074013, 0.02571243979036808, -0.0017802170477807522, 0.022481601685285568, 0.11214838176965714, 0.11815247684717178, -0.08282297849655151, 1.0861423015594482, -0.008856342174112797, -0.0010665960144251585, 0.04748149961233139, -0.29349368810653687, -0.2562706768512726, -0.017712684348225594, 0.49596714973449707, -0.11716976761817932, -0.3762687146663666, 0.1901417225599289]} +{"t": 7.7154, "q": [-0.1341346800327301, 0.0060472930781543255, -0.006374542135745287, 0.31763628125190735, -0.185097336769104, -0.010600950568914413, -0.07800803333520889, -0.03302319720387459, 0.013057098723948002, 0.33203014731407166, -0.2685341238975525, 0.024861017242074013, 0.025149980559945107, -0.0017651605885475874, 0.022405192255973816, 0.11232814192771912, 0.11812850832939148, -0.08284694701433182, 1.08639395236969, -0.008856342174112797, -0.0010546118719503284, 0.04746951535344124, -0.2956388592720032, -0.25428128242492676, -0.020672788843512535, 0.49442118406295776, -0.11559983342885971, -0.37697577476501465, 0.1874932050704956]} +{"t": 7.7321, "q": [-0.1340409368276596, 0.0059620714746415615, -0.006280798930674791, 0.3176959455013275, -0.18510153889656067, -0.010593869723379612, -0.07801655679941177, -0.03304024040699005, 0.013311544433236122, 0.3320557177066803, -0.2685341238975525, 0.024861017242074013, 0.02454734407365322, -0.0017576611135154963, 0.022295506671071053, 0.11235211044549942, 0.11816445738077164, -0.08283496648073196, 1.0865378379821777, -0.008832373656332493, -0.0011025486746802926, 0.04748149961233139, -0.2983233332633972, -0.25273531675338745, -0.02364487573504448, 0.4931149184703827, -0.11418569833040237, -0.3780543804168701, 0.18309499323368073]} +{"t": 7.7488, "q": [-0.13396424055099487, 0.005851284135133028, -0.006200447678565979, 0.3177470862865448, -0.18511004745960236, -0.010593907907605171, -0.07801655679941177, -0.03309137374162674, 0.013499030843377113, 0.3321579694747925, -0.2685215473175049, 0.024853697046637535, 0.02401166968047619, -0.0017954265931621194, 0.022176777943968773, 0.11235211044549942, 0.11828429996967316, -0.08282297849655151, 1.086753487586975, -0.008832373656332493, -0.0011385014513507485, 0.04748149961233139, -0.30028873682022095, -0.25144103169441223, -0.027707528322935104, 0.49063417315483093, -0.11320298910140991, -0.3795284330844879, 0.17855297029018402]} +{"t": 7.7656, "q": [-0.13389606773853302, 0.0057404967956244946, -0.006106704473495483, 0.3178408145904541, -0.18510164320468903, -0.010608069598674774, -0.0779569074511528, -0.03303172066807747, 0.013565990142524242, 0.3322261571884155, -0.2685258984565735, 0.024875367060303688, 0.023301897570490837, -0.0018633651779964566, 0.02205837517976761, 0.11237607896327972, 0.11829628795385361, -0.08283496648073196, 1.0868853330612183, -0.00882038939744234, -0.0011265171924605966, 0.04748149961233139, -0.30268558859825134, -0.2491520494222641, -0.03452655300498009, 0.488345205783844, -0.11200457066297531, -0.38117027282714844, 0.17348363995552063]} +{"t": 7.7823, "q": [-0.13387902081012726, 0.005646753590553999, -0.006066528614610434, 0.31795158982276917, -0.1851058453321457, -0.010600988753139973, -0.07797394692897797, -0.03304876387119293, 0.013659733347594738, 0.33235397934913635, -0.2685258984565735, 0.024875367060303688, 0.022806398570537567, -0.001886075478978455, 0.021863237023353577, 0.11244798451662064, 0.11836819350719452, -0.08284694701433182, 1.0870651006698608, -0.008808405138552189, -0.0010546118719503284, 0.04748149961233139, -0.30563369393348694, -0.24542495608329773, -0.04429369792342186, 0.4864277243614197, -0.10961970686912537, -0.3823087811470032, 0.16973258554935455]} +{"t": 7.7991, "q": [-0.13384492695331573, 0.005535965319722891, -0.005986177362501621, 0.3180283010005951, -0.1851058453321457, -0.010600988753139973, -0.07797394692897797, -0.03303172066807747, 0.013740085065364838, 0.33244773745536804, -0.2685215473175049, 0.024853697046637535, 0.02216358669102192, -0.001938935718499124, 0.0217256098985672, 0.11237607896327972, 0.11836819350719452, -0.08285893499851227, 1.0873407125473022, -0.008772453293204308, -0.0010546118719503284, 0.04748149961233139, -0.30844998359680176, -0.2419854700565338, -0.05258677899837494, 0.4848937392234802, -0.10644388943910599, -0.3828480541706085, 0.16623318195343018]} +{"t": 7.8158, "q": [-0.13382789492607117, 0.005433700513094664, -0.005986177362501621, 0.3181220591068268, -0.18509723246097565, -0.010586750693619251, -0.07794838398694992, -0.033006154000759125, 0.013753476552665234, 0.33249032497406006, -0.2685174345970154, 0.024860871955752373, 0.021105628460645676, -0.001923878095112741, 0.021649200469255447, 0.11235211044549942, 0.11842811107635498, -0.08285893499851227, 1.0875804424285889, -0.008796420879662037, -0.0011025486746802926, 0.04748149961233139, -0.31121835112571716, -0.23819845914840698, -0.06052033603191376, 0.4827725291252136, -0.10307632386684418, -0.38348323106765747, 0.16141553223133087]} +{"t": 7.8326, "q": [-0.1338108479976654, 0.00526325823739171, -0.005986177362501621, 0.3182072639465332, -0.1851058453321457, -0.010600988753139973, -0.07793133705854416, -0.0331084169447422, 0.013726692646741867, 0.33253294229507446, -0.2685174345970154, 0.024860871955752373, 0.01931111328303814, -0.0019238742534071207, 0.021658731624484062, 0.11235211044549942, 0.11845207959413528, -0.08282297849655151, 1.087951898574829, -0.008832373656332493, -0.0011385014513507485, 0.04748149961233139, -0.31451401114463806, -0.23528629541397095, -0.06676411628723145, 0.4809509217739105, -0.09751564264297485, -0.3839745819568634, 0.15732890367507935]} +{"t": 7.8494, "q": [-0.13384492695331573, 0.005169515032321215, -0.0059995693154633045, 0.3182157874107361, -0.18509723246097565, -0.010586750693619251, -0.07796542346477509, -0.033176593482494354, 0.013726692646741867, 0.3325499892234802, -0.2685258984565735, 0.024875367060303688, 0.017235370352864265, -0.0018786027794703841, 0.02168683521449566, 0.11242401599884033, 0.11847604811191559, -0.08279900997877121, 1.088335394859314, -0.0088803106918931, -0.001294296351261437, 0.04748149961233139, -0.3182530999183655, -0.23238611221313477, -0.07321163266897202, 0.4795847237110138, -0.09473530203104019, -0.3843460977077484, 0.15320633351802826]} +{"t": 7.8661, "q": [-0.13387049734592438, 0.005152470897883177, -0.005986177362501621, 0.3182072639465332, -0.18509723246097565, -0.010586750693619251, -0.07797394692897797, -0.033193640410900116, 0.013713301159441471, 0.332567036151886, -0.2685258984565735, 0.024875367060303688, 0.015427463687956333, -0.0018635003361850977, 0.021724795922636986, 0.11238806694746017, 0.11844009906053543, -0.08281099796295166, 1.0887309312820435, -0.0088803106918931, -0.001294296351261437, 0.04746951535344124, -0.321920245885849, -0.22871893644332886, -0.08233162760734558, 0.4776672422885895, -0.0933091789484024, -0.3846696615219116, 0.15152853727340698]} +{"t": 7.883, "q": [-0.13387902081012726, 0.005135425832122564, -0.006012961268424988, 0.31822431087493896, -0.18509723246097565, -0.010586750693619251, -0.0779569074511528, -0.033185116946697235, 0.013673125766217709, 0.33257555961608887, -0.2685174345970154, 0.024860871955752373, 0.01319101732224226, -0.0018861136632040143, 0.021767929196357727, 0.11242401599884033, 0.11842811107635498, -0.08279900997877121, 1.0889346599578857, -0.008868326433002949, -0.001342233270406723, 0.04748149961233139, -0.3257312476634979, -0.22526748478412628, -0.09014534205198288, 0.4759415090084076, -0.09137971699237823, -0.3848973512649536, 0.14999456703662872]} +{"t": 7.9006, "q": [-0.13388754427433014, 0.005160992499440908, -0.006012961268424988, 0.31819021701812744, -0.18509723246097565, -0.010586750693619251, -0.07794838398694992, -0.033176593482494354, 0.013659733347594738, 0.33254146575927734, -0.2685174345970154, 0.024860871955752373, 0.010606381110846996, -0.0019238332752138376, 0.021763570606708527, 0.11244798451662064, 0.11842811107635498, -0.08279900997877121, 1.0891263484954834, -0.00882038939744234, -0.0013542174128815532, 0.04749348387122154, -0.32899096608161926, -0.22212761640548706, -0.09670071303844452, 0.4737124443054199, -0.08834771066904068, -0.38506513833999634, 0.1483047902584076]} +{"t": 7.9173, "q": [-0.13387902081012726, 0.005160992499440908, -0.006012961268424988, 0.31809648871421814, -0.18510574102401733, -0.010586789809167385, -0.0779569074511528, -0.033185116946697235, 0.013686517253518105, 0.3325073719024658, -0.2685174345970154, 0.024860871955752373, 0.00814227294176817, -0.0019238257082179189, 0.021782632917165756, 0.11254385858774185, 0.11839216202497482, -0.08278702944517136, 1.0894739627838135, -0.008832373656332493, -0.0012583436910063028, 0.04749348387122154, -0.33193907141685486, -0.2193712443113327, -0.1034718006849289, 0.4699254333972931, -0.08373378217220306, -0.38538870215415955, 0.14571619033813477]} +{"t": 7.934, "q": [-0.13379380106925964, 0.0051865591667592525, -0.005946001503616571, 0.31805387139320374, -0.18511004745960236, -0.010593907907605171, -0.07797394692897797, -0.033176593482494354, 0.01379365287721157, 0.33244773745536804, -0.268530011177063, 0.02486819215118885, 0.006749515421688557, -0.0018559165764600039, 0.02182478830218315, 0.11244798451662064, 0.11850001662969589, -0.08281099796295166, 1.0899173021316528, -0.008856342174112797, -0.0011864382540807128, 0.04748149961233139, -0.33368876576423645, -0.21778932213783264, -0.10976351797580719, 0.46648597717285156, -0.07836484909057617, -0.3857961893081665, 0.14305569231510162]} +{"t": 7.9507, "q": [-0.13380232453346252, 0.005220647435635328, -0.005919218063354492, 0.3179686367511749, -0.18509723246097565, -0.010586750693619251, -0.07797394692897797, -0.033176593482494354, 0.013820436783134937, 0.3324136435985565, -0.2685174345970154, 0.024860871955752373, 0.005959393456578255, -0.0018106324132531881, 0.021881485357880592, 0.11238806694746017, 0.11842811107635498, -0.08281099796295166, 1.0908042192459106, -0.008832373656332493, -0.0011025486746802926, 0.04749348387122154, -0.33553433418273926, -0.21587185561656952, -0.11869176477193832, 0.46334609389305115, -0.07361909747123718, -0.3862995207309723, 0.13971209526062012]} +{"t": 7.9675, "q": [-0.13382789492607117, 0.0052291699685156345, -0.005919218063354492, 0.3179260492324829, -0.1851014345884323, -0.010579670779407024, -0.07801655679941177, -0.03315103054046631, 0.013820436783134937, 0.33243921399116516, -0.2685258984565735, 0.024875367060303688, 0.0055978125892579556, -0.0017653405666351318, 0.021957242861390114, 0.11242401599884033, 0.11844009906053543, -0.08282297849655151, 1.0920385122299194, -0.00882038939744234, -0.0009827064350247383, 0.04748149961233139, -0.3368645906448364, -0.2149011343717575, -0.12752413749694824, 0.4601343274116516, -0.06942461431026459, -0.3866230845451355, 0.1359730213880539]} +{"t": 7.9843, "q": [-0.1338108479976654, 0.005237691570073366, -0.005919218063354492, 0.3178322911262512, -0.1851014345884323, -0.010579670779407024, -0.07805916666984558, -0.03316807374358177, 0.01379365287721157, 0.332379549741745, -0.2685258984565735, 0.024875367060303688, 0.005303190555423498, -0.001780403428710997, 0.022014589980244637, 0.11245997250080109, 0.11844009906053543, -0.08282297849655151, 1.0928294658660889, -0.008796420879662037, -0.0009108011145144701, 0.04746951535344124, -0.33818286657333374, -0.21498501300811768, -0.1353977769613266, 0.45737797021865845, -0.06441520899534225, -0.3872222900390625, 0.13162274658679962]} +{"t": 8.0011, "q": [-0.13379380106925964, 0.00526325823739171, -0.005919218063354492, 0.31773003935813904, -0.18511004745960236, -0.010593907907605171, -0.07808473706245422, -0.03315103054046631, 0.01379365287721157, 0.3322772681713104, -0.2685258984565735, 0.024875367060303688, 0.004888041876256466, -0.0017049566376954317, 0.022042369470000267, 0.11238806694746017, 0.11844009906053543, -0.08282297849655151, 1.093248963356018, -0.008796420879662037, -0.000850879994686693, 0.04748149961233139, -0.3398726284503937, -0.21562017500400543, -0.1429598182439804, 0.45543649792671204, -0.057739995419979095, -0.38795334100723267, 0.12932176887989044]} +{"t": 8.0179, "q": [-0.13378527760505676, 0.005339957308024168, -0.005932609550654888, 0.31768742203712463, -0.18511426448822021, -0.010586818680167198, -0.07810177654027939, -0.03314250707626343, 0.013807044364511967, 0.3322857916355133, -0.2685258984565735, 0.024875367060303688, 0.004419325385242701, -0.001644597970880568, 0.02207030914723873, 0.11235211044549942, 0.11844009906053543, -0.08284694701433182, 1.093536615371704, -0.008796420879662037, -0.0007669904152862728, 0.04748149961233139, -0.3414905071258545, -0.21589581668376923, -0.1509772688150406, 0.4533033072948456, -0.052275191992521286, -0.38917574286460876, 0.12681707739830017]} +{"t": 8.0347, "q": [-0.13374267518520355, 0.005399612244218588, -0.005919218063354492, 0.3176533281803131, -0.18511426448822021, -0.010586818680167198, -0.07811030000448227, -0.033116940408945084, 0.0138606121763587, 0.3322432041168213, -0.268530011177063, 0.02486819215118885, 0.004258622881025076, -0.001561594195663929, 0.022131364792585373, 0.11199258267879486, 0.11844009906053543, -0.08284694701433182, 1.0938361883163452, -0.008772453293204308, -0.0007430219557136297, 0.04748149961233139, -0.34307241439819336, -0.2157280445098877, -0.16260196268558502, 0.4508945047855377, -0.0466306209564209, -0.39122503995895386, 0.12413260340690613]} +{"t": 8.0514, "q": [-0.13378527760505676, 0.005510399583727121, -0.005919218063354492, 0.3176107108592987, -0.18511426448822021, -0.010586818680167198, -0.07816143333911896, -0.03316807374358177, 0.013807044364511967, 0.3322432041168213, -0.2685258984565735, 0.024875367060303688, 0.004325582180172205, -0.0014861320378258824, 0.022197265177965164, 0.11182480305433273, 0.11841613054275513, -0.08284694701433182, 1.093991994857788, -0.008772453293204308, -0.0007550062146037817, 0.04749348387122154, -0.3447382152080536, -0.21584787964820862, -0.17305220663547516, 0.4483298659324646, -0.040290966629981995, -0.39327433705329895, 0.12063321471214294]} +{"t": 8.0682, "q": [-0.13378527760505676, 0.005578576121479273, -0.005932609550654888, 0.31749993562698364, -0.18511426448822021, -0.010586818680167198, -0.07821256667375565, -0.03315103054046631, 0.013726692646741867, 0.3321494460105896, -0.2685258984565735, 0.024875367060303688, 0.004298798739910126, -0.0014257607981562614, 0.022253800183534622, 0.11194464564323425, 0.11840414255857468, -0.08283496648073196, 1.094159722328186, -0.008796420879662037, -0.0007909588748589158, 0.04749348387122154, -0.34624823927879333, -0.21659089624881744, -0.18166887760162354, 0.4459569752216339, -0.03185407072305679, -0.39552736282348633, 0.11635484546422958]} +{"t": 8.0849, "q": [-0.13378527760505676, 0.005663797724992037, -0.005959393456578255, 0.31740617752075195, -0.18511426448822021, -0.010586818680167198, -0.07826370000839233, -0.03313398361206055, 0.013726692646741867, 0.33203014731407166, -0.268530011177063, 0.02486819215118885, 0.004365758039057255, -0.001380491885356605, 0.022272372618317604, 0.11199258267879486, 0.11839216202497482, -0.08281099796295166, 1.0943515300750732, -0.008796420879662037, -0.0008149273344315588, 0.04748149961233139, -0.34744665026664734, -0.21758559346199036, -0.19059711694717407, 0.4436799883842468, -0.024591630324721336, -0.39754071831703186, 0.11247195303440094]} +{"t": 8.1016, "q": [-0.13384492695331573, 0.005766062531620264, -0.006066528614610434, 0.3172954022884369, -0.18511004745960236, -0.010593907907605171, -0.07825517654418945, -0.03314250707626343, 0.013646341860294342, 0.3319704830646515, -0.2685341238975525, 0.024861017242074013, 0.004553244449198246, -0.001403124420903623, 0.02226785197854042, 0.11196861416101456, 0.11840414255857468, -0.08282297849655151, 1.0945671796798706, -0.00882038939744234, -0.000898816913831979, 0.04746951535344124, -0.3486331105232239, -0.2178013026714325, -0.20218586921691895, 0.44112735986709595, -0.015903066843748093, -0.3992305099964142, 0.10979947447776794]} +{"t": 8.1183, "q": [-0.13388754427433014, 0.005825717467814684, -0.006160271819680929, 0.3171846270561218, -0.18511846661567688, -0.010579738765954971, -0.07827222347259521, -0.03313398361206055, 0.013592774048447609, 0.3319278657436371, -0.2685425877571106, 0.024875514209270477, 0.004620204214006662, -0.0013955674367025495, 0.02230112813413143, 0.11189670860767365, 0.11844009906053543, -0.08281099796295166, 1.0946990251541138, -0.008808405138552189, -0.0009587380336597562, 0.04748149961233139, -0.34943604469299316, -0.21799305081367493, -0.21285182237625122, 0.4382750988006592, -0.008053399622440338, -0.4004768431186676, 0.107414610683918]} +{"t": 8.1351, "q": [-0.1339045912027359, 0.005902416538447142, -0.006187055725604296, 0.3170567750930786, -0.18511004745960236, -0.010593907907605171, -0.07830630987882614, -0.03314250707626343, 0.013539206236600876, 0.33180856704711914, -0.2685341238975525, 0.024861017242074013, 0.004606812261044979, -0.0014106506714597344, 0.02231082133948803, 0.11189670860767365, 0.11842811107635498, -0.08282297849655151, 1.0947829484939575, -0.008796420879662037, -0.0010066749528050423, 0.04746951535344124, -0.3504067659378052, -0.2184963971376419, -0.22237928211688995, 0.43589022755622864, 0.0003834952076431364, -0.4016273319721222, 0.10391521453857422]} +{"t": 8.1519, "q": [-0.13387049734592438, 0.0059194606728851795, -0.006200447678565979, 0.3169715702533722, -0.18511004745960236, -0.010593907907605171, -0.07829778641462326, -0.03315955027937889, 0.013539206236600876, 0.3317829966545105, -0.2685341238975525, 0.024861017242074013, 0.00479429867118597, -0.001327651902101934, 0.022362345829606056, 0.11186075955629349, 0.11842811107635498, -0.08282297849655151, 1.0948668718338013, -0.008832373656332493, -0.0010785802733153105, 0.04748149961233139, -0.3513295352458954, -0.21856829524040222, -0.23333287239074707, 0.43316981196403503, 0.007849667221307755, -0.4023224115371704, 0.10067947953939438]} +{"t": 8.1688, "q": [-0.13393867015838623, 0.005987638141959906, -0.006294190883636475, 0.316911906003952, -0.18511004745960236, -0.010593907907605171, -0.07831483334302902, -0.03309989720582962, 0.013405287638306618, 0.331748902797699, -0.26853835582733154, 0.02486826665699482, 0.00508892023935914, -0.0012898825807496905, 0.02249060571193695, 0.11175289750099182, 0.11840414255857468, -0.08278702944517136, 1.094902753829956, -0.008796420879662037, -0.0011145329335704446, 0.04749348387122154, -0.3520725667476654, -0.21858029067516327, -0.24443025887012482, 0.43004193902015686, 0.016118783503770828, -0.4026220440864563, 0.09686849266290665]} +{"t": 8.1856, "q": [-0.13398981094360352, 0.006038770545274019, -0.006374542135745287, 0.3168778121471405, -0.18511004745960236, -0.010593907907605171, -0.07836596667766571, -0.033125463873147964, 0.013311544433236122, 0.33176594972610474, -0.26853835582733154, 0.02486826665699482, 0.0052094473503530025, -0.001199271995574236, 0.022708836942911148, 0.11171694844961166, 0.11842811107635498, -0.08279900997877121, 1.0949387550354004, -0.00882038939744234, -0.0011984225129708648, 0.047505468130111694, -0.35288751125335693, -0.21858029067516327, -0.2544490694999695, 0.4266384243965149, 0.024220118299126625, -0.4027778208255768, 0.09290171414613724]} +{"t": 8.2023, "q": [-0.13400685787200928, 0.0060046822763979435, -0.00638793408870697, 0.31685224175453186, -0.18511426448822021, -0.010586818680167198, -0.0784171000123024, -0.03313398361206055, 0.013311544433236122, 0.3316892683506012, -0.26853835582733154, 0.02486826665699482, 0.00508892023935914, -0.0009879489662125707, 0.023011932149529457, 0.11180083453655243, 0.11841613054275513, -0.08279900997877121, 1.0950226783752441, -0.00882038939744234, -0.0012583436910063028, 0.04749348387122154, -0.35376235842704773, -0.21862822771072388, -0.2625024616718292, 0.4241337180137634, 0.03268098086118698, -0.40286171436309814, 0.08933041244745255]} +{"t": 8.2192, "q": [-0.1340920776128769, 0.005987638141959906, -0.006361150648444891, 0.3167499899864197, -0.1851058453321457, -0.010600988753139973, -0.07849379628896713, -0.033176593482494354, 0.013338328339159489, 0.3316040337085724, -0.268538236618042, 0.024853842332959175, 0.004941609688103199, -0.0008371176663786173, 0.023222554475069046, 0.11178885400295258, 0.11846406757831573, -0.08278702944517136, 1.0950945615768433, -0.00882038939744234, -0.001270327833481133, 0.04749348387122154, -0.3545413315296173, -0.21865218877792358, -0.2708195149898529, 0.42255181074142456, 0.03978762775659561, -0.4030414819717407, 0.0875447690486908]} +{"t": 8.2359, "q": [-0.13410912454128265, 0.006038770545274019, -0.006361150648444891, 0.316656231880188, -0.1851058453321457, -0.010600988753139973, -0.0785108432173729, -0.03313398361206055, 0.013324935920536518, 0.33152732253074646, -0.2685425877571106, 0.024875514209270477, 0.004955001175403595, -0.000595786958001554, 0.02354801818728447, 0.11129750311374664, 0.11844009906053543, -0.08279900997877121, 1.0952383279800415, -0.008808405138552189, -0.0012583436910063028, 0.047529436647892, -0.35553601384162903, -0.21859227120876312, -0.2810540497303009, 0.42130544781684875, 0.04435361921787262, -0.40316131711006165, 0.08674181997776031]} +{"t": 8.2526, "q": [-0.13416025042533875, 0.005970594007521868, -0.006361150648444891, 0.31667327880859375, -0.18512289226055145, -0.010601074434816837, -0.0785108432173729, -0.03313398361206055, 0.013324935920536518, 0.33143359422683716, -0.2685425877571106, 0.024875514209270477, 0.004995177034288645, -0.0004072464071214199, 0.023753629997372627, 0.11072225868701935, 0.11848803609609604, -0.08281099796295166, 1.0953941345214844, -0.008856342174112797, -0.0011984225129708648, 0.04749348387122154, -0.35645878314971924, -0.21866416931152344, -0.2894669771194458, 0.4202508330345154, 0.049914296716451645, -0.40328115224838257, 0.08583102375268936]} +{"t": 8.2696, "q": [-0.13416877388954163, 0.005945027340203524, -0.006347758695483208, 0.3166477084159851, -0.18511426448822021, -0.010586818680167198, -0.07852788269519806, -0.03314250707626343, 0.013338328339159489, 0.33139097690582275, -0.26853835582733154, 0.02486826665699482, 0.004928217735141516, -0.0002187070349464193, 0.02393040619790554, 0.11051852256059647, 0.11842811107635498, -0.08279900997877121, 1.0955978631973267, -0.00882038939744234, -0.0011864382540807128, 0.047505468130111694, -0.35720181465148926, -0.2187959998846054, -0.29595044255256653, 0.4192681312561035, 0.055762600153684616, -0.40332910418510437, 0.08500410616397858]} +{"t": 8.2863, "q": [-0.13416877388954163, 0.005927983205765486, -0.006320974789559841, 0.31661364436149597, -0.18511426448822021, -0.010586818680167198, -0.07854492962360382, -0.03313398361206055, 0.013391895219683647, 0.33135688304901123, -0.26853835582733154, 0.02486826665699482, 0.00483447453007102, -0.00011312315473333001, 0.024073997512459755, 0.110458604991436, 0.11840414255857468, -0.08281099796295166, 1.0959813594818115, -0.008832373656332493, -0.0012104067718610168, 0.047505468130111694, -0.35780102014541626, -0.21993450820446014, -0.2999292016029358, 0.4184052646160126, 0.06169478967785835, -0.40336504578590393, 0.08432100713253021]} +{"t": 8.3031, "q": [-0.13416877388954163, 0.0059194606728851795, -0.006320974789559841, 0.3166051208972931, -0.18511426448822021, -0.010586818680167198, -0.0785534530878067, -0.03315955027937889, 0.013391895219683647, 0.3313227891921997, -0.26854246854782104, 0.024861091747879982, 0.004888041876256466, 2.2624864868703298e-05, 0.024227282032370567, 0.11035074293613434, 0.11842811107635498, -0.08281099796295166, 1.0964127779006958, -0.00882038939744234, -0.0012343751732259989, 0.04749348387122154, -0.35810062289237976, -0.22077339887619019, -0.304543137550354, 0.41738659143447876, 0.06343250721693039, -0.4034010171890259, 0.0842491015791893]} +{"t": 8.3199, "q": [-0.13416877388954163, 0.0059620714746415615, -0.006294190883636475, 0.31657955050468445, -0.18511426448822021, -0.010586818680167198, -0.07857049256563187, -0.03315955027937889, 0.013378503732383251, 0.33129724860191345, -0.2685425877571106, 0.024875514209270477, 0.004874649923294783, 3.77081087208353e-05, 0.024294642731547356, 0.1101589947938919, 0.11846406757831573, -0.08282297849655151, 1.0967364311218262, -0.008832373656332493, -0.0012583436910063028, 0.04749348387122154, -0.35840022563934326, -0.22073744237422943, -0.3094446659088135, 0.41673943400382996, 0.06518220156431198, -0.40348488092422485, 0.0842491015791893]} +{"t": 8.3367, "q": [-0.13416877388954163, 0.0059620714746415615, -0.006320974789559841, 0.31657955050468445, -0.18511846661567688, -0.010579738765954971, -0.07857049256563187, -0.033116940408945084, 0.013324935920536518, 0.3313142955303192, -0.2685425877571106, 0.024875514209270477, 0.004888041876256466, 5.27913543919567e-05, 0.024323560297489166, 0.10976351797580719, 0.11845207959413528, -0.08281099796295166, 1.097071886062622, -0.00882038939744234, -0.001282312092371285, 0.04749348387122154, -0.35895150899887085, -0.22060561180114746, -0.3161318898200989, 0.4163559675216675, 0.06648848205804825, -0.403616726398468, 0.08428505808115005]} +{"t": 8.3534, "q": [-0.13416877388954163, 0.006021726410835981, -0.006320974789559841, 0.31653693318367004, -0.1851058453321457, -0.010600988753139973, -0.07858753949403763, -0.03313398361206055, 0.013365112245082855, 0.33129724860191345, -0.2685341238975525, 0.024861017242074013, 0.004941609688103199, 6.78746000630781e-05, 0.0243140310049057, 0.10930811613798141, 0.11838017404079437, -0.08281099796295166, 1.097347617149353, -0.008796420879662037, -0.0012583436910063028, 0.04748149961233139, -0.3593350052833557, -0.22066554427146912, -0.32135701179504395, 0.41621214151382446, 0.06888532638549805, -0.4037245810031891, 0.08430902659893036]} +{"t": 8.3702, "q": [-0.13416877388954163, 0.006081381347030401, -0.006347758695483208, 0.31657955050468445, -0.18511004745960236, -0.010593907907605171, -0.07853640615940094, -0.03315103054046631, 0.013298152014613152, 0.3313142955303192, -0.2685341238975525, 0.024861017242074013, 0.005236231256276369, 0.0001131243261625059, 0.024352723732590675, 0.10905645042657852, 0.11839216202497482, -0.08281099796295166, 1.09758722782135, -0.008796420879662037, -0.001270327833481133, 0.047505468130111694, -0.35962262749671936, -0.22060561180114746, -0.32507210969924927, 0.4162241220474243, 0.07073089480400085, -0.4037485420703888, 0.08440490067005157]} +{"t": 8.3869, "q": [-0.1341858208179474, 0.006115469615906477, -0.006414717994630337, 0.31662216782569885, -0.18511004745960236, -0.010593907907605171, -0.07854492962360382, -0.033116940408945084, 0.013204408809542656, 0.33130577206611633, -0.2685341238975525, 0.024861017242074013, 0.00542371766641736, 0.0001583740668138489, 0.024401027709245682, 0.10908041894435883, 0.11839216202497482, -0.08282297849655151, 1.0978628396987915, -0.008832373656332493, -0.001306280493736267, 0.04749348387122154, -0.36042556166648865, -0.2205696702003479, -0.3278404772281647, 0.416248083114624, 0.07240869104862213, -0.40373656153678894, 0.08450077474117279]} +{"t": 8.4038, "q": [-0.13419434428215027, 0.006141036283224821, -0.00646828580647707, 0.31662216782569885, -0.1851058453321457, -0.010600988753139973, -0.07856197655200958, -0.03313398361206055, 0.01319101732224226, 0.33133983612060547, -0.26853835582733154, 0.02486826665699482, 0.005571028683334589, 0.0002714984002523124, 0.024492952972650528, 0.10912835597991943, 0.11844009906053543, -0.08278702944517136, 1.0985100269317627, -0.008856342174112797, -0.001294296351261437, 0.04749348387122154, -0.3617558181285858, -0.22041386365890503, -0.3292785584926605, 0.41618818044662476, 0.0746617242693901, -0.40378451347351074, 0.0848483145236969]} +{"t": 8.4207, "q": [-0.1341858208179474, 0.006175124552100897, -0.006441501900553703, 0.31666475534439087, -0.18511447310447693, -0.010615244507789612, -0.07853640615940094, -0.0331084169447422, 0.013164233416318893, 0.33133983612060547, -0.2685341238975525, 0.024861017242074013, 0.005678163841366768, 0.0004072464071214199, 0.02459941804409027, 0.10906843096017838, 0.11844009906053543, -0.08279900997877121, 1.099516749382019, -0.008856342174112797, -0.001294296351261437, 0.047505468130111694, -0.36342161893844604, -0.22018617391586304, -0.3302493095397949, 0.4162001609802246, 0.07726229727268219, -0.4039163291454315, 0.08524379134178162]} +{"t": 8.4374, "q": [-0.1342284232378006, 0.0061836461536586285, -0.00646828580647707, 0.31666475534439087, -0.1851058453321457, -0.010600988753139973, -0.07854492962360382, -0.03315955027937889, 0.013124058023095131, 0.3313313126564026, -0.26852989196777344, 0.024853769689798355, 0.005946001503616571, 0.0005203707260079682, 0.02465289831161499, 0.10887668281793594, 0.11842811107635498, -0.08281099796295166, 1.100415587425232, -0.008856342174112797, -0.001330249011516571, 0.04749348387122154, -0.36434441804885864, -0.22018617391586304, -0.33062079548835754, 0.41611626744270325, 0.07889215648174286, -0.40401220321655273, 0.08578308671712875]} +{"t": 8.4542, "q": [-0.13424547016620636, 0.006158080417662859, -0.006508461199700832, 0.3166903257369995, -0.1851058453321457, -0.010600988753139973, -0.07852788269519806, -0.03315955027937889, 0.01311066560447216, 0.33135688304901123, -0.2685341238975525, 0.024861017242074013, 0.006120096426457167, 0.0006636384059675038, 0.024763640016317368, 0.10878081619739532, 0.11848803609609604, -0.08279900997877121, 1.1008949279785156, -0.008868326433002949, -0.001330249011516571, 0.047505468130111694, -0.36496758460998535, -0.22046180069446564, -0.330357164144516, 0.4159484803676605, 0.0791797786951065, -0.4042518734931946, 0.08734103292226791]} +{"t": 8.4711, "q": [-0.1343221664428711, 0.0061836461536586285, -0.006521853152662516, 0.3167499899864197, -0.1851058453321457, -0.010600988753139973, -0.0785108432173729, -0.033125463873147964, 0.013030314818024635, 0.33134835958480835, -0.268538236618042, 0.024853842332959175, 0.006334366742521524, 0.0006711523164995015, 0.024825436994433403, 0.10868494212627411, 0.11844009906053543, -0.08278702944517136, 1.1012065410614014, -0.008832373656332493, -0.001330249011516571, 0.047505468130111694, -0.36529117822647095, -0.22046180069446564, -0.3301054835319519, 0.41579270362854004, 0.0791558101773262, -0.4045155346393585, 0.08913866430521011]} +{"t": 8.4878, "q": [-0.13438183069229126, 0.0061836461536586285, -0.006575420964509249, 0.3167926073074341, -0.18510164320468903, -0.010608069598674774, -0.0785108432173729, -0.033116940408945084, 0.012949963100254536, 0.33134835958480835, -0.2685256600379944, 0.024846522137522697, 0.006602204404771328, 0.0005957361427135766, 0.02487308159470558, 0.1086370050907135, 0.11842811107635498, -0.08279900997877121, 1.1013742685317993, -0.008856342174112797, -0.001330249011516571, 0.047505468130111694, -0.36554282903671265, -0.22046180069446564, -0.33004555106163025, 0.41576871275901794, 0.07905993610620499, -0.4047672152519226, 0.09043296426534653]} +{"t": 8.5045, "q": [-0.134458526968956, 0.006200690288096666, -0.006655772216618061, 0.31685224175453186, -0.18510164320468903, -0.010608069598674774, -0.07849379628896713, -0.033116940408945084, 0.012883003801107407, 0.33135688304901123, -0.2685341238975525, 0.024861017242074013, 0.006829866673797369, 0.0005580240394920111, 0.02490641176700592, 0.1085890680551529, 0.11839216202497482, -0.08279900997877121, 1.1015180349349976, -0.0088803106918931, -0.0013542174128815532, 0.047517452389001846, -0.3658064901828766, -0.22044982016086578, -0.32912278175354004, 0.41574475169181824, 0.07890413701534271, -0.4049709439277649, 0.0920628160238266]} +{"t": 8.5214, "q": [-0.13452669978141785, 0.006166602019220591, -0.006709339562803507, 0.3168778121471405, -0.18510164320468903, -0.010608069598674774, -0.07849379628896713, -0.033125463873147964, 0.012789260596036911, 0.33135688304901123, -0.2685341238975525, 0.024861017242074013, 0.007285191211849451, 0.000512770377099514, 0.02494450844824314, 0.10844525694847107, 0.11842811107635498, -0.08281099796295166, 1.1015779972076416, -0.008832373656332493, -0.0013542174128815532, 0.047505468130111694, -0.36596229672431946, -0.2208932340145111, -0.32647424936294556, 0.4158526062965393, 0.07799334079027176, -0.40507879853248596, 0.09483117610216141]} +{"t": 8.5382, "q": [-0.13462896645069122, 0.006166602019220591, -0.0068030827678740025, 0.31693747639656067, -0.18509744107723236, -0.010615150444209576, -0.07843413949012756, -0.033116940408945084, 0.012708908878266811, 0.33134835958480835, -0.2685341238975525, 0.024861017242074013, 0.008088705129921436, 0.0004900991916656494, 0.02507290616631508, 0.10804977267980576, 0.11844009906053543, -0.08278702944517136, 1.101613998413086, -0.008832373656332493, -0.0013662016717717052, 0.047505468130111694, -0.3660701513290405, -0.2217920571565628, -0.3225913643836975, 0.4158286452293396, 0.07690277695655823, -0.4052225947380066, 0.09829461574554443]} +{"t": 8.5549, "q": [-0.13485054671764374, 0.006166602019220591, -0.006990569643676281, 0.31703972816467285, -0.185097336769104, -0.010600950568914413, -0.07843413949012756, -0.033116940408945084, 0.012561597861349583, 0.3313227891921997, -0.2685341238975525, 0.024861017242074013, 0.00906631350517273, 0.0004448142135515809, 0.025187145918607712, 0.10766627639532089, 0.11845207959413528, -0.08279900997877121, 1.101613998413086, -0.008832373656332493, -0.0013781859306618571, 0.047505468130111694, -0.3661300539970398, -0.222019761800766, -0.31878039240837097, 0.4160803258419037, 0.07498529553413391, -0.4052225947380066, 0.10313624143600464]} +{"t": 8.5717, "q": [-0.13508063554763794, 0.006132513750344515, -0.007231623865664005, 0.3171420097351074, -0.1850806176662445, -0.010643481276929379, -0.07842562347650528, -0.033116940408945084, 0.012427679263055325, 0.3313313126564026, -0.2685341238975525, 0.024861017242074013, 0.009695732034742832, 0.00031658311490900815, 0.02536337822675705, 0.10737866163253784, 0.11842811107635498, -0.08281099796295166, 1.101685881614685, -0.008832373656332493, -0.0014021543320268393, 0.04749348387122154, -0.366225928068161, -0.2220437228679657, -0.31508925557136536, 0.41666755080223083, 0.07086272537708282, -0.40518665313720703, 0.10900851339101791]} +{"t": 8.5884, "q": [-0.1354641318321228, 0.006106947083026171, -0.007633380591869354, 0.3171931505203247, -0.18506358563899994, -0.010643413290381432, -0.07844266295433044, -0.03309137374162674, 0.01225358434021473, 0.3312802016735077, -0.2685425877571106, 0.024875514209270477, 0.010499246418476105, 0.00013567847781814635, 0.025657903403043747, 0.10715095698833466, 0.11842811107635498, -0.08279900997877121, 1.1017217636108398, -0.008832373656332493, -0.0014381069922819734, 0.04748149961233139, -0.36628586053848267, -0.22198380529880524, -0.31087079644203186, 0.41676342487335205, 0.06374409049749374, -0.40515071153640747, 0.11488078534603119]} +{"t": 8.6051, "q": [-0.1358817219734192, 0.006055814679712057, -0.008088705129921436, 0.3172101676464081, -0.18506799638271332, -0.010664732195436954, -0.07840857654809952, -0.03308285027742386, 0.0121062733232975, 0.3310927152633667, -0.2685425877571106, 0.024875514209270477, 0.01143667846918106, -1.112538336246917e-16, 0.0258669201284647, 0.10699516534805298, 0.11844009906053543, -0.08278702944517136, 1.1017217636108398, -0.0088803106918931, -0.0014620755100622773, 0.04749348387122154, -0.3660701513290405, -0.22197182476520538, -0.30526217818260193, 0.41678738594055176, 0.05697300657629967, -0.40510275959968567, 0.11955463141202927]} +{"t": 8.6218, "q": [-0.13612033426761627, 0.0060046822763979435, -0.008436894044280052, 0.3172101676464081, -0.18505537509918213, -0.010685982182621956, -0.07839152961969376, -0.03304876387119293, 0.011865219101309776, 0.33093932271003723, -0.2685425877571106, 0.024875514209270477, 0.0121062733232975, -0.0001809046370908618, 0.02632295712828636, 0.10697119683027267, 0.11842811107635498, -0.08276306092739105, 1.1017457246780396, -0.008856342174112797, -0.0015819177497178316, 0.047505468130111694, -0.3654229938983917, -0.22248713672161102, -0.29777204990386963, 0.416883260011673, 0.050465572625398636, -0.4050188660621643, 0.12413260340690613]} +{"t": 8.6386, "q": [-0.13652940094470978, 0.005979115609079599, -0.008637772873044014, 0.3172016441822052, -0.1850595772266388, -0.010678902268409729, -0.07840005308389664, -0.03309137374162674, 0.011650948785245419, 0.33060693740844727, -0.26853835582733154, 0.02486826665699482, 0.012641949579119682, -0.00034673389745876193, 0.026731764897704124, 0.10704310238361359, 0.11844009906053543, -0.08276306092739105, 1.101853609085083, -0.008832373656332493, -0.0015579492319375277, 0.04749348387122154, -0.36432045698165894, -0.2229665070772171, -0.28813672065734863, 0.4184052646160126, 0.04139351472258568, -0.4045155346393585, 0.12934574484825134]} +{"t": 8.6553, "q": [-0.136887326836586, 0.005979115609079599, -0.008771691471338272, 0.31716758012771606, -0.18506379425525665, -0.010671812109649181, -0.07838300615549088, -0.03308285027742386, 0.011530422605574131, 0.33010414242744446, -0.2685425877571106, 0.024875514209270477, 0.013124058023095131, -0.00041457079350948334, 0.027297774329781532, 0.10701913386583328, 0.11840414255857468, -0.0827510729432106, 1.1018896102905273, -0.008868326433002949, -0.0015339808305725455, 0.047517452389001846, -0.3632059097290039, -0.22279873490333557, -0.2800833284854889, 0.4199032783508301, 0.03265701234340668, -0.40401220321655273, 0.1341514140367508]} +{"t": 8.6721, "q": [-0.1372963935136795, 0.005936504807323217, -0.0089190024882555, 0.3170738220214844, -0.1850595772266388, -0.010678902268409729, -0.0784171000123024, -0.033074330538511276, 0.011409895494580269, 0.3295331597328186, -0.2685425877571106, 0.024875514209270477, 0.013659733347594738, -0.0005199595470912755, 0.02789638750255108, 0.10687532275915146, 0.11844009906053543, -0.0827271044254303, 1.101913571357727, -0.008868326433002949, -0.0015699334908276796, 0.04748149961233139, -0.3624029755592346, -0.2227148413658142, -0.27212581038475037, 0.42108970880508423, 0.02274606004357338, -0.4037006199359894, 0.13810621201992035]} +{"t": 8.6888, "q": [-0.13750091195106506, 0.00589389493688941, -0.00906631350517273, 0.31698861718177795, -0.18505537509918213, -0.010685982182621956, -0.07838300615549088, -0.03309137374162674, 0.011209016665816307, 0.3291240930557251, -0.26853835582733154, 0.02486826665699482, 0.01446324773132801, -0.0006403592997230589, 0.028428303077816963, 0.1065157949924469, 0.11840414255857468, -0.08273909240961075, 1.1018896102905273, -0.008892294950783253, -0.0015819177497178316, 0.047517452389001846, -0.36204344034194946, -0.2226908802986145, -0.2645038366317749, 0.42178481817245483, 0.011756525374948978, -0.40362870693206787, 0.14315156638622284]} +{"t": 8.7055, "q": [-0.1375350058078766, 0.005766062531620264, -0.009039529599249363, 0.3169204294681549, -0.18506379425525665, -0.010671812109649181, -0.07835744321346283, -0.0331084169447422, 0.011115273460745811, 0.3289025127887726, -0.26853835582733154, 0.02486826665699482, 0.015400679782032967, -0.0006930949748493731, 0.029002463445067406, 0.10618023574352264, 0.11846406757831573, -0.08273909240961075, 1.1018896102905273, -0.008868326433002949, -0.0015939020086079836, 0.047505468130111694, -0.36197152733802795, -0.22272682189941406, -0.2538977861404419, 0.4220125079154968, 0.0023009711876511574, -0.4036406874656677, 0.14824487268924713]} +{"t": 8.7222, "q": [-0.1375264823436737, 0.005638231057673693, -0.009026138111948967, 0.3167329430580139, -0.18506799638271332, -0.010664732195436954, -0.07834039628505707, -0.0331084169447422, 0.011115273460745811, 0.3285360634326935, -0.26852989196777344, 0.024853769689798355, 0.016230978071689606, -0.0007834989810362458, 0.02931562066078186, 0.10586864501237869, 0.11839216202497482, -0.08276306092739105, 1.1019254922866821, -0.008892294950783253, -0.0015819177497178316, 0.047505468130111694, -0.3619835376739502, -0.22265492379665375, -0.24464596807956696, 0.42206043004989624, -0.007789746392518282, -0.4036526679992676, 0.15418903529644012]} +{"t": 8.739, "q": [-0.137577623128891, 0.005510399583727121, -0.009026138111948967, 0.3164772689342499, -0.18506799638271332, -0.010664732195436954, -0.0782807469367981, -0.03314250707626343, 0.011061705648899078, 0.32813552021980286, -0.26852989196777344, 0.024853769689798355, 0.01730232872068882, -0.0008437682990916073, 0.02961929701268673, 0.10508967190980911, 0.11839216202497482, -0.08276306092739105, 1.1019494533538818, -0.008856342174112797, -0.0015219965716823936, 0.047505468130111694, -0.3619116246700287, -0.22265492379665375, -0.2346511334180832, 0.4221922755241394, -0.018036259338259697, -0.40366464853286743, 0.15815581381320953]} +{"t": 8.7557, "q": [-0.13760317862033844, 0.0054507446475327015, -0.009026138111948967, 0.31640058755874634, -0.18506799638271332, -0.010664732195436954, -0.07816995680332184, -0.033185116946697235, 0.010954570956528187, 0.3278457820415497, -0.2685467004776001, 0.02486833930015564, 0.01850759983062744, -0.0009944416815415025, 0.03001784346997738, 0.10385529696941376, 0.11836819350719452, -0.0827750414609909, 1.1020333766937256, -0.008856342174112797, -0.0015100124292075634, 0.047505468130111694, -0.36189964413642883, -0.2226429432630539, -0.2264898717403412, 0.42227616906166077, -0.028498487547039986, -0.4036526679992676, 0.16294951736927032]} +{"t": 8.7724, "q": [-0.1376713663339615, 0.005339957308024168, -0.009079704992473125, 0.31631535291671753, -0.18506379425525665, -0.010671812109649181, -0.07808473706245422, -0.03321920707821846, 0.010753692127764225, 0.32762420177459717, -0.2685425877571106, 0.024875514209270477, 0.019578952342271805, -0.00125784776173532, 0.030486607924103737, 0.10254901647567749, 0.11836819350719452, -0.08273909240961075, 1.1021173000335693, -0.008832373656332493, -0.0014500912511721253, 0.047517452389001846, -0.36194756627082825, -0.22278675436973572, -0.21560819447040558, 0.42273154854774475, -0.03917643055319786, -0.40362870693206787, 0.16696423292160034]} +{"t": 8.7894, "q": [-0.1377139687538147, 0.005271779838949442, -0.009093097411096096, 0.3161875307559967, -0.18507219851016998, -0.010657651349902153, -0.07810177654027939, -0.033244773745536804, 0.010686732828617096, 0.32740262150764465, -0.2685341238975525, 0.024861017242074013, 0.02069047838449478, -0.0014083146816119552, 0.030865728855133057, 0.10143448412418365, 0.11836819350719452, -0.08279900997877121, 1.1022850275039673, -0.008832373656332493, -0.0014141385909169912, 0.04749348387122154, -0.36192360520362854, -0.22344587743282318, -0.20605677366256714, 0.4230910837650299, -0.049506835639476776, -0.40366464853286743, 0.17137442529201508]} +{"t": 8.8061, "q": [-0.13772249221801758, 0.005297346506267786, -0.009026138111948967, 0.3161108195781708, -0.18507219851016998, -0.010657651349902153, -0.0780932605266571, -0.03326181694865227, 0.010726908221840858, 0.32703617215156555, -0.26853013038635254, 0.024882616475224495, 0.022150196135044098, -0.0014533590292558074, 0.0312072541564703, 0.10012820363044739, 0.11839216202497482, -0.08281099796295166, 1.1024408340454102, -0.008856342174112797, -0.0014261228498071432, 0.04749348387122154, -0.36171987652778625, -0.22348183393478394, -0.19752399623394012, 0.4230431616306305, -0.05965747311711311, -0.4036886394023895, 0.1759643852710724]} +{"t": 8.8228, "q": [-0.13769692182540894, 0.005314390640705824, -0.008852043189108372, 0.3160170912742615, -0.18508070707321167, -0.010657689534127712, -0.0780932605266571, -0.03322772681713104, 0.010753692127764225, 0.32667824625968933, -0.2685174345970154, 0.024860871955752373, 0.02419915609061718, -0.0014909305609762669, 0.03140171989798546, 0.09877398610115051, 0.11834422498941422, -0.08278702944517136, 1.1025607585906982, -0.008868326433002949, -0.0014141385909169912, 0.04749348387122154, -0.36130040884017944, -0.22344587743282318, -0.18960243463516235, 0.4228873550891876, -0.07051517814397812, -0.40384441614151, 0.17989520728588104]} +{"t": 8.8395, "q": [-0.13769692182540894, 0.0053484789095819, -0.008771691471338272, 0.3160000443458557, -0.18507640063762665, -0.010650570504367352, -0.07801655679941177, -0.03321920707821846, 0.010767084546387196, 0.32634589076042175, -0.26852577924728394, 0.024860944598913193, 0.026007061824202538, -0.0014758346369490027, 0.03147764876484871, 0.0971800833940506, 0.11816445738077164, -0.08282297849655151, 1.1026805639266968, -0.008892294950783253, -0.0013662016717717052, 0.04749348387122154, -0.3608570098876953, -0.2236616015434265, -0.18139323592185974, 0.42295926809310913, -0.08043812215328217, -0.40388038754463196, 0.18411365151405334]} +{"t": 8.8563, "q": [-0.13772249221801758, 0.005331434775143862, -0.008825259283185005, 0.3159148097038269, -0.1850806176662445, -0.010643481276929379, -0.07792281359434128, -0.03323625028133392, 0.010767084546387196, 0.326141357421875, -0.2685258984565735, 0.024875367060303688, 0.0275605209171772, -0.001460763276554644, 0.031496644020080566, 0.09529855847358704, 0.11805660277605057, -0.08284694701433182, 1.1033157110214233, -0.008832373656332493, -0.0012463594321161509, 0.04748149961233139, -0.3600900173187256, -0.22486001253128052, -0.17100290954113007, 0.4230671226978302, -0.09100820869207382, -0.40384441614151, 0.18842796981334686]} +{"t": 8.873, "q": [-0.13772249221801758, 0.00532291317358613, -0.00898596178740263, 0.31597447395324707, -0.18508492410182953, -0.01065060030668974, -0.07776942104101181, -0.033244773745536804, 0.01057959720492363, 0.32594534754753113, -0.2685258984565735, 0.024875367060303688, 0.029368426650762558, -0.0014080196851864457, 0.03154890239238739, 0.09339306503534317, 0.11788882315158844, -0.08289488404989243, 1.10429847240448, -0.008832373656332493, -0.0011025486746802926, 0.04748149961233139, -0.3590593636035919, -0.22555510699748993, -0.16237427294254303, 0.42317497730255127, -0.10065551102161407, -0.40384441614151, 0.19446802139282227]} +{"t": 8.8897, "q": [-0.13776510953903198, 0.005314390640705824, -0.009160056710243225, 0.3159659504890442, -0.18507640063762665, -0.010650570504367352, -0.0777268037199974, -0.03321920707821846, 0.010472462512552738, 0.3257749080657959, -0.268530011177063, 0.02486819215118885, 0.030962062999606133, -0.0013553128810599446, 0.0315915122628212, 0.09211075305938721, 0.11786485463380814, -0.08301472663879395, 1.1053171157836914, -0.008856342174112797, -0.0010905645322054625, 0.04746951535344124, -0.35805270075798035, -0.22547121345996857, -0.15523166954517365, 0.4231869578361511, -0.11077019572257996, -0.40388038754463196, 0.19916583597660065]} +{"t": 8.9064, "q": [-0.13782475888729095, 0.00532291317358613, -0.00932075921446085, 0.3160000443458557, -0.18507662415504456, -0.010678987950086594, -0.07765863090753555, -0.03321920707821846, 0.010218016803264618, 0.32556185126304626, -0.2685258984565735, 0.024875367060303688, 0.03206019848585129, -0.0013402537442743778, 0.03161044791340828, 0.0911879688501358, 0.11776898056268692, -0.08306266367435455, 1.10617995262146, -0.008856342174112797, -0.0010426276130601764, 0.047457531094551086, -0.35697412490844727, -0.22519557178020477, -0.14769358932971954, 0.4232228994369507, -0.12243084609508514, -0.40388038754463196, 0.20345619320869446]} +{"t": 8.9232, "q": [-0.13786736130714417, 0.00532291317358613, -0.009481461718678474, 0.31599152088165283, -0.18507662415504456, -0.010678987950086594, -0.0775478407740593, -0.03323625028133392, 0.010124272666871548, 0.32524654269218445, -0.268530011177063, 0.02486819215118885, 0.03228786215186119, -0.0013251947239041328, 0.03161991760134697, 0.09111606329679489, 0.11766112595796585, -0.0830267146229744, 1.1064436435699463, -0.008832373656332493, -0.0010785802733153105, 0.047445546835660934, -0.35593149065971375, -0.22517161071300507, -0.13905297219753265, 0.42340266704559326, -0.13218601047992706, -0.4038683772087097, 0.2067878097295761]} +{"t": 8.9399, "q": [-0.1379014551639557, 0.00532291317358613, -0.009481461718678474, 0.31598299741744995, -0.18507219851016998, -0.010657651349902153, -0.07750523090362549, -0.03321068361401558, 0.010097489692270756, 0.32474371790885925, -0.2685341238975525, 0.024861017242074013, 0.03222090005874634, -0.0013176650973036885, 0.031624648720026016, 0.09111606329679489, 0.11755326390266418, -0.083074651658535, 1.1067790985107422, -0.008856342174112797, -0.0011265171924605966, 0.047445546835660934, -0.35408592224121094, -0.22542327642440796, -0.1276080310344696, 0.4234865605831146, -0.1429118812084198, -0.40388038754463196, 0.21109014749526978]} +{"t": 8.9566, "q": [-0.13791850209236145, 0.0054081338457763195, -0.009494854137301445, 0.31597447395324707, -0.1850724220275879, -0.01068606786429882, -0.07735183089971542, -0.033193640410900116, 0.010097489692270756, 0.3243943154811859, -0.268530011177063, 0.02486819215118885, 0.03220750764012337, -0.0013176650973036885, 0.031624648720026016, 0.0911640003323555, 0.11751731485128403, -0.08306266367435455, 1.1069709062576294, -0.008916263468563557, -0.0012104067718610168, 0.047445546835660934, -0.3518208861351013, -0.22523152828216553, -0.11915915459394455, 0.4234386384487152, -0.15495602786540985, -0.4040002226829529, 0.21557223796844482]} +{"t": 8.9733, "q": [-0.13804633915424347, 0.005425177980214357, -0.009601988829672337, 0.3159574270248413, -0.18506799638271332, -0.010664732195436954, -0.07729218155145645, -0.033176593482494354, 0.010030529461801052, 0.3241812586784363, -0.2685215473175049, 0.024853697046637535, 0.032328035682439804, -0.0013176650973036885, 0.031624648720026016, 0.09115201979875565, 0.11746937781572342, -0.08300274610519409, 1.107162594795227, -0.008856342174112797, -0.0011864382540807128, 0.04743356257677078, -0.3485252261161804, -0.22496788203716278, -0.11214838176965714, 0.42340266704559326, -0.16556207835674286, -0.40413203835487366, 0.2205217331647873]} +{"t": 8.9901, "q": [-0.13808894157409668, 0.005399612244218588, -0.009856435470283031, 0.3159574270248413, -0.18507219851016998, -0.010657651349902153, -0.07716434448957443, -0.033193640410900116, 0.009776083752512932, 0.3239852488040924, -0.2685256600379944, 0.024846522137522697, 0.03239499405026436, -0.0013176650973036885, 0.031624648720026016, 0.09103217720985413, 0.11750532686710358, -0.08306266367435455, 1.1072944402694702, -0.008892294950783253, -0.0011624698527157307, 0.047445546835660934, -0.34482210874557495, -0.22484803199768066, -0.10359164327383041, 0.4234865605831146, -0.17644375562667847, -0.40417999029159546, 0.22400914132595062]} +{"t": 9.0068, "q": [-0.13806337118148804, 0.005374045576900244, -0.009816259145736694, 0.3159574270248413, -0.18506799638271332, -0.010664732195436954, -0.07718991488218307, -0.033193640410900116, 0.009802867658436298, 0.3238915205001831, -0.2685256600379944, 0.024846522137522697, 0.032314643263816833, -0.0012498992728069425, 0.03165778890252113, 0.09104415774345398, 0.11746937781572342, -0.08301472663879395, 1.1075102090835571, -0.008856342174112797, -0.0011984225129708648, 0.04743356257677078, -0.34108301997184753, -0.22509969770908356, -0.09336909651756287, 0.42439737915992737, -0.18598319590091705, -0.4041440188884735, 0.22798790037631989]} +{"t": 9.0235, "q": [-0.1380292922258377, 0.005399612244218588, -0.009682340547442436, 0.3159574270248413, -0.18507219851016998, -0.010657651349902153, -0.07723252475261688, -0.03321920707821846, 0.009869826957583427, 0.32378074526786804, -0.2685256600379944, 0.024846522137522697, 0.032167334109544754, -0.0010240130359306931, 0.031809285283088684, 0.09094828367233276, 0.11744540929794312, -0.0830506831407547, 1.1077618598937988, -0.008832373656332493, -0.0012343751732259989, 0.04743356257677078, -0.3374757766723633, -0.22514763474464417, -0.08530371636152267, 0.42515236139297485, -0.19571438431739807, -0.40415599942207336, 0.23146332800388336]} +{"t": 9.0402, "q": [-0.13807189464569092, 0.0054081338457763195, -0.009709124453365803, 0.3159574270248413, -0.18506799638271332, -0.010664732195436954, -0.077224001288414, -0.033185116946697235, 0.009869826957583427, 0.3236187994480133, -0.2685215473175049, 0.024853697046637535, 0.03199324011802673, -0.0007604814018122852, 0.03199391812086105, 0.09072058647871017, 0.11739747226238251, -0.08303869515657425, 1.1080374717712402, -0.008832373656332493, -0.0012104067718610168, 0.047445546835660934, -0.332753986120224, -0.22489596903324127, -0.07837682962417603, 0.42554786801338196, -0.20617660880088806, -0.40417999029159546, 0.23526231944561005]} +{"t": 9.057, "q": [-0.1380804181098938, 0.005374045576900244, -0.009722515940666199, 0.3159659504890442, -0.1850724220275879, -0.01068606786429882, -0.077224001288414, -0.033193640410900116, 0.009843043051660061, 0.3234739303588867, -0.2685256600379944, 0.024846522137522697, 0.03206019848585129, -0.0006023609894327819, 0.032121844589710236, 0.09037303924560547, 0.11728961020708084, -0.08306266367435455, 1.1083011627197266, -0.008856342174112797, -0.0011984225129708648, 0.04742157831788063, -0.3275049030780792, -0.22470422089099884, -0.07293599843978882, 0.42559579014778137, -0.216399148106575, -0.4042638838291168, 0.2391212433576584]} +{"t": 9.0737, "q": [-0.13804633915424347, 0.0053655230440199375, -0.009709124453365803, 0.31598299741744995, -0.18508082628250122, -0.010671907104551792, -0.07723252475261688, -0.03321920707821846, 0.009869826957583427, 0.3234483599662781, -0.2685174345970154, 0.024860871955752373, 0.03189949691295624, -0.0004743587924167514, 0.03221191093325615, 0.09039700776338577, 0.11721770465373993, -0.08303869515657425, 1.1084569692611694, -0.008856342174112797, -0.0012343751732259989, 0.04743356257677078, -0.3229389190673828, -0.22463232278823853, -0.0670996755361557, 0.42627888917922974, -0.22608241438865662, -0.4042638838291168, 0.2416619062423706]} +{"t": 9.0906, "q": [-0.13800372183322906, 0.005374045576900244, -0.009575205855071545, 0.3159574270248413, -0.18506799638271332, -0.010664732195436954, -0.07727513462305069, -0.0332021601498127, 0.00991000235080719, 0.32337167859077454, -0.268530011177063, 0.02486819215118885, 0.03147095441818237, -0.00021082482999190688, 0.032387297600507736, 0.09043296426534653, 0.11715778708457947, -0.0830506831407547, 1.1087925434112549, -0.008832373656332493, -0.0012223910307511687, 0.04743356257677078, -0.3187204599380493, -0.22454842925071716, -0.05993311107158661, 0.42697396874427795, -0.23415978252887726, -0.4042638838291168, 0.24269254505634308]} +{"t": 9.1073, "q": [-0.13796110451221466, 0.005374045576900244, -0.009441286325454712, 0.31593185663223267, -0.18507662415504456, -0.010678987950086594, -0.07732626795768738, -0.033193640410900116, 0.009896610863506794, 0.32332906126976013, -0.268530011177063, 0.02486819215118885, 0.03108258917927742, 0.00021082717285025865, 0.03266223147511482, 0.09034907072782516, 0.11703794449567795, -0.08303869515657425, 1.1090561151504517, -0.008868326433002949, -0.0012583436910063028, 0.04743356257677078, -0.31419044733047485, -0.22445255517959595, -0.05291035398840904, 0.4270099401473999, -0.24414263665676117, -0.40428784489631653, 0.24319587647914886]} +{"t": 9.124, "q": [-0.13796962797641754, 0.005374045576900244, -0.00940111093223095, 0.31594038009643555, -0.18507662415504456, -0.010678987950086594, -0.07733479142189026, -0.033193640410900116, 0.009883219376206398, 0.32332053780555725, -0.2685174345970154, 0.024860871955752373, 0.030814751982688904, 0.0006324815331026912, 0.03292768821120262, 0.0899655818939209, 0.1170019879937172, -0.08318250626325607, 1.1092838048934937, -0.0088803106918931, -0.0012223910307511687, 0.04743356257677078, -0.30927690863609314, -0.22435668110847473, -0.04749348387122154, 0.42695000767707825, -0.2533225417137146, -0.40438371896743774, 0.2437831163406372]} +{"t": 9.1408, "q": [-0.13796962797641754, 0.0053655230440199375, -0.00940111093223095, 0.31594038009643555, -0.18506799638271332, -0.010664732195436954, -0.07732626795768738, -0.03321920707821846, 0.009963570162653923, 0.3232523500919342, -0.2685215473175049, 0.024853697046637535, 0.030801359564065933, 0.0008959122933447361, 0.033083636313676834, 0.08960605412721634, 0.11691810190677643, -0.08321846276521683, 1.109379768371582, -0.008856342174112797, -0.0011984225129708648, 0.04740959405899048, -0.30423155426979065, -0.22433270514011383, -0.04265185818076134, 0.4268421530723572, -0.2616395950317383, -0.40445563197135925, 0.24446621537208557]} +{"t": 9.1575, "q": [-0.13796110451221466, 0.0053655230440199375, -0.009414502419531345, 0.3159489035606384, -0.18508502840995789, -0.01066482625901699, -0.07730069756507874, -0.03321920707821846, 0.00991000235080719, 0.3232523500919342, -0.2685174345970154, 0.024860871955752373, 0.030801359564065933, 0.0011292006820440292, 0.03322049602866173, 0.089342400431633, 0.11688214540481567, -0.08321846276521683, 1.10954749584198, -0.008856342174112797, -0.0011504855938255787, 0.04740959405899048, -0.2997254729270935, -0.22423683106899261, -0.038912780582904816, 0.42690208554267883, -0.27120301127433777, -0.4044676125049591, 0.24511335790157318]} +{"t": 9.1742, "q": [-0.13799519836902618, 0.0053484789095819, -0.009441286325454712, 0.31594038009643555, -0.18507230281829834, -0.010671851225197315, -0.07734331488609314, -0.03321068361401558, 0.00991000235080719, 0.32323530316352844, -0.2685258984565735, 0.024875367060303688, 0.030814751982688904, 0.0013097991468384862, 0.033352699130773544, 0.08928247541189194, 0.11683420836925507, -0.08325441181659698, 1.1096673011779785, -0.008856342174112797, -0.0012104067718610168, 0.04739760980010033, -0.2951594889163971, -0.22420088946819305, -0.035832833498716354, 0.4269380271434784, -0.279328316450119, -0.40447959303855896, 0.245856374502182]} +{"t": 9.1911, "q": [-0.13800372183322906, 0.005391089711338282, -0.009414502419531345, 0.3159574270248413, -0.18507219851016998, -0.010657651349902153, -0.0773603543639183, -0.03321920707821846, 0.009963570162653923, 0.32317566871643066, -0.2685256600379944, 0.024846522137522697, 0.030828144401311874, 0.0014753558207303286, 0.03345658630132675, 0.08927049487829208, 0.11676230281591415, -0.08327838033437729, 1.10989511013031, -0.008856342174112797, -0.0012343751732259989, 0.04739760980010033, -0.29097700119018555, -0.22415295243263245, -0.03386741876602173, 0.42687809467315674, -0.2879210114479065, -0.4045394957065582, 0.24639567732810974]} +{"t": 9.2079, "q": [-0.13797815144062042, 0.005374045576900244, -0.009414502419531345, 0.3159489035606384, -0.18508070707321167, -0.010657689534127712, -0.07733479142189026, -0.03321920707821846, 0.009950178675353527, 0.32313305139541626, -0.2685174345970154, 0.024860871955752373, 0.03076118417084217, 0.001558132003992796, 0.03350857272744179, 0.0893903374671936, 0.11670238524675369, -0.08330234885215759, 1.1101826429367065, -0.008916263468563557, -0.0012343751732259989, 0.047385625541210175, -0.2868424355983734, -0.22409303486347198, -0.03184208646416664, 0.4268661141395569, -0.29554298520088196, -0.40458744764328003, 0.24692296981811523]} +{"t": 9.2246, "q": [-0.1379866749048233, 0.005382567178457975, -0.009414502419531345, 0.3159574270248413, -0.18508082628250122, -0.010671907104551792, -0.07733479142189026, -0.0332021601498127, 0.009963570162653923, 0.32313305139541626, -0.2685258984565735, 0.024875367060303688, 0.030520129948854446, 0.00166348647326231, 0.03357473760843277, 0.0893903374671936, 0.11667841672897339, -0.08320647478103638, 1.1103863716125488, -0.008832373656332493, -0.001330249011516571, 0.04740959405899048, -0.282875657081604, -0.22409303486347198, -0.02865428291261196, 0.4268900752067566, -0.30185866355895996, -0.4045754671096802, 0.24741433560848236]} +{"t": 9.2415, "q": [-0.13797815144062042, 0.005374045576900244, -0.00940111093223095, 0.31594038009643555, -0.185076504945755, -0.010664770379662514, -0.0773603543639183, -0.03321068361401558, 0.00999035406857729, 0.32313305139541626, -0.268530011177063, 0.02486819215118885, 0.030158549547195435, 0.0017914169002324343, 0.033655084669589996, 0.08940231800079346, 0.11667841672897339, -0.08325441181659698, 1.110578179359436, -0.008832373656332493, -0.001294296351261437, 0.04739760980010033, -0.2795799970626831, -0.22409303486347198, -0.024843299761414528, 0.4268900752067566, -0.30819833278656006, -0.40455150604248047, 0.24783377349376678]} +{"t": 9.2582, "q": [-0.1379440724849701, 0.005391089711338282, -0.00933415163308382, 0.3159489035606384, -0.18507640063762665, -0.010650570504367352, -0.0773603543639183, -0.0332021601498127, 0.01000374648720026, 0.32314157485961914, -0.2685174345970154, 0.024860871955752373, 0.02974339947104454, 0.0019720287527889013, 0.033759038895368576, 0.08942628651857376, 0.11670238524675369, -0.08324243128299713, 1.1106860637664795, -0.008832373656332493, -0.001282312092371285, 0.04739760980010033, -0.2763921916484833, -0.22466826438903809, -0.02033722959458828, 0.4268421530723572, -0.31453797221183777, -0.4045994281768799, 0.2481813132762909]} +{"t": 9.2749, "q": [-0.1379014551639557, 0.0054507446475327015, -0.009240408428013325, 0.3159489035606384, -0.18508070707321167, -0.010657689534127712, -0.07735183089971542, -0.033193640410900116, 0.00999035406857729, 0.32314157485961914, -0.26851731538772583, 0.024846447631716728, 0.02938181906938553, 0.0020247059874236584, 0.03379211947321892, 0.08935438096523285, 0.11671437323093414, -0.08324243128299713, 1.1107579469680786, -0.008868326433002949, -0.0012223910307511687, 0.04739760980010033, -0.27383953332901, -0.22468025982379913, -0.017532922327518463, 0.4267342984676361, -0.3182051479816437, -0.40463536977767944, 0.24851687252521515]} +{"t": 9.2916, "q": [-0.13788440823554993, 0.005459266249090433, -0.009227016009390354, 0.31593185663223267, -0.18508082628250122, -0.010671907104551792, -0.07735183089971542, -0.03321920707821846, 0.01000374648720026, 0.323150098323822, -0.26851731538772583, 0.024846447631716728, 0.029194332659244537, 0.002092450624331832, 0.0337967649102211, 0.08924652636051178, 0.11671437323093414, -0.08330234885215759, 1.1108298301696777, -0.008892294950783253, -0.0012104067718610168, 0.047385625541210175, -0.27131086587905884, -0.2244885116815567, -0.01587909832596779, 0.4263148307800293, -0.3220401108264923, -0.40473124384880066, 0.2485048919916153]} +{"t": 9.3084, "q": [-0.13787588477134705, 0.005476311314851046, -0.009227016009390354, 0.315906286239624, -0.18508924543857574, -0.010657737031579018, -0.07734331488609314, -0.033193640410900116, 0.01000374648720026, 0.32317566871643066, -0.2685174345970154, 0.024860871955752373, 0.02908719703555107, 0.002115043345838785, 0.03377305343747139, 0.08915065228939056, 0.11671437323093414, -0.08326639980077744, 1.110865831375122, -0.00882038939744234, -0.0011984225129708648, 0.04739760980010033, -0.2689260244369507, -0.22439263761043549, -0.014273212291300297, 0.4256197512149811, -0.3250121772289276, -0.40498292446136475, 0.24851687252521515]} +{"t": 9.3252, "q": [-0.13787588477134705, 0.005510399583727121, -0.009240408428013325, 0.31588923931121826, -0.185076504945755, -0.010664770379662514, -0.0773177444934845, -0.033185116946697235, 0.01000374648720026, 0.3231586217880249, -0.2685256600379944, 0.024846522137522697, 0.029033629223704338, 0.0020924757700413465, 0.033739931881427765, 0.08918660134077072, 0.11671437323093414, -0.08324243128299713, 1.1109377145767212, -0.00882038939744234, -0.0012223910307511687, 0.04739760980010033, -0.266696959733963, -0.22394922375679016, -0.013218600302934647, 0.42520031332969666, -0.3283917307853699, -0.4051626920700073, 0.24842099845409393]} +{"t": 9.3419, "q": [-0.13792702555656433, 0.005544487852603197, -0.009240408428013325, 0.31588923931121826, -0.18508924543857574, -0.010657737031579018, -0.07733479142189026, -0.033193640410900116, 0.010030529461801052, 0.3231245279312134, -0.26852142810821533, 0.02483927272260189, 0.02888631820678711, 0.0021526911295950413, 0.03374932333827019, 0.08923453837633133, 0.11671437323093414, -0.08326639980077744, 1.1110814809799194, -0.008856342174112797, -0.0012104067718610168, 0.04739760980010033, -0.26531875133514404, -0.22212761640548706, -0.012391689233481884, 0.4249846041202545, -0.33119603991508484, -0.40533047914505005, 0.2482532262802124]} +{"t": 9.3586, "q": [-0.13790997862815857, 0.005527443718165159, -0.009227016009390354, 0.3159233331680298, -0.18507662415504456, -0.010678987950086594, -0.07733479142189026, -0.033176593482494354, 0.01000374648720026, 0.3231671452522278, -0.26851320266723633, 0.024853622540831566, 0.02891310304403305, 0.0022053683642297983, 0.03378240764141083, 0.08923453837633133, 0.11663047969341278, -0.08327838033437729, 1.1111174821853638, -0.008856342174112797, -0.0012104067718610168, 0.04739760980010033, -0.2643240690231323, -0.22000640630722046, -0.012116051279008389, 0.42475688457489014, -0.3322027325630188, -0.40548625588417053, 0.2479775846004486]} +{"t": 9.3754, "q": [-0.13791850209236145, 0.005527443718165159, -0.009240408428013325, 0.31594038009643555, -0.18508502840995789, -0.01066482625901699, -0.07733479142189026, -0.033176593482494354, 0.01000374648720026, 0.32317566871643066, -0.2685215473175049, 0.024853697046637535, 0.029033629223704338, 0.0022430159151554108, 0.03375867381691933, 0.08921056985855103, 0.11661849915981293, -0.08321846276521683, 1.1111654043197632, -0.008832373656332493, -0.001270327833481133, 0.047385625541210175, -0.2634012997150421, -0.2181967943906784, -0.012008193880319595, 0.424541175365448, -0.33221471309661865, -0.4056420624256134, 0.24754615128040314]} +{"t": 9.3921, "q": [-0.1378929316997528, 0.005467788781970739, -0.009227016009390354, 0.31593185663223267, -0.18508924543857574, -0.010657737031579018, -0.07730069756507874, -0.03321920707821846, 0.010017137974500656, 0.3231927156448364, -0.2685256600379944, 0.024846522137522697, 0.0290738046169281, 0.002303249668329954, 0.0337207056581974, 0.08924652636051178, 0.11661849915981293, -0.08330234885215759, 1.1112133264541626, -0.008868326433002949, -0.0012583436910063028, 0.04739760980010033, -0.2625623941421509, -0.21651899814605713, -0.011996209621429443, 0.4233906865119934, -0.33219075202941895, -0.4060615003108978, 0.24689900875091553]} +{"t": 9.4088, "q": [-0.1378929316997528, 0.005442222114652395, -0.009240408428013325, 0.31593185663223267, -0.18508924543857574, -0.010657737031579018, -0.07724104821681976, -0.03321068361401558, 0.010057313367724419, 0.3232523500919342, -0.26851320266723633, 0.024853622540831566, 0.029006846249103546, 0.0023107833694666624, 0.033706486225128174, 0.08930644392967224, 0.11660651117563248, -0.08330234885215759, 1.111249327659607, -0.008892294950783253, -0.0012463594321161509, 0.04739760980010033, -0.26199913024902344, -0.21444572508335114, -0.01197224110364914, 0.42220425605773926, -0.33184319734573364, -0.40675657987594604, 0.24571256339550018]} +{"t": 9.4256, "q": [-0.13786736130714417, 0.005399612244218588, -0.009173448197543621, 0.3159233331680298, -0.18508492410182953, -0.01065060030668974, -0.07724104821681976, -0.0332021601498127, 0.01007070578634739, 0.3232864439487457, -0.2685089707374573, 0.024846356362104416, 0.028980061411857605, 0.0023107833694666624, 0.033706486225128174, 0.08923453837633133, 0.11658254265785217, -0.08330234885215759, 1.1112972497940063, -0.008832373656332493, -0.0012223910307511687, 0.04737364128232002, -0.26144784688949585, -0.21231253445148468, -0.01197224110364914, 0.42150917649269104, -0.33159151673316956, -0.4072958827018738, 0.24416659772396088]} +{"t": 9.4423, "q": [-0.1379014551639557, 0.005357001442462206, -0.00906631350517273, 0.3158722221851349, -0.18508924543857574, -0.010657737031579018, -0.07724957168102264, -0.03323625028133392, 0.010084097273647785, 0.3232864439487457, -0.2685174345970154, 0.024860871955752373, 0.028953278437256813, 0.002348426729440689, 0.03369222953915596, 0.08917462080717087, 0.11658254265785217, -0.0833263173699379, 1.1113091707229614, -0.008808405138552189, -0.0012343751732259989, 0.04737364128232002, -0.26082468032836914, -0.21019132435321808, -0.012379704974591732, 0.4211256802082062, -0.33136382699012756, -0.4076913595199585, 0.24178174138069153]} +{"t": 9.4591, "q": [-0.1379014551639557, 0.00532291317358613, -0.008959177881479263, 0.3158722221851349, -0.18509764969348907, -0.010643575340509415, -0.07724957168102264, -0.03322772681713104, 0.01000374648720026, 0.32331201434135437, -0.26851320266723633, 0.024853622540831566, 0.02889971062541008, 0.0024086670018732548, 0.03364478424191475, 0.08921056985855103, 0.11658254265785217, -0.08327838033437729, 1.1113451719284058, -0.0088803106918931, -0.0012104067718610168, 0.047385625541210175, -0.2614119052886963, -0.20887306332588196, -0.01344630029052496, 0.4202028810977936, -0.33078858256340027, -0.4079670011997223, 0.24000808596611023]} +{"t": 9.4758, "q": [-0.13786736130714417, 0.005297346506267786, -0.008892218582332134, 0.3159148097038269, -0.1850934475660324, -0.010650656186044216, -0.07724104821681976, -0.03327034041285515, 0.01000374648720026, 0.32331201434135437, -0.2685089707374573, 0.024846356362104416, 0.028805967420339584, 0.002483987482264638, 0.03354048728942871, 0.08935438096523285, 0.11660651117563248, -0.08329036831855774, 1.1113691329956055, -0.00882038939744234, -0.0012223910307511687, 0.04737364128232002, -0.2625144422054291, -0.20790234208106995, -0.014728613197803497, 0.41830939054489136, -0.33004555106163025, -0.40850627422332764, 0.2389654517173767]} +{"t": 9.4925, "q": [-0.1377991884946823, 0.00526325823739171, -0.008878827095031738, 0.315906286239624, -0.18509764969348907, -0.010643575340509415, -0.07720695436000824, -0.03325329348444939, 0.00999035406857729, 0.32331201434135437, -0.26851320266723633, 0.024853622540831566, 0.028471169993281364, 0.0024840461555868387, 0.03340788930654526, 0.08954612910747528, 0.11659453064203262, -0.08330234885215759, 1.1113810539245605, -0.008868326433002949, -0.0011984225129708648, 0.04737364128232002, -0.26382073760032654, -0.20640431344509125, -0.016598151996731758, 0.4158046841621399, -0.32887110114097595, -0.4094170928001404, 0.23749138414859772]} +{"t": 9.5093, "q": [-0.13773953914642334, 0.005305869039148092, -0.008825259283185005, 0.3159233331680298, -0.18509764969348907, -0.010643575340509415, -0.07718991488218307, -0.033244773745536804, 0.009976962581276894, 0.32337167859077454, -0.2685089707374573, 0.024846356362104416, 0.027814967557787895, 0.002484105760231614, 0.03327544406056404, 0.0896420031785965, 0.11663047969341278, -0.08324243128299713, 1.1114649772644043, -0.008832373656332493, -0.0012104067718610168, 0.04739760980010033, -0.2658460736274719, -0.20407937467098236, -0.018827218562364578, 0.4135396480560303, -0.3270135521888733, -0.41139447689056396, 0.2356458157300949]} +{"t": 9.526, "q": [-0.13767987489700317, 0.0053655230440199375, -0.008838650770485401, 0.3159233331680298, -0.18509764969348907, -0.010643575340509415, -0.07719843834638596, -0.03321920707821846, 0.01000374648720026, 0.32337167859077454, -0.2685174345970154, 0.024860871955752373, 0.026957886293530464, 0.002559439279139042, 0.033142898231744766, 0.08971390873193741, 0.11669040471315384, -0.08321846276521683, 1.1115728616714478, -0.008892294950783253, -0.0011744541116058826, 0.04737364128232002, -0.2682788670063019, -0.20081965625286102, -0.021092236042022705, 0.41139447689056396, -0.3234182894229889, -0.4150976240634918, 0.23323699831962585]} +{"t": 9.5428, "q": [-0.13755205273628235, 0.005382567178457975, -0.008825259283185005, 0.3159233331680298, -0.18509764969348907, -0.010643575340509415, -0.07718991488218307, -0.03321920707821846, 0.010030529461801052, 0.3234909772872925, -0.26851320266723633, 0.024853622540831566, 0.026315074414014816, 0.002702487865462899, 0.033081214874982834, 0.08977383375167847, 0.1167503222823143, -0.08325441181659698, 1.1116087436676025, -0.008832373656332493, -0.0011504855938255787, 0.04737364128232002, -0.27016037702560425, -0.19736820459365845, -0.023069633170962334, 0.40820667147636414, -0.31818118691444397, -0.418824702501297, 0.23062443733215332]} +{"t": 9.5595, "q": [-0.13750091195106506, 0.005484832916408777, -0.008838650770485401, 0.31593185663223267, -0.18508924543857574, -0.010657737031579018, -0.07718991488218307, -0.03321920707821846, 0.009976962581276894, 0.3235335946083069, -0.2685089707374573, 0.024846356362104416, 0.02568565495312214, 0.0029810615815222263, 0.03294366970658302, 0.08977383375167847, 0.11671437323093414, -0.08325441181659698, 1.1116687059402466, -0.008832373656332493, -0.0010785802733153105, 0.047385625541210175, -0.27182620763778687, -0.19372500479221344, -0.025118935853242874, 0.40438371896743774, -0.311458021402359, -0.42135336995124817, 0.22785606980323792]} +{"t": 9.5762, "q": [-0.13740716874599457, 0.005544487852603197, -0.008825259283185005, 0.31593185663223267, -0.18508924543857574, -0.010657737031579018, -0.07719843834638596, -0.033185116946697235, 0.009936786256730556, 0.3235762119293213, -0.2685089707374573, 0.024846356362104416, 0.02505623735487461, 0.0032972812186926603, 0.032791879028081894, 0.08980978280305862, 0.11669040471315384, -0.08325441181659698, 1.1117286682128906, -0.008832373656332493, -0.0010785802733153105, 0.047385625541210175, -0.27433091402053833, -0.18955449759960175, -0.0288819819688797, 0.400333046913147, -0.30607712268829346, -0.4241097569465637, 0.225063756108284]} +{"t": 9.593, "q": [-0.13738161325454712, 0.005612664390355349, -0.00881186779588461, 0.315906286239624, -0.18509764969348907, -0.010643575340509415, -0.07720695436000824, -0.033176593482494354, 0.00991000235080719, 0.32358473539352417, -0.2684962749481201, 0.024824611842632294, 0.024413425475358963, 0.0037417220883071423, 0.03253040835261345, 0.08985771983861923, 0.11661849915981293, -0.08330234885215759, 1.111836552619934, -0.008892294950783253, -0.0010186590952798724, 0.04739760980010033, -0.2778542637825012, -0.18516826629638672, -0.03392734006047249, 0.3971092998981476, -0.2995457053184509, -0.4267822206020355, 0.22156435251235962]} +{"t": 9.6098, "q": [-0.13738161325454712, 0.0056723193265497684, -0.008825259283185005, 0.315906286239624, -0.18508924543857574, -0.010657737031579018, -0.07719843834638596, -0.033193640410900116, 0.009963570162653923, 0.32358473539352417, -0.26850050687789917, 0.0248318612575531, 0.024145588278770447, 0.004171122796833515, 0.03227836266160011, 0.08985771983861923, 0.11649865657091141, -0.0833502858877182, 1.1119922399520874, -0.008856342174112797, -0.0009347695740871131, 0.047385625541210175, -0.281161904335022, -0.1799551248550415, -0.04060255363583565, 0.3934181332588196, -0.2906653881072998, -0.42837613821029663, 0.21859227120876312]} +{"t": 9.6265, "q": [-0.13733047246932983, 0.0057404967956244946, -0.008838650770485401, 0.31593185663223267, -0.18509332835674286, -0.010636439546942711, -0.07719843834638596, -0.033176593482494354, 0.009896610863506794, 0.32367846369743347, -0.2685047388076782, 0.024839108809828758, 0.02402506023645401, 0.004615595564246178, 0.03200714662671089, 0.08985771983861923, 0.11646270006895065, -0.0833263173699379, 1.112064242362976, -0.008856342174112797, -0.000874848454259336, 0.04737364128232002, -0.2854282855987549, -0.17480191588401794, -0.04748149961233139, 0.3894873261451721, -0.2837744653224945, -0.429286926984787, 0.21554827690124512]} +{"t": 9.6433, "q": [-0.13733047246932983, 0.005766062531620264, -0.008825259283185005, 0.3159233331680298, -0.1850891262292862, -0.010643519461154938, -0.07719843834638596, -0.033176593482494354, 0.009896610863506794, 0.32363584637641907, -0.26850050687789917, 0.0248318612575531, 0.023944709450006485, 0.005090245045721531, 0.03166934847831726, 0.08979780226945877, 0.11633087694644928, -0.08339822292327881, 1.1121840476989746, -0.008808405138552189, -0.000862864195369184, 0.047385625541210175, -0.28970664739608765, -0.17033179104328156, -0.05336575582623482, 0.3847295939922333, -0.2744627296924591, -0.42962250113487244, 0.21142570674419403]} +{"t": 9.66, "q": [-0.1373475193977356, 0.005766062531620264, -0.008852043189108372, 0.31594038009643555, -0.18508924543857574, -0.010657737031579018, -0.07719843834638596, -0.033193640410900116, 0.009896610863506794, 0.3236187994480133, -0.2685047388076782, 0.024839108809828758, 0.023931317031383514, 0.005587445106357336, 0.03138356655836105, 0.08982177078723907, 0.11621103435754776, -0.08339822292327881, 1.1122798919677734, -0.0088803106918931, -0.000862864195369184, 0.04737364128232002, -0.29387718439102173, -0.16611334681510925, -0.059429772198200226, 0.3796602487564087, -0.2661576569080353, -0.4299580454826355, 0.20747090876102448]} +{"t": 9.6767, "q": [-0.13728787004947662, 0.005749018397182226, -0.008838650770485401, 0.31593185663223267, -0.1850934475660324, -0.010650656186044216, -0.077224001288414, -0.03321068361401558, 0.009936786256730556, 0.3236187994480133, -0.26850050687789917, 0.0248318612575531, 0.023556344211101532, 0.006228154990822077, 0.03096877411007881, 0.08989367634057999, 0.116175077855587, -0.08347012847661972, 1.1124117374420166, -0.008856342174112797, -0.0008868326549418271, 0.04739760980010033, -0.29973745346069336, -0.16145148873329163, -0.06513426452875137, 0.3762567341327667, -0.25575536489486694, -0.43049734830856323, 0.20253340899944305]} +{"t": 9.6936, "q": [-0.13719412684440613, 0.005731974262744188, -0.008771691471338272, 0.31594038009643555, -0.1850891262292862, -0.010643519461154938, -0.07718991488218307, -0.03321068361401558, 0.009963570162653923, 0.3236102759838104, -0.2685047388076782, 0.024839108809828758, 0.02318137139081955, 0.006763370707631111, 0.030592145398259163, 0.08992962539196014, 0.11613912880420685, -0.08349409699440002, 1.1125794649124146, -0.00882038939744234, -0.0009227853151969612, 0.04736165702342987, -0.30471092462539673, -0.15599866211414337, -0.07226487994194031, 0.3728412389755249, -0.2458324134349823, -0.4307849705219269, 0.1980033665895462]} +{"t": 9.7103, "q": [-0.137202650308609, 0.005749018397182226, -0.008785083889961243, 0.3159489035606384, -0.18508924543857574, -0.010657737031579018, -0.07717286795377731, -0.03322772681713104, 0.009896610863506794, 0.3236187994480133, -0.2684962749481201, 0.024824611842632294, 0.022926924750208855, 0.007238233461976051, 0.03029136173427105, 0.0899655818939209, 0.11601928621530533, -0.08348211646080017, 1.112747311592102, -0.008808405138552189, -0.0009108011145144701, 0.04733768850564957, -0.30992403626441956, -0.14963503181934357, -0.08229567110538483, 0.3694257140159607, -0.23538216948509216, -0.43156394362449646, 0.1946597695350647]} +{"t": 9.7271, "q": [-0.13719412684440613, 0.005731974262744188, -0.008785083889961243, 0.31594038009643555, -0.18510185182094574, -0.010636495426297188, -0.07717286795377731, -0.03315955027937889, 0.00991000235080719, 0.3236273229122162, -0.2685047388076782, 0.024839108809828758, 0.022953709587454796, 0.007584910374134779, 0.030109670013189316, 0.08995359390974045, 0.1158275380730629, -0.08343417942523956, 1.112975001335144, -0.008832373656332493, -0.0009347695740871131, 0.04733768850564957, -0.315233051776886, -0.1438107043504715, -0.09105614572763443, 0.36611807346343994, -0.22429676353931427, -0.43273839354515076, 0.19105251133441925]} +{"t": 9.7438, "q": [-0.13719412684440613, 0.005731974262744188, -0.008758299984037876, 0.3159659504890442, -0.1850934475660324, -0.010650656186044216, -0.07719843834638596, -0.0332021601498127, 0.00991000235080719, 0.3236102759838104, -0.2685088515281677, 0.02483193390071392, 0.022618912160396576, 0.007833488285541534, 0.03007538802921772, 0.09004946798086166, 0.11568372696638107, -0.08353005349636078, 1.113190770149231, -0.008892294950783253, -0.0009227853151969612, 0.047325704246759415, -0.32078176736831665, -0.13960424065589905, -0.09817477315664291, 0.36324188113212585, -0.21283984184265137, -0.43473976850509644, 0.1883920133113861]} +{"t": 9.7605, "q": [-0.1372111737728119, 0.005731974262744188, -0.008771691471338272, 0.3159659504890442, -0.18508924543857574, -0.010657737031579018, -0.07721547782421112, -0.03321068361401558, 0.00991000235080719, 0.32364436984062195, -0.26850050687789917, 0.0248318612575531, 0.021775221452116966, 0.008059494197368622, 0.03006480447947979, 0.09004946798086166, 0.11558785289525986, -0.08349409699440002, 1.1132866144180298, -0.008832373656332493, -0.0009946906939148903, 0.04733768850564957, -0.3273131549358368, -0.13605691492557526, -0.10468220710754395, 0.35999414324760437, -0.20098744332790375, -0.4372684359550476, 0.1841975450515747]} +{"t": 9.7773, "q": [-0.13721968233585358, 0.005766062531620264, -0.008825259283185005, 0.31594038009643555, -0.18508481979370117, -0.010636400431394577, -0.07717286795377731, -0.033176593482494354, 0.009843043051660061, 0.32359325885772705, -0.26850050687789917, 0.0248318612575531, 0.020569952204823494, 0.008225339464843273, 0.029997555539011955, 0.0899895504117012, 0.1155758649110794, -0.08351806551218033, 1.113490343093872, -0.008832373656332493, -0.0009827064350247383, 0.04731371998786926, -0.3329697251319885, -0.13254553079605103, -0.11160908639431, 0.35683029890060425, -0.19060909748077393, -0.43932971358299255, 0.18024274706840515]} +{"t": 9.794, "q": [-0.137202650308609, 0.005749018397182226, -0.008959177881479263, 0.31598299741744995, -0.18508070707321167, -0.010657689534127712, -0.0770876482129097, -0.03321920707821846, 0.009789476171135902, 0.32363584637641907, -0.2685047388076782, 0.024839108809828758, 0.01900310069322586, 0.008240471594035625, 0.02995951846241951, 0.09006145596504211, 0.11562380194664001, -0.08353005349636078, 1.1135982275009155, -0.008892294950783253, -0.0010186590952798724, 0.04731371998786926, -0.33942919969558716, -0.12754811346530914, -0.12074106931686401, 0.3545892536640167, -0.17882861196994781, -0.4407678246498108, 0.1759404093027115]} +{"t": 9.8108, "q": [-0.13721968233585358, 0.005749018397182226, -0.009133272804319859, 0.3160170912742615, -0.18508492410182953, -0.01065060030668974, -0.07701095193624496, -0.033193640410900116, 0.009776083752512932, 0.3236273229122162, -0.2685047388076782, 0.024839108809828758, 0.017596950754523277, 0.008225404657423496, 0.02995959296822548, 0.09006145596504211, 0.11571967601776123, -0.08345814794301987, 1.1136940717697144, -0.008832373656332493, -0.0010306433541700244, 0.04731371998786926, -0.3460564911365509, -0.12207131832838058, -0.13006480038166046, 0.3526478111743927, -0.16753946244716644, -0.4412112236022949, 0.17203354835510254]} +{"t": 9.8276, "q": [-0.13721968233585358, 0.005766062531620264, -0.009106488898396492, 0.3160000443458557, -0.18508502840995789, -0.01066482625901699, -0.07705356180667877, -0.0332021601498127, 0.009829651564359665, 0.3235762119293213, -0.2685047388076782, 0.024839108809828758, 0.01644524745643139, 0.008225372061133385, 0.029978575184941292, 0.09004946798086166, 0.11581555008888245, -0.08342219144105911, 1.1138259172439575, -0.008832373656332493, -0.0010546118719503284, 0.047325704246759415, -0.35125765204429626, -0.11823636293411255, -0.1369916796684265, 0.34989145398139954, -0.15626230835914612, -0.44147488474845886, 0.1690734475851059]} +{"t": 9.8444, "q": [-0.13724525272846222, 0.005749018397182226, -0.009079704992473125, 0.3159489035606384, -0.1850934475660324, -0.010650656186044216, -0.07707060128450394, -0.0332021601498127, 0.009789476171135902, 0.32350802421569824, -0.2685047388076782, 0.024839108809828758, 0.014342720620334148, 0.00823288131505251, 0.02999277226626873, 0.09007343649864197, 0.11593539267778397, -0.08339822292327881, 1.1138978004455566, -0.00882038939744234, -0.0011025486746802926, 0.047325704246759415, -0.35705801844596863, -0.11473697423934937, -0.1446855515241623, 0.3476503789424896, -0.1468786597251892, -0.44177448749542236, 0.16576580703258514]} +{"t": 9.8611, "q": [-0.13723672926425934, 0.005749018397182226, -0.009039529599249363, 0.31593185663223267, -0.18508082628250122, -0.010671907104551792, -0.07707060128450394, -0.03322772681713104, 0.009776083752512932, 0.3234483599662781, -0.2685088515281677, 0.02483193390071392, 0.011530422605574131, 0.008262933231890202, 0.0300400760024786, 0.09038502722978592, 0.11611516028642654, -0.0833263173699379, 1.1140894889831543, -0.008856342174112797, -0.0011025486746802926, 0.04734967276453972, -0.36294224858283997, -0.11147726327180862, -0.15188807249069214, 0.3459246754646301, -0.1350981742143631, -0.4419063329696655, 0.1618110090494156]} +{"t": 9.8779, "q": [-0.13727934658527374, 0.005723452661186457, -0.009093097411096096, 0.31593185663223267, -0.1850806176662445, -0.010643481276929379, -0.07712173461914062, -0.033176593482494354, 0.009776083752512932, 0.32342278957366943, -0.2685047388076782, 0.024839108809828758, 0.009039529599249363, 0.008292870596051216, 0.03015381284058094, 0.09060074388980865, 0.11630690842866898, -0.08331433683633804, 1.1142932176589966, -0.008856342174112797, -0.0010426276130601764, 0.04734967276453972, -0.36831119656562805, -0.10746254771947861, -0.16170315444469452, 0.3436836004257202, -0.1281113624572754, -0.4419422745704651, 0.15876701474189758]} +{"t": 9.8946, "q": [-0.13722820580005646, 0.0057404967956244946, -0.009026138111948967, 0.31593185663223267, -0.18508492410182953, -0.01065060030668974, -0.07719843834638596, -0.033193640410900116, 0.009749299846589565, 0.32336315512657166, -0.2685047388076782, 0.024839108809828758, 0.007847650907933712, 0.008292854763567448, 0.030163303017616272, 0.09055280685424805, 0.11653460562229156, -0.0833263173699379, 1.1144729852676392, -0.008856342174112797, -0.0009946906939148903, 0.04736165702342987, -0.3721221685409546, -0.10435863584280014, -0.16990035772323608, 0.34069955348968506, -0.11769707500934601, -0.4420141875743866, 0.15480023622512817]} +{"t": 9.9114, "q": [-0.13715150952339172, 0.005731974262744188, -0.008892218582332134, 0.31593185663223267, -0.18508924543857574, -0.010657737031579018, -0.07723252475261688, -0.033176593482494354, 0.009816259145736694, 0.32326939702033997, -0.2685047388076782, 0.024839108809828758, 0.006870042532682419, 0.008270262740552425, 0.030158668756484985, 0.09051685035228729, 0.11663047969341278, -0.08330234885215759, 1.1145689487457275, -0.008832373656332493, -0.0009227853151969612, 0.04737364128232002, -0.37568148970603943, -0.10244115442037582, -0.1780616194009781, 0.33783531188964844, -0.10922423005104065, -0.4421460032463074, 0.15151655673980713]} +{"t": 9.9281, "q": [-0.13699811697006226, 0.005706407595425844, -0.008744907565414906, 0.3159659504890442, -0.18508924543857574, -0.010657737031579018, -0.07724104821681976, -0.033244773745536804, 0.009883219376206398, 0.3232523500919342, -0.26850050687789917, 0.0248318612575531, 0.006120096426457167, 0.008285329677164555, 0.030158596113324165, 0.09044494479894638, 0.11666643619537354, -0.08331433683633804, 1.1147127151489258, -0.008832373656332493, -0.000862864195369184, 0.04737364128232002, -0.3789771497249603, -0.10233329981565475, -0.18401777744293213, 0.33625340461730957, -0.09936121106147766, -0.44230180978775024, 0.1491556614637375]} +{"t": 9.9448, "q": [-0.1369725465774536, 0.005680841859430075, -0.008704732172191143, 0.3159489035606384, -0.18509764969348907, -0.010643575340509415, -0.07733479142189026, -0.033193640410900116, 0.00991000235080719, 0.32318419218063354, -0.26850050687789917, 0.0248318612575531, 0.005530852824449539, 0.008277803659439087, 0.03015388734638691, 0.09046891331672668, 0.11671437323093414, -0.0833263173699379, 1.1148205995559692, -0.008796420879662037, -0.000850879994686693, 0.04736165702342987, -0.38283607363700867, -0.10198576003313065, -0.19169966876506805, 0.3356182277202606, -0.09038502722978592, -0.4423857033252716, 0.14697453379631042]} +{"t": 9.9617, "q": [-0.136887326836586, 0.0056723193265497684, -0.008584205061197281, 0.31603413820266724, -0.18508924543857574, -0.010657737031579018, -0.07741148769855499, -0.03323625028133392, 0.009950178675353527, 0.3231245279312134, -0.2685047388076782, 0.024839108809828758, 0.00508892023935914, 0.008292822167277336, 0.030182283371686935, 0.09046891331672668, 0.1167742908000946, -0.08330234885215759, 1.115132212638855, -0.00878443755209446, -0.0007669904152862728, 0.04737364128232002, -0.3860238790512085, -0.10150638967752457, -0.20096346735954285, 0.3354983925819397, -0.08173241466283798, -0.44237369298934937, 0.1446615755558014]} +{"t": 9.9784, "q": [-0.1369299441576004, 0.005680841859430075, -0.008530637249350548, 0.3159489035606384, -0.18508924543857574, -0.010657737031579018, -0.07744557410478592, -0.033193640410900116, 0.009936786256730556, 0.3229881823062897, -0.26851320266723633, 0.024853622540831566, 0.004995177034288645, 0.008285248652100563, 0.030206046998500824, 0.09040899574756622, 0.1167742908000946, -0.08330234885215759, 1.1153119802474976, -0.008796420879662037, -0.0006950850365683436, 0.04739760980010033, -0.38815706968307495, -0.10154233872890472, -0.21022728085517883, 0.3353785574436188, -0.07179749011993408, -0.44239768385887146, 0.1407906711101532]} +{"t": 9.9952, "q": [-0.13691289722919464, 0.005638231057673693, -0.008517245762050152, 0.3159233331680298, -0.18509775400161743, -0.010657775215804577, -0.07746262103319168, -0.03321920707821846, 0.009896610863506794, 0.32286033034324646, -0.2685047388076782, 0.024839108809828758, 0.0049817850813269615, 0.008262640796601772, 0.03021090291440487, 0.09046891331672668, 0.1167742908000946, -0.08327838033437729, 1.1154797077178955, -0.008808405138552189, -0.0006831008358858526, 0.04737364128232002, -0.3896191418170929, -0.10221345722675323, -0.21850837767124176, 0.3353785574436188, -0.062305986881256104, -0.4423137903213501, 0.13646437227725983]} +{"t": 10.0119, "q": [-0.13690437376499176, 0.005680841859430075, -0.008490461856126785, 0.3159148097038269, -0.1850891262292862, -0.010643519461154938, -0.07752227783203125, -0.033295903354883194, 0.009963570162653923, 0.3227495551109314, -0.2685047388076782, 0.024839108809828758, 0.0049148257821798325, 0.008277672342956066, 0.030229808762669563, 0.09045693278312683, 0.1167742908000946, -0.08330234885215759, 1.1156474351882935, -0.00878443755209446, -0.0006591323763132095, 0.04737364128232002, -0.39027827978134155, -0.10300441831350327, -0.22530344128608704, 0.3353425860404968, -0.052263207733631134, -0.4423377513885498, 0.13223394751548767]} +{"t": 10.0287, "q": [-0.136887326836586, 0.0057404967956244946, -0.00847707036882639, 0.31580403447151184, -0.1851019561290741, -0.010650694370269775, -0.07753080129623413, -0.03326181694865227, 0.009963570162653923, 0.32258763909339905, -0.2685047388076782, 0.024839108809828758, 0.004888041876256466, 0.008292706683278084, 0.030248714610934258, 0.09044494479894638, 0.1167742908000946, -0.0833263173699379, 1.1158632040023804, -0.00882038939744234, -0.0006591323763132095, 0.04736165702342987, -0.3909134566783905, -0.10299243032932281, -0.2346271574497223, 0.33530664443969727, -0.04399409145116806, -0.44232577085494995, 0.13056813180446625]} +{"t": 10.0454, "q": [-0.13693846762180328, 0.005851284135133028, -0.008490461856126785, 0.31576141715049744, -0.1850934475660324, -0.010650656186044216, -0.07752227783203125, -0.033176593482494354, 0.00992339476943016, 0.3225279748439789, -0.2685088515281677, 0.02483193390071392, 0.004888041876256466, 0.008330185897648335, 0.030357670038938522, 0.09043296426534653, 0.1167742908000946, -0.08330234885215759, 1.116042971611023, -0.008832373656332493, -0.0006711166352033615, 0.04737364128232002, -0.3914647102355957, -0.1028965562582016, -0.24339962005615234, 0.33539053797721863, -0.03546132147312164, -0.4423137903213501, 0.12944161891937256]} +{"t": 10.0621, "q": [-0.13696402311325073, 0.005885372404009104, -0.008503853343427181, 0.31571879982948303, -0.18509775400161743, -0.010657775215804577, -0.0775478407740593, -0.03326181694865227, 0.009883219376206398, 0.3224257230758667, -0.2685089707374573, 0.024846356362104416, 0.004955001175403595, 0.008284847252070904, 0.03047166019678116, 0.09045693278312683, 0.1167503222823143, -0.0833263173699379, 1.1162346601486206, -0.00882038939744234, -0.0006831008358858526, 0.04737364128232002, -0.39193210005760193, -0.10299243032932281, -0.25054222345352173, 0.33541449904441833, -0.027587685734033585, -0.4423137903213501, 0.1284589171409607]} +{"t": 10.0788, "q": [-0.13696402311325073, 0.005936504807323217, -0.008530637249350548, 0.3156335949897766, -0.1851019561290741, -0.010650694370269775, -0.07759897410869598, -0.03326181694865227, 0.009869826957583427, 0.322331964969635, -0.2685087025165558, 0.024817511439323425, 0.005008568987250328, 0.00828471127897501, 0.030575968325138092, 0.09042097628116608, 0.11670238524675369, -0.08324243128299713, 1.1164504289627075, -0.00882038939744234, -0.0007430219557136297, 0.04737364128232002, -0.3927350342273712, -0.10305235534906387, -0.2568938434123993, 0.33560624718666077, -0.019234681501984596, -0.4423137903213501, 0.12740430235862732]} +{"t": 10.0956, "q": [-0.13695549964904785, 0.006021726410835981, -0.008530637249350548, 0.3155824542045593, -0.1850934475660324, -0.010650656186044216, -0.07763306051492691, -0.033244773745536804, 0.009869826957583427, 0.3222978711128235, -0.2685171663761139, 0.02483200654387474, 0.005035352893173695, 0.008374926634132862, 0.03069884143769741, 0.09043296426534653, 0.11665444821119308, -0.08329036831855774, 1.1167380809783936, -0.008856342174112797, -0.0008029430755414069, 0.04737364128232002, -0.39329829812049866, -0.1031721979379654, -0.261435866355896, 0.3356781601905823, -0.011696604080498219, -0.44230180978775024, 0.12654143571853638]} +{"t": 10.1123, "q": [-0.1369810700416565, 0.0060472930781543255, -0.008570813573896885, 0.31553131341934204, -0.1851019561290741, -0.010650694370269775, -0.07765010744333267, -0.03323625028133392, 0.009816259145736694, 0.3222382366657257, -0.26851731538772583, 0.024846447631716728, 0.005021960940212011, 0.008389852941036224, 0.030803082510828972, 0.09048090130090714, 0.11667841672897339, -0.08324243128299713, 1.117013692855835, -0.008856342174112797, -0.0008269115351140499, 0.047385625541210175, -0.39357393980026245, -0.1037953719496727, -0.2653307616710663, 0.33569014072418213, -0.005848302040249109, -0.4423137903213501, 0.12625381350517273]} +{"t": 10.129, "q": [-0.1370236873626709, 0.006141036283224821, -0.008610988967120647, 0.3154972493648529, -0.1850934475660324, -0.010650656186044216, -0.07767567783594131, -0.03321920707821846, 0.009816259145736694, 0.3222041428089142, -0.26852142810821533, 0.02483927272260189, 0.005062136333435774, 0.008344541303813457, 0.03089810721576214, 0.09045693278312683, 0.11663047969341278, -0.08325441181659698, 1.117540955543518, -0.008808405138552189, -0.0008388957940042019, 0.047385625541210175, -0.3935379981994629, -0.104742132127285, -0.26918965578079224, 0.33576202392578125, -0.0007070692954584956, -0.44230180978775024, 0.12626579403877258]} +{"t": 10.1459, "q": [-0.13709186017513275, 0.006192168686538935, -0.008637772873044014, 0.31552278995513916, -0.18509775400161743, -0.010657775215804577, -0.07765010744333267, -0.033244773745536804, 0.009776083752512932, 0.32212743163108826, -0.2685130834579468, 0.024839181452989578, 0.005450501572340727, 0.008201301097869873, 0.031007779762148857, 0.09002549946308136, 0.11661849915981293, -0.08323044329881668, 1.1184877157211304, -0.008796420879662037, -0.0008149273344315588, 0.04737364128232002, -0.3936578333377838, -0.10483799874782562, -0.2743189036846161, 0.3357500433921814, 0.0031278827227652073, -0.44232577085494995, 0.12644556164741516]} +{"t": 10.1626, "q": [-0.13716855645179749, 0.006175124552100897, -0.008865434676408768, 0.31553131341934204, -0.18508924543857574, -0.010657737031579018, -0.07762454450130463, -0.03321068361401558, 0.00973590835928917, 0.3221018612384796, -0.26851293444633484, 0.024824758991599083, 0.00605313666164875, 0.008140983991324902, 0.031055450439453125, 0.08952216058969498, 0.11661849915981293, -0.08324243128299713, 1.1188113689422607, -0.008772453293204308, -0.0008269115351140499, 0.04737364128232002, -0.39422109723091125, -0.10475411266088486, -0.27802205085754395, 0.336073637008667, 0.006711166352033615, -0.44230180978775024, 0.1263377070426941]} +{"t": 10.1793, "q": [-0.13717707991600037, 0.006123991217464209, -0.008892218582332134, 0.3155483603477478, -0.18509775400161743, -0.010657775215804577, -0.07761602103710175, -0.03321920707821846, 0.009776083752512932, 0.32212743163108826, -0.2685089707374573, 0.024846356362104416, 0.006347758695483208, 0.008103339932858944, 0.03105088695883751, 0.08953414857387543, 0.11658254265785217, -0.0833263173699379, 1.1191109418869019, -0.008832373656332493, -0.0008868326549418271, 0.04737364128232002, -0.3949041962623596, -0.1047181636095047, -0.2810780107975006, 0.33618149161338806, 0.01191231980919838, -0.4421699643135071, 0.12650547921657562]} +{"t": 10.1961, "q": [-0.1371600329875946, 0.006081381347030401, -0.0089190024882555, 0.3155483603477478, -0.18509355187416077, -0.010664856061339378, -0.07757341116666794, -0.03323625028133392, 0.009776083752512932, 0.3221103847026825, -0.2685171663761139, 0.02483200654387474, 0.006736123468726873, 0.008125909604132175, 0.031064998358488083, 0.08961803466081619, 0.11654659360647202, -0.08330234885215759, 1.1193386316299438, -0.008868326433002949, -0.0009587380336597562, 0.04737364128232002, -0.39579102396965027, -0.10455038398504257, -0.28406208753585815, 0.3364930748939514, 0.014656707644462585, -0.44179844856262207, 0.12658937275409698]} +{"t": 10.2128, "q": [-0.13719412684440613, 0.006030248012393713, -0.008892218582332134, 0.31557393074035645, -0.18508924543857574, -0.010657737031579018, -0.07752227783203125, -0.03321920707821846, 0.009776083752512932, 0.3221103847026825, -0.26851320266723633, 0.024853622540831566, 0.006977177690714598, 0.008058073930442333, 0.031107965856790543, 0.0896899402141571, 0.1164746880531311, -0.08327838033437729, 1.1196262836456299, -0.008832373656332493, -0.0011145329335704446, 0.04737364128232002, -0.3963782489299774, -0.10449045896530151, -0.2855001986026764, 0.336900532245636, 0.017832526937127113, -0.4411153495311737, 0.12657739222049713]} +{"t": 10.2296, "q": [-0.13726229965686798, 0.0059194606728851795, -0.008892218582332134, 0.3155824542045593, -0.1850934475660324, -0.010650656186044216, -0.0775478407740593, -0.0332021601498127, 0.009749299846589565, 0.3221018612384796, -0.26851320266723633, 0.024853622540831566, 0.007137880194932222, 0.007967639714479446, 0.0311557836830616, 0.0896659716963768, 0.1164507195353508, -0.08331433683633804, 1.119865894317627, -0.008856342174112797, -0.0011504855938255787, 0.04737364128232002, -0.39659395813941956, -0.10449045896530151, -0.2857039272785187, 0.3369964063167572, 0.019750002771615982, -0.4406719505786896, 0.12675714492797852]} +{"t": 10.2463, "q": [-0.13727082312107086, 0.0058768498711287975, -0.008892218582332134, 0.3155995011329651, -0.1850934475660324, -0.010650656186044216, -0.07750523090362549, -0.0332021601498127, 0.00973590835928917, 0.3221189081668854, -0.2685089707374573, 0.024846356362104416, 0.0072584073059260845, 0.007831964641809464, 0.031241722404956818, 0.08961803466081619, 0.11653460562229156, -0.08330234885215759, 1.1199977397918701, -0.008856342174112797, -0.0011624698527157307, 0.04737364128232002, -0.3967258036136627, -0.10500577837228775, -0.28576385974884033, 0.3371402323246002, 0.02034921385347843, -0.4403843283653259, 0.12708072364330292]} +{"t": 10.2631, "q": [-0.1373049020767212, 0.00577458506450057, -0.008878827095031738, 0.3155909776687622, -0.18509355187416077, -0.010664856061339378, -0.07748818397521973, -0.033185116946697235, 0.009709124453365803, 0.3221189081668854, -0.2685089707374573, 0.024846356362104416, 0.007311975117772818, 0.007681252900511026, 0.03130876645445824, 0.08955811709165573, 0.11659453064203262, -0.08331433683633804, 1.1201056241989136, -0.008832373656332493, -0.0012343751732259989, 0.04737364128232002, -0.3967258036136627, -0.10600047558546066, -0.2855481207370758, 0.3372001349925995, 0.020445087924599648, -0.4403243958950043, 0.1278117597103119]} +{"t": 10.2797, "q": [-0.13732194900512695, 0.00577458506450057, -0.008865434676408768, 0.3155995011329651, -0.1850934475660324, -0.010650656186044216, -0.07746262103319168, -0.0332021601498127, 0.009695732034742832, 0.32208484411239624, -0.2685089707374573, 0.024846356362104416, 0.007298583164811134, 0.0075079514645040035, 0.031371165066957474, 0.08951018005609512, 0.11661849915981293, -0.08330234885215759, 1.120225429534912, -0.008856342174112797, -0.0012583436910063028, 0.04736165702342987, -0.3967497646808624, -0.10667158663272858, -0.2854522466659546, 0.33728402853012085, 0.02033722959458828, -0.44015663862228394, 0.12881843745708466]} +{"t": 10.2965, "q": [-0.13733047246932983, 0.005663797724992037, -0.008852043189108372, 0.3156421184539795, -0.18509764969348907, -0.010643575340509415, -0.07747114449739456, -0.0332021601498127, 0.00973590835928917, 0.3221103847026825, -0.2685130834579468, 0.024839181452989578, 0.007365542463958263, 0.007319587282836437, 0.03143363073468208, 0.08946224302053452, 0.11667841672897339, -0.08327838033437729, 1.1203453540802002, -0.008832373656332493, -0.001270327833481133, 0.04737364128232002, -0.39679768681526184, -0.10735469311475754, -0.28544026613235474, 0.3373679220676422, 0.020121514797210693, -0.4399408996105194, 0.12994495034217834]} +{"t": 10.3132, "q": [-0.13732194900512695, 0.005655275192111731, -0.008852043189108372, 0.3156421184539795, -0.18509764969348907, -0.010643575340509415, -0.07742001116275787, -0.033193640410900116, 0.009709124453365803, 0.3221189081668854, -0.2685089707374573, 0.024846356362104416, 0.007405718322843313, 0.007123722694814205, 0.03147242218255997, 0.08937834948301315, 0.11671437323093414, -0.08324243128299713, 1.1204770803451538, -0.008832373656332493, -0.001282312092371285, 0.04737364128232002, -0.39679768681526184, -0.10822954028844833, -0.2849968671798706, 0.3374518156051636, 0.01961817592382431, -0.4397731423377991, 0.13161076605319977]} +{"t": 10.33, "q": [-0.13733899593353271, 0.005646753590553999, -0.008852043189108372, 0.3156847357749939, -0.18511047959327698, -0.010650732554495335, -0.07741148769855499, -0.03323625028133392, 0.009749299846589565, 0.3221103847026825, -0.2685130834579468, 0.024839181452989578, 0.007445894181728363, 0.006905260030180216, 0.03151605278253555, 0.08931843191385269, 0.11681023985147476, -0.08325441181659698, 1.1205610036849976, -0.008808405138552189, -0.001294296351261437, 0.04737364128232002, -0.39686959981918335, -0.10930811613798141, -0.28463733196258545, 0.3374518156051636, 0.018683407455682755, -0.4390420913696289, 0.1326294243335724]} +{"t": 10.3467, "q": [-0.13733047246932983, 0.005638231057673693, -0.008852043189108372, 0.315676212310791, -0.1850934475660324, -0.010650656186044216, -0.07742001116275787, -0.03321920707821846, 0.009749299846589565, 0.3221530020236969, -0.2685047388076782, 0.024839108809828758, 0.007499461527913809, 0.006498603615909815, 0.031489331275224686, 0.08931843191385269, 0.11690611392259598, -0.08324243128299713, 1.1207047700881958, -0.008832373656332493, -0.001282312092371285, 0.047385625541210175, -0.3970254063606262, -0.1115851178765297, -0.2845294773578644, 0.3374637961387634, 0.016538230702280998, -0.4384189248085022, 0.13319267332553864]} +{"t": 10.3635, "q": [-0.13733899593353271, 0.005663797724992037, -0.008945786394178867, 0.31575289368629456, -0.18508924543857574, -0.010657737031579018, -0.07736887782812119, -0.0332021601498127, 0.009749299846589565, 0.3221615254878998, -0.2685047388076782, 0.024839108809828758, 0.007740515749901533, 0.006054208148270845, 0.03152412176132202, 0.08924652636051178, 0.11706191301345825, -0.08324243128299713, 1.1208007335662842, -0.008832373656332493, -0.001318264752626419, 0.04737364128232002, -0.39691755175590515, -0.1143295094370842, -0.283474862575531, 0.3382188081741333, 0.012559467926621437, -0.4378916025161743, 0.13381585478782654]} +{"t": 10.3802, "q": [-0.13737308979034424, 0.0057149301283061504, -0.009079704992473125, 0.31579551100730896, -0.18508924543857574, -0.010657737031579018, -0.07732626795768738, -0.03321920707821846, 0.009762692265212536, 0.32217004895210266, -0.2685047388076782, 0.024839108809828758, 0.008289583027362823, 0.005511942319571972, 0.03161120414733887, 0.08893493562936783, 0.11709786206483841, -0.08321846276521683, 1.1209205389022827, -0.00882038939744234, -0.001306280493736267, 0.047385625541210175, -0.39686959981918335, -0.11697801947593689, -0.28178510069847107, 0.3389977812767029, 0.00906007457524538, -0.4372923970222473, 0.13460682332515717]} +{"t": 10.397, "q": [-0.13744978606700897, 0.005706407595425844, -0.009267191402614117, 0.3158210813999176, -0.18508082628250122, -0.010671907104551792, -0.07727513462305069, -0.03321920707821846, 0.009762692265212536, 0.3221615254878998, -0.2685047388076782, 0.024839108809828758, 0.008865434676408768, 0.0048944465816020966, 0.031707845628261566, 0.08863533288240433, 0.11712183058261871, -0.08318250626325607, 1.1209924221038818, -0.008832373656332493, -0.001318264752626419, 0.047385625541210175, -0.39677372574806213, -0.11938685178756714, -0.28037095069885254, 0.3393692970275879, 0.003882888937368989, -0.4366452395915985, 0.13523000478744507]} +{"t": 10.4139, "q": [-0.13747535645961761, 0.005706407595425844, -0.009468070231378078, 0.31588923931121826, -0.18508082628250122, -0.010671907104551792, -0.0771813914179802, -0.03321920707821846, 0.009762692265212536, 0.32213595509529114, -0.2685047388076782, 0.024839108809828758, 0.00940111093223095, 0.004216691944748163, 0.03183295950293541, 0.08861136436462402, 0.11724167317152023, -0.08317052572965622, 1.1210284233093262, -0.008856342174112797, -0.001306280493736267, 0.04739760980010033, -0.39677372574806213, -0.1215679794549942, -0.27887290716171265, 0.3399685025215149, -0.00173771264962852, -0.43578237295150757, 0.13563746213912964]} +{"t": 10.4306, "q": [-0.1375350058078766, 0.005723452661186457, -0.009575205855071545, 0.31588923931121826, -0.18508082628250122, -0.010671907104551792, -0.07717286795377731, -0.033193640410900116, 0.009776083752512932, 0.322144478559494, -0.2685047388076782, 0.024839108809828758, 0.009856435470283031, 0.003403361653909087, 0.03200535103678703, 0.08867128193378448, 0.1173495352268219, -0.08317052572965622, 1.1211482286453247, -0.008856342174112797, -0.001318264752626419, 0.04740959405899048, -0.3967137932777405, -0.12436030805110931, -0.2765359878540039, 0.3409631848335266, -0.00806538388133049, -0.43448808789253235, 0.13633254170417786]} +{"t": 10.4473, "q": [-0.13759465515613556, 0.005731974262744188, -0.00958859734237194, 0.315906286239624, -0.18507662415504456, -0.010678987950086594, -0.07713878154754639, -0.033193640410900116, 0.009722515940666199, 0.3221530020236969, -0.2685047388076782, 0.024839108809828758, 0.010351935401558876, 0.002522203605622053, 0.032248951494693756, 0.08875517547130585, 0.11742144078016281, -0.08314655721187592, 1.1212440729141235, -0.008868326433002949, -0.001306280493736267, 0.04742157831788063, -0.3966778516769409, -0.12742826342582703, -0.27400732040405273, 0.3419099450111389, -0.01435710210353136, -0.4321032166481018, 0.1378905028104782]} +{"t": 10.4641, "q": [-0.1376628428697586, 0.005706407595425844, -0.009682340547442436, 0.315863698720932, -0.18508924543857574, -0.010657737031579018, -0.07704503834247589, -0.0332021601498127, 0.009722515940666199, 0.3221530020236969, -0.26851320266723633, 0.024853622540831566, 0.010686732828617096, 0.0016338092973455787, 0.03260963037610054, 0.08877914398908615, 0.11746937781572342, -0.08309862017631531, 1.121291995048523, -0.008808405138552189, -0.001318264752626419, 0.047445546835660934, -0.3964262008666992, -0.13012471795082092, -0.27280890941619873, 0.34284472465515137, -0.021955100819468498, -0.42736944556236267, 0.14050306379795074]} +{"t": 10.4808, "q": [-0.13776510953903198, 0.0056978859938681126, -0.009749299846589565, 0.31588923931121826, -0.18507662415504456, -0.010678987950086594, -0.07707060128450394, -0.033193640410900116, 0.009682340547442436, 0.3221530020236969, -0.2685088515281677, 0.02483193390071392, 0.01091439463198185, 0.0007303655729629099, 0.03285658359527588, 0.08877914398908615, 0.11740945279598236, -0.08306266367435455, 1.1213160753250122, -0.008808405138552189, -0.0013542174128815532, 0.047457531094551086, -0.39622244238853455, -0.13254553079605103, -0.27240145206451416, 0.3444386124610901, -0.030248183757066727, -0.4232349097728729, 0.14304371178150177]} +{"t": 10.4976, "q": [-0.13790997862815857, 0.005706407595425844, -0.009749299846589565, 0.3158722221851349, -0.18508502840995789, -0.01066482625901699, -0.07707060128450394, -0.033193640410900116, 0.00965555664151907, 0.3221615254878998, -0.2685045897960663, 0.024824686348438263, 0.01126258447766304, -0.00028612258029170334, 0.03300353139638901, 0.08873120695352554, 0.11744540929794312, -0.0830506831407547, 1.1213759183883667, -0.008868326433002949, -0.0013542174128815532, 0.047457531094551086, -0.395215779542923, -0.135349839925766, -0.2717183530330658, 0.3467515707015991, -0.038900796324014664, -0.4187767803668976, 0.14612366259098053]} +{"t": 10.5143, "q": [-0.13791850209236145, 0.005646753590553999, -0.009789476171135902, 0.31588923931121826, -0.18508082628250122, -0.010671907104551792, -0.07707912474870682, -0.03321068361401558, 0.009628772735595703, 0.322144478559494, -0.2685047388076782, 0.024839108809828758, 0.01159738190472126, -0.001257252530194819, 0.033026643097400665, 0.08869525045156479, 0.11742144078016281, -0.08303869515657425, 1.1213998794555664, -0.008868326433002949, -0.0013542174128815532, 0.04746951535344124, -0.39407727122306824, -0.13845375180244446, -0.2712389826774597, 0.35063445568084717, -0.047529436647892, -0.41546911001205444, 0.1501503586769104]} +{"t": 10.5311, "q": [-0.13797815144062042, 0.005570054519921541, -0.009762692265212536, 0.31584665179252625, -0.18508082628250122, -0.010671907104551792, -0.07707060128450394, -0.03321068361401558, 0.009628772735595703, 0.32212743163108826, -0.26851731538772583, 0.024846447631716728, 0.011865219101309776, -0.002296056365594268, 0.032978251576423645, 0.08865930140018463, 0.11746937781572342, -0.08301472663879395, 1.1213879585266113, -0.008832373656332493, -0.0013542174128815532, 0.04746951535344124, -0.39260321855545044, -0.14220482110977173, -0.27006450295448303, 0.35637491941452026, -0.05595434829592705, -0.4122094213962555, 0.1544167399406433]} +{"t": 10.5478, "q": [-0.13797815144062042, 0.005484832916408777, -0.009749299846589565, 0.315906286239624, -0.18508502840995789, -0.01066482625901699, -0.07707912474870682, -0.03321068361401558, 0.009575205855071545, 0.32212743163108826, -0.2685089707374573, 0.024846356362104416, 0.011972354725003242, -0.00316922040656209, 0.033005133271217346, 0.08863533288240433, 0.11746937781572342, -0.08303869515657425, 1.121411919593811, -0.008808405138552189, -0.001342233270406723, 0.047457531094551086, -0.39105725288391113, -0.14672286808490753, -0.2679792642593384, 0.36247488856315613, -0.0628812313079834, -0.4071161150932312, 0.15668176114559174]} +{"t": 10.5646, "q": [-0.1379866749048233, 0.005339957308024168, -0.009722515940666199, 0.31583812832832336, -0.18508502840995789, -0.01066482625901699, -0.07711321115493774, -0.03321920707821846, 0.009628772735595703, 0.32208484411239624, -0.2685089707374573, 0.024846356362104416, 0.012052706442773342, -0.004072501324117184, 0.03311706706881523, 0.08863533288240433, 0.11740945279598236, -0.0830267146229744, 1.1214358806610107, -0.00882038939744234, -0.0013542174128815532, 0.04746951535344124, -0.38907986879348755, -0.15084543824195862, -0.2650551199913025, 0.36674126982688904, -0.07110241055488586, -0.4011240005493164, 0.1583116203546524]} +{"t": 10.5813, "q": [-0.1379014551639557, 0.00532291317358613, -0.00965555664151907, 0.31580403447151184, -0.1850934475660324, -0.010650656186044216, -0.07711321115493774, -0.03323625028133392, 0.00966894906014204, 0.3220677971839905, -0.2685089707374573, 0.024846356362104416, 0.011905395425856113, -0.005028455052524805, 0.03328941762447357, 0.08877914398908615, 0.11745738983154297, -0.0830267146229744, 1.1215077638626099, -0.008832373656332493, -0.001342233270406723, 0.047457531094551086, -0.38703054189682007, -0.15493206679821014, -0.2618553340435028, 0.371487021446228, -0.07974303513765335, -0.3952037990093231, 0.16051670908927917]} +{"t": 10.5981, "q": [-0.13787588477134705, 0.005331434775143862, -0.009548421949148178, 0.3157869875431061, -0.18508924543857574, -0.010657737031579018, -0.07713878154754639, -0.03322772681713104, 0.009722515940666199, 0.3220592737197876, -0.2685130834579468, 0.024839181452989578, 0.011704516597092152, -0.0060819899663329124, 0.03349386155605316, 0.08869525045156479, 0.11774501204490662, -0.08300274610519409, 1.1215916872024536, -0.008856342174112797, -0.0013542174128815532, 0.047457531094551086, -0.3850531578063965, -0.15949805080890656, -0.25827205181121826, 0.37647244334220886, -0.08740095794200897, -0.38903191685676575, 0.16255402565002441]} +{"t": 10.6148, "q": [-0.13786736130714417, 0.005374045576900244, -0.009548421949148178, 0.3157443702220917, -0.18509355187416077, -0.010664856061339378, -0.07716434448957443, -0.03321920707821846, 0.009695732034742832, 0.3220592737197876, -0.2685089707374573, 0.024846356362104416, 0.011275975964963436, -0.006954892072826624, 0.03367972373962402, 0.08853945881128311, 0.11774501204490662, -0.08301472663879395, 1.121579647064209, -0.008856342174112797, -0.0013542174128815532, 0.047457531094551086, -0.3832795023918152, -0.1637764275074005, -0.25458088517189026, 0.38158971071243286, -0.09556221216917038, -0.3819732069969177, 0.16399213671684265]} +{"t": 10.6331, "q": [-0.13787588477134705, 0.005416656378656626, -0.009548421949148178, 0.3157358467578888, -0.18508924543857574, -0.010657737031579018, -0.0771813914179802, -0.0332021601498127, 0.009749299846589565, 0.32204222679138184, -0.2685130834579468, 0.024839181452989578, 0.011088489554822445, -0.007601745426654816, 0.034036584198474884, 0.08808405697345734, 0.11798469722270966, -0.08299075812101364, 1.1216275691986084, -0.008892294950783253, -0.001330249011516571, 0.04746951535344124, -0.3809545636177063, -0.16830645501613617, -0.2510814964771271, 0.3866230845451355, -0.10133861005306244, -0.375489741563797, 0.1660294532775879]} +{"t": 10.6498, "q": [-0.1379440724849701, 0.0054507446475327015, -0.00958859734237194, 0.3157784640789032, -0.18508492410182953, -0.01065060030668974, -0.07719843834638596, -0.0332021601498127, 0.009722515940666199, 0.32204222679138184, -0.26851320266723633, 0.024853622540831566, 0.011088489554822445, -0.008120238780975342, 0.034464433789253235, 0.08746087551116943, 0.11804462224245071, -0.08299075812101364, 1.121651530265808, -0.008868326433002949, -0.001282312092371285, 0.047457531094551086, -0.378665566444397, -0.17252489924430847, -0.24906815588474274, 0.3916085362434387, -0.1089126393198967, -0.36978524923324585, 0.16897757351398468]} +{"t": 10.6666, "q": [-0.1379355490207672, 0.005442222114652395, -0.009615381248295307, 0.31580403447151184, -0.18508924543857574, -0.010657737031579018, -0.07720695436000824, -0.0332021601498127, 0.00965555664151907, 0.32204222679138184, -0.2685089707374573, 0.024846356362104416, 0.011088489554822445, -0.008315510116517544, 0.034671537578105927, 0.08735302090644836, 0.11800866574048996, -0.08300274610519409, 1.1216754913330078, -0.008856342174112797, -0.0013542174128815532, 0.047457531094551086, -0.3769637942314148, -0.1767074018716812, -0.2473064661026001, 0.3976605534553528, -0.11682222783565521, -0.3647279143333435, 0.1712665557861328]} +{"t": 10.6833, "q": [-0.13787588477134705, 0.005433700513094664, -0.00958859734237194, 0.3157869875431061, -0.18508502840995789, -0.01066482625901699, -0.077224001288414, -0.03321920707821846, 0.009722515940666199, 0.32204222679138184, -0.2685089707374573, 0.024846356362104416, 0.011101881042122841, -0.008247742429375648, 0.034695520997047424, 0.08736500144004822, 0.1179247796535492, -0.08301472663879395, 1.1217714548110962, -0.008868326433002949, -0.001342233270406723, 0.047445546835660934, -0.3751901388168335, -0.18074607849121094, -0.2450055032968521, 0.40300554037094116, -0.12183163315057755, -0.3578609526157379, 0.17310014367103577]} +{"t": 10.7001, "q": [-0.13786736130714417, 0.0054507446475327015, -0.009615381248295307, 0.31580403447151184, -0.1850893497467041, -0.010671945288777351, -0.077224001288414, -0.033193640410900116, 0.00966894906014204, 0.32203370332717896, -0.2685130834579468, 0.024839181452989578, 0.011101881042122841, -0.008134757168591022, 0.03475755825638771, 0.08735302090644836, 0.1179247796535492, -0.08299075812101364, 1.1218312978744507, -0.008808405138552189, -0.001318264752626419, 0.047457531094551086, -0.3728412389755249, -0.18448516726493835, -0.24301612377166748, 0.4079190492630005, -0.1287345439195633, -0.3511258065700531, 0.17500564455986023]} +{"t": 10.7168, "q": [-0.13787588477134705, 0.005484832916408777, -0.009628772735595703, 0.3157869875431061, -0.18507662415504456, -0.010678987950086594, -0.07726661115884781, -0.03321068361401558, 0.009642165154218674, 0.3220251798629761, -0.2685130834579468, 0.024839181452989578, 0.011101881042122841, -0.008036787621676922, 0.03483843430876732, 0.08732905238866806, 0.11791279166936874, -0.08299075812101364, 1.1218912601470947, -0.008832373656332493, -0.001342233270406723, 0.047457531094551086, -0.37075597047805786, -0.1874212920665741, -0.24123047292232513, 0.41261687874794006, -0.13663215935230255, -0.3463081419467926, 0.17625200748443604]} +{"t": 10.7336, "q": [-0.13787588477134705, 0.005561531987041235, -0.009642165154218674, 0.31580403447151184, -0.18508082628250122, -0.010671907104551792, -0.07724104821681976, -0.03321068361401558, 0.00966894906014204, 0.3220507502555847, -0.2685088515281677, 0.02483193390071392, 0.011128664948046207, -0.007931334897875786, 0.03489570692181587, 0.08734103292226791, 0.11791279166936874, -0.0830267146229744, 1.12187922000885, -0.008832373656332493, -0.001342233270406723, 0.047457531094551086, -0.3684789836406708, -0.19042934477329254, -0.23902536928653717, 0.41771018505096436, -0.141809344291687, -0.3403400182723999, 0.17681525647640228]} +{"t": 10.7503, "q": [-0.13788440823554993, 0.005706407595425844, -0.009722515940666199, 0.3157443702220917, -0.18508082628250122, -0.010671907104551792, -0.07723252475261688, -0.033193640410900116, 0.00966894906014204, 0.32203370332717896, -0.26851320266723633, 0.024853622540831566, 0.011115273460745811, -0.007923819124698639, 0.03489101678133011, 0.08732905238866806, 0.1179247796535492, -0.08301472663879395, 1.1218912601470947, -0.008832373656332493, -0.001342233270406723, 0.04746951535344124, -0.3663337826728821, -0.19277824461460114, -0.2376471906900406, 0.4219885468482971, -0.14776550233364105, -0.3359657824039459, 0.17694708704948425]} +{"t": 10.7671, "q": [-0.1378503292798996, 0.005868328269571066, -0.009722515940666199, 0.3157443702220917, -0.18508093059062958, -0.01068610604852438, -0.07721547782421112, -0.033193640410900116, 0.00965555664151907, 0.3220592737197876, -0.26852142810821533, 0.02483927272260189, 0.01091439463198185, -0.007825883105397224, 0.034952979534864426, 0.08738896995782852, 0.11788882315158844, -0.08301472663879395, 1.1219033002853394, -0.008856342174112797, -0.001342233270406723, 0.047457531094551086, -0.36451220512390137, -0.19439612329006195, -0.2368442416191101, 0.4250684976577759, -0.15465642511844635, -0.33251431584358215, 0.176983043551445]} +{"t": 10.7838, "q": [-0.13784180581569672, 0.006038770545274019, -0.009722515940666199, 0.31575289368629456, -0.18508093059062958, -0.01068610604852438, -0.07725808769464493, -0.0332021601498127, 0.00966894906014204, 0.3220677971839905, -0.2685171663761139, 0.02483200654387474, 0.01057959720492363, -0.007727947551757097, 0.03501494228839874, 0.08743690699338913, 0.11786485463380814, -0.08299075812101364, 1.121927261352539, -0.00882038939744234, -0.001342233270406723, 0.04746951535344124, -0.3631339967250824, -0.1953308880329132, -0.23618510365486145, 0.427081823348999, -0.15942615270614624, -0.32877522706985474, 0.176983043551445]} +{"t": 10.8006, "q": [-0.13785885274410248, 0.006166602019220591, -0.009722515940666199, 0.31576141715049744, -0.18507662415504456, -0.010678987950086594, -0.07724957168102264, -0.033176593482494354, 0.009682340547442436, 0.3220677971839905, -0.26851293444633484, 0.024824758991599083, 0.010043921880424023, -0.007622480858117342, 0.03508166968822479, 0.08736500144004822, 0.11791279166936874, -0.0830267146229744, 1.1219631433486938, -0.00882038939744234, -0.001306280493736267, 0.047457531094551086, -0.3621033728122711, -0.19573834538459778, -0.2358495593070984, 0.4290112853050232, -0.16431571543216705, -0.3261387050151825, 0.176983043551445]} +{"t": 10.8173, "q": [-0.13784180581569672, 0.0062688677571713924, -0.009709124453365803, 0.3157869875431061, -0.18506810069084167, -0.010678931139409542, -0.07724957168102264, -0.033176593482494354, 0.009709124453365803, 0.32209333777427673, -0.26851293444633484, 0.024824758991599083, 0.00966894906014204, -0.007486911956220865, 0.03514854609966278, 0.08736500144004822, 0.11788882315158844, -0.08301472663879395, 1.1219871044158936, -0.00882038939744234, -0.001330249011516571, 0.04748149961233139, -0.36157605051994324, -0.1958102583885193, -0.23576566576957703, 0.4306531250476837, -0.167851060628891, -0.3235860764980316, 0.17697104811668396]} +{"t": 10.8341, "q": [-0.13779066503047943, 0.006379655096679926, -0.00965555664151907, 0.31579551100730896, -0.1850724220275879, -0.01068606786429882, -0.077224001288414, -0.03315955027937889, 0.009749299846589565, 0.3221530020236969, -0.26851293444633484, 0.024824758991599083, 0.009307367727160454, -0.007343843579292297, 0.03520127758383751, 0.08734103292226791, 0.11788882315158844, -0.08300274610519409, 1.1220110654830933, -0.008868326433002949, -0.001330249011516571, 0.04746951535344124, -0.36134836077690125, -0.1958102583885193, -0.23578962683677673, 0.4316598176956177, -0.17362745106220245, -0.31888824701309204, 0.17687517404556274]} +{"t": 10.8508, "q": [-0.13777361810207367, 0.006413743365556002, -0.009642165154218674, 0.31579551100730896, -0.18507662415504456, -0.010678987950086594, -0.07720695436000824, -0.033176593482494354, 0.009722515940666199, 0.32217004895210266, -0.26851293444633484, 0.024824758991599083, 0.009079704992473125, -0.007261060178279877, 0.03520641475915909, 0.08730508387088776, 0.11788882315158844, -0.08299075812101364, 1.122035026550293, -0.008868326433002949, -0.001306280493736267, 0.047457531094551086, -0.3613603413105011, -0.19604994356632233, -0.23583756387233734, 0.4329301416873932, -0.1781335175037384, -0.3152090907096863, 0.17682723701000214]} +{"t": 10.8676, "q": [-0.13779066503047943, 0.006413743365556002, -0.00965555664151907, 0.31579551100730896, -0.18508093059062958, -0.01068610604852438, -0.07720695436000824, -0.033176593482494354, 0.009749299846589565, 0.3221956193447113, -0.26850447058677673, 0.02481026202440262, 0.009079704992473125, -0.007223460823297501, 0.03519241511821747, 0.08720920979976654, 0.11786485463380814, -0.08299075812101364, 1.122023105621338, -0.008868326433002949, -0.001318264752626419, 0.04746951535344124, -0.36142027378082275, -0.19631358981132507, -0.23576566576957703, 0.4342963397502899, -0.1817527562379837, -0.3129321038722992, 0.17682723701000214]} +{"t": 10.8843, "q": [-0.13779066503047943, 0.0064307874999940395, -0.009642165154218674, 0.3157784640789032, -0.1850767284631729, -0.010693186894059181, -0.07716434448957443, -0.033193640410900116, 0.009749299846589565, 0.32227233052253723, -0.26851293444633484, 0.024824758991599083, 0.009106488898396492, -0.007215944584459066, 0.035187724977731705, 0.08719722181558609, 0.11786485463380814, -0.0830267146229744, 1.122035026550293, -0.0088803106918931, -0.0013542174128815532, 0.04746951535344124, -0.36179178953170776, -0.19637350738048553, -0.23583756387233734, 0.4352790415287018, -0.18525215983390808, -0.31114643812179565, 0.1766354888677597]} +{"t": 10.9012, "q": [-0.1377991884946823, 0.006413743365556002, -0.009642165154218674, 0.3157869875431061, -0.18508513271808624, -0.010679026134312153, -0.07713878154754639, -0.033176593482494354, 0.009749299846589565, 0.32230639457702637, -0.26851293444633484, 0.024824758991599083, 0.009133272804319859, -0.007231028750538826, 0.035168733447790146, 0.08725714683532715, 0.11786485463380814, -0.0830267146229744, 1.1221189498901367, -0.00882038939744234, -0.001342233270406723, 0.04748149961233139, -0.36247488856315613, -0.19636152684688568, -0.23586153984069824, 0.4354707896709442, -0.18667827546596527, -0.31040340662002563, 0.17645573616027832]} +{"t": 10.918, "q": [-0.13779066503047943, 0.006362610962241888, -0.009628772735595703, 0.31580403447151184, -0.18507662415504456, -0.010678987950086594, -0.07709617167711258, -0.03315955027937889, 0.009816259145736694, 0.32235753536224365, -0.26851293444633484, 0.024824758991599083, 0.009160056710243225, -0.007185981143265963, 0.03511220961809158, 0.08732905238866806, 0.11784088611602783, -0.0830267146229744, 1.1221429109573364, -0.008868326433002949, -0.001318264752626419, 0.04748149961233139, -0.36339765787124634, -0.196205735206604, -0.2358495593070984, 0.4354468286037445, -0.18713366985321045, -0.31040340662002563, 0.17625200748443604]} +{"t": 10.9347, "q": [-0.13782475888729095, 0.006302956026047468, -0.009628772735595703, 0.31579551100730896, -0.18507662415504456, -0.010678987950086594, -0.07707912474870682, -0.03321068361401558, 0.009869826957583427, 0.3223745822906494, -0.2685047388076782, 0.024839108809828758, 0.009119881317019463, -0.0071258521638810635, 0.03507467731833458, 0.08737698942422867, 0.11785287410020828, -0.0830267146229744, 1.1221668720245361, -0.008916263468563557, -0.001318264752626419, 0.04746951535344124, -0.36439234018325806, -0.19604994356632233, -0.2359693944454193, 0.4347517490386963, -0.18698987364768982, -0.310487300157547, 0.17592842876911163]} +{"t": 10.9516, "q": [-0.13777361810207367, 0.006260345224291086, -0.009508245624601841, 0.31580403447151184, -0.18508082628250122, -0.010671907104551792, -0.07707912474870682, -0.033176593482494354, 0.009869826957583427, 0.322519451379776, -0.2685087025165558, 0.024817511439323425, 0.008892218582332134, -0.006953008472919464, 0.03494785353541374, 0.08746087551116943, 0.11787684261798859, -0.08303869515657425, 1.1222867965698242, -0.008892294950783253, -0.001330249011516571, 0.04748149961233139, -0.3650994300842285, -0.19600200653076172, -0.2361731231212616, 0.4324268102645874, -0.18646256625652313, -0.31241676211357117, 0.17565278708934784]} +{"t": 10.9684, "q": [-0.13774806261062622, 0.0062688677571713924, -0.009360934607684612, 0.31579551100730896, -0.18508502840995789, -0.01066482625901699, -0.07705356180667877, -0.0332021601498127, 0.009883219376206398, 0.3226132094860077, -0.2684961259365082, 0.0248101893812418, 0.008490461856126785, -0.0067652687430381775, 0.03473598137497902, 0.0875687301158905, 0.11791279166936874, -0.08303869515657425, 1.1223706007003784, -0.008832373656332493, -0.001330249011516571, 0.04748149961233139, -0.36609411239624023, -0.19517509639263153, -0.23646074533462524, 0.42780089378356934, -0.18600715696811676, -0.3140586018562317, 0.17540112137794495]} +{"t": 10.9851, "q": [-0.13776510953903198, 0.006217735353857279, -0.009267191402614117, 0.3157784640789032, -0.18508924543857574, -0.010657737031579018, -0.07702799141407013, -0.033176593482494354, 0.009869826957583427, 0.3226643204689026, -0.26848354935646057, 0.02480286732316017, 0.008517245762050152, -0.006630152929574251, 0.03448105230927467, 0.08719722181558609, 0.11786485463380814, -0.08303869515657425, 1.1224905252456665, -0.008856342174112797, -0.001318264752626419, 0.04748149961233139, -0.3691021502017975, -0.19319769740104675, -0.23630495369434357, 0.42238402366638184, -0.18521620333194733, -0.3162996470928192, 0.17519739270210266]} +{"t": 11.0021, "q": [-0.13776510953903198, 0.006089902948588133, -0.009360934607684612, 0.31579551100730896, -0.18508502840995789, -0.01066482625901699, -0.07683198153972626, -0.033176593482494354, 0.009869826957583427, 0.3227836489677429, -0.26848354935646057, 0.02480286732316017, 0.008758299984037876, -0.006592878140509129, 0.034211430698633194, 0.08672983944416046, 0.11788882315158844, -0.08303869515657425, 1.1224905252456665, -0.008832373656332493, -0.001270327833481133, 0.04748149961233139, -0.3726375102996826, -0.19160379469394684, -0.23628097772598267, 0.4163080155849457, -0.18435333669185638, -0.31900808215141296, 0.17500564455986023]} +{"t": 11.0188, "q": [-0.13777361810207367, 0.0059620714746415615, -0.009481461718678474, 0.31579551100730896, -0.18508924543857574, -0.010657737031579018, -0.07665301859378815, -0.033193640410900116, 0.009856435470283031, 0.32291147112846375, -0.2684877812862396, 0.02481011673808098, 0.009026138111948967, -0.006585648749023676, 0.03398900851607323, 0.0866219773888588, 0.11780493706464767, -0.0830506831407547, 1.122538447380066, -0.008832373656332493, -0.0012463594321161509, 0.04748149961233139, -0.37642452120780945, -0.1903694123029709, -0.23636487126350403, 0.4100162982940674, -0.1835503876209259, -0.3211173117160797, 0.1748138964176178]} +{"t": 11.0356, "q": [-0.13778214156627655, 0.005817195866256952, -0.009481461718678474, 0.3157784640789032, -0.18509355187416077, -0.010664856061339378, -0.07654223591089249, -0.033176593482494354, 0.009856435470283031, 0.3229881823062897, -0.26848354935646057, 0.02480286732316017, 0.009293975308537483, -0.006563364528119564, 0.03376663848757744, 0.08675380796194077, 0.11780493706464767, -0.08303869515657425, 1.1225624084472656, -0.008856342174112797, -0.001270327833481133, 0.04748149961233139, -0.38052311539649963, -0.18932679295539856, -0.23634091019630432, 0.40313735604286194, -0.18281935155391693, -0.32405343651771545, 0.17465810477733612]} +{"t": 11.0523, "q": [-0.13776510953903198, 0.005723452661186457, -0.009535029530525208, 0.3158125579357147, -0.18508924543857574, -0.010657737031579018, -0.07647405564785004, -0.033176593482494354, 0.009869826957583427, 0.3231160044670105, -0.26847946643829346, 0.02481004223227501, 0.009374327026307583, -0.0065483227372169495, 0.033757228404283524, 0.08695753663778305, 0.11782890558242798, -0.083074651658535, 1.1226342916488647, -0.008892294950783253, -0.001318264752626419, 0.04748149961233139, -0.3857482373714447, -0.18815234303474426, -0.23635289072990417, 0.3976605534553528, -0.18169283866882324, -0.33029723167419434, 0.1744903177022934]} +{"t": 11.069, "q": [-0.13779066503047943, 0.0056297085247933865, -0.009575205855071545, 0.31583812832832336, -0.18508924543857574, -0.010657737031579018, -0.07643144577741623, -0.03321920707821846, 0.009843043051660061, 0.32322677969932556, -0.26847946643829346, 0.02481004223227501, 0.00965555664151907, -0.0065483227372169495, 0.033757228404283524, 0.08704143017530441, 0.11779294908046722, -0.08303869515657425, 1.1226942539215088, -0.008916263468563557, -0.001318264752626419, 0.04749348387122154, -0.3899666965007782, -0.1870977282524109, -0.23635289072990417, 0.39180028438568115, -0.18036259710788727, -0.3366968035697937, 0.17433452606201172]} +{"t": 11.0857, "q": [-0.13786736130714417, 0.005535965319722891, -0.009615381248295307, 0.3158807158470154, -0.18508492410182953, -0.01065060030668974, -0.0763547495007515, -0.033193640410900116, 0.009869826957583427, 0.32331201434135437, -0.26847097277641296, 0.0247955285012722, 0.009789476171135902, -0.006518188398331404, 0.03377626836299896, 0.08713730424642563, 0.11785287410020828, -0.08301472663879395, 1.1227061748504639, -0.008916263468563557, -0.0013542174128815532, 0.04748149961233139, -0.3940053880214691, -0.18526414036750793, -0.23635289072990417, 0.3848014771938324, -0.17863686382770538, -0.34240129590034485, 0.17427460849285126]} +{"t": 11.1025, "q": [-0.1378929316997528, 0.005484832916408777, -0.009615381248295307, 0.3159233331680298, -0.185076504945755, -0.010664770379662514, -0.07634622603654861, -0.03321920707821846, 0.009869826957583427, 0.32337167859077454, -0.26847097277641296, 0.0247955285012722, 0.00973590835928917, -0.006525709293782711, 0.03378097340464592, 0.08735302090644836, 0.11785287410020828, -0.08303869515657425, 1.122778058052063, -0.008916263468563557, -0.001342233270406723, 0.04749348387122154, -0.397756427526474, -0.18250776827335358, -0.23638884723186493, 0.376831978559494, -0.17614413797855377, -0.347878098487854, 0.1742146760225296]} +{"t": 11.1192, "q": [-0.13786736130714417, 0.005476311314851046, -0.009548421949148178, 0.3159233331680298, -0.18508924543857574, -0.010657737031579018, -0.07634622603654861, -0.033193640410900116, 0.00991000235080719, 0.32340577244758606, -0.26847535371780396, 0.024817217141389847, 0.009642165154218674, -0.006518175825476646, 0.033785734325647354, 0.0875447690486908, 0.11784088611602783, -0.08301472663879395, 1.122778058052063, -0.008868326433002949, -0.0013662016717717052, 0.04748149961233139, -0.4014236032962799, -0.17961956560611725, -0.23640082776546478, 0.3696773946285248, -0.17462214827537537, -0.3542656898498535, 0.17408286035060883]} +{"t": 11.136, "q": [-0.1378503292798996, 0.005459266249090433, -0.009508245624601841, 0.31588923931121826, -0.18508492410182953, -0.01065060030668974, -0.07638031244277954, -0.0332021601498127, 0.009883219376206398, 0.3234824538230896, -0.26847097277641296, 0.0247955285012722, 0.009387718513607979, -0.006495574954897165, 0.03380001708865166, 0.08762865513563156, 0.11782890558242798, -0.0830267146229744, 1.1228259801864624, -0.008856342174112797, -0.0013901700731366873, 0.04748149961233139, -0.4052945077419281, -0.1767074018716812, -0.23635289072990417, 0.36231908202171326, -0.17375928163528442, -0.3608929514884949, 0.17402292788028717]} +{"t": 11.1527, "q": [-0.13784180581569672, 0.005459266249090433, -0.009468070231378078, 0.3159148097038269, -0.18508492410182953, -0.01065060030668974, -0.07636326551437378, -0.03321920707821846, 0.009829651564359665, 0.32346540689468384, -0.2684626281261444, 0.024795453995466232, 0.00932075921446085, -0.006488054059445858, 0.0337953120470047, 0.08744889497756958, 0.11782890558242798, -0.0830506831407547, 1.1228619813919067, -0.0088803106918931, -0.0013901700731366873, 0.04748149961233139, -0.40807485580444336, -0.17422667145729065, -0.2362689971923828, 0.3543735444545746, -0.17319601774215698, -0.3664536476135254, 0.17403492331504822]} +{"t": 11.1694, "q": [-0.13784180581569672, 0.005467788781970739, -0.009481461718678474, 0.3158807158470154, -0.18508924543857574, -0.010657737031579018, -0.07636326551437378, -0.03322772681713104, 0.009869826957583427, 0.3234313130378723, -0.2684752345085144, 0.02480279467999935, 0.009387718513607979, -0.0064729866571724415, 0.03380483016371727, 0.08718524128198624, 0.11775700002908707, -0.0830267146229744, 1.122838020324707, -0.008868326433002949, -0.0013542174128815532, 0.04748149961233139, -0.41042375564575195, -0.17173394560813904, -0.2361970990896225, 0.34657180309295654, -0.17197363078594208, -0.37534594535827637, 0.17410682141780853]} +{"t": 11.1862, "q": [-0.1378503292798996, 0.005467788781970739, -0.009508245624601841, 0.315863698720932, -0.1850934475660324, -0.010650656186044216, -0.0763547495007515, -0.0332021601498127, 0.009843043051660061, 0.3234313130378723, -0.26847946643829346, 0.02481004223227501, 0.009454678744077682, -0.006450373213738203, 0.033828578889369965, 0.08704143017530441, 0.11781691759824753, -0.0830506831407547, 1.1228140592575073, -0.008856342174112797, -0.0013662016717717052, 0.04748149961233139, -0.4118139445781708, -0.16903749108314514, -0.23607724905014038, 0.33772745728492737, -0.17041568458080292, -0.3835551142692566, 0.17417873442173004]} +{"t": 11.2029, "q": [-0.13782475888729095, 0.005459266249090433, -0.009548421949148178, 0.31584665179252625, -0.18508924543857574, -0.010657737031579018, -0.07640587538480759, -0.03321068361401558, 0.009869826957583427, 0.32337167859077454, -0.26847535371780396, 0.024817217141389847, 0.00940111093223095, -0.006359945051372051, 0.03390463441610336, 0.08710134774446487, 0.11780493706464767, -0.08303869515657425, 1.122849941253662, -0.008892294950783253, -0.001342233270406723, 0.04748149961233139, -0.4129524230957031, -0.16608937084674835, -0.23600535094738007, 0.3291587233543396, -0.16858209669589996, -0.3899427354335785, 0.17420269548892975]} +{"t": 11.2196, "q": [-0.13777361810207367, 0.005467788781970739, -0.009508245624601841, 0.315863698720932, -0.18508924543857574, -0.010657737031579018, -0.07644849270582199, -0.033193640410900116, 0.009843043051660061, 0.3232949674129486, -0.26846686005592346, 0.02480270341038704, 0.00933415163308382, -0.006269529461860657, 0.03397122770547867, 0.08732905238866806, 0.11779294908046722, -0.0830267146229744, 1.122897982597351, -0.0088803106918931, -0.0013781859306618571, 0.04748149961233139, -0.4135875999927521, -0.16242220997810364, -0.23607724905014038, 0.32133302092552185, -0.16528643667697906, -0.3978523015975952, 0.1742386519908905]} +{"t": 11.2365, "q": [-0.13779066503047943, 0.005501877050846815, -0.009481461718678474, 0.3158125579357147, -0.18508924543857574, -0.010657737031579018, -0.07649961858987808, -0.033193640410900116, 0.009843043051660061, 0.32322677969932556, -0.2684793174266815, 0.024795619770884514, 0.009119881317019463, -0.006133927032351494, 0.03405690938234329, 0.08749683201313019, 0.11780493706464767, -0.08303869515657425, 1.122897982597351, -0.008928247727453709, -0.0013781859306618571, 0.047505468130111694, -0.4135276675224304, -0.15816780924797058, -0.23628097772598267, 0.3129321038722992, -0.1627577692270279, -0.40463536977767944, 0.1742386519908905]} +{"t": 11.2533, "q": [-0.13772249221801758, 0.005570054519921541, -0.009468070231378078, 0.31580403447151184, -0.18508924543857574, -0.010657737031579018, -0.07661040872335434, -0.033176593482494354, 0.009789476171135902, 0.3231671452522278, -0.2684793174266815, 0.024795619770884514, 0.00881186779588461, -0.005990763660520315, 0.03416629135608673, 0.08744889497756958, 0.11782890558242798, -0.08303869515657425, 1.1229219436645508, -0.008856342174112797, -0.001342233270406723, 0.04749348387122154, -0.4131321907043457, -0.15423697233200073, -0.23628097772598267, 0.3054179847240448, -0.16090020537376404, -0.4107593297958374, 0.17431055009365082]} +{"t": 11.27, "q": [-0.1377139687538147, 0.005604142788797617, -0.009374327026307583, 0.3158296048641205, -0.1850893497467041, -0.010671945288777351, -0.07664449512958527, -0.0332021601498127, 0.009789476171135902, 0.32305634021759033, -0.26847946643829346, 0.02481004223227501, 0.008637772873044014, -0.005689464975148439, 0.03436605632305145, 0.08719722181558609, 0.11776898056268692, -0.08300274610519409, 1.122897982597351, -0.008892294950783253, -0.0013542174128815532, 0.04749348387122154, -0.41312021017074585, -0.15048591792583466, -0.23630495369434357, 0.2977001368999481, -0.15788018703460693, -0.41975948214530945, 0.17434650659561157]} +{"t": 11.2868, "q": [-0.13769692182540894, 0.0056297085247933865, -0.00932075921446085, 0.3158125579357147, -0.18508924543857574, -0.010657737031579018, -0.07672972232103348, -0.03321920707821846, 0.009749299846589565, 0.32296261191368103, -0.26848354935646057, 0.02480286732316017, 0.008544029667973518, -0.005350630730390549, 0.03458936884999275, 0.0869695246219635, 0.11780493706464767, -0.08303869515657425, 1.122897982597351, -0.008916263468563557, -0.001330249011516571, 0.04748149961233139, -0.41289252042770386, -0.14731009304523468, -0.23623304069042206, 0.2887119650840759, -0.1561184972524643, -0.42642271518707275, 0.17437048256397247]} +{"t": 11.3036, "q": [-0.13758613169193268, 0.005621186923235655, -0.009267191402614117, 0.3158125579357147, -0.18509775400161743, -0.010657775215804577, -0.07677233219146729, -0.03321920707821846, 0.009749299846589565, 0.322894424200058, -0.26848354935646057, 0.02480286732316017, 0.008115489035844803, -0.005026891827583313, 0.034765344113111496, 0.08700547367334366, 0.11776898056268692, -0.0830506831407547, 1.1229219436645508, -0.008892294950783253, -0.001306280493736267, 0.04748149961233139, -0.41182592511177063, -0.14419420063495636, -0.2359214574098587, 0.2805746793746948, -0.15480023622512817, -0.4333016574382782, 0.17452627420425415]} +{"t": 11.3203, "q": [-0.1374838799238205, 0.0056297085247933865, -0.009173448197543621, 0.3158210813999176, -0.18508502840995789, -0.01066482625901699, -0.07680641859769821, -0.03326181694865227, 0.009762692265212536, 0.32281774282455444, -0.2684877812862396, 0.02481011673808098, 0.007901218719780445, -0.004590183030813932, 0.035040974617004395, 0.08686166256666183, 0.11778096854686737, -0.0830267146229744, 1.1229338645935059, -0.008916263468563557, -0.001318264752626419, 0.047505468130111694, -0.41017210483551025, -0.14153370261192322, -0.23568177223205566, 0.2737436592578888, -0.15430888533592224, -0.4403843283653259, 0.17492175102233887]} +{"t": 11.3371, "q": [-0.13751795887947083, 0.005612664390355349, -0.009133272804319859, 0.3158125579357147, -0.18509775400161743, -0.010657775215804577, -0.07683198153972626, -0.03325329348444939, 0.009762692265212536, 0.3227836489677429, -0.2684752345085144, 0.02480279467999935, 0.007847650907933712, -0.00411579292267561, 0.03537798672914505, 0.08663396537303925, 0.11779294908046722, -0.08303869515657425, 1.122897982597351, -0.008892294950783253, -0.001330249011516571, 0.04749348387122154, -0.4075595438480377, -0.13898105919361115, -0.2355499416589737, 0.26741600036621094, -0.15403324365615845, -0.4464842975139618, 0.1751134991645813]} +{"t": 11.3538, "q": [-0.13760317862033844, 0.0056297085247933865, -0.009106488898396492, 0.3157869875431061, -0.18508924543857574, -0.010657737031579018, -0.07689163833856583, -0.0332021601498127, 0.009749299846589565, 0.3226984143257141, -0.26848354935646057, 0.02480286732316017, 0.007794083096086979, -0.003611290827393532, 0.035762131214141846, 0.08653809130191803, 0.11782890558242798, -0.08303869515657425, 1.122897982597351, -0.008868326433002949, -0.0013542174128815532, 0.04749348387122154, -0.4051626920700073, -0.13630858063697815, -0.23547804355621338, 0.2613160312175751, -0.15388943254947662, -0.45235657691955566, 0.1751614362001419]} +{"t": 11.3706, "q": [-0.13755205273628235, 0.005638231057673693, -0.00906631350517273, 0.31580403447151184, -0.18508924543857574, -0.010657737031579018, -0.07689163833856583, -0.03321920707821846, 0.009762692265212536, 0.32268989086151123, -0.26848354935646057, 0.02480286732316017, 0.0076869479380548, -0.002964078914374113, 0.03625466674566269, 0.08651412278413773, 0.11780493706464767, -0.083074651658535, 1.1229099035263062, -0.008892294950783253, -0.001342233270406723, 0.04748149961233139, -0.4033770263195038, -0.13373197615146637, -0.23546606302261353, 0.25665417313575745, -0.15375761687755585, -0.4597867727279663, 0.17524532973766327]} +{"t": 11.3873, "q": [-0.13758613169193268, 0.005587098654359579, -0.00898596178740263, 0.31580403447151184, -0.1850934475660324, -0.010650656186044216, -0.07693424820899963, -0.03321920707821846, 0.009749299846589565, 0.32268989086151123, -0.26848354935646057, 0.02480286732316017, 0.007539637386798859, -0.0023695591371506453, 0.036676231771707535, 0.08646618574857712, 0.11782890558242798, -0.08303869515657425, 1.122897982597351, -0.008856342174112797, -0.0013542174128815532, 0.04749348387122154, -0.4014955163002014, -0.13181449472904205, -0.23540613055229187, 0.2518724501132965, -0.15370967984199524, -0.46546730399131775, 0.17530524730682373]} +{"t": 11.4041, "q": [-0.13758613169193268, 0.005587098654359579, -0.008959177881479263, 0.31579551100730896, -0.18509355187416077, -0.010664856061339378, -0.0769939050078392, -0.03321920707821846, 0.009789476171135902, 0.32268136739730835, -0.26848354935646057, 0.02480286732316017, 0.007499461527913809, -0.0017374266171827912, 0.037092775106430054, 0.08646618574857712, 0.11782890558242798, -0.08303869515657425, 1.1229099035263062, -0.008856342174112797, -0.0013542174128815532, 0.04749348387122154, -0.40000948309898376, -0.12948955595493317, -0.23528629541397095, 0.24789370596408844, -0.1537216603755951, -0.47038084268569946, 0.1754131019115448]} +{"t": 11.4208, "q": [-0.13759465515613556, 0.005578576121479273, -0.008892218582332134, 0.3157869875431061, -0.18508502840995789, -0.01066482625901699, -0.07705356180667877, -0.033185116946697235, 0.009749299846589565, 0.322706937789917, -0.2684877812862396, 0.02481011673808098, 0.007378934416919947, -0.0011507108574733138, 0.03743307292461395, 0.08651412278413773, 0.11782890558242798, -0.08303869515657425, 1.1229099035263062, -0.008868326433002949, -0.0013662016717717052, 0.04748149961233139, -0.3988589942455292, -0.12710469961166382, -0.23519042134284973, 0.24567662179470062, -0.15373364090919495, -0.47298142313957214, 0.1754850149154663]} +{"t": 11.4376, "q": [-0.13756057620048523, 0.005604142788797617, -0.008892218582332134, 0.31580403447151184, -0.18508924543857574, -0.010657737031579018, -0.07704503834247589, -0.033193640410900116, 0.009749299846589565, 0.3227495551109314, -0.2684877812862396, 0.02481011673808098, 0.007378934416919947, -0.0007671397761441767, 0.03766455501317978, 0.08635832369327545, 0.11773303151130676, -0.08303869515657425, 1.122897982597351, -0.008892294950783253, -0.001342233270406723, 0.04746951535344124, -0.3972770571708679, -0.12440824508666992, -0.23520240187644958, 0.2446339875459671, -0.1538175344467163, -0.47522246837615967, 0.17561683058738708]} +{"t": 11.4543, "q": [-0.13767987489700317, 0.0056297085247933865, -0.0089993542060256, 0.3157869875431061, -0.18508924543857574, -0.010657737031579018, -0.07703651487827301, -0.03315955027937889, 0.009695732034742832, 0.3227154612541199, -0.26848354935646057, 0.02480286732316017, 0.007633380591869354, -0.000564072746783495, 0.03777322173118591, 0.08608268946409225, 0.11775700002908707, -0.0830267146229744, 1.122897982597351, -0.008868326433002949, -0.001306280493736267, 0.04748149961233139, -0.39482030272483826, -0.1221671923995018, -0.2349746972322464, 0.24423851072788239, -0.15392538905143738, -0.4779309034347534, 0.17572470009326935]} +{"t": 11.4711, "q": [-0.13769692182540894, 0.005612664390355349, -0.009160056710243225, 0.3158296048641205, -0.18508924543857574, -0.010657737031579018, -0.07701946794986725, -0.03321920707821846, 0.00973590835928917, 0.322706937789917, -0.26848354935646057, 0.02480286732316017, 0.007928002625703812, -0.00045878105447627604, 0.03785824030637741, 0.08595086634159088, 0.11780493706464767, -0.08306266367435455, 1.1228740215301514, -0.008856342174112797, -0.001330249011516571, 0.04748149961233139, -0.3922197222709656, -0.12027368694543839, -0.23489081859588623, 0.24413065612316132, -0.1540692001581192, -0.48072323203086853, 0.17585651576519012]} +{"t": 11.4878, "q": [-0.13769692182540894, 0.005655275192111731, -0.00925379991531372, 0.31583812832832336, -0.18508093059062958, -0.01068610604852438, -0.07700242847204208, -0.03316807374358177, 0.009789476171135902, 0.3226984143257141, -0.26848354935646057, 0.02480286732316017, 0.008209232240915298, -0.00042869706521742046, 0.03786769136786461, 0.08596284687519073, 0.11774501204490662, -0.0830267146229744, 1.1229099035263062, -0.008856342174112797, -0.001330249011516571, 0.04748149961233139, -0.3891397714614868, -0.11821239441633224, -0.23484288156032562, 0.2440108060836792, -0.15414109826087952, -0.48301219940185547, 0.1759404093027115]} +{"t": 11.5045, "q": [-0.13772249221801758, 0.005723452661186457, -0.009293975308537483, 0.31583812832832336, -0.18508070707321167, -0.010657689534127712, -0.0769939050078392, -0.033176593482494354, 0.009749299846589565, 0.3226643204689026, -0.2684877812862396, 0.02481011673808098, 0.008450286462903023, -0.00044373905984684825, 0.03785824403166771, 0.0860467404127121, 0.11774501204490662, -0.0830267146229744, 1.122897982597351, -0.008868326433002949, -0.001330249011516571, 0.04749348387122154, -0.38576021790504456, -0.11664246767759323, -0.2347709685564041, 0.2439868450164795, -0.1543688029050827, -0.4844023883342743, 0.17620407044887543]} +{"t": 11.5212, "q": [-0.1377139687538147, 0.005731974262744188, -0.009374327026307583, 0.3157869875431061, -0.18508924543857574, -0.010657737031579018, -0.07697685807943344, -0.033176593482494354, 0.009749299846589565, 0.3226643204689026, -0.26848354935646057, 0.02480286732316017, 0.008490461856126785, -0.00048134406097233295, 0.03786294907331467, 0.0860707089304924, 0.11778096854686737, -0.08299075812101364, 1.1229099035263062, -0.008868326433002949, -0.0013662016717717052, 0.04749348387122154, -0.3829559087753296, -0.11568372696638107, -0.23450732231140137, 0.24459803104400635, -0.15478825569152832, -0.48469001054763794, 0.17677929997444153]} +{"t": 11.538, "q": [-0.13769692182540894, 0.005783106666058302, -0.00932075921446085, 0.315863698720932, -0.18507230281829834, -0.010671851225197315, -0.0769939050078392, -0.03321920707821846, 0.009816259145736694, 0.3226643204689026, -0.26848354935646057, 0.02480286732316017, 0.008423502556979656, -0.00045878105447627604, 0.03788656368851662, 0.0860946774482727, 0.11779294908046722, -0.08303869515657425, 1.122897982597351, -0.008856342174112797, -0.0013542174128815532, 0.04749348387122154, -0.3807268440723419, -0.11496467143297195, -0.23433953523635864, 0.24547287821769714, -0.15507587790489197, -0.48471397161483765, 0.17747439444065094]} +{"t": 11.5547, "q": [-0.13772249221801758, 0.005800151731818914, -0.00933415163308382, 0.3157784640789032, -0.18508502840995789, -0.01066482625901699, -0.07701095193624496, -0.03313398361206055, 0.009776083752512932, 0.3226558268070221, -0.2684793174266815, 0.024795619770884514, 0.008463677950203419, -0.0004888650728389621, 0.03787710890173912, 0.08589094132184982, 0.11780493706464767, -0.08301472663879395, 1.122897982597351, -0.008868326433002949, -0.0013542174128815532, 0.04749348387122154, -0.37874945998191833, -0.11483284831047058, -0.23335683345794678, 0.24814537167549133, -0.1561184972524643, -0.4845581650733948, 0.179056316614151]} +{"t": 11.5714, "q": [-0.13777361810207367, 0.005791629198938608, -0.00940111093223095, 0.31580403447151184, -0.18508082628250122, -0.010671907104551792, -0.07698538154363632, -0.033176593482494354, 0.009776083752512932, 0.32263025641441345, -0.2684793174266815, 0.024795619770884514, 0.008624380454421043, -0.00048134406097233295, 0.03788183629512787, 0.08559133857488632, 0.11774501204490662, -0.0830267146229744, 1.122897982597351, -0.008868326433002949, -0.001318264752626419, 0.04748149961233139, -0.3760410249233246, -0.11474895477294922, -0.23303325474262238, 0.2512492835521698, -0.15746073424816132, -0.48246094584465027, 0.18132132291793823]} +{"t": 11.5881, "q": [-0.13784180581569672, 0.00577458506450057, -0.009548421949148178, 0.3157784640789032, -0.18508513271808624, -0.010679026134312153, -0.07695981860160828, -0.03315955027937889, 0.009762692265212536, 0.3225535452365875, -0.2684877812862396, 0.02481011673808098, 0.009079704992473125, -0.0005039070965722203, 0.037895988672971725, 0.08532768487930298, 0.11780493706464767, -0.0830506831407547, 1.122897982597351, -0.008868326433002949, -0.001330249011516571, 0.04748149961233139, -0.3725895583629608, -0.11470101773738861, -0.23276960849761963, 0.2543172538280487, -0.15804795920848846, -0.4803756773471832, 0.18418556451797485]} +{"t": 11.605, "q": [-0.13787588477134705, 0.005791629198938608, -0.009615381248295307, 0.31580403447151184, -0.18508082628250122, -0.010671907104551792, -0.07695981860160828, -0.033193640410900116, 0.009789476171135902, 0.3224853575229645, -0.268483430147171, 0.024788444861769676, 0.009307367727160454, -0.0005264700739644468, 0.03789125755429268, 0.08532768487930298, 0.11784088611602783, -0.08303869515657425, 1.1229099035263062, -0.008856342174112797, -0.0013542174128815532, 0.04749348387122154, -0.3693538308143616, -0.11464110016822815, -0.23244602978229523, 0.2569897174835205, -0.15825168788433075, -0.47864994406700134, 0.186846062541008]} +{"t": 11.6218, "q": [-0.13787588477134705, 0.005766062531620264, -0.009615381248295307, 0.3158722221851349, -0.18507662415504456, -0.010678987950086594, -0.07693424820899963, -0.033193640410900116, 0.009816259145736694, 0.32244277000427246, -0.2684877812862396, 0.02481011673808098, 0.009427894838154316, -0.0005791170988231897, 0.03790539875626564, 0.08541157096624374, 0.11780493706464767, -0.0830267146229744, 1.1229099035263062, -0.008832373656332493, -0.001330249011516571, 0.04749348387122154, -0.3659742772579193, -0.114653080701828, -0.23229023814201355, 0.25997379422187805, -0.15927034616470337, -0.47642087936401367, 0.19110044836997986]} +{"t": 11.6386, "q": [-0.1378503292798996, 0.005766062531620264, -0.009615381248295307, 0.315863698720932, -0.18507662415504456, -0.010678987950086594, -0.07694277167320251, -0.033176593482494354, 0.009816259145736694, 0.3224683105945587, -0.2684877812862396, 0.02481011673808098, 0.009387718513607979, -0.00064680608920753, 0.03795730322599411, 0.08548347651958466, 0.11782890558242798, -0.08303869515657425, 1.1229099035263062, -0.008868326433002949, -0.001342233270406723, 0.04746951535344124, -0.3631339967250824, -0.11458117514848709, -0.2314513474702835, 0.26364096999168396, -0.16140355169773102, -0.4723702073097229, 0.1959061324596405]} +{"t": 11.6554, "q": [-0.13786736130714417, 0.005757540930062532, -0.009548421949148178, 0.31580403447151184, -0.1850893497467041, -0.010671945288777351, -0.07697685807943344, -0.03315955027937889, 0.009816259145736694, 0.3224342465400696, -0.26848354935646057, 0.02480286732316017, 0.009293975308537483, -0.0006693690665997565, 0.03799978271126747, 0.08541157096624374, 0.11775700002908707, -0.08306266367435455, 1.1229338645935059, -0.008832373656332493, -0.001342233270406723, 0.04749348387122154, -0.36125248670578003, -0.11456919461488724, -0.23016902804374695, 0.2674759328365326, -0.16519056260585785, -0.4668335020542145, 0.2000287026166916]} +{"t": 11.6721, "q": [-0.13788440823554993, 0.005757540930062532, -0.009548421949148178, 0.31580403447151184, -0.18507662415504456, -0.010678987950086594, -0.07698538154363632, -0.03315955027937889, 0.009843043051660061, 0.3224342465400696, -0.268483430147171, 0.024788444861769676, 0.00932075921446085, -0.000699453114066273, 0.03803753852844238, 0.08505204319953918, 0.11775700002908707, -0.08303869515657425, 1.1229099035263062, -0.008868326433002949, -0.001306280493736267, 0.04748149961233139, -0.3594428598880768, -0.11545602232217789, -0.2284313142299652, 0.2723175585269928, -0.1685461401939392, -0.46169227361679077, 0.20410333573818207]} +{"t": 11.6889, "q": [-0.13787588477134705, 0.005766062531620264, -0.009628772735595703, 0.31580403447151184, -0.18508513271808624, -0.010679026134312153, -0.07689163833856583, -0.033176593482494354, 0.009749299846589565, 0.3224853575229645, -0.2684918940067291, 0.02480294182896614, 0.00933415163308382, -0.0007972237654030323, 0.038013897836208344, 0.08475244045257568, 0.11784088611602783, -0.08306266367435455, 1.1229099035263062, -0.008928247727453709, -0.001294296351261437, 0.04748149961233139, -0.3579328656196594, -0.11740945279598236, -0.2271849513053894, 0.2766558527946472, -0.17465810477733612, -0.4572101831436157, 0.20814202725887299]} +{"t": 11.7057, "q": [-0.13787588477134705, 0.005808673333376646, -0.009682340547442436, 0.31580403447151184, -0.18507662415504456, -0.010678987950086594, -0.07684050500392914, -0.033176593482494354, 0.009789476171135902, 0.3224683105945587, -0.26848354935646057, 0.02480286732316017, 0.00933415163308382, -0.0009326018043793738, 0.03792886435985565, 0.08475244045257568, 0.11785287410020828, -0.08306266367435455, 1.1229338645935059, -0.008892294950783253, -0.001306280493736267, 0.047505468130111694, -0.35695013403892517, -0.11949470639228821, -0.2253873199224472, 0.281305730342865, -0.17844511568546295, -0.4537467360496521, 0.21209682524204254]} +{"t": 11.7225, "q": [-0.13783328235149384, 0.005868328269571066, -0.00965555664151907, 0.31580403447151184, -0.18508502840995789, -0.01066482625901699, -0.0768575519323349, -0.03315955027937889, 0.009789476171135902, 0.32245129346847534, -0.2684793174266815, 0.024795619770884514, 0.00932075921446085, -0.00109806377440691, 0.037843819707632065, 0.08488427102565765, 0.11782890558242798, -0.08306266367435455, 1.1229578256607056, -0.008832373656332493, -0.001306280493736267, 0.04749348387122154, -0.3563149869441986, -0.12220314145088196, -0.22247515618801117, 0.28597956895828247, -0.1826515793800354, -0.4478265345096588, 0.2163751870393753]} +{"t": 11.7392, "q": [-0.13783328235149384, 0.005927983205765486, -0.00965555664151907, 0.31584665179252625, -0.18508082628250122, -0.010671907104551792, -0.07684902846813202, -0.033193640410900116, 0.009843043051660061, 0.3224768340587616, -0.2684877812862396, 0.02481011673808098, 0.009280583821237087, -0.0013161705574020743, 0.03777291625738144, 0.08490823209285736, 0.11779294908046722, -0.08306266367435455, 1.1229698657989502, -0.008856342174112797, -0.001294296351261437, 0.04749348387122154, -0.3558955490589142, -0.12616991996765137, -0.21866416931152344, 0.2910369038581848, -0.18667827546596527, -0.4416187107563019, 0.220917209982872]} +{"t": 11.7561, "q": [-0.13784180581569672, 0.005987638141959906, -0.009642165154218674, 0.31580403447151184, -0.18508093059062958, -0.01068610604852438, -0.07684902846813202, -0.033176593482494354, 0.009843043051660061, 0.3224342465400696, -0.268483430147171, 0.024788444861769676, 0.009200232103466988, -0.0014966744929552078, 0.03773507475852966, 0.08488427102565765, 0.11780493706464767, -0.0830506831407547, 1.1229698657989502, -0.008868326433002949, -0.001294296351261437, 0.04749348387122154, -0.3554880619049072, -0.12983709573745728, -0.21491311490535736, 0.2956628203392029, -0.19092069566249847, -0.4350513517856598, 0.2248360514640808]} +{"t": 11.7728, "q": [-0.13784180581569672, 0.006064337212592363, -0.00966894906014204, 0.31584665179252625, -0.18508082628250122, -0.010671907104551792, -0.07683198153972626, -0.0332021601498127, 0.009816259145736694, 0.3225109279155731, -0.26848354935646057, 0.02480286732316017, 0.009240408428013325, -0.0018050356302410364, 0.037626367062330246, 0.08481236547231674, 0.11786485463380814, -0.0830506831407547, 1.1229698657989502, -0.008856342174112797, -0.0012583436910063028, 0.04749348387122154, -0.3549967110157013, -0.13383983075618744, -0.21230055391788483, 0.2997494339942932, -0.19726034998893738, -0.42674627900123596, 0.23012109100818634]} +{"t": 11.7895, "q": [-0.1378503292798996, 0.006106947083026171, -0.00973590835928917, 0.3158296048641205, -0.18507662415504456, -0.010678987950086594, -0.07677233219146729, -0.033193640410900116, 0.009816259145736694, 0.3225535452365875, -0.26847508549690247, 0.024788353592157364, 0.009267191402614117, -0.00219618808478117, 0.037418365478515625, 0.08478839695453644, 0.11782890558242798, -0.08303869515657425, 1.1229817867279053, -0.008856342174112797, -0.0012583436910063028, 0.04749348387122154, -0.3547690212726593, -0.13823804259300232, -0.20990370213985443, 0.30395591259002686, -0.20289292931556702, -0.41881272196769714, 0.23468708992004395]} +{"t": 11.8064, "q": [-0.13786736130714417, 0.006141036283224821, -0.009776083752512932, 0.3158296048641205, -0.18507662415504456, -0.010678987950086594, -0.07672972232103348, -0.033176593482494354, 0.009802867658436298, 0.3225705921649933, -0.2684708535671234, 0.024781104177236557, 0.009387718513607979, -0.002504716394469142, 0.03724300116300583, 0.0848483145236969, 0.11785287410020828, -0.08306266367435455, 1.12299382686615, -0.0088803106918931, -0.001270327833481133, 0.04748149961233139, -0.3546251952648163, -0.1426362544298172, -0.20773455500602722, 0.30852189660072327, -0.20787836611270905, -0.41304829716682434, 0.23920513689517975]} +{"t": 11.8232, "q": [-0.13786736130714417, 0.006175124552100897, -0.009856435470283031, 0.31580403447151184, -0.18507662415504456, -0.010678987950086594, -0.07667006552219391, -0.033193640410900116, 0.009776083752512932, 0.3226643204689026, -0.26846662163734436, 0.0247738566249609, 0.009414502419531345, -0.002820746274664998, 0.03711014986038208, 0.08493220061063766, 0.11779294908046722, -0.08303869515657425, 1.1229698657989502, -0.008856342174112797, -0.001282312092371285, 0.04748149961233139, -0.3545173406600952, -0.14673484861850739, -0.20617660880088806, 0.3131118416786194, -0.21364277601242065, -0.4057738780975342, 0.24287231266498566]} +{"t": 11.8399, "q": [-0.13786736130714417, 0.006166602019220591, -0.009856435470283031, 0.31580403447151184, -0.18507662415504456, -0.010678987950086594, -0.07666154205799103, -0.033176593482494354, 0.009816259145736694, 0.3226473033428192, -0.26847508549690247, 0.024788353592157364, 0.00940111093223095, -0.0030841315165162086, 0.03694431483745575, 0.08502807468175888, 0.11785287410020828, -0.08303869515657425, 1.12299382686615, -0.008856342174112797, -0.001282312092371285, 0.04748149961233139, -0.3546372056007385, -0.14993463456630707, -0.20518192648887634, 0.31813323497772217, -0.21836456656455994, -0.397384911775589, 0.245257169008255]} +{"t": 11.8566, "q": [-0.13786736130714417, 0.006234779488295317, -0.009883219376206398, 0.31580403447151184, -0.18507662415504456, -0.010678987950086594, -0.07660188525915146, -0.03316807374358177, 0.009776083752512932, 0.3227580785751343, -0.2684623897075653, 0.02476660907268524, 0.009441286325454712, -0.003332466119900346, 0.03678795322775841, 0.0851239487528801, 0.11781691759824753, -0.0830506831407547, 1.12299382686615, -0.008868326433002949, -0.001282312092371285, 0.047505468130111694, -0.3546251952648163, -0.152271568775177, -0.20488230884075165, 0.32285502552986145, -0.22397318482398987, -0.3893195390701294, 0.24828918278217316]} +{"t": 11.8733, "q": [-0.13786736130714417, 0.006243301089853048, -0.009896610863506794, 0.3158125579357147, -0.18507662415504456, -0.010678987950086594, -0.07661040872335434, -0.033176593482494354, 0.009776083752512932, 0.32280921936035156, -0.2684580087661743, 0.02474493719637394, 0.009414502419531345, -0.0035657458938658237, 0.03665051981806755, 0.08520784229040146, 0.11780493706464767, -0.0830506831407547, 1.12299382686615, -0.0088803106918931, -0.001270327833481133, 0.04749348387122154, -0.354565292596817, -0.15442872047424316, -0.20449881255626678, 0.3284037113189697, -0.22877885401248932, -0.3799119293689728, 0.2511534094810486]} +{"t": 11.8903, "q": [-0.13787588477134705, 0.006234779488295317, -0.00992339476943016, 0.31580403447151184, -0.1850724220275879, -0.01068606786429882, -0.07656779885292053, -0.033176593482494354, 0.009843043051660061, 0.32280921936035156, -0.2684369683265686, 0.024723101407289505, 0.009468070231378078, -0.0037914980202913284, 0.03651782497763634, 0.08518387377262115, 0.11782890558242798, -0.0830267146229744, 1.1230177879333496, -0.008856342174112797, -0.0012583436910063028, 0.04749348387122154, -0.3545413315296173, -0.1567177176475525, -0.20425914227962494, 0.33473140001296997, -0.23413580656051636, -0.37248170375823975, 0.2533704936504364]} +{"t": 11.907, "q": [-0.13792702555656433, 0.006260345224291086, -0.009936786256730556, 0.3158125579357147, -0.1850724220275879, -0.01068606786429882, -0.07651666551828384, -0.033176593482494354, 0.009789476171135902, 0.3228518068790436, -0.26842838525772095, 0.024694181978702545, 0.009548421949148178, -0.003926930949091911, 0.03647032752633095, 0.08508799970149994, 0.11785287410020828, -0.08303869515657425, 1.1230297088623047, -0.008844357915222645, -0.001270327833481133, 0.04749348387122154, -0.3543735444545746, -0.15922240912914276, -0.20416326820850372, 0.341190904378891, -0.2386658489704132, -0.36481180787086487, 0.25633057951927185]} +{"t": 11.9237, "q": [-0.13795259594917297, 0.006200690288096666, -0.009976962581276894, 0.31584665179252625, -0.1850724220275879, -0.01068606786429882, -0.07652518898248672, -0.033176593482494354, 0.009802867658436298, 0.32286885380744934, -0.2684115767478943, 0.02467961236834526, 0.009521638043224812, -0.004084848333150148, 0.03649357333779335, 0.0851479172706604, 0.11785287410020828, -0.0830267146229744, 1.123005747795105, -0.008892294950783253, -0.001282312092371285, 0.04749348387122154, -0.3537983000278473, -0.16116386651992798, -0.20419920980930328, 0.34562504291534424, -0.24536502361297607, -0.3554641008377075, 0.2597580850124359]} +{"t": 11.9404, "q": [-0.13792702555656433, 0.006217735353857279, -0.00991000235080719, 0.31583812832832336, -0.18508093059062958, -0.01068610604852438, -0.0765337124466896, -0.033176593482494354, 0.009843043051660061, 0.32286885380744934, -0.2683905065059662, 0.024657774716615677, 0.009521638043224812, -0.004114905837923288, 0.036521829664707184, 0.08530371636152267, 0.11779294908046722, -0.08303869515657425, 1.1230297088623047, -0.008916263468563557, -0.001342233270406723, 0.04748149961233139, -0.353079229593277, -0.16284164786338806, -0.20415127277374268, 0.3500711917877197, -0.2512253224849701, -0.3474826216697693, 0.26317358016967773]} +{"t": 11.9571, "q": [-0.1379355490207672, 0.006217735353857279, -0.009856435470283031, 0.31584665179252625, -0.18507230281829834, -0.010671851225197315, -0.0765337124466896, -0.033185116946697235, 0.009816259145736694, 0.32286885380744934, -0.2683863937854767, 0.024664949625730515, 0.009521638043224812, -0.004190097562968731, 0.03654054179787636, 0.08543553948402405, 0.11776898056268692, -0.0830267146229744, 1.1230417490005493, -0.008856342174112797, -0.0013542174128815532, 0.04749348387122154, -0.3520725667476654, -0.16429173946380615, -0.2036958783864975, 0.35413384437561035, -0.2555396258831024, -0.3397647738456726, 0.2654266059398651]} +{"t": 11.9739, "q": [-0.13795259594917297, 0.006166602019220591, -0.009869826957583427, 0.31580403447151184, -0.18507662415504456, -0.010678987950086594, -0.0765337124466896, -0.03315955027937889, 0.009749299846589565, 0.3228433132171631, -0.2683946192264557, 0.02465059980750084, 0.009535029530525208, -0.004438283387571573, 0.03654464706778526, 0.08541157096624374, 0.11785287410020828, -0.08301472663879395, 1.1230297088623047, -0.008832373656332493, -0.001342233270406723, 0.047505468130111694, -0.3507542908191681, -0.16559801995754242, -0.203024759888649, 0.35925111174583435, -0.2595902979373932, -0.33435988426208496, 0.2677515745162964]} +{"t": 11.9906, "q": [-0.1379866749048233, 0.006132513750344515, -0.00991000235080719, 0.31583812832832336, -0.18507662415504456, -0.010678987950086594, -0.07654223591089249, -0.033193640410900116, 0.009776083752512932, 0.3227836489677429, -0.2684030830860138, 0.024665096774697304, 0.00965555664151907, -0.004731486085802317, 0.03666176274418831, 0.08532768487930298, 0.11782890558242798, -0.08303869515657425, 1.1230297088623047, -0.008832373656332493, -0.001318264752626419, 0.047505468130111694, -0.3488847613334656, -0.16664065420627594, -0.20238959789276123, 0.3624269366264343, -0.2645277976989746, -0.32887110114097595, 0.2702203094959259]} +{"t": 12.0073, "q": [-0.13797815144062042, 0.006081381347030401, -0.009883219376206398, 0.3158722221851349, -0.1850724220275879, -0.01068606786429882, -0.07656779885292053, -0.033176593482494354, 0.009802867658436298, 0.3227495551109314, -0.2684030830860138, 0.024665096774697304, 0.009695732034742832, -0.0051223356276750565, 0.03691548481583595, 0.08535165339708328, 0.11782890558242798, -0.0830267146229744, 1.1230297088623047, -0.008772453293204308, -0.0013542174128815532, 0.047517452389001846, -0.3466556966304779, -0.16781510412693024, -0.20143085718154907, 0.3648357689380646, -0.2689020335674286, -0.325467586517334, 0.2719220817089081]} +{"t": 12.0242, "q": [-0.13795259594917297, 0.006072858814150095, -0.009762692265212536, 0.31583812832832336, -0.18507662415504456, -0.010678987950086594, -0.07667006552219391, -0.033176593482494354, 0.009829651564359665, 0.3226132094860077, -0.26839473843574524, 0.024665024131536484, 0.009481461718678474, -0.005671029910445213, 0.03726785629987717, 0.0854954645037651, 0.11780493706464767, -0.08301472663879395, 1.1230417490005493, -0.008832373656332493, -0.001342233270406723, 0.047517452389001846, -0.3446902930736542, -0.16888169944286346, -0.20030434429645538, 0.3657825291156769, -0.273240327835083, -0.32225582003593445, 0.27285683155059814]} +{"t": 12.0412, "q": [-0.13786736130714417, 0.006038770545274019, -0.009535029530525208, 0.3158722221851349, -0.18507230281829834, -0.010671851225197315, -0.0767638087272644, -0.033193640410900116, 0.009802867658436298, 0.32257911562919617, -0.2683946192264557, 0.02465059980750084, 0.00906631350517273, -0.0063925147987902164, 0.03776594623923302, 0.08566324412822723, 0.11780493706464767, -0.08301472663879395, 1.1230297088623047, -0.008868326433002949, -0.0013542174128815532, 0.047517452389001846, -0.34344393014907837, -0.1697206050157547, -0.19935758411884308, 0.3658784031867981, -0.27502599358558655, -0.31854069232940674, 0.2734440565109253]} +{"t": 12.0579, "q": [-0.13782475888729095, 0.0060472930781543255, -0.00933415163308382, 0.3158296048641205, -0.1850893497467041, -0.010671945288777351, -0.07694277167320251, -0.033193640410900116, 0.009816259145736694, 0.3224853575229645, -0.2684030830860138, 0.024665096774697304, 0.008637772873044014, -0.007466692477464676, 0.03845468536019325, 0.08584300428628922, 0.11785287410020828, -0.08300274610519409, 1.1230417490005493, -0.008856342174112797, -0.001342233270406723, 0.047517452389001846, -0.3422095477581024, -0.17073926329612732, -0.1988542526960373, 0.36581847071647644, -0.27542147040367126, -0.31649139523506165, 0.273611843585968]} +{"t": 12.0746, "q": [-0.13774806261062622, 0.006072858814150095, -0.009186840616166592, 0.3158807158470154, -0.18507662415504456, -0.010678987950086594, -0.07698538154363632, -0.03321920707821846, 0.009762692265212536, 0.3224171996116638, -0.2683905065059662, 0.024657774716615677, 0.008209232240915298, -0.008668152615427971, 0.039373211562633514, 0.08556737005710602, 0.1179247796535492, -0.08299075812101364, 1.1230417490005493, -0.008832373656332493, -0.001330249011516571, 0.04754142090678215, -0.3409152626991272, -0.17088307440280914, -0.19875837862491608, 0.365770548582077, -0.27539750933647156, -0.31559258699417114, 0.27362382411956787]} +{"t": 12.0914, "q": [-0.1377139687538147, 0.006055814679712057, -0.009133272804319859, 0.3158210813999176, -0.18508502840995789, -0.01066482625901699, -0.07704503834247589, -0.033193640410900116, 0.009722515940666199, 0.32240015268325806, -0.26839885115623474, 0.024657849222421646, 0.007968178018927574, -0.009898600168526173, 0.04052546247839928, 0.08507601171731949, 0.11830826848745346, -0.08297877758741379, 1.1230297088623047, -0.00882038939744234, -0.001330249011516571, 0.0475534051656723, -0.3394891321659088, -0.17010408639907837, -0.1980513036251068, 0.3656506836414337, -0.275217741727829, -0.3154727518558502, 0.27343207597732544]} +{"t": 12.1081, "q": [-0.13768839836120605, 0.006021726410835981, -0.0089993542060256, 0.3157699406147003, -0.18508502840995789, -0.01066482625901699, -0.07717286795377731, -0.033176593482494354, 0.009709124453365803, 0.32231491804122925, -0.2683863937854767, 0.024664949625730515, 0.007660164497792721, -0.011301133781671524, 0.04166102409362793, 0.08464458584785461, 0.11879962682723999, -0.08296678960323334, 1.1230177879333496, -0.008856342174112797, -0.001342233270406723, 0.047577373683452606, -0.3385184109210968, -0.1690974235534668, -0.19730828702449799, 0.36388900876045227, -0.2748941481113434, -0.31554466485977173, 0.2730365991592407]} +{"t": 12.1249, "q": [-0.13769692182540894, 0.005979115609079599, -0.00881186779588461, 0.3158125579357147, -0.18508082628250122, -0.010671907104551792, -0.0773603543639183, -0.0332021601498127, 0.009722515940666199, 0.32221266627311707, -0.26839473843574524, 0.024665024131536484, 0.00739232636988163, -0.012576045468449593, 0.04253657907247543, 0.08418918401002884, 0.11920709162950516, -0.08293084055185318, 1.1230297088623047, -0.008868326433002949, -0.001342233270406723, 0.047685232013463974, -0.33818286657333374, -0.16793495416641235, -0.19692479074001312, 0.36157605051994324, -0.27454662322998047, -0.31663522124290466, 0.2725692093372345]} +{"t": 12.1416, "q": [-0.1376713663339615, 0.00583424000069499, -0.008718123659491539, 0.3157784640789032, -0.18508924543857574, -0.010657737031579018, -0.07738592475652695, -0.033193640410900116, 0.009776083752512932, 0.3221189081668854, -0.2683905065059662, 0.024657774716615677, 0.007178056053817272, -0.013918089680373669, 0.04336763173341751, 0.08379369974136353, 0.11967447400093079, -0.08287091553211212, 1.1230177879333496, -0.0088803106918931, -0.001318264752626419, 0.0478530116379261, -0.3380749821662903, -0.16629311442375183, -0.19679296016693115, 0.3589874804019928, -0.2742230296134949, -0.31751006841659546, 0.2720658779144287]} +{"t": 12.1583, "q": [-0.13763727247714996, 0.0057149301283061504, -0.008677948266267776, 0.3156932294368744, -0.1850934475660324, -0.010650656186044216, -0.07739444077014923, -0.03321920707821846, 0.009789476171135902, 0.3220507502555847, -0.2683989703655243, 0.02467227168381214, 0.006883434485644102, -0.015154710970818996, 0.044104136526584625, 0.08339822292327881, 0.12026169896125793, -0.08282297849655151, 1.1230417490005493, -0.008856342174112797, -0.001342233270406723, 0.04804475978016853, -0.3381229341030121, -0.16419586539268494, -0.19688883423805237, 0.35639888048171997, -0.2734440565109253, -0.31913992762565613, 0.27135881781578064]} +{"t": 12.1752, "q": [-0.13760317862033844, 0.005578576121479273, -0.008584205061197281, 0.31565916538238525, -0.1851060688495636, -0.01062940526753664, -0.07740296423435211, -0.0332021601498127, 0.009776083752512932, 0.32198256254196167, -0.2683989703655243, 0.02467227168381214, 0.006441501900553703, -0.01628631167113781, 0.04472755640745163, 0.08301472663879395, 0.1209927350282669, -0.08278702944517136, 1.1230297088623047, -0.00882038939744234, -0.001282312092371285, 0.0481526181101799, -0.33823078870773315, -0.16124774515628815, -0.19698470830917358, 0.353079229593277, -0.27292874455451965, -0.3208177089691162, 0.27095136046409607]} +{"t": 12.1919, "q": [-0.13764579594135284, 0.005518921185284853, -0.00839671865105629, 0.3155909776687622, -0.1851060688495636, -0.01062940526753664, -0.07748818397521973, -0.033193640410900116, 0.009869826957583427, 0.321956992149353, -0.2683989703655243, 0.02467227168381214, 0.0060933125205338, -0.017110859975218773, 0.045047957450151443, 0.08273909240961075, 0.12172377854585648, -0.08278702944517136, 1.1230777502059937, -0.00882038939744234, -0.001270327833481133, 0.048236507922410965, -0.33827874064445496, -0.1578921675682068, -0.19711653888225555, 0.3486570715904236, -0.2725452482700348, -0.32308271527290344, 0.2706157863140106]} +{"t": 12.2087, "q": [-0.13768839836120605, 0.005425177980214357, -0.008209232240915298, 0.3155995011329651, -0.18510594964027405, -0.010615188628435135, -0.07764158397912979, -0.03321920707821846, 0.009976962581276894, 0.3219143748283386, -0.2683989703655243, 0.02467227168381214, 0.005852258298546076, -0.017612917348742485, 0.04525391757488251, 0.08249940723180771, 0.122442826628685, -0.08278702944517136, 1.1231136322021484, -0.008832373656332493, -0.0012223910307511687, 0.04827246069908142, -0.33825474977493286, -0.15487214922904968, -0.19728431105613708, 0.3443547189235687, -0.2723175585269928, -0.327780544757843, 0.2703161835670471]} +{"t": 12.2254, "q": [-0.1376628428697586, 0.005271779838949442, -0.008035137318074703, 0.3155995011329651, -0.18512719869613647, -0.010608193464577198, -0.07765010744333267, -0.033304426819086075, 0.010057313367724419, 0.32188883423805237, -0.26839473843574524, 0.024665024131536484, 0.005664771888405085, -0.01796548254787922, 0.045301590114831924, 0.08221178501844406, 0.1230420395731926, -0.08281099796295166, 1.1231136322021484, -0.008856342174112797, -0.0011504855938255787, 0.04828444495797157, -0.3382188081741333, -0.1524992734193802, -0.19722439348697662, 0.33836260437965393, -0.2721138298511505, -0.3345995545387268, 0.27030420303344727]} +{"t": 12.2421, "q": [-0.13763727247714996, 0.005169515032321215, -0.007954785600304604, 0.31560802459716797, -0.18512289226055145, -0.010601074434816837, -0.07760749757289886, -0.033364083617925644, 0.010084097273647785, 0.32189735770225525, -0.2683906555175781, 0.02467219904065132, 0.005651379935443401, -0.018168531358242035, 0.045200690627098083, 0.08205599337816238, 0.12344950437545776, -0.08282297849655151, 1.1231136322021484, -0.008868326433002949, -0.0011025486746802926, 0.04827246069908142, -0.33830270171165466, -0.15018631517887115, -0.19601398706436157, 0.3326221704483032, -0.2719700038433075, -0.3418620228767395, 0.27043601870536804]} +{"t": 12.259, "q": [-0.13758613169193268, 0.005058727692812681, -0.007941394113004208, 0.31566768884658813, -0.18512298166751862, -0.010615282692015171, -0.07755636423826218, -0.03340669348835945, 0.010084097273647785, 0.32190585136413574, -0.2683907747268677, 0.024686621502041817, 0.0055978125892579556, -0.018258899450302124, 0.045124538242816925, 0.08169646561145782, 0.12371315807104111, -0.08282297849655151, 1.1231735944747925, -0.00882038939744234, -0.0010186590952798724, 0.04826047644019127, -0.3382188081741333, -0.14611166715621948, -0.19499532878398895, 0.3263064920902252, -0.271898090839386, -0.3482016623020172, 0.27053189277648926]} +{"t": 12.2757, "q": [-0.1376202255487442, 0.004973506089299917, -0.007928002625703812, 0.3157443702220917, -0.18511435389518738, -0.010601026937365532, -0.07751375436782837, -0.03340669348835945, 0.010110881179571152, 0.3219143748283386, -0.2683992385864258, 0.024701137095689774, 0.005946001503616571, -0.018356677144765854, 0.04507178068161011, 0.08116915822029114, 0.12372513860464096, -0.08287091553211212, 1.1231735944747925, -0.00882038939744234, -0.0009827064350247383, 0.04827246069908142, -0.3381708562374115, -0.1416415572166443, -0.19489945471286774, 0.31995484232902527, -0.271814227104187, -0.3551884591579437, 0.2704479992389679]} +{"t": 12.2925, "q": [-0.13770544528961182, 0.004930895287543535, -0.007954785600304604, 0.3157443702220917, -0.1851186752319336, -0.01060816366225481, -0.07748818397521973, -0.03344930335879326, 0.010057313367724419, 0.32198256254196167, -0.26838254928588867, 0.024700989946722984, 0.006254015490412712, -0.018334142863750458, 0.04507673159241676, 0.08098939061164856, 0.12371315807104111, -0.08288290351629257, 1.1231735944747925, -0.008796420879662037, -0.0010066749528050423, 0.04824849218130112, -0.3382188081741333, -0.13725532591342926, -0.194635808467865, 0.3136751055717468, -0.27170634269714355, -0.36130040884017944, 0.27047199010849]} +{"t": 12.3092, "q": [-0.13773953914642334, 0.004905329551547766, -0.008035137318074703, 0.3157443702220917, -0.1851186752319336, -0.01060816366225481, -0.07743705809116364, -0.03344930335879326, 0.01000374648720026, 0.3220592737197876, -0.26838254928588867, 0.024700989946722984, 0.006575420964509249, -0.01834915205836296, 0.04507656395435333, 0.08108526468276978, 0.12367720156908035, -0.08285893499851227, 1.1231735944747925, -0.008832373656332493, -0.0010186590952798724, 0.04824849218130112, -0.3384464979171753, -0.13273727893829346, -0.19437214732170105, 0.3086656928062439, -0.271670401096344, -0.36521926522254944, 0.2704479992389679]} +{"t": 12.3259, "q": [-0.1377991884946823, 0.004913851153105497, -0.008102096617221832, 0.31571879982948303, -0.1851186752319336, -0.01060816366225481, -0.07733479142189026, -0.03340669348835945, 0.00999035406857729, 0.32212743163108826, -0.26837843656539917, 0.024708164855837822, 0.006910218391567469, -0.018371764570474625, 0.04505283012986183, 0.08119312673807144, 0.12352140992879868, -0.08291885256767273, 1.1231975555419922, -0.008832373656332493, -0.0010905645322054625, 0.04824849218130112, -0.33853039145469666, -0.12841098010540009, -0.19446802139282227, 0.3042435348033905, -0.2715625464916229, -0.37070804834365845, 0.2704479992389679]} +{"t": 12.3426, "q": [-0.13785885274410248, 0.004913851153105497, -0.00831636693328619, 0.3157443702220917, -0.18511447310447693, -0.010615244507789612, -0.07725808769464493, -0.033423736691474915, 0.009896610863506794, 0.3222467601299286, -0.2683700919151306, 0.024708090350031853, 0.007164664100855589, -0.018356716260313988, 0.045062389224767685, 0.0812530443072319, 0.12343751639127731, -0.08290687203407288, 1.1231735944747925, -0.008856342174112797, -0.0011624698527157307, 0.04824849218130112, -0.33843451738357544, -0.12322180718183517, -0.1943361908197403, 0.30008500814437866, -0.27143073081970215, -0.3775150775909424, 0.27048397064208984]} +{"t": 12.3594, "q": [-0.13796962797641754, 0.004964983556419611, -0.008503853343427181, 0.31570175290107727, -0.18512298166751862, -0.010615282692015171, -0.07715582847595215, -0.033364083617925644, 0.009843043051660061, 0.32234901189804077, -0.2683742046356201, 0.024700915440917015, 0.007499461527913809, -0.018356716260313988, 0.045062389224767685, 0.08132494986057281, 0.1233416497707367, -0.08291885256767273, 1.1231735944747925, -0.0088803106918931, -0.0012583436910063028, 0.04824849218130112, -0.3383985757827759, -0.11761318892240524, -0.1941085010766983, 0.2942846417427063, -0.27125096321105957, -0.3838787078857422, 0.2705199122428894]} +{"t": 12.3761, "q": [-0.13795259594917297, 0.005016116891056299, -0.008677948266267776, 0.3157358467578888, -0.18511447310447693, -0.010615244507789612, -0.07703651487827301, -0.03338112682104111, 0.009843043051660061, 0.3225279748439789, -0.26836585998535156, 0.024700842797756195, 0.007566420827060938, -0.018341701477766037, 0.045062560588121414, 0.08149272948503494, 0.12331768125295639, -0.08289488404989243, 1.1231735944747925, -0.008856342174112797, -0.001330249011516571, 0.04824849218130112, -0.33832666277885437, -0.11206448823213577, -0.1940126270055771, 0.2884962558746338, -0.271071195602417, -0.3888401687145233, 0.27048397064208984]} +{"t": 12.3928, "q": [-0.1379440724849701, 0.0051439483650028706, -0.008691340684890747, 0.31571879982948303, -0.18511877954006195, -0.010622363537549973, -0.07698538154363632, -0.033304426819086075, 0.00991000235080719, 0.32268989086151123, -0.2683531641960144, 0.024679098278284073, 0.00743250222876668, -0.01834181509912014, 0.04503438249230385, 0.08162456005811691, 0.12328172475099564, -0.08287091553211212, 1.123221516609192, -0.00882038939744234, -0.001306280493736267, 0.04824849218130112, -0.33832666277885437, -0.10542523115873337, -0.1940365880727768, 0.2837265431880951, -0.271071195602417, -0.3954794406890869, 0.27047199010849]} +{"t": 12.4098, "q": [-0.13795259594917297, 0.005246214102953672, -0.008691340684890747, 0.31570175290107727, -0.18511447310447693, -0.010615244507789612, -0.07688311487436295, -0.033304426819086075, 0.00991000235080719, 0.3228006958961487, -0.2683108150959015, 0.024606579914689064, 0.00735215051099658, -0.018304303288459778, 0.04503010958433151, 0.08146876096725464, 0.12329371273517609, -0.08290687203407288, 1.1232094764709473, -0.008808405138552189, -0.0012343751732259989, 0.04824849218130112, -0.3383985757827759, -0.10021208971738815, -0.19368904829025269, 0.2795080840587616, -0.2710232436656952, -0.40115994215011597, 0.27053189277648926]} +{"t": 12.4265, "q": [-0.1379866749048233, 0.005297346506267786, -0.008758299984037876, 0.31575289368629456, -0.1851060688495636, -0.01062940526753664, -0.07678085565567017, -0.03327886015176773, 0.00991000235080719, 0.3228859007358551, -0.26826012134552, 0.024534005671739578, 0.0074860695749521255, -0.018319351598620415, 0.04502055048942566, 0.08109725266695023, 0.12331768125295639, -0.08289488404989243, 1.1232094764709473, -0.008856342174112797, -0.0012104067718610168, 0.048236507922410965, -0.33836260437965393, -0.09572999179363251, -0.19308984279632568, 0.2747623324394226, -0.2710232436656952, -0.40615737438201904, 0.2706397473812103]} +{"t": 12.4432, "q": [-0.13800372183322906, 0.00532291317358613, -0.008852043189108372, 0.3158722221851349, -0.1851060688495636, -0.01062940526753664, -0.0767211988568306, -0.033295903354883194, 0.009883219376206398, 0.3230648636817932, -0.2682262361049652, 0.024476002901792526, 0.007619988638907671, -0.018319351598620415, 0.04502055048942566, 0.08096542209386826, 0.1233416497707367, -0.08290687203407288, 1.1231975555419922, -0.00882038939744234, -0.0011624698527157307, 0.048236507922410965, -0.3383985757827759, -0.09134376794099808, -0.1929580122232437, 0.2696690261363983, -0.2709992825984955, -0.4104117751121521, 0.2706157863140106]} +{"t": 12.4602, "q": [-0.13801224529743195, 0.00528882397338748, -0.008892218582332134, 0.3159659504890442, -0.1851060688495636, -0.01062940526753664, -0.07669562846422195, -0.03328738361597061, 0.009950178675353527, 0.32317566871643066, -0.26820531487464905, 0.02446860820055008, 0.007700339891016483, -0.01832691580057144, 0.04500637948513031, 0.08118113875389099, 0.123365618288517, -0.08291885256767273, 1.1232094764709473, -0.008832373656332493, -0.0011864382540807128, 0.04824849218130112, -0.33836260437965393, -0.08660999685525894, -0.19305388629436493, 0.26666098833084106, -0.2709992825984955, -0.4168712794780731, 0.2705678641796112]} +{"t": 12.4769, "q": [-0.13800372183322906, 0.00528882397338748, -0.008825259283185005, 0.3160597085952759, -0.1851060688495636, -0.01062940526753664, -0.07669562846422195, -0.03327886015176773, 0.01000374648720026, 0.3232864439487457, -0.26818016171455383, 0.024453945457935333, 0.007673555985093117, -0.018311867490410805, 0.04501593858003616, 0.08151669800281525, 0.12331768125295639, -0.08289488404989243, 1.123221516609192, -0.008832373656332493, -0.0012583436910063028, 0.04824849218130112, -0.3383985757827759, -0.08140884339809418, -0.1931857168674469, 0.2617115080356598, -0.27083149552345276, -0.42310306429862976, 0.2703521251678467]} +{"t": 12.4936, "q": [-0.13801224529743195, 0.00526325823739171, -0.008825259283185005, 0.31611934304237366, -0.18510185182094574, -0.010636495426297188, -0.07668711245059967, -0.033295903354883194, 0.009963570162653923, 0.323337584733963, -0.2681633234024048, 0.02443939447402954, 0.007619988638907671, -0.018349450081586838, 0.045001424849033356, 0.08173241466283798, 0.12325775623321533, -0.08291885256767273, 1.123233437538147, -0.008868326433002949, -0.001306280493736267, 0.04824849218130112, -0.3380989730358124, -0.07689078897237778, -0.19314976036548615, 0.2567380666732788, -0.2707236409187317, -0.4287116825580597, 0.2703401446342468]} +{"t": 12.5104, "q": [-0.13797815144062042, 0.005237691570073366, -0.008785083889961243, 0.3161449134349823, -0.18509753048419952, -0.01062935870140791, -0.07667858898639679, -0.03328738361597061, 0.010030529461801052, 0.32336315512657166, -0.2681213617324829, 0.02441016398370266, 0.007566420827060938, -0.018326876685023308, 0.045015767216682434, 0.08175638318061829, 0.12328172475099564, -0.08289488404989243, 1.123233437538147, -0.008856342174112797, -0.001318264752626419, 0.048236507922410965, -0.3367447555065155, -0.07266035676002502, -0.193161740899086, 0.2517526149749756, -0.2706757187843323, -0.4322590231895447, 0.27030420303344727]} +{"t": 12.5271, "q": [-0.13797815144062042, 0.0052291699685156345, -0.008718123659491539, 0.31620457768440247, -0.1851060688495636, -0.01062940526753664, -0.07667858898639679, -0.03328738361597061, 0.010097489692270756, 0.32340577244758606, -0.2680962085723877, 0.024395503103733063, 0.007365542463958263, -0.01830441690981388, 0.045001935213804245, 0.08173241466283798, 0.1233416497707367, -0.08291885256767273, 1.123233437538147, -0.008832373656332493, -0.001294296351261437, 0.04826047644019127, -0.3357979953289032, -0.06893326342105865, -0.19319769740104675, 0.24896030128002167, -0.2706397473812103, -0.43775978684425354, 0.27030420303344727]} +{"t": 12.5438, "q": [-0.13795259594917297, 0.0052291699685156345, -0.00865116436034441, 0.3161790072917938, -0.18510185182094574, -0.010636495426297188, -0.07669562846422195, -0.033295903354883194, 0.010097489692270756, 0.32340577244758606, -0.2680627107620239, 0.024380803108215332, 0.007084312848746777, -0.018334440886974335, 0.045001596212387085, 0.08162456005811691, 0.12341354787349701, -0.08290687203407288, 1.123221516609192, -0.0088803106918931, -0.0012583436910063028, 0.048236507922410965, -0.33500704169273376, -0.06493053585290909, -0.193161740899086, 0.24688702821731567, -0.2706397473812103, -0.4429849088191986, 0.2703761160373688]} +{"t": 12.5607, "q": [-0.13795259594917297, 0.005212124902755022, -0.008570813573896885, 0.31621310114860535, -0.1851060688495636, -0.01062940526753664, -0.0767211988568306, -0.033295903354883194, 0.010204624384641647, 0.32341426610946655, -0.26804593205451965, 0.024380652233958244, 0.006963785737752914, -0.018341924995183945, 0.04500620812177658, 0.08143281191587448, 0.12344950437545776, -0.08290687203407288, 1.1232575178146362, -0.0088803106918931, -0.0012104067718610168, 0.04824849218130112, -0.3345036804676056, -0.06115550175309181, -0.19308984279632568, 0.24522121250629425, -0.27057984471321106, -0.4490968585014343, 0.2703401446342468]} +{"t": 12.5774, "q": [-0.13796110451221466, 0.005178036633878946, -0.008544029667973518, 0.3161875307559967, -0.18511027097702026, -0.010622325353324413, -0.07672972232103348, -0.033295903354883194, 0.010151056572794914, 0.3233887255191803, -0.26802927255630493, 0.02439490519464016, 0.007003961596637964, -0.0183344017714262, 0.04501098766922951, 0.0812530443072319, 0.12342553585767746, -0.08294282108545303, 1.1232454776763916, -0.008856342174112797, -0.0011744541116058826, 0.04822452366352081, -0.33426401019096375, -0.05759618803858757, -0.19274228811264038, 0.24236896634101868, -0.27043601870536804, -0.4554005563259125, 0.2703161835670471]} +{"t": 12.5941, "q": [-0.13795259594917297, 0.005135425832122564, -0.008570813573896885, 0.3161449134349823, -0.18511027097702026, -0.010622325353324413, -0.07675528526306152, -0.033304426819086075, 0.010124272666871548, 0.32332906126976013, -0.26802927255630493, 0.02439490519464016, 0.007111096754670143, -0.018326876685023308, 0.045015767216682434, 0.0812051072716713, 0.12337759882211685, -0.08295480906963348, 1.1232094764709473, -0.008808405138552189, -0.0011744541116058826, 0.048236507922410965, -0.3343718647956848, -0.05460013076663017, -0.1923348307609558, 0.2391212433576584, -0.2703761160373688, -0.46417301893234253, 0.2703161835670471]} +{"t": 12.6109, "q": [-0.13795259594917297, 0.0051183816976845264, -0.008570813573896885, 0.31611934304237366, -0.18511027097702026, -0.010622325353324413, -0.07674676179885864, -0.03328738361597061, 0.010124272666871548, 0.32322677969932556, -0.26803767681121826, 0.02439499832689762, 0.007245015352964401, -0.018319351598620415, 0.04502055048942566, 0.08127701282501221, 0.1233895793557167, -0.08294282108545303, 1.123233437538147, -0.008892294950783253, -0.0011744541116058826, 0.048236507922410965, -0.3346235454082489, -0.051544152200222015, -0.19199927151203156, 0.23423168063163757, -0.27023229002952576, -0.47038084268569946, 0.2703161835670471]} +{"t": 12.6276, "q": [-0.13796962797641754, 0.005126904230564833, -0.008584205061197281, 0.3160597085952759, -0.1851101517677307, -0.010608107782900333, -0.07675528526306152, -0.033295903354883194, 0.01007070578634739, 0.3231927156448364, -0.2680334150791168, 0.02438773214817047, 0.007338759023696184, -0.01831182837486267, 0.045025330036878586, 0.08140884339809418, 0.123365618288517, -0.08293084055185318, 1.1232575178146362, -0.008832373656332493, -0.0012104067718610168, 0.04822452366352081, -0.33493512868881226, -0.04761332646012306, -0.19185546040534973, 0.22696924209594727, -0.2700405418872833, -0.47644487023353577, 0.2702682614326477]} +{"t": 12.6443, "q": [-0.13791850209236145, 0.005169515032321215, -0.008557421155273914, 0.31598299741744995, -0.1851060688495636, -0.01062940526753664, -0.07677233219146729, -0.033304426819086075, 0.010084097273647785, 0.32318419218063354, -0.26804181933403015, 0.024387825280427933, 0.0071914480067789555, -0.018319351598620415, 0.04502055048942566, 0.08158860355615616, 0.12341354787349701, -0.08293084055185318, 1.1232454776763916, -0.008832373656332493, -0.0012463594321161509, 0.048236507922410965, -0.33513885736465454, -0.04296344891190529, -0.19187943637371063, 0.2210730016231537, -0.2698727548122406, -0.4841507077217102, 0.270100474357605]} +{"t": 12.661, "q": [-0.1379014551639557, 0.0051865591667592525, -0.008544029667973518, 0.3159659504890442, -0.18511027097702026, -0.010622325353324413, -0.0767638087272644, -0.033304426819086075, 0.010137665085494518, 0.32313305139541626, -0.26803767681121826, 0.02439499832689762, 0.007084312848746777, -0.0183344017714262, 0.04501098766922951, 0.08158860355615616, 0.12340156733989716, -0.08289488404989243, 1.123281478881836, -0.008832373656332493, -0.0012343751732259989, 0.04826047644019127, -0.3353186249732971, -0.03894873335957527, -0.19187943637371063, 0.2160036712884903, -0.2696690261363983, -0.49100568890571594, 0.2699446678161621]} +{"t": 12.6777, "q": [-0.13791850209236145, 0.00520360330119729, -0.008570813573896885, 0.31593185663223267, -0.18511027097702026, -0.010622325353324413, -0.07677233219146729, -0.03332147002220154, 0.01007070578634739, 0.3231074810028076, -0.26803767681121826, 0.02439499832689762, 0.007137880194932222, -0.0183344017714262, 0.04501098766922951, 0.08124106377363205, 0.1233895793557167, -0.08293084055185318, 1.1232454776763916, -0.008856342174112797, -0.0011744541116058826, 0.04824849218130112, -0.3355703055858612, -0.03555719554424286, -0.19172362983226776, 0.2112579196691513, -0.2695971429347992, -0.49759700894355774, 0.26988476514816284]} +{"t": 12.6944, "q": [-0.1379440724849701, 0.005195080768316984, -0.008584205061197281, 0.31593185663223267, -0.18511027097702026, -0.010622325353324413, -0.07678085565567017, -0.033312950283288956, 0.010057313367724419, 0.32309895753860474, -0.2680419385433197, 0.024402249604463577, 0.007285191211849451, -0.018319351598620415, 0.04502055048942566, 0.08101335912942886, 0.123365618288517, -0.08294282108545303, 1.123233437538147, -0.008868326433002949, -0.0011624698527157307, 0.048236507922410965, -0.33573806285858154, -0.03292066603899002, -0.1911364048719406, 0.20715931057929993, -0.26956117153167725, -0.504715621471405, 0.2698248326778412]} +{"t": 12.7112, "q": [-0.13790997862815857, 0.0051865591667592525, -0.008610988967120647, 0.3159148097038269, -0.1851060688495636, -0.01062940526753664, -0.07677233219146729, -0.033312950283288956, 0.010030529461801052, 0.32309043407440186, -0.26803767681121826, 0.02439499832689762, 0.007285191211849451, -0.018326876685023308, 0.045015767216682434, 0.08115717023611069, 0.1233895793557167, -0.08294282108545303, 1.1232575178146362, -0.00882038939744234, -0.0011624698527157307, 0.04824849218130112, -0.3358219563961029, -0.02990064211189747, -0.1900937855243683, 0.20290492475032806, -0.26928552985191345, -0.511666476726532, 0.2695491909980774]} +{"t": 12.7279, "q": [-0.1378929316997528, 0.0051865591667592525, -0.008584205061197281, 0.3158807158470154, -0.18511027097702026, -0.010622325353324413, -0.07681494206190109, -0.03328738361597061, 0.01000374648720026, 0.3230222761631012, -0.2680460512638092, 0.02439507469534874, 0.00709770480170846, -0.018319351598620415, 0.04502055048942566, 0.08140884339809418, 0.12341354787349701, -0.08294282108545303, 1.1232694387435913, -0.008832373656332493, -0.0012343751732259989, 0.048236507922410965, -0.335929811000824, -0.02666490152478218, -0.189015194773674, 0.19923774898052216, -0.2690458595752716, -0.5170953273773193, 0.2689739465713501]} +{"t": 12.7447, "q": [-0.1378929316997528, 0.005220647435635328, -0.008544029667973518, 0.315863698720932, -0.18510594964027405, -0.010615188628435135, -0.07682346552610397, -0.03327886015176773, 0.010043921880424023, 0.3230137526988983, -0.26803767681121826, 0.02439499832689762, 0.00709770480170846, -0.01830422878265381, 0.04504889249801636, 0.08146876096725464, 0.123365618288517, -0.08290687203407288, 1.1233173608779907, -0.008868326433002949, -0.0012463594321161509, 0.048236507922410965, -0.3359657824039459, -0.02334527112543583, -0.18794859945774078, 0.19513913989067078, -0.2688181698322296, -0.5229076743125916, 0.2680511772632599]} +{"t": 12.7614, "q": [-0.13792702555656433, 0.005195080768316984, -0.008584205061197281, 0.3158807158470154, -0.1851060688495636, -0.01062940526753664, -0.07684902846813202, -0.03328738361597061, 0.010030529461801052, 0.3229796588420868, -0.26803767681121826, 0.02439499832689762, 0.007070920895785093, -0.018334252759814262, 0.045048557221889496, 0.08132494986057281, 0.123365618288517, -0.08287091553211212, 1.123293399810791, -0.008868326433002949, -0.0012343751732259989, 0.048236507922410965, -0.3352227509021759, -0.02094842493534088, -0.1869179606437683, 0.1910165697336197, -0.26863840222358704, -0.5296787619590759, 0.2670804560184479]} +{"t": 12.7781, "q": [-0.1379440724849701, 0.0051865591667592525, -0.008544029667973518, 0.3158807158470154, -0.18511447310447693, -0.010615244507789612, -0.07688311487436295, -0.03328738361597061, 0.010043921880424023, 0.3229881823062897, -0.2680460512638092, 0.02439507469534874, 0.007044136989861727, -0.01834166795015335, 0.04507195204496384, 0.08126503229141235, 0.123365618288517, -0.08289488404989243, 1.1232694387435913, -0.008832373656332493, -0.0012463594321161509, 0.048236507922410965, -0.33359289169311523, -0.019234681501984596, -0.18586334586143494, 0.18726550042629242, -0.26850655674934387, -0.5356948971748352, 0.2660737633705139]} +{"t": 12.7948, "q": [-0.1379440724849701, 0.005178036633878946, -0.008544029667973518, 0.3158722221851349, -0.18511457741260529, -0.010629444383084774, -0.07689163833856583, -0.03328738361597061, 0.010057313367724419, 0.32294556498527527, -0.2680419385433197, 0.024402249604463577, 0.006963785737752914, -0.01828143186867237, 0.04511958733201027, 0.08127701282501221, 0.12335363030433655, -0.08288290351629257, 1.123281478881836, -0.008856342174112797, -0.0012343751732259989, 0.048236507922410965, -0.33154359459877014, -0.01788046397268772, -0.18491660058498383, 0.18361032009124756, -0.2684706151485443, -0.5400451421737671, 0.2649232745170593]} +{"t": 12.8116, "q": [-0.13796110451221466, 0.005160992499440908, -0.008503853343427181, 0.3158807158470154, -0.18511027097702026, -0.010622325353324413, -0.07690868526697159, -0.033304426819086075, 0.01007070578634739, 0.3229370415210724, -0.26803767681121826, 0.02439499832689762, 0.006870042532682419, -0.01831142045557499, 0.04512864351272583, 0.08131296932697296, 0.123365618288517, -0.08291885256767273, 1.1233054399490356, -0.008868326433002949, -0.0012343751732259989, 0.048236507922410965, -0.32942238450050354, -0.016993630677461624, -0.18420952558517456, 0.18174077570438385, -0.26831480860710144, -0.5459533929824829, 0.2634012997150421]} +{"t": 12.8283, "q": [-0.13792702555656433, 0.005135425832122564, -0.008450286462903023, 0.3158722221851349, -0.18511027097702026, -0.010622325353324413, -0.07689163833856583, -0.03328738361597061, 0.010084097273647785, 0.322894424200058, -0.2680460512638092, 0.02439507469534874, 0.0068566505797207355, -0.01834907755255699, 0.04509534686803818, 0.08132494986057281, 0.123365618288517, -0.08290687203407288, 1.123281478881836, -0.008856342174112797, -0.0012104067718610168, 0.048236507922410965, -0.32746896147727966, -0.016562199220061302, -0.18381404876708984, 0.18033862113952637, -0.26788339018821716, -0.5512863397598267, 0.2623107135295868]} +{"t": 12.845, "q": [-0.1379440724849701, 0.005135425832122564, -0.008410110138356686, 0.315863698720932, -0.18511447310447693, -0.010615244507789612, -0.07690868526697159, -0.03332147002220154, 0.010124272666871548, 0.32286033034324646, -0.26803767681121826, 0.02439499832689762, 0.006669164169579744, -0.01832657866179943, 0.04509090259671211, 0.08137288689613342, 0.12341354787349701, -0.08291885256767273, 1.123281478881836, -0.008832373656332493, -0.0011624698527157307, 0.048236507922410965, -0.32582712173461914, -0.016394419595599174, -0.1833226978778839, 0.17922408878803253, -0.26723623275756836, -0.5564994812011719, 0.26147183775901794]} +{"t": 12.8618, "q": [-0.13792702555656433, 0.005126904230564833, -0.008383326232433319, 0.3158722221851349, -0.18511447310447693, -0.010615244507789612, -0.07693424820899963, -0.033295903354883194, 0.010151056572794914, 0.32286885380744934, -0.26804181933403015, 0.024387825280427933, 0.00642810994759202, -0.018296407535672188, 0.04512881115078926, 0.08140884339809418, 0.12344950437545776, -0.08290687203407288, 1.123293399810791, -0.008868326433002949, -0.0012104067718610168, 0.048236507922410965, -0.32465267181396484, -0.016346482560038567, -0.18291522562503815, 0.1781574934720993, -0.26633742451667786, -0.5598670244216919, 0.26080071926116943]} +{"t": 12.8785, "q": [-0.13796110451221466, 0.005126904230564833, -0.008289583027362823, 0.315863698720932, -0.18511877954006195, -0.010622363537549973, -0.07700242847204208, -0.033295903354883194, 0.010191232897341251, 0.32286885380744934, -0.2680419385433197, 0.024402249604463577, 0.0061736637726426125, -0.01826619915664196, 0.04517611116170883, 0.08140884339809418, 0.12349744141101837, -0.08290687203407288, 1.123293399810791, -0.008856342174112797, -0.0011504855938255787, 0.04824849218130112, -0.323262482881546, -0.016322514042258263, -0.18254372477531433, 0.17734256386756897, -0.2659299671649933, -0.5631387233734131, 0.2599857747554779]} +{"t": 12.8953, "q": [-0.13796962797641754, 0.005152470897883177, -0.008236016146838665, 0.3158807158470154, -0.18511447310447693, -0.010615244507789612, -0.07703651487827301, -0.033304426819086075, 0.010298367589712143, 0.32291147112846375, -0.2680334150791168, 0.02438773214817047, 0.006039745174348354, -0.018160859122872353, 0.045243039727211, 0.08134891837835312, 0.12348545342683792, -0.08289488404989243, 1.123293399810791, -0.008868326433002949, -0.0011624698527157307, 0.048236507922410965, -0.3212970793247223, -0.016262592747807503, -0.18238791823387146, 0.17734256386756897, -0.26531875133514404, -0.5684956908226013, 0.2589431405067444]} +{"t": 12.912, "q": [-0.13796962797641754, 0.005152470897883177, -0.008262800052762032, 0.31580403447151184, -0.18511447310447693, -0.010615244507789612, -0.07706208527088165, -0.033304426819086075, 0.01025819219648838, 0.32291147112846375, -0.26803767681121826, 0.02439499832689762, 0.006012961268424988, -0.018070565536618233, 0.04530040919780731, 0.08131296932697296, 0.12346148490905762, -0.08290687203407288, 1.1232694387435913, -0.008856342174112797, -0.0011504855938255787, 0.048236507922410965, -0.31870847940444946, -0.016118783503770828, -0.18190854787826538, 0.17717479169368744, -0.2641562819480896, -0.5739485025405884, 0.2576368749141693]} +{"t": 12.9287, "q": [-0.13795259594917297, 0.005169515032321215, -0.008222623728215694, 0.315863698720932, -0.18511027097702026, -0.010622325353324413, -0.07706208527088165, -0.03328738361597061, 0.01025819219648838, 0.322894424200058, -0.26803767681121826, 0.02439499832689762, 0.005972785409539938, -0.018055517226457596, 0.045309968292713165, 0.08143281191587448, 0.12346148490905762, -0.08289488404989243, 1.1232694387435913, -0.008856342174112797, -0.0011624698527157307, 0.048236507922410965, -0.3154967129230499, -0.016022909432649612, -0.18162094056606293, 0.17650367319583893, -0.26292192935943604, -0.5788860321044922, 0.2556474804878235]} +{"t": 12.9456, "q": [-0.1379355490207672, 0.005169515032321215, -0.008236016146838665, 0.31584665179252625, -0.18511457741260529, -0.010629444383084774, -0.07705356180667877, -0.033295903354883194, 0.010298367589712143, 0.3228773772716522, -0.26803767681121826, 0.02439499832689762, 0.005812082905322313, -0.018063075840473175, 0.04529579356312752, 0.08160059154033661, 0.12342553585767746, -0.08289488404989243, 1.123293399810791, -0.008856342174112797, -0.0011864382540807128, 0.04822452366352081, -0.3123089075088501, -0.015974972397089005, -0.1816568821668625, 0.17540112137794495, -0.26211896538734436, -0.5827808976173401, 0.25275930762290955]} +{"t": 12.9623, "q": [-0.13791850209236145, 0.005212124902755022, -0.008236016146838665, 0.3158551752567291, -0.18511447310447693, -0.010615244507789612, -0.07703651487827301, -0.033304426819086075, 0.010311760008335114, 0.3228859007358551, -0.26803767681121826, 0.02439499832689762, 0.005691555794328451, -0.018130870535969734, 0.04523398354649544, 0.08175638318061829, 0.12347347289323807, -0.08288290351629257, 1.123293399810791, -0.008856342174112797, -0.0012104067718610168, 0.04824849218130112, -0.3093608021736145, -0.015986956655979156, -0.1817767322063446, 0.17417873442173004, -0.26181936264038086, -0.5864720344543457, 0.2493797391653061]} +{"t": 12.9791, "q": [-0.13787588477134705, 0.005254735704511404, -0.008236016146838665, 0.315863698720932, -0.18511027097702026, -0.010622325353324413, -0.07705356180667877, -0.033295903354883194, 0.010311760008335114, 0.32286885380744934, -0.26803767681121826, 0.02439499832689762, 0.0056112040765583515, -0.0181684922426939, 0.045210082083940506, 0.08178035169839859, 0.12353339046239853, -0.08289488404989243, 1.1233173608779907, -0.008832373656332493, -0.0011385014513507485, 0.048236507922410965, -0.30620893836021423, -0.016022909432649612, -0.18190854787826538, 0.17263276875019073, -0.261579692363739, -0.5912057757377625, 0.24658742547035217]} +{"t": 12.9959, "q": [-0.13787588477134705, 0.005280302371829748, -0.008222623728215694, 0.31583812832832336, -0.18511447310447693, -0.010615244507789612, -0.07707060128450394, -0.033295903354883194, 0.010311760008335114, 0.3228518068790436, -0.26803767681121826, 0.02439499832689762, 0.00546389352530241, -0.018160967156291008, 0.04521486163139343, 0.08176837116479874, 0.12360529601573944, -0.08287091553211212, 1.1233173608779907, -0.008832373656332493, -0.0011145329335704446, 0.04824849218130112, -0.3031649589538574, -0.015986956655979156, -0.18184863030910492, 0.17165005207061768, -0.26142388582229614, -0.5954122543334961, 0.24354343116283417]} +{"t": 13.0127, "q": [-0.13790997862815857, 0.00526325823739171, -0.008236016146838665, 0.31583812832832336, -0.1851101517677307, -0.010608107782900333, -0.07709617167711258, -0.03327886015176773, 0.010351935401558876, 0.3228773772716522, -0.26803767681121826, 0.02439499832689762, 0.00542371766641736, -0.018085649237036705, 0.04528145492076874, 0.08172043412923813, 0.12362926453351974, -0.08289488404989243, 1.1233294010162354, -0.00882038939744234, -0.0010785802733153105, 0.04824849218130112, -0.3008999228477478, -0.01589108258485794, -0.1817527562379837, 0.17053551971912384, -0.2611842155456543, -0.5985401272773743, 0.24045149981975555]} +{"t": 13.0294, "q": [-0.13787588477134705, 0.005297346506267786, -0.008195839822292328, 0.3158551752567291, -0.18511027097702026, -0.010622325353324413, -0.07714730501174927, -0.033304426819086075, 0.010351935401558876, 0.3228859007358551, -0.2680419385433197, 0.024402249604463577, 0.005249623209238052, -0.01801789551973343, 0.045333873480558395, 0.08167249709367752, 0.12361728399991989, -0.08289488404989243, 1.123353362083435, -0.008856342174112797, -0.0010546118719503284, 0.04824849218130112, -0.2985989451408386, -0.015675365924835205, -0.18192054331302643, 0.1690255105495453, -0.2596142590045929, -0.6019676327705383, 0.2379228174686432]} +{"t": 13.0461, "q": [-0.1378503292798996, 0.005297346506267786, -0.008195839822292328, 0.31583812832832336, -0.18511027097702026, -0.010622325353324413, -0.07713878154754639, -0.033295903354883194, 0.010445678606629372, 0.3228859007358551, -0.26803767681121826, 0.02439499832689762, 0.005115704145282507, -0.017957882955670357, 0.045325156301259995, 0.08176837116479874, 0.12360529601573944, -0.08287091553211212, 1.123353362083435, -0.008832373656332493, -0.0010426276130601764, 0.04824849218130112, -0.29664552211761475, -0.015040202997624874, -0.18204037845134735, 0.16758739948272705, -0.2556115388870239, -0.6048797965049744, 0.2346750944852829]} +{"t": 13.0628, "q": [-0.13781623542308807, 0.005280302371829748, -0.008155664429068565, 0.3158296048641205, -0.1851060688495636, -0.01062940526753664, -0.07714730501174927, -0.03327886015176773, 0.010459070093929768, 0.32286885380744934, -0.2680374085903168, 0.024366134777665138, 0.004901433829218149, -0.017927711829543114, 0.045363061130046844, 0.0818762257695198, 0.12359331548213959, -0.08287091553211212, 1.1234132051467896, -0.008832373656332493, -0.0010426276130601764, 0.04824849218130112, -0.29484790563583374, -0.013206616044044495, -0.1832268238067627, 0.16653279960155487, -0.250602126121521, -0.6079238057136536, 0.22986942529678345]} +{"t": 13.0796, "q": [-0.1377991884946823, 0.005271779838949442, -0.008128880523145199, 0.315863698720932, -0.18511447310447693, -0.010615244507789612, -0.07717286795377731, -0.03327886015176773, 0.010459070093929768, 0.32290294766426086, -0.2680334150791168, 0.02438773214817047, 0.004553244449198246, -0.01776217855513096, 0.04546823725104332, 0.08197209984064102, 0.12360529601573944, -0.08288290351629257, 1.1234492063522339, -0.008832373656332493, -0.0010426276130601764, 0.04826047644019127, -0.2929903268814087, -0.009898969903588295, -0.18690598011016846, 0.1654302477836609, -0.2445381134748459, -0.6119025349617004, 0.22417691349983215]} +{"t": 13.0963, "q": [-0.13779066503047943, 0.00532291317358613, -0.008102096617221832, 0.3158551752567291, -0.18511457741260529, -0.010629444383084774, -0.07723252475261688, -0.03328738361597061, 0.01057959720492363, 0.32290294766426086, -0.26803767681121826, 0.02439499832689762, 0.0038702578749507666, -0.017574142664670944, 0.04556896910071373, 0.08218781650066376, 0.12362926453351974, -0.08288290351629257, 1.1234971284866333, -0.00882038939744234, -0.0010785802733153105, 0.048236507922410965, -0.2909170687198639, -0.005033374764025211, -0.19301792979240417, 0.16437563300132751, -0.23828235268592834, -0.6155816912651062, 0.21739384531974792]} +{"t": 13.113, "q": [-0.1377139687538147, 0.005339957308024168, -0.007968178018927574, 0.3158125579357147, -0.1851101517677307, -0.010608107782900333, -0.0773177444934845, -0.03328738361597061, 0.010807259939610958, 0.32291147112846375, -0.26803767681121826, 0.02439499832689762, 0.002852473873645067, -0.01729603298008442, 0.045670557767152786, 0.08228369057178497, 0.12361728399991989, -0.08287091553211212, 1.1234971284866333, -0.008832373656332493, -0.0010905645322054625, 0.04824849218130112, -0.2886880040168762, 0.0010306433541700244, -0.2012510895729065, 0.1628296673297882, -0.22912640869617462, -0.6180863976478577, 0.21047894656658173]} +{"t": 13.1297, "q": [-0.13750091195106506, 0.005357001442462206, -0.007780691608786583, 0.31580403447151184, -0.18511447310447693, -0.010615244507789612, -0.0773603543639183, -0.033304426819086075, 0.011168841272592545, 0.32294556498527527, -0.2680375277996063, 0.024380557239055634, 0.0018079059664160013, -0.01701047085225582, 0.045758072286844254, 0.08236757665872574, 0.12359331548213959, -0.08288290351629257, 1.123521089553833, -0.008832373656332493, -0.0010785802733153105, 0.04824849218130112, -0.28671059012413025, 0.005620601586997509, -0.20875321328639984, 0.16146346926689148, -0.22100110352039337, -0.6207229495048523, 0.20301277935504913]} +{"t": 13.1465, "q": [-0.1373475193977356, 0.005374045576900244, -0.007445894181728363, 0.31580403447151184, -0.18511447310447693, -0.010615244507789612, -0.07743705809116364, -0.03327886015176773, 0.011610773392021656, 0.3229711353778839, -0.2680250108242035, 0.024387655779719353, 0.0007231623749248683, -0.016717350110411644, 0.04585975036025047, 0.0824754387140274, 0.12356934696435928, -0.08289488404989243, 1.1235570907592773, -0.008856342174112797, -0.0010546118719503284, 0.04824849218130112, -0.28463733196258545, 0.008317052386701107, -0.21566811203956604, 0.15960590541362762, -0.21152158081531525, -0.623431384563446, 0.19543874263763428]} +{"t": 13.1632, "q": [-0.137202650308609, 0.005510399583727121, -0.007137880194932222, 0.3157869875431061, -0.1851186752319336, -0.01060816366225481, -0.07749670743942261, -0.033304426819086075, 0.011985746212303638, 0.32303929328918457, -0.2680037021636963, 0.02435140684247017, -0.0005892434273846447, -0.016521969810128212, 0.045918144285678864, 0.08261924982070923, 0.1236412525177002, -0.08288290351629257, 1.1237248182296753, -0.00882038939744234, -0.0009827064350247383, 0.04824849218130112, -0.2830314338207245, 0.009311743080615997, -0.22168420255184174, 0.15700533986091614, -0.20289292931556702, -0.6250372529029846, 0.18935075402259827]} +{"t": 13.1801, "q": [-0.13708333671092987, 0.005663797724992037, -0.006896826438605785, 0.3157784640789032, -0.18512289226055145, -0.010601074434816837, -0.0775478407740593, -0.033304426819086075, 0.012293760664761066, 0.32309895753860474, -0.267982542514801, 0.024329563602805138, -0.0017409464344382286, -0.016356725245714188, 0.045948050916194916, 0.08261924982070923, 0.12377307564020157, -0.08287091553211212, 1.123868703842163, -0.008868326433002949, -0.0008149273344315588, 0.04826047644019127, -0.2811738848686218, 0.009851032868027687, -0.22839535772800446, 0.15303856134414673, -0.19455191493034363, -0.6259480714797974, 0.18296316266059875]} +{"t": 13.1968, "q": [-0.13703221082687378, 0.00583424000069499, -0.006870042532682419, 0.3157869875431061, -0.18511447310447693, -0.010615244507789612, -0.07755636423826218, -0.033304426819086075, 0.012307152152061462, 0.3231074810028076, -0.26794832944869995, 0.024257125332951546, -0.0022900141775608063, -0.01628926768898964, 0.04592527821660042, 0.08230765908956528, 0.12390490621328354, -0.08290687203407288, 1.1240484714508057, -0.008832373656332493, -0.0007550062146037817, 0.04824849218130112, -0.2792803943157196, 0.011157313361763954, -0.23727567493915558, 0.14846058189868927, -0.18704979121685028, -0.6267510056495667, 0.17652763426303864]} +{"t": 13.2135, "q": [-0.1370236873626709, 0.006089902948588133, -0.006896826438605785, 0.3157869875431061, -0.18512298166751862, -0.010615282692015171, -0.07755636423826218, -0.03323625028133392, 0.012240192852914333, 0.3231586217880249, -0.26790571212768555, 0.024184608832001686, -0.002731946762651205, -0.016334563493728638, 0.04585906118154526, 0.0818522572517395, 0.12400078028440475, -0.08290687203407288, 1.124024510383606, -0.008772453293204308, -0.0007550062146037817, 0.04824849218130112, -0.2775666415691376, 0.012739231809973717, -0.24506542086601257, 0.14399047195911407, -0.17699502408504486, -0.6272783279418945, 0.1700441688299179]} +{"t": 13.2303, "q": [-0.13700664043426514, 0.006243301089853048, -0.006896826438605785, 0.3158125579357147, -0.1851101517677307, -0.010608107782900333, -0.0775478407740593, -0.03326181694865227, 0.012280368246138096, 0.3231586217880249, -0.26781612634658813, 0.02401788905262947, -0.0034551091957837343, -0.01633474789559841, 0.04581210017204285, 0.08198408782482147, 0.12402474880218506, -0.08289488404989243, 1.124036431312561, -0.008772453293204308, -0.0007669904152862728, 0.04824849218130112, -0.27636823058128357, 0.01444099098443985, -0.2523038983345032, 0.1402154415845871, -0.16834241151809692, -0.6279613971710205, 0.1640520542860031]} +{"t": 13.247, "q": [-0.13703221082687378, 0.006447831634432077, -0.006910218391567469, 0.3158210813999176, -0.18511457741260529, -0.010629444383084774, -0.07753931730985641, -0.03327886015176773, 0.012280368246138096, 0.3231245279312134, -0.26772236824035645, 0.023858340457081795, -0.005222839303314686, -0.01632755994796753, 0.045732349157333374, 0.08224774152040482, 0.12406069785356522, -0.08284694701433182, 1.124036431312561, -0.008772453293204308, -0.0007669904152862728, 0.04824849218130112, -0.2757090926170349, 0.015843145549297333, -0.2585836350917816, 0.13772271573543549, -0.15713715553283691, -0.6292437314987183, 0.157388836145401]} +{"t": 13.2639, "q": [-0.13703221082687378, 0.006609752308577299, -0.006963785737752914, 0.3158210813999176, -0.18511447310447693, -0.010615244507789612, -0.07753080129623413, -0.03328738361597061, 0.012240192852914333, 0.3231074810028076, -0.2676374316215515, 0.023742157965898514, -0.007847650907933712, -0.01629757136106491, 0.04572327062487602, 0.0824275016784668, 0.12425244599580765, -0.08287091553211212, 1.1240724325180054, -0.008832373656332493, -0.0008029430755414069, 0.04826047644019127, -0.27564916014671326, 0.01690974272787571, -0.2648753523826599, 0.13623666763305664, -0.149227574467659, -0.6313170194625854, 0.15154053270816803]} +{"t": 13.2806, "q": [-0.1370236873626709, 0.00679723871871829, -0.006950393784791231, 0.31583812832832336, -0.18511037528514862, -0.010636524297297001, -0.0775478407740593, -0.03323625028133392, 0.0122669767588377, 0.32313305139541626, -0.26754769682884216, 0.023561013862490654, -0.010539421811699867, -0.016244938597083092, 0.0457473024725914, 0.08260726183652878, 0.12452808767557144, -0.08287091553211212, 1.1241562366485596, -0.00882038939744234, -0.0008868326549418271, 0.04827246069908142, -0.27530163526535034, 0.018491659313440323, -0.27330026030540466, 0.13497832417488098, -0.13711151480674744, -0.633665919303894, 0.14729811251163483]} +{"t": 13.2973, "q": [-0.137074813246727, 0.0069421143271028996, -0.0070173535495996475, 0.31584665179252625, -0.18510185182094574, -0.010636495426297188, -0.07753931730985641, -0.03326181694865227, 0.012240192852914333, 0.323150098323822, -0.26744544506073, 0.023386966437101364, -0.013057098723948002, -0.01615479215979576, 0.045767027884721756, 0.08271512389183044, 0.12482769042253494, -0.08285893499851227, 1.1241083145141602, -0.008808405138552189, -0.0009827064350247383, 0.04827246069908142, -0.2742230296134949, 0.020433103665709496, -0.28276780247688293, 0.13348029553890228, -0.1272125542163849, -0.6352478265762329, 0.14204901456832886]} +{"t": 13.314, "q": [-0.137074813246727, 0.00703585846349597, -0.007084312848746777, 0.3158722221851349, -0.18510185182094574, -0.010636495426297188, -0.07752227783203125, -0.03325329348444939, 0.012226800434291363, 0.3231671452522278, -0.2673647403717041, 0.02327803336083889, -0.015561383217573166, -0.01607227884232998, 0.045753803104162216, 0.08289488404989243, 0.1252351552248001, -0.08284694701433182, 1.1241682767868042, -0.00882038939744234, -0.0009827064350247383, 0.04828444495797157, -0.2724493741989136, 0.0213678739964962, -0.28970664739608765, 0.13252156972885132, -0.11538412421941757, -0.6358110904693604, 0.1371954083442688]} +{"t": 13.3307, "q": [-0.13704071938991547, 0.007180734071880579, -0.006990569643676281, 0.3159233331680298, -0.18510185182094574, -0.010636495426297188, -0.07751375436782837, -0.03321920707821846, 0.012333936057984829, 0.3231671452522278, -0.2671985924243927, 0.022995203733444214, -0.017744261771440506, -0.015937436372041702, 0.045689478516578674, 0.08295480906963348, 0.12564261257648468, -0.08284694701433182, 1.124252200126648, -0.008832373656332493, -0.0009467537747696042, 0.04830841347575188, -0.2700884938240051, 0.021979069337248802, -0.2966814935207367, 0.13158679008483887, -0.10577277094125748, -0.6360507607460022, 0.13138306140899658]} +{"t": 13.3474, "q": [-0.1370236873626709, 0.0072915214113891125, -0.0068566505797207355, 0.315906286239624, -0.1851060688495636, -0.01062940526753664, -0.07753080129623413, -0.033244773745536804, 0.012641949579119682, 0.3231586217880249, -0.26702818274497986, 0.022705145180225372, -0.01963251829147339, -0.015900112688541412, 0.04563821479678154, 0.08297877758741379, 0.12605008482933044, -0.08285893499851227, 1.1244080066680908, -0.008832373656332493, -0.000898816913831979, 0.048296429216861725, -0.2669725716114044, 0.022050974890589714, -0.3022421598434448, 0.13107147812843323, -0.09242234379053116, -0.6360507607460022, 0.1273563653230667]} +{"t": 13.3642, "q": [-0.13696402311325073, 0.007504574488848448, -0.0068566505797207355, 0.3159233331680298, -0.18509355187416077, -0.010664856061339378, -0.07753080129623413, -0.03321068361401558, 0.012789260596036911, 0.323150098323822, -0.2668834328651428, 0.022472986951470375, -0.021092236042022705, -0.01585499942302704, 0.04565746709704399, 0.08295480906963348, 0.12642158567905426, -0.08284694701433182, 1.124719500541687, -0.008832373656332493, -0.0007789746159687638, 0.04827246069908142, -0.2638806700706482, 0.022530343383550644, -0.3085578382015228, 0.1309276670217514, -0.08170844614505768, -0.6360387802124023, 0.12360529601573944]} +{"t": 13.3809, "q": [-0.1369810700416565, 0.007743193302303553, -0.006829866673797369, 0.31599152088165283, -0.18509355187416077, -0.010664856061339378, -0.0775904506444931, -0.033074330538511276, 0.01284282747656107, 0.3231586217880249, -0.26677265763282776, 0.02228444069623947, -0.021614519879221916, -0.0157872773706913, 0.04570043832063675, 0.08300274610519409, 0.1266373097896576, -0.08290687203407288, 1.1259418725967407, -0.008856342174112797, -0.0007789746159687638, 0.04827246069908142, -0.26027339696884155, 0.023668844252824783, -0.31688687205314636, 0.1309276670217514, -0.0697961300611496, -0.6360267996788025, 0.11985423415899277]} +{"t": 13.3976, "q": [-0.13700664043426514, 0.007939202710986137, -0.006883434485644102, 0.31603413820266724, -0.18507662415504456, -0.010678987950086594, -0.07761602103710175, -0.032827187329530716, 0.012816044501960278, 0.32317566871643066, -0.26669609546661377, 0.022168351337313652, -0.021614519879221916, -0.01568949781358242, 0.0457531176507473, 0.08295480906963348, 0.12667326629161835, -0.08290687203407288, 1.1276795864105225, -0.008796420879662037, -0.0007310377550311387, 0.04827246069908142, -0.2562946379184723, 0.02442385070025921, -0.3237178921699524, 0.1311793327331543, -0.057320550084114075, -0.6359549164772034, 0.11622301489114761]} +{"t": 13.4143, "q": [-0.1370236873626709, 0.00807555578649044, -0.006950393784791231, 0.31611934304237366, -0.18506820499897003, -0.010693157091736794, -0.07766715437173843, -0.03249482437968254, 0.012789260596036911, 0.32322677969932556, -0.26664483547210693, 0.022066878154873848, -0.02153416909277439, -0.015629300847649574, 0.04579131305217743, 0.08246345072984695, 0.1266612708568573, -0.08294282108545303, 1.1289020776748657, -0.008772453293204308, -0.0006831008358858526, 0.04827246069908142, -0.2518724501132965, 0.024879250675439835, -0.3293265104293823, 0.13168266415596008, -0.044617269188165665, -0.6357991099357605, 0.11265172064304352]} +{"t": 13.4311, "q": [-0.13700664043426514, 0.00807555578649044, -0.006950393784791231, 0.3161449134349823, -0.18505559861660004, -0.010714399628341198, -0.07773532718420029, -0.03212837502360344, 0.01285621989518404, 0.32321828603744507, -0.266602098941803, 0.021979941055178642, -0.021560952067375183, -0.015494379214942455, 0.045745767652988434, 0.08218781650066376, 0.12660135328769684, -0.08295480906963348, 1.1294173002243042, -0.008796420879662037, -0.0006950850365683436, 0.04828444495797157, -0.2475821077823639, 0.025047030299901962, -0.3331015408039093, 0.1321500539779663, -0.032645028084516525, -0.6355594396591187, 0.11074622720479965]} +{"t": 13.4478, "q": [-0.1369725465774536, 0.008101122453808784, -0.006870042532682419, 0.31620457768440247, -0.1850430816411972, -0.010749849490821362, -0.07776089757680893, -0.03175340220332146, 0.013030314818024635, 0.32321828603744507, -0.26651275157928467, 0.02184208296239376, -0.021761830896139145, -0.01534406840801239, 0.04580363258719444, 0.08218781650066376, 0.1266133338212967, -0.08294282108545303, 1.130232334136963, -0.008796420879662037, -0.0007430219557136297, 0.04826047644019127, -0.24344755709171295, 0.025130920112133026, -0.33573806285858154, 0.13282117247581482, -0.019905798137187958, -0.6354156136512756, 0.11012304574251175]} +{"t": 13.4645, "q": [-0.1369725465774536, 0.008177820593118668, -0.0068566505797207355, 0.3161960542201996, -0.18503467738628387, -0.010764019563794136, -0.07781203091144562, -0.031378429383039474, 0.01311066560447216, 0.32321828603744507, -0.26638492941856384, 0.021624520421028137, -0.021788613870739937, -0.01515605766326189, 0.04592267423868179, 0.08219980448484421, 0.12662532925605774, -0.08294282108545303, 1.130927324295044, -0.008808405138552189, -0.0007909588748589158, 0.04826047644019127, -0.2392171174287796, 0.025178857147693634, -0.3373199999332428, 0.1329529881477356, -0.00635163951665163, -0.6352358460426331, 0.11002717167139053]} +{"t": 13.4814, "q": [-0.13700664043426514, 0.008280087262392044, -0.006923609878867865, 0.31616196036338806, -0.18497148156166077, -0.010856055654585361, -0.0778631642460823, -0.031011978164315224, 0.013083881698548794, 0.32318419218063354, -0.26633381843566895, 0.02153748832643032, -0.02149399183690548, -0.01505829393863678, 0.04598455876111984, 0.08216384798288345, 0.12658937275409698, -0.08288290351629257, 1.1311790943145752, -0.008808405138552189, -0.0008868326549418271, 0.04826047644019127, -0.23558589816093445, 0.025298699736595154, -0.3387221395969391, 0.13321664929389954, 0.005332980304956436, -0.634864330291748, 0.11003915965557098]} +{"t": 13.4981, "q": [-0.13701516389846802, 0.008459052070975304, -0.00705752894282341, 0.31612786650657654, -0.18482859432697296, -0.01111107412725687, -0.07787168025970459, -0.030594393610954285, 0.012990138493478298, 0.32314157485961914, -0.2662825584411621, 0.021436050534248352, -0.02101188339293003, -0.01497556921094656, 0.04603692516684532, 0.08213987946510315, 0.12652945518493652, -0.08289488404989243, 1.1312988996505737, -0.00882038939744234, -0.0009827064350247383, 0.04824849218130112, -0.2319786548614502, 0.025670209899544716, -0.34010031819343567, 0.13373197615146637, 0.018994996324181557, -0.6344568729400635, 0.11002717167139053]} +{"t": 13.5148, "q": [-0.1370236873626709, 0.008459052070975304, -0.007204839959740639, 0.31606820225715637, -0.18471072614192963, -0.011295192874968052, -0.07788872718811035, -0.030244987457990646, 0.012829435989260674, 0.3231245279312134, -0.2662440836429596, 0.021356362849473953, -0.02051638439297676, -0.014900430105626583, 0.04606575891375542, 0.08211591094732285, 0.12650547921657562, -0.08293084055185318, 1.1313587427139282, -0.008868326433002949, -0.0010905645322054625, 0.04826047644019127, -0.22825154662132263, 0.026281405240297318, -0.34085533022880554, 0.1338518112897873, 0.03320828825235367, -0.6341692209243774, 0.11008709669113159]} +{"t": 13.5315, "q": [-0.137074813246727, 0.00849314033985138, -0.007338759023696184, 0.31603413820266724, -0.18464775383472443, -0.011415637098252773, -0.07789725065231323, -0.029708094894886017, 0.012735692784190178, 0.323081910610199, -0.26621001958847046, 0.021298347041010857, -0.020114626735448837, -0.014765062369406223, 0.04615144804120064, 0.0821278989315033, 0.12646952271461487, -0.08289488404989243, 1.131430745124817, -0.008832373656332493, -0.0011744541116058826, 0.04826047644019127, -0.2253633588552475, 0.027096332982182503, -0.34115493297576904, 0.13403157889842987, 0.04556402564048767, -0.6339535117149353, 0.11008709669113159]} +{"t": 13.5483, "q": [-0.137074813246727, 0.008510183542966843, -0.0074191102758049965, 0.3160170912742615, -0.18459297716617584, -0.011493511497974396, -0.0779569074511528, -0.029017802327871323, 0.012735692784190178, 0.3230648636817932, -0.26615461707115173, 0.021204065531492233, -0.019953925162553787, -0.014644669368863106, 0.04624638333916664, 0.0821518674492836, 0.12642158567905426, -0.08290687203407288, 1.1316463947296143, -0.008832373656332493, -0.0012583436910063028, 0.04826047644019127, -0.22313429415225983, 0.0279831662774086, -0.3412148654460907, 0.13409149646759033, 0.05783586949110031, -0.633893609046936, 0.11027883738279343]} +{"t": 13.565, "q": [-0.13709186017513275, 0.008663581684231758, -0.0074860695749521255, 0.3159574270248413, -0.1845172792673111, -0.011620997451245785, -0.07802508026361465, -0.02798662707209587, 0.012722301296889782, 0.32300522923469543, -0.26609084010124207, 0.021109705790877342, -0.019699478521943092, -0.014546933583915234, 0.046298883855342865, 0.08210393041372299, 0.12642158567905426, -0.08294282108545303, 1.131670355796814, -0.008856342174112797, -0.001270327833481133, 0.04826047644019127, -0.2210730016231537, 0.02912166714668274, -0.34152644872665405, 0.1341514140367508, 0.06883738934993744, -0.6338217258453369, 0.11033876240253448]} +{"t": 13.5817, "q": [-0.137074813246727, 0.00874028168618679, -0.007593204732984304, 0.3159489035606384, -0.18446680903434753, -0.011705990880727768, -0.07808473706245422, -0.02646969072520733, 0.012722301296889782, 0.32296261191368103, -0.266056627035141, 0.02103726752102375, -0.019378073513507843, -0.014471926726400852, 0.046290185302495956, 0.08194813132286072, 0.12646952271461487, -0.08291885256767273, 1.1316344738006592, -0.008868326433002949, -0.001282312092371285, 0.04826047644019127, -0.21893981099128723, 0.02985270507633686, -0.3413946330547333, 0.1341274529695511, 0.08041415363550186, -0.6338576674461365, 0.11042264848947525]} +{"t": 13.5984, "q": [-0.13705776631832123, 0.008893679827451706, -0.007660164497792721, 0.315906286239624, -0.1844416707754135, -0.011762691661715508, -0.07806769013404846, -0.02462039142847061, 0.012762476690113544, 0.32291147112846375, -0.26603543758392334, 0.02101544290781021, -0.019230762496590614, -0.014449496753513813, 0.04626693204045296, 0.08191218227148056, 0.12644556164741516, -0.08287091553211212, 1.131670355796814, -0.008868326433002949, -0.001294296351261437, 0.04827246069908142, -0.21742980182170868, 0.03076350688934326, -0.34173017740249634, 0.13346831500530243, 0.08905477821826935, -0.6340973377227783, 0.11047058552503586]} +{"t": 13.6152, "q": [-0.137074813246727, 0.009106732904911041, -0.007633380591869354, 0.3159233331680298, -0.1844416707754135, -0.011762691661715508, -0.07814439386129379, -0.02443290501832962, 0.012896395288407803, 0.3228006958961487, -0.2659885883331299, 0.0209356602281332, -0.019230762496590614, -0.01447954773902893, 0.046257272362709045, 0.08191218227148056, 0.12642158567905426, -0.08289488404989243, 1.1317542791366577, -0.0088803106918931, -0.0012583436910063028, 0.04826047644019127, -0.21618343889713287, 0.030955253168940544, -0.341646283864975, 0.13343235850334167, 0.09924136847257614, -0.634121298789978, 0.11090201884508133]} +{"t": 13.6319, "q": [-0.13714298605918884, 0.009191952645778656, -0.007660164497792721, 0.3159148097038269, -0.18442906439304352, -0.011783933266997337, -0.07815290987491608, -0.02430507354438305, 0.01293657161295414, 0.32273250818252563, -0.26593732833862305, 0.020834222435951233, -0.019230762496590614, -0.01453967671841383, 0.046228572726249695, 0.08173241466283798, 0.12644556164741516, -0.08289488404989243, 1.1318261623382568, -0.008832373656332493, -0.001270327833481133, 0.04826047644019127, -0.21502096951007843, 0.030787475407123566, -0.3418620228767395, 0.13328854739665985, 0.1053173691034317, -0.634265124797821, 0.1113334521651268]} +{"t": 13.6487, "q": [-0.1371174305677414, 0.009294219315052032, -0.0076467725448310375, 0.3159233331680298, -0.18443316221237183, -0.011762653477489948, -0.07821256667375565, -0.024057932198047638, 0.013003530912101269, 0.32268136739730835, -0.26590338349342346, 0.02079062908887863, -0.019364681094884872, -0.014577212743461132, 0.04622353985905647, 0.08174440264701843, 0.12652945518493652, -0.08289488404989243, 1.1318861246109009, -0.00882038939744234, -0.0012343751732259989, 0.04826047644019127, -0.21402627229690552, 0.029996516183018684, -0.34185001254081726, 0.13289307057857513, 0.1107342392206192, -0.6344808340072632, 0.11196861416101456]} +{"t": 13.6654, "q": [-0.1371174305677414, 0.009345350787043571, -0.007553029339760542, 0.31589776277542114, -0.1844121366739273, -0.011798065155744553, -0.07819551974534988, -0.023921577259898186, 0.013097274117171764, 0.32272398471832275, -0.26587754487991333, 0.020718267187476158, -0.01932450570166111, -0.01457727886736393, 0.04620477184653282, 0.08168447762727737, 0.12655341625213623, -0.08288290351629257, 1.1319340467453003, -0.008856342174112797, -0.001270327833481133, 0.04826047644019127, -0.2131034880876541, 0.029049761593341827, -0.34120288491249084, 0.13253355026245117, 0.11559983342885971, -0.634636640548706, 0.11302322894334793]} +{"t": 13.6821, "q": [-0.13712595403194427, 0.009345350787043571, -0.007593204732984304, 0.315906286239624, -0.18442054092884064, -0.011783904395997524, -0.07819551974534988, -0.02387896738946438, 0.013137449510395527, 0.32272398471832275, -0.2658650279045105, 0.020725363865494728, -0.019244154915213585, -0.014667458832263947, 0.04616641253232956, 0.08143281191587448, 0.12651745975017548, -0.08293084055185318, 1.1319940090179443, -0.008868326433002949, -0.0012223910307511687, 0.04826047644019127, -0.21214476227760315, 0.027947213500738144, -0.34057968854904175, 0.13231782615184784, 0.12123242020606995, -0.6346606016159058, 0.11418569833040237]} +{"t": 13.699, "q": [-0.13717707991600037, 0.009328307583928108, -0.007593204732984304, 0.3159148097038269, -0.18442484736442566, -0.011791023425757885, -0.07817848026752472, -0.023861922323703766, 0.01311066560447216, 0.3227495551109314, -0.2658478617668152, 0.020681925117969513, -0.018936140462756157, -0.014727688394486904, 0.04610956087708473, 0.0812051072716713, 0.12660135328769684, -0.08288290351629257, 1.1320419311523438, -0.008808405138552189, -0.0012343751732259989, 0.04826047644019127, -0.21109014749526978, 0.02509496733546257, -0.3397168219089508, 0.13228188455104828, 0.12270648032426834, -0.6346965432167053, 0.11580356955528259]} +{"t": 13.7157, "q": [-0.1372537761926651, 0.009294219315052032, -0.007606596685945988, 0.3159233331680298, -0.18441644310951233, -0.011805184185504913, -0.07819551974534988, -0.023861922323703766, 0.013083881698548794, 0.32272398471832275, -0.2658224105834961, 0.020652830600738525, -0.018360288813710213, -0.014915501698851585, 0.04604685306549072, 0.08109725266695023, 0.12667326629161835, -0.08288290351629257, 1.1320419311523438, -0.00882038939744234, -0.0012343751732259989, 0.04824849218130112, -0.20993965864181519, 0.02142779529094696, -0.33788323402404785, 0.13234180212020874, 0.1224907636642456, -0.6346845626831055, 0.11878763884305954]} +{"t": 13.7325, "q": [-0.13732194900512695, 0.009268652647733688, -0.007606596685945988, 0.3159489035606384, -0.18441224098205566, -0.011812265031039715, -0.07819551974534988, -0.02387896738946438, 0.013083881698548794, 0.3227495551109314, -0.26581814885139465, 0.02064558118581772, -0.01744963973760605, -0.015215566381812096, 0.04607227072119713, 0.08098939061164856, 0.1267331838607788, -0.08289488404989243, 1.1320059299468994, -0.00882038939744234, -0.0012463594321161509, 0.04827246069908142, -0.20857346057891846, 0.017245300114154816, -0.334695428609848, 0.13282117247581482, 0.12150806188583374, -0.6346965432167053, 0.12243084609508514]} +{"t": 13.7494, "q": [-0.13740716874599457, 0.009191952645778656, -0.007633380591869354, 0.3160000443458557, -0.18442054092884064, -0.011783904395997524, -0.07821256667375565, -0.023921577259898186, 0.013043706305325031, 0.32272398471832275, -0.2658180296421051, 0.020631158724427223, -0.016605950891971588, -0.015530658885836601, 0.046087976545095444, 0.08094145357608795, 0.1267331838607788, -0.08289488404989243, 1.1320658922195435, -0.00882038939744234, -0.001294296351261437, 0.04827246069908142, -0.20712336897850037, 0.013134710490703583, -0.33106422424316406, 0.1335522085428238, 0.11968645453453064, -0.6347085237503052, 0.12699683010578156]} +{"t": 13.7662, "q": [-0.13745830953121185, 0.009123776108026505, -0.007633380591869354, 0.31598299741744995, -0.184420645236969, -0.011798103339970112, -0.07822961360216141, -0.023998277261853218, 0.013043706305325031, 0.3227154612541199, -0.2658180296421051, 0.020631158724427223, -0.01581582799553871, -0.0159432515501976, 0.046116720885038376, 0.0806778073310852, 0.1267092078924179, -0.08288290351629257, 1.132017970085144, -0.008832373656332493, -0.001282312092371285, 0.04826047644019127, -0.20539763569831848, 0.009108011610805988, -0.3268337845802307, 0.1338757872581482, 0.11776898056268692, -0.6347324848175049, 0.13266538083553314]} +{"t": 13.7829, "q": [-0.1375350058078766, 0.00903855450451374, -0.007633380591869354, 0.3160000443458557, -0.18442054092884064, -0.011783904395997524, -0.07822961360216141, -0.02406645379960537, 0.013057098723948002, 0.3226558268070221, -0.2658096253871918, 0.020631082355976105, -0.015146234072744846, -0.016498800367116928, 0.046082738786935806, 0.08037819713354111, 0.12667326629161835, -0.08289488404989243, 1.1320419311523438, -0.008868326433002949, -0.001306280493736267, 0.04827246069908142, -0.20354008674621582, 0.0055127437226474285, -0.32195621728897095, 0.13373197615146637, 0.11604325473308563, -0.6347444653511047, 0.13711151480674744]} +{"t": 13.7996, "q": [-0.13769692182540894, 0.008953334763646126, -0.007753907702863216, 0.31597447395324707, -0.18442484736442566, -0.011791023425757885, -0.07821256667375565, -0.024202806875109673, 0.012896395288407803, 0.3225620687007904, -0.2658096253871918, 0.020631082355976105, -0.013753476552665234, -0.017069362103939056, 0.046048592776060104, 0.08025835454463959, 0.12672120332717896, -0.08291885256767273, 1.1320419311523438, -0.008856342174112797, -0.001330249011516571, 0.04827246069908142, -0.20238959789276123, 0.0029361352790147066, -0.31743815541267395, 0.1339476853609085, 0.11226822435855865, -0.6347324848175049, 0.14162957668304443]} +{"t": 13.8163, "q": [-0.13773953914642334, 0.00897889956831932, -0.00798156950622797, 0.3159489035606384, -0.1844121366739273, -0.011798065155744553, -0.07817848026752472, -0.02431359514594078, 0.012762476690113544, 0.32253649830818176, -0.2658138871192932, 0.02063833177089691, -0.012307152152061462, -0.017617130652070045, 0.046085018664598465, 0.08015049993991852, 0.12676914036273956, -0.08289488404989243, 1.1320538520812988, -0.00882038939744234, -0.001342233270406723, 0.04827246069908142, -0.20140689611434937, 0.0007789746159687638, -0.31306391954421997, 0.13398364186286926, 0.1061682477593422, -0.6347444653511047, 0.14679478108882904]} +{"t": 13.8331, "q": [-0.1377991884946823, 0.008987423032522202, -0.00806192122399807, 0.31599152088165283, -0.18441644310951233, -0.011805184185504913, -0.07816143333911896, -0.02448403835296631, 0.012682124972343445, 0.3223831057548523, -0.2658180296421051, 0.020631158724427223, -0.010057313367724419, -0.018082302063703537, 0.04612673074007034, 0.07997073233127594, 0.1269129514694214, -0.08287091553211212, 1.1319940090179443, -0.008856342174112797, -0.001342233270406723, 0.04824849218130112, -0.20075973868370056, -0.00013182648399379104, -0.309516578912735, 0.13403157889842987, 0.09943311661481857, -0.6347444653511047, 0.15311045944690704]} +{"t": 13.8499, "q": [-0.13779066503047943, 0.008953334763646126, -0.008075312711298466, 0.31594038009643555, -0.18441644310951233, -0.011805184185504913, -0.07816143333911896, -0.02462039142847061, 0.012655341066420078, 0.32225528359413147, -0.26582667231559753, 0.020660098642110825, -0.0070307450369000435, -0.018561888486146927, 0.04631854221224785, 0.07992279529571533, 0.12709270417690277, -0.08285893499851227, 1.1319700479507446, -0.008832373656332493, -0.0013542174128815532, 0.04826047644019127, -0.20025640726089478, -0.0009108011145144701, -0.3054179847240448, 0.13488245010375977, 0.09584983438253403, -0.6347085237503052, 0.15632224082946777]} +{"t": 13.8667, "q": [-0.1378077119588852, 0.008961856365203857, -0.008128880523145199, 0.3159489035606384, -0.18442054092884064, -0.011783904395997524, -0.07816143333911896, -0.024765267968177795, 0.012628557160496712, 0.3221615254878998, -0.26581814885139465, 0.02064558118581772, -0.0041247038170695305, -0.019214199855923653, 0.04641846567392349, 0.07983890920877457, 0.1273563653230667, -0.08283496648073196, 1.1319700479507446, -0.00882038939744234, -0.0014381069922819734, 0.04828444495797157, -0.1995733082294464, -0.0011624698527157307, -0.3013433516025543, 0.138393834233284, 0.09291369467973709, -0.6343729496002197, 0.15780827403068542]} +{"t": 13.8834, "q": [-0.13779066503047943, 0.008961856365203857, -0.008128880523145199, 0.31598299741744995, -0.18442054092884064, -0.011783904395997524, -0.07822961360216141, -0.02491866610944271, 0.012628557160496712, 0.3220677971839905, -0.265830934047699, 0.02066734805703163, 0.001232054433785379, -0.020145265385508537, 0.046257030218839645, 0.07962319254875183, 0.1275840550661087, -0.08282297849655151, 1.1319580078125, -0.008808405138552189, -0.0014381069922819734, 0.04827246069908142, -0.1982550323009491, -0.0007669904152862728, -0.2989464998245239, 0.1414857655763626, 0.09015733003616333, -0.6342771053314209, 0.15797606110572815]} +{"t": 13.9001, "q": [-0.13777361810207367, 0.00897889956831932, -0.008021745830774307, 0.31598299741744995, -0.18442906439304352, -0.011783933266997337, -0.07822961360216141, -0.025072064250707626, 0.012655341066420078, 0.3218717873096466, -0.2658224105834961, 0.020652830600738525, 0.004365758039057255, -0.021255841478705406, 0.046252235770225525, 0.07952731847763062, 0.12770390510559082, -0.08282297849655151, 1.1319220066070557, -0.008832373656332493, -0.0015939020086079836, 0.04828444495797157, -0.19628962874412537, -0.0005992112564854324, -0.29781997203826904, 0.14262425899505615, 0.089342400431633, -0.6345407366752625, 0.1560945361852646]} +{"t": 13.9168, "q": [-0.13778214156627655, 0.008961856365203857, -0.008075312711298466, 0.31593185663223267, -0.18442906439304352, -0.011783933266997337, -0.07822109013795853, -0.025361815467476845, 0.01258838176727295, 0.3218206465244293, -0.2658268213272095, 0.02067452296614647, 0.005852258298546076, -0.022170525044202805, 0.046427737921476364, 0.0800785943865776, 0.1278836727142334, -0.08282297849655151, 1.1319459676742554, -0.008916263468563557, -0.0016777915880084038, 0.04828444495797157, -0.1941085010766983, 0.0010186590952798724, -0.3010557293891907, 0.14285196363925934, 0.08967795968055725, -0.6359069347381592, 0.1534220576286316]} +{"t": 13.9336, "q": [-0.13769692182540894, 0.008970377966761589, -0.00806192122399807, 0.3159659504890442, -0.18442906439304352, -0.011783933266997337, -0.07824665307998657, -0.025660090148448944, 0.012548206374049187, 0.3218376934528351, -0.26582255959510803, 0.020667271688580513, 0.005946001503616571, -0.022536661475896835, 0.04672766849398613, 0.08079764991998672, 0.1281113624572754, -0.08282297849655151, 1.1320059299468994, -0.008892294950783253, -0.001689775730483234, 0.048296429216861725, -0.19029751420021057, 0.003463441040366888, -0.304027795791626, 0.14267219603061676, 0.09020526707172394, -0.6373450756072998, 0.15218767523765564]} +{"t": 13.9503, "q": [-0.1375350058078766, 0.008953334763646126, -0.007673555985093117, 0.3158722221851349, -0.18443326652050018, -0.01177685335278511, -0.07830630987882614, -0.025958362966775894, 0.012816044501960278, 0.3218376934528351, -0.2658310532569885, 0.020681772381067276, 0.005289798602461815, -0.022872690111398697, 0.0470089353621006, 0.08107328414916992, 0.12841098010540009, -0.0827750414609909, 1.1320898532867432, -0.008952216245234013, -0.001749696908518672, 0.048296429216861725, -0.1867981255054474, 0.004554005805402994, -0.3045910596847534, 0.13940051198005676, 0.0902651846408844, -0.6401134133338928, 0.15206784009933472]} +{"t": 13.9671, "q": [-0.13745830953121185, 0.008953334763646126, -0.007271799258887768, 0.3158722221851349, -0.1844416707754135, -0.011762691661715508, -0.07836596667766571, -0.026205504313111305, 0.013124058023095131, 0.32184621691703796, -0.2658310532569885, 0.020681772381067276, 0.003776514669880271, -0.023231560364365578, 0.04722888022661209, 0.08136090636253357, 0.12916597723960876, -0.08276306092739105, 1.132245659828186, -0.008892294950783253, -0.0016058861510828137, 0.04834436625242233, -0.18488064408302307, 0.004745753016322851, -0.3044951856136322, 0.1380462944507599, 0.09008542448282242, -0.6437925696372986, 0.1528228372335434]} +{"t": 13.9839, "q": [-0.13739013671875, 0.008961856365203857, -0.006736123468726873, 0.31584665179252625, -0.1844542920589447, -0.011741441674530506, -0.07849379628896713, -0.026282204315066338, 0.013686517253518105, 0.32185474038124084, -0.26580187678337097, 0.020703157410025597, 0.0022096626926213503, -0.023591304197907448, 0.04728931561112404, 0.0815047174692154, 0.12994495034217834, -0.0827750414609909, 1.1324254274368286, -0.008892294950783253, -0.0015339808305725455, 0.04836833477020264, -0.18316689133644104, 0.00441019469872117, -0.3045670986175537, 0.13674001395702362, 0.09000153094530106, -0.6460096836090088, 0.15338610112667084]} +{"t": 14.0006, "q": [-0.1374327391386032, 0.008953334763646126, -0.006414717994630337, 0.31571027636528015, -0.1844542920589447, -0.011741441674530506, -0.07850231975317001, -0.026282204315066338, 0.014101666398346424, 0.3218717873096466, -0.2657686471939087, 0.020746121183037758, 0.0020355682354420424, -0.02416147105395794, 0.04728091135621071, 0.08139685541391373, 0.13077186048030853, -0.08276306092739105, 1.132712960243225, -0.008832373656332493, -0.0014860439114272594, 0.04836833477020264, -0.18154902756214142, 0.004062652587890625, -0.3045670986175537, 0.1365482658147812, 0.08941430598497391, -0.6464411020278931, 0.1537456214427948]} +{"t": 14.0173, "q": [-0.13750943541526794, 0.008961856365203857, -0.006508461199700832, 0.31571879982948303, -0.1844542920589447, -0.011741441674530506, -0.0784597098827362, -0.02635890245437622, 0.014074882492423058, 0.3219228982925415, -0.26575639843940735, 0.02078208327293396, 0.002531068166717887, -0.024762354791164398, 0.047140318900346756, 0.07873635739088058, 0.13144297897815704, -0.08273909240961075, 1.1327250003814697, -0.008868326433002949, -0.0010785802733153105, 0.048356350511312485, -0.18017084896564484, 0.003787015099078417, -0.30445924401283264, 0.13772271573543549, 0.08826381713151932, -0.6464291214942932, 0.15423697233200073]} +{"t": 14.034, "q": [-0.137577623128891, 0.008961856365203857, -0.006588812451809645, 0.31575289368629456, -0.1844542920589447, -0.011741441674530506, -0.07844266295433044, -0.02641855739057064, 0.013967746868729591, 0.32194846868515015, -0.26575639843940735, 0.02078208327293396, 0.0030399602837860584, -0.025258826091885567, 0.046888746321201324, 0.07713047415018082, 0.13193432986736298, -0.08282297849655151, 1.1325691938400269, -0.008832373656332493, -0.0011145329335704446, 0.04834436625242233, -0.17915217578411102, 0.0013781859306618571, -0.3044233024120331, 0.13919678330421448, 0.08608268946409225, -0.6463931798934937, 0.15482421219348907]} +{"t": 14.0507, "q": [-0.1375690996646881, 0.008953334763646126, -0.006642380263656378, 0.3158210813999176, -0.1844584047794342, -0.011720152571797371, -0.0784171000123024, -0.026435602456331253, 0.013900787569582462, 0.3219740390777588, -0.26575639843940735, 0.02078208327293396, 0.003347973804920912, -0.025830738246440887, 0.04657023772597313, 0.0761357843875885, 0.13228188455104828, -0.08284694701433182, 1.1326650381088257, -0.008832373656332493, -0.0010426276130601764, 0.04833238199353218, -0.17867282032966614, -0.0007310377550311387, -0.30445924401283264, 0.1401435285806656, 0.08313456922769547, -0.6463691592216492, 0.1552915871143341]} +{"t": 14.0675, "q": [-0.137577623128891, 0.008953334763646126, -0.006736123468726873, 0.31583812832832336, -0.1844542920589447, -0.011741441674530506, -0.07843413949012756, -0.026401514187455177, 0.01384721975773573, 0.3219655156135559, -0.26575639843940735, 0.02078208327293396, 0.0036024199798703194, -0.02633480913937092, 0.04634147137403488, 0.07593204826116562, 0.1324256956577301, -0.08283496648073196, 1.1327968835830688, -0.00878443755209446, -0.0009827064350247383, 0.04833238199353218, -0.1786608248949051, -0.0020852552261203527, -0.30445924401283264, 0.14082662761211395, 0.08083359897136688, -0.6463931798934937, 0.1555911898612976]} +{"t": 14.0842, "q": [-0.13761170208454132, 0.008953334763646126, -0.006776299327611923, 0.31583812832832336, -0.1844542920589447, -0.011741441674530506, -0.07844266295433044, -0.026341859251260757, 0.01379365287721157, 0.3219655156135559, -0.2657521367073059, 0.02077481523156166, 0.003990784753113985, -0.02663540653884411, 0.04626132920384407, 0.07586014270782471, 0.13248561322689056, -0.08289488404989243, 1.1329047679901123, -0.00878443755209446, -0.0010426276130601764, 0.04833238199353218, -0.17869678139686584, -0.0031398669816553593, -0.30445924401283264, 0.14149774610996246, 0.07933557033538818, -0.6464051604270935, 0.15571103990077972]} +{"t": 14.1009, "q": [-0.13772249221801758, 0.008961856365203857, -0.007044136989861727, 0.3158551752567291, -0.18445008993148804, -0.011748521588742733, -0.07845118641853333, -0.026333335787057877, 0.013499030843377113, 0.3219655156135559, -0.26576465368270874, 0.020767735317349434, 0.005115704145282507, -0.026755301281809807, 0.04628749564290047, 0.07605189085006714, 0.13246163725852966, -0.08290687203407288, 1.1329047679901123, -0.008832373656332493, -0.0011984225129708648, 0.04833238199353218, -0.17857694625854492, -0.0041585261933505535, -0.30453115701675415, 0.1417134702205658, 0.07829294353723526, -0.6464530825614929, 0.1558188945055008]} +{"t": 14.1176, "q": [-0.13779066503047943, 0.008970377966761589, -0.007298583164811134, 0.315863698720932, -0.18444578349590302, -0.011741402558982372, -0.0784597098827362, -0.026324814185500145, 0.013338328339159489, 0.3219314217567444, -0.26576465368270874, 0.020767735317349434, 0.005745123140513897, -0.026740238070487976, 0.046297136694192886, 0.07666309177875519, 0.13234180212020874, -0.08290687203407288, 1.1329766511917114, -0.008856342174112797, -0.001306280493736267, 0.04833238199353218, -0.17861288785934448, -0.00529702752828598, -0.3045191764831543, 0.14167751371860504, 0.07751397043466568, -0.6464650630950928, 0.15592674911022186]} +{"t": 14.1344, "q": [-0.13777361810207367, 0.008961856365203857, -0.00739232636988163, 0.31599152088165283, -0.1844373643398285, -0.011755572631955147, -0.0784597098827362, -0.02623959258198738, 0.013164233416318893, 0.3219143748283386, -0.2657689154148102, 0.02077498659491539, 0.0061736637726426125, -0.026732593774795532, 0.04632074013352394, 0.0776338130235672, 0.1323777586221695, -0.08290687203407288, 1.1329766511917114, -0.008856342174112797, -0.0013542174128815532, 0.04832039773464203, -0.17881663143634796, -0.006687197834253311, -0.3044951856136322, 0.1416894942522049, 0.07678293436765671, -0.646524965763092, 0.15633422136306763]} +{"t": 14.1511, "q": [-0.13773953914642334, 0.008961856365203857, -0.007472677621990442, 0.3159659504890442, -0.18443304300308228, -0.011748435907065868, -0.0784597098827362, -0.026162894442677498, 0.013083881698548794, 0.3218803107738495, -0.2657689154148102, 0.02077498659491539, 0.0062272315844893456, -0.026687458157539368, 0.04634027183055878, 0.07838881760835648, 0.13228188455104828, -0.08287091553211212, 1.1330245733261108, -0.008868326433002949, -0.0013662016717717052, 0.04832039773464203, -0.17887654900550842, -0.008221178315579891, -0.30443528294563293, 0.1416415572166443, 0.07568038254976273, -0.6465729475021362, 0.15705327689647675]} +{"t": 14.1678, "q": [-0.13772249221801758, 0.008961856365203857, -0.007539637386798859, 0.3160000443458557, -0.18443326652050018, -0.01177685335278511, -0.07845118641853333, -0.026035062968730927, 0.013043706305325031, 0.32185474038124084, -0.26576465368270874, 0.020767735317349434, 0.006267406977713108, -0.02669493667781353, 0.04634484276175499, 0.07874834537506104, 0.13226988911628723, -0.08288290351629257, 1.1330485343933105, -0.008832373656332493, -0.0013662016717717052, 0.04833238199353218, -0.17890051007270813, -0.009863017126917839, -0.3044712245464325, 0.1416415572166443, 0.07426624745130539, -0.6465849280357361, 0.1580120027065277]} +{"t": 14.1846, "q": [-0.13772249221801758, 0.008970377966761589, -0.007606596685945988, 0.3160000443458557, -0.1844416707754135, -0.011762691661715508, -0.07850231975317001, -0.0258646197617054, 0.01293657161295414, 0.32180359959602356, -0.26576465368270874, 0.020767735317349434, 0.006240623537451029, -0.02670246735215187, 0.04634002223610878, 0.07890413701534271, 0.13229386508464813, -0.08288290351629257, 1.1330724954605103, -0.008856342174112797, -0.001342233270406723, 0.04830841347575188, -0.17884059250354767, -0.01191231980919838, -0.30432742834091187, 0.1416415572166443, 0.07214503735303879, -0.6465609073638916, 0.15947408974170685]} +{"t": 14.2015, "q": [-0.13763727247714996, 0.008953334763646126, -0.007633380591869354, 0.3159659504890442, -0.18443316221237183, -0.011762653477489948, -0.07850231975317001, -0.025728266686201096, 0.012896395288407803, 0.32176950573921204, -0.2657731771469116, 0.020782236009836197, 0.0060933125205338, -0.026755020022392273, 0.04633444920182228, 0.07882025092840195, 0.13234180212020874, -0.08287091553211212, 1.1330485343933105, -0.008868326433002949, -0.0013662016717717052, 0.04832039773464203, -0.17884059250354767, -0.01362606417387724, -0.303200900554657, 0.14127004146575928, 0.06901714950799942, -0.6464890241622925, 0.16109195351600647]} +{"t": 14.2185, "q": [-0.1375690996646881, 0.00897889956831932, -0.007619988638907671, 0.31593185663223267, -0.18443746864795685, -0.011769772507250309, -0.07847674936056137, -0.02557486854493618, 0.012883003801107407, 0.32171836495399475, -0.2657729387283325, 0.020753389224410057, 0.006012961268424988, -0.02688305824995041, 0.04625249281525612, 0.07844873517751694, 0.13241370022296906, -0.08287091553211212, 1.1330366134643555, -0.0088803106918931, -0.0013901700731366873, 0.04832039773464203, -0.17888852953910828, -0.015339808538556099, -0.3010677099227905, 0.1410902887582779, 0.06546982377767563, -0.6464051604270935, 0.16266189515590668]} +{"t": 14.2352, "q": [-0.13750943541526794, 0.008953334763646126, -0.007633380591869354, 0.31589776277542114, -0.18442906439304352, -0.011783933266997337, -0.07849379628896713, -0.025472603738307953, 0.01285621989518404, 0.3216416835784912, -0.2657689154148102, 0.02077498659491539, 0.005946001503616571, -0.027056286111474037, 0.0461416132748127, 0.07804127782583237, 0.13258148729801178, -0.08284694701433182, 1.1330366134643555, -0.008892294950783253, -0.0013542174128815532, 0.04833238199353218, -0.17893646657466888, -0.016897758468985558, -0.29909029603004456, 0.14105433225631714, 0.061239391565322876, -0.6464171409606934, 0.16354872286319733]} +{"t": 14.252, "q": [-0.1375264823436737, 0.008953334763646126, -0.007633380591869354, 0.315906286239624, -0.1844416707754135, -0.011762691661715508, -0.0784597098827362, -0.025481125339865685, 0.012816044501960278, 0.32158201932907104, -0.26576465368270874, 0.020767735317349434, 0.005986177362501621, -0.02732653170824051, 0.046118319034576416, 0.07762182503938675, 0.13266538083553314, -0.08282297849655151, 1.1329647302627563, -0.008832373656332493, -0.0013662016717717052, 0.04833238199353218, -0.17809757590293884, -0.01732918992638588, -0.2956867814064026, 0.14105433225631714, 0.05782388523221016, -0.6463811993598938, 0.1643037348985672]} +{"t": 14.2688, "q": [-0.13755205273628235, 0.008961856365203857, -0.007606596685945988, 0.315906286239624, -0.18443746864795685, -0.011769772507250309, -0.07851936668157578, -0.02551521360874176, 0.012802652083337307, 0.3215649724006653, -0.2657731771469116, 0.020782236009836197, 0.005905826110392809, -0.027588311582803726, 0.04624054953455925, 0.07747801393270493, 0.13282117247581482, -0.08287091553211212, 1.1329526901245117, -0.008832373656332493, -0.0013781859306618571, 0.04833238199353218, -0.17629994451999664, -0.017377126961946487, -0.29252296686172485, 0.14107829332351685, 0.05434846132993698, -0.6462733149528503, 0.16509468853473663]} +{"t": 14.2856, "q": [-0.13755205273628235, 0.008961856365203857, -0.007593204732984304, 0.315863698720932, -0.18443746864795685, -0.011769772507250309, -0.07852788269519806, -0.02562600187957287, 0.012869611382484436, 0.3215053379535675, -0.26576465368270874, 0.020767735317349434, 0.005865650251507759, -0.02796943113207817, 0.04645441845059395, 0.07737015932798386, 0.1329529881477356, -0.08287091553211212, 1.132916808128357, -0.008832373656332493, -0.0013781859306618571, 0.04832039773464203, -0.1747899204492569, -0.01871936023235321, -0.28957483172416687, 0.1411142498254776, 0.04832039773464203, -0.6457579731941223, 0.1663290560245514]} +{"t": 14.3023, "q": [-0.1376202255487442, 0.00897889956831932, -0.007553029339760542, 0.31583812832832336, -0.1844416707754135, -0.011762691661715508, -0.07854492962360382, -0.02576235495507717, 0.012869611382484436, 0.32143715023994446, -0.26576465368270874, 0.020767735317349434, 0.005986177362501621, -0.028882957994937897, 0.04668215662240982, 0.0773342028260231, 0.13340839743614197, -0.08287091553211212, 1.1329047679901123, -0.008832373656332493, -0.0013662016717717052, 0.04833238199353218, -0.17357951402664185, -0.02353701926767826, -0.28565600514411926, 0.1414617896080017, 0.040350887924432755, -0.6451467871665955, 0.16745558381080627]} +{"t": 14.3191, "q": [-0.13764579594135284, 0.008961856365203857, -0.007579812780022621, 0.31583812832832336, -0.1844416707754135, -0.011762691661715508, -0.0785108432173729, -0.02588166482746601, 0.012816044501960278, 0.3214115798473358, -0.2657689154148102, 0.02077498659491539, 0.00613348837941885, -0.030194830149412155, 0.04677568003535271, 0.07737015932798386, 0.13437911868095398, -0.08287091553211212, 1.1328808069229126, -0.008832373656332493, -0.0013901700731366873, 0.04832039773464203, -0.17275260388851166, -0.03292066603899002, -0.28246819972991943, 0.14153370261192322, 0.0336996428668499, -0.6448951363563538, 0.16865399479866028]} +{"t": 14.3358, "q": [-0.1376713663339615, 0.008893679827451706, -0.007660164497792721, 0.315863698720932, -0.1844416707754135, -0.011762691661715508, -0.07852788269519806, -0.02588166482746601, 0.012722301296889782, 0.3213689625263214, -0.2657689154148102, 0.02077498659491539, 0.006548637058585882, -0.03218923136591911, 0.04682033509016037, 0.07745404541492462, 0.13568539917469025, -0.08284694701433182, 1.1328927278518677, -0.008832373656332493, -0.0013901700731366873, 0.04833238199353218, -0.1723691076040268, -0.04435361921787262, -0.2804788053035736, 0.14186926186084747, 0.026461169123649597, -0.6447513103485107, 0.16952885687351227]} +{"t": 14.3526, "q": [-0.13772249221801758, 0.008808458223938942, -0.007861042395234108, 0.31589776277542114, -0.18442906439304352, -0.011783933266997337, -0.0785108432173729, -0.02581348828971386, 0.012655341066420078, 0.3213178515434265, -0.26576465368270874, 0.020767735317349434, 0.007003961596637964, -0.034788716584444046, 0.04712808504700661, 0.07746603339910507, 0.13725532591342926, -0.08281099796295166, 1.1328808069229126, -0.008856342174112797, -0.0013901700731366873, 0.04834436625242233, -0.17175792157649994, -0.05704491212964058, -0.2784055471420288, 0.1432594358921051, 0.0183478482067585, -0.6444397568702698, 0.16982845962047577]} +{"t": 14.3693, "q": [-0.13786736130714417, 0.008782891556620598, -0.008102096617221832, 0.3159148097038269, -0.18443316221237183, -0.011762653477489948, -0.0785108432173729, -0.02568565495312214, 0.012574990279972553, 0.321283757686615, -0.2657731771469116, 0.020782236009836197, 0.007553029339760542, -0.0375976637005806, 0.04737875610589981, 0.07747801393270493, 0.13872939348220825, -0.08278702944517136, 1.1329047679901123, -0.008832373656332493, -0.0013901700731366873, 0.04832039773464203, -0.17088307440280914, -0.07028748095035553, -0.2745586037635803, 0.14430205523967743, 0.011636682786047459, -0.6440442204475403, 0.16966067254543304]} +{"t": 14.3861, "q": [-0.13796962797641754, 0.008782891556620598, -0.008410110138356686, 0.3159659504890442, -0.18442484736442566, -0.011791023425757885, -0.07851936668157578, -0.02545555867254734, 0.012454463168978691, 0.3212326169013977, -0.26577720046043396, 0.020760638639330864, 0.007914610207080841, -0.04051574319601059, 0.047869667410850525, 0.07754991948604584, 0.14007163047790527, -0.0827510729432106, 1.132928729057312, -0.008856342174112797, -0.0013901700731366873, 0.04833238199353218, -0.16990035772323608, -0.0836259201169014, -0.2721377909183502, 0.14536865055561066, 0.005057343281805515, -0.6436967253684998, 0.16956479847431183]} +{"t": 14.403, "q": [-0.13800372183322906, 0.008782891556620598, -0.008677948266267776, 0.31603413820266724, -0.18442484736442566, -0.011791023425757885, -0.07849379628896713, -0.02521693892776966, 0.012467854656279087, 0.32121556997299194, -0.2657729387283325, 0.020753389224410057, 0.008209232240915298, -0.043506428599357605, 0.04847550764679909, 0.07764579355716705, 0.14123409986495972, -0.08267916738986969, 1.132928729057312, -0.008856342174112797, -0.0013662016717717052, 0.048356350511312485, -0.16896559298038483, -0.09599364548921585, -0.27013641595840454, 0.14647120237350464, -0.0037630468141287565, -0.6434330344200134, 0.16926519572734833]} +{"t": 14.4198, "q": [-0.13802076876163483, 0.008808458223938942, -0.008892218582332134, 0.3160597085952759, -0.184420645236969, -0.011798103339970112, -0.07846823334693909, -0.024765267968177795, 0.012467854656279087, 0.3212240934371948, -0.2657855749130249, 0.020760715007781982, 0.008356543257832527, -0.046896547079086304, 0.049381379038095474, 0.07764579355716705, 0.14254038035869598, -0.08260726183652878, 1.1328808069229126, -0.008868326433002949, -0.0014141385909169912, 0.04840428754687309, -0.16726383566856384, -0.11007510870695114, -0.26523488759994507, 0.14789731800556183, -0.011121360585093498, -0.643157422542572, 0.16830645501613617]} +{"t": 14.4365, "q": [-0.13824233412742615, 0.008782891556620598, -0.009012745693325996, 0.31599152088165283, -0.1843954175710678, -0.011840595863759518, -0.07850231975317001, -0.024347683414816856, 0.01252142246812582, 0.32116442918777466, -0.265777051448822, 0.02074621617794037, 0.008356543257832527, -0.0501178614795208, 0.05042537301778793, 0.07789746671915054, 0.14423015713691711, -0.08257131278514862, 1.1328808069229126, -0.008856342174112797, -0.0014860439114272594, 0.04856007918715477, -0.1652504801750183, -0.12465991079807281, -0.2587394118309021, 0.1496230512857437, -0.01870737597346306, -0.6428338289260864, 0.16684438288211823]} +{"t": 14.4533, "q": [-0.13825085759162903, 0.009030032902956009, -0.009052921086549759, 0.31597447395324707, -0.18436597287654877, -0.011890177614986897, -0.07854492962360382, -0.02395566552877426, 0.012534813955426216, 0.3211559057235718, -0.26577693223953247, 0.02073177509009838, 0.008115489035844803, -0.053179215639829636, 0.0514892116189003, 0.07796937227249146, 0.14629143476486206, -0.08255932480096817, 1.1329526901245117, -0.0088803106918931, -0.0014980281703174114, 0.048715874552726746, -0.16332101821899414, -0.1405150443315506, -0.25066205859184265, 0.15155251324176788, -0.025382589548826218, -0.6426061391830444, 0.16468721628189087]} +{"t": 14.47, "q": [-0.13841278851032257, 0.009294219315052032, -0.00906631350517273, 0.3159148097038269, -0.18433654308319092, -0.011939759366214275, -0.07879207283258438, -0.023691480979323387, 0.01258838176727295, 0.3210877478122711, -0.26577693223953247, 0.02073177509009838, 0.008021745830774307, -0.05624990537762642, 0.05222444236278534, 0.07784952968358994, 0.14834074676036835, -0.08253535628318787, 1.1329647302627563, -0.00882038939744234, -0.0015339808305725455, 0.04879976436495781, -0.16020512580871582, -0.1549919843673706, -0.24420255422592163, 0.15333816409111023, -0.033064477145671844, -0.6425701975822449, 0.16227839887142181]} +{"t": 14.4867, "q": [-0.1386769711971283, 0.009481705725193024, -0.009186840616166592, 0.31593185663223267, -0.1842692494392395, -0.012053084559738636, -0.07897103577852249, -0.02352956123650074, 0.012615165673196316, 0.3209173083305359, -0.26577693223953247, 0.02073177509009838, 0.007887826301157475, -0.05900878086686134, 0.052138667553663254, 0.07769373059272766, 0.15054583549499512, -0.08248741924762726, 1.132928729057312, -0.008832373656332493, -0.0014500912511721253, 0.04884770140051842, -0.15610651671886444, -0.1711946576833725, -0.23728765547275543, 0.15530356764793396, -0.04127367213368416, -0.6424623131752014, 0.16004933416843414]} +{"t": 14.5037, "q": [-0.1386769711971283, 0.009541360661387444, -0.00932075921446085, 0.3159489035606384, -0.18423140048980713, -0.012116827070713043, -0.07894547283649445, -0.0234102513641119, 0.01252142246812582, 0.3207894563674927, -0.2657642662525177, 0.020724449306726456, 0.007954785600304604, -0.061498984694480896, 0.05198363959789276, 0.07740610837936401, 0.15218767523765564, -0.08249940723180771, 1.1329526901245117, -0.008868326433002949, -0.0014500912511721253, 0.04885968565940857, -0.15091735124588013, -0.18565961718559265, -0.2313554733991623, 0.1569933444261551, -0.04933905601501465, -0.6423065066337585, 0.15747271478176117]} +{"t": 14.5204, "q": [-0.138625830411911, 0.009524315595626831, -0.009508245624601841, 0.3158807158470154, -0.18424001336097717, -0.012131065130233765, -0.07886024564504623, -0.023367639631032944, 0.01244107075035572, 0.3207383453845978, -0.26577693223953247, 0.02073177509009838, 0.008008353412151337, -0.06375803798437119, 0.05178257077932358, 0.0773102343082428, 0.1537935584783554, -0.08251138776540756, 1.132856845855713, -0.008868326433002949, -0.0014620755100622773, 0.04885968565940857, -0.1452847570180893, -0.2001006156206131, -0.22524350881576538, 0.15954598784446716, -0.05675728991627693, -0.6422226428985596, 0.15405721962451935]} +{"t": 14.5371, "q": [-0.13857470452785492, 0.009507272392511368, -0.009468070231378078, 0.3158125579357147, -0.18423570692539215, -0.012123946100473404, -0.078877292573452, -0.023359118029475212, 0.012467854656279087, 0.3206957280635834, -0.2657727897167206, 0.02073894813656807, 0.007861042395234108, -0.06552290916442871, 0.05163705721497536, 0.07737015932798386, 0.15520770847797394, -0.08252337574958801, 1.1329047679901123, -0.008892294950783253, -0.0014620755100622773, 0.04885968565940857, -0.14103035628795624, -0.21468541026115417, -0.2176215499639511, 0.163332998752594, -0.06240186095237732, -0.6418870687484741, 0.1516483873128891]} +{"t": 14.5539, "q": [-0.1385832279920578, 0.009413527324795723, -0.009307367727160454, 0.31571027636528015, -0.1842484176158905, -0.012116904370486736, -0.07889433950185776, -0.023427294567227364, 0.01252142246812582, 0.32052528858184814, -0.26577693223953247, 0.02073177509009838, 0.007794083096086979, -0.06682723015546799, 0.05178321152925491, 0.07732222229242325, 0.15625032782554626, -0.08254734426736832, 1.1328808069229126, -0.008916263468563557, -0.0014381069922819734, 0.04885968565940857, -0.13668008148670197, -0.22919830679893494, -0.21015536785125732, 0.1663290560245514, -0.06833405047655106, -0.6413478255271912, 0.14916765689849854]} +{"t": 14.5706, "q": [-0.13860879838466644, 0.00927717424929142, -0.009173448197543621, 0.3156506419181824, -0.1842484176158905, -0.012116904370486736, -0.07891137897968292, -0.023563649505376816, 0.012534813955426216, 0.32044005393981934, -0.2657686471939087, 0.020746121183037758, 0.007673555985093117, -0.06758368760347366, 0.0521061085164547, 0.07713047415018082, 0.15694540739059448, -0.08255932480096817, 1.1328927278518677, -0.008892294950783253, -0.0014500912511721253, 0.04885968565940857, -0.13243767619132996, -0.24137428402900696, -0.20513398945331573, 0.16831845045089722, -0.0740145742893219, -0.6409043669700623, 0.14703446626663208]} +{"t": 14.5874, "q": [-0.13859175145626068, 0.00909820944070816, -0.009012745693325996, 0.3155909776687622, -0.18425694108009338, -0.01211693324148655, -0.07893694937229156, -0.023751135915517807, 0.012481247074902058, 0.32043153047561646, -0.2657686471939087, 0.020746121183037758, 0.007472677621990442, -0.06796087324619293, 0.05232789367437363, 0.07698666304349899, 0.15737684071063995, -0.08255932480096817, 1.132928729057312, -0.0088803106918931, -0.0014381069922819734, 0.04884770140051842, -0.1287105828523636, -0.251716673374176, -0.20228174328804016, 0.16998425126075745, -0.07826897501945496, -0.6405928134918213, 0.1447334885597229]} +{"t": 14.6044, "q": [-0.13857470452785492, 0.00903855450451374, -0.008718123659491539, 0.3154972493648529, -0.18426544964313507, -0.012116972357034683, -0.07898808270692825, -0.023938622325658798, 0.01244107075035572, 0.3204230070114136, -0.2657686471939087, 0.020746121183037758, 0.007084312848746777, -0.0679902732372284, 0.05235455930233002, 0.07704658061265945, 0.15758058428764343, -0.08257131278514862, 1.132928729057312, -0.008868326433002949, -0.0014381069922819734, 0.048835717141628265, -0.1257384866476059, -0.2617594599723816, -0.19872242212295532, 0.1718418002128601, -0.07965914160013199, -0.6403650641441345, 0.14147378504276276]} +{"t": 14.6211, "q": [-0.13848096132278442, 0.009030032902956009, -0.008383326232433319, 0.3154034912586212, -0.18426954746246338, -0.01209569163620472, -0.07902216911315918, -0.024151675403118134, 0.012414286844432354, 0.3204230070114136, -0.2657686471939087, 0.020746121183037758, 0.006535245105624199, -0.06795269250869751, 0.05237017944455147, 0.07704658061265945, 0.1576405018568039, -0.08260726183652878, 1.1329047679901123, -0.008904279209673405, -0.0014500912511721253, 0.04882373288273811, -0.12332966178655624, -0.27020832896232605, -0.19631358981132507, 0.17360348999500275, -0.0815286859869957, -0.6403411030769348, 0.13762684166431427]} +{"t": 14.6379, "q": [-0.13842131197452545, 0.00903855450451374, -0.008195839822292328, 0.3153097629547119, -0.18426524102687836, -0.012088572606444359, -0.07904773205518723, -0.024279506877064705, 0.012427679263055325, 0.3204230070114136, -0.2657686471939087, 0.020746121183037758, 0.005972785409539938, -0.06791527569293976, 0.05237647891044617, 0.07695070654153824, 0.1577123999595642, -0.08258329331874847, 1.1329047679901123, -0.008904279209673405, -0.0014261228498071432, 0.04879976436495781, -0.12150806188583374, -0.2772071063518524, -0.19542676210403442, 0.1753891408443451, -0.0839494988322258, -0.640389084815979, 0.13241370022296906]} +{"t": 14.6548, "q": [-0.13837017118930817, 0.009012989699840546, -0.008102096617221832, 0.31530123949050903, -0.18426966667175293, -0.012109891511499882, -0.07904773205518723, -0.024347683414816856, 0.012494638562202454, 0.3204230070114136, -0.2657686471939087, 0.020746121183037758, 0.005691555794328451, -0.06789311021566391, 0.052363473922014236, 0.07662713527679443, 0.15780827403068542, -0.08263123035430908, 1.1329047679901123, -0.008892294950783253, -0.0014261228498071432, 0.04882373288273811, -0.11971042305231094, -0.28276780247688293, -0.19546271860599518, 0.17674335837364197, -0.08603475242853165, -0.640389084815979, 0.12959741055965424]} +{"t": 14.6716, "q": [-0.13837869465351105, 0.009012989699840546, -0.008075312711298466, 0.3153267800807953, -0.18426524102687836, -0.012088572606444359, -0.0790562555193901, -0.024347683414816856, 0.01244107075035572, 0.32043153047561646, -0.2657686471939087, 0.020746121183037758, 0.005557636730372906, -0.06789311021566391, 0.052363473922014236, 0.07627959549427032, 0.1580120027065277, -0.08264321833848953, 1.1329647302627563, -0.008892294950783253, -0.0014141385909169912, 0.04881174862384796, -0.1179727166891098, -0.2877412438392639, -0.1955585926771164, 0.17782193422317505, -0.08822786808013916, -0.6404010653495789, 0.12646952271461487]} +{"t": 14.6883, "q": [-0.13837017118930817, 0.009021511301398277, -0.008075312711298466, 0.31535235047340393, -0.18426945805549622, -0.012081483379006386, -0.0790562555193901, -0.024279506877064705, 0.01244107075035572, 0.3204485774040222, -0.2657686471939087, 0.020746121183037758, 0.005396933760493994, -0.0678853988647461, 0.05237778648734093, 0.07592006772756577, 0.15816780924797058, -0.08261924982070923, 1.1330245733261108, -0.008868326433002949, -0.0014261228498071432, 0.04881174862384796, -0.1161271408200264, -0.292367160320282, -0.19542676210403442, 0.17849305272102356, -0.0902891531586647, -0.6404130458831787, 0.1233895793557167]} +{"t": 14.705, "q": [-0.1383105218410492, 0.00903855450451374, -0.008102096617221832, 0.3153693974018097, -0.18426954746246338, -0.01209569163620472, -0.07903921604156494, -0.02418576367199421, 0.012454463168978691, 0.320465624332428, -0.2657729387283325, 0.020753389224410057, 0.005356758367270231, -0.06787046790122986, 0.052378442138433456, 0.07522498071193695, 0.15820375084877014, -0.08264321833848953, 1.1330245733261108, -0.008868326433002949, -0.0014261228498071432, 0.048775795847177505, -0.1134306937456131, -0.2969091832637787, -0.19541478157043457, 0.17945179343223572, -0.09317734837532043, -0.6404370069503784, 0.11985423415899277]} +{"t": 14.7217, "q": [-0.13829347491264343, 0.009047077968716621, -0.008128880523145199, 0.3154461085796356, -0.18426114320755005, -0.012109853327274323, -0.07900512218475342, -0.0240749754011631, 0.012427679263055325, 0.32048267126083374, -0.2657686471939087, 0.020746121183037758, 0.005437109619379044, -0.06778053194284439, 0.05240100994706154, 0.07426624745130539, 0.15817978978157043, -0.08267916738986969, 1.1330845355987549, -0.0088803106918931, -0.001294296351261437, 0.048775795847177505, -0.1104106679558754, -0.3008999228477478, -0.19535484910011292, 0.1805063933134079, -0.09511879831552505, -0.640472948551178, 0.11654659360647202]} +{"t": 14.7385, "q": [-0.1382593810558319, 0.009106732904911041, -0.008222623728215694, 0.3154546320438385, -0.18426544964313507, -0.012116972357034683, -0.07899659872055054, -0.02394714392721653, 0.012414286844432354, 0.32052528858184814, -0.2657727897167206, 0.02073894813656807, 0.005450501572340727, -0.06772030144929886, 0.052431583404541016, 0.07363107800483704, 0.15816780924797058, -0.08266718685626984, 1.1330845355987549, -0.008856342174112797, -0.001270327833481133, 0.04878778010606766, -0.10782207548618317, -0.3033926486968994, -0.1955585926771164, 0.1815010905265808, -0.09637714177370071, -0.6405088901519775, 0.11286742985248566]} +{"t": 14.7552, "q": [-0.13822530210018158, 0.009183431044220924, -0.00831636693328619, 0.31553131341934204, -0.1842484176158905, -0.012116904370486736, -0.07898808270692825, -0.02381931245326996, 0.012360719963908195, 0.3206019699573517, -0.2657686471939087, 0.020746121183037758, 0.005437109619379044, -0.06767532229423523, 0.05244284123182297, 0.07342734932899475, 0.15816780924797058, -0.08269115537405014, 1.133156418800354, -0.0088803106918931, -0.0012343751732259989, 0.048763811588287354, -0.10657571256160736, -0.30397987365722656, -0.19584621489048004, 0.18236395716667175, -0.09649698436260223, -0.6404969096183777, 0.11026685684919357]} +{"t": 14.7719, "q": [-0.1381741613149643, 0.009311262518167496, -0.008356543257832527, 0.3155995011329651, -0.18425263464450836, -0.012109815143048763, -0.07897103577852249, -0.023665914312005043, 0.012374111451208591, 0.32067015767097473, -0.26576852798461914, 0.020731698721647263, 0.005383542273193598, -0.06757766753435135, 0.05247967690229416, 0.07336742430925369, 0.15808391571044922, -0.08273909240961075, 1.1331684589385986, -0.008916263468563557, -0.0012104067718610168, 0.048763811588287354, -0.10583269596099854, -0.30348852276802063, -0.19603796303272247, 0.18247181177139282, -0.09647301584482193, -0.6405328512191772, 0.10867295414209366]} +{"t": 14.7887, "q": [-0.13814008235931396, 0.00939648412168026, -0.008356543257832527, 0.3156421184539795, -0.18424421548843384, -0.012123985216021538, -0.07898808270692825, -0.02352956123650074, 0.012374111451208591, 0.3207724392414093, -0.2657727897167206, 0.02073894813656807, 0.0053701503202319145, -0.06733755767345428, 0.05255495756864548, 0.07337941229343414, 0.15788018703460693, -0.0827510729432106, 1.1332283020019531, -0.008868326433002949, -0.0012104067718610168, 0.04878778010606766, -0.1056169793009758, -0.3028773367404938, -0.1967809796333313, 0.18254372477531433, -0.09643705934286118, -0.6405448317527771, 0.10717492550611496]} +{"t": 14.8055, "q": [-0.13805484771728516, 0.009439093992114067, -0.008369934745132923, 0.31565916538238525, -0.18424001336097717, -0.012131065130233765, -0.07896251231431961, -0.02346138283610344, 0.012387503869831562, 0.3208150267601013, -0.26576852798461914, 0.020731698721647263, 0.005316582508385181, -0.0670909509062767, 0.05256985127925873, 0.0734393298625946, 0.15767645835876465, -0.08270313590765, 1.1333242654800415, -0.008892294950783253, -0.0012343751732259989, 0.04873984307050705, -0.1056409478187561, -0.30238598585128784, -0.19866250455379486, 0.18247181177139282, -0.09601761400699615, -0.640556812286377, 0.10476610064506531]} +{"t": 14.8223, "q": [-0.13797815144062042, 0.009464660659432411, -0.008410110138356686, 0.3156506419181824, -0.1842443197965622, -0.012138184159994125, -0.07890285551548004, -0.023418772965669632, 0.012387503869831562, 0.3209514021873474, -0.26576438546180725, 0.02073887176811695, 0.0047541228123009205, -0.06673206388950348, 0.05260339379310608, 0.07353520393371582, 0.1576405018568039, -0.08276306092739105, 1.1333482265472412, -0.008856342174112797, -0.001282312092371285, 0.048763811588287354, -0.10567689687013626, -0.29934197664260864, -0.2006758451461792, 0.18241189420223236, -0.09562212973833084, -0.640844464302063, 0.10157829523086548]} +{"t": 14.839, "q": [-0.13786736130714417, 0.009481705725193024, -0.008236016146838665, 0.31566768884658813, -0.18424852192401886, -0.012131103314459324, -0.07891137897968292, -0.023359118029475212, 0.012628557160496712, 0.32111331820487976, -0.2657684087753296, 0.020717276260256767, 0.003321190131828189, -0.06612612307071686, 0.05267982557415962, 0.07359512895345688, 0.15756858885288239, -0.0827750414609909, 1.1334320306777954, -0.008868326433002949, -0.0012583436910063028, 0.048763811588287354, -0.10585666447877884, -0.2965376675128937, -0.2025214284658432, 0.18208831548690796, -0.095058873295784, -0.641815185546875, 0.09721603244543076]} +{"t": 14.856, "q": [-0.1378503292798996, 0.00945613905787468, -0.008102096617221832, 0.3156335949897766, -0.18424001336097717, -0.012131065130233765, -0.07890285551548004, -0.023367639631032944, 0.012789260596036911, 0.32117295265197754, -0.2657642662525177, 0.020724449306726456, 0.002731946762651205, -0.06545434892177582, 0.05267039313912392, 0.07363107800483704, 0.15752065181732178, -0.0827510729432106, 1.1336238384246826, -0.008868326433002949, -0.0011624698527157307, 0.04873984307050705, -0.10674349218606949, -0.29402098059654236, -0.20531374216079712, 0.18148910999298096, -0.09451958537101746, -0.6435169577598572, 0.09269798547029495]} +{"t": 14.8728, "q": [-0.13787588477134705, 0.009379439055919647, -0.008102096617221832, 0.3156421184539795, -0.18423990905284882, -0.012116866186261177, -0.07889433950185776, -0.023452861234545708, 0.012789260596036911, 0.32130932807922363, -0.2657473683357239, 0.020709872245788574, 0.002731946762651205, -0.06477554887533188, 0.05262809991836548, 0.07358314096927643, 0.15735287964344025, -0.08278702944517136, 1.1339114904403687, -0.008856342174112797, -0.0010306433541700244, 0.0487518273293972, -0.10788199305534363, -0.29157620668411255, -0.20857346057891846, 0.18088988959789276, -0.09354886412620544, -0.6449310779571533, 0.08803611993789673]} +{"t": 14.8895, "q": [-0.13787588477134705, 0.009319784119725227, -0.008075312711298466, 0.3156335949897766, -0.18425263464450836, -0.012109815143048763, -0.0787835493683815, -0.023546604439616203, 0.012789260596036911, 0.3214115798473358, -0.26576000452041626, 0.02071719989180565, 0.0027051628567278385, -0.06407054513692856, 0.05235368758440018, 0.07290004193782806, 0.15730494260787964, -0.08282297849655151, 1.1342229843139648, -0.008832373656332493, -0.0010306433541700244, 0.04873984307050705, -0.10945192724466324, -0.2887479364871979, -0.21131783723831177, 0.18043449521064758, -0.09211075305938721, -0.6460216641426086, 0.08430902659893036]} +{"t": 14.9065, "q": [-0.13784180581569672, 0.009268652647733688, -0.008008353412151337, 0.3156506419181824, -0.1842484176158905, -0.012116904370486736, -0.07877502590417862, -0.02359773777425289, 0.012896395288407803, 0.3214541971683502, -0.26575589179992676, 0.020724372938275337, 0.0026783791836351156, -0.06338190287351608, 0.051956288516521454, 0.07243265956640244, 0.15726898610591888, -0.08290687203407288, 1.1346185207366943, -0.008856342174112797, -0.0010426276130601764, 0.0487278588116169, -0.11127353459596634, -0.2847451865673065, -0.21476930379867554, 0.17945179343223572, -0.0905408188700676, -0.6471121907234192, 0.08074971288442612]} +{"t": 14.9233, "q": [-0.13779066503047943, 0.009285695850849152, -0.007914610207080841, 0.31562507152557373, -0.18425683677196503, -0.012102734297513962, -0.07871536910533905, -0.023631826043128967, 0.012963354587554932, 0.3215564489364624, -0.26575589179992676, 0.020724372938275337, 0.00254446011967957, -0.06281927227973938, 0.051614291965961456, 0.07204916328191757, 0.15724502503871918, -0.08295480906963348, 1.1354094743728638, -0.008796420879662037, -0.0010546118719503284, 0.04869190603494644, -0.11308314651250839, -0.2801792025566101, -0.21768146753311157, 0.1778818517923355, -0.08716127276420593, -0.6485623121261597, 0.07651928067207336]} +{"t": 14.9401, "q": [-0.13772249221801758, 0.009260131046175957, -0.007874434813857079, 0.31562507152557373, -0.18425263464450836, -0.012109815143048763, -0.0786471962928772, -0.0236403476446867, 0.013016922399401665, 0.3216416835784912, -0.26575589179992676, 0.020724372938275337, 0.00254446011967957, -0.0623898021876812, 0.05136046186089516, 0.07173757255077362, 0.15720906853675842, -0.08296678960323334, 1.1363681554794312, -0.008832373656332493, -0.0010546118719503284, 0.048655953258275986, -0.1149766594171524, -0.2752057611942291, -0.21979069709777832, 0.17591644823551178, -0.08385362476110458, -0.6508752703666687, 0.07177352160215378]} +{"t": 14.9567, "q": [-0.13773953914642334, 0.009251607581973076, -0.007861042395234108, 0.3156506419181824, -0.1842653453350067, -0.012102772481739521, -0.07867275923490524, -0.023631826043128967, 0.013043706305325031, 0.3217013478279114, -0.2657390832901001, 0.0207242202013731, 0.0025176764465868473, -0.06200478971004486, 0.0511331744492054, 0.0715937614440918, 0.15722104907035828, -0.08299075812101364, 1.1372071504592896, -0.008832373656332493, -0.0011025486746802926, 0.048643968999385834, -0.11688214540481567, -0.26986077427864075, -0.22245119512081146, 0.1747899204492569, -0.07964716106653214, -0.6556329727172852, 0.067123644053936]} +{"t": 14.9737, "q": [-0.1377565860748291, 0.009251607581973076, -0.007861042395234108, 0.3156506419181824, -0.18425694108009338, -0.01211693324148655, -0.0786471962928772, -0.02365739271044731, 0.013057098723948002, 0.3217524588108063, -0.2657516300678253, 0.02071712352335453, 0.002504284493625164, -0.06164848431944847, 0.050979241728782654, 0.07153384387493134, 0.15720906853675842, -0.08300274610519409, 1.1380819082260132, -0.008832373656332493, -0.0011624698527157307, 0.048643968999385834, -0.11899137496948242, -0.2635570764541626, -0.22581875324249268, 0.1736634075641632, -0.07492537796497345, -0.6588208079338074, 0.06344448775053024]} +{"t": 14.9905, "q": [-0.13773101568222046, 0.009268652647733688, -0.007861042395234108, 0.3156421184539795, -0.18425683677196503, -0.012102734297513962, -0.0786471962928772, -0.023631826043128967, 0.013083881698548794, 0.3218206465244293, -0.2657390832901001, 0.0207242202013731, 0.00254446011967957, -0.06116407364606857, 0.05088115856051445, 0.07141400128602982, 0.15719708800315857, -0.08294282108545303, 1.1391485929489136, -0.008832373656332493, -0.001270327833481133, 0.048643968999385834, -0.12111257761716843, -0.25640249252319336, -0.23033681511878967, 0.1724889576435089, -0.07216900587081909, -0.6615172624588013, 0.059549614787101746]} +{"t": 15.0072, "q": [-0.13781623542308807, 0.009260131046175957, -0.007874434813857079, 0.3156421184539795, -0.1842484176158905, -0.012116904370486736, -0.07865571975708008, -0.023631826043128967, 0.013057098723948002, 0.32184621691703796, -0.26573485136032104, 0.020716970786452293, 0.002651595277711749, -0.06044892594218254, 0.050712037831544876, 0.07128217071294785, 0.1571131944656372, -0.08295480906963348, 1.140047311782837, -0.008892294950783253, -0.0013542174128815532, 0.048655953258275986, -0.12314990162849426, -0.24914005398750305, -0.23538216948509216, 0.17139838635921478, -0.06814230233430862, -0.6650286316871643, 0.05430052429437637]} +{"t": 15.0239, "q": [-0.13779066503047943, 0.009217519313097, -0.007861042395234108, 0.3156421184539795, -0.18425253033638, -0.012095615267753601, -0.07863014936447144, -0.023691480979323387, 0.013083881698548794, 0.3219314217567444, -0.26574310660362244, 0.020702622830867767, 0.002651595277711749, -0.05968080088496208, 0.05058691278100014, 0.07130613923072815, 0.1570652574300766, -0.08295480906963348, 1.1405386924743652, -0.0088803106918931, -0.0013542174128815532, 0.048643968999385834, -0.12507936358451843, -0.24118253588676453, -0.24042752385139465, 0.16993631422519684, -0.06439124047756195, -0.6669580936431885, 0.048715874552726746]} +{"t": 15.0407, "q": [-0.13777361810207367, 0.009234564378857613, -0.007794083096086979, 0.3155995011329651, -0.18425263464450836, -0.012109815143048763, -0.07857049256563187, -0.02370000258088112, 0.013137449510395527, 0.32203370332717896, -0.2657262980937958, 0.020702453330159187, 0.0024507169146090746, -0.058740075677633286, 0.050519201904535294, 0.07136606425046921, 0.15689747035503387, -0.08294282108545303, 1.1408382654190063, -0.008856342174112797, -0.0013542174128815532, 0.048643968999385834, -0.12727247178554535, -0.23178690671920776, -0.24552081525325775, 0.16837836802005768, -0.05899834260344505, -0.6690313816070557, 0.042819637805223465]} +{"t": 15.0576, "q": [-0.13776510953903198, 0.009260131046175957, -0.007753907702863216, 0.31562507152557373, -0.18425263464450836, -0.012109815143048763, -0.07856197655200958, -0.02370852418243885, 0.013284760527312756, 0.3221530020236969, -0.2657262980937958, 0.020702453330159187, 0.0023301898036152124, -0.0576699823141098, 0.05059034004807472, 0.07133010774850845, 0.1567177176475525, -0.08293084055185318, 1.1408982276916504, -0.008856342174112797, -0.001342233270406723, 0.048655953258275986, -0.12904614210128784, -0.22285865247249603, -0.24978721141815186, 0.16738367080688477, -0.053221944719552994, -0.670805037021637, 0.038001976907253265]} +{"t": 15.0743, "q": [-0.13779066503047943, 0.009217519313097, -0.007633380591869354, 0.31561654806137085, -0.18425263464450836, -0.012109815143048763, -0.07857901602983475, -0.023734090849757195, 0.013365112245082855, 0.32217004895210266, -0.26571354269981384, 0.020680703222751617, 0.002169487066566944, -0.05642077699303627, 0.0506206713616848, 0.07113835960626602, 0.15657390654087067, -0.08300274610519409, 1.1410061120986938, -0.008856342174112797, -0.001294296351261437, 0.048643968999385834, -0.1309516280889511, -0.21293571591377258, -0.2541973888874054, 0.16574183106422424, -0.04734967276453972, -0.6738730072975159, 0.03233344107866287]} +{"t": 15.091, "q": [-0.13776510953903198, 0.009200476109981537, -0.007539637386798859, 0.3156421184539795, -0.18425263464450836, -0.012109815143048763, -0.07856197655200958, -0.023802269250154495, 0.013485639356076717, 0.3221956193447113, -0.2656879723072052, 0.020637188106775284, 0.0021025275345891714, -0.05508267134428024, 0.0505886971950531, 0.07110241055488586, 0.15635818243026733, -0.08300274610519409, 1.1411139965057373, -0.008868326433002949, -0.001282312092371285, 0.04863198474049568, -0.1327013224363327, -0.2043430209159851, -0.2575410008430481, 0.1639801561832428, -0.04180097579956055, -0.6781033873558044, 0.025490447878837585]} +{"t": 15.1079, "q": [-0.13769692182540894, 0.009174909442663193, -0.007445894181728363, 0.31566768884658813, -0.18425683677196503, -0.012102734297513962, -0.0785108432173729, -0.023853400722146034, 0.013579382561147213, 0.3222467601299286, -0.26568371057510376, 0.020629938691854477, 0.0020623519085347652, -0.05393899232149124, 0.05055762454867363, 0.07111439108848572, 0.15617842972278595, -0.08299075812101364, 1.1411619186401367, -0.008856342174112797, -0.0012583436910063028, 0.04862000048160553, -0.13400760293006897, -0.19584621489048004, -0.2612800896167755, 0.16239823400974274, -0.035161715000867844, -0.6821780800819397, 0.02027730830013752]} +{"t": 15.1246, "q": [-0.13772249221801758, 0.009208997711539268, -0.007445894181728363, 0.3156847357749939, -0.18425263464450836, -0.012109815143048763, -0.07847674936056137, -0.023861922323703766, 0.013592774048447609, 0.32226380705833435, -0.2656879723072052, 0.020637188106775284, 0.002129311440512538, -0.05286867916584015, 0.05060718208551407, 0.07105447351932526, 0.1558428704738617, -0.08301472663879395, 1.1413296461105347, -0.008868326433002949, -0.001270327833481133, 0.04860801622271538, -0.13525396585464478, -0.1877928078174591, -0.264983206987381, 0.16118782758712769, -0.02912166714668274, -0.6863605380058289, 0.015172028914093971]} +{"t": 15.1413, "q": [-0.13773101568222046, 0.00915786437690258, -0.007445894181728363, 0.31571027636528015, -0.18426114320755005, -0.012109853327274323, -0.07847674936056137, -0.02387896738946438, 0.013579382561147213, 0.3222808241844177, -0.2656794488430023, 0.02062268741428852, 0.0022096626926213503, -0.052007172256708145, 0.05070559307932854, 0.0710424855351448, 0.15541143715381622, -0.08301472663879395, 1.1414015293121338, -0.008844357915222645, -0.001318264752626419, 0.048584047704935074, -0.13642841577529907, -0.180254727602005, -0.2692735493183136, 0.16039687395095825, -0.023920513689517975, -0.6897401213645935, 0.009982859715819359]} +{"t": 15.1581, "q": [-0.13772249221801758, 0.009183431044220924, -0.007459285669028759, 0.3158210813999176, -0.18425263464450836, -0.012109815143048763, -0.0784597098827362, -0.02387896738946438, 0.013565990142524242, 0.322331964969635, -0.265666663646698, 0.0206009391695261, 0.0024775005877017975, -0.05133767053484917, 0.05100305750966072, 0.0709945484995842, 0.15498000383377075, -0.08303869515657425, 1.1414854526519775, -0.008892294950783253, -0.001318264752626419, 0.04857206344604492, -0.13775867223739624, -0.17302824556827545, -0.2749900221824646, 0.1599894016981125, -0.017616810277104378, -0.6928200721740723, 0.005213138181716204]} +{"t": 15.1748, "q": [-0.13776510953903198, 0.00915786437690258, -0.0074860695749521255, 0.3158296048641205, -0.18425253033638, -0.012095615267753601, -0.07848527282476425, -0.023870445787906647, 0.01351242233067751, 0.3223404884338379, -0.2656538784503937, 0.020579172298312187, 0.00254446011967957, -0.05093865096569061, 0.051216721534729004, 0.0710424855351448, 0.15450063347816467, -0.08306266367435455, 1.1415573358535767, -0.008856342174112797, -0.001294296351261437, 0.04857206344604492, -0.1392926573753357, -0.1678270846605301, -0.27979570627212524, 0.16000139713287354, -0.01330249011516571, -0.6959239840507507, 0.00046738478704355657]} +{"t": 15.1915, "q": [-0.13779066503047943, 0.00915786437690258, -0.007512853480875492, 0.31580403447151184, -0.18425683677196503, -0.012102734297513962, -0.07849379628896713, -0.023853400722146034, 0.01345885545015335, 0.3223404884338379, -0.2656453549861908, 0.020564673468470573, 0.0027051628567278385, -0.050644878298044205, 0.05138956010341644, 0.07111439108848572, 0.1540931612253189, -0.08301472663879395, 1.1416172981262207, -0.008856342174112797, -0.001342233270406723, 0.04857206344604492, -0.14055100083351135, -0.16279371082782745, -0.2857758402824402, 0.1599894016981125, -0.00820919405668974, -0.6992196440696716, -0.002636529505252838]} +{"t": 15.2083, "q": [-0.13776510953903198, 0.009166385978460312, -0.007553029339760542, 0.31580403447151184, -0.18424411118030548, -0.012109785340726376, -0.07848527282476425, -0.023810790851712227, 0.013418679125607014, 0.32235753536224365, -0.2656451165676117, 0.020535826683044434, 0.0026649872306734324, -0.05052437633275986, 0.05145878717303276, 0.07123423367738724, 0.1540212631225586, -0.0830267146229744, 1.1417491436004639, -0.008892294950783253, -0.0013662016717717052, 0.04857206344604492, -0.14152172207832336, -0.159689798951149, -0.2896707057952881, 0.1599894016981125, -0.006004096940159798, -0.7015206217765808, -0.00529702752828598]} +{"t": 15.225, "q": [-0.13776510953903198, 0.009217519313097, -0.007593204732984304, 0.3157784640789032, -0.1842484176158905, -0.012116904370486736, -0.07848527282476425, -0.02370852418243885, 0.013378503732383251, 0.3222893476486206, -0.2656368315219879, 0.02055017277598381, 0.0027051628567278385, -0.050569381564855576, 0.05144800990819931, 0.0713181272149086, 0.1540692001581192, -0.08299075812101364, 1.1418570280075073, -0.008892294950783253, -0.0013542174128815532, 0.048584047704935074, -0.14165353775024414, -0.15815581381320953, -0.2929064631462097, 0.15991750359535217, -0.005380917340517044, -0.7031264901161194, -0.006962834857404232]} +{"t": 15.2418, "q": [-0.13776510953903198, 0.009302740916609764, -0.007660164497792721, 0.31580403447151184, -0.18425263464450836, -0.012109815143048763, -0.07847674936056137, -0.023614780977368355, 0.013338328339159489, 0.3222297132015228, -0.26564085483551025, 0.020528577268123627, 0.0026783791836351156, -0.05071227625012398, 0.05138273909687996, 0.07122225314378738, 0.1541171371936798, -0.08299075812101364, 1.14203679561615, -0.008856342174112797, -0.0013542174128815532, 0.04857206344604492, -0.14130599796772003, -0.15841947495937347, -0.2934097945690155, 0.15970177948474884, -0.005608617328107357, -0.7041930556297302, -0.009012137539684772]} +{"t": 15.2587, "q": [-0.13776510953903198, 0.00933682918548584, -0.007673555985093117, 0.31576141715049744, -0.18424411118030548, -0.012109785340726376, -0.07850231975317001, -0.023546604439616203, 0.01327136904001236, 0.322144478559494, -0.2656283378601074, 0.020535673946142197, 0.0027453387156128883, -0.05093763768672943, 0.05130082368850708, 0.07093463093042374, 0.15418903529644012, -0.08297877758741379, 1.14203679561615, -0.008868326433002949, -0.001306280493736267, 0.048584047704935074, -0.14094647765159607, -0.1585153490304947, -0.29312217235565186, 0.1594620943069458, -0.007430219557136297, -0.7049480676651001, -0.011229218915104866]} +{"t": 15.2754, "q": [-0.13778214156627655, 0.009319784119725227, -0.007740515749901533, 0.31579551100730896, -0.18424001336097717, -0.012131065130233765, -0.07850231975317001, -0.023546604439616203, 0.013164233416318893, 0.32208484411239624, -0.2656240463256836, 0.020528405904769897, 0.003093527862802148, -0.0511922612786293, 0.051274023950099945, 0.07033541798591614, 0.15423697233200073, -0.08299075812101364, 1.142120599746704, -0.008832373656332493, -0.001318264752626419, 0.048584047704935074, -0.14093448221683502, -0.1613556146621704, -0.29160016775131226, 0.15945011377334595, -0.010570086538791656, -0.7052117586135864, -0.013266537338495255]} +{"t": 15.2922, "q": [-0.13782475888729095, 0.009294219315052032, -0.007874434813857079, 0.3158296048641205, -0.18424421548843384, -0.012123985216021538, -0.07847674936056137, -0.02358921617269516, 0.013043706305325031, 0.3220251798629761, -0.2656240463256836, 0.020528405904769897, 0.0034952848218381405, -0.051505621522665024, 0.051338762044906616, 0.06943660229444504, 0.15414109826087952, -0.08299075812101364, 1.1421924829483032, -0.00882038939744234, -0.001270327833481133, 0.048596031963825226, -0.1398439258337021, -0.16747954487800598, -0.28723791241645813, 0.15942615270614624, -0.016634104773402214, -0.7054154872894287, -0.014057496562600136]} +{"t": 15.3089, "q": [-0.1378929316997528, 0.009260131046175957, -0.007887826301157475, 0.3157869875431061, -0.18424421548843384, -0.012123985216021538, -0.07850231975317001, -0.02359773777425289, 0.012990138493478298, 0.321956992149353, -0.2656283378601074, 0.020535673946142197, 0.003964001312851906, -0.05194477736949921, 0.051516253501176834, 0.06868159770965576, 0.15418903529644012, -0.08301472663879395, 1.1422284841537476, -0.008892294950783253, -0.001294296351261437, 0.04857206344604492, -0.13695572316646576, -0.17473000288009644, -0.28216859698295593, 0.16002535820007324, -0.0234770979732275, -0.7054154872894287, -0.014273212291300297]} +{"t": 15.3257, "q": [-0.13811451196670532, 0.009208997711539268, -0.008115489035844803, 0.3157358467578888, -0.1842484176158905, -0.012116904370486736, -0.07848527282476425, -0.02370000258088112, 0.012883003801107407, 0.3217439353466034, -0.2656283378601074, 0.020535673946142197, 0.005477285478264093, -0.05243604630231857, 0.051715295761823654, 0.06821420788764954, 0.15418903529644012, -0.08301472663879395, 1.1422165632247925, -0.008868326433002949, -0.001342233270406723, 0.04857206344604492, -0.13421133160591125, -0.1823040395975113, -0.2774827480316162, 0.1607084572315216, -0.03286074474453926, -0.705391526222229, -0.014309165067970753]} +{"t": 15.3427, "q": [-0.13828495144844055, 0.009140821173787117, -0.008463677950203419, 0.31584665179252625, -0.18424001336097717, -0.012131065130233765, -0.07849379628896713, -0.02377670258283615, 0.012695517390966415, 0.3216928243637085, -0.26564085483551025, 0.020528577268123627, 0.006816474720835686, -0.053156960755586624, 0.0520503968000412, 0.06791460514068604, 0.15420103073120117, -0.0830267146229744, 1.1422524452209473, -0.00882038939744234, -0.001342233270406723, 0.04856007918715477, -0.1312752068042755, -0.19047728180885315, -0.2717902362346649, 0.16124774515628815, -0.04398210719227791, -0.7053794860839844, -0.014201306737959385]} +{"t": 15.3595, "q": [-0.13849800825119019, 0.009115254506468773, -0.008677948266267776, 0.3158722221851349, -0.18424001336097717, -0.012131065130233765, -0.0785108432173729, -0.02383635751903057, 0.01258838176727295, 0.32158201932907104, -0.2656325697898865, 0.020542923361063004, 0.008048529736697674, -0.054162248969078064, 0.0523664653301239, 0.06790261715650558, 0.15418903529644012, -0.08297877758741379, 1.1422405242919922, -0.008892294950783253, -0.0013781859306618571, 0.04857206344604492, -0.1288543939590454, -0.1998009979724884, -0.2647075653076172, 0.16189490258693695, -0.057979680597782135, -0.7053794860839844, -0.014033528044819832]} +{"t": 15.3762, "q": [-0.1386343538761139, 0.009081166237592697, -0.008865434676408768, 0.31588923931121826, -0.18424421548843384, -0.012123985216021538, -0.0785534530878067, -0.023870445787906647, 0.012534813955426216, 0.32143715023994446, -0.2656368315219879, 0.02055017277598381, 0.008691340684890747, -0.05535008758306503, 0.052442651242017746, 0.06826214492321014, 0.15418903529644012, -0.08299075812101364, 1.142336368560791, -0.008856342174112797, -0.0013662016717717052, 0.048584047704935074, -0.12740430235862732, -0.21010743081569672, -0.2543891370296478, 0.162733793258667, -0.07013168931007385, -0.7052956223487854, -0.014345117844641209]} +{"t": 15.393, "q": [-0.13870254158973694, 0.00903855450451374, -0.008959177881479263, 0.3159659504890442, -0.18423159420490265, -0.01214523520320654, -0.07857901602983475, -0.023870445787906647, 0.01252142246812582, 0.32130080461502075, -0.2656325697898865, 0.020542923361063004, 0.009039529599249363, -0.05671807378530502, 0.052417878061532974, 0.06865762919187546, 0.15418903529644012, -0.08297877758741379, 1.1425520181655884, -0.008856342174112797, -0.0013901700731366873, 0.04857206344604492, -0.1266133338212967, -0.22248713672161102, -0.24284833669662476, 0.16317720711231232, -0.08309862017631531, -0.7052956223487854, -0.01462075486779213]} +{"t": 15.4097, "q": [-0.1387707144021988, 0.009081166237592697, -0.009106488898396492, 0.31603413820266724, -0.18423150479793549, -0.012131026946008205, -0.07857049256563187, -0.023853400722146034, 0.012534813955426216, 0.3212411403656006, -0.2656325697898865, 0.020542923361063004, 0.009360934607684612, -0.05809503048658371, 0.052274852991104126, 0.06877747178077698, 0.15423697233200073, -0.08299075812101364, 1.142624020576477, -0.008892294950783253, -0.0013662016717717052, 0.04856007918715477, -0.1260380893945694, -0.23302127420902252, -0.23269769549369812, 0.16341689229011536, -0.09752762317657471, -0.7052836418151855, -0.014668691903352737]} +{"t": 15.4265, "q": [-0.13893263041973114, 0.009089687839150429, -0.009307367727160454, 0.3160170912742615, -0.18423159420490265, -0.01214523520320654, -0.07856197655200958, -0.023844879120588303, 0.012454463168978691, 0.3211303651332855, -0.2656451165676117, 0.020535826683044434, 0.00973590835928917, -0.05946667492389679, 0.051995519548654556, 0.06856175512075424, 0.1541171371936798, -0.08296678960323334, 1.1426599025726318, -0.008904279209673405, -0.0013542174128815532, 0.04860801622271538, -0.12493554502725601, -0.2437831163406372, -0.22186395525932312, 0.16521452367305756, -0.10959573835134506, -0.7050080299377441, -0.014476943761110306]} +{"t": 15.4433, "q": [-0.13897524774074554, 0.00909820944070816, -0.009414502419531345, 0.316051185131073, -0.1842021644115448, -0.012194808572530746, -0.07852788269519806, -0.02383635751903057, 0.012213408946990967, 0.321096271276474, -0.26564109325408936, 0.020557422190904617, 0.009936786256730556, -0.06065836921334267, 0.05175020918250084, 0.0686216726899147, 0.15428490936756134, -0.08297877758741379, 1.1426838636398315, -0.008856342174112797, -0.0013662016717717052, 0.048584047704935074, -0.12392887473106384, -0.25315478444099426, -0.2103351354598999, 0.16686835885047913, -0.12205933034420013, -0.7045525908470154, -0.014452975243330002]} +{"t": 15.4601, "q": [-0.13894115388393402, 0.009115254506468773, -0.009468070231378078, 0.31599152088165283, -0.1842021644115448, -0.012194808572530746, -0.07852788269519806, -0.023844879120588303, 0.012133057229220867, 0.32102808356285095, -0.2656451165676117, 0.020535826683044434, 0.010137665085494518, -0.061555102467536926, 0.05172513425350189, 0.06871754676103592, 0.1543208658695221, -0.08296678960323334, 1.142791748046875, -0.008892294950783253, -0.0013662016717717052, 0.048584047704935074, -0.12261060625314713, -0.2622867524623871, -0.1995733082294464, 0.16867797076702118, -0.13358816504478455, -0.7042530179023743, -0.014381070621311665]} +{"t": 15.4768, "q": [-0.1389496773481369, 0.00909820944070816, -0.009481461718678474, 0.3159489035606384, -0.1842021644115448, -0.012194808572530746, -0.07852788269519806, -0.023861922323703766, 0.012092881835997105, 0.3209173083305359, -0.26564109325408936, 0.020557422190904617, 0.010151056572794914, -0.062017567455768585, 0.05177219584584236, 0.06870556622743607, 0.1544407159090042, -0.08297877758741379, 1.1428277492523193, -0.008868326433002949, -0.0013781859306618571, 0.04857206344604492, -0.12141218781471252, -0.2667568624019623, -0.19216705858707428, 0.1703677475452423, -0.14144980907440186, -0.7040732502937317, -0.014141385443508625]} +{"t": 15.4936, "q": [-0.13895820081233978, 0.009072642773389816, -0.00940111093223095, 0.31588923931121826, -0.18420636653900146, -0.012187727726995945, -0.07859606295824051, -0.023930100724101067, 0.012133057229220867, 0.3207809329032898, -0.2656536400318146, 0.020550325512886047, 0.010097489692270756, -0.06218773499131203, 0.05188221111893654, 0.06874151527881622, 0.15438078343868256, -0.08296678960323334, 1.1428636312484741, -0.008916263468563557, -0.0013781859306618571, 0.048584047704935074, -0.12032162398099899, -0.2684466540813446, -0.18583938479423523, 0.17172196507453918, -0.14754977822303772, -0.703905463218689, -0.014117416925728321]} +{"t": 15.5104, "q": [-0.13892410695552826, 0.009047077968716621, -0.009280583821237087, 0.3157699406147003, -0.18421056866645813, -0.012180646881461143, -0.07865571975708008, -0.024040887132287025, 0.012119665741920471, 0.32074686884880066, -0.2656451165676117, 0.020535826683044434, 0.009682340547442436, -0.0620446614921093, 0.05195794627070427, 0.06880144029855728, 0.15433284640312195, -0.08297877758741379, 1.1429235935211182, -0.008892294950783253, -0.0013662016717717052, 0.048584047704935074, -0.11937487125396729, -0.26875823736190796, -0.17922408878803253, 0.1730402261018753, -0.1538175344467163, -0.7037736177444458, -0.014177338220179081]} +{"t": 15.5271, "q": [-0.1387621909379959, 0.009064121171832085, -0.009093097411096096, 0.3156335949897766, -0.18421898782253265, -0.012166476808488369, -0.07867275923490524, -0.024168718606233597, 0.012066097930073738, 0.3207383453845978, -0.2656453549861908, 0.020564673468470573, 0.009186840616166592, -0.06164555624127388, 0.05217377841472626, 0.0688733458518982, 0.1542969048023224, -0.08297877758741379, 1.143019437789917, -0.008856342174112797, -0.0013542174128815532, 0.04857206344604492, -0.11871573328971863, -0.2684466540813446, -0.17323197424411774, 0.1741907149553299, -0.1576644629240036, -0.703677773475647, -0.014369086362421513]} +{"t": 15.5438, "q": [-0.13868549466133118, 0.009072642773389816, -0.0089190024882555, 0.31543758511543274, -0.1842147707939148, -0.012173566967248917, -0.07874093949794769, -0.024262461811304092, 0.011945570819079876, 0.3206786811351776, -0.2656581401824951, 0.020586421713232994, 0.008450286462903023, -0.0611865371465683, 0.05240112915635109, 0.06870556622743607, 0.15428490936756134, -0.08297877758741379, 1.1431033611297607, -0.008892294950783253, -0.0013542174128815532, 0.04857206344604492, -0.1182243824005127, -0.26773956418037415, -0.17016401886940002, 0.17534120380878448, -0.15967781841754913, -0.7038335204124451, -0.014213290996849537]} +{"t": 15.5606, "q": [-0.13860027492046356, 0.00903855450451374, -0.008718123659491539, 0.3153693974018097, -0.18422318994998932, -0.012159396894276142, -0.07883468270301819, -0.024279506877064705, 0.011945570819079876, 0.32067015767097473, -0.26566213369369507, 0.02056482434272766, 0.007753907702863216, -0.06072724238038063, 0.05264713242650032, 0.06838198751211166, 0.15423697233200073, -0.08296678960323334, 1.1431152820587158, -0.008892294950783253, -0.0013662016717717052, 0.04857206344604492, -0.11808057129383087, -0.2648993134498596, -0.16812670230865479, 0.17625200748443604, -0.16092418134212494, -0.703905463218689, -0.014177338220179081]} +{"t": 15.5773, "q": [-0.1385832279920578, 0.00909820944070816, -0.00847707036882639, 0.3153693974018097, -0.18422739207744598, -0.01215231604874134, -0.07893694937229156, -0.024296551942825317, 0.012039314024150372, 0.32066163420677185, -0.2656663954257965, 0.020572075620293617, 0.006776299327611923, -0.06019994243979454, 0.05294717475771904, 0.06820222735404968, 0.15421301126480103, -0.08296678960323334, 1.1431512832641602, -0.008892294950783253, -0.001342233270406723, 0.04857206344604492, -0.11815247684717178, -0.25977006554603577, -0.16671255230903625, 0.1760602593421936, -0.16161926090717316, -0.7040252685546875, -0.01408146508038044]} +{"t": 15.5941, "q": [-0.13846391439437866, 0.009089687839150429, -0.00831636693328619, 0.3153267800807953, -0.18423150479793549, -0.012131026946008205, -0.0789199024438858, -0.024279506877064705, 0.012079490348696709, 0.3206445872783661, -0.2656581401824951, 0.020586421713232994, 0.006026353221386671, -0.059861768037080765, 0.05308615416288376, 0.06828611344099045, 0.15426094830036163, -0.08295480906963348, 1.1432710886001587, -0.008916263468563557, -0.0013542174128815532, 0.04857206344604492, -0.11835620552301407, -0.255719393491745, -0.16590961813926697, 0.174538254737854, -0.1616072803735733, -0.7046124935150146, -0.0138417799025774]} +{"t": 15.6108, "q": [-0.13833607733249664, 0.009132297709584236, -0.008222623728215694, 0.3153608739376068, -0.1842358112335205, -0.012138145975768566, -0.07890285551548004, -0.02430507354438305, 0.012146449647843838, 0.32067015767097473, -0.26564961671829224, 0.02057192288339138, 0.005035352893173695, -0.059644680470228195, 0.053117815405130386, 0.06838198751211166, 0.15426094830036163, -0.08296678960323334, 1.1436306238174438, -0.008868326433002949, -0.0012223910307511687, 0.048584047704935074, -0.11851200461387634, -0.2523038983345032, -0.16574183106422424, 0.17378325760364532, -0.16147544980049133, -0.704876184463501, -0.013398364186286926]} +{"t": 15.6276, "q": [-0.13818268477916718, 0.00909820944070816, -0.00798156950622797, 0.3153779208660126, -0.18423159420490265, -0.01214523520320654, -0.07893694937229156, -0.02430507354438305, 0.012387503869831562, 0.32066163420677185, -0.2656538784503937, 0.020579172298312187, 0.003669379511848092, -0.05952619016170502, 0.05304768681526184, 0.06826214492321014, 0.1542729288339615, -0.08300274610519409, 1.1438343524932861, -0.008844357915222645, -0.0011864382540807128, 0.04857206344604492, -0.1185719221830368, -0.24896030128002167, -0.1657538264989853, 0.1727166473865509, -0.16141553223133087, -0.7049360871315002, -0.012775183655321598]} +{"t": 15.6443, "q": [-0.13813155889511108, 0.00909820944070816, -0.007794083096086979, 0.31543758511543274, -0.18424011766910553, -0.012145265005528927, -0.07892842590808868, -0.024296551942825317, 0.01260177418589592, 0.3207383453845978, -0.26565787196159363, 0.020557574927806854, 0.0029060414526611567, -0.05946722254157066, 0.05299394577741623, 0.06786666810512543, 0.1543688029050827, -0.08299075812101364, 1.1440021991729736, -0.008856342174112797, -0.0011145329335704446, 0.048584047704935074, -0.1188235953450203, -0.245257169008255, -0.16728779673576355, 0.17169798910617828, -0.16062456369400024, -0.7049360871315002, -0.012439625337719917]} +{"t": 15.661, "q": [-0.13799519836902618, 0.00909820944070816, -0.007660164497792721, 0.31556540727615356, -0.18423150479793549, -0.012131026946008205, -0.0789199024438858, -0.02425394020974636, 0.012735692784190178, 0.3208576440811157, -0.2656453549861908, 0.020564673468470573, 0.0020757438614964485, -0.059386443346738815, 0.052899036556482315, 0.06784269958734512, 0.15447665750980377, -0.08297877758741379, 1.1440980434417725, -0.008856342174112797, -0.0011265171924605966, 0.048584047704935074, -0.11956661194562912, -0.24172182381153107, -0.17142236232757568, 0.1705714762210846, -0.1577363759279251, -0.7048162817955017, -0.012463593855500221]} +{"t": 15.6777, "q": [-0.13781623542308807, 0.009081166237592697, -0.0074860695749521255, 0.31557393074035645, -0.18423159420490265, -0.01214523520320654, -0.07888581603765488, -0.02418576367199421, 0.013003530912101269, 0.3209599256515503, -0.26564109325408936, 0.020557422190904617, 0.0015132841654121876, -0.05930609256029129, 0.05277622118592262, 0.06786666810512543, 0.15451261401176453, -0.08300274610519409, 1.1443136930465698, -0.008808405138552189, -0.0010905645322054625, 0.04857206344604492, -0.12008193880319595, -0.23874974250793457, -0.17560485005378723, 0.16928917169570923, -0.155315563082695, -0.7048042416572571, -0.012523515149950981]} +{"t": 15.6944, "q": [-0.13779066503047943, 0.00909820944070816, -0.007378934416919947, 0.3155398368835449, -0.18423159420490265, -0.01214523520320654, -0.07886024564504623, -0.024092020466923714, 0.01319101732224226, 0.3210451304912567, -0.2656325697898865, 0.020542923361063004, 0.0012186624808236957, -0.059166319668293, 0.05262766405940056, 0.06790261715650558, 0.1544407159090042, -0.08301472663879395, 1.1445773839950562, -0.008856342174112797, -0.0010785802733153105, 0.048584047704935074, -0.120920829474926, -0.23726369440555573, -0.1780376434326172, 0.16848622262477875, -0.15345799922943115, -0.7046964168548584, -0.01270327903330326]} +{"t": 15.7112, "q": [-0.13777361810207367, 0.009089687839150429, -0.007325367070734501, 0.3155483603477478, -0.1842358112335205, -0.012138145975768566, -0.07886024564504623, -0.023998277261853218, 0.013284760527312756, 0.3212326169013977, -0.2656368315219879, 0.02055017277598381, 0.0011383111122995615, -0.05905554071068764, 0.05253375694155693, 0.06787864863872528, 0.15440475940704346, -0.08299075812101364, 1.1448050737380981, -0.008892294950783253, -0.0010546118719503284, 0.04857206344604492, -0.12196346372365952, -0.23667646944522858, -0.17906829714775085, 0.1678270846605301, -0.15207982063293457, -0.7046365141868591, -0.012691294774413109]} +{"t": 15.7279, "q": [-0.13779066503047943, 0.009166385978460312, -0.007325367070734501, 0.31557393074035645, -0.18424011766910553, -0.012145265005528927, -0.07886024564504623, -0.023861922323703766, 0.01327136904001236, 0.3213348984718323, -0.2656325697898865, 0.020542923361063004, 0.0012454462703317404, -0.058855026960372925, 0.05244317650794983, 0.06790261715650558, 0.1543927788734436, -0.08299075812101364, 1.144948959350586, -0.008868326433002949, -0.0011025486746802926, 0.048584047704935074, -0.12294616550207138, -0.235897496342659, -0.17929598689079285, 0.16753946244716644, -0.1501263827085495, -0.7046124935150146, -0.012631373479962349]} +{"t": 15.7446, "q": [-0.13781623542308807, 0.009268652647733688, -0.0074191102758049965, 0.3156506419181824, -0.18423159420490265, -0.01214523520320654, -0.07884320616722107, -0.023725569248199463, 0.013204408809542656, 0.3214968144893646, -0.2656283378601074, 0.020535673946142197, 0.0016472031129524112, -0.05857335776090622, 0.05227605253458023, 0.06792658567428589, 0.1543208658695221, -0.08300274610519409, 1.1450806856155396, -0.008868326433002949, -0.0011385014513507485, 0.04857206344604492, -0.12413260340690613, -0.23408786952495575, -0.17923606932163239, 0.1667724847793579, -0.14629143476486206, -0.7046124935150146, -0.012607404962182045]} +{"t": 15.7613, "q": [-0.13782475888729095, 0.009311262518167496, -0.007579812780022621, 0.3156847357749939, -0.18422739207744598, -0.01215231604874134, -0.07879207283258438, -0.02364887110888958, 0.013097274117171764, 0.3217013478279114, -0.26564085483551025, 0.020528577268123627, 0.0021427033934742212, -0.05825449898838997, 0.05209628492593765, 0.0680224597454071, 0.154344841837883, -0.0830267146229744, 1.1451646089553833, -0.008832373656332493, -0.0011744541116058826, 0.04857206344604492, -0.12557071447372437, -0.23084014654159546, -0.17899638414382935, 0.16528643667697906, -0.141437828540802, -0.7046005129814148, -0.012619389221072197]} +{"t": 15.7781, "q": [-0.13782475888729095, 0.009345350787043571, -0.007753907702863216, 0.3156847357749939, -0.1842147707939148, -0.012173566967248917, -0.07869832962751389, -0.023572171106934547, 0.013043706305325031, 0.3218717873096466, -0.2656283378601074, 0.020535673946142197, 0.002464108867570758, -0.057905856519937515, 0.05190826579928398, 0.06821420788764954, 0.15430888533592224, -0.08300274610519409, 1.1452964544296265, -0.008892294950783253, -0.0011984225129708648, 0.04857206344604492, -0.12776382267475128, -0.22604645788669586, -0.17885257303714752, 0.1639561802148819, -0.1356973797082901, -0.7046124935150146, -0.012547483667731285]} +{"t": 15.7948, "q": [-0.13784180581569672, 0.009413527324795723, -0.007820867002010345, 0.31565916538238525, -0.18422739207744598, -0.01215231604874134, -0.07863014936447144, -0.023486949503421783, 0.012976747006177902, 0.32203370332717896, -0.2656240463256836, 0.020528405904769897, 0.002651595277711749, -0.05747607350349426, 0.051643840968608856, 0.06841794401407242, 0.15424896776676178, -0.08300274610519409, 1.14540433883667, -0.008832373656332493, -0.001270327833481133, 0.04857206344604492, -0.13037638366222382, -0.2191195785999298, -0.17893646657466888, 0.1630573719739914, -0.13189838826656342, -0.704504668712616, -0.012775183655321598]} +{"t": 15.8115, "q": [-0.1378929316997528, 0.009405005723237991, -0.007887826301157475, 0.31571027636528015, -0.18421898782253265, -0.012166476808488369, -0.07857901602983475, -0.02346138283610344, 0.012976747006177902, 0.32217004895210266, -0.2656070291996002, 0.02049940638244152, 0.00287925754673779, -0.05700076371431351, 0.05142777040600777, 0.06844191253185272, 0.15423697233200073, -0.08299075812101364, 1.145536184310913, -0.008844357915222645, -0.001282312092371285, 0.048584047704935074, -0.13234180212020874, -0.212384432554245, -0.1784091591835022, 0.16262593865394592, -0.12805144488811493, -0.7044807076454163, -0.012739231809973717]} +{"t": 15.8282, "q": [-0.13792702555656433, 0.009379439055919647, -0.00798156950622797, 0.3157784640789032, -0.18421056866645813, -0.012180646881461143, -0.07850231975317001, -0.02346990630030632, 0.012896395288407803, 0.32226380705833435, -0.26558998227119446, 0.0204703900963068, 0.003254230599850416, -0.05648811161518097, 0.051179446280002594, 0.06823817640542984, 0.15428490936756134, -0.08299075812101364, 1.145536184310913, -0.008856342174112797, -0.001270327833481133, 0.048596031963825226, -0.13338442146778107, -0.20502611994743347, -0.17733058333396912, 0.16227839887142181, -0.12323378771543503, -0.7044567465782166, -0.012691294774413109]} +{"t": 15.845, "q": [-0.1379440724849701, 0.009311262518167496, -0.008035137318074703, 0.31583812832832336, -0.1842147707939148, -0.012173566967248917, -0.07838300615549088, -0.02353808283805847, 0.012909787707030773, 0.3223404884338379, -0.2655939757823944, 0.020448794588446617, 0.0034952848218381405, -0.05602071061730385, 0.05090143159031868, 0.06815429031848907, 0.15423697233200073, -0.08301472663879395, 1.145536184310913, -0.0088803106918931, -0.001306280493736267, 0.048596031963825226, -0.13443903625011444, -0.19634954631328583, -0.17674335837364197, 0.16206267476081848, -0.11681023985147476, -0.7043368816375732, -0.012655341997742653]} +{"t": 15.8617, "q": [-0.13792702555656433, 0.009285695850849152, -0.008021745830774307, 0.3159233331680298, -0.18421898782253265, -0.012166476808488369, -0.07829778641462326, -0.023555127903819084, 0.012896395288407803, 0.32236605882644653, -0.2655814588069916, 0.020455891266465187, 0.0036827712319791317, -0.0556795597076416, 0.050689082592725754, 0.06820222735404968, 0.15423697233200073, -0.08300274610519409, 1.1455481052398682, -0.008832373656332493, -0.001342233270406723, 0.048584047704935074, -0.13554158806800842, -0.18781678378582, -0.17674335837364197, 0.16206267476081848, -0.11274759471416473, -0.7041571140289307, -0.012775183655321598]} +{"t": 15.8784, "q": [-0.1379440724849701, 0.009217519313097, -0.008075312711298466, 0.31597447395324707, -0.18421898782253265, -0.012166476808488369, -0.07817848026752472, -0.0236403476446867, 0.012896395288407803, 0.3223745822906494, -0.2655601501464844, 0.020419642329216003, 0.004379149992018938, -0.055531058460474014, 0.05061018466949463, 0.06823817640542984, 0.15424896776676178, -0.08299075812101364, 1.1455601453781128, -0.008868326433002949, -0.001330249011516571, 0.048584047704935074, -0.1365962028503418, -0.1790323406457901, -0.17629994451999664, 0.16227839887142181, -0.10844525694847107, -0.7039653658866882, -0.012631373479962349]} +{"t": 15.8953, "q": [-0.13800372183322906, 0.009174909442663193, -0.008222623728215694, 0.3160170912742615, -0.1842147707939148, -0.012173566967248917, -0.07808473706245422, -0.02376817911863327, 0.01284282747656107, 0.32240867614746094, -0.2655644118785858, 0.02042689174413681, 0.005021960940212011, -0.05550088360905647, 0.05062996223568916, 0.0683460384607315, 0.1542729288339615, -0.08300274610519409, 1.1456199884414673, -0.008832373656332493, -0.001342233270406723, 0.048584047704935074, -0.13735119998455048, -0.17033179104328156, -0.1753651648759842, 0.16292554140090942, -0.10330402106046677, -0.7029946446418762, -0.01270327903330326]} +{"t": 15.912, "q": [-0.13807189464569092, 0.009183431044220924, -0.008236016146838665, 0.3160000443458557, -0.1842103749513626, -0.012152239680290222, -0.07811030000448227, -0.023861922323703766, 0.012829435989260674, 0.32235753536224365, -0.2655644118785858, 0.02042689174413681, 0.005704947747290134, -0.05547812208533287, 0.050654150545597076, 0.06850183010101318, 0.15415309369564056, -0.08300274610519409, 1.1455841064453125, -0.008904279209673405, -0.0013542174128815532, 0.048596031963825226, -0.1378425657749176, -0.16097211837768555, -0.17445436120033264, 0.1634288728237152, -0.09612546861171722, -0.7018441557884216, -0.012607404962182045]} +{"t": 15.9288, "q": [-0.13815711438655853, 0.009174909442663193, -0.008222623728215694, 0.3160000443458557, -0.18421898782253265, -0.012166476808488369, -0.07811882346868515, -0.02394714392721653, 0.012816044501960278, 0.32231491804122925, -0.2655601501464844, 0.020419642329216003, 0.00605313666164875, -0.055492959916591644, 0.05066297575831413, 0.06880144029855728, 0.15423697233200073, -0.08300274610519409, 1.145691990852356, -0.008916263468563557, -0.0013662016717717052, 0.048584047704935074, -0.1384177953004837, -0.15096528828144073, -0.17441841959953308, 0.1636086404323578, -0.0929616317152977, -0.7013288736343384, -0.012775183655321598]} +{"t": 15.9457, "q": [-0.13819120824337006, 0.009166385978460312, -0.008236016146838665, 0.3159574270248413, -0.1842147707939148, -0.012173566967248917, -0.0780932605266571, -0.02406645379960537, 0.012829435989260674, 0.32227233052253723, -0.2655602693557739, 0.0204340647906065, 0.006334366742521524, -0.05548529699444771, 0.050677280873060226, 0.06895723193883896, 0.15424896776676178, -0.08300274610519409, 1.1456799507141113, -0.008928247727453709, -0.001342233270406723, 0.048584047704935074, -0.13886122405529022, -0.14040718972682953, -0.1739150732755661, 0.16659271717071533, -0.08940231800079346, -0.7001543641090393, -0.012823120690882206]} +{"t": 15.9625, "q": [-0.1382593810558319, 0.009166385978460312, -0.008262800052762032, 0.31583812832832336, -0.18421898782253265, -0.012166476808488369, -0.07811882346868515, -0.024202806875109673, 0.012722301296889782, 0.3221615254878998, -0.2655687928199768, 0.02044856548309326, 0.006655772216618061, -0.05535680428147316, 0.0507800467312336, 0.06886135786771774, 0.15426094830036163, -0.08299075812101364, 1.145691990852356, -0.008928247727453709, -0.0013542174128815532, 0.04857206344604492, -0.13888518512248993, -0.13209013640880585, -0.17360348999500275, 0.16918130218982697, -0.08523181080818176, -0.6993274688720703, -0.01284708920866251]} +{"t": 15.9792, "q": [-0.1382679045200348, 0.009166385978460312, -0.00831636693328619, 0.3157784640789032, -0.1842147707939148, -0.012173566967248917, -0.07814439386129379, -0.02436472848057747, 0.012655341066420078, 0.32203370332717896, -0.26556867361068726, 0.020434141159057617, 0.0068030827678740025, -0.05525839328765869, 0.050872087478637695, 0.06883738934993744, 0.15418903529644012, -0.08299075812101364, 1.1456799507141113, -0.008856342174112797, -0.0013542174128815532, 0.04857206344604492, -0.1389690786600113, -0.12310196459293365, -0.17260879278182983, 0.1720455437898636, -0.08110923320055008, -0.6984526515007019, -0.012799152173101902]} +{"t": 15.9961, "q": [-0.13828495144844055, 0.009106732904911041, -0.00832975935190916, 0.31579551100730896, -0.18421898782253265, -0.012166476808488369, -0.07822961360216141, -0.02448403835296631, 0.01260177418589592, 0.3219228982925415, -0.2655729353427887, 0.020441392436623573, 0.0070307450369000435, -0.055212534964084625, 0.05094832554459572, 0.06882540881633759, 0.15418903529644012, -0.08300274610519409, 1.145691990852356, -0.008856342174112797, -0.0013542174128815532, 0.048584047704935074, -0.138993039727211, -0.11383815854787827, -0.170523539185524, 0.17502960562705994, -0.07602792233228683, -0.6979612708091736, -0.01278716791421175]} +{"t": 16.0128, "q": [-0.13824233412742615, 0.00915786437690258, -0.008356543257832527, 0.31580403447151184, -0.18421898782253265, -0.012166476808488369, -0.07823813706636429, -0.024518126621842384, 0.01252142246812582, 0.3217780292034149, -0.26558130979537964, 0.020441468805074692, 0.007204839959740639, -0.055212412029504776, 0.050957661122083664, 0.06880144029855728, 0.15421301126480103, -0.08299075812101364, 1.145703911781311, -0.008868326433002949, -0.0013662016717717052, 0.04857206344604492, -0.1390170156955719, -0.10452641546726227, -0.1685701161623001, 0.1781574934720993, -0.07367901504039764, -0.6975178718566895, -0.012895026244223118]} +{"t": 16.0295, "q": [-0.13819973170757294, 0.009166385978460312, -0.008383326232433319, 0.31588923931121826, -0.18421898782253265, -0.012166476808488369, -0.07828926295042038, -0.024569258093833923, 0.012427679263055325, 0.321658730506897, -0.2655729353427887, 0.020441392436623573, 0.007285191211849451, -0.05524938553571701, 0.0509890653192997, 0.06874151527881622, 0.15423697233200073, -0.08300274610519409, 1.145703911781311, -0.0088803106918931, -0.0013901700731366873, 0.048584047704935074, -0.13912487030029297, -0.09584983438253403, -0.165777787566185, 0.18178871273994446, -0.07248059660196304, -0.697038471698761, -0.012918994762003422]} +{"t": 16.0463, "q": [-0.13819120824337006, 0.009174909442663193, -0.008436894044280052, 0.315863698720932, -0.18422318994998932, -0.012159396894276142, -0.07835744321346283, -0.02466300129890442, 0.0122669767588377, 0.32147976756095886, -0.2655729353427887, 0.020441392436623573, 0.007445894181728363, -0.055286601185798645, 0.051001790910959244, 0.06847786158323288, 0.15418903529644012, -0.08301472663879395, 1.1456559896469116, -0.008916263468563557, -0.001342233270406723, 0.04857206344604492, -0.13911288976669312, -0.08947422355413437, -0.16354872286319733, 0.18488064408302307, -0.07204916328191757, -0.696355402469635, -0.012751216068863869]} +{"t": 16.063, "q": [-0.13820825517177582, 0.009132297709584236, -0.008570813573896885, 0.315863698720932, -0.18420615792274475, -0.012159328907728195, -0.07840857654809952, -0.024765267968177795, 0.012146449647843838, 0.32126671075820923, -0.26557719707489014, 0.02044864185154438, 0.007820867002010345, -0.05535227060317993, 0.05112554505467415, 0.0680224597454071, 0.15418903529644012, -0.0830267146229744, 1.145643949508667, -0.008892294950783253, -0.0013542174128815532, 0.04862000048160553, -0.1389451026916504, -0.08200805634260178, -0.16249410808086395, 0.18707375228405, -0.07198923826217651, -0.6950251460075378, -0.012823120690882206]} +{"t": 16.0797, "q": [-0.13822530210018158, 0.00915786437690258, -0.008691340684890747, 0.31580403447151184, -0.18420615792274475, -0.012159328907728195, -0.07852788269519806, -0.02485901117324829, 0.011972354725003242, 0.3211899995803833, -0.2655855715274811, 0.0204487182199955, 0.008115489035844803, -0.05535699799656868, 0.05133537948131561, 0.06773483753204346, 0.15414109826087952, -0.08301472663879395, 1.145632028579712, -0.008916263468563557, -0.0013542174128815532, 0.04857206344604492, -0.13771073520183563, -0.07679491490125656, -0.16050472855567932, 0.1893148124217987, -0.07202519476413727, -0.6929518580436707, -0.012871057726442814]} +{"t": 16.0964, "q": [-0.13823382556438446, 0.009149342775344849, -0.008758299984037876, 0.31566768884658813, -0.18421898782253265, -0.012166476808488369, -0.07857901602983475, -0.02491866610944271, 0.011838436126708984, 0.32107922434806824, -0.2655814588069916, 0.020455891266465187, 0.008115489035844803, -0.05536086857318878, 0.05161058157682419, 0.06771086901426315, 0.15414109826087952, -0.08296678960323334, 1.145632028579712, -0.008868326433002949, -0.0013781859306618571, 0.04857206344604492, -0.135949045419693, -0.07336742430925369, -0.15744875371456146, 0.19195133447647095, -0.07233678549528122, -0.6900396943092346, -0.012883041985332966]} +{"t": 16.1132, "q": [-0.13825085759162903, 0.009106732904911041, -0.008825259283185005, 0.31539496779441833, -0.18421457707881927, -0.01214515883475542, -0.07859606295824051, -0.024935709312558174, 0.011691125109791756, 0.3208746910095215, -0.2655814588069916, 0.020455891266465187, 0.008155664429068565, -0.0555148608982563, 0.05184357985854149, 0.067674919962883, 0.15418903529644012, -0.08300274610519409, 1.145643949508667, -0.008892294950783253, -0.001342233270406723, 0.04857206344604492, -0.1339476853609085, -0.07118629664182663, -0.15440475940704346, 0.19540278613567352, -0.07333147525787354, -0.687463104724884, -0.013002884574234486]} +{"t": 16.1299, "q": [-0.1383105218410492, 0.009140821173787117, -0.008959177881479263, 0.3150370419025421, -0.18421898782253265, -0.012166476808488369, -0.07861310988664627, -0.024927187711000443, 0.011490246281027794, 0.3206019699573517, -0.265585720539093, 0.020463140681385994, 0.008249407634139061, -0.05575825646519661, 0.05210159718990326, 0.06730341166257858, 0.15421301126480103, -0.08299075812101364, 1.1456559896469116, -0.008892294950783253, -0.0013781859306618571, 0.04857206344604492, -0.13144297897815704, -0.06936469674110413, -0.15062972903251648, 0.20203006267547607, -0.07547665387392044, -0.6844789981842041, -0.01290701050311327]} +{"t": 16.1467, "q": [-0.13832756876945496, 0.009072642773389816, -0.009160056710243225, 0.31469616293907166, -0.18422318994998932, -0.012159396894276142, -0.07863014936447144, -0.024935709312558174, 0.01118223275989294, 0.32043153047561646, -0.2655855715274811, 0.0204487182199955, 0.008530637249350548, -0.05609193444252014, 0.05229998379945755, 0.06660832464694977, 0.15426094830036163, -0.08301472663879395, 1.145643949508667, -0.008916263468563557, -0.0013781859306618571, 0.04857206344604492, -0.1297052651643753, -0.06882540881633759, -0.1447574496269226, 0.20887306332588196, -0.0772862657904625, -0.6814829707145691, -0.012990900315344334]} +{"t": 16.1634, "q": [-0.13846391439437866, 0.009064121171832085, -0.00940111093223095, 0.31443196535110474, -0.18422318994998932, -0.012159396894276142, -0.07863014936447144, -0.024935709312558174, 0.010874219238758087, 0.3201758861541748, -0.265585720539093, 0.020463140681385994, 0.008865434676408768, -0.056513965129852295, 0.05258835107088089, 0.06572148948907852, 0.15423697233200073, -0.08299075812101364, 1.1456799507141113, -0.008892294950783253, -0.0013662016717717052, 0.04857206344604492, -0.12803946435451508, -0.0683220699429512, -0.13743509352207184, 0.21556025743484497, -0.07837682962417603, -0.6780075430870056, -0.013050821609795094]} +{"t": 16.1802, "q": [-0.13855765759944916, 0.009047077968716621, -0.009575205855071545, 0.31414222717285156, -0.18422318994998932, -0.012159396894276142, -0.07866424322128296, -0.024927187711000443, 0.010740300640463829, 0.31997987627983093, -0.26558998227119446, 0.0204703900963068, 0.009026138111948967, -0.05683271214365959, 0.052777621895074844, 0.06509830802679062, 0.15418903529644012, -0.08300274610519409, 1.1456679105758667, -0.008904279209673405, -0.001342233270406723, 0.04857206344604492, -0.12720057368278503, -0.06996390968561172, -0.130232572555542, 0.2229665070772171, -0.07976700365543365, -0.6750953793525696, -0.012859073467552662]} +{"t": 16.197, "q": [-0.1386343538761139, 0.009072642773389816, -0.009695732034742832, 0.3139803111553192, -0.1842402219772339, -0.01215947326272726, -0.07873241603374481, -0.0249016210436821, 0.01057959720492363, 0.3198605477809906, -0.2656027674674988, 0.020492156967520714, 0.009213624522089958, -0.057173553854227066, 0.05298926308751106, 0.06428338587284088, 0.15417705476284027, -0.08301472663879395, 1.1457278728485107, -0.008892294950783253, -0.0013542174128815532, 0.04857206344604492, -0.12605008482933044, -0.07130613923072815, -0.12499547004699707, 0.2308041900396347, -0.08379369974136353, -0.6716798543930054, -0.012871057726442814]} +{"t": 16.2137, "q": [-0.1389070600271225, 0.009089687839150429, -0.009816259145736694, 0.3137161135673523, -0.18422739207744598, -0.01215231604874134, -0.07886024564504623, -0.02485048770904541, 0.010539421811699867, 0.3195878565311432, -0.2655942440032959, 0.0204776581376791, 0.009293975308537483, -0.05737355351448059, 0.05311733856797218, 0.06360028684139252, 0.15423697233200073, -0.08299075812101364, 1.1457997560501099, -0.008904279209673405, -0.001342233270406723, 0.04857206344604492, -0.123964823782444, -0.0721929743885994, -0.12054932117462158, 0.23728765547275543, -0.08984573930501938, -0.666251003742218, -0.01290701050311327]} +{"t": 16.2304, "q": [-0.13894115388393402, 0.009047077968716621, -0.00991000235080719, 0.31351158022880554, -0.18423591554164886, -0.0121523542329669, -0.07886024564504623, -0.02485048770904541, 0.010472462512552738, 0.3194429874420166, -0.26558998227119446, 0.0204703900963068, 0.009280583821237087, -0.05750710517168045, 0.05318716913461685, 0.06307297945022583, 0.15421301126480103, -0.08299075812101364, 1.1459555625915527, -0.008892294950783253, -0.0012343751732259989, 0.048584047704935074, -0.12211925536394119, -0.07328353822231293, -0.1167742908000946, 0.2452811449766159, -0.09648499637842178, -0.6626077890396118, -0.012823120690882206]} +{"t": 16.2471, "q": [-0.1389922797679901, 0.009072642773389816, -0.009963570162653923, 0.3133837580680847, -0.1842402219772339, -0.01215947326272726, -0.07886876910924911, -0.02485048770904541, 0.010351935401558876, 0.31932365894317627, -0.26559850573539734, 0.020484907552599907, 0.009347543120384216, -0.05792206898331642, 0.05344278737902641, 0.06235392391681671, 0.15423697233200073, -0.08299075812101364, 1.1461234092712402, -0.008892294950783253, -0.0012104067718610168, 0.04857206344604492, -0.11931494623422623, -0.07470966130495071, -0.113131083548069, 0.25361016392707825, -0.10057161748409271, -0.6587249040603638, -0.01276320032775402]} +{"t": 16.2641, "q": [-0.13902637362480164, 0.009072642773389816, -0.010030529461801052, 0.31313660740852356, -0.18424442410469055, -0.012152384035289288, -0.07891137897968292, -0.02485901117324829, 0.01033854391425848, 0.3192640244960785, -0.2656027674674988, 0.020492156967520714, 0.00932075921446085, -0.058262500911951065, 0.05366314947605133, 0.06175471097230911, 0.15424896776676178, -0.08299075812101364, 1.1463390588760376, -0.008856342174112797, -0.0011744541116058826, 0.04856007918715477, -0.11604325473308563, -0.07666309177875519, -0.1098114550113678, 0.26084864139556885, -0.10620420426130295, -0.6556689739227295, -0.012918994762003422]} +{"t": 16.2809, "q": [-0.13905194401741028, 0.009064121171832085, -0.010043921880424023, 0.31291502714157104, -0.18424442410469055, -0.012152384035289288, -0.07892842590808868, -0.02484196610748768, 0.010365326888859272, 0.31896573305130005, -0.26559850573539734, 0.020484907552599907, 0.009280583821237087, -0.05878829210996628, 0.053974345326423645, 0.06102367490530014, 0.15424896776676178, -0.08297877758741379, 1.1470462083816528, -0.008832373656332493, -0.0012104067718610168, 0.04857206344604492, -0.11160908639431, -0.0806538388133049, -0.10463427007198334, 0.26773956418037415, -0.1143534779548645, -0.6535237431526184, -0.013002884574234486]} +{"t": 16.2977, "q": [-0.13906899094581604, 0.009072642773389816, -0.010043921880424023, 0.3127190172672272, -0.18424442410469055, -0.012152384035289288, -0.0789199024438858, -0.02485048770904541, 0.010365326888859272, 0.31859928369522095, -0.26559850573539734, 0.020484907552599907, 0.009293975308537483, -0.059484973549842834, 0.05434924736618996, 0.06010089069604874, 0.15421301126480103, -0.08299075812101364, 1.1484004259109497, -0.008892294950783253, -0.001270327833481133, 0.04856007918715477, -0.10655174404382706, -0.08598681539297104, -0.09696436673402786, 0.2742590010166168, -0.12235894054174423, -0.6522414684295654, -0.012835104949772358]} +{"t": 16.3144, "q": [-0.1390945464372635, 0.009047077968716621, -0.010030529461801052, 0.31254005432128906, -0.18424442410469055, -0.012152384035289288, -0.07891137897968292, -0.024833444505929947, 0.01032515149563551, 0.31818169355392456, -0.26558998227119446, 0.0204703900963068, 0.009160056710243225, -0.060322970151901245, 0.05476100370287895, 0.0592619925737381, 0.15418903529644012, -0.08297877758741379, 1.1498384475708008, -0.008832373656332493, -0.001306280493736267, 0.04857206344604492, -0.10235726833343506, -0.09076852351427078, -0.09034907072782516, 0.28083834052085876, -0.13081979751586914, -0.65116286277771, -0.012751216068863869]} +{"t": 16.3314, "q": [-0.13917125761508942, 0.009072642773389816, -0.01000374648720026, 0.3124804198741913, -0.18425294756889343, -0.012152422219514847, -0.07893694937229156, -0.02473970130085945, 0.010351935401558876, 0.31794309616088867, -0.2656027674674988, 0.020492156967520714, 0.009039529599249363, -0.061279136687517166, 0.05521325394511223, 0.058698736131191254, 0.15426094830036163, -0.08297877758741379, 1.1505095958709717, -0.008856342174112797, -0.001270327833481133, 0.04856007918715477, -0.0993252620100975, -0.09509482979774475, -0.084596648812294, 0.287022203207016, -0.1395682841539383, -0.6490536332130432, -0.012727247551083565]} +{"t": 16.3481, "q": [-0.13916273415088654, 0.009047077968716621, -0.009963570162653923, 0.3124633729457855, -0.18425725400447845, -0.012159541249275208, -0.07893694937229156, -0.0246715247631073, 0.010405503213405609, 0.3178408145904541, -0.2656024992465973, 0.020463312044739723, 0.00898596178740263, -0.0624813549220562, 0.05567863583564758, 0.05784785374999046, 0.15451261401176453, -0.08297877758741379, 1.1508930921554565, -0.008856342174112797, -0.0012223910307511687, 0.048584047704935074, -0.09593372046947479, -0.10034392029047012, -0.07836484909057617, 0.293337881565094, -0.14843662083148956, -0.6454104781150818, -0.012871057726442814]} +{"t": 16.3648, "q": [-0.13924795389175415, 0.009047077968716621, -0.009976962581276894, 0.31250596046447754, -0.18425725400447845, -0.012159541249275208, -0.0789199024438858, -0.024688567966222763, 0.010378719307482243, 0.31782376766204834, -0.26558998227119446, 0.0204703900963068, 0.009133272804319859, -0.06385411322116852, 0.05615873634815216, 0.05639776214957237, 0.15493206679821014, -0.08296678960323334, 1.1511926651000977, -0.008844357915222645, -0.0011385014513507485, 0.048596031963825226, -0.09195496141910553, -0.10614427924156189, -0.07323560118675232, 0.2990064322948456, -0.16002535820007324, -0.642330527305603, -0.012691294774413109]} +{"t": 16.3816, "q": [-0.1392735242843628, 0.009055599570274353, -0.01007070578634739, 0.31254005432128906, -0.18425315618515015, -0.01218084804713726, -0.07885172963142395, -0.024773789569735527, 0.010405503213405609, 0.3178408145904541, -0.26559823751449585, 0.020456044003367424, 0.009227016009390354, -0.06525450199842453, 0.05676758289337158, 0.05535513535141945, 0.15520770847797394, -0.08295480906963348, 1.1512765884399414, -0.008844357915222645, -0.0011984225129708648, 0.048596031963825226, -0.0884435847401619, -0.11214838176965714, -0.06699182093143463, 0.3040997087955475, -0.16948091983795166, -0.6396220922470093, -0.01284708920866251]} +{"t": 16.3983, "q": [-0.13933317363262177, 0.009047077968716621, -0.010030529461801052, 0.3126508593559265, -0.1842530518770218, -0.012166622094810009, -0.078877292573452, -0.024807877838611603, 0.010418894700706005, 0.31781524419784546, -0.26559823751449585, 0.020456044003367424, 0.009186840616166592, -0.06678298115730286, 0.05722379311919212, 0.0544443354010582, 0.15566310286521912, -0.08293084055185318, 1.1515882015228271, -0.008832373656332493, -0.0011504855938255787, 0.04857206344604492, -0.08617856353521347, -0.11933891475200653, -0.05794372782111168, 0.31019967794418335, -0.180254727602005, -0.6363144516944885, -0.012823120690882206]} +{"t": 16.4151, "q": [-0.13937577605247498, 0.008970377966761589, -0.009856435470283031, 0.3127531111240387, -0.18426157534122467, -0.012166677974164486, -0.07893694937229156, -0.024824922904372215, 0.010485853999853134, 0.3178067207336426, -0.2655814588069916, 0.020455891266465187, 0.009186840616166592, -0.06852205842733383, 0.05755844712257385, 0.05368933081626892, 0.15631024539470673, -0.08293084055185318, 1.1519237756729126, -0.008832373656332493, -0.0011025486746802926, 0.04862000048160553, -0.08448878675699234, -0.12729644775390625, -0.048835717141628265, 0.317318320274353, -0.1910165697336197, -0.6338816285133362, -0.012607404962182045]} +{"t": 16.432, "q": [-0.13941839337348938, 0.008987423032522202, -0.009856435470283031, 0.3128979802131653, -0.18425294756889343, -0.012152422219514847, -0.07886876910924911, -0.02485048770904541, 0.010526030324399471, 0.3178408145904541, -0.265585720539093, 0.020463140681385994, 0.009240408428013325, -0.07025173306465149, 0.05794190615415573, 0.05269463732838631, 0.15712517499923706, -0.08290687203407288, 1.1521275043487549, -0.008808405138552189, -0.0010546118719503284, 0.04863198474049568, -0.08278702944517136, -0.13439109921455383, -0.04218447208404541, 0.3233943283557892, -0.20232968032360077, -0.6320600509643555, -0.012547483667731285]} +{"t": 16.4487, "q": [-0.13946951925754547, 0.008987423032522202, -0.009936786256730556, 0.3130854666233063, -0.18424873054027557, -0.012159503065049648, -0.07884320616722107, -0.024986842647194862, 0.010499246418476105, 0.3178749084472656, -0.265585720539093, 0.020463140681385994, 0.00933415163308382, -0.07195398211479187, 0.058167897164821625, 0.05179582163691521, 0.15805993974208832, -0.08288290351629257, 1.1522952318191528, -0.008808405138552189, -0.0010306433541700244, 0.048643968999385834, -0.08066581934690475, -0.1417134702205658, -0.03562910109758377, 0.3297819197177887, -0.21354691684246063, -0.6307417750358582, -0.012559467926621437]} +{"t": 16.4654, "q": [-0.139503613114357, 0.008970377966761589, -0.009936786256730556, 0.3132559061050415, -0.1842530518770218, -0.012166622094810009, -0.07875798642635345, -0.025123195722699165, 0.010485853999853134, 0.31796011328697205, -0.26558998227119446, 0.0204703900963068, 0.009374327026307583, -0.07356555759906769, 0.05842306464910507, 0.05132843554019928, 0.15905463695526123, -0.08287091553211212, 1.1523910760879517, -0.008808405138552189, -0.0010426276130601764, 0.048643968999385834, -0.07896406203508377, -0.1489519327878952, -0.028905950486660004, 0.33640918135643005, -0.22512367367744446, -0.6291958093643188, -0.012475578114390373]} +{"t": 16.4823, "q": [-0.1394524872303009, 0.008995944634079933, -0.009856435470283031, 0.3134433925151825, -0.18424873054027557, -0.012159503065049648, -0.07871536910533905, -0.02520841732621193, 0.0105126379057765, 0.31801125407218933, -0.265585720539093, 0.020463140681385994, 0.00933415163308382, -0.07514499127864838, 0.058780040591955185, 0.05131645128130913, 0.16004933416843414, -0.08283496648073196, 1.152438998222351, -0.00878443755209446, -0.0010785802733153105, 0.048643968999385834, -0.07758587598800659, -0.1561424732208252, -0.020732710137963295, 0.3421136736869812, -0.23643678426742554, -0.6260199546813965, -0.012559467926621437]} +{"t": 16.4991, "q": [-0.13941839337348938, 0.00897889956831932, -0.009722515940666199, 0.31351158022880554, -0.18425294756889343, -0.012152422219514847, -0.07871536910533905, -0.02528511732816696, 0.010539421811699867, 0.3180197775363922, -0.26558998227119446, 0.0204703900963068, 0.009267191402614117, -0.07657953351736069, 0.05927690863609314, 0.051304467022418976, 0.16109195351600647, -0.08281099796295166, 1.1524989604949951, -0.008832373656332493, -0.0010905645322054625, 0.048643968999385834, -0.07566839456558228, -0.16317720711231232, -0.012140019796788692, 0.3452415466308594, -0.24724654853343964, -0.6225684881210327, -0.01251153089106083]} +{"t": 16.5158, "q": [-0.1394950896501541, 0.008987423032522202, -0.009682340547442436, 0.3136734962463379, -0.1842445284128189, -0.012166592292487621, -0.07871536910533905, -0.025344770401716232, 0.010539421811699867, 0.3180794417858124, -0.265585720539093, 0.020463140681385994, 0.009280583821237087, -0.07801565527915955, 0.05966101586818695, 0.05105280131101608, 0.16213458776474, -0.08282297849655151, 1.1525708436965942, -0.008856342174112797, -0.0011504855938255787, 0.048655953258275986, -0.0731397271156311, -0.17017599940299988, -0.004565989598631859, 0.3479859530925751, -0.25815218687057495, -0.6205791234970093, -0.012211925350129604]} +{"t": 16.5327, "q": [-0.13947804272174835, 0.008987423032522202, -0.009695732034742832, 0.31382688879966736, -0.1842445284128189, -0.012166592292487621, -0.07863867282867432, -0.025472603738307953, 0.010526030324399471, 0.3181646466255188, -0.265585720539093, 0.020463140681385994, 0.009227016009390354, -0.0792132019996643, 0.06003681942820549, 0.05096891149878502, 0.16302141547203064, -0.08282297849655151, 1.1526068449020386, -0.008832373656332493, -0.0011984225129708648, 0.048655953258275986, -0.0713181272149086, -0.17574866116046906, 0.0012343751732259989, 0.3507782816886902, -0.26845863461494446, -0.6189852356910706, -0.01212803553789854]} +{"t": 16.5495, "q": [-0.13943544030189514, 0.009012989699840546, -0.009682340547442436, 0.314039945602417, -0.18424873054027557, -0.012159503065049648, -0.07857901602983475, -0.025532258674502373, 0.010566205717623234, 0.31832656264305115, -0.265585720539093, 0.020463140681385994, 0.009280583821237087, -0.08044765144586563, 0.06041508540511131, 0.05086105316877365, 0.16380038857460022, -0.08282297849655151, 1.1526668071746826, -0.008832373656332493, -0.0012223910307511687, 0.048655953258275986, -0.06958041340112686, -0.1807820349931717, 0.00535694882273674, 0.353450745344162, -0.27824974060058594, -0.617607057094574, -0.011720572598278522]} +{"t": 16.5662, "q": [-0.13944396376609802, 0.008987423032522202, -0.009615381248295307, 0.31419333815574646, -0.18424873054027557, -0.012159503065049648, -0.07857901602983475, -0.025668611750006676, 0.010633165016770363, 0.3184373676776886, -0.265585720539093, 0.020463140681385994, 0.009133272804319859, -0.08131461590528488, 0.06055115908384323, 0.05092097446322441, 0.16451944410800934, -0.08282297849655151, 1.1526907682418823, -0.008832373656332493, -0.001282312092371285, 0.04863198474049568, -0.06871754676103592, -0.18494056165218353, 0.009108011610805988, 0.35703402757644653, -0.2863271236419678, -0.6166123747825623, -0.011684619821608067]} +{"t": 16.583, "q": [-0.13941839337348938, 0.008987423032522202, -0.009481461718678474, 0.3143211901187897, -0.1842530518770218, -0.012166622094810009, -0.07856197655200958, -0.025728266686201096, 0.010780476033687592, 0.3184885084629059, -0.26558583974838257, 0.02047756314277649, 0.008905611000955105, -0.08184219896793365, 0.06056522950530052, 0.05110073462128639, 0.1649508774280548, -0.08281099796295166, 1.1528345346450806, -0.008844357915222645, -0.001282312092371285, 0.048655953258275986, -0.06814230233430862, -0.18860773742198944, 0.012140019796788692, 0.35987430810928345, -0.2936374843120575, -0.6157494783401489, -0.011504855938255787]} +{"t": 16.5997, "q": [-0.13943544030189514, 0.008995944634079933, -0.009267191402614117, 0.3144490122795105, -0.18425725400447845, -0.012159541249275208, -0.07857901602983475, -0.025830531492829323, 0.01091439463198185, 0.31851404905319214, -0.2655773162841797, 0.020463064312934875, 0.008584205061197281, -0.08208057284355164, 0.06054345518350601, 0.05107676982879639, 0.165178582072258, -0.08282297849655151, 1.1528584957122803, -0.008832373656332493, -0.001270327833481133, 0.048655953258275986, -0.06720753759145737, -0.19186744093894958, 0.01507615577429533, 0.36132439970970154, -0.29731664061546326, -0.6154259443283081, -0.011277155950665474]} +{"t": 16.6165, "q": [-0.139316126704216, 0.008995944634079933, -0.009093097411096096, 0.3145768344402313, -0.18425725400447845, -0.012159541249275208, -0.07857049256563187, -0.02600097469985485, 0.011048314161598682, 0.31864190101623535, -0.26557743549346924, 0.02047748677432537, 0.00799496192485094, -0.08205853402614594, 0.06053069978952408, 0.05110073462128639, 0.16535833477973938, -0.08282297849655151, 1.1529303789138794, -0.008832373656332493, -0.0012583436910063028, 0.048643968999385834, -0.06665626168251038, -0.19400063157081604, 0.017916416749358177, 0.36144423484802246, -0.3006003201007843, -0.6154139637947083, -0.011181281879544258]} +{"t": 16.6332, "q": [-0.13915421068668365, 0.009004466235637665, -0.008852043189108372, 0.31465354561805725, -0.18426135182380676, -0.012138260528445244, -0.07861310988664627, -0.02605210617184639, 0.011342935264110565, 0.3189486861228943, -0.2655731737613678, 0.020470237359404564, 0.00709770480170846, -0.08201348781585693, 0.060551609843969345, 0.05113668739795685, 0.1654542088508606, -0.08285893499851227, 1.1530022621154785, -0.008844357915222645, -0.0011624698527157307, 0.048643968999385834, -0.0662008598446846, -0.19510318338871002, 0.019785955548286438, 0.3613363802433014, -0.3037761449813843, -0.6153899431228638, -0.010881676338613033]} +{"t": 16.65, "q": [-0.1390434205532074, 0.009012989699840546, -0.008677948266267776, 0.3147728443145752, -0.18425294756889343, -0.012152422219514847, -0.07863867282867432, -0.026077672839164734, 0.011637557297945023, 0.31918731331825256, -0.26557743549346924, 0.02047748677432537, 0.0062272315844893456, -0.08193886280059814, 0.0605647936463356, 0.05113668739795685, 0.1654781848192215, -0.08287091553211212, 1.1532059907913208, -0.008832373656332493, -0.0011265171924605966, 0.04862000048160553, -0.06579339504241943, -0.19507922232151031, 0.021331921219825745, 0.36130040884017944, -0.3059452772140503, -0.6154139637947083, -0.010498180985450745]} +{"t": 16.6667, "q": [-0.13905194401741028, 0.009004466235637665, -0.008637772873044014, 0.31492626667022705, -0.18425725400447845, -0.012159541249275208, -0.07863014936447144, -0.02599245123565197, 0.01177147589623928, 0.31928956508636475, -0.2655731737613678, 0.020470237359404564, 0.005704947747290134, -0.08185630291700363, 0.060601573437452316, 0.05104081705212593, 0.1655021458864212, -0.08285893499851227, 1.1533857583999634, -0.008832373656332493, -0.0010905645322054625, 0.048643968999385834, -0.06538593024015427, -0.1949593722820282, 0.02183525823056698, 0.3608090579509735, -0.30732348561286926, -0.6154499053955078, -0.009958891198039055]} +{"t": 16.6835, "q": [-0.1389922797679901, 0.009012989699840546, -0.008637772873044014, 0.315045565366745, -0.1842445284128189, -0.012166592292487621, -0.07861310988664627, -0.025830531492829323, 0.011811652220785618, 0.31956228613853455, -0.2655814588069916, 0.020455891266465187, 0.005289798602461815, -0.0818416103720665, 0.060593076050281525, 0.05113668739795685, 0.16569389402866364, -0.08283496648073196, 1.1535296440124512, -0.008832373656332493, -0.0010665960144251585, 0.04863198474049568, -0.06568554043769836, -0.19409650564193726, 0.021164141595363617, 0.35937097668647766, -0.30805450677871704, -0.6155098080635071, -0.009791111573576927]} +{"t": 16.7004, "q": [-0.1389070600271225, 0.009004466235637665, -0.008570813573896885, 0.31507113575935364, -0.18425725400447845, -0.012159541249275208, -0.07859606295824051, -0.025600435212254524, 0.01193217933177948, 0.3198520243167877, -0.26557719707489014, 0.02044864185154438, 0.0039506093598902225, -0.0818416103720665, 0.060593076050281525, 0.05116065591573715, 0.1658257246017456, -0.08284694701433182, 1.1540210247039795, -0.008796420879662037, -0.0010306433541700244, 0.04863198474049568, -0.06762698292732239, -0.19202324748039246, 0.02142779529094696, 0.3576931655406952, -0.3091091215610504, -0.6155697107315063, -0.009215869009494781]} +{"t": 16.7171, "q": [-0.13878776133060455, 0.009012989699840546, -0.008503853343427181, 0.3150796592235565, -0.18425294756889343, -0.012152422219514847, -0.07857901602983475, -0.02538738213479519, 0.012066097930073738, 0.3200480341911316, -0.26556891202926636, 0.020462987944483757, 0.00354885240085423, -0.0818052738904953, 0.060553256422281265, 0.051112718880176544, 0.1658017635345459, -0.08284694701433182, 1.1543205976486206, -0.00878443755209446, -0.0009587380336597562, 0.048643968999385834, -0.06935270875692368, -0.1902375966310501, 0.020960409194231033, 0.35535624623298645, -0.30925291776657104, -0.6157015562057495, -0.008712531998753548]} +{"t": 16.7338, "q": [-0.13877923786640167, 0.009030032902956009, -0.008503853343427181, 0.3151222765445709, -0.18425294756889343, -0.012152422219514847, -0.07858753949403763, -0.025233983993530273, 0.012092881835997105, 0.32028666138648987, -0.26557719707489014, 0.02044864185154438, 0.0033747577108442783, -0.08176854997873306, 0.06053200364112854, 0.05074121057987213, 0.1658017635345459, -0.08284694701433182, 1.1545602083206177, -0.00878443755209446, -0.0009227853151969612, 0.048643968999385834, -0.07121026515960693, -0.1889193207025528, 0.02057691477239132, 0.3531032204627991, -0.30892935395240784, -0.6157854199409485, -0.00788561999797821]} +{"t": 16.7506, "q": [-0.13879628479480743, 0.009012989699840546, -0.008503853343427181, 0.31515634059906006, -0.18425294756889343, -0.012152422219514847, -0.0785534530878067, -0.025063540786504745, 0.012159841135144234, 0.320465624332428, -0.2655729353427887, 0.020441392436623573, 0.003334582084789872, -0.08163554966449738, 0.0604926198720932, 0.05050152540206909, 0.165777787566185, -0.08287091553211212, 1.1547520160675049, -0.00882038939744234, -0.0009467537747696042, 0.04863198474049568, -0.07285210490226746, -0.18728947639465332, 0.02022937312722206, 0.3499753177165985, -0.30822229385375977, -0.6158214211463928, -0.006615292280912399]} +{"t": 16.7673, "q": [-0.13877923786640167, 0.009021511301398277, -0.008503853343427181, 0.31515634059906006, -0.1842445284128189, -0.012166592292487621, -0.07851936668157578, -0.024867532774806023, 0.012226800434291363, 0.3206360638141632, -0.2655646502971649, 0.02045573852956295, 0.003254230599850416, -0.08151821792125702, 0.06041532754898071, 0.0505494624376297, 0.1657538264989853, -0.08289488404989243, 1.1549197435379028, -0.008808405138552189, -0.0009467537747696042, 0.04863198474049568, -0.07442203909158707, -0.1850723922252655, 0.019630160182714462, 0.347135066986084, -0.30662837624549866, -0.6160251498222351, -0.00535694882273674]} +{"t": 16.7841, "q": [-0.13877923786640167, 0.00903855450451374, -0.00847707036882639, 0.3151904344558716, -0.1842445284128189, -0.012166592292487621, -0.0785108432173729, -0.024654479697346687, 0.012320543639361858, 0.32098546624183655, -0.26556867361068726, 0.020434141159057617, 0.0029730007518082857, -0.08134674280881882, 0.060438234359025955, 0.05075319483876228, 0.16574183106422424, -0.08289488404989243, 1.1551355123519897, -0.008856342174112797, -0.0009946906939148903, 0.04862000048160553, -0.07572831958532333, -0.18156100809574127, 0.01841975376009941, 0.34242525696754456, -0.30413568019866943, -0.6163007616996765, -0.004326305352151394]} +{"t": 16.8008, "q": [-0.13877923786640167, 0.009021511301398277, -0.008503853343427181, 0.31525009870529175, -0.1842445284128189, -0.012166592292487621, -0.0785108432173729, -0.024458471685647964, 0.012374111451208591, 0.32120704650878906, -0.2655687928199768, 0.02044856548309326, 0.0027453387156128883, -0.08110817521810532, 0.060469191521406174, 0.0508490689098835, 0.16563397645950317, -0.08285893499851227, 1.1554111242294312, -0.008832373656332493, -0.0010785802733153105, 0.048643968999385834, -0.07697467505931854, -0.17757026851177216, 0.017532922327518463, 0.3374398350715637, -0.3001329302787781, -0.6167561411857605, -0.0036072516813874245]} +{"t": 16.8175, "q": [-0.13875366747379303, 0.009021511301398277, -0.008423502556979656, 0.31533530354499817, -0.1842445284128189, -0.012166592292487621, -0.07850231975317001, -0.02430507354438305, 0.01258838176727295, 0.3213774859905243, -0.26555588841438293, 0.020412392914295197, 0.002383757382631302, -0.08091641962528229, 0.060395728796720505, 0.05092097446322441, 0.1655740588903427, -0.08288290351629257, 1.1555908918380737, -0.008832373656332493, -0.0011265171924605966, 0.04860801622271538, -0.07854460924863815, -0.17345967888832092, 0.01672997884452343, 0.33373671770095825, -0.2953512370586395, -0.6174752116203308, -0.0028043086640536785]} +{"t": 16.8342, "q": [-0.13865992426872253, 0.009047077968716621, -0.00831636693328619, 0.3154461085796356, -0.18424883484840393, -0.012173711322247982, -0.0785108432173729, -0.024092020466923714, 0.012802652083337307, 0.32153940200805664, -0.26551327109336853, 0.020339859649538994, 0.0021025275345891714, -0.08064250648021698, 0.06034034490585327, 0.05093295872211456, 0.1655021458864212, -0.08290687203407288, 1.1561661958694458, -0.008856342174112797, -0.0012104067718610168, 0.04863198474049568, -0.0803302600979805, -0.168821781873703, 0.014824486337602139, 0.3301773965358734, -0.2907133400440216, -0.6182182431221008, -0.0020732709672302008]} +{"t": 16.8511, "q": [-0.13866844773292542, 0.009030032902956009, -0.008222623728215694, 0.3155824542045593, -0.18424032628536224, -0.012173673138022423, -0.0785108432173729, -0.02400679886341095, 0.012896395288407803, 0.321658730506897, -0.2654239535331726, 0.02020200341939926, 0.002048959955573082, -0.08039218932390213, 0.06022361293435097, 0.05089700594544411, 0.16537033021450043, -0.08289488404989243, 1.1573046445846558, -0.008856342174112797, -0.0012463594321161509, 0.048643968999385834, -0.08176837116479874, -0.16380038857460022, 0.010977550409734249, 0.326066792011261, -0.287621408700943, -0.6190571188926697, -0.0009467537747696042]} +{"t": 16.8678, "q": [-0.13860027492046356, 0.009081166237592697, -0.008222623728215694, 0.3157358467578888, -0.18423180282115936, -0.012173634022474289, -0.07849379628896713, -0.023913055658340454, 0.013083881698548794, 0.3217950761318207, -0.2653130292892456, 0.01999901607632637, 0.0018748653819784522, -0.08004555106163025, 0.06007881462574005, 0.050393667072057724, 0.16528643667697906, -0.08289488404989243, 1.1582993268966675, -0.008832373656332493, -0.0011984225129708648, 0.048643968999385834, -0.08338624238967896, -0.1573408991098404, 0.005344964563846588, 0.32158470153808594, -0.28381043672561646, -0.6196563243865967, 0.0]} +{"t": 16.8846, "q": [-0.13847243785858154, 0.009132297709584236, -0.008128880523145199, 0.3159574270248413, -0.1842404305934906, -0.01218787208199501, -0.07845118641853333, -0.02375965751707554, 0.013311544433236122, 0.32193994522094727, -0.2651938796043396, 0.019810393452644348, 0.001794514013454318, -0.07976557314395905, 0.059944525361061096, 0.050213903188705444, 0.1652504801750183, -0.08289488404989243, 1.1588026285171509, -0.008832373656332493, -0.0012104067718610168, 0.04862000048160553, -0.08465656638145447, -0.15000654757022858, -0.0020013656467199326, 0.3164075016975403, -0.2802750766277313, -0.6202795505523682, 0.0008269115351140499]} +{"t": 16.9013, "q": [-0.13833607733249664, 0.009174909442663193, -0.00798156950622797, 0.3161108195781708, -0.1842276006937027, -0.01218071486800909, -0.07839152961969376, -0.023691480979323387, 0.013592774048447609, 0.32204222679138184, -0.26510050892829895, 0.019694151356816292, 0.0015266761183738708, -0.07953725010156631, 0.05983083322644234, 0.05026184022426605, 0.16523849964141846, -0.08288290351629257, 1.159090280532837, -0.008832373656332493, -0.0012223910307511687, 0.04862000048160553, -0.08584300428628922, -0.14363093674182892, -0.007490140851587057, 0.31172168254852295, -0.2747143805027008, -0.620974600315094, 0.0011624698527157307]} +{"t": 16.918, "q": [-0.1383019983768463, 0.009191952645778656, -0.007794083096086979, 0.31624719500541687, -0.18422329425811768, -0.01217359583824873, -0.07839152961969376, -0.02365739271044731, 0.013766868971288204, 0.3220677971839905, -0.2649690806865692, 0.01954147219657898, 0.0014731085393577814, -0.07930911332368851, 0.05970786511898041, 0.050273824483156204, 0.1651306450366974, -0.08289488404989243, 1.1592940092086792, -0.008868326433002949, -0.0012343751732259989, 0.04862000048160553, -0.08716127276420593, -0.13718342781066895, -0.01308677438646555, 0.3064965605735779, -0.27002856135368347, -0.6215977668762207, 0.001294296351261437]} +{"t": 16.9347, "q": [-0.13828495144844055, 0.009208997711539268, -0.0076467725448310375, 0.3164091110229492, -0.1842276006937027, -0.01218071486800909, -0.07842562347650528, -0.023614780977368355, 0.013981139287352562, 0.32209333777427673, -0.2647997736930847, 0.019381238147616386, 0.0013659733813256025, -0.07903630286455154, 0.05958712100982666, 0.050285808742046356, 0.16499881446361542, -0.08291885256767273, 1.159605622291565, -0.008832373656332493, -0.0012463594321161509, 0.04862000048160553, -0.08886303007602692, -0.13129916787147522, -0.017616810277104378, 0.301595002412796, -0.2655584514141083, -0.6220172643661499, 0.0013901700731366873]} +{"t": 16.9515, "q": [-0.13827642798423767, 0.009208997711539268, -0.007512853480875492, 0.3165625035762787, -0.1842235028743744, -0.012202003970742226, -0.0784171000123024, -0.02358069270849228, 0.01419540960341692, 0.3221103847026825, -0.2647067904472351, 0.019308265298604965, 0.0013525814283639193, -0.078828364610672, 0.059569671750068665, 0.050333745777606964, 0.1649269014596939, -0.08291885256767273, 1.159737467765808, -0.008832373656332493, -0.0012463594321161509, 0.04862000048160553, -0.09016931056976318, -0.1254388839006424, -0.02099636197090149, 0.2971728444099426, -0.26117223501205444, -0.622173011302948, 0.0013781859306618571]} +{"t": 16.9682, "q": [-0.13824233412742615, 0.009243085980415344, -0.00739232636988163, 0.31666475534439087, -0.18420657515525818, -0.012216135859489441, -0.0784171000123024, -0.023563649505376816, 0.014329328201711178, 0.322144478559494, -0.2645936608314514, 0.019328869879245758, 0.001312405802309513, -0.07864265888929367, 0.059555742889642715, 0.050345730036497116, 0.16489095985889435, -0.08291885256767273, 1.1599172353744507, -0.008856342174112797, -0.0012583436910063028, 0.04862000048160553, -0.09111606329679489, -0.12001003324985504, -0.02341717667877674, 0.292966365814209, -0.25625869631767273, -0.6222689151763916, 0.0014740596525371075]} +{"t": 16.985, "q": [-0.13820825517177582, 0.009251607581973076, -0.007298583164811134, 0.3167926073074341, -0.18419817090034485, -0.01223029661923647, -0.07840005308389664, -0.023563649505376816, 0.014423071406781673, 0.322144478559494, -0.2645099461078644, 0.019356954842805862, 0.0013525814283639193, -0.07858365029096603, 0.05953088775277138, 0.050333745777606964, 0.16493889689445496, -0.08293084055185318, 1.1600730419158936, -0.008832373656332493, -0.0012343751732259989, 0.04860801622271538, -0.09187106788158417, -0.11417371034622192, -0.025790052488446236, 0.2902219891548157, -0.2510455548763275, -0.6223647594451904, 0.0015219965716823936]} +{"t": 17.0018, "q": [-0.13822530210018158, 0.009251607581973076, -0.007271799258887768, 0.31680965423583984, -0.18419384956359863, -0.012223177589476109, -0.07840857654809952, -0.023555127903819084, 0.014516814611852169, 0.322144478559494, -0.26447272300720215, 0.019421551376581192, 0.0014597165863960981, -0.07855423539876938, 0.05951382592320442, 0.050285808742046356, 0.1649269014596939, -0.08293084055185318, 1.1602528095245361, -0.008856342174112797, -0.001282312092371285, 0.048596031963825226, -0.0926859974861145, -0.10792993009090424, -0.029277462512254715, 0.28835242986679077, -0.24729448556900024, -0.6223887801170349, 0.0017137442482635379]} +{"t": 17.0186, "q": [-0.1382679045200348, 0.009243085980415344, -0.007285191211849451, 0.3168778121471405, -0.18419817090034485, -0.01223029661923647, -0.07839152961969376, -0.023555127903819084, 0.014476639218628407, 0.322144478559494, -0.26443541049957275, 0.019471706822514534, 0.0017811221769079566, -0.07850220054388046, 0.059511780738830566, 0.05017795041203499, 0.16489095985889435, -0.08296678960323334, 1.1603965759277344, -0.008832373656332493, -0.001318264752626419, 0.048596031963825226, -0.09339306503534317, -0.10048773139715195, -0.03465837985277176, 0.28590765595436096, -0.24259667098522186, -0.6224247217178345, 0.0017736653098836541]} +{"t": 17.0354, "q": [-0.1382593810558319, 0.009208997711539268, -0.007285191211849451, 0.3168692886829376, -0.18419817090034485, -0.01223029661923647, -0.07838300615549088, -0.02359773777425289, 0.01444985531270504, 0.32213595509529114, -0.26441046595573425, 0.01950032450258732, 0.0022096626926213503, -0.07842699438333511, 0.059552568942308426, 0.050094060599803925, 0.16478309035301208, -0.08296678960323334, 1.1604325771331787, -0.008868326433002949, -0.0013662016717717052, 0.048596031963825226, -0.09396830946207047, -0.09341703355312347, -0.04102200269699097, 0.2836785912513733, -0.2379947304725647, -0.6225085854530334, 0.00173771264962852]} +{"t": 17.0522, "q": [-0.1382593810558319, 0.009132297709584236, -0.007285191211849451, 0.31685224175453186, -0.18419384956359863, -0.012223177589476109, -0.07839152961969376, -0.023674435913562775, 0.014476639218628407, 0.3221189081668854, -0.2644062042236328, 0.019493073225021362, 0.002276622224599123, -0.07831426709890366, 0.059609122574329376, 0.050225887447595596, 0.16477110981941223, -0.08294282108545303, 1.1605284214019775, -0.008856342174112797, -0.0013542174128815532, 0.048596031963825226, -0.09459149092435837, -0.08672983944416046, -0.04597148671746254, 0.2823962867259979, -0.2322542816400528, -0.6225205659866333, 0.001749696908518672]} +{"t": 17.069, "q": [-0.13829347491264343, 0.009166385978460312, -0.007271799258887768, 0.31675851345062256, -0.18419817090034485, -0.01223029661923647, -0.07840005308389664, -0.023691480979323387, 0.014490030705928802, 0.32207632064819336, -0.2644147276878357, 0.019507573917508125, 0.002316797850653529, -0.07817854732275009, 0.05969922989606857, 0.050345730036497116, 0.16468721628189087, -0.08296678960323334, 1.1606123447418213, -0.008832373656332493, -0.0013542174128815532, 0.04860801622271538, -0.09504689276218414, -0.07929962128400803, -0.05071724206209183, 0.281305730342865, -0.22670559585094452, -0.6225085854530334, 0.0016538230702280998]} +{"t": 17.0858, "q": [-0.13834460079669952, 0.00915786437690258, -0.007245015352964401, 0.3166391849517822, -0.18419817090034485, -0.01223029661923647, -0.07844266295433044, -0.02371704764664173, 0.014503423124551773, 0.32199960947036743, -0.26441073417663574, 0.01952916942536831, 0.002316797850653529, -0.07807298004627228, 0.059769317507743835, 0.05030977725982666, 0.16468721628189087, -0.08296678960323334, 1.1606842279434204, -0.008868326433002949, -0.001342233270406723, 0.04862000048160553, -0.09529855847358704, -0.07280416786670685, -0.05460013076663017, 0.28059864044189453, -0.2220916599035263, -0.6224966049194336, 0.001689775730483234]} +{"t": 17.1026, "q": [-0.13837869465351105, 0.009132297709584236, -0.007245015352964401, 0.3165198862552643, -0.1842023730278015, -0.012223215773701668, -0.07844266295433044, -0.023785224184393883, 0.014490030705928802, 0.32193994522094727, -0.2644149959087372, 0.019536418840289116, 0.0023301898036152124, -0.07795988023281097, 0.05984440818428993, 0.050213903188705444, 0.16474714875221252, -0.08297877758741379, 1.1607321500778198, -0.008856342174112797, -0.001342233270406723, 0.048584047704935074, -0.09520268440246582, -0.06725547462701797, -0.0568651482462883, 0.28053873777389526, -0.21880798041820526, -0.6224367022514343, 0.0015699334908276796]} +{"t": 17.1194, "q": [-0.13838721811771393, 0.009115254506468773, -0.007231623865664005, 0.31634944677352905, -0.1842023730278015, -0.012223215773701668, -0.07846823334693909, -0.023793745785951614, 0.014476639218628407, 0.3218376934528351, -0.26440659165382385, 0.01953636109828949, 0.0023435817565768957, -0.07784678041934967, 0.05991949886083603, 0.05014199763536453, 0.16474714875221252, -0.08297877758741379, 1.160744071006775, -0.008856342174112797, -0.001318264752626419, 0.048584047704935074, -0.0950828418135643, -0.062138207256793976, -0.05740443989634514, 0.28053873777389526, -0.21509286761283875, -0.6224127411842346, 0.0016058861510828137]} +{"t": 17.1362, "q": [-0.13837869465351105, 0.009064121171832085, -0.007204839959740639, 0.3161790072917938, -0.18420647084712982, -0.012201927602291107, -0.07849379628896713, -0.023802269250154495, 0.014436463825404644, 0.3217013478279114, -0.2644149959087372, 0.019536418840289116, 0.002383757382631302, -0.07776383310556412, 0.05997456610202789, 0.04996223375201225, 0.16468721628189087, -0.08297877758741379, 1.1607561111450195, -0.008868326433002949, -0.0013542174128815532, 0.048584047704935074, -0.09498696774244308, -0.05800364911556244, -0.05733253434300423, 0.2804788053035736, -0.21327127516269684, -0.6224127411842346, 0.001701759989373386]} +{"t": 17.1531, "q": [-0.13838721811771393, 0.009072642773389816, -0.007204839959740639, 0.3160426616668701, -0.18421077728271484, -0.012209046632051468, -0.07853640615940094, -0.02383635751903057, 0.014396287500858307, 0.3215990662574768, -0.2644191086292267, 0.019529245793819427, 0.002531068166717887, -0.07764319330453873, 0.06005466356873512, 0.04983040690422058, 0.16469921171665192, -0.08295480906963348, 1.1607561111450195, -0.008844357915222645, -0.001330249011516571, 0.04857206344604492, -0.09502292424440384, -0.05471997335553169, -0.05734451860189438, 0.2805267572402954, -0.2124323695898056, -0.6223887801170349, 0.001749696908518672]} +{"t": 17.1699, "q": [-0.13837017118930817, 0.009072642773389816, -0.007218231912702322, 0.3160597085952759, -0.18420226871967316, -0.01220901682972908, -0.07861310988664627, -0.023870445787906647, 0.01436950359493494, 0.3215138614177704, -0.26441922783851624, 0.019543670117855072, 0.00258463597856462, -0.07759003341197968, 0.0601082481443882, 0.04983040690422058, 0.16461531817913055, -0.08299075812101364, 1.1607561111450195, -0.008844357915222645, -0.001330249011516571, 0.048584047704935074, -0.09497498720884323, -0.0514482781291008, -0.05742840841412544, 0.2805746793746948, -0.2115095853805542, -0.6223887801170349, 0.001725728390738368]} +{"t": 17.1867, "q": [-0.13836164772510529, 0.00909820944070816, -0.007204839959740639, 0.31603413820266724, -0.18420226871967316, -0.01220901682972908, -0.07870685309171677, -0.02388748899102211, 0.014382896013557911, 0.3214115798473358, -0.2644149959087372, 0.019536418840289116, 0.0025980276986956596, -0.07750727981328964, 0.06015404313802719, 0.04987834393978119, 0.16461531817913055, -0.08297877758741379, 1.1608998775482178, -0.008856342174112797, -0.001318264752626419, 0.04857206344604492, -0.09466339647769928, -0.048116665333509445, -0.057512298226356506, 0.28071850538253784, -0.21043100953102112, -0.6223407983779907, 0.001725728390738368]} +{"t": 17.2036, "q": [-0.13833607733249664, 0.009081166237592697, -0.007204839959740639, 0.31607672572135925, -0.18421077728271484, -0.012209046632051468, -0.07874093949794769, -0.02387896738946438, 0.014356112107634544, 0.3213348984718323, -0.2644108533859253, 0.019543610513210297, 0.0025712440256029367, -0.07745411992073059, 0.060207631438970566, 0.04986635968089104, 0.1645793616771698, -0.08295480906963348, 1.1609238386154175, -0.008868326433002949, -0.0013662016717717052, 0.04857206344604492, -0.09354886412620544, -0.044617269188165665, -0.057500313967466354, 0.28104206919670105, -0.2094123512506485, -0.6223288178443909, 0.0016777915880084038]} +{"t": 17.2205, "q": [-0.13834460079669952, 0.009132297709584236, -0.007204839959740639, 0.31603413820266724, -0.1841980665922165, -0.012216097675263882, -0.07879207283258438, -0.023861922323703766, 0.014315936714410782, 0.32120704650878906, -0.2644233703613281, 0.019536495208740234, 0.002504284493625164, -0.07742378860712051, 0.06023696810007095, 0.04975850135087967, 0.16459134221076965, -0.08299075812101364, 1.1609477996826172, -0.008832373656332493, -0.001342233270406723, 0.04857206344604492, -0.09200289845466614, -0.0412377193570137, -0.05739245563745499, 0.281305730342865, -0.2085614651441574, -0.6222928762435913, 0.0016658073291182518]} +{"t": 17.2373, "q": [-0.13836164772510529, 0.009089687839150429, -0.007204839959740639, 0.31599152088165283, -0.18419817090034485, -0.01223029661923647, -0.07884320616722107, -0.023853400722146034, 0.014275760389864445, 0.3210621774196625, -0.2644233703613281, 0.019536495208740234, 0.0024775005877017975, -0.0773862674832344, 0.06025274097919464, 0.049626678228378296, 0.1645793616771698, -0.08299075812101364, 1.1609598398208618, -0.008868326433002949, -0.001330249011516571, 0.04857206344604492, -0.09074455499649048, -0.03839745745062828, -0.05705689638853073, 0.28138959407806396, -0.2082379013299942, -0.6222569346427917, 0.0016658073291182518]} +{"t": 17.254, "q": [-0.13831904530525208, 0.009089687839150429, -0.0071914480067789555, 0.31599152088165283, -0.18420657515525818, -0.012216135859489441, -0.07884320616722107, -0.02383635751903057, 0.014262368902564049, 0.3209599256515503, -0.2644108533859253, 0.019543610513210297, 0.002531068166717887, -0.07732595503330231, 0.060292840003967285, 0.049434930086135864, 0.16451944410800934, -0.08299075812101364, 1.1609477996826172, -0.008892294950783253, -0.0013542174128815532, 0.04857206344604492, -0.08973787724971771, -0.03658783808350563, -0.056529588997364044, 0.28173714876174927, -0.2081659883260727, -0.622232973575592, 0.001701759989373386]} +{"t": 17.2708, "q": [-0.13834460079669952, 0.009072642773389816, -0.007204839959740639, 0.31599152088165283, -0.18420657515525818, -0.012216135859489441, -0.078877292573452, -0.02383635751903057, 0.014182017184793949, 0.32084912061691284, -0.26442763209342957, 0.019543763250112534, 0.0027453387156128883, -0.07725773751735687, 0.06035652011632919, 0.04917127639055252, 0.1645554006099701, -0.08299075812101364, 1.1609598398208618, -0.008856342174112797, -0.001306280493736267, 0.04857206344604492, -0.08899485319852829, -0.035473305732011795, -0.05632586032152176, 0.2835707366466522, -0.20814202725887299, -0.6221011281013489, 0.001749696908518672]} +{"t": 17.2875, "q": [-0.13834460079669952, 0.009047077968716621, -0.007231623865664005, 0.31598299741744995, -0.1842023730278015, -0.012223215773701668, -0.07886876910924911, -0.023844879120588303, 0.01412845030426979, 0.3207383453845978, -0.26441922783851624, 0.019543670117855072, 0.0029194331727921963, -0.07709187269210815, 0.06046678498387337, 0.04906341806054115, 0.1645793616771698, -0.08300274610519409, 1.1609598398208618, -0.008868326433002949, -0.001318264752626419, 0.04857206344604492, -0.08855143934488297, -0.03465837985277176, -0.056265939027071, 0.2849249541759491, -0.20811805129051208, -0.6220651865005493, 0.0017736653098836541]} +{"t": 17.3043, "q": [-0.13834460079669952, 0.009072642773389816, -0.007231623865664005, 0.31599152088165283, -0.1841980665922165, -0.012216097675263882, -0.07892842590808868, -0.023853400722146034, 0.014141841791570187, 0.3206360638141632, -0.2644233703613281, 0.019536495208740234, 0.0029730007518082857, -0.07697105407714844, 0.060556262731552124, 0.04909937083721161, 0.1645554006099701, -0.08301472663879395, 1.1610198020935059, -0.008916263468563557, -0.001318264752626419, 0.04856007918715477, -0.08855143934488297, -0.034155040979385376, -0.05627792328596115, 0.2857039272785187, -0.20811805129051208, -0.6220172643661499, 0.001725728390738368]} +{"t": 17.3211, "q": [-0.13834460079669952, 0.009055599570274353, -0.007231623865664005, 0.3160000443458557, -0.18421077728271484, -0.012209046632051468, -0.07894547283649445, -0.023904534056782722, 0.014155233278870583, 0.3205508589744568, -0.26442763209342957, 0.019543763250112534, 0.003093527862802148, -0.07685815542936325, 0.060622163116931915, 0.04909937083721161, 0.16456738114356995, -0.08301472663879395, 1.161091685295105, -0.0088803106918931, -0.001330249011516571, 0.04857206344604492, -0.08853945881128311, -0.03380750119686127, -0.05621800199151039, 0.28625521063804626, -0.2081659883260727, -0.6219933032989502, 0.0017137442482635379]} +{"t": 17.3378, "q": [-0.13836164772510529, 0.009072642773389816, -0.007231623865664005, 0.31599152088165283, -0.1842023730278015, -0.012223215773701668, -0.07898808270692825, -0.023913055658340454, 0.014088273979723454, 0.320465624332428, -0.264431893825531, 0.01955101266503334, 0.0031604873947799206, -0.07682780921459198, 0.060651496052742004, 0.04906341806054115, 0.1645554006099701, -0.08299075812101364, 1.1610677242279053, -0.008868326433002949, -0.0013542174128815532, 0.04857206344604492, -0.08856342732906342, -0.033603768795728683, -0.05621800199151039, 0.28705814480781555, -0.20814202725887299, -0.6219933032989502, 0.0017137442482635379]} +{"t": 17.3546, "q": [-0.13837869465351105, 0.00903855450451374, -0.007231623865664005, 0.3159574270248413, -0.18421077728271484, -0.012209046632051468, -0.07897103577852249, -0.023930100724101067, 0.014088273979723454, 0.32038041949272156, -0.26441922783851624, 0.019543670117855072, 0.00321405497379601, -0.07679030299186707, 0.060667239129543304, 0.049075402319431305, 0.16451944410800934, -0.08299075812101364, 1.1610677242279053, -0.008868326433002949, -0.001330249011516571, 0.04857206344604492, -0.08862334489822388, -0.03347194194793701, -0.05620601773262024, 0.28825655579566956, -0.2081659883260727, -0.6219333410263062, 0.001701759989373386]} +{"t": 17.3714, "q": [-0.13838721811771393, 0.009055599570274353, -0.007271799258887768, 0.3159233331680298, -0.18420657515525818, -0.012216135859489441, -0.07897103577852249, -0.023930100724101067, 0.014061490073800087, 0.3203122317790985, -0.26442751288414, 0.019529322162270546, 0.00321405497379601, -0.07679765671491623, 0.06067151203751564, 0.04906341806054115, 0.1645314246416092, -0.08301472663879395, 1.1610556840896606, -0.008868326433002949, -0.001342233270406723, 0.04857206344604492, -0.08877914398908615, -0.03344797343015671, -0.05617006495594978, 0.28957483172416687, -0.2081899642944336, -0.6219093799591064, 0.001725728390738368]} +{"t": 17.3882, "q": [-0.13837017118930817, 0.009081166237592697, -0.007298583164811134, 0.31588923931121826, -0.18420226871967316, -0.01220901682972908, -0.07897103577852249, -0.023921577259898186, 0.014021314680576324, 0.32030370831489563, -0.2644233703613281, 0.019536495208740234, 0.0032810145057737827, -0.07681291550397873, 0.0606522373855114, 0.049051433801651, 0.16451944410800934, -0.08303869515657425, 1.16110360622406, -0.008916263468563557, -0.0013542174128815532, 0.04856007918715477, -0.08893493562936783, -0.0334000363945961, -0.056265939027071, 0.2910129427909851, -0.2082379013299942, -0.6218734383583069, 0.001725728390738368]} +{"t": 17.4051, "q": [-0.13837017118930817, 0.009072642773389816, -0.007298583164811134, 0.31593185663223267, -0.18421940505504608, -0.012223283760249615, -0.07897103577852249, -0.023921577259898186, 0.013994530774652958, 0.32028666138648987, -0.264431893825531, 0.01955101266503334, 0.003334582084789872, -0.0768127292394638, 0.06066151708364487, 0.0490274652838707, 0.16449548304080963, -0.08301472663879395, 1.1611275672912598, -0.008868326433002949, -0.001342233270406723, 0.04857206344604492, -0.08903080970048904, -0.033435989171266556, -0.056361813098192215, 0.2921154797077179, -0.2082379013299942, -0.6218255162239075, 0.0017137442482635379]} +{"t": 17.422, "q": [-0.13838721811771393, 0.009081166237592697, -0.007325367070734501, 0.3159233331680298, -0.18421509861946106, -0.012216164730489254, -0.07898808270692825, -0.023913055658340454, 0.013967746868729591, 0.320278137922287, -0.26442763209342957, 0.019543763250112534, 0.003321190131828189, -0.07679030299186707, 0.060667239129543304, 0.04903944954276085, 0.16448348760604858, -0.08301472663879395, 1.1611156463623047, -0.008868326433002949, -0.0013542174128815532, 0.04857206344604492, -0.0890667587518692, -0.03351987898349762, -0.05633784458041191, 0.2929304242134094, -0.20838171243667603, -0.6218015551567078, 0.0017137442482635379]} +{"t": 17.4387, "q": [-0.13838721811771393, 0.009055599570274353, -0.007338759023696184, 0.31589776277542114, -0.18421077728271484, -0.012209046632051468, -0.07906477898359299, -0.023921577259898186, 0.013927571475505829, 0.3201673626899719, -0.26442751288414, 0.019529322162270546, 0.003321190131828189, -0.07679030299186707, 0.060667239129543304, 0.0490274652838707, 0.16449548304080963, -0.0830267146229744, 1.1611156463623047, -0.008916263468563557, -0.0013542174128815532, 0.04857206344604492, -0.08903080970048904, -0.033555831760168076, -0.05633784458041191, 0.29360154271125793, -0.20850154757499695, -0.6217655539512634, 0.001701759989373386]} +{"t": 17.4554, "q": [-0.13837017118930817, 0.009047077968716621, -0.007325367070734501, 0.31593185663223267, -0.18419817090034485, -0.01223029661923647, -0.07904773205518723, -0.023913055658340454, 0.013940962962806225, 0.3201673626899719, -0.2644233703613281, 0.019536495208740234, 0.003240838646888733, -0.07679784297943115, 0.060662247240543365, 0.049051433801651, 0.16445952653884888, -0.08301472663879395, 1.1611156463623047, -0.008868326433002949, -0.001342233270406723, 0.04857206344604492, -0.0890427902340889, -0.03362773731350899, -0.05637379735708237, 0.2941168546676636, -0.20850154757499695, -0.6217296123504639, 0.0017137442482635379]} +{"t": 17.4722, "q": [-0.13837017118930817, 0.009047077968716621, -0.007325367070734501, 0.3159233331680298, -0.18420226871967316, -0.01220901682972908, -0.0790562555193901, -0.023904534056782722, 0.013914179988205433, 0.3201758861541748, -0.26442751288414, 0.019529322162270546, 0.003254230599850416, -0.07679030299186707, 0.060667239129543304, 0.04903944954276085, 0.16451944410800934, -0.08300274610519409, 1.1611396074295044, -0.008892294950783253, -0.001342233270406723, 0.048584047704935074, -0.08903080970048904, -0.033735595643520355, -0.05637379735708237, 0.294452428817749, -0.20864535868167877, -0.621717631816864, 0.0017137442482635379]} +{"t": 17.4889, "q": [-0.13836164772510529, 0.009047077968716621, -0.00735215051099658, 0.31593185663223267, -0.18420226871967316, -0.01220901682972908, -0.07904773205518723, -0.02387896738946438, 0.013900787569582462, 0.32015883922576904, -0.26443177461624146, 0.019536590203642845, 0.0032676225528120995, -0.07679030299186707, 0.060667239129543304, 0.04900349676609039, 0.16447150707244873, -0.0830267146229744, 1.1611396074295044, -0.008868326433002949, -0.001330249011516571, 0.04854809492826462, -0.08897088468074799, -0.033915355801582336, -0.05631387606263161, 0.29484790563583374, -0.2087652087211609, -0.6216936707496643, 0.0017137442482635379]} +{"t": 17.5056, "q": [-0.13836164772510529, 0.009055599570274353, -0.00735215051099658, 0.3158722221851349, -0.18420657515525818, -0.012216135859489441, -0.07904773205518723, -0.023844879120588303, 0.0138606121763587, 0.32015883922576904, -0.2644360363483429, 0.019543839618563652, 0.003254230599850416, -0.07679030299186707, 0.060667239129543304, 0.04899151250720024, 0.16450746357440948, -0.08303869515657425, 1.1611275672912598, -0.008892294950783253, -0.0013542174128815532, 0.04857206344604492, -0.08887501806020737, -0.03413107246160507, -0.056301891803741455, 0.2954351305961609, -0.2088850438594818, -0.6216816902160645, 0.001689775730483234]} +{"t": 17.5223, "q": [-0.13837869465351105, 0.009072642773389816, -0.007378934416919947, 0.3159233331680298, -0.18419384956359863, -0.012223177589476109, -0.07903069257736206, -0.023853400722146034, 0.013833828270435333, 0.32015883922576904, -0.2644149959087372, 0.019536418840289116, 0.003240838646888733, -0.0767974704504013, 0.06068077310919762, 0.04896754398941994, 0.16449548304080963, -0.0830267146229744, 1.1611275672912598, -0.008856342174112797, -0.0013662016717717052, 0.04857206344604492, -0.0887671560049057, -0.034334804862737656, -0.0562899075448513, 0.2961901128292084, -0.2091846466064453, -0.6216457486152649, 0.001689775730483234]} diff --git a/Data/G1/think_3.jsonl b/Data/G1/think_3.jsonl new file mode 100644 index 0000000..e3b6602 --- /dev/null +++ b/Data/G1/think_3.jsonl @@ -0,0 +1,694 @@ +{"meta": {"hz": 60.0, "motors": 29}} +{"t": 0.0, "q": [-0.15487751364707947, -0.028109345585107803, 0.03880971297621727, 0.2965696156024933, -0.14612995088100433, 0.019634461030364037, -0.1669703871011734, 0.031156854704022408, 0.01832011342048645, 0.30487868189811707, -0.1585208922624588, -0.027736589312553406, 0.009093097411096096, 0.0026143209543079138, 0.0027093191165477037, 0.2567620277404785, 0.28636306524276733, -0.08287091553211212, 0.8242630362510681, 0.0009587380336597562, 0.009311743080615997, -0.00589623861014843, 0.25573137402534485, -0.29706498980522156, 0.08426108956336975, 0.7848349213600159, -0.0049494849517941475, 0.010881676338613033, 0.0031997880432754755]} +{"t": 0.0167, "q": [-0.15479229390621185, -0.02810082398355007, 0.0387963205575943, 0.29657813906669617, -0.14612989127635956, 0.01962040737271309, -0.1669277846813202, 0.031148331239819527, 0.01830672100186348, 0.3048531115055084, -0.15851229429244995, -0.027722466737031937, 0.008423502556979656, 0.003104961011558771, 0.0029933208134025335, 0.2565223276615143, 0.2840980291366577, -0.08323044329881668, 0.8258808851242065, 0.0009946906939148903, 0.00977912824600935, -0.006135923322290182, 0.255719393491745, -0.2955310046672821, 0.08415322750806808, 0.7873036861419678, -0.005141232628375292, 0.011289140209555626, 0.003367567202076316]} +{"t": 0.0335, "q": [-0.1540849506855011, -0.028109345585107803, 0.03878292813897133, 0.29673153162002563, -0.14591576159000397, 0.019633304327726364, -0.16604147851467133, 0.031156854704022408, 0.018212977796792984, 0.30556896328926086, -0.15831905603408813, -0.027460947632789612, 0.007901218719780445, 0.0034740990959107876, 0.0035279046278446913, 0.2561388313770294, 0.2823723256587982, -0.08327838033437729, 0.8276066184043884, 0.0009707222343422472, 0.010749850422143936, -0.00612393906340003, 0.25488048791885376, -0.2937813103199005, 0.08410529047250748, 0.7906592488288879, -0.005273059010505676, 0.01170858833938837, 0.0033435989171266556]} +{"t": 0.0502, "q": [-0.15383781492710114, -0.028109345585107803, 0.03876953944563866, 0.29676562547683716, -0.14592432975769043, 0.019633358344435692, -0.16514666378498077, 0.031148331239819527, 0.018199585378170013, 0.3055945336818695, -0.15834853053092957, -0.027397679165005684, 0.007593204732984304, 0.003758529666811228, 0.004259287379682064, 0.25607892870903015, 0.27972379326820374, -0.08405735343694687, 0.8284695148468018, 0.0009946906939148903, 0.01125318743288517, -0.006243781186640263, 0.2543651759624481, -0.2912885844707489, 0.08426108956336975, 0.7924928665161133, -0.005320996046066284, 0.011780492961406708, 0.003463441040366888]} +{"t": 0.0669, "q": [-0.15359918773174286, -0.02809230238199234, 0.03866240382194519, 0.2967911958694458, -0.14589016139507294, 0.019661247730255127, -0.16473759710788727, 0.031148331239819527, 0.01814601942896843, 0.3054155707359314, -0.15831060707569122, -0.02747500315308571, 0.0074191102758049965, 0.003909105435013771, 0.004374635871499777, 0.25610288977622986, 0.2757810056209564, -0.08423712104558945, 0.8292365074157715, 0.0009946906939148903, 0.011732556857168674, -0.006255765445530415, 0.25432923436164856, -0.28818467259407043, 0.08444084972143173, 0.7939189672470093, -0.005344964563846588, 0.011888351291418076, 0.0035353463608771563]} +{"t": 0.0836, "q": [-0.15283221006393433, -0.02810082398355007, 0.0384749174118042, 0.29695311188697815, -0.1458817720413208, 0.019703328609466553, -0.1637575477361679, 0.031148331239819527, 0.018012098968029022, 0.3054667115211487, -0.1583063006401062, -0.027467941865324974, 0.0072584073059260845, 0.004057373385876417, 0.005202621221542358, 0.25605496764183044, 0.2717183530330658, -0.08495616912841797, 0.8297997117042542, 0.0009946906939148903, 0.012116051279008389, -0.0062677497044205666, 0.25443708896636963, -0.28475716710090637, 0.08492022007703781, 0.7948537468910217, -0.005344964563846588, 0.01197224110364914, 0.0036312201991677284]} +{"t": 0.1005, "q": [-0.15245722234249115, -0.02810082398355007, 0.03828743100166321, 0.29703834652900696, -0.1458943635225296, 0.01964021660387516, -0.16369789838790894, 0.031139809638261795, 0.01781122200191021, 0.30552634596824646, -0.15830232203006744, -0.02751723863184452, 0.007245015352964401, 0.004003598820418119, 0.0056213270872831345, 0.2561987638473511, 0.2682788670063019, -0.0854714959859848, 0.8303390145301819, 0.0009827064350247383, 0.012439625337719917, -0.0063276709988713264, 0.2544970214366913, -0.281305730342865, 0.08555538207292557, 0.7954649329185486, -0.005344964563846588, 0.012056130915880203, 0.0036791572347283363]} +{"t": 0.1172, "q": [-0.15244019031524658, -0.02810082398355007, 0.038207076489925385, 0.2975752353668213, -0.1459716409444809, 0.0196827482432127, -0.16368085145950317, 0.031148331239819527, 0.017744261771440506, 0.30551785230636597, -0.15840086340904236, -0.027609247714281082, 0.0071914480067789555, 0.003950593993067741, 0.005760870408266783, 0.2562946379184723, 0.2650071680545807, -0.08569919317960739, 0.8309621810913086, 0.0009946906939148903, 0.01284708920866251, -0.0063276709988713264, 0.2544490694999695, -0.2782617211341858, 0.08683769404888153, 0.7956926226615906, -0.005368933081626892, 0.012068115174770355, 0.0037390782963484526]} +{"t": 0.1339, "q": [-0.15254245698451996, -0.02810082398355007, 0.03819368779659271, 0.29777976870536804, -0.1460144817829132, 0.019682977348566055, -0.1637575477361679, 0.031139809638261795, 0.01778443716466427, 0.3055519163608551, -0.158430814743042, -0.027630524709820747, 0.0071914480067789555, 0.004070662427693605, 0.005962662864476442, 0.2562946379184723, 0.26222681999206543, -0.08580705523490906, 0.8314176201820374, 0.0010066749528050423, 0.01318264752626419, -0.006363623775541782, 0.2544970214366913, -0.2760925889015198, 0.08801215142011642, 0.7961240410804749, -0.005392901133745909, 0.012104067951440811, 0.0038229678757488728]} +{"t": 0.1507, "q": [-0.15255096554756165, -0.028109345585107803, 0.03812672570347786, 0.2977456748485565, -0.146010160446167, 0.019675936549901962, -0.16374903917312622, 0.031148331239819527, 0.017757654190063477, 0.30556896328926086, -0.1584222912788391, -0.027630478143692017, 0.0071914480067789555, 0.00424375431612134, 0.006005660630762577, 0.256318598985672, 0.26022547483444214, -0.08597483485937119, 0.8316333293914795, 0.0009946906939148903, 0.01344630029052496, -0.006375608034431934, 0.25455692410469055, -0.27467843890190125, 0.08880311250686646, 0.7962439060211182, -0.005332980304956436, 0.012163988314568996, 0.0038469363935291767]} +{"t": 0.1674, "q": [-0.15255948901176453, -0.028117869049310684, 0.038046374917030334, 0.2977882921695709, -0.14600160717964172, 0.01967588998377323, -0.16374051570892334, 0.031148331239819527, 0.017771044746041298, 0.30566272139549255, -0.1584179848432541, -0.027623416855931282, 0.007218231912702322, 0.0044015636667609215, 0.006115952972322702, 0.25633057951927185, 0.25863155722618103, -0.08614261448383331, 0.8318011164665222, 0.0009827064350247383, 0.013602095656096935, -0.006363623775541782, 0.25455692410469055, -0.2736597955226898, 0.08937834948301315, 0.7964476346969604, -0.00535694882273674, 0.012152004055678844, 0.003882888937368989]} +{"t": 0.1841, "q": [-0.15255096554756165, -0.02810082398355007, 0.038046374917030334, 0.29782235622406006, -0.14599722623825073, 0.019654802978038788, -0.1637149453163147, 0.031148331239819527, 0.017717478796839714, 0.30567124485969543, -0.1584222912788391, -0.027630478143692017, 0.007204839959740639, 0.004499493166804314, 0.006111007649451494, 0.2563905119895935, 0.25757694244384766, -0.08614261448383331, 0.8320048451423645, 0.0009946906939148903, 0.013805827125906944, -0.006363623775541782, 0.25455692410469055, -0.27297669649124146, 0.08983375132083893, 0.7965674996376038, -0.005332980304956436, 0.012175972573459148, 0.003870904678478837]} +{"t": 0.2008, "q": [-0.15255096554756165, -0.028109345585107803, 0.038046374917030334, 0.29786497354507446, -0.1459972858428955, 0.019668839871883392, -0.1636638045310974, 0.031148331239819527, 0.017717478796839714, 0.305747926235199, -0.15842236578464508, -0.027644572779536247, 0.007245015352964401, 0.004514650907367468, 0.006082155276089907, 0.25640249252319336, 0.2570855915546417, -0.08610665798187256, 0.8322085738182068, 0.0009827064350247383, 0.013997575268149376, -0.006363623775541782, 0.2545928955078125, -0.27255722880363464, 0.09019327908754349, 0.7966154217720032, -0.005380917340517044, 0.012175972573459148, 0.003882888937368989]} +{"t": 0.2176, "q": [-0.1524742692708969, -0.02809230238199234, 0.03801959007978439, 0.29792463779449463, -0.14600154757499695, 0.01966184563934803, -0.16362972557544708, 0.031148331239819527, 0.017717478796839714, 0.3057905435562134, -0.1584138423204422, -0.027644533663988113, 0.007245015352964401, 0.004552515223622322, 0.006019634660333395, 0.25645044445991516, 0.25688186287879944, -0.08610665798187256, 0.8323284387588501, 0.0010066749528050423, 0.014117416925728321, -0.006375608034431934, 0.25455692410469055, -0.2723175585269928, 0.09033709019422531, 0.7966633439064026, -0.005392901133745909, 0.012199941091239452, 0.003894873196259141]} +{"t": 0.2343, "q": [-0.15240609645843506, -0.02810082398355007, 0.038059767335653305, 0.29800131916999817, -0.145980104804039, 0.019654711708426476, -0.16351893544197083, 0.031139809638261795, 0.017717478796839714, 0.3058757781982422, -0.15840531885623932, -0.02764449641108513, 0.007218231912702322, 0.004560187924653292, 0.005976377986371517, 0.256462424993515, 0.25677400827407837, -0.0860946774482727, 0.8326160311698914, 0.0009946906939148903, 0.014249243773519993, -0.006363623775541782, 0.2545928955078125, -0.2722216844558716, 0.09039700776338577, 0.7966992855072021, -0.005392901133745909, 0.012223909609019756, 0.003882888937368989]} +{"t": 0.251, "q": [-0.15238052606582642, -0.02810082398355007, 0.038032982498407364, 0.2981206476688385, -0.14597584307193756, 0.019661715254187584, -0.16345076262950897, 0.031139809638261795, 0.017704086378216743, 0.30594393610954285, -0.15840531885623932, -0.02764449641108513, 0.007218231912702322, 0.004545093048363924, 0.0059860097244381905, 0.25647440552711487, 0.25672608613967896, -0.0860707089304924, 0.832939624786377, 0.0009946906939148903, 0.014393054880201817, -0.006387591827660799, 0.25458088517189026, -0.2721737325191498, 0.09043296426534653, 0.7967233061790466, -0.005344964563846588, 0.012235893867909908, 0.003906857222318649]} +{"t": 0.2678, "q": [-0.15235497057437897, -0.02810082398355007, 0.038046374917030334, 0.29814621806144714, -0.14598014950752258, 0.019668757915496826, -0.16336554288864136, 0.031148331239819527, 0.017744261771440506, 0.3059609830379486, -0.15839248895645142, -0.02763739787042141, 0.007178056053817272, 0.0045677670277655125, 0.005961951799690723, 0.2564863860607147, 0.2567979693412781, -0.0860467404127121, 0.8331433534622192, 0.0010186590952798724, 0.014584802091121674, -0.006387591827660799, 0.25455692410469055, -0.2721617519855499, 0.09045693278312683, 0.7967472672462463, -0.005380917340517044, 0.012271846644580364, 0.003894873196259141]} +{"t": 0.2845, "q": [-0.1523379236459732, -0.028109345585107803, 0.038046374917030334, 0.2981717884540558, -0.14598014950752258, 0.019668757915496826, -0.1633058786392212, 0.031148331239819527, 0.017717478796839714, 0.3059524595737457, -0.15839679539203644, -0.027644459158182144, 0.007178056053817272, 0.004560219589620829, 0.00596676766872406, 0.2564863860607147, 0.2567859888076782, -0.0860227718949318, 0.8334788680076599, 0.0009946906939148903, 0.014728613197803497, -0.006375608034431934, 0.25462883710861206, -0.2721497714519501, 0.09048090130090714, 0.7967951893806458, -0.005344964563846588, 0.012283830903470516, 0.003918841481208801]} +{"t": 0.3012, "q": [-0.15232940018177032, -0.02810082398355007, 0.038059767335653305, 0.2982569932937622, -0.14597584307193756, 0.019661715254187584, -0.1632121354341507, 0.031156854704022408, 0.017744261771440506, 0.3059695065021515, -0.15839241445064545, -0.02762330323457718, 0.007164664100855589, 0.0045526716858148575, 0.005971583537757397, 0.25651034712791443, 0.25682196021080017, -0.08598681539297104, 0.8336706161499023, 0.0010186590952798724, 0.01489639189094305, -0.006387591827660799, 0.2546887695789337, -0.2721497714519501, 0.09049288183450699, 0.7968071699142456, -0.005368933081626892, 0.012295815162360668, 0.003930825740098953]} +{"t": 0.318, "q": [-0.1523379236459732, -0.028109345585107803, 0.038059767335653305, 0.29829108715057373, -0.1459716409444809, 0.0196827482432127, -0.16320361196994781, 0.031148331239819527, 0.017757654190063477, 0.3059695065021515, -0.1583881825208664, -0.02763032726943493, 0.007137880194932222, 0.00457522040233016, 0.005985966417938471, 0.2564863860607147, 0.2567859888076782, -0.08601078391075134, 0.8339582681655884, 0.0009946906939148903, 0.015052187256515026, -0.006387591827660799, 0.2547726333141327, -0.2721497714519501, 0.09051685035228729, 0.796855092048645, -0.005368933081626892, 0.012295815162360668, 0.003882888937368989]} +{"t": 0.3348, "q": [-0.15236347913742065, -0.02810082398355007, 0.038059767335653305, 0.298342227935791, -0.14598877727985382, 0.019682839512825012, -0.1632121354341507, 0.031139809638261795, 0.017771044746041298, 0.3059695065021515, -0.1583838164806366, -0.02760918065905571, 0.007124488707631826, 0.004545093048363924, 0.0059860097244381905, 0.2564983665943146, 0.2567979693412781, -0.08597483485937119, 0.8341979384422302, 0.0009827064350247383, 0.01521996594965458, -0.006399576086550951, 0.25478461384773254, -0.2721497714519501, 0.0905408188700676, 0.7968790531158447, -0.00535694882273674, 0.01230779942125082, 0.003918841481208801]} +{"t": 0.3515, "q": [-0.15236347913742065, -0.028109345585107803, 0.038086552172899246, 0.29833370447158813, -0.14597594738006592, 0.019689789041876793, -0.16322065889835358, 0.031148331239819527, 0.01778443716466427, 0.3059524595737457, -0.15839241445064545, -0.02762330323457718, 0.007084312848746777, 0.004537513945251703, 0.006000435911118984, 0.2565223276615143, 0.2567979693412781, -0.08599880337715149, 0.8344256281852722, 0.0009827064350247383, 0.01543568167835474, -0.006399576086550951, 0.2547966241836548, -0.2721497714519501, 0.09055280685424805, 0.7968910336494446, -0.005392901133745909, 0.012319783680140972, 0.003942809998989105]} +{"t": 0.3682, "q": [-0.15238052606582642, -0.028117869049310684, 0.038086552172899246, 0.29833370447158813, -0.14598026871681213, 0.019696829840540886, -0.1632121354341507, 0.031148331239819527, 0.01779782958328724, 0.3059524595737457, -0.1583838164806366, -0.02760918065905571, 0.007084312848746777, 0.004552546422928572, 0.006010024342685938, 0.2565223276615143, 0.2567979693412781, -0.08598681539297104, 0.8347492218017578, 0.0009827064350247383, 0.015603461302816868, -0.006399576086550951, 0.2548445463180542, -0.27212581038475037, 0.09061272442340851, 0.7969270348548889, -0.005380917340517044, 0.012343752197921276, 0.003918841481208801]} +{"t": 0.3849, "q": [-0.1523890495300293, -0.028109345585107803, 0.038086552172899246, 0.29833370447158813, -0.14598457515239716, 0.019703879952430725, -0.16322065889835358, 0.031148331239819527, 0.01778443716466427, 0.3059609830379486, -0.15838810801506042, -0.027616241946816444, 0.007124488707631826, 0.00457506300881505, 0.006034017540514469, 0.25658226013183594, 0.2567859888076782, -0.08597483485937119, 0.8348091244697571, 0.0009946906939148903, 0.015795208513736725, -0.006387591827660799, 0.2547726333141327, -0.27212581038475037, 0.09061272442340851, 0.7969869375228882, -0.005392901133745909, 0.012319783680140972, 0.003906857222318649]} +{"t": 0.4017, "q": [-0.1523890495300293, -0.028109345585107803, 0.038059767335653305, 0.2983081340789795, -0.14598877727985382, 0.019682839512825012, -0.16322065889835358, 0.031139809638261795, 0.01779782958328724, 0.3059268891811371, -0.15838803350925446, -0.02760215662419796, 0.00709770480170846, 0.004575094673782587, 0.006024407222867012, 0.25658226013183594, 0.2567859888076782, -0.08598681539297104, 0.8349170088768005, 0.0009827064350247383, 0.015986956655979156, -0.006387591827660799, 0.25473669171333313, -0.2721138298511505, 0.09063669294118881, 0.7970228791236877, -0.005368933081626892, 0.012343752197921276, 0.003930825740098953]} +{"t": 0.4184, "q": [-0.15238052606582642, -0.028109345585107803, 0.038073159754276276, 0.2983081340789795, -0.14598457515239716, 0.019703879952430725, -0.16322065889835358, 0.031148331239819527, 0.017771044746041298, 0.3059183657169342, -0.15839655697345734, -0.0276021845638752, 0.007111096754670143, 0.004537419881671667, 0.006029266398400068, 0.25660622119903564, 0.2567859888076782, -0.08597483485937119, 0.8349409699440002, 0.0009946906939148903, 0.016094814985990524, -0.006387591827660799, 0.2548205852508545, -0.2721138298511505, 0.09067264944314957, 0.7970348596572876, -0.005380917340517044, 0.012343752197921276, 0.003942809998989105]} +{"t": 0.4351, "q": [-0.15238052606582642, -0.02808378078043461, 0.038073159754276276, 0.29829108715057373, -0.14598026871681213, 0.019696829840540886, -0.1632547527551651, 0.031156854704022408, 0.017730869352817535, 0.3059268891811371, -0.15838810801506042, -0.027616241946816444, 0.007137880194932222, 0.00456742150709033, 0.006067664362490177, 0.2565223276615143, 0.25680994987487793, -0.08601078391075134, 0.8349769115447998, 0.0009946906939148903, 0.016238626092672348, -0.006399576086550951, 0.2547726333141327, -0.2721138298511505, 0.09067264944314957, 0.7970708012580872, -0.005392901133745909, 0.01236772071570158, 0.003966778516769409]} +{"t": 0.4518, "q": [-0.1523890495300293, -0.02810082398355007, 0.038046374917030334, 0.29829108715057373, -0.14598457515239716, 0.019703879952430725, -0.1632547527551651, 0.031139809638261795, 0.017744261771440506, 0.3059098422527313, -0.15839241445064545, -0.02762330323457718, 0.007124488707631826, 0.004574937745928764, 0.006072458811104298, 0.25640249252319336, 0.2567979693412781, -0.08599880337715149, 0.8349529504776001, 0.0009946906939148903, 0.016334498301148415, -0.006387591827660799, 0.2547966241836548, -0.27212581038475037, 0.09069661796092987, 0.7970947623252869, -0.005368933081626892, 0.012403673492372036, 0.003930825740098953]} +{"t": 0.4686, "q": [-0.15238052606582642, -0.02810082398355007, 0.038032982498407364, 0.29829108715057373, -0.14599308371543884, 0.01968988962471485, -0.16324622929096222, 0.031139809638261795, 0.017704086378216743, 0.3059098422527313, -0.15839655697345734, -0.0276021845638752, 0.007044136989861727, 0.00455981120467186, 0.006091700866818428, 0.25635457038879395, 0.25677400827407837, -0.08598681539297104, 0.8349529504776001, 0.0010186590952798724, 0.016382435336709023, -0.006399576086550951, 0.2548445463180542, -0.2721138298511505, 0.09069661796092987, 0.7971307635307312, -0.005332980304956436, 0.012379704974591732, 0.003882888937368989]} +{"t": 0.4853, "q": [-0.15235497057437897, -0.028109345585107803, 0.03800620138645172, 0.2982655167579651, -0.14597594738006592, 0.019689789041876793, -0.16324622929096222, 0.031139809638261795, 0.017704086378216743, 0.3059098422527313, -0.1583966314792633, -0.02761627919971943, 0.00705752894282341, 0.004574874881654978, 0.006091678980737925, 0.2562946379184723, 0.25677400827407837, -0.08595086634159088, 0.8349529504776001, 0.0009827064350247383, 0.01647830940783024, -0.006399576086550951, 0.25485652685165405, -0.2721138298511505, 0.09069661796092987, 0.7971667051315308, -0.005392901133745909, 0.012343752197921276, 0.003906857222318649]} +{"t": 0.5021, "q": [-0.15235497057437897, -0.028109345585107803, 0.03801959007978439, 0.2982655167579651, -0.14597594738006592, 0.019689789041876793, -0.16326327621936798, 0.031148331239819527, 0.017690693959593773, 0.3059098422527313, -0.15840086340904236, -0.027609247714281082, 0.007070920895785093, 0.004589907359331846, 0.0061012678779661655, 0.256318598985672, 0.2567859888076782, -0.08599880337715149, 0.8349769115447998, 0.0009946906939148903, 0.01655021496117115, -0.006387591827660799, 0.2548445463180542, -0.2721138298511505, 0.09070859849452972, 0.7971906661987305, -0.00535694882273674, 0.012391689233481884, 0.003930825740098953]} +{"t": 0.5188, "q": [-0.1523890495300293, -0.028109345585107803, 0.03800620138645172, 0.29827404022216797, -0.14599308371543884, 0.01968988962471485, -0.16327179968357086, 0.031148331239819527, 0.017677301540970802, 0.30589282512664795, -0.15840086340904236, -0.027609247714281082, 0.007084312848746777, 0.0045974235981702805, 0.006106062326580286, 0.256318598985672, 0.2567859888076782, -0.0860227718949318, 0.8349769115447998, 0.0009946906939148903, 0.016598151996731758, -0.006399576086550951, 0.25485652685165405, -0.2721138298511505, 0.09073256701231003, 0.7971906661987305, -0.00535694882273674, 0.012415657751262188, 0.003930825740098953]} +{"t": 0.5357, "q": [-0.15238052606582642, -0.02808378078043461, 0.03800620138645172, 0.2982655167579651, -0.1459716409444809, 0.0196827482432127, -0.1632547527551651, 0.031148331239819527, 0.017677301540970802, 0.3059268891811371, -0.1583966314792633, -0.02761627919971943, 0.0070307450369000435, 0.0045823282562196255, 0.006115694064646959, 0.25633057951927185, 0.2567859888076782, -0.08601078391075134, 0.8349529504776001, 0.0009707222343422472, 0.01667005755007267, -0.006411560345441103, 0.2548205852508545, -0.2721138298511505, 0.09073256701231003, 0.7972146272659302, -0.005344964563846588, 0.012391689233481884, 0.003942809998989105]} +{"t": 0.5524, "q": [-0.15239757299423218, -0.028109345585107803, 0.03797941654920578, 0.29827404022216797, -0.14598877727985382, 0.019682839512825012, -0.16326327621936798, 0.031148331239819527, 0.017690693959593773, 0.30590131878852844, -0.1583966314792633, -0.02761627919971943, 0.006990569643676281, 0.004597360733896494, 0.0061252829618752, 0.256318598985672, 0.2567859888076782, -0.08601078391075134, 0.8349769115447998, 0.0010306433541700244, 0.016717994585633278, -0.006399576086550951, 0.254748672246933, -0.27212581038475037, 0.09073256701231003, 0.7972146272659302, -0.005332980304956436, 0.012379704974591732, 0.003894873196259141]} +{"t": 0.5691, "q": [-0.1523890495300293, -0.028109345585107803, 0.03800620138645172, 0.2982655167579651, -0.14598457515239716, 0.019703879952430725, -0.1632547527551651, 0.031139809638261795, 0.01766391098499298, 0.3059098422527313, -0.15838810801506042, -0.027616241946816444, 0.007003961596637964, 0.004604908637702465, 0.006120467092841864, 0.2562946379184723, 0.25677400827407837, -0.0860227718949318, 0.8349769115447998, 0.0009946906939148903, 0.016801884397864342, -0.006387591827660799, 0.254520982503891, -0.2721138298511505, 0.09074455499649048, 0.7972146272659302, -0.005344964563846588, 0.012391689233481884, 0.003906857222318649]} +{"t": 0.5859, "q": [-0.15241461992263794, -0.028109345585107803, 0.03799280896782875, 0.2982655167579651, -0.14598457515239716, 0.019703879952430725, -0.1632547527551651, 0.031139809638261795, 0.017690693959593773, 0.30589282512664795, -0.1583966314792633, -0.02761627919971943, 0.007070920895785093, 0.0045823282562196255, 0.006115694064646959, 0.25625869631767273, 0.25677400827407837, -0.08599880337715149, 0.8349769115447998, 0.0009946906939148903, 0.016813868656754494, -0.006387591827660799, 0.254377156496048, -0.27212581038475037, 0.09073256701231003, 0.7972146272659302, -0.005380917340517044, 0.012391689233481884, 0.003942809998989105]} +{"t": 0.6026, "q": [-0.15240609645843506, -0.028117869049310684, 0.03799280896782875, 0.29827404022216797, -0.14598026871681213, 0.019696829840540886, -0.16324622929096222, 0.031139809638261795, 0.017677301540970802, 0.3059098422527313, -0.1583966314792633, -0.02761627919971943, 0.007070920895785093, 0.004574812017381191, 0.006110899616032839, 0.2561987638473511, 0.2567859888076782, -0.08598681539297104, 0.8349769115447998, 0.0009707222343422472, 0.0168618056923151, -0.006387591827660799, 0.2543651759624481, -0.27212581038475037, 0.09075653553009033, 0.7972146272659302, -0.005392901133745909, 0.012403673492372036, 0.003918841481208801]} +{"t": 0.6193, "q": [-0.1524316668510437, -0.02808378078043461, 0.03799280896782875, 0.29829108715057373, -0.14598026871681213, 0.019696829840540886, -0.16324622929096222, 0.031148331239819527, 0.017677301540970802, 0.30589282512664795, -0.15838810801506042, -0.027616241946816444, 0.00709770480170846, 0.004574812017381191, 0.006110899616032839, 0.2561987638473511, 0.25680994987487793, -0.08598681539297104, 0.8349529504776001, 0.0009827064350247383, 0.01684982143342495, -0.006387591827660799, 0.25440114736557007, -0.2721138298511505, 0.09075653553009033, 0.7972385883331299, -0.005392901133745909, 0.012403673492372036, 0.003930825740098953]} +{"t": 0.6361, "q": [-0.1524316668510437, -0.028109345585107803, 0.03800620138645172, 0.29827404022216797, -0.14598877727985382, 0.019682839512825012, -0.16323770582675934, 0.031148331239819527, 0.017677301540970802, 0.3059098422527313, -0.1583966314792633, -0.02761627919971943, 0.0071914480067789555, 0.004589876160025597, 0.006110878195613623, 0.25625869631767273, 0.25677400827407837, -0.08599880337715149, 0.8349529504776001, 0.0009946906939148903, 0.0168618056923151, -0.006411560345441103, 0.2544251084327698, -0.2721138298511505, 0.09075653553009033, 0.7972505688667297, -0.005404885392636061, 0.012415657751262188, 0.003918841481208801]} +{"t": 0.6528, "q": [-0.15244019031524658, -0.028109345585107803, 0.03797941654920578, 0.29827404022216797, -0.14598457515239716, 0.019703879952430725, -0.16322918236255646, 0.031139809638261795, 0.01765051856637001, 0.30590131878852844, -0.1583966314792633, -0.02761627919971943, 0.007231623865664005, 0.004597297869622707, 0.0061445035971701145, 0.256318598985672, 0.2567859888076782, -0.08599880337715149, 0.8350248336791992, 0.0009946906939148903, 0.016897758468985558, -0.006399576086550951, 0.2544730305671692, -0.2721138298511505, 0.09075653553009033, 0.7972625494003296, -0.005392901133745909, 0.012403673492372036, 0.003942809998989105]} +{"t": 0.6695, "q": [-0.15244019031524658, -0.028109345585107803, 0.03799280896782875, 0.2982655167579651, -0.14598877727985382, 0.019682839512825012, -0.16324622929096222, 0.031148331239819527, 0.017690693959593773, 0.30590131878852844, -0.1583966314792633, -0.02761627919971943, 0.007245015352964401, 0.0046048457734286785, 0.006139687728136778, 0.2564144730567932, 0.2567859888076782, -0.08601078391075134, 0.8350488543510437, 0.0009707222343422472, 0.016921725124120712, -0.006387591827660799, 0.25448501110076904, -0.2721138298511505, 0.09075653553009033, 0.7972865104675293, -0.005380917340517044, 0.012403673492372036, 0.003942809998989105]} +{"t": 0.6863, "q": [-0.15245722234249115, -0.02810082398355007, 0.03797941654920578, 0.29827404022216797, -0.14599734544754028, 0.019682886078953743, -0.16324622929096222, 0.03116537630558014, 0.017690693959593773, 0.30589282512664795, -0.15839232504367828, -0.027609217911958694, 0.007218231912702322, 0.00458981329575181, 0.006130098830908537, 0.2564384639263153, 0.2567859888076782, -0.0860707089304924, 0.8350608348846436, 0.0009827064350247383, 0.01696966215968132, -0.006399576086550951, 0.25448501110076904, -0.2720898389816284, 0.09078050404787064, 0.7972865104675293, -0.005368933081626892, 0.012415657751262188, 0.003942809998989105]} +{"t": 0.703, "q": [-0.15242314338684082, -0.02810082398355007, 0.03797941654920578, 0.29829108715057373, -0.14598877727985382, 0.019682839512825012, -0.1632547527551651, 0.031131288036704063, 0.01766391098499298, 0.30590131878852844, -0.1583966314792633, -0.02761627919971943, 0.007204839959740639, 0.004597297869622707, 0.0061445035971701145, 0.2564983665943146, 0.2567859888076782, -0.08601078391075134, 0.8350608348846436, 0.0009827064350247383, 0.017017599195241928, -0.006399576086550951, 0.2544970214366913, -0.2721138298511505, 0.09078050404787064, 0.7972985506057739, -0.005368933081626892, 0.012439625337719917, 0.003942809998989105]} +{"t": 0.7199, "q": [-0.15241461992263794, -0.028109345585107803, 0.03796602413058281, 0.29828256368637085, -0.14598877727985382, 0.019682839512825012, -0.16323770582675934, 0.031148331239819527, 0.01763712614774704, 0.3059098422527313, -0.15839241445064545, -0.02762330323457718, 0.007218231912702322, 0.004582265857607126, 0.0061349146999418736, 0.2564983665943146, 0.25677400827407837, -0.0860227718949318, 0.8350847959518433, 0.0009707222343422472, 0.017041567713022232, -0.006399576086550951, 0.2544970214366913, -0.27210181951522827, 0.09078050404787064, 0.7972985506057739, -0.005368933081626892, 0.012439625337719917, 0.003942809998989105]} +{"t": 0.7367, "q": [-0.15238052606582642, -0.028109345585107803, 0.03796602413058281, 0.2982996106147766, -0.14597594738006592, 0.019689789041876793, -0.16323770582675934, 0.031148331239819527, 0.01762373559176922, 0.3059183657169342, -0.15838810801506042, -0.027616241946816444, 0.0071914480067789555, 0.004604876972734928, 0.006130077410489321, 0.25658226013183594, 0.2567620277404785, -0.08601078391075134, 0.8350967764854431, 0.0009946906939148903, 0.017041567713022232, -0.006387591827660799, 0.25458088517189026, -0.2720898389816284, 0.09079249203205109, 0.7973225116729736, -0.005380917340517044, 0.012439625337719917, 0.003966778516769409]} +{"t": 0.7534, "q": [-0.1523890495300293, -0.028109345585107803, 0.0379258468747139, 0.2982996106147766, -0.14597594738006592, 0.019689789041876793, -0.16323770582675934, 0.031148331239819527, 0.01765051856637001, 0.3059183657169342, -0.15839241445064545, -0.02762330323457718, 0.0071914480067789555, 0.004604876972734928, 0.006130077410489321, 0.2565223276615143, 0.2567859888076782, -0.0860227718949318, 0.8351327180862427, 0.0009946906939148903, 0.017065536230802536, -0.006387591827660799, 0.25458088517189026, -0.27210181951522827, 0.09079249203205109, 0.7973225116729736, -0.005344964563846588, 0.01245160959661007, 0.003954794257879257]} +{"t": 0.7702, "q": [-0.15238052606582642, -0.028109345585107803, 0.03793923929333687, 0.29829108715057373, -0.14597594738006592, 0.019689789041876793, -0.16323770582675934, 0.031139809638261795, 0.017610343173146248, 0.3059183657169342, -0.15839241445064545, -0.02762330323457718, 0.007137880194932222, 0.004604876972734928, 0.006130077410489321, 0.25651034712791443, 0.2567859888076782, -0.08596284687519073, 0.8351566791534424, 0.0009946906939148903, 0.017053551971912384, -0.006399576086550951, 0.25448501110076904, -0.2720898389816284, 0.09081646054983139, 0.7973344922065735, -0.005392901133745909, 0.01245160959661007, 0.003966778516769409]} +{"t": 0.7869, "q": [-0.15237200260162354, -0.028109345585107803, 0.03795263171195984, 0.29833370447158813, -0.14595456421375275, 0.01969670131802559, -0.16324622929096222, 0.031131288036704063, 0.01763712614774704, 0.3059268891811371, -0.1583838164806366, -0.02760918065905571, 0.007137880194932222, 0.0045823282562196255, 0.006115694064646959, 0.2565343379974365, 0.25677400827407837, -0.08595086634159088, 0.8351686596870422, 0.0009827064350247383, 0.017065536230802536, -0.006399576086550951, 0.2545689046382904, -0.2720898389816284, 0.0908404290676117, 0.7973344922065735, -0.005392901133745909, 0.012463593855500221, 0.003966778516769409]} +{"t": 0.8037, "q": [-0.15237200260162354, -0.028109345585107803, 0.03793923929333687, 0.29832518100738525, -0.14597170054912567, 0.019696783274412155, -0.16323770582675934, 0.031139809638261795, 0.017610343173146248, 0.3059268891811371, -0.1584010124206543, -0.027637435123324394, 0.00709770480170846, 0.004597360733896494, 0.0061252829618752, 0.256462424993515, 0.25677400827407837, -0.08597483485937119, 0.8351926207542419, 0.0009946906939148903, 0.017053551971912384, -0.006399576086550951, 0.2545689046382904, -0.2720898389816284, 0.09085240960121155, 0.7973464727401733, -0.005404885392636061, 0.01245160959661007, 0.003954794257879257]} +{"t": 0.8204, "q": [-0.15235497057437897, -0.028109345585107803, 0.03793923929333687, 0.298342227935791, -0.14596307277679443, 0.01968270167708397, -0.16322918236255646, 0.031131288036704063, 0.017610343173146248, 0.3059183657169342, -0.15838810801506042, -0.027616241946816444, 0.007084312848746777, 0.0045974235981702805, 0.006106062326580286, 0.25640249252319336, 0.25677400827407837, -0.08597483485937119, 0.8351926207542419, 0.0009946906939148903, 0.01708950474858284, -0.006411560345441103, 0.2546408176422119, -0.2720898389816284, 0.09090034663677216, 0.7973464727401733, -0.005380917340517044, 0.012475578114390373, 0.003954794257879257]} +{"t": 0.8372, "q": [-0.15236347913742065, -0.028109345585107803, 0.03793923929333687, 0.2983592748641968, -0.1459716409444809, 0.0196827482432127, -0.16322065889835358, 0.031148331239819527, 0.01765051856637001, 0.3059268891811371, -0.15839241445064545, -0.02762330323457718, 0.007070920895785093, 0.0046125189401209354, 0.006096430588513613, 0.25635457038879395, 0.25677400827407837, -0.08598681539297104, 0.8351926207542419, 0.0009946906939148903, 0.017101489007472992, -0.006411560345441103, 0.2545928955078125, -0.2720898389816284, 0.09087637811899185, 0.797370433807373, -0.005368933081626892, 0.012463593855500221, 0.003942809998989105]} +{"t": 0.8539, "q": [-0.15235497057437897, -0.028109345585107803, 0.03793923929333687, 0.2983507513999939, -0.14596739411354065, 0.019689742475748062, -0.1632121354341507, 0.031148331239819527, 0.01762373559176922, 0.30594393610954285, -0.15839241445064545, -0.02762330323457718, 0.007003961596637964, 0.004604939837008715, 0.0061108567751944065, 0.25635457038879395, 0.2567859888076782, -0.08599880337715149, 0.8351806402206421, 0.0009347695740871131, 0.017113473266363144, -0.006399576086550951, 0.25458088517189026, -0.27210181951522827, 0.09090034663677216, 0.7973584532737732, -0.005392901133745909, 0.012463593855500221, 0.003942809998989105]} +{"t": 0.8707, "q": [-0.15237200260162354, -0.028109345585107803, 0.03795263171195984, 0.2983507513999939, -0.14596739411354065, 0.019689742475748062, -0.1632121354341507, 0.031139809638261795, 0.01766391098499298, 0.30594393610954285, -0.15839241445064545, -0.02762330323457718, 0.006990569643676281, 0.0046125189401209354, 0.006096430588513613, 0.25637853145599365, 0.2567620277404785, -0.08597483485937119, 0.8351686596870422, 0.0009587380336597562, 0.017101489007472992, -0.006411560345441103, 0.2545689046382904, -0.2720898389816284, 0.09090034663677216, 0.7973943948745728, -0.005392901133745909, 0.012475578114390373, 0.003954794257879257]} +{"t": 0.8874, "q": [-0.15235497057437897, -0.028109345585107803, 0.03793923929333687, 0.298342227935791, -0.14597594738006592, 0.019689789041876793, -0.1632121354341507, 0.031139809638261795, 0.01765051856637001, 0.3059268891811371, -0.15838810801506042, -0.027616241946816444, 0.00705752894282341, 0.004612456075847149, 0.006115651223808527, 0.2563905119895935, 0.2567859888076782, -0.08597483485937119, 0.8351926207542419, 0.0009827064350247383, 0.017113473266363144, -0.006399576086550951, 0.2545449435710907, -0.27207785844802856, 0.09090034663677216, 0.7974063754081726, -0.005392901133745909, 0.012463593855500221, 0.003954794257879257]} +{"t": 0.9043, "q": [-0.15236347913742065, -0.028117869049310684, 0.03795263171195984, 0.2983592748641968, -0.14597170054912567, 0.019696783274412155, -0.1632121354341507, 0.031131288036704063, 0.017690693959593773, 0.3059609830379486, -0.1583838164806366, -0.02760918065905571, 0.0070307450369000435, 0.004612456075847149, 0.006115651223808527, 0.25640249252319336, 0.2567979693412781, -0.08599880337715149, 0.8351926207542419, 0.0009587380336597562, 0.017125457525253296, -0.006411560345441103, 0.2545689046382904, -0.2720658779144287, 0.0909123346209526, 0.7974063754081726, -0.005392901133745909, 0.012463593855500221, 0.003954794257879257]} +{"t": 0.921, "q": [-0.15235497057437897, -0.028109345585107803, 0.03796602413058281, 0.2984444797039032, -0.14596307277679443, 0.01968270167708397, -0.16319508850574493, 0.031131288036704063, 0.01765051856637001, 0.3059524595737457, -0.15838396549224854, -0.02763734944164753, 0.007003961596637964, 0.0045823282562196255, 0.006115694064646959, 0.25637853145599365, 0.25677400827407837, -0.08599880337715149, 0.8351926207542419, 0.0009946906939148903, 0.017137441784143448, -0.006399576086550951, 0.25460487604141235, -0.2720898389816284, 0.0909123346209526, 0.7974063754081726, -0.005368933081626892, 0.012475578114390373, 0.003954794257879257]} +{"t": 0.9378, "q": [-0.15236347913742065, -0.028109345585107803, 0.0379258468747139, 0.2984444797039032, -0.14595887064933777, 0.019703742116689682, -0.16318657994270325, 0.031148331239819527, 0.01763712614774704, 0.3059524595737457, -0.15838389098644257, -0.027623265981674194, 0.0070173535495996475, 0.004597360733896494, 0.0061252829618752, 0.2563665509223938, 0.2567979693412781, -0.08599880337715149, 0.8352165818214417, 0.0009587380336597562, 0.017173394560813904, -0.006411560345441103, 0.25462883710861206, -0.2720898389816284, 0.0909123346209526, 0.7973943948745728, -0.005380917340517044, 0.012487562373280525, 0.003954794257879257]} +{"t": 0.9545, "q": [-0.1523379236459732, -0.028109345585107803, 0.03795263171195984, 0.2984530031681061, -0.1459631770849228, 0.019710782915353775, -0.16316953301429749, 0.031131288036704063, 0.01762373559176922, 0.3059609830379486, -0.1583881825208664, -0.02763032726943493, 0.007044136989861727, 0.004597360733896494, 0.0061252829618752, 0.25637853145599365, 0.2567859888076782, -0.08598681539297104, 0.8352165818214417, 0.0009707222343422472, 0.0171494260430336, -0.006399576086550951, 0.25462883710861206, -0.2720898389816284, 0.09097225219011307, 0.7974063754081726, -0.005368933081626892, 0.012487562373280525, 0.003954794257879257]} +{"t": 0.9712, "q": [-0.15232940018177032, -0.02809230238199234, 0.03795263171195984, 0.29847005009651184, -0.1459631770849228, 0.019710782915353775, -0.16317805647850037, 0.031148331239819527, 0.01766391098499298, 0.3059695065021515, -0.15839241445064545, -0.02762330323457718, 0.00705752894282341, 0.00458981329575181, 0.006130098830908537, 0.2563665509223938, 0.25677400827407837, -0.08597483485937119, 0.8352165818214417, 0.0009946906939148903, 0.017161410301923752, -0.006411560345441103, 0.25465279817581177, -0.2720898389816284, 0.09094828367233276, 0.7974063754081726, -0.005404885392636061, 0.012499546632170677, 0.003954794257879257]} +{"t": 0.988, "q": [-0.15235497057437897, -0.02810082398355007, 0.0379258468747139, 0.29846152663230896, -0.1459631770849228, 0.019710782915353775, -0.16318657994270325, 0.031148331239819527, 0.01766391098499298, 0.3059524595737457, -0.15839241445064545, -0.02762330323457718, 0.00705752894282341, 0.004612424876540899, 0.006125261541455984, 0.2563905119895935, 0.2567859888076782, -0.08597483485937119, 0.8352165818214417, 0.0010066749528050423, 0.017197363078594208, -0.006399576086550951, 0.25465279817581177, -0.27207785844802856, 0.09099622070789337, 0.7973943948745728, -0.005380917340517044, 0.012499546632170677, 0.003954794257879257]} +{"t": 1.0047, "q": [-0.15235497057437897, -0.028109345585107803, 0.037912458181381226, 0.29846152663230896, -0.1459546685218811, 0.01972477324306965, -0.16319508850574493, 0.031148331239819527, 0.01762373559176922, 0.3059609830379486, -0.15839232504367828, -0.027609217911958694, 0.0070173535495996475, 0.004604876972734928, 0.006130077410489321, 0.25637853145599365, 0.25675004720687866, -0.08599880337715149, 0.8352046012878418, 0.0009587380336597562, 0.017185378819704056, -0.006387591827660799, 0.2546887695789337, -0.27207785844802856, 0.09100820869207382, 0.7974303364753723, -0.005368933081626892, 0.012499546632170677, 0.003942809998989105]} +{"t": 1.0214, "q": [-0.1523379236459732, -0.028109345585107803, 0.0379258468747139, 0.29846152663230896, -0.14595887064933777, 0.019703742116689682, -0.16318657994270325, 0.031139809638261795, 0.01763712614774704, 0.3059268891811371, -0.15839241445064545, -0.02762330323457718, 0.007044136989861727, 0.004612393211573362, 0.006134871859103441, 0.25640249252319336, 0.25677400827407837, -0.08597483485937119, 0.8352165818214417, 0.0009587380336597562, 0.017197363078594208, -0.006399576086550951, 0.25462883710861206, -0.27207785844802856, 0.09099622070789337, 0.797454297542572, -0.005368933081626892, 0.012487562373280525, 0.003966778516769409]} +{"t": 1.0384, "q": [-0.1523379236459732, -0.02809230238199234, 0.0379258468747139, 0.29846152663230896, -0.145967498421669, 0.019717823714017868, -0.16318657994270325, 0.031131288036704063, 0.017610343173146248, 0.30594393610954285, -0.15839241445064545, -0.02762330323457718, 0.007044136989861727, 0.004597360733896494, 0.0061252829618752, 0.25640249252319336, 0.2567620277404785, -0.0860227718949318, 0.8352165818214417, 0.0009827064350247383, 0.017197363078594208, -0.006411560345441103, 0.25462883710861206, -0.27207785844802856, 0.09099622070789337, 0.7974782586097717, -0.005368933081626892, 0.012499546632170677, 0.003930825740098953]} +{"t": 1.0551, "q": [-0.1523464471101761, -0.028109345585107803, 0.0379258468747139, 0.29846152663230896, -0.14595887064933777, 0.019703742116689682, -0.16319508850574493, 0.031139809638261795, 0.01762373559176922, 0.30594393610954285, -0.15839232504367828, -0.027609217911958694, 0.0070173535495996475, 0.004619972314685583, 0.00612044520676136, 0.2564144730567932, 0.2567859888076782, -0.08599880337715149, 0.8352165818214417, 0.0009946906939148903, 0.017197363078594208, -0.006399576086550951, 0.2547247111797333, -0.27207785844802856, 0.09102018922567368, 0.7974662780761719, -0.005380917340517044, 0.012499546632170677, 0.003930825740098953]} +{"t": 1.0718, "q": [-0.1523464471101761, -0.02809230238199234, 0.037899065762758255, 0.29846152663230896, -0.1459631770849228, 0.019710782915353775, -0.16318657994270325, 0.031148331239819527, 0.017596950754523277, 0.30594393610954285, -0.15839241445064545, -0.02762330323457718, 0.007044136989861727, 0.004604908637702465, 0.006120467092841864, 0.25645044445991516, 0.2567620277404785, -0.08599880337715149, 0.8352165818214417, 0.0009707222343422472, 0.017197363078594208, -0.006399576086550951, 0.2546647787094116, -0.2720658779144287, 0.09103217720985413, 0.7974662780761719, -0.005404885392636061, 0.01251153089106083, 0.003930825740098953]} +{"t": 1.0886, "q": [-0.15235497057437897, -0.02810082398355007, 0.03793923929333687, 0.29846152663230896, -0.14595887064933777, 0.019703742116689682, -0.16317805647850037, 0.031139809638261795, 0.01762373559176922, 0.3059609830379486, -0.15840086340904236, -0.027609247714281082, 0.007044136989861727, 0.004612456075847149, 0.006115651223808527, 0.2564384639263153, 0.2567979693412781, -0.08599880337715149, 0.8352165818214417, 0.0009946906939148903, 0.01720934733748436, -0.006399576086550951, 0.25460487604141235, -0.27207785844802856, 0.09104415774345398, 0.7974782586097717, -0.005392901133745909, 0.012523515149950981, 0.003930825740098953]} +{"t": 1.1053, "q": [-0.15235497057437897, -0.028109345585107803, 0.0379258468747139, 0.29846152663230896, -0.14595887064933777, 0.019703742116689682, -0.16319508850574493, 0.031148331239819527, 0.017610343173146248, 0.3059609830379486, -0.15839241445064545, -0.02762330323457718, 0.007044136989861727, 0.004619972314685583, 0.00612044520676136, 0.25642645359039307, 0.25677400827407837, -0.08601078391075134, 0.8352406024932861, 0.0009587380336597562, 0.01720934733748436, -0.006411560345441103, 0.25470075011253357, -0.27207785844802856, 0.09105614572763443, 0.7974662780761719, -0.005392901133745909, 0.012499546632170677, 0.003930825740098953]} +{"t": 1.122, "q": [-0.15235497057437897, -0.028109345585107803, 0.0379258468747139, 0.2984530031681061, -0.1459631770849228, 0.019710782915353775, -0.16318657994270325, 0.031139809638261795, 0.01762373559176922, 0.3059524595737457, -0.15839241445064545, -0.02762330323457718, 0.007044136989861727, 0.004619909450411797, 0.006139665842056274, 0.25640249252319336, 0.25677400827407837, -0.08599880337715149, 0.8352406024932861, 0.0009946906939148903, 0.01722133159637451, -0.006387591827660799, 0.25473669171333313, -0.2720898389816284, 0.09105614572763443, 0.7974782586097717, -0.005380917340517044, 0.012487562373280525, 0.003954794257879257]} +{"t": 1.1389, "q": [-0.15235497057437897, -0.02810082398355007, 0.0379258468747139, 0.29846152663230896, -0.1459631770849228, 0.019710782915353775, -0.16319508850574493, 0.03116537630558014, 0.01762373559176922, 0.3059609830379486, -0.1583966314792633, -0.02761627919971943, 0.0070307450369000435, 0.004597360733896494, 0.0061252829618752, 0.25645044445991516, 0.25677400827407837, -0.08599880337715149, 0.8352406024932861, 0.0009946906939148903, 0.01720934733748436, -0.006399576086550951, 0.25476065278053284, -0.2720658779144287, 0.09106812626123428, 0.7974662780761719, -0.005392901133745909, 0.01251153089106083, 0.003954794257879257]} +{"t": 1.1557, "q": [-0.15236347913742065, -0.02810082398355007, 0.0379258468747139, 0.29846152663230896, -0.14595887064933777, 0.019703742116689682, -0.16318657994270325, 0.031148331239819527, 0.01762373559176922, 0.30594393610954285, -0.15838803350925446, -0.02760215662419796, 0.007084312848746777, 0.004597360733896494, 0.0061252829618752, 0.2564384639263153, 0.2567859888076782, -0.08598681539297104, 0.8352406024932861, 0.0009707222343422472, 0.01722133159637451, -0.006399576086550951, 0.254748672246933, -0.2720658779144287, 0.09110408276319504, 0.7974782586097717, -0.005380917340517044, 0.01251153089106083, 0.003966778516769409]} +{"t": 1.1724, "q": [-0.15236347913742065, -0.02810082398355007, 0.03793923929333687, 0.2984444797039032, -0.14595893025398254, 0.019717779010534286, -0.16319508850574493, 0.031139809638261795, 0.01763712614774704, 0.30594393610954285, -0.15839241445064545, -0.02762330323457718, 0.007070920895785093, 0.004604908637702465, 0.006120467092841864, 0.256462424993515, 0.2567620277404785, -0.08599880337715149, 0.8352406024932861, 0.0009707222343422472, 0.01720934733748436, -0.006411560345441103, 0.25473669171333313, -0.27202993631362915, 0.0911879688501358, 0.7975022792816162, -0.005332980304956436, 0.012487562373280525, 0.003906857222318649]} +{"t": 1.1893, "q": [-0.15235497057437897, -0.028109345585107803, 0.03793923929333687, 0.2984444797039032, -0.1459631770849228, 0.019710782915353775, -0.16318657994270325, 0.031148331239819527, 0.01765051856637001, 0.30593541264533997, -0.1583966314792633, -0.02761627919971943, 0.007111096754670143, 0.004619972314685583, 0.00612044520676136, 0.2564384639263153, 0.25677400827407837, -0.08599880337715149, 0.8352406024932861, 0.0010066749528050423, 0.017233315855264664, -0.006399576086550951, 0.25465279817581177, -0.27182620763778687, 0.0914636105298996, 0.7975022792816162, -0.005344964563846588, 0.01251153089106083, 0.003930825740098953]} +{"t": 1.2061, "q": [-0.1523464471101761, -0.028109345585107803, 0.03793923929333687, 0.29846152663230896, -0.14595887064933777, 0.019703742116689682, -0.16318657994270325, 0.031148331239819527, 0.01765051856637001, 0.30594393610954285, -0.1583966314792633, -0.02761627919971943, 0.007111096754670143, 0.004612393211573362, 0.006134871859103441, 0.256462424993515, 0.2567859888076782, -0.0860227718949318, 0.8352406024932861, 0.0009946906939148903, 0.01722133159637451, -0.006399576086550951, 0.254748672246933, -0.27155056595802307, 0.09157146513462067, 0.7974902391433716, -0.005368933081626892, 0.01251153089106083, 0.003954794257879257]} +{"t": 1.2228, "q": [-0.15238052606582642, -0.028109345585107803, 0.03793923929333687, 0.2984530031681061, -0.1459631770849228, 0.019710782915353775, -0.16318657994270325, 0.031139809638261795, 0.01765051856637001, 0.3059268891811371, -0.15839241445064545, -0.02762330323457718, 0.007111096754670143, 0.004612456075847149, 0.006115651223808527, 0.2564384639263153, 0.25677400827407837, -0.08599880337715149, 0.8352406024932861, 0.0009587380336597562, 0.01722133159637451, -0.006399576086550951, 0.2546647787094116, -0.27133485674858093, 0.09184709936380386, 0.7975022792816162, -0.005380917340517044, 0.012535499408841133, 0.003966778516769409]} +{"t": 1.2396, "q": [-0.15236347913742065, -0.028126390650868416, 0.0379258468747139, 0.2984444797039032, -0.14595887064933777, 0.019703742116689682, -0.16317805647850037, 0.031139809638261795, 0.01763712614774704, 0.30594393610954285, -0.1583881825208664, -0.02763032726943493, 0.007084312848746777, 0.004612393211573362, 0.006134871859103441, 0.25642645359039307, 0.2567859888076782, -0.08598681539297104, 0.8352406024932861, 0.0009946906939148903, 0.01720934733748436, -0.006411560345441103, 0.2546408176422119, -0.27115508913993835, 0.09209877252578735, 0.7974902391433716, -0.005392901133745909, 0.01251153089106083, 0.003966778516769409]} +{"t": 1.2563, "q": [-0.15236347913742065, -0.028109345585107803, 0.03793923929333687, 0.29846152663230896, -0.1459631770849228, 0.019710782915353775, -0.16316953301429749, 0.031148331239819527, 0.01762373559176922, 0.3059609830379486, -0.1583881825208664, -0.02763032726943493, 0.00709770480170846, 0.004604876972734928, 0.006130077410489321, 0.25640249252319336, 0.2567859888076782, -0.08599880337715149, 0.8352406024932861, 0.0009946906939148903, 0.01722133159637451, -0.006399576086550951, 0.25462883710861206, -0.27108317613601685, 0.09223059564828873, 0.7975022792816162, -0.005380917340517044, 0.01251153089106083, 0.003978762775659561]} +{"t": 1.273, "q": [-0.15237200260162354, -0.028109345585107803, 0.0379258468747139, 0.29846152663230896, -0.1459631770849228, 0.019710782915353775, -0.16316953301429749, 0.031139809638261795, 0.01762373559176922, 0.3059524595737457, -0.15839241445064545, -0.02762330323457718, 0.007111096754670143, 0.004612456075847149, 0.006115651223808527, 0.25640249252319336, 0.25677400827407837, -0.08599880337715149, 0.8352645635604858, 0.0009827064350247383, 0.01722133159637451, -0.006399576086550951, 0.2546168565750122, -0.2711191177368164, 0.09235043823719025, 0.7975262403488159, -0.005380917340517044, 0.012499546632170677, 0.003954794257879257]} +{"t": 1.2897, "q": [-0.15235497057437897, -0.028109345585107803, 0.0379258468747139, 0.29846152663230896, -0.14595887064933777, 0.019703742116689682, -0.16316953301429749, 0.031139809638261795, 0.01765051856637001, 0.30594393610954285, -0.1583838164806366, -0.02760918065905571, 0.00709770480170846, 0.004619972314685583, 0.00612044520676136, 0.25640249252319336, 0.25677400827407837, -0.08599880337715149, 0.8352645635604858, 0.0010066749528050423, 0.017233315855264664, -0.006399576086550951, 0.2546887695789337, -0.2711191177368164, 0.09239837527275085, 0.7975142598152161, -0.005404885392636061, 0.012487562373280525, 0.003942809998989105]} +{"t": 1.3065, "q": [-0.15236347913742065, -0.028109345585107803, 0.0379258468747139, 0.29846152663230896, -0.14595887064933777, 0.019703742116689682, -0.16316953301429749, 0.031148331239819527, 0.01762373559176922, 0.30593541264533997, -0.15838389098644257, -0.027623265981674194, 0.007070920895785093, 0.004597360733896494, 0.0061252829618752, 0.2564384639263153, 0.25677400827407837, -0.08601078391075134, 0.835252583026886, 0.0009827064350247383, 0.017245300114154816, -0.006399576086550951, 0.2546408176422119, -0.2710951566696167, 0.09254218637943268, 0.7975262403488159, -0.005416869651526213, 0.01251153089106083, 0.003942809998989105]} +{"t": 1.3232, "q": [-0.15230382978916168, -0.028109345585107803, 0.0379258468747139, 0.2984785735607147, -0.14595462381839752, 0.019710736349225044, -0.1631610095500946, 0.031139809638261795, 0.01766391098499298, 0.3059524595737457, -0.15838396549224854, -0.02763734944164753, 0.0070307450369000435, 0.004597360733896494, 0.0061252829618752, 0.25642645359039307, 0.25675004720687866, -0.08603475242853165, 0.8352645635604858, 0.0009467537747696042, 0.017245300114154816, -0.006411560345441103, 0.25458088517189026, -0.271071195602417, 0.09276989102363586, 0.7975262403488159, -0.005392901133745909, 0.012487562373280525, 0.003942809998989105]} +{"t": 1.3399, "q": [-0.15232940018177032, -0.028109345585107803, 0.0379258468747139, 0.29851266741752625, -0.1459546685218811, 0.01972477324306965, -0.16316953301429749, 0.031148331239819527, 0.017610343173146248, 0.3059524595737457, -0.15838810801506042, -0.027616241946816444, 0.007084312848746777, 0.004650162532925606, 0.006101181730628014, 0.25637853145599365, 0.25675004720687866, -0.0860707089304924, 0.8352645635604858, 0.0009827064350247383, 0.01726926863193512, -0.006411560345441103, 0.2542453408241272, -0.27105921506881714, 0.09291369467973709, 0.7975022792816162, -0.005380917340517044, 0.012475578114390373, 0.003978762775659561]} +{"t": 1.3567, "q": [-0.15230382978916168, -0.028109345585107803, 0.037872280925512314, 0.2985211908817291, -0.14595036208629608, 0.019717732444405556, -0.16315248608589172, 0.031148331239819527, 0.01762373559176922, 0.3059524595737457, -0.15839241445064545, -0.02762330323457718, 0.007218231912702322, 0.004612707067281008, 0.00603876868262887, 0.2563425898551941, 0.2567979693412781, -0.0860227718949318, 0.8352645635604858, 0.0009946906939148903, 0.017257284373044968, -0.006399576086550951, 0.2537180185317993, -0.271071195602417, 0.0930095687508583, 0.7974662780761719, -0.005380917340517044, 0.012475578114390373, 0.004002731293439865]} +{"t": 1.3734, "q": [-0.1522953063249588, -0.028109345585107803, 0.03785888850688934, 0.29854676127433777, -0.14595036208629608, 0.019717732444405556, -0.16308431327342987, 0.031156854704022408, 0.017570167779922485, 0.30593541264533997, -0.15838810801506042, -0.027616241946816444, 0.00739232636988163, 0.0045901271514594555, 0.006033996120095253, 0.25628265738487244, 0.2567979693412781, -0.08599880337715149, 0.835252583026886, 0.0009946906939148903, 0.01726926863193512, -0.006399576086550951, 0.25315478444099426, -0.2711191177368164, 0.09297361969947815, 0.7973943948745728, -0.005380917340517044, 0.012463593855500221, 0.004002731293439865]} +{"t": 1.3901, "q": [-0.15228678286075592, -0.028109345585107803, 0.03775175288319588, 0.29854676127433777, -0.14594605565071106, 0.019710691645741463, -0.16304169595241547, 0.031148331239819527, 0.01748981513082981, 0.30594393610954285, -0.1583966314792633, -0.02761627919971943, 0.007526245433837175, 0.004575157538056374, 0.006005187053233385, 0.25630661845207214, 0.2567979693412781, -0.08598681539297104, 0.8352645635604858, 0.0009946906939148903, 0.01726926863193512, -0.006411560345441103, 0.2525675594806671, -0.27135881781578064, 0.09288972616195679, 0.7973464727401733, -0.005392901133745909, 0.012463593855500221, 0.003966778516769409]} +{"t": 1.4068, "q": [-0.15231235325336456, -0.02810082398355007, 0.0376044437289238, 0.29854676127433777, -0.14595036208629608, 0.019717732444405556, -0.16303317248821259, 0.031131288036704063, 0.017369288951158524, 0.3059268891811371, -0.1584010124206543, -0.027637435123324394, 0.0076467725448310375, 0.004537545144557953, 0.005990825593471527, 0.2562946379184723, 0.2567620277404785, -0.08599880337715149, 0.835252583026886, 0.0009587380336597562, 0.01728125289082527, -0.006387591827660799, 0.25217205286026, -0.27158650755882263, 0.09286576509475708, 0.7972985506057739, -0.005392901133745909, 0.012463593855500221, 0.003978762775659561]} +{"t": 1.4236, "q": [-0.15232087671756744, -0.028117869049310684, 0.0375107005238533, 0.29854676127433777, -0.14595893025398254, 0.019717779010534286, -0.1630246490240097, 0.031148331239819527, 0.017275545746088028, 0.3059183657169342, -0.15839241445064545, -0.02762330323457718, 0.0077672996558249, 0.004514934029430151, 0.00599566288292408, 0.25640249252319336, 0.2567620277404785, -0.0860467404127121, 0.8352645635604858, 0.0009946906939148903, 0.017305221408605576, -0.006399576086550951, 0.2520522177219391, -0.2716943621635437, 0.09285377711057663, 0.7972985506057739, -0.005392901133745909, 0.012463593855500221, 0.003966778516769409]} +{"t": 1.4403, "q": [-0.15232940018177032, -0.02810082398355007, 0.03744373843073845, 0.29856377840042114, -0.14595893025398254, 0.019717779010534286, -0.16303317248821259, 0.031139809638261795, 0.017208585515618324, 0.30590131878852844, -0.15840516984462738, -0.027616318315267563, 0.007753907702863216, 0.004552420694380999, 0.006048465147614479, 0.25642645359039307, 0.2567380666732788, -0.0860227718949318, 0.8352645635604858, 0.0009946906939148903, 0.017317205667495728, -0.006399576086550951, 0.25217205286026, -0.27168238162994385, 0.09288972616195679, 0.7973225116729736, -0.005428853910416365, 0.012463593855500221, 0.003966778516769409]} +{"t": 1.4571, "q": [-0.1523379236459732, -0.02810082398355007, 0.03744373843073845, 0.29854676127433777, -0.14595040678977966, 0.019731776788830757, -0.16303317248821259, 0.031148331239819527, 0.017208585515618324, 0.3059183657169342, -0.1583966314792633, -0.02761627919971943, 0.007700339891016483, 0.0045974235981702805, 0.006106062326580286, 0.2563905119895935, 0.25675004720687866, -0.08603475242853165, 0.8352765440940857, 0.0009946906939148903, 0.017305221408605576, -0.006411560345441103, 0.2524237334728241, -0.27158650755882263, 0.09305750578641891, 0.7973584532737732, -0.005440838169306517, 0.012487562373280525, 0.003966778516769409]} +{"t": 1.4739, "q": [-0.1523464471101761, -0.02810082398355007, 0.03745713084936142, 0.29854676127433777, -0.14594610035419464, 0.019724735990166664, -0.16304169595241547, 0.031139809638261795, 0.017208585515618324, 0.3059183657169342, -0.15840093791484833, -0.02762334980070591, 0.0074191102758049965, 0.004687617998570204, 0.006163594778627157, 0.2564983665943146, 0.2567380666732788, -0.08601078391075134, 0.8352645635604858, 0.0009707222343422472, 0.017305221408605576, -0.006411560345441103, 0.2528192102909088, -0.27147865295410156, 0.09321330487728119, 0.7974423170089722, -0.005428853910416365, 0.012475578114390373, 0.003966778516769409]} +{"t": 1.4906, "q": [-0.1523464471101761, -0.028109345585107803, 0.03747052326798439, 0.2985211908817291, -0.14595036208629608, 0.019717732444405556, -0.16305021941661835, 0.031148331239819527, 0.017208585515618324, 0.3059098422527313, -0.15840093791484833, -0.02762334980070591, 0.007218231912702322, 0.0047552320174872875, 0.006216354202479124, 0.2565223276615143, 0.25672608613967896, -0.0860227718949318, 0.8353005051612854, 0.0009946906939148903, 0.01732918992638588, -0.006399576086550951, 0.2532027065753937, -0.27147865295410156, 0.09347695857286453, 0.7974782586097717, -0.005428853910416365, 0.012487562373280525, 0.003966778516769409]} +{"t": 1.5073, "q": [-0.15232940018177032, -0.028109345585107803, 0.03744373843073845, 0.29854676127433777, -0.14594179391860962, 0.01971769519150257, -0.16305021941661835, 0.031139809638261795, 0.017221977934241295, 0.3059098422527313, -0.15840086340904236, -0.027609247714281082, 0.007137880194932222, 0.0047777495346963406, 0.006240347400307655, 0.2565223276615143, 0.2567380666732788, -0.0860227718949318, 0.8353005051612854, 0.0009946906939148903, 0.017305221408605576, -0.006411560345441103, 0.25326263904571533, -0.2714187204837799, 0.09369267523288727, 0.7975142598152161, -0.005404885392636061, 0.012475578114390373, 0.003966778516769409]} +{"t": 1.524, "q": [-0.1523379236459732, -0.028109345585107803, 0.03745713084936142, 0.2985382378101349, -0.14594179391860962, 0.01971769519150257, -0.16305021941661835, 0.031148331239819527, 0.017262153327465057, 0.3059183657169342, -0.15840522944927216, -0.027630411088466644, 0.00705752894282341, 0.00477781193330884, 0.006221126765012741, 0.25655829906463623, 0.2567620277404785, -0.0860467404127121, 0.8353244662284851, 0.0010066749528050423, 0.017305221408605576, -0.006411560345441103, 0.25343039631843567, -0.27131086587905884, 0.09405220299959183, 0.7975142598152161, -0.005404885392636061, 0.012475578114390373, 0.003966778516769409]} +{"t": 1.5408, "q": [-0.1523464471101761, -0.028109345585107803, 0.03748391568660736, 0.29851266741752625, -0.14594610035419464, 0.019724735990166664, -0.16304169595241547, 0.031148331239819527, 0.017208585515618324, 0.3059098422527313, -0.15840086340904236, -0.027609247714281082, 0.007044136989861727, 0.004792844410985708, 0.006230715662240982, 0.2565702795982361, 0.25672608613967896, -0.08603475242853165, 0.8353244662284851, 0.0010066749528050423, 0.017305221408605576, -0.006411560345441103, 0.25390976667404175, -0.27125096321105957, 0.09430386871099472, 0.7975621819496155, -0.005404885392636061, 0.012487562373280525, 0.003990747034549713]} +{"t": 1.5576, "q": [-0.15237200260162354, -0.028109345585107803, 0.03747052326798439, 0.29854676127433777, -0.14595040678977966, 0.019731776788830757, -0.16304169595241547, 0.031139809638261795, 0.017248760908842087, 0.3059183657169342, -0.15840086340904236, -0.027609247714281082, 0.0070307450369000435, 0.004747621715068817, 0.006240390706807375, 0.25655829906463623, 0.25675004720687866, -0.0860227718949318, 0.8353244662284851, 0.0009707222343422472, 0.01732918992638588, -0.006411560345441103, 0.25503629446029663, -0.2712629437446594, 0.09459149092435837, 0.7978857755661011, -0.005476790945976973, 0.012487562373280525, 0.003966778516769409]} +{"t": 1.5743, "q": [-0.15242314338684082, -0.028109345585107803, 0.03745713084936142, 0.29856377840042114, -0.14594610035419464, 0.019724735990166664, -0.16304169595241547, 0.031139809638261795, 0.017288938164711, 0.3059183657169342, -0.1583966314792633, -0.02761627919971943, 0.006923609878867865, 0.004747621715068817, 0.006240390706807375, 0.25658226013183594, 0.2567620277404785, -0.08601078391075134, 0.8353244662284851, 0.0009827064350247383, 0.017305221408605576, -0.006399576086550951, 0.25563549995422363, -0.27125096321105957, 0.09485514461994171, 0.7979696393013, -0.0054887752048671246, 0.012475578114390373, 0.003978762775659561]} +{"t": 1.5912, "q": [-0.1523890495300293, -0.028126390650868416, 0.037550874054431915, 0.29856377840042114, -0.14595462381839752, 0.019710736349225044, -0.16305021941661835, 0.031131288036704063, 0.017369288951158524, 0.3059183657169342, -0.15840086340904236, -0.027609247714281082, 0.006414717994630337, 0.004792750347405672, 0.006259546615183353, 0.25655829906463623, 0.2567620277404785, -0.0860227718949318, 0.8353723883628845, 0.0009707222343422472, 0.017353158444166183, -0.006411560345441103, 0.25585123896598816, -0.2712269723415375, 0.09501093626022339, 0.7979576587677002, -0.0055367122404277325, 0.01245160959661007, 0.003966778516769409]} +{"t": 1.6079, "q": [-0.15235497057437897, -0.028109345585107803, 0.03765800967812538, 0.29859787225723267, -0.14595036208629608, 0.019717732444405556, -0.16303317248821259, 0.031148331239819527, 0.01746303215622902, 0.3059098422527313, -0.1583966314792633, -0.02761627919971943, 0.0059995693154633045, 0.0048004863783717155, 0.006197068840265274, 0.25655829906463623, 0.2567620277404785, -0.08605872094631195, 0.8353723883628845, 0.0010186590952798724, 0.017353158444166183, -0.006399576086550951, 0.2559710741043091, -0.2712269723415375, 0.09516673535108566, 0.7979696393013, -0.005572664551436901, 0.012463593855500221, 0.003990747034549713]} +{"t": 1.6247, "q": [-0.1523379236459732, -0.028109345585107803, 0.03767140209674835, 0.29864048957824707, -0.14595898985862732, 0.019731814041733742, -0.16300760209560394, 0.031148331239819527, 0.01746303215622902, 0.3059268891811371, -0.15839241445064545, -0.02762330323457718, 0.0058388663455843925, 0.0047479672357439995, 0.006134677678346634, 0.2565463185310364, 0.2567620277404785, -0.0860227718949318, 0.8353843688964844, 0.0009827064350247383, 0.017365142703056335, -0.006399576086550951, 0.25585123896598816, -0.2712629437446594, 0.09513077884912491, 0.7979456782341003, -0.005596633069217205, 0.012475578114390373, 0.003966778516769409]} +{"t": 1.6414, "q": [-0.15231235325336456, -0.028109345585107803, 0.03764461725950241, 0.29865753650665283, -0.1459546685218811, 0.01972477324306965, -0.16296499967575073, 0.031139809638261795, 0.017422856763005257, 0.30594393610954285, -0.15837536752223969, -0.02762322686612606, 0.005986177362501621, 0.004702995531260967, 0.006067470647394657, 0.2563665509223938, 0.2567380666732788, -0.0860227718949318, 0.8353604078292847, 0.0009827064350247383, 0.01732918992638588, -0.006399576086550951, 0.2557433545589447, -0.27155056595802307, 0.09501093626022339, 0.7979217171669006, -0.005596633069217205, 0.012463593855500221, 0.003978762775659561]} +{"t": 1.6582, "q": [-0.1522953063249588, -0.028117869049310684, 0.03763122856616974, 0.2986745834350586, -0.14595887064933777, 0.019703742116689682, -0.162888303399086, 0.031156854704022408, 0.017382681369781494, 0.30594393610954285, -0.15837536752223969, -0.02762322686612606, 0.006039745174348354, 0.004650381859391928, 0.006033909972757101, 0.25595909357070923, 0.25675004720687866, -0.08601078391075134, 0.8353484272956848, 0.0009587380336597562, 0.01734117418527603, -0.006399576086550951, 0.255719393491745, -0.2718741297721863, 0.09490308165550232, 0.7979336977005005, -0.005584648810327053, 0.012475578114390373, 0.003966778516769409]} +{"t": 1.6749, "q": [-0.1522100865840912, -0.028109345585107803, 0.0376044437289238, 0.29870015382766724, -0.14595887064933777, 0.019703742116689682, -0.16276898980140686, 0.031148331239819527, 0.017382681369781494, 0.3059695065021515, -0.15836676955223083, -0.027609094977378845, 0.005986177362501621, 0.004657992627471685, 0.00600987346842885, 0.25570741295814514, 0.25675004720687866, -0.08603475242853165, 0.8353484272956848, 0.0009946906939148903, 0.01732918992638588, -0.006423544604331255, 0.25568345189094543, -0.27200594544410706, 0.09485514461994171, 0.7979336977005005, -0.005596633069217205, 0.012475578114390373, 0.003966778516769409]} +{"t": 1.6918, "q": [-0.1522015631198883, -0.02810082398355007, 0.037577658891677856, 0.29870015382766724, -0.14595887064933777, 0.019703742116689682, -0.16274341940879822, 0.031139809638261795, 0.017396071925759315, 0.3059695065021515, -0.15837536752223969, -0.02762322686612606, 0.006146880332380533, 0.004703309386968613, 0.005971367470920086, 0.2555636167526245, 0.2567380666732788, -0.08605872094631195, 0.8353484272956848, 0.0009946906939148903, 0.01734117418527603, -0.006423544604331255, 0.25476065278053284, -0.27195802330970764, 0.09493903070688248, 0.7978857755661011, -0.005608617328107357, 0.01245160959661007, 0.003906857222318649]} +{"t": 1.7085, "q": [-0.15215043723583221, -0.028109345585107803, 0.037577658891677856, 0.2987086772918701, -0.14595887064933777, 0.019703742116689682, -0.16267524659633636, 0.031148331239819527, 0.017355896532535553, 0.30598655343055725, -0.15836676955223083, -0.027609094977378845, 0.006280798930674791, 0.004733499605208635, 0.005952103994786739, 0.25527599453926086, 0.256690114736557, -0.0860707089304924, 0.8353484272956848, 0.0010066749528050423, 0.017305221408605576, -0.006423544604331255, 0.2538977861404419, -0.27180221676826477, 0.0951068103313446, 0.7978617548942566, -0.005656554363667965, 0.01242764201015234, 0.003954794257879257]} +{"t": 1.7253, "q": [-0.1521163433790207, -0.028109345585107803, 0.037550874054431915, 0.2986660599708557, -0.14595887064933777, 0.019703742116689682, -0.16264967620372772, 0.031148331239819527, 0.017342504113912582, 0.30599507689476013, -0.15836676955223083, -0.027609094977378845, 0.006347758695483208, 0.0048012081533670425, 0.005976032931357622, 0.25506025552749634, 0.25667813420295715, -0.0860227718949318, 0.8353484272956848, 0.0009946906939148903, 0.017317205667495728, -0.006411560345441103, 0.2538019120693207, -0.2717183530330658, 0.09520268440246582, 0.7978857755661011, -0.0057524279691278934, 0.012415657751262188, 0.003966778516769409]} +{"t": 1.7422, "q": [-0.15214191377162933, -0.028109345585107803, 0.03753748536109924, 0.2986660599708557, -0.14595456421375275, 0.01969670131802559, -0.16266672313213348, 0.031148331239819527, 0.017275545746088028, 0.306003600358963, -0.1583796739578247, -0.027630288153886795, 0.006615596357733011, 0.004921435844153166, 0.006062352564185858, 0.254976361989975, 0.2567140758037567, -0.08599880337715149, 0.8353244662284851, 0.0009707222343422472, 0.017317205667495728, -0.006411560345441103, 0.25393375754356384, -0.2717423141002655, 0.09527458995580673, 0.7978977560997009, -0.005836317781358957, 0.012415657751262188, 0.003978762775659561]} +{"t": 1.7589, "q": [-0.15219303965568542, -0.02810082398355007, 0.03743034973740578, 0.29864048957824707, -0.14595887064933777, 0.019703742116689682, -0.16267524659633636, 0.031148331239819527, 0.017195194959640503, 0.30597802996635437, -0.15838389098644257, -0.027623265981674194, 0.0068566505797207355, 0.004906089510768652, 0.006148866843432188, 0.25518012046813965, 0.2567620277404785, -0.08599880337715149, 0.835336446762085, 0.0009827064350247383, 0.017305221408605576, -0.006411560345441103, 0.2539696991443634, -0.27182620763778687, 0.09523864090442657, 0.7978977560997009, -0.005932191386818886, 0.012391689233481884, 0.003978762775659561]} +{"t": 1.7756, "q": [-0.15218451619148254, -0.028109345585107803, 0.037363387644290924, 0.29864901304244995, -0.1459503024816513, 0.01970369555056095, -0.16268377006053925, 0.031156854704022408, 0.017101449891924858, 0.30597802996635437, -0.15837536752223969, -0.02762322686612606, 0.006896826438605785, 0.0048530371859669685, 0.006249850150197744, 0.2554437518119812, 0.25675004720687866, -0.08593887835741043, 0.8353963494300842, 0.0009707222343422472, 0.01732918992638588, -0.006399576086550951, 0.2538498640060425, -0.27195802330970764, 0.09520268440246582, 0.7979097366333008, -0.00606401776894927, 0.012379704974591732, 0.003978762775659561]} +{"t": 1.7925, "q": [-0.1522100865840912, -0.028117869049310684, 0.03730982169508934, 0.2986319661140442, -0.14595462381839752, 0.019710736349225044, -0.16272637248039246, 0.031148331239819527, 0.017074666917324066, 0.30594393610954285, -0.15838396549224854, -0.02763734944164753, 0.006816474720835686, 0.0048154559917747974, 0.006225877907127142, 0.25555160641670227, 0.25670209527015686, -0.0860227718949318, 0.8354083299636841, 0.0009827064350247383, 0.017365142703056335, -0.006399576086550951, 0.25335851311683655, -0.2722456455230713, 0.09504689276218414, 0.7977060079574585, -0.006111954804509878, 0.01236772071570158, 0.003990747034549713]} +{"t": 1.8093, "q": [-0.15215043723583221, -0.028109345585107803, 0.037216078490018845, 0.2986319661140442, -0.14595040678977966, 0.019731776788830757, -0.16268377006053925, 0.031148331239819527, 0.01698092371225357, 0.3059268891811371, -0.15838827192783356, -0.02764442004263401, 0.006843258626759052, 0.0047478098422288895, 0.006182728800922632, 0.2556115388870239, 0.25663021206855774, -0.08608268946409225, 0.8354083299636841, 0.0010066749528050423, 0.017353158444166183, -0.006399576086550951, 0.2523518204689026, -0.2731444537639618, 0.09473530203104019, 0.7973824143409729, -0.006111954804509878, 0.012355736456811428, 0.003978762775659561]} +{"t": 1.826, "q": [-0.15215043723583221, -0.02810082398355007, 0.03702859207987785, 0.2986319661140442, -0.14594610035419464, 0.019724735990166664, -0.16264967620372772, 0.031148331239819527, 0.01682022027671337, 0.3059098422527313, -0.15841814875602722, -0.027651604264974594, 0.007111096754670143, 0.00469532236456871, 0.006110727321356535, 0.25570741295814514, 0.2565223276615143, -0.0860707089304924, 0.8354323506355286, 0.0009827064350247383, 0.017377126961946487, -0.006411560345441103, 0.251201331615448, -0.27442678809165955, 0.09431584924459457, 0.7969030141830444, -0.006135923322290182, 0.012319783680140972, 0.003966778516769409]} +{"t": 1.8428, "q": [-0.15213339030742645, -0.02809230238199234, 0.03682771325111389, 0.29864901304244995, -0.14593328535556793, 0.019731685519218445, -0.16259855031967163, 0.031148331239819527, 0.016552383080124855, 0.3059098422527313, -0.15845255553722382, -0.027708115056157112, 0.007673555985093117, 0.004695479292422533, 0.006062676198780537, 0.255719393491745, 0.2565702795982361, -0.08605872094631195, 0.8354083299636841, 0.0009827064350247383, 0.017353158444166183, -0.006411560345441103, 0.2502546012401581, -0.2756611406803131, 0.09413608908653259, 0.7968071699142456, -0.006171876098960638, 0.012283830903470516, 0.003906857222318649]} +{"t": 1.8595, "q": [-0.15217599272727966, -0.028109345585107803, 0.036533091217279434, 0.29865753650665283, -0.14592039585113525, 0.019724590703845024, -0.16259002685546875, 0.031156854704022408, 0.01629793643951416, 0.30589282512664795, -0.15850408375263214, -0.027778778225183487, 0.008222623728215694, 0.004717965144664049, 0.006096279714256525, 0.2557913064956665, 0.2565702795982361, -0.08603475242853165, 0.8354083299636841, 0.0010066749528050423, 0.017353158444166183, -0.006447513122111559, 0.24981117248535156, -0.27635622024536133, 0.09414807707071304, 0.7968431115150452, -0.0063276709988713264, 0.012295815162360668, 0.003858920419588685]} +{"t": 1.8762, "q": [-0.15221861004829407, -0.028109345585107803, 0.036385782063007355, 0.2986660599708557, -0.1459161937236786, 0.019745629280805588, -0.16259855031967163, 0.031131288036704063, 0.01611045002937317, 0.3058587312698364, -0.15852129459381104, -0.02780703268945217, 0.00847707036882639, 0.004792907275259495, 0.006211495026946068, 0.25585123896598816, 0.25658226013183594, -0.08599880337715149, 0.8354083299636841, 0.0009946906939148903, 0.017353158444166183, -0.006411560345441103, 0.24985910952091217, -0.27652400732040405, 0.0942079946398735, 0.7969270348548889, -0.006423544604331255, 0.01230779942125082, 0.003882888937368989]} +{"t": 1.893, "q": [-0.1522100865840912, -0.02810082398355007, 0.03627864643931389, 0.29865753650665283, -0.1459076851606369, 0.01975962147116661, -0.1626155972480774, 0.031148331239819527, 0.016030099242925644, 0.30585020780563354, -0.1585427224636078, -0.027828264981508255, 0.008343150839209557, 0.004845332354307175, 0.006302717141807079, 0.2559471130371094, 0.25658226013183594, -0.08598681539297104, 0.8354083299636841, 0.0009946906939148903, 0.017353158444166183, -0.006411560345441103, 0.25011077523231506, -0.27654796838760376, 0.09424394369125366, 0.7969749569892883, -0.006435528863221407, 0.012331767939031124, 0.003954794257879257]} +{"t": 1.9097, "q": [-0.15221861004829407, -0.02808378078043461, 0.03630542755126953, 0.29864901304244995, -0.14590327441692352, 0.01972450688481331, -0.1626070737838745, 0.031156854704022408, 0.016056882217526436, 0.30585020780563354, -0.1585642248392105, -0.02786359004676342, 0.007834259420633316, 0.004837784916162491, 0.006307533476501703, 0.25605496764183044, 0.2565702795982361, -0.08597483485937119, 0.8354083299636841, 0.0009587380336597562, 0.017365142703056335, -0.006411560345441103, 0.2503504753112793, -0.27654796838760376, 0.0941840261220932, 0.7969509959220886, -0.006363623775541782, 0.012319783680140972, 0.003978762775659561]} +{"t": 1.9264, "q": [-0.15218451619148254, -0.028075257316231728, 0.03626525402069092, 0.2986319661140442, -0.14590764045715332, 0.019745584577322006, -0.1626070737838745, 0.031182419508695602, 0.016030099242925644, 0.30585020780563354, -0.15859003365039825, -0.027905967086553574, 0.007378934416919947, 0.004785140044987202, 0.006283583119511604, 0.25607892870903015, 0.25655829906463623, -0.08598681539297104, 0.8354083299636841, 0.0009707222343422472, 0.017353158444166183, -0.006399576086550951, 0.2504223585128784, -0.27679964900016785, 0.09399227797985077, 0.7969390153884888, -0.0062917182222008705, 0.01230779942125082, 0.003966778516769409]} +{"t": 1.9431, "q": [-0.15217599272727966, -0.028041169047355652, 0.03623846918344498, 0.29864901304244995, -0.14590327441692352, 0.01972450688481331, -0.1626070737838745, 0.031207986176013947, 0.01598992384970188, 0.3058672547340393, -0.15860724449157715, -0.027934223413467407, 0.00709770480170846, 0.004710040520876646, 0.0062164184637367725, 0.25610288977622986, 0.2565223276615143, -0.08599880337715149, 0.8354323506355286, 0.0010186590952798724, 0.01734117418527603, -0.006411560345441103, 0.25031450390815735, -0.27717116475105286, 0.09389640390872955, 0.7965914607048035, -0.0062677497044205666, 0.01230779942125082, 0.003978762775659561]} +{"t": 1.9599, "q": [-0.15217599272727966, -0.027998559176921844, 0.036198295652866364, 0.2986660599708557, -0.14589907228946686, 0.019745538011193275, -0.16259855031967163, 0.03122503124177456, 0.015909571200609207, 0.3058672547340393, -0.15861575305461884, -0.027934260666370392, 0.00705752894282341, 0.004650099668651819, 0.006120402365922928, 0.25612685084342957, 0.25647440552711487, -0.0860227718949318, 0.8354323506355286, 0.0010066749528050423, 0.017365142703056335, -0.006423544604331255, 0.24969133734703064, -0.27762657403945923, 0.09371664375066757, 0.7959563136100769, -0.006255765445530415, 0.012235893867909908, 0.003978762775659561]} +{"t": 1.9766, "q": [-0.15216748416423798, -0.02802412584424019, 0.03614472597837448, 0.29869163036346436, -0.14589476585388184, 0.019738497212529182, -0.1625644564628601, 0.03122503124177456, 0.015856005251407623, 0.3058672547340393, -0.15861575305461884, -0.027934260666370392, 0.0072584073059260845, 0.004635192919522524, 0.006072372663766146, 0.25610288977622986, 0.25645044445991516, -0.0860467404127121, 0.8354203701019287, 0.0009707222343422472, 0.017353158444166183, -0.006399576086550951, 0.2487565577030182, -0.2780100703239441, 0.09345299005508423, 0.7951173782348633, -0.006255765445530415, 0.01212803553789854, 0.003978762775659561]} +{"t": 1.9934, "q": [-0.1522015631198883, -0.02802412584424019, 0.036050982773303986, 0.29869163036346436, -0.14590764045715332, 0.019745584577322006, -0.16248776018619537, 0.03122503124177456, 0.01577565260231495, 0.3058672547340393, -0.15861575305461884, -0.027934260666370392, 0.007820867002010345, 0.004612801130861044, 0.006009938195347786, 0.2561148703098297, 0.25645044445991516, -0.08603475242853165, 0.8354323506355286, 0.0009946906939148903, 0.017377126961946487, -0.006411560345441103, 0.2473064661026001, -0.27834561467170715, 0.09327322244644165, 0.7941226959228516, -0.006207828875631094, 0.011960256844758987, 0.003978762775659561]} +{"t": 2.0102, "q": [-0.1522100865840912, -0.028015602380037308, 0.035890281200408936, 0.29870015382766724, -0.14590327441692352, 0.01972450688481331, -0.16241958737373352, 0.03122503124177456, 0.01562834158539772, 0.30585020780563354, -0.15862858295440674, -0.027941368520259857, 0.008356543257832527, 0.0046279276721179485, 0.005990695673972368, 0.2561148703098297, 0.25645044445991516, -0.08603475242853165, 0.8354083299636841, 0.0009827064350247383, 0.017365142703056335, -0.006399576086550951, 0.24565264582633972, -0.27850142121315, 0.09306949377059937, 0.7933077812194824, -0.006147907581180334, 0.011720572598278522, 0.003978762775659561]} +{"t": 2.0268, "q": [-0.15223565697669983, -0.02802412584424019, 0.03574296832084656, 0.298717200756073, -0.14590758085250854, 0.0197315476834774, -0.1623428761959076, 0.031216509640216827, 0.015521206893026829, 0.30585020780563354, -0.1586458683013916, -0.027983710169792175, 0.008785083889961243, 0.004673370625823736, 0.00591374933719635, 0.2557673454284668, 0.2564983665943146, -0.08592689782381058, 0.8354083299636841, 0.0009707222343422472, 0.01732918992638588, -0.006411560345441103, 0.24381905794143677, -0.27864521741867065, 0.09276989102363586, 0.7927804589271545, -0.006052033975720406, 0.011504855938255787, 0.003978762775659561]} +{"t": 2.0436, "q": [-0.15219303965568542, -0.02803264744579792, 0.03574296832084656, 0.2987086772918701, -0.1459161937236786, 0.019745629280805588, -0.16230027377605438, 0.031207986176013947, 0.015481031499803066, 0.3058331608772278, -0.15867581963539124, -0.028004970401525497, 0.008959177881479263, 0.004688497167080641, 0.00589450728148222, 0.25557559728622437, 0.25651034712791443, -0.08590292930603027, 0.8353843688964844, 0.0009946906939148903, 0.017353158444166183, -0.006399576086550951, 0.24266858398914337, -0.2786811590194702, 0.09251821786165237, 0.7918217182159424, -0.005968144163489342, 0.011025487445294857, 0.003990747034549713]} +{"t": 2.0604, "q": [-0.15218451619148254, -0.028015602380037308, 0.03574296832084656, 0.2986745834350586, -0.14591188728809357, 0.019738588482141495, -0.1622406244277954, 0.03122503124177456, 0.015507815405726433, 0.30576497316360474, -0.158697247505188, -0.028026200830936432, 0.008959177881479263, 0.0046059442684054375, 0.0058033280074596405, 0.2556714713573456, 0.2565223276615143, -0.08590292930603027, 0.8354083299636841, 0.0009587380336597562, 0.01734117418527603, -0.006399576086550951, 0.24119451642036438, -0.2786571979522705, 0.09205083549022675, 0.7903596758842468, -0.005848302040249109, 0.01047421246767044, 0.003966778516769409]} +{"t": 2.0771, "q": [-0.15209077298641205, -0.028015602380037308, 0.035689402371644974, 0.29869163036346436, -0.1459161937236786, 0.019745629280805588, -0.16207869350910187, 0.03122503124177456, 0.015414072200655937, 0.3057905435562134, -0.1587228924036026, -0.028040409088134766, 0.0089993542060256, 0.004335298202931881, 0.0056499517522752285, 0.2556474804878235, 0.2564983665943146, -0.08596284687519073, 0.8354083299636841, 0.0009827064350247383, 0.017353158444166183, -0.006411560345441103, 0.23978038132190704, -0.27864521741867065, 0.09145162254571915, 0.7891372442245483, -0.005716475658118725, 0.010234528221189976, 0.003990747034549713]} +{"t": 2.0938, "q": [-0.15214191377162933, -0.028015602380037308, 0.035528700798749924, 0.2986319661140442, -0.1459290236234665, 0.019738681614398956, -0.1620616465806961, 0.03122503124177456, 0.015293545089662075, 0.3057394027709961, -0.15881289541721344, -0.028118377551436424, 0.009079704992473125, 0.0037702186964452267, 0.005405052565038204, 0.25563549995422363, 0.25647440552711487, -0.08598681539297104, 0.8354083299636841, 0.0009707222343422472, 0.017365142703056335, -0.006399576086550951, 0.23882164061069489, -0.27869316935539246, 0.09067264944314957, 0.7879268527030945, -0.005608617328107357, 0.010090718045830727, 0.003990747034549713]} +{"t": 2.1105, "q": [-0.1521163433790207, -0.02803264744579792, 0.035394780337810516, 0.29864901304244995, -0.1459161937236786, 0.019745629280805588, -0.16195939481258392, 0.03122503124177456, 0.015106058679521084, 0.3057308793067932, -0.1588258594274521, -0.028139634057879448, 0.009133272804319859, 0.0028583225794136524, 0.0051507847383618355, 0.2557433545589447, 0.25651034712791443, -0.08597483485937119, 0.8354083299636841, 0.0009707222343422472, 0.017353158444166183, -0.006411560345441103, 0.23773106932640076, -0.2790047526359558, 0.08958208560943604, 0.7868362665176392, -0.0055486964993178844, 0.009934922680258751, 0.003978762775659561]} +{"t": 2.1273, "q": [-0.15213339030742645, -0.02802412584424019, 0.03527425229549408, 0.2986319661140442, -0.145916149020195, 0.019731594249606133, -0.16195087134838104, 0.03122503124177456, 0.01505249086767435, 0.3057308793067932, -0.15884314477443695, -0.028167972341179848, 0.009106488898396492, 0.0016976373735815287, 0.004882265347987413, 0.25585123896598816, 0.25655829906463623, -0.08597483485937119, 0.8354083299636841, 0.0009827064350247383, 0.017365142703056335, -0.006399576086550951, 0.236125186085701, -0.27959197759628296, 0.08855143934488297, 0.7859614491462708, -0.0055127437226474285, 0.009743175469338894, 0.003966778516769409]} +{"t": 2.144, "q": [-0.1521078199148178, -0.028015602380037308, 0.035180509090423584, 0.2986149191856384, -0.14592471718788147, 0.019731631502509117, -0.16194234788417816, 0.03122503124177456, 0.014918571338057518, 0.3057394027709961, -0.1588776856660843, -0.028224648907780647, 0.00906631350517273, 0.0003849271743092686, 0.004680420737713575, 0.2559471130371094, 0.25658226013183594, -0.08591490983963013, 0.8354083299636841, 0.0009946906939148903, 0.017365142703056335, -0.006399576086550951, 0.23442342877388, -0.2802870571613312, 0.0875926986336708, 0.7851704955101013, -0.005416869651526213, 0.009527458809316158, 0.003966778516769409]} +{"t": 2.1607, "q": [-0.15209929645061493, -0.028007080778479576, 0.035019807517528534, 0.29864901304244995, -0.14591188728809357, 0.019738588482141495, -0.16191677749156952, 0.03123355284333229, 0.014731084927916527, 0.3057308793067932, -0.15892952680587769, -0.028309663757681847, 0.009052921086549759, -0.0011019485536962748, 0.004463739227503538, 0.25595909357070923, 0.25655829906463623, -0.08592689782381058, 0.8354203701019287, 0.0009707222343422472, 0.017365142703056335, -0.006435528863221407, 0.23275762796401978, -0.2809222340583801, 0.08676578849554062, 0.7843555808067322, -0.005368933081626892, 0.00938364863395691, 0.003966778516769409]} +{"t": 2.1775, "q": [-0.15205669403076172, -0.028015602380037308, 0.0348055362701416, 0.29864901304244995, -0.14590327441692352, 0.01972450688481331, -0.16184860467910767, 0.03122503124177456, 0.014570382423698902, 0.3057308793067932, -0.15897703170776367, -0.02838759496808052, 0.00906631350517273, -0.002905643079429865, 0.0042653135024011135, 0.2560429871082306, 0.2565223276615143, -0.08593887835741043, 0.8353963494300842, 0.0009946906939148903, 0.017377126961946487, -0.006411560345441103, 0.23097197711467743, -0.2815813422203064, 0.08598681539297104, 0.7836724519729614, -0.005332980304956436, 0.009251821786165237, 0.003966778516769409]} +{"t": 2.1942, "q": [-0.15208224952220917, -0.02802412584424019, 0.034564483910799026, 0.29864901304244995, -0.14590758085250854, 0.0197315476834774, -0.1617889404296875, 0.031242074444890022, 0.014315936714410782, 0.305747926235199, -0.15899431705474854, -0.02841593325138092, 0.009106488898396492, -0.004611603450030088, 0.00419548200443387, 0.2560669481754303, 0.25655829906463623, -0.08596284687519073, 0.8354323506355286, 0.0009827064350247383, 0.01734117418527603, -0.006399576086550951, 0.22966569662094116, -0.28208470344543457, 0.08525577932596207, 0.7829174399375916, -0.005249090492725372, 0.009155947715044022, 0.003966778516769409]} +{"t": 2.2109, "q": [-0.15209077298641205, -0.028015602380037308, 0.0342564694583416, 0.29864901304244995, -0.14590758085250854, 0.0197315476834774, -0.16171224415302277, 0.031259119510650635, 0.014061490073800087, 0.305747926235199, -0.1590675413608551, -0.028508149087429047, 0.009079704992473125, -0.0064387135207653046, 0.004038754850625992, 0.25600701570510864, 0.25655829906463623, -0.08592689782381058, 0.8354083299636841, 0.0009827064350247383, 0.017353158444166183, -0.006399576086550951, 0.22841933369636536, -0.2823243737220764, 0.08432100713253021, 0.7821025252342224, -0.0051891696639359, 0.00906007457524538, 0.003978762775659561]} +{"t": 2.2277, "q": [-0.15209929645061493, -0.02802412584424019, 0.03398863226175308, 0.2986745834350586, -0.14590327441692352, 0.01972450688481331, -0.16166111826896667, 0.031267642974853516, 0.013807044364511967, 0.30572235584259033, -0.15911072492599487, -0.028578998520970345, 0.009106488898396492, -0.008372717536985874, 0.0039374688640236855, 0.2560189962387085, 0.2565463185310364, -0.08592689782381058, 0.8354083299636841, 0.0009946906939148903, 0.017353158444166183, -0.006399576086550951, 0.2271130532026291, -0.2824562191963196, 0.08347012847661972, 0.7811078429222107, -0.00512924836948514, 0.008988169021904469, 0.003966778516769409]} +{"t": 2.2444, "q": [-0.15214191377162933, -0.027998559176921844, 0.03392167016863823, 0.2986660599708557, -0.14591608941555023, 0.019717548042535782, -0.16166111826896667, 0.031267642974853516, 0.013673125766217709, 0.3057308793067932, -0.15915372967720032, -0.028621619567275047, 0.009093097411096096, -0.010315881110727787, 0.0035612736828625202, 0.2561148703098297, 0.2565343379974365, -0.08595086634159088, 0.8354203701019287, 0.0010066749528050423, 0.017365142703056335, -0.006399576086550951, 0.22595058381557465, -0.28249216079711914, 0.08281099796295166, 0.7799813151359558, -0.00506932707503438, 0.008952216245234013, 0.003978762775659561]} +{"t": 2.2612, "q": [-0.15217599272727966, -0.028007080778479576, 0.033881496638059616, 0.29864901304244995, -0.14590758085250854, 0.0197315476834774, -0.16166111826896667, 0.031267642974853516, 0.013592774048447609, 0.3057308793067932, -0.159205362200737, -0.02867841348052025, 0.009119881317019463, -0.012341262772679329, 0.0029627280309796333, 0.25609090924263, 0.25651034712791443, -0.08596284687519073, 0.8354323506355286, 0.0009946906939148903, 0.017365142703056335, -0.006411560345441103, 0.2250397801399231, -0.28246819972991943, 0.0821518674492836, 0.7789027094841003, -0.005009406246244907, 0.008868326433002949, 0.003978762775659561]} +{"t": 2.2779, "q": [-0.1521589607000351, -0.027998559176921844, 0.03377436101436615, 0.29865753650665283, -0.14590327441692352, 0.01972450688481331, -0.16162702441215515, 0.031267642974853516, 0.013499030843377113, 0.3057308793067932, -0.15930365025997162, -0.028686141595244408, 0.009119881317019463, -0.014220361597836018, 0.0023000643122941256, 0.25607892870903015, 0.2565463185310364, -0.08595086634159088, 0.8354203701019287, 0.0009827064350247383, 0.017377126961946487, -0.006411560345441103, 0.22438064217567444, -0.28242024779319763, 0.08156463503837585, 0.7781237363815308, -0.0049734534695744514, 0.008772453293204308, 0.003966778516769409]} +{"t": 2.2947, "q": [-0.1521163433790207, -0.028015602380037308, 0.033694010227918625, 0.29865753650665283, -0.14592045545578003, 0.019738635048270226, -0.16149918735027313, 0.031259119510650635, 0.013405287638306618, 0.3056882917881012, -0.159418523311615, -0.028623441234230995, 0.009186840616166592, -0.016128335148096085, 0.0017626330954954028, 0.25612685084342957, 0.2565343379974365, -0.08592689782381058, 0.8354323506355286, 0.0009946906939148903, 0.017365142703056335, -0.006411560345441103, 0.22394922375679016, -0.2824082672595978, 0.08115717023611069, 0.7769612669944763, -0.0049494849517941475, 0.008652610704302788, 0.003978762775659561]} +{"t": 2.3114, "q": [-0.1520226001739502, -0.028015602380037308, 0.033680617809295654, 0.2986660599708557, -0.14592908322811127, 0.019752725958824158, -0.16126909852027893, 0.031250596046447754, 0.013378503732383251, 0.3056541979312897, -0.15946947038173676, -0.028581466525793076, 0.00933415163308382, -0.01801327057182789, 0.0015266704140231013, 0.25610288977622986, 0.25655829906463623, -0.08593887835741043, 0.8354203701019287, 0.0009946906939148903, 0.017377126961946487, -0.006411560345441103, 0.2235657274723053, -0.2824322283267975, 0.08061788231134415, 0.7757149338722229, -0.0049375006929039955, 0.008532768115401268, 0.003978762775659561]} +{"t": 2.3282, "q": [-0.15194590389728546, -0.02802412584424019, 0.03364044055342674, 0.29865753650665283, -0.14594189822673798, 0.01974576711654663, -0.16104751825332642, 0.031259119510650635, 0.013365112245082855, 0.3055945336818695, -0.1594991385936737, -0.028546389192342758, 0.009427894838154316, -0.01989716850221157, 0.0016268823528662324, 0.2561148703098297, 0.2565942406654358, -0.08590292930603027, 0.8354083299636841, 0.0009827064350247383, 0.017365142703056335, -0.006399576086550951, 0.22300246357917786, -0.2824322283267975, 0.08006660640239716, 0.7747681736946106, -0.0049255164340138435, 0.008329036645591259, 0.003990747034549713]} +{"t": 2.345, "q": [-0.15195442736148834, -0.02802412584424019, 0.03364044055342674, 0.29865753650665283, -0.14594189822673798, 0.01974576711654663, -0.16099639236927032, 0.031267642974853516, 0.013338328339159489, 0.30557748675346375, -0.15950345993041992, -0.02855348028242588, 0.00958859734237194, -0.021841589361429214, 0.0016656575025990605, 0.25609090924263, 0.2566421926021576, -0.08590292930603027, 0.8354083299636841, 0.0009707222343422472, 0.017377126961946487, -0.006399576086550951, 0.22253507375717163, -0.2823962867259979, 0.07965914160013199, 0.7738813161849976, -0.0049135321751236916, 0.008041415363550186, 0.004002731293439865]} +{"t": 2.3617, "q": [-0.15198850631713867, -0.02802412584424019, 0.03360026702284813, 0.29864901304244995, -0.14594189822673798, 0.01974576711654663, -0.16099639236927032, 0.031267642974853516, 0.013365112245082855, 0.3055519163608551, -0.15949903428554535, -0.028532283380627632, 0.009709124453365803, -0.0240737684071064, 0.0016022302443161607, 0.25612685084342957, 0.25665417313575745, -0.08585499227046967, 0.8354323506355286, 0.0009946906939148903, 0.01738911122083664, -0.006387591827660799, 0.22213959693908691, -0.2823243737220764, 0.0794074758887291, 0.7732102274894714, -0.004889564123004675, 0.007789746392518282, 0.003966778516769409]} +{"t": 2.3784, "q": [-0.15200555324554443, -0.028041169047355652, 0.03365383297204971, 0.29864048957824707, -0.1459462195634842, 0.019752809777855873, -0.1610049158334732, 0.031267642974853516, 0.013351719826459885, 0.30553486943244934, -0.15950748324394226, -0.028518227860331535, 0.00973590835928917, -0.02611016482114792, 0.0012195726158097386, 0.25612685084342957, 0.256690114736557, -0.08586697280406952, 0.8354323506355286, 0.0009707222343422472, 0.017377126961946487, -0.006399576086550951, 0.22197182476520538, -0.282276451587677, 0.07934755831956863, 0.7727788090705872, -0.004877579864114523, 0.007597998715937138, 0.003990747034549713]} +{"t": 2.3951, "q": [-0.1519714742898941, -0.02803264744579792, 0.03356008976697922, 0.29864901304244995, -0.1459505259990692, 0.019759859889745712, -0.16090264916419983, 0.031259119510650635, 0.013284760527312756, 0.30552634596824646, -0.15951602160930634, -0.02851828746497631, 0.009776083752512932, -0.02824537456035614, 0.0007526178960688412, 0.2561388313770294, 0.25670209527015686, -0.08581903576850891, 0.8354323506355286, 0.0009827064350247383, 0.017377126961946487, -0.006387591827660799, 0.22186395525932312, -0.28208470344543457, 0.07928763329982758, 0.7723353505134583, -0.004841627087444067, 0.007274424657225609, 0.003990747034549713]} +{"t": 2.4119, "q": [-0.15184363722801208, -0.02803264744579792, 0.033533304929733276, 0.29864901304244995, -0.1459505259990692, 0.019759859889745712, -0.16074073314666748, 0.031250596046447754, 0.013231192715466022, 0.30548375844955444, -0.15953300893306732, -0.028504298999905586, 0.009762692265212536, -0.030183574184775352, 0.0004011888522654772, 0.2561388313770294, 0.25670209527015686, -0.08584300428628922, 0.8354203701019287, 0.0009707222343422472, 0.01738911122083664, -0.006387591827660799, 0.22173213958740234, -0.2819288969039917, 0.07923969626426697, 0.7717601656913757, -0.004805674310773611, 0.006962834857404232, 0.004002731293439865]} +{"t": 2.4287, "q": [-0.15162205696105957, -0.02802412584424019, 0.03346634656190872, 0.29864901304244995, -0.1459505259990692, 0.019759859889745712, -0.16044245660305023, 0.031250596046447754, 0.013204408809542656, 0.30544114112854004, -0.1595328152179718, -0.028476078063249588, 0.009776083752512932, -0.03232533857226372, 0.00014526212180498987, 0.25615084171295166, 0.2566661536693573, -0.08587896078824997, 0.8354323506355286, 0.0009946906939148903, 0.017377126961946487, -0.006399576086550951, 0.22155237197875977, -0.2817970812320709, 0.07922771573066711, 0.7711009979248047, -0.004685832187533379, 0.006411560345441103, 0.004014715552330017]} +{"t": 2.4454, "q": [-0.15154536068439484, -0.02803264744579792, 0.03339938819408417, 0.29865753650665283, -0.1459505259990692, 0.019759859889745712, -0.16029757261276245, 0.031250596046447754, 0.013057098723948002, 0.3054070472717285, -0.15953703224658966, -0.028469054028391838, 0.009802867658436298, -0.0343925878405571, -0.00032409842242486775, 0.2561388313770294, 0.25665417313575745, -0.08587896078824997, 0.8354563117027283, 0.0009827064350247383, 0.01738911122083664, -0.006411560345441103, 0.2213726043701172, -0.28173714876174927, 0.0791078731417656, 0.7705017924308777, -0.004649879410862923, 0.005920207127928734, 0.004002731293439865]} +{"t": 2.4621, "q": [-0.15130674839019775, -0.028041169047355652, 0.033345818519592285, 0.2986745834350586, -0.1459505259990692, 0.019759859889745712, -0.15996521711349487, 0.031267642974853516, 0.012976747006177902, 0.3053814768791199, -0.159554123878479, -0.02846917137503624, 0.009843043051660061, -0.036261312663555145, -0.0004347778740338981, 0.2561388313770294, 0.256690114736557, -0.08585499227046967, 0.8354323506355286, 0.0009707222343422472, 0.01740109547972679, -0.006411560345441103, 0.2211209386587143, -0.28173714876174927, 0.07902397960424423, 0.7697467803955078, -0.004589958116412163, 0.0054887752048671246, 0.004014715552330017]} +{"t": 2.4788, "q": [-0.15102551877498627, -0.02802412584424019, 0.03330564498901367, 0.2986745834350586, -0.14594627916812897, 0.019766854122281075, -0.15964989364147186, 0.031259119510650635, 0.012949963100254536, 0.30533885955810547, -0.1595708131790161, -0.028412846848368645, 0.009896610863506794, -0.03819790482521057, -0.0005442005349323153, 0.25617480278015137, 0.25670209527015686, -0.08578308671712875, 0.8354323506355286, 0.0009946906939148903, 0.017413079738616943, -0.006411560345441103, 0.22078537940979004, -0.28177309036254883, 0.07891612499952316, 0.7688479423522949, -0.004482100252062082, 0.0049375006929039955, 0.004002731293439865]} +{"t": 2.4956, "q": [-0.150786891579628, -0.028041169047355652, 0.03325207531452179, 0.2986745834350586, -0.14595915377140045, 0.0197739414870739, -0.15920674800872803, 0.031250596046447754, 0.012869611382484436, 0.30525365471839905, -0.15957926213741302, -0.028398791328072548, 0.009963570162653923, -0.039961252361536026, -0.0007815822027623653, 0.25617480278015137, 0.2567380666732788, -0.08579506725072861, 0.8354563117027283, 0.0009946906939148903, 0.01740109547972679, -0.006399576086550951, 0.22036592662334442, -0.28177309036254883, 0.07874834537506104, 0.7676135897636414, -0.004326305352151394, 0.004374242387712002, 0.004002731293439865]} +{"t": 2.5123, "q": [-0.15037783980369568, -0.028049692511558533, 0.033211901783943176, 0.2986745834350586, -0.1459677666425705, 0.01978803239762783, -0.15868689119815826, 0.031242074444890022, 0.01284282747656107, 0.3051769435405731, -0.15959635376930237, -0.028398917987942696, 0.009976962581276894, -0.041482046246528625, -0.0009576950105838478, 0.2561867833137512, 0.2567380666732788, -0.08575911819934845, 0.8354682922363281, 0.0010186590952798724, 0.01738911122083664, -0.006399576086550951, 0.21995846927165985, -0.28182104229927063, 0.07834088057279587, 0.766295313835144, -0.004230431281030178, 0.0036072516813874245, 0.004026699811220169]} +{"t": 2.529, "q": [-0.1498238891363144, -0.028049692511558533, 0.033171724528074265, 0.2986660599708557, -0.14599353075027466, 0.019802214577794075, -0.15806478261947632, 0.031242074444890022, 0.012829435989260674, 0.30503207445144653, -0.15962158143520355, -0.02834264375269413, 0.01007070578634739, -0.042920131236314774, -0.0012340603861957788, 0.2561987638473511, 0.2567380666732788, -0.08583102375268936, 0.8354563117027283, 0.0009946906939148903, 0.01738911122083664, -0.006411560345441103, 0.2194191813468933, -0.2818330228328705, 0.07810119539499283, 0.7653365731239319, -0.004122573416680098, 0.0028522456996142864, 0.004014715552330017]} +{"t": 2.5458, "q": [-0.1493636965751648, -0.028075257316231728, 0.033171724528074265, 0.29865753650665283, -0.14602360129356384, 0.019823430106043816, -0.15758754312992096, 0.031242074444890022, 0.012869611382484436, 0.304955393075943, -0.15965968370437622, -0.028293529525399208, 0.010151056572794914, -0.04420134797692299, -0.0017925241263583302, 0.25617480278015137, 0.25672608613967896, -0.08573514968156815, 0.8354682922363281, 0.0009707222343422472, 0.01740109547972679, -0.006399576086550951, 0.21895179152488708, -0.2819288969039917, 0.07788547873497009, 0.7647852897644043, -0.004038684070110321, 0.002265018643811345, 0.004014715552330017]} +{"t": 2.5625, "q": [-0.1487671583890915, -0.02809230238199234, 0.033171724528074265, 0.2986660599708557, -0.14603227376937866, 0.019851557910442352, -0.1569313406944275, 0.031242074444890022, 0.01285621989518404, 0.30488720536231995, -0.15968924760818481, -0.028244346380233765, 0.010204624384641647, -0.0454523041844368, -0.0023607835173606873, 0.2561628222465515, 0.25675004720687866, -0.085747130215168, 0.8354682922363281, 0.0009707222343422472, 0.01740109547972679, -0.006411560345441103, 0.21838854253292084, -0.2819528579711914, 0.0776098445057869, 0.76435387134552, -0.004002731293439865, 0.001689775730483234, 0.004002731293439865]} +{"t": 2.5793, "q": [-0.14814503490924835, -0.02810082398355007, 0.03313155099749565, 0.298572301864624, -0.1460537165403366, 0.019858691841363907, -0.15627513825893402, 0.031242074444890022, 0.01285621989518404, 0.30479344725608826, -0.1597190946340561, -0.028237489983439445, 0.01025819219648838, -0.04667399078607559, -0.0030549897346645594, 0.2561867833137512, 0.25675004720687866, -0.0857231616973877, 0.835480272769928, 0.0009946906939148903, 0.017413079738616943, -0.006411560345441103, 0.2178252786397934, -0.28194087743759155, 0.07753793895244598, 0.7640782594680786, -0.003966778516769409, 0.0011624698527157307, 0.003990747034549713]} +{"t": 2.596, "q": [-0.1476166695356369, -0.02810082398355007, 0.033171724528074265, 0.29851266741752625, -0.14610075950622559, 0.01983788050711155, -0.1557382494211197, 0.03123355284333229, 0.012896395288407803, 0.304810494184494, -0.15977005660533905, -0.028195515275001526, 0.010311760008335114, -0.0476231724023819, -0.003703935770317912, 0.25617480278015137, 0.2567979693412781, -0.08573514968156815, 0.8355162143707275, 0.0009587380336597562, 0.01740109547972679, -0.006399576086550951, 0.21736988425254822, -0.281904935836792, 0.07746603339910507, 0.763670802116394, -0.003894873196259141, 0.0005872270558029413, 0.004014715552330017]} +{"t": 2.6127, "q": [-0.1468411535024643, -0.028117869049310684, 0.03314494341611862, 0.2984870970249176, -0.14611800014972687, 0.019866053014993668, -0.15487751364707947, 0.031216509640216827, 0.012883003801107407, 0.30480197072029114, -0.15983819961547852, -0.028167765587568283, 0.010418894700706005, -0.04849633947014809, -0.004274520091712475, 0.2561628222465515, 0.25682196021080017, -0.08573514968156815, 0.8355042338371277, 0.0009707222343422472, 0.017413079738616943, -0.006399576086550951, 0.21680662035942078, -0.2818330228328705, 0.07746603339910507, 0.7631195187568665, -0.0036791572347283363, 0.00011984225420746952, 0.004002731293439865]} +{"t": 2.6295, "q": [-0.14604860544204712, -0.028109345585107803, 0.03311815857887268, 0.29846152663230896, -0.14615674316883087, 0.01991540566086769, -0.15401677787303925, 0.03122503124177456, 0.012883003801107407, 0.30479344725608826, -0.15996170043945312, -0.028119228780269623, 0.0105126379057765, -0.04938492178916931, -0.004884664434939623, 0.2561987638473511, 0.2567979693412781, -0.08569919317960739, 0.8355162143707275, 0.0009946906939148903, 0.017413079738616943, -0.006411560345441103, 0.21629129350185394, -0.28182104229927063, 0.07740610837936401, 0.7626520991325378, -0.00355931487865746, -0.00032357408781535923, 0.004002731293439865]} +{"t": 2.6462, "q": [-0.14502593874931335, -0.028109345585107803, 0.03307798132300377, 0.29838481545448303, -0.14621682465076447, 0.01994381658732891, -0.1528492420911789, 0.03122503124177456, 0.012829435989260674, 0.3047593832015991, -0.16009002923965454, -0.028148340061306953, 0.01065994892269373, -0.050007641315460205, -0.005298304371535778, 0.2561628222465515, 0.25682196021080017, -0.08567522466182709, 0.8355401754379272, 0.0009707222343422472, 0.017413079738616943, -0.006399576086550951, 0.21574002504348755, -0.28184500336647034, 0.07737015932798386, 0.7621967196464539, -0.0033076461404561996, -0.0007070692954584956, 0.003990747034549713]} +{"t": 2.6629, "q": [-0.14373058080673218, -0.028109345585107803, 0.033024415373802185, 0.2982655167579651, -0.14627692103385925, 0.019972210749983788, -0.15169024467468262, 0.03122503124177456, 0.012789260596036911, 0.3046741485595703, -0.16024397313594818, -0.028177618980407715, 0.010753692127764225, -0.05067602917551994, -0.005753248929977417, 0.2561867833137512, 0.25682196021080017, -0.08566324412822723, 0.8355162143707275, 0.0010066749528050423, 0.017413079738616943, -0.006411560345441103, 0.21522469818592072, -0.2818090617656708, 0.07725031673908234, 0.7617892622947693, -0.002960103563964367, -0.0010665960144251585, 0.003978762775659561]} +{"t": 2.6798, "q": [-0.14223068952560425, -0.028126390650868416, 0.033024415373802185, 0.29809507727622986, -0.14635854959487915, 0.02003582939505577, -0.15035226941108704, 0.03123355284333229, 0.012829435989260674, 0.30464857816696167, -0.16044436395168304, -0.028129611164331436, 0.010860827751457691, -0.051230501383543015, -0.006132454611361027, 0.2562227249145508, 0.2568339407444, -0.08567522466182709, 0.8355401754379272, 0.0009827064350247383, 0.017413079738616943, -0.006411560345441103, 0.21470938622951508, -0.2817970812320709, 0.07722634822130203, 0.761501669883728, -0.002636529505252838, -0.0014381069922819734, 0.004038684070110321]} +{"t": 2.6965, "q": [-0.1408330649137497, -0.028109345585107803, 0.033037807792425156, 0.29792463779449463, -0.14650888741016388, 0.02014194056391716, -0.14878419041633606, 0.031242074444890022, 0.012816044501960278, 0.30465710163116455, -0.1607099324464798, -0.02824430726468563, 0.01092778705060482, -0.05170910060405731, -0.006470647174865007, 0.2564983665943146, 0.2568459212779999, -0.08562728762626648, 0.8355880975723267, 0.0009827064350247383, 0.017413079738616943, -0.006387591827660799, 0.2142539769411087, -0.28173714876174927, 0.07719039171934128, 0.7611181735992432, -0.002217081608250737, -0.0018335864879190922, 0.004014715552330017]} +{"t": 2.7133, "q": [-0.13956326246261597, -0.028117869049310684, 0.033011022955179214, 0.29790759086608887, -0.14662905037403107, 0.020198747515678406, -0.1477104127407074, 0.03122503124177456, 0.012802652083337307, 0.3047593832015991, -0.16112099587917328, -0.02840234525501728, 0.011021530255675316, -0.052257657051086426, -0.007086613215506077, 0.25670209527015686, 0.2568459212779999, -0.08560331910848618, 0.835564136505127, 0.0009587380336597562, 0.017413079738616943, -0.006399576086550951, 0.21382254362106323, -0.2817251682281494, 0.07713047415018082, 0.760758638381958, -0.0016298546688631177, -0.002157160546630621, 0.004014715552330017]} +{"t": 2.73, "q": [-0.13897524774074554, -0.028117869049310684, 0.032997630536556244, 0.2979416847229004, -0.14665918052196503, 0.020234007388353348, -0.1471138596534729, 0.03122503124177456, 0.012762476690113544, 0.3048616349697113, -0.16128750145435333, -0.02839643880724907, 0.011316152289509773, -0.052739836275577545, -0.007948832586407661, 0.2567620277404785, 0.2568938434123993, -0.08560331910848618, 0.835624098777771, 0.0009946906939148903, 0.01740109547972679, -0.006399576086550951, 0.2133791297674179, -0.2817251682281494, 0.0770585685968399, 0.7604110836982727, -0.0011265171924605966, -0.0024927188642323017, 0.004026699811220169]} +{"t": 2.7467, "q": [-0.13874514400959015, -0.028109345585107803, 0.032997630536556244, 0.2979331612586975, -0.1466592401266098, 0.0202480535954237, -0.1469775140285492, 0.031242074444890022, 0.012695517390966415, 0.3049468696117401, -0.1613130271434784, -0.028382500633597374, 0.01158398948609829, -0.053328659385442734, -0.008910179138183594, 0.2567859888076782, 0.2569417953491211, -0.08560331910848618, 0.835624098777771, 0.0009946906939148903, 0.017413079738616943, -0.006399576086550951, 0.21274396777153015, -0.28173714876174927, 0.07693872600793839, 0.7601234316825867, -0.0007190534961409867, -0.0028043086640536785, 0.004038684070110321]} +{"t": 2.7635, "q": [-0.1386769711971283, -0.02810082398355007, 0.03290388733148575, 0.2979757785797119, -0.14664198458194733, 0.02021987922489643, -0.14687524735927582, 0.03122503124177456, 0.012655341066420078, 0.3050576448440552, -0.16130457818508148, -0.02839655615389347, 0.011744692921638489, -0.05392998456954956, -0.009486122988164425, 0.2567620277404785, 0.2569657564163208, -0.08550744503736496, 0.8356000781059265, 0.0009827064350247383, 0.017413079738616943, -0.006399576086550951, 0.21197697520256042, -0.28173714876174927, 0.0767349973320961, 0.7596321105957031, -0.0003834952076431364, -0.003091930178925395, 0.004038684070110321]} +{"t": 2.7802, "q": [-0.13868549466133118, -0.028117869049310684, 0.032836928963661194, 0.29800984263420105, -0.14662054181098938, 0.020212747156620026, -0.14684967696666718, 0.031242074444890022, 0.012534813955426216, 0.3051258325576782, -0.16129614412784576, -0.02841060422360897, 0.011865219101309776, -0.05435561388731003, -0.00979971420019865, 0.25672608613967896, 0.2569657564163208, -0.0854714959859848, 0.8356000781059265, 0.0009827064350247383, 0.017413079738616943, -0.006399576086550951, 0.21135379374027252, -0.28177309036254883, 0.07648332417011261, 0.7588770985603333, -0.00015579492901451886, -0.0033435989171266556, 0.004062652587890625]} +{"t": 2.7969, "q": [-0.1387195736169815, -0.028109345585107803, 0.03282353654503822, 0.2980354130268097, -0.1466161161661148, 0.02017761580646038, -0.14681558310985565, 0.031242074444890022, 0.01244107075035572, 0.30521103739738464, -0.16128769516944885, -0.028424659743905067, 0.011945570819079876, -0.054818958044052124, -0.010099968872964382, 0.2567979693412781, 0.2569417953491211, -0.08551943302154541, 0.8356000781059265, 0.0009946906939148903, 0.017413079738616943, -0.006387591827660799, 0.21075458824634552, -0.2818330228328705, 0.07621967047452927, 0.7580022215843201, 1.1984225238848012e-05, -0.0036432044580578804, 0.004062652587890625]} +{"t": 2.8136, "q": [-0.13865140080451965, -0.028109345585107803, 0.03278335928916931, 0.29806098341941833, -0.14659887552261353, 0.020149441435933113, -0.1467048078775406, 0.031242074444890022, 0.012427679263055325, 0.30525365471839905, -0.1612706184387207, -0.028424542397260666, 0.012012530118227005, -0.05527470260858536, -0.010395141318440437, 0.2569657564163208, 0.2569178342819214, -0.08553141355514526, 0.8356480598449707, 0.0009707222343422472, 0.017413079738616943, -0.006399576086550951, 0.2102632373571396, -0.2818569839000702, 0.0758122056722641, 0.7572592496871948, 0.00027563716867007315, -0.003954794257879257, 0.004062652587890625]} +{"t": 2.8304, "q": [-0.13860879838466644, -0.028109345585107803, 0.03275657817721367, 0.2981121242046356, -0.14656880497932434, 0.020128225907683372, -0.14658549427986145, 0.03122503124177456, 0.012360719963908195, 0.30530479550361633, -0.16126658022403717, -0.028459785506129265, 0.012119665741920471, -0.055821843445301056, -0.010780900716781616, 0.25718146562576294, 0.2569178342819214, -0.08550744503736496, 0.83570796251297, 0.0009827064350247383, 0.017413079738616943, -0.006399576086550951, 0.20999957621097565, -0.2818809747695923, 0.07541672885417938, 0.7565401792526245, 0.00032357408781535923, -0.00424241553992033, 0.00407463638111949]} +{"t": 2.8471, "q": [-0.13853208720684052, -0.02810082398355007, 0.03271640092134476, 0.2981206476688385, -0.14656449854373932, 0.02012118510901928, -0.1464320868253708, 0.03123355284333229, 0.012307152152061462, 0.30533885955810547, -0.16125382483005524, -0.02846675179898739, 0.012240192852914333, -0.05643758922815323, -0.011241940781474113, 0.2574091851711273, 0.2569417953491211, -0.08553141355514526, 0.835851788520813, 0.0009827064350247383, 0.017413079738616943, -0.006399576086550951, 0.20987974107265472, -0.281904935836792, 0.07512910664081573, 0.755833089351654, 0.0004074636672157794, -0.004589958116412163, 0.004122573416680098]} +{"t": 2.8638, "q": [-0.13849800825119019, -0.028117869049310684, 0.032676223665475845, 0.29810360074043274, -0.14656880497932434, 0.020128225907683372, -0.14640653133392334, 0.031242074444890022, 0.012280368246138096, 0.30534738302230835, -0.16125382483005524, -0.02846675179898739, 0.012400895357131958, -0.05704641714692116, -0.0117948642000556, 0.2575889229774475, 0.2570376694202423, -0.0854714959859848, 0.8359715938568115, 0.0009946906939148903, 0.017413079738616943, -0.006387591827660799, 0.20981980860233307, -0.281904935836792, 0.07498529553413391, 0.7551380395889282, 0.000431432097684592, -0.00490154791623354, 0.004098604898899794]} +{"t": 2.8806, "q": [-0.13837017118930817, -0.028109345585107803, 0.032703008502721786, 0.29810360074043274, -0.14656880497932434, 0.020128225907683372, -0.14637243747711182, 0.031242074444890022, 0.012307152152061462, 0.30535590648651123, -0.16125382483005524, -0.02846675179898739, 0.012574990279972553, -0.0576850101351738, -0.01228136382997036, 0.2577207684516907, 0.2570855915546417, -0.0854475274682045, 0.8360674977302551, 0.0009827064350247383, 0.017425063997507095, -0.006423544604331255, 0.20979584753513336, -0.2819288969039917, 0.07492537796497345, 0.7544309496879578, 0.0004793690168298781, -0.005273059010505676, 0.004110589157789946]} +{"t": 2.8975, "q": [-0.13841278851032257, -0.02810082398355007, 0.032689616084098816, 0.298086553812027, -0.14656880497932434, 0.020128225907683372, -0.14636391401290894, 0.031242074444890022, 0.012320543639361858, 0.30533885955810547, -0.16126225888729095, -0.02845270372927189, 0.012628557160496712, -0.058391693979501724, -0.012765858322381973, 0.2577207684516907, 0.25712156295776367, -0.08548347651958466, 0.8361034393310547, 0.0009827064350247383, 0.017413079738616943, -0.006387591827660799, 0.20977187156677246, -0.281904935836792, 0.07484148442745209, 0.7538317441940308, 0.0005153216770850122, -0.0055007594637572765, 0.0041345576755702496]} +{"t": 2.9142, "q": [-0.1383957415819168, -0.02810082398355007, 0.032703008502721786, 0.29809507727622986, -0.14656880497932434, 0.020128225907683372, -0.14635539054870605, 0.031242074444890022, 0.012360719963908195, 0.3053218424320221, -0.16126649081707, -0.02844567969441414, 0.012655341066420078, -0.05915142223238945, -0.01326669380068779, 0.2577087879180908, 0.2571095824241638, -0.0854714959859848, 0.836163341999054, 0.0009946906939148903, 0.017425063997507095, -0.006399576086550951, 0.2097359299659729, -0.28184500336647034, 0.07481751590967178, 0.7533643245697021, 0.0005512743373401463, -0.0057404437102377415, 0.0041465419344604015]} +{"t": 2.9309, "q": [-0.1383957415819168, -0.02810082398355007, 0.032703008502721786, 0.2980780303478241, -0.14657741785049438, 0.020142309367656708, -0.14634686708450317, 0.031242074444890022, 0.012360719963908195, 0.30530479550361633, -0.16127502918243408, -0.028445739299058914, 0.012722301296889782, -0.05989602580666542, -0.013767406344413757, 0.25767281651496887, 0.2570975720882416, -0.08548347651958466, 0.8361993432044983, 0.0010066749528050423, 0.017425063997507095, -0.006399576086550951, 0.20961607992649078, -0.2818090617656708, 0.07479354739189148, 0.752920925617218, 0.0005632585962302983, -0.005920207127928734, 0.0041585261933505535]} +{"t": 2.9477, "q": [-0.13837017118930817, -0.028109345585107803, 0.032703008502721786, 0.2980780303478241, -0.14658594131469727, 0.020128309726715088, -0.14634686708450317, 0.03122503124177456, 0.012400895357131958, 0.3052366077899933, -0.16127081215381622, -0.028452763333916664, 0.012749084271490574, -0.06080768629908562, -0.014362082816660404, 0.25764885544776917, 0.2570855915546417, -0.08550744503736496, 0.836223304271698, 0.0009946906939148903, 0.017437048256397247, -0.006411560345441103, 0.2094602882862091, -0.28182104229927063, 0.07479354739189148, 0.7525853514671326, 0.0006351639167405665, -0.00606401776894927, 0.0041824947111308575]} +{"t": 2.9644, "q": [-0.1384042650461197, -0.028109345585107803, 0.03271640092134476, 0.29806098341941833, -0.14659887552261353, 0.020149441435933113, -0.1463298350572586, 0.031250596046447754, 0.012387503869831562, 0.30516842007637024, -0.16126649081707, -0.02844567969441414, 0.012762476690113544, -0.06152178347110748, -0.014823704957962036, 0.2575889229774475, 0.2570975720882416, -0.08550744503736496, 0.8362352848052979, 0.0009946906939148903, 0.017425063997507095, -0.006399576086550951, 0.20934045314788818, -0.28182104229927063, 0.07476957887411118, 0.7523097395896912, 0.0006591323763132095, -0.006219812668859959, 0.0041824947111308575]} +{"t": 2.9811, "q": [-0.13842131197452545, -0.028109345585107803, 0.03272979333996773, 0.29805245995521545, -0.14660750329494476, 0.020163532346487045, -0.14632131159305573, 0.03122503124177456, 0.012400895357131958, 0.3051343560218811, -0.16127493977546692, -0.028431624174118042, 0.012789260596036911, -0.06226634234189987, -0.01531610544770956, 0.25757694244384766, 0.2571095824241638, -0.0854475274682045, 0.8362592458724976, 0.0009827064350247383, 0.017425063997507095, -0.006399576086550951, 0.20919664204120636, -0.2818330228328705, 0.07467370480298996, 0.7520820498466492, 0.0006831008358858526, -0.00635163951665163, 0.0041824947111308575]} +{"t": 2.9979, "q": [-0.13837869465351105, -0.028109345585107803, 0.0327431857585907, 0.29806098341941833, -0.1466033011674881, 0.020184572786092758, -0.1463298350572586, 0.03122503124177456, 0.01244107075035572, 0.30507469177246094, -0.16127905249595642, -0.028410494327545166, 0.012869611382484436, -0.06289687007665634, -0.01572241634130478, 0.2575410008430481, 0.2571095824241638, -0.0854475274682045, 0.8362592458724976, 0.0009946906939148903, 0.017437048256397247, -0.006411560345441103, 0.2090408354997635, -0.28186896443367004, 0.07454188168048859, 0.751866340637207, 0.0007070692954584956, -0.006483465898782015, 0.0041944789700210094]} +{"t": 3.0147, "q": [-0.13842131197452545, -0.028126390650868416, 0.03278335928916931, 0.29806098341941833, -0.1466076523065567, 0.020205650478601456, -0.1463298350572586, 0.03122503124177456, 0.012454463168978691, 0.30502355098724365, -0.16127483546733856, -0.028417518362402916, 0.013016922399401665, -0.06345902383327484, -0.016082564368844032, 0.2575170397758484, 0.2571455240249634, -0.0854714959859848, 0.8362712264060974, 0.0009707222343422472, 0.017437048256397247, -0.006399576086550951, 0.20892100036144257, -0.28194087743759155, 0.0743381455540657, 0.7517344951629639, 0.0007430219557136297, -0.006555370986461639, 0.0041824947111308575]} +{"t": 3.0314, "q": [-0.13829347491264343, -0.028117869049310684, 0.03278335928916931, 0.2981206476688385, -0.14661191403865814, 0.020198656246066093, -0.14631278812885284, 0.03122503124177456, 0.012534813955426216, 0.3050405979156494, -0.16127896308898926, -0.028396379202604294, 0.012682124972343445, -0.06391334533691406, -0.016176670789718628, 0.25752902030944824, 0.2546168565750122, -0.08501609414815903, 0.83793705701828, 0.0010546118719503284, 0.01889912411570549, -0.006399576086550951, 0.20548152923583984, -0.2806106209754944, 0.07139003276824951, 0.7496971487998962, 0.0020972394850105047, -0.009958891198039055, 0.004697816446423531]} +{"t": 3.0481, "q": [-0.13829347491264343, -0.028169000521302223, 0.03327886015176773, 0.29810360074043274, -0.1466076523065567, 0.020205650478601456, -0.14667923748493195, 0.03122503124177456, 0.01319101732224226, 0.3051769435405731, -0.16121023893356323, -0.02833946794271469, 0.01025819219648838, -0.0639733299612999, -0.016110878437757492, 0.25760093331336975, 0.2520522177219391, -0.08458466082811356, 0.8427666425704956, 0.0010546118719503284, 0.0204570721834898, -0.006387591827660799, 0.20019648969173431, -0.27848944067955017, 0.06660832464694977, 0.7462936639785767, 0.0035353463608771563, -0.015363777056336403, 0.004745753016322851]} +{"t": 3.0648, "q": [-0.13829347491264343, -0.028177523985505104, 0.03373418375849724, 0.29813769459724426, -0.14659483730793, 0.020212600007653236, -0.14681558310985565, 0.03122503124177456, 0.01379365287721157, 0.30525365471839905, -0.16109824180603027, -0.028197601437568665, 0.008075312711298466, -0.0638897493481636, -0.016054457053542137, 0.25787654519081116, 0.24996696412563324, -0.08468053489923477, 0.8494179248809814, 0.0010785802733153105, 0.021379858255386353, -0.006399576086550951, 0.1934373825788498, -0.27652400732040405, 0.06398377567529678, 0.7412483096122742, 0.004542021546512842, -0.02183525823056698, 0.00490154791623354]} +{"t": 3.0817, "q": [-0.13829347491264343, -0.028177523985505104, 0.03409576788544655, 0.2981206476688385, -0.14659903943538666, 0.02019156888127327, -0.14690080285072327, 0.03123355284333229, 0.014182017184793949, 0.3054070472717285, -0.1610342264175415, -0.028204213827848434, 0.00516927195712924, -0.06377598643302917, -0.016006650403141975, 0.2581162452697754, 0.24798958003520966, -0.0854714959859848, 0.8553860783576965, 0.0011145329335704446, 0.02178732119500637, -0.006567355245351791, 0.18673819303512573, -0.2745346426963806, 0.06174272671341896, 0.7360112071037292, 0.005105279851704836, -0.028738172724843025, 0.0049614692106842995]} +{"t": 3.099, "q": [-0.1382679045200348, -0.028109345585107803, 0.0348055362701416, 0.29810360074043274, -0.1466033011674881, 0.020184572786092758, -0.14690080285072327, 0.03123355284333229, 0.014851612038910389, 0.3055433928966522, -0.16090983152389526, -0.02812575176358223, 0.002959609031677246, -0.06373054534196854, -0.015995297580957413, 0.2577207684516907, 0.24389097094535828, -0.08543553948402405, 0.8614979982376099, 0.0011385014513507485, 0.022062959149479866, -0.006507434416562319, 0.18074607849121094, -0.2724973261356354, 0.06055628880858421, 0.730570375919342, 0.005572664551436901, -0.03386741876602173, 0.0049614692106842995]} +{"t": 3.1157, "q": [-0.1383957415819168, -0.028041169047355652, 0.035367995500564575, 0.298086553812027, -0.14661191403865814, 0.020198656246066093, -0.14677298069000244, 0.031259119510650635, 0.015266761183738708, 0.30576497316360474, -0.160798117518425, -0.028026219457387924, 0.0024507169146090746, -0.06372309476137161, -0.01600959338247776, 0.2575170397758484, 0.23851005733013153, -0.08535165339708328, 0.868293046951294, 0.0011864382540807128, 0.022374548017978668, -0.006555370986461639, 0.17519739270210266, -0.27011245489120483, 0.059297945350408554, 0.7255370020866394, 0.006651245057582855, -0.03763046860694885, 0.005009406246244907]} +{"t": 3.1324, "q": [-0.13850653171539307, -0.02803264744579792, 0.03543495759367943, 0.29813769459724426, -0.14662905037403107, 0.020198747515678406, -0.14658549427986145, 0.031242074444890022, 0.015293545089662075, 0.3059098422527313, -0.16074638068675995, -0.02795531041920185, 0.002959609031677246, -0.06371563673019409, -0.01602388545870781, 0.25748106837272644, 0.2332489788532257, -0.08523181080818176, 0.8721639513969421, 0.0011504855938255787, 0.022518359124660492, -0.006555370986461639, 0.17070330679416656, -0.2680511772632599, 0.05823135003447533, 0.7223851084709167, 0.009407617151737213, -0.041069939732551575, 0.005057343281805515]} +{"t": 3.1491, "q": [-0.1385832279920578, -0.028041169047355652, 0.03534121438860893, 0.2981632649898529, -0.14662037789821625, 0.02017061971127987, -0.14644061028957367, 0.031242074444890022, 0.015253368765115738, 0.3059268891811371, -0.16065989434719086, -0.027799513190984726, 0.003776514669880271, -0.06370072811841965, -0.016052473336458206, 0.2562946379184723, 0.22722090780735016, -0.08533966541290283, 0.8755674958229065, 0.0011385014513507485, 0.02250637486577034, -0.006555370986461639, 0.16599349677562714, -0.26576218008995056, 0.057692062109708786, 0.7204676270484924, 0.012068115174770355, -0.04627109318971634, 0.00512924836948514]} +{"t": 3.166, "q": [-0.1385406106710434, -0.028058214113116264, 0.035381387919187546, 0.2982143759727478, -0.14663319289684296, 0.020163660869002342, -0.14644913375377655, 0.031242074444890022, 0.015266761183738708, 0.3059183657169342, -0.16052678227424622, -0.027692772448062897, 0.004419325385242701, -0.06369320303201675, -0.016057055443525314, 0.25585123896598816, 0.22152841091156006, -0.08539959043264389, 0.8779283761978149, 0.0011744541116058826, 0.022494390606880188, -0.006567355245351791, 0.16034893691539764, -0.26267024874687195, 0.05706888064742088, 0.7185142040252686, 0.013650032691657543, -0.05018993467092514, 0.005213138181716204]} +{"t": 3.1828, "q": [-0.13845539093017578, -0.028041169047355652, 0.0354483462870121, 0.2982228994369507, -0.14662037789821625, 0.02017061971127987, -0.1464747041463852, 0.031259119510650635, 0.01538728829473257, 0.3059183657169342, -0.16041448712348938, -0.027508579194545746, 0.004566636402159929, -0.06370072811841965, -0.016052473336458206, 0.25598305463790894, 0.21541644632816315, -0.0851479172706604, 0.880241334438324, 0.0011145329335704446, 0.022494390606880188, -0.006519418675452471, 0.1547403186559677, -0.25932663679122925, 0.05649363622069359, 0.7166087031364441, 0.015207981690764427, -0.054432351142168045, 0.005320996046066284]} +{"t": 3.1995, "q": [-0.1384468674659729, -0.028058214113116264, 0.03542156517505646, 0.2982143759727478, -0.1466202735900879, 0.020142538473010063, -0.14650027453899384, 0.031242074444890022, 0.015400679782032967, 0.30593541264533997, -0.16033318638801575, -0.027486853301525116, 0.004646987654268742, -0.06368560343980789, -0.01605192758142948, 0.25595909357070923, 0.2090648114681244, -0.08548347651958466, 0.8848073482513428, 0.0011744541116058826, 0.022470422089099884, -0.006567355245351791, 0.1492994725704193, -0.2559950351715088, 0.05561878904700279, 0.7133730053901672, 0.017592841759324074, -0.05793174356222153, 0.005440838169306517]} +{"t": 3.2162, "q": [-0.13845539093017578, -0.028049692511558533, 0.03546173870563507, 0.2982228994369507, -0.14660750329494476, 0.020163532346487045, -0.1465173214673996, 0.031242074444890022, 0.015400679782032967, 0.3059183657169342, -0.1602989286184311, -0.027472512796521187, 0.004620204214006662, -0.06368560343980789, -0.01605192758142948, 0.25615084171295166, 0.20327642560005188, -0.08535165339708328, 0.8892415165901184, 0.0011385014513507485, 0.022494390606880188, -0.006483465898782015, 0.14370284974575043, -0.2531188130378723, 0.05510346591472626, 0.7109641432762146, 0.020061593502759933, -0.06054430454969406, 0.005644570104777813]} +{"t": 3.2329, "q": [-0.1384468674659729, -0.028041169047355652, 0.03543495759367943, 0.2982228994369507, -0.14660312235355377, 0.02014244720339775, -0.14649175107479095, 0.031242074444890022, 0.015414072200655937, 0.30594393610954285, -0.16026467084884644, -0.02745816297829151, 0.004821082577109337, -0.06367800384759903, -0.01604679599404335, 0.25623470544815063, 0.19726034998893738, -0.08519585430622101, 0.8930045366287231, 0.0011145329335704446, 0.022434469312429428, -0.006483465898782015, 0.1387174129486084, -0.2504703104496002, 0.054180681705474854, 0.7089747786521912, 0.021631525829434395, -0.06533799320459366, 0.0057284594513475895]} +{"t": 3.2499, "q": [-0.13845539093017578, -0.028041169047355652, 0.035394780337810516, 0.2982143759727478, -0.14659450948238373, 0.020128363743424416, -0.14650027453899384, 0.031242074444890022, 0.015360504388809204, 0.3059183657169342, -0.16026467084884644, -0.02745816297829151, 0.00512909609824419, -0.06367800384759903, -0.01604679599404335, 0.25625869631767273, 0.19216705858707428, -0.08481236547231674, 0.8973188400268555, 0.0011265171924605966, 0.022434469312429428, -0.006255765445530415, 0.1344749927520752, -0.24808545410633087, 0.0526467002928257, 0.7070333361625671, 0.02231462672352791, -0.06936469674110413, 0.005848302040249109]} +{"t": 3.2666, "q": [-0.1384042650461197, -0.028041169047355652, 0.035381387919187546, 0.2981802821159363, -0.14659450948238373, 0.020128363743424416, -0.14649175107479095, 0.03123355284333229, 0.015347111970186234, 0.3059183657169342, -0.16026467084884644, -0.02745816297829151, 0.005383542273193598, -0.06367041170597076, -0.016041668131947517, 0.2562946379184723, 0.18768495321273804, -0.08493220061063766, 0.9006984233856201, 0.0011025486746802926, 0.02232661098241806, -0.006159891840070486, 0.13089171051979065, -0.24603614211082458, 0.05107676982879639, 0.7055952548980713, 0.022674154490232468, -0.07232479751110077, 0.00595615990459919]} +{"t": 3.2834, "q": [-0.1382679045200348, -0.02803264744579792, 0.035354603081941605, 0.2981632649898529, -0.14658594131469727, 0.020128309726715088, -0.1465173214673996, 0.031250596046447754, 0.015293545089662075, 0.3059098422527313, -0.16026897728443146, -0.027465244755148888, 0.005637987982481718, -0.06367793679237366, -0.01603708602488041, 0.25637853145599365, 0.18319086730480194, -0.08481236547231674, 0.9049168825149536, 0.0010665960144251585, 0.022230736911296844, -0.005800365004688501, 0.1276080310344696, -0.2440108060836792, 0.04863198474049568, 0.7041930556297302, 0.023189475759863853, -0.07530887424945831, 0.00606401776894927]} +{"t": 3.3001, "q": [-0.13806337118148804, -0.028041169047355652, 0.035220686346292496, 0.29813769459724426, -0.14658163487911224, 0.020121268928050995, -0.14659401774406433, 0.031250596046447754, 0.01519980188459158, 0.3059098422527313, -0.1602776199579239, -0.02747941017150879, 0.005678163841366768, -0.06367041170597076, -0.016041668131947517, 0.25640249252319336, 0.1793798804283142, -0.08475244045257568, 0.908176600933075, 0.0011025486746802926, 0.022098911926150322, -0.005249090492725372, 0.1245400682091713, -0.24179372191429138, 0.04518052935600281, 0.7025033235549927, 0.023608922958374023, -0.0773342028260231, 0.006243781186640263]} +{"t": 3.3169, "q": [-0.13774806261062622, -0.02803264744579792, 0.03507337346673012, 0.2981206476688385, -0.1465517282485962, 0.020142171531915665, -0.14666219055652618, 0.03129320964217186, 0.015079274773597717, 0.30589282512664795, -0.16028213500976562, -0.02751472219824791, 0.00575851509347558, -0.06364761292934418, -0.01602627895772457, 0.25642645359039307, 0.17659954726696014, -0.08381766825914383, 0.9107052683830261, 0.0010785802733153105, 0.02196708507835865, -0.004374242387712002, 0.12265854328870773, -0.23952871561050415, 0.04067445918917656, 0.6996870040893555, 0.024220118299126625, -0.0785565972328186, 0.006243781186640263]} +{"t": 3.3337, "q": [-0.13765431940555573, -0.028007080778479576, 0.03499302268028259, 0.2981291711330414, -0.1465517282485962, 0.020142171531915665, -0.14673036336898804, 0.03133581951260567, 0.015025706961750984, 0.30585020780563354, -0.16033396124839783, -0.02759973518550396, 0.005785298999398947, -0.06355642527341843, -0.015964727848768234, 0.2564144730567932, 0.17455023527145386, -0.0833502858877182, 0.9126946330070496, 0.0010785802733153105, 0.02171541564166546, -0.0034394727554172277, 0.12075304985046387, -0.23788687586784363, 0.03757054731249809, 0.6969066858291626, 0.025286715477705002, -0.07937152683734894, 0.0062677497044205666]} +{"t": 3.3506, "q": [-0.13767987489700317, -0.028007080778479576, 0.03488588705658913, 0.298086553812027, -0.1465560346841812, 0.020149212330579758, -0.1467900276184082, 0.03140399605035782, 0.014985531568527222, 0.30584168434143066, -0.16038991510868073, -0.027663612738251686, 0.006026353221386671, -0.063480444252491, -0.015913434326648712, 0.2564384639263153, 0.17378325760364532, -0.08318250626325607, 0.9143244624137878, 0.0010905645322054625, 0.021511685103178024, -0.002660498023033142, 0.11872772127389908, -0.23671241104602814, 0.03398726135492325, 0.6938626766204834, 0.026017753407359123, -0.0800066888332367, 0.00635163951665163]} +{"t": 3.3674, "q": [-0.13760317862033844, -0.027998559176921844, 0.03481892868876457, 0.2980780303478241, -0.14653033018112183, 0.020149074494838715, -0.1467900276184082, 0.0314125157892704, 0.014891788363456726, 0.3058246374130249, -0.16041141748428345, -0.027684926986694336, 0.006213839631527662, -0.06342725455760956, -0.015877529978752136, 0.2564983665943146, 0.17354357242584229, -0.08314655721187592, 0.9154869318008423, 0.0010665960144251585, 0.02135588973760605, -0.002037318190559745, 0.11604325473308563, -0.23546606302261353, 0.02990064211189747, 0.6908665895462036, 0.026868632063269615, -0.08089352399110794, 0.006387591827660799]} +{"t": 3.3841, "q": [-0.13758613169193268, -0.027990037575364113, 0.03476536273956299, 0.29809507727622986, -0.14654326438903809, 0.02017020620405674, -0.1468411535024643, 0.0314125157892704, 0.014878395944833755, 0.3057820200920105, -0.16044165194034576, -0.02773452177643776, 0.006106704473495483, -0.06341958045959473, -0.015862688422203064, 0.2564983665943146, 0.17365142703056335, -0.08313456922769547, 0.9167213439941406, 0.0010306433541700244, 0.0213678739964962, -0.0016178704099729657, 0.11240004748106003, -0.23551400005817413, 0.026700854301452637, 0.6872234344482422, 0.02822284959256649, -0.08228369057178497, 0.006435528863221407]} +{"t": 3.401, "q": [-0.137577623128891, -0.027981514111161232, 0.03476536273956299, 0.298086553812027, -0.14654752612113953, 0.020163211971521378, -0.1468411535024643, 0.031438082456588745, 0.014905179850757122, 0.30576497316360474, -0.16048042476177216, -0.02778417430818081, 0.00605313666164875, -0.06342725455760956, -0.015877529978752136, 0.2561628222465515, 0.17369936406612396, -0.0830506831407547, 0.9181115031242371, 0.0010426276130601764, 0.02141581103205681, -0.0014021543320268393, 0.10873287916183472, -0.2356697916984558, 0.023213444277644157, 0.684862494468689, 0.030487868934869766, -0.0848243460059166, 0.006471481639891863]} +{"t": 3.4178, "q": [-0.13758613169193268, -0.027981514111161232, 0.03476536273956299, 0.29813769459724426, -0.14654326438903809, 0.02017020620405674, -0.1468326300382614, 0.031438082456588745, 0.014891788363456726, 0.30576497316360474, -0.1604890674352646, -0.02779833786189556, 0.006012961268424988, -0.06343485414981842, -0.01588265784084797, 0.2552160620689392, 0.17372332513332367, -0.08308663219213486, 0.9193099141120911, 0.0010785802733153105, 0.02148771658539772, -0.001282312092371285, 0.10335195809602737, -0.23641280829906464, 0.020505009219050407, 0.683580219745636, 0.03209375590085983, -0.08821588009595871, 0.006411560345441103]} +{"t": 3.4346, "q": [-0.13759465515613556, -0.027990037575364113, 0.0348055362701416, 0.2981632649898529, -0.14654326438903809, 0.02017020620405674, -0.14681558310985565, 0.03142103925347328, 0.014985531568527222, 0.30576497316360474, -0.1604890674352646, -0.02779833786189556, 0.005571028683334589, -0.06343485414981842, -0.01588265784084797, 0.2543891370296478, 0.17374730110168457, -0.08309862017631531, 0.9211075305938721, 0.0011025486746802926, 0.021511685103178024, -0.0012223910307511687, 0.09854628145694733, -0.23719178140163422, 0.01937849260866642, 0.6824057698249817, 0.0334000363945961, -0.09097225219011307, 0.006423544604331255]} +{"t": 3.4514, "q": [-0.13756057620048523, -0.027981514111161232, 0.035033199936151505, 0.29814621806144714, -0.14655189216136932, 0.020184287801384926, -0.1468411535024643, 0.031438082456588745, 0.015173017978668213, 0.305747926235199, -0.16048042476177216, -0.02778417430818081, 0.004874649923294783, -0.06342725455760956, -0.015877529978752136, 0.2528431713581085, 0.17372332513332367, -0.08312258869409561, 0.9239358305931091, 0.0010905645322054625, 0.021535653620958328, -0.0011984225129708648, 0.09362076967954636, -0.23722773790359497, 0.01812014915049076, 0.68141108751297, 0.034634411334991455, -0.09364473819732666, 0.006447513122111559]} +{"t": 3.4682, "q": [-0.13761170208454132, -0.027981514111161232, 0.03514033555984497, 0.29814621806144714, -0.1465475857257843, 0.020177247002720833, -0.14684967696666718, 0.031446605920791626, 0.015266761183738708, 0.3057308793067932, -0.1604631543159485, -0.02775583602488041, 0.004606812261044979, -0.06344245374202728, -0.01588778756558895, 0.25091370940208435, 0.17373532056808472, -0.08311060070991516, 0.926859974861145, 0.0011265171924605966, 0.02154763787984848, -0.0011984225129708648, 0.08982177078723907, -0.23835425078868866, 0.016945693641901016, 0.6798171401023865, 0.035832833498716354, -0.09606555104255676, 0.006435528863221407]} +{"t": 3.4849, "q": [-0.1376713663339615, -0.027981514111161232, 0.035126943141222, 0.29813769459724426, -0.146560400724411, 0.020170297473669052, -0.1468326300382614, 0.03142103925347328, 0.015239977277815342, 0.30571383237838745, -0.16045470535755157, -0.02776988223195076, 0.004660379607230425, -0.06345004588365555, -0.015892915427684784, 0.24924792349338531, 0.1736873835325241, -0.08313456922769547, 0.9291609525680542, 0.0011265171924605966, 0.021583588793873787, -0.0011984225129708648, 0.08619055151939392, -0.2404395043849945, 0.01495631318539381, 0.6780914068222046, 0.0381937250494957, -0.09786318242549896, 0.006447513122111559]} +{"t": 3.5016, "q": [-0.1376713663339615, -0.027998559176921844, 0.03514033555984497, 0.2981632649898529, -0.1465604603290558, 0.020184343680739403, -0.1468326300382614, 0.031438082456588745, 0.015239977277815342, 0.3056456744670868, -0.1604502946138382, -0.02774868533015251, 0.005021960940212011, -0.06347277015447617, -0.01589859277009964, 0.2473064661026001, 0.1736873835325241, -0.08313456922769547, 0.9327921867370605, 0.0011145329335704446, 0.021499700844287872, -0.0011504855938255787, 0.08239154517650604, -0.24185365438461304, 0.010510165244340897, 0.6765094995498657, 0.04008723422884941, -0.09950502216815948, 0.006471481639891863]} +{"t": 3.5184, "q": [-0.13765431940555573, -0.027998559176921844, 0.03514033555984497, 0.2981632649898529, -0.1465647667646408, 0.020191384479403496, -0.14682410657405853, 0.03142956271767616, 0.015239977277815342, 0.3056456744670868, -0.16045893728733063, -0.02776286005973816, 0.004955001175403595, -0.06349549442529678, -0.015904268249869347, 0.24616797268390656, 0.17371134459972382, -0.08313456922769547, 0.935668408870697, 0.0010785802733153105, 0.02148771658539772, -0.0011624698527157307, 0.07799334079027176, -0.24294421076774597, 0.005884254816919565, 0.6755267977714539, 0.0412137508392334, -0.10059558600187302, 0.006459497381001711]} +{"t": 3.5351, "q": [-0.1376713663339615, -0.027990037575364113, 0.035126943141222, 0.2981206476688385, -0.14657770097255707, 0.02021251618862152, -0.14687524735927582, 0.031438082456588745, 0.015293545089662075, 0.30561158061027527, -0.1604546159505844, -0.027755768969655037, 0.004861257970333099, -0.06345004588365555, -0.015892915427684784, 0.24552081525325775, 0.17374730110168457, -0.08313456922769547, 0.9376338124275208, 0.0010905645322054625, 0.021463748067617416, -0.0011385014513507485, 0.07318766415119171, -0.24323183298110962, -0.001270327833481133, 0.6746759414672852, 0.04219645634293556, -0.10121876746416092, 0.006603308022022247]} +{"t": 3.552, "q": [-0.13767987489700317, -0.027990037575364113, 0.03510015830397606, 0.29809507727622986, -0.14656907320022583, 0.02019842527806759, -0.14695194363594055, 0.03142956271767616, 0.015293545089662075, 0.3056030571460724, -0.1604502946138382, -0.02774868533015251, 0.004673771560192108, -0.06345750391483307, -0.015878623351454735, 0.2449815273284912, 0.17371134459972382, -0.08312258869409561, 0.9395632743835449, 0.0010785802733153105, 0.021212078630924225, -0.0011025486746802926, 0.06844191253185272, -0.24374715983867645, -0.007478156592696905, 0.6742924451828003, 0.042819637805223465, -0.10159027576446533, 0.006579339504241943]} +{"t": 3.5687, "q": [-0.13767987489700317, -0.027998559176921844, 0.03507337346673012, 0.29809507727622986, -0.14656482636928558, 0.0202054213732481, -0.14701159298419952, 0.031438082456588745, 0.015226585790514946, 0.3056030571460724, -0.16046737134456635, -0.02774881199002266, 0.004727339372038841, -0.06344230473041534, -0.01586836576461792, 0.24414263665676117, 0.17360348999500275, -0.08312258869409561, 0.9420199990272522, 0.0010546118719503284, 0.02112818881869316, -0.0010546118719503284, 0.06373210996389389, -0.2440347820520401, -0.014105432666838169, 0.6736572980880737, 0.04327503591775894, -0.10175805538892746, 0.006639260798692703]} +{"t": 3.5854, "q": [-0.13765431940555573, -0.027990037575364113, 0.035033199936151505, 0.298086553812027, -0.14657333493232727, 0.020191431045532227, -0.14701159298419952, 0.031438082456588745, 0.015146234072744846, 0.3056030571460724, -0.1604846566915512, -0.02777715027332306, 0.004807690624147654, -0.06347277015447617, -0.01589859277009964, 0.24337564408779144, 0.17354357242584229, -0.08314655721187592, 0.9443089962005615, 0.0010306433541700244, 0.020984377712011337, -0.0010186590952798724, 0.059309929609298706, -0.24492160975933075, -0.019210712984204292, 0.671919584274292, 0.04357464239001274, -0.10185392946004868, 0.006795055698603392]} +{"t": 3.6022, "q": [-0.13762874901294708, -0.027955947443842888, 0.03495284914970398, 0.29809507727622986, -0.14656907320022583, 0.02019842527806759, -0.14703716337680817, 0.03148921579122543, 0.015079274773597717, 0.3056030571460724, -0.16052332520484924, -0.02781268022954464, 0.0047541228123009205, -0.0634727030992508, -0.0158888828009367, 0.24301612377166748, 0.17354357242584229, -0.08314655721187592, 0.9457231760025024, 0.0010546118719503284, 0.021020330488681793, -0.0009587380336597562, 0.0544683039188385, -0.24659940600395203, -0.02274606004357338, 0.6698103547096252, 0.04385028034448624, -0.10194980353116989, 0.006831008475273848]} +{"t": 3.6189, "q": [-0.13764579594135284, -0.027870727702975273, 0.03493945673108101, 0.29805245995521545, -0.14657770097255707, 0.02021251618862152, -0.14703716337680817, 0.03159148246049881, 0.015092666260898113, 0.30556896328926086, -0.16054914891719818, -0.02784108556807041, 0.004767514765262604, -0.06348782032728195, -0.015889428555965424, 0.2425607144832611, 0.17349563539028168, -0.08315853774547577, 0.9469934701919556, 0.0010785802733153105, 0.020900487899780273, -0.0009227853151969612, 0.04927913472056389, -0.24881649017333984, -0.0270723644644022, 0.6665745973587036, 0.04406599700450897, -0.10198576003313065, 0.006974819116294384]} +{"t": 3.6357, "q": [-0.13765431940555573, -0.027870727702975273, 0.03488588705658913, 0.29800984263420105, -0.14657333493232727, 0.020191431045532227, -0.14707978069782257, 0.031617049127817154, 0.01505249086767435, 0.30556896328926086, -0.1605665236711502, -0.027883529663085938, 0.004847866017371416, -0.06348029524087906, -0.015894010663032532, 0.24167388677597046, 0.17345967888832092, -0.08317052572965622, 0.9482758045196533, 0.0010306433541700244, 0.02088850550353527, -0.000862864195369184, 0.04418583959341049, -0.2509017288684845, -0.03423893079161644, 0.6626917123794556, 0.04429369792342186, -0.1019977405667305, 0.007190535310655832]} +{"t": 3.6526, "q": [-0.13764579594135284, -0.02785368263721466, 0.03481892868876457, 0.2979927957057953, -0.14656482636928558, 0.0202054213732481, -0.1470712572336197, 0.031625568866729736, 0.014985531568527222, 0.3055519163608551, -0.16059215366840363, -0.027883706614375114, 0.00508892023935914, -0.06346510350704193, -0.015883751213550568, 0.24058331549167633, 0.17343570291996002, -0.08319449424743652, 0.9495341181755066, 0.0010186590952798724, 0.020924456417560577, -0.000850879994686693, 0.03928428888320923, -0.2526754140853882, -0.043299004435539246, 0.6593840718269348, 0.0445333793759346, -0.1020217090845108, 0.007382282521575689]} +{"t": 3.6693, "q": [-0.1376628428697586, -0.02784516103565693, 0.03481892868876457, 0.2979927957057953, -0.14656482636928558, 0.0202054213732481, -0.14707978069782257, 0.031625568866729736, 0.015012315474450588, 0.3055519163608551, -0.16062228381633759, -0.027919186279177666, 0.00508892023935914, -0.06348022818565369, -0.01588430069386959, 0.23934894800186157, 0.17342372238636017, -0.08314655721187592, 0.9515115022659302, 0.0010306433541700244, 0.02088850550353527, -0.0008269115351140499, 0.033364083617925644, -0.2553958296775818, -0.05108875036239624, 0.6561243534088135, 0.04496481269598007, -0.10194980353116989, 0.007490140851587057]} +{"t": 3.6861, "q": [-0.13765431940555573, -0.027862204238772392, 0.03484571352601051, 0.2979927957057953, -0.14657770097255707, 0.02021251618862152, -0.1470627337694168, 0.031625568866729736, 0.015012315474450588, 0.3055519163608551, -0.1606266051530838, -0.027926268056035042, 0.004713947419077158, -0.06347262859344482, -0.01587916910648346, 0.2379467934370041, 0.17347165942192078, -0.08315853774547577, 0.9541839957237244, 0.0010306433541700244, 0.020960409194231033, -0.0008149273344315588, 0.02600576914846897, -0.2587634027004242, -0.057979680597782135, 0.6534159183502197, 0.04640292003750801, -0.10191385447978973, 0.007705857045948505]} +{"t": 3.7028, "q": [-0.13763727247714996, -0.02785368263721466, 0.03481892868876457, 0.2979927957057953, -0.14657770097255707, 0.02021251618862152, -0.14707978069782257, 0.0316426157951355, 0.015079274773597717, 0.3055519163608551, -0.16060951352119446, -0.027926158159971237, 0.004419325385242701, -0.0635029524564743, -0.015889976173639297, 0.23697607219219208, 0.17349563539028168, -0.08317052572965622, 0.9558258652687073, 0.0010426276130601764, 0.021020330488681793, -0.0008029430755414069, 0.01961817592382431, -0.2628859579563141, -0.06286924332380295, 0.6503719091415405, 0.04924318194389343, -0.10190186649560928, 0.00777776213362813]} +{"t": 3.7196, "q": [-0.13770544528961182, -0.02785368263721466, 0.03484571352601051, 0.29800984263420105, -0.14657770097255707, 0.02021251618862152, -0.14705421030521393, 0.0316426157951355, 0.01503909844905138, 0.3055519163608551, -0.16060951352119446, -0.027926158159971237, 0.004472893197089434, -0.06352567672729492, -0.015895653516054153, 0.2359454333782196, 0.17355555295944214, -0.08314655721187592, 0.9570003151893616, 0.0010665960144251585, 0.02099636197090149, -0.0007909588748589158, 0.013554158620536327, -0.26651719212532043, -0.06989200413227081, 0.6458658576011658, 0.0526467002928257, -0.10187789797782898, 0.007981494069099426]} +{"t": 3.7363, "q": [-0.13769692182540894, -0.027862204238772392, 0.03483232110738754, 0.29800984263420105, -0.14656907320022583, 0.02019842527806759, -0.14703716337680817, 0.03165113553404808, 0.015012315474450588, 0.30553486943244934, -0.16060951352119446, -0.027926158159971237, 0.004713947419077158, -0.06353326886892319, -0.015900781378149986, 0.23496271669864655, 0.17357951402664185, -0.08315853774547577, 0.958246648311615, 0.0010785802733153105, 0.020984377712011337, -0.0007669904152862728, 0.006926882080733776, -0.26863840222358704, -0.07980295270681381, 0.6411320567131042, 0.055690694600343704, -0.10194980353116989, 0.008388957940042019]} +{"t": 3.753, "q": [-0.13768839836120605, -0.02785368263721466, 0.03483232110738754, 0.29800131916999817, -0.1465776413679123, 0.02019847184419632, -0.14702863991260529, 0.03165965899825096, 0.01503909844905138, 0.30552634596824646, -0.16060951352119446, -0.027926158159971237, 0.004888041876256466, -0.06352567672729492, -0.015895653516054153, 0.2341717630624771, 0.17355555295944214, -0.08318250626325607, 0.9595649242401123, 0.0010546118719503284, 0.020960409194231033, -0.0007669904152862728, 0.0003834952076431364, -0.2706157863140106, -0.08894691616296768, 0.637105405330658, 0.059118181467056274, -0.10204567760229111, 0.008245146833360195]} +{"t": 3.7698, "q": [-0.13767987489700317, -0.02785368263721466, 0.034859105944633484, 0.29800131916999817, -0.14658626914024353, 0.020212562754750252, -0.14702863991260529, 0.03165113553404808, 0.01503909844905138, 0.3055433928966522, -0.16061383485794067, -0.027933241799473763, 0.004740730859339237, -0.06353326886892319, -0.015900781378149986, 0.23309318721294403, 0.17351959645748138, -0.08318250626325607, 0.9620456695556641, 0.0010665960144251585, 0.020924456417560577, -0.0007550062146037817, -0.007022756151854992, -0.27337217330932617, -0.09668873250484467, 0.632551372051239, 0.06115550175309181, -0.10224940627813339, 0.008293083868920803]} +{"t": 3.7865, "q": [-0.1376713663339615, -0.02785368263721466, 0.034872494637966156, 0.29801836609840393, -0.14658202230930328, 0.020219556987285614, -0.1470201164484024, 0.03163409233093262, 0.01511945016682148, 0.30553486943244934, -0.1606052964925766, -0.027933182194828987, 0.0043523660860955715, -0.06354831904172897, -0.01589161716401577, 0.23218238353729248, 0.17343570291996002, -0.08318250626325607, 0.9643945693969727, 0.0010665960144251585, 0.02094842493534088, -0.0007669904152862728, -0.015184013172984123, -0.27689552307128906, -0.10159027576446533, 0.627841591835022, 0.06180264800786972, -0.1026209220290184, 0.00820919405668974]} +{"t": 3.8033, "q": [-0.13770544528961182, -0.027836639434099197, 0.03492606431245804, 0.29800984263420105, -0.14658202230930328, 0.020219556987285614, -0.1470201164484024, 0.0316426157951355, 0.015173017978668213, 0.30553486943244934, -0.1605924367904663, -0.02792603336274624, 0.004392541944980621, -0.06357097625732422, -0.015887582674622536, 0.2308521270751953, 0.17342372238636017, -0.08323044329881668, 0.9664199352264404, 0.0010665960144251585, 0.020972393453121185, -0.0007669904152862728, -0.02214684896171093, -0.2807784080505371, -0.10783405601978302, 0.6195964217185974, 0.062066301703453064, -0.10330402106046677, 0.008173241280019283]} +{"t": 3.82, "q": [-0.13769692182540894, -0.02784516103565693, 0.03488588705658913, 0.2980354130268097, -0.14657339453697205, 0.020205466076731682, -0.1469689905643463, 0.03165113553404808, 0.01511945016682148, 0.30552634596824646, -0.16059675812721252, -0.02793312445282936, 0.004446109291166067, -0.06358624249696732, -0.01590755209326744, 0.22966569662094116, 0.17341174185276031, -0.08319449424743652, 0.9680018424987793, 0.0010186590952798724, 0.020984377712011337, -0.0007310377550311387, -0.02967294119298458, -0.2835228145122528, -0.11690611392259598, 0.6106442213058472, 0.0622820183634758, -0.10535332560539246, 0.008245146833360195]} +{"t": 3.8368, "q": [-0.13763727247714996, -0.02784516103565693, 0.03488588705658913, 0.29806098341941833, -0.14658626914024353, 0.020212562754750252, -0.1468837708234787, 0.031625568866729736, 0.015106058679521084, 0.30553486943244934, -0.1605924367904663, -0.02792603336274624, 0.004660379607230425, -0.06363943219184875, -0.015943458303809166, 0.22849123179912567, 0.17349563539028168, -0.08321846276521683, 0.9700391292572021, 0.0010665960144251585, 0.02094842493534088, -0.0007430219557136297, -0.03713911399245262, -0.2852245569229126, -0.12559467554092407, 0.6018357872962952, 0.06254567205905914, -0.10784604400396347, 0.00812530517578125]} +{"t": 3.8536, "q": [-0.13756057620048523, -0.027862204238772392, 0.03495284914970398, 0.29806098341941833, -0.1465863287448883, 0.020226599648594856, -0.14680705964565277, 0.03165113553404808, 0.015173017978668213, 0.305560439825058, -0.1605837047100067, -0.02789776213467121, 0.0043523660860955715, -0.06366989761590958, -0.015973687171936035, 0.2271849513053894, 0.17345967888832092, -0.08321846276521683, 0.9732748866081238, 0.0010546118719503284, 0.020840568467974663, -0.0007310377550311387, -0.04617521911859512, -0.28710609674453735, -0.13375593721866608, 0.5928117036819458, 0.06283329427242279, -0.11141734570264816, 0.008077368140220642]} +{"t": 3.8704, "q": [-0.13754352927207947, -0.02785368263721466, 0.035046592354774475, 0.29810360074043274, -0.14658206701278687, 0.02023359388113022, -0.14679855108261108, 0.031625568866729736, 0.015293545089662075, 0.30562010407447815, -0.1605364829301834, -0.02786216512322426, 0.003923825453966856, -0.06371548771858215, -0.01600446179509163, 0.22597454488277435, 0.17343570291996002, -0.08324243128299713, 0.9764387011528015, 0.0010785802733153105, 0.02094842493534088, -0.0007070692954584956, -0.056301891803741455, -0.28957483172416687, -0.1402633786201477, 0.584506630897522, 0.06310892850160599, -0.114053875207901, 0.008089352399110794]} +{"t": 3.8873, "q": [-0.13756057620048523, -0.02785368263721466, 0.03507337346673012, 0.29814621806144714, -0.14656482636928558, 0.0202054213732481, -0.14678150415420532, 0.031625568866729736, 0.015266761183738708, 0.3056030571460724, -0.16051910817623138, -0.02781970426440239, 0.004017568659037352, -0.06376861035823822, -0.016030656173825264, 0.22491994500160217, 0.17335182428359985, -0.08318250626325607, 0.9784760475158691, 0.0010306433541700244, 0.020864536985754967, -0.0007190534961409867, -0.0646548941731453, -0.29185184836387634, -0.14621953666210175, 0.5734571814537048, 0.06340853869915009, -0.1161031723022461, 0.008053399622440338]} +{"t": 3.9041, "q": [-0.13763727247714996, -0.02785368263721466, 0.035046592354774475, 0.2981632649898529, -0.14656482636928558, 0.0202054213732481, -0.14676445722579956, 0.03163409233093262, 0.01519980188459158, 0.30562862753868103, -0.16050183773040771, -0.02779136598110199, 0.004325582180172205, -0.06382180005311966, -0.01606656238436699, 0.22380541265010834, 0.17332784831523895, -0.08324243128299713, 0.9802137613296509, 0.0010665960144251585, 0.020864536985754967, -0.0007190534961409867, -0.07263638824224472, -0.2941168546676636, -0.1516483873128891, 0.5642293095588684, 0.06355234980583191, -0.11803263425827026, 0.00806538388133049]} +{"t": 3.9208, "q": [-0.13759465515613556, -0.02784516103565693, 0.03505998104810715, 0.2982569932937622, -0.14656482636928558, 0.0202054213732481, -0.14667071402072906, 0.0316426157951355, 0.015226585790514946, 0.30566272139549255, -0.16049319505691528, -0.02777720056474209, 0.004807690624147654, -0.06384466588497162, -0.016091663390398026, 0.22265492379665375, 0.1732918918132782, -0.08319449424743652, 0.9826345443725586, 0.0010546118719503284, 0.02081659995019436, -0.0006950850365683436, -0.08168447762727737, -0.2958905100822449, -0.15960590541362762, 0.5540067553520203, 0.0638040155172348, -0.12017781287431717, 0.00820919405668974]} +{"t": 3.9377, "q": [-0.137577623128891, -0.027879249304533005, 0.03505998104810715, 0.2983507513999939, -0.14656056463718414, 0.020212415605783463, -0.14657697081565857, 0.031625568866729736, 0.015266761183738708, 0.3056882917881012, -0.1604631543159485, -0.02775583602488041, 0.004847866017371416, -0.06391298025846481, -0.016128111630678177, 0.2217680811882019, 0.17325595021247864, -0.08323044329881668, 0.9844081997871399, 0.0010665960144251585, 0.020864536985754967, -0.0006950850365683436, -0.09242234379053116, -0.2976042628288269, -0.1672997772693634, 0.5446231365203857, 0.06400774419307709, -0.12221512943506241, 0.00814927276223898]} +{"t": 3.9544, "q": [-0.13758613169193268, -0.027879249304533005, 0.03510015830397606, 0.29846152663230896, -0.14656482636928558, 0.0202054213732481, -0.14658549427986145, 0.031617049127817154, 0.015293545089662075, 0.3056797683238983, -0.16040268540382385, -0.02765664830803871, 0.004968393128365278, -0.06390545517206192, -0.016132693737745285, 0.22090522944927216, 0.17323197424411774, -0.08323044329881668, 0.9853549599647522, 0.0010665960144251585, 0.02087652124464512, -0.0006950850365683436, -0.10159027576446533, -0.29941388964653015, -0.17323197424411774, 0.5345324277877808, 0.06449910253286362, -0.1233416497707367, 0.008101336658000946]} +{"t": 3.9712, "q": [-0.13769692182540894, -0.027887770906090736, 0.03508676588535309, 0.2984785735607147, -0.14655619859695435, 0.020191337913274765, -0.14659401774406433, 0.031617049127817154, 0.015333720482885838, 0.3056882917881012, -0.1603466272354126, -0.027578655630350113, 0.005115704145282507, -0.06393584609031677, -0.016153212636709213, 0.21980267763137817, 0.17325595021247864, -0.08324243128299713, 0.9864934682846069, 0.0010306433541700244, 0.020852552726864815, -0.0006831008358858526, -0.11111773550510406, -0.3013553321361542, -0.1781574934720993, 0.5231354236602783, 0.0652780756354332, -0.12462396174669266, 0.008053399622440338]} +{"t": 3.988, "q": [-0.1376628428697586, -0.027921859174966812, 0.03514033555984497, 0.2985211908817291, -0.14655619859695435, 0.020191337913274765, -0.14652583003044128, 0.03159148246049881, 0.015360504388809204, 0.3056882917881012, -0.16032081842422485, -0.027550259605050087, 0.00516927195712924, -0.06400423496961594, -0.016199378296732903, 0.21889187395572662, 0.17327991127967834, -0.08323044329881668, 0.9875600934028625, 0.0010546118719503284, 0.020912472158670425, -0.0006950850365683436, -0.12044146656990051, -0.30351248383522034, -0.18154902756214142, 0.5106717944145203, 0.06629673391580582, -0.12566658854484558, 0.008089352399110794]} +{"t": 4.0047, "q": [-0.13765431940555573, -0.027921859174966812, 0.03524747118353844, 0.2985211908817291, -0.14656056463718414, 0.020212415605783463, -0.14649175107479095, 0.03160000219941139, 0.0154542475938797, 0.305747926235199, -0.1603078544139862, -0.027529003098607063, 0.004780906718224287, -0.06411053985357285, -0.016261475160717964, 0.21834060549736023, 0.17339976131916046, -0.08324243128299713, 0.9885188341140747, 0.0010665960144251585, 0.020972393453121185, -0.0006950850365683436, -0.13072392344474792, -0.3040637671947479, -0.18609105050563812, 0.5017555356025696, 0.06723150610923767, -0.12727247178554535, 0.008353005163371563]} +{"t": 4.0214, "q": [-0.1376713663339615, -0.02791333757340908, 0.03534121438860893, 0.29854676127433777, -0.14655619859695435, 0.020191337913274765, -0.14644913375377655, 0.03160000219941139, 0.015561383217573166, 0.3057734966278076, -0.16023039817810059, -0.027443813160061836, 0.004740730859339237, -0.06420932710170746, -0.016328157857060432, 0.2172260731458664, 0.17341174185276031, -0.08321846276521683, 0.9903523921966553, 0.0010665960144251585, 0.02093644067645073, -0.0006950850365683436, -0.14032329618930817, -0.30418360233306885, -0.19155585765838623, 0.49047839641571045, 0.06943660229444504, -0.1303284466266632, 0.008161257021129131]} +{"t": 4.0383, "q": [-0.1376713663339615, -0.02791333757340908, 0.03534121438860893, 0.29855525493621826, -0.14655619859695435, 0.020191337913274765, -0.14645765721797943, 0.03160000219941139, 0.015547990798950195, 0.3057820200920105, -0.16017885506153107, -0.027401132509112358, 0.004847866017371416, -0.06423225998878479, -0.01636296696960926, 0.2157520055770874, 0.1733638048171997, -0.08323044329881668, 0.9926653504371643, 0.0010905645322054625, 0.02094842493534088, -0.0006831008358858526, -0.15018631517887115, -0.3041236698627472, -0.19827900826931, 0.47839829325675964, 0.07100653648376465, -0.1344989538192749, 0.008388957940042019]} +{"t": 4.0551, "q": [-0.1376628428697586, -0.027930382639169693, 0.03532782196998596, 0.29855525493621826, -0.14655619859695435, 0.020191337913274765, -0.1463809609413147, 0.03160000219941139, 0.015561383217573166, 0.30584168434143066, -0.16017895936965942, -0.027415240183472633, 0.005048744846135378, -0.06425498425960541, -0.016368644312024117, 0.21469739079475403, 0.17327991127967834, -0.08324243128299713, 0.9945468902587891, 0.0010546118719503284, 0.020960409194231033, -0.0006950850365683436, -0.15936622023582458, -0.30425551533699036, -0.2042950838804245, 0.4664020836353302, 0.07257647067308426, -0.13791446387767792, 0.008448879234492779]} +{"t": 4.0719, "q": [-0.13769692182540894, -0.027921859174966812, 0.03534121438860893, 0.29854676127433777, -0.14655619859695435, 0.020191337913274765, -0.14629574120044708, 0.03160000219941139, 0.015561383217573166, 0.3058331608772278, -0.16017885506153107, -0.027401132509112358, 0.004807690624147654, -0.064277783036232, -0.016384033486247063, 0.21387048065662384, 0.1732679307460785, -0.08325441181659698, 0.9967639446258545, 0.0010905645322054625, 0.020912472158670425, -0.0006950850365683436, -0.1711467206478119, -0.30425551533699036, -0.20974791049957275, 0.45383062958717346, 0.07564442604780197, -0.1426602154970169, 0.008556736633181572]} +{"t": 4.0887, "q": [-0.13765431940555573, -0.027921859174966812, 0.03542156517505646, 0.298529714345932, -0.14655619859695435, 0.020191337913274765, -0.14632131159305573, 0.03160000219941139, 0.015614950098097324, 0.30585020780563354, -0.16016599535942078, -0.027393992990255356, 0.0047541228123009205, -0.06429298222064972, -0.016394292935729027, 0.2128038853406906, 0.17325595021247864, -0.08329036831855774, 0.9990289807319641, 0.0010905645322054625, 0.020912472158670425, -0.0006950850365683436, -0.1816568821668625, -0.3043394088745117, -0.21402627229690552, 0.4387904107570648, 0.07980295270681381, -0.14559635519981384, 0.008628642186522484]} +{"t": 4.1055, "q": [-0.13767987489700317, -0.027921859174966812, 0.03540817275643349, 0.29854676127433777, -0.14655189216136932, 0.020184287801384926, -0.1462872177362442, 0.03160000219941139, 0.015574774704873562, 0.30588430166244507, -0.16016167402267456, -0.027386901900172234, 0.004727339372038841, -0.0643385723233223, -0.01642506942152977, 0.2115335613489151, 0.17325595021247864, -0.08331433683633804, 1.0013298988342285, 0.0010665960144251585, 0.020924456417560577, -0.0006711166352033615, -0.19241872429847717, -0.3043753504753113, -0.21736988425254822, 0.4250684976577759, 0.08221178501844406, -0.1480291485786438, 0.008628642186522484]} +{"t": 4.1222, "q": [-0.13770544528961182, -0.027930382639169693, 0.03540817275643349, 0.29854676127433777, -0.1465604603290558, 0.020184343680739403, -0.14626164734363556, 0.03160000219941139, 0.015614950098097324, 0.3059098422527313, -0.16016167402267456, -0.027386901900172234, 0.004700555466115475, -0.06440688669681549, -0.016461530700325966, 0.2102392613887787, 0.17321999371051788, -0.08330234885215759, 1.0035350322723389, 0.0010665960144251585, 0.02093644067645073, -0.0006591323763132095, -0.20333634316921234, -0.3043633699417114, -0.22034196555614471, 0.4109870195388794, 0.08351806551218033, -0.15223561227321625, 0.008616657927632332]} +{"t": 4.139, "q": [-0.13774806261062622, -0.02791333757340908, 0.0354483462870121, 0.29855525493621826, -0.14656472206115723, 0.02017734758555889, -0.1462360918521881, 0.03160000219941139, 0.01564173400402069, 0.3059268891811371, -0.1601445972919464, -0.02738679200410843, 0.0045800283551216125, -0.0643993616104126, -0.016466112807393074, 0.20924457907676697, 0.17320801317691803, -0.08327838033437729, 1.0051888227462769, 0.0010905645322054625, 0.02094842493534088, -0.0006471481756307185, -0.2145535796880722, -0.304027795791626, -0.22337397933006287, 0.39712128043174744, 0.08475244045257568, -0.15631024539470673, 0.008580705150961876]} +{"t": 4.1558, "q": [-0.13774806261062622, -0.027921859174966812, 0.03550191596150398, 0.29854676127433777, -0.1465604603290558, 0.020184343680739403, -0.1461934745311737, 0.03160000219941139, 0.015748869627714157, 0.3059268891811371, -0.16014046967029572, -0.027407921850681305, 0.004660379607230425, -0.06443749368190765, -0.016511304304003716, 0.20836971700191498, 0.17321999371051788, -0.08330234885215759, 1.0062555074691772, 0.0010785802733153105, 0.020984377712011337, -0.0006471481756307185, -0.226034477353096, -0.30388399958610535, -0.22766432166099548, 0.381577730178833, 0.0869934931397438, -0.16049274802207947, 0.008580705150961876]} +{"t": 4.1726, "q": [-0.13773101568222046, -0.027921859174966812, 0.03550191596150398, 0.29855525493621826, -0.1465604603290558, 0.020184343680739403, -0.1460571140050888, 0.03160000219941139, 0.015735477209091187, 0.30593541264533997, -0.16012319922447205, -0.027379583567380905, 0.004888041876256466, -0.06460464000701904, -0.016624532639980316, 0.20787836611270905, 0.17323197424411774, -0.08330234885215759, 1.0069864988327026, 0.0010905645322054625, 0.020960409194231033, -0.0006471481756307185, -0.23849806189537048, -0.3038240671157837, -0.23423168063163757, 0.3652072846889496, 0.08955811709165573, -0.16467523574829102, 0.008568720892071724]} +{"t": 4.1895, "q": [-0.13772249221801758, -0.027921859174966812, 0.03556887432932854, 0.29854676127433777, -0.14656907320022583, 0.02019842527806759, -0.1459207683801651, 0.03160000219941139, 0.015829220414161682, 0.30594393610954285, -0.16010582447052002, -0.02733713947236538, 0.004874649923294783, -0.06484778225421906, -0.016789156943559647, 0.2078663855791092, 0.17325595021247864, -0.08327838033437729, 1.0080770254135132, 0.0010665960144251585, 0.020864536985754967, -0.0006351639167405665, -0.25206419825553894, -0.3037281930446625, -0.24117055535316467, 0.34949594736099243, 0.09269798547029495, -0.16728779673576355, 0.008400942198932171]} +{"t": 4.2063, "q": [-0.13773953914642334, -0.027921859174966812, 0.03574296832084656, 0.298529714345932, -0.1465604603290558, 0.020184343680739403, -0.1458270251750946, 0.03160000219941139, 0.016003314405679703, 0.3059268891811371, -0.1600712686777115, -0.02728046290576458, 0.0049148257821798325, -0.06515172868967056, -0.01699480414390564, 0.20771059393882751, 0.17325595021247864, -0.08325441181659698, 1.0097788572311401, 0.0010785802733153105, 0.020864536985754967, -0.0006471481756307185, -0.2645517587661743, -0.30390796065330505, -0.24771393835544586, 0.33451569080352783, 0.09608951956033707, -0.16963671147823334, 0.008353005163371563]} +{"t": 4.2231, "q": [-0.13774806261062622, -0.027921859174966812, 0.03575636073946953, 0.298529714345932, -0.14657333493232727, 0.020191431045532227, -0.14576737582683563, 0.03160000219941139, 0.016003314405679703, 0.3059268891811371, -0.16004103422164917, -0.027230868116021156, 0.005048744846135378, -0.06550126522779465, -0.017231300473213196, 0.20747090876102448, 0.1732439547777176, -0.08326639980077744, 1.0116842985153198, 0.0010546118719503284, 0.020744694396853447, -0.0006471481756307185, -0.27790218591690063, -0.30430343747138977, -0.2552400231361389, 0.31930768489837646, 0.10059558600187302, -0.17467008531093597, 0.008341020904481411]} +{"t": 4.2398, "q": [-0.13776510953903198, -0.027921859174966812, 0.035850103944540024, 0.29854676127433777, -0.1465775966644287, 0.02018442563712597, -0.14575032889842987, 0.03159148246049881, 0.016070274636149406, 0.30594393610954285, -0.15998075902462006, -0.027159901335835457, 0.004713947419077158, -0.065858393907547, -0.01747293397784233, 0.2076147198677063, 0.17327991127967834, -0.08324243128299713, 1.0141650438308716, 0.0010546118719503284, 0.020732710137963295, -0.0006111955153755844, -0.29261884093284607, -0.3052741587162018, -0.26232269406318665, 0.3049505949020386, 0.10254901647567749, -0.1801828294992447, 0.008089352399110794]} +{"t": 4.2567, "q": [-0.13773101568222046, -0.027921859174966812, 0.036024197936058044, 0.2985382378101349, -0.1465775966644287, 0.02018442563712597, -0.14575885236263275, 0.03159148246049881, 0.01629793643951416, 0.3059524595737457, -0.1599418818950653, -0.02709614299237728, 0.0045264605432748795, -0.06608627736568451, -0.017617451027035713, 0.20769861340522766, 0.17327991127967834, -0.08324243128299713, 1.0162862539291382, 0.0010546118719503284, 0.02070874162018299, -0.0006111955153755844, -0.3059213161468506, -0.30628085136413574, -0.2719101011753082, 0.28952690958976746, 0.10416688770055771, -0.18438929319381714, 0.008113320916891098]} +{"t": 4.2734, "q": [-0.13784180581569672, -0.02791333757340908, 0.03614472597837448, 0.2984785735607147, -0.1465775966644287, 0.02018442563712597, -0.14571623504161835, 0.03158295899629593, 0.016431856900453568, 0.3059524595737457, -0.15986040234565735, -0.0270462054759264, 0.0042854067869484425, -0.06638248264789581, -0.017798524349927902, 0.2073390781879425, 0.17325595021247864, -0.08319449424743652, 1.019354224205017, 0.0010306433541700244, 0.02070874162018299, -0.0005872270558029413, -0.32055404782295227, -0.3070238530635834, -0.28385835886001587, 0.2729886770248413, 0.10586864501237869, -0.188044473528862, 0.00812530517578125]} +{"t": 4.2901, "q": [-0.13784180581569672, -0.027930382639169693, 0.03639917075634003, 0.29846152663230896, -0.14658622443675995, 0.02019851841032505, -0.14561396837234497, 0.03158295899629593, 0.01663273386657238, 0.30593541264533997, -0.15985608100891113, -0.027039121836423874, 0.003655987558886409, -0.06663323193788528, -0.017968209460377693, 0.2073870152235031, 0.1732679307460785, -0.08324243128299713, 1.0216431617736816, 0.0010665960144251585, 0.02069675736129284, -0.0005872270558029413, -0.3354504406452179, -0.3081384003162384, -0.29479995369911194, 0.25730133056640625, 0.10910438746213913, -0.19027353823184967, 0.007705857045948505]} +{"t": 4.3069, "q": [-0.13797815144062042, -0.027921859174966812, 0.03665361925959587, 0.29841890931129456, -0.14659477770328522, 0.020198563113808632, -0.14548614621162415, 0.03160000219941139, 0.016913963481783867, 0.30594393610954285, -0.15983889997005463, -0.0270248893648386, 0.0032274469267576933, -0.06682312488555908, -0.018087303265929222, 0.2073870152235031, 0.17330388724803925, -0.08323044329881668, 1.0230693817138672, 0.0010186590952798724, 0.02069675736129284, -0.0005512743373401463, -0.34809380769729614, -0.310259610414505, -0.30280542373657227, 0.24072712659835815, 0.11094995588064194, -0.19302991032600403, 0.006831008475273848]} +{"t": 4.3237, "q": [-0.1380378156900406, -0.027921859174966812, 0.03684110566973686, 0.29842743277549744, -0.14661628007888794, 0.020219741389155388, -0.14529013633728027, 0.03158295899629593, 0.017074666917324066, 0.30597802996635437, -0.15981318056583405, -0.027010608464479446, 0.002758730435743928, -0.06705845892429352, -0.01821785606443882, 0.20737503468990326, 0.17335182428359985, -0.08317052572965622, 1.023848295211792, 0.0010186590952798724, 0.02070874162018299, -0.0005273059359751642, -0.36134836077690125, -0.3123808205127716, -0.3102116584777832, 0.22382937371730804, 0.11322695761919022, -0.1976797878742218, 0.006471481639891863]} +{"t": 4.3404, "q": [-0.13804633915424347, -0.02791333757340908, 0.03702859207987785, 0.2984359562397003, -0.14662915468215942, 0.02022682875394821, -0.14517082273960114, 0.03158295899629593, 0.017248760908842087, 0.3060206472873688, -0.15974858403205872, -0.02693255804479122, 0.0029328251257538795, -0.06730891019105911, -0.01834898442029953, 0.20682376623153687, 0.17341174185276031, -0.08317052572965622, 1.0241239070892334, 0.0010306433541700244, 0.020720725879073143, -0.00046738478704355657, -0.37522608041763306, -0.31331557035446167, -0.3189721405506134, 0.20679979026317596, 0.11681023985147476, -0.20138292014598846, 0.00612393906340003]} +{"t": 4.3571, "q": [-0.13805484771728516, -0.027921859174966812, 0.03701519966125488, 0.29846152663230896, -0.14661628007888794, 0.020219741389155388, -0.1450003832578659, 0.03158295899629593, 0.017248760908842087, 0.3060206472873688, -0.1596493422985077, -0.026783715933561325, 0.0033077981788665056, -0.06744575500488281, -0.018451465293765068, 0.20605677366256714, 0.17344769835472107, -0.08315853774547577, 1.0242438316345215, 0.0010306433541700244, 0.020720725879073143, -0.00037151097785681486, -0.3877975344657898, -0.31434622406959534, -0.32594695687294006, 0.1917116492986679, 0.12087289243936539, -0.20440293848514557, 0.005680522881448269]} +{"t": 4.3739, "q": [-0.13805484771728516, -0.0279729925096035, 0.037055376917123795, 0.2985211908817291, -0.14662060141563416, 0.02022678218781948, -0.14493219554424286, 0.03153182566165924, 0.017288938164711, 0.306003600358963, -0.15952008962631226, -0.02655755542218685, 0.0038970415480434895, -0.06758260726928711, -0.018553949892520905, 0.20540961623191833, 0.17347165942192078, -0.08314655721187592, 1.0244115591049194, 0.0010306433541700244, 0.02069675736129284, -0.00035952674807049334, -0.4002731144428253, -0.314861536026001, -0.33136382699012756, 0.17615613341331482, 0.12292219698429108, -0.20682376623153687, 0.00529702752828598]} +{"t": 4.3906, "q": [-0.13819120824337006, -0.027990037575364113, 0.03717590123414993, 0.29856377840042114, -0.1466248482465744, 0.02021978795528412, -0.14489811658859253, 0.031497739255428314, 0.017516599968075752, 0.306003600358963, -0.1593955010175705, -0.026380887255072594, 0.003977392800152302, -0.06762044876813889, -0.018560253083705902, 0.20533771812915802, 0.17355555295944214, -0.08315853774547577, 1.024807095527649, 0.0010306433541700244, 0.02069675736129284, -0.0002996056282427162, -0.41199368238449097, -0.314633846282959, -0.33451569080352783, 0.16329705715179443, 0.12504340708255768, -0.20882512629032135, 0.0047098007053136826]} +{"t": 4.4073, "q": [-0.13825085759162903, -0.028041169047355652, 0.03744373843073845, 0.29856377840042114, -0.1466248482465744, 0.02021978795528412, -0.1449151635169983, 0.031438082456588745, 0.017757654190063477, 0.3059183657169342, -0.1591167151927948, -0.026062631979584694, 0.004392541944980621, -0.06760532408952713, -0.01855967938899994, 0.20513398945331573, 0.17347165942192078, -0.08317052572965622, 1.0251905918121338, 0.0010306433541700244, 0.02069675736129284, -0.0002996056282427162, -0.42238402366638184, -0.3142983019351959, -0.33585789799690247, 0.1504020243883133, 0.12809938192367554, -0.21097029745578766, 0.004314321093261242]} +{"t": 4.4241, "q": [-0.13837017118930817, -0.02809230238199234, 0.03761783614754677, 0.2985893487930298, -0.14662905037403107, 0.020198747515678406, -0.14492367208003998, 0.03139547258615494, 0.017904965206980705, 0.30589282512664795, -0.15891119837760925, -0.025892645120620728, 0.004995177034288645, -0.06762797385454178, -0.01855567656457424, 0.2048463672399521, 0.17337578535079956, -0.08323044329881668, 1.0254422426223755, 0.0010306433541700244, 0.02069675736129284, -0.00027563716867007315, -0.4310246407985687, -0.3141784369945526, -0.33718815445899963, 0.13700366020202637, 0.1305561512708664, -0.21227657794952393, 0.003978762775659561]} +{"t": 4.4408, "q": [-0.13853208720684052, -0.028134912252426147, 0.03780532255768776, 0.29859787225723267, -0.14662905037403107, 0.020198747515678406, -0.14493219554424286, 0.03129320964217186, 0.018065666779875755, 0.3058587312698364, -0.1587100625038147, -0.025743814185261726, 0.005316582508385181, -0.0676354318857193, -0.018541373312473297, 0.20477445423603058, 0.1733638048171997, -0.08323044329881668, 1.0257058143615723, 0.0010306433541700244, 0.02070874162018299, -0.00027563716867007315, -0.4376758933067322, -0.31232088804244995, -0.33875808119773865, 0.12587031722068787, 0.13167068362236023, -0.2133791297674179, 0.0036791572347283363]} +{"t": 4.4576, "q": [-0.13869401812553406, -0.028186045587062836, 0.038086552172899246, 0.2986234426498413, -0.1466161161661148, 0.02017761580646038, -0.1449577659368515, 0.031199464574456215, 0.018226370215415955, 0.30584168434143066, -0.1584281623363495, -0.025629844516515732, 0.0055978125892579556, -0.0676276832818985, -0.01851675845682621, 0.2046186625957489, 0.1732439547777176, -0.08323044329881668, 1.0259815454483032, 0.0010186590952798724, 0.02069675736129284, -0.00025166873820126057, -0.4431406855583191, -0.3079945743083954, -0.3396928608417511, 0.11533618718385696, 0.13291704654693604, -0.21518874168395996, 0.0033076461404561996]} +{"t": 4.4743, "q": [-0.1387195736169815, -0.02826274372637272, 0.03835438936948776, 0.29860639572143555, -0.14662042260169983, 0.020184656605124474, -0.14499185979366302, 0.031088676303625107, 0.01845403201878071, 0.30580759048461914, -0.15817603468894958, -0.02550896629691124, 0.005637987982481718, -0.0676276832818985, -0.01851675845682621, 0.2045467495918274, 0.17318403720855713, -0.08319449424743652, 1.0264009237289429, 0.0010186590952798724, 0.020672788843512535, -0.0002636529679875821, -0.4466760456562042, -0.302973210811615, -0.34025612473487854, 0.10658770054578781, 0.13566142320632935, -0.21770542860031128, 0.002984072081744671]} +{"t": 4.4911, "q": [-0.13874514400959015, -0.028347965329885483, 0.038541875779628754, 0.29860639572143555, -0.14662042260169983, 0.020184656605124474, -0.1450089067220688, 0.030977889895439148, 0.018614735454320908, 0.3057734966278076, -0.157987579703331, -0.02533905580639839, 0.0057719070464372635, -0.06764258444309235, -0.018488146364688873, 0.20421120524406433, 0.17317205667495728, -0.08325441181659698, 1.0267125368118286, 0.0010066749528050423, 0.020660804584622383, -0.0002636529679875821, -0.447778582572937, -0.29798775911331177, -0.3405197858810425, 0.0978032648563385, 0.13912487030029297, -0.22058165073394775, 0.0024807346053421497]} +{"t": 4.5078, "q": [-0.13887298107147217, -0.028492841869592667, 0.038756147027015686, 0.2986149191856384, -0.14662042260169983, 0.020184656605124474, -0.14502593874931335, 0.030841534957289696, 0.018855789676308632, 0.305747926235199, -0.1577608734369278, -0.025190111249685287, 0.006267406977713108, -0.06765741854906082, -0.018449805676937103, 0.20393556356430054, 0.17311213910579681, -0.08326639980077744, 1.0269522666931152, 0.0010186590952798724, 0.02069675736129284, -0.00027563716867007315, -0.44759881496429443, -0.29270270466804504, -0.34039992094039917, 0.08946224302053452, 0.14124608039855957, -0.22314627468585968, 0.0023129554465413094]} +{"t": 4.5247, "q": [-0.13889853656291962, -0.02869737148284912, 0.03884989023208618, 0.2986234426498413, -0.14661180973052979, 0.02017057314515114, -0.145051509141922, 0.030662572011351585, 0.018882572650909424, 0.3057308793067932, -0.1575985997915268, -0.025133030489087105, 0.00638793408870697, -0.06764975190162659, -0.018434923142194748, 0.20393556356430054, 0.17305220663547516, -0.0833263173699379, 1.0272878408432007, 0.0010186590952798724, 0.020684773102402687, -0.00025166873820126057, -0.44741907715797424, -0.2865188717842102, -0.3402920663356781, 0.08295480906963348, 0.14246846735477448, -0.22480009496212006, 0.002241050126031041]} +{"t": 4.5414, "q": [-0.13888150453567505, -0.028799638152122498, 0.039064161479473114, 0.29860639572143555, -0.14660750329494476, 0.020163532346487045, -0.14511968195438385, 0.030534738674759865, 0.019083451479673386, 0.30570533871650696, -0.15743188560009003, -0.02504071034491062, 0.006441501900553703, -0.06764960289001465, -0.018415464088320732, 0.20392358303070068, 0.17305220663547516, -0.0833263173699379, 1.0276353359222412, 0.0010186590952798724, 0.020684773102402687, -0.00027563716867007315, -0.44679588079452515, -0.27871713042259216, -0.34039992094039917, 0.07629157602787018, 0.14354704320430756, -0.22604645788669586, 0.002121207769960165]} +{"t": 4.5582, "q": [-0.13888150453567505, -0.028893381357192993, 0.039398957043886185, 0.2986234426498413, -0.1466161161661148, 0.02017761580646038, -0.145238995552063, 0.03045804053544998, 0.019364681094884872, 0.3056797683238983, -0.15724880993366241, -0.025075115263462067, 0.006280798930674791, -0.06769423931837082, -0.01831989549100399, 0.20392358303070068, 0.17305220663547516, -0.08329036831855774, 1.0279709100723267, 0.0010426276130601764, 0.020672788843512535, -0.00027563716867007315, -0.44048020243644714, -0.2708914279937744, -0.3399205505847931, 0.07178550958633423, 0.14397847652435303, -0.22710107266902924, 0.002169144805520773]} +{"t": 4.5751, "q": [-0.13918828964233398, -0.0289359912276268, 0.03985428065061569, 0.2985893487930298, -0.14663319289684296, 0.020163660869002342, -0.1454605758190155, 0.030415430665016174, 0.01984678953886032, 0.3056541979312897, -0.15713299810886383, -0.024940749630331993, 0.0061736637726426125, -0.06767838448286057, -0.018222026526927948, 0.20400746166706085, 0.1730402261018753, -0.08333830535411835, 1.0283544063568115, 0.0010306433541700244, 0.02069675736129284, -0.0002636529679875821, -0.4338769018650055, -0.2623826265335083, -0.3391655683517456, 0.07052716612815857, 0.14397847652435303, -0.22731678187847137, 0.002217081608250737]} +{"t": 4.5918, "q": [-0.13919681310653687, -0.028944512829184532, 0.040242645889520645, 0.2985893487930298, -0.14662037789821625, 0.02017061971127987, -0.14584407210350037, 0.030415430665016174, 0.02032889798283577, 0.305560439825058, -0.15680356323719025, -0.024875830858945847, 0.006146880332380533, -0.06757098436355591, -0.018013671040534973, 0.20356404781341553, 0.17302824556827545, -0.0833263173699379, 1.0288097858428955, 0.0010426276130601764, 0.020660804584622383, -0.00027563716867007315, -0.42377418279647827, -0.25347834825515747, -0.3388180136680603, 0.07047922909259796, 0.14372681081295013, -0.22732876241207123, 0.002265018643811345]} +{"t": 4.6086, "q": [-0.1392650008201599, -0.028944512829184532, 0.04061761870980263, 0.29856377840042114, -0.14662888646125793, 0.02015662007033825, -0.14630426466464996, 0.030406907200813293, 0.020797614008188248, 0.3054922819137573, -0.15651972591876984, -0.02476177178323269, 0.006120096426457167, -0.0674930214881897, -0.01769944466650486, 0.20258134603500366, 0.17300426959991455, -0.08333830535411835, 1.0295528173446655, 0.0010186590952798724, 0.020684773102402687, -0.00028762139845639467, -0.4102919399738312, -0.24653948843479156, -0.33832666277885437, 0.07050319761037827, 0.14310362935066223, -0.22731678187847137, 0.0023848607670515776]} +{"t": 4.6254, "q": [-0.13932465016841888, -0.028961557894945145, 0.040952417999506, 0.29855525493621826, -0.14662037789821625, 0.02017061971127987, -0.14652583003044128, 0.030406907200813293, 0.02115919440984726, 0.30533885955810547, -0.15637777745723724, -0.024697696790099144, 0.0061736637726426125, -0.06744421273469925, -0.017240680754184723, 0.20169450342655182, 0.17302824556827545, -0.08331433683633804, 1.030739188194275, 0.0010306433541700244, 0.020672788843512535, -0.00025166873820126057, -0.39788827300071716, -0.2394448220729828, -0.3374637961387634, 0.07115034759044647, 0.14220482110977173, -0.22719694674015045, 0.0025286716409027576]} +{"t": 4.6422, "q": [-0.13929055631160736, -0.028961557894945145, 0.04136756435036659, 0.2985211908817291, -0.14662888646125793, 0.02015662007033825, -0.1469689905643463, 0.030415430665016174, 0.02168147824704647, 0.30529627203941345, -0.1563388854265213, -0.02464819699525833, 0.006361150648444891, -0.06736501306295395, -0.016761619597673416, 0.20055601000785828, 0.1730402261018753, -0.08333830535411835, 1.032069444656372, 0.0010306433541700244, 0.020672788843512535, -0.0002636529679875821, -0.3836509883403778, -0.23166705667972565, -0.3344437777996063, 0.07510513812303543, 0.1411621868610382, -0.22619026899337769, 0.002588592702522874]} +{"t": 4.6589, "q": [-0.13924795389175415, -0.028953036293387413, 0.041394349187612534, 0.29847005009651184, -0.14662888646125793, 0.02015662007033825, -0.14737804234027863, 0.030406907200813293, 0.021788613870739937, 0.30503207445144653, -0.15632164478302002, -0.024634020403027534, 0.007003961596637964, -0.06714288145303726, -0.016369137912988663, 0.1989501267671585, 0.17300426959991455, -0.0833502858877182, 1.0331361293792725, 0.0010186590952798724, 0.02069675736129284, -0.0002636529679875821, -0.36780786514282227, -0.22378143668174744, -0.3308485150337219, 0.07992279529571533, 0.14007163047790527, -0.22535137832164764, 0.0029001825023442507]} +{"t": 4.6759, "q": [-0.13889002799987793, -0.028961557894945145, 0.041394349187612534, 0.29846152663230896, -0.14663739502429962, 0.020142629742622375, -0.14759962260723114, 0.030398385599255562, 0.021775221452116966, 0.3048531115055084, -0.15626975893974304, -0.02456333115696907, 0.00739232636988163, -0.06679756939411163, -0.01568043977022171, 0.19789551198482513, 0.1729443520307541, -0.08338624238967896, 1.0339510440826416, 0.0010306433541700244, 0.020720725879073143, -0.00027563716867007315, -0.35293543338775635, -0.21488913893699646, -0.32877522706985474, 0.0860227718949318, 0.13955630362033844, -0.22502779960632324, 0.0031158984638750553]} +{"t": 4.6928, "q": [-0.13911159336566925, -0.028978602960705757, 0.041407741606235504, 0.2984103858470917, -0.14664608240127563, 0.020170757547020912, -0.14805129170417786, 0.030415430665016174, 0.021815398707985878, 0.30452075600624084, -0.15626110136508942, -0.024549197405576706, 0.00798156950622797, -0.06619460135698318, -0.014924610033631325, 0.19681693613529205, 0.1727166473865509, -0.08343417942523956, 1.0349936485290527, 0.0010186590952798724, 0.020684773102402687, -0.00027563716867007315, -0.33551037311553955, -0.2067158967256546, -0.32670196890830994, 0.09335711598396301, 0.13914884626865387, -0.22466826438903809, 0.003091930178925395]} +{"t": 4.7102, "q": [-0.13903489708900452, -0.029012691229581833, 0.04138095676898956, 0.29829108715057373, -0.14663751423358917, 0.02017071098089218, -0.14823025465011597, 0.030406907200813293, 0.021761830896139145, 0.3043503165245056, -0.15624810755252838, -0.02452799864113331, 0.008222623728215694, -0.06564229726791382, -0.01388535089790821, 0.19596605002880096, 0.17251291871070862, -0.08344615995883942, 1.0357966423034668, 0.0010306433541700244, 0.02069675736129284, -0.00027563716867007315, -0.3180733323097229, -0.198650524020195, -0.3247125744819641, 0.10065551102161407, 0.13796240091323853, -0.22435668110847473, 0.0031997880432754755]} +{"t": 4.727, "q": [-0.13912011682987213, -0.029012691229581833, 0.04138095676898956, 0.2982058525085449, -0.14667201042175293, 0.020227057859301567, -0.14852000772953033, 0.030398385599255562, 0.021815398707985878, 0.30423951148986816, -0.15627826750278473, -0.02454928681254387, 0.008222623728215694, -0.06486032158136368, -0.012449457310140133, 0.19517509639263153, 0.17224927246570587, -0.08342219144105911, 1.0367673635482788, 0.0010426276130601764, 0.020684773102402687, -0.00027563716867007315, -0.301223486661911, -0.1904173493385315, -0.3226153552532196, 0.1062401533126831, 0.1363445371389389, -0.22409303486347198, 0.0031158984638750553]} +{"t": 4.7438, "q": [-0.13919681310653687, -0.029029734432697296, 0.041407741606235504, 0.29786497354507446, -0.14666779339313507, 0.02024809829890728, -0.14868193864822388, 0.030398385599255562, 0.021775221452116966, 0.3038901090621948, -0.1563083380460739, -0.024556472897529602, 0.008490461856126785, -0.0642908439040184, -0.011118783615529537, 0.1938088834285736, 0.17205752432346344, -0.08349409699440002, 1.038624882698059, 0.0010306433541700244, 0.020684773102402687, -0.00027563716867007315, -0.28518861532211304, -0.18430539965629578, -0.3198709487915039, 0.10977550595998764, 0.13382785022258759, -0.2241409718990326, 0.0032117723021656275]} +{"t": 4.7605, "q": [-0.1392223834991455, -0.029021212831139565, 0.04132739081978798, 0.2976263463497162, -0.14668062329292297, 0.020241141319274902, -0.14878419041633606, 0.030398385599255562, 0.021748438477516174, 0.30377933382987976, -0.15638163685798645, -0.02462022192776203, 0.008450286462903023, -0.06407468765974045, -0.009604739025235176, 0.19232285022735596, 0.17205752432346344, -0.08347012847661972, 1.0413572788238525, 0.0010306433541700244, 0.02069675736129284, -0.00027563716867007315, -0.27131086587905884, -0.17849305272102356, -0.3168748915195465, 0.11339473724365234, 0.12872256338596344, -0.22408103942871094, 0.0032836776226758957]} +{"t": 4.7772, "q": [-0.13941839337348938, -0.029021212831139565, 0.04130060598254204, 0.2974303364753723, -0.14670228958129883, 0.020304445177316666, -0.1492188274860382, 0.03044099546968937, 0.021721655502915382, 0.30366000533103943, -0.15651988983154297, -0.024789951741695404, 0.008570813573896885, -0.06409667432308197, -0.00857902318239212, 0.19096863269805908, 0.1720934808254242, -0.08347012847661972, 1.0429631471633911, 0.0010306433541700244, 0.020744694396853447, -0.00027563716867007315, -0.25824806094169617, -0.17369936406612396, -0.3139627277851105, 0.1170259565114975, 0.12379704415798187, -0.22405707836151123, 0.00355931487865746]} +{"t": 4.7939, "q": [-0.13961440324783325, -0.029012691229581833, 0.04119347035884857, 0.29722583293914795, -0.14673246443271637, 0.02035375125706196, -0.1494489163160324, 0.030466562137007713, 0.02153416909277439, 0.30341288447380066, -0.15660618245601654, -0.024874897673726082, 0.00881186779588461, -0.06425541639328003, -0.007685152813792229, 0.18969830870628357, 0.17215339839458466, -0.08341021090745926, 1.044317364692688, 0.0010665960144251585, 0.02093644067645073, -0.00027563716867007315, -0.2450055032968521, -0.16986440122127533, -0.31077492237091064, 0.12231100350618362, 0.11782890558242798, -0.22374548017978668, 0.003954794257879257]} +{"t": 4.8108, "q": [-0.1396399736404419, -0.028970079496502876, 0.041072942316532135, 0.29718321561813354, -0.1468747854232788, 0.0206002164632082, -0.14955970644950867, 0.03050065040588379, 0.021400248631834984, 0.3033617436885834, -0.1568474918603897, -0.025059204548597336, 0.008865434676408768, -0.06434420496225357, -0.006562006659805775, 0.18879948556423187, 0.17212942242622375, -0.08341021090745926, 1.0450843572616577, 0.0010426276130601764, 0.020792631432414055, -0.00025166873820126057, -0.23279356956481934, -0.16688033938407898, -0.3075631558895111, 0.12881843745708466, 0.11302322894334793, -0.22300246357917786, 0.004230431281030178]} +{"t": 4.8275, "q": [-0.13969109952449799, -0.028970079496502876, 0.04101937636733055, 0.2971661686897278, -0.14699549973011017, 0.020797429606318474, -0.14967049658298492, 0.03050917387008667, 0.02134668081998825, 0.30324244499206543, -0.1570957899093628, -0.02514488436281681, 0.008905611000955105, -0.06433634459972382, -0.005623872857540846, 0.18815234303474426, 0.17203354835510254, -0.08339822292327881, 1.045575737953186, 0.0010306433541700244, 0.02076866291463375, -0.0002636529679875821, -0.2210730016231537, -0.16521452367305756, -0.3037402033805847, 0.13476261496543884, 0.10627610981464386, -0.2226669043302536, 0.004434163216501474]} +{"t": 4.8442, "q": [-0.13965700566768646, -0.02898712456226349, 0.04099259153008461, 0.29709798097610474, -0.1471169888973236, 0.020994681864976883, -0.14971311390399933, 0.03050917387008667, 0.02131989784538746, 0.3031572103500366, -0.15730880200862885, -0.025131739675998688, 0.008865434676408768, -0.06441156566143036, -0.004733613692224026, 0.18778082728385925, 0.17200958728790283, -0.08343417942523956, 1.0456955432891846, 0.0010306433541700244, 0.02076866291463375, -0.00025166873820126057, -0.20959211885929108, -0.16433967649936676, -0.3000011146068573, 0.14045512676239014, 0.09883390367031097, -0.22257103025913239, 0.0047098007053136826]} +{"t": 4.8609, "q": [-0.13955475389957428, -0.028970079496502876, 0.04101937636733055, 0.29709798097610474, -0.14721247553825378, 0.021149663254618645, -0.14971311390399933, 0.03050917387008667, 0.02133329026401043, 0.3032083511352539, -0.15753072500228882, -0.02518908493220806, 0.008530637249350548, -0.06429692357778549, -0.0037063483614474535, 0.18767297267913818, 0.1720934808254242, -0.08338624238967896, 1.0458513498306274, 0.0010426276130601764, 0.020744694396853447, -0.00025166873820126057, -0.19999274611473083, -0.1640280932188034, -0.2953272759914398, 0.1454046070575714, 0.09493903070688248, -0.22243919968605042, 0.004853611346334219]} +{"t": 4.8777, "q": [-0.139631450176239, -0.028978602960705757, 0.04103276878595352, 0.29704686999320984, -0.14729928970336914, 0.021290559321641922, -0.14988355338573456, 0.0305176954716444, 0.021413641050457954, 0.3031657338142395, -0.15770971775054932, -0.025189882144331932, 0.008262800052762032, -0.06431414186954498, -0.0030742925591766834, 0.18728947639465332, 0.1721414178609848, -0.0833742544054985, 1.0460071563720703, 0.0010426276130601764, 0.020732710137963295, -0.0002636529679875821, -0.1911364048719406, -0.16320118308067322, -0.29213947057724, 0.1476816087961197, 0.08862334489822388, -0.22243919968605042, 0.005093295592814684]} +{"t": 4.8944, "q": [-0.13966552913188934, -0.028961557894945145, 0.040925633162260056, 0.2969360649585724, -0.14734269678592682, 0.021361012011766434, -0.14993467926979065, 0.030534738674759865, 0.021306505426764488, 0.3032168745994568, -0.15776078402996063, -0.025176016613841057, 0.008302975445985794, -0.06444588303565979, -0.002616205718368292, 0.1866183578968048, 0.17220133543014526, -0.08333830535411835, 1.0463306903839111, 0.0010546118719503284, 0.0207566786557436, -0.00023968450841493905, -0.18245983123779297, -0.16208665072917938, -0.2901860177516937, 0.14847256243228912, 0.0818043202161789, -0.22252309322357178, 0.005404885392636061]} +{"t": 4.9111, "q": [-0.13965700566768646, -0.028961557894945145, 0.04084528237581253, 0.29691049456596375, -0.14741626381874084, 0.02145269326865673, -0.1500454694032669, 0.03056030534207821, 0.021279722452163696, 0.30324244499206543, -0.15784196555614471, -0.025211598724126816, 0.008249407634139061, -0.06451211124658585, -0.002430560067296028, 0.18637867271900177, 0.17220133543014526, -0.08333830535411835, 1.0467621088027954, 0.0010306433541700244, 0.0207566786557436, -0.00025166873820126057, -0.17637184262275696, -0.161032035946846, -0.2889876067638397, 0.14834074676036835, 0.07745404541492462, -0.22270286083221436, 0.005476790945976973]} +{"t": 4.9279, "q": [-0.13946951925754547, -0.028944512829184532, 0.04079171270132065, 0.2969275414943695, -0.14753344655036926, 0.02164289727807045, -0.1500028669834137, 0.030585872009396553, 0.021266330033540726, 0.3032935559749603, -0.15790577232837677, -0.02519075572490692, 0.008102096617221832, -0.06451211124658585, -0.002430560067296028, 0.18618692457675934, 0.17220133543014526, -0.08336227387189865, 1.047972559928894, 0.0010426276130601764, 0.02070874162018299, -0.00023968450841493905, -0.1720934808254242, -0.16050472855567932, -0.2881726920604706, 0.14781343936920166, 0.07455386221408844, -0.22300246357917786, 0.005344964563846588]} +{"t": 4.9447, "q": [-0.13921386003494263, -0.028944512829184532, 0.04079171270132065, 0.2969786822795868, -0.1476898193359375, 0.021910550072789192, -0.1498665064573288, 0.030594393610954285, 0.021239547058939934, 0.3034043610095978, -0.15800398588180542, -0.0252264142036438, 0.007820867002010345, -0.06450477987527847, -0.0024544065818190575, 0.185971200466156, 0.1721653789281845, -0.0833742544054985, 1.0493028163909912, 0.0010066749528050423, 0.020720725879073143, -0.00023968450841493905, -0.17005614936351776, -0.16021710634231567, -0.28820863366127014, 0.14434999227523804, 0.07242067158222198, -0.22517161071300507, 0.00512924836948514]} +{"t": 4.9617, "q": [-0.13882184028625488, -0.0289359912276268, 0.040778324007987976, 0.29699572920799255, -0.14777229726314545, 0.022044403478503227, -0.1495852768421173, 0.030585872009396553, 0.021293114870786667, 0.30341288447380066, -0.1581316888332367, -0.02519880421459675, 0.007245015352964401, -0.06455810368061066, -0.002509519224986434, 0.18610303103923798, 0.1721893548965454, -0.0833742544054985, 1.0510284900665283, 0.0010186590952798724, 0.02069675736129284, -0.00023968450841493905, -0.17073926329612732, -0.16004933416843414, -0.28825655579566956, 0.13653628528118134, 0.0694965198636055, -0.22885076701641083, 0.005045359022915363]} +{"t": 4.9784, "q": [-0.13841278851032257, -0.028944512829184532, 0.04080510511994362, 0.297080934047699, -0.14789395034313202, 0.02225569635629654, -0.14932109415531158, 0.030594393610954285, 0.02133329026401043, 0.3035236597061157, -0.15818721055984497, -0.02522018924355507, 0.006361150648444891, -0.06471755355596542, -0.002616934711113572, 0.1861989051103592, 0.17224927246570587, -0.08336227387189865, 1.0531257390975952, 0.0009827064350247383, 0.02070874162018299, -0.0001917476038215682, -0.17226125299930573, -0.15965384244918823, -0.2898145318031311, 0.1272365152835846, 0.06842992454767227, -0.23256587982177734, 0.004374242387712002]} +{"t": 4.9951, "q": [-0.13814008235931396, -0.028918948024511337, 0.040898848325014114, 0.2971150279045105, -0.14798018336296082, 0.022326380014419556, -0.14918473362922668, 0.030611438676714897, 0.021601127460598946, 0.3035833239555359, -0.15819573402404785, -0.025220226496458054, 0.004673771560192108, -0.06509006768465042, -0.00291550625115633, 0.18588732182979584, 0.1723691076040268, -0.08330234885215759, 1.0548515319824219, 0.0010426276130601764, 0.02087652124464512, -0.00015579492901451886, -0.17948773503303528, -0.16002535820007324, -0.2941887676715851, 0.11442538350820541, 0.06845389306545258, -0.23660455644130707, 0.003499393817037344]} +{"t": 5.0118, "q": [-0.13776510953903198, -0.02892746962606907, 0.04111311957240105, 0.2971661686897278, -0.1480322778224945, 0.022410916164517403, -0.14891202747821808, 0.03061996027827263, 0.02186896651983261, 0.30382195115089417, -0.15819142758846283, -0.02521316520869732, 0.0033077981788665056, -0.06553798913955688, -0.0032073133625090122, 0.18518024682998657, 0.1726207733154297, -0.08330234885215759, 1.0561937093734741, 0.0010546118719503284, 0.020864536985754967, -0.000107858024421148, -0.1874212920665741, -0.16051670908927917, -0.2977840304374695, 0.10072741657495499, 0.06864564120769501, -0.24319587647914886, 0.002576608443632722]} +{"t": 5.0286, "q": [-0.13751795887947083, -0.028910424560308456, 0.04138095676898956, 0.29727694392204285, -0.14811840653419495, 0.022467542439699173, -0.14863932132720947, 0.03063700534403324, 0.022230546921491623, 0.30401793122291565, -0.15819151699543, -0.025227250531315804, 0.0026382035575807095, -0.06628972291946411, -0.0037131367716938257, 0.18390992283821106, 0.17282451689243317, -0.08326639980077744, 1.058290958404541, 0.0010665960144251585, 0.020912472158670425, -5.992112710373476e-05, -0.19608590006828308, -0.1648550033569336, -0.30213430523872375, 0.08428505808115005, 0.06882540881633759, -0.24921196699142456, 0.0020013656467199326]} +{"t": 5.0453, "q": [-0.13745830953121185, -0.028910424560308456, 0.04164879396557808, 0.2973451316356659, -0.14817003905773163, 0.022495904937386513, -0.14831547439098358, 0.03063700534403324, 0.02251177653670311, 0.3042309880256653, -0.15818721055984497, -0.02522018924355507, 0.0021828790195286274, -0.06723152846097946, -0.004367188084870577, 0.1823759377002716, 0.17298030853271484, -0.08327838033437729, 1.061490774154663, 0.0010546118719503284, 0.02087652124464512, -1.1984225238848012e-05, -0.206667959690094, -0.16943298280239105, -0.30916905403137207, 0.06751912832260132, 0.0691729485988617, -0.2552639842033386, 0.001701759989373386]} +{"t": 5.0621, "q": [-0.13745830953121185, -0.02887633629143238, 0.0418228916823864, 0.2974218428134918, -0.14818739891052246, 0.022524084895849228, -0.14797459542751312, 0.030654048547148705, 0.02271265536546707, 0.3043076992034912, -0.1581829935312271, -0.02522721141576767, 0.002169487066566944, -0.06814278662204742, -0.004981764126569033, 0.1805783063173294, 0.1730162650346756, -0.0833263173699379, 1.063887596130371, 0.0010665960144251585, 0.021164141595363617, 3.5952674807049334e-05, -0.21788519620895386, -0.17353157699108124, -0.31821712851524353, 0.052203286439180374, 0.06948453933000565, -0.26124411821365356, 0.0015939020086079836]} +{"t": 5.0788, "q": [-0.13784180581569672, -0.028842248022556305, 0.04190324246883392, 0.2974388599395752, -0.1482173204421997, 0.022517234086990356, -0.14771893620491028, 0.030662572011351585, 0.022779613733291626, 0.3043503165245056, -0.15818282961845398, -0.025199033319950104, 0.0024507169146090746, -0.06939572095870972, -0.005828476045280695, 0.17921210825443268, 0.1730642020702362, -0.08329036831855774, 1.0647145509719849, 0.0010785802733153105, 0.021200094372034073, 7.190534961409867e-05, -0.2298334687948227, -0.17890051007270813, -0.32749292254447937, 0.036491964012384415, 0.07015565782785416, -0.2671763300895691, 0.0011864382540807128]} +{"t": 5.0955, "q": [-0.13782475888729095, -0.028850769624114037, 0.04188985005021095, 0.29746443033218384, -0.1482129842042923, 0.022510191425681114, -0.14755702018737793, 0.030662572011351585, 0.022806398570537567, 0.3044099509716034, -0.15817861258983612, -0.025206057354807854, 0.0026382035575807095, -0.07059577852487564, -0.006658881902694702, 0.17837320268154144, 0.17307618260383606, -0.08329036831855774, 1.0649781227111816, 0.0011145329335704446, 0.021260015666484833, 7.190534961409867e-05, -0.24202142655849457, -0.18471285700798035, -0.3350549638271332, 0.0225662961602211, 0.07056311517953873, -0.27087944746017456, 0.0009227853151969612]} +{"t": 5.1122, "q": [-0.13791850209236145, -0.028833726420998573, 0.04195680841803551, 0.2976263463497162, -0.14822165668010712, 0.0225242767482996, -0.14732691645622253, 0.030671093612909317, 0.0228599663823843, 0.3044866621494293, -0.158182755112648, -0.02518494799733162, 0.002691771136596799, -0.07178036123514175, -0.007451721001416445, 0.17812153697013855, 0.17318403720855713, -0.08331433683633804, 1.0653736591339111, 0.0010905645322054625, 0.02130795270204544, 8.388957940042019e-05, -0.25538384914398193, -0.19054917991161346, -0.3424132764339447, 0.00860467366874218, 0.07103050500154495, -0.27345603704452515, 0.0009467537747696042]} +{"t": 5.129, "q": [-0.13814859092235565, -0.028782593086361885, 0.042117513716220856, 0.2977541983127594, -0.14823012053966522, 0.02251027524471283, -0.14713943004608154, 0.030705181881785393, 0.023060845211148262, 0.30451223254203796, -0.1581570953130722, -0.025170739740133286, 0.0030131766106933355, -0.07308650016784668, -0.008327080868184566, 0.1780616194009781, 0.17330388724803925, -0.0833263173699379, 1.065984845161438, 0.0010665960144251585, 0.021343905478715897, 0.00011984225420746952, -0.26848259568214417, -0.1958102583885193, -0.35091009736061096, -0.0035353463608771563, 0.0712941586971283, -0.2749181389808655, 0.0010186590952798724]} +{"t": 5.1457, "q": [-0.13829347491264343, -0.028774071484804153, 0.0421442948281765, 0.29783087968826294, -0.1482127606868744, 0.022482095286250114, -0.14691784977912903, 0.030713703483343124, 0.023087628185749054, 0.3046741485595703, -0.1580844521522522, -0.02513519488275051, 0.003562244353815913, -0.07411179691553116, -0.009033218957483768, 0.17796574532985687, 0.17335182428359985, -0.08329036831855774, 1.0664881467819214, 0.0011025486746802926, 0.021331921219825745, 0.00016777915880084038, -0.28014326095581055, -0.19983695447444916, -0.3605813682079315, -0.01408146508038044, 0.0715937614440918, -0.2750379741191864, 0.0009946906939148903]} +{"t": 5.1624, "q": [-0.13831904530525208, -0.028774071484804153, 0.04215768724679947, 0.2979927957057953, -0.1481911689043045, 0.02246091328561306, -0.14668776094913483, 0.030705181881785393, 0.023101020604372025, 0.3048275411128998, -0.15796862542629242, -0.025000829249620438, 0.0037631227169185877, -0.07484076917171478, -0.009518654085695744, 0.17801368236541748, 0.1733638048171997, -0.08326639980077744, 1.0670034885406494, 0.0010905645322054625, 0.021283984184265137, 0.00025166873820126057, -0.2915642261505127, -0.20322848856449127, -0.369917094707489, -0.022362563759088516, 0.07204916328191757, -0.2749660611152649, 0.0009707222343422472]} +{"t": 5.1794, "q": [-0.13843834400177002, -0.028782593086361885, 0.04231838881969452, 0.29805245995521545, -0.14819104969501495, 0.022446874529123306, -0.14662809669971466, 0.03069666028022766, 0.023261722177267075, 0.3048531115055084, -0.15782278776168823, -0.02483110874891281, 0.003910433501005173, -0.07520530372858047, -0.00976620614528656, 0.17801368236541748, 0.17330388724803925, -0.08327838033437729, 1.0672791004180908, 0.0010905645322054625, 0.021164141595363617, 0.00035952674807049334, -0.3004205524921417, -0.20563732087612152, -0.3773113489151001, -0.027995150536298752, 0.07255250215530396, -0.27482226490974426, 0.0009467537747696042]} +{"t": 5.1961, "q": [-0.13860879838466644, -0.028774071484804153, 0.042599618434906006, 0.29806098341941833, -0.1481565535068512, 0.022418610751628876, -0.1465599238872528, 0.03069666028022766, 0.023583129048347473, 0.3048616349697113, -0.1576089859008789, -0.024703357368707657, 0.003937217406928539, -0.07526606321334839, -0.0098074646666646, 0.17801368236541748, 0.17327991127967834, -0.08327838033437729, 1.0675188302993774, 0.0010426276130601764, 0.020924456417560577, 0.0003834952076431364, -0.3072156012058258, -0.20700351893901825, -0.3855205476284027, -0.032645028084516525, 0.07349925488233566, -0.2745106518268585, 0.0012223910307511687]} +{"t": 5.2128, "q": [-0.13879628479480743, -0.028791116550564766, 0.04280049726366997, 0.29806098341941833, -0.1481347382068634, 0.02236933261156082, -0.14662809669971466, 0.03069666028022766, 0.02370365522801876, 0.3048275411128998, -0.1574248969554901, -0.024554602801799774, 0.0041247038170695305, -0.07522818446159363, -0.00979134626686573, 0.17802566289901733, 0.17325595021247864, -0.08329036831855774, 1.0676746368408203, 0.0010426276130601764, 0.020732710137963295, 0.0004074636672157794, -0.3109307289123535, -0.20732709765434265, -0.3961625397205353, -0.034754253923892975, 0.0740385428071022, -0.27433091402053833, 0.0012223910307511687]} +{"t": 5.2297, "q": [-0.13891558349132538, -0.028799638152122498, 0.042907632887363434, 0.2980695068836212, -0.14809578657150269, 0.022319979965686798, -0.1467048078775406, 0.030705181881785393, 0.02385096624493599, 0.30484458804130554, -0.15722376108169556, -0.024405764415860176, 0.004138095770031214, -0.07519011944532394, -0.009755891747772694, 0.17819344997406006, 0.17325595021247864, -0.08325441181659698, 1.0677345991134644, 0.0010066749528050423, 0.02070874162018299, 0.00045540055725723505, -0.311458021402359, -0.2073630541563034, -0.40597760677337646, -0.03476623818278313, 0.07411044836044312, -0.27377963066101074, 0.0011744541116058826]} +{"t": 5.2465, "q": [-0.13891558349132538, -0.028799638152122498, 0.043081726878881454, 0.29805245995521545, -0.1481085866689682, 0.022313019260764122, -0.1468411535024643, 0.03068813681602478, 0.02401166968047619, 0.3047764003276825, -0.15710380673408508, -0.024292515590786934, 0.004044352564960718, -0.07517492771148682, -0.009745577350258827, 0.17867282032966614, 0.17325595021247864, -0.08323044329881668, 1.067914366722107, 0.0010066749528050423, 0.020684773102402687, 0.0005273059359751642, -0.30972030758857727, -0.207039475440979, -0.4151096045970917, -0.03377154842019081, 0.07413441687822342, -0.27276095747947693, 0.0010426276130601764]} +{"t": 5.2632, "q": [-0.13889853656291962, -0.02880815975368023, 0.04334956780076027, 0.29801836609840393, -0.1481042355298996, 0.02230597659945488, -0.14698603749275208, 0.03068813681602478, 0.024212546646595, 0.3047338128089905, -0.15706102550029755, -0.024264145642518997, 0.0038970415480434895, -0.07512185722589493, -0.009719143621623516, 0.17897242307662964, 0.17327991127967834, -0.08319449424743652, 1.0682258605957031, 0.0010066749528050423, 0.02070874162018299, 0.0005992112564854324, -0.30745530128479004, -0.20610471069812775, -0.4223480522632599, -0.033304162323474884, 0.07357116043567657, -0.2718381881713867, 0.0012463594321161509]} +{"t": 5.28, "q": [-0.13874514400959015, -0.02880815975368023, 0.04338974133133888, 0.2979927957057953, -0.1481085866689682, 0.022313019260764122, -0.14710533618927002, 0.03068813681602478, 0.024225939065217972, 0.30469971895217896, -0.15702278912067413, -0.024285120889544487, 0.003910433501005173, -0.07509879767894745, -0.009674668312072754, 0.17867282032966614, 0.1732439547777176, -0.08320647478103638, 1.0684775114059448, 0.0010186590952798724, 0.02069675736129284, 0.0006471481756307185, -0.30086398124694824, -0.204966202378273, -0.42962250113487244, -0.031135017052292824, 0.07256448268890381, -0.27113109827041626, 0.0016058861510828137]} +{"t": 5.2967, "q": [-0.13874514400959015, -0.02880815975368023, 0.04337634891271591, 0.2979331612586975, -0.14812137186527252, 0.022306079044938087, -0.147292822599411, 0.03068813681602478, 0.02418576367199421, 0.30452075600624084, -0.15702702105045319, -0.02427808754146099, 0.004044352564960718, -0.07489346712827682, -0.009506416507065296, 0.17834924161434174, 0.17321999371051788, -0.08321846276521683, 1.068825125694275, 0.0010186590952798724, 0.020672788843512535, 0.0007310377550311387, -0.29169604182243347, -0.20163458585739136, -0.4382750988006592, -0.025718146935105324, 0.07003581523895264, -0.269501268863678, 0.0015219965716823936]} +{"t": 5.3134, "q": [-0.1383531242609024, -0.02880815975368023, 0.04336295649409294, 0.29790759086608887, -0.1481129229068756, 0.02232007123529911, -0.14768484234809875, 0.03068813681602478, 0.024158980697393417, 0.30442699790000916, -0.15701833367347717, -0.02424987219274044, 0.003937217406928539, -0.0743011012673378, -0.00910414382815361, 0.17833726108074188, 0.1732679307460785, -0.08323044329881668, 1.0694482326507568, 0.0010186590952798724, 0.02069675736129284, 0.0007310377550311387, -0.28129372000694275, -0.19764384627342224, -0.44495031237602234, -0.01919872872531414, 0.06778277456760406, -0.26863840222358704, 0.0015939020086079836]} +{"t": 5.3304, "q": [-0.13814008235931396, -0.028799638152122498, 0.04338974133133888, 0.2978905439376831, -0.1481085866689682, 0.022313019260764122, -0.14817912876605988, 0.03068813681602478, 0.02419915609061718, 0.304324746131897, -0.15700973570346832, -0.024235738441348076, 0.0037229470908641815, -0.07348063588142395, -0.008518063463270664, 0.17833726108074188, 0.1732679307460785, -0.08324243128299713, 1.0705868005752563, 0.0010186590952798724, 0.020744694396853447, 0.0007190534961409867, -0.2689979076385498, -0.1924906224012375, -0.45043909549713135, -0.011612714268267155, 0.06254567205905914, -0.26739203929901123, 0.0015699334908276796]} +{"t": 5.3471, "q": [-0.1384042650461197, -0.028842248022556305, 0.04338974133133888, 0.2977968156337738, -0.14809155464172363, 0.02232697606086731, -0.1486307978630066, 0.03068813681602478, 0.024212546646595, 0.3041202127933502, -0.1570012867450714, -0.024249795824289322, 0.0037631227169185877, -0.07250821590423584, -0.007820084691047668, 0.17821741104125977, 0.17321999371051788, -0.08323044329881668, 1.0714616775512695, 0.0010066749528050423, 0.020744694396853447, 0.0007310377550311387, -0.2545928955078125, -0.189015194773674, -0.45276403427124023, -0.005680522881448269, 0.05874667316675186, -0.26569026708602905, 0.0015939020086079836]} +{"t": 5.3638, "q": [-0.13865140080451965, -0.02888485975563526, 0.04338974133133888, 0.29769453406333923, -0.1481044739484787, 0.02233407273888588, -0.14895464479923248, 0.03068813681602478, 0.024212546646595, 0.30393272638320923, -0.15701816976070404, -0.024221692234277725, 0.003696163184940815, -0.0713282898068428, -0.006722596473991871, 0.1766594648361206, 0.1732679307460785, -0.08321846276521683, 1.0717252492904663, 0.0010306433541700244, 0.020804615691304207, 0.0007190534961409867, -0.23934894800186157, -0.1859232634305954, -0.45246443152427673, 0.0023009711876511574, 0.05440838262438774, -0.2644798755645752, 0.0018216022290289402]} +{"t": 5.3807, "q": [-0.1387707144021988, -0.028918948024511337, 0.04340313374996185, 0.2976263463497162, -0.14810046553611755, 0.022369148209691048, -0.14918473362922668, 0.03067961521446705, 0.024225939065217972, 0.3037111461162567, -0.15702661871910095, -0.02420763671398163, 0.003964001312851906, -0.07051801681518555, -0.005618145689368248, 0.1747419834136963, 0.17314808070659637, -0.08333830535411835, 1.072096824645996, 0.0010426276130601764, 0.02093644067645073, 0.0007190534961409867, -0.22585470974445343, -0.18214823305606842, -0.4514937102794647, 0.011289140209555626, 0.049494851380586624, -0.2636529505252838, 0.002049302449449897]} +{"t": 5.3975, "q": [-0.13887298107147217, -0.028918948024511337, 0.04334956780076027, 0.29754966497421265, -0.14809191226959229, 0.022369103506207466, -0.14938926696777344, 0.03067961521446705, 0.024118803441524506, 0.3035407066345215, -0.15707792341709137, -0.02423604391515255, 0.004767514765262604, -0.06959035992622375, -0.0040402645245194435, 0.1720455437898636, 0.17292039096355438, -0.0833742544054985, 1.0725162029266357, 0.0010306433541700244, 0.020984377712011337, 0.0007310377550311387, -0.21079054474830627, -0.17771407961845398, -0.4496241509914398, 0.01877928152680397, 0.04235225170850754, -0.2633054256439209, 0.002133192028850317]} +{"t": 5.4142, "q": [-0.1388644576072693, -0.0289359912276268, 0.04330939054489136, 0.29749852418899536, -0.14811794459819794, 0.022411366924643517, -0.14961937069892883, 0.03067961521446705, 0.02402506023645401, 0.3035662770271301, -0.15718889236450195, -0.024264715611934662, 0.005437109619379044, -0.06867524981498718, -0.0022244190331548452, 0.1699722707271576, 0.17270466685295105, -0.08341021090745926, 1.0725761651992798, 0.0010426276130601764, 0.02099636197090149, 0.0007190534961409867, -0.19686487317085266, -0.17289641499519348, -0.4487013816833496, 0.027300065383315086, 0.03606053441762924, -0.26326945424079895, 0.0024088292848318815]} +{"t": 5.4311, "q": [-0.13905194401741028, -0.0289359912276268, 0.04330939054489136, 0.2973792254924774, -0.14817871153354645, 0.022509999573230743, -0.14992615580558777, 0.03068813681602478, 0.02405184507369995, 0.3035236597061157, -0.15724025666713715, -0.024307217448949814, 0.005852258298546076, -0.06768056005239487, -0.0007592057809233665, 0.16830645501613617, 0.1723930835723877, -0.08343417942523956, 1.0726001262664795, 0.0010665960144251585, 0.02099636197090149, 0.0006831008358858526, -0.18307103216648102, -0.16866599023342133, -0.4470595419406891, 0.03437075763940811, 0.029636988416314125, -0.2632574737071991, 0.002588592702522874]} +{"t": 5.4479, "q": [-0.13937577605247498, -0.028944512829184532, 0.043121904134750366, 0.2973451316356659, -0.14823102951049805, 0.022622624412178993, -0.15025852620601654, 0.03067961521446705, 0.023917926475405693, 0.3035236597061157, -0.15726599097251892, -0.024335501715540886, 0.006923609878867865, -0.06667684763669968, 0.0008833500905893743, 0.16686835885047913, 0.17203354835510254, -0.08351806551218033, 1.0725882053375244, 0.0010665960144251585, 0.02093644067645073, 0.0006591323763132095, -0.16970860958099365, -0.16381236910820007, -0.4438837170600891, 0.04015913978219032, 0.02147573232650757, -0.26336532831192017, 0.002960103563964367]} +{"t": 5.4646, "q": [-0.13937577605247498, -0.028944512829184532, 0.04288085177540779, 0.2973025143146515, -0.14824405312538147, 0.022643761709332466, -0.15035226941108704, 0.03067961521446705, 0.023743830621242523, 0.3036259412765503, -0.15731306374073029, -0.024370940402150154, 0.00743250222876668, -0.0658365935087204, 0.002757960930466652, 0.1663290560245514, 0.17166204750537872, -0.08351806551218033, 1.0725882053375244, 0.0010665960144251585, 0.020804615691304207, 0.0006471481756307185, -0.16052870452404022, -0.15859924256801605, -0.4404202699661255, 0.04651077836751938, 0.01521996594965458, -0.2635570764541626, 0.0031638354994356632]} +{"t": 5.4814, "q": [-0.13941839337348938, -0.028961557894945145, 0.04285406693816185, 0.29722583293914795, -0.14834822714328766, 0.02281283587217331, -0.1506420224905014, 0.03067961521446705, 0.02367687225341797, 0.30359184741973877, -0.15763361752033234, -0.024534396827220917, 0.007954785600304604, -0.06537821888923645, 0.004135666415095329, 0.16629311442375183, 0.17130251228809357, -0.08354203402996063, 1.072648048400879, 0.0010665960144251585, 0.020864536985754967, 0.0006591323763132095, -0.1543208658695221, -0.15397332608699799, -0.43783167004585266, 0.05007009208202362, 0.009695238433778286, -0.2638087570667267, 0.0032597093377262354]} +{"t": 5.4981, "q": [-0.13937577605247498, -0.028961557894945145, 0.04270675405859947, 0.2970212996006012, -0.14840887486934662, 0.022897420451045036, -0.15068462491035461, 0.03068813681602478, 0.023623304441571236, 0.3035662770271301, -0.15781371295452118, -0.02473244071006775, 0.008570813573896885, -0.06535152345895767, 0.005307985935360193, 0.16628111898899078, 0.17107482254505157, -0.08356600254774094, 1.072648048400879, 0.0010426276130601764, 0.020840568467974663, 0.0006591323763132095, -0.14909574389457703, -0.15030615031719208, -0.4356984794139862, 0.05113668739795685, 0.00535694882273674, -0.26431208848953247, 0.0031997880432754755]} +{"t": 5.5149, "q": [-0.13935022056102753, -0.028953036293387413, 0.04234517365694046, 0.2969275414943695, -0.1484784334897995, 0.0230241771787405, -0.15067610144615173, 0.03069666028022766, 0.023261722177267075, 0.3036344647407532, -0.15814253687858582, -0.024853669106960297, 0.008677948266267776, -0.06545453518629074, 0.006297478452324867, 0.16653279960155487, 0.17097894847393036, -0.08355402201414108, 1.0727440118789673, 0.0010665960144251585, 0.020804615691304207, 0.0006950850365683436, -0.14674684405326843, -0.14748986065387726, -0.4345719814300537, 0.051364388316869736, 0.0007430219557136297, -0.26559439301490784, 0.0031398669816553593]} +{"t": 5.5316, "q": [-0.13934169709682465, -0.028918948024511337, 0.04202376678586006, 0.2969360649585724, -0.14856524765491486, 0.02316507324576378, -0.15065906941890717, 0.03069666028022766, 0.022926924750208855, 0.30360037088394165, -0.15839004516601562, -0.024911129847168922, 0.00866455677896738, -0.06554786115884781, 0.006759670563042164, 0.16679644584655762, 0.17093101143836975, -0.08351806551218033, 1.0729836225509644, 0.0010426276130601764, 0.020864536985754967, 0.0006471481756307185, -0.1465790569782257, -0.14566825330257416, -0.43439221382141113, 0.048895638436079025, -0.001306280493736267, -0.26700854301452637, 0.003043993143364787]} +{"t": 5.5483, "q": [-0.13914568722248077, -0.02886781468987465, 0.04197020083665848, 0.2969190180301666, -0.14860454201698303, 0.023256560787558556, -0.150599405169487, 0.030730748549103737, 0.02287335693836212, 0.3036344647407532, -0.15859515964984894, -0.025010671466588974, 0.00806192122399807, -0.06580343842506409, 0.00682662520557642, 0.16703613102436066, 0.17093101143836975, -0.08349409699440002, 1.0731993913650513, 0.0010426276130601764, 0.020840568467974663, 0.0006950850365683436, -0.146782785654068, -0.1453566700220108, -0.4345240294933319, 0.04368250072002411, -0.0023848607670515776, -0.2695971429347992, 0.002984072081744671]} +{"t": 5.5651, "q": [-0.13878776133060455, -0.02880815975368023, 0.04199698567390442, 0.29703834652900696, -0.1486697643995285, 0.023376284167170525, -0.15039487183094025, 0.03080744668841362, 0.022886749356985092, 0.30365148186683655, -0.15872317552566528, -0.025039412081241608, 0.007459285669028759, -0.06616679579019547, 0.006668519228696823, 0.16726383566856384, 0.17100290954113007, -0.08351806551218033, 1.0739184617996216, 0.0010665960144251585, 0.020960409194231033, 0.0007430219557136297, -0.15318237245082855, -0.1456323117017746, -0.4347037971019745, 0.03730689361691475, -0.003451456781476736, -0.271670401096344, 0.0028282771818339825]} +{"t": 5.5818, "q": [-0.13860027492046356, -0.028791116550564766, 0.04197020083665848, 0.2971150279045105, -0.14867867529392242, 0.023418456315994263, -0.15012216567993164, 0.030824491754174232, 0.0228599663823843, 0.30364295840263367, -0.1588382124900818, -0.025032881647348404, 0.007713731843978167, -0.06667529046535492, 0.0063175237737596035, 0.1666526347398758, 0.17108680307865143, -0.08342219144105911, 1.074493646621704, 0.0010306433541700244, 0.02099636197090149, 0.0007550062146037817, -0.1603609174489975, -0.14603976905345917, -0.43658533692359924, 0.02853444032371044, -0.004565989598631859, -0.2731444537639618, 0.0027204190846532583]} +{"t": 5.5986, "q": [-0.1382679045200348, -0.028791116550564766, 0.041930023580789566, 0.2972087860107422, -0.1487092822790146, 0.023495860397815704, -0.14980685710906982, 0.030824491754174232, 0.0228599663823843, 0.30368557572364807, -0.15898694097995758, -0.024956053122878075, 0.007378934416919947, -0.06720645725727081, 0.005960848648101091, 0.1664009690284729, 0.17135044932365417, -0.08342219144105911, 1.0746254920959473, 0.0010665960144251585, 0.020984377712011337, 0.0008149273344315588, -0.1706194132566452, -0.14693859219551086, -0.44115132093429565, 0.019354524090886116, -0.0049734534695744514, -0.27419906854629517, 0.0023249397054314613]} +{"t": 5.6153, "q": [-0.13797815144062042, -0.028791116550564766, 0.04195680841803551, 0.2972854673862457, -0.14875268936157227, 0.023566313087940216, -0.14943188428878784, 0.030824491754174232, 0.022967100143432617, 0.30364295840263367, -0.15901689231395721, -0.024977322667837143, 0.007070920895785093, -0.0678439736366272, 0.005523406434804201, 0.16650882363319397, 0.17178188264369965, -0.08336227387189865, 1.074877142906189, 0.0010665960144251585, 0.0210682675242424, 0.000850879994686693, -0.1811775118112564, -0.1513967216014862, -0.4468318521976471, 0.008233162574470043, -0.005081311333924532, -0.27495408058166504, 0.0023129554465413094]} +{"t": 5.632, "q": [-0.13776510953903198, -0.028799638152122498, 0.04195680841803551, 0.297336608171463, -0.14883926510810852, 0.023679113015532494, -0.14915065467357635, 0.030824491754174232, 0.02300727739930153, 0.3036685287952423, -0.15906810760498047, -0.024991635233163834, 0.0066289883106946945, -0.06868643313646317, 0.004947011359035969, 0.16688033938407898, 0.1720695048570633, -0.08333830535411835, 1.0753206014633179, 0.0010546118719503284, 0.0210682675242424, 0.000862864195369184, -0.19275428354740143, -0.15550731122493744, -0.4531714916229248, -0.0015100124292075634, -0.005033374764025211, -0.27552932500839233, 0.0020013656467199326]} +{"t": 5.6487, "q": [-0.13749238848686218, -0.028791116550564766, 0.04201037809252739, 0.29737070202827454, -0.14887811243534088, 0.02371443435549736, -0.14901429414749146, 0.030824491754174232, 0.023127803578972816, 0.30373671650886536, -0.1590850055217743, -0.024963531643152237, 0.005062136333435774, -0.06973330676555634, 0.0042806086130440235, 0.16714398562908173, 0.17230919003486633, -0.0833502858877182, 1.0761713981628418, 0.0010665960144251585, 0.021092236042022705, 0.000898816913831979, -0.20398350059986115, -0.1615114063024521, -0.46122488379478455, -0.012487562373280525, -0.004997421987354755, -0.2755413055419922, 0.002049302449449897]} +{"t": 5.6655, "q": [-0.13736456632614136, -0.028782593086361885, 0.042104121297597885, 0.2974900007247925, -0.14887821674346924, 0.023728474974632263, -0.14892907440662384, 0.030833013355731964, 0.023261722177267075, 0.30387306213378906, -0.15907655656337738, -0.024977587163448334, 0.003468500915914774, -0.07086124271154404, 0.003797629615291953, 0.1673237532377243, 0.17245300114154816, -0.0833502858877182, 1.077573537826538, 0.0010665960144251585, 0.021104220300912857, 0.000874848454259336, -0.21464945375919342, -0.16650882363319397, -0.47268182039260864, -0.022122880443930626, -0.004985437728464603, -0.2755053639411926, 0.002061286708340049]} +{"t": 5.6822, "q": [-0.13742421567440033, -0.028774071484804153, 0.0421442948281765, 0.29754966497421265, -0.1489211618900299, 0.023742780089378357, -0.14891202747821808, 0.030841534957289696, 0.023315289989113808, 0.3040349781513214, -0.15907233953475952, -0.024984611198306084, 0.0025176764465868473, -0.07232288271188736, 0.0030976650305092335, 0.16688033938407898, 0.1726926863193512, -0.08330234885215759, 1.0796828269958496, 0.0010665960144251585, 0.02111620455980301, 0.000898816913831979, -0.2228946089744568, -0.17283649742603302, -0.4874224066734314, -0.031626369804143906, -0.004853611346334219, -0.27525368332862854, 0.0017137442482635379]} +{"t": 5.699, "q": [-0.1373475193977356, -0.028774071484804153, 0.04219786450266838, 0.2976093292236328, -0.14893826842308044, 0.023742904886603355, -0.14880123734474182, 0.030841534957289696, 0.023409033194184303, 0.3041202127933502, -0.1590636521577835, -0.024956393986940384, 0.0016204193234443665, -0.07369372248649597, 0.0024287893902510405, 0.1666766107082367, 0.1729922890663147, -0.08330234885215759, 1.081216812133789, 0.0011025486746802926, 0.0210682675242424, 0.000898816913831979, -0.22948592901229858, -0.18071013689041138, -0.5012522339820862, -0.03816975653171539, -0.004865595605224371, -0.27463051676750183, 0.0016658073291182518]} +{"t": 5.7157, "q": [-0.1372963935136795, -0.028739983215928078, 0.04247909411787987, 0.2977030575275421, -0.1489812582731247, 0.0237713735550642, -0.14861375093460083, 0.030841534957289696, 0.02367687225341797, 0.30411168932914734, -0.15905943512916565, -0.024963418021798134, 0.0011517030652612448, -0.07472892850637436, 0.0021388002205640078, 0.16634105145931244, 0.1732439547777176, -0.08329036831855774, 1.0830024480819702, 0.0010905645322054625, 0.021092236042022705, 0.0009227853151969612, -0.23443540930747986, -0.1873733550310135, -0.5169755220413208, -0.042508047074079514, -0.005033374764025211, -0.2734680473804474, 0.0019654128700494766]} +{"t": 5.7325, "q": [-0.13733899593353271, -0.02874850481748581, 0.04263979569077492, 0.29769453406333923, -0.1490415781736374, 0.023828094825148582, -0.14850296080112457, 0.030858580023050308, 0.023824183270335197, 0.30410316586494446, -0.15905512869358063, -0.0249563567340374, 0.0004821082402486354, -0.07579115778207779, 0.0021261069923639297, 0.16638898849487305, 0.17341174185276031, -0.08327838033437729, 1.084069013595581, 0.0010665960144251585, 0.020972393453121185, 0.0009946906939148903, -0.23822243511676788, -0.1940605640411377, -0.5346642136573792, -0.044089965522289276, -0.005033374764025211, -0.2707715928554535, 0.0015100124292075634]} +{"t": 5.7494, "q": [-0.13737308979034424, -0.02874850481748581, 0.04285406693816185, 0.297711580991745, -0.14909332990646362, 0.02388474904000759, -0.14856262505054474, 0.030841534957289696, 0.023958101868629456, 0.30410316586494446, -0.15904644131660461, -0.0249281395226717, -0.00018748654110822827, -0.07627902179956436, 0.002282485133036971, 0.16641294956207275, 0.17344769835472107, -0.08326639980077744, 1.0848959684371948, 0.0010665960144251585, 0.02099636197090149, 0.0010665960144251585, -0.2395886331796646, -0.20078371465206146, -0.5521851778030396, -0.04412591829895973, -0.005476790945976973, -0.26853054761886597, 0.001761681167408824]} +{"t": 5.7663, "q": [-0.13755205273628235, -0.02875702641904354, 0.043121904134750366, 0.29769453406333923, -0.14909745752811432, 0.02386368438601494, -0.14880123734474182, 0.030850058421492577, 0.024158980697393417, 0.30406054854393005, -0.15901219844818115, -0.024899808689951897, -0.0006026353221386671, -0.07656314224004745, 0.0024717526976019144, 0.16659271717071533, 0.17341174185276031, -0.08323044329881668, 1.085195541381836, 0.0010665960144251585, 0.02088850550353527, 0.0011744541116058826, -0.23934894800186157, -0.20656010508537292, -0.5716955065727234, -0.043718453496694565, -0.006507434416562319, -0.2660737633705139, 0.0015819177497178316]} +{"t": 5.7831, "q": [-0.13782475888729095, -0.02874850481748581, 0.04345669969916344, 0.2976178228855133, -0.14912281930446625, 0.023821694776415825, -0.14907394349575043, 0.030841534957289696, 0.02438664250075817, 0.3040349781513214, -0.15898646414279938, -0.024871524423360825, -0.0014061490073800087, -0.07657778263092041, 0.0025095324963331223, 0.16694025695323944, 0.17342372238636017, -0.08317052572965622, 1.085555076599121, 0.0010665960144251585, 0.02082858420908451, 0.0011864382540807128, -0.23883362114429474, -0.2128278613090515, -0.590558648109436, -0.04338289424777031, -0.008197209797799587, -0.26374882459640503, 0.0015219965716823936]} +{"t": 5.7999, "q": [-0.13788440823554993, -0.02874850481748581, 0.043630797415971756, 0.2976093292236328, -0.14912281930446625, 0.023821694776415825, -0.1491762101650238, 0.030850058421492577, 0.0245339535176754, 0.3040775954723358, -0.15896917879581451, -0.024829166010022163, -0.0015936355339363217, -0.07653182744979858, 0.002578833606094122, 0.16691629588603973, 0.17337578535079956, -0.08319449424743652, 1.0861783027648926, 0.0010426276130601764, 0.020780647173523903, 0.0012104067718610168, -0.23683226108551025, -0.21873608231544495, -0.6084151268005371, -0.04009921848773956, -0.00977912824600935, -0.261807382106781, 0.0015219965716823936]} +{"t": 5.8167, "q": [-0.13791850209236145, -0.028739983215928078, 0.0436575785279274, 0.2976093292236328, -0.14911003410816193, 0.023828625679016113, -0.14921030402183533, 0.030841534957289696, 0.0245339535176754, 0.3041202127933502, -0.15895222127437592, -0.024843184277415276, -0.002022176282480359, -0.07640238851308823, 0.0027046506293118, 0.1669762134552002, 0.17343570291996002, -0.08320647478103638, 1.0863820314407349, 0.0010546118719503284, 0.020720725879073143, 0.0012104067718610168, -0.22982148826122284, -0.2226669043302536, -0.6260918974876404, -0.032105740159749985, -0.011349061504006386, -0.2602614164352417, 0.0015100124292075634]} +{"t": 5.8334, "q": [-0.13791850209236145, -0.028663283213973045, 0.04364418610930443, 0.29759228229522705, -0.14911848306655884, 0.02381463162600994, -0.1492273509502411, 0.030858580023050308, 0.024480385705828667, 0.30415430665016174, -0.15894798934459686, -0.024850208312273026, -0.0022230546455830336, -0.07617471367120743, 0.002858782885596156, 0.16691629588603973, 0.17335182428359985, -0.08317052572965622, 1.0865497589111328, 0.0010306433541700244, 0.02069675736129284, 0.0012223910307511687, -0.22101308405399323, -0.22342191636562347, -0.6433731317520142, -0.025430526584386826, -0.013638048432767391, -0.25923076272010803, 0.001689775730483234]} +{"t": 5.8501, "q": [-0.1378929316997528, -0.028552496805787086, 0.04364418610930443, 0.2975752353668213, -0.14910127222537994, 0.023800430819392204, -0.14926142990589142, 0.030952323228120804, 0.024440210312604904, 0.3041628301143646, -0.15894369781017303, -0.02484314516186714, -0.003066744189709425, -0.0757269561290741, 0.003161913249641657, 0.16701216995716095, 0.17327991127967834, -0.08320647478103638, 1.0867655277252197, 0.0010066749528050423, 0.020744694396853447, 0.0012463594321161509, -0.20992767810821533, -0.2230384200811386, -0.6608101725578308, -0.01835983246564865, -0.018096180632710457, -0.25882330536842346, 0.0014500912511721253]} +{"t": 5.8669, "q": [-0.13779066503047943, -0.02839057706296444, 0.04367097094655037, 0.29759228229522705, -0.14909271895885468, 0.023800363764166832, -0.1492699533700943, 0.03110572136938572, 0.024440210312604904, 0.3042309880256653, -0.15893524885177612, -0.024857202544808388, -0.004874649923294783, -0.07510475069284439, 0.0035735913552343845, 0.16721589863300323, 0.1732439547777176, -0.08319449424743652, 1.0870171785354614, 0.0010186590952798724, 0.02069675736129284, 0.001270327833481133, -0.19839884340763092, -0.22276277840137482, -0.6785228848457336, -0.011229218915104866, -0.022482406347990036, -0.2587394118309021, 0.001797633827663958]} +{"t": 5.8837, "q": [-0.1378929316997528, -0.02832239866256714, 0.043630797415971756, 0.29749852418899536, -0.14909259974956512, 0.02378629520535469, -0.1494574397802353, 0.031216509640216827, 0.024400033056735992, 0.3041713535785675, -0.15894822776317596, -0.024892481043934822, -0.007593204732984304, -0.07442214339971542, 0.00399705208837986, 0.1672997772693634, 0.1732918918132782, -0.08320647478103638, 1.0873287916183472, 0.0010066749528050423, 0.02069675736129284, 0.0013542174128815532, -0.1862947791814804, -0.22077339887619019, -0.6929039359092712, -0.0063276709988713264, -0.02750379778444767, -0.258667528629303, 0.001270327833481133]} +{"t": 5.9004, "q": [-0.1377565860748291, -0.02821161225438118, 0.043630797415971756, 0.29750704765319824, -0.1490667313337326, 0.023757968097925186, -0.1495938003063202, 0.031318772584199905, 0.024440210312604904, 0.3042565584182739, -0.15894384682178497, -0.024871325120329857, -0.010445678606629372, -0.07320785522460938, 0.004826769232749939, 0.16745558381080627, 0.17323197424411774, -0.08319449424743652, 1.0878920555114746, 0.0010066749528050423, 0.020732710137963295, 0.0014381069922819734, -0.17263276875019073, -0.21765749156475067, -0.7056072354316711, -0.002229065867140889, -0.032237567007541656, -0.2587394118309021, 0.0015939020086079836]} +{"t": 5.9171, "q": [-0.13786736130714417, -0.028186045587062836, 0.04364418610930443, 0.29750704765319824, -0.14904539287090302, 0.02376484125852585, -0.14970459043979645, 0.031386952847242355, 0.024426817893981934, 0.30423951148986816, -0.15894393622875214, -0.024885419756174088, -0.013057098723948002, -0.07204680144786835, 0.005610250867903233, 0.16753946244716644, 0.17325595021247864, -0.08313456922769547, 1.0887548923492432, 0.0010306433541700244, 0.020720725879073143, 0.0015339808305725455, -0.16079235076904297, -0.21532057225704193, -0.7169442772865295, 0.0019054918084293604, -0.0370192714035511, -0.25900307297706604, 0.001749696908518672]} +{"t": 5.9338, "q": [-0.1379355490207672, -0.028194567188620567, 0.043630797415971756, 0.29750704765319824, -0.14904539287090302, 0.02376484125852585, -0.14993467926979065, 0.031386952847242355, 0.024440210312604904, 0.30420541763305664, -0.15895667672157288, -0.024878432974219322, -0.01581582799553871, -0.0710151344537735, 0.006276857573539019, 0.16726383566856384, 0.17321999371051788, -0.08319449424743652, 1.0897375345230103, 0.0010186590952798724, 0.020804615691304207, 0.0016178704099729657, -0.14967098832130432, -0.21461351215839386, -0.7265316843986511, 0.005440838169306517, -0.040590569376945496, -0.2593146562576294, 0.0016658073291182518]} +{"t": 5.9507, "q": [-0.13788440823554993, -0.028186045587062836, 0.043751321732997894, 0.2974814772605896, -0.14904539287090302, 0.02376484125852585, -0.14999434351921082, 0.03139547258615494, 0.02456073649227619, 0.3042139410972595, -0.15895667672157288, -0.024878432974219322, -0.017918355762958527, -0.07019583880901337, 0.006809894926846027, 0.16685636341571808, 0.17325595021247864, -0.08318250626325607, 1.0901210308074951, 0.0010306433541700244, 0.020780647173523903, 0.0016658073291182518, -0.13983194530010223, -0.21557223796844482, -0.7347049117088318, 0.007370298728346825, -0.044377587735652924, -0.26017752289772034, 0.001749696908518672]} +{"t": 5.9675, "q": [-0.13790997862815857, -0.028169000521302223, 0.04383167624473572, 0.29741331934928894, -0.14906683564186096, 0.02377202734351158, -0.15012216567993164, 0.03147217258810997, 0.024641087278723717, 0.30415430665016174, -0.15899531543254852, -0.024927910417318344, -0.019699478521943092, -0.06975656002759933, 0.007028836291283369, 0.16624517738819122, 0.17327991127967834, -0.08324243128299713, 1.0909839868545532, 0.0010306433541700244, 0.020864536985754967, 0.0016777915880084038, -0.13158679008483887, -0.21644708514213562, -0.745071291923523, 0.008101336658000946, -0.04836833477020264, -0.2611842155456543, 0.0018335864879190922]} +{"t": 5.9842, "q": [-0.1377991884946823, -0.028075257316231728, 0.04384506493806839, 0.29731956124305725, -0.14905837178230286, 0.0237860307097435, -0.15014773607254028, 0.03152330592274666, 0.024641087278723717, 0.3041628301143646, -0.1590125858783722, -0.02497025951743126, -0.02099849283695221, -0.06976455450057983, 0.006985342130064964, 0.1655740588903427, 0.17325595021247864, -0.08320647478103638, 1.0918707847595215, 0.0010546118719503284, 0.02088850550353527, 0.0016777915880084038, -0.12588229775428772, -0.21734590828418732, -0.7567199468612671, 0.0076219672337174416, -0.05042961984872818, -0.26179540157318115, 0.001785649568773806]} +{"t": 6.0011, "q": [-0.13767987489700317, -0.027921859174966812, 0.04385845735669136, 0.29722583293914795, -0.14906270802021027, 0.02379310131072998, -0.15011364221572876, 0.031804535537958145, 0.02472143992781639, 0.3040946424007416, -0.159042626619339, -0.025005614385008812, -0.02232429012656212, -0.0699695348739624, 0.006838181521743536, 0.16563397645950317, 0.1732439547777176, -0.08326639980077744, 1.092494010925293, 0.0010665960144251585, 0.020960409194231033, 0.001689775730483234, -0.12469586730003357, -0.22253507375717163, -0.7672540545463562, 0.00407463638111949, -0.05169994756579399, -0.2628500163555145, 0.0015819177497178316]} +{"t": 6.0181, "q": [-0.1373475193977356, -0.027708806097507477, 0.0442066490650177, 0.29723435640335083, -0.1490754932165146, 0.023786162957549095, -0.15006251633167267, 0.03208576515316963, 0.025083020329475403, 0.3040775954723358, -0.15905560553073883, -0.025040902197360992, -0.023114411160349846, -0.07070547342300415, 0.00635202880948782, 0.16563397645950317, 0.17342372238636017, -0.08323044329881668, 1.0932729244232178, 0.0010665960144251585, 0.0210682675242424, 0.001701759989373386, -0.12547484040260315, -0.23104387521743774, -0.7780518531799316, -0.0018935075495392084, -0.05246693640947342, -0.2636769115924835, 0.0015579492319375277]} +{"t": 6.0348, "q": [-0.13728787004947662, -0.027538364753127098, 0.044434309005737305, 0.2972513735294342, -0.149079829454422, 0.02379322610795498, -0.14996877312660217, 0.03229881823062897, 0.02520354837179184, 0.30406907200813293, -0.1590684950351715, -0.025062087923288345, -0.023221546784043312, -0.07175210118293762, 0.0056944070383906364, 0.16526246070861816, 0.17385515570640564, -0.08321846276521683, 1.0935485363006592, 0.0010665960144251585, 0.021104220300912857, 0.001701759989373386, -0.12699683010578156, -0.24118253588676453, -0.7916419506072998, -0.00788561999797821, -0.05245495215058327, -0.26384469866752625, 0.0016418388113379478]} +{"t": 6.0516, "q": [-0.13727082312107086, -0.02749575488269329, 0.04436735063791275, 0.29726842045783997, -0.1490757018327713, 0.023814290761947632, -0.1499176323413849, 0.032349951565265656, 0.025136588141322136, 0.3040520250797272, -0.15908141434192657, -0.025083281099796295, -0.023074235767126083, -0.07276865094900131, 0.0050375452265143394, 0.16478309035301208, 0.17402292788028717, -0.08320647478103638, 1.0938241481781006, 0.0010905645322054625, 0.02112818881869316, 0.00173771264962852, -0.1323298215866089, -0.25195634365081787, -0.8052200675010681, -0.01435710210353136, -0.05201153829693794, -0.2639525532722473, 0.001342233270406723]} +{"t": 6.0685, "q": [-0.1371600329875946, -0.027470188215374947, 0.04435395821928978, 0.29726842045783997, -0.14906704425811768, 0.023800164461135864, -0.1498665064573288, 0.03236699476838112, 0.025109805166721344, 0.3040775954723358, -0.15909846127033234, -0.025083357468247414, -0.02251177653670311, -0.0738690048456192, 0.004294327460229397, 0.16461531817913055, 0.17402292788028717, -0.08321846276521683, 1.0940279960632324, 0.0011145329335704446, 0.021152157336473465, 0.0018575548892840743, -0.139364555478096, -0.26504313945770264, -0.8167608976364136, -0.019869845360517502, -0.05171193182468414, -0.2639285922050476, 0.0013781859306618571]} +{"t": 6.0853, "q": [-0.13708333671092987, -0.027453143149614334, 0.04415307939052582, 0.2973025143146515, -0.14906704425811768, 0.023800164461135864, -0.1498153805732727, 0.032375518232584, 0.024949101731181145, 0.3040775954723358, -0.15917134284973145, -0.02516116574406624, -0.021574344485998154, -0.07500725984573364, 0.003534579649567604, 0.1645793616771698, 0.17405888438224792, -0.08317052572965622, 1.0942317247390747, 0.0010785802733153105, 0.02117612585425377, 0.0021092237439006567, -0.14812502264976501, -0.2781898081302643, -0.8315734267234802, -0.024028372019529343, -0.05128049850463867, -0.26329341530799866, 0.0016178704099729657]} +{"t": 6.1021, "q": [-0.13704071938991547, -0.027461664751172066, 0.04391202703118324, 0.29736217856407166, -0.14906704425811768, 0.023800164461135864, -0.14968754351139069, 0.032375518232584, 0.024775007739663124, 0.3040775954723358, -0.15927019715309143, -0.025309549644589424, -0.020703870803117752, -0.07585670799016953, 0.003007239196449518, 0.16479508578777313, 0.17427460849285126, -0.08317052572965622, 1.0944114923477173, 0.0010785802733153105, 0.021152157336473465, 0.0023129554465413094, -0.15700533986091614, -0.2907732427120209, -0.846625566482544, -0.02701244316995144, -0.04959072545170784, -0.26259833574295044, 0.0014500912511721253]} +{"t": 6.1188, "q": [-0.1369299441576004, -0.027453143149614334, 0.043778106570243835, 0.2974814772605896, -0.14905859529972076, 0.023814158514142036, -0.1495852768421173, 0.03239256143569946, 0.02468126453459263, 0.3041202127933502, -0.15930882096290588, -0.025359036400914192, -0.0203155055642128, -0.07640934735536575, 0.0027572226244956255, 0.16532239317893982, 0.17441841959953308, -0.08314655721187592, 1.0946871042251587, 0.0010426276130601764, 0.021044299006462097, 0.0024327978026121855, -0.1663290560245514, -0.3035244643688202, -0.8603835105895996, -0.027971182018518448, -0.04791293293237686, -0.2617354691028595, 0.0015939020086079836]} +{"t": 6.1355, "q": [-0.13694697618484497, -0.027453143149614334, 0.043778106570243835, 0.297524094581604, -0.14904992282390594, 0.023800022900104523, -0.14957675337791443, 0.032401081174612045, 0.02468126453459263, 0.3041628301143646, -0.15930022299289703, -0.025344904512166977, -0.019940532743930817, -0.07655353844165802, 0.002659606048837304, 0.16561001539230347, 0.17439444363117218, -0.08313456922769547, 1.0950226783752441, 0.0010306433541700244, 0.020924456417560577, 0.0024927188642323017, -0.17526929080486298, -0.3120812177658081, -0.8749682903289795, -0.02804308757185936, -0.04676244780421257, -0.26075276732444763, 0.0015579492319375277]} +{"t": 6.1523, "q": [-0.13698959350585938, -0.027453143149614334, 0.04373793303966522, 0.297524094581604, -0.14904560148715973, 0.02379295974969864, -0.14960232377052307, 0.03241812810301781, 0.024600911885499954, 0.3042309880256653, -0.15930022299289703, -0.025344904512166977, -0.019431641325354576, -0.07655353844165802, 0.002659606048837304, 0.1658736616373062, 0.1741188019514084, -0.08314655721187592, 1.0953822135925293, 0.0010306433541700244, 0.02081659995019436, 0.0024927188642323017, -0.18159696459770203, -0.3210453987121582, -0.8885224461555481, -0.02774348109960556, -0.045468151569366455, -0.2600337266921997, 0.0014620755100622773]} +{"t": 6.169, "q": [-0.13699811697006226, -0.027470188215374947, 0.043617404997348785, 0.2975326180458069, -0.14903271198272705, 0.02378583885729313, -0.14961084723472595, 0.03239256143569946, 0.024600911885499954, 0.3042736053466797, -0.15930038690567017, -0.025373082607984543, -0.019257545471191406, -0.07651569694280624, 0.0026756750885397196, 0.16604143381118774, 0.1739630103111267, -0.08319449424743652, 1.0958855152130127, 0.0010426276130601764, 0.020744694396853447, 0.0025047031231224537, -0.18561168015003204, -0.32689371705055237, -0.8991644382476807, -0.02755173295736313, -0.04398210719227791, -0.25972214341163635, 0.0016298546688631177]} +{"t": 6.1857, "q": [-0.13698959350585938, -0.027444621548056602, 0.04351026937365532, 0.29754966497421265, -0.14899373054504395, 0.023722246289253235, -0.1496278941631317, 0.03241812810301781, 0.024480385705828667, 0.3044099509716034, -0.15928755700588226, -0.025365984067320824, -0.018788829445838928, -0.07644728571176529, 0.002731535118073225, 0.16566993296146393, 0.17395102977752686, -0.08319449424743652, 1.0965325832366943, 0.0010306433541700244, 0.020732710137963295, 0.0025047031231224537, -0.18787670135498047, -0.33064478635787964, -0.9105374813079834, -0.02353701926767826, -0.04314320906996727, -0.2586914896965027, 0.0018455706303939223]} +{"t": 6.2025, "q": [-0.13708333671092987, -0.02737644501030445, 0.0432424321770668, 0.29754966497421265, -0.14896363019943237, 0.023700915277004242, -0.14961937069892883, 0.0325118713080883, 0.024225939065217972, 0.30442699790000916, -0.15931327641010284, -0.025394268333911896, -0.018440639600157738, -0.07620465010404587, 0.0028767059557139874, 0.16528643667697906, 0.17380721867084503, -0.08318250626325607, 1.0968202352523804, 0.0010306433541700244, 0.020672788843512535, 0.0025047031231224537, -0.18780478835105896, -0.331783264875412, -0.9194777011871338, -0.017413079738616943, -0.041741058230400085, -0.25642645359039307, 0.0019534286111593246]} +{"t": 6.2192, "q": [-0.13704071938991547, -0.02729974500834942, 0.04305494576692581, 0.2975667119026184, -0.148929163813591, 0.02367258444428444, -0.1496278941631317, 0.0326056145131588, 0.024078628048300743, 0.3044440448284149, -0.15935206413269043, -0.025471942499279976, -0.018186194822192192, -0.07573443651199341, 0.0031663926783949137, 0.16498683393001556, 0.17369936406612396, -0.08321846276521683, 1.0971078872680664, 0.0010306433541700244, 0.020660804584622383, 0.0024807346053421497, -0.18782876431941986, -0.3320349454879761, -0.9244391918182373, -0.011540808714926243, -0.03874500095844269, -0.2526754140853882, 0.002061286708340049]} +{"t": 6.2359, "q": [-0.1370236873626709, -0.02725713513791561, 0.04288085177540779, 0.2975752353668213, -0.14891192317008972, 0.023658443242311478, -0.14966197311878204, 0.03271640092134476, 0.023998277261853218, 0.3044525682926178, -0.15944239497184753, -0.02562027983367443, -0.01762373559176922, -0.07500609010457993, 0.003640382783487439, 0.1645554006099701, 0.17365142703056335, -0.08323044329881668, 1.0974074602127075, 0.0010306433541700244, 0.020684773102402687, 0.0024807346053421497, -0.1849525421857834, -0.33201098442077637, -0.9270756840705872, -0.006735134404152632, -0.03700728714466095, -0.24983514845371246, 0.002229065867140889]} +{"t": 6.2528, "q": [-0.13705776631832123, -0.027171913534402847, 0.042760323733091354, 0.2975752353668213, -0.1488904505968094, 0.023651299998164177, -0.14974719285964966, 0.032818667590618134, 0.023917926475405693, 0.30452075600624084, -0.1595713496208191, -0.025818094611167908, -0.017583558335900307, -0.073982834815979, 0.004217442590743303, 0.16454340517520905, 0.1736394464969635, -0.08321846276521683, 1.0976471900939941, 0.0010426276130601764, 0.020684773102402687, 0.0024927188642323017, -0.18154902756214142, -0.33166342973709106, -0.9291130304336548, -0.003079945920035243, -0.03525758907198906, -0.2482052892446518, 0.002540655666962266]} +{"t": 6.2696, "q": [-0.13708333671092987, -0.02707817032933235, 0.04270675405859947, 0.2975752353668213, -0.14887742698192596, 0.02363017201423645, -0.14978128671646118, 0.03293797746300697, 0.02385096624493599, 0.3045463263988495, -0.15963594615459442, -0.02593814767897129, -0.017248760908842087, -0.07278644293546677, 0.004786992911249399, 0.16426777839660645, 0.17367538809776306, -0.08325441181659698, 1.0978988409042358, 0.0010186590952798724, 0.020672788843512535, 0.0024927188642323017, -0.17885257303714752, -0.32684576511383057, -0.9298800230026245, 0.0007310377550311387, -0.03350789472460747, -0.24706678092479706, 0.0024807346053421497]} +{"t": 6.2863, "q": [-0.13708333671092987, -0.0270099937915802, 0.042599618434906006, 0.29758375883102417, -0.14886440336704254, 0.023609036579728127, -0.14975571632385254, 0.033006154000759125, 0.023730438202619553, 0.3045803904533386, -0.15971337258815765, -0.026065299287438393, -0.016525600105524063, -0.07152142375707626, 0.005430379416793585, 0.1634049117565155, 0.17305220663547516, -0.08326639980077744, 1.098474144935608, 0.0010306433541700244, 0.020684773102402687, 0.0025047031231224537, -0.17649167776107788, -0.32142889499664307, -0.9297960996627808, 0.005153216887265444, -0.031925976276397705, -0.24566462635993958, 0.002636529505252838]} +{"t": 6.3032, "q": [-0.13715150952339172, -0.0270099937915802, 0.04239874333143234, 0.29760080575942993, -0.14886006712913513, 0.023601993918418884, -0.14974719285964966, 0.03301467373967171, 0.023583129048347473, 0.3045974373817444, -0.15972204506397247, -0.026093507185578346, -0.0154542475938797, -0.07034773379564285, 0.005992318503558636, 0.1618589460849762, 0.17253689467906952, -0.08323044329881668, 1.0994688272476196, 0.0010306433541700244, 0.020672788843512535, 0.0025286716409027576, -0.17525731027126312, -0.31623974442481995, -0.9296643137931824, 0.00914396345615387, -0.029816752299666405, -0.244286447763443, 0.0027204190846532583]} +{"t": 6.3201, "q": [-0.13722820580005646, -0.0270099937915802, 0.0421442948281765, 0.29760080575942993, -0.1488342434167862, 0.023587817326188087, -0.14974719285964966, 0.033006154000759125, 0.023301897570490837, 0.3045803904533386, -0.159769207239151, -0.0261430311948061, -0.014235584996640682, -0.06920400261878967, 0.006571725942194462, 0.15991750359535217, 0.17192569375038147, -0.08329036831855774, 1.1004395484924316, 0.0010306433541700244, 0.020660804584622383, 0.0025166873820126057, -0.17501762509346008, -0.31077492237091064, -0.9296402931213379, 0.011720572598278522, -0.027779433876276016, -0.24300412833690643, 0.002660498023033142]} +{"t": 6.3369, "q": [-0.13727934658527374, -0.027027036994695663, 0.04199698567390442, 0.2976093292236328, -0.14883847534656525, 0.02358081191778183, -0.14973866939544678, 0.033006154000759125, 0.02320815436542034, 0.3045803904533386, -0.15982520580291748, -0.026248952373862267, -0.013124058023095131, -0.06825633347034454, 0.007132043596357107, 0.15816780924797058, 0.17159013450145721, -0.0833742544054985, 1.1010386943817139, 0.0010306433541700244, 0.020720725879073143, 0.0025166873820126057, -0.17517341673374176, -0.30528613924980164, -0.9296043515205383, 0.012823120690882206, -0.02606569044291973, -0.24235698580741882, 0.0027204190846532583]} +{"t": 6.3536, "q": [-0.1373475193977356, -0.027027036994695663, 0.041930023580789566, 0.29759228229522705, -0.1488385945558548, 0.02359485998749733, -0.14973866939544678, 0.033006154000759125, 0.023114411160349846, 0.30455484986305237, -0.1598767787218094, -0.02631966583430767, -0.0122669767588377, -0.06761910766363144, 0.0075509375892579556, 0.1566937416791916, 0.17153021693229675, -0.08339822292327881, 1.1013742685317993, 0.0010426276130601764, 0.020780647173523903, 0.0025047031231224537, -0.17532920837402344, -0.300025075674057, -0.9295923709869385, 0.012930979020893574, -0.025118935853242874, -0.24182967841625214, 0.0026964505668729544]} +{"t": 6.3705, "q": [-0.13742421567440033, -0.027027036994695663, 0.041755929589271545, 0.2975752353668213, -0.1488342434167862, 0.023587817326188087, -0.14974719285964966, 0.033006154000759125, 0.022913534194231033, 0.3045292794704437, -0.15996728837490082, -0.026440218091011047, -0.010673340409994125, -0.06736862659454346, 0.007728871889412403, 0.15560318529605865, 0.17157815396785736, -0.08342219144105911, 1.1016019582748413, 0.0010426276130601764, 0.020744694396853447, 0.0025047031231224537, -0.17547301948070526, -0.2960582971572876, -0.9294605851173401, 0.01312272623181343, -0.023752734065055847, -0.2410387247800827, 0.0028642297256737947]} +{"t": 6.3872, "q": [-0.13750091195106506, -0.027044082060456276, 0.041608620434999466, 0.2975752353668213, -0.14884716272354126, 0.023594895377755165, -0.1497301459312439, 0.03298910707235336, 0.022793006151914597, 0.3044951856136322, -0.16001027822494507, -0.02648283913731575, -0.00865116436034441, -0.0672696903347969, 0.007823985069990158, 0.1543208658695221, 0.17157815396785736, -0.08345814794301987, 1.1020094156265259, 0.0010546118719503284, 0.020840568467974663, 0.0024687503464519978, -0.17553295195102692, -0.29272669553756714, -0.9293886423110962, 0.013745906762778759, -0.02130795270204544, -0.23993617296218872, 0.0029121667612344027]} +{"t": 6.404, "q": [-0.137577623128891, -0.027052603662014008, 0.041568443179130554, 0.29754114151000977, -0.14884716272354126, 0.023594895377755165, -0.1497301459312439, 0.032997630536556244, 0.02271265536546707, 0.30442699790000916, -0.16002756357192993, -0.02651117742061615, -0.006521853152662516, -0.06730721890926361, 0.007836875505745411, 0.1530984789133072, 0.17150624096393585, -0.08354203402996063, 1.1024049520492554, 0.0010665960144251585, 0.02088850550353527, 0.0024567660875618458, -0.1757846176624298, -0.29003024101257324, -0.9291369915008545, 0.01489639189094305, -0.01792840100824833, -0.2386658489704132, 0.003008040599524975]} +{"t": 6.4209, "q": [-0.13764579594135284, -0.027086691930890083, 0.04151487722992897, 0.29754966497421265, -0.14885571599006653, 0.023594941943883896, -0.14969606697559357, 0.032997630536556244, 0.02268587052822113, 0.30437588691711426, -0.16005760431289673, -0.02653256058692932, -0.004486285150051117, -0.06733757257461548, 0.00781647115945816, 0.151900053024292, 0.17139838635921478, -0.08357799053192139, 1.1027764081954956, 0.0010785802733153105, 0.02094842493534088, 0.0024567660875618458, -0.17637184262275696, -0.28770530223846436, -0.9287415146827698, 0.015795208513736725, -0.016178704798221588, -0.2371438443660736, 0.0032237565610557795]} +{"t": 6.4376, "q": [-0.13767987489700317, -0.027146346867084503, 0.04148809239268303, 0.2975326180458069, -0.14886006712913513, 0.023601993918418884, -0.1496790200471878, 0.03296354413032532, 0.02267247997224331, 0.3043588399887085, -0.16008734703063965, -0.026511598378419876, -0.0007365542696788907, -0.06736791878938675, 0.00779606681317091, 0.15053385496139526, 0.17118267714977264, -0.08363790810108185, 1.103279709815979, 0.0010785802733153105, 0.020984377712011337, 0.0024567660875618458, -0.17683923244476318, -0.28558409214019775, -0.9281423091888428, 0.01599894091486931, -0.014393054880201817, -0.23418374359607697, 0.0037390782963484526]} +{"t": 6.4543, "q": [-0.13767987489700317, -0.027171913534402847, 0.04148809239268303, 0.29754114151000977, -0.14887309074401855, 0.02362312190234661, -0.1496364027261734, 0.03293797746300697, 0.022779613733291626, 0.30424803495407104, -0.16009166836738586, -0.026518680155277252, 0.003361365757882595, -0.0674133375287056, 0.007775058038532734, 0.149227574467659, 0.17106282711029053, -0.08370981365442276, 1.1035314798355103, 0.0010665960144251585, 0.020960409194231033, 0.0024567660875618458, -0.1769590675830841, -0.2839781939983368, -0.9278187155723572, 0.015855129808187485, -0.010833739303052425, -0.22980950772762299, 0.0047098007053136826]} +{"t": 6.4711, "q": [-0.13770544528961182, -0.027223046869039536, 0.04148809239268303, 0.2975326180458069, -0.14887742698192596, 0.02363017201423645, -0.14960232377052307, 0.03286980092525482, 0.02271265536546707, 0.3042565584182739, -0.16010011732578278, -0.026504624634981155, 0.004646987654268742, -0.06750357151031494, 0.007790637202560902, 0.14820891618728638, 0.17101489007472992, -0.08374576270580292, 1.1037591695785522, 0.0010905645322054625, 0.02094842493534088, 0.0024567660875618458, -0.17769010365009308, -0.2832950949668884, -0.9261648654937744, 0.016118783503770828, -0.007562045939266682, -0.22641797363758087, 0.00612393906340003]} +{"t": 6.4878, "q": [-0.13772249221801758, -0.027265656739473343, 0.04130060598254204, 0.2975326180458069, -0.1488688588142395, 0.023630117997527122, -0.14953415095806122, 0.03280162066221237, 0.0225385595113039, 0.3042224645614624, -0.16010424494743347, -0.02648349478840828, 0.006950393784791231, -0.06765390187501907, 0.007823002524673939, 0.14758573472499847, 0.1709429919719696, -0.08372179418802261, 1.104022741317749, 0.0010426276130601764, 0.020912472158670425, 0.0024327978026121855, -0.17973941564559937, -0.28271985054016113, -0.9220662713050842, 0.016142752021551132, -0.004278368316590786, -0.22297848761081696, 0.007849667221307755]} +{"t": 6.5046, "q": [-0.1377991884946823, -0.027384966611862183, 0.04083188995718956, 0.2975667119026184, -0.14886897802352905, 0.02364417538046837, -0.14946596324443817, 0.03271640092134476, 0.022069843485951424, 0.3042224645614624, -0.16012564301490784, -0.026490693911910057, 0.008771691471338272, -0.06777387857437134, 0.007875772193074226, 0.14739398658275604, 0.17093101143836975, -0.08372179418802261, 1.1040947437286377, 0.0010785802733153105, 0.020912472158670425, 0.0024208135437220335, -0.18309499323368073, -0.28182104229927063, -0.9176440834999084, 0.016082830727100372, 0.00022770027862861753, -0.2204977571964264, 0.009946906939148903]} +{"t": 6.5213, "q": [-0.1379355490207672, -0.027453143149614334, 0.040256038308143616, 0.2976093292236328, -0.14886897802352905, 0.02364417538046837, -0.14938926696777344, 0.03263118118047714, 0.021413641050457954, 0.3041798770427704, -0.1601554900407791, -0.026483846828341484, 0.010151056572794914, -0.06800725311040878, 0.007890420965850353, 0.1474539041519165, 0.17090703547000885, -0.08369782567024231, 1.1042264699935913, 0.0010665960144251585, 0.02087652124464512, 0.0024088292848318815, -0.18847590684890747, -0.2814615070819855, -0.913030207157135, 0.016106799244880676, 0.0041824947111308575, -0.21878401935100555, 0.012343752197921276]} +{"t": 6.5381, "q": [-0.13814859092235565, -0.027521319687366486, 0.039412349462509155, 0.2977030575275421, -0.14886462688446045, 0.02363712340593338, -0.14923587441444397, 0.03248630464076996, 0.020382465794682503, 0.3040861189365387, -0.16019436717033386, -0.02654760703444481, 0.011209016665816307, -0.06831599771976471, 0.0079020531848073, 0.14751382172107697, 0.17088307440280914, -0.08372179418802261, 1.1045022010803223, 0.0010665960144251585, 0.020900487899780273, 0.0024447820615023375, -0.1941564381122589, -0.28134167194366455, -0.908104658126831, 0.015962988138198853, 0.008508799597620964, -0.21698638796806335, 0.015279887244105339]} +{"t": 6.555, "q": [-0.1382593810558319, -0.027623586356639862, 0.038407955318689346, 0.2978820204734802, -0.14885194599628448, 0.023658113554120064, -0.14893759787082672, 0.03229881823062897, 0.019123626872897148, 0.3040349781513214, -0.16029341518878937, -0.026668226346373558, 0.012454463168978691, -0.06868372112512589, 0.008036062121391296, 0.14754977822303772, 0.170895054936409, -0.08372179418802261, 1.104921579360962, 0.0010665960144251585, 0.02088850550353527, 0.0024088292848318815, -0.20030434429645538, -0.28126975893974304, -0.902424156665802, 0.01575925573706627, 0.014261228032410145, -0.21469739079475403, 0.018515627831220627]} +{"t": 6.5717, "q": [-0.13854913413524628, -0.027708806097507477, 0.03730982169508934, 0.29805245995521545, -0.1488347053527832, 0.023643990978598595, -0.1487586349248886, 0.03218802809715271, 0.018012098968029022, 0.30402645468711853, -0.16045226156711578, -0.026789240539073944, 0.01379365287721157, -0.06906802207231522, 0.008015538565814495, 0.14757375419139862, 0.17093101143836975, -0.08369782567024231, 1.1054729223251343, 0.0010546118719503284, 0.02087652124464512, 0.0024208135437220335, -0.20712336897850037, -0.2811858654022217, -0.8968514800071716, 0.015591477043926716, 0.019570238888263702, -0.21004751324653625, 0.022853918373584747]} +{"t": 6.5885, "q": [-0.13865992426872253, -0.027776984497904778, 0.03646613284945488, 0.2981802821159363, -0.1488390415906906, 0.023651033639907837, -0.14861375093460083, 0.032094284892082214, 0.01715501770377159, 0.3040349781513214, -0.16071389615535736, -0.026953304186463356, 0.015481031499803066, -0.06950505822896957, 0.00798788107931614, 0.1476576328277588, 0.17097894847393036, -0.08369782567024231, 1.1060720682144165, 0.0010426276130601764, 0.02088850550353527, 0.0024088292848318815, -0.21413414180278778, -0.281161904335022, -0.8888100385665894, 0.01541171409189701, 0.02383662387728691, -0.20446287095546722, 0.026808712631464005]} +{"t": 6.6052, "q": [-0.13864287734031677, -0.027776984497904778, 0.035863496363162994, 0.29823142290115356, -0.14883047342300415, 0.023650987073779106, -0.14846888184547424, 0.03212837502360344, 0.016565775498747826, 0.3040520250797272, -0.16092897951602936, -0.027180539444088936, 0.017931748181581497, -0.07001829892396927, 0.00788047630339861, 0.14762169122695923, 0.1709190160036087, -0.083673857152462, 1.1062997579574585, 0.0010665960144251585, 0.020912472158670425, 0.0023728765081614256, -0.2196468859910965, -0.2817012071609497, -0.8781920671463013, 0.015375761315226555, 0.029804768040776253, -0.19866250455379486, 0.03129081055521965]} +{"t": 6.6219, "q": [-0.13868549466133118, -0.027768461033701897, 0.03532782196998596, 0.2982228994369507, -0.14881323277950287, 0.023636847734451294, -0.14833252131938934, 0.03211985155940056, 0.015869395807385445, 0.3040349781513214, -0.1611657589673996, -0.027457309886813164, 0.02065030299127102, -0.07056241482496262, 0.00770477345213294, 0.14748986065387726, 0.170895054936409, -0.08370981365442276, 1.106407642364502, 0.0010426276130601764, 0.02087652124464512, 0.0024088292848318815, -0.22409303486347198, -0.28304344415664673, -0.8691200017929077, 0.015339808538556099, 0.035832833498716354, -0.193760946393013, 0.03606053441762924]} +{"t": 6.6386, "q": [-0.13871105015277863, -0.027759939432144165, 0.03459126502275467, 0.2982143759727478, -0.14880043268203735, 0.02364380657672882, -0.1482132226228714, 0.032111331820487976, 0.015226585790514946, 0.30410316586494446, -0.1615307629108429, -0.027749067172408104, 0.02502945251762867, -0.07109136879444122, 0.0075392709113657475, 0.14709438383579254, 0.17083513736724854, -0.08368584513664246, 1.106467604637146, 0.0010546118719503284, 0.02087652124464512, 0.0023848607670515776, -0.22897060215473175, -0.28351080417633057, -0.8607789874076843, 0.015363777056336403, 0.04199272394180298, -0.18752916157245636, 0.041429467499256134]} +{"t": 6.6553, "q": [-0.13869401812553406, -0.027657674625515938, 0.0341627262532711, 0.2982228994369507, -0.1487918645143509, 0.023643752560019493, -0.14810243248939514, 0.03218802809715271, 0.014731084927916527, 0.304137259721756, -0.16180603206157684, -0.02803315408527851, 0.029823752120137215, -0.07159797847270966, 0.007350132800638676, 0.14643524587154388, 0.17060743272304535, -0.08368584513664246, 1.106479525566101, 0.0010665960144251585, 0.020864536985754967, 0.0023848607670515776, -0.232350155711174, -0.28351080417633057, -0.853564441204071, 0.015387745574116707, 0.045707836747169495, -0.18190854787826538, 0.046426888555288315]} +{"t": 6.6721, "q": [-0.1387195736169815, -0.027657674625515938, 0.0332922525703907, 0.29823994636535645, -0.14877450466156006, 0.023615572601556778, -0.14777858555316925, 0.03219655156135559, 0.013753476552665234, 0.3041713535785675, -0.1621965616941452, -0.028310973197221756, 0.03345295414328575, -0.07211976498365402, 0.007150459568947554, 0.14647120237350464, 0.17035576701164246, -0.08366187661886215, 1.1065034866333008, 0.0010426276130601764, 0.020792631432414055, 0.0023728765081614256, -0.23634091019630432, -0.28355875611305237, -0.8422154188156128, 0.015124091878533363, 0.05197558552026749, -0.17775003612041473, 0.050393667072057724]} +{"t": 6.6888, "q": [-0.13874514400959015, -0.027657674625515938, 0.03243517130613327, 0.29838481545448303, -0.1487358957529068, 0.02360834740102291, -0.14745475351810455, 0.03217950835824013, 0.01252142246812582, 0.3042139410972595, -0.1625567525625229, -0.028525101020932198, 0.03493945673108101, -0.07260318845510483, 0.00701476912945509, 0.1469026356935501, 0.1700441688299179, -0.08363790810108185, 1.1066713333129883, 0.0010426276130601764, 0.02087652124464512, 0.0023848607670515776, -0.24112261831760406, -0.2833789885044098, -0.8306146860122681, 0.015148060396313667, 0.05765610933303833, -0.1739869862794876, 0.05470798909664154]} +{"t": 6.7058, "q": [-0.13889002799987793, -0.02766619622707367, 0.03172539919614792, 0.29846152663230896, -0.14868426322937012, 0.02357998490333557, -0.147292822599411, 0.03217950835824013, 0.011543814092874527, 0.3042309880256653, -0.16286955773830414, -0.028675410896539688, 0.03642595559358597, -0.07302547991275787, 0.006958420854061842, 0.14709438383579254, 0.1697206050157547, -0.08361393958330154, 1.1067432165145874, 0.0010665960144251585, 0.020864536985754967, 0.0024208135437220335, -0.24655146896839142, -0.2827078700065613, -0.8192895650863647, 0.015088140033185482, 0.061886537820100784, -0.17070330679416656, 0.05825531855225563]} +{"t": 6.7225, "q": [-0.13917125761508942, -0.027683241292834282, 0.031002238392829895, 0.29859787225723267, -0.14856477081775665, 0.023635515943169594, -0.14726726710796356, 0.03215394169092178, 0.010552814230322838, 0.3042309880256653, -0.16307176649570465, -0.028895488008856773, 0.03793923929333687, -0.0733720138669014, 0.006943667773157358, 0.14723819494247437, 0.16927717626094818, -0.08357799053192139, 1.106863021850586, 0.0010306433541700244, 0.020864536985754967, 0.0023968450259417295, -0.25368207693099976, -0.28164127469062805, -0.804033637046814, 0.01489639189094305, 0.06496648490428925, -0.1643037348985672, 0.06351639330387115]} +{"t": 6.7393, "q": [-0.1392735242843628, -0.027683241292834282, 0.030707616358995438, 0.29864901304244995, -0.14854295551776886, 0.023586245253682137, -0.14724169671535492, 0.03215394169092178, 0.01007070578634739, 0.3042309880256653, -0.16321775317192078, -0.029009368270635605, 0.0391177274286747, -0.07368721812963486, 0.007035757880657911, 0.1474539041519165, 0.1688697189092636, -0.0836019515991211, 1.1070308685302734, 0.0010306433541700244, 0.02087652124464512, 0.0024447820615023375, -0.2593865692615509, -0.2814734876155853, -0.7886099815368652, 0.01477654930204153, 0.06761500239372253, -0.15895876288414001, 0.06845389306545258]} +{"t": 6.756, "q": [-0.1394098699092865, -0.027683241292834282, 0.03043977916240692, 0.2986745834350586, -0.1485261619091034, 0.02362828142940998, -0.14724169671535492, 0.03213689848780632, 0.009695732034742832, 0.3042309880256653, -0.16337640583515167, -0.02910218946635723, 0.04061761870980263, -0.07386737316846848, 0.007085640914738178, 0.14771756529808044, 0.16835439205169678, -0.08354203402996063, 1.1071746349334717, 0.0010546118719503284, 0.020900487899780273, 0.0024208135437220335, -0.26407238841056824, -0.28136563301086426, -0.7744325995445251, 0.013973606750369072, 0.07147391885519028, -0.15452459454536438, 0.07266035676002502]} +{"t": 6.7728, "q": [-0.1395888328552246, -0.0276747178286314, 0.030212117359042168, 0.2986745834350586, -0.1485261619091034, 0.02362828142940998, -0.14722464978694916, 0.03213689848780632, 0.009293975308537483, 0.30424803495407104, -0.16355204582214355, -0.029180994257330894, 0.04195680841803551, -0.07389750331640244, 0.007084357552230358, 0.14795725047588348, 0.16768327355384827, -0.08350608497858047, 1.1073064804077148, 0.0010306433541700244, 0.020792631432414055, 0.0024327978026121855, -0.2688181698322296, -0.2812577784061432, -0.7584097385406494, 0.013266537338495255, 0.07623165845870972, -0.1512768715620041, 0.07639943808317184]} +{"t": 6.7895, "q": [-0.13970814645290375, -0.027683241292834282, 0.03006480634212494, 0.2986319661140442, -0.14853450655937195, 0.023600248619914055, -0.14722464978694916, 0.03211985155940056, 0.009079704992473125, 0.3042309880256653, -0.1637319028377533, -0.029252775013446808, 0.04329599812626839, -0.0739050880074501, 0.007079238537698984, 0.14847256243228912, 0.16688033938407898, -0.08348211646080017, 1.1075941324234009, 0.0010306433541700244, 0.020852552726864815, 0.0024327978026121855, -0.2736358046531677, -0.2810780107975006, -0.743057906627655, 0.012044146656990051, 0.0806298702955246, -0.14855645596981049, 0.08052200824022293]} +{"t": 6.8063, "q": [-0.13975074887275696, -0.027691762894392014, 0.029984453693032265, 0.2986319661140442, -0.148538738489151, 0.023593243211507797, -0.14719055593013763, 0.03208576515316963, 0.008959177881479263, 0.30424803495407104, -0.1637832522392273, -0.029267242178320885, 0.04474232345819473, -0.07392004877328873, 0.007088193669915199, 0.14868828654289246, 0.16634105145931244, -0.08343417942523956, 1.1078697443008423, 0.0010306433541700244, 0.02082858420908451, 0.0024567660875618458, -0.2789328396320343, -0.2792564034461975, -0.728712797164917, 0.010737866163253784, 0.08285893499851227, -0.14462563395500183, 0.08518387377262115]} +{"t": 6.823, "q": [-0.13978484272956848, -0.0276747178286314, 0.030038021504878998, 0.29859787225723267, -0.1485430747270584, 0.02360028587281704, -0.1472076028585434, 0.03206019848585129, 0.009012745693325996, 0.30424803495407104, -0.1638004183769226, -0.02928146719932556, 0.04687163606286049, -0.07392741739749908, 0.007102268282324076, 0.1486762911081314, 0.16583770513534546, -0.08342219144105911, 1.1080974340438843, 0.0010306433541700244, 0.020840568467974663, 0.0024807346053421497, -0.2832711338996887, -0.2776625156402588, -0.7125220894813538, 0.01013865415006876, 0.08440490067005157, -0.14127004146575928, 0.08970192819833755]} +{"t": 6.8399, "q": [-0.13987858593463898, -0.027691762894392014, 0.03005141392350197, 0.29860639572143555, -0.14854741096496582, 0.02360733598470688, -0.1472076028585434, 0.032043155282735825, 0.009026138111948967, 0.3042309880256653, -0.16380886733531952, -0.029267409816384315, 0.0496169738471508, -0.07396460324525833, 0.007143851835280657, 0.14872422814369202, 0.1654781848192215, -0.08344615995883942, 1.1084449291229248, 0.0010306433541700244, 0.02087652124464512, 0.0025166873820126057, -0.2868663966655731, -0.2760685980319977, -0.6983926892280579, 0.010030796751379967, 0.08640626072883606, -0.1389451026916504, 0.092985600233078]} +{"t": 6.8566, "q": [-0.14006607234477997, -0.027776984497904778, 0.029944278299808502, 0.29859787225723267, -0.14855164289474487, 0.023600339889526367, -0.14719907939434052, 0.03188975527882576, 0.0089190024882555, 0.30420541763305664, -0.16382576525211334, -0.029239308089017868, 0.05240248888731003, -0.07402454316616058, 0.0071700746193528175, 0.14873622357845306, 0.1652504801750183, -0.08341021090745926, 1.1086846590042114, 0.0010426276130601764, 0.020924456417560577, 0.0025047031231224537, -0.28968268632888794, -0.27454662322998047, -0.6821780800819397, 0.010282465256750584, 0.08893493562936783, -0.13633254170417786, 0.09557419270277023]} +{"t": 6.8733, "q": [-0.14017686247825623, -0.027887770906090736, 0.029944278299808502, 0.29860639572143555, -0.14854741096496582, 0.02360733598470688, -0.14721612632274628, 0.03169374540448189, 0.00881186779588461, 0.3041628301143646, -0.16384688019752502, -0.02920418046414852, 0.05545584112405777, -0.07406172901391983, 0.007211657706648111, 0.14818494021892548, 0.1651546061038971, -0.08348211646080017, 1.1089842319488525, 0.0010665960144251585, 0.02099636197090149, 0.0024807346053421497, -0.2922113537788391, -0.27280890941619873, -0.6656278371810913, 0.010306433774530888, 0.09154749661684036, -0.13351625204086304, 0.09841445833444595]} +{"t": 6.8902, "q": [-0.14031320810317993, -0.027981514111161232, 0.02990410290658474, 0.2985808253288269, -0.14858968555927277, 0.023537352681159973, -0.14723317325115204, 0.031548872590065, 0.00866455677896738, 0.30414578318595886, -0.16391021013259888, -0.029098792001605034, 0.05761193484067917, -0.07407668232917786, 0.007220613304525614, 0.14719025790691376, 0.16507071256637573, -0.08349409699440002, 1.1089723110198975, 0.0010665960144251585, 0.020912472158670425, 0.0024567660875618458, -0.2952314019203186, -0.2703641355037689, -0.6491615176200867, 0.010426276363432407, 0.09302155673503876, -0.13165870308876038, 0.10175805538892746]} +{"t": 6.9069, "q": [-0.1404239982366562, -0.028075257316231728, 0.029837142676115036, 0.2985893487930298, -0.14859402179718018, 0.023544395342469215, -0.14721612632274628, 0.031327296048402786, 0.00839671865105629, 0.3041628301143646, -0.16399092972278595, -0.029035864397883415, 0.0584690161049366, -0.07408405840396881, 0.00723468791693449, 0.14711834490299225, 0.1651306450366974, -0.08351806551218033, 1.1090081930160522, 0.0010785802733153105, 0.020912472158670425, 0.0024687503464519978, -0.2996295988559723, -0.2679672837257385, -0.6308855414390564, 0.010426276363432407, 0.09529855847358704, -0.12977717816829681, 0.10658770054578781]} +{"t": 6.9237, "q": [-0.14062853157520294, -0.028134912252426147, 0.029783576726913452, 0.2985893487930298, -0.14859847724437714, 0.02356547676026821, -0.14722464978694916, 0.031182419508695602, 0.008088705129921436, 0.3041202127933502, -0.16407988965511322, -0.02893064171075821, 0.05915200337767601, -0.07421121746301651, 0.007300914265215397, 0.14716628193855286, 0.16509468853473663, -0.08349409699440002, 1.1090800762176514, 0.0010785802733153105, 0.020900487899780273, 0.0024567660875618458, -0.3039678931236267, -0.26539066433906555, -0.6118426322937012, 0.010486196726560593, 0.09871406108140945, -0.1276319921016693, 0.11210044473409653]} +{"t": 6.9406, "q": [-0.14085863530635834, -0.028194567188620567, 0.029689833521842957, 0.298572301864624, -0.1485985964536667, 0.02357952482998371, -0.1472502201795578, 0.030969368293881416, 0.007713731843978167, 0.3040775954723358, -0.16417336463928223, -0.02886074222624302, 0.059727855026721954, -0.07433813810348511, 0.007386264856904745, 0.1473580300807953, 0.16503477096557617, -0.08350608497858047, 1.1091760396957397, 0.0010426276130601764, 0.020864536985754967, 0.0024687503464519978, -0.3079706132411957, -0.26311367750167847, -0.5941659212112427, 0.010761834681034088, 0.1004757434129715, -0.12349744141101837, 0.11532419919967651]} +{"t": 6.9576, "q": [-0.1411057710647583, -0.02826274372637272, 0.029475562274456024, 0.29855525493621826, -0.14857734739780426, 0.023600468412041664, -0.14724169671535492, 0.03079892508685589, 0.007298583164811134, 0.3040009140968323, -0.164279505610466, -0.02876976877450943, 0.0603037066757679, -0.07446470856666565, 0.00750034349039197, 0.1474539041519165, 0.1648310273885727, -0.08348211646080017, 1.109379768371582, 0.0010546118719503284, 0.02087652124464512, 0.0024687503464519978, -0.31280025839805603, -0.2601296007633209, -0.5745357275009155, 0.010725881904363632, 0.10123074799776077, -0.11893144994974136, 0.11936288326978683]} +{"t": 6.9743, "q": [-0.14113986492156982, -0.02833092212677002, 0.029368426650762558, 0.29854676127433777, -0.14857734739780426, 0.023600468412041664, -0.14724169671535492, 0.030654048547148705, 0.006977177690714598, 0.30406054854393005, -0.1643439084291458, -0.02881959080696106, 0.060384057462215424, -0.07453139126300812, 0.007588341366499662, 0.1476576328277588, 0.16478309035301208, -0.08348211646080017, 1.1095116138458252, 0.0010426276130601764, 0.020804615691304207, 0.0024687503464519978, -0.3178575932979584, -0.25775671005249023, -0.5555886626243591, 0.011049455963075161, 0.10162623226642609, -0.11593539267778397, 0.12255068868398666]} +{"t": 6.9911, "q": [-0.14120803773403168, -0.02839057706296444, 0.029274683445692062, 0.29846152663230896, -0.14856043457984924, 0.023628463968634605, -0.1472502201795578, 0.03056882880628109, 0.00672273151576519, 0.3040435016155243, -0.16448518633842468, -0.028869956731796265, 0.06066528707742691, -0.07453116029500961, 0.007607494480907917, 0.14788533747196198, 0.16469921171665192, -0.08347012847661972, 1.109775185585022, 0.0010546118719503284, 0.020864536985754967, 0.0024567660875618458, -0.3234662115573883, -0.25480860471725464, -0.5363659858703613, 0.011049455963075161, 0.10181798040866852, -0.11295132339000702, 0.12651745975017548]} +{"t": 7.0078, "q": [-0.14125065505504608, -0.028484320268034935, 0.029154157266020775, 0.2984444797039032, -0.14850971102714539, 0.02371245063841343, -0.14724169671535492, 0.030432473868131638, 0.006414717994630337, 0.3040775954723358, -0.1647166758775711, -0.028998523950576782, 0.06071885675191879, -0.07453863322734833, 0.007611950393766165, 0.14811304211616516, 0.16472317278385162, -0.08350608497858047, 1.1099909543991089, 0.0010546118719503284, 0.02087652124464512, 0.0024567660875618458, -0.3287632465362549, -0.2523518204689026, -0.5176226496696472, 0.011169297620654106, 0.10203369706869125, -0.11110575497150421, 0.1297292411327362]} +{"t": 7.0245, "q": [-0.14136143028736115, -0.02857806347310543, 0.028846142813563347, 0.2983933389186859, -0.14850126206874847, 0.0237264521420002, -0.14719055593013763, 0.03033020906150341, 0.006039745174348354, 0.3040520250797272, -0.16497783362865448, -0.02909203991293907, 0.06110721826553345, -0.07456082105636597, 0.00764447683468461, 0.14820891618728638, 0.16469921171665192, -0.08348211646080017, 1.1102186441421509, 0.0010546118719503284, 0.02088850550353527, 0.0024687503464519978, -0.33329328894615173, -0.24893632531166077, -0.4996822774410248, 0.011037471704185009, 0.10208163410425186, -0.11029082536697388, 0.1327492594718933]} +{"t": 7.0413, "q": [-0.1414210945367813, -0.02868884988129139, 0.0285916980355978, 0.29842743277549744, -0.14849703013896942, 0.02373345009982586, -0.14717352390289307, 0.030193854123353958, 0.0056112040765583515, 0.30406054854393005, -0.1653536558151245, -0.029094615951180458, 0.061093829572200775, -0.07464313507080078, 0.007683930452913046, 0.14829280972480774, 0.16473515331745148, -0.08349409699440002, 1.1103744506835938, 0.0010426276130601764, 0.020852552726864815, 0.0024567660875618458, -0.3379431664943695, -0.2451852709054947, -0.48093894124031067, 0.010929613374173641, 0.10208163410425186, -0.1097874864935875, 0.13373197615146637]} +{"t": 7.058, "q": [-0.1414296180009842, -0.028774071484804153, 0.028471169993281364, 0.29837629199028015, -0.14848856627941132, 0.023747451603412628, -0.14712238311767578, 0.030100110918283463, 0.005410325713455677, 0.3040435016155243, -0.16571643948554993, -0.02906184084713459, 0.061093829572200775, -0.07468061149120331, 0.007696640677750111, 0.1483047902584076, 0.16471119225025177, -0.08344615995883942, 1.110518217086792, 0.0010665960144251585, 0.020852552726864815, 0.0024567660875618458, -0.3424851894378662, -0.24109864234924316, -0.4648321568965912, 0.010929613374173641, 0.10205766558647156, -0.10917629301548004, 0.1344749927520752]} +{"t": 7.0748, "q": [-0.14146369695663452, -0.028799638152122498, 0.02837742678821087, 0.29832518100738525, -0.1484801173210144, 0.0237614456564188, -0.14712238311767578, 0.030014891177415848, 0.0052094473503530025, 0.3040775954723358, -0.1661180853843689, -0.029092824086546898, 0.06097330152988434, -0.07469544559717178, 0.007715130224823952, 0.14824487268924713, 0.16466325521469116, -0.08350608497858047, 1.1106380224227905, 0.0010665960144251585, 0.020864536985754967, 0.0024447820615023375, -0.34729087352752686, -0.23691615462303162, -0.44612476229667664, 0.010833739303052425, 0.10208163410425186, -0.10870891064405441, 0.13471467792987823]} +{"t": 7.0915, "q": [-0.14145517349243164, -0.028833726420998573, 0.02837742678821087, 0.2982996106147766, -0.1484420746564865, 0.023824432864785194, -0.14708830416202545, 0.029938191175460815, 0.005062136333435774, 0.3040435016155243, -0.166481152176857, -0.029102373868227005, 0.06101347506046295, -0.0746801570057869, 0.0077349464409053326, 0.1480531245470047, 0.16466325521469116, -0.08349409699440002, 1.1107100248336792, 0.0010665960144251585, 0.020912472158670425, 0.0024567660875618458, -0.3508981168270111, -0.23392009735107422, -0.42817240953445435, 0.010833739303052425, 0.10205766558647156, -0.10813366621732712, 0.135349839925766]} +{"t": 7.1083, "q": [-0.14154039323329926, -0.028842248022556305, 0.028310466557741165, 0.2982996106147766, -0.14832384884357452, 0.02403445728123188, -0.1470627337694168, 0.029835926368832588, 0.004767514765262604, 0.3040520250797272, -0.1669892519712448, -0.029084710404276848, 0.06100008636713028, -0.07471740245819092, 0.007766809314489365, 0.14790931344032288, 0.16473515331745148, -0.08351806551218033, 1.1107579469680786, 0.0010306433541700244, 0.02087652124464512, 0.0024687503464519978, -0.354792982339859, -0.23152324557304382, -0.40920138359069824, 0.011828429996967316, 0.10204567760229111, -0.10745056718587875, 0.13563746213912964]} +{"t": 7.125, "q": [-0.14158301055431366, -0.028893381357192993, 0.028283683583140373, 0.2983166575431824, -0.14820127189159393, 0.02423742413520813, -0.1470712572336197, 0.02972513809800148, 0.0045800283551216125, 0.30406907200813293, -0.16748368740081787, -0.028947025537490845, 0.06101347506046295, -0.0746941864490509, 0.007820473052561283, 0.14787335693836212, 0.16474714875221252, -0.08350608497858047, 1.110865831375122, 0.0010546118719503284, 0.02088850550353527, 0.0024567660875618458, -0.3590354025363922, -0.22924624383449554, -0.3906138241291046, 0.012811136431992054, 0.10196179151535034, -0.10655174404382706, 0.1362966001033783]} +{"t": 7.1419, "q": [-0.14164265990257263, -0.02892746962606907, 0.02805602177977562, 0.2982569932937622, -0.14803653955459595, 0.024524420499801636, -0.1470712572336197, 0.029571739956736565, 0.0041247038170695305, 0.3040861189365387, -0.1681070476770401, -0.028880439698696136, 0.06100008636713028, -0.07477626949548721, 0.007879079319536686, 0.14784938097000122, 0.16472317278385162, -0.08347012847661972, 1.1108537912368774, 0.0010665960144251585, 0.02081659995019436, 0.0024687503464519978, -0.3642485439777374, -0.22518359124660492, -0.3731887638568878, 0.013614079914987087, 0.10191385447978973, -0.10583269596099854, 0.13670405745506287]} +{"t": 7.1587, "q": [-0.1416511833667755, -0.029029734432697296, 0.027801575139164925, 0.298086553812027, -0.14783376455307007, 0.024874405935406685, -0.1470627337694168, 0.02943538688123226, 0.0037095551379024982, 0.3040861189365387, -0.16863831877708435, -0.028924979269504547, 0.06086616590619087, -0.07476788014173508, 0.007951232604682446, 0.14788533747196198, 0.16469921171665192, -0.08351806551218033, 1.110973596572876, 0.0010665960144251585, 0.020864536985754967, 0.0024447820615023375, -0.36898231506347656, -0.2208932340145111, -0.35752537846565247, 0.014608770608901978, 0.10188988596200943, -0.10513760894536972, 0.1371474713087082]} +{"t": 7.1754, "q": [-0.14171937108039856, -0.02911495603621006, 0.027319466695189476, 0.2979416847229004, -0.147694393992424, 0.02511940710246563, -0.14703716337680817, 0.029256422072649002, 0.0030533522367477417, 0.30406907200813293, -0.16923746466636658, -0.02884257771074772, 0.06102686747908592, -0.07483501732349396, 0.008000925183296204, 0.1476576328277588, 0.16463927924633026, -0.08349409699440002, 1.1109975576400757, 0.0010546118719503284, 0.02082858420908451, 0.0024687503464519978, -0.373692125082016, -0.21666280925273895, -0.341047078371048, 0.014968297444283962, 0.1017221063375473, -0.10453839600086212, 0.13739913702011108]} +{"t": 7.1923, "q": [-0.1417960673570633, -0.029370618984103203, 0.02673022449016571, 0.2978394031524658, -0.1473187804222107, 0.025812527164816856, -0.14702863991260529, 0.028958147391676903, 0.0021828790195286274, 0.30406054854393005, -0.16986307501792908, -0.0286824032664299, 0.06100008636713028, -0.07493124157190323, 0.008135479874908924, 0.14753779768943787, 0.16461531817913055, -0.08349409699440002, 1.1109975576400757, 0.0010426276130601764, 0.020840568467974663, 0.0024687503464519978, -0.37810230255126953, -0.21312746405601501, -0.32488036155700684, 0.015243934467434883, 0.10162623226642609, -0.10405902564525604, 0.13742311298847198]} +{"t": 7.209, "q": [-0.14182162284851074, -0.02966037206351757, 0.026100805029273033, 0.297711580991745, -0.1463550478219986, 0.02740827016532421, -0.14704568684101105, 0.028659874573349953, 0.0015400679549202323, 0.3040435016155243, -0.17059795558452606, -0.02848017029464245, 0.06105365231633186, -0.07496702671051025, 0.008291994221508503, 0.1474539041519165, 0.1645314246416092, -0.08347012847661972, 1.1109856367111206, 0.0010426276130601764, 0.02081659995019436, 0.0024567660875618458, -0.38274019956588745, -0.20986774563789368, -0.30942070484161377, 0.015231950208544731, 0.10119479894638062, -0.10342386364936829, 0.13757890462875366]} +{"t": 7.2258, "q": [-0.14183014631271362, -0.029992733150720596, 0.02537764236330986, 0.2976178228855133, -0.14614394307136536, 0.027786295861005783, -0.14704568684101105, 0.02822524681687355, 0.0006695947959087789, 0.3040520250797272, -0.17133325338363647, -0.02822173200547695, 0.06097330152988434, -0.07499556988477707, 0.008424900472164154, 0.1474299430847168, 0.16447150707244873, -0.08348211646080017, 1.1109975576400757, 0.0010426276130601764, 0.02076866291463375, 0.0024567660875618458, -0.38755786418914795, -0.2066439986228943, -0.293937087059021, 0.015124091878533363, 0.10093114525079727, -0.1028965562582016, 0.13753096759319305]} +{"t": 7.2427, "q": [-0.14177049696445465, -0.030333617702126503, 0.024801790714263916, 0.29768601059913635, -0.1460510641336441, 0.02795431576669216, -0.14703716337680817, 0.027816183865070343, 1.3391895663517062e-05, 0.3040009140968323, -0.1719885617494583, -0.027829449623823166, 0.060919731855392456, -0.0750400722026825, 0.008480440825223923, 0.1474299430847168, 0.16443555057048798, -0.08348211646080017, 1.11103355884552, 0.0010546118719503284, 0.020804615691304207, 0.0024687503464519978, -0.39193210005760193, -0.20301277935504913, -0.27949610352516174, 0.01495631318539381, 0.10088320821523666, -0.10238123685121536, 0.13773469626903534]} +{"t": 7.2594, "q": [-0.1417534500360489, -0.030700068920850754, 0.024252723902463913, 0.29773715138435364, -0.14599177241325378, 0.028038255870342255, -0.1470627337694168, 0.02750086598098278, -0.0004553244507405907, 0.3039923906326294, -0.1725684255361557, -0.027620727196335793, 0.06087955832481384, -0.0751064345240593, 0.008597313426434994, 0.14737001061439514, 0.16433967649936676, -0.08350608497858047, 1.11103355884552, 0.0010426276130601764, 0.02081659995019436, 0.0024687503464519978, -0.39647412300109863, -0.1979554295539856, -0.26746395230293274, 0.014884407632052898, 0.1004997119307518, -0.10204567760229111, 0.13773469626903534]} +{"t": 7.2762, "q": [-0.14171084761619568, -0.03104095347225666, 0.023757223039865494, 0.2978138327598572, -0.1459580659866333, 0.02810828574001789, -0.14705421030521393, 0.027091804891824722, -0.0009776083752512932, 0.30392420291900635, -0.17305561900138855, -0.02758128196001053, 0.06069207191467285, -0.07510485500097275, 0.008731544017791748, 0.14734604954719543, 0.1642797589302063, -0.08349409699440002, 1.1109975576400757, 0.0010665960144251585, 0.020780647173523903, 0.0024567660875618458, -0.40150749683380127, -0.19328159093856812, -0.2533944547176361, 0.01516004465520382, 0.10040383785963058, -0.10186591744422913, 0.13750700652599335]} +{"t": 7.2931, "q": [-0.14168527722358704, -0.03122843988239765, 0.02352956123650074, 0.297711580991745, -0.1459284871816635, 0.028157280758023262, -0.14709681272506714, 0.02683614194393158, -0.0012052706442773342, 0.30395829677581787, -0.17334513366222382, -0.027427373453974724, 0.06050458550453186, -0.07504825294017792, 0.009064643643796444, 0.1472022384405136, 0.16419586539268494, -0.08350608497858047, 1.11103355884552, 0.0010546118719503284, 0.02082858420908451, 0.0024687503464519978, -0.4065169095993042, -0.18999791145324707, -0.23961259424686432, 0.01555552426725626, 0.10031995177268982, -0.10150638967752457, 0.13755494356155396]} +{"t": 7.31, "q": [-0.1417534500360489, -0.03144149109721184, 0.023261722177267075, 0.2974900007247925, -0.14594151079654694, 0.028178418055176735, -0.14709681272506714, 0.026623088866472244, -0.0014597165863960981, 0.3037963807582855, -0.1737537980079651, -0.027203425765037537, 0.060584936290979385, -0.07506431639194489, 0.009604983031749725, 0.14669890701770782, 0.16415992379188538, -0.08351806551218033, 1.1110095977783203, 0.0010426276130601764, 0.020744694396853447, 0.0024687503464519978, -0.41086718440055847, -0.18653446435928345, -0.22662170231342316, 0.015447665937244892, 0.10009224712848663, -0.10135059058666229, 0.1375669240951538]} +{"t": 7.3268, "q": [-0.14177049696445465, -0.0316886343061924, 0.022886749356985092, 0.2972428500652313, -0.14596709609031677, 0.028164515271782875, -0.14708830416202545, 0.026341859251260757, -0.001834689755924046, 0.3037537634372711, -0.17421765625476837, -0.026930274441838264, 0.060397449880838394, -0.07526061683893204, 0.01015552319586277, 0.14637532830238342, 0.16420786082744598, -0.08348211646080017, 1.1110095977783203, 0.0010665960144251585, 0.020744694396853447, 0.0024567660875618458, -0.4146541953086853, -0.18343055248260498, -0.21327127516269684, 0.015567508526146412, 0.10006827861070633, -0.10120677947998047, 0.13727930188179016]} +{"t": 7.3435, "q": [-0.14177902042865753, -0.0319187305867672, 0.022565344348549843, 0.2970212996006012, -0.14601461589336395, 0.02821391448378563, -0.14705421030521393, 0.026103239506483078, -0.0021159194875508547, 0.3037708103656769, -0.17466112971305847, -0.026777317747473717, 0.06027692183852196, -0.07545064389705658, 0.010605818592011929, 0.14605174958705902, 0.16424380242824554, -0.08349409699440002, 1.11103355884552, 0.0010546118719503284, 0.020792631432414055, 0.0024567660875618458, -0.4176742136478424, -0.1798592507839203, -0.20029236376285553, 0.015399729833006859, 0.09979264438152313, -0.1011228933930397, 0.13727930188179016]} +{"t": 7.3603, "q": [-0.1417960673570633, -0.03213178366422653, 0.022284114733338356, 0.29690197110176086, -0.14618618786334991, 0.028242921456694603, -0.14700306951999664, 0.025847576558589935, -0.0024373249616473913, 0.303762286901474, -0.17508025467395782, -0.026779944077134132, 0.0603037066757679, -0.07562436908483505, 0.011162236332893372, 0.1456083357334137, 0.16426777839660645, -0.08347012847661972, 1.11103355884552, 0.0010546118719503284, 0.02081659995019436, 0.0024687503464519978, -0.4205024838447571, -0.17604826390743256, -0.1880924105644226, 0.015303855761885643, 0.0993252620100975, -0.1010749563574791, 0.13725532591342926]} +{"t": 7.3771, "q": [-0.1418386697769165, -0.03237040340900421, 0.022056452929973602, 0.2967997193336487, -0.1464184820652008, 0.028413470834493637, -0.14698603749275208, 0.02551521360874176, -0.002758730435743928, 0.3037963807582855, -0.17562346160411835, -0.02680455520749092, 0.060236748307943344, -0.07582656294107437, 0.01184164546430111, 0.14512896537780762, 0.1642318218946457, -0.08342219144105911, 1.1109975576400757, 0.0010665960144251585, 0.02082858420908451, 0.0024687503464519978, -0.4232948124408722, -0.17316007614135742, -0.17561683058738708, 0.015687350183725357, 0.09890580922365189, -0.10105098783969879, 0.13683588802814484]} +{"t": 7.3938, "q": [-0.1418898105621338, -0.032694242894649506, 0.021882357075810432, 0.2967144846916199, -0.14656002819538116, 0.02846379205584526, -0.1469775140285492, 0.02515728399157524, -0.0029997846577316523, 0.30383044481277466, -0.1760263890028, -0.02672901749610901, 0.06016978621482849, -0.07592039555311203, 0.012735273689031601, 0.14456571638584137, 0.1642318218946457, -0.08343417942523956, 1.11103355884552, 0.0010665960144251585, 0.020852552726864815, 0.0024687503464519978, -0.42510443925857544, -0.17048758268356323, -0.16287760436534882, 0.015531555749475956, 0.09845040738582611, -0.10096709430217743, 0.13677595555782318]} +{"t": 7.4106, "q": [-0.1420687735080719, -0.03297547250986099, 0.021627912297844887, 0.2965525686740875, -0.14665921032428741, 0.028570037335157394, -0.1469775140285492, 0.024807877838611603, -0.0032810145057737827, 0.3038134276866913, -0.17632678151130676, -0.026582103222608566, 0.06016978621482849, -0.07599209249019623, 0.013605947606265545, 0.1437627673149109, 0.1642318218946457, -0.08344615995883942, 1.11103355884552, 0.0010665960144251585, 0.020900487899780273, 0.0024687503464519978, -0.4268301725387573, -0.16783908009529114, -0.1527988761663437, 0.015507587231695652, 0.0980788990855217, -0.10089518874883652, 0.13675199449062347]} +{"t": 7.4273, "q": [-0.14231590926647186, -0.03340157866477966, 0.021226154640316963, 0.2964332699775696, -0.14671117067337036, 0.02865482121706009, -0.1470201164484024, 0.024441426619887352, -0.0036158119328320026, 0.3038049042224884, -0.17651695013046265, -0.026462886482477188, 0.06011622026562691, -0.07609386742115021, 0.0144650274887681, 0.14304371178150177, 0.16431571543216705, -0.08342219144105911, 1.11103355884552, 0.0010665960144251585, 0.02088850550353527, 0.0024687503464519978, -0.42812445759773254, -0.1654542088508606, -0.14297181367874146, 0.015903066843748093, 0.09785120189189911, -0.10085923969745636, 0.13646437227725983]} +{"t": 7.4441, "q": [-0.1424778252840042, -0.03381064161658287, 0.02099849283695221, 0.2962798774242401, -0.14674973487854004, 0.028662148863077164, -0.14708830416202545, 0.024049410596489906, -0.003776514669880271, 0.303762286901474, -0.1766812652349472, -0.026301037520170212, 0.05967428535223007, -0.07610491663217545, 0.01533713098615408, 0.14257632195949554, 0.1643037348985672, -0.08342219144105911, 1.1110695600509644, 0.0010426276130601764, 0.020912472158670425, 0.0024687503464519978, -0.42862778902053833, -0.16371649503707886, -0.13222195208072662, 0.016454340890049934, 0.09785120189189911, -0.10078733414411545, 0.1362726241350174]} +{"t": 7.4608, "q": [-0.14253748953342438, -0.034125957638025284, 0.020944925025105476, 0.2960668206214905, -0.14677993953227997, 0.028697539120912552, -0.1471564769744873, 0.023742614313960075, -0.003803298342972994, 0.3037708103656769, -0.1767905354499817, -0.026160098612308502, 0.0591118261218071, -0.07600963115692139, 0.016299623996019363, 0.14219282567501068, 0.1643276959657669, -0.08345814794301987, 1.1111054420471191, 0.0010306433541700244, 0.020900487899780273, 0.0024687503464519978, -0.4286637604236603, -0.161631241440773, -0.1242884024977684, 0.01734117418527603, 0.09776730835437775, -0.10064352303743362, 0.1362726241350174]} +{"t": 7.4776, "q": [-0.1425800919532776, -0.034441277384757996, 0.020891357213258743, 0.2958708107471466, -0.14685767889022827, 0.02879658155143261, -0.14717352390289307, 0.0234102513641119, -0.003803298342972994, 0.3038049042224884, -0.1768868863582611, -0.025997867807745934, 0.058549366891384125, -0.07592253386974335, 0.017765717580914497, 0.14150972664356232, 0.1643516719341278, -0.08347012847661972, 1.1111294031143188, 0.0010426276130601764, 0.02087652124464512, 0.0024687503464519978, -0.42810049653053284, -0.15882693231105804, -0.11779294908046722, 0.01870737597346306, 0.09716809540987015, -0.10046376287937164, 0.13590110838413239]} +{"t": 7.4945, "q": [-0.14260566234588623, -0.0348077267408371, 0.020891357213258743, 0.29576852917671204, -0.1469220072031021, 0.028818177059292793, -0.14714795351028442, 0.023094933480024338, -0.003816690295934677, 0.3039071559906006, -0.1769246906042099, -0.02594853937625885, 0.057906556874513626, -0.07595700770616531, 0.01966766081750393, 0.14041917026042938, 0.1643037348985672, -0.08347012847661972, 1.1111654043197632, 0.0010426276130601764, 0.020900487899780273, 0.0024687503464519978, -0.4269140660762787, -0.15637017786502838, -0.11168099194765091, 0.020732710137963295, 0.09629324823617935, -0.10041582584381104, 0.13562548160552979]} +{"t": 7.5112, "q": [-0.14295506477355957, -0.035106003284454346, 0.020904749631881714, 0.2955554723739624, -0.1469821184873581, 0.028846770524978638, -0.14725874364376068, 0.02286483533680439, -0.003803298342972994, 0.3039412498474121, -0.1769285351037979, -0.025899020954966545, 0.05731731280684471, -0.07591057568788528, 0.021385563537478447, 0.13932859897613525, 0.1643516719341278, -0.08347012847661972, 1.111201286315918, 0.0010665960144251585, 0.02094842493534088, 0.0024687503464519978, -0.4258594512939453, -0.15511183440685272, -0.10493387281894684, 0.023273365572094917, 0.09541840106248856, -0.10028399527072906, 0.13491840660572052]} +{"t": 7.5279, "q": [-0.14337265491485596, -0.035404276102781296, 0.020931532606482506, 0.2955554723739624, -0.14699943363666534, 0.02887503243982792, -0.14728429913520813, 0.022600650787353516, -0.003776514669880271, 0.30401793122291565, -0.17691992223262787, -0.02588482014834881, 0.056875381618738174, -0.07605718821287155, 0.023244675248861313, 0.13810621201992035, 0.16436365246772766, -0.08347012847661972, 1.1112133264541626, 0.0010785802733153105, 0.02099636197090149, 0.0024687503464519978, -0.42462506890296936, -0.15470436215400696, -0.09677261859178543, 0.02581402100622654, 0.09417204558849335, -0.09988851845264435, 0.13430720567703247]} +{"t": 7.5447, "q": [-0.14375615119934082, -0.03565993905067444, 0.020891357213258743, 0.29557251930236816, -0.1470465511083603, 0.028882427141070366, -0.14731839299201965, 0.0223790742456913, -0.0037899063900113106, 0.30415430665016174, -0.1769154965877533, -0.025863541290163994, 0.05664771795272827, -0.07624100893735886, 0.025086194276809692, 0.13660818338394165, 0.1643516719341278, -0.08349409699440002, 1.1112372875213623, 0.0010665960144251585, 0.021044299006462097, 0.0024687503464519978, -0.42173686623573303, -0.15421301126480103, -0.08992962539196014, 0.028869997709989548, 0.09075653553009033, -0.09944510459899902, 0.13411545753479004]} +{"t": 7.5614, "q": [-0.1444038301706314, -0.03580481559038162, 0.020904749631881714, 0.295470267534256, -0.14713305234909058, 0.02900967188179493, -0.147292822599411, 0.022234199568629265, -0.0037899063900113106, 0.30429065227508545, -0.17691107094287872, -0.02584228850901127, 0.056339703500270844, -0.07626118510961533, 0.02677152305841446, 0.13530190289020538, 0.16437563300132751, -0.08348211646080017, 1.1112972497940063, 0.0010426276130601764, 0.021092236042022705, 0.0024567660875618458, -0.41715890169143677, -0.15331418812274933, -0.08415322750806808, 0.032477252185344696, 0.08719722181558609, -0.0993012934923172, 0.13361212611198425]} +{"t": 7.5782, "q": [-0.14543500542640686, -0.03589003533124924, 0.020877964794635773, 0.295095294713974, -0.14724130928516388, 0.029186300933361053, -0.14724169671535492, 0.02214045636355877, -0.003776514669880271, 0.3044184744358063, -0.17689396440982819, -0.025828039273619652, 0.0560852587223053, -0.07624244689941406, 0.02853705734014511, 0.1339237242937088, 0.1643516719341278, -0.08348211646080017, 1.1113091707229614, 0.0010665960144251585, 0.021080251783132553, 0.0024687503464519978, -0.41199368238449097, -0.15182815492153168, -0.07959922403097153, 0.03392734006047249, 0.08264321833848953, -0.09934923052787781, 0.13327656686306]} +{"t": 7.595, "q": [-0.14667071402072906, -0.03591560199856758, 0.020877964794635773, 0.29457545280456543, -0.14730192720890045, 0.029285218566656113, -0.14719907939434052, 0.02208080142736435, -0.0037899063900113106, 0.3047167658805847, -0.17685961723327637, -0.025785377249121666, 0.05565671995282173, -0.0763295367360115, 0.03022153303027153, 0.13228188455104828, 0.16431571543216705, -0.08349409699440002, 1.1114530563354492, 0.0010665960144251585, 0.021104220300912857, 0.0024567660875618458, -0.40657681226730347, -0.15084543824195862, -0.07391870021820068, 0.03479020670056343, 0.07824500650167465, -0.09933724254369736, 0.13373197615146637]} +{"t": 7.6117, "q": [-0.14770188927650452, -0.035949692130088806, 0.02085118182003498, 0.2945413589477539, -0.1473235785961151, 0.02932054176926613, -0.14747178554534912, 0.02208080142736435, -0.003776514669880271, 0.30480197072029114, -0.17679931223392487, -0.025685934349894524, 0.05510764941573143, -0.07644516974687576, 0.03194832056760788, 0.13099956512451172, 0.1643276959657669, -0.08349409699440002, 1.1114649772644043, 0.0010905645322054625, 0.021152157336473465, 0.0025166873820126057, -0.4015194773674011, -0.15009044110774994, -0.06695586442947388, 0.03597664460539818, 0.07522498071193695, -0.09926533699035645, 0.13388776779174805]} +{"t": 7.6285, "q": [-0.14814503490924835, -0.03597525879740715, 0.020891357213258743, 0.29466918110847473, -0.1473235785961151, 0.02932054176926613, -0.14782120287418365, 0.022055234760046005, -0.003776514669880271, 0.3047678768634796, -0.17671352624893188, -0.025586344301700592, 0.05399612337350845, -0.07661860436201096, 0.03379474952816963, 0.1302805095911026, 0.1643516719341278, -0.08350608497858047, 1.111477017402649, 0.0010665960144251585, 0.021164141595363617, 0.0024687503464519978, -0.39786428213119507, -0.14979083836078644, -0.059357866644859314, 0.03970373794436455, 0.07111439108848572, -0.09883390367031097, 0.1338757872581482]} +{"t": 7.6453, "q": [-0.14860522747039795, -0.03595821559429169, 0.02085118182003498, 0.2949674725532532, -0.1473151296377182, 0.0293345358222723, -0.14811095595359802, 0.022055234760046005, -0.003776514669880271, 0.3047678768634796, -0.17665739357471466, -0.02547984942793846, 0.05272389203310013, -0.07678508013486862, 0.0355682373046875, 0.12980113923549652, 0.16439960896968842, -0.08347012847661972, 1.1115608215332031, 0.0010905645322054625, 0.021164141595363617, 0.0024927188642323017, -0.39347806572914124, -0.14969496428966522, -0.05205947533249855, 0.045216482132673264, 0.06488259881734848, -0.09848636388778687, 0.13393570482730865]} +{"t": 7.662, "q": [-0.1491762101650238, -0.03598377853631973, 0.020797614008188248, 0.2952742576599121, -0.14733223617076874, 0.029334668070077896, -0.14840921759605408, 0.022055234760046005, -0.003803298342972994, 0.3047593832015991, -0.1766231656074524, -0.02545134164392948, 0.05159897357225418, -0.07698919624090195, 0.03680971637368202, 0.1293577253818512, 0.16441158950328827, -0.08345814794301987, 1.1115968227386475, 0.0010546118719503284, 0.021164141595363617, 0.0024807346053421497, -0.38728222250938416, -0.1495032161474228, -0.045827675610780716, 0.0499262809753418, 0.0583871454000473, -0.09847437590360641, 0.1338997483253479]} +{"t": 7.6788, "q": [-0.14973866939544678, -0.03597525879740715, 0.020744046196341515, 0.29562366008758545, -0.1473366767168045, 0.02935579977929592, -0.1486307978630066, 0.02202966809272766, -0.003816690295934677, 0.3047252893447876, -0.1765586882829666, -0.02535896748304367, 0.05088920518755913, -0.07697421312332153, 0.037732724100351334, 0.12921391427516937, 0.16436365246772766, -0.08347012847661972, 1.1116207838058472, 0.0010665960144251585, 0.02117612585425377, 0.0024687503464519978, -0.380379319190979, -0.1492994725704193, -0.039799612015485764, 0.053413692861795425, 0.053114086389541626, -0.09859421849250793, 0.1338757872581482]} +{"t": 7.6955, "q": [-0.1498665064573288, -0.0360434353351593, 0.020744046196341515, 0.2958196699619293, -0.14736688137054443, 0.02939119003713131, -0.1487245410680771, 0.021978534758090973, -0.003816690295934677, 0.3047338128089905, -0.1765371412038803, -0.025323446840047836, 0.050326742231845856, -0.07679995894432068, 0.03877096623182297, 0.12918995320796967, 0.16438761353492737, -0.08343417942523956, 1.1116207838058472, 0.0010665960144251585, 0.02112818881869316, 0.0024807346053421497, -0.3747946619987488, -0.14919161796569824, -0.034946002066135406, 0.05650562047958374, 0.046798400580883026, -0.09859421849250793, 0.13386379182338715]} +{"t": 7.7122, "q": [-0.15017330646514893, -0.03615422174334526, 0.020703870803117752, 0.2957855761051178, -0.1473928689956665, 0.029433585703372955, -0.14896316826343536, 0.021867748349905014, -0.0038300822488963604, 0.304623007774353, -0.1765454113483429, -0.025295183062553406, 0.04989820346236229, -0.07657229900360107, 0.039415325969457626, 0.12907010316848755, 0.1643516719341278, -0.08339822292327881, 1.1116328239440918, 0.0010546118719503284, 0.021104220300912857, 0.0024447820615023375, -0.3687306344509125, -0.1492755115032196, -0.031135017052292824, 0.05914214998483658, 0.03767840564250946, -0.09861818701028824, 0.13379189372062683]} +{"t": 7.7292, "q": [-0.150411918759346, -0.036239445209503174, 0.020703870803117752, 0.2958793342113495, -0.14738905429840088, 0.02949683926999569, -0.14915917813777924, 0.021756960079073906, -0.003803298342972994, 0.304623007774353, -0.1764983832836151, -0.02525952458381653, 0.04945627227425575, -0.07631248980760574, 0.03974674269556999, 0.1290101855993271, 0.16439960896968842, -0.08338624238967896, 1.1116207838058472, 0.0010665960144251585, 0.02105628326535225, 0.0024687503464519978, -0.3634096384048462, -0.1492515355348587, -0.026197517290711403, 0.06152701377868652, 0.029948579147458076, -0.0986781120300293, 0.13366006314754486]} +{"t": 7.7459, "q": [-0.150411918759346, -0.036358755081892014, 0.020744046196341515, 0.295956015586853, -0.14742347598075867, 0.029525233432650566, -0.1491762101650238, 0.02166321687400341, -0.0038300822488963604, 0.30460596084594727, -0.17649802565574646, -0.02521705999970436, 0.048666149377822876, -0.0758766159415245, 0.04032638669013977, 0.12922589480876923, 0.16433967649936676, -0.08339822292327881, 1.1116207838058472, 0.0010665960144251585, 0.021044299006462097, 0.0024687503464519978, -0.36022183299064636, -0.15061774849891663, -0.019522303715348244, 0.06404370069503784, 0.021403826773166656, -0.09880993515253067, 0.13370800018310547]} +{"t": 7.7627, "q": [-0.15047158300876617, -0.03640136495232582, 0.020730653777718544, 0.29589638113975525, -0.1474364697933197, 0.029546430334448814, -0.14932109415531158, 0.021637650206685066, -0.003803298342972994, 0.3045463263988495, -0.17649371922016144, -0.025209940969944, 0.04735374450683594, -0.07550562173128128, 0.040602367371320724, 0.1293817013502121, 0.16438761353492737, -0.0833742544054985, 1.1116926670074463, 0.0010665960144251585, 0.021092236042022705, 0.0024567660875618458, -0.35768118500709534, -0.1525472104549408, -0.013578127138316631, 0.06586530059576035, 0.014261228032410145, -0.09894176572561264, 0.1339476853609085]} +{"t": 7.7795, "q": [-0.15047158300876617, -0.03639284148812294, 0.020744046196341515, 0.295913428068161, -0.14744523167610168, 0.029574625194072723, -0.14932109415531158, 0.021620607003569603, -0.0037899063900113106, 0.30456337332725525, -0.17649802565574646, -0.02521705999970436, 0.0457199327647686, -0.0753011628985405, 0.04075727239251137, 0.1293577253818512, 0.16437563300132751, -0.08338624238967896, 1.1117526292800903, 0.0010665960144251585, 0.02111620455980301, 0.0024807346053421497, -0.35585957765579224, -0.1530984789133072, -0.009311743080615997, 0.0661768913269043, 0.008077368140220642, -0.10016415268182755, 0.13400760293006897]} +{"t": 7.7963, "q": [-0.15051418542861938, -0.036367274820804596, 0.020703870803117752, 0.2958281934261322, -0.14745812118053436, 0.02958175539970398, -0.14930404722690582, 0.02165469527244568, -0.0037899063900113106, 0.30456337332725525, -0.17650233209133148, -0.02522416040301323, 0.04336295649409294, -0.07525564730167389, 0.04079688340425491, 0.1293577253818512, 0.16438761353492737, -0.08341021090745926, 1.1118005514144897, 0.0010905645322054625, 0.021140173077583313, 0.0024687503464519978, -0.35508060455322266, -0.15281085669994354, -0.0054887752048671246, 0.06602109968662262, 0.00044341632747091353, -0.10205766558647156, 0.13406752049922943]} +{"t": 7.813, "q": [-0.15044601261615753, -0.03635023161768913, 0.02065030299127102, 0.2958281934261322, -0.14746667444705963, 0.029581813141703606, -0.14927847683429718, 0.02167174033820629, -0.003816690295934677, 0.30457189679145813, -0.17650233209133148, -0.02522416040301323, 0.041099727153778076, -0.07523327320814133, 0.040793221443891525, 0.12936970591545105, 0.16439960896968842, -0.08343417942523956, 1.1118844747543335, 0.0010905645322054625, 0.021200094372034073, 0.0024687503464519978, -0.35533228516578674, -0.1525232344865799, -0.0017137442482635379, 0.06523013859987259, -0.004625910893082619, -0.10403505712747574, 0.13411545753479004]} +{"t": 7.8299, "q": [-0.15033522248268127, -0.03626500815153122, 0.02065030299127102, 0.2958622872829437, -0.14746657013893127, 0.02956775389611721, -0.14921030402183533, 0.021731393411755562, -0.0038300822488963604, 0.3046400547027588, -0.176498144865036, -0.02523121051490307, 0.03836778178811073, -0.07519608736038208, 0.04078086093068123, 0.12954947352409363, 0.1645314246416092, -0.08341021090745926, 1.1119922399520874, 0.0010905645322054625, 0.021260015666484833, 0.0024927188642323017, -0.3556199073791504, -0.15228354930877686, 0.0018575548892840743, 0.06013684347271919, -0.009455553255975246, -0.10824152082204819, 0.1345468908548355]} +{"t": 7.8467, "q": [-0.15025000274181366, -0.03619683161377907, 0.02066369540989399, 0.2960071563720703, -0.14747945964336395, 0.029574891552329063, -0.14915917813777924, 0.021808093413710594, -0.003816690295934677, 0.3047338128089905, -0.17651094496250153, -0.025238361209630966, 0.03476536273956299, -0.07519639283418655, 0.04076208546757698, 0.12954947352409363, 0.16456738114356995, -0.08343417942523956, 1.1122798919677734, 0.0011145329335704446, 0.02135588973760605, 0.0024807346053421497, -0.3590114414691925, -0.15193600952625275, 0.004685832187533379, 0.05402488633990288, -0.012199941091239452, -0.11251989006996155, 0.13525396585464478]} +{"t": 7.8634, "q": [-0.15003694593906403, -0.0361371785402298, 0.020596735179424286, 0.2960582971572876, -0.14747945964336395, 0.029574891552329063, -0.14905691146850586, 0.021867748349905014, -0.0038434739690274, 0.30480197072029114, -0.17650245130062103, -0.025238310918211937, 0.032488737255334854, -0.07519747316837311, 0.04069637134671211, 0.12962138652801514, 0.1646512746810913, -0.08341021090745926, 1.1126993894577026, 0.0011385014513507485, 0.02147573232650757, 0.0024687503464519978, -0.3675561845302582, -0.1500784456729889, 0.007226487621665001, 0.047757137566804886, -0.014093449339270592, -0.11622301489114761, 0.13588912785053253]} +{"t": 7.8803, "q": [-0.1497216373682022, -0.03609456866979599, 0.020623520016670227, 0.29636508226394653, -0.14746667444705963, 0.029581813141703606, -0.14892055094242096, 0.021927403286099434, -0.003816690295934677, 0.3049127757549286, -0.1764940768480301, -0.02525242418050766, 0.031524524092674255, -0.07527416944503784, 0.04058028757572174, 0.12897422909736633, 0.16466325521469116, -0.08341021090745926, 1.1132506132125854, 0.0011145329335704446, 0.021583588793873787, 0.0024807346053421497, -0.3756095767021179, -0.14967098832130432, 0.010354370810091496, 0.04102200269699097, -0.016634104773402214, -0.11945875734090805, 0.1362966001033783]} +{"t": 7.897, "q": [-0.14923587441444397, -0.036060478538274765, 0.020623520016670227, 0.2965610921382904, -0.14747945964336395, 0.029574891552329063, -0.14859670400619507, 0.02196149155497551, -0.003816690295934677, 0.30502355098724365, -0.17648977041244507, -0.02524532377719879, 0.03144416958093643, -0.07553929090499878, 0.040375202894210815, 0.1276559680700302, 0.16463927924633026, -0.08342219144105911, 1.1134064197540283, 0.0011624698527157307, 0.021583588793873787, 0.0024687503464519978, -0.3847056031227112, -0.14968296885490417, 0.012235893867909908, 0.032764870673418045, -0.01859951764345169, -0.12201140075922012, 0.1369437426328659]} +{"t": 7.9137, "q": [-0.14883533120155334, -0.0360434353351593, 0.02050299197435379, 0.29667186737060547, -0.14748379588127136, 0.029581954702734947, -0.1485796719789505, 0.021952969953417778, -0.0038434739690274, 0.3050917387008667, -0.17649826407432556, -0.02524537220597267, 0.03192627802491188, -0.07582695037126541, 0.04016425088047981, 0.1264335811138153, 0.1646033376455307, -0.08345814794301987, 1.113430380821228, 0.0011504855938255787, 0.021583588793873787, 0.0024687503464519978, -0.39347806572914124, -0.14968296885490417, 0.013458284549415112, 0.02401638776063919, -0.01973801851272583, -0.12382101267576218, 0.13741113245487213]} +{"t": 7.9306, "q": [-0.1482558250427246, -0.036060478538274765, 0.020409248769283295, 0.2967997193336487, -0.1475307047367096, 0.029561221599578857, -0.14858819544315338, 0.02196149155497551, -0.0038702578749507666, 0.3050576448440552, -0.17651094496250153, -0.025238361209630966, 0.03226107731461525, -0.07601599395275116, 0.040037840604782104, 0.12597817182540894, 0.1645793616771698, -0.08348211646080017, 1.113490343093872, 0.0011025486746802926, 0.021583588793873787, 0.0024927188642323017, -0.40261003375053406, -0.14976686239242554, 0.015148060396313667, 0.016646089032292366, -0.021260015666484833, -0.12451609969139099, 0.13826200366020203]} +{"t": 7.9475, "q": [-0.1476166695356369, -0.03610308840870857, 0.020409248769283295, 0.29685935378074646, -0.14755214750766754, 0.029568426311016083, -0.14860522747039795, 0.021944446489214897, -0.0038568659219890833, 0.3050405979156494, -0.17649826407432556, -0.02524537220597267, 0.032328035682439804, -0.07626553624868393, 0.039870988577604294, 0.12616991996765137, 0.16454340517520905, -0.08349409699440002, 1.1137659549713135, 0.0011385014513507485, 0.021619541570544243, 0.0024807346053421497, -0.41231727600097656, -0.14979083836078644, 0.01829991117119789, 0.010833739303052425, -0.023069633170962334, -0.12471982836723328, 0.13974805176258087]} +{"t": 7.9642, "q": [-0.1469348967075348, -0.036171264946460724, 0.020395856350660324, 0.29685935378074646, -0.14758595824241638, 0.0295124351978302, -0.14850296080112457, 0.0218507032841444, -0.0038702578749507666, 0.30503207445144653, -0.17648102343082428, -0.025216951966285706, 0.03255569934844971, -0.07653779536485672, 0.03968917578458786, 0.12651745975017548, 0.1645793616771698, -0.08347012847661972, 1.1140415668487549, 0.0011504855938255787, 0.02159557305276394, 0.0024567660875618458, -0.42095789313316345, -0.15061774849891663, 0.021044299006462097, 0.006687197834253311, -0.025130920112133026, -0.12485165894031525, 0.14132997393608093]} +{"t": 7.981, "q": [-0.14655140042304993, -0.03622239828109741, 0.020369073376059532, 0.29694458842277527, -0.14773492515087128, 0.029408112168312073, -0.14818765223026276, 0.021799571812152863, -0.0038702578749507666, 0.3050065040588379, -0.1764851063489914, -0.025195740163326263, 0.032836928963661194, -0.07684029638767242, 0.03948716074228287, 0.12694889307022095, 0.16461531817913055, -0.08349409699440002, 1.1142932176589966, 0.0011265171924605966, 0.021583588793873787, 0.0024927188642323017, -0.4290352761745453, -0.15103718638420105, 0.022913837805390358, 0.004673847928643227, -0.027515782043337822, -0.12480372190475464, 0.14339125156402588]} +{"t": 7.9977, "q": [-0.1464661806821823, -0.036239445209503174, 0.020369073376059532, 0.29708945751190186, -0.147882878780365, 0.029163150116801262, -0.147983118891716, 0.021765483543276787, -0.0038702578749507666, 0.3050065040588379, -0.17646357417106628, -0.025160236284136772, 0.033198509365320206, -0.07706718146800995, 0.03933564946055412, 0.12724851071834564, 0.1646272987127304, -0.08347012847661972, 1.1144490242004395, 0.0011385014513507485, 0.021535653620958328, 0.0024807346053421497, -0.43426039814949036, -0.15088139474391937, 0.024411866441369057, 0.00424241553992033, -0.029409289360046387, -0.12470784783363342, 0.14632739126682281]} +{"t": 8.0145, "q": [-0.14658549427986145, -0.036299098283052444, 0.020369073376059532, 0.29723435640335083, -0.1479378193616867, 0.029072167351841927, -0.14799164235591888, 0.021731393411755562, -0.0038702578749507666, 0.304997980594635, -0.17633457481861115, -0.02497546374797821, 0.03364044055342674, -0.07724034041166306, 0.03926646336913109, 0.12742826342582703, 0.16459134221076965, -0.08347012847661972, 1.1145689487457275, 0.0011385014513507485, 0.021535653620958328, 0.0024807346053421497, -0.43780770897865295, -0.1507735401391983, 0.026628948748111725, 0.004350273869931698, -0.03163835406303406, -0.12455205619335175, 0.15178021788597107]} +{"t": 8.0312, "q": [-0.14676445722579956, -0.036358755081892014, 0.020369073376059532, 0.29736217856407166, -0.14790832996368408, 0.029135221615433693, -0.14805981516838074, 0.02166321687400341, -0.0038702578749507666, 0.304997980594635, -0.1761239916086197, -0.024684065952897072, 0.033868104219436646, -0.07729941606521606, 0.03931060805916786, 0.1276319921016693, 0.16459134221076965, -0.08345814794301987, 1.1146647930145264, 0.0011265171924605966, 0.02147573232650757, 0.0024927188642323017, -0.4392218589782715, -0.15071362257003784, 0.030979221686720848, 0.005009406246244907, -0.03480219095945358, -0.12450411915779114, 0.15634620189666748]} +{"t": 8.048, "q": [-0.14691784977912903, -0.036478061228990555, 0.020369073376059532, 0.29740479588508606, -0.1478913277387619, 0.029149148613214493, -0.14811095595359802, 0.021526863798499107, -0.0038702578749507666, 0.3050065040588379, -0.17601223289966583, -0.02452770248055458, 0.03389488905668259, -0.07732872664928436, 0.03934677317738533, 0.12787167727947235, 0.1645314246416092, -0.08339822292327881, 1.114688754081726, 0.0011145329335704446, 0.021451763808727264, 0.0025047031231224537, -0.4396173357963562, -0.1507016271352768, 0.03576092794537544, 0.006207828875631094, -0.03834952041506767, -0.12450411915779114, 0.16122378408908844]} +{"t": 8.0647, "q": [-0.1471564769744873, -0.036665551364421844, 0.02035568095743656, 0.29741331934928894, -0.1478574126958847, 0.02919107861816883, -0.1481194794178009, 0.021373465657234192, -0.0038970415480434895, 0.304997980594635, -0.1759476214647293, -0.02442115917801857, 0.03392167016863823, -0.07732857018709183, 0.03935616835951805, 0.12809938192367554, 0.16449548304080963, -0.08344615995883942, 1.114784598350525, 0.0011145329335704446, 0.021391842514276505, 0.0024807346053421497, -0.44000083208084106, -0.15055781602859497, 0.042040660977363586, 0.0076339514926075935, -0.04170510545372963, -0.12450411915779114, 0.16647286713123322]} +{"t": 8.0817, "q": [-0.14721612632274628, -0.0367763377726078, 0.020369073376059532, 0.2974473834037781, -0.14781947433948517, 0.029268136247992516, -0.14805981516838074, 0.021271200850605965, -0.0038970415480434895, 0.30501502752304077, -0.1758745163679123, -0.02431456558406353, 0.0339350625872612, -0.07737268507480621, 0.03940102085471153, 0.12839898467063904, 0.16449548304080963, -0.08343417942523956, 1.1148325204849243, 0.0010905645322054625, 0.021260015666484833, 0.0024927188642323017, -0.4373643100261688, -0.15061774849891663, 0.04800880700349808, 0.008293083868920803, -0.04772118479013443, -0.1245400682091713, 0.1724410206079483]} +{"t": 8.0984, "q": [-0.14742065966129303, -0.03687860444188118, 0.020462816581130028, 0.2974303364753723, -0.1478787511587143, 0.029184207320213318, -0.1480257362127304, 0.021203022450208664, -0.0038434739690274, 0.30501502752304077, -0.17584854364395142, -0.02425779215991497, 0.033667225390672684, -0.0773874968290329, 0.039409708231687546, 0.12860272824764252, 0.16451944410800934, -0.08345814794301987, 1.1149284839630127, 0.0011145329335704446, 0.021212078630924225, 0.0024927188642323017, -0.4319594204425812, -0.1505218744277954, 0.05711681768298149, 0.008796420879662037, -0.05408480763435364, -0.1245640367269516, 0.17740248143672943]} +{"t": 8.1151, "q": [-0.1476592719554901, -0.036955300718545914, 0.020543167367577553, 0.2974218428134918, -0.14782802760601044, 0.02926819398999214, -0.14795754849910736, 0.02105814777314663, -0.0037899063900113106, 0.30503207445144653, -0.17573678493499756, -0.024101438000798225, 0.03342617303133011, -0.07735724747180939, 0.039429910480976105, 0.12851883471012115, 0.16449548304080963, -0.08347012847661972, 1.1150243282318115, 0.0010905645322054625, 0.021260015666484833, 0.0025047031231224537, -0.4254639744758606, -0.15086941421031952, 0.06701578944921494, 0.011732556857168674, -0.060328591614961624, -0.12448015064001083, 0.18217220902442932]} +{"t": 8.132, "q": [-0.14818765223026276, -0.037023480981588364, 0.02051638439297676, 0.2974473834037781, -0.1478322595357895, 0.02926119603216648, -0.14777858555316925, 0.02100701443850994, -0.0038434739690274, 0.30502355098724365, -0.17562921345233917, -0.023938024416565895, 0.03345295414328575, -0.07737189531326294, 0.03944798931479454, 0.1278596967458725, 0.16448348760604858, -0.08343417942523956, 1.1150003671646118, 0.0011145329335704446, 0.02124803140759468, 0.0024927188642323017, -0.41754239797592163, -0.15101322531700134, 0.07405053079128265, 0.014009559527039528, -0.06790261715650558, -0.12449213117361069, 0.1868939995765686]} +{"t": 8.1488, "q": [-0.14891202747821808, -0.03710870072245598, 0.02052977681159973, 0.2975326180458069, -0.14772647619247437, 0.029422106221318245, -0.14755702018737793, 0.020921792834997177, -0.0038300822488963604, 0.3051002621650696, -0.17556016147136688, -0.02382436953485012, 0.03343956172466278, -0.07732683420181274, 0.039459504187107086, 0.1273323893547058, 0.16450746357440948, -0.08344615995883942, 1.1150243282318115, 0.0011265171924605966, 0.02124803140759468, 0.0024927188642323017, -0.40894970297813416, -0.15080949664115906, 0.08073772490024567, 0.01641838811337948, -0.07695070654153824, -0.1245400682091713, 0.19332952797412872]} +{"t": 8.1656, "q": [-0.14953415095806122, -0.037151310592889786, 0.020583342760801315, 0.2976263463497162, -0.14759968221187592, 0.029632067307829857, -0.1476166695356369, 0.02087918296456337, -0.0038300822488963604, 0.30511730909347534, -0.17548668384552002, -0.023731892928481102, 0.03331903740763664, -0.07720489054918289, 0.03959667682647705, 0.127188578248024, 0.1645314246416092, -0.08339822292327881, 1.1149883270263672, 0.0011145329335704446, 0.02124803140759468, 0.0024687503464519978, -0.40221455693244934, -0.15078552067279816, 0.08698150515556335, 0.018371816724538803, -0.08269115537405014, -0.1245640367269516, 0.19812321662902832]} +{"t": 8.1823, "q": [-0.15010511875152588, -0.03719392046332359, 0.020610127598047256, 0.2977030575275421, -0.1475827693939209, 0.029660062864422798, -0.14795754849910736, 0.02082804962992668, -0.003816690295934677, 0.3050917387008667, -0.17541754245758057, -0.023646527901291847, 0.03275657817721367, -0.07701550424098969, 0.039741724729537964, 0.12739230692386627, 0.16450746357440948, -0.08339822292327881, 1.1150362491607666, 0.0011025486746802926, 0.021271999925374985, 0.0024807346053421497, -0.3969774544239044, -0.15073758363723755, 0.09461545944213867, 0.02070874162018299, -0.09244631230831146, -0.12459999322891235, 0.20174244046211243]} +{"t": 8.1993, "q": [-0.15028409659862518, -0.03721948713064194, 0.02067708782851696, 0.2977456748485565, -0.14758287370204926, 0.02967413142323494, -0.1481620818376541, 0.020785439759492874, -0.0037497307639569044, 0.30507469177246094, -0.1753222793340683, -0.023504383862018585, 0.032515522092580795, -0.07692428678274155, 0.039830513298511505, 0.1275121569633484, 0.16449548304080963, -0.08341021090745926, 1.11514413356781, 0.0010905645322054625, 0.02129596844315529, 0.0024687503464519978, -0.3930346369743347, -0.15186409652233124, 0.10175805538892746, 0.02202700637280941, -0.09980462491512299, -0.12476776540279388, 0.20490628480911255]} +{"t": 8.216, "q": [-0.150411918759346, -0.03725357726216316, 0.02065030299127102, 0.2977030575275421, -0.14759565889835358, 0.0296672023832798, -0.14823025465011597, 0.020802482962608337, -0.0037497307639569044, 0.30497241020202637, -0.1753263771533966, -0.02348318323493004, 0.03258248046040535, -0.07691703736782074, 0.03981677442789078, 0.12745223939418793, 0.1645314246416092, -0.08343417942523956, 1.11514413356781, 0.0011025486746802926, 0.021271999925374985, 0.0024807346053421497, -0.38905587792396545, -0.15272696316242218, 0.10760635882616043, 0.02231462672352791, -0.10779810696840286, -0.1251632422208786, 0.2082139253616333]} +{"t": 8.2328, "q": [-0.15035226941108704, -0.03724505379796028, 0.02063691057264805, 0.29763486981391907, -0.1475827693939209, 0.029660062864422798, -0.148170605301857, 0.020793961361050606, -0.0037497307639569044, 0.3048701584339142, -0.17533503472805023, -0.023497387766838074, 0.03271640092134476, -0.07693972438573837, 0.03980162367224693, 0.12734438478946686, 0.16445952653884888, -0.08342219144105911, 1.1151801347732544, 0.0010905645322054625, 0.021283984184265137, 0.0024807346053421497, -0.38601189851760864, -0.15332618355751038, 0.11204051971435547, 0.022422485053539276, -0.118248350918293, -0.12572650611400604, 0.21168935298919678]} +{"t": 8.2495, "q": [-0.15035226941108704, -0.03724505379796028, 0.020623520016670227, 0.29759228229522705, -0.14759132266044617, 0.02966012991964817, -0.14813651144504547, 0.020793961361050606, -0.0037631227169185877, 0.3048701584339142, -0.1753394901752472, -0.023518642410635948, 0.0327431857585907, -0.07695484906435013, 0.0397915244102478, 0.12727247178554535, 0.16448348760604858, -0.08343417942523956, 1.115204095840454, 0.0011145329335704446, 0.021271999925374985, 0.0024807346053421497, -0.38456180691719055, -0.15362578630447388, 0.1158515065908432, 0.022110896185040474, -0.12474379688501358, -0.1269848495721817, 0.21456557512283325]} +{"t": 8.2663, "q": [-0.1503266990184784, -0.0372365303337574, 0.02065030299127102, 0.29750704765319824, -0.14759132266044617, 0.02966012991964817, -0.14815355837345123, 0.020793961361050606, -0.003736338810995221, 0.30488720536231995, -0.17534370720386505, -0.023511594161391258, 0.03230125084519386, -0.07693247497081757, 0.039787884801626205, 0.12742826342582703, 0.1645314246416092, -0.08344615995883942, 1.1152759790420532, 0.0011145329335704446, 0.021283984184265137, 0.0025047031231224537, -0.3846816420555115, -0.15357784926891327, 0.11865581572055817, 0.019174760207533836, -0.1321260780096054, -0.1315508335828781, 0.21689051389694214]} +{"t": 8.283, "q": [-0.1502329558134079, -0.037202443927526474, 0.02069047838449478, 0.2974900007247925, -0.14758700132369995, 0.029653066769242287, -0.14815355837345123, 0.02081952802836895, -0.0036827712319791317, 0.30492982268333435, -0.17533503472805023, -0.023497387766838074, 0.031645048409700394, -0.07693247497081757, 0.039787884801626205, 0.1276080310344696, 0.16451944410800934, -0.08342219144105911, 1.1153359413146973, 0.0011145329335704446, 0.021319936960935593, 0.0024687503464519978, -0.38490933179855347, -0.15331418812274933, 0.11919510364532471, 0.014920360408723354, -0.13858558237552643, -0.13727930188179016, 0.21945513784885406]} +{"t": 8.2999, "q": [-0.15017330646514893, -0.03717687726020813, 0.02069047838449478, 0.29741331934928894, -0.14759565889835358, 0.0296672023832798, -0.14815355837345123, 0.020853616297245026, -0.0036292036529630423, 0.3049468696117401, -0.17533527314662933, -0.023525692522525787, 0.031337037682533264, -0.07691829651594162, 0.03974162042140961, 0.12745223939418793, 0.1645554006099701, -0.08338624238967896, 1.1154797077178955, 0.0011265171924605966, 0.02135588973760605, 0.0024807346053421497, -0.3901224732398987, -0.15306252241134644, 0.11860787868499756, 0.008448879234492779, -0.14245648682117462, -0.1432114988565445, 0.22028204798698425]} +{"t": 8.3167, "q": [-0.14988355338573456, -0.03713426738977432, 0.02069047838449478, 0.29745590686798096, -0.14759555459022522, 0.02965313382446766, -0.14805129170417786, 0.0208877045661211, -0.0036024199798703194, 0.3050405979156494, -0.17534370720386505, -0.023511594161391258, 0.031176332384347916, -0.07696398347616196, 0.039692528545856476, 0.1272844523191452, 0.16463927924633026, -0.08343417942523956, 1.1155396699905396, 0.0011025486746802926, 0.02135588973760605, 0.0025047031231224537, -0.39724111557006836, -0.15290673077106476, 0.11814048886299133, 0.002049302449449897, -0.14514094591140747, -0.14739398658275604, 0.22058165073394775]} +{"t": 8.3334, "q": [-0.14934666454792023, -0.03707461059093475, 0.020770831033587456, 0.2974729537963867, -0.14760421216487885, 0.029667267575860023, -0.14785528182983398, 0.020921792834997177, -0.003575636073946953, 0.30507469177246094, -0.17534370720386505, -0.023511594161391258, 0.031042413786053658, -0.0770101472735405, 0.03961525484919548, 0.12712866067886353, 0.16479508578777313, -0.08341021090745926, 1.1156355142593384, 0.0011145329335704446, 0.021403826773166656, 0.0024927188642323017, -0.4070442020893097, -0.15273894369602203, 0.11800866574048996, -0.0041824947111308575, -0.14739398658275604, -0.15240339934825897, 0.22088125348091125]} +{"t": 8.3502, "q": [-0.14907394349575043, -0.03704052418470383, 0.020730653777718544, 0.29750704765319824, -0.14759555459022522, 0.02965313382446766, -0.14782120287418365, 0.020964404568076134, -0.003589028026908636, 0.30510878562927246, -0.17534370720386505, -0.023511594161391258, 0.031350426375865936, -0.07701849937438965, 0.03956323489546776, 0.12697286903858185, 0.16478309035301208, -0.08343417942523956, 1.1156954765319824, 0.0010905645322054625, 0.021403826773166656, 0.0025047031231224537, -0.41526538133621216, -0.1525711715221405, 0.11594738066196442, -0.012068115174770355, -0.1492755115032196, -0.1565139889717102, 0.22090522944927216]} +{"t": 8.367, "q": [-0.14875011146068573, -0.03698939085006714, 0.02069047838449478, 0.2975667119026184, -0.14759555459022522, 0.02965313382446766, -0.147795632481575, 0.02098996937274933, -0.003589028026908636, 0.3051769435405731, -0.17534394562244415, -0.023539897054433823, 0.03139060363173485, -0.07698919624090195, 0.03952706977725029, 0.12714064121246338, 0.16473515331745148, -0.08345814794301987, 1.1157913208007812, 0.0010905645322054625, 0.02141581103205681, 0.0024927188642323017, -0.424541175365448, -0.15239140391349792, 0.11138138920068741, -0.020984377712011337, -0.15039004385471344, -0.16097211837768555, 0.22070148587226868]} +{"t": 8.3837, "q": [-0.1482643485069275, -0.036972347646951675, 0.020730653777718544, 0.2975752353668213, -0.1475912183523178, 0.029646070674061775, -0.14782972633838654, 0.021015536040067673, -0.003589028026908636, 0.3052195608615875, -0.17534394562244415, -0.023539897054433823, 0.03129686042666435, -0.07693704217672348, 0.03951544687151909, 0.127560093998909, 0.1646033376455307, -0.08343417942523956, 1.1159350872039795, 0.0010905645322054625, 0.021379858255386353, 0.0024927188642323017, -0.4336252212524414, -0.15173228085041046, 0.1059165820479393, -0.029565082862973213, -0.15176822245121002, -0.16537033021450043, 0.22028204798698425]} +{"t": 8.4007, "q": [-0.14772745966911316, -0.036912690848112106, 0.020703870803117752, 0.2975667119026184, -0.147625133395195, 0.029604138806462288, -0.14781267940998077, 0.02104962430894375, -0.003575636073946953, 0.3052366077899933, -0.17534394562244415, -0.023539897054433823, 0.030828144401311874, -0.07689277082681656, 0.03947998955845833, 0.1279555708169937, 0.1645793616771698, -0.08342219144105911, 1.116210699081421, 0.0011145329335704446, 0.0213678739964962, 0.0025047031231224537, -0.44290101528167725, -0.15068964660167694, 0.10126670449972153, -0.03826563060283661, -0.15338610112667084, -0.16878582537174225, 0.21977870166301727]} +{"t": 8.4174, "q": [-0.1471564769744873, -0.03688712418079376, 0.020730653777718544, 0.29754114151000977, -0.14770545065402985, 0.029471158981323242, -0.14785528182983398, 0.021075190976262093, -0.003575636073946953, 0.3052366077899933, -0.17534829676151276, -0.023547017946839333, 0.030372818931937218, -0.07683336734771729, 0.0394546315073967, 0.12841098010540009, 0.16451944410800934, -0.08345814794301987, 1.11663019657135, 0.0010665960144251585, 0.02135588973760605, 0.0024927188642323017, -0.45166146755218506, -0.14976686239242554, 0.09616142511367798, -0.04527640342712402, -0.15418903529644012, -0.17392705380916595, 0.21917949616909027]} +{"t": 8.4342, "q": [-0.14661957323551178, -0.036853037774562836, 0.020744046196341515, 0.2975326180458069, -0.14776040613651276, 0.029380174353718758, -0.1478467583656311, 0.02112632431089878, -0.00354885240085423, 0.30525365471839905, -0.1753653883934021, -0.02354712411761284, 0.030198724940419197, -0.07681114971637726, 0.03944160044193268, 0.12860272824764252, 0.16451944410800934, -0.08338624238967896, 1.1172893047332764, 0.0010785802733153105, 0.021331921219825745, 0.0024927188642323017, -0.45922353863716125, -0.1495511531829834, 0.0905647873878479, -0.05315003916621208, -0.15435682237148285, -0.1799791008234024, 0.21825671195983887]} +{"t": 8.4511, "q": [-0.14627869427204132, -0.03681894764304161, 0.020717263221740723, 0.2975155711174011, -0.14781545102596283, 0.029303260147571564, -0.1477615386247635, 0.021160412579774857, -0.003562244353815913, 0.3052366077899933, -0.17537406086921692, -0.023561330512166023, 0.030145157128572464, -0.07675222307443619, 0.039388060569763184, 0.12829113006591797, 0.16451944410800934, -0.08341021090745926, 1.1183079481124878, 0.0010905645322054625, 0.02130795270204544, 0.0025047031231224537, -0.46544334292411804, -0.1493234485387802, 0.083074651658535, -0.06087986379861832, -0.15445269644260406, -0.18549184501171112, 0.21728599071502686]} +{"t": 8.4679, "q": [-0.1462019979953766, -0.0367763377726078, 0.020730653777718544, 0.2975155711174011, -0.14810721576213837, 0.028834400698542595, -0.14773598313331604, 0.021194500848650932, -0.003562244353815913, 0.3052707016468048, -0.17537429928779602, -0.023589635267853737, 0.029957670718431473, -0.07673000544309616, 0.039375029504299164, 0.12800350785255432, 0.16451944410800934, -0.0833742544054985, 1.1191588640213013, 0.0011025486746802926, 0.02129596844315529, 0.0025047031231224537, -0.46963781118392944, -0.1480051875114441, 0.07457783073186874, -0.06748317182064056, -0.15445269644260406, -0.18925487995147705, 0.2163272500038147]} +{"t": 8.4846, "q": [-0.14621904492378235, -0.03676781430840492, 0.020744046196341515, 0.29750704765319824, -0.1484326720237732, 0.0282954890280962, -0.14765076339244843, 0.021211545914411545, -0.0035220684949308634, 0.3053814768791199, -0.17534863948822021, -0.0235894825309515, 0.02924790047109127, -0.07667754590511322, 0.039382196962833405, 0.12797954678535461, 0.1645793616771698, -0.08339822292327881, 1.1196502447128296, 0.0010665960144251585, 0.021271999925374985, 0.0025047031231224537, -0.47380831837654114, -0.1465071588754654, 0.06721951812505722, -0.07312773913145065, -0.15442872047424316, -0.1922868937253952, 0.2148771584033966]} +{"t": 8.5015, "q": [-0.1463383436203003, -0.0367763377726078, 0.020797614008188248, 0.29749852418899536, -0.14924411475658417, 0.026937654241919518, -0.14765076339244843, 0.021211545914411545, -0.003468500915914774, 0.3054070472717285, -0.17533165216445923, -0.023603538051247597, 0.028672048822045326, -0.0766400471329689, 0.039388660341501236, 0.12794359028339386, 0.16459134221076965, -0.08342219144105911, 1.120321273803711, 0.0011145329335704446, 0.02123604714870453, 0.0024807346053421497, -0.47600144147872925, -0.14575214684009552, 0.06162288784980774, -0.07745404541492462, -0.15440475940704346, -0.19572636485099792, 0.21383452415466309]} +{"t": 8.5182, "q": [-0.14639800786972046, -0.03676781430840492, 0.020891357213258743, 0.29750704765319824, -0.14956124126911163, 0.02642679587006569, -0.14759962260723114, 0.02123711071908474, -0.0034283252898603678, 0.3054581880569458, -0.17532755434513092, -0.023624738678336143, 0.028136372566223145, -0.07663248479366302, 0.03939371183514595, 0.1279076337814331, 0.16456738114356995, -0.08341021090745926, 1.1210163831710815, 0.0010905645322054625, 0.021164141595363617, 0.0025047031231224537, -0.4764568507671356, -0.1456562727689743, 0.05795571208000183, -0.07971906661987305, -0.15452459454536438, -0.1983269453048706, 0.21342706680297852]} +{"t": 8.535, "q": [-0.1464235782623291, -0.03675929456949234, 0.020931532606482506, 0.2975155711174011, -0.14968793094158173, 0.026202773675322533, -0.14758257567882538, 0.021279722452163696, -0.003361365757882595, 0.3054922819137573, -0.1753147840499878, -0.0236317440867424, 0.027426602318882942, -0.07663973420858383, 0.03940745070576668, 0.12794359028339386, 0.16454340517520905, -0.08342219144105911, 1.121795415878296, 0.0010905645322054625, 0.021152157336473465, 0.0024927188642323017, -0.4761812090873718, -0.14571619033813477, 0.05501957982778549, -0.08023438602685928, -0.15453658998012543, -0.2003283053636551, 0.21346302330493927]} +{"t": 8.5518, "q": [-0.14653435349464417, -0.03674224764108658, 0.020944925025105476, 0.29750704765319824, -0.14967113733291626, 0.02624483034014702, -0.14759962260723114, 0.021313810721039772, -0.003334582084789872, 0.3054922819137573, -0.17531056702136993, -0.02363879419863224, 0.02705162949860096, -0.07662460207939148, 0.03941754996776581, 0.12779977917671204, 0.16451944410800934, -0.08339822292327881, 1.1224185228347778, 0.0011025486746802926, 0.021152157336473465, 0.0024927188642323017, -0.47572579979896545, -0.14605174958705902, 0.05325789749622345, -0.08011454343795776, -0.15527960658073425, -0.20131102204322815, 0.21484120190143585]} +{"t": 8.5686, "q": [-0.14667923748493195, -0.036733727902173996, 0.020944925025105476, 0.2974900007247925, -0.14963309466838837, 0.026307817548513412, -0.14759109914302826, 0.021313810721039772, -0.003334582084789872, 0.3055433928966522, -0.17531056702136993, -0.02363879419863224, 0.02703823707997799, -0.07658584415912628, 0.03949917107820511, 0.12757207453250885, 0.1645554006099701, -0.08336227387189865, 1.1226342916488647, 0.0010905645322054625, 0.020984377712011337, 0.0024927188642323017, -0.4701171815395355, -0.1462075412273407, 0.05313805490732193, -0.07914382219314575, -0.15650199353694916, -0.2019941210746765, 0.2169983685016632]} +{"t": 8.5853, "q": [-0.14689229428768158, -0.03675929456949234, 0.02098510041832924, 0.2974900007247925, -0.14963299036026, 0.026293758302927017, -0.14753997325897217, 0.021339377388358116, -0.0033077981788665056, 0.3055433928966522, -0.17531056702136993, -0.02363879419863224, 0.026971278712153435, -0.07647208869457245, 0.039593715220689774, 0.12742826342582703, 0.1645793616771698, -0.08341021090745926, 1.1228619813919067, 0.0010905645322054625, 0.02100834622979164, 0.0025047031231224537, -0.4617402255535126, -0.1462554782629013, 0.054120760411024094, -0.07871238887310028, -0.15813185274600983, -0.2028210312128067, 0.22062958776950836]} +{"t": 8.6022, "q": [-0.14716500043869019, -0.03675077110528946, 0.021025275811553, 0.29746443033218384, -0.14955690503120422, 0.026419732719659805, -0.14749735593795776, 0.021313810721039772, -0.003254230599850416, 0.3055433928966522, -0.17531900107860565, -0.023624686524271965, 0.02703823707997799, -0.07634305208921432, 0.03970775380730629, 0.12722453474998474, 0.1645793616771698, -0.08341021090745926, 1.1229578256607056, 0.0010905645322054625, 0.02094842493534088, 0.0024927188642323017, -0.45193710923194885, -0.1480531245470047, 0.05464806780219078, -0.07796937227249146, -0.15992948412895203, -0.2039715200662613, 0.22375747561454773]} +{"t": 8.619, "q": [-0.1475314497947693, -0.03676781430840492, 0.021065451204776764, 0.2974218428134918, -0.14954422414302826, 0.026440732181072235, -0.1475229263305664, 0.021322332322597504, -0.003254230599850416, 0.30552634596824646, -0.1753147840499878, -0.0236317440867424, 0.02703823707997799, -0.07620645314455032, 0.03982684388756752, 0.12715263664722443, 0.1645554006099701, -0.08339822292327881, 1.1230297088623047, 0.0010905645322054625, 0.020912472158670425, 0.0025047031231224537, -0.4417385458946228, -0.15033012628555298, 0.05721269175410271, -0.07570435106754303, -0.16334499418735504, -0.20473849773406982, 0.22834742069244385]} +{"t": 8.6358, "q": [-0.14800016582012177, -0.03675077110528946, 0.021105628460645676, 0.2974303364753723, -0.14947237074375153, 0.02655971050262451, -0.14751440286636353, 0.021339377388358116, -0.0032274469267576933, 0.30551785230636597, -0.17531056702136993, -0.02363879419863224, 0.026944493874907494, -0.07598652690649033, 0.04001103714108467, 0.1270327866077423, 0.16451944410800934, -0.08339822292327881, 1.123125672340393, 0.0010905645322054625, 0.02088850550353527, 0.0024927188642323017, -0.43112051486968994, -0.15198394656181335, 0.061287328600883484, -0.07300789654254913, -0.1669282764196396, -0.20548152923583984, 0.23359651863574982]} +{"t": 8.6526, "q": [-0.14854557812213898, -0.03669963777065277, 0.021078843623399734, 0.29745590686798096, -0.14943009614944458, 0.026629703119397163, -0.147667795419693, 0.021373465657234192, -0.003254230599850416, 0.30548375844955444, -0.17531056702136993, -0.02363879419863224, 0.026998061686754227, -0.07571352273225784, 0.0402400940656662, 0.12658937275409698, 0.16454340517520905, -0.08343417942523956, 1.1231855154037476, 0.0010665960144251585, 0.020924456417560577, 0.0025047031231224537, -0.4199272394180298, -0.15313443541526794, 0.06427139788866043, -0.07098256796598434, -0.17163807153701782, -0.2069436013698578, 0.23936092853546143]} +{"t": 8.6695, "q": [-0.14884385466575623, -0.03669111803174019, 0.021025275811553, 0.2974473834037781, -0.14937947690486908, 0.026727749034762383, -0.14787232875823975, 0.021390508860349655, -0.003240838646888733, 0.3054667115211487, -0.17530611157417297, -0.023617539554834366, 0.027279291301965714, -0.07538712024688721, 0.04053276777267456, 0.12608602643013, 0.16454340517520905, -0.08338624238967896, 1.1231975555419922, 0.0010905645322054625, 0.02093644067645073, 0.0024927188642323017, -0.4096927344799042, -0.1542969048023224, 0.06731539219617844, -0.0688733458518982, -0.177210733294487, -0.2085854411125183, 0.2440347820520401]} +{"t": 8.6862, "q": [-0.1489972472190857, -0.03667407110333443, 0.021078843623399734, 0.29740479588508606, -0.14936670660972595, 0.02673467993736267, -0.1480342447757721, 0.02142459899187088, -0.003240838646888733, 0.3053814768791199, -0.1753147840499878, -0.0236317440867424, 0.02753373794257641, -0.07511508464813232, 0.04070485010743141, 0.12588229775428772, 0.16454340517520905, -0.08338624238967896, 1.1232454776763916, 0.0010665960144251585, 0.020924456417560577, 0.0024807346053421497, -0.4012558162212372, -0.15541143715381622, 0.0701436698436737, -0.0668240413069725, -0.18133331835269928, -0.21014338731765747, 0.2482532262802124]} +{"t": 8.703, "q": [-0.1489972472190857, -0.03668259456753731, 0.021078843623399734, 0.29731956124305725, -0.1493498980998993, 0.026776744052767754, -0.14810243248939514, 0.021433120593428612, -0.003254230599850416, 0.30534738302230835, -0.17532755434513092, -0.023624738678336143, 0.027506953105330467, -0.07482005655765533, 0.040910691022872925, 0.1257864236831665, 0.16451944410800934, -0.08341021090745926, 1.123293399810791, 0.0010905645322054625, 0.020924456417560577, 0.0025047031231224537, -0.3944128453731537, -0.1565139889717102, 0.07282813638448715, -0.06429536640644073, -0.1862228810787201, -0.2115814983844757, 0.25198033452033997]} +{"t": 8.7198, "q": [-0.1489972472190857, -0.03667407110333443, 0.021065451204776764, 0.2971917390823364, -0.14923566579818726, 0.02695164643228054, -0.14809390902519226, 0.021416075527668, -0.003240838646888733, 0.3052366077899933, -0.1753232181072235, -0.023617636412382126, 0.02773461677134037, -0.07475201040506363, 0.040956027805805206, 0.1255347579717636, 0.16450746357440948, -0.08341021090745926, 1.1233413219451904, 0.0010665960144251585, 0.020924456417560577, 0.0024927188642323017, -0.3884926438331604, -0.15760454535484314, 0.07446997612714767, -0.06355234980583191, -0.19002187252044678, -0.21383452415466309, 0.2550482749938965]} +{"t": 8.7366, "q": [-0.1489887237548828, -0.03667407110333443, 0.021025275811553, 0.29708945751190186, -0.14916814863681793, 0.02707768976688385, -0.14811095595359802, 0.021416075527668, -0.003254230599850416, 0.3052195608615875, -0.17533189058303833, -0.02363184280693531, 0.027948886156082153, -0.07473688572645187, 0.040966104716062546, 0.12527111172676086, 0.16449548304080963, -0.0833742544054985, 1.1233892440795898, 0.0010665960144251585, 0.020960409194231033, 0.0024927188642323017, -0.38433411717414856, -0.15844343602657318, 0.07468569278717041, -0.06336060166358948, -0.19489945471286774, -0.2175496369600296, 0.25780466198921204]} +{"t": 8.7534, "q": [-0.1489461213350296, -0.036657027900218964, 0.021025275811553, 0.2970127761363983, -0.14915132522583008, 0.027119753882288933, -0.14809390902519226, 0.021441642194986343, -0.003254230599850416, 0.30515989661216736, -0.175344780087471, -0.023638999089598656, 0.02786853536963463, -0.07474460452795029, 0.0409516803920269, 0.12524713575839996, 0.16456738114356995, -0.08338624238967896, 1.1234492063522339, 0.0010905645322054625, 0.020960409194231033, 0.0025047031231224537, -0.3824765384197235, -0.15882693231105804, 0.07439807057380676, -0.06327670812606812, -0.19789551198482513, -0.22245119512081146, 0.26020148396492004]} +{"t": 8.7703, "q": [-0.14895464479923248, -0.03664850443601608, 0.021038668230175972, 0.2969275414943695, -0.14913855493068695, 0.027126682922244072, -0.14810243248939514, 0.021467208862304688, -0.0032676225528120995, 0.30511730909347534, -0.17535333335399628, -0.023639051243662834, 0.027640873566269875, -0.0747297927737236, 0.04094298183917999, 0.1252111792564392, 0.1645554006099701, -0.08341021090745926, 1.1235570907592773, 0.0010905645322054625, 0.02099636197090149, 0.0025047031231224537, -0.38266828656196594, -0.15871907770633698, 0.07336742430925369, -0.06523013859987259, -0.1997770369052887, -0.22595058381557465, 0.26137596368789673]} +{"t": 8.7871, "q": [-0.14881828427314758, -0.0366399846971035, 0.021078843623399734, 0.29690197110176086, -0.1491384506225586, 0.027112623676657677, -0.1480768620967865, 0.021450163796544075, -0.003254230599850416, 0.3051258325576782, -0.17536622285842896, -0.023646216839551926, 0.02690431848168373, -0.07473750412464142, 0.04092855378985405, 0.12540292739868164, 0.1645554006099701, -0.08345814794301987, 1.1237248182296753, 0.0010905645322054625, 0.021032314747571945, 0.0024927188642323017, -0.38299188017845154, -0.15869511663913727, 0.06835801899433136, -0.06920889765024185, -0.20139490067958832, -0.23009712994098663, 0.2614598274230957]} +{"t": 8.8038, "q": [-0.14873306453227997, -0.03662294149398804, 0.021119019016623497, 0.2968764007091522, -0.1491427719593048, 0.02711968682706356, -0.1480342447757721, 0.021458687260746956, -0.0031470954418182373, 0.305142879486084, -0.17535778880119324, -0.0236603245139122, 0.026435602456331253, -0.07464909553527832, 0.04084819555282593, 0.12561865150928497, 0.16445952653884888, -0.08345814794301987, 1.124192237854004, 0.0010905645322054625, 0.021092236042022705, 0.0024927188642323017, -0.3884446918964386, -0.15855130553245544, 0.06264154613018036, -0.07472164183855057, -0.2021978497505188, -0.23263777792453766, 0.26117223501205444]} +{"t": 8.8207, "q": [-0.1483921855688095, -0.036614418029785156, 0.021132411435246468, 0.2968849241733551, -0.14914287626743317, 0.027133746072649956, -0.14791494607925415, 0.02147573046386242, -0.0031203117687255144, 0.3051939904689789, -0.17535333335399628, -0.023639051243662834, 0.0258865337818861, -0.07466530054807663, 0.04077240824699402, 0.12558269500732422, 0.16449548304080963, -0.08343417942523956, 1.124551773071289, 0.0010905645322054625, 0.021140173077583313, 0.0025047031231224537, -0.3962823748588562, -0.1585632860660553, 0.05529521405696869, -0.08188821375370026, -0.20204205811023712, -0.23486684262752533, 0.26036927103996277]} +{"t": 8.8376, "q": [-0.14805129170417786, -0.03658032789826393, 0.0211859792470932, 0.2968764007091522, -0.1492064893245697, 0.027056898921728134, -0.14787232875823975, 0.021577997133135796, -0.00287925754673779, 0.3052792251110077, -0.1753620058298111, -0.023653274402022362, 0.025002669543027878, -0.07467363774776459, 0.040720436722040176, 0.12540292739868164, 0.1646512746810913, -0.08341021090745926, 1.1253787279129028, 0.0010905645322054625, 0.021152157336473465, 0.0025166873820126057, -0.40542635321617126, -0.1585632860660553, 0.04712197184562683, -0.088791124522686, -0.20191022753715515, -0.23795877397060394, 0.2595183849334717]} +{"t": 8.8543, "q": [-0.1477104127407074, -0.03655476123094559, 0.02119937166571617, 0.29685086011886597, -0.1492404043674469, 0.027014967054128647, -0.14785528182983398, 0.02165469527244568, -0.0026382035575807095, 0.30533885955810547, -0.17534489929676056, -0.023653149604797363, 0.024225939065217972, -0.07465234398841858, 0.04065106064081192, 0.12489959597587585, 0.16481904685497284, -0.08336227387189865, 1.1265531778335571, 0.0010785802733153105, 0.02118811011314392, 0.0024927188642323017, -0.4129045009613037, -0.15857526659965515, 0.036791570484638214, -0.09564609825611115, -0.20149077475070953, -0.24212928116321564, 0.25863155722618103]} +{"t": 8.8711, "q": [-0.1473950892686844, -0.036546241492033005, 0.021226154640316963, 0.29685935378074646, -0.1492702066898346, 0.026994099840521812, -0.1478041559457779, 0.021697305142879486, -0.0025578520726412535, 0.3054667115211487, -0.17534489929676056, -0.023653149604797363, 0.023650087416172028, -0.0745856910943985, 0.040611911565065384, 0.12404871731996536, 0.16484302282333374, -0.0833742544054985, 1.1282668113708496, 0.0010905645322054625, 0.02118811011314392, 0.0024927188642323017, -0.41961565613746643, -0.15832360088825226, 0.024268055334687233, -0.10420283675193787, -0.20110727846622467, -0.24582043290138245, 0.2565343379974365]} +{"t": 8.8878, "q": [-0.14704568684101105, -0.03652067482471466, 0.021226154640316963, 0.296893447637558, -0.14932535588741302, 0.026931244879961014, -0.14777858555316925, 0.021731393411755562, -0.0024908925406634808, 0.30547523498535156, -0.17534489929676056, -0.023653149604797363, 0.022458208724856377, -0.07445979118347168, 0.040537964552640915, 0.12390490621328354, 0.16480706632137299, -0.08338624238967896, 1.1298128366470337, 0.0011025486746802926, 0.02118811011314392, 0.0024807346053421497, -0.42587143182754517, -0.15785621106624603, 0.013530190102756023, -0.11059042811393738, -0.20061592757701874, -0.2501227557659149, 0.2532506585121155]} +{"t": 8.9045, "q": [-0.1466962844133377, -0.03651215136051178, 0.021212762221693993, 0.2969190180301666, -0.14946092665195465, 0.02674947865307331, -0.1477615386247635, 0.02179104834794998, -0.0024507169146090746, 0.30551785230636597, -0.17534513771533966, -0.023681480437517166, 0.020395856350660324, -0.07433388382196426, 0.04046401381492615, 0.12401276081800461, 0.16469921171665192, -0.0833502858877182, 1.1310831308364868, 0.0010905645322054625, 0.021200094372034073, 0.0025047031231224537, -0.4313002824783325, -0.1574367731809616, 0.0013662016717717052, -0.11657056212425232, -0.19969314336776733, -0.25373002886772156, 0.24955950677394867]} +{"t": 8.9213, "q": [-0.14650879800319672, -0.036478061228990555, 0.02119937166571617, 0.29696163535118103, -0.14948628842830658, 0.0267074815928936, -0.14781267940998077, 0.021799571812152863, -0.0024507169146090746, 0.3055433928966522, -0.17533645033836365, -0.02366725727915764, 0.01762373559176922, -0.07425180077552795, 0.0404537171125412, 0.1242644339799881, 0.16472317278385162, -0.08331433683633804, 1.1318740844726562, 0.0011025486746802926, 0.021200094372034073, 0.0025166873820126057, -0.4348715841770172, -0.15565112233161926, -0.011744541116058826, -0.12255068868398666, -0.19747605919837952, -0.25585123896598816, 0.24671924114227295]} +{"t": 8.9381, "q": [-0.14648322761058807, -0.03645249828696251, 0.0211859792470932, 0.29700425267219543, -0.1494947373867035, 0.02669348753988743, -0.14777858555316925, 0.021825138479471207, -0.002464108867570758, 0.3056030571460724, -0.17533645033836365, -0.02366725727915764, 0.015159625560045242, -0.07409580796957016, 0.04039052873849869, 0.12440824508666992, 0.16481904685497284, -0.08327838033437729, 1.1324613094329834, 0.0010665960144251585, 0.02117612585425377, 0.0025047031231224537, -0.4370526969432831, -0.1534460186958313, -0.022841934114694595, -0.12729644775390625, -0.19577430188655853, -0.2586914896965027, 0.24277643859386444]} +{"t": 8.9548, "q": [-0.14649175107479095, -0.03645249828696251, 0.021212762221693993, 0.29708945751190186, -0.14950330555438995, 0.0266935545951128, -0.14777006208896637, 0.021859226748347282, -0.0024105412885546684, 0.30571383237838745, -0.17533645033836365, -0.02366725727915764, 0.01132954377681017, -0.0739016979932785, 0.040371306240558624, 0.12449213117361069, 0.16489095985889435, -0.08331433683633804, 1.132928729057312, 0.0010665960144251585, 0.021164141595363617, 0.0025166873820126057, -0.43795153498649597, -0.15054583549499512, -0.034574490040540695, -0.13109543919563293, -0.19407254457473755, -0.2630537450313568, 0.2395646572113037]} +{"t": 8.9715, "q": [-0.14658549427986145, -0.03643545135855675, 0.02119937166571617, 0.2971150279045105, -0.14949031174182892, 0.026672355830669403, -0.14777006208896637, 0.02183366008102894, -0.0024105412885546684, 0.30580759048461914, -0.17533224821090698, -0.023674307391047478, 0.007847650907933712, -0.07362425327301025, 0.040416840463876724, 0.12455205619335175, 0.16493889689445496, -0.0833263173699379, 1.1333242654800415, 0.0010905645322054625, 0.021164141595363617, 0.002540655666962266, -0.43785566091537476, -0.14606373012065887, -0.04742157831788063, -0.13391172885894775, -0.19274228811264038, -0.2658580541610718, 0.23735956847667694]} +{"t": 8.9884, "q": [-0.14659401774406433, -0.03646101802587509, 0.02131989784538746, 0.297149121761322, -0.1494777351617813, 0.026707414537668228, -0.14769336581230164, 0.021867748349905014, -0.0021025275345891714, 0.30598655343055725, -0.17531947791576385, -0.02368130348622799, 0.005343366414308548, -0.07311438769102097, 0.040486548095941544, 0.12467189878225327, 0.1649269014596939, -0.08327838033437729, 1.1338155269622803, 0.0010905645322054625, 0.021200094372034073, 0.002552639925852418, -0.4377238154411316, -0.14183330535888672, -0.06059224158525467, -0.13658422231674194, -0.19137609004974365, -0.2683747410774231, 0.23392009735107422]} +{"t": 9.0051, "q": [-0.1466025412082672, -0.03646954149007797, 0.021788613870739937, 0.2971150279045105, -0.14947350323200226, 0.02671441063284874, -0.14769336581230164, 0.02202114649116993, -0.0013391895918175578, 0.30607178807258606, -0.17528948187828064, -0.023674050346016884, 0.0037899063900113106, -0.07238701730966568, 0.04058944061398506, 0.12470784783363342, 0.1648789644241333, -0.0833263173699379, 1.1346185207366943, 0.0010905645322054625, 0.021212078630924225, 0.002552639925852418, -0.43601009249687195, -0.13880129158496857, -0.07353520393371582, -0.13856160640716553, -0.18939869105815887, -0.2707955539226532, 0.2301810085773468]} +{"t": 9.022, "q": [-0.1466962844133377, -0.03639284148812294, 0.02233768254518509, 0.2971150279045105, -0.14946939051151276, 0.026735477149486542, -0.14756552875041962, 0.02213193289935589, -0.0007365542696788907, 0.306191086769104, -0.1752426028251648, -0.02369498461484909, 0.0028122980147600174, -0.07145315408706665, 0.040978867560625076, 0.12487562745809555, 0.16481904685497284, -0.0833502858877182, 1.1363322734832764, 0.0010905645322054625, 0.021200094372034073, 0.002552639925852418, -0.43001797795295715, -0.13476261496543884, -0.08783238381147385, -0.1399158239364624, -0.18545588850975037, -0.27270105481147766, 0.22677749395370483]} +{"t": 9.0388, "q": [-0.14677298069000244, -0.03639284148812294, 0.022578736767172813, 0.2971065044403076, -0.14945226907730103, 0.026735343039035797, -0.14758257567882538, 0.022166023030877113, -0.00044193255598656833, 0.3062762916088104, -0.175199493765831, -0.023652244359254837, 0.0021828790195286274, -0.07029233127832413, 0.04153589531779289, 0.12401276081800461, 0.16469921171665192, -0.0833502858877182, 1.137878179550171, 0.0010905645322054625, 0.021319936960935593, 0.002552639925852418, -0.42328283190727234, -0.1314549595117569, -0.10078733414411545, -0.14063487946987152, -0.18272347748279572, -0.27387550473213196, 0.22275079786777496]} +{"t": 9.0555, "q": [-0.14676445722579956, -0.03639284148812294, 0.022940317168831825, 0.2971235513687134, -0.1494733989238739, 0.026700351387262344, -0.14762519299983978, 0.022174544632434845, -9.374327055411413e-05, 0.30631038546562195, -0.1751738339662552, -0.02365209348499775, 0.0012454462703317404, -0.0688798725605011, 0.04240938276052475, 0.12259862571954727, 0.16463927924633026, -0.08342219144105911, 1.1388968229293823, 0.0011265171924605966, 0.02129596844315529, 0.002576608443632722, -0.4158765971660614, -0.12831510603427887, -0.11374228447675705, -0.14075472950935364, -0.18047045171260834, -0.27484622597694397, 0.21829266846179962]} +{"t": 9.0723, "q": [-0.14676445722579956, -0.036358755081892014, 0.023328682407736778, 0.2970724105834961, -0.1495032012462616, 0.02667948603630066, -0.14772745966911316, 0.02220863290131092, 0.00033479739795438945, 0.3063274323940277, -0.17516516149044037, -0.023637888953089714, 0.0009240407962352037, -0.06725865602493286, 0.04325124993920326, 0.12120845168828964, 0.16459134221076965, -0.08343417942523956, 1.1401911973953247, 0.0010905645322054625, 0.02130795270204544, 0.0025166873820126057, -0.40809881687164307, -0.12442022562026978, -0.12807542085647583, -0.1408625841140747, -0.1778578907251358, -0.2757450342178345, 0.2151048630475998]} +{"t": 9.0891, "q": [-0.1467048078775406, -0.036367274820804596, 0.023623304441571236, 0.2970724105834961, -0.1496426910161972, 0.026448525488376617, -0.14774450659751892, 0.022225676104426384, 0.0006695947959087789, 0.3063700497150421, -0.17513059079647064, -0.02359520085155964, 0.0003883649769704789, -0.06559053808450699, 0.04424365982413292, 0.12035757303237915, 0.16459134221076965, -0.08344615995883942, 1.1405386924743652, 0.0011025486746802926, 0.02129596844315529, 0.0025166873820126057, -0.39963796734809875, -0.12117250263690948, -0.14204901456832886, -0.14093448221683502, -0.1754370778799057, -0.2768835425376892, 0.21074260771274567]} +{"t": 9.1058, "q": [-0.14664514362812042, -0.03634170815348625, 0.024078628048300743, 0.29704686999320984, -0.14962154626846313, 0.02648351714015007, -0.14787232875823975, 0.022225676104426384, 0.0011517030652612448, 0.3064126670360565, -0.17508722841739655, -0.023524155840277672, -0.0003883649769704789, -0.06362145394086838, 0.045377492904663086, 0.11981828510761261, 0.16451944410800934, -0.08348211646080017, 1.141018033027649, 0.0010905645322054625, 0.02129596844315529, 0.0025047031231224537, -0.3915126621723175, -0.11867978423833847, -0.1551957130432129, -0.1411621868610382, -0.1746101677417755, -0.278357595205307, 0.2070634365081787]} +{"t": 9.1227, "q": [-0.1466110646724701, -0.03628205507993698, 0.024426817893981934, 0.2970212996006012, -0.14968927204608917, 0.026385603472590446, -0.14800016582012177, 0.022285331040620804, 0.0015802436973899603, 0.30640414357185364, -0.17504844069480896, -0.023488527163863182, -0.00042854066123254597, -0.061727408319711685, 0.04652451351284981, 0.11909922957420349, 0.1639082431793213, -0.08351806551218033, 1.1411858797073364, 0.0011145329335704446, 0.021283984184265137, 0.0025166873820126057, -0.38266828656196594, -0.11601928621530533, -0.16861805319786072, -0.14188124239444733, -0.17431055009365082, -0.28126975893974304, 0.2037917524576187]} +{"t": 9.1394, "q": [-0.14659401774406433, -0.036239445209503174, 0.024574128910899162, 0.2970127761363983, -0.14971041679382324, 0.026350611820816994, -0.14805129170417786, 0.022344985976815224, 0.0017677302239462733, 0.3064211905002594, -0.17502278089523315, -0.023488350212574005, -0.0004553244507405907, -0.06019548326730728, 0.0474860817193985, 0.1185239851474762, 0.16327308118343353, -0.08351806551218033, 1.141305685043335, 0.0011145329335704446, 0.02130795270204544, 0.0025047031231224537, -0.3746148943901062, -0.11401791870594025, -0.18024274706840515, -0.14192917943000793, -0.17385515570640564, -0.28454145789146423, 0.19990886747837067]} +{"t": 9.1562, "q": [-0.14657697081565857, -0.03614570200443268, 0.02469465509057045, 0.2970212996006012, -0.14970608055591583, 0.02634354867041111, -0.14817912876605988, 0.0224472526460886, 0.0019284329609945416, 0.30643823742866516, -0.17500567436218262, -0.023488253355026245, -0.0005624596378766, -0.0585140697658062, 0.048460349440574646, 0.11798469722270966, 0.1622064858675003, -0.08357799053192139, 1.141533374786377, 0.0011145329335704446, 0.021283984184265137, 0.0025166873820126057, -0.36639371514320374, -0.1125798150897026, -0.19157981872558594, -0.14189322292804718, -0.17337578535079956, -0.287992924451828, 0.19619375467300415]} +{"t": 9.1729, "q": [-0.1465173214673996, -0.03605195879936218, 0.024748222902417183, 0.2970298230648041, -0.149672269821167, 0.026399539783596992, -0.14820469915866852, 0.022532472386956215, 0.0018882573349401355, 0.3064723014831543, -0.17501434683799744, -0.02350245788693428, -0.000522283953614533, -0.05708804726600647, 0.049377549439668655, 0.11736151576042175, 0.16129568219184875, -0.08358997106552124, 1.1416172981262207, 0.0011145329335704446, 0.02129596844315529, 0.002540655666962266, -0.35925111174583435, -0.11005114018917084, -0.20271317660808563, -0.14183330535888672, -0.1730881631374359, -0.29132452607154846, 0.19446802139282227]} +{"t": 9.1896, "q": [-0.14653435349464417, -0.03589003533124924, 0.024761615321040154, 0.2970212996006012, -0.14965546131134033, 0.02644159458577633, -0.14838366210460663, 0.02268587052822113, 0.001982000656425953, 0.3064723014831543, -0.17501012980937958, -0.02350950799882412, -0.0004151487664785236, -0.0556020624935627, 0.050331756472587585, 0.11658254265785217, 0.1603369563817978, -0.0836019515991211, 1.141880989074707, 0.0011145329335704446, 0.02129596844315529, 0.0025286716409027576, -0.3524680435657501, -0.10673151165246964, -0.21354691684246063, -0.141809344291687, -0.17283649742603302, -0.29432058334350586, 0.19222697615623474]} +{"t": 9.2064, "q": [-0.1465599238872528, -0.03571107238531113, 0.024761615321040154, 0.29705536365509033, -0.1495920717716217, 0.026546571403741837, -0.14843478798866272, 0.02285631373524666, 0.001901649171486497, 0.3064552843570709, -0.17500193417072296, -0.02355193719267845, 4.017568790004589e-05, -0.054048143327236176, 0.05136615410447121, 0.11530023068189621, 0.1594141572713852, -0.08357799053192139, 1.1422284841537476, 0.0011025486746802926, 0.02129596844315529, 0.0025166873820126057, -0.3440071940422058, -0.10464625805616379, -0.2208452969789505, -0.14093448221683502, -0.17256085574626923, -0.2966335415840149, 0.19070497155189514]} +{"t": 9.2231, "q": [-0.14659401774406433, -0.03559176251292229, 0.024641087278723717, 0.297080934047699, -0.14948195219039917, 0.02670040912926197, -0.14849445223808289, 0.023001190274953842, 0.0018212978029623628, 0.3064211905002594, -0.17500627040863037, -0.02355903945863247, 0.001004392164759338, -0.052464455366134644, 0.05241858959197998, 0.11392204463481903, 0.15837153792381287, -0.08361393958330154, 1.1425161361694336, 0.0011145329335704446, 0.02130795270204544, 0.0025166873820126057, -0.33548641204833984, -0.10363958030939102, -0.22547121345996857, -0.14050306379795074, -0.17238110303878784, -0.2986468970775604, 0.19050124287605286]} +{"t": 9.2398, "q": [-0.14667071402072906, -0.03542984277009964, 0.02456073649227619, 0.29708945751190186, -0.14942701160907745, 0.026791401207447052, -0.14860522747039795, 0.023120498284697533, 0.0017007706919685006, 0.30636152625083923, -0.17503637075424194, -0.023580454289913177, 0.0022230546455830336, -0.05097155645489693, 0.05341929942369461, 0.1122322678565979, 0.15714915096759796, -0.08363790810108185, 1.142791748046875, 0.0011265171924605966, 0.02129596844315529, 0.0025166873820126057, -0.32545560598373413, -0.10256099700927734, -0.22887472808361053, -0.1401675045490265, -0.17233316600322723, -0.300995796918869, 0.19058513641357422]} +{"t": 9.2568, "q": [-0.14668776094913483, -0.03537870943546295, 0.024493776261806488, 0.2971150279045105, -0.14940598607063293, 0.026840461418032646, -0.14861375093460083, 0.023197198286652565, 0.0016605950659140944, 0.30631890892982483, -0.17505794763565063, -0.023601824417710304, 0.003106919815763831, -0.04926792532205582, 0.054583046585321426, 0.11099789291620255, 0.15583087503910065, -0.083673857152462, 1.143007516860962, 0.0011504855938255787, 0.021319936960935593, 0.0025047031231224537, -0.3172703683376312, -0.10118281096220016, -0.23157118260860443, -0.13924472033977509, -0.1723930835723877, -0.3042195439338684, 0.1907888650894165]} +{"t": 9.2735, "q": [-0.1467474102973938, -0.035344623029232025, 0.02435985766351223, 0.29708945751190186, -0.14935526251792908, 0.02692444808781147, -0.148673415184021, 0.023239808157086372, 0.001566851744428277, 0.3061996102333069, -0.17506228387355804, -0.023608926683664322, 0.0037497307639569044, -0.047233905643224716, 0.055921927094459534, 0.10982344299554825, 0.15422499179840088, -0.083673857152462, 1.1431752443313599, 0.0011504855938255787, 0.021331921219825745, 0.0025166873820126057, -0.30934879183769226, -0.099624864757061, -0.23353660106658936, -0.1387174129486084, -0.17256085574626923, -0.3079706132411957, 0.1907888650894165]} +{"t": 9.2902, "q": [-0.14672183990478516, -0.03535314276814461, 0.02434646710753441, 0.29704686999320984, -0.14925804734230042, 0.027085425332188606, -0.148673415184021, 0.02322276495397091, 0.0015132841654121876, 0.3061569929122925, -0.1750667244195938, -0.023630190640687943, 0.004432717338204384, -0.04549457132816315, 0.057048797607421875, 0.1089126393198967, 0.1524992734193802, -0.0836498886346817, 1.143247127532959, 0.0011265171924605966, 0.021319936960935593, 0.0025047031231224537, -0.30136731266975403, -0.09821072220802307, -0.23459121584892273, -0.13925670087337494, -0.17260879278182983, -0.31197336316108704, 0.19077688455581665]} +{"t": 9.3072, "q": [-0.14671331644058228, -0.035395752638578415, 0.02435985766351223, 0.2970298230648041, -0.1492495834827423, 0.02709941752254963, -0.148673415184021, 0.02317163161933422, 0.0014731085393577814, 0.30613142251968384, -0.17507529258728027, -0.023630235344171524, 0.00483447453007102, -0.04444814845919609, 0.05772567540407181, 0.10839731991291046, 0.15113306045532227, -0.08363790810108185, 1.143319010734558, 0.0011145329335704446, 0.02130795270204544, 0.0025286716409027576, -0.2947160601615906, -0.09653293341398239, -0.23475898802280426, -0.13960424065589905, -0.1729443520307541, -0.3159041702747345, 0.19082482159137726]} +{"t": 9.3239, "q": [-0.14673036336898804, -0.0354468859732151, 0.024333074688911438, 0.29699572920799255, -0.14923277497291565, 0.027141481637954712, -0.14864784479141235, 0.0231119766831398, 0.0014865003759041429, 0.30612289905548096, -0.17507095634937286, -0.023623133078217506, 0.00512909609824419, -0.04354524984955788, 0.0582999549806118, 0.10792993009090424, 0.1498747169971466, -0.0836498886346817, 1.1434149742126465, 0.0010905645322054625, 0.021283984184265137, 0.002540655666962266, -0.28848427534103394, -0.09457950294017792, -0.2347230315208435, -0.1398199498653412, -0.17354357242584229, -0.3198709487915039, 0.1909925937652588]} +{"t": 9.3407, "q": [-0.14676445722579956, -0.03549801930785179, 0.02435985766351223, 0.29695311188697815, -0.14923690259456635, 0.02712041698396206, -0.14864784479141235, 0.023069366812705994, 0.0014731085393577814, 0.3060973286628723, -0.17507095634937286, -0.023623133078217506, 0.005329974461346865, -0.042784955352544785, 0.05881829932332039, 0.10761833935976028, 0.14866431057453156, -0.0836019515991211, 1.143474817276001, 0.0011145329335704446, 0.02123604714870453, 0.002552639925852418, -0.28366661071777344, -0.09302155673503876, -0.23473502695560455, -0.14121012389659882, -0.17452627420425415, -0.3239935338497162, 0.1909925937652588]} +{"t": 9.3575, "q": [-0.14678150415420532, -0.035574719309806824, 0.0243732500821352, 0.29690197110176086, -0.14922422170639038, 0.02714141458272934, -0.14865636825561523, 0.023018233478069305, 0.0014998923288658261, 0.30607178807258606, -0.17507095634937286, -0.023623133078217506, 0.005437109619379044, -0.04189695790410042, 0.05940967798233032, 0.10767826437950134, 0.14766962826251984, -0.08356600254774094, 1.1435227394104004, 0.0010905645322054625, 0.021260015666484833, 0.002552639925852418, -0.2824082672595978, -0.09160741418600082, -0.23473502695560455, -0.14369085431098938, -0.17480191588401794, -0.33193907141685486, 0.19096863269805908]} +{"t": 9.3744, "q": [-0.14677298069000244, -0.03560880571603775, 0.02438664250075817, 0.29686787724494934, -0.14923690259456635, 0.02712041698396206, -0.14865636825561523, 0.02298414520919323, 0.0015400679549202323, 0.30608031153678894, -0.17507095634937286, -0.023623133078217506, 0.005410325713455677, -0.0412127859890461, 0.059832099825143814, 0.1076902449131012, 0.14699850976467133, -0.08354203402996063, 1.1436545848846436, 0.0011025486746802926, 0.021260015666484833, 0.00256462418474257, -0.28288763761520386, -0.09072058647871017, -0.2346750944852829, -0.14693859219551086, -0.17492175102233887, -0.33977675437927246, 0.19094465672969818]} +{"t": 9.3911, "q": [-0.1467474102973938, -0.03560028597712517, 0.024400033056735992, 0.29681676626205444, -0.14924536645412445, 0.027106422930955887, -0.14863932132720947, 0.022967100143432617, 0.0015400679549202323, 0.30607178807258606, -0.17507529258728027, -0.023630235344171524, 0.005263015162199736, -0.0408068522810936, 0.06007496267557144, 0.10763032734394073, 0.14662699401378632, -0.08350608497858047, 1.1437264680862427, 0.0011145329335704446, 0.021260015666484833, 0.002600576961413026, -0.28341493010520935, -0.08978581428527832, -0.23538216948509216, -0.15200790762901306, -0.174909770488739, -0.34611642360687256, 0.19082482159137726]} +{"t": 9.4079, "q": [-0.14672183990478516, -0.0355406291782856, 0.024400033056735992, 0.2967826724052429, -0.14925815165042877, 0.027099484577775, -0.14863932132720947, 0.023026755079627037, 0.0015400679549202323, 0.30607178807258606, -0.17507529258728027, -0.023630235344171524, 0.005062136333435774, -0.04057399556040764, 0.06019716337323189, 0.10763032734394073, 0.14665096998214722, -0.08344615995883942, 1.1438463926315308, 0.0011145329335704446, 0.021319936960935593, 0.00264851376414299, -0.2866027355194092, -0.08907874673604965, -0.23728765547275543, -0.15728096663951874, -0.174909770488739, -0.35335487127304077, 0.19066902995109558]} +{"t": 9.4246, "q": [-0.1466962844133377, -0.035463932901620865, 0.02435985766351223, 0.29677414894104004, -0.14923690259456635, 0.02712041698396206, -0.1486222743988037, 0.023069366812705994, 0.0014998923288658261, 0.3060547411441803, -0.1750796139240265, -0.02363733761012554, 0.0051424880512058735, -0.040431685745716095, 0.06023337319493294, 0.10749849677085876, 0.14659103751182556, -0.08343417942523956, 1.144050121307373, 0.0011265171924605966, 0.021343905478715897, 0.0027204190846532583, -0.2914204001426697, -0.08873120695352554, -0.23966053128242493, -0.16480706632137299, -0.1748857945203781, -0.35897547006607056, 0.1904173493385315]} +{"t": 9.4414, "q": [-0.14658549427986145, -0.03537870943546295, 0.024266114458441734, 0.29676562547683716, -0.14923277497291565, 0.027141481637954712, -0.1485796719789505, 0.023146064952015877, 0.0014329327968880534, 0.30608031153678894, -0.17510131001472473, -0.02367286942899227, 0.0051424880512058735, -0.040237318724393845, 0.06024768948554993, 0.10749849677085876, 0.1465790569782257, -0.08343417942523956, 1.1441938877105713, 0.0011385014513507485, 0.021379858255386353, 0.0027563718613237143, -0.29689720273017883, -0.08850350230932236, -0.24287231266498566, -0.1732439547777176, -0.1748857945203781, -0.3644043505191803, 0.19017766416072845]} +{"t": 9.4581, "q": [-0.14627869427204132, -0.0353105328977108, 0.02417237125337124, 0.2967911958694458, -0.14922010898590088, 0.027162471786141396, -0.14849445223808289, 0.02323128655552864, 0.0013391895918175578, 0.30608031153678894, -0.17511840164661407, -0.023672975599765778, 0.005222839303314686, -0.0408765934407711, 0.05983613803982735, 0.10758239030838013, 0.14666295051574707, -0.08338624238967896, 1.1443496942520142, 0.0011145329335704446, 0.021391842514276505, 0.0027563718613237143, -0.30226612091064453, -0.0881919115781784, -0.24637170135974884, -0.18214823305606842, -0.17489778995513916, -0.3703964352607727, 0.18998591601848602]} +{"t": 9.4749, "q": [-0.14595486223697662, -0.0353105328977108, 0.02405184507369995, 0.2967997193336487, -0.1492285579442978, 0.027148477733135223, -0.14848592877388, 0.023256853222846985, 0.0012588382232934237, 0.30603769421577454, -0.17511430382728577, -0.023694178089499474, 0.005196055397391319, -0.0420495830476284, 0.05910805985331535, 0.10775016993284225, 0.1468307226896286, -0.08338624238967896, 1.1446971893310547, 0.0010905645322054625, 0.02142779529094696, 0.0027563718613237143, -0.3078627586364746, -0.08803611993789673, -0.2501707077026367, -0.18990203738212585, -0.17484985291957855, -0.37727540731430054, 0.18957845866680145]} +{"t": 9.4916, "q": [-0.14546909928321838, -0.035336099565029144, 0.02405184507369995, 0.29680824279785156, -0.14922010898590088, 0.027162471786141396, -0.14848592877388, 0.023239808157086372, 0.0012454462703317404, 0.30597802996635437, -0.17511430382728577, -0.023694178089499474, 0.00512909609824419, -0.043419066816568375, 0.05822431668639183, 0.10794191807508469, 0.1473580300807953, -0.0833263173699379, 1.1451046466827393, 0.0011265171924605966, 0.021451763808727264, 0.0027683561202138662, -0.3145259916782379, -0.08782040327787399, -0.25623470544815063, -0.19744011759757996, -0.17455023527145386, -0.3833993375301361, 0.1880205124616623]} +{"t": 9.5085, "q": [-0.1446850597858429, -0.03542984277009964, 0.024105412885546684, 0.2968338131904602, -0.14929649233818054, 0.027078693732619286, -0.14848592877388, 0.023154588416218758, 0.0013525814283639193, 0.3059609830379486, -0.17511430382728577, -0.023694178089499474, 0.004553244449198246, -0.04438209533691406, 0.057620491832494736, 0.10818160325288773, 0.14759771525859833, -0.08331433683633804, 1.1455001831054688, 0.0011265171924605966, 0.021535653620958328, 0.0028282771818339825, -0.3218962848186493, -0.08765262365341187, -0.26253843307495117, -0.20563732087612152, -0.1742146760225296, -0.38677889108657837, 0.18489262461662292]} +{"t": 9.5254, "q": [-0.1437646746635437, -0.03554915264248848, 0.024212546646595, 0.29681676626205444, -0.149399071931839, 0.02706541307270527, -0.14846888184547424, 0.023060845211148262, 0.0015534599078819156, 0.3059524595737457, -0.17511840164661407, -0.023672975599765778, 0.003923825453966856, -0.044931866228580475, 0.057246387004852295, 0.10837335139513016, 0.14769358932971954, -0.08333830535411835, 1.1460514068603516, 0.0011385014513507485, 0.021559620276093483, 0.0029361352790147066, -0.3293265104293823, -0.0872451588511467, -0.27050793170928955, -0.2129836529493332, -0.17402292788028717, -0.390697717666626, 0.18124942481517792]} +{"t": 9.5422, "q": [-0.14292950928211212, -0.035702548921108246, 0.024319682270288467, 0.29677414894104004, -0.14954784512519836, 0.02693297155201435, -0.14795754849910736, 0.022941535338759422, 0.0017141626449301839, 0.3059609830379486, -0.17510107159614563, -0.023644564673304558, 0.003990784753113985, -0.04536107927560806, 0.05695950239896774, 0.10836136341094971, 0.14786137640476227, -0.08330234885215759, 1.1472618579864502, 0.0011145329335704446, 0.021583588793873787, 0.002984072081744671, -0.3344078063964844, -0.08631038665771484, -0.28002339601516724, -0.21980267763137817, -0.1739150732755661, -0.3951798379421234, 0.177582249045372]} +{"t": 9.5589, "q": [-0.14237557351589203, -0.03586447238922119, 0.0243732500821352, 0.2968423366546631, -0.1497090756893158, 0.026751402765512466, -0.14747178554534912, 0.02273700386285782, 0.0017677302239462733, 0.3060462176799774, -0.17509673535823822, -0.02363746240735054, 0.003990784753113985, -0.04566369950771332, 0.056634336709976196, 0.10800183564424515, 0.14806510508060455, -0.0833263173699379, 1.1489876508712769, 0.0011265171924605966, 0.02154763787984848, 0.003043993143364787, -0.3390936553478241, -0.08296678960323334, -0.289419025182724, -0.2260105013847351, -0.17349563539028168, -0.3990267515182495, 0.1730402261018753]} +{"t": 9.5758, "q": [-0.14194945991039276, -0.036000825464725494, 0.024574128910899162, 0.29685086011886597, -0.15007269382476807, 0.02616356499493122, -0.14719907939434052, 0.02261769399046898, 0.001941824913956225, 0.30613142251968384, -0.17506638169288635, -0.023587726056575775, 0.0038568659219890833, -0.04580886289477348, 0.05635553225874901, 0.1079898551106453, 0.14816097915172577, -0.0833263173699379, 1.1500900983810425, 0.0011025486746802926, 0.021511685103178024, 0.003032008884474635, -0.34276083111763, -0.07963517308235168, -0.2981555461883545, -0.23109181225299835, -0.17215339839458466, -0.4022505283355713, 0.16908542811870575]} +{"t": 9.5926, "q": [-0.1417875438928604, -0.036060478538274765, 0.024989277124404907, 0.29690197110176086, -0.1502082645893097, 0.025981787592172623, -0.1471138596534729, 0.022532472386956215, 0.002356973709538579, 0.3062422275543213, -0.17497555911540985, -0.023466819897294044, 0.0034551091957837343, -0.04585530236363411, 0.05621452257037163, 0.10819358378648758, 0.14822089672088623, -0.08331433683633804, 1.1508331298828125, 0.0011025486746802926, 0.021499700844287872, 0.003032008884474635, -0.34487006068229675, -0.07606387883424759, -0.30607712268829346, -0.23406390845775604, -0.16987639665603638, -0.40545031428337097, 0.16481904685497284]} +{"t": 9.6093, "q": [-0.1417960673570633, -0.03607752174139023, 0.025404425337910652, 0.29695311188697815, -0.15036465227603912, 0.02572283148765564, -0.14713943004608154, 0.022532472386956215, 0.0029328251257538795, 0.3062933385372162, -0.17481981217861176, -0.023253517225384712, 0.0034149333368986845, -0.04584766551852226, 0.05622870847582817, 0.10820557177066803, 0.14811304211616516, -0.08333830535411835, 1.1513125896453857, 0.0010905645322054625, 0.021463748067617416, 0.003043993143364787, -0.3448820412158966, -0.07038335502147675, -0.316575288772583, -0.23643678426742554, -0.16685636341571808, -0.408218652009964, 0.16021710634231567]} +{"t": 9.6261, "q": [-0.14200910925865173, -0.03611161187291145, 0.02569904737174511, 0.29696163535118103, -0.15049980580806732, 0.025484807789325714, -0.14722464978694916, 0.022540995851159096, 0.0034015413839370012, 0.30631890892982483, -0.17469841241836548, -0.023054588586091995, 0.0034015413839370012, -0.045742277055978775, 0.0562969408929348, 0.10818160325288773, 0.14801716804504395, -0.0833263173699379, 1.1513365507125854, 0.0011025486746802926, 0.02141581103205681, 0.003043993143364787, -0.3446303606033325, -0.06349242478609085, -0.32692965865135193, -0.23803068697452545, -0.16353674232959747, -0.4106874167919159, 0.1556151658296585]} +{"t": 9.6428, "q": [-0.14204320311546326, -0.0361371785402298, 0.026154372841119766, 0.29696163535118103, -0.1505758911371231, 0.025358833372592926, -0.14736101031303406, 0.02255803905427456, 0.003990784753113985, 0.30631038546562195, -0.17452159523963928, -0.022876542061567307, 0.0034149333368986845, -0.045606665313243866, 0.05639391019940376, 0.10820557177066803, 0.14792129397392273, -0.08330234885215759, 1.1514203548431396, 0.0010785802733153105, 0.021343905478715897, 0.003055977402254939, -0.3428327441215515, -0.0571887232363224, -0.336672842502594, -0.23851005733013153, -0.16074441373348236, -0.41469013690948486, 0.15110909938812256]} +{"t": 9.6595, "q": [-0.14203467965126038, -0.036120135337114334, 0.026797182857990265, 0.29696163535118103, -0.1505843549966812, 0.025344830006361008, -0.1474377065896988, 0.022592127323150635, 0.00483447453007102, 0.306378573179245, -0.17435847222805023, -0.022720137611031532, 0.0031872710678726435, -0.04526015371084213, 0.05663653835654259, 0.10840930044651031, 0.1478014439344406, -0.08333830535411835, 1.1516600847244263, 0.0010905645322054625, 0.02129596844315529, 0.003043993143364787, -0.3359537720680237, -0.05183177441358566, -0.34554117918014526, -0.2379467934370041, -0.15737684071063995, -0.41853708028793335, 0.14819693565368652]} +{"t": 9.6763, "q": [-0.14218808710575104, -0.03608604520559311, 0.027480170130729675, 0.2969190180301666, -0.1506352722644806, 0.02528897300362587, -0.1473950892686844, 0.022651782259345055, 0.005637987982481718, 0.3064297139644623, -0.17398345470428467, -0.02259155549108982, 0.002986392704769969, -0.0449213832616806, 0.05685567110776901, 0.10849319398403168, 0.14753779768943787, -0.0833502858877182, 1.1518638134002686, 0.0010905645322054625, 0.021283984184265137, 0.003032008884474635, -0.32827189564704895, -0.04580370709300041, -0.3555719554424286, -0.23788687586784363, -0.15569905936717987, -0.4207182228565216, 0.14536865055561066]} +{"t": 9.693, "q": [-0.1422988623380661, -0.03602639213204384, 0.028149764984846115, 0.2968764007091522, -0.15063516795635223, 0.02527490444481373, -0.147292822599411, 0.022762570530176163, 0.006414717994630337, 0.30659162998199463, -0.17351508140563965, -0.022505009546875954, 0.002691771136596799, -0.044379349797964096, 0.05720628425478935, 0.10846922546625137, 0.14727413654327393, -0.0833502858877182, 1.1519477367401123, 0.0010785802733153105, 0.021271999925374985, 0.003043993143364787, -0.3200746774673462, -0.038792937994003296, -0.3664296567440033, -0.2376951277256012, -0.15422499179840088, -0.42305514216423035, 0.14087456464767456]} +{"t": 9.7119, "q": [-0.14263123273849487, -0.03595821559429169, 0.02906041406095028, 0.29681676626205444, -0.1506563127040863, 0.025239910930395126, -0.14726726710796356, 0.022839268669486046, 0.007338759023696184, 0.3068728446960449, -0.17305520176887512, -0.022418512031435966, 0.002316797850653529, -0.04377740994095802, 0.05756790563464165, 0.1083134263753891, 0.14691461622714996, -0.08336227387189865, 1.1520435810089111, 0.0010785802733153105, 0.02123604714870453, 0.003032008884474635, -0.3112542927265167, -0.032585106790065765, -0.3766881823539734, -0.2353462129831314, -0.15320633351802826, -0.4253920614719391, 0.13508619368076324]} +{"t": 9.7287, "q": [-0.14286984503269196, -0.035872992128133774, 0.02975679188966751, 0.29677414894104004, -0.15065208077430725, 0.025246908888220787, -0.14726726710796356, 0.02287335693836212, 0.00814227294176817, 0.3070603311061859, -0.17259947955608368, -0.022310808300971985, 0.002048959955573082, -0.04299486055970192, 0.05807305499911308, 0.10791794955730438, 0.14666295051574707, -0.08338624238967896, 1.1520435810089111, 0.0010546118719503284, 0.02124803140759468, 0.003032008884474635, -0.30171486735343933, -0.027300065383315086, -0.3859160244464874, -0.23364445567131042, -0.15241537988185883, -0.4277050197124481, 0.12988503277301788]} +{"t": 9.7454, "q": [-0.1429806351661682, -0.03580481559038162, 0.030292468145489693, 0.29677414894104004, -0.15063506364822388, 0.025260845199227333, -0.14731839299201965, 0.022950056940317154, 0.00865116436034441, 0.30722224712371826, -0.17228823900222778, -0.0221753790974617, 0.0018614735454320908, -0.042475562542676926, 0.05841740593314171, 0.10742659866809845, 0.14656707644462585, -0.08339822292327881, 1.1520795822143555, 0.0010905645322054625, 0.021260015666484833, 0.003032008884474635, -0.29260683059692383, -0.021559620276093483, -0.39661794900894165, -0.2319786548614502, -0.151900053024292, -0.4295026361942291, 0.12652945518493652]} +{"t": 9.7622, "q": [-0.1429891586303711, -0.03579629212617874, 0.030520129948854446, 0.2967997193336487, -0.15062661468982697, 0.025274846702814102, -0.14735248684883118, 0.022958578541874886, 0.009039529599249363, 0.3072819113731384, -0.17207923531532288, -0.02206859551370144, 0.0015802436973899603, -0.041851017624139786, 0.05882043391466141, 0.10707905143499374, 0.14654310047626495, -0.08342219144105911, 1.15213942527771, 0.0011025486746802926, 0.02123604714870453, 0.003008040599524975, -0.2838703393936157, -0.017017599195241928, -0.4056181013584137, -0.23097197711467743, -0.15056981146335602, -0.43104860186576843, 0.12316188216209412]} +{"t": 9.7789, "q": [-0.14287836849689484, -0.03583890572190285, 0.030707616358995438, 0.29685086011886597, -0.15062248706817627, 0.02529590204358101, -0.1474377065896988, 0.022967100143432617, 0.009347543120384216, 0.30731600522994995, -0.17201510071754456, -0.022004764527082443, 0.0012454462703317404, -0.04121964052319527, 0.05918128788471222, 0.10693524032831192, 0.1464831829071045, -0.08342219144105911, 1.1522473096847534, 0.0011025486746802926, 0.021271999925374985, 0.003032008884474635, -0.27624836564064026, -0.014285196550190449, -0.41212552785873413, -0.23000125586986542, -0.14757375419139862, -0.4331458508968353, 0.11980629712343216]} +{"t": 9.7957, "q": [-0.14272497594356537, -0.03583890572190285, 0.030841534957289696, 0.2968764007091522, -0.15060970187187195, 0.025302842259407043, -0.14762519299983978, 0.022958578541874886, 0.009575205855071545, 0.3072904348373413, -0.17195095121860504, -0.021940916776657104, 0.0011249192757532, -0.040560875087976456, 0.059309765696525574, 0.10693524032831192, 0.14635135233402252, -0.08341021090745926, 1.1522712707519531, 0.0011145329335704446, 0.021283984184265137, 0.003032008884474635, -0.268494576215744, -0.012655341997742653, -0.4170750081539154, -0.2295578271150589, -0.143511101603508, -0.4370167553424835, 0.11621103435754776]} +{"t": 9.8125, "q": [-0.14254601299762726, -0.03583890572190285, 0.030841534957289696, 0.2968849241733551, -0.15058857202529907, 0.025337833911180496, -0.14770188927650452, 0.02298414520919323, 0.009601988829672337, 0.3072819113731384, -0.171951025724411, -0.02195504680275917, 0.001232054433785379, -0.04005900025367737, 0.05942942947149277, 0.10668357461690903, 0.14614762365818024, -0.08343417942523956, 1.1522833108901978, 0.0011025486746802926, 0.021271999925374985, 0.003043993143364787, -0.2613280117511749, -0.011229218915104866, -0.4214732050895691, -0.2292822003364563, -0.14001169800758362, -0.4403963088989258, 0.11314307153224945]} +{"t": 9.8292, "q": [-0.14224773645401, -0.0357707254588604, 0.03076118417084217, 0.2968764007091522, -0.15058857202529907, 0.025337833911180496, -0.14787232875823975, 0.023069366812705994, 0.009468070231378078, 0.3071881830692291, -0.17197664082050323, -0.021969281136989594, 0.0016873788554221392, -0.039765868335962296, 0.05959964543581009, 0.10640793293714523, 0.1459558755159378, -0.08344615995883942, 1.1522712707519531, 0.0011145329335704446, 0.021271999925374985, 0.003043993143364787, -0.2545689046382904, -0.0088803106918931, -0.42695000767707825, -0.22929418087005615, -0.13647635281085968, -0.4435601532459259, 0.11083011329174042]} +{"t": 9.846, "q": [-0.141932412981987, -0.03561732918024063, 0.030694223940372467, 0.2968764007091522, -0.15059290826320648, 0.02534489706158638, -0.14800868928432465, 0.023205719888210297, 0.009347543120384216, 0.30705180764198303, -0.172002375125885, -0.022011782974004745, 0.0022632302716374397, -0.03952547535300255, 0.059726666659116745, 0.10633602738380432, 0.1459079384803772, -0.08341021090745926, 1.1523191928863525, 0.0011145329335704446, 0.021271999925374985, 0.003043993143364787, -0.24954752624034882, -0.005572664551436901, -0.4328222870826721, -0.22971363365650177, -0.13497832417488098, -0.4480063021183014, 0.10979947447776794]} +{"t": 9.8627, "q": [-0.14158301055431366, -0.035463932901620865, 0.030613873153924942, 0.29685935378074646, -0.15059290826320648, 0.02534489706158638, -0.14804276823997498, 0.023418772965669632, 0.009293975308537483, 0.3069836497306824, -0.17207938432693481, -0.02209688350558281, 0.002383757382631302, -0.03936001658439636, 0.059833183884620667, 0.1065397635102272, 0.1458839774131775, -0.08341021090745926, 1.1524150371551514, 0.0011025486746802926, 0.021271999925374985, 0.003043993143364787, -0.2470068633556366, -0.0029001825023442507, -0.4370766878128052, -0.23033681511878967, -0.13433118164539337, -0.4517693519592285, 0.10949986428022385]} +{"t": 9.8795, "q": [-0.1412932574748993, -0.03525939956307411, 0.03057369776070118, 0.2968338131904602, -0.15059280395507812, 0.025330837815999985, -0.14819617569446564, 0.023631826043128967, 0.00932075921446085, 0.3067791163921356, -0.17210498452186584, -0.02211109921336174, 0.0024373249616473913, -0.03930792212486267, 0.059811241924762726, 0.10670754313468933, 0.14582405984401703, -0.08339822292327881, 1.1526187658309937, 0.0011025486746802926, 0.021283984184265137, 0.003079945920035243, -0.24602416157722473, -0.0007669904152862728, -0.44025251269340515, -0.23067237436771393, -0.13416339457035065, -0.45668286085128784, 0.10952383279800415]} +{"t": 9.8962, "q": [-0.1410546451807022, -0.035088956356048584, 0.030546914786100388, 0.29681676626205444, -0.15059301257133484, 0.025358956307172775, -0.14817912876605988, 0.023785224184393883, 0.00925379991531372, 0.3066597878932953, -0.1721222996711731, -0.022167710587382317, 0.0027051628567278385, -0.03925628587603569, 0.0597427636384964, 0.10658770054578781, 0.14582405984401703, -0.08336227387189865, 1.1526668071746826, 0.0010785802733153105, 0.02130795270204544, 0.0031398669816553593, -0.24606011807918549, 5.992112710373476e-05, -0.4423137903213501, -0.23097197711467743, -0.1341274529695511, -0.4616802930831909, 0.10967963188886642]} +{"t": 9.913, "q": [-0.14093533158302307, -0.034978169947862625, 0.03043977916240692, 0.2968338131904602, -0.15059301257133484, 0.025358956307172775, -0.1482643485069275, 0.023913055658340454, 0.009173448197543621, 0.30661720037460327, -0.1722422093153, -0.022323627024888992, 0.0030131766106933355, -0.039286740124225616, 0.059686172753572464, 0.10635999590158463, 0.14580008387565613, -0.08336227387189865, 1.152654767036438, 0.0011145329335704446, 0.02135588973760605, 0.003175819758325815, -0.24667130410671234, 5.992112710373476e-05, -0.4429129958152771, -0.23178690671920776, -0.1341274529695511, -0.46539539098739624, 0.11007510870695114]} +{"t": 9.9297, "q": [-0.1407393217086792, -0.03490146994590759, 0.030332643538713455, 0.29685935378074646, -0.15058867633342743, 0.02535189315676689, -0.14822173118591309, 0.024023843929171562, 0.009039529599249363, 0.30662572383880615, -0.1723194420337677, -0.022451119497418404, 0.003441717242822051, -0.03970020264387131, 0.05943848937749863, 0.1062161847949028, 0.14578810334205627, -0.0833742544054985, 1.1527386903762817, 0.0011385014513507485, 0.021379858255386353, 0.003175819758325815, -0.24741433560848236, -0.00017976337403524667, -0.44290101528167725, -0.2326737344264984, -0.13416339457035065, -0.46908655762672424, 0.11072225868701935]} +{"t": 9.9465, "q": [-0.1406455785036087, -0.0348077267408371, 0.030292468145489693, 0.29690197110176086, -0.15058454871177673, 0.025372959673404694, -0.1481620818376541, 0.024117587134242058, 0.008972570300102234, 0.30661720037460327, -0.17234954237937927, -0.022514833137392998, 0.0038970415480434895, -0.0404822863638401, 0.058944251388311386, 0.1062401533126831, 0.14575214684009552, -0.08336227387189865, 1.1527506113052368, 0.0011265171924605966, 0.021391842514276505, 0.0031638354994356632, -0.24780981242656708, -0.00022770027862861753, -0.44269728660583496, -0.233824223279953, -0.1344030797481537, -0.47162720561027527, 0.11146527528762817]} +{"t": 9.9632, "q": [-0.14062853157520294, -0.03476511687040329, 0.030212117359042168, 0.29690197110176086, -0.15056321024894714, 0.02537982352077961, -0.14814503490924835, 0.024143153801560402, 0.008932393975555897, 0.306566059589386, -0.1723623424768448, -0.02252194471657276, 0.00445950124412775, -0.04136214777827263, 0.0584053210914135, 0.10633602738380432, 0.14589595794677734, -0.08336227387189865, 1.1529064178466797, 0.0011145329335704446, 0.021379858255386353, 0.0031638354994356632, -0.2489003688097, -0.0007669904152862728, -0.44242164492607117, -0.23498669266700745, -0.13476261496543884, -0.4731252193450928, 0.11232814192771912]} +{"t": 9.9799, "q": [-0.14067114889621735, -0.03474807366728783, 0.030198724940419197, 0.296893447637558, -0.15055476129055023, 0.02539382502436638, -0.1481279879808426, 0.02413463033735752, 0.008878827095031738, 0.3064723014831543, -0.1723623424768448, -0.02252194471657276, 0.00508892023935914, -0.042543232440948486, 0.057670947164297104, 0.10618023574352264, 0.14609968662261963, -0.0833502858877182, 1.1530262231826782, 0.0011385014513507485, 0.021403826773166656, 0.003175819758325815, -0.2504463493824005, -0.004038684070110321, -0.44089964032173157, -0.2365685999393463, -0.13563746213912964, -0.47438356280326843, 0.11368235945701599]} +{"t": 9.9967, "q": [-0.14068818092346191, -0.034799207001924515, 0.030131764709949493, 0.29696163535118103, -0.1505209505558014, 0.02544981613755226, -0.14809390902519226, 0.02412610873579979, 0.008852043189108372, 0.3064211905002594, -0.1723623424768448, -0.02252194471657276, 0.006066528614610434, -0.04376882687211037, 0.056990619748830795, 0.10573682188987732, 0.14631541073322296, -0.08333830535411835, 1.1529903411865234, 0.0011385014513507485, 0.021379858255386353, 0.003175819758325815, -0.25133317708969116, -0.008113320916891098, -0.43845486640930176, -0.2382703721523285, -0.1362246870994568, -0.47590556740760803, 0.11564777046442032]} +{"t": 10.0135, "q": [-0.14082454144954681, -0.03483329340815544, 0.02990410290658474, 0.2970212996006012, -0.1505124866962433, 0.025463810190558434, -0.14800868928432465, 0.024117587134242058, 0.008624380454421043, 0.3062933385372162, -0.17237508296966553, -0.022514935582876205, 0.007834259420633316, -0.045137565582990646, 0.056234851479530334, 0.10555705428123474, 0.146555095911026, -0.08331433683633804, 1.1530503034591675, 0.0011025486746802926, 0.0213678739964962, 0.0032117723021656275, -0.2518005669116974, -0.011876367032527924, -0.4345240294933319, -0.23868981003761292, -0.1372193843126297, -0.47794288396835327, 0.11835620552301407]} +{"t": 10.0302, "q": [-0.14086715877056122, -0.03495260328054428, 0.029529130086302757, 0.29709798097610474, -0.15051259100437164, 0.025477878749370575, -0.14787232875823975, 0.02401532046496868, 0.008222623728215694, 0.30617403984069824, -0.17238786816596985, -0.02252204902470112, 0.009280583821237087, -0.04692007973790169, 0.05528372898697853, 0.10550911724567413, 0.14689065515995026, -0.08331433683633804, 1.1530382633209229, 0.0011624698527157307, 0.021343905478715897, 0.0032716935966163874, -0.2520282566547394, -0.016334498301148415, -0.4293348789215088, -0.23867782950401306, -0.1384897083044052, -0.48010003566741943, 0.12195147573947906]} +{"t": 10.0471, "q": [-0.1409609019756317, -0.035080436617136, 0.029274683445692062, 0.2972087860107422, -0.15050826966762543, 0.02547081559896469, -0.14769336581230164, 0.02389601245522499, 0.007928002625703812, 0.30598655343055725, -0.17240473628044128, -0.022493841126561165, 0.010981354862451553, -0.048910580575466156, 0.05446363613009453, 0.10555705428123474, 0.14719025790691376, -0.08329036831855774, 1.1530382633209229, 0.0011385014513507485, 0.021271999925374985, 0.0033076461404561996, -0.2519923150539398, -0.02100834622979164, -0.4235225319862366, -0.23822243511676788, -0.14057496190071106, -0.4816579818725586, 0.12632571160793304]} +{"t": 10.0638, "q": [-0.1411483883857727, -0.035165656358003616, 0.029113981872797012, 0.2972428500652313, -0.15050393342971802, 0.02546374313533306, -0.1476166695356369, 0.02375965751707554, 0.007553029339760542, 0.3057734966278076, -0.17242597043514252, -0.022486846894025803, 0.012789260596036911, -0.050602056086063385, 0.053678564727306366, 0.10580872744321823, 0.14754977822303772, -0.08327838033437729, 1.1530503034591675, 0.0011145329335704446, 0.021212078630924225, 0.0033435989171266556, -0.25181254744529724, -0.025382589548826218, -0.4159484803676605, -0.2379707545042038, -0.14357101917266846, -0.48254483938217163, 0.13098758459091187]} +{"t": 10.0806, "q": [-0.14122508466243744, -0.035284966230392456, 0.02906041406095028, 0.29726842045783997, -0.15046186745166779, 0.02556186355650425, -0.1476166695356369, 0.02358069270849228, 0.007311975117772818, 0.30562862753868103, -0.17241740226745605, -0.0224726852029562, 0.01470430102199316, -0.052448853850364685, 0.05305793508887291, 0.10602444410324097, 0.14813700318336487, -0.08327838033437729, 1.1530742645263672, 0.0010905645322054625, 0.02112818881869316, 0.0034274884965270758, -0.2517286539077759, -0.03003246895968914, -0.40615737438201904, -0.23757527768611908, -0.1477774828672409, -0.48309609293937683, 0.13423530757427216]} +{"t": 10.0976, "q": [-0.1413358747959137, -0.03538723289966583, 0.02906041406095028, 0.2972854673862457, -0.15043218433856964, 0.02559679001569748, -0.14762519299983978, 0.023478427901864052, 0.007311975117772818, 0.30544114112854004, -0.17243003845214844, -0.02245153672993183, 0.017342504113912582, -0.0541645810008049, 0.05276356637477875, 0.10625214129686356, 0.1486283540725708, -0.08325441181659698, 1.1531940698623657, 0.0011025486746802926, 0.02112818881869316, 0.003451456781476736, -0.25170469284057617, -0.03398726135492325, -0.39869120717048645, -0.23392009735107422, -0.15446467697620392, -0.48321595788002014, 0.13711151480674744]} +{"t": 10.1143, "q": [-0.14159153401851654, -0.03548949584364891, 0.02906041406095028, 0.29727694392204285, -0.15042805671691895, 0.025617854669690132, -0.14763371646404266, 0.023384684696793556, 0.007271799258887768, 0.3051258325576782, -0.1724299043416977, -0.022423267364501953, 0.02082439698278904, -0.05617973953485489, 0.052436843514442444, 0.10566491633653641, 0.14908376336097717, -0.08318250626325607, 1.1531221866607666, 0.0010905645322054625, 0.021020330488681793, 0.0035353463608771563, -0.25123730301856995, -0.03816975653171539, -0.3908175826072693, -0.22944997251033783, -0.16074441373348236, -0.4832998216152191, 0.14121012389659882]} +{"t": 10.1311, "q": [-0.14171084761619568, -0.035574719309806824, 0.0290738046169281, 0.29717469215393066, -0.15042805671691895, 0.025617854669690132, -0.14768484234809875, 0.023214241489768028, 0.007178056053817272, 0.3050491213798523, -0.1724213808774948, -0.022423217073082924, 0.025953494012355804, -0.05781113728880882, 0.05226653069257736, 0.1044425219297409, 0.14963503181934357, -0.08315853774547577, 1.1530861854553223, 0.0011025486746802926, 0.020984377712011337, 0.003571299137547612, -0.24606011807918549, -0.04262788966298103, -0.38321956992149353, -0.22509969770908356, -0.168222576379776, -0.48335975408554077, 0.14707040786743164]} +{"t": 10.1478, "q": [-0.1418898105621338, -0.03574516251683235, 0.0290738046169281, 0.29709798097610474, -0.15047496557235718, 0.025597121566534042, -0.14770188927650452, 0.023094933480024338, 0.007178056053817272, 0.30502355098724365, -0.17239579558372498, -0.022409001365303993, 0.030479954555630684, -0.05943426862359047, 0.05217413604259491, 0.103220134973526, 0.1501503586769104, -0.08317052572965622, 1.1530503034591675, 0.0010905645322054625, 0.020804615691304207, 0.003571299137547612, -0.239912211894989, -0.04706205427646637, -0.374291330575943, -0.21945513784885406, -0.1778099536895752, -0.48339569568634033, 0.15463246405124664]} +{"t": 10.1645, "q": [-0.14224773645401, -0.03585594892501831, 0.02906041406095028, 0.2970127761363983, -0.15050950646400452, 0.02563958428800106, -0.1477615386247635, 0.022881880402565002, 0.006829866673797369, 0.3048701584339142, -0.1723829209804535, -0.022387759760022163, 0.033359210938215256, -0.06098196655511856, 0.05209202691912651, 0.1023213118314743, 0.15064170956611633, -0.08315853774547577, 1.1530622243881226, 0.0010785802733153105, 0.020792631432414055, 0.003583283396437764, -0.23353660106658936, -0.051352404057979584, -0.36409273743629456, -0.21311548352241516, -0.1872175633907318, -0.48344364762306213, 0.1600852757692337]} +{"t": 10.1813, "q": [-0.14245226979255676, -0.03597525879740715, 0.028993453830480576, 0.2970127761363983, -0.1505100131034851, 0.02570990100502968, -0.147667795419693, 0.022413164377212524, 0.005731731187552214, 0.304955393075943, -0.17236968874931335, -0.022295838221907616, 0.03500641509890556, -0.0626252070069313, 0.05260230228304863, 0.10155432671308517, 0.15108512341976166, -0.08314655721187592, 1.1530861854553223, 0.0011145329335704446, 0.020804615691304207, 0.003595267655327916, -0.2266576588153839, -0.054971642792224884, -0.35415783524513245, -0.20585303008556366, -0.19856663048267365, -0.48344364762306213, 0.16647286713123322]} +{"t": 10.198, "q": [-0.14304029941558838, -0.036307621747255325, 0.028297076001763344, 0.2970298230648041, -0.15069064497947693, 0.025837866589426994, -0.14771893620491028, 0.021927403286099434, 0.004472893197089434, 0.30487868189811707, -0.17242880165576935, -0.022211240604519844, 0.03613133355975151, -0.06384304910898209, 0.05304839089512825, 0.10108693689107895, 0.15150457620620728, -0.08313456922769547, 1.1530861854553223, 0.0010785802733153105, 0.020792631432414055, 0.003583283396437764, -0.21991053223609924, -0.05819539725780487, -0.34482210874557495, -0.19936956465244293, -0.2084416300058365, -0.48346760869026184, 0.17311213910579681]} +{"t": 10.2148, "q": [-0.1435771882534027, -0.0367763377726078, 0.027426602318882942, 0.2970298230648041, -0.1507555991411209, 0.025943847373127937, -0.1477615386247635, 0.021399032324552536, 0.0033881496638059616, 0.30461448431015015, -0.1724626123905182, -0.022168967872858047, 0.036559876054525375, -0.06493569165468216, 0.05336299166083336, 0.10115884244441986, 0.15175624191761017, -0.08313456922769547, 1.153098225593567, 0.0010905645322054625, 0.020744694396853447, 0.003595267655327916, -0.2129596769809723, -0.062126222997903824, -0.33253827691078186, -0.19065703451633453, -0.21891583502292633, -0.48349156975746155, 0.1780616194009781]} +{"t": 10.2316, "q": [-0.1439095437526703, -0.03713426738977432, 0.027131980285048485, 0.2969872057437897, -0.1508595198392868, 0.026113413274288177, -0.14778710901737213, 0.02098996937274933, 0.0029194331727921963, 0.3045037090778351, -0.17252595722675323, -0.022077320143580437, 0.03650630638003349, -0.06580215692520142, 0.05380753055214882, 0.10130265355110168, 0.1520199030637741, -0.08312258869409561, 1.153170108795166, 0.0010785802733153105, 0.020744694396853447, 0.0036192359402775764, -0.20675185322761536, -0.06511029601097107, -0.3220401108264923, -0.1823519766330719, -0.22986942529678345, -0.483455628156662, 0.1829032450914383]} +{"t": 10.2485, "q": [-0.14446347951889038, -0.037398453801870346, 0.02707841247320175, 0.2969275414943695, -0.1510927379131317, 0.026410548016428947, -0.1479319930076599, 0.020708739757537842, 0.002865865593776107, 0.3045378029346466, -0.1725722700357437, -0.021985620260238647, 0.03639917075634003, -0.06653305888175964, 0.05428432673215866, 0.10131464153528214, 0.15223561227321625, -0.08312258869409561, 1.153182029724121, 0.0010426276130601764, 0.02076866291463375, 0.0036312201991677284, -0.2004481554031372, -0.06609300523996353, -0.3131597936153412, -0.17372332513332367, -0.24194952845573425, -0.48346760869026184, 0.18905115127563477]} +{"t": 10.2652, "q": [-0.14557988941669464, -0.03758594021201134, 0.027091804891824722, 0.2969275414943695, -0.15120099484920502, 0.02658717706799507, -0.14787232875823975, 0.02052977681159973, 0.00287925754673779, 0.30452075600624084, -0.1725594699382782, -0.02197851613163948, 0.03627864643931389, -0.06671889871358871, 0.05432770028710365, 0.10121876746416092, 0.15236744284629822, -0.08311060070991516, 1.1532180309295654, 0.0010426276130601764, 0.020792631432414055, 0.0036671729758381844, -0.1946597695350647, -0.06585332006216049, -0.30688005685806274, -0.16659271717071533, -0.25293904542922974, -0.48349156975746155, 0.19462381303310394]} +{"t": 10.282, "q": [-0.1469348967075348, -0.037867169827222824, 0.027118587866425514, 0.29694458842277527, -0.15119315683841705, 0.026685554534196854, -0.14742065966129303, 0.02021445706486702, 0.0028256899677217007, 0.3047593832015991, -0.17253373563289642, -0.02193601429462433, 0.03598402440547943, -0.06684453785419464, 0.054401595145463943, 0.10054764896631241, 0.15258315205574036, -0.08309862017631531, 1.1531940698623657, 0.0010665960144251585, 0.020804615691304207, 0.0037151097785681486, -0.18786472082138062, -0.06582935154438019, -0.299282044172287, -0.16048076748847961, -0.26204708218574524, -0.48346760869026184, 0.198650524020195]} +{"t": 10.2988, "q": [-0.1478041559457779, -0.038037609308958054, 0.02706502191722393, 0.29694458842277527, -0.15117213129997253, 0.026734624058008194, -0.14771893620491028, 0.01997583918273449, 0.002758730435743928, 0.3047338128089905, -0.17242668569087982, -0.021801330149173737, 0.03488588705658913, -0.06692925840616226, 0.05469631403684616, 0.09997240453958511, 0.15293069183826447, -0.08309862017631531, 1.1531580686569214, 0.0010665960144251585, 0.020864536985754967, 0.0037031255196779966, -0.181728795170784, -0.06576942652463913, -0.29143238067626953, -0.1547163426876068, -0.27262914180755615, -0.48349156975746155, 0.20121514797210693]} +{"t": 10.3156, "q": [-0.14849445223808289, -0.038199532777071, 0.02706502191722393, 0.2968849241733551, -0.1511806845664978, 0.026734691113233566, -0.14818765223026276, 0.019830962643027306, 0.0027721223887056112, 0.30465710163116455, -0.17238807678222656, -0.021737584844231606, 0.033694010227918625, -0.06678291410207748, 0.054977186024188995, 0.09967280179262161, 0.15320633351802826, -0.08312258869409561, 1.1531940698623657, 0.0010665960144251585, 0.020924456417560577, 0.0037031255196779966, -0.1766834259033203, -0.0649784728884697, -0.285643994808197, -0.14956313371658325, -0.2793882489204407, -0.483599454164505, 0.20306071639060974]} +{"t": 10.3323, "q": [-0.14896316826343536, -0.03831031918525696, 0.02705162949860096, 0.2968764007091522, -0.15118934214115143, 0.026748817414045334, -0.14846888184547424, 0.019686086103320122, 0.0028122980147600174, 0.3046400547027588, -0.1723579615354538, -0.021673869341611862, 0.03291727975010872, -0.06657853722572327, 0.05515771731734276, 0.09933724254369736, 0.15348197519779205, -0.08313456922769547, 1.1532419919967651, 0.0010785802733153105, 0.020960409194231033, 0.0037031255196779966, -0.17153021693229675, -0.06452307105064392, -0.28159335255622864, -0.14534468948841095, -0.28675854206085205, -0.483683317899704, 0.20407937467098236]} +{"t": 10.3491, "q": [-0.14900577068328857, -0.038404062390327454, 0.02706502191722393, 0.2967997193336487, -0.1512194573879242, 0.026770146563649178, -0.14849445223808289, 0.019575299695134163, 0.0027989062946289778, 0.30457189679145813, -0.17233657836914062, -0.021652577444911003, 0.03259587287902832, -0.06633690744638443, 0.05533517897129059, 0.09908557683229446, 0.15368570387363434, -0.08313456922769547, 1.1532180309295654, 0.0010905645322054625, 0.02099636197090149, 0.0037031255196779966, -0.16791097819805145, -0.06383996456861496, -0.28011927008628845, -0.14227671921253204, -0.29317009449005127, -0.48388707637786865, 0.20443889498710632]} +{"t": 10.3658, "q": [-0.14901429414749146, -0.03843814879655838, 0.02707841247320175, 0.2967571020126343, -0.15130193531513214, 0.02693251706659794, -0.14851148426532745, 0.019583821296691895, 0.002865865593776107, 0.30456337332725525, -0.1723322868347168, -0.021645497530698776, 0.03212715685367584, -0.0659826397895813, 0.05555937811732292, 0.09913351386785507, 0.15394935011863708, -0.08313456922769547, 1.1532659530639648, 0.0011025486746802926, 0.02105628326535225, 0.0037031255196779966, -0.1664249300956726, -0.061766695231199265, -0.2792084813117981, -0.1398199498653412, -0.29559090733528137, -0.4841027855873108, 0.2042950838804245]} +{"t": 10.3826, "q": [-0.1489887237548828, -0.03842110559344292, 0.027105197310447693, 0.29673153162002563, -0.1515510082244873, 0.027061015367507935, -0.14852000772953033, 0.019592342898249626, 0.002959609031677246, 0.30455484986305237, -0.17235344648361206, -0.0216243714094162, 0.031122766435146332, -0.06563576310873032, 0.05578792840242386, 0.09918145090341568, 0.1540931612253189, -0.08320647478103638, 1.153397798538208, 0.0010785802733153105, 0.021152157336473465, 0.0036671729758381844, -0.16683240234851837, -0.060088906437158585, -0.27882498502731323, -0.13952034711837769, -0.29604631662368774, -0.4847019910812378, 0.20336031913757324]} +{"t": 10.3993, "q": [-0.1489035040140152, -0.038404062390327454, 0.027145372703671455, 0.2967144846916199, -0.15165060758590698, 0.02722351811826229, -0.14852853119373322, 0.019626431167125702, 0.003106919815763831, 0.30456337332725525, -0.1723492294549942, -0.021631430834531784, 0.03007819689810276, -0.0654553771018982, 0.05586988478899002, 0.09921739995479584, 0.15415309369564056, -0.08320647478103638, 1.1536134481430054, 0.0010905645322054625, 0.021224062889814377, 0.0036671729758381844, -0.16806676983833313, -0.05903429538011551, -0.27919650077819824, -0.13997575640678406, -0.29579463601112366, -0.48665541410446167, 0.20158664882183075]} +{"t": 10.4161, "q": [-0.14874158799648285, -0.03836997225880623, 0.027158765122294426, 0.29667186737060547, -0.151723712682724, 0.027273299172520638, -0.14847740530967712, 0.019686086103320122, 0.003133703488856554, 0.30461448431015015, -0.17235775291919708, -0.021631469950079918, 0.029033629223704338, -0.06528268754482269, 0.05593755468726158, 0.09912152588367462, 0.15428490936756134, -0.08320647478103638, 1.1538172960281372, 0.0011145329335704446, 0.021260015666484833, 0.0036791572347283363, -0.16908542811870575, -0.05814746022224426, -0.2795320451259613, -0.14184528589248657, -0.2951355278491974, -0.48930394649505615, 0.1997530609369278]} +{"t": 10.4329, "q": [-0.14852000772953033, -0.038293275982141495, 0.027158765122294426, 0.2966463267803192, -0.15176670253276825, 0.027301767840981483, -0.14838366210460663, 0.01980539597570896, 0.0032944062259048223, 0.30466562509536743, -0.1723620444536209, -0.021638551726937294, 0.027962278574705124, -0.06520137935876846, 0.05588966980576515, 0.09934923052787781, 0.15454857051372528, -0.08320647478103638, 1.1540210247039795, 0.0011025486746802926, 0.021271999925374985, 0.0037031255196779966, -0.17137442529201508, -0.05698499083518982, -0.28069451451301575, -0.1476816087961197, -0.29321804642677307, -0.4938579499721527, 0.1974281221628189]} +{"t": 10.4497, "q": [-0.1481279879808426, -0.03818248584866524, 0.02719894051551819, 0.2966463267803192, -0.1517796814441681, 0.027322957292199135, -0.14827287197113037, 0.019958794116973877, 0.0034283252898603678, 0.3048275411128998, -0.17235788702964783, -0.021659739315509796, 0.02690431848168373, -0.06529410928487778, 0.0556902252137661, 0.09945708513259888, 0.15480023622512817, -0.08321846276521683, 1.1547880172729492, 0.0011025486746802926, 0.021403826773166656, 0.0036791572347283363, -0.17796574532985687, -0.05546299368143082, -0.2837984263896942, -0.1546444445848465, -0.2916601002216339, -0.49778875708580017, 0.19579827785491943]} +{"t": 10.4664, "q": [-0.14750587940216064, -0.03808874264359474, 0.027185548096895218, 0.296705961227417, -0.1517796814441681, 0.027322957292199135, -0.147983118891716, 0.020197413861751556, 0.0036827712319791317, 0.305185467004776, -0.17236217856407166, -0.021666821092367172, 0.025953494012355804, -0.06549935042858124, 0.05545353889465332, 0.09944510459899902, 0.15509983897209167, -0.08315853774547577, 1.1554830074310303, 0.0011145329335704446, 0.02141581103205681, 0.0037031255196779966, -0.18518024682998657, -0.053893059492111206, -0.2876933217048645, -0.162733793258667, -0.28982651233673096, -0.5025704503059387, 0.1940126270055771]} +{"t": 10.4832, "q": [-0.14690080285072327, -0.03796091303229332, 0.02722572349011898, 0.29673153162002563, -0.15182659029960632, 0.027302224189043045, -0.14781267940998077, 0.02052977681159973, 0.004298798739910126, 0.3054667115211487, -0.17236225306987762, -0.02168095111846924, 0.025149980559945107, -0.06560898572206497, 0.05513255298137665, 0.09940914809703827, 0.15527960658073425, -0.08319449424743652, 1.1565496921539307, 0.0011385014513507485, 0.021463748067617416, 0.0037031255196779966, -0.19238276779651642, -0.052143365144729614, -0.2921154797077179, -0.17093101143836975, -0.2860754430294037, -0.5066930651664734, 0.19298197329044342]} +{"t": 10.4999, "q": [-0.1463809609413147, -0.03784160315990448, 0.027319466695189476, 0.29677414894104004, -0.1518436074256897, 0.027288297191262245, -0.147667795419693, 0.020845094695687294, 0.004995177034288645, 0.30572235584259033, -0.17235811054706573, -0.02170213870704174, 0.024413425475358963, -0.06560807675123215, 0.05472790077328682, 0.0992773249745369, 0.15539944171905518, -0.08320647478103638, 1.1582034826278687, 0.0011145329335704446, 0.021439779549837112, 0.0037151097785681486, -0.1977277249097824, -0.04975850135087967, -0.29671743512153625, -0.17782193422317505, -0.2816532552242279, -0.5090060234069824, 0.19239474833011627]} +{"t": 10.5166, "q": [-0.14593781530857086, -0.03766263648867607, 0.0275605209171772, 0.2968252897262573, -0.15185639262199402, 0.027281366288661957, -0.14759962260723114, 0.0211859792470932, 0.005664771888405085, 0.306191086769104, -0.1723412275314331, -0.021730346605181694, 0.023248331621289253, -0.06534653156995773, 0.05429212376475334, 0.09939716756343842, 0.1555672287940979, -0.08320647478103638, 1.1597254276275635, 0.0011385014513507485, 0.021451763808727264, 0.0037031255196779966, -0.20259332656860352, -0.046486809849739075, -0.3011995255947113, -0.1841016709804535, -0.27470239996910095, -0.5110073685646057, 0.19184347987174988]} +{"t": 10.5335, "q": [-0.14545205235481262, -0.0374666303396225, 0.0277212243527174, 0.29690197110176086, -0.1518649458885193, 0.027281424030661583, -0.14748883247375488, 0.02142459899187088, 0.0059995693154633045, 0.3063870966434479, -0.17232435941696167, -0.0217585526406765, 0.021239547058939934, -0.06504573673009872, 0.05396455153822899, 0.09966081380844116, 0.15562714636325836, -0.08321846276521683, 1.1609598398208618, 0.0011265171924605966, 0.021451763808727264, 0.0037151097785681486, -0.20771059393882751, -0.04170510545372963, -0.30743134021759033, -0.18881146609783173, -0.2683028280735016, -0.513380229473114, 0.19153188169002533]} +{"t": 10.5502, "q": [-0.14510264992713928, -0.03724505379796028, 0.02774800732731819, 0.29696163535118103, -0.1518818587064743, 0.02725342847406864, -0.14741213619709015, 0.021680261939764023, 0.006066528614610434, 0.30648934841156006, -0.1723286509513855, -0.021765634417533875, 0.018025491386651993, -0.06465522944927216, 0.05363079532980919, 0.09984058141708374, 0.15562714636325836, -0.08324243128299713, 1.162074327468872, 0.0011265171924605966, 0.02141581103205681, 0.0037151097785681486, -0.21216872334480286, -0.03637212514877319, -0.31432226300239563, -0.19119632244110107, -0.2613280117511749, -0.5152977108955383, 0.19144800305366516]} +{"t": 10.5669, "q": [-0.14480437338352203, -0.03707461059093475, 0.02769443951547146, 0.29694458842277527, -0.1518775224685669, 0.027246365323662758, -0.14745475351810455, 0.02184218168258667, 0.005972785409539938, 0.3065063953399658, -0.1723160743713379, -0.021800920367240906, 0.015132841654121876, -0.0641465112566948, 0.05321790277957916, 0.09997240453958511, 0.15562714636325836, -0.08323044329881668, 1.1629372835159302, 0.0010905645322054625, 0.02141581103205681, 0.0037270940374583006, -0.21564415097236633, -0.030595727264881134, -0.3212012052536011, -0.19352127611637115, -0.25178858637809753, -0.5163882970809937, 0.1913161724805832]} +{"t": 10.5837, "q": [-0.14432713389396667, -0.03692973405122757, 0.02769443951547146, 0.2969786822795868, -0.15189041197299957, 0.027253495529294014, -0.14764223992824554, 0.02197001315653324, 0.005972785409539938, 0.3064808249473572, -0.17231614887714386, -0.021815069019794464, 0.01158398948609829, -0.06362096965312958, 0.052926864475011826, 0.09994843602180481, 0.15562714636325836, -0.08319449424743652, 1.1633447408676147, 0.0010905645322054625, 0.021403826773166656, 0.0037151097785681486, -0.21806496381759644, -0.02407630905508995, -0.32779252529144287, -0.19571438431739807, -0.24260865151882172, -0.5172631144523621, 0.19107648730278015]} +{"t": 10.6004, "q": [-0.1438158005475998, -0.03681042790412903, 0.0277212243527174, 0.29695311188697815, -0.15189886093139648, 0.027239501476287842, -0.1478041559457779, 0.022123411297798157, 0.006026353221386671, 0.30640414357185364, -0.1723334640264511, -0.021871652454137802, 0.00814227294176817, -0.06288810074329376, 0.05250364914536476, 0.10002034157514572, 0.15562714636325836, -0.08321846276521683, 1.1640397310256958, 0.0011025486746802926, 0.021391842514276505, 0.0037151097785681486, -0.2193233072757721, -0.01678990013897419, -0.3334490954875946, -0.19686487317085266, -0.23224230110645294, -0.5179103016853333, 0.1907888650894165]} +{"t": 10.6171, "q": [-0.14297211170196533, -0.03669963777065277, 0.02789531834423542, 0.2969275414943695, -0.15191154181957245, 0.02721850387752056, -0.1478467583656311, 0.02225976623594761, 0.006361150648444891, 0.306378573179245, -0.17237192392349243, -0.0219071377068758, 0.005450501572340727, -0.06196686625480652, 0.05216611549258232, 0.10003232955932617, 0.15542341768741608, -0.08324243128299713, 1.1656696796417236, 0.0011025486746802926, 0.021403826773166656, 0.0037151097785681486, -0.21921545267105103, -0.010234528221189976, -0.3388659656047821, -0.1977277249097824, -0.22015021741390228, -0.5184136033058167, 0.19050124287605286]} +{"t": 10.6339, "q": [-0.14229033887386322, -0.03646101802587509, 0.028444387018680573, 0.2968764007091522, -0.15197092294692993, 0.027148650959134102, -0.1478893756866455, 0.022489862516522408, 0.007003961596637964, 0.3063359558582306, -0.1723634898662567, -0.02192123606801033, 0.00354885240085423, -0.060823071748018265, 0.051725246012210846, 0.10005629807710648, 0.15512381494045258, -0.08329036831855774, 1.167599081993103, 0.0010905645322054625, 0.021331921219825745, 0.0037151097785681486, -0.2185203582048416, -0.002061286708340049, -0.34562504291534424, -0.19796741008758545, -0.2075907438993454, -0.5186293125152588, 0.1903694123029709]} +{"t": 10.6506, "q": [-0.14186424016952515, -0.036171264946460724, 0.029100589454174042, 0.29685086011886597, -0.15197515487670898, 0.02714165486395359, -0.14785528182983398, 0.022719958797097206, 0.007713731843978167, 0.30634447932243347, -0.1722790002822876, -0.02203400991857052, 0.002611419651657343, -0.059377625584602356, 0.05088770389556885, 0.10008026659488678, 0.15507587790489197, -0.08330234885215759, 1.1709067821502686, 0.0010905645322054625, 0.021331921219825745, 0.0037151097785681486, -0.21813686192035675, 0.008580705150961876, -0.3552963137626648, -0.19782359898090363, -0.19389277696609497, -0.5186053514480591, 0.19029751420021057]} +{"t": 10.6675, "q": [-0.14148074388504028, -0.03601786866784096, 0.029649656265974045, 0.2968338131904602, -0.15197938680648804, 0.02713465876877308, -0.14777006208896637, 0.022881880402565002, 0.008302975445985794, 0.3064211905002594, -0.17218148708343506, -0.022097252309322357, 0.0024507169146090746, -0.057892996817827225, 0.05012889951467514, 0.10009224712848663, 0.15487214922904968, -0.08331433683633804, 1.1731597185134888, 0.0010905645322054625, 0.021451763808727264, 0.0036911412607878447, -0.21751369535923004, 0.018431738018989563, -0.3648597300052643, -0.1977277249097824, -0.18134529888629913, -0.5185214877128601, 0.19000989198684692]} +{"t": 10.6842, "q": [-0.14107167720794678, -0.035941168665885925, 0.02991749532520771, 0.29686787724494934, -0.1519836038351059, 0.02712765336036682, -0.1477104127407074, 0.022967100143432617, 0.008557421155273914, 0.3064808249473572, -0.17205829918384552, -0.022132139652967453, 0.002316797850653529, -0.05623931810259819, 0.04965521767735481, 0.09954097121953964, 0.15480023622512817, -0.08338624238967896, 1.1744780540466309, 0.0011265171924605966, 0.021463748067617416, 0.0037031255196779966, -0.2129836529493332, 0.027755465358495712, -0.37390783429145813, -0.19268237054347992, -0.16891765594482422, -0.5178983211517334, 0.18980616331100464]} +{"t": 10.701, "q": [-0.1410120278596878, -0.035941168665885925, 0.0301049817353487, 0.29685935378074646, -0.15201319754123688, 0.027078667655587196, -0.14767631888389587, 0.02298414520919323, 0.008758299984037876, 0.3065490126609802, -0.171913743019104, -0.02214573509991169, 0.0021427033934742212, -0.054587963968515396, 0.04952112212777138, 0.09858223795890808, 0.1545965075492859, -0.08342219144105911, 1.1752090454101562, 0.0011385014513507485, 0.021439779549837112, 0.0037031255196779966, -0.206068754196167, 0.035653069615364075, -0.38154178857803345, -0.1834545135498047, -0.15720906853675842, -0.5161126255989075, 0.18985410034656525]} +{"t": 10.7179, "q": [-0.14104612171649933, -0.03591560199856758, 0.030279075726866722, 0.29685935378074646, -0.15200474858283997, 0.02709266170859337, -0.14773598313331604, 0.023018233478069305, 0.008892218582332134, 0.30658310651779175, -0.1716795116662979, -0.022095397114753723, 0.002129311440512538, -0.05262976512312889, 0.04996538907289505, 0.09757556021213531, 0.1537456214427948, -0.08349409699440002, 1.1761438846588135, 0.0011385014513507485, 0.021403826773166656, 0.0037270940374583006, -0.19933362305164337, 0.04376639053225517, -0.3908655047416687, -0.1735915094614029, -0.15033012628555298, -0.5131285786628723, 0.1898900419473648]} +{"t": 10.7347, "q": [-0.14125916361808777, -0.03589003533124924, 0.030292468145489693, 0.2968764007091522, -0.15199175477027893, 0.02707146294414997, -0.14781267940998077, 0.023009711876511574, 0.008852043189108372, 0.30657458305358887, -0.17143277823925018, -0.022094476968050003, 0.0024775005877017975, -0.05084811523556709, 0.05066366493701935, 0.09653293341398239, 0.1527988761663437, -0.08348211646080017, 1.1772823333740234, 0.0011025486746802926, 0.021379858255386353, 0.0036671729758381844, -0.1925145983695984, 0.05036969855427742, -0.3981039822101593, -0.164076030254364, -0.14219282567501068, -0.511127233505249, 0.18983012437820435]} +{"t": 10.7514, "q": [-0.1413358747959137, -0.03589855879545212, 0.03025229275226593, 0.296893447637558, -0.1519830971956253, 0.027057336643338203, -0.14782972633838654, 0.023001190274953842, 0.008691340684890747, 0.30659162998199463, -0.17135177552700043, -0.022058852016925812, 0.00321405497379601, -0.049183569848537445, 0.05161748826503754, 0.0951068103313446, 0.15195997059345245, -0.08348211646080017, 1.1789121627807617, 0.0010785802733153105, 0.021331921219825745, 0.0036671729758381844, -0.1844731718301773, 0.055990301072597504, -0.40401220321655273, -0.15387745201587677, -0.134247288107872, -0.5086584687232971, 0.18992599844932556]} +{"t": 10.7682, "q": [-0.1414296180009842, -0.03593264892697334, 0.030212117359042168, 0.29690197110176086, -0.15197442471981049, 0.02704320102930069, -0.14786380529403687, 0.022967100143432617, 0.008584205061197281, 0.3065575361251831, -0.17129620909690857, -0.022009165957570076, 0.003977392800152302, -0.04735200107097626, 0.052817121148109436, 0.09407617151737213, 0.15078552067279816, -0.08354203402996063, 1.180134654045105, 0.0011025486746802926, 0.021319936960935593, 0.0036791572347283363, -0.17801368236541748, 0.05909421294927597, -0.40730786323547363, -0.14092250168323517, -0.13013669848442078, -0.5059979557991028, 0.1899140179157257]} +{"t": 10.785, "q": [-0.14153188467025757, -0.03605195879936218, 0.03025229275226593, 0.2969360649585724, -0.15196608006954193, 0.027071263641119003, -0.1480257362127304, 0.022881880402565002, 0.00865116436034441, 0.3064552843570709, -0.17125745117664337, -0.021917151287198067, 0.004955001175403595, -0.04527907446026802, 0.054253701120615005, 0.09290171414613724, 0.14926353096961975, -0.08354203402996063, 1.1806139945983887, 0.0011025486746802926, 0.021319936960935593, 0.0036791572347283363, -0.1705714762210846, 0.05899834260344505, -0.4090335965156555, -0.12475578486919403, -0.12587031722068787, -0.5035052299499512, 0.19026155769824982]} +{"t": 10.8017, "q": [-0.14160005748271942, -0.036247964948415756, 0.03023890033364296, 0.2969786822795868, -0.15194928646087646, 0.027113327756524086, -0.1480342447757721, 0.022719958797097206, 0.008704732172191143, 0.3062933385372162, -0.17114590108394623, -0.0217329952865839, 0.00575851509347558, -0.04368831589818001, 0.05544126778841019, 0.0918111503124237, 0.14739398658275604, -0.08354203402996063, 1.180661916732788, 0.0010905645322054625, 0.021152157336473465, 0.0036911412607878447, -0.16290158033370972, 0.05881857872009277, -0.4116820991039276, -0.10749849677085876, -0.12370117008686066, -0.5015398263931274, 0.1903933882713318]} +{"t": 10.8185, "q": [-0.14184719324111938, -0.03645249828696251, 0.03023890033364296, 0.2969360649585724, -0.15195360779762268, 0.02712039090692997, -0.1480342447757721, 0.02256656251847744, 0.008744907565414906, 0.30616551637649536, -0.17109861969947815, -0.021640939638018608, 0.006495069246739149, -0.04247509315609932, 0.05632689967751503, 0.09130781143903732, 0.14580008387565613, -0.08355402201414108, 1.1807458400726318, 0.0010785802733153105, 0.02105628326535225, 0.0036791572347283363, -0.15583087503910065, 0.05848301947116852, -0.41274869441986084, -0.0924103632569313, -0.12172377854585648, -0.49999386072158813, 0.1904173493385315]} +{"t": 10.8352, "q": [-0.14203467965126038, -0.03658885136246681, 0.030198724940419197, 0.296893447637558, -0.15191948413848877, 0.027134185656905174, -0.14805981516838074, 0.02238759770989418, 0.008718123659491539, 0.306003600358963, -0.17105993628501892, -0.02156306430697441, 0.0070307450369000435, -0.04171432554721832, 0.056873586028814316, 0.09123590588569641, 0.14456571638584137, -0.08350608497858047, 1.1807817220687866, 0.0011025486746802926, 0.021044299006462097, 0.0036911412607878447, -0.14848455786705017, 0.05824333429336548, -0.4127007722854614, -0.08084558695554733, -0.1203695610165596, -0.49949052929878235, 0.1905371993780136]} +{"t": 10.8519, "q": [-0.14212842285633087, -0.03674224764108658, 0.03025229275226593, 0.29685086011886597, -0.15191969275474548, 0.027162322774529457, -0.14805981516838074, 0.022242721170186996, 0.008758299984037876, 0.30590131878852844, -0.17107680439949036, -0.021534856408834457, 0.007459285669028759, -0.04053840786218643, 0.0578259602189064, 0.09130781143903732, 0.14370284974575043, -0.08353005349636078, 1.1809015274047852, 0.0010785802733153105, 0.02099636197090149, 0.0036791572347283363, -0.14185728132724762, 0.05811150744557381, -0.4126288592815399, -0.0683460384607315, -0.1197463795542717, -0.4994785487651825, 0.19077688455581665]} +{"t": 10.8687, "q": [-0.1423926055431366, -0.03679338097572327, 0.03025229275226593, 0.2967997193336487, -0.15191979706287384, 0.027176382020115852, -0.14805129170417786, 0.02220863290131092, 0.008825259283185005, 0.30575644969940186, -0.17111076414585114, -0.021520860493183136, 0.007753907702863216, -0.03922082111239433, 0.05879467725753784, 0.09137971699237823, 0.14309164881706238, -0.08354203402996063, 1.1810214519500732, 0.0010665960144251585, 0.021032314747571945, 0.0036671729758381844, -0.1362246870994568, 0.05807555466890335, -0.41247305274009705, -0.05739245563745499, -0.11956661194562912, -0.49949052929878235, 0.19084878265857697]} +{"t": 10.8854, "q": [-0.14274202287197113, -0.03681042790412903, 0.03023890033364296, 0.29673153162002563, -0.15190722048282623, 0.027211440727114677, -0.14801721274852753, 0.022191587835550308, 0.008744907565414906, 0.30567124485969543, -0.17111076414585114, -0.021520860493183136, 0.00814227294176817, -0.038211483508348465, 0.05959155410528183, 0.09134376794099808, 0.14260029792785645, -0.08354203402996063, 1.1811293363571167, 0.0010785802733153105, 0.021044299006462097, 0.0036791572347283363, -0.13004082441329956, 0.05787182226777077, -0.41201767325401306, -0.04821253940463066, -0.1194707378745079, -0.49956244230270386, 0.19084878265857697]} +{"t": 10.9022, "q": [-0.14295506477355957, -0.036784861236810684, 0.030212117359042168, 0.2967400550842285, -0.15186062455177307, 0.0272743608802557, -0.1479405015707016, 0.022191587835550308, 0.008677948266267776, 0.30580759048461914, -0.17109382152557373, -0.021534910425543785, 0.008356543257832527, -0.03753061965107918, 0.060481730848550797, 0.09128384292125702, 0.14220482110977173, -0.08348211646080017, 1.1811293363571167, 0.0010785802733153105, 0.02099636197090149, 0.0036671729758381844, -0.12416855990886688, 0.05766809359192848, -0.41074734926223755, -0.04012318700551987, -0.11996209621429443, -0.499778151512146, 0.19123227894306183]} +{"t": 10.9189, "q": [-0.1431169956922531, -0.036733727902173996, 0.030185332521796227, 0.29673153162002563, -0.15180979669094086, 0.027344288304448128, -0.14795754849910736, 0.022234199568629265, 0.008677948266267776, 0.30589282512664795, -0.17111076414585114, -0.021520860493183136, 0.008236016146838665, -0.037353165447711945, 0.061076272279024124, 0.09131979942321777, 0.14200107753276825, -0.08348211646080017, 1.181213140487671, 0.0010665960144251585, 0.021032314747571945, 0.0036671729758381844, -0.11992613971233368, 0.057560235261917114, -0.4100642204284668, -0.03165033832192421, -0.12021376192569733, -0.4999459385871887, 0.1912921965122223]} +{"t": 10.9357, "q": [-0.1431681215763092, -0.03664850443601608, 0.030185332521796227, 0.2967485785484314, -0.15178020298480988, 0.0273932833224535, -0.14792346954345703, 0.02231942117214203, 0.008637772873044014, 0.3058757781982422, -0.1711193472146988, -0.02153502218425274, 0.008383326232433319, -0.03741573169827461, 0.061562687158584595, 0.09109209477901459, 0.1417134702205658, -0.08349409699440002, 1.1812491416931152, 0.0010785802733153105, 0.02105628326535225, 0.0036671729758381844, -0.1149287223815918, 0.05752428248524666, -0.4078950881958008, -0.024220118299126625, -0.1209927350282669, -0.5000298023223877, 0.1917116492986679]} +{"t": 10.9524, "q": [-0.1432192623615265, -0.036546241492033005, 0.03006480634212494, 0.29667186737060547, -0.15174226462841034, 0.027470329776406288, -0.14788085222244263, 0.022413164377212524, 0.008517245762050152, 0.3058246374130249, -0.17117497324943542, -0.021598823368549347, 0.00873151607811451, -0.0375104583799839, 0.061797186732292175, 0.09042097628116608, 0.1413898915052414, -0.08350608497858047, 1.1812371015548706, 0.0010665960144251585, 0.021092236042022705, 0.0036911412607878447, -0.10927216708660126, 0.05747634544968605, -0.4054383337497711, -0.01738911122083664, -0.12107662856578827, -0.5002574920654297, 0.19202324748039246]} +{"t": 10.9691, "q": [-0.1432192623615265, -0.03656328469514847, 0.02990410290658474, 0.2965269982814789, -0.15168730914592743, 0.02756132185459137, -0.14777006208896637, 0.022413164377212524, 0.008302975445985794, 0.30579906702041626, -0.17136645317077637, -0.021606603637337685, 0.008825259283185005, -0.03760611638426781, 0.06193879246711731, 0.08986970782279968, 0.14123409986495972, -0.08348211646080017, 1.1812491416931152, 0.0010785802733153105, 0.02112818881869316, 0.0037031255196779966, -0.10383132845163345, 0.057440392673015594, -0.4035927653312683, -0.010270480997860432, -0.12106464058160782, -0.500377357006073, 0.19243070483207703]} +{"t": 10.9859, "q": [-0.14323629438877106, -0.036605894565582275, 0.029877319931983948, 0.2962968945503235, -0.15171308815479279, 0.027575580403208733, -0.14782972633838654, 0.022370552644133568, 0.008262800052762032, 0.3056371510028839, -0.17164750397205353, -0.02166418917477131, 0.00906631350517273, -0.03755984082818031, 0.06208845227956772, 0.08937834948301315, 0.14110226929187775, -0.08345814794301987, 1.181344985961914, 0.0011145329335704446, 0.021164141595363617, 0.0037151097785681486, -0.0980549305677414, 0.057452376931905746, -0.4023943245410919, -0.0041345576755702496, -0.12104067206382751, -0.500461220741272, 0.19289809465408325]} +{"t": 11.0026, "q": [-0.14325334131717682, -0.03667407110333443, 0.02990410290658474, 0.2960242033004761, -0.15156514942646027, 0.027820544317364693, -0.14782972633838654, 0.022293854504823685, 0.00832975935190916, 0.3054581880569458, -0.17181788384914398, -0.0217071995139122, 0.009026138111948967, -0.03746870532631874, 0.062248386442661285, 0.08929446339607239, 0.14101837575435638, -0.08348211646080017, 1.1813210248947144, 0.0010665960144251585, 0.02117612585425377, 0.0037031255196779966, -0.09365671873092651, 0.05741642415523529, -0.40163931250572205, 0.0022889869287610054, -0.1209447979927063, -0.500748872756958, 0.1932096779346466]} +{"t": 11.0194, "q": [-0.14327891170978546, -0.03675077110528946, 0.029957670718431473, 0.2957344353199005, -0.1514131873846054, 0.028100622817873955, -0.14777858555316925, 0.02225976623594761, 0.008463677950203419, 0.3053218424320221, -0.17188595235347748, -0.021707450971007347, 0.008865434676408768, -0.037242431193590164, 0.062485795468091965, 0.08929446339607239, 0.14098241925239563, -0.08349409699440002, 1.1814289093017578, 0.0010546118719503284, 0.021164141595363617, 0.0037031255196779966, -0.09016931056976318, 0.057380471378564835, -0.4016513228416443, 0.009431585669517517, -0.12083694338798523, -0.5009645819664001, 0.19337746500968933]} +{"t": 11.0361, "q": [-0.1433044821023941, -0.03679338097572327, 0.029997846111655235, 0.2955128848552704, -0.15131185948848724, 0.028282664716243744, -0.14774450659751892, 0.022251242771744728, 0.008517245762050152, 0.30526217818260193, -0.17192405462265015, -0.02167227491736412, 0.008637772873044014, -0.037006065249443054, 0.06299719214439392, 0.08930644392967224, 0.14097043871879578, -0.08348211646080017, 1.1814647912979126, 0.0011145329335704446, 0.021164141595363617, 0.0037031255196779966, -0.08762865513563156, 0.05735650286078453, -0.40189099311828613, 0.014968297444283962, -0.12065718322992325, -0.5010244846343994, 0.19331753253936768]} +{"t": 11.0529, "q": [-0.14333856105804443, -0.036844514310359955, 0.030024630948901176, 0.29526573419570923, -0.15129515528678894, 0.028338788077235222, -0.14777858555316925, 0.02220863290131092, 0.008624380454421043, 0.3051939904689789, -0.17196637392044067, -0.021630024537444115, 0.008289583027362823, -0.03677834942936897, 0.06338292360305786, 0.08925850689411163, 0.14101837575435638, -0.08339822292327881, 1.1815128326416016, 0.0010905645322054625, 0.021212078630924225, 0.0037151097785681486, -0.08649015426635742, 0.057380471378564835, -0.4014236032962799, 0.01859951764345169, -0.12063321471214294, -0.5011922717094421, 0.19325761497020721]} +{"t": 11.0696, "q": [-0.14347492158412933, -0.03686155751347542, 0.03009158931672573, 0.29489076137542725, -0.15132896602153778, 0.02828279696404934, -0.14778710901737213, 0.02220011129975319, 0.008704732172191143, 0.3051258325576782, -0.17196208238601685, -0.02162294276058674, 0.007820867002010345, -0.03677665814757347, 0.06355927139520645, 0.08887501806020737, 0.14105433225631714, -0.08347012847661972, 1.1816445589065552, 0.0011025486746802926, 0.021271999925374985, 0.0037031255196779966, -0.08652610331773758, 0.05734451860189438, -0.40048885345458984, 0.021152157336473465, -0.12063321471214294, -0.50171959400177, 0.19328159093856812]} +{"t": 11.0865, "q": [-0.1435345709323883, -0.036844514310359955, 0.0301049817353487, 0.29475441575050354, -0.15134164690971375, 0.02826179750263691, -0.14777858555316925, 0.02220863290131092, 0.00873151607811451, 0.305142879486084, -0.17196208238601685, -0.02162294276058674, 0.007834259420633316, -0.0368356890976429, 0.06363214552402496, 0.08832374215126038, 0.14094647765159607, -0.08347012847661972, 1.1816685199737549, 0.0011145329335704446, 0.021283984184265137, 0.0037031255196779966, -0.08719722181558609, 0.05729658156633377, -0.4003450274467468, 0.02244645357131958, -0.1206212267279625, -0.5022229552268982, 0.19329357147216797]} +{"t": 11.1033, "q": [-0.1435771882534027, -0.03682747110724449, 0.03007819689810276, 0.29466065764427185, -0.1514984518289566, 0.02805909886956215, -0.14777858555316925, 0.022234199568629265, 0.00865116436034441, 0.3051258325576782, -0.17199641466140747, -0.021679608151316643, 0.007928002625703812, -0.03694060444831848, 0.06359259784221649, 0.0878923088312149, 0.14100639522075653, -0.08348211646080017, 1.1816805601119995, 0.0011025486746802926, 0.021283984184265137, 0.0036791572347283363, -0.08797619491815567, 0.05729658156633377, -0.40041694045066833, 0.022829949855804443, -0.12050138413906097, -0.5040565133094788, 0.19319769740104675]} +{"t": 11.1201, "q": [-0.14356014132499695, -0.036784861236810684, 0.03007819689810276, 0.2945072650909424, -0.1517183482646942, 0.027709215879440308, -0.14777858555316925, 0.022251242771744728, 0.00866455677896738, 0.30511730909347534, -0.17201349139213562, -0.021693792194128036, 0.007914610207080841, -0.03702333942055702, 0.0635303407907486, 0.08785635232925415, 0.14100639522075653, -0.08347012847661972, 1.1817165613174438, 0.0010785802733153105, 0.021283984184265137, 0.0036791572347283363, -0.08852747082710266, 0.05729658156633377, -0.4005487561225891, 0.02280598133802414, -0.12033360451459885, -0.5052189826965332, 0.193161740899086]} +{"t": 11.1368, "q": [-0.14356866478919983, -0.036725204437971115, 0.030038021504878998, 0.294464647769928, -0.1517946422100067, 0.027611369267106056, -0.1478041559457779, 0.022293854504823685, 0.008637772873044014, 0.3051343560218811, -0.17204345762729645, -0.0217292457818985, 0.007941394113004208, -0.03705329820513725, 0.06352034211158752, 0.08788032084703445, 0.14105433225631714, -0.08348211646080017, 1.1818963289260864, 0.0010905645322054625, 0.021319936960935593, 0.0036791572347283363, -0.09097225219011307, 0.05727261304855347, -0.4005487561225891, 0.02287788689136505, -0.12018979340791702, -0.5060338973999023, 0.1929580122232437]} +{"t": 11.1536, "q": [-0.14356866478919983, -0.03669963777065277, 0.030011238530278206, 0.2944902181625366, -0.15179041028022766, 0.027618374675512314, -0.1478041559457779, 0.022310897707939148, 0.008557421155273914, 0.30515989661216736, -0.1720649003982544, -0.02176465094089508, 0.008169055916368961, -0.03714371845126152, 0.0634346604347229, 0.0878923088312149, 0.14105433225631714, -0.08347012847661972, 1.181956171989441, 0.0010665960144251585, 0.02135588973760605, 0.0036791572347283363, -0.0935848131775856, 0.05729658156633377, -0.400333046913147, 0.022003037855029106, -0.12015384435653687, -0.5068008899688721, 0.19296999275684357]} +{"t": 11.1703, "q": [-0.14350901544094086, -0.03662294149398804, 0.029944278299808502, 0.2945072650909424, -0.1517946422100067, 0.027611369267106056, -0.14782120287418365, 0.0223790742456913, 0.008463677950203419, 0.3051939904689789, -0.17209064960479736, -0.021807152777910233, 0.008517245762050152, -0.03712886944413185, 0.06342574208974838, 0.08797619491815567, 0.14098241925239563, -0.08342219144105911, 1.182088017463684, 0.0010905645322054625, 0.021379858255386353, 0.0036911412607878447, -0.09608951956033707, 0.05729658156633377, -0.39947018027305603, 0.02064882032573223, -0.12015384435653687, -0.5079034566879272, 0.19304190576076508]} +{"t": 11.187, "q": [-0.14338970184326172, -0.03655476123094559, 0.029837142676115036, 0.2946436107158661, -0.15184970200061798, 0.027534445747733116, -0.14782120287418365, 0.02243872918188572, 0.008302975445985794, 0.30520251393318176, -0.17211218178272247, -0.021856704726815224, 0.008744907565414906, -0.03768480569124222, 0.06306906789541245, 0.0881439745426178, 0.14104235172271729, -0.08342219144105911, 1.182255744934082, 0.0010905645322054625, 0.021391842514276505, 0.0037031255196779966, -0.0987020805478096, 0.05729658156633377, -0.3985234200954437, 0.02009754627943039, -0.12021376192569733, -0.5085505843162537, 0.1932336539030075]} +{"t": 11.2038, "q": [-0.14329595863819122, -0.03652067482471466, 0.029649656265974045, 0.29484814405441284, -0.15184104442596436, 0.02752031944692135, -0.14787232875823975, 0.022464295849204063, 0.008169055916368961, 0.30521103739738464, -0.17213355004787445, -0.02187797985970974, 0.009026138111948967, -0.03895462304353714, 0.062263309955596924, 0.08827580511569977, 0.14115020632743835, -0.08341021090745926, 1.1823636293411255, 0.0010665960144251585, 0.021403826773166656, 0.0037270940374583006, -0.10075138509273529, 0.05729658156633377, -0.39714524149894714, 0.019905798137187958, -0.12027368694543839, -0.5090659260749817, 0.19334150850772858]} +{"t": 11.2205, "q": [-0.1432107388973236, -0.0365036316215992, 0.029462169855833054, 0.2950526773929596, -0.15185783803462982, 0.027478255331516266, -0.14787232875823975, 0.022455774247646332, 0.008021745830774307, 0.30520251393318176, -0.17213793098926544, -0.021899208426475525, 0.009360934607684612, -0.04025492072105408, 0.061436522752046585, 0.0884915217757225, 0.1411382257938385, -0.08338624238967896, 1.182531476020813, 0.0010785802733153105, 0.02141581103205681, 0.003775030840188265, -0.10294449329376221, 0.05729658156633377, -0.3952397406101227, 0.019714049994945526, -0.12027368694543839, -0.5094733834266663, 0.19352127611637115]} +{"t": 11.2374, "q": [-0.1430829018354416, -0.036546241492033005, 0.0292345080524683, 0.2954276502132416, -0.15187928080558777, 0.02748546004295349, -0.14792346954345703, 0.0224472526460886, 0.0077672996558249, 0.3052195608615875, -0.1721421480178833, -0.021892158314585686, 0.009843043051660061, -0.041405364871025085, 0.06069616228342056, 0.08871921896934509, 0.141437828540802, -0.0833742544054985, 1.18277108669281, 0.0010905645322054625, 0.02142779529094696, 0.003787015099078417, -0.10507768392562866, 0.057080864906311035, -0.39320242404937744, 0.019546272233128548, -0.1203455924987793, -0.5098808407783508, 0.19389277696609497]} +{"t": 11.2542, "q": [-0.14291246235370636, -0.03658885136246681, 0.029140764847397804, 0.2957429587841034, -0.15189588069915771, 0.027415268123149872, -0.14795754849910736, 0.0223790742456913, 0.007526245433837175, 0.30520251393318176, -0.1721506416797638, -0.021892189979553223, 0.010231408290565014, -0.04240558296442032, 0.06005139276385307, 0.08889897912740707, 0.14182132482528687, -0.0833263173699379, 1.1829029321670532, 0.0010785802733153105, 0.021403826773166656, 0.0038109836168587208, -0.1074385792016983, 0.05697300657629967, -0.3917163908481598, 0.01943841390311718, -0.12044146656990051, -0.5101205110549927, 0.19421635568141937]} +{"t": 11.2709, "q": [-0.1427590548992157, -0.036665551364421844, 0.029100589454174042, 0.29598158597946167, -0.15193000435829163, 0.027401473373174667, -0.14797459542751312, 0.022276809439063072, 0.007378934416919947, 0.30521103739738464, -0.1721377670764923, -0.0218709297478199, 0.010686732828617096, -0.04349648952484131, 0.05933849513530731, 0.08910271525382996, 0.14215688407421112, -0.08329036831855774, 1.1830227375030518, 0.0010905645322054625, 0.02141581103205681, 0.0038349521346390247, -0.11003915965557098, 0.0568651482462883, -0.3904340863227844, 0.019294602796435356, -0.12080098688602448, -0.5104201436042786, 0.19510318338871002]} +{"t": 11.2879, "q": [-0.14265680313110352, -0.03675929456949234, 0.029127372428774834, 0.2961946427822113, -0.15192587673664093, 0.027422530576586723, -0.14796607196331024, 0.022174544632434845, 0.00735215051099658, 0.3052366077899933, -0.17213347554206848, -0.021863849833607674, 0.011115273460745811, -0.04456492140889168, 0.05864817276597023, 0.08915065228939056, 0.1426122784614563, -0.08329036831855774, 1.1831905841827393, 0.0010785802733153105, 0.0213678739964962, 0.003858920419588685, -0.11210044473409653, 0.05685316398739815, -0.3893914520740509, 0.019210712984204292, -0.120920829474926, -0.5105759501457214, 0.19624169170856476]} +{"t": 11.3047, "q": [-0.14268235862255096, -0.03681894764304161, 0.029113981872797012, 0.29635655879974365, -0.15196815133094788, 0.02735254541039467, -0.14791494607925415, 0.022072279825806618, 0.007285191211849451, 0.30526217818260193, -0.17211203277111053, -0.02182844467461109, 0.011744692921638489, -0.045543428510427475, 0.058006323873996735, 0.08937834948301315, 0.14292387664318085, -0.08323044329881668, 1.1833463907241821, 0.0010665960144251585, 0.0213678739964962, 0.003858920419588685, -0.11321497708559036, 0.056889116764068604, -0.3883967697620392, 0.019162775948643684, -0.12106464058160782, -0.5107437372207642, 0.19732026755809784]} +{"t": 11.3215, "q": [-0.14269940555095673, -0.03694678097963333, 0.029140764847397804, 0.29650142788887024, -0.1519768089056015, 0.027366681024432182, -0.14787232875823975, 0.021884791553020477, 0.0071914480067789555, 0.30528774857521057, -0.17207342386245728, -0.02176469936966896, 0.01252142246812582, -0.04662732407450676, 0.0573137030005455, 0.08952216058969498, 0.14331935346126556, -0.08320647478103638, 1.1835261583328247, 0.0011145329335704446, 0.02135588973760605, 0.003882888937368989, -0.11368235945701599, 0.05691308528184891, -0.38693466782569885, 0.019210712984204292, -0.12118448317050934, -0.5108755230903625, 0.19812321662902832]} +{"t": 11.3383, "q": [-0.14272497594356537, -0.0371001772582531, 0.029140764847397804, 0.2965696156024933, -0.15198948979377747, 0.027345681563019753, -0.14787232875823975, 0.0217143502086401, 0.007178056053817272, 0.30530479550361633, -0.17205625772476196, -0.021736357361078262, 0.013030314818024635, -0.047628600150346756, 0.05667417123913765, 0.08960605412721634, 0.14371483027935028, -0.08321846276521683, 1.183729887008667, 0.0011025486746802926, 0.021319936960935593, 0.003882888937368989, -0.11361045390367508, 0.05693705379962921, -0.384154349565506, 0.0195582564920187, -0.12144813686609268, -0.5109474658966064, 0.19856663048267365]} +{"t": 11.3553, "q": [-0.1426653116941452, -0.037262097001075745, 0.029140764847397804, 0.29662075638771057, -0.15198928117752075, 0.02731754444539547, -0.14787232875823975, 0.021560952067375183, 0.007164664100855589, 0.3053133189678192, -0.17200921475887299, -0.02168671227991581, 0.013164233416318893, -0.04850223660469055, 0.05610724166035652, 0.0896899402141571, 0.14409832656383514, -0.08318250626325607, 1.1838617324829102, 0.0010905645322054625, 0.02123604714870453, 0.003894873196259141, -0.11359847337007523, 0.056901101022958755, -0.38059502840042114, 0.019594207406044006, -0.12195147573947906, -0.5109953880310059, 0.19893814623355865]} +{"t": 11.372, "q": [-0.14264827966690063, -0.03740697354078293, 0.029167549684643745, 0.2966548502445221, -0.15199795365333557, 0.027331680059432983, -0.14787232875823975, 0.021399032324552536, 0.007245015352964401, 0.3053814768791199, -0.17195779085159302, -0.02161586284637451, 0.013204408809542656, -0.049293115735054016, 0.05558451637625694, 0.08977383375167847, 0.14446984231472015, -0.08320647478103638, 1.1840415000915527, 0.0011145329335704446, 0.021224062889814377, 0.003930825740098953, -0.11350259929895401, 0.05687713250517845, -0.37658029794692993, 0.019654128700494766, -0.12264656275510788, -0.5110433101654053, 0.1992257535457611]} +{"t": 11.3888, "q": [-0.14264827966690063, -0.03756037354469299, 0.029180940240621567, 0.29668891429901123, -0.1520022749900818, 0.027338743209838867, -0.14785528182983398, 0.021228589117527008, 0.007285191211849451, 0.30539000034332275, -0.17190201580524445, -0.021523775532841682, 0.013150841929018497, -0.05003136023879051, 0.05511407554149628, 0.08980978280305862, 0.14494919776916504, -0.08323044329881668, 1.184185266494751, 0.0010665960144251585, 0.021224062889814377, 0.003930825740098953, -0.11326291412115097, 0.05691308528184891, -0.37158289551734924, 0.019642144441604614, -0.12320981919765472, -0.511127233505249, 0.19932162761688232]} +{"t": 11.4056, "q": [-0.14267383515834808, -0.03772229328751564, 0.02922111563384533, 0.296705961227417, -0.15199795365333557, 0.027331680059432983, -0.14782120287418365, 0.021092236042022705, 0.007338759023696184, 0.3054240942001343, -0.1718333661556244, -0.021410446614027023, 0.013124058023095131, -0.05064166337251663, 0.05471699684858322, 0.08992962539196014, 0.1452607959508896, -0.08315853774547577, 1.1843290328979492, 0.0010426276130601764, 0.02123604714870453, 0.003966778516769409, -0.11293933540582657, 0.056901101022958755, -0.36810746788978577, 0.019750002771615982, -0.1245640367269516, -0.5112470388412476, 0.19953735172748566]} +{"t": 11.4223, "q": [-0.1427079290151596, -0.03782455623149872, 0.029180940240621567, 0.2967144846916199, -0.15200217068195343, 0.027324683964252472, -0.1478041559457779, 0.020972926169633865, 0.007365542463958263, 0.30544114112854004, -0.17175613343715668, -0.02128295600414276, 0.013137449510395527, -0.051018502563238144, 0.054462503641843796, 0.09006145596504211, 0.14552444219589233, -0.08313456922769547, 1.1845448017120361, 0.0010546118719503284, 0.021224062889814377, 0.003966778516769409, -0.11254385858774185, 0.05692506954073906, -0.36601021885871887, 0.019702065736055374, -0.12637364864349365, -0.511354923248291, 0.1995733082294464]} +{"t": 11.4391, "q": [-0.14272497594356537, -0.038037609308958054, 0.029194332659244537, 0.2967144846916199, -0.1520107239484787, 0.027324749156832695, -0.14772745966911316, 0.020802482962608337, 0.00739232636988163, 0.30548375844955444, -0.17163622379302979, -0.02112702839076519, 0.013137449510395527, -0.05119921639561653, 0.05435415357351303, 0.09007343649864197, 0.14564429223537445, -0.08317052572965622, 1.184712529182434, 0.0010546118719503284, 0.021260015666484833, 0.003966778516769409, -0.11176488548517227, 0.05694903805851936, -0.36314600706100464, 0.021212078630924225, -0.1275121569633484, -0.5113788843154907, 0.19953735172748566]} +{"t": 11.4558, "q": [-0.14273349940776825, -0.038199532777071, 0.029207725077867508, 0.29673153162002563, -0.15201927721500397, 0.027324816212058067, -0.14765076339244843, 0.02064056321978569, 0.007445894181728363, 0.3055093288421631, -0.17152896523475647, -0.0209499541670084, 0.013150841929018497, -0.0512896291911602, 0.054295312613248825, 0.09004946798086166, 0.1457281857728958, -0.08318250626325607, 1.1848803758621216, 0.0010785802733153105, 0.021283984184265137, 0.003966778516769409, -0.11072225868701935, 0.05692506954073906, -0.36070120334625244, 0.022770028561353683, -0.12807542085647583, -0.5114148259162903, 0.1995733082294464]} +{"t": 11.4725, "q": [-0.14281871914863586, -0.03838701918721199, 0.02922111563384533, 0.2967485785484314, -0.15202340483665466, 0.027303751558065414, -0.1476166695356369, 0.0204530768096447, 0.007553029339760542, 0.30551785230636597, -0.17140038311481476, -0.020765725523233414, 0.013124058023095131, -0.0512896291911602, 0.054295312613248825, 0.09012137353420258, 0.14576412737369537, -0.08319449424743652, 1.1851320266723633, 0.0011265171924605966, 0.02129596844315529, 0.003978762775659561, -0.10995526611804962, 0.056961022317409515, -0.3592151701450348, 0.02394448220729828, -0.12944161891937256, -0.5114507675170898, 0.19960924983024597]} +{"t": 11.4892, "q": [-0.1428527981042862, -0.038583025336265564, 0.0292345080524683, 0.2967144846916199, -0.15201927721500397, 0.027324816212058067, -0.14759962260723114, 0.020257068797945976, 0.007619988638907671, 0.3055860102176666, -0.17131029069423676, -0.020616993308067322, 0.013083881698548794, -0.05124442279338837, 0.05432473123073578, 0.09013336151838303, 0.1457281857728958, -0.08323044329881668, 1.185455560684204, 0.0010905645322054625, 0.021319936960935593, 0.003966778516769409, -0.10975153744220734, 0.05692506954073906, -0.3585440516471863, 0.02497512474656105, -0.13234180212020874, -0.51143878698349, 0.19965718686580658]} +{"t": 11.506, "q": [-0.14292950928211212, -0.03874494507908821, 0.02926129288971424, 0.2967144846916199, -0.15201495587825775, 0.027317753061652184, -0.1475229263305664, 0.020120713859796524, 0.007660164497792721, 0.30566272139549255, -0.17120732367038727, -0.02044699899852276, 0.013043706305325031, -0.05122935399413109, 0.05433453992009163, 0.09016931056976318, 0.14574016630649567, -0.08324243128299713, 1.1860427856445312, 0.0011025486746802926, 0.02130795270204544, 0.003954794257879257, -0.1095597892999649, 0.05693705379962921, -0.35772913694381714, 0.025778068229556084, -0.13524198532104492, -0.5114627480506897, 0.19966918230056763]} +{"t": 11.5227, "q": [-0.14299768209457397, -0.038830168545246124, 0.02922111563384533, 0.2967144846916199, -0.1520107239484787, 0.027324749156832695, -0.14749735593795776, 0.020052537322044373, 0.007700339891016483, 0.30567124485969543, -0.17117299139499664, -0.020390333607792854, 0.012963354587554932, -0.05123689025640488, 0.05432963743805885, 0.0899895504117012, 0.14571619033813477, -0.08325441181659698, 1.1871693134307861, 0.0011145329335704446, 0.021283984184265137, 0.003954794257879257, -0.10908041894435883, 0.05693705379962921, -0.3564707934856415, 0.02677275985479355, -0.13671603798866272, -0.5114507675170898, 0.1997530609369278]} +{"t": 11.5397, "q": [-0.14301472902297974, -0.038898345082998276, 0.0292345080524683, 0.29672300815582275, -0.1520022749900818, 0.027338743209838867, -0.14747178554534912, 0.01998436078429222, 0.007740515749901533, 0.3056797683238983, -0.17115139961242676, -0.02032664231956005, 0.012789260596036911, -0.05124442279338837, 0.05432473123073578, 0.0899416133761406, 0.14574016630649567, -0.08321846276521683, 1.1881999969482422, 0.0010785802733153105, 0.021224062889814377, 0.003954794257879257, -0.10770223289728165, 0.05692506954073906, -0.3552124500274658, 0.028019119054079056, -0.13750700652599335, -0.5114747285842896, 0.19978901743888855]} +{"t": 11.5565, "q": [-0.14301472902297974, -0.038957998156547546, 0.02926129288971424, 0.296705961227417, -0.15201082825660706, 0.02733881026506424, -0.1474377065896988, 0.0199247058480978, 0.0077672996558249, 0.3056797683238983, -0.17113423347473145, -0.020298300310969353, 0.012534813955426216, -0.05123700201511383, 0.054320305585861206, 0.08989367634057999, 0.1457042098045349, -0.08320647478103638, 1.1889190673828125, 0.0010665960144251585, 0.02118811011314392, 0.003954794257879257, -0.10582070797681808, 0.056901101022958755, -0.35358259081840515, 0.02937333658337593, -0.1377706527709961, -0.5114627480506897, 0.1998009979724884]} +{"t": 11.5733, "q": [-0.14310847222805023, -0.03899208828806877, 0.029274683445692062, 0.29672300815582275, -0.15200650691986084, 0.027331747114658356, -0.1473950892686844, 0.019890617579221725, 0.007807475049048662, 0.30566272139549255, -0.17112135887145996, -0.020277058705687523, 0.012200016528367996, -0.05122935399413109, 0.05433453992009163, 0.08989367634057999, 0.14566825330257416, -0.08324243128299713, 1.1892786026000977, 0.0010426276130601764, 0.021152157336473465, 0.003966778516769409, -0.10390323400497437, 0.056901101022958755, -0.35206058621406555, 0.030727554112672806, -0.13787850737571716, -0.51143878698349, 0.1998249739408493]} +{"t": 11.5901, "q": [-0.143125519156456, -0.0390261746942997, 0.029288075864315033, 0.296705961227417, -0.1520066112279892, 0.02734580636024475, -0.14741213619709015, 0.019848007708787918, 0.007847650907933712, 0.3056797683238983, -0.1711127907037735, -0.02026289701461792, 0.012066097930073738, -0.051169078797101974, 0.05437376722693443, 0.08972589671611786, 0.14562031626701355, -0.08323044329881668, 1.1895661354064941, 0.0010785802733153105, 0.021104220300912857, 0.003954794257879257, -0.10192583501338959, 0.05691308528184891, -0.3512935936450958, 0.031806133687496185, -0.13799835741519928, -0.5114627480506897, 0.19983695447444916]} +{"t": 11.6068, "q": [-0.14315107464790344, -0.039017654955387115, 0.029288075864315033, 0.2966974377632141, -0.1520022749900818, 0.027338743209838867, -0.14741213619709015, 0.01985652931034565, 0.007820867002010345, 0.3056797683238983, -0.17111699283123016, -0.02025584690272808, 0.011945570819079876, -0.05114647373557091, 0.05438847467303276, 0.08953414857387543, 0.14564429223537445, -0.08320647478103638, 1.1898777484893799, 0.0010546118719503284, 0.021092236042022705, 0.003954794257879257, -0.10045177489519119, 0.05685316398739815, -0.3507063686847687, 0.032884713262319565, -0.13826200366020203, -0.5114747285842896, 0.19994480907917023]} diff --git a/Data/G1/think_4.jsonl b/Data/G1/think_4.jsonl new file mode 100644 index 0000000..ef59c1c --- /dev/null +++ b/Data/G1/think_4.jsonl @@ -0,0 +1,820 @@ +{"meta": {"hz": 60.0, "motors": 29}} +{"t": 0.0, "q": [-0.1406029611825943, 0.009422050788998604, -0.0024105412885546684, 0.3148495554924011, -0.17925378680229187, -0.015029064379632473, -0.08526035398244858, -0.022822225466370583, 0.021306505426764488, 0.32130932807922363, -0.2591930031776428, 0.018996741622686386, 0.001982000656425953, 0.00743912672623992, 0.011700872331857681, 0.24854084849357605, 0.2743428945541382, -0.07654324918985367, 0.8269115686416626, -0.007502125110477209, 0.000874848454259336, -0.0031997880432754755, 0.2454848736524582, -0.283474862575531, 0.07740610837936401, 0.7944103479385376, -0.0063156867399811745, 0.0011984225129708648, 0.0024208135437220335]} +{"t": 0.0167, "q": [-0.1403302550315857, 0.009473182260990143, -0.0024105412885546684, 0.3149432837963104, -0.17924943566322327, -0.015021943487226963, -0.08504730463027954, -0.02280518040060997, 0.021306505426764488, 0.3213689625263214, -0.25918877124786377, 0.018989508971571922, 0.0027989062946289778, 0.008696986362338066, 0.012711171992123127, 0.24791766703128815, 0.2721377909183502, -0.07653126120567322, 0.8282777667045593, -0.007981494069099426, 0.000862864195369184, -0.0033196303993463516, 0.24504145979881287, -0.28152143955230713, 0.07704658061265945, 0.7963637709617615, -0.006699182093143463, 0.0012343751732259989, 0.0025047031231224537]} +{"t": 0.0335, "q": [-0.13974224030971527, 0.009566925466060638, -0.0023435817565768957, 0.3149432837963104, -0.179249569773674, -0.015036125667393208, -0.08445927500724792, -0.02256656251847744, 0.021293114870786667, 0.3220507502555847, -0.25918474793434143, 0.019011083990335464, 0.0033747577108442783, 0.009813876822590828, 0.013586721383035183, 0.24694694578647614, 0.2706757187843323, -0.07655522972345352, 0.8296079635620117, -0.008293083868920803, 0.000898816913831979, -0.0034274884965270758, 0.24413065612316132, -0.2794841229915619, 0.07668706029653549, 0.7981613874435425, -0.0068429927341639996, 0.001294296351261437, 0.0024447820615023375]} +{"t": 0.0502, "q": [-0.1395888328552246, 0.009524315595626831, -0.0024775005877017975, 0.31487512588500977, -0.1792452335357666, -0.015029004774987698, -0.08382011950016022, -0.0226773489266634, 0.021119019016623497, 0.3219228982925415, -0.25918063521385193, 0.019018245860934258, 0.003361365757882595, 0.010560388676822186, 0.014305288903415203, 0.24632376432418823, 0.26836276054382324, -0.07702261209487915, 0.8305307626724243, -0.008364989422261715, 0.000898816913831979, -0.003511378075927496, 0.24380707740783691, -0.2772670388221741, 0.07695070654153824, 0.7991440892219543, -0.00701077189296484, 0.001282312092371285, 0.00256462418474257]} +{"t": 0.0669, "q": [-0.139128640294075, 0.00963510386645794, -0.002986392704769969, 0.31501999497413635, -0.17923246324062347, -0.015036015771329403, -0.08295938372612, -0.02261769399046898, 0.020610127598047256, 0.32199960947036743, -0.2591637670993805, 0.01900370791554451, 0.003468500915914774, 0.011555919423699379, 0.015131864696741104, 0.24597622454166412, 0.2650071680545807, -0.07740610837936401, 0.8312618136405945, -0.008460862562060356, 0.0008868326549418271, -0.003571299137547612, 0.24387899041175842, -0.27370771765708923, 0.07727428525686264, 0.8002226948738098, -0.00701077189296484, 0.001270327833481133, 0.00256462418474257]} +{"t": 0.0838, "q": [-0.13796962797641754, 0.009660668671131134, -0.003481892868876457, 0.3151222765445709, -0.17923246324062347, -0.015036015771329403, -0.08150210231542587, -0.02257508412003517, 0.01999410055577755, 0.3219143748283386, -0.25917625427246094, 0.018996616825461388, 0.0033881496638059616, 0.013063385151326656, 0.016422070562839508, 0.24565264582633972, 0.2614838182926178, -0.07799334079027176, 0.8320288062095642, -0.008520783856511116, 0.0009108011145144701, -0.003571299137547612, 0.24391493201255798, -0.2705918252468109, 0.07746603339910507, 0.801181435585022, -0.0070706927217543125, 0.001282312092371285, 0.00264851376414299]} +{"t": 0.1005, "q": [-0.13765431940555573, 0.009652147069573402, -0.0038702578749507666, 0.3151307702064514, -0.17923246324062347, -0.015036015771329403, -0.0809822529554367, -0.02257508412003517, 0.019378073513507843, 0.3218206465244293, -0.2591720223426819, 0.018989384174346924, 0.0034149333368986845, 0.013665181584656239, 0.017344435676932335, 0.24572455883026123, 0.2578166425228119, -0.07929962128400803, 0.8326759338378906, -0.008520783856511116, 0.0009227853151969612, -0.0036192359402775764, 0.24417859315872192, -0.26746395230293274, 0.07762182503938675, 0.8020203113555908, -0.0070946612395346165, 0.001318264752626419, 0.00264851376414299]} +{"t": 0.1172, "q": [-0.1375350058078766, 0.009507272392511368, -0.004004176706075668, 0.3154461085796356, -0.17924509942531586, -0.015014823526144028, -0.08085442334413528, -0.022771092131733894, 0.019217370077967644, 0.32176950573921204, -0.25917625427246094, 0.018996616825461388, 0.0035220684949308634, 0.013889985159039497, 0.018049227073788643, 0.24584439396858215, 0.2543412148952484, -0.08073772490024567, 0.8335148692131042, -0.008556736633181572, 0.0009227853151969612, -0.003595267655327916, 0.244286447763443, -0.2650790810585022, 0.07781357318162918, 0.8026434779167175, -0.0070706927217543125, 0.001330249011516571, 0.0026964505668729544]} +{"t": 0.1339, "q": [-0.1376628428697586, 0.009558403864502907, -0.004178271628916264, 0.31556540727615356, -0.17923246324062347, -0.015036015771329403, -0.0807095468044281, -0.02274552546441555, 0.019016491249203682, 0.32184621691703796, -0.2591720223426819, 0.018989384174346924, 0.0036024199798703194, 0.014046424999833107, 0.018951313570141792, 0.24607209861278534, 0.2508777678012848, -0.08240353316068649, 0.8345574736595154, -0.008520783856511116, 0.0009347695740871131, -0.0036671729758381844, 0.24434636533260345, -0.2628619968891144, 0.07800532132387161, 0.8035063743591309, -0.0070826769806444645, 0.001330249011516571, 0.0027204190846532583]} +{"t": 0.1507, "q": [-0.13762874901294708, 0.009592492133378983, -0.004392541944980621, 0.315676212310791, -0.1792408972978592, -0.015021884813904762, -0.08053058385848999, -0.022711437195539474, 0.01881561428308487, 0.32194846868515015, -0.2591637670993805, 0.01900370791554451, 0.003562244353815913, 0.014225820079445839, 0.019579794257879257, 0.24621590971946716, 0.24879251420497894, -0.08342219144105911, 0.8354203701019287, -0.008520783856511116, 0.0009587380336597562, -0.0036911412607878447, 0.24443025887012482, -0.26137596368789673, 0.07806524634361267, 0.804261326789856, -0.0070826769806444645, 0.001342233270406723, 0.0027084348257631063]} +{"t": 0.1674, "q": [-0.13768839836120605, 0.009583970531821251, -0.004700555466115475, 0.31588923931121826, -0.17923246324062347, -0.015036015771329403, -0.08037718385457993, -0.022668827325105667, 0.018601343035697937, 0.3219655156135559, -0.2591720223426819, 0.018989384174346924, 0.003562244353815913, 0.014322523027658463, 0.020089641213417053, 0.24637170135974884, 0.2472825050354004, -0.0839255303144455, 0.8360075950622559, -0.008520783856511116, 0.0009587380336597562, -0.0036911412607878447, 0.24440628290176392, -0.2602853775024414, 0.07813715189695358, 0.8050763010978699, -0.0070946612395346165, 0.001342233270406723, 0.0027324033435434103]} +{"t": 0.1841, "q": [-0.13769692182540894, 0.009618058800697327, -0.004928217735141516, 0.3159659504890442, -0.1792408972978592, -0.015021884813904762, -0.0802493542432785, -0.022668827325105667, 0.018387073650956154, 0.321956992149353, -0.2591720223426819, 0.018989384174346924, 0.0036425956059247255, 0.014367238618433475, 0.02029922604560852, 0.2464555948972702, 0.24659940600395203, -0.08402140438556671, 0.8363910913467407, -0.00854475237429142, 0.0009707222343422472, -0.0037031255196779966, 0.24447819590568542, -0.25987792015075684, 0.0782090574502945, 0.8056155443191528, -0.0070826769806444645, 0.0013662016717717052, 0.0027563718613237143]} +{"t": 0.2008, "q": [-0.13769692182540894, 0.009601015597581863, -0.005102312192320824, 0.316051185131073, -0.17923668026924133, -0.015028946101665497, -0.08017265051603317, -0.022643260657787323, 0.018266545608639717, 0.321956992149353, -0.2591637670993805, 0.01900370791554451, 0.0037631227169185877, 0.014382055960595608, 0.020413558930158615, 0.2464316189289093, 0.2464316189289093, -0.08405735343694687, 0.8367505669593811, -0.00854475237429142, 0.0009467537747696042, -0.0037031255196779966, 0.24451415240764618, -0.2598419785499573, 0.0782330259680748, 0.806262731552124, -0.0071066454984247684, 0.0013542174128815532, 0.0027324033435434103]} +{"t": 0.2175, "q": [-0.1377139687538147, 0.009618058800697327, -0.005196055397391319, 0.31617048382759094, -0.1792408972978592, -0.015021884813904762, -0.08005334436893463, -0.022643260657787323, 0.01815940998494625, 0.321956992149353, -0.2591720223426819, 0.018989384174346924, 0.003776514669880271, 0.014434856362640858, 0.020417889580130577, 0.2464316189289093, 0.24651551246643066, -0.08398544788360596, 0.8370142579078674, -0.008556736633181572, 0.0009827064350247383, -0.0036911412607878447, 0.24450215697288513, -0.2598899006843567, 0.07817310094833374, 0.8068739175796509, -0.0070946612395346165, 0.0013662016717717052, 0.0026964505668729544]} +{"t": 0.2343, "q": [-0.1376628428697586, 0.009592492133378983, -0.005343366414308548, 0.31621310114860535, -0.17923246324062347, -0.015036015771329403, -0.07992551475763321, -0.02263473905622959, 0.018079059198498726, 0.32198256254196167, -0.2591720223426819, 0.018989384174346924, 0.0037631227169185877, 0.014472588896751404, 0.020412808284163475, 0.2464076578617096, 0.24661138653755188, -0.08390156179666519, 0.8372539281845093, -0.008532768115401268, 0.0009587380336597562, -0.0036911412607878447, 0.2443583458662033, -0.2598899006843567, 0.07816112041473389, 0.8074970841407776, -0.0070946612395346165, 0.0013542174128815532, 0.0027324033435434103]} +{"t": 0.251, "q": [-0.13764579594135284, 0.009609537199139595, -0.005396933760493994, 0.316281259059906, -0.1792408972978592, -0.015021884813904762, -0.07985733449459076, -0.02263473905622959, 0.018012098968029022, 0.32198256254196167, -0.2591720223426819, 0.018989384174346924, 0.0037497307639569044, 0.014525501988828182, 0.020369447767734528, 0.24631178379058838, 0.24662336707115173, -0.08384163677692413, 0.8373497724533081, -0.00854475237429142, 0.0009827064350247383, -0.0036671729758381844, 0.24425049126148224, -0.25990188121795654, 0.07816112041473389, 0.8077727556228638, -0.0070946612395346165, 0.0013662016717717052, 0.0027324033435434103]} +{"t": 0.2677, "q": [-0.13764579594135284, 0.009601015597581863, -0.00546389352530241, 0.31634092330932617, -0.17923246324062347, -0.015036015771329403, -0.07977211475372314, -0.02262621559202671, 0.01795853115618229, 0.3220081329345703, -0.2591720223426819, 0.018989384174346924, 0.003736338810995221, 0.014525577425956726, 0.0203408170491457, 0.24621590971946716, 0.24656344950199127, -0.08387759327888489, 0.8373977541923523, -0.008556736633181572, 0.0009946906939148903, -0.0036911412607878447, 0.24417859315872192, -0.2598899006843567, 0.07816112041473389, 0.8078925609588623, -0.0070946612395346165, 0.0013542174128815532, 0.0027443876024335623]} +{"t": 0.2845, "q": [-0.13764579594135284, 0.009592492133378983, -0.005504068918526173, 0.31634092330932617, -0.17923246324062347, -0.015036015771329403, -0.07976359128952026, -0.02261769399046898, 0.017931748181581497, 0.32199960947036743, -0.2591720223426819, 0.018989384174346924, 0.0037631227169185877, 0.014518018811941147, 0.0203456562012434, 0.24616797268390656, 0.24652749300003052, -0.08391354233026505, 0.8374336957931519, -0.008556736633181572, 0.0009707222343422472, -0.0036671729758381844, 0.24413065612316132, -0.25990188121795654, 0.07817310094833374, 0.8080363869667053, -0.0071066454984247684, 0.0013542174128815532, 0.0027443876024335623]} +{"t": 0.3012, "q": [-0.13763727247714996, 0.009592492133378983, -0.005490677431225777, 0.3163664937019348, -0.17923246324062347, -0.015036015771329403, -0.07972098141908646, -0.02262621559202671, 0.017931748181581497, 0.32198256254196167, -0.25917625427246094, 0.018996616825461388, 0.003776514669880271, 0.014517946168780327, 0.020374279469251633, 0.2461320161819458, 0.24657543003559113, -0.0839255303144455, 0.8374456763267517, -0.00854475237429142, 0.0009827064350247383, -0.0036911412607878447, 0.2440827190876007, -0.25987792015075684, 0.07816112041473389, 0.8081682324409485, -0.0070946612395346165, 0.0013662016717717052, 0.0027443876024335623]} +{"t": 0.3179, "q": [-0.13764579594135284, 0.009566925466060638, -0.005517460871487856, 0.3163835406303406, -0.1792408972978592, -0.015021884813904762, -0.07967837154865265, -0.022660305723547935, 0.017945140600204468, 0.32203370332717896, -0.2591720223426819, 0.018989384174346924, 0.003803298342972994, 0.014487700536847115, 0.020403144881129265, 0.24614399671554565, 0.24657543003559113, -0.08390156179666519, 0.8375175595283508, -0.00854475237429142, 0.0009946906939148903, -0.0036671729758381844, 0.2440827190876007, -0.2599138915538788, 0.07816112041473389, 0.8081802129745483, -0.0071066454984247684, 0.0013662016717717052, 0.0027204190846532583]} +{"t": 0.3347, "q": [-0.13765431940555573, 0.009566925466060638, -0.005517460871487856, 0.3163835406303406, -0.17923668026924133, -0.015028946101665497, -0.0796528086066246, -0.022660305723547935, 0.017931748181581497, 0.3220166563987732, -0.2591637670993805, 0.01900370791554451, 0.003776514669880271, 0.014502721838653088, 0.020431634038686752, 0.24612003564834595, 0.24661138653755188, -0.08387759327888489, 0.8376134634017944, -0.00854475237429142, 0.0009707222343422472, -0.0036911412607878447, 0.24411866068840027, -0.2599138915538788, 0.07816112041473389, 0.808204174041748, -0.0071066454984247684, 0.0013542174128815532, 0.0027324033435434103]} +{"t": 0.3514, "q": [-0.13763727247714996, 0.009541360661387444, -0.005517460871487856, 0.3163835406303406, -0.1792408972978592, -0.015021884813904762, -0.07961871474981308, -0.02268587052822113, 0.017904965206980705, 0.3220081329345703, -0.2591720223426819, 0.018989384174346924, 0.003736338810995221, 0.014525366015732288, 0.02042667753994465, 0.2461559921503067, 0.24658742547035217, -0.08388957381248474, 0.8376254439353943, -0.008556736633181572, 0.0009827064350247383, -0.0036911412607878447, 0.24411866068840027, -0.2599138915538788, 0.07816112041473389, 0.808288037776947, -0.0071066454984247684, 0.0013662016717717052, 0.0027324033435434103]} +{"t": 0.3681, "q": [-0.13762874901294708, 0.009507272392511368, -0.005517460871487856, 0.3163664937019348, -0.1792365461587906, -0.01501474715769291, -0.07961871474981308, -0.022702915593981743, 0.017891572788357735, 0.3220081329345703, -0.2591720223426819, 0.018989384174346924, 0.0037497307639569044, 0.014517833478748798, 0.020421970635652542, 0.24614399671554565, 0.24658742547035217, -0.08387759327888489, 0.8376733660697937, -0.008556736633181572, 0.0009827064350247383, -0.0037270940374583006, 0.24414263665676117, -0.25990188121795654, 0.07816112041473389, 0.8083119988441467, -0.00711862975731492, 0.0013662016717717052, 0.0027324033435434103]} +{"t": 0.3849, "q": [-0.13764579594135284, 0.009524315595626831, -0.005530852824449539, 0.3163664937019348, -0.17923246324062347, -0.015036015771329403, -0.07962723821401596, -0.022711437195539474, 0.017891572788357735, 0.32199960947036743, -0.25916776061058044, 0.018982132896780968, 0.0037899063900113106, 0.01450265385210514, 0.020460249856114388, 0.2461320161819458, 0.24658742547035217, -0.08385362476110458, 0.8376973271369934, -0.008556736633181572, 0.0009946906939148903, -0.0037270940374583006, 0.24414263665676117, -0.25990188121795654, 0.07816112041473389, 0.8083119988441467, -0.0071066454984247684, 0.0013662016717717052, 0.0027324033435434103]} +{"t": 0.4016, "q": [-0.13764579594135284, 0.009524315595626831, -0.005530852824449539, 0.3163664937019348, -0.17923232913017273, -0.015021808445453644, -0.07962723821401596, -0.022711437195539474, 0.017904965206980705, 0.32198256254196167, -0.25916776061058044, 0.018982132896780968, 0.003816690295934677, 0.014510187320411205, 0.020464954897761345, 0.2461080551147461, 0.24659940600395203, -0.08385362476110458, 0.8376853466033936, -0.008568720892071724, 0.0009827064350247383, -0.0036791572347283363, 0.24411866068840027, -0.2598899006843567, 0.07814913243055344, 0.8083239793777466, -0.0071066454984247684, 0.0013542174128815532, 0.0027204190846532583]} +{"t": 0.4183, "q": [-0.13764579594135284, 0.009507272392511368, -0.005530852824449539, 0.31634944677352905, -0.17923668026924133, -0.015028946101665497, -0.07964428514242172, -0.022702915593981743, 0.017878180369734764, 0.32194846868515015, -0.25917625427246094, 0.018996616825461388, 0.003736338810995221, 0.01450260914862156, 0.020479325205087662, 0.24606011807918549, 0.24658742547035217, -0.08388957381248474, 0.8376973271369934, -0.008556736633181572, 0.0009827064350247383, -0.0036911412607878447, 0.24407073855400085, -0.2598899006843567, 0.07817310094833374, 0.8083480000495911, -0.007142598275095224, 0.0013662016717717052, 0.0027324033435434103]} +{"t": 0.4351, "q": [-0.13765431940555573, 0.009507272392511368, -0.005530852824449539, 0.3163323998451233, -0.1792411357164383, -0.015050256624817848, -0.07961871474981308, -0.022702915593981743, 0.017904965206980705, 0.32194846868515015, -0.2591720223426819, 0.018989384174346924, 0.0037899063900113106, 0.01450260914862156, 0.020479325205087662, 0.24601218104362488, 0.24657543003559113, -0.08388957381248474, 0.8376853466033936, -0.008556736633181572, 0.0009827064350247383, -0.0036911412607878447, 0.2440827190876007, -0.2598899006843567, 0.07816112041473389, 0.8083480000495911, -0.007130614016205072, 0.0013542174128815532, 0.0027324033435434103]} +{"t": 0.4519, "q": [-0.13764579594135284, 0.009532837197184563, -0.005530852824449539, 0.3163323998451233, -0.1792408972978592, -0.015021884813904762, -0.07963576167821884, -0.022719958797097206, 0.017864787951111794, 0.3219655156135559, -0.25917625427246094, 0.018996616825461388, 0.003736338810995221, 0.01451772078871727, 0.02046966180205345, 0.24598820507526398, 0.24658742547035217, -0.08388957381248474, 0.8376973271369934, -0.008556736633181572, 0.0009946906939148903, -0.0036911412607878447, 0.2440827190876007, -0.2598899006843567, 0.07817310094833374, 0.8083599805831909, -0.007166566792875528, 0.0013662016717717052, 0.0027324033435434103]} +{"t": 0.4686, "q": [-0.13764579594135284, 0.009507272392511368, -0.005557636730372906, 0.3163323998451233, -0.1792408972978592, -0.015021884813904762, -0.07962723821401596, -0.022711437195539474, 0.01782461255788803, 0.32193994522094727, -0.25917625427246094, 0.018996616825461388, 0.003776514669880271, 0.014517742209136486, 0.02046012505888939, 0.24596424400806427, 0.24657543003559113, -0.08386560529470444, 0.8377093076705933, -0.008532768115401268, 0.0009827064350247383, -0.0036911412607878447, 0.24410668015480042, -0.2598899006843567, 0.07817310094833374, 0.8083599805831909, -0.007166566792875528, 0.0014021543320268393, 0.0027204190846532583]} +{"t": 0.4854, "q": [-0.13764579594135284, 0.0095157939940691, -0.005557636730372906, 0.3163238763809204, -0.17923668026924133, -0.015028946101665497, -0.07962723821401596, -0.022711437195539474, 0.01782461255788803, 0.321956992149353, -0.25917625427246094, 0.018996616825461388, 0.003776514669880271, 0.01454036496579647, 0.020464705303311348, 0.24597622454166412, 0.24658742547035217, -0.08385362476110458, 0.837733268737793, -0.008556736633181572, 0.0009707222343422472, -0.0037031255196779966, 0.24410668015480042, -0.2598899006843567, 0.07816112041473389, 0.8083839416503906, -0.007166566792875528, 0.0013901700731366873, 0.0027324033435434103]} +{"t": 0.5021, "q": [-0.13762874901294708, 0.009549882262945175, -0.005584420636296272, 0.31631535291671753, -0.17922811210155487, -0.01502887811511755, -0.0796101912856102, -0.022702915593981743, 0.01782461255788803, 0.321956992149353, -0.25917625427246094, 0.018996616825461388, 0.003696163184940815, 0.014532831497490406, 0.02045999839901924, 0.24594026803970337, 0.24659940600395203, -0.08388957381248474, 0.837733268737793, -0.00854475237429142, 0.0009827064350247383, -0.0037151097785681486, 0.24410668015480042, -0.2598899006843567, 0.07814913243055344, 0.8083839416503906, -0.007166566792875528, 0.0013781859306618571, 0.0027443876024335623]} +{"t": 0.5188, "q": [-0.13763727247714996, 0.009541360661387444, -0.005584420636296272, 0.31630682945251465, -0.17923668026924133, -0.015028946101665497, -0.07961871474981308, -0.022702915593981743, 0.01782461255788803, 0.32194846868515015, -0.25915953516960144, 0.018996458500623703, 0.003736338810995221, 0.014510209672152996, 0.020455418154597282, 0.24594026803970337, 0.24656344950199127, -0.08387759327888489, 0.837733268737793, -0.008556736633181572, 0.0009707222343422472, -0.0037151097785681486, 0.24414263665676117, -0.2598899006843567, 0.07819706946611404, 0.8084198832511902, -0.007190535310655832, 0.0014021543320268393, 0.0027324033435434103]} +{"t": 0.5356, "q": [-0.1376202255487442, 0.009532837197184563, -0.005584420636296272, 0.31631535291671753, -0.17923232913017273, -0.015021808445453644, -0.07963576167821884, -0.02269439399242401, 0.017838004976511, 0.32194846868515015, -0.2591720223426819, 0.018989384174346924, 0.003736338810995221, 0.01451772078871727, 0.02046966180205345, 0.24591630697250366, 0.24656344950199127, -0.08385362476110458, 0.8377453088760376, -0.008556736633181572, 0.0009587380336597562, -0.0037031255196779966, 0.24415461719036102, -0.2598899006843567, 0.07819706946611404, 0.8084079027175903, -0.007166566792875528, 0.0014021543320268393, 0.0027324033435434103]} +{"t": 0.5523, "q": [-0.13761170208454132, 0.009541360661387444, -0.005584420636296272, 0.31631535291671753, -0.17923246324062347, -0.015036015771329403, -0.0796101912856102, -0.02269439399242401, 0.01779782958328724, 0.3219655156135559, -0.25916776061058044, 0.018982132896780968, 0.003669379511848092, 0.014532831497490406, 0.02045999839901924, 0.24594026803970337, 0.24657543003559113, -0.08388957381248474, 0.8377812504768372, -0.008580705150961876, 0.0009587380336597562, -0.0036911412607878447, 0.24416659772396088, -0.25990188121795654, 0.07817310094833374, 0.80843186378479, -0.007166566792875528, 0.0014021543320268393, 0.0027324033435434103]} +{"t": 0.5692, "q": [-0.13764579594135284, 0.009549882262945175, -0.0056112040765583515, 0.3163238763809204, -0.17923246324062347, -0.015036015771329403, -0.0796101912856102, -0.02269439399242401, 0.01782461255788803, 0.32194846868515015, -0.2591720223426819, 0.018989384174346924, 0.003669379511848092, 0.014532831497490406, 0.02045999839901924, 0.24592828750610352, 0.24658742547035217, -0.08388957381248474, 0.8377812504768372, -0.008568720892071724, 0.0009827064350247383, -0.0037151097785681486, 0.24414263665676117, -0.25987792015075684, 0.07817310094833374, 0.80843186378479, -0.00717855105176568, 0.0014141385909169912, 0.0027204190846532583]} +{"t": 0.5859, "q": [-0.13763727247714996, 0.009541360661387444, -0.005584420636296272, 0.3163238763809204, -0.17923232913017273, -0.015021808445453644, -0.07960167527198792, -0.02269439399242401, 0.01781122200191021, 0.32194846868515015, -0.2591720223426819, 0.018989384174346924, 0.0037229470908641815, 0.014525298029184341, 0.020455293357372284, 0.24594026803970337, 0.24658742547035217, -0.08387759327888489, 0.8377812504768372, -0.008556736633181572, 0.0009946906939148903, -0.0037151097785681486, 0.24416659772396088, -0.2598899006843567, 0.07817310094833374, 0.8084558248519897, -0.00717855105176568, 0.0014021543320268393, 0.0027324033435434103]} +{"t": 0.6026, "q": [-0.13764579594135284, 0.009541360661387444, -0.005584420636296272, 0.3163323998451233, -0.17923232913017273, -0.015021808445453644, -0.07962723821401596, -0.022702915593981743, 0.017838004976511, 0.3219655156135559, -0.2591720223426819, 0.018989384174346924, 0.003776514669880271, 0.014540409669280052, 0.020445629954338074, 0.24592828750610352, 0.24658742547035217, -0.08388957381248474, 0.8377812504768372, -0.008568720892071724, 0.0009827064350247383, -0.0036911412607878447, 0.24413065612316132, -0.25990188121795654, 0.07819706946611404, 0.8084797859191895, -0.007166566792875528, 0.0014021543320268393, 0.0027324033435434103]} +{"t": 0.6194, "q": [-0.13764579594135284, 0.009532837197184563, -0.005584420636296272, 0.31634944677352905, -0.17923668026924133, -0.015028946101665497, -0.07959315180778503, -0.022702915593981743, 0.01782461255788803, 0.3219655156135559, -0.2591720223426819, 0.018989384174346924, 0.003776514669880271, 0.014540409669280052, 0.020445629954338074, 0.24594026803970337, 0.24659940600395203, -0.08388957381248474, 0.8377812504768372, -0.008580705150961876, 0.0009707222343422472, -0.0036911412607878447, 0.24413065612316132, -0.2598899006843567, 0.07817310094833374, 0.8084678053855896, -0.007190535310655832, 0.0014261228498071432, 0.0027324033435434103]} +{"t": 0.6361, "q": [-0.13764579594135284, 0.009524315595626831, -0.005584420636296272, 0.3163835406303406, -0.17923668026924133, -0.015028946101665497, -0.07960167527198792, -0.022702915593981743, 0.01782461255788803, 0.3219314217567444, -0.25916776061058044, 0.018982132896780968, 0.0037497307639569044, 0.014532853849232197, 0.02045046165585518, 0.24597622454166412, 0.24659940600395203, -0.08385362476110458, 0.8378171920776367, -0.008568720892071724, 0.0009946906939148903, -0.0036911412607878447, 0.24410668015480042, -0.25987792015075684, 0.07819706946611404, 0.8084797859191895, -0.007166566792875528, 0.0014021543320268393, 0.0027324033435434103]} +{"t": 0.6528, "q": [-0.13764579594135284, 0.009532837197184563, -0.005584420636296272, 0.31634944677352905, -0.17923246324062347, -0.015036015771329403, -0.07960167527198792, -0.022711437195539474, 0.01781122200191021, 0.32194846868515015, -0.2591720223426819, 0.018989384174346924, 0.0037497307639569044, 0.014532853849232197, 0.02045046165585518, 0.24597622454166412, 0.24658742547035217, -0.08387759327888489, 0.8378171920776367, -0.008580705150961876, 0.0009707222343422472, -0.0037151097785681486, 0.24413065612316132, -0.2598899006843567, 0.07817310094833374, 0.8084917664527893, -0.00717855105176568, 0.0014021543320268393, 0.0027324033435434103]} +{"t": 0.6696, "q": [-0.13764579594135284, 0.009532837197184563, -0.0056112040765583515, 0.3163664937019348, -0.17923246324062347, -0.015036015771329403, -0.07961871474981308, -0.022702915593981743, 0.01782461255788803, 0.32194846868515015, -0.25917625427246094, 0.018996616825461388, 0.003776514669880271, 0.014532877132296562, 0.020440923050045967, 0.24595224857330322, 0.24657543003559113, -0.08385362476110458, 0.8378651142120361, -0.008580705150961876, 0.0009707222343422472, -0.0037151097785681486, 0.24410668015480042, -0.25990188121795654, 0.07819706946611404, 0.8084917664527893, -0.007190535310655832, 0.0014381069922819734, 0.0027204190846532583]} +{"t": 0.6863, "q": [-0.13764579594135284, 0.009532837197184563, -0.005624596029520035, 0.3163664937019348, -0.17923668026924133, -0.015028946101665497, -0.0796101912856102, -0.02269439399242401, 0.01781122200191021, 0.32194846868515015, -0.2591720223426819, 0.018989384174346924, 0.003803298342972994, 0.014532853849232197, 0.02045046165585518, 0.24597622454166412, 0.24659940600395203, -0.08386560529470444, 0.8378890752792358, -0.008568720892071724, 0.0009827064350247383, -0.0037031255196779966, 0.24413065612316132, -0.25990188121795654, 0.07819706946611404, 0.808515727519989, -0.007190535310655832, 0.0014021543320268393, 0.0027324033435434103]} +{"t": 0.7032, "q": [-0.1376628428697586, 0.009507272392511368, -0.005584420636296272, 0.3163835406303406, -0.17923246324062347, -0.015036015771329403, -0.07961871474981308, -0.022702915593981743, 0.01781122200191021, 0.32193994522094727, -0.2591720223426819, 0.018989384174346924, 0.003803298342972994, 0.014525321312248707, 0.020445754751563072, 0.24595224857330322, 0.24659940600395203, -0.08385362476110458, 0.83793705701828, -0.008556736633181572, 0.0009827064350247383, -0.0037031255196779966, 0.24411866068840027, -0.2598899006843567, 0.07817310094833374, 0.8085037469863892, -0.00717855105176568, 0.0014141385909169912, 0.0027324033435434103]} +{"t": 0.7199, "q": [-0.1376628428697586, 0.009524315595626831, -0.0055978125892579556, 0.31635797023773193, -0.17923246324062347, -0.015036015771329403, -0.0796101912856102, -0.022711437195539474, 0.01781122200191021, 0.32194846868515015, -0.25916802883148193, 0.019010942429304123, 0.003776514669880271, 0.014532853849232197, 0.02045046165585518, 0.24596424400806427, 0.24659940600395203, -0.08385362476110458, 0.8379490375518799, -0.008568720892071724, 0.0009827064350247383, -0.0036911412607878447, 0.24411866068840027, -0.2598899006843567, 0.07817310094833374, 0.8085037469863892, -0.007190535310655832, 0.0013901700731366873, 0.0027204190846532583]} +{"t": 0.7367, "q": [-0.1376628428697586, 0.009524315595626831, -0.0056112040765583515, 0.31635797023773193, -0.17924509942531586, -0.015014823526144028, -0.07962723821401596, -0.022702915593981743, 0.01782461255788803, 0.32194846868515015, -0.2591720223426819, 0.018989384174346924, 0.003776514669880271, 0.014517765492200851, 0.020450586453080177, 0.24596424400806427, 0.24659940600395203, -0.08388957381248474, 0.8379729986190796, -0.008532768115401268, 0.0009827064350247383, -0.0037031255196779966, 0.24411866068840027, -0.2598899006843567, 0.07819706946611404, 0.8085037469863892, -0.00717855105176568, 0.0014141385909169912, 0.0027204190846532583]} +{"t": 0.7535, "q": [-0.13764579594135284, 0.009524315595626831, -0.005624596029520035, 0.3163664937019348, -0.17923232913017273, -0.015021808445453644, -0.0796101912856102, -0.022711437195539474, 0.01779782958328724, 0.32193994522094727, -0.25917625427246094, 0.018996616825461388, 0.003816690295934677, 0.014525298029184341, 0.020455293357372284, 0.24596424400806427, 0.24659940600395203, -0.08387759327888489, 0.8379610180854797, -0.00854475237429142, 0.0009827064350247383, -0.0037031255196779966, 0.24413065612316132, -0.25990188121795654, 0.07817310094833374, 0.808515727519989, -0.007202519569545984, 0.0013901700731366873, 0.0027324033435434103]} +{"t": 0.7702, "q": [-0.1376628428697586, 0.009541360661387444, -0.0056112040765583515, 0.31635797023773193, -0.17923668026924133, -0.015028946101665497, -0.0796101912856102, -0.022711437195539474, 0.01778443716466427, 0.3219655156135559, -0.2591637670993805, 0.01900370791554451, 0.0038300822488963604, 0.014532853849232197, 0.02045046165585518, 0.24594026803970337, 0.24659940600395203, -0.08387759327888489, 0.838020920753479, -0.008556736633181572, 0.0009827064350247383, -0.0036791572347283363, 0.24413065612316132, -0.2598899006843567, 0.07817310094833374, 0.8085037469863892, -0.007202519569545984, 0.0014141385909169912, 0.0027204190846532583]} +{"t": 0.7869, "q": [-0.1376628428697586, 0.009524315595626831, -0.0056112040765583515, 0.31634944677352905, -0.17923668026924133, -0.015028946101665497, -0.0796101912856102, -0.022711437195539474, 0.01779782958328724, 0.3219655156135559, -0.2591720223426819, 0.018989384174346924, 0.0037631227169185877, 0.014532831497490406, 0.02045999839901924, 0.24594026803970337, 0.24659940600395203, -0.08388957381248474, 0.8380448818206787, -0.008568720892071724, 0.0009827064350247383, -0.0036911412607878447, 0.24413065612316132, -0.25987792015075684, 0.07817310094833374, 0.8085037469863892, -0.00717855105176568, 0.0014141385909169912, 0.0027324033435434103]} +{"t": 0.8037, "q": [-0.1376628428697586, 0.009507272392511368, -0.0056112040765583515, 0.3163323998451233, -0.17923668026924133, -0.015028946101665497, -0.07963576167821884, -0.02269439399242401, 0.01781122200191021, 0.3219314217567444, -0.25917625427246094, 0.018996616825461388, 0.003736338810995221, 0.014525298029184341, 0.020455293357372284, 0.24594026803970337, 0.24659940600395203, -0.08386560529470444, 0.8380448818206787, -0.008568720892071724, 0.0009827064350247383, -0.0036911412607878447, 0.24411866068840027, -0.25990188121795654, 0.07817310094833374, 0.808515727519989, -0.00717855105176568, 0.0014261228498071432, 0.0027204190846532583]} +{"t": 0.8204, "q": [-0.1376628428697586, 0.009524315595626831, -0.0056112040765583515, 0.31634092330932617, -0.17923246324062347, -0.015036015771329403, -0.0796101912856102, -0.02269439399242401, 0.01779782958328724, 0.32194846868515015, -0.2591637670993805, 0.01900370791554451, 0.0037229470908641815, 0.014525298029184341, 0.020455293357372284, 0.24592828750610352, 0.24659940600395203, -0.08387759327888489, 0.8380329012870789, -0.008532768115401268, 0.0009827064350247383, -0.0036911412607878447, 0.24413065612316132, -0.2598899006843567, 0.07817310094833374, 0.8085517287254333, -0.00717855105176568, 0.0014500912511721253, 0.0027204190846532583]} +{"t": 0.8372, "q": [-0.1376628428697586, 0.0095157939940691, -0.005624596029520035, 0.3163323998451233, -0.17923668026924133, -0.015028946101665497, -0.07960167527198792, -0.022702915593981743, 0.01778443716466427, 0.3219314217567444, -0.2591720223426819, 0.018989384174346924, 0.003736338810995221, 0.014510209672152996, 0.020455418154597282, 0.24595224857330322, 0.24659940600395203, -0.08385362476110458, 0.8380329012870789, -0.00854475237429142, 0.0009827064350247383, -0.0037031255196779966, 0.24411866068840027, -0.2598899006843567, 0.07819706946611404, 0.8085517287254333, -0.00717855105176568, 0.0014620755100622773, 0.0027324033435434103]} +{"t": 0.8539, "q": [-0.13769692182540894, 0.0095157939940691, -0.0056112040765583515, 0.3163323998451233, -0.1792408972978592, -0.015021884813904762, -0.07961871474981308, -0.022702915593981743, 0.01781122200191021, 0.32194846868515015, -0.25916776061058044, 0.018982132896780968, 0.003776514669880271, 0.014525298029184341, 0.020455293357372284, 0.24592828750610352, 0.24659940600395203, -0.08387759327888489, 0.8380448818206787, -0.008532768115401268, 0.0009946906939148903, -0.0036911412607878447, 0.24411866068840027, -0.25990188121795654, 0.07817310094833374, 0.8085517287254333, -0.007190535310655832, 0.0014381069922819734, 0.0027204190846532583]} +{"t": 0.8707, "q": [-0.1376713663339615, 0.009532837197184563, -0.0056112040765583515, 0.3163238763809204, -0.17923668026924133, -0.015028946101665497, -0.07961871474981308, -0.022702915593981743, 0.01778443716466427, 0.3219143748283386, -0.2591720223426819, 0.018989384174346924, 0.003776514669880271, 0.014532853849232197, 0.02045046165585518, 0.24591630697250366, 0.24661138653755188, -0.08387759327888489, 0.8380329012870789, -0.008568720892071724, 0.0009827064350247383, -0.0036911412607878447, 0.24411866068840027, -0.2598899006843567, 0.07817310094833374, 0.8085637092590332, -0.007190535310655832, 0.0014381069922819734, 0.0027324033435434103]} +{"t": 0.8874, "q": [-0.13769692182540894, 0.0095157939940691, -0.005624596029520035, 0.3163238763809204, -0.17923668026924133, -0.015028946101665497, -0.07961871474981308, -0.022702915593981743, 0.017771044746041298, 0.3219314217567444, -0.2591720223426819, 0.018989384174346924, 0.003776514669880271, 0.014525298029184341, 0.020455293357372284, 0.24592828750610352, 0.24661138653755188, -0.08384163677692413, 0.8380448818206787, -0.008556736633181572, 0.0009827064350247383, -0.0037031255196779966, 0.24413065612316132, -0.25990188121795654, 0.07817310094833374, 0.8085637092590332, -0.007190535310655832, 0.0014500912511721253, 0.0027204190846532583]} +{"t": 0.9042, "q": [-0.1376713663339615, 0.0095157939940691, -0.0056112040765583515, 0.31631535291671753, -0.1792408972978592, -0.015021884813904762, -0.07961871474981308, -0.022719958797097206, 0.01779782958328724, 0.3219314217567444, -0.25917625427246094, 0.018996616825461388, 0.003736338810995221, 0.014532853849232197, 0.02045046165585518, 0.24592828750610352, 0.24659940600395203, -0.08387759327888489, 0.8380448818206787, -0.008568720892071724, 0.0009827064350247383, -0.0036791572347283363, 0.24413065612316132, -0.2598899006843567, 0.07817310094833374, 0.8085517287254333, -0.007190535310655832, 0.0014500912511721253, 0.0027324033435434103]} +{"t": 0.9209, "q": [-0.1376713663339615, 0.0095157939940691, -0.0056112040765583515, 0.3163323998451233, -0.17924101650714874, -0.015036066062748432, -0.07961871474981308, -0.022711437195539474, 0.01781122200191021, 0.32193994522094727, -0.2591720223426819, 0.018989384174346924, 0.003736338810995221, 0.014525321312248707, 0.020445754751563072, 0.24594026803970337, 0.24661138653755188, -0.08385362476110458, 0.8380448818206787, -0.00854475237429142, 0.0009946906939148903, -0.0037031255196779966, 0.24413065612316132, -0.2599138915538788, 0.07817310094833374, 0.8085756897926331, -0.007190535310655832, 0.0014381069922819734, 0.0027324033435434103]} +{"t": 0.9377, "q": [-0.1376628428697586, 0.009532837197184563, -0.0056112040765583515, 0.3163323998451233, -0.17923246324062347, -0.015036015771329403, -0.07963576167821884, -0.022702915593981743, 0.01779782958328724, 0.3219228982925415, -0.2591720223426819, 0.018989384174346924, 0.003803298342972994, 0.014525298029184341, 0.020455293357372284, 0.24591630697250366, 0.24658742547035217, -0.08385362476110458, 0.8380448818206787, -0.008556736633181572, 0.0009827064350247383, -0.0037031255196779966, 0.24413065612316132, -0.2598899006843567, 0.07819706946611404, 0.8085876703262329, -0.007202519569545984, 0.0014381069922819734, 0.0027324033435434103]} +{"t": 0.9544, "q": [-0.1376628428697586, 0.009524315595626831, -0.005624596029520035, 0.31634092330932617, -0.17923668026924133, -0.015028946101665497, -0.07961871474981308, -0.022702915593981743, 0.01778443716466427, 0.3219314217567444, -0.2591720223426819, 0.018989384174346924, 0.003803298342972994, 0.014532877132296562, 0.020440923050045967, 0.24592828750610352, 0.24657543003559113, -0.08385362476110458, 0.8380448818206787, -0.008568720892071724, 0.0009827064350247383, -0.0037031255196779966, 0.24411866068840027, -0.2599138915538788, 0.07819706946611404, 0.8085996508598328, -0.007202519569545984, 0.0014381069922819734, 0.0027324033435434103]} +{"t": 0.9712, "q": [-0.1376713663339615, 0.009532837197184563, -0.005637987982481718, 0.3163323998451233, -0.17923668026924133, -0.015028946101665497, -0.0796101912856102, -0.022711437195539474, 0.01779782958328724, 0.3219314217567444, -0.2591720223426819, 0.018989384174346924, 0.003803298342972994, 0.014532853849232197, 0.02045046165585518, 0.24592828750610352, 0.24659940600395203, -0.08384163677692413, 0.8380329012870789, -0.008568720892071724, 0.0009827064350247383, -0.0037031255196779966, 0.24410668015480042, -0.25987792015075684, 0.07819706946611404, 0.8086116313934326, -0.007190535310655832, 0.0014381069922819734, 0.0027324033435434103]} +{"t": 0.9879, "q": [-0.1376628428697586, 0.0095157939940691, -0.005624596029520035, 0.31634092330932617, -0.17923668026924133, -0.015028946101665497, -0.0796101912856102, -0.022702915593981743, 0.01781122200191021, 0.3219314217567444, -0.2591720223426819, 0.018989384174346924, 0.003776514669880271, 0.014532853849232197, 0.02045046165585518, 0.24596424400806427, 0.24661138653755188, -0.08382965624332428, 0.8380448818206787, -0.008556736633181572, 0.0009946906939148903, -0.0037031255196779966, 0.24411866068840027, -0.25987792015075684, 0.07817310094833374, 0.8086116313934326, -0.007202519569545984, 0.0014500912511721253, 0.0027324033435434103]} +{"t": 1.0046, "q": [-0.1376713663339615, 0.0095157939940691, -0.005624596029520035, 0.31634944677352905, -0.17923232913017273, -0.015021808445453644, -0.0796101912856102, -0.0226773489266634, 0.01779782958328724, 0.32194846868515015, -0.2591637670993805, 0.01900370791554451, 0.0037899063900113106, 0.014525321312248707, 0.020445754751563072, 0.24594026803970337, 0.24659940600395203, -0.08385362476110458, 0.8380448818206787, -0.008580705150961876, 0.0009827064350247383, -0.0037031255196779966, 0.24413065612316132, -0.2598899006843567, 0.07819706946611404, 0.8085996508598328, -0.007202519569545984, 0.0014500912511721253, 0.0027204190846532583]} +{"t": 1.0215, "q": [-0.1376713663339615, 0.009507272392511368, -0.005624596029520035, 0.3163323998451233, -0.17923668026924133, -0.015028946101665497, -0.0796101912856102, -0.022702915593981743, 0.01778443716466427, 0.32193994522094727, -0.25917625427246094, 0.018996616825461388, 0.003776514669880271, 0.014540409669280052, 0.020445629954338074, 0.24594026803970337, 0.24657543003559113, -0.08384163677692413, 0.8380329012870789, -0.008556736633181572, 0.0009827064350247383, -0.0037151097785681486, 0.24414263665676117, -0.2598899006843567, 0.07818508893251419, 0.8086236119270325, -0.007202519569545984, 0.0014381069922819734, 0.0027324033435434103]} +{"t": 1.0382, "q": [-0.1376713663339615, 0.009524315595626831, -0.005624596029520035, 0.31634944677352905, -0.17923246324062347, -0.015036015771329403, -0.0796101912856102, -0.02269439399242401, 0.01781122200191021, 0.321956992149353, -0.2591720223426819, 0.018989384174346924, 0.003776514669880271, 0.014532853849232197, 0.02045046165585518, 0.24595224857330322, 0.24659940600395203, -0.08384163677692413, 0.8380448818206787, -0.008556736633181572, 0.0009827064350247383, -0.0037031255196779966, 0.24413065612316132, -0.25990188121795654, 0.07817310094833374, 0.8086715340614319, -0.007214503362774849, 0.0014381069922819734, 0.0027324033435434103]} +{"t": 1.0549, "q": [-0.13767987489700317, 0.0095157939940691, -0.0056112040765583515, 0.31634944677352905, -0.17922811210155487, -0.01502887811511755, -0.07960167527198792, -0.022702915593981743, 0.01779782958328724, 0.32194846868515015, -0.2591720223426819, 0.018989384174346924, 0.003776514669880271, 0.014532853849232197, 0.02045046165585518, 0.24594026803970337, 0.24661138653755188, -0.08387759327888489, 0.8380448818206787, -0.008580705150961876, 0.0009946906939148903, -0.0036911412607878447, 0.24411866068840027, -0.25990188121795654, 0.07819706946611404, 0.8086715340614319, -0.007202519569545984, 0.0014381069922819734, 0.0027324033435434103]} +{"t": 1.0717, "q": [-0.1376713663339615, 0.0095157939940691, -0.005637987982481718, 0.31634092330932617, -0.17923232913017273, -0.015021808445453644, -0.0796101912856102, -0.022702915593981743, 0.01781122200191021, 0.321956992149353, -0.2591802775859833, 0.018975041806697845, 0.003776514669880271, 0.014532853849232197, 0.02045046165585518, 0.24594026803970337, 0.24661138653755188, -0.08387759327888489, 0.8380568623542786, -0.008580705150961876, 0.0009946906939148903, -0.0036911412607878447, 0.24413065612316132, -0.2599138915538788, 0.07822103798389435, 0.8086954951286316, -0.007202519569545984, 0.0014381069922819734, 0.0027324033435434103]} +{"t": 1.0884, "q": [-0.1376713663339615, 0.0095157939940691, -0.005637987982481718, 0.31634944677352905, -0.17923668026924133, -0.015028946101665497, -0.07961871474981308, -0.022702915593981743, 0.01781122200191021, 0.3219228982925415, -0.2591720223426819, 0.018989384174346924, 0.0037497307639569044, 0.014547965489327908, 0.02044079639017582, 0.24595224857330322, 0.24659940600395203, -0.08388957381248474, 0.8380688428878784, -0.008580705150961876, 0.0009827064350247383, -0.0037031255196779966, 0.24414263665676117, -0.2598899006843567, 0.07819706946611404, 0.8086835145950317, -0.007202519569545984, 0.0014500912511721253, 0.0027324033435434103]} +{"t": 1.1051, "q": [-0.13765431940555573, 0.009507272392511368, -0.005624596029520035, 0.31635797023773193, -0.1792365461587906, -0.01501474715769291, -0.07962723821401596, -0.022711437195539474, 0.01782461255788803, 0.32194846868515015, -0.2591720223426819, 0.018989384174346924, 0.003776514669880271, 0.014532853849232197, 0.02045046165585518, 0.24594026803970337, 0.24658742547035217, -0.08387759327888489, 0.8380568623542786, -0.008580705150961876, 0.0009707222343422472, -0.0036911412607878447, 0.24413065612316132, -0.2598899006843567, 0.07819706946611404, 0.8086835145950317, -0.007202519569545984, 0.0014500912511721253, 0.0027324033435434103]} +{"t": 1.1219, "q": [-0.13763727247714996, 0.0095157939940691, -0.0055978125892579556, 0.31634944677352905, -0.17923232913017273, -0.015021808445453644, -0.07959315180778503, -0.022719958797097206, 0.01778443716466427, 0.32194846868515015, -0.2591720223426819, 0.018989384174346924, 0.0037899063900113106, 0.014540409669280052, 0.020445629954338074, 0.24592828750610352, 0.24661138653755188, -0.08386560529470444, 0.8380688428878784, -0.008580705150961876, 0.0009707222343422472, -0.0036671729758381844, 0.24413065612316132, -0.25990188121795654, 0.07819706946611404, 0.8086835145950317, -0.007202519569545984, 0.0014381069922819734, 0.0027324033435434103]} +{"t": 1.1386, "q": [-0.13764579594135284, 0.009524315595626831, -0.005624596029520035, 0.31634944677352905, -0.17923668026924133, -0.015028946101665497, -0.0796101912856102, -0.02269439399242401, 0.01779782958328724, 0.321956992149353, -0.2591720223426819, 0.018989384174346924, 0.003776514669880271, 0.014525321312248707, 0.020445754751563072, 0.24592828750610352, 0.24661138653755188, -0.08385362476110458, 0.8380928039550781, -0.008580705150961876, 0.0009946906939148903, -0.0037151097785681486, 0.24413065612316132, -0.25990188121795654, 0.07819706946611404, 0.8086954951286316, -0.007202519569545984, 0.0014500912511721253, 0.0027324033435434103]} +{"t": 1.1553, "q": [-0.13764579594135284, 0.009541360661387444, -0.005624596029520035, 0.31634092330932617, -0.17923668026924133, -0.015028946101665497, -0.07959315180778503, -0.02268587052822113, 0.01778443716466427, 0.3219314217567444, -0.2591720223426819, 0.018989384174346924, 0.0037631227169185877, 0.014525298029184341, 0.020455293357372284, 0.24594026803970337, 0.24658742547035217, -0.08388957381248474, 0.8380688428878784, -0.008532768115401268, 0.0009827064350247383, -0.0037031255196779966, 0.24411866068840027, -0.25990188121795654, 0.07822103798389435, 0.8086954951286316, -0.007202519569545984, 0.0014740596525371075, 0.0027563718613237143]} +{"t": 1.172, "q": [-0.13763727247714996, 0.009524315595626831, -0.005624596029520035, 0.31634944677352905, -0.1792408972978592, -0.015021884813904762, -0.0796101912856102, -0.02269439399242401, 0.01779782958328724, 0.3219655156135559, -0.2591720223426819, 0.018989384174346924, 0.003803298342972994, 0.014532853849232197, 0.02045046165585518, 0.24591630697250366, 0.24658742547035217, -0.08384163677692413, 0.8380568623542786, -0.008568720892071724, 0.0009827064350247383, -0.0037031255196779966, 0.24411866068840027, -0.2598899006843567, 0.0782090574502945, 0.8087074756622314, -0.007202519569545984, 0.0014620755100622773, 0.0027443876024335623]} +{"t": 1.1888, "q": [-0.13764579594135284, 0.009541360661387444, -0.005637987982481718, 0.31634092330932617, -0.17923668026924133, -0.015028946101665497, -0.0796101912856102, -0.02269439399242401, 0.01778443716466427, 0.321956992149353, -0.25917625427246094, 0.018996616825461388, 0.003776514669880271, 0.014517765492200851, 0.020450586453080177, 0.24594026803970337, 0.24659940600395203, -0.08386560529470444, 0.8380928039550781, -0.008556736633181572, 0.0009827064350247383, -0.0037270940374583006, 0.24414263665676117, -0.2598899006843567, 0.0782090574502945, 0.8086954951286316, -0.00717855105176568, 0.0014860439114272594, 0.0027324033435434103]} +{"t": 1.2056, "q": [-0.13763727247714996, 0.009524315595626831, -0.005624596029520035, 0.31635797023773193, -0.1792365461587906, -0.01501474715769291, -0.0796101912856102, -0.022702915593981743, 0.01778443716466427, 0.3219655156135559, -0.2591720223426819, 0.018989384174346924, 0.0037899063900113106, 0.014532853849232197, 0.02045046165585518, 0.24594026803970337, 0.24661138653755188, -0.08385362476110458, 0.8380808234214783, -0.00854475237429142, 0.0009707222343422472, -0.0037151097785681486, 0.24413065612316132, -0.25990188121795654, 0.07819706946611404, 0.8087074756622314, -0.007202519569545984, 0.0014620755100622773, 0.0027324033435434103]} +{"t": 1.2223, "q": [-0.1376628428697586, 0.009524315595626831, -0.005624596029520035, 0.31634944677352905, -0.17923668026924133, -0.015028946101665497, -0.07960167527198792, -0.022702915593981743, 0.01781122200191021, 0.32193994522094727, -0.2591720223426819, 0.018989384174346924, 0.003776514669880271, 0.014547943137586117, 0.02045033499598503, 0.24592828750610352, 0.24659940600395203, -0.08385362476110458, 0.8380688428878784, -0.008580705150961876, 0.0009707222343422472, -0.0037031255196779966, 0.24413065612316132, -0.25987792015075684, 0.07819706946611404, 0.8086954951286316, -0.007214503362774849, 0.0014620755100622773, 0.0027324033435434103]} +{"t": 1.239, "q": [-0.13765431940555573, 0.009541360661387444, -0.005624596029520035, 0.31634944677352905, -0.17923668026924133, -0.015028946101665497, -0.0796101912856102, -0.02269439399242401, 0.01779782958328724, 0.3219314217567444, -0.2591720223426819, 0.018989384174346924, 0.003776514669880271, 0.014532831497490406, 0.02045999839901924, 0.24592828750610352, 0.24661138653755188, -0.08385362476110458, 0.8380808234214783, -0.008568720892071724, 0.0009827064350247383, -0.0037151097785681486, 0.24411866068840027, -0.25990188121795654, 0.07819706946611404, 0.8087074756622314, -0.007190535310655832, 0.0014740596525371075, 0.0027443876024335623]} +{"t": 1.2558, "q": [-0.1376628428697586, 0.0095157939940691, -0.0056112040765583515, 0.3163323998451233, -0.17923232913017273, -0.015021808445453644, -0.0796101912856102, -0.02269439399242401, 0.01781122200191021, 0.3219314217567444, -0.2591720223426819, 0.018989384174346924, 0.0037095551379024982, 0.014525298029184341, 0.020455293357372284, 0.24594026803970337, 0.24658742547035217, -0.08385362476110458, 0.8380808234214783, -0.00860467366874218, 0.0009946906939148903, -0.0036911412607878447, 0.24413065612316132, -0.2598899006843567, 0.07819706946611404, 0.8086954951286316, -0.007202519569545984, 0.0014740596525371075, 0.0027443876024335623]} +{"t": 1.2725, "q": [-0.1376713663339615, 0.0095157939940691, -0.005651379935443401, 0.31634092330932617, -0.1792408972978592, -0.015021884813904762, -0.0796101912856102, -0.022702915593981743, 0.017771044746041298, 0.32193994522094727, -0.25917625427246094, 0.018996616825461388, 0.003776514669880271, 0.014532853849232197, 0.02045046165585518, 0.24594026803970337, 0.24659940600395203, -0.08388957381248474, 0.8380688428878784, -0.008580705150961876, 0.0009827064350247383, -0.0037031255196779966, 0.24411866068840027, -0.2599138915538788, 0.0782090574502945, 0.8087074756622314, -0.007190535310655832, 0.0014620755100622773, 0.0027324033435434103]} +{"t": 1.2893, "q": [-0.1376628428697586, 0.009541360661387444, -0.005637987982481718, 0.31634092330932617, -0.17923246324062347, -0.015036015771329403, -0.0796101912856102, -0.02269439399242401, 0.01779782958328724, 0.32194846868515015, -0.2591720223426819, 0.018989384174346924, 0.003776514669880271, 0.014532853849232197, 0.02045046165585518, 0.24592828750610352, 0.24658742547035217, -0.08387759327888489, 0.8380928039550781, -0.008580705150961876, 0.0009827064350247383, -0.0037270940374583006, 0.24411866068840027, -0.25990188121795654, 0.07818508893251419, 0.8086835145950317, -0.007190535310655832, 0.0014620755100622773, 0.0027443876024335623]} +{"t": 1.3061, "q": [-0.13768839836120605, 0.009498748928308487, -0.005624596029520035, 0.31634092330932617, -0.17923668026924133, -0.015028946101665497, -0.07962723821401596, -0.022702915593981743, 0.01778443716466427, 0.32190585136413574, -0.2591720223426819, 0.018989384174346924, 0.0037631227169185877, 0.014532853849232197, 0.02045046165585518, 0.24592828750610352, 0.24659940600395203, -0.08384163677692413, 0.8380928039550781, -0.008568720892071724, 0.0009587380336597562, -0.0037031255196779966, 0.24411866068840027, -0.2598899006843567, 0.07819706946611404, 0.8087074756622314, -0.007202519569545984, 0.0014500912511721253, 0.0027324033435434103]} +{"t": 1.3228, "q": [-0.1376713663339615, 0.0095157939940691, -0.005651379935443401, 0.31634944677352905, -0.1792408972978592, -0.015021884813904762, -0.0796101912856102, -0.02269439399242401, 0.01781122200191021, 0.3219143748283386, -0.2591720223426819, 0.018989384174346924, 0.0037497307639569044, 0.014525298029184341, 0.020455293357372284, 0.24592828750610352, 0.24661138653755188, -0.08385362476110458, 0.8380688428878784, -0.008568720892071724, 0.0009827064350247383, -0.0037151097785681486, 0.24413065612316132, -0.2598899006843567, 0.07819706946611404, 0.8087195158004761, -0.007190535310655832, 0.0014620755100622773, 0.0027324033435434103]} +{"t": 1.3395, "q": [-0.1376713663339615, 0.009524315595626831, -0.005624596029520035, 0.31634944677352905, -0.17923668026924133, -0.015028946101665497, -0.07962723821401596, -0.02269439399242401, 0.01781122200191021, 0.3219143748283386, -0.2591720223426819, 0.018989384174346924, 0.003776514669880271, 0.014532853849232197, 0.02045046165585518, 0.24595224857330322, 0.24659940600395203, -0.08386560529470444, 0.8380928039550781, -0.008580705150961876, 0.0009827064350247383, -0.0037270940374583006, 0.24414263665676117, -0.2599138915538788, 0.07819706946611404, 0.8087195158004761, -0.007190535310655832, 0.0014500912511721253, 0.0027324033435434103]} +{"t": 1.3563, "q": [-0.1376628428697586, 0.009532837197184563, -0.005624596029520035, 0.31634944677352905, -0.17923668026924133, -0.015028946101665497, -0.07962723821401596, -0.022702915593981743, 0.01781122200191021, 0.3219228982925415, -0.2591720223426819, 0.018989384174346924, 0.003776514669880271, 0.014517742209136486, 0.02046012505888939, 0.24592828750610352, 0.24659940600395203, -0.08387759327888489, 0.8380928039550781, -0.008592689409852028, 0.0009827064350247383, -0.0037151097785681486, 0.24416659772396088, -0.25990188121795654, 0.07818508893251419, 0.8087195158004761, -0.007202519569545984, 0.0014381069922819734, 0.0027324033435434103]} +{"t": 1.373, "q": [-0.1376628428697586, 0.009524315595626831, -0.005624596029520035, 0.31634944677352905, -0.17923246324062347, -0.015036015771329403, -0.07962723821401596, -0.022711437195539474, 0.01781122200191021, 0.3219228982925415, -0.25917625427246094, 0.018996616825461388, 0.0037497307639569044, 0.014517765492200851, 0.020450586453080177, 0.24594026803970337, 0.24659940600395203, -0.08385362476110458, 0.838104784488678, -0.008592689409852028, 0.0009827064350247383, -0.0037031255196779966, 0.24414263665676117, -0.25990188121795654, 0.07819706946611404, 0.8087195158004761, -0.007202519569545984, 0.0014620755100622773, 0.0027324033435434103]} +{"t": 1.3897, "q": [-0.1376713663339615, 0.009524315595626831, -0.005624596029520035, 0.31634944677352905, -0.1792408972978592, -0.015021884813904762, -0.0796101912856102, -0.022702915593981743, 0.01779782958328724, 0.32193994522094727, -0.25917625427246094, 0.018996616825461388, 0.0037497307639569044, 0.014532853849232197, 0.02045046165585518, 0.24594026803970337, 0.24658742547035217, -0.08385362476110458, 0.838104784488678, -0.008568720892071724, 0.0009707222343422472, -0.0036791572347283363, 0.24413065612316132, -0.25987792015075684, 0.07819706946611404, 0.8087195158004761, -0.007190535310655832, 0.0014620755100622773, 0.0027324033435434103]} +{"t": 1.4064, "q": [-0.13768839836120605, 0.009549882262945175, -0.005624596029520035, 0.31634944677352905, -0.17923668026924133, -0.015028946101665497, -0.0796101912856102, -0.02268587052822113, 0.01779782958328724, 0.3219143748283386, -0.2591679096221924, 0.018996546044945717, 0.0037497307639569044, 0.014525321312248707, 0.020445754751563072, 0.24594026803970337, 0.24657543003559113, -0.08385362476110458, 0.8381288051605225, -0.008556736633181572, 0.0009946906939148903, -0.0037270940374583006, 0.24411866068840027, -0.2598899006843567, 0.07819706946611404, 0.8087195158004761, -0.007190535310655832, 0.0014740596525371075, 0.0027324033435434103]} +{"t": 1.4232, "q": [-0.1376628428697586, 0.009532837197184563, -0.005624596029520035, 0.31634944677352905, -0.17924535274505615, -0.015043186955153942, -0.07959315180778503, -0.02269439399242401, 0.01778443716466427, 0.32194846868515015, -0.2591637670993805, 0.01900370791554451, 0.003776514669880271, 0.014532853849232197, 0.02045046165585518, 0.24594026803970337, 0.24658742547035217, -0.08387759327888489, 0.8381167650222778, -0.008556736633181572, 0.0009827064350247383, -0.0037270940374583006, 0.24413065612316132, -0.2598899006843567, 0.07822103798389435, 0.8087195158004761, -0.007202519569545984, 0.0014860439114272594, 0.0027204190846532583]} +{"t": 1.4399, "q": [-0.1376628428697586, 0.009532837197184563, -0.005624596029520035, 0.31634944677352905, -0.1792408972978592, -0.015021884813904762, -0.07961871474981308, -0.022702915593981743, 0.017771044746041298, 0.3219143748283386, -0.25916776061058044, 0.018982132896780968, 0.003816690295934677, 0.014532853849232197, 0.02045046165585518, 0.24592828750610352, 0.24658742547035217, -0.08384163677692413, 0.8381167650222778, -0.008580705150961876, 0.0009707222343422472, -0.0037031255196779966, 0.24413065612316132, -0.25990188121795654, 0.07818508893251419, 0.8087195158004761, -0.007190535310655832, 0.0014740596525371075, 0.0027324033435434103]} +{"t": 1.4566, "q": [-0.13763727247714996, 0.009532837197184563, -0.005624596029520035, 0.31634944677352905, -0.17923668026924133, -0.015028946101665497, -0.07961871474981308, -0.02269439399242401, 0.01778443716466427, 0.3219314217567444, -0.2591720223426819, 0.018989384174346924, 0.003776514669880271, 0.014540387317538261, 0.020455166697502136, 0.24591630697250366, 0.24661138653755188, -0.08384163677692413, 0.8380688428878784, -0.008580705150961876, 0.0009827064350247383, -0.0037031255196779966, 0.24411866068840027, -0.2598899006843567, 0.07818508893251419, 0.8087554574012756, -0.007190535310655832, 0.0014860439114272594, 0.0027324033435434103]} +{"t": 1.4735, "q": [-0.1376628428697586, 0.009541360661387444, -0.005624596029520035, 0.3163323998451233, -0.17923246324062347, -0.015036015771329403, -0.0796101912856102, -0.022702915593981743, 0.017771044746041298, 0.3219143748283386, -0.25916802883148193, 0.019010942429304123, 0.003776514669880271, 0.014532831497490406, 0.02045999839901924, 0.24594026803970337, 0.24659940600395203, -0.08384163677692413, 0.838104784488678, -0.008568720892071724, 0.0009946906939148903, -0.0037031255196779966, 0.24411866068840027, -0.25990188121795654, 0.07818508893251419, 0.8087554574012756, -0.007202519569545984, 0.0014740596525371075, 0.0027324033435434103]} +{"t": 1.4902, "q": [-0.1376628428697586, 0.009532837197184563, -0.005624596029520035, 0.31635797023773193, -0.1792408972978592, -0.015021884813904762, -0.07962723821401596, -0.022702915593981743, 0.017771044746041298, 0.32194846868515015, -0.25916776061058044, 0.018982132896780968, 0.003776514669880271, 0.014532831497490406, 0.02045999839901924, 0.24594026803970337, 0.24658742547035217, -0.08384163677692413, 0.8381167650222778, -0.008592689409852028, 0.0009946906939148903, -0.0037270940374583006, 0.24413065612316132, -0.2599138915538788, 0.07819706946611404, 0.8087554574012756, -0.007202519569545984, 0.0014860439114272594, 0.0027204190846532583]} +{"t": 1.5069, "q": [-0.1376713663339615, 0.009532837197184563, -0.005637987982481718, 0.31634944677352905, -0.17923232913017273, -0.015021808445453644, -0.07961871474981308, -0.022702915593981743, 0.01779782958328724, 0.3219314217567444, -0.2591720223426819, 0.018989384174346924, 0.003776514669880271, 0.014525298029184341, 0.020455293357372284, 0.24595224857330322, 0.24658742547035217, -0.08385362476110458, 0.838104784488678, -0.008580705150961876, 0.0010066749528050423, -0.0037031255196779966, 0.24411866068840027, -0.2599138915538788, 0.07819706946611404, 0.8087794184684753, -0.007190535310655832, 0.0014740596525371075, 0.0027324033435434103]} +{"t": 1.5237, "q": [-0.13765431940555573, 0.009532837197184563, -0.005624596029520035, 0.31634944677352905, -0.17923668026924133, -0.015028946101665497, -0.0796101912856102, -0.022702915593981743, 0.01778443716466427, 0.3219314217567444, -0.2591720223426819, 0.018989384174346924, 0.0037497307639569044, 0.014525298029184341, 0.020455293357372284, 0.24592828750610352, 0.24659940600395203, -0.08384163677692413, 0.838104784488678, -0.008592689409852028, 0.0009827064350247383, -0.0037031255196779966, 0.24413065612316132, -0.25990188121795654, 0.07819706946611404, 0.8088153600692749, -0.007202519569545984, 0.0014860439114272594, 0.0027443876024335623]} +{"t": 1.5404, "q": [-0.1376713663339615, 0.009558403864502907, -0.005637987982481718, 0.31634944677352905, -0.17924509942531586, -0.015014823526144028, -0.0796101912856102, -0.022702915593981743, 0.01781122200191021, 0.3219228982925415, -0.25917625427246094, 0.018996616825461388, 0.003776514669880271, 0.014547943137586117, 0.02045033499598503, 0.24592828750610352, 0.24661138653755188, -0.08385362476110458, 0.838104784488678, -0.008580705150961876, 0.0009946906939148903, -0.0036911412607878447, 0.24413065612316132, -0.25990188121795654, 0.07819706946611404, 0.808803379535675, -0.007202519569545984, 0.0014860439114272594, 0.0027443876024335623]} +{"t": 1.5571, "q": [-0.1376628428697586, 0.009541360661387444, -0.0056112040765583515, 0.31634944677352905, -0.17923668026924133, -0.015028946101665497, -0.07960167527198792, -0.022702915593981743, 0.01781122200191021, 0.3219314217567444, -0.25917625427246094, 0.018996616825461388, 0.003803298342972994, 0.014532853849232197, 0.02045046165585518, 0.24595224857330322, 0.24661138653755188, -0.08385362476110458, 0.838104784488678, -0.008580705150961876, 0.0009827064350247383, -0.0037390782963484526, 0.24411866068840027, -0.2599138915538788, 0.07822103798389435, 0.8087913990020752, -0.007190535310655832, 0.0014860439114272594, 0.0027324033435434103]} +{"t": 1.5739, "q": [-0.13767987489700317, 0.009532837197184563, -0.005651379935443401, 0.31634092330932617, -0.17923246324062347, -0.015036015771329403, -0.07958462834358215, -0.022711437195539474, 0.01781122200191021, 0.321956992149353, -0.25917625427246094, 0.018996616825461388, 0.003776514669880271, 0.014540387317538261, 0.020455166697502136, 0.24594026803970337, 0.24661138653755188, -0.08386560529470444, 0.8381167650222778, -0.008580705150961876, 0.0009827064350247383, -0.0037151097785681486, 0.24413065612316132, -0.2598899006843567, 0.07819706946611404, 0.8087913990020752, -0.007202519569545984, 0.0014740596525371075, 0.0027204190846532583]} +{"t": 1.5906, "q": [-0.1376628428697586, 0.009541360661387444, -0.005624596029520035, 0.31634944677352905, -0.17923668026924133, -0.015028946101665497, -0.07958462834358215, -0.02268587052822113, 0.01781122200191021, 0.3219655156135559, -0.25916776061058044, 0.018982132896780968, 0.003803298342972994, 0.014525298029184341, 0.020455293357372284, 0.24595224857330322, 0.24661138653755188, -0.08386560529470444, 0.8381167650222778, -0.008568720892071724, 0.0009707222343422472, -0.0037031255196779966, 0.24413065612316132, -0.2599138915538788, 0.07819706946611404, 0.8087794184684753, -0.007190535310655832, 0.0014740596525371075, 0.0027084348257631063]} +{"t": 1.6076, "q": [-0.13764579594135284, 0.0095157939940691, -0.005624596029520035, 0.31634092330932617, -0.17923232913017273, -0.015021808445453644, -0.07959315180778503, -0.022702915593981743, 0.01781122200191021, 0.321956992149353, -0.2591720223426819, 0.018989384174346924, 0.003776514669880271, 0.014540387317538261, 0.020455166697502136, 0.24595224857330322, 0.24659940600395203, -0.08385362476110458, 0.8380928039550781, -0.008568720892071724, 0.0009946906939148903, -0.0037031255196779966, 0.24413065612316132, -0.25987792015075684, 0.07818508893251419, 0.8087794184684753, -0.007190535310655832, 0.0014740596525371075, 0.0027324033435434103]} +{"t": 1.6243, "q": [-0.13768839836120605, 0.009524315595626831, -0.005651379935443401, 0.31634944677352905, -0.17923668026924133, -0.015028946101665497, -0.07961871474981308, -0.022711437195539474, 0.01781122200191021, 0.3219314217567444, -0.2591720223426819, 0.018989384174346924, 0.003776514669880271, 0.014532853849232197, 0.02045046165585518, 0.24594026803970337, 0.24658742547035217, -0.08387759327888489, 0.8381167650222778, -0.008568720892071724, 0.0009827064350247383, -0.0036911412607878447, 0.24411866068840027, -0.25990188121795654, 0.07819706946611404, 0.8087913990020752, -0.007202519569545984, 0.0014860439114272594, 0.0027324033435434103]} +{"t": 1.641, "q": [-0.13768839836120605, 0.009507272392511368, -0.005624596029520035, 0.3163323998451233, -0.17923668026924133, -0.015028946101665497, -0.0796101912856102, -0.02269439399242401, 0.01779782958328724, 0.32193994522094727, -0.25917625427246094, 0.018996616825461388, 0.0037631227169185877, 0.014540409669280052, 0.020445629954338074, 0.24595224857330322, 0.24659940600395203, -0.08386560529470444, 0.8381167650222778, -0.008556736633181572, 0.0009946906939148903, -0.0037031255196779966, 0.24413065612316132, -0.2598899006843567, 0.07819706946611404, 0.808803379535675, -0.007190535310655832, 0.0014740596525371075, 0.0027324033435434103]} +{"t": 1.6579, "q": [-0.13767987489700317, 0.009532837197184563, -0.005637987982481718, 0.31634944677352905, -0.17923246324062347, -0.015036015771329403, -0.0796101912856102, -0.022702915593981743, 0.01781122200191021, 0.3219314217567444, -0.2591720223426819, 0.018989384174346924, 0.003776514669880271, 0.014532831497490406, 0.02045999839901924, 0.24595224857330322, 0.24658742547035217, -0.08386560529470444, 0.8381167650222778, -0.008580705150961876, 0.0009827064350247383, -0.0037031255196779966, 0.24414263665676117, -0.2598899006843567, 0.07819706946611404, 0.808803379535675, -0.007202519569545984, 0.0014980281703174114, 0.0027324033435434103]} +{"t": 1.6747, "q": [-0.13768839836120605, 0.009541360661387444, -0.005624596029520035, 0.31634944677352905, -0.1792411357164383, -0.015050256624817848, -0.07959315180778503, -0.022711437195539474, 0.01778443716466427, 0.3219314217567444, -0.2591720223426819, 0.018989384174346924, 0.0037631227169185877, 0.014525298029184341, 0.020455293357372284, 0.24596424400806427, 0.24659940600395203, -0.08386560529470444, 0.8381167650222778, -0.008580705150961876, 0.0009827064350247383, -0.0037270940374583006, 0.24413065612316132, -0.25987792015075684, 0.07818508893251419, 0.808803379535675, -0.007202519569545984, 0.0014980281703174114, 0.0027443876024335623]} +{"t": 1.6914, "q": [-0.1376713663339615, 0.009532837197184563, -0.005651379935443401, 0.31635797023773193, -0.17923668026924133, -0.015028946101665497, -0.07959315180778503, -0.02269439399242401, 0.01778443716466427, 0.32194846868515015, -0.2591720223426819, 0.018989384174346924, 0.003776514669880271, 0.014540409669280052, 0.020445629954338074, 0.24594026803970337, 0.24659940600395203, -0.08384163677692413, 0.8381288051605225, -0.008580705150961876, 0.0009827064350247383, -0.0037270940374583006, 0.24413065612316132, -0.2599138915538788, 0.07822103798389435, 0.8087913990020752, -0.007202519569545984, 0.0014860439114272594, 0.0027084348257631063]} +{"t": 1.7081, "q": [-0.1376713663339615, 0.009532837197184563, -0.005651379935443401, 0.31634092330932617, -0.17923246324062347, -0.015036015771329403, -0.0796101912856102, -0.022702915593981743, 0.01779782958328724, 0.3219143748283386, -0.25917625427246094, 0.018996616825461388, 0.003776514669880271, 0.014525298029184341, 0.020455293357372284, 0.24594026803970337, 0.24658742547035217, -0.08384163677692413, 0.8381527662277222, -0.008568720892071724, 0.0009827064350247383, -0.0037151097785681486, 0.24411866068840027, -0.25990188121795654, 0.07819706946611404, 0.808803379535675, -0.007190535310655832, 0.0014860439114272594, 0.0027204190846532583]} +{"t": 1.7248, "q": [-0.13765431940555573, 0.009541360661387444, -0.005651379935443401, 0.31634944677352905, -0.1792408972978592, -0.015021884813904762, -0.07959315180778503, -0.022702915593981743, 0.01781122200191021, 0.321956992149353, -0.2591720223426819, 0.018989384174346924, 0.003736338810995221, 0.014540409669280052, 0.020445629954338074, 0.24595224857330322, 0.24658742547035217, -0.08386560529470444, 0.8381288051605225, -0.008580705150961876, 0.0009827064350247383, -0.0037151097785681486, 0.24411866068840027, -0.25987792015075684, 0.07819706946611404, 0.8088153600692749, -0.007190535310655832, 0.0014860439114272594, 0.0027324033435434103]} +{"t": 1.7416, "q": [-0.1376713663339615, 0.009532837197184563, -0.005624596029520035, 0.31634944677352905, -0.1792408972978592, -0.015021884813904762, -0.07958462834358215, -0.022711437195539474, 0.01779782958328724, 0.3219228982925415, -0.2591720223426819, 0.018989384174346924, 0.003803298342972994, 0.014525298029184341, 0.020455293357372284, 0.24595224857330322, 0.24659940600395203, -0.08385362476110458, 0.8381527662277222, -0.008592689409852028, 0.0009827064350247383, -0.0037390782963484526, 0.24411866068840027, -0.2598899006843567, 0.07819706946611404, 0.808803379535675, -0.007154582533985376, 0.0014860439114272594, 0.0027204190846532583]} +{"t": 1.7583, "q": [-0.1376713663339615, 0.009524315595626831, -0.005624596029520035, 0.31635797023773193, -0.17923668026924133, -0.015028946101665497, -0.07959315180778503, -0.022702915593981743, 0.017771044746041298, 0.32194846868515015, -0.2591720223426819, 0.018989384174346924, 0.003803298342972994, 0.014525321312248707, 0.020445754751563072, 0.24592828750610352, 0.24659940600395203, -0.08385362476110458, 0.8381527662277222, -0.008580705150961876, 0.0009707222343422472, -0.0037270940374583006, 0.24410668015480042, -0.25990188121795654, 0.07819706946611404, 0.808803379535675, -0.007166566792875528, 0.0015100124292075634, 0.0027324033435434103]} +{"t": 1.775, "q": [-0.1376713663339615, 0.009524315595626831, -0.005637987982481718, 0.31634944677352905, -0.17923668026924133, -0.015028946101665497, -0.0796101912856102, -0.022702915593981743, 0.01779782958328724, 0.32194846868515015, -0.2591720223426819, 0.018989384174346924, 0.003776514669880271, 0.014547920785844326, 0.020459873601794243, 0.24592828750610352, 0.24661138653755188, -0.08385362476110458, 0.8381527662277222, -0.008580705150961876, 0.0009827064350247383, -0.0037270940374583006, 0.24409469962120056, -0.2598899006843567, 0.07819706946611404, 0.808803379535675, -0.007166566792875528, 0.0015100124292075634, 0.0027324033435434103]} +{"t": 1.7918, "q": [-0.1376713663339615, 0.009524315595626831, -0.005624596029520035, 0.31635797023773193, -0.17923668026924133, -0.015028946101665497, -0.07958462834358215, -0.022702915593981743, 0.01779782958328724, 0.321956992149353, -0.2591720223426819, 0.018989384174346924, 0.003816690295934677, 0.014547943137586117, 0.02045033499598503, 0.24592828750610352, 0.24659940600395203, -0.08386560529470444, 0.8381527662277222, -0.008580705150961876, 0.0009707222343422472, -0.0037151097785681486, 0.24411866068840027, -0.25990188121795654, 0.07819706946611404, 0.808803379535675, -0.00717855105176568, 0.0014860439114272594, 0.0027563718613237143]} +{"t": 1.8085, "q": [-0.13764579594135284, 0.009558403864502907, -0.005624596029520035, 0.31634092330932617, -0.17924509942531586, -0.015014823526144028, -0.07958462834358215, -0.022711437195539474, 0.01779782958328724, 0.32193994522094727, -0.25917625427246094, 0.018996616825461388, 0.003816690295934677, 0.014540387317538261, 0.020455166697502136, 0.24595224857330322, 0.24661138653755188, -0.08386560529470444, 0.8381527662277222, -0.008580705150961876, 0.0009707222343422472, -0.0037031255196779966, 0.24413065612316132, -0.2598899006843567, 0.07819706946611404, 0.8087913990020752, -0.007166566792875528, 0.0014980281703174114, 0.0027443876024335623]} +{"t": 1.8252, "q": [-0.1376713663339615, 0.009532837197184563, -0.005651379935443401, 0.31634944677352905, -0.1792365461587906, -0.01501474715769291, -0.07958462834358215, -0.022711437195539474, 0.01779782958328724, 0.32193994522094727, -0.25916776061058044, 0.018982132896780968, 0.0037095551379024982, 0.014525298029184341, 0.020455293357372284, 0.24592828750610352, 0.24659940600395203, -0.08385362476110458, 0.8381527662277222, -0.008580705150961876, 0.0009827064350247383, -0.0037031255196779966, 0.24413065612316132, -0.2598899006843567, 0.07819706946611404, 0.808803379535675, -0.007202519569545984, 0.0015100124292075634, 0.0027204190846532583]} +{"t": 1.8419, "q": [-0.1376713663339615, 0.009541360661387444, -0.005651379935443401, 0.31635797023773193, -0.17924535274505615, -0.015043186955153942, -0.07958462834358215, -0.02268587052822113, 0.017757654190063477, 0.32194846868515015, -0.25916776061058044, 0.018982132896780968, 0.0037899063900113106, 0.014532877132296562, 0.020440923050045967, 0.24594026803970337, 0.24661138653755188, -0.08387759327888489, 0.8381527662277222, -0.008568720892071724, 0.0009827064350247383, -0.0037151097785681486, 0.24411866068840027, -0.2599138915538788, 0.07819706946611404, 0.808803379535675, -0.007202519569545984, 0.0014980281703174114, 0.0027324033435434103]} +{"t": 1.8587, "q": [-0.1376628428697586, 0.009532837197184563, -0.005651379935443401, 0.31634944677352905, -0.1792408972978592, -0.015021884813904762, -0.07959315180778503, -0.02269439399242401, 0.017771044746041298, 0.32194846868515015, -0.2591720223426819, 0.018989384174346924, 0.003776514669880271, 0.014532853849232197, 0.02045046165585518, 0.24594026803970337, 0.24661138653755188, -0.08388957381248474, 0.8381407856941223, -0.008592689409852028, 0.0009827064350247383, -0.0037031255196779966, 0.24413065612316132, -0.25990188121795654, 0.07819706946611404, 0.808803379535675, -0.007202519569545984, 0.0015219965716823936, 0.0027324033435434103]} +{"t": 1.8755, "q": [-0.13764579594135284, 0.009524315595626831, -0.005651379935443401, 0.31634944677352905, -0.17923668026924133, -0.015028946101665497, -0.07957610487937927, -0.02269439399242401, 0.017757654190063477, 0.32193994522094727, -0.2591720223426819, 0.018989384174346924, 0.003803298342972994, 0.014525298029184341, 0.020455293357372284, 0.24595224857330322, 0.24659940600395203, -0.08385362476110458, 0.8381527662277222, -0.008556736633181572, 0.0009707222343422472, -0.0037270940374583006, 0.24413065612316132, -0.2598899006843567, 0.07822103798389435, 0.8088273406028748, -0.007190535310655832, 0.0014980281703174114, 0.0027324033435434103]} +{"t": 1.8922, "q": [-0.1376713663339615, 0.009524315595626831, -0.005651379935443401, 0.31634944677352905, -0.17923246324062347, -0.015036015771329403, -0.07960167527198792, -0.022702915593981743, 0.017771044746041298, 0.3219228982925415, -0.25917625427246094, 0.018996616825461388, 0.0037631227169185877, 0.014525298029184341, 0.020455293357372284, 0.24596424400806427, 0.24659940600395203, -0.08386560529470444, 0.8381527662277222, -0.008580705150961876, 0.0009827064350247383, -0.0037031255196779966, 0.24411866068840027, -0.25987792015075684, 0.07817310094833374, 0.8088153600692749, -0.007202519569545984, 0.0015100124292075634, 0.0027443876024335623]} +{"t": 1.9089, "q": [-0.1376628428697586, 0.009524315595626831, -0.005651379935443401, 0.31634944677352905, -0.17923668026924133, -0.015028946101665497, -0.07959315180778503, -0.022711437195539474, 0.01781122200191021, 0.3219228982925415, -0.25916776061058044, 0.018982132896780968, 0.0037497307639569044, 0.014540409669280052, 0.020445629954338074, 0.24594026803970337, 0.24661138653755188, -0.08386560529470444, 0.8381767272949219, -0.008568720892071724, 0.0009707222343422472, -0.0037151097785681486, 0.24411866068840027, -0.2598899006843567, 0.07819706946611404, 0.8088153600692749, -0.007202519569545984, 0.0014980281703174114, 0.0027324033435434103]} +{"t": 1.9258, "q": [-0.1376713663339615, 0.0095157939940691, -0.005651379935443401, 0.3163664937019348, -0.1792408972978592, -0.015021884813904762, -0.07960167527198792, -0.022702915593981743, 0.01778443716466427, 0.3219228982925415, -0.2591720223426819, 0.018989384174346924, 0.003736338810995221, 0.014555498957633972, 0.020445503294467926, 0.24595224857330322, 0.24661138653755188, -0.08384163677692413, 0.8381407856941223, -0.008592689409852028, 0.0009827064350247383, -0.0037390782963484526, 0.24413065612316132, -0.25990188121795654, 0.07819706946611404, 0.808803379535675, -0.00717855105176568, 0.0014980281703174114, 0.0027563718613237143]} +{"t": 1.9426, "q": [-0.1376713663339615, 0.009558403864502907, -0.005651379935443401, 0.31634944677352905, -0.17923668026924133, -0.015028946101665497, -0.0796101912856102, -0.022702915593981743, 0.01779782958328724, 0.32193994522094727, -0.2591720223426819, 0.018989384174346924, 0.0037497307639569044, 0.014532853849232197, 0.02045046165585518, 0.24595224857330322, 0.24661138653755188, -0.08384163677692413, 0.838164746761322, -0.008580705150961876, 0.0009587380336597562, -0.0037031255196779966, 0.24413065612316132, -0.25990188121795654, 0.07819706946611404, 0.808803379535675, -0.007202519569545984, 0.0015100124292075634, 0.0027443876024335623]} +{"t": 1.9593, "q": [-0.1376713663339615, 0.009524315595626831, -0.005637987982481718, 0.31634944677352905, -0.17923246324062347, -0.015036015771329403, -0.07960167527198792, -0.022702915593981743, 0.017771044746041298, 0.32190585136413574, -0.25917625427246094, 0.018996616825461388, 0.003776514669880271, 0.014532853849232197, 0.02045046165585518, 0.24594026803970337, 0.24661138653755188, -0.08384163677692413, 0.8381767272949219, -0.008580705150961876, 0.0009827064350247383, -0.0037031255196779966, 0.24414263665676117, -0.2599138915538788, 0.07819706946611404, 0.8088153600692749, -0.007214503362774849, 0.0014860439114272594, 0.0027443876024335623]} +{"t": 1.976, "q": [-0.1376713663339615, 0.009507272392511368, -0.005624596029520035, 0.31635797023773193, -0.1792408972978592, -0.015021884813904762, -0.07957610487937927, -0.022711437195539474, 0.017771044746041298, 0.3219314217567444, -0.2591720223426819, 0.018989384174346924, 0.0037631227169185877, 0.014540409669280052, 0.020445629954338074, 0.24591630697250366, 0.24659940600395203, -0.08385362476110458, 0.8381767272949219, -0.00860467366874218, 0.0009707222343422472, -0.0037270940374583006, 0.24414263665676117, -0.25990188121795654, 0.0782090574502945, 0.8088273406028748, -0.007190535310655832, 0.0015100124292075634, 0.0027324033435434103]} +{"t": 1.9927, "q": [-0.1376628428697586, 0.009541360661387444, -0.005624596029520035, 0.31634944677352905, -0.17923232913017273, -0.015021808445453644, -0.07959315180778503, -0.022711437195539474, 0.01779782958328724, 0.32194846868515015, -0.25916776061058044, 0.018982132896780968, 0.003776514669880271, 0.014532853849232197, 0.02045046165585518, 0.24592828750610352, 0.24661138653755188, -0.08385362476110458, 0.8381527662277222, -0.008580705150961876, 0.0009707222343422472, -0.0037151097785681486, 0.24413065612316132, -0.2598899006843567, 0.07819706946611404, 0.8088273406028748, -0.007190535310655832, 0.0015339808305725455, 0.0027443876024335623]} +{"t": 2.0095, "q": [-0.1376628428697586, 0.009524315595626831, -0.005651379935443401, 0.31634944677352905, -0.1792408972978592, -0.015021884813904762, -0.07961871474981308, -0.02268587052822113, 0.01782461255788803, 0.3219314217567444, -0.2591720223426819, 0.018989384174346924, 0.003776514669880271, 0.014532853849232197, 0.02045046165585518, 0.24592828750610352, 0.24661138653755188, -0.08385362476110458, 0.838164746761322, -0.008580705150961876, 0.0009946906939148903, -0.0037031255196779966, 0.24413065612316132, -0.2598899006843567, 0.07822103798389435, 0.8088153600692749, -0.007202519569545984, 0.0015100124292075634, 0.0027324033435434103]} +{"t": 2.0262, "q": [-0.13764579594135284, 0.009532837197184563, -0.005637987982481718, 0.31635797023773193, -0.17923246324062347, -0.015036015771329403, -0.07959315180778503, -0.022702915593981743, 0.01781122200191021, 0.3219314217567444, -0.2591637670993805, 0.01900370791554451, 0.0037631227169185877, 0.014532853849232197, 0.02045046165585518, 0.24594026803970337, 0.24661138653755188, -0.08384163677692413, 0.8381767272949219, -0.00860467366874218, 0.0009827064350247383, -0.0037031255196779966, 0.24411866068840027, -0.2598899006843567, 0.07819706946611404, 0.8088153600692749, -0.007190535310655832, 0.0015219965716823936, 0.0027443876024335623]} +{"t": 2.0429, "q": [-0.13763727247714996, 0.0095157939940691, -0.005651379935443401, 0.3163835406303406, -0.17923246324062347, -0.015036015771329403, -0.0796101912856102, -0.022702915593981743, 0.017771044746041298, 0.3219314217567444, -0.2591720223426819, 0.018989384174346924, 0.003816690295934677, 0.014540387317538261, 0.020455166697502136, 0.24594026803970337, 0.24658742547035217, -0.08382965624332428, 0.838164746761322, -0.008568720892071724, 0.0009946906939148903, -0.0036911412607878447, 0.24411866068840027, -0.25990188121795654, 0.07819706946611404, 0.8088153600692749, -0.007202519569545984, 0.0015339808305725455, 0.0027563718613237143]} +{"t": 2.0596, "q": [-0.1376628428697586, 0.009524315595626831, -0.005624596029520035, 0.3163323998451233, -0.17923246324062347, -0.015036015771329403, -0.0796101912856102, -0.022702915593981743, 0.017771044746041298, 0.3219314217567444, -0.25916776061058044, 0.018982132896780968, 0.003736338810995221, 0.014540387317538261, 0.020455166697502136, 0.24592828750610352, 0.24658742547035217, -0.08385362476110458, 0.8381767272949219, -0.008556736633181572, 0.0009946906939148903, -0.0037031255196779966, 0.24414263665676117, -0.2599138915538788, 0.07818508893251419, 0.808803379535675, -0.007190535310655832, 0.0015219965716823936, 0.0027563718613237143]} +{"t": 2.0764, "q": [-0.1376628428697586, 0.009532837197184563, -0.005651379935443401, 0.31634092330932617, -0.17923668026924133, -0.015028946101665497, -0.07960167527198792, -0.022702915593981743, 0.01778443716466427, 0.3219314217567444, -0.2591720223426819, 0.018989384174346924, 0.0037497307639569044, 0.014540409669280052, 0.020445629954338074, 0.24594026803970337, 0.24661138653755188, -0.08382965624332428, 0.8381767272949219, -0.008568720892071724, 0.0009707222343422472, -0.0037151097785681486, 0.24413065612316132, -0.25990188121795654, 0.07819706946611404, 0.808803379535675, -0.007202519569545984, 0.0015339808305725455, 0.0027204190846532583]} +{"t": 2.0931, "q": [-0.13763727247714996, 0.009532837197184563, -0.005651379935443401, 0.3163835406303406, -0.17923246324062347, -0.015036015771329403, -0.07958462834358215, -0.022702915593981743, 0.01781122200191021, 0.3219655156135559, -0.25917625427246094, 0.018996616825461388, 0.003776514669880271, 0.01454036496579647, 0.020464705303311348, 0.24596424400806427, 0.24659940600395203, -0.08385362476110458, 0.8381887078285217, -0.008556736633181572, 0.0009827064350247383, -0.0037151097785681486, 0.24411866068840027, -0.2599138915538788, 0.07819706946611404, 0.808803379535675, -0.007202519569545984, 0.0015579492319375277, 0.0027443876024335623]} +{"t": 2.11, "q": [-0.13764579594135284, 0.009507272392511368, -0.005624596029520035, 0.31635797023773193, -0.1792408972978592, -0.015021884813904762, -0.07957610487937927, -0.022702915593981743, 0.01779782958328724, 0.32193994522094727, -0.2591720223426819, 0.018989384174346924, 0.003803298342972994, 0.014540387317538261, 0.020455166697502136, 0.24594026803970337, 0.24659940600395203, -0.08384163677692413, 0.838164746761322, -0.008568720892071724, 0.0009707222343422472, -0.0037151097785681486, 0.24411866068840027, -0.2598899006843567, 0.07819706946611404, 0.8088153600692749, -0.007190535310655832, 0.0015339808305725455, 0.0027443876024335623]} +{"t": 2.1268, "q": [-0.13763727247714996, 0.009524315595626831, -0.005624596029520035, 0.31634944677352905, -0.17923668026924133, -0.015028946101665497, -0.07955905795097351, -0.022702915593981743, 0.01778443716466427, 0.321956992149353, -0.25917625427246094, 0.018996616825461388, 0.003803298342972994, 0.014532853849232197, 0.02045046165585518, 0.24592828750610352, 0.24659940600395203, -0.08385362476110458, 0.8381767272949219, -0.008568720892071724, 0.0009587380336597562, -0.0037270940374583006, 0.24411866068840027, -0.25990188121795654, 0.07818508893251419, 0.8088153600692749, -0.00717855105176568, 0.0015339808305725455, 0.0027324033435434103]} +{"t": 2.1435, "q": [-0.1376628428697586, 0.009532837197184563, -0.005624596029520035, 0.31635797023773193, -0.17923246324062347, -0.015036015771329403, -0.07956758141517639, -0.022711437195539474, 0.01779782958328724, 0.32194846868515015, -0.2591720223426819, 0.018989384174346924, 0.003776514669880271, 0.014547920785844326, 0.020459873601794243, 0.24592828750610352, 0.24659940600395203, -0.08385362476110458, 0.8381407856941223, -0.008556736633181572, 0.0009946906939148903, -0.0037031255196779966, 0.24413065612316132, -0.2598899006843567, 0.07819706946611404, 0.8088153600692749, -0.007190535310655832, 0.0015459650894626975, 0.0027324033435434103]} +{"t": 2.1602, "q": [-0.13765431940555573, 0.009532837197184563, -0.005651379935443401, 0.31635797023773193, -0.17923246324062347, -0.015036015771329403, -0.07956758141517639, -0.022702915593981743, 0.017757654190063477, 0.32194846868515015, -0.25917625427246094, 0.018996616825461388, 0.0037631227169185877, 0.014540409669280052, 0.020445629954338074, 0.24595224857330322, 0.24657543003559113, -0.08385362476110458, 0.8382006883621216, -0.008580705150961876, 0.0009707222343422472, -0.0037031255196779966, 0.24410668015480042, -0.25990188121795654, 0.07819706946611404, 0.808803379535675, -0.007202519569545984, 0.0015339808305725455, 0.0027324033435434103]} +{"t": 2.1769, "q": [-0.1376628428697586, 0.009524315595626831, -0.005651379935443401, 0.31634944677352905, -0.17923246324062347, -0.015036015771329403, -0.07955905795097351, -0.022711437195539474, 0.017757654190063477, 0.32193994522094727, -0.25916776061058044, 0.018982132896780968, 0.0037229470908641815, 0.014532853849232197, 0.02045046165585518, 0.24597622454166412, 0.24661138653755188, -0.08386560529470444, 0.8381887078285217, -0.008580705150961876, 0.0009827064350247383, -0.0037031255196779966, 0.24410668015480042, -0.25987792015075684, 0.07818508893251419, 0.8088273406028748, -0.007202519569545984, 0.0015219965716823936, 0.0027443876024335623]} +{"t": 2.1937, "q": [-0.1376628428697586, 0.009532837197184563, -0.005651379935443401, 0.3163750171661377, -0.17922811210155487, -0.01502887811511755, -0.07955905795097351, -0.022711437195539474, 0.017771044746041298, 0.3219655156135559, -0.25917625427246094, 0.018996616825461388, 0.003803298342972994, 0.014547943137586117, 0.02045033499598503, 0.24594026803970337, 0.24659940600395203, -0.08384163677692413, 0.8381887078285217, -0.008580705150961876, 0.0009827064350247383, -0.0037031255196779966, 0.24410668015480042, -0.25990188121795654, 0.07819706946611404, 0.8088153600692749, -0.007202519569545984, 0.0015339808305725455, 0.0027324033435434103]} +{"t": 2.2104, "q": [-0.1376202255487442, 0.009532837197184563, -0.005651379935443401, 0.31635797023773193, -0.17923232913017273, -0.015021808445453644, -0.07955905795097351, -0.02269439399242401, 0.017757654190063477, 0.321956992149353, -0.25915953516960144, 0.018996458500623703, 0.003776514669880271, 0.014547920785844326, 0.020459873601794243, 0.24594026803970337, 0.24659940600395203, -0.08387759327888489, 0.8382006883621216, -0.00860467366874218, 0.0009827064350247383, -0.0037031255196779966, 0.24413065612316132, -0.2599138915538788, 0.07819706946611404, 0.8088153600692749, -0.007190535310655832, 0.0015339808305725455, 0.0027324033435434103]} +{"t": 2.2271, "q": [-0.13762874901294708, 0.0095157939940691, -0.005651379935443401, 0.3163664937019348, -0.17923246324062347, -0.015036015771329403, -0.07954201847314835, -0.02269439399242401, 0.017757654190063477, 0.3219740390777588, -0.25916776061058044, 0.018982132896780968, 0.003803298342972994, 0.014532853849232197, 0.02045046165585518, 0.24594026803970337, 0.24659940600395203, -0.08388957381248474, 0.8382246494293213, -0.008580705150961876, 0.0009707222343422472, -0.0037151097785681486, 0.24414263665676117, -0.2598899006843567, 0.07818508893251419, 0.808803379535675, -0.007214503362774849, 0.0015339808305725455, 0.0027324033435434103]} +{"t": 2.2438, "q": [-0.13762874901294708, 0.009532837197184563, -0.005624596029520035, 0.31634944677352905, -0.17923246324062347, -0.015036015771329403, -0.07955054193735123, -0.02269439399242401, 0.01779782958328724, 0.3219740390777588, -0.2591720223426819, 0.018989384174346924, 0.003803298342972994, 0.014555498957633972, 0.020445503294467926, 0.24597622454166412, 0.24659940600395203, -0.08386560529470444, 0.8382126688957214, -0.008580705150961876, 0.0009946906939148903, -0.0037270940374583006, 0.24413065612316132, -0.2598899006843567, 0.07818508893251419, 0.8088153600692749, -0.007226487621665001, 0.0015339808305725455, 0.0027443876024335623]} +{"t": 2.2606, "q": [-0.13763727247714996, 0.009541360661387444, -0.005637987982481718, 0.31635797023773193, -0.1792408972978592, -0.015021884813904762, -0.07955054193735123, -0.02268587052822113, 0.017757654190063477, 0.321956992149353, -0.25917625427246094, 0.018996616825461388, 0.003776514669880271, 0.014532853849232197, 0.02045046165585518, 0.24595224857330322, 0.24661138653755188, -0.08387759327888489, 0.8382126688957214, -0.008556736633181572, 0.0009707222343422472, -0.0037270940374583006, 0.24413065612316132, -0.2598899006843567, 0.07822103798389435, 0.8088273406028748, -0.007214503362774849, 0.0015219965716823936, 0.0027324033435434103]} +{"t": 2.2773, "q": [-0.13762874901294708, 0.009532837197184563, -0.005651379935443401, 0.31635797023773193, -0.17923246324062347, -0.015036015771329403, -0.07954201847314835, -0.02269439399242401, 0.017757654190063477, 0.3219655156135559, -0.25916776061058044, 0.018982132896780968, 0.003776514669880271, 0.014555476605892181, 0.020455041900277138, 0.24594026803970337, 0.24657543003559113, -0.08386560529470444, 0.8382126688957214, -0.00860467366874218, 0.0009827064350247383, -0.0037270940374583006, 0.24416659772396088, -0.25990188121795654, 0.0782090574502945, 0.8088273406028748, -0.007214503362774849, 0.0015459650894626975, 0.0027324033435434103]} +{"t": 2.2941, "q": [-0.13762874901294708, 0.009566925466060638, -0.005651379935443401, 0.31634944677352905, -0.1792365461587906, -0.01501474715769291, -0.07957610487937927, -0.02268587052822113, 0.017771044746041298, 0.32198256254196167, -0.2591720223426819, 0.018989384174346924, 0.003803298342972994, 0.014540432952344418, 0.020436091348528862, 0.24594026803970337, 0.24657543003559113, -0.08387759327888489, 0.8382366299629211, -0.008592689409852028, 0.0009827064350247383, -0.0037270940374583006, 0.24414263665676117, -0.2598899006843567, 0.07822103798389435, 0.8088153600692749, -0.007202519569545984, 0.0015459650894626975, 0.0027324033435434103]} +{"t": 2.3108, "q": [-0.13764579594135284, 0.009532837197184563, -0.005664771888405085, 0.31635797023773193, -0.17923668026924133, -0.015028946101665497, -0.07955905795097351, -0.0226773489266634, 0.017771044746041298, 0.3219655156135559, -0.2591720223426819, 0.018989384174346924, 0.003776514669880271, 0.014555498957633972, 0.020445503294467926, 0.24594026803970337, 0.24658742547035217, -0.08386560529470444, 0.8382246494293213, -0.008592689409852028, 0.0009946906939148903, -0.0037270940374583006, 0.24413065612316132, -0.25990188121795654, 0.07818508893251419, 0.8088153600692749, -0.007202519569545984, 0.0015579492319375277, 0.0027324033435434103]} +{"t": 2.3276, "q": [-0.13767987489700317, 0.009558403864502907, -0.005651379935443401, 0.31635797023773193, -0.17923668026924133, -0.015028946101665497, -0.07955905795097351, -0.02269439399242401, 0.017771044746041298, 0.32194846868515015, -0.2591720223426819, 0.018989384174346924, 0.0037497307639569044, 0.014540387317538261, 0.020455166697502136, 0.24591630697250366, 0.24658742547035217, -0.08386560529470444, 0.8382246494293213, -0.008580705150961876, 0.0009827064350247383, -0.0037270940374583006, 0.24413065612316132, -0.25990188121795654, 0.07822103798389435, 0.8088153600692749, -0.007202519569545984, 0.0015579492319375277, 0.0027324033435434103]} +{"t": 2.3443, "q": [-0.13762874901294708, 0.009541360661387444, -0.005651379935443401, 0.3163750171661377, -0.17923668026924133, -0.015028946101665497, -0.07956758141517639, -0.02269439399242401, 0.017757654190063477, 0.321956992149353, -0.2591720223426819, 0.018989384174346924, 0.003776514669880271, 0.014532831497490406, 0.02045999839901924, 0.24592828750610352, 0.24658742547035217, -0.08384163677692413, 0.8382126688957214, -0.008556736633181572, 0.0009827064350247383, -0.0036911412607878447, 0.24413065612316132, -0.2599138915538788, 0.07818508893251419, 0.8088153600692749, -0.007202519569545984, 0.0015100124292075634, 0.0027324033435434103]} +{"t": 2.3611, "q": [-0.13765431940555573, 0.009566925466060638, -0.005624596029520035, 0.31634944677352905, -0.17923246324062347, -0.015036015771329403, -0.07955054193735123, -0.02268587052822113, 0.017757654190063477, 0.321956992149353, -0.25916776061058044, 0.018982132896780968, 0.003803298342972994, 0.014525298029184341, 0.020455293357372284, 0.24594026803970337, 0.24657543003559113, -0.08386560529470444, 0.8382246494293213, -0.008568720892071724, 0.0009827064350247383, -0.0037270940374583006, 0.24411866068840027, -0.25990188121795654, 0.07819706946611404, 0.8088153600692749, -0.007202519569545984, 0.0015219965716823936, 0.0027324033435434103]} +{"t": 2.3778, "q": [-0.1376628428697586, 0.009558403864502907, -0.005651379935443401, 0.31634944677352905, -0.17923246324062347, -0.015036015771329403, -0.07958462834358215, -0.0226773489266634, 0.017771044746041298, 0.32194846868515015, -0.2591720223426819, 0.018989384174346924, 0.003776514669880271, 0.014547965489327908, 0.02044079639017582, 0.24594026803970337, 0.24658742547035217, -0.08386560529470444, 0.8382126688957214, -0.00860467366874218, 0.0009707222343422472, -0.0037151097785681486, 0.24411866068840027, -0.25990188121795654, 0.07819706946611404, 0.8088153600692749, -0.007202519569545984, 0.0015219965716823936, 0.0027324033435434103]} +{"t": 2.3945, "q": [-0.1376713663339615, 0.009541360661387444, -0.005651379935443401, 0.31634944677352905, -0.1792408972978592, -0.015021884813904762, -0.07955905795097351, -0.02269439399242401, 0.01778443716466427, 0.3219655156135559, -0.2591720223426819, 0.018989384174346924, 0.0037631227169185877, 0.014525321312248707, 0.020445754751563072, 0.24594026803970337, 0.24661138653755188, -0.08384163677692413, 0.8382126688957214, -0.008580705150961876, 0.0009827064350247383, -0.0037151097785681486, 0.24413065612316132, -0.25990188121795654, 0.07822103798389435, 0.8088153600692749, -0.007202519569545984, 0.0015459650894626975, 0.0027324033435434103]} +{"t": 2.4112, "q": [-0.1376628428697586, 0.009541360661387444, -0.005651379935443401, 0.31635797023773193, -0.17923668026924133, -0.015028946101665497, -0.07958462834358215, -0.02269439399242401, 0.017771044746041298, 0.3219314217567444, -0.2591720223426819, 0.018989384174346924, 0.003803298342972994, 0.014540387317538261, 0.020455166697502136, 0.24592828750610352, 0.24663536250591278, -0.08385362476110458, 0.8382246494293213, -0.008580705150961876, 0.0010066749528050423, -0.0037151097785681486, 0.24411866068840027, -0.25990188121795654, 0.07822103798389435, 0.8088153600692749, -0.007214503362774849, 0.0015339808305725455, 0.0027324033435434103]} +{"t": 2.428, "q": [-0.13764579594135284, 0.009507272392511368, -0.005651379935443401, 0.31634944677352905, -0.17923668026924133, -0.015028946101665497, -0.07955905795097351, -0.02269439399242401, 0.017757654190063477, 0.32194846868515015, -0.25916802883148193, 0.019010942429304123, 0.003776514669880271, 0.014555498957633972, 0.020445503294467926, 0.24592828750610352, 0.24659940600395203, -0.08386560529470444, 0.8382126688957214, -0.008580705150961876, 0.0009707222343422472, -0.0037031255196779966, 0.24413065612316132, -0.25990188121795654, 0.07819706946611404, 0.8088153600692749, -0.007202519569545984, 0.0015339808305725455, 0.0027324033435434103]} +{"t": 2.4447, "q": [-0.13765431940555573, 0.009532837197184563, -0.005651379935443401, 0.3163664937019348, -0.1792408972978592, -0.015021884813904762, -0.07957610487937927, -0.02268587052822113, 0.01782461255788803, 0.3219314217567444, -0.25917625427246094, 0.018996616825461388, 0.003776514669880271, 0.014547920785844326, 0.020459873601794243, 0.24594026803970337, 0.24661138653755188, -0.08385362476110458, 0.8382246494293213, -0.008556736633181572, 0.0009827064350247383, -0.0037151097785681486, 0.24413065612316132, -0.2598899006843567, 0.07822103798389435, 0.8088153600692749, -0.007202519569545984, 0.0015339808305725455, 0.0027324033435434103]} +{"t": 2.4615, "q": [-0.13764579594135284, 0.009532837197184563, -0.005651379935443401, 0.3163664937019348, -0.1792408972978592, -0.015021884813904762, -0.07957610487937927, -0.02269439399242401, 0.01779782958328724, 0.3219314217567444, -0.25917625427246094, 0.018996616825461388, 0.003803298342972994, 0.014547965489327908, 0.02044079639017582, 0.24594026803970337, 0.24661138653755188, -0.08384163677692413, 0.8382126688957214, -0.008580705150961876, 0.0009827064350247383, -0.0037151097785681486, 0.24411866068840027, -0.25990188121795654, 0.0782090574502945, 0.8088273406028748, -0.007202519569545984, 0.0015579492319375277, 0.0027563718613237143]} +{"t": 2.4783, "q": [-0.13765431940555573, 0.009541360661387444, -0.005637987982481718, 0.3163664937019348, -0.17923232913017273, -0.015021808445453644, -0.07957610487937927, -0.022711437195539474, 0.01781122200191021, 0.3219314217567444, -0.2591720223426819, 0.018989384174346924, 0.003803298342972994, 0.014525298029184341, 0.020455293357372284, 0.24594026803970337, 0.24661138653755188, -0.08384163677692413, 0.8382246494293213, -0.008580705150961876, 0.0009827064350247383, -0.0037031255196779966, 0.24410668015480042, -0.2598899006843567, 0.0782090574502945, 0.8088273406028748, -0.007202519569545984, 0.0015339808305725455, 0.0027443876024335623]} +{"t": 2.495, "q": [-0.1376713663339615, 0.009532837197184563, -0.005651379935443401, 0.31634944677352905, -0.1792408972978592, -0.015021884813904762, -0.07957610487937927, -0.022702915593981743, 0.01781122200191021, 0.3219143748283386, -0.2591720223426819, 0.018989384174346924, 0.0038434739690274, 0.01451772078871727, 0.02046966180205345, 0.24594026803970337, 0.24658742547035217, -0.08384163677692413, 0.8382126688957214, -0.008556736633181572, 0.0009827064350247383, -0.0037031255196779966, 0.24413065612316132, -0.2598899006843567, 0.07822103798389435, 0.8088153600692749, -0.007202519569545984, 0.0015579492319375277, 0.0027443876024335623]} +{"t": 2.512, "q": [-0.1376713663339615, 0.009473182260990143, -0.005651379935443401, 0.31635797023773193, -0.1792365461587906, -0.01501474715769291, -0.07955905795097351, -0.022719958797097206, 0.01781122200191021, 0.3219228982925415, -0.25916776061058044, 0.018982132896780968, 0.003776514669880271, 0.014502585865557194, 0.020488863810896873, 0.24594026803970337, 0.24659940600395203, -0.08384163677692413, 0.8382126688957214, -0.008580705150961876, 0.0009946906939148903, -0.0037031255196779966, 0.2440827190876007, -0.25987792015075684, 0.0782090574502945, 0.8088273406028748, -0.007202519569545984, 0.0015699334908276796, 0.0027563718613237143]} +{"t": 2.5287, "q": [-0.1376713663339615, 0.009490227326750755, -0.005637987982481718, 0.31634944677352905, -0.1792408972978592, -0.015021884813904762, -0.07956758141517639, -0.02275404892861843, 0.01782461255788803, 0.3219228982925415, -0.2591720223426819, 0.018989384174346924, 0.003776514669880271, 0.014510187320411205, 0.020464954897761345, 0.24601218104362488, 0.24658742547035217, -0.08384163677692413, 0.8382366299629211, -0.00860467366874218, 0.0009827064350247383, -0.0037031255196779966, 0.2440587431192398, -0.25990188121795654, 0.07819706946611404, 0.8088273406028748, -0.007202519569545984, 0.0015579492319375277, 0.0027324033435434103]} +{"t": 2.5454, "q": [-0.1376628428697586, 0.009439093992114067, -0.005624596029520035, 0.3163750171661377, -0.17923668026924133, -0.015028946101665497, -0.07955905795097351, -0.022779613733291626, 0.017838004976511, 0.3219143748283386, -0.2591720223426819, 0.018989384174346924, 0.003736338810995221, 0.01450265385210514, 0.020460249856114388, 0.24598820507526398, 0.24659940600395203, -0.08385362476110458, 0.8382366299629211, -0.008568720892071724, 0.0009827064350247383, -0.0037270940374583006, 0.24404676258563995, -0.2598899006843567, 0.0782090574502945, 0.8088273406028748, -0.007202519569545984, 0.0015579492319375277, 0.0027443876024335623]} +{"t": 2.5622, "q": [-0.13768839836120605, 0.009430572390556335, -0.0055978125892579556, 0.3163835406303406, -0.17923668026924133, -0.015028946101665497, -0.07955905795097351, -0.02279665879905224, 0.017851397395133972, 0.3219314217567444, -0.2591720223426819, 0.018989384174346924, 0.003776514669880271, 0.014525298029184341, 0.020455293357372284, 0.24591630697250366, 0.24658742547035217, -0.08385362476110458, 0.8382366299629211, -0.008580705150961876, 0.0009827064350247383, -0.0037270940374583006, 0.2440587431192398, -0.25990188121795654, 0.07819706946611404, 0.8088153600692749, -0.007202519569545984, 0.0015459650894626975, 0.0027443876024335623]} +{"t": 2.5789, "q": [-0.1376628428697586, 0.009430572390556335, -0.005584420636296272, 0.316426157951355, -0.17922824621200562, -0.015043077059090137, -0.07954201847314835, -0.02281370386481285, 0.017838004976511, 0.321956992149353, -0.2591720223426819, 0.018989384174346924, 0.003776514669880271, 0.014517765492200851, 0.020450586453080177, 0.2458803504705429, 0.24659940600395203, -0.08385362476110458, 0.8382006883621216, -0.008580705150961876, 0.0009707222343422472, -0.0037270940374583006, 0.24410668015480042, -0.2598899006843567, 0.0782090574502945, 0.8088153600692749, -0.007202519569545984, 0.0015699334908276796, 0.0027683561202138662]} +{"t": 2.5957, "q": [-0.13763727247714996, 0.009422050788998604, -0.0055978125892579556, 0.3164772689342499, -0.17923246324062347, -0.015036015771329403, -0.07953349500894547, -0.02280518040060997, 0.01781122200191021, 0.3219740390777588, -0.2591637670993805, 0.01900370791554451, 0.0037497307639569044, 0.01450265385210514, 0.020460249856114388, 0.2458803504705429, 0.24659940600395203, -0.08384163677692413, 0.8382246494293213, -0.00860467366874218, 0.0009827064350247383, -0.0037151097785681486, 0.24416659772396088, -0.25990188121795654, 0.0782090574502945, 0.8088153600692749, -0.007202519569545984, 0.0015819177497178316, 0.0027443876024335623]} +{"t": 2.6124, "q": [-0.1376713663339615, 0.009413527324795723, -0.005584420636296272, 0.3164772689342499, -0.17924509942531586, -0.015014823526144028, -0.07953349500894547, -0.02281370386481285, 0.017864787951111794, 0.3219655156135559, -0.2591720223426819, 0.018989384174346924, 0.0037497307639569044, 0.01450260914862156, 0.020479325205087662, 0.24591630697250366, 0.24658742547035217, -0.08386560529470444, 0.8382246494293213, -0.008580705150961876, 0.0009827064350247383, -0.0037270940374583006, 0.24419057369232178, -0.25990188121795654, 0.0782090574502945, 0.8088153600692749, -0.007202519569545984, 0.0015699334908276796, 0.0027563718613237143]} +{"t": 2.6291, "q": [-0.13768839836120605, 0.009413527324795723, -0.005584420636296272, 0.31653693318367004, -0.17923232913017273, -0.015021808445453644, -0.07949940860271454, -0.022822225466370583, 0.017878180369734764, 0.32198256254196167, -0.2591720223426819, 0.018989384174346924, 0.003669379511848092, 0.014495075680315495, 0.020474618300795555, 0.24601218104362488, 0.24659940600395203, -0.08385362476110458, 0.838248610496521, -0.008580705150961876, 0.0009827064350247383, -0.0037270940374583006, 0.24421453475952148, -0.2598899006843567, 0.0782090574502945, 0.8088153600692749, -0.007190535310655832, 0.0015699334908276796, 0.0027563718613237143]} +{"t": 2.6459, "q": [-0.1376713663339615, 0.009413527324795723, -0.005584420636296272, 0.31653693318367004, -0.17923668026924133, -0.015028946101665497, -0.0795164480805397, -0.02280518040060997, 0.017838004976511, 0.32199108600616455, -0.2591637670993805, 0.01900370791554451, 0.0037497307639569044, 0.014495075680315495, 0.020474618300795555, 0.24603614211082458, 0.24659940600395203, -0.08384163677692413, 0.8382605910301208, -0.008592689409852028, 0.0009827064350247383, -0.0037270940374583006, 0.24417859315872192, -0.2598899006843567, 0.07822103798389435, 0.8088153600692749, -0.007190535310655832, 0.0015819177497178316, 0.0027443876024335623]} +{"t": 2.6626, "q": [-0.1376628428697586, 0.009387962520122528, -0.005584420636296272, 0.31663069128990173, -0.17923246324062347, -0.015036015771329403, -0.07945679873228073, -0.02285631373524666, 0.017864787951111794, 0.32199960947036743, -0.2591637670993805, 0.01900370791554451, 0.0037497307639569044, 0.01448751986026764, 0.02047945000231266, 0.24602416157722473, 0.24663536250591278, -0.08385362476110458, 0.838248610496521, -0.008556736633181572, 0.0009946906939148903, -0.0037270940374583006, 0.24414263665676117, -0.2598899006843567, 0.0782090574502945, 0.8088153600692749, -0.007190535310655832, 0.0015699334908276796, 0.0027443876024335623]} +{"t": 2.6793, "q": [-0.1376713663339615, 0.009387962520122528, -0.005584420636296272, 0.3166477084159851, -0.1792408972978592, -0.015021884813904762, -0.07946531474590302, -0.02285631373524666, 0.017838004976511, 0.3220081329345703, -0.2591720223426819, 0.018989384174346924, 0.003776514669880271, 0.014495053328573704, 0.020484156906604767, 0.24594026803970337, 0.24659940600395203, -0.08384163677692413, 0.8382605910301208, -0.008580705150961876, 0.0009827064350247383, -0.0037151097785681486, 0.24416659772396088, -0.2598899006843567, 0.07819706946611404, 0.8088273406028748, -0.007202519569545984, 0.0015819177497178316, 0.0027443876024335623]} +{"t": 2.696, "q": [-0.13764579594135284, 0.009370917454361916, -0.005584420636296272, 0.31667327880859375, -0.17923668026924133, -0.015028946101665497, -0.07941418886184692, -0.02292449027299881, 0.017864787951111794, 0.32203370332717896, -0.2591637670993805, 0.01900370791554451, 0.0037631227169185877, 0.014487543143332005, 0.020469913259148598, 0.24592828750610352, 0.24659940600395203, -0.08381766825914383, 0.8382366299629211, -0.008580705150961876, 0.0009827064350247383, -0.0037031255196779966, 0.24414263665676117, -0.2598899006843567, 0.07822103798389435, 0.808803379535675, -0.007202519569545984, 0.0015819177497178316, 0.0027443876024335623]} +{"t": 2.7127, "q": [-0.13764579594135284, 0.00933682918548584, -0.005584420636296272, 0.3166903257369995, -0.17923232913017273, -0.015021808445453644, -0.07941418886184692, -0.02292449027299881, 0.017864787951111794, 0.32204222679138184, -0.25915953516960144, 0.018996458500623703, 0.0037497307639569044, 0.01448751986026764, 0.02047945000231266, 0.24592828750610352, 0.24659940600395203, -0.08384163677692413, 0.8382605910301208, -0.008556736633181572, 0.0009827064350247383, -0.0037270940374583006, 0.24410668015480042, -0.25990188121795654, 0.07819706946611404, 0.8088153600692749, -0.007202519569545984, 0.0015459650894626975, 0.0027563718613237143]} +{"t": 2.7296, "q": [-0.13763727247714996, 0.009328307583928108, -0.005584420636296272, 0.31671589612960815, -0.17923232913017273, -0.015021808445453644, -0.07939714193344116, -0.02292449027299881, 0.017864787951111794, 0.32204222679138184, -0.25915953516960144, 0.018996458500623703, 0.0037631227169185877, 0.01447998732328415, 0.020474744960665703, 0.24595224857330322, 0.24661138653755188, -0.08384163677692413, 0.8382845520973206, -0.00860467366874218, 0.0009946906939148903, -0.0037270940374583006, 0.24413065612316132, -0.2598899006843567, 0.07819706946611404, 0.8088153600692749, -0.007202519569545984, 0.0015699334908276796, 0.0027683561202138662]} +{"t": 2.7464, "q": [-0.13765431940555573, 0.00933682918548584, -0.005584420636296272, 0.3167329430580139, -0.17923232913017273, -0.015021808445453644, -0.0793800950050354, -0.022915968671441078, 0.017838004976511, 0.3220592737197876, -0.2591720223426819, 0.018989384174346924, 0.0037497307639569044, 0.01450260914862156, 0.020479325205087662, 0.24594026803970337, 0.24661138653755188, -0.08382965624332428, 0.838248610496521, -0.008568720892071724, 0.0009827064350247383, -0.0037270940374583006, 0.24417859315872192, -0.2598899006843567, 0.0782090574502945, 0.8088153600692749, -0.007202519569545984, 0.0015819177497178316, 0.0027443876024335623]} +{"t": 2.7631, "q": [-0.1376713663339615, 0.00933682918548584, -0.005584420636296272, 0.31672441959381104, -0.17923246324062347, -0.015036015771329403, -0.07937157154083252, -0.02292449027299881, 0.017864787951111794, 0.32204222679138184, -0.25915953516960144, 0.018996458500623703, 0.003776514669880271, 0.014502585865557194, 0.020488863810896873, 0.24595224857330322, 0.24661138653755188, -0.08382965624332428, 0.8382845520973206, -0.008580705150961876, 0.0009946906939148903, -0.0037151097785681486, 0.24417859315872192, -0.25990188121795654, 0.0782090574502945, 0.8088153600692749, -0.00717855105176568, 0.0015819177497178316, 0.0027443876024335623]} +{"t": 2.7799, "q": [-0.1376628428697586, 0.009362395852804184, -0.005584420636296272, 0.31672441959381104, -0.17923668026924133, -0.015028946101665497, -0.07938861846923828, -0.02293301187455654, 0.017838004976511, 0.32203370332717896, -0.25915953516960144, 0.018996458500623703, 0.0038300822488963604, 0.014502585865557194, 0.020488863810896873, 0.24595224857330322, 0.24658742547035217, -0.08382965624332428, 0.8382845520973206, -0.008580705150961876, 0.0009827064350247383, -0.0037151097785681486, 0.24421453475952148, -0.2598899006843567, 0.0782090574502945, 0.8088153600692749, -0.007202519569545984, 0.0015939020086079836, 0.0027683561202138662]} +{"t": 2.7966, "q": [-0.1376628428697586, 0.00933682918548584, -0.0055978125892579556, 0.31671589612960815, -0.17923232913017273, -0.015021808445453644, -0.07941418886184692, -0.02293301187455654, 0.01782461255788803, 0.3220507502555847, -0.2591637670993805, 0.01900370791554451, 0.003776514669880271, 0.01451014168560505, 0.02048403210937977, 0.24595224857330322, 0.24661138653755188, -0.08384163677692413, 0.8382845520973206, -0.008580705150961876, 0.0009827064350247383, -0.0037270940374583006, 0.24420255422592163, -0.2598899006843567, 0.0782090574502945, 0.8088153600692749, -0.007190535310655832, 0.0015699334908276796, 0.0027443876024335623]} +{"t": 2.8133, "q": [-0.1376628428697586, 0.009387962520122528, -0.0056112040765583515, 0.3166988492012024, -0.17923668026924133, -0.015028946101665497, -0.07939714193344116, -0.022898923605680466, 0.01779782958328724, 0.32204222679138184, -0.2591720223426819, 0.018989384174346924, 0.0037497307639569044, 0.014532786794006824, 0.020479075610637665, 0.24594026803970337, 0.24659940600395203, -0.08384163677692413, 0.8382845520973206, -0.008568720892071724, 0.0009827064350247383, -0.0037270940374583006, 0.24425049126148224, -0.25990188121795654, 0.07822103798389435, 0.8088153600692749, -0.007190535310655832, 0.0015819177497178316, 0.0027443876024335623]} +{"t": 2.8302, "q": [-0.13765431940555573, 0.009422050788998604, -0.005651379935443401, 0.31667327880859375, -0.17923668026924133, -0.015028946101665497, -0.07940566539764404, -0.02285631373524666, 0.017757654190063477, 0.3220251798629761, -0.2591720223426819, 0.018989384174346924, 0.003776514669880271, 0.01450260914862156, 0.020479325205087662, 0.24594026803970337, 0.24659940600395203, -0.08386560529470444, 0.8382605910301208, -0.008568720892071724, 0.0009827064350247383, -0.0037151097785681486, 0.24422653019428253, -0.2598899006843567, 0.07822103798389435, 0.8088393211364746, -0.007202519569545984, 0.0015699334908276796, 0.0027443876024335623]} +{"t": 2.847, "q": [-0.13767987489700317, 0.009430572390556335, -0.005678163841366768, 0.3166391849517822, -0.17923232913017273, -0.015021808445453644, -0.07941418886184692, -0.022822225466370583, 0.017744261771440506, 0.32199960947036743, -0.25917625427246094, 0.018996616825461388, 0.003803298342972994, 0.014495053328573704, 0.020484156906604767, 0.24591630697250366, 0.24659940600395203, -0.08385362476110458, 0.8382725715637207, -0.008568720892071724, 0.0009827064350247383, -0.0037270940374583006, 0.24419057369232178, -0.25990188121795654, 0.0782090574502945, 0.8088153600692749, -0.007202519569545984, 0.0015939020086079836, 0.0027443876024335623]} +{"t": 2.8637, "q": [-0.13768839836120605, 0.009481705725193024, -0.005704947747290134, 0.3165965974330902, -0.17923232913017273, -0.015021808445453644, -0.07942270487546921, -0.022788137197494507, 0.017717478796839714, 0.3219740390777588, -0.2591720223426819, 0.018989384174346924, 0.003803298342972994, 0.01451014168560505, 0.02048403210937977, 0.24594026803970337, 0.24661138653755188, -0.08384163677692413, 0.8382845520973206, -0.008580705150961876, 0.0009946906939148903, -0.0037031255196779966, 0.24420255422592163, -0.2599138915538788, 0.07819706946611404, 0.8088273406028748, -0.007202519569545984, 0.0015939020086079836, 0.0027443876024335623]} +{"t": 2.8806, "q": [-0.13768839836120605, 0.009473182260990143, -0.005731731187552214, 0.31657102704048157, -0.17923668026924133, -0.015028946101665497, -0.07944827526807785, -0.022771092131733894, 0.017717478796839714, 0.32194846868515015, -0.25916776061058044, 0.018982132896780968, 0.0038300822488963604, 0.014502541162073612, 0.020507941022515297, 0.24589233100414276, 0.24659940600395203, -0.08385362476110458, 0.8382725715637207, -0.008580705150961876, 0.0009827064350247383, -0.0037151097785681486, 0.24419057369232178, -0.2598899006843567, 0.07819706946611404, 0.8088273406028748, -0.007190535310655832, 0.0015819177497178316, 0.0027443876024335623]} +{"t": 2.8974, "q": [-0.13769692182540894, 0.00945613905787468, -0.005731731187552214, 0.3165028393268585, -0.17923668026924133, -0.015028946101665497, -0.07944827526807785, -0.022771092131733894, 0.017704086378216743, 0.32189735770225525, -0.25917625427246094, 0.018996616825461388, 0.003776514669880271, 0.014562646858394146, 0.020612360909581184, 0.24590431153774261, 0.24658742547035217, -0.08385362476110458, 0.8382605910301208, -0.008580705150961876, 0.0009827064350247383, -0.0037151097785681486, 0.24419057369232178, -0.2598899006843567, 0.07819706946611404, 0.8088273406028748, -0.007202519569545984, 0.0015699334908276796, 0.0027443876024335623]} +{"t": 2.9141, "q": [-0.13769692182540894, 0.00945613905787468, -0.005731731187552214, 0.3164772689342499, -0.17922811210155487, -0.01502887811511755, -0.07946531474590302, -0.022779613733291626, 0.017704086378216743, 0.32184621691703796, -0.2591720223426819, 0.018989384174346924, 0.003816690295934677, 0.01459259819239378, 0.020707493647933006, 0.24592828750610352, 0.24661138653755188, -0.08384163677692413, 0.8382605910301208, -0.008580705150961876, 0.0009946906939148903, -0.0037151097785681486, 0.24413065612316132, -0.25990188121795654, 0.07819706946611404, 0.8088273406028748, -0.007202519569545984, 0.0015939020086079836, 0.0027324033435434103]} +{"t": 2.9309, "q": [-0.13770544528961182, 0.009422050788998604, -0.005731731187552214, 0.31640058755874634, -0.17924509942531586, -0.015014823526144028, -0.07946531474590302, -0.022822225466370583, 0.017690693959593773, 0.32184621691703796, -0.2591720223426819, 0.018989384174346924, 0.00388364982791245, 0.014584680087864399, 0.02086493745446205, 0.24590431153774261, 0.24661138653755188, -0.08384163677692413, 0.8382725715637207, -0.008568720892071724, 0.0009827064350247383, -0.0037151097785681486, 0.2440587431192398, -0.25987792015075684, 0.07818508893251419, 0.8088393211364746, -0.007202519569545984, 0.0015939020086079836, 0.0027443876024335623]} +{"t": 2.9476, "q": [-0.13770544528961182, 0.009362395852804184, -0.005731731187552214, 0.3163750171661377, -0.17923668026924133, -0.015028946101665497, -0.07946531474590302, -0.02285631373524666, 0.017704086378216743, 0.3218206465244293, -0.25917625427246094, 0.018996616825461388, 0.004044352564960718, 0.014614447951316833, 0.02103637531399727, 0.24592828750610352, 0.24659940600395203, -0.08381766825914383, 0.8382845520973206, -0.008580705150961876, 0.0009827064350247383, -0.0037270940374583006, 0.24393890798091888, -0.25990188121795654, 0.07822103798389435, 0.8088153600692749, -0.007190535310655832, 0.0015939020086079836, 0.0027443876024335623]} +{"t": 2.9643, "q": [-0.13773953914642334, 0.009345350787043571, -0.00571833923459053, 0.3163750171661377, -0.17923246324062347, -0.015036015771329403, -0.07945679873228073, -0.022907447069883347, 0.017690693959593773, 0.3217865526676178, -0.2591720223426819, 0.018989384174346924, 0.004218447022140026, 0.014591440558433533, 0.021193943917751312, 0.24594026803970337, 0.24661138653755188, -0.08381766825914383, 0.8382605910301208, -0.008568720892071724, 0.0009946906939148903, -0.0037510625552386045, 0.24383105337619781, -0.2598899006843567, 0.07819706946611404, 0.808803379535675, -0.007202519569545984, 0.0015819177497178316, 0.0027324033435434103]} +{"t": 2.981, "q": [-0.13774806261062622, 0.009362395852804184, -0.005731731187552214, 0.31634944677352905, -0.1792408972978592, -0.015021884813904762, -0.07944827526807785, -0.02292449027299881, 0.017690693959593773, 0.3217950761318207, -0.25917625427246094, 0.018996616825461388, 0.0045130690559744835, 0.014576034620404243, 0.021327605471014977, 0.24595224857330322, 0.24659940600395203, -0.08385362476110458, 0.8382845520973206, -0.008580705150961876, 0.0009827064350247383, -0.0037390782963484526, 0.243687242269516, -0.2599138915538788, 0.0782090574502945, 0.8088153600692749, -0.007190535310655832, 0.0015699334908276796, 0.0027443876024335623]} +{"t": 2.9978, "q": [-0.13779066503047943, 0.009294219315052032, -0.005731731187552214, 0.31634944677352905, -0.17923668026924133, -0.015028946101665497, -0.07944827526807785, -0.022967100143432617, 0.017677301540970802, 0.3217780292034149, -0.25917625427246094, 0.018996616825461388, 0.004713947419077158, 0.014568139798939228, 0.021465901285409927, 0.24590431153774261, 0.24658742547035217, -0.08386560529470444, 0.8382605910301208, -0.008556736633181572, 0.0009946906939148903, -0.0037270940374583006, 0.24356739223003387, -0.25987792015075684, 0.0782090574502945, 0.8088153600692749, -0.007202519569545984, 0.0016058861510828137, 0.0027324033435434103]} +{"t": 3.0147, "q": [-0.13781623542308807, 0.009294219315052032, -0.00571833923459053, 0.3163323998451233, -0.1792408972978592, -0.015021884813904762, -0.07944827526807785, -0.023009711876511574, 0.01766391098499298, 0.3217780292034149, -0.2591805160045624, 0.01900384947657585, 0.004888041876256466, 0.014560099691152573, 0.02164216712117195, 0.24591630697250366, 0.24659940600395203, -0.08385362476110458, 0.8382845520973206, -0.008568720892071724, 0.0009827064350247383, -0.003775030840188265, 0.24354343116283417, -0.25990188121795654, 0.07818508893251419, 0.808803379535675, -0.007202519569545984, 0.0015819177497178316, 0.0027443876024335623]} +{"t": 3.0316, "q": [-0.13779066503047943, 0.009285695850849152, -0.005731731187552214, 0.31634944677352905, -0.17923668026924133, -0.015028946101665497, -0.07946531474590302, -0.023060845211148262, 0.017677301540970802, 0.3217780292034149, -0.25917625427246094, 0.018996616825461388, 0.004995177034288645, 0.014597366563975811, 0.021798966452479362, 0.24543693661689758, 0.2446819245815277, -0.0839255303144455, 0.8401780724525452, -0.008640626445412636, 0.0007789746159687638, -0.003787015099078417, 0.24307604134082794, -0.25829601287841797, 0.0776338130235672, 0.8108886480331421, -0.007250456139445305, 0.0014980281703174114, 0.0027563718613237143]} +{"t": 3.0483, "q": [-0.1377991884946823, 0.009260131046175957, -0.005731731187552214, 0.31634944677352905, -0.1792408972978592, -0.015021884813904762, -0.07944827526807785, -0.023060845211148262, 0.01766391098499298, 0.32176950573921204, -0.2591720223426819, 0.018989384174346924, 0.005236231256276369, 0.01468771230429411, 0.021855276077985764, 0.2437831163406372, 0.2418895959854126, -0.08396147936582565, 0.8455590009689331, -0.008652610704302788, 0.0008388957940042019, -0.0037390782963484526, 0.24202142655849457, -0.2564144730567932, 0.07685483992099762, 0.8154306411743164, -0.007298393175005913, 0.0015699334908276796, 0.002624545246362686]} +{"t": 3.065, "q": [-0.13781623542308807, 0.009234564378857613, -0.005731731187552214, 0.31634092330932617, -0.17924509942531586, -0.015014823526144028, -0.07943122833967209, -0.023094933480024338, 0.01766391098499298, 0.3217524588108063, -0.25917625427246094, 0.018996616825461388, 0.005356758367270231, 0.014846029691398144, 0.021877622231841087, 0.24282437562942505, 0.23782694339752197, -0.0839494988322258, 0.8498613238334656, -0.008712531998753548, 0.0009827064350247383, -0.0037270940374583006, 0.24160197377204895, -0.25388580560684204, 0.07696269452571869, 0.8186783790588379, -0.007310377433896065, 0.0015939020086079836, 0.0026964505668729544]} +{"t": 3.0818, "q": [-0.13781623542308807, 0.009200476109981537, -0.005745123140513897, 0.31634944677352905, -0.17924509942531586, -0.015014823526144028, -0.07944827526807785, -0.023154588416218758, 0.017677301540970802, 0.3217524588108063, -0.25917625427246094, 0.018996616825461388, 0.005557636730372906, 0.015177486464381218, 0.02201741933822632, 0.24222515523433685, 0.23274563252925873, -0.08432100713253021, 0.8535404801368713, -0.008676579222083092, 0.0009707222343422472, -0.0037390782963484526, 0.24160197377204895, -0.2503264844417572, 0.07692674547433853, 0.8214467167854309, -0.007322361692786217, 0.0015939020086079836, 0.002672482281923294]} +{"t": 3.0985, "q": [-0.1377991884946823, 0.009234564378857613, -0.005731731187552214, 0.3163323998451233, -0.17924931645393372, -0.015007762238383293, -0.07944827526807785, -0.02317163161933422, 0.017677301540970802, 0.3217439353466034, -0.259172260761261, 0.019018175080418587, 0.00546389352530241, 0.015508619137108326, 0.022271504625678062, 0.2415899932384491, 0.22607041895389557, -0.08463259786367416, 0.8578788042068481, -0.008676579222083092, 0.0009587380336597562, -0.003775030840188265, 0.24148213863372803, -0.24612003564834595, 0.07693872600793839, 0.8245745897293091, -0.007394266780465841, 0.0015939020086079836, 0.002660498023033142]} +{"t": 3.1152, "q": [-0.13777361810207367, 0.009217519313097, -0.005731731187552214, 0.3163238763809204, -0.17923668026924133, -0.015028946101665497, -0.07946531474590302, -0.023188676685094833, 0.017690693959593773, 0.32176098227500916, -0.2591805160045624, 0.01900384947657585, 0.00542371766641736, 0.015809696167707443, 0.022488031536340714, 0.2409907877445221, 0.21816083788871765, -0.08470450341701508, 0.8625046610832214, -0.008676579222083092, 0.0009587380336597562, -0.003798999357968569, 0.24120649695396423, -0.24029569327831268, 0.07683087140321732, 0.8288530111312866, -0.007394266780465841, 0.0015819177497178316, 0.002660498023033142]} +{"t": 3.1322, "q": [-0.13779066503047943, 0.009234564378857613, -0.005731731187552214, 0.31631535291671753, -0.1792408972978592, -0.015021884813904762, -0.07943122833967209, -0.02316311001777649, 0.01765051856637001, 0.3217865526676178, -0.25918900966644287, 0.01901831664144993, 0.005450501572340727, 0.016005342826247215, 0.02264833264052868, 0.24010396003723145, 0.20993965864181519, -0.08490823209285736, 0.8677418231964111, -0.008676579222083092, 0.0010665960144251585, -0.003787015099078417, 0.2409907877445221, -0.23411184549331665, 0.07692674547433853, 0.8336706161499023, -0.007394266780465841, 0.0015819177497178316, 0.002672482281923294]} +{"t": 3.149, "q": [-0.13776510953903198, 0.009251607581973076, -0.00579869095236063, 0.31634092330932617, -0.17925378680229187, -0.015029064379632473, -0.07943122833967209, -0.023069366812705994, 0.017583558335900307, 0.3218206465244293, -0.25917625427246094, 0.018996616825461388, 0.005410325713455677, 0.016208413988351822, 0.022851476445794106, 0.23998410999774933, 0.20087958872318268, -0.0851479172706604, 0.8711572885513306, -0.008700547739863396, 0.0010905645322054625, -0.0038349521346390247, 0.24090689420700073, -0.22726884484291077, 0.0770585685968399, 0.8390874862670898, -0.007394266780465841, 0.0015939020086079836, 0.0026964505668729544]} +{"t": 3.1657, "q": [-0.13776510953903198, 0.009294219315052032, -0.005825474392622709, 0.3163323998451233, -0.17923668026924133, -0.015028946101665497, -0.07944827526807785, -0.023001190274953842, 0.017529990524053574, 0.32180359959602356, -0.25916802883148193, 0.019010942429304123, 0.005450501572340727, 0.01647939905524254, 0.023030055686831474, 0.23948077857494354, 0.1911603808403015, -0.08511196821928024, 0.8751121163368225, -0.008712531998753548, 0.0010785802733153105, -0.0038109836168587208, 0.24102674424648285, -0.22006632387638092, 0.07707054913043976, 0.8440849184989929, -0.007418235298246145, 0.0015939020086079836, 0.00264851376414299]} +{"t": 3.1825, "q": [-0.13776510953903198, 0.009319784119725227, -0.005865650251507759, 0.3163323998451233, -0.17923668026924133, -0.015028946101665497, -0.07944827526807785, -0.02299266681075096, 0.017543382942676544, 0.32184621691703796, -0.25918474793434143, 0.019011083990335464, 0.005289798602461815, 0.016787907108664513, 0.02322210557758808, 0.23925307393074036, 0.18093782663345337, -0.08530371636152267, 0.8787432909011841, -0.008700547739863396, 0.0010905645322054625, -0.0038349521346390247, 0.24105070531368256, -0.21286380290985107, 0.07716642320156097, 0.8491422533988953, -0.007406251039355993, 0.0016178704099729657, 0.0027084348257631063]} +{"t": 3.1993, "q": [-0.13777361810207367, 0.009311262518167496, -0.005865650251507759, 0.316426157951355, -0.1792408972978592, -0.015021884813904762, -0.07943122833967209, -0.022967100143432617, 0.017570167779922485, 0.3218632638454437, -0.2591637670993805, 0.01900370791554451, 0.005222839303314686, 0.01718689501285553, 0.02341323532164097, 0.2389414757490158, 0.17090703547000885, -0.08539959043264389, 0.8821947574615479, -0.008676579222083092, 0.0010785802733153105, -0.0038229678757488728, 0.24109864234924316, -0.20653614401817322, 0.07723832875490189, 0.8537561893463135, -0.007418235298246145, 0.0016298546688631177, 0.0027563718613237143]} +{"t": 3.216, "q": [-0.13776510953903198, 0.009302740916609764, -0.005852258298546076, 0.3164176344871521, -0.17924509942531586, -0.015014823526144028, -0.07942270487546921, -0.022975623607635498, 0.017556775361299515, 0.3219228982925415, -0.2591720223426819, 0.018989384174346924, 0.00508892023935914, 0.017457902431488037, 0.02354377694427967, 0.2383183091878891, 0.16021710634231567, -0.08560331910848618, 0.8867128491401672, -0.008700547739863396, 0.0010426276130601764, -0.0038109836168587208, 0.24130237102508545, -0.19971711933612823, 0.07713047415018082, 0.8582742810249329, -0.007394266780465841, 0.0016418388113379478, 0.0026964505668729544]} +{"t": 3.2327, "q": [-0.13776510953903198, 0.009294219315052032, -0.005825474392622709, 0.3164602220058441, -0.1792408972978592, -0.015021884813904762, -0.07943122833967209, -0.022975623607635498, 0.017596950754523277, 0.32193994522094727, -0.25916802883148193, 0.019010942429304123, 0.00508892023935914, 0.017608456313610077, 0.023618387058377266, 0.23800671100616455, 0.1511450558900833, -0.08550744503736496, 0.8895530700683594, -0.008676579222083092, 0.0010546118719503284, -0.0037270940374583006, 0.24139824509620667, -0.19347333908081055, 0.07715444266796112, 0.8621571660041809, -0.007406251039355993, 0.0016418388113379478, 0.0027204190846532583]} +{"t": 3.2494, "q": [-0.13774806261062622, 0.009302740916609764, -0.005865650251507759, 0.31658807396888733, -0.17923232913017273, -0.015021808445453644, -0.07939714193344116, -0.022975623607635498, 0.017596950754523277, 0.32198256254196167, -0.25917625427246094, 0.018996616825461388, 0.00516927195712924, 0.01775132492184639, 0.023735838010907173, 0.23765917122364044, 0.14117416739463806, -0.08525577932596207, 0.8919379711151123, -0.00866459496319294, 0.0009946906939148903, -0.0031158984638750553, 0.2416858673095703, -0.18665431439876556, 0.07721436023712158, 0.8662317991256714, -0.007406251039355993, 0.0016298546688631177, 0.0027204190846532583]} +{"t": 3.2663, "q": [-0.13773101568222046, 0.009294219315052032, -0.005919218063354492, 0.31658807396888733, -0.17923668026924133, -0.015028946101665497, -0.0793800950050354, -0.022975623607635498, 0.017543382942676544, 0.32204222679138184, -0.25916802883148193, 0.019010942429304123, 0.005410325713455677, 0.017819076776504517, 0.02376842126250267, 0.2368202805519104, 0.1339237242937088, -0.08483633399009705, 0.8945145606994629, -0.008640626445412636, 0.0009108011145144701, -0.0017137442482635379, 0.2416858673095703, -0.18033862113952637, 0.07717841118574142, 0.8708337545394897, -0.007406251039355993, 0.0016298546688631177, 0.0026964505668729544]} +{"t": 3.2831, "q": [-0.13776510953903198, 0.00933682918548584, -0.006012961268424988, 0.3166051208972931, -0.17923668026924133, -0.015028946101665497, -0.07935453206300735, -0.02292449027299881, 0.01747642457485199, 0.3220677971839905, -0.2591720223426819, 0.018989384174346924, 0.005637987982481718, 0.017849234864115715, 0.023768089711666107, 0.235897496342659, 0.1278117597103119, -0.08465656638145447, 0.8971151113510132, -0.008568720892071724, 0.000898816913831979, 0.0001917476038215682, 0.24143420159816742, -0.17402292788028717, 0.07719039171934128, 0.876430332660675, -0.007394266780465841, 0.0016178704099729657, 0.0027324033435434103]} +{"t": 3.2998, "q": [-0.13774806261062622, 0.009345350787043571, -0.006160271819680929, 0.3166391849517822, -0.17923668026924133, -0.015028946101665497, -0.07926078885793686, -0.02286483533680439, 0.017396071925759315, 0.3220677971839905, -0.2591720223426819, 0.018989384174346924, 0.00605313666164875, 0.01794705167412758, 0.023828906938433647, 0.23496271669864655, 0.12373712658882141, -0.08299075812101364, 0.8995479345321655, -0.00860467366874218, 0.0008868326549418271, 0.0025166873820126057, 0.2413862645626068, -0.168222576379776, 0.07719039171934128, 0.8818352222442627, -0.007394266780465841, 0.0016298546688631177, 0.0027204190846532583]} +{"t": 3.3166, "q": [-0.13773953914642334, 0.009353874251246452, -0.006347758695483208, 0.31668180227279663, -0.1792365461587906, -0.01501474715769291, -0.0791499987244606, -0.02285631373524666, 0.017248760908842087, 0.3220592737197876, -0.2591720223426819, 0.018989384174346924, 0.006307582836598158, 0.01813509687781334, 0.023964904248714447, 0.23364445567131042, 0.12257465720176697, -0.08269115537405014, 0.9027597308158875, -0.00860467366874218, 0.0007669904152862728, 0.0037390782963484526, 0.24130237102508545, -0.1633569747209549, 0.07715444266796112, 0.8869405388832092, -0.007394266780465841, 0.0016178704099729657, 0.002600576961413026]} +{"t": 3.3333, "q": [-0.13773953914642334, 0.00933682918548584, -0.0064013260416686535, 0.31666475534439087, -0.17923232913017273, -0.015021808445453644, -0.07909886538982391, -0.02286483533680439, 0.017168410122394562, 0.32203370332717896, -0.2591720223426819, 0.018989384174346924, 0.0064013260416686535, 0.01859433203935623, 0.024174099788069725, 0.2319546788930893, 0.12232298403978348, -0.08258329331874847, 0.906390905380249, -0.008652610704302788, 0.0006711166352033615, 0.0041585261933505535, 0.24132634699344635, -0.15907861292362213, 0.07677094638347626, 0.8907275199890137, -0.007454188074916601, 0.0016418388113379478, 0.0016418388113379478]} +{"t": 3.35, "q": [-0.13772249221801758, 0.009294219315052032, -0.006361150648444891, 0.3166903257369995, -0.17923668026924133, -0.015028946101665497, -0.07907330244779587, -0.022941535338759422, 0.017195194959640503, 0.32204222679138184, -0.2591720223426819, 0.018989384174346924, 0.006320974789559841, 0.01970176212489605, 0.024346597492694855, 0.23042069375514984, 0.12229901552200317, -0.08255932480096817, 0.9093510508537292, -0.008676579222083092, 0.0006591323763132095, 0.00430233683437109, 0.2409907877445221, -0.15545937418937683, 0.07592006772756577, 0.8941190838813782, -0.007478156592696905, 0.0016058861510828137, 0.0005392901366576552]} +{"t": 3.3667, "q": [-0.13769692182540894, 0.009234564378857613, -0.006280798930674791, 0.31667327880859375, -0.17923668026924133, -0.015028946101665497, -0.07907330244779587, -0.023077888414263725, 0.017288938164711, 0.3220251798629761, -0.25917214155197144, 0.01900377869606018, 0.006079920567572117, 0.021065620705485344, 0.0244491808116436, 0.22906647622585297, 0.12229901552200317, -0.08258329331874847, 0.9115800857543945, -0.008700547739863396, 0.0006471481756307185, 0.00430233683437109, 0.24024775624275208, -0.15421301126480103, 0.07482950389385223, 0.8970192670822144, -0.007514109369367361, 0.0015579492319375277, -0.0007789746159687638]} +{"t": 3.3835, "q": [-0.13764579594135284, 0.009243085980415344, -0.006200447678565979, 0.31671589612960815, -0.17923232913017273, -0.015021808445453644, -0.07904773205518723, -0.023265374824404716, 0.017396071925759315, 0.3220592737197876, -0.25917625427246094, 0.018996616825461388, 0.005865650251507759, 0.02261003851890564, 0.024681013077497482, 0.22738869488239288, 0.12210726737976074, -0.08265519887208939, 0.9139170050621033, -0.008700547739863396, 0.0006351639167405665, 0.004326305352151394, 0.2395646572113037, -0.15415309369564056, 0.07393068820238113, 0.8993801474571228, -0.007514109369367361, 0.0015339808305725455, -0.0018935075495392084]} +{"t": 3.4002, "q": [-0.13763727247714996, 0.009132297709584236, -0.006079920567572117, 0.3167755603790283, -0.17924076318740845, -0.015007685869932175, -0.07904773205518723, -0.023427294567227364, 0.01744963973760605, 0.3220592737197876, -0.25917625427246094, 0.018996616825461388, 0.005691555794328451, 0.023889996111392975, 0.024938052520155907, 0.22590264678001404, 0.12146012485027313, -0.08267916738986969, 0.9156666994094849, -0.008688563480973244, 0.0006471481756307185, 0.004326305352151394, 0.23825837671756744, -0.15420103073120117, 0.07274425029754639, 0.902567982673645, -0.007490140851587057, 0.0015100124292075634, -0.002588592702522874]} +{"t": 3.4169, "q": [-0.1376202255487442, 0.009123776108026505, -0.006012961268424988, 0.3168351948261261, -0.1792365461587906, -0.01501474715769291, -0.0790562555193901, -0.023478427901864052, 0.017529990524053574, 0.3220677971839905, -0.2591720223426819, 0.018989384174346924, 0.005651379935443401, 0.024717729538679123, 0.0252115186303854, 0.2245364487171173, 0.12054932117462158, -0.08269115537405014, 0.9171527624130249, -0.008652610704302788, 0.0006591323763132095, 0.004338289611041546, 0.23653265833854675, -0.15416507422924042, 0.07156979292631149, 0.9061871767044067, -0.007490140851587057, 0.0014980281703174114, -0.002972087822854519]} +{"t": 3.4336, "q": [-0.13760317862033844, 0.009149342775344849, -0.005986177362501621, 0.3168863356113434, -0.17923232913017273, -0.015021808445453644, -0.07907330244779587, -0.023486949503421783, 0.01762373559176922, 0.3220677971839905, -0.25916802883148193, 0.019010942429304123, 0.005624596029520035, 0.0254022516310215, 0.025491854175925255, 0.22309833765029907, 0.11961454898118973, -0.08270313590765, 0.9188784956932068, -0.008616657927632332, 0.0007070692954584956, 0.00441019469872117, 0.23457922041416168, -0.15428490936756134, 0.07113835960626602, 0.9100221395492554, -0.007478156592696905, 0.0015100124292075634, -0.003079945920035243]} +{"t": 3.4505, "q": [-0.13761170208454132, 0.009149342775344849, -0.006026353221386671, 0.3169289529323578, -0.17924076318740845, -0.015007685869932175, -0.07908182591199875, -0.02346990630030632, 0.017556775361299515, 0.32208484411239624, -0.25917625427246094, 0.018996616825461388, 0.005651379935443401, 0.025905653834342957, 0.025764459744095802, 0.22189991176128387, 0.11867978423833847, -0.08271512389183044, 0.9206761121749878, -0.008640626445412636, 0.0006711166352033615, 0.004781705792993307, 0.23219436407089233, -0.15417705476284027, 0.07077883183956146, 0.9137731790542603, -0.007490140851587057, 0.0014980281703174114, -0.0031158984638750553]} +{"t": 3.4672, "q": [-0.13763727247714996, 0.009072642773389816, -0.006012961268424988, 0.31699714064598083, -0.17924076318740845, -0.015007685869932175, -0.07908182591199875, -0.023367639631032944, 0.017516599968075752, 0.3220677971839905, -0.25917625427246094, 0.018996616825461388, 0.005731731187552214, 0.02623606100678444, 0.02597791887819767, 0.22036592662334442, 0.11774501204490662, -0.08271512389183044, 0.9233605861663818, -0.008616657927632332, 0.0006351639167405665, 0.005249090492725372, 0.22973759472370148, -0.15423697233200073, 0.07029946893453598, 0.9180275797843933, -0.007502125110477209, 0.0015100124292075634, -0.003175819758325815]} +{"t": 3.4839, "q": [-0.13762874901294708, 0.009115254506468773, -0.0060933125205338, 0.31709086894989014, -0.1792408972978592, -0.015021884813904762, -0.07909034192562103, -0.023265374824404716, 0.01746303215622902, 0.32207632064819336, -0.25917625427246094, 0.018996616825461388, 0.005812082905322313, 0.026461364701390266, 0.026116883382201195, 0.21860425174236298, 0.11761318892240524, -0.08269115537405014, 0.9260810017585754, -0.008640626445412636, 0.0005632585962302983, 0.0057404437102377415, 0.2262142300605774, -0.15416507422924042, 0.06976017355918884, 0.9230489730834961, -0.007478156592696905, 0.0015219965716823936, -0.0032597093377262354]} +{"t": 3.5006, "q": [-0.13763727247714996, 0.009191952645778656, -0.006160271819680929, 0.3171079158782959, -0.1792365461587906, -0.01501474715769291, -0.07909034192562103, -0.0231119766831398, 0.017382681369781494, 0.32207632064819336, -0.25917625427246094, 0.018996616825461388, 0.005865650251507759, 0.02676195651292801, 0.026264039799571037, 0.21689051389694214, 0.11782890558242798, -0.0827271044254303, 0.9277228713035583, -0.00860467366874218, 0.00041944789700210094, 0.005860286299139261, 0.2227148413658142, -0.15422499179840088, 0.06946057081222534, 0.928429901599884, -0.007526093628257513, 0.0015699334908276796, -0.0033435989171266556]} +{"t": 3.5174, "q": [-0.1376713663339615, 0.009217519313097, -0.006280798930674791, 0.3171420097351074, -0.1792408972978592, -0.015021884813904762, -0.07908182591199875, -0.02304380014538765, 0.017382681369781494, 0.32208484411239624, -0.25917625427246094, 0.018996616825461388, 0.00605313666164875, 0.02724369615316391, 0.026341715827584267, 0.21439778804779053, 0.11798469722270966, -0.08281099796295166, 0.9291250109672546, -0.008568720892071724, 0.00014381069922819734, 0.005836317781358957, 0.2205217331647873, -0.15422499179840088, 0.06920889765024185, 0.9313300848007202, -0.00755006168037653, 0.0015939020086079836, -0.003403519978746772]} +{"t": 3.5341, "q": [-0.1376628428697586, 0.009226040914654732, -0.006347758695483208, 0.3171505331993103, -0.17923232913017273, -0.015021808445453644, -0.07903069257736206, -0.023035278543829918, 0.01732911355793476, 0.3221018612384796, -0.25917625427246094, 0.018996616825461388, 0.006160271819680929, 0.027876680716872215, 0.026302875950932503, 0.21049092710018158, 0.11806859076023102, -0.08285893499851227, 0.9315098524093628, -0.008520783856511116, -0.0003834952076431364, 0.005776396486908197, 0.21858029067516327, -0.15423697233200073, 0.06890929490327835, 0.9332715272903442, -0.007574030198156834, 0.0015699334908276796, -0.0034274884965270758]} +{"t": 3.5508, "q": [-0.1376628428697586, 0.009166385978460312, -0.006320974789559841, 0.31713348627090454, -0.17923232913017273, -0.015021808445453644, -0.07902216911315918, -0.023077888414263725, 0.01732911355793476, 0.32209333777427673, -0.2591720223426819, 0.018989384174346924, 0.006079920567572117, 0.028615718707442284, 0.02615753933787346, 0.20702749490737915, 0.11808057129383087, -0.08285893499851227, 0.9337509274482727, -0.008472846820950508, -0.0007550062146037817, 0.005620601586997509, 0.21668677031993866, -0.1542729288339615, 0.06884937733411789, 0.935153067111969, -0.007562045939266682, 0.0015699334908276796, -0.003415504237636924]} +{"t": 3.5675, "q": [-0.13765431940555573, 0.009115254506468773, -0.006187055725604296, 0.3170652985572815, -0.17923232913017273, -0.015021808445453644, -0.07907330244779587, -0.023086410015821457, 0.01746303215622902, 0.3220677971839905, -0.2591805160045624, 0.01900384947657585, 0.005785298999398947, 0.029438242316246033, 0.025900229811668396, 0.20411533117294312, 0.11860787868499756, -0.08283496648073196, 0.9348174929618835, -0.008508799597620964, -0.0009587380336597562, 0.005225121974945068, 0.21449366211891174, -0.15428490936756134, 0.06874151527881622, 0.9372982382774353, -0.007586014457046986, 0.0015579492319375277, -0.003415504237636924]} +{"t": 3.5845, "q": [-0.13756057620048523, 0.009072642773389816, -0.006026353221386671, 0.31704825162887573, -0.17923232913017273, -0.015021808445453644, -0.07903069257736206, -0.023214241489768028, 0.017583558335900307, 0.3220592737197876, -0.25918474793434143, 0.019011083990335464, 0.00542371766641736, 0.030297864228487015, 0.025732319802045822, 0.2004002183675766, 0.12052535265684128, -0.08258329331874847, 0.9347575902938843, -0.008568720892071724, -0.0028762139845639467, 0.004637895151972771, 0.21251626312732697, -0.1543688029050827, 0.0686216726899147, 0.9405100345611572, -0.0076219672337174416, 0.0015579492319375277, -0.0034274884965270758]} +{"t": 3.6012, "q": [-0.137577623128891, 0.009089687839150429, -0.005959393456578255, 0.3170056641101837, -0.1792365461587906, -0.01501474715769291, -0.07902216911315918, -0.023427294567227364, 0.017583558335900307, 0.32204222679138184, -0.2591805160045624, 0.01900384947657585, 0.00542371766641736, 0.031226541846990585, 0.02534945122897625, 0.19506722688674927, 0.12289822846651077, -0.08219980448484421, 0.9345059394836426, -0.008700547739863396, -0.003775030840188265, 0.004086620640009642, 0.21092236042022705, -0.15446467697620392, 0.06856175512075424, 0.9439135193824768, -0.007586014457046986, 0.0015699334908276796, -0.003415504237636924]} +{"t": 3.618, "q": [-0.13758613169193268, 0.00909820944070816, -0.005932609550654888, 0.31695452332496643, -0.1792449653148651, -0.01500062458217144, -0.0790136456489563, -0.02370852418243885, 0.01766391098499298, 0.3220507502555847, -0.2591805160045624, 0.01900384947657585, 0.00546389352530241, 0.03238969296216965, 0.02484145201742649, 0.1883680522441864, 0.12575048208236694, -0.0818762257695198, 0.9343501329421997, -0.008796420879662037, -0.004793690051883459, 0.003523362334817648, 0.2087652087211609, -0.15446467697620392, 0.06847786158323288, 0.9486473202705383, -0.0076339514926075935, 0.0015339808305725455, -0.003487409558147192]} +{"t": 3.6349, "q": [-0.13758613169193268, 0.009081166237592697, -0.005865650251507759, 0.31695452332496643, -0.1792449653148651, -0.01500062458217144, -0.07900512218475342, -0.023989755660295486, 0.017717478796839714, 0.32204222679138184, -0.25916802883148193, 0.019010942429304123, 0.005356758367270231, 0.033530186861753464, 0.024357818067073822, 0.18233998119831085, 0.12868660688400269, -0.08184027671813965, 0.934326171875, -0.008832373656332493, -0.006219812668859959, 0.003187804017215967, 0.20665597915649414, -0.15454857051372528, 0.06844191253185272, 0.9522185921669006, -0.0076579200103878975, 0.0015339808305725455, -0.0036432044580578804]} +{"t": 3.6516, "q": [-0.13756057620048523, 0.009047077968716621, -0.0057719070464372635, 0.31695452332496643, -0.17924076318740845, -0.015007685869932175, -0.07898808270692825, -0.02430507354438305, 0.01779782958328724, 0.3220592737197876, -0.2591765224933624, 0.01902540773153305, 0.005437109619379044, 0.034564059227705, 0.024075450375676155, 0.17489778995513916, 0.1311313956975937, -0.08186424523591995, 0.934266209602356, -0.008832373656332493, -0.009096027351915836, 0.0029001825023442507, 0.20452278852462769, -0.15472833812236786, 0.0682741329073906, 0.9555981755256653, -0.007705857045948505, 0.0015100124292075634, -0.003882888937368989]} +{"t": 3.6683, "q": [-0.13761170208454132, 0.00897889956831932, -0.005745123140513897, 0.31698861718177795, -0.17924076318740845, -0.015007685869932175, -0.07898808270692825, -0.02461186982691288, 0.01782461255788803, 0.32203370332717896, -0.2591807544231415, 0.019032640382647514, 0.005651379935443401, 0.035575807094573975, 0.02374003455042839, 0.1669043004512787, 0.13309679925441742, -0.08181630820035934, 0.9341703653335571, -0.008892294950783253, -0.012116051279008389, 0.002576608443632722, 0.20241355895996094, -0.1549919843673706, 0.0679745227098465, 0.9595769047737122, -0.007693872787058353, 0.0015219965716823936, -0.004086620640009642]} +{"t": 3.6852, "q": [-0.13763727247714996, 0.008936289697885513, -0.005731731187552214, 0.31698861718177795, -0.17923642694950104, -0.01500056590884924, -0.07899659872055054, -0.02491014264523983, 0.01781122200191021, 0.32203370332717896, -0.2591765224933624, 0.01902540773153305, 0.005624596029520035, 0.03627149388194084, 0.023344356566667557, 0.16146346926689148, 0.13523000478744507, -0.0818043202161789, 0.9339905977249146, -0.008976184763014317, -0.015867114067077637, 0.002253034384921193, 0.1998009979724884, -0.15527960658073425, 0.06779476255178452, 0.9636635184288025, -0.00771784083917737, 0.0014980281703174114, -0.0041944789700210094]} +{"t": 3.7029, "q": [-0.13759465515613556, 0.008944811299443245, -0.005651379935443401, 0.31703972816467285, -0.17924076318740845, -0.015007685869932175, -0.07896251231431961, -0.025165807455778122, 0.017864787951111794, 0.3220251798629761, -0.2591807544231415, 0.019032640382647514, 0.005812082905322313, 0.036770403385162354, 0.02308615855872631, 0.15645405650138855, 0.1369437426328659, -0.0818043202161789, 0.9310544729232788, -0.009215869009494781, -0.02189517952501774, 0.0018216022290289402, 0.19803932309150696, -0.15562714636325836, 0.06763897091150284, 0.9672947525978088, -0.00771784083917737, 0.0014740596525371075, -0.004206463228911161]} +{"t": 3.7196, "q": [-0.13756057620048523, 0.00885959155857563, -0.005678163841366768, 0.3170652985572815, -0.17923207581043243, -0.01499344501644373, -0.07877502590417862, -0.02545555867254734, 0.01782461255788803, 0.3220507502555847, -0.259176641702652, 0.019039802253246307, 0.0062272315844893456, 0.03736830875277519, 0.02269681729376316, 0.1478014439344406, 0.1387174129486084, -0.08176837116479874, 0.925517737865448, -0.009371664375066757, -0.029049761593341827, 0.0014381069922819734, 0.19596605002880096, -0.1561424732208252, 0.06749515980482101, 0.9711896181106567, -0.007705857045948505, 0.0015219965716823936, -0.00424241553992033]} +{"t": 3.7365, "q": [-0.1375690996646881, 0.008825501427054405, -0.005731731187552214, 0.3171164393424988, -0.179244726896286, -0.014972252771258354, -0.07868128269910812, -0.02568565495312214, 0.017757654190063477, 0.3220251798629761, -0.2591768801212311, 0.01906859315931797, 0.006454893853515387, 0.03801142796874046, 0.022305918857455254, 0.14127004146575928, 0.13972407579421997, -0.08175638318061829, 0.9197293519973755, -0.009419601410627365, -0.036863476037979126, 0.0012463594321161509, 0.19452793896198273, -0.15656191110610962, 0.06741126626729965, 0.9730711579322815, -0.0076818885281682014, 0.0015459650894626975, -0.004254399798810482]} +{"t": 3.7532, "q": [-0.13760317862033844, 0.008723236620426178, -0.005704947747290134, 0.3172442615032196, -0.17922353744506836, -0.014993386343121529, -0.0786471962928772, -0.025890186429023743, 0.017771044746041298, 0.32207632064819336, -0.259172648191452, 0.019061360508203506, 0.006937001831829548, 0.038797568529844284, 0.02193557098507881, 0.13296498358249664, 0.14033527672290802, -0.08178035169839859, 0.913569450378418, -0.009443569928407669, -0.04689427465200424, 0.0009827064350247383, 0.19319769740104675, -0.157017320394516, 0.0673753172159195, 0.9741017818450928, -0.00771784083917737, 0.0015339808305725455, -0.004314321093261242]} +{"t": 3.7699, "q": [-0.1376628428697586, 0.008689148351550102, -0.0057719070464372635, 0.31732097268104553, -0.17923171818256378, -0.014950891956686974, -0.07856197655200958, -0.026069151237607002, 0.017744261771440506, 0.3221103847026825, -0.25915589928627014, 0.019061218947172165, 0.00743250222876668, 0.039727456867694855, 0.021499497815966606, 0.12475578486919403, 0.1405150443315506, -0.08174440264701843, 0.9064748287200928, -0.00953944306820631, -0.054743941873311996, 0.0007190534961409867, 0.19172362983226776, -0.1574367731809616, 0.06730341166257858, 0.9762110114097595, -0.007741809356957674, 0.0015579492319375277, -0.004326305352151394]} +{"t": 3.7867, "q": [-0.13763727247714996, 0.008535750210285187, -0.005812082905322313, 0.31740617752075195, -0.17923183739185333, -0.014965073205530643, -0.07851936668157578, -0.026214027777314186, 0.017730869352817535, 0.3221103847026825, -0.2591519057750702, 0.019082793965935707, 0.007512853480875492, 0.04069624841213226, 0.02090424858033657, 0.11768509447574615, 0.14046710729599, -0.08173241466283798, 0.8997037410736084, -0.009982859715819359, -0.06439124047756195, 0.0004074636672157794, 0.19012972712516785, -0.15770041942596436, 0.06719554960727692, 0.9782723188400269, -0.007741809356957674, 0.0015459650894626975, -0.004350273869931698]} +{"t": 3.8034, "q": [-0.13756057620048523, 0.0085527952760458, -0.0057719070464372635, 0.3175169825553894, -0.1792147308588028, -0.014964964240789413, -0.07844266295433044, -0.0262992475181818, 0.01782461255788803, 0.3221189081668854, -0.2591477930545807, 0.0190899558365345, 0.00739232636988163, 0.04178616777062416, 0.020239034667611122, 0.10970360040664673, 0.14047908782958984, -0.08175638318061829, 0.8915184736251831, -0.0103783393278718, -0.07402656227350235, 0.000215716048842296, 0.1873973309993744, -0.15797606110572815, 0.06718356907367706, 0.9809927344322205, -0.007753793615847826, 0.0015459650894626975, -0.004386226646602154]} +{"t": 3.8201, "q": [-0.13750091195106506, 0.008544271811842918, -0.00571833923459053, 0.31753402948379517, -0.1792231649160385, -0.014950833283364773, -0.07840005308389664, -0.026341859251260757, 0.017878180369734764, 0.3221103847026825, -0.2591354250907898, 0.01911144331097603, 0.007164664100855589, 0.042807210236787796, 0.01975060999393463, 0.1020217090845108, 0.14052702486515045, -0.0818043202161789, 0.8830217123031616, -0.010450243949890137, -0.0848722830414772, 9.58738019107841e-05, 0.18464095890522003, -0.15813185274600983, 0.06714761257171631, 0.9850673675537109, -0.007765777874737978, 0.0015459650894626975, -0.004458131734281778]} +{"t": 3.8369, "q": [-0.13738161325454712, 0.008518707007169724, -0.005704947747290134, 0.31762775778770447, -0.17921461164951324, -0.014950782991945744, -0.07834039628505707, -0.02635890245437622, 0.017918355762958527, 0.3221870958805084, -0.25913968682289124, 0.019118675962090492, 0.007218231912702322, 0.043787091970443726, 0.019686726853251457, 0.09425593167543411, 0.1404910683631897, -0.08184027671813965, 0.8759869337081909, -0.010450243949890137, -0.09402823448181152, -2.3968450477696024e-05, 0.18225610256195068, -0.1583355814218521, 0.067123644053936, 0.9891180396080017, -0.007741809356957674, 0.0015219965716823936, -0.004542021546512842]} +{"t": 3.8536, "q": [-0.13744978606700897, 0.008544271811842918, -0.0057719070464372635, 0.31772151589393616, -0.17920170724391937, -0.014943585731089115, -0.07833188027143478, -0.02635890245437622, 0.017851397395133972, 0.3222808241844177, -0.25913968682289124, 0.019118675962090492, 0.007405718322843313, 0.04472092539072037, 0.019728822633624077, 0.08627443760633469, 0.1404431313276291, -0.08188821375370026, 0.8673583269119263, -0.0103783393278718, -0.10263290256261826, -8.388957940042019e-05, 0.1803266406059265, -0.158587247133255, 0.0670757070183754, 0.9926653504371643, -0.007741809356957674, 0.0015100124292075634, -0.004673847928643227]} +{"t": 3.8704, "q": [-0.1374327391386032, 0.008544271811842918, -0.005865650251507759, 0.3177470862865448, -0.1791885793209076, -0.014908043667674065, -0.07830630987882614, -0.026341859251260757, 0.017771044746041298, 0.3222978711128235, -0.2591354250907898, 0.01911144331097603, 0.007445894181728363, 0.04559437185525894, 0.019791264086961746, 0.07905993610620499, 0.14063487946987152, -0.08194813132286072, 0.8592929244041443, -0.010330402292311192, -0.11311910301446915, -0.00017976337403524667, 0.17876869440078735, -0.15887486934661865, 0.06691991537809372, 0.9949184060096741, -0.007741809356957674, 0.0015219965716823936, -0.004781705792993307]} +{"t": 3.8871, "q": [-0.13740716874599457, 0.008527228608727455, -0.0058388663455843925, 0.3177556097507477, -0.17918846011161804, -0.014893854036927223, -0.07830630987882614, -0.026265159249305725, 0.01778443716466427, 0.32231491804122925, -0.25913119316101074, 0.019104208797216415, 0.007405718322843313, 0.046701349318027496, 0.019860872998833656, 0.07207313179969788, 0.14150972664356232, -0.08197209984064102, 0.8493220210075378, -0.010210559703409672, -0.1230899766087532, -0.00023968450841493905, 0.17752233147621155, -0.15936622023582458, 0.06678808480501175, 0.9969676733016968, -0.007741809356957674, 0.0014980281703174114, -0.004817658569663763]} +{"t": 3.904, "q": [-0.13742421567440033, 0.008527228608727455, -0.005865650251507759, 0.3177044689655304, -0.17918002605438232, -0.014907984994351864, -0.07834039628505707, -0.026222549378871918, 0.01779782958328724, 0.32230639457702637, -0.25913119316101074, 0.019104208797216415, 0.00735215051099658, 0.04795209690928459, 0.019806193187832832, 0.06529005616903305, 0.1423126757144928, -0.08199606835842133, 0.8402979373931885, -0.01019857544451952, -0.13400760293006897, -0.0003954794374294579, 0.17655161023139954, -0.1599894016981125, 0.06671617925167084, 0.9989331364631653, -0.00771784083917737, 0.0014860439114272594, -0.004853611346334219]} +{"t": 3.9209, "q": [-0.13740716874599457, 0.008561316877603531, -0.005852258298546076, 0.3177044689655304, -0.17918002605438232, -0.014907984994351864, -0.07834039628505707, -0.026205504313111305, 0.01779782958328724, 0.3222978711128235, -0.25913968682289124, 0.019118675962090492, 0.007325367070734501, 0.049404919147491455, 0.01988298073410988, 0.05734451860189438, 0.1431635618209839, -0.08207996189594269, 0.8313097357749939, -0.010174606926739216, -0.14252838492393494, -0.0006111955153755844, 0.17574866116046906, -0.16075639426708221, 0.06659633666276932, 1.0007426738739014, -0.007753793615847826, 0.0014620755100622773, -0.004889564123004675]} +{"t": 3.9377, "q": [-0.13741569221019745, 0.008569838479161263, -0.005865650251507759, 0.31767037510871887, -0.17918424308300018, -0.01490092370659113, -0.07838300615549088, -0.026196982711553574, 0.01778443716466427, 0.3222808241844177, -0.2591354250907898, 0.01911144331097603, 0.007338759023696184, 0.050917334854602814, 0.02003319188952446, 0.04986635968089104, 0.14364291727542877, -0.08206797391176224, 0.8233522176742554, -0.010210559703409672, -0.15331418812274933, -0.000874848454259336, 0.17480191588401794, -0.16140355169773102, 0.06644054502248764, 1.0029598474502563, -0.007741809356957674, 0.0014620755100622773, -0.004889564123004675]} +{"t": 3.9544, "q": [-0.1374412626028061, 0.008561316877603531, -0.0058388663455843925, 0.31754255294799805, -0.17918424308300018, -0.01490092370659113, -0.07843413949012756, -0.026196982711553574, 0.01781122200191021, 0.3222041428089142, -0.2591271996498108, 0.019125767052173615, 0.007231623865664005, 0.05262522026896477, 0.02014590986073017, 0.043287020176649094, 0.1441342830657959, -0.08203202486038208, 0.8151909708976746, -0.010270480997860432, -0.1634528487920761, -0.0011624698527157307, 0.1739630103111267, -0.16199077665805817, 0.06624879688024521, 1.00532066822052, -0.007705857045948505, 0.0014261228498071432, -0.0049255164340138435]} +{"t": 3.9713, "q": [-0.1374412626028061, 0.008569838479161263, -0.005852258298546076, 0.3174402713775635, -0.17917990684509277, -0.014893803745508194, -0.07847674936056137, -0.026188461109995842, 0.01781122200191021, 0.32217857241630554, -0.2591354250907898, 0.01911144331097603, 0.007231623865664005, 0.0542365238070488, 0.020123647525906563, 0.037654437124729156, 0.14462563395500183, -0.08205599337816238, 0.805663526058197, -0.01031841803342104, -0.17405888438224792, -0.0015459650894626975, 0.17374730110168457, -0.16268585622310638, 0.06603308022022247, 1.006794810295105, -0.007741809356957674, 0.0014021543320268393, -0.005021390505135059]} +{"t": 3.988, "q": [-0.13740716874599457, 0.008561316877603531, -0.0058388663455843925, 0.31721869111061096, -0.17917990684509277, -0.014893803745508194, -0.07848527282476425, -0.026214027777314186, 0.017838004976511, 0.32207632064819336, -0.25914815068244934, 0.01913314126431942, 0.007378934416919947, 0.0559229776263237, 0.020077642053365707, 0.03238137811422348, 0.14511698484420776, -0.08197209984064102, 0.795800507068634, -0.010522149503231049, -0.18307103216648102, -0.0020013656467199326, 0.17374730110168457, -0.16348880529403687, 0.06582935154438019, 1.0078374147415161, -0.00771784083917737, 0.0013781859306618571, -0.005117264110594988]} +{"t": 4.0047, "q": [-0.13738161325454712, 0.008544271811842918, -0.005865650251507759, 0.317099392414093, -0.17918412387371063, -0.014886733144521713, -0.07847674936056137, -0.026282204315066338, 0.017744261771440506, 0.3220081329345703, -0.2591356635093689, 0.019140232354402542, 0.0074860695749521255, 0.057787150144577026, 0.020290318876504898, 0.027216175571084023, 0.14577612280845642, -0.08176837116479874, 0.7846072316169739, -0.011001518927514553, -0.19419237971305847, -0.0024567660875618458, 0.17365142703056335, -0.16459134221076965, 0.06564958393573761, 1.009491205215454, -0.007705857045948505, 0.0013542174128815532, -0.005201153922826052]} +{"t": 4.0217, "q": [-0.13740716874599457, 0.008527228608727455, -0.005892434157431126, 0.31703120470046997, -0.17919279634952545, -0.014900973998010159, -0.07845118641853333, -0.026333335787057877, 0.017717478796839714, 0.32193994522094727, -0.25914815068244934, 0.01913314126431942, 0.00799496192485094, 0.05967039242386818, 0.020771512761712074, 0.02177533693611622, 0.1466030329465866, -0.08170844614505768, 0.7753793597221375, -0.011936288326978683, -0.20493024587631226, -0.002948119305074215, 0.17351959645748138, -0.16590961813926697, 0.06546982377767563, 1.0105098485946655, -0.007693872787058353, 0.001330249011516571, -0.005249090492725372]} +{"t": 4.0385, "q": [-0.13750091195106506, 0.008476095274090767, -0.006012961268424988, 0.31699714064598083, -0.1791926771402359, -0.014886792749166489, -0.07846823334693909, -0.026401514187455177, 0.017610343173146248, 0.3219143748283386, -0.2591524124145508, 0.019140392541885376, 0.008852043189108372, 0.06173079460859299, 0.02149127796292305, 0.01599894091486931, 0.1471782773733139, -0.0812290757894516, 0.765552282333374, -0.013290505856275558, -0.21506890654563904, -0.0033435989171266556, 0.17337578535079956, -0.16745558381080627, 0.0653260126709938, 1.0119479894638062, -0.0076818885281682014, 0.001294296351261437, -0.005273059010505676]} +{"t": 4.0552, "q": [-0.13760317862033844, 0.008459052070975304, -0.006160271819680929, 0.31699714064598083, -0.1791670024394989, -0.014886606484651566, -0.07848527282476425, -0.026520824059844017, 0.01747642457485199, 0.3219143748283386, -0.25914815068244934, 0.01913314126431942, 0.009628772735595703, 0.06377385556697845, 0.022322554141283035, 0.010893660597503185, 0.1474059671163559, -0.08046209067106247, 0.7548863291740417, -0.015783224254846573, -0.22530344128608704, -0.0038109836168587208, 0.17332784831523895, -0.16928917169570923, 0.0652541071176529, 1.0124512910842896, -0.0076699042692780495, 0.001306280493736267, -0.005249090492725372]} +{"t": 4.072, "q": [-0.13768839836120605, 0.008399397134780884, -0.006294190883636475, 0.31699714064598083, -0.17916278541088104, -0.0148936677724123, -0.07845118641853333, -0.026614567264914513, 0.017355896532535553, 0.32184621691703796, -0.2591482996940613, 0.01914755441248417, 0.010151056572794914, 0.0657075047492981, 0.022769706323742867, 0.007046724669635296, 0.14760969579219818, -0.07864048331975937, 0.7418834567070007, -0.018251974135637283, -0.23632891476154327, -0.004278368316590786, 0.17330388724803925, -0.17100290954113007, 0.06508632749319077, 1.0127029418945312, -0.0076699042692780495, 0.001306280493736267, -0.005261074751615524]} +{"t": 4.0888, "q": [-0.1376713663339615, 0.008407918736338615, -0.006320974789559841, 0.31699714064598083, -0.1791667640209198, -0.01485823467373848, -0.07845118641853333, -0.026691265404224396, 0.01732911355793476, 0.3218376934528351, -0.2591441869735718, 0.019154716283082962, 0.010700124315917492, 0.06755360215902328, 0.022961672395467758, 0.0038229678757488728, 0.14778946340084076, -0.07571633160114288, 0.730055034160614, -0.02027730830013752, -0.24697090685367584, -0.004757737275213003, 0.1733638048171997, -0.1724410206079483, 0.06501442193984985, 1.0127989053726196, -0.0076459357514977455, 0.001318264752626419, -0.005249090492725372]} +{"t": 4.1056, "q": [-0.13772249221801758, 0.008382352069020271, -0.00642810994759202, 0.3169800937175751, -0.1791711002588272, -0.01486535556614399, -0.07842562347650528, -0.026742398738861084, 0.017275545746088028, 0.32176098227500916, -0.2591566741466522, 0.01914762519299984, 0.011128664948046207, 0.06974224001169205, 0.02274271473288536, 0.0010186590952798724, 0.14771756529808044, -0.07135407626628876, 0.7172439098358154, -0.023369239643216133, -0.2566182017326355, -0.00523710623383522, 0.17338776588439941, -0.17375928163528442, 0.06500244140625, 1.013242244720459, -0.0076459357514977455, 0.001318264752626419, -0.005261074751615524]} +{"t": 4.1223, "q": [-0.1376713663339615, 0.008407918736338615, -0.006441501900553703, 0.31693747639656067, -0.17915832996368408, -0.014872366562485695, -0.07840005308389664, -0.02677648700773716, 0.01731572113931179, 0.32176098227500916, -0.2591524124145508, 0.019140392541885376, 0.011409895494580269, 0.07179564237594604, 0.02252773568034172, -0.0014980281703174114, 0.14760969579219818, -0.06678808480501175, 0.7043249011039734, -0.02894190326333046, -0.2667568624019623, -0.005920207127928734, 0.17332784831523895, -0.1748857945203781, 0.06493053585290909, 1.0139133930206299, -0.0076579200103878975, 0.001318264752626419, -0.005249090492725372]} +{"t": 4.1392, "q": [-0.13765431940555573, 0.00837383046746254, -0.00642810994759202, 0.31694599986076355, -0.17915832996368408, -0.014872366562485695, -0.07837449014186859, -0.026793530210852623, 0.01732911355793476, 0.3217865526676178, -0.2591524124145508, 0.019140392541885376, 0.01159738190472126, 0.07353493571281433, 0.022161399945616722, -0.0043982104398310184, 0.14744192361831665, -0.06162288784980774, 0.6927121877670288, -0.033304162323474884, -0.27504995465278625, -0.006459497381001711, 0.1732918918132782, -0.17616811394691467, 0.06490656733512878, 1.0142608880996704, -0.0076818885281682014, 0.001342233270406723, -0.005261074751615524]} +{"t": 4.156, "q": [-0.13768839836120605, 0.00837383046746254, -0.006535245105624199, 0.31693747639656067, -0.1791667640209198, -0.01485823467373848, -0.07836596667766571, -0.026802053675055504, 0.017248760908842087, 0.3217780292034149, -0.2591524124145508, 0.019140392541885376, 0.011825043708086014, 0.07532653212547302, 0.021815268322825432, -0.007406251039355993, 0.14783740043640137, -0.05801563337445259, 0.6810994744300842, -0.0400392971932888, -0.2852245569229126, -0.006914897821843624, 0.1733638048171997, -0.17727066576480865, 0.06490656733512878, 1.0144047737121582, -0.0076818885281682014, 0.001330249011516571, -0.005261074751615524]} +{"t": 4.1727, "q": [-0.1376202255487442, 0.008356785401701927, -0.006535245105624199, 0.31695452332496643, -0.17915832996368408, -0.014872366562485695, -0.07834891974925995, -0.026810575276613235, 0.017262153327465057, 0.3217950761318207, -0.2591609060764313, 0.019154857844114304, 0.011811652220785618, 0.07685277611017227, 0.021656004711985588, -0.010066749528050423, 0.14758573472499847, -0.05216733366250992, 0.666994035243988, -0.04634299874305725, -0.2923072278499603, -0.007693872787058353, 0.17332784831523895, -0.17864884436130524, 0.06491854786872864, 1.0145126581192017, -0.0076818885281682014, 0.001318264752626419, -0.005261074751615524]} +{"t": 4.1896, "q": [-0.13761170208454132, 0.008390873670578003, -0.006548637058585882, 0.31698861718177795, -0.17916254699230194, -0.01486530527472496, -0.07838300615549088, -0.026793530210852623, 0.017288938164711, 0.3218291699886322, -0.25915229320526123, 0.019125979393720627, 0.011825043708086014, 0.07820352911949158, 0.0211513452231884, -0.013398364186286926, 0.14672286808490753, -0.04416187107563019, 0.6543746590614319, -0.052682653069496155, -0.29913824796676636, -0.00860467366874218, 0.17338776588439941, -0.17973941564559937, 0.06491854786872864, 1.0146085023880005, -0.0076818885281682014, 0.001318264752626419, -0.005249090492725372]} +{"t": 4.2064, "q": [-0.13761170208454132, 0.008407918736338615, -0.006588812451809645, 0.317099392414093, -0.17915832996368408, -0.014872366562485695, -0.0782807469367981, -0.026767965406179428, 0.017235370352864265, 0.32189735770225525, -0.2591566741466522, 0.01914762519299984, 0.012025922536849976, 0.07954620569944382, 0.020669838413596153, -0.018072212114930153, 0.14633937180042267, -0.03677958622574806, 0.6424263715744019, -0.061179470270872116, -0.3075631558895111, -0.008928247727453709, 0.1736394464969635, -0.18072211742401123, 0.06491854786872864, 1.0146443843841553, -0.0076818885281682014, 0.001306280493736267, -0.005261074751615524]} +{"t": 4.2231, "q": [-0.13763727247714996, 0.008390873670578003, -0.0068030827678740025, 0.3171846270561218, -0.17913663387298584, -0.014836747199296951, -0.0781870037317276, -0.026759441941976547, 0.017221977934241295, 0.3219228982925415, -0.25915655493736267, 0.019133230671286583, 0.012307152152061462, 0.08067931234836578, 0.02015906199812889, -0.023069633170962334, 0.14613564312458038, -0.030188262462615967, 0.6309455037117004, -0.07050319761037827, -0.3127523362636566, -0.009527458809316158, 0.17375928163528442, -0.18136925995349884, 0.06487061083316803, 1.014955997467041, -0.00771784083917737, 0.001318264752626419, -0.00523710623383522]} +{"t": 4.2398, "q": [-0.1376628428697586, 0.008399397134780884, -0.006923609878867865, 0.31721869111061096, -0.17907601594924927, -0.014751228503882885, -0.07816995680332184, -0.026759441941976547, 0.017235370352864265, 0.32198256254196167, -0.2591607868671417, 0.019140463322401047, 0.012400895357131958, 0.08168449252843857, 0.019668320193886757, -0.028031103312969208, 0.14606373012065887, -0.021631525829434395, 0.6213700771331787, -0.08080963045358658, -0.31646743416786194, -0.010270480997860432, 0.17378325760364532, -0.18183664977550507, 0.06490656733512878, 1.0150638818740845, -0.007693872787058353, 0.001330249011516571, -0.005225121974945068]} +{"t": 4.2566, "q": [-0.1376202255487442, 0.008424961939454079, -0.006896826438605785, 0.3172357380390167, -0.17886938154697418, -0.014410171657800674, -0.0781870037317276, -0.026750920340418816, 0.017275545746088028, 0.3220592737197876, -0.2591524124145508, 0.019140392541885376, 0.012133057229220867, 0.08261507749557495, 0.01915188506245613, -0.03253716975450516, 0.14552444219589233, -0.013194631785154343, 0.6110396981239319, -0.09175122529268265, -0.31948745250701904, -0.010630007833242416, 0.17371134459972382, -0.18217220902442932, 0.06485863029956818, 1.0150998830795288, -0.00771784083917737, 0.001330249011516571, -0.005225121974945068]} +{"t": 4.2734, "q": [-0.13750943541526794, 0.008407918736338615, -0.006816474720835686, 0.3172101676464081, -0.17880503833293915, -0.014303701929748058, -0.07816143333911896, -0.026742398738861084, 0.017288938164711, 0.32208484411239624, -0.25914815068244934, 0.01913314126431942, 0.011825043708086014, 0.08330388367176056, 0.01875174045562744, -0.03663577511906624, 0.1444338858127594, -0.004661863669753075, 0.6022432446479797, -0.10371148586273193, -0.3229628801345825, -0.01143295131623745, 0.17377126216888428, -0.18238791823387146, 0.06481069326400757, 1.0150878429412842, -0.007705857045948505, 0.001342233270406723, -0.00523710623383522]} +{"t": 4.2902, "q": [-0.13747535645961761, 0.008390873670578003, -0.006736123468726873, 0.3172527849674225, -0.17877943813800812, -0.014289450831711292, -0.07816995680332184, -0.026750920340418816, 0.017248760908842087, 0.3221615254878998, -0.2591524124145508, 0.019140392541885376, 0.01132954377681017, 0.08384845405817032, 0.018458209931850433, -0.04066247493028641, 0.1414138525724411, 0.004877579864114523, 0.5941659212112427, -0.11730159819126129, -0.3252638578414917, -0.011888351291418076, 0.17385515570640564, -0.18250776827335358, 0.06473878771066666, 1.015183687210083, -0.007705857045948505, 0.001330249011516571, -0.00523710623383522]} +{"t": 4.3069, "q": [-0.1374327391386032, 0.008407918736338615, -0.006615596357733011, 0.31726983189582825, -0.17874933779239655, -0.014225597493350506, -0.0781870037317276, -0.026742398738861084, 0.01731572113931179, 0.3222041428089142, -0.2591524124145508, 0.019140392541885376, 0.010874219238758087, 0.08417408168315887, 0.01825643889605999, -0.044497426599264145, 0.13872939348220825, 0.01197224110364914, 0.5863881707191467, -0.1306280493736267, -0.32659411430358887, -0.012835104949772358, 0.17407086491584778, -0.18253172934055328, 0.0646788626909256, 1.0152316093444824, -0.007729825098067522, 0.001318264752626419, -0.005249090492725372]} +{"t": 4.3236, "q": [-0.13744978606700897, 0.008407918736338615, -0.006548637058585882, 0.31726983189582825, -0.17874082922935486, -0.014225554652512074, -0.07822961360216141, -0.026742398738861084, 0.017382681369781494, 0.3222297132015228, -0.25914815068244934, 0.01913314126431942, 0.010311760008335114, 0.08428018540143967, 0.01818455010652542, -0.047745153307914734, 0.13555356860160828, 0.019773971289396286, 0.5796050429344177, -0.14524881541728973, -0.3271094262599945, -0.014369086362421513, 0.17420269548892975, -0.18248379230499268, 0.0646788626909256, 1.0152316093444824, -0.0076579200103878975, 0.001306280493736267, -0.00523710623383522]} +{"t": 4.3404, "q": [-0.13744978606700897, 0.008407918736338615, -0.00646828580647707, 0.31726983189582825, -0.17875784635543823, -0.014225631952285767, -0.07824665307998657, -0.02672535367310047, 0.017422856763005257, 0.3222297132015228, -0.2591524124145508, 0.019140392541885376, 0.009709124453365803, 0.08428046852350235, 0.01816551946103573, -0.05059739947319031, 0.13268934190273285, 0.027839355170726776, 0.5719112157821655, -0.1615114063024521, -0.327552855014801, -0.017041567713022232, 0.17433452606201172, -0.18244785070419312, 0.0646788626909256, 1.0152196884155273, -0.0076818885281682014, 0.0012583436910063028, -0.005225121974945068]} +{"t": 4.3571, "q": [-0.13742421567440033, 0.008399397134780884, -0.006454893853515387, 0.317286878824234, -0.17874504625797272, -0.014218484982848167, -0.07822961360216141, -0.026733875274658203, 0.017422856763005257, 0.3222297132015228, -0.2591441869735718, 0.019154716283082962, 0.009494854137301445, 0.08428046852350235, 0.01816551946103573, -0.053042180836200714, 0.1293097883462906, 0.03676760196685791, 0.5641933679580688, -0.17764216661453247, -0.3276607096195221, -0.020265324041247368, 0.17450229823589325, -0.18236395716667175, 0.06464291363954544, 1.0151957273483276, -0.007693872787058353, 0.0012463594321161509, -0.005225121974945068]} +{"t": 4.3741, "q": [-0.13740716874599457, 0.008399397134780884, -0.00638793408870697, 0.31727835536003113, -0.17875346541404724, -0.014204362407326698, -0.07822961360216141, -0.02677648700773716, 0.01746303215622902, 0.32226380705833435, -0.25914815068244934, 0.01913314126431942, 0.009387718513607979, 0.08428046852350235, 0.01816551946103573, -0.055451009422540665, 0.12554673850536346, 0.045587994158267975, 0.5577937960624695, -0.19448000192642212, -0.32757681608200073, -0.022278673946857452, 0.1747419834136963, -0.18236395716667175, 0.06461894512176514, 1.0152316093444824, -0.0076699042692780495, 0.0012463594321161509, -0.005249090492725372]} +{"t": 4.3908, "q": [-0.13741569221019745, 0.008390873670578003, -0.006374542135745287, 0.317286878824234, -0.17874926328659058, -0.014211423695087433, -0.07822961360216141, -0.02690431848168373, 0.01746303215622902, 0.3222467601299286, -0.25914815068244934, 0.01913314126431942, 0.009427894838154316, 0.08427289128303528, 0.01817065291106701, -0.05802761763334274, 0.1221432238817215, 0.05281447991728783, 0.5507950186729431, -0.2128038853406906, -0.32719331979751587, -0.024687504395842552, 0.1748857945203781, -0.18238791823387146, 0.06459497660398483, 1.0152555704116821, -0.0076579200103878975, 0.0012463594321161509, -0.00523710623383522]} +{"t": 4.4075, "q": [-0.13741569221019745, 0.00837383046746254, -0.006374542135745287, 0.317286878824234, -0.17873217165470123, -0.014197197742760181, -0.07822961360216141, -0.026998061686754227, 0.01746303215622902, 0.32222118973731995, -0.2591356635093689, 0.019140232354402542, 0.009548421949148178, 0.08427289128303528, 0.01817065291106701, -0.060807958245277405, 0.1179247796535492, 0.06121542304754257, 0.543796181678772, -0.23136745393276215, -0.3272532522678375, -0.027431892231106758, 0.17487381398677826, -0.18236395716667175, 0.06455902010202408, 1.0152676105499268, -0.007705857045948505, 0.0012343751732259989, -0.00523710623383522]} +{"t": 4.4243, "q": [-0.1374327391386032, 0.00831417553126812, -0.006374542135745287, 0.3173721134662628, -0.17871931195259094, -0.014175910502672195, -0.07821256667375565, -0.027100326493382454, 0.017422856763005257, 0.3222467601299286, -0.2591441869735718, 0.019154716283082962, 0.009695732034742832, 0.08425801992416382, 0.018161892890930176, -0.06326472759246826, 0.11385013908147812, 0.06997589021921158, 0.535874605178833, -0.24964340031147003, -0.3272532522678375, -0.029445242136716843, 0.17484985291957855, -0.18233998119831085, 0.06454703956842422, 1.0152796506881714, -0.007693872787058353, 0.0012343751732259989, -0.005249090492725372]} +{"t": 4.441, "q": [-0.13741569221019745, 0.008288608863949776, -0.006414717994630337, 0.3174317479133606, -0.17871502041816711, -0.014168815687298775, -0.07816995680332184, -0.02713441476225853, 0.017355896532535553, 0.3222808241844177, -0.25914841890335083, 0.019161948934197426, 0.009843043051660061, 0.08426559716463089, 0.018156757578253746, -0.06534998118877411, 0.11060241609811783, 0.07800532132387161, 0.5276774168014526, -0.26728418469429016, -0.32697761058807373, -0.031087080016732216, 0.17473000288009644, -0.1823999136686325, 0.06451108306646347, 1.0152915716171265, -0.0076818885281682014, 0.0012343751732259989, -0.005249090492725372]} +{"t": 4.4578, "q": [-0.1373986452817917, 0.008322697132825851, -0.006454893853515387, 0.31744879484176636, -0.1786849945783615, -0.01411912776529789, -0.07816995680332184, -0.027151459828019142, 0.017369288951158524, 0.3223404884338379, -0.2591441869735718, 0.019154716283082962, 0.009869826957583427, 0.08430349081754684, 0.018131082877516747, -0.06749515980482101, 0.10665960609912872, 0.08748484402894974, 0.5186532735824585, -0.2860994040966034, -0.3264143466949463, -0.032525185495615005, 0.17459817230701447, -0.18244785070419312, 0.06447513401508331, 1.015303611755371, -0.007693872787058353, 0.0012583436910063028, -0.005261074751615524]} +{"t": 4.4745, "q": [-0.13732194900512695, 0.008263042196631432, -0.006441501900553703, 0.31749141216278076, -0.1786421537399292, -0.01406231988221407, -0.07813587039709091, -0.02713441476225853, 0.017382681369781494, 0.3224257230758667, -0.2591441869735718, 0.019154716283082962, 0.009802867658436298, 0.08437899500131607, 0.01809876598417759, -0.06918492913246155, 0.10447847843170166, 0.09491506218910217, 0.5105639696121216, -0.3042435348033905, -0.32575520873069763, -0.034274883568286896, 0.1745861917734146, -0.18249578773975372, 0.06441520899534225, 1.0152796506881714, -0.0076818885281682014, 0.001282312092371285, -0.00523710623383522]} +{"t": 4.4913, "q": [-0.13728787004947662, 0.008271565660834312, -0.00642810994759202, 0.31753402948379517, -0.17860783636569977, -0.014005537144839764, -0.07812734693288803, -0.02714293822646141, 0.017409464344382286, 0.3225109279155731, -0.25913992524147034, 0.019147465005517006, 0.009615381248295307, 0.0843944400548935, 0.018069453537464142, -0.07052716612815857, 0.10281267017126083, 0.10221345722675323, 0.5022948384284973, -0.3228670060634613, -0.3245448172092438, -0.03773832693696022, 0.17464610934257507, -0.18249578773975372, 0.06445116549730301, 1.015303611755371, -0.007705857045948505, 0.0012583436910063028, -0.005261074751615524]} +{"t": 4.508, "q": [-0.13727082312107086, 0.00831417553126812, -0.006361150648444891, 0.3175510764122009, -0.17859917879104614, -0.013977162539958954, -0.07816995680332184, -0.027100326493382454, 0.01748981513082981, 0.3225279748439789, -0.2591441869735718, 0.019154716283082962, 0.009186840616166592, 0.08443234860897064, 0.018043747171759605, -0.07147391885519028, 0.10027201473712921, 0.1113574206829071, 0.4945889711380005, -0.34018421173095703, -0.32329845428466797, -0.04201669245958328, 0.17471802234649658, -0.18244785070419312, 0.06439124047756195, 1.015303611755371, -0.0076818885281682014, 0.0012343751732259989, -0.005261074751615524]} +{"t": 4.5247, "q": [-0.137202650308609, 0.008305653929710388, -0.006280798930674791, 0.3175681233406067, -0.17858637869358063, -0.013970041647553444, -0.0781870037317276, -0.02708328329026699, 0.017529990524053574, 0.3225705921649933, -0.25913143157958984, 0.01913299970328808, 0.008932393975555897, 0.08444006741046906, 0.01802908256649971, -0.07250456511974335, 0.09821072220802307, 0.11834422498941422, 0.4887406826019287, -0.35705801844596863, -0.32267525792121887, -0.045108623802661896, 0.17471802234649658, -0.1823759377002716, 0.06439124047756195, 1.0152915716171265, -0.007705857045948505, 0.0012223910307511687, -0.005261074751615524]} +{"t": 4.5415, "q": [-0.13721968233585358, 0.008322697132825851, -0.006240623537451029, 0.3175766170024872, -0.17857781052589417, -0.013955850154161453, -0.07817848026752472, -0.027091804891824722, 0.017556775361299515, 0.32263025641441345, -0.25912317633628845, 0.019147342070937157, 0.00865116436034441, 0.08443249017000198, 0.018034223467111588, -0.0734393298625946, 0.09642507880926132, 0.12530705332756042, 0.48243698477745056, -0.37467482686042786, -0.3220880329608917, -0.04873984307050705, 0.17482587695121765, -0.18233998119831085, 0.06441520899534225, 1.015303611755371, -0.007693872787058353, 0.0012104067718610168, -0.005249090492725372]} +{"t": 4.5585, "q": [-0.137202650308609, 0.008322697132825851, -0.006200447678565979, 0.3175766170024872, -0.17856071889400482, -0.013941606506705284, -0.07819551974534988, -0.02708328329026699, 0.017596950754523277, 0.32263025641441345, -0.25911080837249756, 0.019168827682733536, 0.008423502556979656, 0.08445508778095245, 0.018028322607278824, -0.07348726689815521, 0.09515474736690521, 0.13114337623119354, 0.4763369858264923, -0.390697717666626, -0.3218243718147278, -0.05065732076764107, 0.1748138964176178, -0.18231602013111115, 0.06439124047756195, 1.0153394937515259, -0.00771784083917737, 0.0012104067718610168, -0.005261074751615524]} +{"t": 4.5754, "q": [-0.13717707991600037, 0.008305653929710388, -0.006160271819680929, 0.317661851644516, -0.1785520613193512, -0.013913258910179138, -0.07819551974534988, -0.027091804891824722, 0.01763712614774704, 0.3226473033428192, -0.25911930203437805, 0.019183294847607613, 0.008289583027362823, 0.08446281403303146, 0.01801365800201893, -0.07331948727369308, 0.09501093626022339, 0.13533785939216614, 0.470416784286499, -0.40625324845314026, -0.32186034321784973, -0.05159208923578262, 0.17475397884845734, -0.1823040395975113, 0.06436727195978165, 1.0153155326843262, -0.00771784083917737, 0.0012223910307511687, -0.005273059010505676]} +{"t": 4.5921, "q": [-0.13716855645179749, 0.008339742198586464, -0.006160271819680929, 0.31767889857292175, -0.1785520613193512, -0.013913258910179138, -0.07820404320955276, -0.027100326493382454, 0.01762373559176922, 0.3227154612541199, -0.259115070104599, 0.01917606219649315, 0.00831636693328619, 0.0844929963350296, 0.018002614378929138, -0.07322361320257187, 0.0960056260228157, 0.13732723891735077, 0.4666297733783722, -0.41669151186943054, -0.3218483626842499, -0.052275191992521286, 0.17480191588401794, -0.182328000664711, 0.0644032284617424, 1.0153394937515259, -0.007705857045948505, 0.0012223910307511687, -0.005261074751615524]} +{"t": 4.6089, "q": [-0.13715150952339172, 0.008331218734383583, -0.00613348837941885, 0.31772151589393616, -0.17853067815303802, -0.013891919516026974, -0.07827222347259521, -0.027100326493382454, 0.017690693959593773, 0.32280921936035156, -0.25909847021102905, 0.019190315157175064, 0.008249407634139061, 0.08452332019805908, 0.01798204891383648, -0.07298392802476883, 0.09678460657596588, 0.1386454999446869, 0.4622914791107178, -0.4247449040412903, -0.32188430428504944, -0.0529463067650795, 0.17455023527145386, -0.18238791823387146, 0.06439124047756195, 1.0153394937515259, -0.0076818885281682014, 0.0012343751732259989, -0.00523710623383522]} +{"t": 4.6257, "q": [-0.13714298605918884, 0.008339742198586464, -0.0060933125205338, 0.3177129924297333, -0.1785264015197754, -0.013884824700653553, -0.07831483334302902, -0.02708328329026699, 0.017757654190063477, 0.3228518068790436, -0.25909847021102905, 0.019190315157175064, 0.00798156950622797, 0.08459797501564026, 0.018006810918450356, -0.07245662808418274, 0.09727595746517181, 0.1387174129486084, 0.45845654606819153, -0.42759716510772705, -0.32225582003593445, -0.053833138197660446, 0.1742865890264511, -0.18242387473583221, 0.0643792599439621, 1.0153634548187256, -0.0076818885281682014, 0.0012223910307511687, -0.005261074751615524]} +{"t": 4.6425, "q": [-0.13714298605918884, 0.00837383046746254, -0.006079920567572117, 0.3177044689655304, -0.17851781845092773, -0.013870633207261562, -0.07834891974925995, -0.027040671557188034, 0.017744261771440506, 0.32286885380744934, -0.2590859532356262, 0.01919742487370968, 0.007566420827060938, 0.08476932346820831, 0.01808851771056652, -0.06918492913246155, 0.10105098783969879, 0.13863351941108704, 0.4546455442905426, -0.42745333909988403, -0.3225434422492981, -0.054743941873311996, 0.174166738986969, -0.18244785070419312, 0.06436727195978165, 1.0153515338897705, -0.00771784083917737, 0.0012104067718610168, -0.005249090492725372]} +{"t": 4.6593, "q": [-0.13714298605918884, 0.00837383046746254, -0.006066528614610434, 0.317661851644516, -0.17850923538208008, -0.013856441713869572, -0.07835744321346283, -0.02701510675251484, 0.017717478796839714, 0.3228859007358551, -0.25908172130584717, 0.019190190359950066, 0.0076467725448310375, 0.08512759953737259, 0.01821308210492134, -0.06551776081323624, 0.10632404685020447, 0.13854962587356567, 0.451697438955307, -0.42485275864601135, -0.32417330145835876, -0.05565474182367325, 0.17427460849285126, -0.1825796663761139, 0.0643552914261818, 1.0153754949569702, -0.007705857045948505, 0.0012104067718610168, -0.005261074751615524]} +{"t": 4.6761, "q": [-0.13715150952339172, 0.008365308865904808, -0.0060933125205338, 0.317661851644516, -0.17850074172019958, -0.013856407254934311, -0.07834891974925995, -0.02701510675251484, 0.017690693959593773, 0.32286033034324646, -0.25909870862960815, 0.01921912282705307, 0.007861042395234108, 0.08577604591846466, 0.01849881000816822, -0.06268948316574097, 0.11237607896327972, 0.13820208609104156, 0.4496840834617615, -0.4199512302875519, -0.3263304531574249, -0.05715277045965195, 0.17434650659561157, -0.18289126455783844, 0.06433132290840149, 1.0154833793640137, -0.0076818885281682014, 0.0012223910307511687, -0.005261074751615524]} +{"t": 4.6928, "q": [-0.137202650308609, 0.00837383046746254, -0.006187055725604296, 0.317661851644516, -0.17849206924438477, -0.013828041963279247, -0.07835744321346283, -0.02702362835407257, 0.017583558335900307, 0.3228518068790436, -0.25909870862960815, 0.01921912282705307, 0.008302975445985794, 0.08665674924850464, 0.018766362220048904, -0.06005295366048813, 0.12012987583875656, 0.1378185898065567, 0.44751495122909546, -0.41626009345054626, -0.32819998264312744, -0.060028985142707825, 0.17433452606201172, -0.18333467841148376, 0.06431933492422104, 1.015758991241455, -0.007705857045948505, 0.0012223910307511687, -0.005285043269395828]} +{"t": 4.7096, "q": [-0.13727934658527374, 0.008339742198586464, -0.006280798930674791, 0.3176533281803131, -0.17842794954776764, -0.013764068484306335, -0.07837449014186859, -0.027057716622948647, 0.017516599968075752, 0.3228433132171631, -0.2590818405151367, 0.01920458674430847, 0.008637772873044014, 0.08779332041740417, 0.018973050639033318, -0.056841179728507996, 0.1294056624174118, 0.13464276492595673, 0.4441353976726532, -0.40795502066612244, -0.3296740651130676, -0.06441520899534225, 0.17407086491584778, -0.18395785987377167, 0.06428338587284088, 1.0162503719329834, -0.0076818885281682014, 0.0012343751732259989, -0.005285043269395828]} +{"t": 4.7264, "q": [-0.13731342554092407, 0.008356785401701927, -0.006307582836598158, 0.3176192343235016, -0.17836375534534454, -0.013685912825167179, -0.07835744321346283, -0.02708328329026699, 0.01746303215622902, 0.3228433132171631, -0.25908195972442627, 0.01921898126602173, 0.00873151607811451, 0.08901096135377884, 0.019265642389655113, -0.05415671318769455, 0.13888518512248993, 0.13141901791095734, 0.4402165412902832, -0.39878708124160767, -0.33062079548835754, -0.06902913749217987, 0.17365142703056335, -0.18480873107910156, 0.06427139788866043, 1.0163941383361816, -0.007693872787058353, 0.0012343751732259989, -0.00529702752828598]} +{"t": 4.7431, "q": [-0.1373049020767212, 0.008348263800144196, -0.006294190883636475, 0.3175169825553894, -0.17832942306995392, -0.013629130087792873, -0.07840857654809952, -0.027100326493382454, 0.01747642457485199, 0.3227836489677429, -0.25908195972442627, 0.01921898126602173, 0.008704732172191143, 0.09035705775022507, 0.019439879804849625, -0.052383050322532654, 0.14762169122695923, 0.12981313467025757, 0.43586626648902893, -0.3897629678249359, -0.33119603991508484, -0.07182145863771439, 0.17327991127967834, -0.1857195347547531, 0.06427139788866043, 1.0164180994033813, -0.007705857045948505, 0.0012463594321161509, -0.00529702752828598]} +{"t": 4.76, "q": [-0.1373049020767212, 0.008348263800144196, -0.006254015490412712, 0.3173976540565491, -0.17832507193088531, -0.013607878237962723, -0.0784597098827362, -0.027100326493382454, 0.017516599968075752, 0.32272398471832275, -0.25908195972442627, 0.01921898126602173, 0.008704732172191143, 0.09183107316493988, 0.019583415240049362, -0.051148671656847, 0.15689747035503387, 0.12892629206180573, 0.431599885225296, -0.3788812756538391, -0.3318791389465332, -0.07355917245149612, 0.17314808070659637, -0.1868220865726471, 0.06425941735506058, 1.0164060592651367, -0.00771784083917737, 0.0012463594321161509, -0.00529702752828598]} +{"t": 4.7767, "q": [-0.13733899593353271, 0.008305653929710388, -0.006280798930674791, 0.3172016441822052, -0.17832927405834198, -0.013600816950201988, -0.07848527282476425, -0.02714293822646141, 0.01748981513082981, 0.32263025641441345, -0.25908607244491577, 0.019211819395422935, 0.008677948266267776, 0.09340251982212067, 0.01968577317893505, -0.049914296716451645, 0.16750352084636688, 0.12767992913722992, 0.4286397695541382, -0.36741238832473755, -0.33271804451942444, -0.07546466588973999, 0.17317205667495728, -0.18797257542610168, 0.06428338587284088, 1.0164541006088257, -0.007693872787058353, 0.0012343751732259989, -0.005273059010505676]} +{"t": 4.7935, "q": [-0.13733047246932983, 0.008348263800144196, -0.006254015490412712, 0.31703972816467285, -0.17832507193088531, -0.013607878237962723, -0.07850231975317001, -0.02714293822646141, 0.01747642457485199, 0.32257911562919617, -0.2590988278388977, 0.01923353597521782, 0.008637772873044014, 0.0947103276848793, 0.019854161888360977, -0.04824849218130112, 0.17761820554733276, 0.12522317469120026, 0.42547595500946045, -0.3548169434070587, -0.3334251046180725, -0.07782556116580963, 0.17317205667495728, -0.1889193207025528, 0.06430735439062119, 1.0165139436721802, -0.007705857045948505, 0.0012343751732259989, -0.005285043269395828]} +{"t": 4.8102, "q": [-0.1373475193977356, 0.008322697132825851, -0.0062272315844893456, 0.3167414665222168, -0.17832927405834198, -0.013600816950201988, -0.07859606295824051, -0.02713441476225853, 0.01750320754945278, 0.3224342465400696, -0.2590988278388977, 0.01923353597521782, 0.008530637249350548, 0.09600596129894257, 0.02027369663119316, -0.04597148671746254, 0.1895904392004013, 0.12148409336805344, 0.4215930700302124, -0.3392374515533447, -0.3345036804676056, -0.08186424523591995, 0.17305220663547516, -0.1899140179157257, 0.06430735439062119, 1.016502022743225, -0.0076699042692780495, 0.0012343751732259989, -0.005261074751615524]} +{"t": 4.8272, "q": [-0.13733047246932983, 0.008339742198586464, -0.006200447678565979, 0.3165113627910614, -0.17833364009857178, -0.013622068800032139, -0.07866424322128296, -0.027151459828019142, 0.01748981513082981, 0.32232344150543213, -0.25909456610679626, 0.019226284697651863, 0.00847707036882639, 0.09728188812732697, 0.020920369774103165, -0.043346941471099854, 0.2024974524974823, 0.11688214540481567, 0.4172308146953583, -0.32245954871177673, -0.3360256850719452, -0.08616658300161362, 0.17292039096355438, -0.190860778093338, 0.06430735439062119, 1.016502022743225, -0.0076699042692780495, 0.0012104067718610168, -0.005249090492725372]} +{"t": 4.844, "q": [-0.1373986452817917, 0.008339742198586464, -0.006187055725604296, 0.3163835406303406, -0.17833785712718964, -0.013615007512271404, -0.07877502590417862, -0.02714293822646141, 0.017436247318983078, 0.3222382366657257, -0.25910308957099915, 0.019240768626332283, 0.008557421155273914, 0.09822987020015717, 0.021471621468663216, -0.04021906107664108, 0.21551232039928436, 0.11000320315361023, 0.4118379056453705, -0.3064725995063782, -0.3385184109210968, -0.08946224302053452, 0.17280054092407227, -0.19155585765838623, 0.06430735439062119, 1.0165379047393799, -0.0076818885281682014, 0.0012223910307511687, -0.00523710623383522]} +{"t": 4.8608, "q": [-0.1373986452817917, 0.008339742198586464, -0.006213839631527662, 0.31611934304237366, -0.17832507193088531, -0.013607878237962723, -0.07889433950185776, -0.02714293822646141, 0.017436247318983078, 0.3220081329345703, -0.2590988278388977, 0.01923353597521782, 0.008557421155273914, 0.0991034135222435, 0.021969202905893326, -0.03651593253016472, 0.2277601957321167, 0.10375942289829254, 0.4059177041053772, -0.2869023382663727, -0.3426649570465088, -0.09232646971940994, 0.17268070578575134, -0.19213110208511353, 0.06433132290840149, 1.016597867012024, -0.007693872787058353, 0.0012223910307511687, -0.005249090492725372]} +{"t": 4.8776, "q": [-0.13739013671875, 0.008348263800144196, -0.0062272315844893456, 0.3161022961139679, -0.17832507193088531, -0.013607878237962723, -0.07888581603765488, -0.02719406969845295, 0.017409464344382286, 0.32194846868515015, -0.2591073215007782, 0.019248003140091896, 0.008570813573896885, 0.10008050501346588, 0.022526616230607033, -0.03329217806458473, 0.2410866618156433, 0.0975036546587944, 0.40018922090530396, -0.2675718069076538, -0.3486570715904236, -0.09390839189291, 0.17251291871070862, -0.19273030757904053, 0.06431933492422104, 1.0166218280792236, -0.007693872787058353, 0.0012463594321161509, -0.005225121974945068]} +{"t": 4.8945, "q": [-0.1373986452817917, 0.008331218734383583, -0.006254015490412712, 0.3160426616668701, -0.1783420741558075, -0.013607937842607498, -0.07889433950185776, -0.02719406969845295, 0.01732911355793476, 0.3218717873096466, -0.2591073215007782, 0.019248003140091896, 0.00873151607811451, 0.10073903203010559, 0.02288910001516342, -0.030080405995249748, 0.2547966241836548, 0.08852747082710266, 0.3935140073299408, -0.24931982159614563, -0.3536185324192047, -0.09499895572662354, 0.17238110303878784, -0.19328159093856812, 0.06433132290840149, 1.0166218280792236, -0.0076699042692780495, 0.0012343751732259989, -0.005225121974945068]} +{"t": 4.9113, "q": [-0.13736456632614136, 0.008331218734383583, -0.006254015490412712, 0.31603413820266724, -0.17832507193088531, -0.013607878237962723, -0.07891137897968292, -0.027211114764213562, 0.017288938164711, 0.3217439353466034, -0.25910308957099915, 0.019240768626332283, 0.008825259283185005, 0.10127877444028854, 0.023201540112495422, -0.027048395946621895, 0.26723623275756836, 0.08103732764720917, 0.3871983289718628, -0.23046863079071045, -0.3557756841182709, -0.09662880748510361, 0.1720934808254242, -0.19362913072109222, 0.0643552914261818, 1.0166218280792236, -0.0076699042692780495, 0.0012343751732259989, -0.005225121974945068]} +{"t": 4.928, "q": [-0.1373986452817917, 0.008339742198586464, -0.006254015490412712, 0.3160000443458557, -0.17832085490226746, -0.013614938594400883, -0.07890285551548004, -0.027228157967329025, 0.017221977934241295, 0.3217354118824005, -0.25910744071006775, 0.019262397661805153, 0.008852043189108372, 0.10194385796785355, 0.02360566519200802, -0.02485528402030468, 0.28049078583717346, 0.0728401243686676, 0.38239264488220215, -0.21019132435321808, -0.35735762119293213, -0.09822271019220352, 0.17161411046981812, -0.19400063157081604, 0.06430735439062119, 1.016669750213623, -0.0076699042692780495, 0.0012223910307511687, -0.00523710623383522]} +{"t": 4.9448, "q": [-0.13746683299541473, 0.008331218734383583, -0.006280798930674791, 0.3160000443458557, -0.17832507193088531, -0.013607878237962723, -0.07894547283649445, -0.027245203033089638, 0.01715501770377159, 0.3217013478279114, -0.25911158323287964, 0.01925523579120636, 0.008959177881479263, 0.10254158079624176, 0.023999284952878952, -0.023093601688742638, 0.29349368810653687, 0.06400774419307709, 0.37921684980392456, -0.19181950390338898, -0.357741117477417, -0.0999004989862442, 0.17105084657669067, -0.19446802139282227, 0.06431933492422104, 1.0167416334152222, -0.007705857045948505, 0.0012583436910063028, -0.005213138181716204]} +{"t": 4.9616, "q": [-0.13758613169193268, 0.008322697132825851, -0.006254015490412712, 0.31598299741744995, -0.17832927405834198, -0.013600816950201988, -0.07908182591199875, -0.027236681431531906, 0.017195194959640503, 0.3216928243637085, -0.2591073215007782, 0.019248003140091896, 0.008892218582332134, 0.10323429107666016, 0.024485647678375244, -0.021020330488681793, 0.3065205216407776, 0.05519933998584747, 0.376088947057724, -0.17240506410598755, -0.3577890396118164, -0.10252504795789719, 0.17030782997608185, -0.19483953714370728, 0.06434330344200134, 1.0167416334152222, -0.00771784083917737, 0.0012463594321161509, -0.005225121974945068]} +{"t": 4.9783, "q": [-0.13772249221801758, 0.008322697132825851, -0.006267406977713108, 0.31593185663223267, -0.17833364009857178, -0.013622068800032139, -0.07914147526025772, -0.027279291301965714, 0.017208585515618324, 0.32162463665008545, -0.2591032087802887, 0.01925516501069069, 0.008905611000955105, 0.1037934273481369, 0.02492334507405758, -0.01901896484196186, 0.31900808215141296, 0.046007439494132996, 0.37347638607025146, -0.1535179316997528, -0.3584122359752655, -0.10598848760128021, 0.16992433369159698, -0.1952589750289917, 0.06433132290840149, 1.0168375968933105, -0.00771784083917737, 0.0012583436910063028, -0.005213138181716204]} +{"t": 4.9951, "q": [-0.13772249221801758, 0.008228953927755356, -0.006280798930674791, 0.315906286239624, -0.17833785712718964, -0.013615007512271404, -0.0791499987244606, -0.027517911046743393, 0.017181802541017532, 0.32157349586486816, -0.2591073215007782, 0.019248003140091896, 0.008932393975555897, 0.10435391217470169, 0.025285108014941216, -0.016622120514512062, 0.32981786131858826, 0.037942055612802505, 0.37123534083366394, -0.13554158806800842, -0.35922715067863464, -0.10903248190879822, 0.16960075497627258, -0.19557057321071625, 0.06431933492422104, 1.0169214010238647, -0.0076818885281682014, 0.001270327833481133, -0.005213138181716204]} +{"t": 5.0119, "q": [-0.13774806261062622, 0.008101122453808784, -0.0062272315844893456, 0.3159148097038269, -0.17832507193088531, -0.013607878237962723, -0.07914147526025772, -0.02768835239112377, 0.017195194959640503, 0.3214968144893646, -0.25911158323287964, 0.01925523579120636, 0.0089190024882555, 0.10489966720342636, 0.02561892941594124, -0.014093449339270592, 0.3408913016319275, 0.030583743005990982, 0.36905422806739807, -0.1143534779548645, -0.3598383367061615, -0.11147726327180862, 0.16906146705150604, -0.19589415192604065, 0.06430735439062119, 1.0170652866363525, -0.007705857045948505, 0.0012583436910063028, -0.005213138181716204]} +{"t": 5.0287, "q": [-0.13773953914642334, 0.0079562459141016, -0.006187055725604296, 0.3159233331680298, -0.17832927405834198, -0.013600816950201988, -0.0791499987244606, -0.02792697213590145, 0.017235370352864265, 0.3214541971683502, -0.25911158323287964, 0.01925523579120636, 0.008892218582332134, 0.10532011091709137, 0.025870751589536667, -0.011361045762896538, 0.35041874647140503, 0.023393208160996437, 0.3666094243526459, -0.0960056260228157, -0.3603177070617676, -0.11338275671005249, 0.16855812072753906, -0.19609788060188293, 0.06430735439062119, 1.017185091972351, -0.0076818885281682014, 0.001294296351261437, -0.005213138181716204]} +{"t": 5.0454, "q": [-0.13773101568222046, 0.0077602374367415905, -0.00613348837941885, 0.315906286239624, -0.17832927405834198, -0.013600816950201988, -0.07922670245170593, -0.028208201751112938, 0.017262153327465057, 0.3214115798473358, -0.25910744071006775, 0.019262397661805153, 0.008744907565414906, 0.10563760250806808, 0.02604404091835022, -0.007226487621665001, 0.3607371747493744, 0.015064171515405178, 0.3633617162704468, -0.07375092059373856, -0.3615401089191437, -0.11542007327079773, 0.1678989976644516, -0.1962536722421646, 0.06430735439062119, 1.017508625984192, -0.007729825098067522, 0.001282312092371285, -0.005225121974945068]} +{"t": 5.0622, "q": [-0.13769692182540894, 0.007572751026600599, -0.006079920567572117, 0.3159233331680298, -0.1783377081155777, -0.013586685061454773, -0.07922670245170593, -0.028429776430130005, 0.017275545746088028, 0.32136043906211853, -0.2591117024421692, 0.019269630312919617, 0.008771691471338272, 0.10589663684368134, 0.026154961436986923, -0.003930825740098953, 0.36980921030044556, 0.007250456139445305, 0.3613363802433014, -0.05433647707104683, -0.36275050044059753, -0.11727762967348099, 0.16723985970020294, -0.1964094638824463, 0.06431933492422104, 1.018311619758606, -0.007705857045948505, 0.001282312092371285, -0.005225121974945068]} +{"t": 5.0789, "q": [-0.13772249221801758, 0.0073767430149018764, -0.00605313666164875, 0.315906286239624, -0.17833778262138367, -0.013600842095911503, -0.07926931232213974, -0.028719529509544373, 0.01731572113931179, 0.32134339213371277, -0.2591285705566406, 0.019284166395664215, 0.00866455677896738, 0.10610286891460419, 0.026292867958545685, -2.3968450477696024e-05, 0.37951645255088806, -0.0008029430755414069, 0.3586399257183075, -0.033975277096033096, -0.36312201619148254, -0.11883557587862015, 0.16618524491786957, -0.1965053379535675, 0.06430735439062119, 1.019521951675415, -0.00771784083917737, 0.001282312092371285, -0.005213138181716204]} +{"t": 5.0959, "q": [-0.13772249221801758, 0.007231866475194693, -0.005959393456578255, 0.31588923931121826, -0.17833349108695984, -0.013593746349215508, -0.07935453206300735, -0.028924059122800827, 0.017288938164711, 0.32130080461502075, -0.2591201961040497, 0.019284095615148544, 0.008463677950203419, 0.10622074455022812, 0.026370322331786156, 0.003787015099078417, 0.3880731761455536, -0.008101336658000946, 0.35542815923690796, -0.01495631318539381, -0.36358940601348877, -0.1203695610165596, 0.16529841721057892, -0.1965293139219284, 0.06430735439062119, 1.0205047130584717, -0.007705857045948505, 0.001282312092371285, -0.005225121974945068]} +{"t": 5.1127, "q": [-0.13770544528961182, 0.007078468333929777, -0.005919218063354492, 0.3159148097038269, -0.17833341658115387, -0.013579589314758778, -0.07935453206300735, -0.029145635664463043, 0.017288938164711, 0.321283757686615, -0.2591117024421692, 0.019269630312919617, 0.008544029667973518, 0.10630909353494644, 0.026430774480104446, 0.00672315014526248, 0.39613857865333557, -0.015052187256515026, 0.35313916206359863, 0.005009406246244907, -0.36511141061782837, -0.12259862571954727, 0.1649029403924942, -0.196577250957489, 0.06430735439062119, 1.0214874744415283, -0.0076818885281682014, 0.001270327833481133, -0.00523710623383522]} +{"t": 5.1295, "q": [-0.13772249221801758, 0.006865415256470442, -0.005986177362501621, 0.3159148097038269, -0.17833341658115387, -0.013579589314758778, -0.07931192219257355, -0.029401298612356186, 0.01715501770377159, 0.321283757686615, -0.2591243088245392, 0.01927693374454975, 0.00873151607811451, 0.10629395395517349, 0.026441184803843498, 0.009371664375066757, 0.4042998254299164, -0.02377670258283615, 0.35104191303253174, 0.02305764891207218, -0.36683714389801025, -0.12657739222049713, 0.1645793616771698, -0.19667312502861023, 0.06430735439062119, 1.0230094194412231, -0.0076818885281682014, 0.0012583436910063028, -0.005225121974945068]} +{"t": 5.1463, "q": [-0.13772249221801758, 0.006712018046528101, -0.005986177362501621, 0.315906286239624, -0.17833763360977173, -0.013572528026998043, -0.07929487526416779, -0.029529130086302757, 0.01711484231054783, 0.32124966382980347, -0.2591328024864197, 0.01929141767323017, 0.008852043189108372, 0.10628638416528702, 0.0264463908970356, 0.012775183655321598, 0.4116101861000061, -0.03081144392490387, 0.34846532344818115, 0.040638506412506104, -0.36893436312675476, -0.13014867901802063, 0.16387230157852173, -0.1967330425977707, 0.06430735439062119, 1.0247591733932495, -0.007693872787058353, 0.0012463594321161509, -0.00523710623383522]} +{"t": 5.1631, "q": [-0.13777361810207367, 0.0065160091035068035, -0.005932609550654888, 0.3159233331680298, -0.1783418506383896, -0.013565466739237309, -0.07932044565677643, -0.02971661649644375, 0.0171282347291708, 0.32117295265197754, -0.2591328024864197, 0.01929141767323017, 0.008945786394178867, 0.10627104341983795, 0.0264662466943264, 0.015399729833006859, 0.4182494580745697, -0.03846936300396919, 0.3454332947731018, 0.05729658156633377, -0.3708758056163788, -0.1327732354402542, 0.16314126551151276, -0.1967570036649704, 0.06428338587284088, 1.0265806913375854, -0.00771784083917737, 0.0012104067718610168, -0.005213138181716204]} +{"t": 5.1799, "q": [-0.13782475888729095, 0.006277389358729124, -0.005986177362501621, 0.3159148097038269, -0.1783333420753479, -0.013565433211624622, -0.0792863517999649, -0.02997227944433689, 0.017007706686854362, 0.3211388885974884, -0.2591285705566406, 0.019284166395664215, 0.009213624522089958, 0.10626327246427536, 0.026480894535779953, 0.01678990013897419, 0.4242655336856842, -0.04652276262640953, 0.34272485971450806, 0.07506918907165527, -0.3725176453590393, -0.13524198532104492, 0.16264989972114563, -0.1967570036649704, 0.06428338587284088, 1.0281267166137695, -0.00771784083917737, 0.0011984225129708648, -0.005225121974945068]} +{"t": 5.1967, "q": [-0.13784180581569672, 0.006072858814150095, -0.006012961268424988, 0.3159148097038269, -0.1783333420753479, -0.013565433211624622, -0.07925226539373398, -0.030176810920238495, 0.016913963481783867, 0.32116442918777466, -0.2591286897659302, 0.019298579543828964, 0.009387718513607979, 0.10622541606426239, 0.026506921276450157, 0.017856495454907417, 0.4282083511352539, -0.05210741236805916, 0.34007635712623596, 0.08913866430521011, -0.373692125082016, -0.13660818338394165, 0.16217052936553955, -0.1967570036649704, 0.06430735439062119, 1.0292532444000244, -0.0076699042692780495, 0.0012104067718610168, -0.00523710623383522]} +{"t": 5.2137, "q": [-0.1378929316997528, 0.00589389493688941, -0.006066528614610434, 0.3159233331680298, -0.1783289909362793, -0.013544180430471897, -0.07920113205909729, -0.030313163995742798, 0.016860397532582283, 0.32117295265197754, -0.2591245770454407, 0.019305743277072906, 0.00958859734237194, 0.10617281496524811, 0.02652447111904621, 0.018575549125671387, 0.4299101233482361, -0.05546299368143082, 0.3361695110797882, 0.10024804621934891, -0.3744111657142639, -0.13676397502422333, 0.16178704798221588, -0.19676899909973145, 0.06430735439062119, 1.0305474996566772, -0.0076579200103878975, 0.0011864382540807128, -0.005225121974945068]} +{"t": 5.2305, "q": [-0.13791850209236145, 0.0056978859938681126, -0.006187055725604296, 0.31589776277542114, -0.17832477390766144, -0.013551241718232632, -0.07903921604156494, -0.030526217073202133, 0.016672909259796143, 0.32116442918777466, -0.2591329514980316, 0.019305814057588577, 0.010151056572794914, 0.10611981153488159, 0.026560908183455467, 0.018863171339035034, 0.42959851026535034, -0.05759618803858757, 0.33156755566596985, 0.10843326896429062, -0.3756934702396393, -0.13668008148670197, 0.1612837016582489, -0.1967809796333313, 0.06428338587284088, 1.0323810577392578, -0.0076579200103878975, 0.0011385014513507485, -0.005225121974945068]} +{"t": 5.2473, "q": [-0.13799519836902618, 0.0054507446475327015, -0.00642810994759202, 0.3159148097038269, -0.17834177613258362, -0.013551301322877407, -0.07882615923881531, -0.030773358419537544, 0.016418464481830597, 0.32120704650878906, -0.2591245770454407, 0.019305743277072906, 0.011008137837052345, 0.10606738924980164, 0.026568977162241936, 0.018863171339035034, 0.4288555085659027, -0.05861484631896019, 0.32571926712989807, 0.11232814192771912, -0.37652039527893066, -0.13640445470809937, 0.16088822484016418, -0.19679296016693115, 0.06428338587284088, 1.034226655960083, -0.007705857045948505, 0.0011504855938255787, -0.005225121974945068]} +{"t": 5.2641, "q": [-0.13819120824337006, 0.005195080768316984, -0.006709339562803507, 0.3159148097038269, -0.17833749949932098, -0.013544205576181412, -0.07866424322128296, -0.031063111498951912, 0.016097059473395348, 0.321283757686615, -0.2591329514980316, 0.019305814057588577, 0.012025922536849976, 0.10606738924980164, 0.026568977162241936, 0.018635470420122147, 0.42617103457450867, -0.059417787939310074, 0.31973913311958313, 0.11417371034622192, -0.3771315813064575, -0.13603293895721436, 0.1607324331998825, -0.19686487317085266, 0.06427139788866043, 1.0354610681533813, -0.0076818885281682014, 0.0011504855938255787, -0.005213138181716204]} +{"t": 5.2808, "q": [-0.1384468674659729, 0.005024638492614031, -0.006963785737752914, 0.3159148097038269, -0.17833311855793, -0.013522936031222343, -0.07858753949403763, -0.031267642974853516, 0.015829220414161682, 0.3213860094547272, -0.2591286897659302, 0.019298579543828964, 0.012802652083337307, 0.10606777667999268, 0.026550067588686943, 0.018144117668271065, 0.4223480522632599, -0.06059224158525467, 0.3142263889312744, 0.11444935202598572, -0.3780064284801483, -0.1356494426727295, 0.16030099987983704, -0.19693677127361298, 0.06425941735506058, 1.036551594734192, -0.0076459357514977455, 0.0011504855938255787, -0.005225121974945068]} +{"t": 5.2975, "q": [-0.13857470452785492, 0.0048968070186674595, -0.007111096754670143, 0.3159233331680298, -0.1783287525177002, -0.013501683250069618, -0.07856197655200958, -0.03135286271572113, 0.015722084790468216, 0.32147976756095886, -0.2591286897659302, 0.019298579543828964, 0.01351242233067751, 0.1060601994395256, 0.026555273681879044, 0.017017599195241928, 0.4170030951499939, -0.061287328600883484, 0.3091810345649719, 0.1137542650103569, -0.37994787096977234, -0.13500230014324188, 0.15984559059143066, -0.19702066481113434, 0.06423544883728027, 1.0373904705047607, -0.0076579200103878975, 0.0011504855938255787, -0.005261074751615524]} +{"t": 5.3142, "q": [-0.13865140080451965, 0.004879762884229422, -0.007111096754670143, 0.316051185131073, -0.17831160128116608, -0.013473300263285637, -0.07847674936056137, -0.031378429383039474, 0.015748869627714157, 0.3215138614177704, -0.2591245770454407, 0.019305743277072906, 0.014597166329622269, 0.10603825747966766, 0.02653306908905506, 0.015962988138198853, 0.4103878140449524, -0.058471035212278366, 0.30365630984306335, 0.11181282252073288, -0.38299188017845154, -0.1339476853609085, 0.1597137749195099, -0.1971285194158554, 0.06421148031949997, 1.0379178524017334, -0.0076459357514977455, 0.0011504855938255787, -0.005249090492725372]} +{"t": 5.331, "q": [-0.13861730694770813, 0.004879762884229422, -0.007164664100855589, 0.3162897825241089, -0.17826440930366516, -0.013395213522017002, -0.07830630987882614, -0.031386952847242355, 0.01578904502093792, 0.32167577743530273, -0.2591245770454407, 0.019305743277072906, 0.016177410259842873, 0.10599436610937119, 0.026488663628697395, 0.014405039139091969, 0.4036766290664673, -0.0544683039188385, 0.2974364757537842, 0.10862501710653305, -0.3873900771141052, -0.1332286298274994, 0.1598575860261917, -0.1973322480916977, 0.06418751180171967, 1.0387088060379028, -0.0076579200103878975, 0.0011504855938255787, -0.005261074751615524]} +{"t": 5.3477, "q": [-0.138625830411911, 0.004888284485787153, -0.0071914480067789555, 0.3165965974330902, -0.17807134985923767, -0.013075822032988071, -0.07812734693288803, -0.03140399605035782, 0.01578904502093792, 0.3217780292034149, -0.2591245770454407, 0.019305743277072906, 0.017677301540970802, 0.10592757165431976, 0.02646932192146778, 0.013829795643687248, 0.3968815803527832, -0.04926715046167374, 0.2918877899646759, 0.10643190145492554, -0.3936578333377838, -0.13255751132965088, 0.16014520823955536, -0.19761987030506134, 0.06421148031949997, 1.0392121076583862, -0.0076699042692780495, 0.0011624698527157307, -0.005261074751615524]} +{"t": 5.3645, "q": [-0.1385832279920578, 0.00477749714627862, -0.007178056053817272, 0.31672441959381104, -0.17770668864250183, -0.012472499161958694, -0.07804212719202042, -0.03151478245854378, 0.01578904502093792, 0.321956992149353, -0.2590833604335785, 0.01937738247215748, 0.018949532881379128, 0.10592757165431976, 0.02646932192146778, 0.013662016950547695, 0.3880971372127533, -0.04178899526596069, 0.28503280878067017, 0.1011228933930397, -0.39716920256614685, -0.1320541799068451, 0.16020512580871582, -0.19796741008758545, 0.06416354328393936, 1.0399551391601562, -0.0076818885281682014, 0.0011624698527157307, -0.005261074751615524]} +{"t": 5.3812, "q": [-0.138625830411911, 0.004564445000141859, -0.007204839959740639, 0.3167414665222168, -0.1772349327802658, -0.011720065027475357, -0.07797394692897797, -0.031796012073755264, 0.015762262046337128, 0.32208484411239624, -0.2589389681816101, 0.01961371675133705, 0.020369073376059532, 0.10592853277921677, 0.0264220479875803, 0.012487562373280525, 0.37907302379608154, -0.03567703813314438, 0.2785134017467499, 0.09459149092435837, -0.39981773495674133, -0.13069996237754822, 0.16018114984035492, -0.19826702773571014, 0.06413957476615906, 1.0410456657409668, -0.0076579200103878975, 0.0011265171924605966, -0.005261074751615524]} +{"t": 5.398, "q": [-0.13865140080451965, 0.004445135127753019, -0.007204839959740639, 0.3167499899864197, -0.17687034606933594, -0.011130907572805882, -0.07797394692897797, -0.0320090651512146, 0.01578904502093792, 0.3221189081668854, -0.2587823271751404, 0.019885968416929245, 0.022083235904574394, 0.10598114877939224, 0.026404520496726036, 0.010222543962299824, 0.3698451817035675, -0.028450550511479378, 0.27248531579971313, 0.08704143017530441, -0.4031493365764618, -0.1297532021999359, 0.16022908687591553, -0.19856663048267365, 0.06413957476615906, 1.0418486595153809, -0.0076699042692780495, 0.0011385014513507485, -0.005261074751615524]} +{"t": 5.4153, "q": [-0.13854913413524628, 0.0043854801915585995, -0.007084312848746777, 0.3167926073074341, -0.17669031023979187, -0.010861116461455822, -0.07802508026361465, -0.032102808356285095, 0.01580243743956089, 0.32225528359413147, -0.25865015387535095, 0.020086439326405525, 0.024279506877064705, 0.10599629580974579, 0.026394110172986984, 0.00812530517578125, 0.3615281283855438, -0.02105628326535225, 0.2675718069076538, 0.07828095555305481, -0.40521061420440674, -0.12929780781269073, 0.16032496094703674, -0.19878233969211578, 0.0641036182641983, 1.0427594184875488, -0.007705857045948505, 0.0011504855938255787, -0.005261074751615524]} +{"t": 5.4322, "q": [-0.1385406106710434, 0.004411046858876944, -0.006910218391567469, 0.31699714064598083, -0.1766345500946045, -0.010768855921924114, -0.07804212719202042, -0.032034631818532944, 0.01594974845647812, 0.32235753536224365, -0.2584356963634491, 0.020444585010409355, 0.026984669268131256, 0.10598153620958328, 0.026385610923171043, 0.005764412228018045, 0.35166510939598083, -0.013662016950547695, 0.26207104325294495, 0.06763897091150284, -0.40855422616004944, -0.12892629206180573, 0.16062456369400024, -0.1989501267671585, 0.06406766921281815, 1.0439938306808472, -0.007693872787058353, 0.0011504855938255787, -0.005285043269395828]} +{"t": 5.449, "q": [-0.13855765759944916, 0.004402524325996637, -0.006937001831829548, 0.31727835536003113, -0.1765832155942917, -0.010712013579905033, -0.07800803333520889, -0.03202610835433006, 0.015896180644631386, 0.32250240445137024, -0.25829529762268066, 0.02065937966108322, 0.028658656403422356, 0.10595901310443878, 0.02639177069067955, 0.004434163216501474, 0.34309637546539307, -0.00755006168037653, 0.2572174370288849, 0.05861484631896019, -0.41192179918289185, -0.12889033555984497, 0.1606125831604004, -0.19901004433631897, 0.06404370069503784, 1.0452041625976562, -0.0076699042692780495, 0.0011385014513507485, -0.005285043269395828]} +{"t": 5.4658, "q": [-0.13864287734031677, 0.0043854801915585995, -0.006923609878867865, 0.3173806369304657, -0.17650605738162994, -0.010598395951092243, -0.07799951732158661, -0.032034631818532944, 0.015922963619232178, 0.322519451379776, -0.25814253091812134, 0.02089567855000496, 0.030024630948901176, 0.10592872649431229, 0.026412591338157654, 0.003775030840188265, 0.3324064612388611, 0.00027563716867007315, 0.2535023093223572, 0.045827675610780716, -0.4154331684112549, -0.12879446148872375, 0.16051670908927917, -0.1991538554430008, 0.06395980715751648, 1.046198844909668, -0.0076459357514977455, 0.0011265171924605966, -0.005285043269395828]} +{"t": 5.4826, "q": [-0.1386343538761139, 0.004291736986488104, -0.006896826438605785, 0.31749141216278076, -0.17643305659294128, -0.010463578626513481, -0.07797394692897797, -0.0321454182267189, 0.015909571200609207, 0.3225109279155731, -0.2580147683620453, 0.021117759868502617, 0.0310691986232996, 0.10593648999929428, 0.026397932320833206, 0.0036072516813874245, 0.3220880329608917, 0.006711166352033615, 0.2512732446193695, 0.03183010220527649, -0.417254775762558, -0.12874652445316315, 0.160432830452919, -0.19928568601608276, 0.06389988958835602, 1.0472415685653687, -0.0076818885281682014, 0.0011385014513507485, -0.005285043269395828]} +{"t": 5.4996, "q": [-0.13864287734031677, 0.004129816312342882, -0.006896826438605785, 0.31753402948379517, -0.1763559877872467, -0.010364135727286339, -0.07797394692897797, -0.03236699476838112, 0.015922963619232178, 0.3225620687007904, -0.25796541571617126, 0.021218135952949524, 0.03160487487912178, 0.1059289202094078, 0.026403138414025307, 0.0038229678757488728, 0.31269240379333496, 0.013110741972923279, 0.24930784106254578, 0.0207566786557436, -0.4178300201892853, -0.1288064569234848, 0.16028901934623718, -0.19930964708328247, 0.06383996456861496, 1.048188328742981, -0.0076579200103878975, 0.0011265171924605966, -0.005285043269395828]} +{"t": 5.5163, "q": [-0.13865140080451965, 0.004001984838396311, -0.006829866673797369, 0.31754255294799805, -0.1762917935848236, -0.010286006145179272, -0.07798247039318085, -0.03250334784388542, 0.015909571200609207, 0.32262173295021057, -0.25791171193122864, 0.021296868100762367, 0.03163165599107742, 0.1059289202094078, 0.026403138414025307, 0.003858920419588685, 0.3030211329460144, 0.019342539831995964, 0.24771393835544586, 0.006962834857404232, -0.4180696904659271, -0.1288064569234848, 0.16009727120399475, -0.19933362305164337, 0.06376805901527405, 1.0486197471618652, -0.0076699042692780495, 0.0011025486746802926, -0.005285043269395828]} +{"t": 5.533, "q": [-0.1386343538761139, 0.0039167641662061214, -0.006776299327611923, 0.31749141216278076, -0.17627884447574615, -0.010250535793602467, -0.07799951732158661, -0.03263118118047714, 0.01594974845647812, 0.3226046860218048, -0.25788286328315735, 0.02134701982140541, 0.03163165599107742, 0.10592872649431229, 0.026412591338157654, 0.0049375006929039955, 0.2932300269603729, 0.02569417841732502, 0.24659940600395203, -0.006962834857404232, -0.4183453321456909, -0.12884239852428436, 0.1601092517375946, -0.19930964708328247, 0.0637560784816742, 1.0487635135650635, -0.00771784083917737, 0.0010785802733153105, -0.00529702752828598]} +{"t": 5.55, "q": [-0.138625830411911, 0.0038400650955736637, -0.006749515421688557, 0.317474365234375, -0.17627876996994019, -0.010236378759145737, -0.0779569074511528, -0.03269083425402641, 0.015922963619232178, 0.3226046860218048, -0.25787460803985596, 0.02136136218905449, 0.03173879161477089, 0.10591357946395874, 0.026423003524541855, 0.006711166352033615, 0.28454145789146423, 0.030164295807480812, 0.2464555948972702, -0.020433103665709496, -0.41858503222465515, -0.1288304179906845, 0.1603129804134369, -0.19927369058132172, 0.06362425535917282, 1.0488953590393066, -0.0076818885281682014, 0.0010665960144251585, -0.005285043269395828]} +{"t": 5.5668, "q": [-0.13865140080451965, 0.003763366024941206, -0.006736123468726873, 0.3173891305923462, -0.17627455294132233, -0.010243440046906471, -0.0779569074511528, -0.03280162066221237, 0.015909571200609207, 0.3225109279155731, -0.25787049531936646, 0.021368524059653282, 0.031819142401218414, 0.10591357946395874, 0.026423003524541855, 0.008844357915222645, 0.27449867129325867, 0.0367196649312973, 0.24631178379058838, -0.03561711683869362, -0.4186928868293762, -0.12895026803016663, 0.16032496094703674, -0.199249729514122, 0.06354036182165146, 1.049111008644104, -0.0076579200103878975, 0.0010546118719503284, -0.005285043269395828]} +{"t": 5.5835, "q": [-0.13865992426872253, 0.0037122326903045177, -0.006736123468726873, 0.31732097268104553, -0.17627876996994019, -0.010236378759145737, -0.07799951732158661, -0.03285275399684906, 0.015856005251407623, 0.3225109279155731, -0.257870614528656, 0.021382920444011688, 0.0317789688706398, 0.10589106380939484, 0.02642916515469551, 0.010977550409734249, 0.26382073760032654, 0.04373043775558472, 0.24633574485778809, -0.05101684853434563, -0.4187288284301758, -0.12895026803016663, 0.16021710634231567, -0.19927369058132172, 0.0635283812880516, 1.0491230487823486, -0.007693872787058353, 0.0010665960144251585, -0.005273059010505676]} +{"t": 5.6003, "q": [-0.13859175145626068, 0.00369518855586648, -0.00672273151576519, 0.31726983189582825, -0.17627455294132233, -0.010243440046906471, -0.07796542346477509, -0.032878320664167404, 0.015896180644631386, 0.32249388098716736, -0.25785812735557556, 0.02139001153409481, 0.03180575370788574, 0.10589863359928131, 0.02642395906150341, 0.013230584561824799, 0.2543412148952484, 0.04926715046167374, 0.24627582728862762, -0.0646548941731453, -0.41874080896377563, -0.1290101855993271, 0.16018114984035492, -0.19927369058132172, 0.0634564757347107, 1.0491350889205933, -0.0076579200103878975, 0.0010186590952798724, -0.00529702752828598]} +{"t": 5.617, "q": [-0.13860027492046356, 0.003703711088746786, -0.006749515421688557, 0.3172527849674225, -0.17626604437828064, -0.010243413969874382, -0.07794838398694992, -0.03289536386728287, 0.015829220414161682, 0.3224853575229645, -0.2578665018081665, 0.02139008231461048, 0.031845927238464355, 0.10590600967407227, 0.026428207755088806, 0.014800517819821835, 0.24619193375110626, 0.05303019657731056, 0.2462039291858673, -0.0788082629442215, -0.41881272196769714, -0.12922589480876923, 0.1601571887731552, -0.19928568601608276, 0.06334861367940903, 1.0491350889205933, -0.0076579200103878975, 0.0010306433541700244, -0.00529702752828598]} +{"t": 5.6338, "q": [-0.13861730694770813, 0.0037122326903045177, -0.006829866673797369, 0.3171505331993103, -0.17627447843551636, -0.010229283012449741, -0.07798247039318085, -0.03289536386728287, 0.015748869627714157, 0.3224768340587616, -0.25786226987838745, 0.021382849663496017, 0.0318727120757103, 0.10590600967407227, 0.026428207755088806, 0.01605886220932007, 0.23750337958335876, 0.05733253434300423, 0.24619193375110626, -0.09219464659690857, -0.4188486635684967, -0.12948955595493317, 0.1601092517375946, -0.19928568601608276, 0.06316885352134705, 1.0491470098495483, -0.0076339514926075935, 0.0010306433541700244, -0.005285043269395828]} +{"t": 5.6505, "q": [-0.138625830411911, 0.003737799357622862, -0.0068566505797207355, 0.3171079158782959, -0.17626604437828064, -0.010243413969874382, -0.07800803333520889, -0.03286127746105194, 0.015748869627714157, 0.32245129346847534, -0.25786226987838745, 0.021382849663496017, 0.031859319657087326, 0.10591357946395874, 0.026423003524541855, 0.017005614936351776, 0.22885076701641083, 0.06181463226675987, 0.24622789025306702, -0.10588063299655914, -0.4187767803668976, -0.12987305223941803, 0.16000139713287354, -0.19928568601608276, 0.06296511739492416, 1.049170970916748, -0.0076459357514977455, 0.0010066749528050423, -0.00529702752828598]} +{"t": 5.6673, "q": [-0.13860027492046356, 0.003823020961135626, -0.006896826438605785, 0.317099392414093, -0.1762702614068985, -0.010236344300210476, -0.07800803333520889, -0.03280162066221237, 0.015762262046337128, 0.32245129346847534, -0.257870614528656, 0.021382920444011688, 0.031819142401218414, 0.10591377317905426, 0.02641354873776436, 0.017844511196017265, 0.22064156830310822, 0.06615292280912399, 0.24629980325698853, -0.11935090273618698, -0.4185490608215332, -0.13038836419582367, 0.15996544063091278, -0.19928568601608276, 0.06278535723686218, 1.0491949319839478, -0.00771784083917737, 0.0010306433541700244, -0.005285043269395828]} +{"t": 5.6842, "q": [-0.13855765759944916, 0.003899719100445509, -0.006896826438605785, 0.3171164393424988, -0.1762702614068985, -0.010236344300210476, -0.07803360372781754, -0.0327419675886631, 0.01578904502093792, 0.32245129346847534, -0.25786638259887695, 0.021375687792897224, 0.031671833246946335, 0.10591377317905426, 0.02641354873776436, 0.01853959634900093, 0.21254023909568787, 0.0697721615433693, 0.24634774029254913, -0.13174258172512054, -0.41848915815353394, -0.13105948269367218, 0.15996544063091278, -0.19927369058132172, 0.06271345168352127, 1.049170970916748, -0.007693872787058353, 0.0010306433541700244, -0.005285043269395828]} +{"t": 5.701, "q": [-0.13855765759944916, 0.004010507371276617, -0.006883434485644102, 0.3171164393424988, -0.17626598477363586, -0.01022924855351448, -0.07804212719202042, -0.03263118118047714, 0.01577565260231495, 0.3224768340587616, -0.25786638259887695, 0.021375687792897224, 0.031350426375865936, 0.10592135041952133, 0.026408344507217407, 0.019102854654192924, 0.20545755326747894, 0.07202519476413727, 0.24641963839530945, -0.14666295051574707, -0.4183812737464905, -0.13191036880016327, 0.15997742116451263, -0.199249729514122, 0.06264154613018036, 1.0492069721221924, -0.0076818885281682014, 0.0010186590952798724, -0.005285043269395828]} +{"t": 5.7178, "q": [-0.13856618106365204, 0.004087206441909075, -0.006910218391567469, 0.317099392414093, -0.17626604437828064, -0.010243413969874382, -0.07807621359825134, -0.03259709104895592, 0.01580243743956089, 0.3224853575229645, -0.2578747570514679, 0.021375758573412895, 0.031149549409747124, 0.10591377317905426, 0.02641354873776436, 0.01985786110162735, 0.1991538554430008, 0.0739906057715416, 0.24646757543087006, -0.16024108231067657, -0.4178300201892853, -0.1329529881477356, 0.15995346009731293, -0.1992017924785614, 0.06252170354127884, 1.049230933189392, -0.0076459357514977455, 0.0010066749528050423, -0.005285043269395828]} +{"t": 5.7346, "q": [-0.13851505517959595, 0.004138338845223188, -0.006883434485644102, 0.3171164393424988, -0.1762702614068985, -0.010236344300210476, -0.0780932605266571, -0.032520391047000885, 0.015829220414161682, 0.32249388098716736, -0.25786638259887695, 0.021375687792897224, 0.0310691986232996, 0.10592114925384521, 0.026417797431349754, 0.020672788843512535, 0.19177156686782837, 0.07677094638347626, 0.24658742547035217, -0.17465810477733612, -0.416883260011673, -0.13423530757427216, 0.15996544063091278, -0.1991778165102005, 0.06242582947015762, 1.0492188930511475, -0.0076699042692780495, 0.0009827064350247383, -0.005285043269395828]} +{"t": 5.7514, "q": [-0.13853208720684052, 0.0041212947107851505, -0.006910218391567469, 0.31713348627090454, -0.17626604437828064, -0.010243413969874382, -0.07811030000448227, -0.032520391047000885, 0.015856005251407623, 0.3225109279155731, -0.25786638259887695, 0.021375687792897224, 0.030814751982688904, 0.10592872649431229, 0.026412591338157654, 0.02130795270204544, 0.18526414036750793, 0.07898803055286407, 0.246731236577034, -0.18977020680904388, -0.4164997637271881, -0.13582921028137207, 0.1599894016981125, -0.1991538554430008, 0.06234193965792656, 1.0492907762527466, -0.0076699042692780495, 0.0009946906939148903, -0.005261074751615524]} +{"t": 5.7681, "q": [-0.13851505517959595, 0.0041212947107851505, -0.0068566505797207355, 0.31712496280670166, -0.176261767745018, -0.010236319154500961, -0.07813587039709091, -0.032520391047000885, 0.015909571200609207, 0.32249388098716736, -0.2578621208667755, 0.02136843651533127, 0.030506737530231476, 0.10592872649431229, 0.026412591338157654, 0.021955100819468498, 0.17936789989471436, 0.08204400539398193, 0.2470068633556366, -0.20330040156841278, -0.41636794805526733, -0.13741113245487213, 0.1598336100578308, -0.19910591840744019, 0.06229400262236595, 1.0492907762527466, -0.0076579200103878975, 0.0009827064350247383, -0.005273059010505676]} +{"t": 5.7849, "q": [-0.1385406106710434, 0.004112772177904844, -0.0068030827678740025, 0.31713348627090454, -0.176261767745018, -0.010236319154500961, -0.07816995680332184, -0.032520391047000885, 0.01594974845647812, 0.3224853575229645, -0.25786638259887695, 0.021375687792897224, 0.030198724940419197, 0.10591357946395874, 0.026423003524541855, 0.02346511371433735, 0.17316007614135742, 0.08541157096624374, 0.24782179296016693, -0.21685455739498138, -0.4160084128379822, -0.1384417712688446, 0.1597856730222702, -0.19908194243907928, 0.06229400262236595, 1.0492788553237915, -0.0076459357514977455, 0.0009467537747696042, -0.005261074751615524]} +{"t": 5.8017, "q": [-0.13857470452785492, 0.004070162307471037, -0.006776299327611923, 0.31713348627090454, -0.17627447843551636, -0.010229283012449741, -0.07817848026752472, -0.03256300464272499, 0.01593635603785515, 0.3225109279155731, -0.2578621208667755, 0.02136843651533127, 0.030131764709949493, 0.10588330030441284, 0.02644382230937481, 0.025226794183254242, 0.16858209669589996, 0.08758071810007095, 0.24863672256469727, -0.2299293428659439, -0.4148818850517273, -0.13942447304725647, 0.1598096489906311, -0.19906996190547943, 0.06227003410458565, 1.0492788553237915, -0.0076579200103878975, 0.0009587380336597562, -0.005261074751615524]} +{"t": 5.8185, "q": [-0.1385832279920578, 0.004001984838396311, -0.006749515421688557, 0.317099392414093, -0.17626604437828064, -0.010243413969874382, -0.07821256667375565, -0.03263118118047714, 0.01594974845647812, 0.3224598169326782, -0.2578747570514679, 0.021375758573412895, 0.03006480634212494, 0.10591339319944382, 0.0264324601739645, 0.027336018159985542, 0.1633090376853943, 0.09039700776338577, 0.24996696412563324, -0.24390295147895813, -0.4128086268901825, -0.1402873396873474, 0.15984559059143066, -0.19904600083827972, 0.062246065586805344, 1.0493388175964355, -0.0076699042692780495, 0.0009587380336597562, -0.005261074751615524]} +{"t": 5.8352, "q": [-0.13855765759944916, 0.003925285767763853, -0.006615596357733011, 0.317099392414093, -0.17627447843551636, -0.010229283012449741, -0.07822961360216141, -0.032759010791778564, 0.016003314405679703, 0.3224598169326782, -0.25787076354026794, 0.021397314965724945, 0.03006480634212494, 0.10590582340955734, 0.02643766440451145, 0.02954111434519291, 0.1588149517774582, 0.09297361969947815, 0.25217205286026, -0.2579125165939331, -0.41019606590270996, -0.14080266654491425, 0.15982162952423096, -0.19904600083827972, 0.06217416003346443, 1.0493627786636353, -0.0076699042692780495, 0.0009467537747696042, -0.005261074751615524]} +{"t": 5.852, "q": [-0.1385832279920578, 0.0038315425626933575, -0.006588812451809645, 0.3170567750930786, -0.17627869546413422, -0.010222221724689007, -0.07822961360216141, -0.032818667590618134, 0.016043491661548615, 0.32240867614746094, -0.25786226987838745, 0.021382849663496017, 0.029997846111655235, 0.10588330030441284, 0.02644382230937481, 0.031506527215242386, 0.15523166954517365, 0.09473530203104019, 0.2560189962387085, -0.27158650755882263, -0.4078231751918793, -0.14150972664356232, 0.15977369248867035, -0.19904600083827972, 0.06221011281013489, 1.04939866065979, -0.0076579200103878975, 0.0009467537747696042, -0.005273059010505676]} +{"t": 5.8688, "q": [-0.1385832279920578, 0.0037718876264989376, -0.006495069246739149, 0.31699714064598083, -0.17628298699855804, -0.010229317471385002, -0.0782807469367981, -0.03292093053460121, 0.01611045002937317, 0.32236605882644653, -0.25786226987838745, 0.021382849663496017, 0.029796967282891273, 0.10585281997919083, 0.026474101468920708, 0.034598458558321, 0.15178021788597107, 0.09629324823617935, 0.2592187821865082, -0.28563201427459717, -0.4031493365764618, -0.14250442385673523, 0.15960590541362762, -0.19904600083827972, 0.06222209706902504, 1.04939866065979, -0.0076339514926075935, 0.0009467537747696042, -0.005261074751615524]} +{"t": 5.8857, "q": [-0.138625830411911, 0.00369518855586648, -0.006307582836598158, 0.3168181777000427, -0.17628727853298187, -0.010236413218080997, -0.07843413949012756, -0.032955020666122437, 0.016204193234443665, 0.3222382366657257, -0.257862389087677, 0.021397244185209274, 0.029622873291373253, 0.10580739378929138, 0.026505334302783012, 0.03828959912061691, 0.14859241247177124, 0.09831858426332474, 0.261208176612854, -0.2986468970775604, -0.39788827300071716, -0.1444338858127594, 0.1595100313425064, -0.19902202486991882, 0.06217416003346443, 1.04939866065979, -0.007705857045948505, 0.0009347695740871131, -0.005261074751615524]} +{"t": 5.9024, "q": [-0.1386343538761139, 0.0035758796148002148, -0.006200447678565979, 0.3166903257369995, -0.17627018690109253, -0.010222187265753746, -0.07847674936056137, -0.03309137374162674, 0.0163247212767601, 0.3221870958805084, -0.25784575939178467, 0.02141149714589119, 0.029355036094784737, 0.10572411119937897, 0.026562592014670372, 0.04198073968291283, 0.1450330913066864, 0.10185392946004868, 0.2628619968891144, -0.31129026412963867, -0.39359790086746216, -0.14758573472499847, 0.15940217673778534, -0.19898608326911926, 0.06217416003346443, 1.0494226217269897, -0.0076339514926075935, 0.0009227853151969612, -0.005261074751615524]} +{"t": 5.9191, "q": [-0.13860027492046356, 0.003490658011287451, -0.00613348837941885, 0.3165198862552643, -0.17627876996994019, -0.010236378759145737, -0.07850231975317001, -0.033193640410900116, 0.01628454588353634, 0.32208484411239624, -0.25785839557647705, 0.021418802440166473, 0.02922111563384533, 0.1057390570640564, 0.026561636477708817, 0.04508465528488159, 0.1411142498254776, 0.10609634965658188, 0.2650071680545807, -0.3257072865962982, -0.39127296209335327, -0.15039004385471344, 0.15935423970222473, -0.19897408783435822, 0.06217416003346443, 1.0494107007980347, -0.007693872787058353, 0.0009108011145144701, -0.005249090492725372]} +{"t": 5.9359, "q": [-0.13860027492046356, 0.003396914806216955, -0.00613348837941885, 0.31640058755874634, -0.17629142105579376, -0.010215186513960361, -0.07850231975317001, -0.033304426819086075, 0.01629793643951416, 0.3220081329345703, -0.2578543722629547, 0.021440377458930016, 0.02926129288971424, 0.10574644058942795, 0.02656588703393936, 0.047529436647892, 0.13727930188179016, 0.11090201884508133, 0.26726019382476807, -0.3384225368499756, -0.3893914520740509, -0.1525232344865799, 0.15937821567058563, -0.1989501267671585, 0.06217416003346443, 1.0494226217269897, -0.0076818885281682014, 0.0009108011145144701, -0.005273059010505676]} +{"t": 5.9527, "q": [-0.1386343538761139, 0.0033287382684648037, -0.00613348837941885, 0.31625568866729736, -0.17629142105579376, -0.010215186513960361, -0.07851936668157578, -0.033364083617925644, 0.016257761046290398, 0.3219655156135559, -0.2578543722629547, 0.021440377458930016, 0.029355036094784737, 0.10572411119937897, 0.026562592014670372, 0.04986635968089104, 0.13437911868095398, 0.11455720663070679, 0.2688780725002289, -0.3522762954235077, -0.38758182525634766, -0.15494404733181, 0.1591624915599823, -0.1989501267671585, 0.06215019151568413, 1.0494346618652344, -0.007693872787058353, 0.0009108011145144701, -0.005273059010505676]} +{"t": 5.9694, "q": [-0.13865140080451965, 0.003311693202704191, -0.006146880332380533, 0.3162301480770111, -0.17627869546413422, -0.010222221724689007, -0.07851936668157578, -0.03338964655995369, 0.016190802678465843, 0.3218803107738495, -0.2578543722629547, 0.021440377458930016, 0.029676441103219986, 0.10570139437913895, 0.026578208431601524, 0.05189169570803642, 0.1327492594718933, 0.11597134917974472, 0.27018436789512634, -0.3671247661113739, -0.3853287994861603, -0.15777233242988586, 0.15903067588806152, -0.19901004433631897, 0.06215019151568413, 1.049458622932434, -0.007693872787058353, 0.0009227853151969612, -0.005249090492725372]} +{"t": 5.9862, "q": [-0.13868549466133118, 0.0032946490682661533, -0.006200447678565979, 0.3161449134349823, -0.17629142105579376, -0.010215186513960361, -0.07851936668157578, -0.03340669348835945, 0.01613723486661911, 0.32184621691703796, -0.2578626275062561, 0.021426035091280937, 0.02989071048796177, 0.10571615397930145, 0.026586709544062614, 0.053413692861795425, 0.13067598640918732, 0.11769707500934601, 0.2717183530330658, -0.38214099407196045, -0.3816855847835541, -0.15977369248867035, 0.15880297124385834, -0.19905798137187958, 0.06217416003346443, 1.0495305061340332, -0.0076579200103878975, 0.0009347695740871131, -0.005261074751615524]} +{"t": 6.0029, "q": [-0.13868549466133118, 0.0032435166649520397, -0.006213839631527662, 0.31621310114860535, -0.1762828379869461, -0.01020099502056837, -0.07851936668157578, -0.033432260155677795, 0.016083667054772377, 0.3218376934528351, -0.25785014033317566, 0.021433142945170403, 0.030038021504878998, 0.1057312935590744, 0.026576297357678413, 0.05424060299992561, 0.12839898467063904, 0.11999804526567459, 0.27315643429756165, -0.3949401378631592, -0.3775869905948639, -0.16140355169773102, 0.15838351845741272, -0.19911789894104004, 0.06215019151568413, 1.0496503114700317, -0.0076579200103878975, 0.0009587380336597562, -0.005273059010505676]} +{"t": 6.0196, "q": [-0.13865140080451965, 0.0032861274667084217, -0.006254015490412712, 0.316238671541214, -0.17629142105579376, -0.010215186513960361, -0.07850231975317001, -0.033423736691474915, 0.016083667054772377, 0.32189735770225525, -0.25785014033317566, 0.021433142945170403, 0.030024630948901176, 0.10572372376918793, 0.026581503450870514, 0.05452822521328926, 0.1254388839006424, 0.1233895793557167, 0.2749660611152649, -0.4079670011997223, -0.37252965569496155, -0.16321316361427307, 0.1579161286354065, -0.19910591840744019, 0.06215019151568413, 1.0500458478927612, -0.0076579200103878975, 0.0009587380336597562, -0.005273059010505676]} +{"t": 6.0364, "q": [-0.138625830411911, 0.0032861274667084217, -0.0062272315844893456, 0.31621310114860535, -0.17628712952136993, -0.010208090767264366, -0.07850231975317001, -0.03340669348835945, 0.016097059473395348, 0.32194846868515015, -0.25786688923835754, 0.0214332677423954, 0.029837142676115036, 0.1057165339589119, 0.026567798107862473, 0.054492272436618805, 0.1230660080909729, 0.12630175054073334, 0.2772071063518524, -0.4214732050895691, -0.3701687455177307, -0.16569389402866364, 0.15730494260787964, -0.19911789894104004, 0.06216217577457428, 1.0505491495132446, -0.0076818885281682014, 0.0009707222343422472, -0.005273059010505676]} +{"t": 6.0531, "q": [-0.13864287734031677, 0.0033287382684648037, -0.006254015490412712, 0.31626421213150024, -0.1762957125902176, -0.010222282260656357, -0.07851936668157578, -0.03334703668951988, 0.01615062542259693, 0.3219655156135559, -0.2578543722629547, 0.021440377458930016, 0.02942199446260929, 0.1057165339589119, 0.026567798107862473, 0.05456417798995972, 0.12005797028541565, 0.13008876144886017, 0.278129905462265, -0.4343682527542114, -0.3682992160320282, -0.16950488090515137, 0.15670572221279144, -0.19911789894104004, 0.06216217577457428, 1.0509566068649292, -0.0076699042692780495, 0.0009707222343422472, -0.005273059010505676]} +{"t": 6.0699, "q": [-0.1386343538761139, 0.0033457824029028416, -0.0062272315844893456, 0.316281259059906, -0.17628712952136993, -0.010208090767264366, -0.07851936668157578, -0.03332999348640442, 0.01615062542259693, 0.32198256254196167, -0.25785014033317566, 0.021433142945170403, 0.029100589454174042, 0.1057165339589119, 0.026567798107862473, 0.054552193731069565, 0.11683420836925507, 0.132905051112175, 0.2782617211341858, -0.44594499468803406, -0.36656150221824646, -0.17230919003486633, 0.1565379500389099, -0.19911789894104004, 0.06215019151568413, 1.051268219947815, -0.0076699042692780495, 0.0009707222343422472, -0.005261074751615524]} +{"t": 6.0866, "q": [-0.13860879838466644, 0.003354304004460573, -0.0062272315844893456, 0.31640058755874634, -0.1762828379869461, -0.01020099502056837, -0.07847674936056137, -0.0333385169506073, 0.016190802678465843, 0.32209333777427673, -0.25785014033317566, 0.021433142945170403, 0.029033629223704338, 0.10570896416902542, 0.026573004201054573, 0.05445631965994835, 0.1146051436662674, 0.13356418907642365, 0.2782018184661865, -0.45813295245170593, -0.3648357689380646, -0.1744903177022934, 0.15643009543418884, -0.19911789894104004, 0.06217416003346443, 1.051855444908142, -0.0076818885281682014, 0.0009587380336597562, -0.005249090492725372]} +{"t": 6.1034, "q": [-0.13855765759944916, 0.003354304004460573, -0.0062272315844893456, 0.31652840971946716, -0.17628712952136993, -0.010208090767264366, -0.07846823334693909, -0.0333385169506073, 0.016244368627667427, 0.3221530020236969, -0.2578458786010742, 0.02142591029405594, 0.028966670855879784, 0.10573168098926544, 0.02655738778412342, 0.05445631965994835, 0.11269965767860413, 0.13354022800922394, 0.2782137989997864, -0.4716751277446747, -0.3624269366264343, -0.17704296112060547, 0.15627430379390717, -0.19905798137187958, 0.06215019151568413, 1.05276620388031, -0.007729825098067522, 0.0009347695740871131, -0.00523710623383522]} +{"t": 6.1202, "q": [-0.13857470452785492, 0.0033457824029028416, -0.006187055725604296, 0.31663069128990173, -0.17628712952136993, -0.010208090767264366, -0.0784597098827362, -0.0333385169506073, 0.01628454588353634, 0.3221870958805084, -0.2578333914279938, 0.02143300138413906, 0.028966670855879784, 0.10574682056903839, 0.02654697746038437, 0.05426457151770592, 0.11086606979370117, 0.1338997483253479, 0.27824974060058594, -0.48171791434288025, -0.3597185015678406, -0.179056316614151, 0.1559387445449829, -0.19905798137187958, 0.062126222997903824, 1.0536890029907227, -0.0076818885281682014, 0.0009347695740871131, -0.005261074751615524]} +{"t": 6.1369, "q": [-0.1385832279920578, 0.0033287382684648037, -0.006187055725604296, 0.3167499899864197, -0.17628712952136993, -0.010208090767264366, -0.07846823334693909, -0.03332999348640442, 0.01628454588353634, 0.3222382366657257, -0.25781702995300293, 0.02147604525089264, 0.028993453830480576, 0.10573944449424744, 0.026542725041508675, 0.05408480763435364, 0.1085890680551529, 0.13428324460983276, 0.277986079454422, -0.4917966425418854, -0.35660260915756226, -0.18066219985485077, 0.1557949334383011, -0.19908194243907928, 0.06215019151568413, 1.0545638799667358, -0.0076579200103878975, 0.0009108011145144701, -0.005249090492725372]} +{"t": 6.1537, "q": [-0.13857470452785492, 0.0033202157355844975, -0.006200447678565979, 0.3168351948261261, -0.1762744039297104, -0.010215125977993011, -0.07843413949012756, -0.03335556015372276, 0.01629793643951416, 0.3222297132015228, -0.2577756941318512, 0.021533308550715446, 0.029194332659244537, 0.10576196759939194, 0.026536565274000168, 0.05403687059879303, 0.10665960609912872, 0.1342233270406723, 0.2775067090988159, -0.5022828578948975, -0.35303130745887756, -0.18231602013111115, 0.15557920932769775, -0.19910591840744019, 0.062126222997903824, 1.0555825233459473, -0.0076579200103878975, 0.0009227853151969612, -0.005225121974945068]} +{"t": 6.1705, "q": [-0.13860027492046356, 0.0033031716011464596, -0.006200447678565979, 0.316911906003952, -0.17627862095832825, -0.010208064690232277, -0.0784171000123024, -0.03338964655995369, 0.0163247212767601, 0.3222382366657257, -0.25773459672927856, 0.021619342267513275, 0.029314858838915825, 0.10574701428413391, 0.026537520810961723, 0.053940996527671814, 0.10475411266088486, 0.13404355943202972, 0.2775067090988159, -0.5122537016868591, -0.3510059714317322, -0.1841256320476532, 0.15542341768741608, -0.19908194243907928, 0.06215019151568413, 1.0559899806976318, -0.0076219672337174416, 0.000898816913831979, -0.005249090492725372]} +{"t": 6.1873, "q": [-0.13860879838466644, 0.0032435166649520397, -0.006187055725604296, 0.3169715702533722, -0.1762700378894806, -0.010193874128162861, -0.07840005308389664, -0.03340669348835945, 0.016378289088606834, 0.3222467601299286, -0.25769326090812683, 0.02167658694088459, 0.029301468282938004, 0.10573206841945648, 0.02653847634792328, 0.054012902081012726, 0.10236924886703491, 0.13393570482730865, 0.2770872712135315, -0.5217212438583374, -0.3500951826572418, -0.18575549125671387, 0.1552676260471344, -0.19908194243907928, 0.06216217577457428, 1.0560020208358765, -0.0076459357514977455, 0.0009108011145144701, -0.005261074751615524]} +{"t": 6.204, "q": [-0.1385832279920578, 0.003226472530514002, -0.006146880332380533, 0.3169715702533722, -0.1762828379869461, -0.01020099502056837, -0.07839152961969376, -0.03344930335879326, 0.016431856900453568, 0.32226380705833435, -0.25767263770103455, 0.021712416782975197, 0.029328251257538795, 0.10574701428413391, 0.026537520810961723, 0.05372528359293938, 0.0998525619506836, 0.1339716613292694, 0.276643842458725, -0.5306135416030884, -0.3497476279735565, -0.18803249299526215, 0.15517175197601318, -0.19910591840744019, 0.06215019151568413, 1.056061863899231, -0.0076459357514977455, 0.0009227853151969612, -0.005249090492725372]} +{"t": 6.2209, "q": [-0.13853208720684052, 0.0032009058631956577, -0.00613348837941885, 0.3169800937175751, -0.1762828379869461, -0.01020099502056837, -0.07837449014186859, -0.03346634656190872, 0.01647203229367733, 0.32227233052253723, -0.2576645314693451, 0.02174113504588604, 0.029194332659244537, 0.10576215386390686, 0.026527108624577522, 0.05312607064843178, 0.09783921390771866, 0.13391172885894775, 0.27675172686576843, -0.5397455096244812, -0.3493761122226715, -0.190860778093338, 0.1549680233001709, -0.19910591840744019, 0.06211423873901367, 1.0561457872390747, -0.0076459357514977455, 0.000898816913831979, -0.005261074751615524]} +{"t": 6.2376, "q": [-0.13854913413524628, 0.003209428396075964, -0.00605313666164875, 0.31699714064598083, -0.17627862095832825, -0.010208064690232277, -0.07839152961969376, -0.03346634656190872, 0.016538990661501884, 0.3222978711128235, -0.25764793157577515, 0.021755389869213104, 0.02889971062541008, 0.10575458407402039, 0.026532314717769623, 0.05277852714061737, 0.09647301584482193, 0.13375593721866608, 0.2768595814704895, -0.5457736253738403, -0.34929221868515015, -0.1937130093574524, 0.1546923816204071, -0.19908194243907928, 0.062138207256793976, 1.056181788444519, -0.0076339514926075935, 0.0009347695740871131, -0.005273059010505676]} +{"t": 6.2543, "q": [-0.13855765759944916, 0.003209428396075964, -0.006012961268424988, 0.3169715702533722, -0.1762744039297104, -0.010215125977993011, -0.07842562347650528, -0.033432260155677795, 0.016605950891971588, 0.32230639457702637, -0.2576439082622528, 0.021776964887976646, 0.028471169993281364, 0.10573206841945648, 0.02653847634792328, 0.05285043269395828, 0.09584983438253403, 0.1333005428314209, 0.2767157554626465, -0.5527004599571228, -0.3493521511554718, -0.1961817741394043, 0.1544407159090042, -0.19908194243907928, 0.062138207256793976, 1.0562176704406738, -0.0076579200103878975, 0.0009347695740871131, -0.005249090492725372]} +{"t": 6.2711, "q": [-0.13850653171539307, 0.003226472530514002, -0.006039745174348354, 0.3169204294681549, -0.17626583576202393, -0.010200935415923595, -0.0784171000123024, -0.033432260155677795, 0.016579166054725647, 0.32230639457702637, -0.25764378905296326, 0.021762551739811897, 0.028176547959446907, 0.10576177388429642, 0.026546020060777664, 0.052922338247299194, 0.09599364548921585, 0.1330728381872177, 0.27645209431648254, -0.5588244199752808, -0.34936413168907166, -0.1989261507987976, 0.15440475940704346, -0.19910591840744019, 0.06216217577457428, 1.0562776327133179, -0.007705857045948505, 0.0009227853151969612, -0.005261074751615524]} +{"t": 6.2878, "q": [-0.13846391439437866, 0.003226472530514002, -0.0059995693154633045, 0.31690338253974915, -0.17626574635505676, -0.010186760686337948, -0.0784171000123024, -0.033432260155677795, 0.016579166054725647, 0.32230639457702637, -0.2576439082622528, 0.021776964887976646, 0.02805602177977562, 0.10578467696905136, 0.026520948857069016, 0.05282646417617798, 0.09622134268283844, 0.1329529881477356, 0.2763921916484833, -0.5617365837097168, -0.3494000732898712, -0.20161062479019165, 0.1543688029050827, -0.19908194243907928, 0.06215019151568413, 1.0564334392547607, -0.007705857045948505, 0.0009347695740871131, -0.005249090492725372]} +{"t": 6.3046, "q": [-0.1384468674659729, 0.003269083332270384, -0.006026353221386671, 0.3168266713619232, -0.1762615293264389, -0.010193821974098682, -0.07844266295433044, -0.03338964655995369, 0.016565775498747826, 0.3222893476486206, -0.25763142108917236, 0.02178405597805977, 0.02788192592561245, 0.10579982399940491, 0.026510538533329964, 0.05277852714061737, 0.09652095288038254, 0.13282117247581482, 0.2761165499687195, -0.5633664727210999, -0.34961581230163574, -0.20418722927570343, 0.15422499179840088, -0.19908194243907928, 0.062138207256793976, 1.0564934015274048, -0.0076818885281682014, 0.0009347695740871131, -0.005273059010505676]} +{"t": 6.3214, "q": [-0.13843834400177002, 0.0033202157355844975, -0.006012961268424988, 0.3167926073074341, -0.1762615293264389, -0.010193821974098682, -0.07845118641853333, -0.0333385169506073, 0.016525600105524063, 0.32227233052253723, -0.25763967633247375, 0.021769732236862183, 0.02786853536963463, 0.10580739378929138, 0.026505334302783012, 0.05275455862283707, 0.09708420932292938, 0.13288109004497528, 0.27569711208343506, -0.5642412900924683, -0.35004723072052, -0.20618858933448792, 0.15400928258895874, -0.19908194243907928, 0.062138207256793976, 1.0564934015274048, -0.0076699042692780495, 0.0009347695740871131, -0.005261074751615524]} +{"t": 6.3382, "q": [-0.13841278851032257, 0.003439525607973337, -0.006079920567572117, 0.3167755603790283, -0.17625731229782104, -0.010200883261859417, -0.0784597098827362, -0.03328738361597061, 0.01647203229367733, 0.3222893476486206, -0.2576480507850647, 0.02176978439092636, 0.02786853536963463, 0.10579225420951843, 0.026515744626522064, 0.05265868455171585, 0.09728793799877167, 0.13280917704105377, 0.2757689952850342, -0.5643491744995117, -0.3505985140800476, -0.20721924304962158, 0.15378157794475555, -0.19910591840744019, 0.062138207256793976, 1.0566611289978027, -0.0076459357514977455, 0.0009347695740871131, -0.005261074751615524]} +{"t": 6.355, "q": [-0.13843834400177002, 0.0035247462801635265, -0.006106704473495483, 0.3166988492012024, -0.1762659102678299, -0.01021509151905775, -0.0785108432173729, -0.03321920707821846, 0.01644524745643139, 0.32227233052253723, -0.25764793157577515, 0.021755389869213104, 0.0277212243527174, 0.1058143898844719, 0.0265284925699234, 0.05279051139950752, 0.0995769277215004, 0.13268934190273285, 0.2760326564311981, -0.5625754594802856, -0.35095804929733276, -0.20777051150798798, 0.15356586873531342, -0.19911789894104004, 0.062138207256793976, 1.056864857673645, -0.0076579200103878975, 0.0009467537747696042, -0.005261074751615524]} +{"t": 6.3717, "q": [-0.13842131197452545, 0.0035417904146015644, -0.006106704473495483, 0.31663069128990173, -0.17627011239528656, -0.010208030231297016, -0.07858753949403763, -0.033176593482494354, 0.01647203229367733, 0.3222297132015228, -0.2576480507850647, 0.02176978439092636, 0.027788182720541954, 0.10584428906440735, 0.02652658149600029, 0.054012902081012726, 0.10345982015132904, 0.13248561322689056, 0.2760566174983978, -0.558201253414154, -0.35123366117477417, -0.2088131457567215, 0.1533980816602707, -0.1991538554430008, 0.062126222997903824, 1.0570446252822876, -0.0076818885281682014, 0.0009227853151969612, -0.005225121974945068]} +{"t": 6.3885, "q": [-0.13842131197452545, 0.0035929237492382526, -0.0060933125205338, 0.3165028393268585, -0.17625731229782104, -0.010200883261859417, -0.07859606295824051, -0.033193640410900116, 0.016391679644584656, 0.32221266627311707, -0.2576439082622528, 0.021776964887976646, 0.027855142951011658, 0.10590390115976334, 0.026532215997576714, 0.05458814650774002, 0.10842128843069077, 0.13195830583572388, 0.27594876289367676, -0.554402232170105, -0.3513774871826172, -0.21074260771274567, 0.15332618355751038, -0.19923774898052216, 0.06210225448012352, 1.0575839281082153, -0.0076699042692780495, 0.0009108011145144701, -0.005261074751615524]} +{"t": 6.4052, "q": [-0.13842131197452545, 0.0035844012163579464, -0.0061736637726426125, 0.31644317507743835, -0.17627011239528656, -0.010208030231297016, -0.07866424322128296, -0.033176593482494354, 0.016351504251360893, 0.3221956193447113, -0.2576524019241333, 0.021791430190205574, 0.02789531834423542, 0.10600098222494125, 0.026530731469392776, 0.05469600483775139, 0.11367037892341614, 0.1317785382270813, 0.27592480182647705, -0.5484700798988342, -0.3515212833881378, -0.2130795270204544, 0.1531224399805069, -0.19928568601608276, 0.062078285962343216, 1.0579674243927002, -0.007705857045948505, 0.0009347695740871131, -0.005249090492725372]} +{"t": 6.422, "q": [-0.13843834400177002, 0.0036440561525523663, -0.006200447678565979, 0.3163835406303406, -0.1762659102678299, -0.01021509151905775, -0.07870685309171677, -0.03315955027937889, 0.0163247212767601, 0.3221956193447113, -0.25765228271484375, 0.021777017042040825, 0.027774792164564133, 0.1061423271894455, 0.026554739102721214, 0.05500759556889534, 0.12016582489013672, 0.13167068362236023, 0.2760566174983978, -0.5402608513832092, -0.351653128862381, -0.2154763638973236, 0.15285879373550415, -0.19927369058132172, 0.06209027022123337, 1.0580872297286987, -0.007705857045948505, 0.0009227853151969612, -0.005261074751615524]} +{"t": 6.4387, "q": [-0.1384468674659729, 0.003720755223184824, -0.006187055725604296, 0.316238671541214, -0.1762659102678299, -0.01021509151905775, -0.07879207283258438, -0.03313398361206055, 0.016364896669983864, 0.3221018612384796, -0.25765228271484375, 0.021777017042040825, 0.02773461677134037, 0.10625389963388443, 0.026571059599518776, 0.055690694600343704, 0.12806342542171478, 0.13144297897815704, 0.2759607434272766, -0.5316442251205444, -0.35178494453430176, -0.21739384531974792, 0.15269100666046143, -0.19928568601608276, 0.06210225448012352, 1.0581591129302979, -0.0076818885281682014, 0.0009347695740871131, -0.005285043269395828]} +{"t": 6.4555, "q": [-0.13847243785858154, 0.0037718876264989376, -0.006200447678565979, 0.3161534368991852, -0.17626169323921204, -0.010222152806818485, -0.07882615923881531, -0.03314250707626343, 0.016351504251360893, 0.3221018612384796, -0.25766465067863464, 0.021755531430244446, 0.02774800732731819, 0.10639436542987823, 0.0266326442360878, 0.05583450570702553, 0.1369677037000656, 0.1309516280889511, 0.2754574120044708, -0.5197798013687134, -0.35203662514686584, -0.21919147670269012, 0.1525951325893402, -0.19936956465244293, 0.062078285962343216, 1.0582430362701416, -0.0076818885281682014, 0.0009347695740871131, -0.005273059010505676]} +{"t": 6.4723, "q": [-0.13846391439437866, 0.0038400650955736637, -0.006200447678565979, 0.31606820225715637, -0.17627018690109253, -0.010222187265753746, -0.07886024564504623, -0.03313398361206055, 0.016351504251360893, 0.32203370332717896, -0.25766491889953613, 0.02178432047367096, 0.027667656540870667, 0.10660933703184128, 0.02669881097972393, 0.05577458441257477, 0.1479812115430832, 0.1302565485239029, 0.2747383713722229, -0.5073282122612, -0.3521205186843872, -0.22163626551628113, 0.15246331691741943, -0.1995493322610855, 0.062078285962343216, 1.058290958404541, -0.0076579200103878975, 0.0009347695740871131, -0.005273059010505676]} +{"t": 6.489, "q": [-0.13845539093017578, 0.0038571092300117016, -0.006187055725604296, 0.3158807158470154, -0.1762659102678299, -0.01021509151905775, -0.07893694937229156, -0.0331084169447422, 0.016364896669983864, 0.3219740390777588, -0.25767314434051514, 0.021769996732473373, 0.027480170130729675, 0.10695820301771164, 0.026784569025039673, 0.05571466311812401, 0.15901868045330048, 0.12980113923549652, 0.2742230296134949, -0.4946848452091217, -0.3521804213523865, -0.2244645357131958, 0.1523195058107376, -0.19974108040332794, 0.06209027022123337, 1.0583388805389404, -0.0076579200103878975, 0.0009347695740871131, -0.005261074751615524]} +{"t": 6.5057, "q": [-0.13845539093017578, 0.0038571092300117016, -0.0061736637726426125, 0.3158551752567291, -0.1762659102678299, -0.01021509151905775, -0.07895398885011673, -0.03309989720582962, 0.016364896669983864, 0.3219314217567444, -0.2576647698879242, 0.021769925951957703, 0.02702484466135502, 0.10746006667613983, 0.02704421617090702, 0.055690694600343704, 0.17137442529201508, 0.12891431152820587, 0.2738155722618103, -0.47971653938293457, -0.3522283732891083, -0.22675353288650513, 0.1519959270954132, -0.19996878504753113, 0.06209027022123337, 1.0583388805389404, -0.0076579200103878975, 0.0009347695740871131, -0.005261074751615524]} +{"t": 6.5224, "q": [-0.13848096132278442, 0.003865630831569433, -0.006160271819680929, 0.3157699406147003, -0.17627432942390442, -0.010200968943536282, -0.07903921604156494, -0.033116940408945084, 0.016405072063207626, 0.32184621691703796, -0.25767725706100464, 0.02176283486187458, 0.026609696447849274, 0.10807974636554718, 0.027381382882595062, 0.05578656867146492, 0.18379007279872894, 0.12784771621227264, 0.2733362019062042, -0.4647842049598694, -0.35228827595710754, -0.22826354205608368, 0.15170830488204956, -0.20025640726089478, 0.062078285962343216, 1.0583388805389404, -0.0076459357514977455, 0.0009227853151969612, -0.005249090492725372]} +{"t": 6.5392, "q": [-0.13847243785858154, 0.0038315425626933575, -0.0060933125205338, 0.3157784640789032, -0.17627011239528656, -0.010208030231297016, -0.07911591231822968, -0.03313398361206055, 0.01645863987505436, 0.32176950573921204, -0.2576774060726166, 0.021777229383587837, 0.026435602456331253, 0.1087057963013649, 0.027760153636336327, 0.05577458441257477, 0.19704462587833405, 0.12634968757629395, 0.27182620763778687, -0.44838979840278625, -0.3523721694946289, -0.22949790954589844, 0.15156449377536774, -0.20057997107505798, 0.062078285962343216, 1.058350920677185, -0.0076339514926075935, 0.0009108011145144701, -0.005261074751615524]} +{"t": 6.5559, "q": [-0.13846391439437866, 0.003763366024941206, -0.006012961268424988, 0.31579551100730896, -0.1762659102678299, -0.01021509151905775, -0.07917556911706924, -0.03314250707626343, 0.016498815268278122, 0.32172688841819763, -0.25766903162002563, 0.021777158603072166, 0.026489170268177986, 0.10933194309473038, 0.028109410777688026, 0.05567871034145355, 0.20929251611232758, 0.125115305185318, 0.2696450650691986, -0.4337330758571625, -0.3527796268463135, -0.23094800114631653, 0.15155251324176788, -0.20098744332790375, 0.062078285962343216, 1.058350920677185, -0.0076579200103878975, 0.0009347695740871131, -0.005261074751615524]} +{"t": 6.5726, "q": [-0.13848096132278442, 0.00369518855586648, -0.005986177362501621, 0.3158210813999176, -0.17625731229782104, -0.010200883261859417, -0.07919260859489441, -0.03321068361401558, 0.01645863987505436, 0.3217013478279114, -0.25767314434051514, 0.021769996732473373, 0.026489170268177986, 0.10988485813140869, 0.028397634625434875, 0.05571466311812401, 0.22221150994300842, 0.1243123710155487, 0.26581010222435, -0.4188007414340973, -0.3529474139213562, -0.2338002473115921, 0.15156449377536774, -0.20126308500766754, 0.06203034892678261, 1.0584107637405396, -0.0076818885281682014, 0.0009108011145144701, -0.005261074751615524]} +{"t": 6.5894, "q": [-0.13849800825119019, 0.003618489485234022, -0.005972785409539938, 0.31579551100730896, -0.17627011239528656, -0.010208030231297016, -0.07921817898750305, -0.03325329348444939, 0.01648542284965515, 0.3215905427932739, -0.25767752528190613, 0.021791625767946243, 0.026743615046143532, 0.11041126400232315, 0.02853713370859623, 0.05565474182367325, 0.23398001492023468, 0.1239408552646637, 0.2621309459209442, -0.4071400761604309, -0.35305526852607727, -0.23740750551223755, 0.15151655673980713, -0.20158664882183075, 0.061982411891222, 1.0584467649459839, -0.007693872787058353, 0.0009227853151969612, -0.005285043269395828]} +{"t": 6.6062, "q": [-0.1384894847869873, 0.0035247462801635265, -0.005959393456578255, 0.31580403447151184, -0.1762659102678299, -0.01021509151905775, -0.07921817898750305, -0.03332999348640442, 0.01644524745643139, 0.3215479254722595, -0.2576817572116852, 0.021798858419060707, 0.02689092606306076, 0.11085332185029984, 0.028781099244952202, 0.0556667260825634, 0.24591630697250366, 0.12361728399991989, 0.2573372721672058, -0.39377766847610474, -0.35288751125335693, -0.23997212946414948, 0.15136076509952545, -0.20188625156879425, 0.061982411891222, 1.0584348440170288, -0.0076579200103878975, 0.0009227853151969612, -0.005273059010505676]} +{"t": 6.6229, "q": [-0.1384894847869873, 0.003499180544167757, -0.005959393456578255, 0.31575289368629456, -0.17625731229782104, -0.010200883261859417, -0.07922670245170593, -0.0333385169506073, 0.016418464481830597, 0.3214541971683502, -0.25767752528190613, 0.021791625767946243, 0.02706502191722393, 0.11119906604290009, 0.028978729620575905, 0.05548696219921112, 0.2585596740245819, 0.12269449979066849, 0.2536940574645996, -0.38163766264915466, -0.352995365858078, -0.2427644580602646, 0.1511210799217224, -0.2021738737821579, 0.06199439615011215, 1.0584707260131836, -0.0076579200103878975, 0.0009347695740871131, -0.005273059010505676]} +{"t": 6.6398, "q": [-0.1384894847869873, 0.003490658011287451, -0.005959393456578255, 0.31580403447151184, -0.1762659102678299, -0.01021509151905775, -0.07921817898750305, -0.03332999348640442, 0.01645863987505436, 0.3213860094547272, -0.2576776444911957, 0.0218060202896595, 0.02722572349011898, 0.11141261458396912, 0.02909124828875065, 0.05500759556889534, 0.2693215012550354, 0.12252672016620636, 0.2510695159435272, -0.37110352516174316, -0.35291147232055664, -0.24514931440353394, 0.1507495641708374, -0.20246149599552155, 0.06199439615011215, 1.0585426092147827, -0.0076579200103878975, 0.0009467537747696042, -0.005273059010505676]} +{"t": 6.6565, "q": [-0.13849800825119019, 0.003516224678605795, -0.005986177362501621, 0.31579551100730896, -0.17625731229782104, -0.010200883261859417, -0.07921817898750305, -0.0333385169506073, 0.016418464481830597, 0.3214115798473358, -0.25768163800239563, 0.0217844620347023, 0.027172155678272247, 0.11156667768955231, 0.02919839508831501, 0.05475592613220215, 0.2808503210544586, 0.12240687757730484, 0.24779783189296722, -0.3578968942165375, -0.3523961305618286, -0.2464555948972702, 0.1501503586769104, -0.20262928307056427, 0.061982411891222, 1.0585665702819824, -0.0076339514926075935, 0.0009946906939148903, -0.005273059010505676]} +{"t": 6.6733, "q": [-0.1384894847869873, 0.0035417904146015644, -0.005959393456578255, 0.3157784640789032, -0.17626583576202393, -0.010200935415923595, -0.07925226539373398, -0.03332147002220154, 0.016431856900453568, 0.32140305638313293, -0.2576817572116852, 0.021798858419060707, 0.02706502191722393, 0.11168458312749863, 0.029256246984004974, 0.05481584742665291, 0.2918398678302765, 0.12125638872385025, 0.24472986161708832, -0.34689539670944214, -0.3520965278148651, -0.24693496525287628, 0.14941932260990143, -0.2027491182088852, 0.062018364667892456, 1.0589021444320679, -0.0076699042692780495, 0.0009707222343422472, -0.005273059010505676]} +{"t": 6.69, "q": [-0.13849800825119019, 0.0035503129474818707, -0.005959393456578255, 0.3158125579357147, -0.17627011239528656, -0.010208030231297016, -0.07931192219257355, -0.033304426819086075, 0.016431856900453568, 0.32139453291893005, -0.25768163800239563, 0.0217844620347023, 0.026770399883389473, 0.11172051727771759, 0.029314961284399033, 0.05482783168554306, 0.30201447010040283, 0.12010590732097626, 0.24250079691410065, -0.336301326751709, -0.352024644613266, -0.2473783791065216, 0.1486043930053711, -0.20273713767528534, 0.062006380409002304, 1.0596930980682373, -0.0076579200103878975, 0.0009707222343422472, -0.005273059010505676]} +{"t": 6.707, "q": [-0.13851505517959595, 0.0035503129474818707, -0.005919218063354492, 0.3157699406147003, -0.17627011239528656, -0.010208030231297016, -0.07936305552721024, -0.03328738361597061, 0.01648542284965515, 0.3213860094547272, -0.25768589973449707, 0.021791696548461914, 0.026676656678318977, 0.11177244037389755, 0.02932555042207241, 0.055043548345565796, 0.311086505651474, 0.11859589070081711, 0.24002006649971008, -0.32260334491729736, -0.35196471214294434, -0.2476779818534851, 0.14776550233364105, -0.20272515714168549, 0.062006380409002304, 1.0606279373168945, -0.0076579200103878975, 0.0009587380336597562, -0.005273059010505676]} +{"t": 6.7237, "q": [-0.13853208720684052, 0.0035417904146015644, -0.005879042204469442, 0.3157784640789032, -0.17625731229782104, -0.010200883261859417, -0.0793800950050354, -0.033295903354883194, 0.01645863987505436, 0.3213774859905243, -0.25768589973449707, 0.021791696548461914, 0.02673022449016571, 0.11177200824022293, 0.02934439294040203, 0.05523529276251793, 0.319978803396225, 0.11477292329072952, 0.2377430647611618, -0.31109851598739624, -0.35191676020622253, -0.24794164299964905, 0.14719025790691376, -0.20272515714168549, 0.06203034892678261, 1.0616105794906616, -0.0076699042692780495, 0.0009827064350247383, -0.005261074751615524]} +{"t": 6.7404, "q": [-0.1385406106710434, 0.0035503129474818707, -0.005879042204469442, 0.3157699406147003, -0.1762659102678299, -0.01021509151905775, -0.0793800950050354, -0.033304426819086075, 0.01644524745643139, 0.32134339213371277, -0.2576776444911957, 0.0218060202896595, 0.0269177109003067, 0.11174909770488739, 0.029369467869400978, 0.05542704090476036, 0.32742100954055786, 0.11066233366727829, 0.23575368523597717, -0.2991023063659668, -0.35198867321014404, -0.24831314384937286, 0.14656707644462585, -0.20276111364364624, 0.062018364667892456, 1.0630247592926025, -0.0076459357514977455, 0.0009707222343422472, -0.005261074751615524]} +{"t": 6.7572, "q": [-0.13857470452785492, 0.003499180544167757, -0.005892434157431126, 0.31580403447151184, -0.17625731229782104, -0.010200883261859417, -0.07938861846923828, -0.03332999348640442, 0.01645863987505436, 0.32135191559791565, -0.2576817572116852, 0.021798858419060707, 0.027118587866425514, 0.11177115887403488, 0.02938207983970642, 0.055702678859233856, 0.3330535888671875, 0.1077381819486618, 0.23381222784519196, -0.28726187348365784, -0.3521205186843872, -0.2488764077425003, 0.1458600014448166, -0.20276111364364624, 0.062006380409002304, 1.0643550157546997, -0.0076699042692780495, 0.0009587380336597562, -0.005261074751615524]} +{"t": 6.7739, "q": [-0.13860879838466644, 0.003473613876849413, -0.005892434157431126, 0.3158125579357147, -0.17625723779201508, -0.010186726227402687, -0.07939714193344116, -0.033364083617925644, 0.01644524745643139, 0.3213348984718323, -0.25768163800239563, 0.0217844620347023, 0.027279291301965714, 0.11177872866392136, 0.029376862570643425, 0.055942364037036896, 0.3390936553478241, 0.10374743491411209, 0.23276960849761963, -0.2729167640209198, -0.3520486056804657, -0.24930784106254578, 0.14492523670196533, -0.20272515714168549, 0.062006380409002304, 1.0659369230270386, -0.0076579200103878975, 0.0009347695740871131, -0.005261074751615524]} +{"t": 6.7906, "q": [-0.13860879838466644, 0.003439525607973337, -0.005865650251507759, 0.3158125579357147, -0.17627011239528656, -0.010208030231297016, -0.07939714193344116, -0.03338112682104111, 0.01645863987505436, 0.32129228115081787, -0.2576776444911957, 0.0218060202896595, 0.02723911590874195, 0.11178608983755112, 0.029381070286035538, 0.056661415845155716, 0.34434273838996887, 0.09931327402591705, 0.23217038810253143, -0.25960227847099304, -0.352024644613266, -0.24989506602287292, 0.14397847652435303, -0.20272515714168549, 0.062018364667892456, 1.067914366722107, -0.0076579200103878975, 0.0009467537747696042, -0.005249090492725372]} +{"t": 6.8074, "q": [-0.13860027492046356, 0.003405436407774687, -0.005825474392622709, 0.31579551100730896, -0.17626574635505676, -0.010186760686337948, -0.07941418886184692, -0.03340669348835945, 0.016538990661501884, 0.32129228115081787, -0.25768589973449707, 0.021791696548461914, 0.027158765122294426, 0.1117858737707138, 0.029390491545200348, 0.05735650286078453, 0.3499753177165985, 0.09265004843473434, 0.23208650946617126, -0.2443583458662033, -0.35213249921798706, -0.2503025233745575, 0.14305569231510162, -0.20272515714168549, 0.062018364667892456, 1.0700114965438843, -0.0076699042692780495, 0.0009108011145144701, -0.005261074751615524]} +{"t": 6.8242, "q": [-0.13856618106365204, 0.003405436407774687, -0.005812082905322313, 0.3157784640789032, -0.17626583576202393, -0.010200935415923595, -0.07940566539764404, -0.03340669348835945, 0.016538990661501884, 0.32129228115081787, -0.25768589973449707, 0.021791696548461914, 0.027118587866425514, 0.1117856577038765, 0.02939991094172001, 0.05843508243560791, 0.3558475971221924, 0.0854235589504242, 0.23203857243061066, -0.22956982254981995, -0.35215646028518677, -0.2510455548763275, 0.14222878217697144, -0.20270118117332458, 0.062006380409002304, 1.0716654062271118, -0.0076699042692780495, 0.0009227853151969612, -0.005249090492725372]} +{"t": 6.8409, "q": [-0.13857470452785492, 0.003388392273336649, -0.005745123140513897, 0.31579551100730896, -0.17626574635505676, -0.010186760686337948, -0.07945679873228073, -0.03340669348835945, 0.016565775498747826, 0.32130932807922363, -0.25766927003860474, 0.02180594950914383, 0.02686414308845997, 0.1117856577038765, 0.02939991094172001, 0.0595615990459919, 0.3602578043937683, 0.07920374721288681, 0.2320505529642105, -0.21560819447040558, -0.3521205186843872, -0.25170469284057617, 0.14158163964748383, -0.20267722010612488, 0.06204233318567276, 1.072719931602478, -0.0076818885281682014, 0.0008868326549418271, -0.005249090492725372]} +{"t": 6.8577, "q": [-0.13860027492046356, 0.003405436407774687, -0.005691555794328451, 0.31579551100730896, -0.17627011239528656, -0.010208030231297016, -0.07952497154474258, -0.03340669348835945, 0.016565775498747826, 0.32130080461502075, -0.25768163800239563, 0.0217844620347023, 0.026609696447849274, 0.11177787184715271, 0.029414549469947815, 0.061059627681970596, 0.36496758460998535, 0.07224091142416, 0.23221832513809204, -0.2001245766878128, -0.3520486056804657, -0.2525555491447449, 0.1408625841140747, -0.20264126360416412, 0.06204233318567276, 1.0739903450012207, -0.0076579200103878975, 0.000874848454259336, -0.005249090492725372]} +{"t": 6.8744, "q": [-0.1385832279920578, 0.003405436407774687, -0.005624596029520035, 0.31580403447151184, -0.17627432942390442, -0.010200968943536282, -0.07955905795097351, -0.03340669348835945, 0.01661934331059456, 0.32129228115081787, -0.25768163800239563, 0.0217844620347023, 0.026341859251260757, 0.11177787184715271, 0.029414549469947815, 0.06278535723686218, 0.36925795674324036, 0.06443917751312256, 0.23245801031589508, -0.18486866354942322, -0.35198867321014404, -0.25446105003356934, 0.14004765450954437, -0.20260530710220337, 0.06204233318567276, 1.0759676694869995, -0.0076459357514977455, 0.0008269115351140499, -0.005249090492725372]} +{"t": 6.8912, "q": [-0.1385832279920578, 0.003448047209531069, -0.005584420636296272, 0.31579551100730896, -0.1762659102678299, -0.01021509151905775, -0.07963576167821884, -0.03338964655995369, 0.01665951870381832, 0.3212752342224121, -0.2576776444911957, 0.0218060202896595, 0.026074020192027092, 0.11177745461463928, 0.029433395713567734, 0.06460695713758469, 0.37270939350128174, 0.05722467601299286, 0.23273365199565887, -0.17135044932365417, -0.3519287705421448, -0.25690582394599915, 0.13912487030029297, -0.20258134603500366, 0.06205431744456291, 1.0778851509094238, -0.0076579200103878975, 0.0008388957940042019, -0.00523710623383522]} +{"t": 6.9079, "q": [-0.13860879838466644, 0.003448047209531069, -0.0055442447774112225, 0.3157784640789032, -0.17627432942390442, -0.010200968943536282, -0.07968689501285553, -0.03338112682104111, 0.016672909259796143, 0.32129228115081787, -0.2576776444911957, 0.0218060202896595, 0.02603384479880333, 0.11177745461463928, 0.029433395713567734, 0.06614094227552414, 0.37547776103019714, 0.05020191892981529, 0.23332087695598602, -0.15656191110610962, -0.35194075107574463, -0.25879934430122375, 0.1386934369802475, -0.2025693655014038, 0.06204233318567276, 1.0790835618972778, -0.0076339514926075935, 0.0008029430755414069, -0.005249090492725372]} +{"t": 6.9246, "q": [-0.138625830411911, 0.003456569742411375, -0.005571028683334589, 0.31579551100730896, -0.1762615293264389, -0.010193821974098682, -0.07966984808444977, -0.03340669348835945, 0.016672909259796143, 0.32129228115081787, -0.25768163800239563, 0.0217844620347023, 0.0260472372174263, 0.11177723854780197, 0.029442815110087395, 0.06808238476514816, 0.3777547776699066, 0.042508047074079514, 0.2335006445646286, -0.14225275814533234, -0.35206058621406555, -0.26022547483444214, 0.13835787773132324, -0.2025453895330429, 0.06205431744456291, 1.0801142454147339, -0.0076699042692780495, 0.0008149273344315588, -0.00523710623383522]} +{"t": 6.9414, "q": [-0.13860879838466644, 0.003448047209531069, -0.005557636730372906, 0.31580403447151184, -0.17627854645252228, -0.010193899273872375, -0.0796528086066246, -0.03338112682104111, 0.01665951870381832, 0.32126671075820923, -0.2576734125614166, 0.021798787638545036, 0.02606062963604927, 0.11175453662872314, 0.029458466917276382, 0.07026351243257523, 0.37914493680000305, 0.03634815663099289, 0.23330889642238617, -0.12918995320796967, -0.3523482084274292, -0.2614119052886963, 0.13810621201992035, -0.2025453895330429, 0.06204233318567276, 1.0806775093078613, -0.00771784083917737, 0.0008029430755414069, -0.005249090492725372]} +{"t": 6.9581, "q": [-0.13861730694770813, 0.003431003075093031, -0.005571028683334589, 0.3158210813999176, -0.17627011239528656, -0.010208030231297016, -0.0796528086066246, -0.03338964655995369, 0.01665951870381832, 0.32125818729400635, -0.25768589973449707, 0.021791696548461914, 0.026167763397097588, 0.11177702248096466, 0.029452236369252205, 0.07203717529773712, 0.38027146458625793, 0.031099064275622368, 0.23326095938682556, -0.11392204463481903, -0.35233622789382935, -0.2628619968891144, 0.13793843984603882, -0.2025453895330429, 0.06205431744456291, 1.0811808109283447, -0.0076579200103878975, 0.0008029430755414069, -0.00523710623383522]} +{"t": 6.9751, "q": [-0.13860027492046356, 0.0034224814735352993, -0.005584420636296272, 0.3158125579357147, -0.17626161873340607, -0.010207995772361755, -0.07967837154865265, -0.03339817002415657, 0.01664612628519535, 0.3211899995803833, -0.2576735317707062, 0.021813182160258293, 0.026301683858036995, 0.11176209896802902, 0.029453249648213387, 0.0734393298625946, 0.3818294107913971, 0.025358621031045914, 0.23339278995990753, -0.10036788880825043, -0.3522163927555084, -0.2644319236278534, 0.13780660927295685, -0.2025453895330429, 0.06205431744456291, 1.0814085006713867, -0.0076818885281682014, 0.0007909588748589158, -0.005249090492725372]} +{"t": 6.9919, "q": [-0.13859175145626068, 0.003448047209531069, -0.005584420636296272, 0.3158125579357147, -0.1762659102678299, -0.01021509151905775, -0.07967837154865265, -0.03338964655995369, 0.01663273386657238, 0.32121556997299194, -0.2576734125614166, 0.021798787638545036, 0.026408817619085312, 0.11177702248096466, 0.029452236369252205, 0.0749373584985733, 0.38326752185821533, 0.019534287974238396, 0.23336881399154663, -0.08463259786367416, -0.3520725667476654, -0.2660977244377136, 0.1375669240951538, -0.2025214284658432, 0.06204233318567276, 1.0819717645645142, -0.0076818885281682014, 0.0007909588748589158, -0.00523710623383522]} +{"t": 7.0087, "q": [-0.13860027492046356, 0.003490658011287451, -0.005584420636296272, 0.31580403447151184, -0.17626583576202393, -0.010200935415923595, -0.07967837154865265, -0.033364083617925644, 0.016592558473348618, 0.32117295265197754, -0.25768589973449707, 0.021791696548461914, 0.026408817619085312, 0.11176945269107819, 0.0294574536383152, 0.07629157602787018, 0.3838787078857422, 0.014596786350011826, 0.2334287464618683, -0.07231281697750092, -0.3520725667476654, -0.2666729688644409, 0.13735119998455048, -0.2025693655014038, 0.06205431744456291, 1.082115650177002, -0.0076579200103878975, 0.0007669904152862728, -0.00523710623383522]} +{"t": 7.0255, "q": [-0.13856618106365204, 0.0035247462801635265, -0.0056112040765583515, 0.31580403447151184, -0.1762659102678299, -0.01021509151905775, -0.0797039344906807, -0.03332999348640442, 0.016565775498747826, 0.3211303651332855, -0.25768163800239563, 0.0217844620347023, 0.026274899020791054, 0.11177682131528854, 0.029461661353707314, 0.07806524634361267, 0.3835071921348572, 0.011540808714926243, 0.23321302235126495, -0.06042446196079254, -0.35240814089775085, -0.26691266894340515, 0.1371474713087082, -0.2025453895330429, 0.06205431744456291, 1.0823073387145996, -0.0076579200103878975, 0.0007789746159687638, -0.00523710623383522]} +{"t": 7.0422, "q": [-0.13852356374263763, 0.0035758796148002148, -0.0055978125892579556, 0.31580403447151184, -0.17627432942390442, -0.010200968943536282, -0.07968689501285553, -0.033295903354883194, 0.016565775498747826, 0.3210536539554596, -0.2576901316642761, 0.02179894782602787, 0.026288291439414024, 0.11177702248096466, 0.029452236369252205, 0.07933557033538818, 0.3828480541706085, 0.009215869009494781, 0.2329493761062622, -0.04887166991829872, -0.35283955931663513, -0.266924649477005, 0.13701564073562622, -0.2025453895330429, 0.062066301703453064, 1.082415223121643, -0.0076818885281682014, 0.0007789746159687638, -0.005249090492725372]} +{"t": 7.059, "q": [-0.13848096132278442, 0.0035929237492382526, -0.0056112040765583515, 0.3158210813999176, -0.1762700378894806, -0.010193874128162861, -0.07967837154865265, -0.03326181694865227, 0.016512207686901093, 0.32102808356285095, -0.25768589973449707, 0.021791696548461914, 0.026408817619085312, 0.11177702248096466, 0.029452236369252205, 0.0803062915802002, 0.3829319477081299, 0.005464806687086821, 0.23291341960430145, -0.03813380375504494, -0.3530193269252777, -0.26691266894340515, 0.13697969913482666, -0.2025214284658432, 0.06203034892678261, 1.0825949907302856, -0.0076699042692780495, 0.0007669904152862728, -0.00523710623383522]} +{"t": 7.0757, "q": [-0.1384468674659729, 0.0036099678836762905, -0.005678163841366768, 0.3158210813999176, -0.17627011239528656, -0.010208030231297016, -0.07969541847705841, -0.033244773745536804, 0.01647203229367733, 0.3210025131702423, -0.25768163800239563, 0.0217844620347023, 0.026475777849555016, 0.11178459227085114, 0.02944701910018921, 0.08098939061164856, 0.3830278217792511, 0.002121207769960165, 0.2328295260667801, -0.02858237735927105, -0.3530432879924774, -0.26696059107780457, 0.1368478685617447, -0.2025453895330429, 0.06204233318567276, 1.0828945636749268, -0.0076699042692780495, 0.0007550062146037817, -0.005273059010505676]} +{"t": 7.0925, "q": [-0.13842131197452545, 0.0036696228198707104, -0.005731731187552214, 0.31580403447151184, -0.17626583576202393, -0.010200935415923595, -0.07969541847705841, -0.03321920707821846, 0.016418464481830597, 0.3209684193134308, -0.2576817572116852, 0.021798858419060707, 0.026422210037708282, 0.11178459227085114, 0.02944701910018921, 0.0815766230225563, 0.382548451423645, -0.0002037318336078897, 0.232853502035141, -0.019809924066066742, -0.3530432879924774, -0.266924649477005, 0.13660818338394165, -0.2025453895330429, 0.06203034892678261, 1.0831342935562134, -0.0076579200103878975, 0.0007789746159687638, -0.00523710623383522]} +{"t": 7.1092, "q": [-0.13842131197452545, 0.003737799357622862, -0.00575851509347558, 0.31580403447151184, -0.1762659102678299, -0.01021509151905775, -0.07968689501285553, -0.033193640410900116, 0.016405072063207626, 0.320908784866333, -0.25768575072288513, 0.021777300164103508, 0.026502560824155807, 0.11176231503486633, 0.029443828389048576, 0.08176837116479874, 0.3823806643486023, -0.0018335864879190922, 0.2328774631023407, -0.010246512480080128, -0.35300734639167786, -0.2668287754058838, 0.13642841577529907, -0.2025693655014038, 0.06204233318567276, 1.0833020210266113, -0.0076339514926075935, 0.0007789746159687638, -0.005249090492725372]} +{"t": 7.1259, "q": [-0.13842982053756714, 0.0037718876264989376, -0.005825474392622709, 0.31579551100730896, -0.17627011239528656, -0.010208030231297016, -0.07968689501285553, -0.033176593482494354, 0.0163247212767601, 0.3208746910095215, -0.2576900124549866, 0.02178453467786312, 0.026596304029226303, 0.11176988482475281, 0.02943861111998558, 0.08188821375370026, 0.38084667921066284, -0.0029121667612344027, 0.2328774631023407, -0.006735134404152632, -0.352995365858078, -0.26666098833084106, 0.136320561170578, -0.20255737006664276, 0.06204233318567276, 1.0837454795837402, -0.0076459357514977455, 0.0007789746159687638, -0.005225121974945068]} +{"t": 7.1427, "q": [-0.13842131197452545, 0.0037889317609369755, -0.005865650251507759, 0.31583812832832336, -0.17627011239528656, -0.010208030231297016, -0.07966132462024689, -0.03313398361206055, 0.016257761046290398, 0.3208320736885071, -0.2576900124549866, 0.02178453467786312, 0.0266900472342968, 0.1117473915219307, 0.029444841668009758, 0.08204400539398193, 0.3774551451206207, -0.0038109836168587208, 0.23284150660037994, -0.005332980304956436, -0.35303130745887756, -0.26656511425971985, 0.13608087599277496, -0.2025453895330429, 0.06205431744456291, 1.0844285488128662, -0.0076219672337174416, 0.0007669904152862728, -0.00523710623383522]} +{"t": 7.1595, "q": [-0.13843834400177002, 0.0038485866971313953, -0.005892434157431126, 0.3158722221851349, -0.1762659102678299, -0.01021509151905775, -0.0796528086066246, -0.03314250707626343, 0.016204193234443665, 0.32084912061691284, -0.257694274187088, 0.021791784092783928, 0.026810575276613235, 0.11176231503486633, 0.029443828389048576, 0.08213987946510315, 0.37303298711776733, -0.004038684070110321, 0.23278158903121948, -0.00506932707503438, -0.35313916206359863, -0.26631346344947815, 0.13591310381889343, -0.2025453895330429, 0.06204233318567276, 1.0848599672317505, -0.0076699042692780495, 0.0007550062146037817, -0.00523710623383522]} +{"t": 7.1764, "q": [-0.1383957415819168, 0.0038485866971313953, -0.005959393456578255, 0.315863698720932, -0.17626161873340607, -0.010207995772361755, -0.0796528086066246, -0.03314250707626343, 0.016177410259842873, 0.32084912061691284, -0.2576900124549866, 0.02178453467786312, 0.027118587866425514, 0.11174760013818741, 0.02943541668355465, 0.08160059154033661, 0.3673764169216156, -0.003882888937368989, 0.2322782576084137, -0.005452822428196669, -0.3533668518066406, -0.26589399576187134, 0.13580523431301117, -0.2025453895330429, 0.06203034892678261, 1.0851236581802368, -0.0076219672337174416, 0.0007669904152862728, -0.005225121974945068]} +{"t": 7.1931, "q": [-0.13841278851032257, 0.0038571092300117016, -0.0059995693154633045, 0.315906286239624, -0.17625309526920319, -0.010207944549620152, -0.07960167527198792, -0.033116940408945084, 0.01613723486661911, 0.3208661675453186, -0.2576900124549866, 0.02178453467786312, 0.027185548096895218, 0.11174046248197556, 0.029421793296933174, 0.08029431104660034, 0.36072519421577454, -0.0035473306197673082, 0.23060046136379242, -0.006998787634074688, -0.3536185324192047, -0.2656543254852295, 0.1356494426727295, -0.2025453895330429, 0.06205431744456291, 1.08525550365448, -0.0076459357514977455, 0.0007669904152862728, -0.00523710623383522]} +{"t": 7.2099, "q": [-0.13843834400177002, 0.0038400650955736637, -0.006012961268424988, 0.31583812832832336, -0.1762659102678299, -0.01021509151905775, -0.07958462834358215, -0.033116940408945084, 0.01615062542259693, 0.32084059715270996, -0.2576900124549866, 0.02178453467786312, 0.027091804891824722, 0.11174803227186203, 0.029416576027870178, 0.07900001108646393, 0.3521205186843872, -0.003175819758325815, 0.2275325059890747, -0.009587380103766918, -0.3538941740989685, -0.2652828097343445, 0.1353977769613266, -0.2025453895330429, 0.06203034892678261, 1.0853513479232788, -0.0076219672337174416, 0.0007789746159687638, -0.005213138181716204]} +{"t": 7.2268, "q": [-0.13843834400177002, 0.0038911974988877773, -0.006012961268424988, 0.3158296048641205, -0.1762744039297104, -0.010215125977993011, -0.07953349500894547, -0.0331084169447422, 0.016177410259842873, 0.3209002614021301, -0.2576900124549866, 0.02178453467786312, 0.02705162949860096, 0.11174067854881287, 0.029412372037768364, 0.07754991948604584, 0.3418620228767395, -0.002253034384921193, 0.22435668110847473, -0.012391689233481884, -0.35401400923728943, -0.2650790810585022, 0.13528992235660553, -0.2025453895330429, 0.062078285962343216, 1.0853992700576782, -0.0076579200103878975, 0.0007550062146037817, -0.005213138181716204]} +{"t": 7.2435, "q": [-0.13847243785858154, 0.003882674966007471, -0.006079920567572117, 0.31584665179252625, -0.1762744039297104, -0.010215125977993011, -0.07943122833967209, -0.033116940408945084, 0.01615062542259693, 0.32094287872314453, -0.2576900124549866, 0.02178453467786312, 0.02721233107149601, 0.1117110326886177, 0.02940497361123562, 0.0751890316605568, 0.33108818531036377, 0.0019534286111593246, 0.22041386365890503, -0.01822800748050213, -0.35396608710289, -0.2644798755645752, 0.13538579642772675, -0.20253340899944305, 0.062066301703453064, 1.085495114326477, -0.0076339514926075935, 0.0007789746159687638, -0.005225121974945068]} +{"t": 7.2602, "q": [-0.13851505517959595, 0.0038741533644497395, -0.006200447678565979, 0.31584665179252625, -0.17627011239528656, -0.010208030231297016, -0.07930339872837067, -0.0331084169447422, 0.016097059473395348, 0.32097694277763367, -0.2576941251754761, 0.02177737094461918, 0.027506953105330467, 0.11169631779193878, 0.029396560043096542, 0.07268432527780533, 0.3205900192260742, 0.005704491399228573, 0.21691447496414185, -0.02497512474656105, -0.3539420962333679, -0.26389265060424805, 0.13550563156604767, -0.20248547196388245, 0.06205431744456291, 1.0856269598007202, -0.0076219672337174416, 0.0007550062146037817, -0.005213138181716204]} +{"t": 7.277, "q": [-0.13854913413524628, 0.0038485866971313953, -0.006254015490412712, 0.3158551752567291, -0.17627432942390442, -0.010200968943536282, -0.0792863517999649, -0.033125463873147964, 0.016070274636149406, 0.32107070088386536, -0.2576941251754761, 0.02177737094461918, 0.027962278574705124, 0.11168896406888962, 0.029392357915639877, 0.07026351243257523, 0.3108108937740326, 0.00894023198634386, 0.21458953619003296, -0.03461044281721115, -0.35390615463256836, -0.2635331153869629, 0.13550563156604767, -0.20250943303108215, 0.06205431744456291, 1.0858666896820068, -0.0076459357514977455, 0.0007789746159687638, -0.005213138181716204]} +{"t": 7.2937, "q": [-0.13857470452785492, 0.0038315425626933575, -0.006254015490412712, 0.31583812832832336, -0.1762744039297104, -0.010215125977993011, -0.0792437419295311, -0.03315955027937889, 0.016043491661548615, 0.32121556997299194, -0.2576900124549866, 0.02178453467786312, 0.02802923694252968, 0.11168918013572693, 0.029382936656475067, 0.06807039678096771, 0.29942587018013, 0.013925669714808464, 0.21216872334480286, -0.04550410434603691, -0.35373836755752563, -0.26334136724472046, 0.13536182045936584, -0.2025214284658432, 0.06205431744456291, 1.0859745740890503, -0.0076459357514977455, 0.0007430219557136297, -0.005213138181716204]} +{"t": 7.3104, "q": [-0.13855765759944916, 0.0037974542938172817, -0.006254015490412712, 0.3158551752567291, -0.17626583576202393, -0.010200935415923595, -0.07915852218866348, -0.03315103054046631, 0.01611045002937317, 0.3213178515434265, -0.25768575072288513, 0.021777300164103508, 0.028323858976364136, 0.11164461821317673, 0.029376551508903503, 0.06604506820440292, 0.28720197081565857, 0.020289292559027672, 0.20992767810821533, -0.05742840841412544, -0.35360655188560486, -0.2628859579563141, 0.13536182045936584, -0.20250943303108215, 0.06205431744456291, 1.0859625339508057, -0.0076579200103878975, 0.0007550062146037817, -0.005201153922826052]} +{"t": 7.3271, "q": [-0.13856618106365204, 0.0037718876264989376, -0.006347758695483208, 0.3158296048641205, -0.17627862095832825, -0.010208064690232277, -0.07898808270692825, -0.03313398361206055, 0.016043491661548615, 0.32144567370414734, -0.25767752528190613, 0.021791625767946243, 0.028939886018633842, 0.11163011193275452, 0.029358718544244766, 0.06370814144611359, 0.2755652666091919, 0.02677275985479355, 0.20834575593471527, -0.07029946893453598, -0.35323503613471985, -0.2627541422843933, 0.13550563156604767, -0.20248547196388245, 0.06205431744456291, 1.0862141847610474, -0.0076699042692780495, 0.0007789746159687638, -0.005213138181716204]} +{"t": 7.3439, "q": [-0.13865140080451965, 0.003746321890503168, -0.0064013260416686535, 0.31583812832832336, -0.17627869546413422, -0.010222221724689007, -0.078877292573452, -0.03315103054046631, 0.016030099242925644, 0.32152238488197327, -0.2576900124549866, 0.02178453467786312, 0.02990410290658474, 0.11160783469676971, 0.029355527833104134, 0.06071208417415619, 0.26374882459640503, 0.03362773731350899, 0.20688368380069733, -0.08423712104558945, -0.35291147232055664, -0.2620830237865448, 0.1357692927122116, -0.20250943303108215, 0.06205431744456291, 1.0864899158477783, -0.0076579200103878975, 0.0007669904152862728, -0.005213138181716204]} +{"t": 7.3606, "q": [-0.13880479335784912, 0.0036866669543087482, -0.006521853152662516, 0.3159233331680298, -0.17627432942390442, -0.010200968943536282, -0.07882615923881531, -0.03315103054046631, 0.016043491661548615, 0.32163316011428833, -0.2576815187931061, 0.021770067512989044, 0.030319251120090485, 0.11160804331302643, 0.029346102848649025, 0.05854294076561928, 0.25257954001426697, 0.04169312119483948, 0.2051939070224762, -0.0963052362203598, -0.3528155982494354, -0.2619631886482239, 0.13568539917469025, -0.20253340899944305, 0.06204233318567276, 1.0870530605316162, -0.0076579200103878975, 0.0007550062146037817, -0.00523710623383522]} +{"t": 7.3774, "q": [-0.138813316822052, 0.00363553361967206, -0.006588812451809645, 0.3161449134349823, -0.1762615293264389, -0.010193821974098682, -0.07876650243997574, -0.033176593482494354, 0.016016706824302673, 0.3217865526676178, -0.2576815187931061, 0.021770067512989044, 0.030988845974206924, 0.11160047352313995, 0.02935132011771202, 0.05622998625040054, 0.2415899932384491, 0.04917127639055252, 0.20324046909809113, -0.11145329475402832, -0.3526478111743927, -0.2615557014942169, 0.13562548160552979, -0.2025453895330429, 0.062006380409002304, 1.0874485969543457, -0.0076818885281682014, 0.0007789746159687638, -0.005213138181716204]} +{"t": 7.3943, "q": [-0.13879628479480743, 0.0035758796148002148, -0.006736123468726873, 0.3163238763809204, -0.17627011239528656, -0.010208030231297016, -0.07859606295824051, -0.033193640410900116, 0.016016706824302673, 0.32189735770225525, -0.2576691508293152, 0.021791554987430573, 0.0314575619995594, 0.11159355193376541, 0.029328275471925735, 0.05469600483775139, 0.23117570579051971, 0.05667340010404587, 0.19992084801197052, -0.1251632422208786, -0.35228827595710754, -0.26147183775901794, 0.13556554913520813, -0.2025693655014038, 0.062006380409002304, 1.0880478620529175, -0.0076699042692780495, 0.0007669904152862728, -0.005225121974945068]} +{"t": 7.4111, "q": [-0.1387707144021988, 0.0035844012163579464, -0.006776299327611923, 0.3165028393268585, -0.1762700378894806, -0.010193874128162861, -0.07849379628896713, -0.03323625028133392, 0.016030099242925644, 0.3220166563987732, -0.2576815187931061, 0.021770067512989044, 0.03179236128926277, 0.11159396916627884, 0.029309429228305817, 0.05349758267402649, 0.22140856087207794, 0.06389988958835602, 0.19628962874412537, -0.1396881341934204, -0.35210850834846497, -0.26144784688949585, 0.13550563156604767, -0.2025693655014038, 0.06204233318567276, 1.0885990858078003, -0.0076818885281682014, 0.0007669904152862728, -0.00523710623383522]} +{"t": 7.4278, "q": [-0.13868549466133118, 0.0035503129474818707, -0.006829866673797369, 0.31663069128990173, -0.17624881863594055, -0.010200848802924156, -0.07836596667766571, -0.033244773745536804, 0.016043491661548615, 0.3221018612384796, -0.2576689124107361, 0.02176276408135891, 0.031845927238464355, 0.11158683151006699, 0.02929580584168434, 0.052155349403619766, 0.21197697520256042, 0.07095859944820404, 0.19334150850772858, -0.15375761687755585, -0.3519527316093445, -0.26144784688949585, 0.13538579642772675, -0.20258134603500366, 0.06203034892678261, 1.089066505432129, -0.0076579200103878975, 0.0007669904152862728, -0.00523710623383522]} +{"t": 7.4445, "q": [-0.1386769711971283, 0.0035844012163579464, -0.0068566505797207355, 0.3168266713619232, -0.17623165249824524, -0.010172465816140175, -0.07831483334302902, -0.03321068361401558, 0.016083667054772377, 0.3222808241844177, -0.2576606571674347, 0.021777087822556496, 0.031698618084192276, 0.11159460246562958, 0.029281161725521088, 0.05101684853434563, 0.20328840613365173, 0.07784952968358994, 0.18969830870628357, -0.16954083740711212, -0.3517250120639801, -0.26156771183013916, 0.13520602881908417, -0.2025453895330429, 0.062006380409002304, 1.0894619226455688, -0.0076579200103878975, 0.0007550062146037817, -0.00523710623383522]} +{"t": 7.4614, "q": [-0.13860027492046356, 0.003661100286990404, -0.006843258626759052, 0.3169289529323578, -0.17623157799243927, -0.010158308781683445, -0.07831483334302902, -0.03315955027937889, 0.016056882217526436, 0.322331964969635, -0.2576521635055542, 0.021762622520327568, 0.031658440828323364, 0.11157232522964478, 0.029277972877025604, 0.0499502494931221, 0.19474366307258606, 0.08504006266593933, 0.18672621250152588, -0.1850484162569046, -0.35166510939598083, -0.2619871497154236, 0.13518206775188446, -0.2025453895330429, 0.062006380409002304, 1.0896656513214111, -0.0076818885281682014, 0.0007430219557136297, -0.00523710623383522]} +{"t": 7.4781, "q": [-0.1385406106710434, 0.003703711088746786, -0.0068566505797207355, 0.3169204294681549, -0.1762229949235916, -0.010144100524485111, -0.0782807469367981, -0.033116940408945084, 0.016083667054772377, 0.32240015268325806, -0.25767314434051514, 0.021769996732473373, 0.03144416958093643, 0.11155068874359131, 0.029246516525745392, 0.04891960695385933, 0.18710970878601074, 0.09158344566822052, 0.1838260293006897, -0.19944147765636444, -0.3514973223209381, -0.26232269406318665, 0.13513413071632385, -0.2025693655014038, 0.06205431744456291, 1.0902289152145386, -0.007693872787058353, 0.0007190534961409867, -0.005225121974945068]} +{"t": 7.4948, "q": [-0.13852356374263763, 0.0037292768247425556, -0.006843258626759052, 0.31698861718177795, -0.1762229949235916, -0.010144100524485111, -0.07831483334302902, -0.033116940408945084, 0.01611045002937317, 0.3223831057548523, -0.25764793157577515, 0.021755389869213104, 0.03139060363173485, 0.11149897426366806, 0.029226500540971756, 0.04818857088685036, 0.17996710538864136, 0.09703627228736877, 0.18035060167312622, -0.21535652875900269, -0.35106590390205383, -0.26257437467575073, 0.13513413071632385, -0.2025453895330429, 0.062066301703453064, 1.0904805660247803, -0.0076579200103878975, 0.0006950850365683436, -0.005225121974945068]} +{"t": 7.5115, "q": [-0.13855765759944916, 0.003763366024941206, -0.0068030827678740025, 0.3170056641101837, -0.17621877789497375, -0.010151161812245846, -0.07829778641462326, -0.0331084169447422, 0.016097059473395348, 0.32240015268325806, -0.2576521635055542, 0.021762622520327568, 0.03128346800804138, 0.11141028255224228, 0.029194889590144157, 0.048116665333509445, 0.1727645844221115, 0.10269282758235931, 0.17711485922336578, -0.22948592901229858, -0.3507303297519684, -0.26304176449775696, 0.13503825664520264, -0.20250943303108215, 0.062066301703453064, 1.0909600257873535, -0.0076219672337174416, 0.0006950850365683436, -0.005225121974945068]} +{"t": 7.5283, "q": [-0.13854913413524628, 0.0037548434920608997, -0.006776299327611923, 0.3170141577720642, -0.17622730135917664, -0.010151213966310024, -0.07828926295042038, -0.03313398361206055, 0.01611045002937317, 0.3223745822906494, -0.25764378905296326, 0.021762551739811897, 0.031176332384347916, 0.1112404465675354, 0.029126442968845367, 0.04800880700349808, 0.16503477096557617, 0.10909239947795868, 0.1750655621290207, -0.24380707740783691, -0.3504067659378052, -0.26361700892448425, 0.13495436310768127, -0.2024734914302826, 0.062078285962343216, 1.0917989015579224, -0.0076579200103878975, 0.0006950850365683436, -0.005225121974945068]} +{"t": 7.545, "q": [-0.13850653171539307, 0.003737799357622862, -0.00672273151576519, 0.3170056641101837, -0.17622308433055878, -0.010158275254070759, -0.0782807469367981, -0.03314250707626343, 0.01612384244799614, 0.32234901189804077, -0.25765228271484375, 0.021777017042040825, 0.031015630811452866, 0.11113009601831436, 0.02906336821615696, 0.04784102737903595, 0.15753264725208282, 0.11551594734191895, 0.17429856956005096, -0.257433146238327, -0.3499513566493988, -0.2641323208808899, 0.13478657603263855, -0.20242555439472198, 0.06211423873901367, 1.092494010925293, -0.0076699042692780495, 0.0006950850365683436, -0.005213138181716204]} +{"t": 7.5617, "q": [-0.13852356374263763, 0.0036696228198707104, -0.006682556122541428, 0.3169630467891693, -0.1762229949235916, -0.010144100524485111, -0.07829778641462326, -0.03313398361206055, 0.01615062542259693, 0.322331964969635, -0.2576521635055542, 0.021762622520327568, 0.030988845974206924, 0.11104897409677505, 0.029026539996266365, 0.04784102737903595, 0.15152853727340698, 0.11939883977174759, 0.17375928163528442, -0.2706517279148102, -0.34961581230163574, -0.26453977823257446, 0.13481055200099945, -0.20236562192440033, 0.062126222997903824, 1.092721700668335, -0.0076699042692780495, 0.0006950850365683436, -0.005213138181716204]} +{"t": 7.5784, "q": [-0.1385832279920578, 0.0036099678836762905, -0.006602204404771328, 0.3169289529323578, -0.17622730135917664, -0.010151213966310024, -0.07833188027143478, -0.033176593482494354, 0.016177410259842873, 0.322331964969635, -0.25765228271484375, 0.021777017042040825, 0.0307477917522192, 0.1110113337635994, 0.029043197631835938, 0.0481286495923996, 0.14492523670196533, 0.12376109510660172, 0.17281252145767212, -0.28413400053977966, -0.3492802381515503, -0.264983206987381, 0.13471467792987823, -0.20230570435523987, 0.06216217577457428, 1.0929014682769775, -0.0076459357514977455, 0.0007070692954584956, -0.005213138181716204]} +{"t": 7.5952, "q": [-0.13857470452785492, 0.0035758796148002148, -0.006508461199700832, 0.3168863356113434, -0.1762229949235916, -0.010144100524485111, -0.07836596667766571, -0.03321068361401558, 0.016230978071689606, 0.32227233052253723, -0.2576356828212738, 0.021791288629174232, 0.030680833384394646, 0.11089865118265152, 0.02908376418054104, 0.04839230328798294, 0.1381901055574417, 0.127931609749794, 0.17178188264369965, -0.29577067494392395, -0.3489087224006653, -0.2652588486671448, 0.13461880385875702, -0.20223380625247955, 0.062126222997903824, 1.0929373502731323, -0.0076579200103878975, 0.0006831008358858526, -0.005201153922826052]} +{"t": 7.6119, "q": [-0.13857470452785492, 0.0035417904146015644, -0.00642810994759202, 0.316843718290329, -0.17622730135917664, -0.010151213966310024, -0.07839152961969376, -0.03323625028133392, 0.016230978071689606, 0.3222382366657257, -0.25763991475105286, 0.021798521280288696, 0.03056030534207821, 0.11067626625299454, 0.0290329959243536, 0.048655953258275986, 0.13119131326675415, 0.13236576318740845, 0.17076322436332703, -0.3077908456325531, -0.34853723645210266, -0.26548653841018677, 0.1345708668231964, -0.2021738737821579, 0.062126222997903824, 1.0929852724075317, -0.0076699042692780495, 0.0007070692954584956, -0.005201153922826052]} +{"t": 7.6286, "q": [-0.1385406106710434, 0.003516224678605795, -0.006414717994630337, 0.3167840838432312, -0.1762315034866333, -0.01014415267854929, -0.07836596667766571, -0.03325329348444939, 0.016244368627667427, 0.32221266627311707, -0.2576274275779724, 0.02180561237037182, 0.03056030534207821, 0.11043953150510788, 0.028954843059182167, 0.048643968999385834, 0.12465991079807281, 0.1356734186410904, 0.1699962317943573, -0.32110533118247986, -0.3480338752269745, -0.265582412481308, 0.13455888628959656, -0.20213793218135834, 0.062126222997903824, 1.0930452346801758, -0.0076579200103878975, 0.0007070692954584956, -0.005213138181716204]} +{"t": 7.6453, "q": [-0.13856618106365204, 0.003490658011287451, -0.006414717994630337, 0.3167926073074341, -0.17623572051525116, -0.010137091390788555, -0.07834891974925995, -0.033295903354883194, 0.016230978071689606, 0.3222297132015228, -0.25762730836868286, 0.02179121784865856, 0.03057369776070118, 0.11021734774112701, 0.028884729370474815, 0.048524126410484314, 0.11818842589855194, 0.138765349984169, 0.1693730503320694, -0.33231058716773987, -0.34731483459472656, -0.26566630601882935, 0.13458284735679626, -0.20207799971103668, 0.06216217577457428, 1.0931650400161743, -0.0076818885281682014, 0.0007070692954584956, -0.005201153922826052]} +{"t": 7.662, "q": [-0.13857470452785492, 0.0034821354784071445, -0.0064013260416686535, 0.3167499899864197, -0.17623572051525116, -0.010137091390788555, -0.07836596667766571, -0.033312950283288956, 0.016230978071689606, 0.32222118973731995, -0.2576315402984619, 0.021798450499773026, 0.030466562137007713, 0.10997841507196426, 0.028900593519210815, 0.04857206344604492, 0.11216036230325699, 0.1419411599636078, 0.16890567541122437, -0.3450378179550171, -0.3461284041404724, -0.265726238489151, 0.13441507518291473, -0.20200610160827637, 0.06215019151568413, 1.0932849645614624, -0.0076699042692780495, 0.0006950850365683436, -0.005201153922826052]} +{"t": 7.6788, "q": [-0.13854913413524628, 0.003490658011287451, -0.006374542135745287, 0.31675851345062256, -0.1762315034866333, -0.01014415267854929, -0.07838300615549088, -0.033304426819086075, 0.016230978071689606, 0.32221266627311707, -0.2576315402984619, 0.021798450499773026, 0.03026568330824375, 0.10985933989286423, 0.02888963557779789, 0.04857206344604492, 0.10646785795688629, 0.14544056355953217, 0.16890567541122437, -0.35550007224082947, -0.3444865643978119, -0.26578614115715027, 0.1342712640762329, -0.20198212563991547, 0.06216217577457428, 1.0932849645614624, -0.0076339514926075935, 0.0006950850365683436, -0.0051891696639359]} +{"t": 7.6955, "q": [-0.13853208720684052, 0.003456569742411375, -0.006374542135745287, 0.3167499899864197, -0.17622721195220947, -0.010137039236724377, -0.07838300615549088, -0.033295903354883194, 0.016230978071689606, 0.3222297132015228, -0.2576315402984619, 0.021798450499773026, 0.029796967282891273, 0.10982190817594528, 0.028896838426589966, 0.04854809492826462, 0.10035590082406998, 0.14976686239242554, 0.1688697189092636, -0.36656150221824646, -0.3427128791809082, -0.26583409309387207, 0.13411545753479004, -0.2019461840391159, 0.06215019151568413, 1.0932849645614624, -0.0076699042692780495, 0.0006831008358858526, -0.005201153922826052]} +{"t": 7.7123, "q": [-0.13852356374263763, 0.003473613876849413, -0.006347758695483208, 0.3167329430580139, -0.17622730135917664, -0.010151213966310024, -0.07840005308389664, -0.03327886015176773, 0.016257761046290398, 0.32222118973731995, -0.2576233148574829, 0.02181277610361576, 0.029529130086302757, 0.10979264229536057, 0.028870489448308945, 0.0484522208571434, 0.09438775479793549, 0.15370967984199524, 0.16891765594482422, -0.37746715545654297, -0.34062764048576355, -0.2658460736274719, 0.13411545753479004, -0.20191022753715515, 0.062138207256793976, 1.0933208465576172, -0.0076818885281682014, 0.0006950850365683436, -0.005213138181716204]} +{"t": 7.729, "q": [-0.13851505517959595, 0.0035247462801635265, -0.006347758695483208, 0.31672441959381104, -0.17622730135917664, -0.010151213966310024, -0.07840857654809952, -0.033244773745536804, 0.016257761046290398, 0.32222118973731995, -0.25762730836868286, 0.02179121784865856, 0.02926129288971424, 0.10980042070150375, 0.028855832293629646, 0.04856007918715477, 0.09062471240758896, 0.15555524826049805, 0.1687498688697815, -0.38765373826026917, -0.3381948471069336, -0.26587003469467163, 0.13413943350315094, -0.20188625156879425, 0.06215019151568413, 1.0933927297592163, -0.0076579200103878975, 0.0006831008358858526, -0.0051891696639359]} +{"t": 7.7458, "q": [-0.13846391439437866, 0.0035673570819199085, -0.006347758695483208, 0.3166988492012024, -0.1762229949235916, -0.010144100524485111, -0.07842562347650528, -0.03323625028133392, 0.016230978071689606, 0.3222297132015228, -0.25762319564819336, 0.021798379719257355, 0.029301468282938004, 0.10983765870332718, 0.02885807678103447, 0.048775795847177505, 0.0869455561041832, 0.15729296207427979, 0.1684982031583786, -0.39686959981918335, -0.3348991870880127, -0.2658580541610718, 0.1342233270406723, -0.20188625156879425, 0.062138207256793976, 1.0935006141662598, -0.0076579200103878975, 0.0006831008358858526, -0.005201153922826052]} +{"t": 7.7625, "q": [-0.13843834400177002, 0.0035844012163579464, -0.00638793408870697, 0.31672441959381104, -0.17622730135917664, -0.010151213966310024, -0.0784171000123024, -0.033193640410900116, 0.016190802678465843, 0.3222297132015228, -0.25762319564819336, 0.021798379719257355, 0.029355036094784737, 0.10983029007911682, 0.028853852301836014, 0.049051433801651, 0.08460862934589386, 0.1588389277458191, 0.1682465374469757, -0.4040960967540741, -0.3314477205276489, -0.2658580541610718, 0.13425926864147186, -0.20186229050159454, 0.062126222997903824, 1.0936444997787476, -0.0076579200103878975, 0.0006711166352033615, -0.005201153922826052]} +{"t": 7.7792, "q": [-0.13841278851032257, 0.00369518855586648, -0.0064013260416686535, 0.3167329430580139, -0.17622308433055878, -0.010158275254070759, -0.07843413949012756, -0.033176593482494354, 0.016177410259842873, 0.32226380705833435, -0.2576315402984619, 0.021798450499773026, 0.029314858838915825, 0.10983049124479294, 0.028844404965639114, 0.04915929213166237, 0.08315853774547577, 0.15979765355587006, 0.16835439205169678, -0.4090096354484558, -0.3292785584926605, -0.26591798663139343, 0.13416339457035065, -0.20183831453323364, 0.06215019151568413, 1.093692421913147, -0.0076699042692780495, 0.0006831008358858526, -0.005165201146155596]} +{"t": 7.7959, "q": [-0.13842131197452545, 0.0038059758953750134, -0.0064013260416686535, 0.31671589612960815, -0.17621877789497375, -0.010151161812245846, -0.07847674936056137, -0.03313398361206055, 0.016244368627667427, 0.32225528359413147, -0.25762319564819336, 0.021798379719257355, 0.02904702164232731, 0.10983806103467941, 0.02883918769657612, 0.04933905601501465, 0.08219980448484421, 0.1609840989112854, 0.16835439205169678, -0.41199368238449097, -0.32822397351264954, -0.26624155044555664, 0.13395966589450836, -0.20183831453323364, 0.06215019151568413, 1.0937403440475464, -0.0076459357514977455, 0.0006831008358858526, -0.005201153922826052]} +{"t": 7.8128, "q": [-0.13841278851032257, 0.003882674966007471, -0.006414717994630337, 0.3167073726654053, -0.17622308433055878, -0.010158275254070759, -0.07846823334693909, -0.033074330538511276, 0.016230978071689606, 0.3222893476486206, -0.25762730836868286, 0.02179121784865856, 0.028765792027115822, 0.10986793041229248, 0.028837207704782486, 0.049446914345026016, 0.0815766230225563, 0.16182298958301544, 0.16811470687389374, -0.4135875999927521, -0.3277565836906433, -0.2667448818683624, 0.1338997483253479, -0.2018263339996338, 0.06215019151568413, 1.0937403440475464, -0.0076579200103878975, 0.0006591323763132095, -0.005177185405045748]} +{"t": 7.8296, "q": [-0.13836164772510529, 0.003950852435082197, -0.006414717994630337, 0.3167073726654053, -0.17621886730194092, -0.010165344923734665, -0.0784597098827362, -0.03305728733539581, 0.016244368627667427, 0.32231491804122925, -0.25762319564819336, 0.021798379719257355, 0.02855152077972889, 0.10989043116569519, 0.0288309995085001, 0.04989032819867134, 0.08096542209386826, 0.1621106117963791, 0.16798289120197296, -0.4138272702693939, -0.32769665122032166, -0.26711639761924744, 0.1338997483253479, -0.20180237293243408, 0.06215019151568413, 1.0938122272491455, -0.0076818885281682014, 0.0006831008358858526, -0.005177185405045748]} +{"t": 7.8463, "q": [-0.13832756876945496, 0.003959374036639929, -0.0064013260416686535, 0.3166903257369995, -0.1762229949235916, -0.010144100524485111, -0.07846823334693909, -0.03305728733539581, 0.016230978071689606, 0.3223404884338379, -0.25762319564819336, 0.021798379719257355, 0.028337251394987106, 0.1099129319190979, 0.028824789449572563, 0.05108875036239624, 0.08028232306241989, 0.16208665072917938, 0.16803082823753357, -0.4136355221271515, -0.3277086317539215, -0.2674040198326111, 0.1339237242937088, -0.20180237293243408, 0.062138207256793976, 1.0938482284545898, -0.0076579200103878975, 0.0006711166352033615, -0.005165201146155596]} +{"t": 7.8633, "q": [-0.13832756876945496, 0.004001984838396311, -0.0064013260416686535, 0.31668180227279663, -0.1762229949235916, -0.010144100524485111, -0.07850231975317001, -0.03303172066807747, 0.016230978071689606, 0.3223404884338379, -0.2576315402984619, 0.021798450499773026, 0.02805602177977562, 0.10995016992092133, 0.028827033936977386, 0.05249090492725372, 0.08164852857589722, 0.16233831644058228, 0.16821058094501495, -0.4119337797164917, -0.32774460315704346, -0.26760774850845337, 0.1339237242937088, -0.20180237293243408, 0.06215019151568413, 1.0939440727233887, -0.0076339514926075935, 0.0006471481756307185, -0.005165201146155596]} +{"t": 7.88, "q": [-0.1383531242609024, 0.004027551505714655, -0.00642810994759202, 0.316656231880188, -0.1762145608663559, -0.010158231481909752, -0.07851936668157578, -0.03302319720387459, 0.016204193234443665, 0.32232344150543213, -0.25763553380966187, 0.021776894107460976, 0.027962278574705124, 0.10995016992092133, 0.028827033936977386, 0.053821153938770294, 0.08398544788360596, 0.16272181272506714, 0.16829447448253632, -0.40842241048812866, -0.32779252529144287, -0.26778751611709595, 0.13393570482730865, -0.2018263339996338, 0.06215019151568413, 1.0939799547195435, -0.0076818885281682014, 0.0006831008358858526, -0.005177185405045748]} +{"t": 7.8967, "q": [-0.1383531242609024, 0.0040360731072723866, -0.00642810994759202, 0.3166391849517822, -0.17621886730194092, -0.010165344923734665, -0.07851936668157578, -0.03303172066807747, 0.016204193234443665, 0.32230639457702637, -0.2576230466365814, 0.021783966571092606, 0.028002453967928886, 0.10997267067432404, 0.02882082387804985, 0.054971642792224884, 0.08725714683532715, 0.16249410808086395, 0.16799487173557281, -0.4042398929595947, -0.32782846689224243, -0.2681710124015808, 0.13395966589450836, -0.20180237293243408, 0.062138207256793976, 1.0941357612609863, -0.0076818885281682014, 0.0006711166352033615, -0.005165201146155596]} +{"t": 7.9134, "q": [-0.13833607733249664, 0.0040360731072723866, -0.00638793408870697, 0.31666475534439087, -0.17621886730194092, -0.010165344923734665, -0.07852788269519806, -0.03304876387119293, 0.016257761046290398, 0.32235753536224365, -0.25763168931007385, 0.02181284688413143, 0.02792210318148136, 0.11000233888626099, 0.02882828563451767, 0.055630773305892944, 0.0908883661031723, 0.16238625347614288, 0.16791097819805145, -0.40053677558898926, -0.3278404772281647, -0.2686983048915863, 0.1338997483253479, -0.20179037749767303, 0.062138207256793976, 1.0942796468734741, -0.0076459357514977455, 0.0006471481756307185, -0.005165201146155596]} +{"t": 7.9302, "q": [-0.1382679045200348, 0.004044595640152693, -0.0064013260416686535, 0.31666475534439087, -0.17621886730194092, -0.010165344923734665, -0.07851936668157578, -0.03304876387119293, 0.016271153464913368, 0.32234901189804077, -0.2576274275779724, 0.02180561237037182, 0.027506953105330467, 0.110069639980793, 0.02881910465657711, 0.056241970509290695, 0.09634118527173996, 0.1622304618358612, 0.1679229587316513, -0.39889493584632874, -0.3278644382953644, -0.26903387904167175, 0.1338997483253479, -0.20180237293243408, 0.06210225448012352, 1.0942915678024292, -0.00760998297482729, 0.0006471481756307185, -0.005165201146155596]} +{"t": 7.9469, "q": [-0.1382593810558319, 0.0040360731072723866, -0.00638793408870697, 0.316656231880188, -0.17621465027332306, -0.0101724062114954, -0.07851936668157578, -0.03303172066807747, 0.016257761046290398, 0.3223745822906494, -0.2576274275779724, 0.02180561237037182, 0.0269177109003067, 0.1100999191403389, 0.028798237442970276, 0.05679324269294739, 0.10307632386684418, 0.16208665072917938, 0.16799487173557281, -0.3967258036136627, -0.3278404772281647, -0.269501268863678, 0.13388776779174805, -0.20180237293243408, 0.06215019151568413, 1.0942915678024292, -0.0076339514926075935, 0.0006351639167405665, -0.005177185405045748]} +{"t": 7.9636, "q": [-0.1382593810558319, 0.0040360731072723866, -0.006320974789559841, 0.31666475534439087, -0.17621465027332306, -0.0101724062114954, -0.07856197655200958, -0.03304024040699005, 0.0163247212767601, 0.32236605882644653, -0.25762319564819336, 0.021798379719257355, 0.026261506602168083, 0.11012937873601913, 0.028815139085054398, 0.05727261304855347, 0.10882874578237534, 0.1619068831205368, 0.16816264390945435, -0.39135685563087463, -0.32782846689224243, -0.26983681321144104, 0.13388776779174805, -0.20174244046211243, 0.062126222997903824, 1.0942556858062744, -0.0076219672337174416, 0.0005992112564854324, -0.005165201146155596]} +{"t": 7.9803, "q": [-0.13823382556438446, 0.004027551505714655, -0.006254015490412712, 0.3166477084159851, -0.17621034383773804, -0.010165292769670486, -0.07862162590026855, -0.03303172066807747, 0.01644524745643139, 0.32235753536224365, -0.25762730836868286, 0.02179121784865856, 0.025431210175156593, 0.11014410853385925, 0.028823593631386757, 0.058039601892232895, 0.11472498625516891, 0.1619308441877365, 0.16812670230865479, -0.3849453032016754, -0.3278045058250427, -0.27013641595840454, 0.1341274529695511, -0.20174244046211243, 0.06205431744456291, 1.0942796468734741, -0.0076459357514977455, 0.0005392901366576552, -0.005177185405045748]} +{"t": 7.9971, "q": [-0.1382167786359787, 0.004019028972834349, -0.0061736637726426125, 0.31661364436149597, -0.17621886730194092, -0.010165344923734665, -0.07862162590026855, -0.03303172066807747, 0.016512207686901093, 0.3223831057548523, -0.25762730836868286, 0.02179121784865856, 0.0245339535176754, 0.11014410853385925, 0.028823593631386757, 0.05909421294927597, 0.12132829427719116, 0.16179902851581573, 0.1681986004114151, -0.378437876701355, -0.327780544757843, -0.27050793170928955, 0.13455888628959656, -0.20176641643047333, 0.06199439615011215, 1.0941957235336304, -0.0076579200103878975, 0.0005392901366576552, -0.005273059010505676]} +{"t": 8.0138, "q": [-0.13824233412742615, 0.003984940703958273, -0.006039745174348354, 0.31658807396888733, -0.1762145608663559, -0.010158231481909752, -0.07863867282867432, -0.033074330538511276, 0.016686301678419113, 0.32236605882644653, -0.2576274275779724, 0.02180561237037182, 0.023583129048347473, 0.11014410853385925, 0.028823593631386757, 0.06061621010303497, 0.1278836727142334, 0.16176307201385498, 0.1681746393442154, -0.3718465268611908, -0.327780544757843, -0.27083149552345276, 0.13490642607212067, -0.20169450342655182, 0.061958443373441696, 1.0941357612609863, -0.0076219672337174416, 0.0003954794374294579, -0.005644570104777813]} +{"t": 8.0307, "q": [-0.13819120824337006, 0.0039167641662061214, -0.00579869095236063, 0.3166051208972931, -0.17621886730194092, -0.010165344923734665, -0.07871536910533905, -0.03309137374162674, 0.016873788088560104, 0.32234901189804077, -0.25762319564819336, 0.021798379719257355, 0.021895749494433403, 0.11013654619455338, 0.028828810900449753, 0.06197042763233185, 0.13448697328567505, 0.16177505254745483, 0.16807876527309418, -0.3625827431678772, -0.32776856422424316, -0.2711431086063385, 0.1351461112499237, -0.2016465812921524, 0.061982411891222, 1.0942436456680298, -0.0076459357514977455, 0.0003115898580290377, -0.006147907581180334]} +{"t": 8.0477, "q": [-0.1381656378507614, 0.0038144984282553196, -0.005504068918526173, 0.31661364436149597, -0.17621886730194092, -0.010165344923734665, -0.07873241603374481, -0.03309989720582962, 0.01714162714779377, 0.3223831057548523, -0.2576233148574829, 0.02181277610361576, 0.018869180232286453, 0.11014390736818314, 0.02883303537964821, 0.0629051998257637, 0.14191719889640808, 0.16157132387161255, 0.16828249394893646, -0.35665053129196167, -0.3277325928211212, -0.27140673995018005, 0.13500230014324188, -0.20163458585739136, 0.062138207256793976, 1.0944594144821167, -0.0076579200103878975, 0.0003115898580290377, -0.006339655257761478]} +{"t": 8.0646, "q": [-0.13818268477916718, 0.0036696228198707104, -0.005477285478264093, 0.3165965974330902, -0.17622308433055878, -0.010158275254070759, -0.07873241603374481, -0.03327886015176773, 0.01711484231054783, 0.3223745822906494, -0.25761082768440247, 0.021819867193698883, 0.01538728829473257, 0.11017356067895889, 0.02884049154818058, 0.06395980715751648, 0.14921559393405914, 0.16137957572937012, 0.1693251132965088, -0.3486570715904236, -0.3274809420108795, -0.27170634269714355, 0.13430720567703247, -0.2016226053237915, 0.062497735023498535, 1.0947589874267578, -0.0076579200103878975, 0.00032357408781535923, -0.0063276709988713264]} +{"t": 8.0814, "q": [-0.1382593810558319, 0.0035673570819199085, -0.005490677431225777, 0.31662216782569885, -0.17621877789497375, -0.010151161812245846, -0.07871536910533905, -0.03332147002220154, 0.017088059335947037, 0.3223916292190552, -0.25761494040489197, 0.02181270532310009, 0.012615165673196316, 0.11015105992555618, 0.028846699744462967, 0.06569752097129822, 0.1561904102563858, 0.16127172112464905, 0.1705954521894455, -0.33905771374702454, -0.3270615041255951, -0.27198198437690735, 0.13315673172473907, -0.20170649886131287, 0.06261757761240005, 1.0950226783752441, -0.0076339514926075935, 0.0003475425182841718, -0.00612393906340003]} +{"t": 8.0981, "q": [-0.13829347491264343, 0.003516224678605795, -0.005530852824449539, 0.3166051208972931, -0.1762229949235916, -0.010144100524485111, -0.078689806163311, -0.03335556015372276, 0.01695414073765278, 0.32234901189804077, -0.2575902044773102, 0.02185569517314434, 0.010418894700706005, 0.11010585725307465, 0.02886855974793434, 0.06810635328292847, 0.1634288728237152, 0.1609121859073639, 0.17112275958061218, -0.3301054835319519, -0.3268337845802307, -0.2724613547325134, 0.13216203451156616, -0.20350413024425507, 0.06337258219718933, 1.0955499410629272, -0.007705857045948505, 0.00035952674807049334, -0.005440838169306517]} +{"t": 8.1151, "q": [-0.1382593810558319, 0.0035588345490396023, -0.005530852824449539, 0.31658807396888733, -0.17622730135917664, -0.010151213966310024, -0.07869832962751389, -0.03334703668951988, 0.01695414073765278, 0.3222808241844177, -0.2575985789299011, 0.02185576595366001, 0.0089190024882555, 0.11006821691989899, 0.02888520248234272, 0.07107844203710556, 0.1700202077627182, 0.16078037023544312, 0.17148227989673615, -0.31965523958206177, -0.32672592997550964, -0.27300065755844116, 0.13137108087539673, -0.20520588755607605, 0.0640556812286377, 1.0972037315368652, -0.0076818885281682014, 0.0003834952076431364, -0.005009406246244907]} +{"t": 8.1318, "q": [-0.13825085759162903, 0.0035844012163579464, -0.005530852824449539, 0.3165539801120758, -0.17622308433055878, -0.010158275254070759, -0.07872389256954193, -0.03332147002220154, 0.0169675312936306, 0.3222382366657257, -0.2575985789299011, 0.02185576595366001, 0.008021745830774307, 0.11005328595638275, 0.02888619527220726, 0.07405053079128265, 0.17729462683200836, 0.15996544063091278, 0.1720455437898636, -0.3103674650192261, -0.3264143466949463, -0.2739953398704529, 0.13104750216007233, -0.20727916061878204, 0.06495450437068939, 1.09944486618042, -0.0076818885281682014, 0.0003834952076431364, -0.00453003728762269]} +{"t": 8.1486, "q": [-0.1382593810558319, 0.0036099678836762905, -0.005571028683334589, 0.31635797023773193, -0.17622308433055878, -0.010158275254070759, -0.07884320616722107, -0.033295903354883194, 0.016887180507183075, 0.3221870958805084, -0.2576028108596802, 0.021862998604774475, 0.007579812780022621, 0.1100829467177391, 0.02889365144073963, 0.07715444266796112, 0.1841496080160141, 0.15885090827941895, 0.17251291871070862, -0.2998213469982147, -0.3261866569519043, -0.27548137307167053, 0.13102354109287262, -0.21017934381961823, 0.06567355245351791, 1.1019494533538818, -0.0076699042692780495, 0.00041944789700210094, -0.004050668329000473]} +{"t": 8.1653, "q": [-0.1382593810558319, 0.003746321890503168, -0.0055978125892579556, 0.31621310114860535, -0.17621877789497375, -0.010151161812245846, -0.07894547283649445, -0.033193640410900116, 0.016833612695336342, 0.32207632064819336, -0.2575944662094116, 0.021862927824258804, 0.007231623865664005, 0.1100829467177391, 0.02889365144073963, 0.08102534711360931, 0.1908128410577774, 0.1576405018568039, 0.17253689467906952, -0.2900182604789734, -0.3260308504104614, -0.2778902053833008, 0.13109543919563293, -0.21351096034049988, 0.06632070243358612, 1.1047298908233643, -0.0076699042692780495, 0.0004793690168298781, -0.003583283396437764]} +{"t": 8.182, "q": [-0.13823382556438446, 0.003908241633325815, -0.005624596029520035, 0.3161022961139679, -0.1762145608663559, -0.010158231481909752, -0.07898808270692825, -0.03314250707626343, 0.01679343730211258, 0.32199108600616455, -0.2576068341732025, 0.021841442212462425, 0.007137880194932222, 0.11006801575422287, 0.028894644230604172, 0.08506403118371964, 0.19783559441566467, 0.1561904102563858, 0.17258483171463013, -0.2787650525569916, -0.3260188698768616, -0.2810540497303009, 0.13139504194259644, -0.217873215675354, 0.06665626168251038, 1.1078816652297974, -0.0076699042692780495, 0.00046738478704355657, -0.0029241510201245546]} +{"t": 8.1988, "q": [-0.13823382556438446, 0.004070162307471037, -0.005731731187552214, 0.3160426616668701, -0.17622308433055878, -0.010158275254070759, -0.07908182591199875, -0.03309989720582962, 0.016699694097042084, 0.32180359959602356, -0.25760695338249207, 0.021855836734175682, 0.007218231912702322, 0.11006759852170944, 0.028913525864481926, 0.08916263282299042, 0.20391158759593964, 0.15498000383377075, 0.17265672981739044, -0.26853054761886597, -0.3260308504104614, -0.2838703393936157, 0.13193432986736298, -0.22253507375717163, 0.06665626168251038, 1.111548900604248, -0.0076459357514977455, 0.00046738478704355657, -0.002588592702522874]} +{"t": 8.2156, "q": [-0.13824233412742615, 0.0043002585880458355, -0.005865650251507759, 0.3160426616668701, -0.1762145608663559, -0.010158231481909752, -0.0791073888540268, -0.033006154000759125, 0.016538990661501884, 0.32171836495399475, -0.25760695338249207, 0.021855836734175682, 0.007271799258887768, 0.109992116689682, 0.028956253081560135, 0.09284179657697678, 0.20962806046009064, 0.15375761687755585, 0.17293237149715424, -0.25842782855033875, -0.32605481147766113, -0.2863750457763672, 0.13234180212020874, -0.22705313563346863, 0.06662030518054962, 1.1157673597335815, -0.0076699042692780495, 0.0005153216770850122, -0.002277002902701497]} +{"t": 8.2323, "q": [-0.1383105218410492, 0.004530355799943209, -0.005972785409539938, 0.31606820225715637, -0.17621465027332306, -0.0101724062114954, -0.07918408513069153, -0.03292093053460121, 0.016418464481830597, 0.3216502070426941, -0.257610946893692, 0.021834280341863632, 0.007472677621990442, 0.10993116348981857, 0.029016876593232155, 0.09619737416505814, 0.2154044657945633, 0.15297862887382507, 0.1738431751728058, -0.2466593235731125, -0.3261147439479828, -0.287992924451828, 0.13279719650745392, -0.2328295260667801, 0.0665244311094284, 1.1201655864715576, -0.0076459357514977455, 0.0004913532175123692, -0.0020732709672302008]} +{"t": 8.2492, "q": [-0.13828495144844055, 0.00475193141028285, -0.006079920567572117, 0.316093772649765, -0.1762019246816635, -0.010179415345191956, -0.0792437419295311, -0.032946497201919556, 0.01629793643951416, 0.3215138614177704, -0.257610946893692, 0.021834280341863632, 0.007499461527913809, 0.10994630306959152, 0.029006442055106163, 0.0992773249745369, 0.2202460914850235, 0.1526191085577011, 0.17501762509346008, -0.23683226108551025, -0.32622259855270386, -0.2891194224357605, 0.13301292061805725, -0.23927703499794006, 0.06644054502248764, 1.1244438886642456, -0.0076818885281682014, 0.0005632585962302983, -0.0017736653098836541]} +{"t": 8.2661, "q": [-0.13819973170757294, 0.00481158634647727, -0.006106704473495483, 0.3161108195781708, -0.1762019246816635, -0.010179415345191956, -0.0792863517999649, -0.03292093053460121, 0.01629793643951416, 0.3214201033115387, -0.25761517882347107, 0.021841512992978096, 0.0074860695749521255, 0.10996144264936447, 0.02899600937962532, 0.10263290256261826, 0.2250397801399231, 0.15246331691741943, 0.17612017691135406, -0.22617828845977783, -0.3265581429004669, -0.28998228907585144, 0.13351625204086304, -0.24637170135974884, 0.06634467095136642, 1.1275238990783691, -0.0076818885281682014, 0.0005632585962302983, -0.0013781859306618571]} +{"t": 8.2828, "q": [-0.13815711438655853, 0.005024638492614031, -0.00613348837941885, 0.31611934304237366, -0.1761978566646576, -0.01021481677889824, -0.07932896167039871, -0.03296354413032532, 0.01628454588353634, 0.3214115798473358, -0.257623553276062, 0.021841565147042274, 0.007338759023696184, 0.10998394340276718, 0.028989799320697784, 0.10606039315462112, 0.23033681511878967, 0.15187609195709229, 0.1768871694803238, -0.21589581668376923, -0.3266899883747101, -0.29095301032066345, 0.1339476853609085, -0.2538019120693207, 0.06632070243358612, 1.1297649145126343, -0.0076579200103878975, 0.0005872270558029413, -0.0009827064350247383]} +{"t": 8.2996, "q": [-0.13810598850250244, 0.005246214102953672, -0.0060933125205338, 0.31617048382759094, -0.17618083953857422, -0.010214739479124546, -0.07943122833967209, -0.03292093053460121, 0.016351504251360893, 0.3213860094547272, -0.25762754678726196, 0.021820008754730225, 0.007084312848746777, 0.10998394340276718, 0.028989799320697784, 0.10954780131578445, 0.23563383519649506, 0.15184013545513153, 0.17715081572532654, -0.20422318577766418, -0.3269416391849518, -0.2918638288974762, 0.13410347700119019, -0.2617834210395813, 0.06642855703830719, 1.131742238998413, -0.0076459357514977455, 0.0005632585962302983, -0.0005752427969127893]} +{"t": 8.3165, "q": [-0.13807189464569092, 0.005357001442462206, -0.006106704473495483, 0.31612786650657654, -0.17618092894554138, -0.010228913277387619, -0.07945679873228073, -0.032946497201919556, 0.016378289088606834, 0.3213774859905243, -0.2576233148574829, 0.02181277610361576, 0.00672273151576519, 0.10996901243925095, 0.028990792110562325, 0.11301124095916748, 0.24042752385139465, 0.15178021788597107, 0.17736653983592987, -0.1958581954240799, -0.3272532522678375, -0.292966365814209, 0.1341753900051117, -0.26910579204559326, 0.06629673391580582, 1.1344027519226074, -0.0076219672337174416, 0.0005632585962302983, -0.0001917476038215682]} +{"t": 8.3332, "q": [-0.13807189464569092, 0.005578576121479273, -0.0060933125205338, 0.3161108195781708, -0.17618092894554138, -0.010228913277387619, -0.07943122833967209, -0.03290388733148575, 0.016351504251360893, 0.3213774859905243, -0.2576274275779724, 0.02180561237037182, 0.006575420964509249, 0.1099763736128807, 0.02899501658976078, 0.11556388437747955, 0.2448377162218094, 0.15184013545513153, 0.17775003612041473, -0.18506041169166565, -0.32739704847335815, -0.29372137784957886, 0.13411545753479004, -0.2760566174983978, 0.06624879688024521, 1.1370632648468018, -0.0076459357514977455, 0.0005872270558029413, 4.793690095539205e-05]} +{"t": 8.35, "q": [-0.13805484771728516, 0.0057149301283061504, -0.006106704473495483, 0.3160170912742615, -0.17616406083106995, -0.010257167741656303, -0.07946531474590302, -0.032827187329530716, 0.016351504251360893, 0.3213689625263214, -0.2576271593570709, 0.021776804700493813, 0.006320974789559841, 0.1099763736128807, 0.02899501658976078, 0.11883557587862015, 0.25073397159576416, 0.15113306045532227, 0.1780855804681778, -0.17477793991565704, -0.3275049030780792, -0.2947400212287903, 0.1339237242937088, -0.28321120142936707, 0.06623681634664536, 1.1398316621780396, -0.0076579200103878975, 0.0005752427969127893, 0.00037151097785681486]} +{"t": 8.3669, "q": [-0.13804633915424347, 0.005842761602252722, -0.00613348837941885, 0.31603413820266724, -0.17615142464637756, -0.010278359986841679, -0.07950793206691742, -0.03280162066221237, 0.016405072063207626, 0.32135191559791565, -0.25763142108917236, 0.02178405597805977, 0.006039745174348354, 0.10998394340276718, 0.028989799320697784, 0.12217917293310165, 0.256690114736557, 0.15103718638420105, 0.17821741104125977, -0.16284164786338806, -0.3278404772281647, -0.29584258794784546, 0.13333648443222046, -0.2895148992538452, 0.06616491079330444, 1.143235206604004, -0.0076219672337174416, 0.0005392901366576552, 0.0005992112564854324]} +{"t": 8.3837, "q": [-0.13797815144062042, 0.006038770545274019, -0.006079920567572117, 0.31608524918556213, -0.17615564167499542, -0.010271290317177773, -0.07949088513851166, -0.032818667590618134, 0.016391679644584656, 0.3213860094547272, -0.25764816999435425, 0.02178419753909111, 0.006079920567572117, 0.10999130457639694, 0.02899402379989624, 0.1248876079916954, 0.26262232661247253, 0.15090537071228027, 0.17892448604106903, -0.15083345770835876, -0.3281280994415283, -0.2972806990146637, 0.13333648443222046, -0.29614219069480896, 0.0662248283624649, 1.1460754871368408, -0.0076818885281682014, 0.0005752427969127893, 0.0007909588748589158]} +{"t": 8.4004, "q": [-0.1380804181098938, 0.006072858814150095, -0.006146880332380533, 0.31593185663223267, -0.17615993320941925, -0.010278385132551193, -0.07955905795097351, -0.032776057720184326, 0.016364896669983864, 0.3213263750076294, -0.2576565444469452, 0.02178424969315529, 0.006106704473495483, 0.1099763736128807, 0.02899501658976078, 0.12772786617279053, 0.2689020335674286, 0.15085743367671967, 0.17946377396583557, -0.13859756290912628, -0.3285115957260132, -0.29938992857933044, 0.1336001455783844, -0.3030690848827362, 0.06626078486442566, 1.1481246948242188, -0.0076818885281682014, 0.0005992112564854324, 0.0009587380336597562]} +{"t": 8.4173, "q": [-0.1380804181098938, 0.006081381347030401, -0.006160271819680929, 0.31603413820266724, -0.1761513352394104, -0.01026417687535286, -0.07957610487937927, -0.03279310092329979, 0.0163247212767601, 0.32130932807922363, -0.2576439082622528, 0.021776964887976646, 0.0060933125205338, 0.10997596383094788, 0.029013898223638535, 0.1306520253419876, 0.27534955739974976, 0.15092933177947998, 0.18008695542812347, -0.12510332465171814, -0.3287632465362549, -0.3020983636379242, 0.13354022800922394, -0.30867770314216614, 0.0662008598446846, 1.149970293045044, -0.0076818885281682014, 0.0006111955153755844, 0.0010186590952798724]} +{"t": 8.4341, "q": [-0.13809746503829956, 0.006106947083026171, -0.006187055725604296, 0.3160170912742615, -0.17615993320941925, -0.010278385132551193, -0.07954201847314835, -0.03279310092329979, 0.0163247212767601, 0.32130932807922363, -0.25764816999435425, 0.02178419753909111, 0.00638793408870697, 0.10995366424322128, 0.02901066653430462, 0.1330488622188568, 0.28143754601478577, 0.151300847530365, 0.18051838874816895, -0.11307116597890854, -0.32912278175354004, -0.30455511808395386, 0.1335761696100235, -0.31419044733047485, 0.0662008598446846, 1.151971697807312, -0.0076818885281682014, 0.0005632585962302983, 0.0010546118719503284]} +{"t": 8.4508, "q": [-0.13815711438655853, 0.006081381347030401, -0.006307582836598158, 0.31603413820266724, -0.17616420984268188, -0.010285480879247189, -0.07949940860271454, -0.032759010791778564, 0.016190802678465843, 0.3213178515434265, -0.2576524019241333, 0.021791430190205574, 0.0068030827678740025, 0.10995366424322128, 0.02901066653430462, 0.13476261496543884, 0.2872259318828583, 0.15143266320228577, 0.18103370070457458, -0.10066749155521393, -0.329386442899704, -0.3060651421546936, 0.13350427150726318, -0.31946349143981934, 0.06623681634664536, 1.1544643640518188, -0.0076579200103878975, 0.0005752427969127893, 0.0010905645322054625]} +{"t": 8.4677, "q": [-0.13818268477916718, 0.006021726410835981, -0.006374542135745287, 0.3160170912742615, -0.17615564167499542, -0.010271290317177773, -0.07948236167430878, -0.03275049105286598, 0.01612384244799614, 0.32136043906211853, -0.2576524019241333, 0.021791430190205574, 0.007245015352964401, 0.10996880382299423, 0.029000233858823776, 0.1365962028503418, 0.2938292324542999, 0.15128885209560394, 0.1815010905265808, -0.08686166256666183, -0.3296021521091461, -0.3071676790714264, 0.1329769641160965, -0.3242571949958801, 0.06618887931108475, 1.157496452331543, -0.007693872787058353, 0.0005512743373401463, 0.0011504855938255787]} +{"t": 8.4844, "q": [-0.13824233412742615, 0.005936504807323217, -0.006347758695483208, 0.3160170912742615, -0.17615993320941925, -0.010278385132551193, -0.07946531474590302, -0.032707877457141876, 0.016164017841219902, 0.3213860094547272, -0.2576524019241333, 0.021791430190205574, 0.007338759023696184, 0.11000644415616989, 0.02898358926177025, 0.13838185369968414, 0.2999771535396576, 0.15140870213508606, 0.18187260627746582, -0.07514109462499619, -0.3296860456466675, -0.3082942068576813, 0.1323298215866089, -0.32841572165489197, 0.0662008598446846, 1.1598213911056519, -0.0076818885281682014, 0.0005752427969127893, 0.0011385014513507485]} +{"t": 8.5012, "q": [-0.13825085759162903, 0.005902416538447142, -0.006347758695483208, 0.3159489035606384, -0.17616413533687592, -0.010271324776113033, -0.07944827526807785, -0.032707877457141876, 0.01615062542259693, 0.3214201033115387, -0.2576439082622528, 0.021776964887976646, 0.007365542463958263, 0.11000664532184601, 0.028974149376153946, 0.14011956751346588, 0.3056936264038086, 0.1519719660282135, 0.182699516415596, -0.06344448775053024, -0.3299257159233093, -0.3090372085571289, 0.13197028636932373, -0.33253827691078186, 0.06629673391580582, 1.1621222496032715, -0.0076459357514977455, 0.0005512743373401463, 0.0011744541116058826]} +{"t": 8.5179, "q": [-0.13824233412742615, 0.005783106666058302, -0.006320974789559841, 0.3159574270248413, -0.1761598438024521, -0.010264229029417038, -0.07934600859880447, -0.03275049105286598, 0.01615062542259693, 0.32144567370414734, -0.2576439082622528, 0.021776964887976646, 0.007378934416919947, 0.10997677594423294, 0.02897612936794758, 0.1414857655763626, 0.31063112616539, 0.15278688073158264, 0.18390992283821106, -0.052622731775045395, -0.3302013576030731, -0.3094806373119354, 0.13171862065792084, -0.33624139428138733, 0.06638062000274658, 1.1643154621124268, -0.0076818885281682014, 0.0005752427969127893, 0.0011984225129708648]} +{"t": 8.5346, "q": [-0.1382679045200348, 0.005723452661186457, -0.006347758695483208, 0.31593185663223267, -0.1761726438999176, -0.01027135830372572, -0.07931192219257355, -0.03273344412446022, 0.01615062542259693, 0.32148829102516174, -0.25764816999435425, 0.02178419753909111, 0.00739232636988163, 0.10997677594423294, 0.02897612936794758, 0.14242053031921387, 0.3150293231010437, 0.1531224399805069, 0.1853480339050293, -0.044749096035957336, -0.3302852511405945, -0.3095884919166565, 0.13164670765399933, -0.33942919969558716, 0.06644054502248764, 1.166172981262207, -0.007693872787058353, 0.0005752427969127893, 0.0012104067718610168]} +{"t": 8.5514, "q": [-0.13832756876945496, 0.005587098654359579, -0.006320974789559841, 0.3159489035606384, -0.17616835236549377, -0.010264263488352299, -0.07926931232213974, -0.03272492438554764, 0.016190802678465843, 0.3214968144893646, -0.25763967633247375, 0.021769732236862183, 0.0074191102758049965, 0.10996920615434647, 0.028981344774365425, 0.14331935346126556, 0.3177257776260376, 0.1534699946641922, 0.18727748095989227, -0.03721101954579353, -0.3305129408836365, -0.309660404920578, 0.13163472712039948, -0.34252113103866577, 0.0664764940738678, 1.1673353910446167, -0.0076699042692780495, 0.0005752427969127893, 0.0012223910307511687]} +{"t": 8.5681, "q": [-0.13836164772510529, 0.005425177980214357, -0.006280798930674791, 0.31594038009643555, -0.17616406083106995, -0.010257167741656303, -0.07926931232213974, -0.03273344412446022, 0.016271153464913368, 0.32157349586486816, -0.25763991475105286, 0.021798521280288696, 0.007338759023696184, 0.10996920615434647, 0.028981344774365425, 0.14369085431098938, 0.3182530999183655, 0.1539972871541977, 0.18962639570236206, -0.03189002349972725, -0.33048897981643677, -0.309660404920578, 0.13165870308876038, -0.34504979848861694, 0.06642855703830719, 1.1681263446807861, -0.0076818885281682014, 0.0005752427969127893, 0.0012343751732259989]} +{"t": 8.5849, "q": [-0.1383957415819168, 0.0053484789095819, -0.006280798930674791, 0.31594038009643555, -0.17616413533687592, -0.010271324776113033, -0.07922670245170593, -0.03269083425402641, 0.016257761046290398, 0.3215990662574768, -0.25764840841293335, 0.021812988445162773, 0.007365542463958263, 0.10993975400924683, 0.02896444872021675, 0.1437867283821106, 0.3181212544441223, 0.15574699640274048, 0.1913161724805832, -0.028091024607419968, -0.330213338136673, -0.3095645308494568, 0.13171862065792084, -0.34699127078056335, 0.06638062000274658, 1.1685218811035156, -0.0076579200103878975, 0.0005752427969127893, 0.0012463594321161509]} +{"t": 8.6016, "q": [-0.1384042650461197, 0.00526325823739171, -0.006280798930674791, 0.3159489035606384, -0.17616835236549377, -0.010264263488352299, -0.07912443578243256, -0.03269083425402641, 0.016271153464913368, 0.3216502070426941, -0.2576356828212738, 0.021791288629174232, 0.007405718322843313, 0.10987981408834457, 0.028977854177355766, 0.1438586413860321, 0.3176538646221161, 0.15664580464363098, 0.192562535405159, -0.027491813525557518, -0.3302253186702728, -0.3094926178455353, 0.13183845579624176, -0.34832149744033813, 0.06632070243358612, 1.168797492980957, -0.0076818885281682014, 0.0005992112564854324, 0.001270327833481133]} +{"t": 8.6183, "q": [-0.13842131197452545, 0.005152470897883177, -0.006320974789559841, 0.31593185663223267, -0.1761598438024521, -0.010264229029417038, -0.07906477898359299, -0.032699357718229294, 0.016257761046290398, 0.3216843008995056, -0.25763991475105286, 0.021798521280288696, 0.007512853480875492, 0.10978304594755173, 0.028970133513212204, 0.1436069756746292, 0.31686291098594666, 0.15770041942596436, 0.1935092806816101, -0.028067056089639664, -0.3302852511405945, -0.30942070484161377, 0.13186243176460266, -0.34883683919906616, 0.06628475338220596, 1.1688334941864014, -0.0076579200103878975, 0.0005752427969127893, 0.0012583436910063028]} +{"t": 8.6351, "q": [-0.13842131197452545, 0.0051183816976845264, -0.006280798930674791, 0.31597447395324707, -0.17616406083106995, -0.010257167741656303, -0.07896251231431961, -0.032699357718229294, 0.016244368627667427, 0.32171836495399475, -0.2576397955417633, 0.02178412675857544, 0.007673555985093117, 0.109701007604599, 0.028970861807465553, 0.14334331452846527, 0.3148735463619232, 0.15940217673778534, 0.19426429271697998, -0.029589051380753517, -0.33036914467811584, -0.3092169761657715, 0.13181449472904205, -0.34892070293426514, 0.06627276539802551, 1.1688214540481567, -0.0076699042692780495, 0.0005752427969127893, 0.0012583436910063028]} +{"t": 8.6518, "q": [-0.13842982053756714, 0.005041682627052069, -0.006307582836598158, 0.3160597085952759, -0.17616413533687592, -0.010271324776113033, -0.07890285551548004, -0.032699357718229294, 0.016257761046290398, 0.3217865526676178, -0.2576400339603424, 0.021812917664647102, 0.007954785600304604, 0.10959012061357498, 0.028926365077495575, 0.1431875228881836, 0.31045135855674744, 0.1613076776266098, 0.19552263617515564, -0.03181811794638634, -0.33018937706947327, -0.309061199426651, 0.1318025141954422, -0.34876492619514465, 0.06632070243358612, 1.1687735319137573, -0.0076459357514977455, 0.0005632585962302983, 0.001306280493736267]} +{"t": 8.6685, "q": [-0.13842131197452545, 0.004990550223737955, -0.006334366742521524, 0.316093772649765, -0.17617256939411163, -0.010257202200591564, -0.07884320616722107, -0.03269083425402641, 0.016217585653066635, 0.3218376934528351, -0.2576359212398529, 0.021820079535245895, 0.00806192122399807, 0.10939781367778778, 0.02885427139699459, 0.14312760531902313, 0.3056936264038086, 0.1630333960056305, 0.1973562240600586, -0.03723498806357384, -0.3300335705280304, -0.30907317996025085, 0.1317545771598816, -0.34846532344818115, 0.06636863946914673, 1.168785572052002, -0.0076699042692780495, 0.0005512743373401463, 0.001318264752626419]} +{"t": 8.6853, "q": [-0.13842131197452545, 0.005024638492614031, -0.006347758695483208, 0.3161449134349823, -0.1761682778596878, -0.010250106453895569, -0.07884320616722107, -0.03267379105091095, 0.016230978071689606, 0.3219143748283386, -0.25763168931007385, 0.02181284688413143, 0.008075312711298466, 0.1092202290892601, 0.028790626674890518, 0.1420849710702896, 0.3000490367412567, 0.1661013662815094, 0.19880631566047668, -0.04320313036441803, -0.32988977432250977, -0.3089653253555298, 0.1317306011915207, -0.34816572070121765, 0.06642855703830719, 1.1687136888504028, -0.0076579200103878975, 0.0005392901366576552, 0.001306280493736267]} +{"t": 8.702, "q": [-0.1383957415819168, 0.004999072756618261, -0.006347758695483208, 0.31621310114860535, -0.17616406083106995, -0.010257167741656303, -0.07880059629678726, -0.03267379105091095, 0.016244368627667427, 0.32199108600616455, -0.25764018297195435, 0.02182731218636036, 0.00806192122399807, 0.10893811285495758, 0.02873392030596733, 0.14101837575435638, 0.2924150824546814, 0.1709190160036087, 0.19935758411884308, -0.05120859295129776, -0.32974594831466675, -0.30897730588912964, 0.13171862065792084, -0.3476743698120117, 0.06641657650470734, 1.168725609779358, -0.0076579200103878975, 0.0005632585962302983, 0.001318264752626419]} +{"t": 8.7188, "q": [-0.13837017118930817, 0.005024638492614031, -0.006374542135745287, 0.31631535291671753, -0.17616406083106995, -0.010257167741656303, -0.07865571975708008, -0.032648224383592606, 0.016204193234443665, 0.32207632064819336, -0.2576230466365814, 0.021783966571092606, 0.008115489035844803, 0.10862571001052856, 0.028698081150650978, 0.1395922601222992, 0.28491297364234924, 0.1751853972673416, 0.19999274611473083, -0.06113153323531151, -0.3290868103504181, -0.3089653253555298, 0.13201822340488434, -0.34744665026664734, 0.06658435612916946, 1.1687616109848022, -0.0076818885281682014, 0.0005632585962302983, 0.001306280493736267]} +{"t": 8.7356, "q": [-0.13838721811771393, 0.005041682627052069, -0.006454893853515387, 0.31630682945251465, -0.17615976929664612, -0.01025005429983139, -0.07863867282867432, -0.032648224383592606, 0.016230978071689606, 0.32208484411239624, -0.2576315402984619, 0.021798450499773026, 0.008169055916368961, 0.1082758828997612, 0.028669442981481552, 0.13821406662464142, 0.277386873960495, 0.17984727025032043, 0.20179037749767303, -0.07179749011993408, -0.32806816697120667, -0.30900126695632935, 0.1323298215866089, -0.3472069799900055, 0.06656038761138916, 1.168797492980957, -0.0076579200103878975, 0.0005512743373401463, 0.001318264752626419]} +{"t": 8.7525, "q": [-0.13841278851032257, 0.005024638492614031, -0.006481677293777466, 0.31635797023773193, -0.17616406083106995, -0.010257167741656303, -0.07861310988664627, -0.03262265771627426, 0.016230978071689606, 0.3221103847026825, -0.25762319564819336, 0.021798379719257355, 0.008383326232433319, 0.1078123152256012, 0.02872849814593792, 0.13603293895721436, 0.26886609196662903, 0.1853240579366684, 0.20425914227962494, -0.08384163677692413, -0.32707348465919495, -0.3090132474899292, 0.1326054483652115, -0.3470032513141632, 0.06663229316473007, 1.1688095331192017, -0.0076818885281682014, 0.0005752427969127893, 0.001330249011516571]} +{"t": 8.7692, "q": [-0.13842131197452545, 0.004999072756618261, -0.006548637058585882, 0.3165028393268585, -0.17616406083106995, -0.010257167741656303, -0.0785534530878067, -0.032639700919389725, 0.016204193234443665, 0.32217857241630554, -0.2576315402984619, 0.021798450499773026, 0.008423502556979656, 0.10727245360612869, 0.028867723420262337, 0.13361212611198425, 0.2603572905063629, 0.19122029840946198, 0.20780646800994873, -0.09429188072681427, -0.3266180753707886, -0.30914506316185, 0.13276124000549316, -0.34677553176879883, 0.06662030518054962, 1.1688334941864014, -0.0076579200103878975, 0.0005632585962302983, 0.001330249011516571]} +{"t": 8.786, "q": [-0.13841278851032257, 0.0049820286221802235, -0.006521853152662516, 0.31648579239845276, -0.17616406083106995, -0.010257167741656303, -0.07857901602983475, -0.032588567584753036, 0.016204193234443665, 0.32217004895210266, -0.25761905312538147, 0.021805541589856148, 0.008423502556979656, 0.10663816332817078, 0.02888532355427742, 0.13134710490703583, 0.2510455548763275, 0.19690081477165222, 0.21142570674419403, -0.1073906421661377, -0.3263184726238251, -0.30920499563217163, 0.13280917704105377, -0.3465837836265564, 0.06662030518054962, 1.168797492980957, -0.0076818885281682014, 0.0005632585962302983, 0.0013901700731366873]} +{"t": 8.8027, "q": [-0.13841278851032257, 0.004956461954861879, -0.006495069246739149, 0.3165113627910614, -0.1761682778596878, -0.010250106453895569, -0.07858753949403763, -0.0326056145131588, 0.016230978071689606, 0.32217004895210266, -0.2576148211956024, 0.02179829217493534, 0.008356543257832527, 0.10584601014852524, 0.0289455633610487, 0.12978915870189667, 0.24252477288246155, 0.201323002576828, 0.21394239366054535, -0.1194707378745079, -0.32597091794013977, -0.3092409372329712, 0.13280917704105377, -0.34639203548431396, 0.06663229316473007, 1.168797492980957, -0.0076818885281682014, 0.0005632585962302983, 0.0013901700731366873]} +{"t": 8.8194, "q": [-0.13837017118930817, 0.004913851153105497, -0.00642810994759202, 0.3165198862552643, -0.17616835236549377, -0.010264263488352299, -0.07857901602983475, -0.032588567584753036, 0.016271153464913368, 0.32213595509529114, -0.25761905312538147, 0.021805541589856148, 0.008369934745132923, 0.10501935333013535, 0.02887132577598095, 0.12837502360343933, 0.2325299233198166, 0.20545755326747894, 0.2160276472568512, -0.13189838826656342, -0.3258630633354187, -0.3092649281024933, 0.13282117247581482, -0.3461044132709503, 0.06662030518054962, 1.1687495708465576, -0.0076818885281682014, 0.0005632585962302983, 0.0014381069922819734]} +{"t": 8.8362, "q": [-0.13837017118930817, 0.004888284485787153, -0.006414717994630337, 0.3165113627910614, -0.1761682778596878, -0.010250106453895569, -0.07860458642244339, -0.0326056145131588, 0.016257761046290398, 0.3221530020236969, -0.25761905312538147, 0.021805541589856148, 0.008182448334991932, 0.10413061827421188, 0.028904087841510773, 0.1273323893547058, 0.22369754314422607, 0.2096640169620514, 0.2174777388572693, -0.1453566700220108, -0.32580316066741943, -0.30930086970329285, 0.13279719650745392, -0.3460325300693512, 0.06660832464694977, 1.1687616109848022, -0.0076818885281682014, 0.0005512743373401463, 0.0014620755100622773]} +{"t": 8.8529, "q": [-0.13834460079669952, 0.004828630480915308, -0.006374542135745287, 0.31644317507743835, -0.17615969479084015, -0.01023589726537466, -0.07859606295824051, -0.0326056145131588, 0.01629793643951416, 0.32212743163108826, -0.2576233148574829, 0.02181277610361576, 0.00799496192485094, 0.10321857780218124, 0.028980735689401627, 0.12646952271461487, 0.21369071304798126, 0.2142060399055481, 0.21861623227596283, -0.15864717960357666, -0.3257671892642975, -0.30950459837913513, 0.13278521597385406, -0.34602054953575134, 0.06663229316473007, 1.1687735319137573, -0.0076579200103878975, 0.0005512743373401463, 0.0014620755100622773]} +{"t": 8.8696, "q": [-0.13833607733249664, 0.004820107948035002, -0.006320974789559841, 0.31645169854164124, -0.17617256939411163, -0.010257202200591564, -0.07859606295824051, -0.0326056145131588, 0.0163247212767601, 0.32213595509529114, -0.25761082768440247, 0.021819867193698883, 0.007874434813857079, 0.10220859199762344, 0.029095441102981567, 0.1254628598690033, 0.2045467495918274, 0.21756163239479065, 0.21949107944965363, -0.17169798910617828, -0.3258151412010193, -0.30957651138305664, 0.13286910951137543, -0.34597259759902954, 0.06658435612916946, 1.1688095331192017, -0.0076699042692780495, 0.0005632585962302983, 0.0014620755100622773]} +{"t": 8.8863, "q": [-0.1383531242609024, 0.00481158634647727, -0.006320974789559841, 0.31639206409454346, -0.17617256939411163, -0.010257202200591564, -0.07862162590026855, -0.0326056145131588, 0.016351504251360893, 0.3221103847026825, -0.2576148211956024, 0.02179829217493534, 0.007753907702863216, 0.10118401795625687, 0.029172230511903763, 0.12450411915779114, 0.19535484910011292, 0.22071348130702972, 0.22006632387638092, -0.18568359315395355, -0.32580316066741943, -0.30987611413002014, 0.13303688168525696, -0.34593665599823, 0.06663229316473007, 1.168797492980957, -0.0076579200103878975, 0.0005512743373401463, 0.0014500912511721253]} +{"t": 8.903, "q": [-0.13836164772510529, 0.00481158634647727, -0.006307582836598158, 0.31634944677352905, -0.1761682778596878, -0.010250106453895569, -0.07860458642244339, -0.03261413425207138, 0.0163247212767601, 0.32207632064819336, -0.2576233148574829, 0.02181277610361576, 0.007794083096086979, 0.10006897151470184, 0.02929229848086834, 0.12324577569961548, 0.1853000968694687, 0.2238653302192688, 0.22021013498306274, -0.1991298794746399, -0.3258870244026184, -0.30992403626441956, 0.13342037796974182, -0.3459606170654297, 0.06664427369832993, 1.1688334941864014, -0.0076818885281682014, 0.0005632585962302983, 0.0014620755100622773]} +{"t": 8.9198, "q": [-0.13838721811771393, 0.004820107948035002, -0.006347758695483208, 0.31635797023773193, -0.17617249488830566, -0.010243035852909088, -0.07860458642244339, -0.0326056145131588, 0.016230978071689606, 0.32208484411239624, -0.25762319564819336, 0.021798379719257355, 0.007928002625703812, 0.09892459213733673, 0.02938580885529518, 0.12222710996866226, 0.17655161023139954, 0.22554311156272888, 0.22041386365890503, -0.21197697520256042, -0.3258870244026184, -0.31001991033554077, 0.13377991318702698, -0.34590068459510803, 0.06664427369832993, 1.1688334941864014, -0.0076818885281682014, 0.0005872270558029413, 0.0014740596525371075]} +{"t": 8.9365, "q": [-0.13838721811771393, 0.00481158634647727, -0.006347758695483208, 0.31634092330932617, -0.1761682778596878, -0.010250106453895569, -0.07862162590026855, -0.0326056145131588, 0.016190802678465843, 0.3220677971839905, -0.2576148211956024, 0.02179829217493534, 0.00799496192485094, 0.09772221744060516, 0.02937726490199566, 0.12165187299251556, 0.16721589863300323, 0.2272568643093109, 0.22048577666282654, -0.2256389856338501, -0.32587504386901855, -0.3102356493473053, 0.13386379182338715, -0.34597259759902954, 0.06665626168251038, 1.1688693761825562, -0.0076818885281682014, 0.0005872270558029413, 0.0014500912511721253]} +{"t": 8.9532, "q": [-0.13836164772510529, 0.00483715208247304, -0.006347758695483208, 0.31635797023773193, -0.17616398632526398, -0.010242993012070656, -0.07863014936447144, -0.03257152438163757, 0.016230978071689606, 0.3220677971839905, -0.25761905312538147, 0.021805541589856148, 0.007820867002010345, 0.09652794152498245, 0.02930552512407303, 0.12107662856578827, 0.15756858885288239, 0.229306161403656, 0.22041386365890503, -0.23793481290340424, -0.3259349763393402, -0.31052327156066895, 0.13377991318702698, -0.3459246754646301, 0.06671617925167084, 1.1688095331192017, -0.0076818885281682014, 0.0005752427969127893, 0.0014381069922819734]} +{"t": 8.9701, "q": [-0.13834460079669952, 0.0048541962169110775, -0.006347758695483208, 0.31630682945251465, -0.1761682778596878, -0.010250106453895569, -0.07863014936447144, -0.032588567584753036, 0.01629793643951416, 0.3220677971839905, -0.2576148211956024, 0.02179829217493534, 0.007700339891016483, 0.09550748020410538, 0.029134094715118408, 0.12018979340791702, 0.1482808142900467, 0.23152324557304382, 0.22038990259170532, -0.24891236424446106, -0.32597091794013977, -0.31079888343811035, 0.13371998071670532, -0.3458767235279083, 0.06666824221611023, 1.1688214540481567, -0.0076818885281682014, 0.0005752427969127893, 0.0014381069922819734]} +{"t": 8.9868, "q": [-0.13831904530525208, 0.004879762884229422, -0.006347758695483208, 0.31634092330932617, -0.1761767864227295, -0.010250131599605083, -0.07863014936447144, -0.03254595771431923, 0.01628454588353634, 0.3220592737197876, -0.2576063275337219, 0.021783825010061264, 0.0076869479380548, 0.09448056668043137, 0.02890143170952797, 0.1194467693567276, 0.1386934369802475, 0.23327293992042542, 0.22038990259170532, -0.2607647478580475, -0.3260068893432617, -0.3110625445842743, 0.13369601964950562, -0.34584078192710876, 0.06669221073389053, 1.1688095331192017, -0.0076818885281682014, 0.0005632585962302983, 0.0014500912511721253]} +{"t": 9.0035, "q": [-0.13831904530525208, 0.004905329551547766, -0.006347758695483208, 0.3163323998451233, -0.17616406083106995, -0.010257167741656303, -0.07862162590026855, -0.032588567584753036, 0.01628454588353634, 0.3220677971839905, -0.2576233148574829, 0.02181277610361576, 0.0076467725448310375, 0.09360183775424957, 0.028705883771181107, 0.11900335550308228, 0.13024455308914185, 0.23424366116523743, 0.22034196555614471, -0.2721377909183502, -0.32607877254486084, -0.31135016679763794, 0.13366006314754486, -0.3459126651287079, 0.06668023020029068, 1.168797492980957, -0.0076579200103878975, 0.0005752427969127893, 0.0014261228498071432]} +{"t": 9.0204, "q": [-0.13833607733249664, 0.004973506089299917, -0.006374542135745287, 0.3163238763809204, -0.17617256939411163, -0.010257202200591564, -0.07863867282867432, -0.03256300464272499, 0.01628454588353634, 0.32208484411239624, -0.25761905312538147, 0.021805541589856148, 0.007633380591869354, 0.0928652361035347, 0.028506947681307793, 0.1188955008983612, 0.12273044884204865, 0.2344953417778015, 0.22030600905418396, -0.2819288969039917, -0.3261147439479828, -0.31194937229156494, 0.1336241066455841, -0.3458767235279083, 0.06668023020029068, 1.1687735319137573, -0.0076459357514977455, 0.0005872270558029413, 0.0014500912511721253]} +{"t": 9.0371, "q": [-0.1383105218410492, 0.005007594358175993, -0.006347758695483208, 0.31634944677352905, -0.1761767864227295, -0.010250131599605083, -0.07863867282867432, -0.032580047845840454, 0.01628454588353634, 0.32208484411239624, -0.25761905312538147, 0.021805541589856148, 0.007619988638907671, 0.09228643029928207, 0.028265926986932755, 0.11878763884305954, 0.11468903720378876, 0.23453128337860107, 0.2202460914850235, -0.29025793075561523, -0.32607877254486084, -0.31257256865501404, 0.1335282325744629, -0.3452415466308594, 0.06672816723585129, 1.1687616109848022, -0.0076579200103878975, 0.0005752427969127893, 0.0014261228498071432]} +{"t": 9.0538, "q": [-0.13828495144844055, 0.005024638492614031, -0.006347758695483208, 0.31634944677352905, -0.1761682778596878, -0.010250106453895569, -0.07858753949403763, -0.03254595771431923, 0.016257761046290398, 0.32212743163108826, -0.25761905312538147, 0.021805541589856148, 0.007553029339760542, 0.09187877178192139, 0.02806694060564041, 0.1188955008983612, 0.1079898551106453, 0.23450732231140137, 0.2203179895877838, -0.2989464998245239, -0.32597091794013977, -0.31306391954421997, 0.13346831500530243, -0.3440071940422058, 0.06688395887613297, 1.1687735319137573, -0.007693872787058353, 0.0005752427969127893, 0.0014381069922819734]} +{"t": 9.0705, "q": [-0.1382679045200348, 0.005024638492614031, -0.00638793408870697, 0.31634944677352905, -0.1761682778596878, -0.010250106453895569, -0.07860458642244339, -0.03249482437968254, 0.016244368627667427, 0.322144478559494, -0.25761905312538147, 0.021805541589856148, 0.007593204732984304, 0.09168639779090881, 0.027945229783654213, 0.11908724904060364, 0.10209361463785172, 0.23429159820079803, 0.22040188312530518, -0.3053460717201233, -0.3258870244026184, -0.3135073184967041, 0.1333005428314209, -0.34272485971450806, 0.06703975796699524, 1.1687735319137573, -0.00771784083917737, 0.0005752427969127893, 0.0014500912511721253]} +{"t": 9.0873, "q": [-0.1382679045200348, 0.005016116891056299, -0.006374542135745287, 0.3163835406303406, -0.17616406083106995, -0.010257167741656303, -0.07860458642244339, -0.03243517130613327, 0.01629793643951416, 0.3221870958805084, -0.2576189339160919, 0.0217911284416914, 0.0074860695749521255, 0.09167158603668213, 0.02793659269809723, 0.11938685178756714, 0.09557419270277023, 0.23341675102710724, 0.22048577666282654, -0.31094270944595337, -0.32564735412597656, -0.3141065537929535, 0.13303688168525696, -0.341418594121933, 0.06715960055589676, 1.168785572052002, -0.0076818885281682014, 0.0005752427969127893, 0.0014500912511721253]} +{"t": 9.104, "q": [-0.13829347491264343, 0.005016116891056299, -0.006361150648444891, 0.31640058755874634, -0.17616406083106995, -0.010257167741656303, -0.0786471962928772, -0.03243517130613327, 0.016244368627667427, 0.32222118973731995, -0.2576148211956024, 0.02179829217493534, 0.0071914480067789555, 0.09169380366802216, 0.02794954553246498, 0.11998606473207474, 0.09014534205198288, 0.23152324557304382, 0.22065354883670807, -0.31601202487945557, -0.3254915475845337, -0.3147057592868805, 0.13255751132965088, -0.3399685025215149, 0.06715960055589676, 1.1687616109848022, -0.0076699042692780495, 0.0005512743373401463, 0.0014620755100622773]} +{"t": 9.1207, "q": [-0.1382167786359787, 0.004990550223737955, -0.006347758695483208, 0.3163835406303406, -0.17616406083106995, -0.010257167741656303, -0.0786471962928772, -0.03239256143569946, 0.016338111832737923, 0.3222382366657257, -0.25761905312538147, 0.021805541589856148, 0.006937001831829548, 0.09170154482126236, 0.027934938669204712, 0.12056130915880203, 0.08515990525484085, 0.23027688264846802, 0.22078537940979004, -0.3198949098587036, -0.3252878189086914, -0.31529298424720764, 0.13213807344436646, -0.33857834339141846, 0.06719554960727692, 1.168725609779358, -0.0076818885281682014, 0.0005752427969127893, 0.0014620755100622773]} +{"t": 9.1375, "q": [-0.13819120824337006, 0.005050205159932375, -0.006347758695483208, 0.31639206409454346, -0.1761682778596878, -0.010250106453895569, -0.07863867282867432, -0.03238403797149658, 0.0163247212767601, 0.3222297132015228, -0.2576189339160919, 0.0217911284416914, 0.0066289883106946945, 0.09173166751861572, 0.02792380005121231, 0.12086091190576553, 0.07985088974237442, 0.2295578271150589, 0.22085729241371155, -0.3230108320713043, -0.325239896774292, -0.31594014167785645, 0.13181449472904205, -0.3370683193206787, 0.06726745516061783, 1.1686896085739136, -0.007693872787058353, 0.0005752427969127893, 0.0014620755100622773]} +{"t": 9.1542, "q": [-0.13818268477916718, 0.0051183816976845264, -0.006347758695483208, 0.3163664937019348, -0.17615976929664612, -0.01025005429983139, -0.0786471962928772, -0.032332904636859894, 0.016351504251360893, 0.3222382366657257, -0.25761905312538147, 0.021805541589856148, 0.006454893853515387, 0.0917166918516159, 0.027924634516239166, 0.1209927350282669, 0.07562046498060226, 0.22943799197673798, 0.22096514701843262, -0.32370591163635254, -0.32527583837509155, -0.31621575355529785, 0.13159877061843872, -0.3357740342617035, 0.06731539219617844, 1.1686656475067139, -0.0076818885281682014, 0.0005632585962302983, 0.0014620755100622773]} +{"t": 9.1709, "q": [-0.13820825517177582, 0.0051865591667592525, -0.006347758695483208, 0.3163238763809204, -0.17617256939411163, -0.010257202200591564, -0.07870685309171677, -0.032281775027513504, 0.01629793643951416, 0.3222297132015228, -0.2576148211956024, 0.02179829217493534, 0.006187055725604296, 0.09174647927284241, 0.027932435274124146, 0.12137623131275177, 0.07310377061367035, 0.2289825975894928, 0.22160030901432037, -0.32345423102378845, -0.32527583837509155, -0.31649139523506165, 0.13132314383983612, -0.3344198167324066, 0.06733936071395874, 1.1686896085739136, -0.0076579200103878975, 0.0005632585962302983, 0.0014860439114272594]} +{"t": 9.1876, "q": [-0.13820825517177582, 0.005305869039148092, -0.006334366742521524, 0.31625568866729736, -0.1761682778596878, -0.010250106453895569, -0.0787835493683815, -0.0321454182267189, 0.016351504251360893, 0.3222297132015228, -0.2576189339160919, 0.0217911284416914, 0.005919218063354492, 0.09175354987382889, 0.027955694124102592, 0.12166385352611542, 0.07242067158222198, 0.2287309169769287, 0.22283469140529633, -0.322291761636734, -0.32545560598373413, -0.31658726930618286, 0.13114337623119354, -0.3331494629383087, 0.06738729774951935, 1.1686416864395142, -0.0076699042692780495, 0.0005632585962302983, 0.0014740596525371075]} +{"t": 9.2044, "q": [-0.13822530210018158, 0.005399612244218588, -0.006320974789559841, 0.3161534368991852, -0.17617256939411163, -0.010257202200591564, -0.0787835493683815, -0.0320090651512146, 0.016351504251360893, 0.32217857241630554, -0.2576230466365814, 0.021783966571092606, 0.0057719070464372635, 0.09176836162805557, 0.027964329347014427, 0.1218675896525383, 0.07310377061367035, 0.2286110818386078, 0.2244405746459961, -0.3206259608268738, -0.32577916979789734, -0.31656330823898315, 0.13098758459091187, -0.33226263523101807, 0.06735134869813919, 1.1686058044433594, -0.0076579200103878975, 0.0005632585962302983, 0.0014740596525371075]} +{"t": 9.2211, "q": [-0.13813155889511108, 0.0054507446475327015, -0.006347758695483208, 0.3160597085952759, -0.17617256939411163, -0.010257202200591564, -0.07882615923881531, -0.03184714540839195, 0.016378289088606834, 0.32212743163108826, -0.25762730836868286, 0.02179121784865856, 0.005745123140513897, 0.09186563640832901, 0.02796364203095436, 0.12325775623321533, 0.07417037338018417, 0.22862306237220764, 0.22611835598945618, -0.31828904151916504, -0.3265581429004669, -0.3165513277053833, 0.1309516280889511, -0.3316754102706909, 0.0673992857336998, 1.16855788230896, -0.0076818885281682014, 0.0005512743373401463, 0.0014740596525371075]} +{"t": 9.238, "q": [-0.1381230354309082, 0.005510399583727121, -0.006320974789559841, 0.3160170912742615, -0.1761682778596878, -0.010250106453895569, -0.0789199024438858, -0.03172783553600311, 0.016364896669983864, 0.3221018612384796, -0.25763142108917236, 0.02178405597805977, 0.005624596029520035, 0.091977559030056, 0.027981063351035118, 0.12512730062007904, 0.07571633160114288, 0.2285871058702469, 0.22846727073192596, -0.31349533796310425, -0.3272172808647156, -0.316575288772583, 0.13101154565811157, -0.33136382699012756, 0.06738729774951935, 1.1686416864395142, -0.0076818885281682014, 0.0005512743373401463, 0.0014860439114272594]} +{"t": 9.2548, "q": [-0.13814859092235565, 0.005595620255917311, -0.006320974789559841, 0.31588923931121826, -0.17616835236549377, -0.010264263488352299, -0.07908182591199875, -0.03166818246245384, 0.016364896669983864, 0.3219740390777588, -0.25763553380966187, 0.021776894107460976, 0.005584420636296272, 0.09223812818527222, 0.02804664522409439, 0.12717659771442413, 0.08140884339809418, 0.22901853919029236, 0.2302529215812683, -0.30685609579086304, -0.32782846689224243, -0.3165992498397827, 0.13109543919563293, -0.3312320113182068, 0.0673992857336998, 1.1686776876449585, -0.0076818885281682014, 0.0005632585962302983, 0.0014860439114272594]} +{"t": 9.2715, "q": [-0.13813155889511108, 0.005646753590553999, -0.006320974789559841, 0.315906286239624, -0.17616413533687592, -0.010271324776113033, -0.0791499987244606, -0.0316426157951355, 0.016405072063207626, 0.32198256254196167, -0.25763553380966187, 0.021776894107460976, 0.0055442447774112225, 0.09249087423086166, 0.028126677498221397, 0.1291539967060089, 0.08785635232925415, 0.22980950772762299, 0.23296135663986206, -0.2966814935207367, -0.3284037113189697, -0.31661126017570496, 0.1311553567647934, -0.33129191398620605, 0.06741126626729965, 1.1686656475067139, -0.0076699042692780495, 0.0005752427969127893, 0.0014500912511721253]} +{"t": 9.2884, "q": [-0.13813155889511108, 0.005663797724992037, -0.006320974789559841, 0.3159233331680298, -0.1761598438024521, -0.010264229029417038, -0.07920113205909729, -0.03165113553404808, 0.016378289088606834, 0.32194846868515015, -0.25763142108917236, 0.02178405597805977, 0.005584420636296272, 0.09273675829172134, 0.02817407064139843, 0.130604088306427, 0.09527458995580673, 0.22982148826122284, 0.23526231944561005, -0.2861952781677246, -0.3290388882160187, -0.31661126017570496, 0.1311313956975937, -0.33141177892684937, 0.06736332923173904, 1.1686776876449585, -0.0076818885281682014, 0.0005752427969127893, 0.0014620755100622773]} +{"t": 9.3051, "q": [-0.13809746503829956, 0.005706407595425844, -0.006294190883636475, 0.31589776277542114, -0.17615993320941925, -0.010278385132551193, -0.07920113205909729, -0.03166818246245384, 0.016391679644584656, 0.32185474038124084, -0.25762730836868286, 0.02179121784865856, 0.0055442447774112225, 0.09293894469738007, 0.028157802298665047, 0.1317785382270813, 0.10453839600086212, 0.22974957525730133, 0.23710790276527405, -0.27295270562171936, -0.3292545974254608, -0.3165992498397827, 0.13107147812843323, -0.33154359459877014, 0.06738729774951935, 1.1686537265777588, -0.007705857045948505, 0.0005872270558029413, 0.0014740596525371075]} +{"t": 9.3218, "q": [-0.13811451196670532, 0.005723452661186457, -0.006307582836598158, 0.3159148097038269, -0.1761598438024521, -0.010264229029417038, -0.07922670245170593, -0.03166818246245384, 0.016405072063207626, 0.32185474038124084, -0.25763142108917236, 0.02178405597805977, 0.0055978125892579556, 0.09317690879106522, 0.02822927199304104, 0.13243767619132996, 0.11356251686811447, 0.23000125586986542, 0.23860593140125275, -0.2600576877593994, -0.32935047149658203, -0.316575288772583, 0.1309516280889511, -0.3317353427410126, 0.06743523478507996, 1.168629765510559, -0.00771784083917737, 0.0005632585962302983, 0.0014620755100622773]} +{"t": 9.3388, "q": [-0.13811451196670532, 0.005723452661186457, -0.006320974789559841, 0.31593185663223267, -0.17616842687129974, -0.010278419591486454, -0.07921817898750305, -0.0316426157951355, 0.016351504251360893, 0.32180359959602356, -0.2576356828212738, 0.021791288629174232, 0.0055442447774112225, 0.09332504868507385, 0.028305869549512863, 0.13282117247581482, 0.12289822846651077, 0.23008513450622559, 0.23975640535354614, -0.24632376432418823, -0.32939842343330383, -0.3165513277053833, 0.13089171051979065, -0.3319750130176544, 0.06741126626729965, 1.168629765510559, -0.0076818885281682014, 0.0005752427969127893, 0.0014740596525371075]} +{"t": 9.3555, "q": [-0.13811451196670532, 0.005757540930062532, -0.006294190883636475, 0.31589776277542114, -0.1761598438024521, -0.010264229029417038, -0.07926078885793686, -0.031557392328977585, 0.0163247212767601, 0.32176950573921204, -0.25763142108917236, 0.02178405597805977, 0.005584420636296272, 0.09348040819168091, 0.028396228328347206, 0.13294100761413574, 0.13296498358249664, 0.23008513450622559, 0.2409428507089615, -0.23154722154140472, -0.32942238450050354, -0.31651538610458374, 0.1308797299861908, -0.3322746157646179, 0.06743523478507996, 1.1686537265777588, -0.0076579200103878975, 0.0005752427969127893, 0.0014740596525371075]} +{"t": 9.3723, "q": [-0.13809746503829956, 0.0057404967956244946, -0.006280798930674791, 0.3159233331680298, -0.17615993320941925, -0.010278385132551193, -0.0792863517999649, -0.031497739255428314, 0.016378289088606834, 0.3217780292034149, -0.2576356828212738, 0.021791288629174232, 0.005530852824449539, 0.09362837672233582, 0.028482286259531975, 0.13315673172473907, 0.14432603120803833, 0.22996529936790466, 0.24214127659797668, -0.2169504314661026, -0.32937443256378174, -0.3165273666381836, 0.1308078169822693, -0.3325742483139038, 0.06741126626729965, 1.168629765510559, -0.0076459357514977455, 0.0005632585962302983, 0.0014740596525371075]} +{"t": 9.3891, "q": [-0.13814008235931396, 0.005723452661186457, -0.006280798930674791, 0.31588923931121826, -0.1761598438024521, -0.010264229029417038, -0.07932896167039871, -0.031497739255428314, 0.016378289088606834, 0.32170987129211426, -0.2576397955417633, 0.02178412675857544, 0.005584420636296272, 0.09376894682645798, 0.02856404148042202, 0.13342037796974182, 0.15478825569152832, 0.2301570475101471, 0.24329175055027008, -0.20144283771514893, -0.3294343650341034, -0.3165273666381836, 0.13064004480838776, -0.33278995752334595, 0.0673992857336998, 1.168569803237915, -0.0076579200103878975, 0.0005872270558029413, 0.0014500912511721253]} +{"t": 9.4058, "q": [-0.1381230354309082, 0.005680841859430075, -0.006200447678565979, 0.3158807158470154, -0.17615142464637756, -0.010278359986841679, -0.07934600859880447, -0.03152330592274666, 0.016405072063207626, 0.321658730506897, -0.2576441764831543, 0.02180575579404831, 0.0055978125892579556, 0.09395407140254974, 0.028662148863077164, 0.13370800018310547, 0.16678446531295776, 0.2299053817987442, 0.2448377162218094, -0.1855757236480713, -0.3296261131763458, -0.316575288772583, 0.13041234016418457, -0.3329337537288666, 0.06741126626729965, 1.1685339212417603, -0.0076699042692780495, 0.0005632585962302983, 0.0014740596525371075]} +{"t": 9.4226, "q": [-0.1381230354309082, 0.005646753590553999, -0.006200447678565979, 0.3158722221851349, -0.1761598438024521, -0.010264229029417038, -0.07937157154083252, -0.03153182566165924, 0.016378289088606834, 0.3215990662574768, -0.25763991475105286, 0.021798521280288696, 0.005571028683334589, 0.0941171795129776, 0.02873789146542549, 0.13410347700119019, 0.1793079823255539, 0.22941403090953827, 0.246359720826149, -0.16892963647842407, -0.32988977432250977, -0.3165992498397827, 0.13005280494689941, -0.3330056667327881, 0.0674232542514801, 1.1685218811035156, -0.0076818885281682014, 0.0005752427969127893, 0.0014620755100622773]} +{"t": 9.4393, "q": [-0.13813155889511108, 0.005621186923235655, -0.0061736637726426125, 0.31588923931121826, -0.1761598438024521, -0.010264229029417038, -0.07937157154083252, -0.03154034912586212, 0.016378289088606834, 0.3215905427932739, -0.25763991475105286, 0.021798521280288696, 0.005624596029520035, 0.09433208405971527, 0.028843756765127182, 0.13471467792987823, 0.1913161724805832, 0.22881481051445007, 0.2473544031381607, -0.15148060023784637, -0.3301294445991516, -0.31670713424682617, 0.12969328463077545, -0.33299368619918823, 0.06750714033842087, 1.1685339212417603, -0.0076818885281682014, 0.0005512743373401463, 0.0014620755100622773]} +{"t": 9.456, "q": [-0.13815711438655853, 0.005578576121479273, -0.006146880332380533, 0.31580403447151184, -0.1761598438024521, -0.010264229029417038, -0.07938861846923828, -0.031565915793180466, 0.01644524745643139, 0.3215053379535675, -0.25763991475105286, 0.021798521280288696, 0.005637987982481718, 0.09465071558952332, 0.029000354930758476, 0.13533785939216614, 0.20386365056037903, 0.2280837744474411, 0.24784576892852783, -0.13284513354301453, -0.3305489122867584, -0.31688687205314636, 0.12924987077713013, -0.3329217731952667, 0.06757904589176178, 1.1685218811035156, -0.0076579200103878975, 0.0005392901366576552, 0.0014620755100622773]} +{"t": 9.4727, "q": [-0.13814008235931396, 0.005544487852603197, -0.006106704473495483, 0.3157784640789032, -0.1761598438024521, -0.010264229029417038, -0.07939714193344116, -0.03159148246049881, 0.01645863987505436, 0.32148829102516174, -0.25763991475105286, 0.021798521280288696, 0.005584420636296272, 0.09502093493938446, 0.029176700860261917, 0.1357692927122116, 0.21721407771110535, 0.22646591067314148, 0.24796560406684875, -0.11299926042556763, -0.3312559723854065, -0.3170067369937897, 0.12895026803016663, -0.33281391859054565, 0.06761500239372253, 1.1685458421707153, -0.0076339514926075935, 0.0005512743373401463, 0.0014261228498071432]} +{"t": 9.4895, "q": [-0.13811451196670532, 0.005535965319722891, -0.006066528614610434, 0.31579551100730896, -0.17617256939411163, -0.010257202200591564, -0.07941418886184692, -0.031548872590065, 0.016498815268278122, 0.32147976756095886, -0.25764840841293335, 0.021812988445162773, 0.005651379935443401, 0.0954427421092987, 0.029392611235380173, 0.1359969824552536, 0.22937807440757751, 0.22464430332183838, 0.24777385592460632, -0.09501093626022339, -0.3317473232746124, -0.31713855266571045, 0.12872256338596344, -0.33271804451942444, 0.0677228569984436, 1.1685218811035156, -0.0076579200103878975, 0.0005512743373401463, 0.0014740596525371075]} +{"t": 9.5062, "q": [-0.13813155889511108, 0.005442222114652395, -0.00605313666164875, 0.31579551100730896, -0.17616835236549377, -0.010264263488352299, -0.0793800950050354, -0.03160000219941139, 0.016498815268278122, 0.3214968144893646, -0.2576482892036438, 0.021798592060804367, 0.00575851509347558, 0.09616904705762863, 0.0297088623046875, 0.13614079356193542, 0.2418895959854126, 0.22225944697856903, 0.24777385592460632, -0.07639943808317184, -0.33196303248405457, -0.3173303008079529, 0.12838700413703918, -0.33261018991470337, 0.06783071160316467, 1.1685458421707153, -0.0076579200103878975, 0.0005632585962302983, 0.0014620755100622773]} +{"t": 9.5229, "q": [-0.13814008235931396, 0.0054081338457763195, -0.00605313666164875, 0.3158125579357147, -0.17615993320941925, -0.010278385132551193, -0.07939714193344116, -0.0316426157951355, 0.016512207686901093, 0.32153087854385376, -0.25764429569244385, 0.021820150315761566, 0.0057719070464372635, 0.09706641733646393, 0.03006700426340103, 0.13640445470809937, 0.2547127306461334, 0.22015021741390228, 0.24773789942264557, -0.05788380652666092, -0.33211883902549744, -0.31764188408851624, 0.12771588563919067, -0.33249035477638245, 0.06786666810512543, 1.168569803237915, -0.0076699042692780495, 0.0005752427969127893, 0.0014500912511721253]} +{"t": 9.5396, "q": [-0.13813155889511108, 0.005416656378656626, -0.005959393456578255, 0.3158125579357147, -0.17615564167499542, -0.010271290317177773, -0.0793800950050354, -0.031617049127817154, 0.016592558473348618, 0.3215564489364624, -0.25764018297195435, 0.02182731218636036, 0.005664771888405085, 0.0979386419057846, 0.030524030327796936, 0.1365722268819809, 0.2657741606235504, 0.2190956026315689, 0.2476779818534851, -0.040350887924432755, -0.33216676115989685, -0.31858864426612854, 0.12682905793190002, -0.33219075202941895, 0.0679745227098465, 1.1685339212417603, -0.0076339514926075935, 0.0005632585962302983, 0.0014500912511721253]} +{"t": 9.5564, "q": [-0.13814008235931396, 0.005382567178457975, -0.005932609550654888, 0.31579551100730896, -0.17615564167499542, -0.010271290317177773, -0.07938861846923828, -0.031625568866729736, 0.01663273386657238, 0.32163316011428833, -0.25763168931007385, 0.02181284688413143, 0.005584420636296272, 0.09877501428127289, 0.030902806669473648, 0.136692076921463, 0.2770633101463318, 0.21795710921287537, 0.24780981242656708, -0.02305764891207218, -0.3321787416934967, -0.3202784061431885, 0.12591825425624847, -0.3318551778793335, 0.06826214492321014, 1.1685218811035156, -0.0076579200103878975, 0.0005632585962302983, 0.0014500912511721253]} +{"t": 9.5733, "q": [-0.1381656378507614, 0.005382567178457975, -0.005932609550654888, 0.3157443702220917, -0.1761598438024521, -0.010264229029417038, -0.07938861846923828, -0.031625568866729736, 0.01665951870381832, 0.3216843008995056, -0.25763580203056335, 0.02180568315088749, 0.005584420636296272, 0.09950999170541763, 0.0311176348477602, 0.1369916796684265, 0.28735774755477905, 0.21702232956886292, 0.24808545410633087, -0.0055007594637572765, -0.332154780626297, -0.32305875420570374, 0.12524713575839996, -0.331327885389328, 0.06876548379659653, 1.16855788230896, -0.0076699042692780495, 0.0005512743373401463, 0.0014620755100622773]} +{"t": 9.59, "q": [-0.13818268477916718, 0.005399612244218588, -0.005959393456578255, 0.3156932294368744, -0.17616413533687592, -0.010271324776113033, -0.0793800950050354, -0.03160000219941139, 0.01661934331059456, 0.32171836495399475, -0.25764840841293335, 0.021812988445162773, 0.0055978125892579556, 0.1000150740146637, 0.031237490475177765, 0.13733921945095062, 0.29724472761154175, 0.21491311490535736, 0.24832512438297272, 0.00947952177375555, -0.3321308195590973, -0.3251440227031708, 0.12497150152921677, -0.3306088149547577, 0.06910104304552078, 1.1685458421707153, -0.0076579200103878975, 0.0005512743373401463, 0.0014620755100622773]} +{"t": 9.6067, "q": [-0.1381656378507614, 0.005425177980214357, -0.005986177362501621, 0.315676212310791, -0.1761598438024521, -0.010264229029417038, -0.07936305552721024, -0.031565915793180466, 0.016579166054725647, 0.3217524588108063, -0.2576400339603424, 0.021812917664647102, 0.005852258298546076, 0.10038873553276062, 0.031214715912938118, 0.13798636198043823, 0.30625689029693604, 0.2121327668428421, 0.24832512438297272, 0.023261381313204765, -0.3321308195590973, -0.32607877254486084, 0.12475578486919403, -0.32947030663490295, 0.06929279118776321, 1.1686416864395142, -0.0076818885281682014, 0.0005872270558029413, 0.0014620755100622773]} +{"t": 9.6235, "q": [-0.13815711438655853, 0.005425177980214357, -0.006039745174348354, 0.3156932294368744, -0.1761598438024521, -0.010264229029417038, -0.07934600859880447, -0.03158295899629593, 0.016498815268278122, 0.3217439353466034, -0.25763991475105286, 0.021798521280288696, 0.00605313666164875, 0.10061292350292206, 0.031201038509607315, 0.13890916109085083, 0.31344741582870483, 0.2099636197090149, 0.24821726977825165, 0.037103161215782166, -0.33214280009269714, -0.3268817365169525, 0.12440824508666992, -0.32804420590400696, 0.06941263377666473, 1.1685937643051147, -0.007705857045948505, 0.0005752427969127893, 0.0014500912511721253]} +{"t": 9.6402, "q": [-0.13814859092235565, 0.005476311314851046, -0.006106704473495483, 0.31570175290107727, -0.17616413533687592, -0.010271324776113033, -0.07934600859880447, -0.031548872590065, 0.01647203229367733, 0.32176098227500916, -0.2576441764831543, 0.02180575579404831, 0.0060933125205338, 0.10068026930093765, 0.031192174181342125, 0.14010757207870483, 0.3198709487915039, 0.20723122358322144, 0.24813337624073029, 0.05158010497689247, -0.3322027325630188, -0.327780544757843, 0.12356934696435928, -0.3260907828807831, 0.06948453933000565, 1.1685818433761597, -0.0076818885281682014, 0.0005872270558029413, 0.0014500912511721253]} +{"t": 9.6571, "q": [-0.1381741613149643, 0.005527443718165159, -0.006106704473495483, 0.31570175290107727, -0.17616413533687592, -0.010271324776113033, -0.07932896167039871, -0.03154034912586212, 0.01647203229367733, 0.32176098227500916, -0.25764402747154236, 0.021791359409689903, 0.006120096426457167, 0.10071015357971191, 0.031190328299999237, 0.14125806093215942, 0.3249402940273285, 0.20301277935504913, 0.24824124574661255, 0.06300107389688492, -0.3322746157646179, -0.3283557891845703, 0.12259862571954727, -0.32384970784187317, 0.06958041340112686, 1.16855788230896, -0.0076818885281682014, 0.0005752427969127893, 0.0014381069922819734]} +{"t": 9.6738, "q": [-0.1381656378507614, 0.005518921185284853, -0.006187055725604296, 0.31571879982948303, -0.17615993320941925, -0.010278385132551193, -0.07932044565677643, -0.03153182566165924, 0.01644524745643139, 0.32176098227500916, -0.25763991475105286, 0.021798521280288696, 0.0062272315844893456, 0.10071015357971191, 0.031190328299999237, 0.14251640439033508, 0.32875126600265503, 0.19843479990959167, 0.24814537167549133, 0.07593204826116562, -0.3324064612388611, -0.328978955745697, 0.12140019983053207, -0.32082968950271606, 0.06961636245250702, 1.16855788230896, -0.0076579200103878975, 0.0005872270558029413, 0.0014261228498071432]} +{"t": 9.6905, "q": [-0.1381656378507614, 0.005561531987041235, -0.006187055725604296, 0.3157358467578888, -0.17615993320941925, -0.010278385132551193, -0.07930339872837067, -0.03153182566165924, 0.01644524745643139, 0.32176950573921204, -0.2576441764831543, 0.02180575579404831, 0.006280798930674791, 0.10071772336959839, 0.031185153871774673, 0.14382268488407135, 0.3302013576030731, 0.19501930475234985, 0.24803751707077026, 0.08653809130191803, -0.3327060639858246, -0.3294583261013031, 0.11992613971233368, -0.31741419434547424, 0.0697721615433693, 1.1685458421707153, -0.0076579200103878975, 0.0005752427969127893, 0.0014500912511721253]} +{"t": 9.7073, "q": [-0.1381741613149643, 0.005553010385483503, -0.0062272315844893456, 0.3157699406147003, -0.1761598438024521, -0.010264229029417038, -0.07925226539373398, -0.03151478245854378, 0.016391679644584656, 0.3217780292034149, -0.2576356828212738, 0.021791288629174232, 0.006374542135745287, 0.10070258378982544, 0.0311955027282238, 0.14479340612888336, 0.3307286500930786, 0.19197531044483185, 0.24808545410633087, 0.0962572991847992, -0.3329817056655884, -0.3296740651130676, 0.11828429996967316, -0.3135552704334259, 0.06985604763031006, 1.1686416864395142, -0.0076818885281682014, 0.0005752427969127893, 0.0014381069922819734]} +{"t": 9.724, "q": [-0.13819120824337006, 0.005518921185284853, -0.006254015490412712, 0.31575289368629456, -0.1761598438024521, -0.010264229029417038, -0.07922670245170593, -0.03151478245854378, 0.016364896669983864, 0.32176950573921204, -0.25763991475105286, 0.021798521280288696, 0.00642810994759202, 0.10071015357971191, 0.031190328299999237, 0.14587199687957764, 0.33089643716812134, 0.19032147526741028, 0.24803751707077026, 0.1059405505657196, -0.33329328894615173, -0.32999762892723083, 0.11653460562229156, -0.3097802400588989, 0.06999985873699188, 1.1686416864395142, -0.0076579200103878975, 0.0005752427969127893, 0.0014500912511721253]} +{"t": 9.7407, "q": [-0.13820825517177582, 0.005544487852603197, -0.006254015490412712, 0.3157358467578888, -0.17615555226802826, -0.010257115587592125, -0.0792437419295311, -0.03151478245854378, 0.016364896669983864, 0.3217950761318207, -0.25764840841293335, 0.021812988445162773, 0.006414717994630337, 0.10072509944438934, 0.031189406290650368, 0.1471063643693924, 0.3311001658439636, 0.1899140179157257, 0.24798958003520966, 0.11569570749998093, -0.33341312408447266, -0.3302493095397949, 0.11453323811292648, -0.305370032787323, 0.07003581523895264, 1.1685818433761597, -0.007705857045948505, 0.0005872270558029413, 0.0014620755100622773]} +{"t": 9.7577, "q": [-0.13819120824337006, 0.005510399583727121, -0.006254015490412712, 0.31570175290107727, -0.1761598438024521, -0.010264229029417038, -0.07920113205909729, -0.03152330592274666, 0.016351504251360893, 0.3217950761318207, -0.25763991475105286, 0.021798521280288696, 0.006481677293777466, 0.10071015357971191, 0.031190328299999237, 0.14826883375644684, 0.33078858256340027, 0.1899140179157257, 0.24785774946212769, 0.12171179056167603, -0.33343708515167236, -0.33041706681251526, 0.11261576414108276, -0.30109167098999023, 0.07008375227451324, 1.1686177253723145, -0.0076579200103878975, 0.0005872270558029413, 0.0014620755100622773]} +{"t": 9.7744, "q": [-0.13820825517177582, 0.005476311314851046, -0.006280798930674791, 0.31570175290107727, -0.17616406083106995, -0.010257167741656303, -0.07913295924663544, -0.03154034912586212, 0.01631132885813713, 0.3218206465244293, -0.25764402747154236, 0.021791359409689903, 0.00672273151576519, 0.1006954088807106, 0.03118182346224785, 0.14883209764957428, 0.3290868103504181, 0.19002187252044678, 0.24774989485740662, 0.12754811346530914, -0.33348503708839417, -0.3304290473461151, 0.11085408180952072, -0.29678934812545776, 0.0703713670372963, 1.1686058044433594, -0.0076579200103878975, 0.0005752427969127893, 0.0014980281703174114]} +{"t": 9.7911, "q": [-0.13822530210018158, 0.0054507446475327015, -0.006361150648444891, 0.31570175290107727, -0.17616413533687592, -0.010271324776113033, -0.07909034192562103, -0.031548872590065, 0.016257761046290398, 0.32184621691703796, -0.25763991475105286, 0.021798521280288696, 0.006883434485644102, 0.10070278495550156, 0.031186077743768692, 0.14923955500125885, 0.32712140679359436, 0.19022560119628906, 0.24772591888904572, 0.1317785382270813, -0.33348503708839417, -0.3304290473461151, 0.1086609736084938, -0.292966365814209, 0.07064700871706009, 1.1686537265777588, -0.00771784083917737, 0.0005752427969127893, 0.0014980281703174114]} +{"t": 9.808, "q": [-0.1382167786359787, 0.005442222114652395, -0.006361150648444891, 0.31575289368629456, -0.17616406083106995, -0.010257167741656303, -0.07909886538982391, -0.031557392328977585, 0.016257761046290398, 0.3218717873096466, -0.2576400339603424, 0.021812917664647102, 0.007084312848746777, 0.10071015357971191, 0.031190328299999237, 0.1495271772146225, 0.32492831349372864, 0.19070497155189514, 0.24764202535152435, 0.13399562239646912, -0.333497017621994, -0.3304050862789154, 0.1068153977394104, -0.2897426187992096, 0.0707428827881813, 1.1686656475067139, -0.00771784083917737, 0.0005752427969127893, 0.0014980281703174114]} +{"t": 9.8248, "q": [-0.1382593810558319, 0.005433700513094664, -0.00638793408870697, 0.31579551100730896, -0.17615555226802826, -0.010257115587592125, -0.0790562555193901, -0.031565915793180466, 0.016244368627667427, 0.32193994522094727, -0.2576441764831543, 0.02180575579404831, 0.00735215051099658, 0.10068783909082413, 0.031186997890472412, 0.1495032161474228, 0.3224236071109772, 0.19107648730278015, 0.24757012724876404, 0.1360209584236145, -0.3335329592227936, -0.33036914467811584, 0.10490990430116653, -0.2864469587802887, 0.07080280035734177, 1.1686656475067139, -0.0076579200103878975, 0.0005872270558029413, 0.0014860439114272594]} +{"t": 9.8415, "q": [-0.13824233412742615, 0.0054081338457763195, -0.006441501900553703, 0.3158210813999176, -0.1761598438024521, -0.010264229029417038, -0.0789199024438858, -0.031565915793180466, 0.016190802678465843, 0.3219228982925415, -0.25764402747154236, 0.021791359409689903, 0.007539637386798859, 0.10069560259580612, 0.03117239847779274, 0.1494792401790619, 0.3188762664794922, 0.19157981872558594, 0.2476060837507248, 0.13615278899669647, -0.33343708515167236, -0.33034515380859375, 0.10339989513158798, -0.2834269404411316, 0.07075486332178116, 1.1686656475067139, -0.0076579200103878975, 0.0005632585962302983, 0.0014740596525371075]} +{"t": 9.8584, "q": [-0.1382593810558319, 0.005374045576900244, -0.006495069246739149, 0.3159574270248413, -0.17615976929664612, -0.01025005429983139, -0.07884320616722107, -0.03158295899629593, 0.01615062542259693, 0.32198256254196167, -0.2576274275779724, 0.02180561237037182, 0.007780691608786583, 0.10066571086645126, 0.031174244359135628, 0.1495032161474228, 0.3132077157497406, 0.19213110208511353, 0.24764202535152435, 0.13490642607212067, -0.3333052694797516, -0.3301294445991516, 0.10209361463785172, -0.2809102535247803, 0.07077883183956146, 1.168629765510559, -0.0076818885281682014, 0.0005512743373401463, 0.0014740596525371075]} +{"t": 9.8752, "q": [-0.1383105218410492, 0.0053484789095819, -0.006588812451809645, 0.3160000443458557, -0.17615976929664612, -0.01025005429983139, -0.0787835493683815, -0.03158295899629593, 0.01615062542259693, 0.3220081329345703, -0.2576233148574829, 0.02181277610361576, 0.00832975935190916, 0.10063621401786804, 0.03115723468363285, 0.14926353096961975, 0.3057175874710083, 0.19404856860637665, 0.24754615128040314, 0.13228188455104828, -0.3331015408039093, -0.32974594831466675, 0.10097908228635788, -0.27859729528427124, 0.07077883183956146, 1.1686896085739136, -0.0076699042692780495, 0.0005632585962302983, 0.0014860439114272594]} +{"t": 9.8919, "q": [-0.13829347491264343, 0.005314390640705824, -0.006736123468726873, 0.3161534368991852, -0.1761598438024521, -0.010264229029417038, -0.07863014936447144, -0.03160000219941139, 0.01611045002937317, 0.3220081329345703, -0.2576274275779724, 0.02180561237037182, 0.008892218582332134, 0.1006065160036087, 0.03114965185523033, 0.1468307226896286, 0.29913824796676636, 0.1989501267671585, 0.2476060837507248, 0.1281832754611969, -0.3329217731952667, -0.32882317900657654, 0.10023605823516846, -0.2768355906009674, 0.07082676887512207, 1.1687136888504028, -0.0076579200103878975, 0.0005752427969127893, 0.0015219965716823936]} +{"t": 9.9086, "q": [-0.13834460079669952, 0.005246214102953672, -0.006776299327611923, 0.3162216246128082, -0.17616406083106995, -0.010257167741656303, -0.07857901602983475, -0.031617049127817154, 0.016043491661548615, 0.3220507502555847, -0.2576274275779724, 0.02180561237037182, 0.00898596178740263, 0.10059913992881775, 0.031145397573709488, 0.14514094591140747, 0.29305025935173035, 0.20321650803089142, 0.24768996238708496, 0.12331768125295639, -0.332753986120224, -0.32799625396728516, 0.09940914809703827, -0.2758409082889557, 0.07082676887512207, 1.1687616109848022, -0.0076579200103878975, 0.0005512743373401463, 0.0015339808305725455]} +{"t": 9.9253, "q": [-0.13832756876945496, 0.005178036633878946, -0.006776299327611923, 0.31626421213150024, -0.17615993320941925, -0.010278385132551193, -0.07853640615940094, -0.03165965899825096, 0.016016706824302673, 0.32208484411239624, -0.2576230466365814, 0.021783966571092606, 0.009106488898396492, 0.10058438777923584, 0.031136881560087204, 0.14364291727542877, 0.28793299198150635, 0.20657208561897278, 0.24768996238708496, 0.11512047052383423, -0.3326221704483032, -0.32692965865135193, 0.09890580922365189, -0.2753854990005493, 0.07085073739290237, 1.1688214540481567, -0.0076459357514977455, 0.0005512743373401463, 0.0015459650894626975]} +{"t": 9.9421, "q": [-0.13834460079669952, 0.005109860096126795, -0.006843258626759052, 0.3162727355957031, -0.17615555226802826, -0.010257115587592125, -0.07848527282476425, -0.031736359000205994, 0.016003314405679703, 0.32209333777427673, -0.25762730836868286, 0.02179121784865856, 0.009160056710243225, 0.10059195756912231, 0.031131712719798088, 0.1419651359319687, 0.2811858654022217, 0.21222864091396332, 0.24764202535152435, 0.10724683105945587, -0.33226263523101807, -0.3264622688293457, 0.0986781120300293, -0.2754094898700714, 0.07080280035734177, 1.1688454151153564, -0.0076579200103878975, 0.0005632585962302983, 0.0015339808305725455]} +{"t": 9.9588, "q": [-0.13833607733249664, 0.005050205159932375, -0.006829866673797369, 0.31645169854164124, -0.17616406083106995, -0.010257167741656303, -0.07840857654809952, -0.03177044540643692, 0.016083667054772377, 0.322144478559494, -0.25762754678726196, 0.021820008754730225, 0.009441286325454712, 0.10058438777923584, 0.031136881560087204, 0.13949638605117798, 0.2727729380130768, 0.21896377205848694, 0.24772591888904572, 0.09786318242549896, -0.3316993713378906, -0.32582712173461914, 0.09864215552806854, -0.27585288882255554, 0.07079081982374191, 1.1688693761825562, -0.007693872787058353, 0.0005512743373401463, 0.0015459650894626975]} +{"t": 9.9755, "q": [-0.13837017118930817, 0.004964983556419611, -0.006923609878867865, 0.31653693318367004, -0.1761598438024521, -0.010264229029417038, -0.07830630987882614, -0.03183010220527649, 0.016030099242925644, 0.3221615254878998, -0.2576274275779724, 0.02180561237037182, 0.009936786256730556, 0.1005546897649765, 0.031129276379942894, 0.13596104085445404, 0.2639046311378479, 0.22550716996192932, 0.2478817105293274, 0.0860707089304924, -0.3312080204486847, -0.32537171244621277, 0.09875001758337021, -0.2766798138618469, 0.07077883183956146, 1.1689653396606445, -0.0076699042692780495, 0.0005512743373401463, 0.0015339808305725455]} +{"t": 9.9924, "q": [-0.13842131197452545, 0.004913851153105497, -0.007084312848746777, 0.31663069128990173, -0.17616406083106995, -0.010257167741656303, -0.07814439386129379, -0.031864188611507416, 0.016016706824302673, 0.322144478559494, -0.25762319564819336, 0.021798379719257355, 0.010351935401558876, 0.10045841336250305, 0.031092777848243713, 0.1321021169424057, 0.2541255056858063, 0.23341675102710724, 0.2482052892446518, 0.07293599843978882, -0.3305009603500366, -0.3253956735134125, 0.09877398610115051, -0.27701535820961, 0.0707428827881813, 1.1692169904708862, -0.0076579200103878975, 0.0005632585962302983, 0.0015699334908276796]} +{"t": 10.0093, "q": [-0.13849800825119019, 0.004913851153105497, -0.007164664100855589, 0.3167499899864197, -0.17615564167499542, -0.010271290317177773, -0.07815290987491608, -0.03185566887259483, 0.016030099242925644, 0.32217004895210266, -0.2576274275779724, 0.02180561237037182, 0.0105126379057765, 0.10034000128507614, 0.031043505296111107, 0.12869858741760254, 0.24392692744731903, 0.24160197377204895, 0.24838505685329437, 0.05975334718823433, -0.32988977432250977, -0.32527583837509155, 0.09877398610115051, -0.27709925174713135, 0.07077883183956146, 1.1694566011428833, -0.0076459357514977455, 0.0005752427969127893, 0.0015219965716823936]} +{"t": 10.026, "q": [-0.13847243785858154, 0.004905329551547766, -0.007178056053817272, 0.3167926073074341, -0.17616406083106995, -0.010257167741656303, -0.07816143333911896, -0.03184714540839195, 0.016043491661548615, 0.3221956193447113, -0.2576274275779724, 0.02180561237037182, 0.010405503213405609, 0.10014763474464417, 0.03096107766032219, 0.12589429318904877, 0.23304525017738342, 0.24881649017333984, 0.2485768049955368, 0.04290352761745453, -0.3291587233543396, -0.3251919448375702, 0.09879795461893082, -0.2777823507785797, 0.0707428827881813, 1.1696244478225708, -0.0076699042692780495, 0.0005752427969127893, 0.0015339808305725455]} +{"t": 10.0427, "q": [-0.13836164772510529, 0.004930895287543535, -0.007084312848746777, 0.31680113077163696, -0.17615555226802826, -0.010257115587592125, -0.07816143333911896, -0.03182157874107361, 0.016043491661548615, 0.3221870958805084, -0.2576233148574829, 0.02181277610361576, 0.010311760008335114, 0.09993410110473633, 0.030818743631243706, 0.12286227941513062, 0.2214445173740387, 0.25630661845207214, 0.2485768049955368, 0.024160198867321014, -0.328978955745697, -0.325239896774292, 0.09879795461893082, -0.2796398997306824, 0.0706709772348404, 1.16969633102417, -0.0076579200103878975, 0.0005632585962302983, 0.0015219965716823936]} +{"t": 10.0594, "q": [-0.1383957415819168, 0.004905329551547766, -0.007070920895785093, 0.31680113077163696, -0.17616406083106995, -0.010257167741656303, -0.07815290987491608, -0.03183862194418907, 0.016043491661548615, 0.3221870958805084, -0.25762319564819336, 0.021798379719257355, 0.010271583683788776, 0.09962404519319534, 0.030639538541436195, 0.11951867491006851, 0.20833377540111542, 0.2647075653076172, 0.2484809309244156, 0.005572664551436901, -0.32884714007377625, -0.3252878189086914, 0.09883390367031097, -0.2818090617656708, 0.07058708369731903, 1.1698042154312134, -0.0076459357514977455, 0.0005752427969127893, 0.0014860439114272594]} +{"t": 10.0762, "q": [-0.13838721811771393, 0.004913851153105497, -0.007137880194932222, 0.31680965423583984, -0.17616406083106995, -0.010257167741656303, -0.07808473706245422, -0.03183010220527649, 0.016056882217526436, 0.3221956193447113, -0.2576233148574829, 0.02181277610361576, 0.010311760008335114, 0.0994095727801323, 0.030534664168953896, 0.11604325473308563, 0.19535484910011292, 0.27340811491012573, 0.24843299388885498, -0.014165353961288929, -0.32847562432289124, -0.32537171244621277, 0.09889382869005203, -0.28390631079673767, 0.07046724110841751, 1.1699479818344116, -0.0076579200103878975, 0.0005632585962302983, 0.0014860439114272594]} +{"t": 10.0929, "q": [-0.13845539093017578, 0.0049820286221802235, -0.007204839959740639, 0.3168266713619232, -0.17616406083106995, -0.010257167741656303, -0.07805916666984558, -0.03175340220332146, 0.016056882217526436, 0.3221870958805084, -0.25762319564819336, 0.021798379719257355, 0.010271583683788776, 0.0992606058716774, 0.03051537275314331, 0.1122082993388176, 0.1829032450914383, 0.28191691637039185, 0.24870862066745758, -0.03405916690826416, -0.3276607096195221, -0.325467586517334, 0.09920541942119598, -0.2858717143535614, 0.07034739851951599, 1.170894742012024, -0.0076579200103878975, 0.0005632585962302983, 0.0014860439114272594]} +{"t": 10.1096, "q": [-0.13846391439437866, 0.005050205159932375, -0.0072584073059260845, 0.31680113077163696, -0.17616406083106995, -0.010257167741656303, -0.07811882346868515, -0.03169374540448189, 0.01611045002937317, 0.32217857241630554, -0.25762319564819336, 0.021798379719257355, 0.01017784047871828, 0.09909631311893463, 0.03051585704088211, 0.10878081619739532, 0.1708231419324875, 0.28943103551864624, 0.24946363270282745, -0.05313805490732193, -0.32670196890830994, -0.3254915475845337, 0.09955295920372009, -0.28775322437286377, 0.07035938650369644, 1.1720812320709229, -0.0076579200103878975, 0.0005752427969127893, 0.0014980281703174114]} +{"t": 10.1264, "q": [-0.13843834400177002, 0.005067249294370413, -0.007245015352964401, 0.3167926073074341, -0.17616420984268188, -0.010285480879247189, -0.07813587039709091, -0.03165965899825096, 0.016043491661548615, 0.32217857241630554, -0.2576148211956024, 0.02179829217493534, 0.010057313367724419, 0.0990370661020279, 0.030491158366203308, 0.10579673945903778, 0.15841947495937347, 0.2956028878688812, 0.2499789595603943, -0.07442203909158707, -0.3257432281970978, -0.32550352811813354, 0.10023605823516846, -0.28985047340393066, 0.07035938650369644, 1.17306387424469, -0.0076818885281682014, 0.0005512743373401463, 0.0014860439114272594]} +{"t": 10.1431, "q": [-0.13841278851032257, 0.005075771827250719, -0.007231623865664005, 0.3167755603790283, -0.1761598438024521, -0.010264229029417038, -0.07811030000448227, -0.03165113553404808, 0.016083667054772377, 0.32217857241630554, -0.2576189339160919, 0.0217911284416914, 0.009883219376206398, 0.09900753945112228, 0.030474089086055756, 0.10253702849149704, 0.14541658759117126, 0.30273351073265076, 0.25006285309791565, -0.09432783722877502, -0.32541966438293457, -0.32575520873069763, 0.10103899985551834, -0.2920196056365967, 0.07028748095035553, 1.1741185188293457, -0.0076579200103878975, 0.0005632585962302983, 0.0014740596525371075]} +{"t": 10.1598, "q": [-0.13841278851032257, 0.005101337563246489, -0.007231623865664005, 0.31676703691482544, -0.1761598438024521, -0.010264229029417038, -0.07811030000448227, -0.0316426157951355, 0.016083667054772377, 0.32217004895210266, -0.25762319564819336, 0.021798379719257355, 0.00992339476943016, 0.09901510924100876, 0.03046892024576664, 0.09798302501440048, 0.13116735219955444, 0.3110385835170746, 0.25008681416511536, -0.11657056212425232, -0.3253597319126129, -0.32577916979789734, 0.10212957113981247, -0.294452428817749, 0.07027550041675568, 1.1755446195602417, -0.007705857045948505, 0.0005752427969127893, 0.0014980281703174114]} +{"t": 10.1765, "q": [-0.13842131197452545, 0.005084293428808451, -0.007311975117772818, 0.3168266713619232, -0.1761598438024521, -0.010264229029417038, -0.07805916666984558, -0.031676702201366425, 0.01611045002937317, 0.3221530020236969, -0.25762730836868286, 0.02179121784865856, 0.01017784047871828, 0.09900015592575073, 0.030469821766018867, 0.0926859974861145, 0.11699000746011734, 0.3175939619541168, 0.2501227557659149, -0.1383219212293625, -0.3251679837703705, -0.3258151412010193, 0.10305235534906387, -0.2973525822162628, 0.07029946893453598, 1.1775819063186646, -0.0076818885281682014, 0.0005273059359751642, 0.0014980281703174114]} +{"t": 10.1932, "q": [-0.13845539093017578, 0.005058727692812681, -0.007378934416919947, 0.3168778121471405, -0.17616413533687592, -0.010271324776113033, -0.07808473706245422, -0.03169374540448189, 0.01611045002937317, 0.3221956193447113, -0.25762319564819336, 0.021798379719257355, 0.010030529461801052, 0.09899277240037918, 0.03046555444598198, 0.08839564770460129, 0.10372346639633179, 0.3236100375652313, 0.25033849477767944, -0.15991750359535217, -0.3246167004108429, -0.32597091794013977, 0.10323211550712585, -0.2996775507926941, 0.07029946893453598, 1.1802304983139038, -0.0076818885281682014, 0.0005632585962302983, 0.0015579492319375277]} +{"t": 10.2099, "q": [-0.13841278851032257, 0.005075771827250719, -0.0072584073059260845, 0.316911906003952, -0.17616406083106995, -0.010257167741656303, -0.07812734693288803, -0.03166818246245384, 0.01611045002937317, 0.3221956193447113, -0.25762730836868286, 0.02179121784865856, 0.009682340547442436, 0.09888146817684174, 0.030429856851696968, 0.08468053489923477, 0.08952216058969498, 0.3303092122077942, 0.250374436378479, -0.182699516415596, -0.32435306906700134, -0.3260428309440613, 0.10329204052686691, -0.30201447010040283, 0.07020359486341476, 1.1825793981552124, -0.0076818885281682014, 0.0005632585962302983, 0.0015100124292075634]} +{"t": 10.2267, "q": [-0.13833607733249664, 0.005135425832122564, -0.007178056053817272, 0.31690338253974915, -0.17616413533687592, -0.010271324776113033, -0.07812734693288803, -0.031625568866729736, 0.01615062542259693, 0.3221870958805084, -0.2576189339160919, 0.0217911284416914, 0.009347543120384216, 0.09869671612977982, 0.030332613736391068, 0.0812530443072319, 0.07719039171934128, 0.3345516324043274, 0.2504822909832001, -0.20488230884075165, -0.3242571949958801, -0.32610276341438293, 0.10339989513158798, -0.30405178666114807, 0.07015565782785416, 1.1849522590637207, -0.0076818885281682014, 0.0005752427969127893, 0.0015100124292075634]} +{"t": 10.2434, "q": [-0.1383105218410492, 0.005126904230564833, -0.007164664100855589, 0.31693747639656067, -0.17615993320941925, -0.010278385132551193, -0.07810177654027939, -0.03165965899825096, 0.01611045002937317, 0.32225528359413147, -0.2576189339160919, 0.0217911284416914, 0.009052921086549759, 0.09837962687015533, 0.03013020195066929, 0.0776098445057869, 0.06449910253286362, 0.33915358781814575, 0.2502785623073578, -0.22822758555412292, -0.32426917552948, -0.32624655961990356, 0.10363958030939102, -0.3057175874710083, 0.07005978375673294, 1.1877565383911133, -0.0076579200103878975, 0.0005872270558029413, 0.0014860439114272594]} +{"t": 10.2601, "q": [-0.1382679045200348, 0.0051865591667592525, -0.007164664100855589, 0.31690338253974915, -0.17615555226802826, -0.010257115587592125, -0.07810177654027939, -0.03160000219941139, 0.016097059473395348, 0.3222808241844177, -0.2576230466365814, 0.021783966571092606, 0.009026138111948967, 0.09796557575464249, 0.029919227585196495, 0.0737149715423584, 0.049914296716451645, 0.3452535569667816, 0.2500748336315155, -0.2501826882362366, -0.3243650496006012, -0.3263663947582245, 0.1040949821472168, -0.3070718050003052, 0.07004779577255249, 1.1894583702087402, -0.0076579200103878975, 0.0005992112564854324, 0.0014740596525371075]} +{"t": 10.2768, "q": [-0.13825085759162903, 0.0052291699685156345, -0.007137880194932222, 0.31698861718177795, -0.17615976929664612, -0.01025005429983139, -0.07810177654027939, -0.031548872590065, 0.01611045002937317, 0.3223404884338379, -0.257610559463501, 0.021791057661175728, 0.009012745693325996, 0.097601518034935, 0.02982308529317379, 0.06989200413227081, 0.03681553900241852, 0.3515452742576599, 0.25003886222839355, -0.2709153890609741, -0.3243170976638794, -0.3265701234340668, 0.10449045896530151, -0.3080065846443176, 0.06991597265005112, 1.1907047033309937, -0.0076459357514977455, 0.0005992112564854324, 0.0014860439114272594]} +{"t": 10.2936, "q": [-0.13828495144844055, 0.005220647435635328, -0.0071914480067789555, 0.3169800937175751, -0.17616406083106995, -0.010257167741656303, -0.07811030000448227, -0.031548872590065, 0.016097059473395348, 0.3223745822906494, -0.25762319564819336, 0.021798379719257355, 0.009039529599249363, 0.09721656888723373, 0.02963813953101635, 0.06615292280912399, 0.024819331243634224, 0.35555997490882874, 0.2500268816947937, -0.29210349917411804, -0.32426917552948, -0.3266060948371887, 0.10470617562532425, -0.3085938096046448, 0.06991597265005112, 1.1917712688446045, -0.0076818885281682014, 0.0005992112564854324, 0.0014740596525371075]} +{"t": 10.3103, "q": [-0.13829347491264343, 0.005237691570073366, -0.007178056053817272, 0.3170056641101837, -0.17616413533687592, -0.010271324776113033, -0.0780932605266571, -0.031548872590065, 0.016083667054772377, 0.3223916292190552, -0.257610559463501, 0.021791057661175728, 0.009052921086549759, 0.09694292396306992, 0.02948894165456295, 0.06277336925268173, 0.01435710210353136, 0.3588196933269501, 0.2500268816947937, -0.3113142251968384, -0.3241133689880371, -0.3270854651927948, 0.10459832102060318, -0.308917373418808, 0.06986803561449051, 1.1929817199707031, -0.0076818885281682014, 0.0005992112564854324, 0.0014860439114272594]} +{"t": 10.327, "q": [-0.13828495144844055, 0.005237691570073366, -0.0071914480067789555, 0.31712496280670166, -0.17616406083106995, -0.010257167741656303, -0.07808473706245422, -0.031557392328977585, 0.016083667054772377, 0.32244277000427246, -0.2576063275337219, 0.021783825010061264, 0.009093097411096096, 0.09669163078069687, 0.029343152418732643, 0.05892643705010414, 0.0041585261933505535, 0.36192360520362854, 0.250002920627594, -0.3303331732749939, -0.3236939311027527, -0.32774460315704346, 0.10438260436058044, -0.3091091215610504, 0.06986803561449051, 1.1940003633499146, -0.0076579200103878975, 0.0005992112564854324, 0.0014740596525371075]} +{"t": 10.3438, "q": [-0.1382679045200348, 0.00520360330119729, -0.007178056053817272, 0.3172016441822052, -0.1761598438024521, -0.010264229029417038, -0.07810177654027939, -0.03158295899629593, 0.01611045002937317, 0.3224683105945587, -0.2576189339160919, 0.0217911284416914, 0.009012745693325996, 0.09655138105154037, 0.029252231121063232, 0.05535513535141945, -0.006040049716830254, 0.36563870310783386, 0.2503504753112793, -0.3495199382305145, -0.3225194811820984, -0.3287872076034546, 0.10431069880723953, -0.30916905403137207, 0.06989200413227081, 1.195019006729126, -0.0076699042692780495, 0.0005872270558029413, 0.0014740596525371075]} +{"t": 10.3605, "q": [-0.1382679045200348, 0.0051865591667592525, -0.007070920895785093, 0.3173721134662628, -0.17615555226802826, -0.010257115587592125, -0.07812734693288803, -0.03158295899629593, 0.016164017841219902, 0.3226046860218048, -0.2576063275337219, 0.021783825010061264, 0.00881186779588461, 0.09640247374773026, 0.029223179444670677, 0.05219130218029022, -0.01483647059649229, 0.3681314289569855, 0.2506500780582428, -0.3680235743522644, -0.3210453987121582, -0.3300815224647522, 0.10426276177167892, -0.30916905403137207, 0.06990398466587067, 1.1957979202270508, -0.0076818885281682014, 0.0005992112564854324, 0.0014740596525371075]} +{"t": 10.3772, "q": [-0.13829347491264343, 0.005220647435635328, -0.006950393784791231, 0.31740617752075195, -0.1761598438024521, -0.010264229029417038, -0.07811030000448227, -0.03159148246049881, 0.016204193234443665, 0.32259616255760193, -0.2576063275337219, 0.021783825010061264, 0.008490461856126785, 0.09618780016899109, 0.029117867350578308, 0.04953080415725708, -0.023081617429852486, 0.3697972297668457, 0.25068601965904236, -0.38741403818130493, -0.31851673126220703, -0.33155557513237, 0.10419085621833801, -0.3091091215610504, 0.06990398466587067, 1.1966848373413086, -0.0076818885281682014, 0.0005992112564854324, 0.0015100124292075634]} +{"t": 10.3941, "q": [-0.13823382556438446, 0.005169515032321215, -0.0068566505797207355, 0.3173976540565491, -0.17615555226802826, -0.010257115587592125, -0.07811030000448227, -0.03160852566361427, 0.016271153464913368, 0.32259616255760193, -0.257585346698761, 0.02177645079791546, 0.007968178018927574, 0.09601062536239624, 0.029005656018853188, 0.047757137566804886, -0.029577067121863365, 0.37048032879829407, 0.25084182620048523, -0.40692436695098877, -0.3142503499984741, -0.33313748240470886, 0.1041189506649971, -0.3090132474899292, 0.06993994116783142, 1.197931170463562, -0.0076579200103878975, 0.0005872270558029413, 0.0014860439114272594]} +{"t": 10.4108, "q": [-0.1381656378507614, 0.005126904230564833, -0.006682556122541428, 0.31741470098495483, -0.1761598438024521, -0.010264229029417038, -0.07814439386129379, -0.03163409233093262, 0.016391679644584656, 0.3226046860218048, -0.2575896978378296, 0.02179809659719467, 0.007526245433837175, 0.09587742388248444, 0.028938019648194313, 0.04669054225087166, -0.03428686782717705, 0.37061217427253723, 0.2515249252319336, -0.4231390357017517, -0.3090132474899292, -0.33463552594184875, 0.10371148586273193, -0.30895331501960754, 0.06991597265005112, 1.1987460851669312, -0.0076579200103878975, 0.0005872270558029413, 0.0014620755100622773]} +{"t": 10.4276, "q": [-0.13813155889511108, 0.005109860096126795, -0.006481677293777466, 0.3173976540565491, -0.17616406083106995, -0.010257167741656303, -0.0781870037317276, -0.03165965899825096, 0.016512207686901093, 0.32263877987861633, -0.25758546590805054, 0.021790863946080208, 0.007137880194932222, 0.09586337208747864, 0.02889169752597809, 0.04565989971160889, -0.03808586671948433, 0.3704204261302948, 0.25328660011291504, -0.4376639127731323, -0.3045191764831543, -0.3362174332141876, 0.10323211550712585, -0.3088814318180084, 0.06999985873699188, 1.1994651556015015, -0.0076699042692780495, 0.0005752427969127893, 0.0014860439114272594]} +{"t": 10.4443, "q": [-0.13810598850250244, 0.005033161025494337, -0.00642810994759202, 0.3173721134662628, -0.1761598438024521, -0.010264229029417038, -0.07820404320955276, -0.03170226886868477, 0.016565775498747826, 0.32259616255760193, -0.2575770914554596, 0.021790793165564537, 0.006977177690714598, 0.09584822505712509, 0.02890201285481453, 0.044617269188165665, -0.040890175849199295, 0.3703485131263733, 0.25570741295814514, -0.449983686208725, -0.30123549699783325, -0.33765554428100586, 0.10253702849149704, -0.3087855577468872, 0.06992795318365097, 1.200256109237671, -0.0076699042692780495, 0.0005632585962302983, 0.0014980281703174114]} +{"t": 10.461, "q": [-0.13815711438655853, 0.004956461954861879, -0.006374542135745287, 0.3173294961452484, -0.1761682778596878, -0.010250106453895569, -0.07822961360216141, -0.0317789688706398, 0.016565775498747826, 0.3225705921649933, -0.25758546590805054, 0.021790863946080208, 0.006910218391567469, 0.09584065526723862, 0.02890717051923275, 0.04422179237008095, -0.04352670535445213, 0.37026461958885193, 0.2571335434913635, -0.46226751804351807, -0.29708895087242126, -0.3395370841026306, 0.1020217090845108, -0.30862975120544434, 0.06992795318365097, 1.200903296470642, -0.007693872787058353, 0.0005512743373401463, 0.0014860439114272594]} +{"t": 10.4778, "q": [-0.1381656378507614, 0.0048968070186674595, -0.006347758695483208, 0.31726983189582825, -0.17616406083106995, -0.010257167741656303, -0.07825517654418945, -0.03182157874107361, 0.016592558473348618, 0.322519451379776, -0.2575814425945282, 0.021812420338392258, 0.007003961596637964, 0.09583308547735214, 0.02891232632100582, 0.044389571994543076, -0.0451325923204422, 0.37003692984580994, 0.257289320230484, -0.4724900722503662, -0.29160016775131226, -0.3436356782913208, 0.10173408687114716, -0.3085578382015228, 0.06997589021921158, 1.201298713684082, -0.0076818885281682014, 0.0005512743373401463, 0.0014860439114272594]} +{"t": 10.4945, "q": [-0.1381656378507614, 0.004871240351349115, -0.006320974789559841, 0.3172016441822052, -0.17616406083106995, -0.010257167741656303, -0.0783233568072319, -0.03184714540839195, 0.016565775498747826, 0.3225109279155731, -0.2575855851173401, 0.021805258467793465, 0.006990569643676281, 0.09586282074451447, 0.028920015320181847, 0.0445094108581543, -0.04610331356525421, 0.36900627613067627, 0.2574211657047272, -0.480651319026947, -0.28538036346435547, -0.3482735753059387, 0.10132662206888199, -0.30842602252960205, 0.06992795318365097, 1.20181405544281, -0.007705857045948505, 0.0005752427969127893, 0.0014980281703174114]} +{"t": 10.5113, "q": [-0.13815711438655853, 0.004879762884229422, -0.006280798930674791, 0.317099392414093, -0.1761598438024521, -0.010264229029417038, -0.07837449014186859, -0.03185566887259483, 0.01663273386657238, 0.3224598169326782, -0.25757721066474915, 0.021805187687277794, 0.006682556122541428, 0.09586300700902939, 0.028910577297210693, 0.04448544234037399, -0.04619918763637543, 0.3679516613483429, 0.2581402063369751, -0.4863198697566986, -0.2813776135444641, -0.35268375277519226, 0.10088320821523666, -0.30828219652175903, 0.06997589021921158, 1.202029824256897, -0.007705857045948505, 0.0005872270558029413, 0.0014980281703174114]} +{"t": 10.5281, "q": [-0.13814859092235565, 0.004947939421981573, -0.006254015490412712, 0.3170056641101837, -0.17616406083106995, -0.010257167741656303, -0.07845118641853333, -0.031796012073755264, 0.01665951870381832, 0.3224257230758667, -0.2575814425945282, 0.021812420338392258, 0.006213839631527662, 0.09585525095462799, 0.028925172984600067, 0.0445094108581543, -0.04609132930636406, 0.36693301796913147, 0.25824806094169617, -0.49305498600006104, -0.2775546610355377, -0.3570460081100464, 0.10024804621934891, -0.30803054571151733, 0.06997589021921158, 1.2021256685256958, -0.007705857045948505, 0.0005752427969127893, 0.0015100124292075634]} +{"t": 10.5448, "q": [-0.13814008235931396, 0.0049820286221802235, -0.0062272315844893456, 0.3168863356113434, -0.17616398632526398, -0.010242993012070656, -0.0784597098827362, -0.03175340220332146, 0.01665951870381832, 0.32240867614746094, -0.25758546590805054, 0.021790863946080208, 0.005972785409539938, 0.09585525095462799, 0.028925172984600067, 0.0445333793759346, -0.04604339227080345, 0.3666573762893677, 0.25837990641593933, -0.5010125041007996, -0.2723175585269928, -0.36056938767433167, 0.09974470734596252, -0.3078867197036743, 0.06995192170143127, 1.202197551727295, -0.0076818885281682014, 0.0005752427969127893, 0.0015339808305725455]} +{"t": 10.5616, "q": [-0.13815711438655853, 0.005050205159932375, -0.0062272315844893456, 0.3167926073074341, -0.17616835236549377, -0.010264263488352299, -0.07848527282476425, -0.03171931207180023, 0.01661934331059456, 0.3223745822906494, -0.25758570432662964, 0.02181965485215187, 0.005865650251507759, 0.09584785997867584, 0.028920890763401985, 0.043778374791145325, -0.0460314080119133, 0.36666935682296753, 0.25857165455818176, -0.5096651315689087, -0.2663973569869995, -0.36466798186302185, 0.09937319904565811, -0.30780282616615295, 0.06998787820339203, 1.202197551727295, -0.0076699042692780495, 0.0005752427969127893, 0.0015100124292075634]} +{"t": 10.5783, "q": [-0.13813155889511108, 0.005058727692812681, -0.006240623537451029, 0.3167329430580139, -0.17617256939411163, -0.010257202200591564, -0.07854492962360382, -0.03171931207180023, 0.01663273386657238, 0.32235753536224365, -0.2575855851173401, 0.021805258467793465, 0.00579869095236063, 0.09586282074451447, 0.028920015320181847, 0.04283162206411362, -0.046007439494132996, 0.3665255308151245, 0.2586075961589813, -0.5172391533851624, -0.2610284090042114, -0.36879056692123413, 0.09890580922365189, -0.307718962430954, 0.06998787820339203, 1.202269434928894, -0.0076579200103878975, 0.0005752427969127893, 0.0015219965716823936]} +{"t": 10.595, "q": [-0.1381656378507614, 0.005058727692812681, -0.0062272315844893456, 0.3166477084159851, -0.17616406083106995, -0.010257167741656303, -0.0786471962928772, -0.031685225665569305, 0.01664612628519535, 0.3223404884338379, -0.2575899362564087, 0.021826887503266335, 0.005704947747290134, 0.09587760269641876, 0.02892857976257801, 0.0424361415207386, -0.04591156542301178, 0.36636975407600403, 0.25882330536842346, -0.522931694984436, -0.2561388313770294, -0.37197837233543396, 0.0980788990855217, -0.3076590299606323, 0.06991597265005112, 1.2023173570632935, -0.0076699042692780495, 0.0005752427969127893, 0.0015100124292075634]} +{"t": 10.6118, "q": [-0.13810598850250244, 0.005109860096126795, -0.0062272315844893456, 0.3165198862552643, -0.17616835236549377, -0.010264263488352299, -0.07863867282867432, -0.03165965899825096, 0.01663273386657238, 0.32227233052253723, -0.25760242342948914, 0.021819796413183212, 0.005664771888405085, 0.09588517248630524, 0.02892342209815979, 0.04249606281518936, -0.045827675610780716, 0.3661780059337616, 0.25884726643562317, -0.5290555953979492, -0.2508058547973633, -0.3753219544887543, 0.09719206392765045, -0.30755117535591125, 0.06988001614809036, 1.2023054361343384, -0.0076818885281682014, 0.0005512743373401463, 0.0015100124292075634]} +{"t": 10.6285, "q": [-0.1380804181098938, 0.005101337563246489, -0.0062272315844893456, 0.3165113627910614, -0.17616835236549377, -0.010264263488352299, -0.07868128269910812, -0.03165965899825096, 0.01663273386657238, 0.3222297132015228, -0.2575896978378296, 0.02179809659719467, 0.005664771888405085, 0.09590014070272446, 0.02892254665493965, 0.04249606281518936, -0.04589958116412163, 0.36611807346343994, 0.25847578048706055, -0.533561646938324, -0.24514931440353394, -0.3777787387371063, 0.09629324823617935, -0.30734744668006897, 0.06985604763031006, 1.2022933959960938, -0.0076579200103878975, 0.0005512743373401463, 0.0014740596525371075]} +{"t": 10.6453, "q": [-0.13807189464569092, 0.0051183816976845264, -0.006187055725604296, 0.3164091110229492, -0.17617256939411163, -0.010257202200591564, -0.07874093949794769, -0.031676702201366425, 0.016672909259796143, 0.3221615254878998, -0.25760242342948914, 0.021819796413183212, 0.005490677431225777, 0.09590771049261093, 0.02891739085316658, 0.042220424860715866, -0.045827675610780716, 0.36584243178367615, 0.25822409987449646, -0.5395897626876831, -0.24019981920719147, -0.3805111348628998, 0.09559816122055054, -0.30710774660110474, 0.0698200985789299, 1.2022933959960938, -0.0076579200103878975, 0.0005632585962302983, 0.0014740596525371075]} +{"t": 10.662, "q": [-0.1380292922258377, 0.0051439483650028706, -0.006187055725604296, 0.31635797023773193, -0.17616413533687592, -0.010271324776113033, -0.07871536910533905, -0.031676702201366425, 0.01663273386657238, 0.3221870958805084, -0.25759392976760864, 0.021805329248309135, 0.005396933760493994, 0.09592267125844955, 0.028916513547301292, 0.04135756194591522, -0.04574378952383995, 0.36574655771255493, 0.2581641674041748, -0.5441437363624573, -0.23638884723186493, -0.3835071921348572, 0.09498696774244308, -0.3067362308502197, 0.06983207911252975, 1.2022933959960938, -0.0076579200103878975, 0.0005632585962302983, 0.0014860439114272594]} +{"t": 10.6787, "q": [-0.13804633915424347, 0.005169515032321215, -0.006213839631527662, 0.3161875307559967, -0.1761726438999176, -0.01027135830372572, -0.07873241603374481, -0.03163409233093262, 0.01663273386657238, 0.32217857241630554, -0.2575981914997101, 0.0218125618994236, 0.005249623209238052, 0.09593763947486877, 0.028915639966726303, 0.040470726788043976, -0.0457318052649498, 0.3655068874359131, 0.25822409987449646, -0.551178514957428, -0.23297333717346191, -0.38695865869522095, 0.09454355388879776, -0.3060891032218933, 0.06980811059474945, 1.2023533582687378, -0.0076579200103878975, 0.0005632585962302983, 0.0014980281703174114]} +{"t": 10.6955, "q": [-0.1380804181098938, 0.005195080768316984, -0.006200447678565979, 0.31616196036338806, -0.17616835236549377, -0.010264263488352299, -0.07874093949794769, -0.031617049127817154, 0.01663273386657238, 0.322144478559494, -0.2575981914997101, 0.0218125618994236, 0.005075528286397457, 0.09592249244451523, 0.028925953432917595, 0.039619848132133484, -0.04574378952383995, 0.36541101336479187, 0.25810426473617554, -0.5580933690071106, -0.22887472808361053, -0.39097335934638977, 0.09410014003515244, -0.3053940236568451, 0.06980811059474945, 1.2023173570632935, -0.0076699042692780495, 0.0005512743373401463, 0.0014620755100622773]} +{"t": 10.7122, "q": [-0.13807189464569092, 0.005178036633878946, -0.006187055725604296, 0.316093772649765, -0.17617686092853546, -0.010264297015964985, -0.07874946296215057, -0.03160000219941139, 0.01665951870381832, 0.3221189081668854, -0.25759392976760864, 0.021805329248309135, 0.004968393128365278, 0.09593763947486877, 0.028915639966726303, 0.03868507966399193, -0.0457318052649498, 0.3653510808944702, 0.25775671005249023, -0.5627073049545288, -0.22284667193889618, -0.39442482590675354, 0.09380052983760834, -0.30453115701675415, 0.06980811059474945, 1.2023533582687378, -0.0076579200103878975, 0.0005632585962302983, 0.0014860439114272594]} +{"t": 10.729, "q": [-0.13807189464569092, 0.0051865591667592525, -0.006187055725604296, 0.31606820225715637, -0.17616406083106995, -0.010257167741656303, -0.07874093949794769, -0.031625568866729736, 0.01663273386657238, 0.32208484411239624, -0.2575896978378296, 0.02179809659719467, 0.005021960940212011, 0.09593763947486877, 0.028915639966726303, 0.03803792968392372, -0.045767758041620255, 0.36529117822647095, 0.2574930489063263, -0.5664104223251343, -0.2181488573551178, -0.3970373868942261, 0.09378854930400848, -0.3037162125110626, 0.0698440670967102, 1.2023652791976929, -0.0076579200103878975, 0.0005872270558029413, 0.0014860439114272594]} +{"t": 10.7457, "q": [-0.13805484771728516, 0.005195080768316984, -0.0061736637726426125, 0.316093772649765, -0.17616413533687592, -0.010271324776113033, -0.07874093949794769, -0.0316426157951355, 0.01663273386657238, 0.32208484411239624, -0.25759392976760864, 0.021805329248309135, 0.004995177034288645, 0.09595241397619247, 0.028924204409122467, 0.037642452865839005, -0.045767758041620255, 0.3651593327522278, 0.2573851943016052, -0.5702813267707825, -0.21468541026115417, -0.3997098505496979, 0.09371664375066757, -0.30323684215545654, 0.06989200413227081, 1.2024492025375366, -0.0076579200103878975, 0.0005752427969127893, 0.0014860439114272594]} +{"t": 10.7624, "q": [-0.13804633915424347, 0.0051865591667592525, -0.0061736637726426125, 0.31611934304237366, -0.17616835236549377, -0.010264263488352299, -0.0787835493683815, -0.031625568866729736, 0.016699694097042084, 0.32209333777427673, -0.25759392976760864, 0.021805329248309135, 0.004968393128365278, 0.095944844186306, 0.02892936021089554, 0.037031255662441254, -0.04579172283411026, 0.36499157547950745, 0.2572653591632843, -0.5753147006034851, -0.2120848298072815, -0.4019509255886078, 0.09370465576648712, -0.30300915241241455, 0.0698200985789299, 1.2025450468063354, -0.0076818885281682014, 0.0005752427969127893, 0.0014980281703174114]} +{"t": 10.7792, "q": [-0.1380292922258377, 0.0051865591667592525, -0.0061736637726426125, 0.31612786650657654, -0.17616413533687592, -0.010271324776113033, -0.07876650243997574, -0.03163409233093262, 0.016672909259796143, 0.32208484411239624, -0.25759392976760864, 0.021805329248309135, 0.005021960940212011, 0.09595999121665955, 0.028919046744704247, 0.03562910109758377, -0.04571982100605965, 0.3649556040763855, 0.2562946379184723, -0.5797728300094604, -0.20887306332588196, -0.40318527817726135, 0.09375259280204773, -0.30278146266937256, 0.06986803561449051, 1.2026768922805786, -0.0076818885281682014, 0.0005872270558029413, 0.0014860439114272594]} +{"t": 10.7961, "q": [-0.13802076876163483, 0.005237691570073366, -0.006200447678565979, 0.31611934304237366, -0.1761598438024521, -0.010264229029417038, -0.07875798642635345, -0.03160000219941139, 0.01664612628519535, 0.3221103847026825, -0.2576064467430115, 0.02179822139441967, 0.005075528286397457, 0.09597530961036682, 0.028899289667606354, 0.033615753054618835, -0.0457557737827301, 0.36496758460998535, 0.2555995583534241, -0.5825891494750977, -0.20531374216079712, -0.40350887179374695, 0.09378854930400848, -0.3017028570175171, 0.06986803561449051, 1.2029045820236206, -0.0076579200103878975, 0.0005752427969127893, 0.0015100124292075634]} +{"t": 10.813, "q": [-0.13802076876163483, 0.005271779838949442, -0.006200447678565979, 0.3161363899707794, -0.1761682778596878, -0.010250106453895569, -0.07877502590417862, -0.03159148246049881, 0.01663273386657238, 0.32217004895210266, -0.25760218501091003, 0.021790986880660057, 0.005062136333435774, 0.09604976326227188, 0.028913794085383415, 0.03181811794638634, -0.04574378952383995, 0.364799827337265, 0.25520408153533936, -0.5856691002845764, -0.20153871178627014, -0.4038204550743103, 0.09372862428426743, -0.299797385931015, 0.06991597265005112, 1.2030603885650635, -0.0076818885281682014, 0.0005752427969127893, 0.0015219965716823936]} +{"t": 10.8297, "q": [-0.13800372183322906, 0.00528882397338748, -0.006187055725604296, 0.316093772649765, -0.1761598438024521, -0.010264229029417038, -0.07880059629678726, -0.03158295899629593, 0.01663273386657238, 0.32217004895210266, -0.25760218501091003, 0.021790986880660057, 0.004821082577109337, 0.09620695561170578, 0.02889988385140896, 0.03063168004155159, -0.04571982100605965, 0.3645241856575012, 0.2551681101322174, -0.5862084031105042, -0.1986025869846344, -0.4040721356868744, 0.093536876142025, -0.29784396290779114, 0.06993994116783142, 1.203072428703308, -0.0076579200103878975, 0.0005752427969127893, 0.0015100124292075634]} +{"t": 10.8465, "q": [-0.13799519836902618, 0.005305869039148092, -0.006160271819680929, 0.31606820225715637, -0.1761598438024521, -0.010264229029417038, -0.07885172963142395, -0.031565915793180466, 0.016699694097042084, 0.3221615254878998, -0.25759392976760864, 0.021805329248309135, 0.004365758039057255, 0.09643193334341049, 0.02885843627154827, 0.030116358771920204, -0.04565989971160889, 0.36376917362213135, 0.25513216853141785, -0.5859686732292175, -0.19754797220230103, -0.4044915735721588, 0.09346497058868408, -0.2959264814853668, 0.06999985873699188, 1.2030484676361084, -0.0076579200103878975, 0.0005632585962302983, 0.0015219965716823936]} +{"t": 10.8632, "q": [-0.13792702555656433, 0.0053484789095819, -0.006146880332380533, 0.316093772649765, -0.1761598438024521, -0.010264229029417038, -0.07884320616722107, -0.03153182566165924, 0.016753261908888817, 0.32222118973731995, -0.2575981914997101, 0.0218125618994236, 0.004057744517922401, 0.09664066880941391, 0.028883935883641243, 0.030116358771920204, -0.044988781213760376, 0.3625108301639557, 0.2546647787094116, -0.5845305919647217, -0.1976078897714615, -0.40555816888809204, 0.09351290762424469, -0.29415279626846313, 0.07002382725477219, 1.2030603885650635, -0.0076699042692780495, 0.0005752427969127893, 0.0015219965716823936]} +{"t": 10.88, "q": [-0.13791850209236145, 0.005374045576900244, -0.00613348837941885, 0.316093772649765, -0.17616406083106995, -0.010257167741656303, -0.07885172963142395, -0.03154034912586212, 0.016726477071642876, 0.32217857241630554, -0.2575981914997101, 0.0218125618994236, 0.003964001312851906, 0.0970141738653183, 0.028890373185276985, 0.03027215227484703, -0.04205264523625374, 0.36003008484840393, 0.2534663677215576, -0.5815585255622864, -0.19791947305202484, -0.40809881687164307, 0.09363275021314621, -0.29252296686172485, 0.07001184672117233, 1.2032161951065063, -0.007705857045948505, 0.0005752427969127893, 0.0014980281703174114]} +{"t": 10.8968, "q": [-0.13790997862815857, 0.005433700513094664, -0.006160271819680929, 0.31608524918556213, -0.1761598438024521, -0.010264229029417038, -0.07884320616722107, -0.03153182566165924, 0.016739869490265846, 0.3222041428089142, -0.25759807229042053, 0.021798150613904, 0.004044352564960718, 0.09751258790493011, 0.029007364064455032, 0.030415963381528854, -0.03838547319173813, 0.35660260915756226, 0.25146499276161194, -0.5768367052078247, -0.19794344902038574, -0.41162219643592834, 0.09370465576648712, -0.2913125455379486, 0.07001184672117233, 1.2035757303237915, -0.0076818885281682014, 0.0005752427969127893, 0.0015219965716823936]} +{"t": 10.9135, "q": [-0.13791850209236145, 0.005467788781970739, -0.006160271819680929, 0.3161108195781708, -0.17616413533687592, -0.010271324776113033, -0.07886876910924911, -0.03153182566165924, 0.016739869490265846, 0.3222297132015228, -0.2575981914997101, 0.0218125618994236, 0.004017568659037352, 0.09820585697889328, 0.029094094410538673, 0.0303800106048584, -0.03383146598935127, 0.35203662514686584, 0.24794164299964905, -0.573157548904419, -0.1980033665895462, -0.4144265055656433, 0.09368068724870682, -0.2902100086212158, 0.07005978375673294, 1.2038873434066772, -0.0076818885281682014, 0.0005872270558029413, 0.0015100124292075634]} +{"t": 10.9303, "q": [-0.13787588477134705, 0.0054507446475327015, -0.00613348837941885, 0.3161108195781708, -0.1761598438024521, -0.010264229029417038, -0.07885172963142395, -0.03153182566165924, 0.016739869490265846, 0.3222382366657257, -0.2575896978378296, 0.02179809659719467, 0.0038702578749507666, 0.09907881915569305, 0.029140496626496315, 0.030116358771920204, -0.029157619923353195, 0.34779420495033264, 0.2450055032968521, -0.5665422677993774, -0.19814717769622803, -0.4170030951499939, 0.09357283264398575, -0.2891673743724823, 0.07004779577255249, 1.203983187675476, -0.0076699042692780495, 0.0005872270558029413, 0.0014980281703174114]} +{"t": 10.947, "q": [-0.13786736130714417, 0.0054507446475327015, -0.006106704473495483, 0.3161108195781708, -0.1761598438024521, -0.010264229029417038, -0.07890285551548004, -0.0315062589943409, 0.016833612695336342, 0.3222467601299286, -0.2575981914997101, 0.0218125618994236, 0.0035220684949308634, 0.09993152320384979, 0.02906949631869793, 0.029828736558556557, -0.024807346984744072, 0.3456370532512665, 0.24271652102470398, -0.5571346282958984, -0.19826702773571014, -0.419423907995224, 0.09340505301952362, -0.288364440202713, 0.07008375227451324, 1.2039592266082764, -0.0076579200103878975, 0.0005752427969127893, 0.0014860439114272594]} +{"t": 10.9637, "q": [-0.13779066503047943, 0.0054933554492890835, -0.006012961268424988, 0.3161022961139679, -0.1761598438024521, -0.010264229029417038, -0.07888581603765488, -0.03151478245854378, 0.016900572925806046, 0.32225528359413147, -0.25760242342948914, 0.021819796413183212, 0.003026568330824375, 0.10089365392923355, 0.02912864089012146, 0.030104374513030052, -0.01870737597346306, 0.3424132764339447, 0.2397684007883072, -0.5478468537330627, -0.19836290180683136, -0.42173686623573303, 0.09314139932394028, -0.2874656021595001, 0.07003581523895264, 1.203911304473877, -0.0076579200103878975, 0.0005512743373401463, 0.0014860439114272594]} +{"t": 10.9804, "q": [-0.13778214156627655, 0.005527443718165159, -0.005919218063354492, 0.3160170912742615, -0.17615555226802826, -0.010257115587592125, -0.07897955924272537, -0.0315062589943409, 0.01699431613087654, 0.3222467601299286, -0.257602334022522, 0.021805383265018463, 0.002839081920683384, 0.10185027867555618, 0.029089035466313362, 0.030403979122638702, -0.011564777232706547, 0.3381468951702118, 0.23623304069042206, -0.5372648239135742, -0.19859059154987335, -0.42370226979255676, 0.09305750578641891, -0.28653085231781006, 0.07005978375673294, 1.2039352655410767, -0.0076699042692780495, 0.0005512743373401463, 0.0014980281703174114]} +{"t": 10.9973, "q": [-0.13777361810207367, 0.005518921185284853, -0.005919218063354492, 0.31598299741744995, -0.17615564167499542, -0.010271290317177773, -0.07900512218475342, -0.03151478245854378, 0.017021099105477333, 0.3222297132015228, -0.25760242342948914, 0.021819796413183212, 0.0027855143416672945, 0.10287252068519592, 0.029115617275238037, 0.030499853193759918, -0.00347542529925704, 0.33281391859054565, 0.2340758889913559, -0.5281927585601807, -0.19893814623355865, -0.4254879355430603, 0.09314139932394028, -0.285643994808197, 0.07005978375673294, 1.203983187675476, -0.0076579200103878975, 0.0005752427969127893, 0.0014860439114272594]} +{"t": 11.014, "q": [-0.13774806261062622, 0.005553010385483503, -0.005919218063354492, 0.31602561473846436, -0.17616842687129974, -0.010278419591486454, -0.07903069257736206, -0.03153182566165924, 0.01698092371225357, 0.3222382366657257, -0.2575981914997101, 0.0218125618994236, 0.0028926494996994734, 0.10408803075551987, 0.029156608507037163, 0.030583743005990982, 0.005884254816919565, 0.32709744572639465, 0.2325778603553772, -0.5150101184844971, -0.19944147765636444, -0.42792072892189026, 0.09320131689310074, -0.28436169028282166, 0.07001184672117233, 1.2042948007583618, -0.0076699042692780495, 0.0005872270558029413, 0.0015100124292075634]} +{"t": 11.0308, "q": [-0.13769692182540894, 0.005621186923235655, -0.005892434157431126, 0.3160170912742615, -0.17616842687129974, -0.010278419591486454, -0.0790562555193901, -0.03152330592274666, 0.017007706686854362, 0.3222297132015228, -0.25759392976760864, 0.021805329248309135, 0.002758730435743928, 0.10509935766458511, 0.0293281190097332, 0.030727554112672806, 0.01495631318539381, 0.3221958875656128, 0.231379434466362, -0.5036370754241943, -0.20022045075893402, -0.4331578314304352, 0.09306949377059937, -0.28313931822776794, 0.07001184672117233, 1.2049059867858887, -0.0076699042692780495, 0.0005752427969127893, 0.0014980281703174114]} +{"t": 11.0475, "q": [-0.13773953914642334, 0.005646753590553999, -0.0058388663455843925, 0.3159233331680298, -0.1761598438024521, -0.010264229029417038, -0.07913295924663544, -0.03148921579122543, 0.017061274498701096, 0.3221870958805084, -0.257602334022522, 0.021805383265018463, 0.002718554809689522, 0.10603936016559601, 0.0293338093906641, 0.030907316133379936, 0.02479536272585392, 0.31651538610458374, 0.22929418087005615, -0.49100568890571594, -0.20115521550178528, -0.4375919997692108, 0.09292568266391754, -0.28186896443367004, 0.06999985873699188, 1.2051457166671753, -0.0076459357514977455, 0.0005752427969127893, 0.0014980281703174114]} +{"t": 11.0642, "q": [-0.13768839836120605, 0.005723452661186457, -0.005825474392622709, 0.31593185663223267, -0.17615564167499542, -0.010271290317177773, -0.07914147526025772, -0.03148921579122543, 0.017047883942723274, 0.3222041428089142, -0.257606565952301, 0.021812615916132927, 0.0027855143416672945, 0.1068737581372261, 0.02937391772866249, 0.031015174463391304, 0.03564108535647392, 0.30882149934768677, 0.226034477353096, -0.4763130247592926, -0.20262928307056427, -0.44232577085494995, 0.09287774562835693, -0.28064659237861633, 0.07003581523895264, 1.205409288406372, -0.0076579200103878975, 0.0005632585962302983, 0.0015100124292075634]} +{"t": 11.081, "q": [-0.1376713663339615, 0.005749018397182226, -0.005825474392622709, 0.3158551752567291, -0.17615993320941925, -0.010278385132551193, -0.07912443578243256, -0.03142956271767616, 0.017021099105477333, 0.3221870958805084, -0.257602334022522, 0.021805383265018463, 0.002865865593776107, 0.10758204013109207, 0.02937949076294899, 0.03129081055521965, 0.045995455235242844, 0.30181074142456055, 0.22192388772964478, -0.46341800689697266, -0.204366996884346, -0.4457292854785919, 0.09275790303945541, -0.27944815158843994, 0.07005978375673294, 1.2058647871017456, -0.0076699042692780495, 0.0005872270558029413, 0.0015100124292075634]} +{"t": 11.0977, "q": [-0.1376628428697586, 0.005749018397182226, -0.005825474392622709, 0.31588923931121826, -0.17615564167499542, -0.010271290317177773, -0.07914147526025772, -0.03128468617796898, 0.017007706686854362, 0.32217004895210266, -0.25759807229042053, 0.021798150613904, 0.0029997846577316523, 0.10817324370145798, 0.02927950769662857, 0.03233344107866287, 0.05662546306848526, 0.29466813802719116, 0.21655495464801788, -0.4489051103591919, -0.2067398726940155, -0.44864144921302795, 0.09249424934387207, -0.2785613238811493, 0.0700717642903328, 1.2060325145721436, -0.0076579200103878975, 0.0005872270558029413, 0.0015100124292075634]} +{"t": 11.1147, "q": [-0.1376628428697586, 0.005766062531620264, -0.005879042204469442, 0.3158807158470154, -0.17615555226802826, -0.010257115587592125, -0.07913295924663544, -0.03131025284528732, 0.016900572925806046, 0.322144478559494, -0.2576189339160919, 0.0217911284416914, 0.0034149333368986845, 0.10862269252538681, 0.029183872044086456, 0.03353186324238777, 0.0683220699429512, 0.28523653745651245, 0.21257618069648743, -0.434775710105896, -0.20947226881980896, -0.45288386940956116, 0.09230250120162964, -0.2779141962528229, 0.07008375227451324, 1.2061643600463867, -0.0076579200103878975, 0.0005872270558029413, 0.0014980281703174114]} +{"t": 11.1314, "q": [-0.13770544528961182, 0.005783106666058302, -0.005919218063354492, 0.31580403447151184, -0.1761598438024521, -0.010264229029417038, -0.07914147526025772, -0.03128468617796898, 0.016873788088560104, 0.3221189081668854, -0.25761082768440247, 0.021819867193698883, 0.0036292036529630423, 0.10888495296239853, 0.029124032706022263, 0.03473028540611267, 0.08073772490024567, 0.2767397165298462, 0.20900489389896393, -0.4207182228565216, -0.21299563348293304, -0.4573899507522583, 0.09159543365240097, -0.2775786221027374, 0.07013168931007385, 1.2066437005996704, -0.0076579200103878975, 0.0005992112564854324, 0.0015219965716823936]} +{"t": 11.1482, "q": [-0.13769692182540894, 0.005791629198938608, -0.005932609550654888, 0.3158296048641205, -0.17615993320941925, -0.010278385132551193, -0.07916704565286636, -0.03128468617796898, 0.016887180507183075, 0.3221018612384796, -0.257602334022522, 0.021805383265018463, 0.0037095551379024982, 0.10910815745592117, 0.029146935790777206, 0.035832833498716354, 0.0917871817946434, 0.2695491909980774, 0.20603279769420624, -0.4083145260810852, -0.21668677031993866, -0.461416631937027, 0.09040899574756622, -0.27749472856521606, 0.0701436698436737, 1.2071350812911987, -0.0076699042692780495, 0.0005992112564854324, 0.0015100124292075634]} +{"t": 11.1649, "q": [-0.13773953914642334, 0.00577458506450057, -0.005932609550654888, 0.31583812832832336, -0.17615999281406403, -0.01029255148023367, -0.07915852218866348, -0.031327296048402786, 0.016860397532582283, 0.3221018612384796, -0.257602334022522, 0.021805383265018463, 0.003655987558886409, 0.1092047169804573, 0.02916409634053707, 0.03725895658135414, 0.10423879325389862, 0.26169952750205994, 0.2031206339597702, -0.3945326805114746, -0.2200423628091812, -0.4648561179637909, 0.08921056985855103, -0.277530699968338, 0.07008375227451324, 1.2076383829116821, -0.0076818885281682014, 0.0005992112564854324, 0.0014980281703174114]} +{"t": 11.1818, "q": [-0.13769692182540894, 0.00577458506450057, -0.005905826110392809, 0.3158722221851349, -0.17615993320941925, -0.010278385132551193, -0.07916704565286636, -0.031327296048402786, 0.016900572925806046, 0.32213595509529114, -0.2576148211956024, 0.02179829217493534, 0.0034551091957837343, 0.10922741889953613, 0.029148446395993233, 0.03934421017765999, 0.11546801030635834, 0.2550722360610962, 0.19886623322963715, -0.3805350959300995, -0.2220437228679657, -0.4673008918762207, 0.08800016343593597, -0.2776385545730591, 0.07010772079229355, 1.2078421115875244, -0.0076699042692780495, 0.0005872270558029413, 0.0014860439114272594]} +{"t": 11.1985, "q": [-0.13769692182540894, 0.005757540930062532, -0.005865650251507759, 0.31580403447151184, -0.17615564167499542, -0.010271290317177773, -0.07914147526025772, -0.03133581951260567, 0.016927355900406837, 0.3221018612384796, -0.25761905312538147, 0.021805541589856148, 0.003481892868876457, 0.10923479497432709, 0.029152676463127136, 0.041681136935949326, 0.12831510603427887, 0.24623987078666687, 0.19513913989067078, -0.365770548582077, -0.22409303486347198, -0.4701291620731354, 0.08704143017530441, -0.2778902053833008, 0.0700717642903328, 1.2079139947891235, -0.0076339514926075935, 0.0005752427969127893, 0.0015219965716823936]} +{"t": 11.2152, "q": [-0.1377139687538147, 0.005680841859430075, -0.005892434157431126, 0.31580403447151184, -0.17615564167499542, -0.010271290317177773, -0.07914147526025772, -0.03134433925151825, 0.016900572925806046, 0.3221189081668854, -0.25761082768440247, 0.021819867193698883, 0.0035220684949308634, 0.10927201807498932, 0.029154915362596512, 0.04374242201447487, 0.14149774610996246, 0.2371438443660736, 0.1924906224012375, -0.3497715890407562, -0.22613035142421722, -0.47427570819854736, 0.0863223746418953, -0.2779621183872223, 0.07003581523895264, 1.2079979181289673, -0.0076339514926075935, 0.0005872270558029413, 0.0014860439114272594]} +{"t": 11.2319, "q": [-0.13777361810207367, 0.005655275192111731, -0.005892434157431126, 0.31580403447151184, -0.1761598438024521, -0.010264229029417038, -0.07916704565286636, -0.031369905918836594, 0.016913963481783867, 0.3221103847026825, -0.257606565952301, 0.021812615916132927, 0.0036158119328320026, 0.10931642353534698, 0.02917082980275154, 0.04561196267604828, 0.15272696316242218, 0.2301330715417862, 0.18987806141376495, -0.3338205814361572, -0.22881481051445007, -0.47869789600372314, 0.08566324412822723, -0.27795013785362244, 0.07002382725477219, 1.208009958267212, -0.0076699042692780495, 0.0005752427969127893, 0.0015100124292075634]} +{"t": 11.2487, "q": [-0.13781623542308807, 0.005638231057673693, -0.005879042204469442, 0.3158125579357147, -0.1761598438024521, -0.010264229029417038, -0.07916704565286636, -0.031378429383039474, 0.01695414073765278, 0.32212743163108826, -0.257606565952301, 0.021812615916132927, 0.003655987558886409, 0.10931621491909027, 0.029180271551012993, 0.047457531094551086, 0.1649508774280548, 0.22283469140529633, 0.18784074485301971, -0.31554466485977173, -0.23425565659999847, -0.4828803837299347, 0.08535165339708328, -0.27792617678642273, 0.07001184672117233, 1.2080698013305664, -0.0076699042692780495, 0.0005512743373401463, 0.0014740596525371075]} +{"t": 11.2654, "q": [-0.13777361810207367, 0.005604142788797617, -0.005892434157431126, 0.31583812832832336, -0.1761598438024521, -0.010264229029417038, -0.07913295924663544, -0.031378429383039474, 0.016913963481783867, 0.3221189081668854, -0.25761494040489197, 0.02181270532310009, 0.0037899063900113106, 0.10931621491909027, 0.029180271551012993, 0.04980643838644028, 0.17798970639705658, 0.2142779529094696, 0.18609105050563812, -0.2976522147655487, -0.24058331549167633, -0.4860801696777344, 0.08523181080818176, -0.2779621183872223, 0.06995192170143127, 1.2081537246704102, -0.0076699042692780495, 0.0005872270558029413, 0.0014980281703174114]} +{"t": 11.2822, "q": [-0.13783328235149384, 0.005587098654359579, -0.005865650251507759, 0.3158210813999176, -0.1761598438024521, -0.010264229029417038, -0.07914147526025772, -0.0314125157892704, 0.016900572925806046, 0.32209333777427673, -0.25761082768440247, 0.021819867193698883, 0.003910433501005173, 0.10932357609272003, 0.02918449603021145, 0.05165201053023338, 0.1905132234096527, 0.20615264773368835, 0.18361032009124756, -0.2793043553829193, -0.2451852709054947, -0.4878178834915161, 0.08519585430622101, -0.27802205085754395, 0.06999985873699188, 1.2082735300064087, -0.0076579200103878975, 0.0005512743373401463, 0.0014980281703174114]} +{"t": 11.299, "q": [-0.13783328235149384, 0.005587098654359579, -0.005892434157431126, 0.31584665179252625, -0.17616413533687592, -0.010271324776113033, -0.07913295924663544, -0.03142956271767616, 0.016860397532582283, 0.3221189081668854, -0.257606565952301, 0.021812615916132927, 0.003964001312851906, 0.10933074355125427, 0.029198165982961655, 0.0535455197095871, 0.20336031913757324, 0.1976797878742218, 0.17948773503303528, -0.2600337266921997, -0.24902021884918213, -0.4894118010997772, 0.08524379134178162, -0.27804601192474365, 0.06999985873699188, 1.2084053754806519, -0.0076579200103878975, 0.0005872270558029413, 0.0014980281703174114]} +{"t": 11.3157, "q": [-0.13784180581569672, 0.005595620255917311, -0.005919218063354492, 0.3158722221851349, -0.1761598438024521, -0.010264229029417038, -0.07914147526025772, -0.03142956271767616, 0.016887180507183075, 0.322144478559494, -0.2576064467430115, 0.02179822139441967, 0.003937217406928539, 0.10935304313898087, 0.02920139767229557, 0.055043548345565796, 0.21663883328437805, 0.1894945651292801, 0.17553295195102692, -0.2400680035352707, -0.25458088517189026, -0.49068212509155273, 0.08525577932596207, -0.27839356660842896, 0.06992795318365097, 1.208597183227539, -0.007705857045948505, 0.0005872270558029413, 0.0014860439114272594]} +{"t": 11.3326, "q": [-0.13779066503047943, 0.005680841859430075, -0.005919218063354492, 0.3158807158470154, -0.17615555226802826, -0.010257115587592125, -0.07914147526025772, -0.031378429383039474, 0.016873788088560104, 0.32217857241630554, -0.2576148211956024, 0.02179829217493534, 0.0038970415480434895, 0.10936777293682098, 0.02920985221862793, 0.05649363622069359, 0.22796393930912018, 0.18256768584251404, 0.17182981967926025, -0.2205936312675476, -0.26089659333229065, -0.4917966425418854, 0.08525577932596207, -0.2789328396320343, 0.06993994116783142, 1.2086690664291382, -0.007693872787058353, 0.0005992112564854324, 0.0014860439114272594]} +{"t": 11.3494, "q": [-0.1377991884946823, 0.005723452661186457, -0.005959393456578255, 0.31588923931121826, -0.17615999281406403, -0.01029255148023367, -0.07911591231822968, -0.03133581951260567, 0.016847005113959312, 0.3222041428089142, -0.2576148211956024, 0.02179829217493534, 0.0038568659219890833, 0.10936040431261063, 0.029205622151494026, 0.05801563337445259, 0.23933696746826172, 0.17524532973766327, 0.16805478930473328, -0.20193418860435486, -0.2663014829158783, -0.492683470249176, 0.08535165339708328, -0.2794122099876404, 0.06990398466587067, 1.208704948425293, -0.007705857045948505, 0.0005752427969127893, 0.0014500912511721253]} +{"t": 11.3662, "q": [-0.13779066503047943, 0.005731974262744188, -0.005986177362501621, 0.315863698720932, -0.1761598438024521, -0.010264229029417038, -0.07911591231822968, -0.03130172938108444, 0.016860397532582283, 0.3222382366657257, -0.257606565952301, 0.021812615916132927, 0.00388364982791245, 0.10940520465373993, 0.029202649369835854, 0.059597551822662354, 0.2515488862991333, 0.1666526347398758, 0.16534635424613953, -0.18218418955802917, -0.27161046862602234, -0.49404969811439514, 0.0854714959859848, -0.27949610352516174, 0.06988001614809036, 1.2087769508361816, -0.00771784083917737, 0.0005872270558029413, 0.0014620755100622773]} +{"t": 11.383, "q": [-0.13777361810207367, 0.005842761602252722, -0.0059995693154633045, 0.31589776277542114, -0.17615142464637756, -0.010278359986841679, -0.07912443578243256, -0.031242074444890022, 0.016847005113959312, 0.3222978711128235, -0.2576064467430115, 0.02179822139441967, 0.003803298342972994, 0.10958994925022125, 0.029279960319399834, 0.06139518693089485, 0.2632335126399994, 0.15939019620418549, 0.16359665989875793, -0.16381236910820007, -0.27709925174713135, -0.4958353340625763, 0.08545950800180435, -0.27936428785324097, 0.06992795318365097, 1.2087769508361816, -0.00771784083917737, 0.0005632585962302983, 0.0014740596525371075]} +{"t": 11.3997, "q": [-0.13776510953903198, 0.005987638141959906, -0.006012961268424988, 0.31593185663223267, -0.1761472076177597, -0.010285421274602413, -0.07913295924663544, -0.031131288036704063, 0.016873788088560104, 0.32231491804122925, -0.257606565952301, 0.021812615916132927, 0.0037497307639569044, 0.1096867099404335, 0.029287680983543396, 0.06322877109050751, 0.27507391571998596, 0.1513967216014862, 0.16208665072917938, -0.14446984231472015, -0.28323519229888916, -0.4978127181529999, 0.08548347651958466, -0.27914854884147644, 0.06995192170143127, 1.2088727951049805, -0.007729825098067522, 0.0005752427969127893, 0.0014860439114272594]} +{"t": 11.4165, "q": [-0.13773953914642334, 0.006081381347030401, -0.0059995693154633045, 0.31593185663223267, -0.17615142464637756, -0.010278359986841679, -0.07914147526025772, -0.031003456562757492, 0.016887180507183075, 0.32231491804122925, -0.257602334022522, 0.021805383265018463, 0.0034283252898603678, 0.10984896123409271, 0.02937120571732521, 0.06536196172237396, 0.28508076071739197, 0.14532071352005005, 0.1601092517375946, -0.12494753301143646, -0.2876933217048645, -0.4995983839035034, 0.08553141355514526, -0.27912458777427673, 0.06992795318365097, 1.208980679512024, -0.007693872787058353, 0.0005872270558029413, 0.0014860439114272594]} +{"t": 11.4332, "q": [-0.13774806261062622, 0.006141036283224821, -0.005986177362501621, 0.31594038009643555, -0.17614728212356567, -0.010299578309059143, -0.07918408513069153, -0.03086710162460804, 0.016927355900406837, 0.3223404884338379, -0.257602334022522, 0.021805383265018463, 0.0034283252898603678, 0.1099826917052269, 0.029390467330813408, 0.06711166352033615, 0.294452428817749, 0.1395682841539383, 0.15857526659965515, -0.10698317736387253, -0.2902219891548157, -0.5001376867294312, 0.08571118116378784, -0.2790646553039551, 0.06992795318365097, 1.2090405225753784, -0.007693872787058353, 0.0005872270558029413, 0.0014860439114272594]} +{"t": 11.45, "q": [-0.13773953914642334, 0.006200690288096666, -0.005986177362501621, 0.31594038009643555, -0.17613448202610016, -0.01029243040829897, -0.07913295924663544, -0.030841534957289696, 0.016900572925806046, 0.322331964969635, -0.257602334022522, 0.021805383265018463, 0.0034149333368986845, 0.11006467044353485, 0.029389608651399612, 0.06920889765024185, 0.3048427402973175, 0.1321021169424057, 0.1575925648212433, -0.08713730424642563, -0.29385319352149963, -0.5004732012748718, 0.08601078391075134, -0.27901673316955566, 0.06995192170143127, 1.2091604471206665, -0.0076818885281682014, 0.0006111955153755844, 0.0014740596525371075]} +{"t": 11.4669, "q": [-0.13773953914642334, 0.0062262569554150105, -0.005986177362501621, 0.31593185663223267, -0.17615142464637756, -0.010278359986841679, -0.07916704565286636, -0.03080744668841362, 0.016900572925806046, 0.3223404884338379, -0.257610559463501, 0.021791057661175728, 0.0033747577108442783, 0.1101832240819931, 0.029419198632240295, 0.07150987535715103, 0.31386685371398926, 0.12612198293209076, 0.1567416787147522, -0.06898120045661926, -0.29699307680130005, -0.5008207559585571, 0.0860227718949318, -0.2786811590194702, 0.06997589021921158, 1.2095319032669067, -0.0076579200103878975, 0.0005992112564854324, 0.0014740596525371075]} +{"t": 11.4837, "q": [-0.1377139687538147, 0.0062688677571713924, -0.005959393456578255, 0.3159489035606384, -0.1761515736579895, -0.010306674055755138, -0.07918408513069153, -0.03068813681602478, 0.01698092371225357, 0.32232344150543213, -0.2576148211956024, 0.02179829217493534, 0.0032810145057737827, 0.11041148751974106, 0.029540130868554115, 0.07336742430925369, 0.3227471709251404, 0.12056130915880203, 0.1568375527858734, -0.048955559730529785, -0.30141523480415344, -0.5010364651679993, 0.08601078391075134, -0.27707529067993164, 0.06995192170143127, 1.2095798254013062, -0.0076699042692780495, 0.0005752427969127893, 0.0014740596525371075]} +{"t": 11.5004, "q": [-0.13773953914642334, 0.006251823622733355, -0.005986177362501621, 0.3159148097038269, -0.176138773560524, -0.010299543850123882, -0.07920113205909729, -0.030671093612909317, 0.01698092371225357, 0.32231491804122925, -0.2576146721839905, 0.021783895790576935, 0.0032274469267576933, 0.11066201329231262, 0.02966424636542797, 0.07492537796497345, 0.33138778805732727, 0.11425760388374329, 0.15698136389255524, -0.03026016801595688, -0.30650854110717773, -0.500892698764801, 0.0860227718949318, -0.27544543147087097, 0.07002382725477219, 1.2096517086029053, -0.00771784083917737, 0.0005872270558029413, 0.0014620755100622773]} +{"t": 11.5171, "q": [-0.13773953914642334, 0.006260345224291086, -0.005959393456578255, 0.31588923931121826, -0.17614299058914185, -0.010292482562363148, -0.0792437419295311, -0.03067961521446705, 0.01698092371225357, 0.32227233052253723, -0.257602334022522, 0.021805383265018463, 0.0031872710678726435, 0.1107795238494873, 0.029741020873188972, 0.07702261209487915, 0.3397168219089508, 0.10867295414209366, 0.15654993057250977, -0.011097392998635769, -0.3106670677661896, -0.5009166598320007, 0.0860227718949318, -0.27373167872428894, 0.07005978375673294, 1.2098314762115479, -0.0076818885281682014, 0.0005992112564854324, 0.0014980281703174114]} +{"t": 11.5339, "q": [-0.1377139687538147, 0.0062262569554150105, -0.005892434157431126, 0.3158722221851349, -0.17614299058914185, -0.010292482562363148, -0.07927782833576202, -0.030662572011351585, 0.017074666917324066, 0.3221870958805084, -0.2576063275337219, 0.021783825010061264, 0.003066744189709425, 0.11091279983520508, 0.02977907657623291, 0.0788322314620018, 0.34544530510902405, 0.1052694320678711, 0.15557920932769775, 0.0057524279691278934, -0.31377097964286804, -0.5006529688835144, 0.08599880337715149, -0.2719460427761078, 0.0700717642903328, 1.2098674774169922, -0.0076818885281682014, 0.0005992112564854324, 0.0014740596525371075]} +{"t": 11.5506, "q": [-0.1376713663339615, 0.006192168686538935, -0.005865650251507759, 0.31588923931121826, -0.17615149915218353, -0.010292517021298409, -0.07922670245170593, -0.03068813681602478, 0.017061274498701096, 0.3221870958805084, -0.2576148211956024, 0.02179829217493534, 0.003093527862802148, 0.11096451431512833, 0.029799120500683784, 0.08021041750907898, 0.35061049461364746, 0.10181798040866852, 0.15468040108680725, 0.02129596844315529, -0.31717449426651, -0.500521183013916, 0.0860946774482727, -0.26988476514816284, 0.07005978375673294, 1.2099274396896362, -0.0076579200103878975, 0.0005872270558029413, 0.0014740596525371075]} +{"t": 11.5674, "q": [-0.13768839836120605, 0.006192168686538935, -0.005852258298546076, 0.31580403447151184, -0.17615149915218353, -0.010292517021298409, -0.07926931232213974, -0.03063700534403324, 0.017021099105477333, 0.32212743163108826, -0.25761082768440247, 0.021819867193698883, 0.0031470954418182373, 0.11095715314149857, 0.029794905334711075, 0.08109725266695023, 0.35500869154930115, 0.09898970276117325, 0.15385349094867706, 0.03743872046470642, -0.32177644968032837, -0.5004732012748718, 0.08627443760633469, -0.26726019382476807, 0.06998787820339203, 1.2099153995513916, -0.0076699042692780495, 0.0005872270558029413, 0.0014740596525371075]} +{"t": 11.5842, "q": [-0.13772249221801758, 0.006175124552100897, -0.0058388663455843925, 0.31584665179252625, -0.17615993320941925, -0.010278385132551193, -0.07925226539373398, -0.03068813681602478, 0.017061274498701096, 0.32207632064819336, -0.257602334022522, 0.021805383265018463, 0.003240838646888733, 0.11094202101230621, 0.029805351048707962, 0.08151669800281525, 0.35922715067863464, 0.0954064205288887, 0.15362578630447388, 0.05119660869240761, -0.3265341818332672, -0.5002215504646301, 0.08660999685525894, -0.2640604078769684, 0.06998787820339203, 1.2099274396896362, -0.0076579200103878975, 0.0005872270558029413, 0.0014740596525371075]} +{"t": 11.6009, "q": [-0.13776510953903198, 0.006115469615906477, -0.005865650251507759, 0.31583812832832336, -0.17614728212356567, -0.010299578309059143, -0.0792863517999649, -0.030713703483343124, 0.017007706686854362, 0.3220166563987732, -0.257602334022522, 0.021805383265018463, 0.003347973804920912, 0.11094202101230621, 0.029805351048707962, 0.08167249709367752, 0.3625587522983551, 0.09149955958127975, 0.15350593626499176, 0.062317971140146255, -0.33011746406555176, -0.5000417828559875, 0.08700547367334366, -0.2601895034313202, 0.07001184672117233, 1.2099393606185913, -0.0076818885281682014, 0.0006231797160580754, 0.0014620755100622773]} +{"t": 11.6178, "q": [-0.13776510953903198, 0.0060472930781543255, -0.005865650251507759, 0.3157784640789032, -0.1761472076177597, -0.010285421274602413, -0.07926931232213974, -0.030764836817979813, 0.017021099105477333, 0.321956992149353, -0.25761905312538147, 0.021805541589856148, 0.003481892868876457, 0.11093445122241974, 0.029810573905706406, 0.08174440264701843, 0.3632778227329254, 0.0902412161231041, 0.15273894369602203, 0.0746137872338295, -0.33196303248405457, -0.4998500645160675, 0.08732905238866806, -0.256318598985672, 0.07004779577255249, 1.209951400756836, -0.0076459357514977455, 0.0005752427969127893, 0.0014740596525371075]} +{"t": 11.6345, "q": [-0.13779066503047943, 0.00589389493688941, -0.005865650251507759, 0.31583812832832336, -0.17615564167499542, -0.010271290317177773, -0.0792437419295311, -0.030884146690368652, 0.01698092371225357, 0.32194846868515015, -0.25761082768440247, 0.021819867193698883, 0.0035220684949308634, 0.11094938218593597, 0.02980956621468067, 0.08184027671813965, 0.3628104329109192, 0.08980978280305862, 0.15182815492153168, 0.08317052572965622, -0.33290979266166687, -0.49956244230270386, 0.08750881254673004, -0.25273531675338745, 0.0701197013258934, 1.2099393606185913, -0.0076579200103878975, 0.0005872270558029413, 0.0014740596525371075]} +{"t": 11.6513, "q": [-0.13783328235149384, 0.005808673333376646, -0.0058388663455843925, 0.31576141715049744, -0.1761557012796402, -0.010285455733537674, -0.07923521846532822, -0.030960844829678535, 0.01695414073765278, 0.32190585136413574, -0.257606565952301, 0.021812615916132927, 0.0036292036529630423, 0.11092688143253326, 0.02981579676270485, 0.08192416280508041, 0.3621872663497925, 0.0896899402141571, 0.15080949664115906, 0.09171527624130249, -0.3333292305469513, -0.4992987811565399, 0.08758071810007095, -0.24906815588474274, 0.07013168931007385, 1.2099872827529907, -0.0076459357514977455, 0.0005872270558029413, 0.0014740596525371075]} +{"t": 11.6681, "q": [-0.13787588477134705, 0.005731974262744188, -0.005852258298546076, 0.31579551100730896, -0.17614290118217468, -0.0102783078327775, -0.07919260859489441, -0.031020499765872955, 0.016940748319029808, 0.3219143748283386, -0.25761494040489197, 0.02181270532310009, 0.00388364982791245, 0.11090439558029175, 0.029822032898664474, 0.08194813132286072, 0.3613843023777008, 0.08982177078723907, 0.15022225677967072, 0.09734786301851273, -0.3334251046180725, -0.49896320700645447, 0.08768857270479202, -0.24524518847465515, 0.07005978375673294, 1.2099872827529907, -0.0076459357514977455, 0.0005752427969127893, 0.0014740596525371075]} +{"t": 11.6848, "q": [-0.13791850209236145, 0.005663797724992037, -0.005865650251507759, 0.3157784640789032, -0.17615993320941925, -0.010278385132551193, -0.0791499987244606, -0.031080154702067375, 0.016913963481783867, 0.3219228982925415, -0.25761082768440247, 0.021819867193698883, 0.0039506093598902225, 0.11081463098526001, 0.029837539419531822, 0.08074971288442612, 0.35902342200279236, 0.08991764485836029, 0.15004250407218933, 0.10323211550712585, -0.33346107602119446, -0.4987594783306122, 0.08783238381147385, -0.24088293313980103, 0.07005978375673294, 1.2100352048873901, -0.0076818885281682014, 0.0005992112564854324, 0.0014740596525371075]} +{"t": 11.7015, "q": [-0.13795259594917297, 0.005646753590553999, -0.005879042204469442, 0.3157784640789032, -0.17615142464637756, -0.010278359986841679, -0.07913295924663544, -0.031080154702067375, 0.016927355900406837, 0.32193994522094727, -0.25761082768440247, 0.021819867193698883, 0.004004176706075668, 0.11075514554977417, 0.029832154512405396, 0.07977898418903351, 0.3554641008377075, 0.08991764485836029, 0.14970694482326508, 0.10837335139513016, -0.33350899815559387, -0.49856773018836975, 0.08795222640037537, -0.23623304069042206, 0.07001184672117233, 1.2100831270217896, -0.0076459357514977455, 0.0005992112564854324, 0.0014860439114272594]} +{"t": 11.7184, "q": [-0.13796110451221466, 0.005663797724992037, -0.005825474392622709, 0.3157699406147003, -0.1761557012796402, -0.010285455733537674, -0.07913295924663544, -0.031071633100509644, 0.01699431613087654, 0.3219740390777588, -0.25760242342948914, 0.021819796413183212, 0.0038300822488963604, 0.11070994287729263, 0.029854053631424904, 0.07956327497959137, 0.35155725479125977, 0.08991764485836029, 0.14944328367710114, 0.11031479388475418, -0.3335209786891937, -0.49849584698677063, 0.0881439745426178, -0.2320505529642105, 0.07005978375673294, 1.2100831270217896, -0.0076818885281682014, 0.0005872270558029413, 0.0014740596525371075]} +{"t": 11.7352, "q": [-0.13792702555656433, 0.005612664390355349, -0.00579869095236063, 0.3157784640789032, -0.17615564167499542, -0.010271290317177773, -0.07913295924663544, -0.03111424297094345, 0.017034491524100304, 0.3220166563987732, -0.25760242342948914, 0.021819796413183212, 0.0036158119328320026, 0.11070258915424347, 0.029849844053387642, 0.07927565276622772, 0.34652388095855713, 0.0899416133761406, 0.14934740960597992, 0.11066233366727829, -0.3335329592227936, -0.49844789505004883, 0.08851549029350281, -0.22772425413131714, 0.07005978375673294, 1.2100831270217896, -0.0076699042692780495, 0.0005752427969127893, 0.0014740596525371075]} +{"t": 11.7519, "q": [-0.13787588477134705, 0.005561531987041235, -0.00579869095236063, 0.31580403447151184, -0.17615993320941925, -0.010278385132551193, -0.07908182591199875, -0.031182419508695602, 0.017034491524100304, 0.3220677971839905, -0.2575981914997101, 0.0218125618994236, 0.0035220684949308634, 0.11069564521312714, 0.02982676587998867, 0.07877231389284134, 0.33998048305511475, 0.08995359390974045, 0.14905978739261627, 0.11067432165145874, -0.33348503708839417, -0.49841195344924927, 0.08893493562936783, -0.22339794039726257, 0.07005978375673294, 1.2100951671600342, -0.0076579200103878975, 0.0005872270558029413, 0.0014740596525371075]} +{"t": 11.7686, "q": [-0.1378929316997528, 0.005553010385483503, -0.00579869095236063, 0.31580403447151184, -0.17616842687129974, -0.010278419591486454, -0.0790562555193901, -0.03116537630558014, 0.017034491524100304, 0.32208484411239624, -0.2576066851615906, 0.02182704769074917, 0.003575636073946953, 0.11069544404745102, 0.029836203902959824, 0.07807722687721252, 0.332753986120224, 0.0899416133761406, 0.14908376336097717, 0.11057844758033752, -0.3334011435508728, -0.4983999729156494, 0.0896659716963768, -0.2192993313074112, 0.07001184672117233, 1.2101070880889893, -0.0076339514926075935, 0.0005872270558029413, 0.0014021543320268393]} +{"t": 11.7854, "q": [-0.13791850209236145, 0.005561531987041235, -0.00579869095236063, 0.31583812832832336, -0.1761472076177597, -0.010285421274602413, -0.07908182591199875, -0.031156854704022408, 0.017021099105477333, 0.3221103847026825, -0.2575981914997101, 0.0218125618994236, 0.003589028026908636, 0.11068051308393478, 0.029837211593985558, 0.07745404541492462, 0.32522791624069214, 0.08997756242752075, 0.14916765689849854, 0.11037471145391464, -0.33320939540863037, -0.49834004044532776, 0.09030113369226456, -0.21554827690124512, 0.07004779577255249, 1.2101670503616333, -0.0076339514926075935, 0.0005992112564854324, 0.0010186590952798724]} +{"t": 11.8023, "q": [-0.1379355490207672, 0.005570054519921541, -0.00579869095236063, 0.31583812832832336, -0.17615993320941925, -0.010278385132551193, -0.07907330244779587, -0.031148331239819527, 0.017074666917324066, 0.32209333777427673, -0.2575981914997101, 0.0218125618994236, 0.0035220684949308634, 0.11065801978111267, 0.029843447729945183, 0.07680690288543701, 0.3177976906299591, 0.09003748744726181, 0.1491796374320984, 0.11021891981363297, -0.33306559920310974, -0.4983040988445282, 0.0908883661031723, -0.21317540109157562, 0.06999985873699188, 1.2102389335632324, -0.0076339514926075935, 0.0005992112564854324, 0.0006351639167405665]} +{"t": 11.819, "q": [-0.13792702555656433, 0.005553010385483503, -0.0057719070464372635, 0.31584665179252625, -0.1761557012796402, -0.010285455733537674, -0.0790562555193901, -0.031139809638261795, 0.017088059335947037, 0.3221018612384796, -0.2575981914997101, 0.0218125618994236, 0.0035086767747998238, 0.11064372211694717, 0.02981615997850895, 0.07586014270782471, 0.3092169761657715, 0.0902651846408844, 0.1492035984992981, 0.10940399020910263, -0.33306559920310974, -0.4981482923030853, 0.09157146513462067, -0.21227657794952393, 0.06988001614809036, 1.210250973701477, -0.0076219672337174416, 0.0005872270558029413, 0.0002037318336078897]} +{"t": 11.8357, "q": [-0.13791850209236145, 0.005510399583727121, -0.0057719070464372635, 0.3158807158470154, -0.17616413533687592, -0.010271324776113033, -0.07902216911315918, -0.031182419508695602, 0.017061274498701096, 0.3221189081668854, -0.2576064467430115, 0.02179822139441967, 0.003589028026908636, 0.11057624220848083, 0.029834862798452377, 0.07498529553413391, 0.3010437488555908, 0.09020526707172394, 0.14916765689849854, 0.1085890680551529, -0.3331015408039093, -0.4980763792991638, 0.09217067807912827, -0.21234849095344543, 0.0698200985789299, 1.2102749347686768, -0.0076579200103878975, 0.0005632585962302983, 7.190534961409867e-05]} +{"t": 11.8527, "q": [-0.1379440724849701, 0.005476311314851046, -0.0057719070464372635, 0.3159148097038269, -0.17616420984268188, -0.010285480879247189, -0.07903069257736206, -0.03123355284333229, 0.017034491524100304, 0.3221189081668854, -0.25760242342948914, 0.021819796413183212, 0.003736338810995221, 0.1103815883398056, 0.02987632155418396, 0.07432616502046585, 0.29130056500434875, 0.09031312167644501, 0.1491796374320984, 0.10763032734394073, -0.33311352133750916, -0.4979805052280426, 0.09303353726863861, -0.2127080112695694, 0.0697961300611496, 1.210250973701477, -0.0076459357514977455, 0.0005752427969127893, 7.190534961409867e-05]} +{"t": 11.8695, "q": [-0.13800372183322906, 0.005510399583727121, -0.005812082905322313, 0.31593185663223267, -0.1761472076177597, -0.010285421274602413, -0.07903069257736206, -0.031216509640216827, 0.01698092371225357, 0.3221615254878998, -0.2575981914997101, 0.0218125618994236, 0.00388364982791245, 0.11003011465072632, 0.02993311919271946, 0.07337941229343414, 0.28104206919670105, 0.09057677537202835, 0.1491556614637375, 0.10579673945903778, -0.3330775797367096, -0.4978606700897217, 0.09395632892847061, -0.21336714923381805, 0.06967628747224808, 1.210250973701477, -0.0076219672337174416, 0.0005512743373401463, 0.00013182648399379104]} +{"t": 11.8862, "q": [-0.13795259594917297, 0.005553010385483503, -0.005852258298546076, 0.31599152088165283, -0.17615564167499542, -0.010271290317177773, -0.07900512218475342, -0.03117389790713787, 0.016940748319029808, 0.322144478559494, -0.2575981914997101, 0.0218125618994236, 0.003990784753113985, 0.10962818562984467, 0.02991327829658985, 0.07197725772857666, 0.27071166038513184, 0.09193099290132523, 0.14911971986293793, 0.10323211550712585, -0.33294573426246643, -0.4976329803466797, 0.09414807707071304, -0.21379858255386353, 0.06971223652362823, 1.2102389335632324, -0.0076459357514977455, 0.0005512743373401463, 0.0001917476038215682]} +{"t": 11.9029, "q": [-0.1379440724849701, 0.005587098654359579, -0.005919218063354492, 0.31606820225715637, -0.17616413533687592, -0.010271324776113033, -0.07897103577852249, -0.03111424297094345, 0.016940748319029808, 0.3222041428089142, -0.2575981914997101, 0.0218125618994236, 0.00416487967595458, 0.10934608429670334, 0.029866386204957962, 0.07021557539701462, 0.2610164284706116, 0.09250623732805252, 0.14911971986293793, 0.09886986017227173, -0.332753986120224, -0.4973573386669159, 0.09456752240657806, -0.2139783352613449, 0.06966429948806763, 1.2102868556976318, -0.0076459357514977455, 0.0005752427969127893, 0.00025166873820126057]} +{"t": 11.9196, "q": [-0.13795259594917297, 0.005595620255917311, -0.006012961268424988, 0.3160597085952759, -0.17615999281406403, -0.01029255148023367, -0.07894547283649445, -0.031088676303625107, 0.016860397532582283, 0.32217857241630554, -0.25760218501091003, 0.021790986880660057, 0.004660379607230425, 0.10910721868276596, 0.029882175847887993, 0.0694725513458252, 0.25140509009361267, 0.09339306503534317, 0.14911971986293793, 0.09521467238664627, -0.33244240283966064, -0.497201532125473, 0.0948072075843811, -0.2140023112297058, 0.06971223652362823, 1.2102868556976318, -0.0076219672337174416, 0.0005752427969127893, 0.00028762139845639467]} +{"t": 11.9364, "q": [-0.1379440724849701, 0.005612664390355349, -0.006066528614610434, 0.3161108195781708, -0.17615564167499542, -0.010271290317177773, -0.07893694937229156, -0.031063111498951912, 0.01678004488348961, 0.3221870958805084, -0.2575896978378296, 0.02179809659719467, 0.004995177034288645, 0.10897158831357956, 0.029947571456432343, 0.06932874023914337, 0.24148213863372803, 0.09357283264398575, 0.14914368093013763, 0.08990565687417984, -0.33241844177246094, -0.49702176451683044, 0.09479521960020065, -0.2139303982257843, 0.06965231895446777, 1.2102988958358765, -0.0076579200103878975, 0.0005872270558029413, 0.00027563716867007315]} +{"t": 11.9531, "q": [-0.13799519836902618, 0.005638231057673693, -0.006066528614610434, 0.316093772649765, -0.17615142464637756, -0.010278359986841679, -0.07897955924272537, -0.031063111498951912, 0.01679343730211258, 0.32213595509529114, -0.2575981914997101, 0.0218125618994236, 0.005329974461346865, 0.10892698913812637, 0.029941080138087273, 0.06936469674110413, 0.2304566502571106, 0.09451958537101746, 0.1491556614637375, 0.08589094132184982, -0.3324064612388611, -0.4969139099121094, 0.0947832390666008, -0.2138824611902237, 0.06964033097028732, 1.2102988958358765, -0.0076219672337174416, 0.0005872270558029413, 0.00028762139845639467]} +{"t": 11.9698, "q": [-0.13797815144062042, 0.005561531987041235, -0.00605313666164875, 0.31608524918556213, -0.17615564167499542, -0.010271290317177773, -0.07893694937229156, -0.031097199767827988, 0.01678004488348961, 0.322144478559494, -0.25760218501091003, 0.021790986880660057, 0.005637987982481718, 0.10891225934028625, 0.029932625591754913, 0.06935270875692368, 0.21965886652469635, 0.09481918811798096, 0.14907178282737732, 0.07831691205501556, -0.3324304223060608, -0.4967101812362671, 0.09471133351325989, -0.21383452415466309, 0.06961636245250702, 1.2103108167648315, -0.0076818885281682014, 0.0005992112564854324, 0.00028762139845639467]} +{"t": 11.9865, "q": [-0.13796962797641754, 0.005535965319722891, -0.006106704473495483, 0.316093772649765, -0.1761598438024521, -0.010264229029417038, -0.07890285551548004, -0.031131288036704063, 0.016739869490265846, 0.322144478559494, -0.2575981914997101, 0.0218125618994236, 0.005986177362501621, 0.10891225934028625, 0.029932625591754913, 0.06948453933000565, 0.20777051150798798, 0.09541840106248856, 0.14910772442817688, 0.07051517814397812, -0.33241844177246094, -0.49654239416122437, 0.09467537701129913, -0.21384651958942413, 0.06971223652362823, 1.2103108167648315, -0.0076818885281682014, 0.0005872270558029413, 0.00028762139845639467]} +{"t": 12.0033, "q": [-0.13801224529743195, 0.005518921185284853, -0.006106704473495483, 0.3161108195781708, -0.17615149915218353, -0.010292517021298409, -0.07888581603765488, -0.031156854704022408, 0.016726477071642876, 0.3221189081668854, -0.25760242342948914, 0.021819796413183212, 0.006334366742521524, 0.10888995975255966, 0.029929382726550102, 0.06956842541694641, 0.19669708609580994, 0.09586181491613388, 0.14909574389457703, 0.06484664231538773, -0.3324543833732605, -0.49619486927986145, 0.09472331404685974, -0.21383452415466309, 0.06968826800584793, 1.2103348970413208, -0.0076579200103878975, 0.0006231797160580754, 0.00028762139845639467]} +{"t": 12.02, "q": [-0.13805484771728516, 0.005510399583727121, -0.00613348837941885, 0.31607672572135925, -0.17615142464637756, -0.010278359986841679, -0.07889433950185776, -0.03117389790713787, 0.016713086515665054, 0.3221018612384796, -0.2576066851615906, 0.02182704769074917, 0.00672273151576519, 0.10884576290845871, 0.02990402653813362, 0.06961636245250702, 0.18461698293685913, 0.09698833525180817, 0.14876018464565277, 0.05632586032152176, -0.332526296377182, -0.4953799247741699, 0.09467537701129913, -0.21383452415466309, 0.06965231895446777, 1.2103707790374756, -0.0076818885281682014, 0.0006231797160580754, 0.00028762139845639467]} +{"t": 12.0368, "q": [-0.13807189464569092, 0.005459266249090433, -0.006187055725604296, 0.316093772649765, -0.17615993320941925, -0.010278385132551193, -0.07885172963142395, -0.031207986176013947, 0.01665951870381832, 0.3221103847026825, -0.2575896978378296, 0.02179809659719467, 0.0070307450369000435, 0.10879401117563248, 0.02988388016819954, 0.06938866525888443, 0.1727406233549118, 0.09863017499446869, 0.14783740043640137, 0.04727776721119881, -0.3325742483139038, -0.49412158131599426, 0.09465140849351883, -0.213858500123024, 0.06973620504140854, 1.21040678024292, -0.0076339514926075935, 0.0005992112564854324, 0.0002996056282427162]} +{"t": 12.0536, "q": [-0.1380292922258377, 0.005459266249090433, -0.0061736637726426125, 0.3161363899707794, -0.1761598438024521, -0.010264229029417038, -0.07885172963142395, -0.03122503124177456, 0.01665951870381832, 0.32213595509529114, -0.25759392976760864, 0.021805329248309135, 0.0070173535495996475, 0.10877211391925812, 0.029861772432923317, 0.06901714950799942, 0.16024108231067657, 0.10095511376857758, 0.1471063643693924, 0.0379180870950222, -0.3325982093811035, -0.49200037121772766, 0.09465140849351883, -0.21383452415466309, 0.06973620504140854, 1.2103947401046753, -0.0076699042692780495, 0.0006111955153755844, 0.00028762139845639467]} +{"t": 12.0703, "q": [-0.13802076876163483, 0.0054507446475327015, -0.006146880332380533, 0.31611934304237366, -0.17615993320941925, -0.010278385132551193, -0.07885172963142395, -0.031216509640216827, 0.016726477071642876, 0.3221189081668854, -0.2576066851615906, 0.02182704769074917, 0.006749515421688557, 0.1087350845336914, 0.029850075021386147, 0.06811833381652832, 0.14629143476486206, 0.10453839600086212, 0.14656707644462585, 0.028031103312969208, -0.33261018991470337, -0.48920807242393494, 0.09463942795991898, -0.21379858255386353, 0.06965231895446777, 1.210418701171875, -0.0076579200103878975, 0.0006231797160580754, 0.00028762139845639467]} +{"t": 12.0871, "q": [-0.13800372183322906, 0.005459266249090433, -0.006146880332380533, 0.31612786650657654, -0.17616413533687592, -0.010271324776113033, -0.07884320616722107, -0.031207986176013947, 0.016753261908888817, 0.32212743163108826, -0.25760242342948914, 0.021819796413183212, 0.006588812451809645, 0.10872812569141388, 0.02982698753476143, 0.06629673391580582, 0.1335761696100235, 0.10834938287734985, 0.14644722640514374, 0.01912682317197323, -0.3325982093811035, -0.48625993728637695, 0.09468736499547958, -0.21378658711910248, 0.06953247636556625, 1.2104426622390747, -0.0076459357514977455, 0.0006111955153755844, 0.00027563716867007315]} +{"t": 12.1038, "q": [-0.13800372183322906, 0.005467788781970739, -0.0061736637726426125, 0.3161363899707794, -0.17615564167499542, -0.010271290317177773, -0.07883468270301819, -0.031190942972898483, 0.016739869490265846, 0.3221189081668854, -0.25759392976760864, 0.021805329248309135, 0.006548637058585882, 0.10872812569141388, 0.02982698753476143, 0.06397179514169693, 0.12180766463279724, 0.1122562363743782, 0.14645922183990479, 0.00900015328079462, -0.33256223797798157, -0.48391103744506836, 0.09468736499547958, -0.21378658711910248, 0.0695204883813858, 1.2104666233062744, -0.0076579200103878975, 0.0005992112564854324, 0.00027563716867007315]} +{"t": 12.1205, "q": [-0.13802076876163483, 0.005510399583727121, -0.006187055725604296, 0.31617048382759094, -0.17615564167499542, -0.010271290317177773, -0.07884320616722107, -0.03116537630558014, 0.016699694097042084, 0.322144478559494, -0.25759392976760864, 0.021805329248309135, 0.0067896912805736065, 0.10873569548130035, 0.02982178144156933, 0.060867879539728165, 0.11187274008989334, 0.1155518963932991, 0.1465071588754654, -0.00011984225420746952, -0.33256223797798157, -0.4816819727420807, 0.09471133351325989, -0.21377460658550262, 0.06955644488334656, 1.2104547023773193, -0.0076818885281682014, 0.0006111955153755844, 0.00027563716867007315]} +{"t": 12.1372, "q": [-0.13806337118148804, 0.005510399583727121, -0.006254015490412712, 0.3161790072917938, -0.17615999281406403, -0.01029255148023367, -0.07885172963142395, -0.031156854704022408, 0.016565775498747826, 0.32217004895210266, -0.25760242342948914, 0.021819796413183212, 0.007003961596637964, 0.10872076451778412, 0.029822763055562973, 0.05892643705010414, 0.10579673945903778, 0.1173255667090416, 0.14659103751182556, -0.009635317139327526, -0.33258622884750366, -0.48049551248550415, 0.09473530203104019, -0.21378658711910248, 0.06958041340112686, 1.2104547023773193, -0.0076818885281682014, 0.0006231797160580754, 0.00027563716867007315]} +{"t": 12.154, "q": [-0.13809746503829956, 0.005484832916408777, -0.006280798930674791, 0.3161875307559967, -0.17615564167499542, -0.010271290317177773, -0.07884320616722107, -0.03117389790713787, 0.01661934331059456, 0.32217857241630554, -0.2575981914997101, 0.0218125618994236, 0.00709770480170846, 0.10872076451778412, 0.029822763055562973, 0.05601426959037781, 0.09939716756343842, 0.121843621134758, 0.14673484861850739, -0.01907888613641262, -0.3325742483139038, -0.47906941175460815, 0.09469934552907944, -0.21382254362106323, 0.06956842541694641, 1.2104666233062744, -0.0076579200103878975, 0.0005992112564854324, 0.00028762139845639467]} +{"t": 12.1708, "q": [-0.13809746503829956, 0.005476311314851046, -0.006254015490412712, 0.31617048382759094, -0.17616420984268188, -0.010285480879247189, -0.07884320616722107, -0.031199464574456215, 0.01665951870381832, 0.322144478559494, -0.25759392976760864, 0.021805329248309135, 0.007084312848746777, 0.10870583355426788, 0.02982374280691147, 0.05216733366250992, 0.09399227797985077, 0.1284349411725998, 0.14693859219551086, -0.02973286248743534, -0.33261018991470337, -0.4778350293636322, 0.09472331404685974, -0.21382254362106323, 0.06953247636556625, 1.2104547023773193, -0.0076579200103878975, 0.0005992112564854324, 0.00028762139845639467]} +{"t": 12.1877, "q": [-0.13813155889511108, 0.005433700513094664, -0.0061736637726426125, 0.31616196036338806, -0.17615993320941925, -0.010278385132551193, -0.078877292573452, -0.031250596046447754, 0.016726477071642876, 0.3221615254878998, -0.2575981914997101, 0.0218125618994236, 0.006508461199700832, 0.10841862857341766, 0.030002664774656296, 0.04960270971059799, 0.09154749661684036, 0.1350981742143631, 0.1510971188545227, -0.04043477773666382, -0.3316993713378906, -0.47715193033218384, 0.0947592705488205, -0.21379858255386353, 0.06959239393472672, 1.2104666233062744, -0.007705857045948505, 0.0005872270558029413, 0.0003115898580290377]} +{"t": 12.2044, "q": [-0.1381656378507614, 0.0053484789095819, -0.005959393456578255, 0.31606820225715637, -0.17616842687129974, -0.010278419591486454, -0.07896251231431961, -0.03129320964217186, 0.016940748319029808, 0.32204222679138184, -0.25760242342948914, 0.021819796413183212, 0.006012961268424988, 0.10797228664159775, 0.030300322920084, 0.04803277552127838, 0.09154749661684036, 0.14097043871879578, 0.15481221675872803, -0.050273824483156204, -0.3302493095397949, -0.47644487023353577, 0.09471133351325989, -0.21371468901634216, 0.06956842541694641, 1.2104666233062744, -0.0076579200103878975, 0.0005752427969127893, 0.00033555831760168076]} +{"t": 12.2211, "q": [-0.13819120824337006, 0.005135425832122564, -0.005785298999398947, 0.3159574270248413, -0.17616842687129974, -0.010278419591486454, -0.07902216911315918, -0.031557392328977585, 0.017047883942723274, 0.321956992149353, -0.25759392976760864, 0.021805329248309135, 0.0055978125892579556, 0.107321597635746, 0.03073851391673088, 0.04567188397049904, 0.09134376794099808, 0.14764565229415894, 0.16009727120399475, -0.05976533144712448, -0.3286553919315338, -0.4758456349372864, 0.09462743997573853, -0.2136787325143814, 0.06953247636556625, 1.2104666233062744, -0.0076579200103878975, 0.0005872270558029413, 0.00037151097785681486]} +{"t": 12.2378, "q": [-0.13819120824337006, 0.004871240351349115, -0.005704947747290134, 0.3159233331680298, -0.1761767864227295, -0.010250131599605083, -0.07903921604156494, -0.03183010220527649, 0.017021099105477333, 0.3218717873096466, -0.2575981914997101, 0.0218125618994236, 0.005396933760493994, 0.1065041571855545, 0.031299933791160583, 0.04376639053225517, 0.08915065228939056, 0.15430888533592224, 0.16408801078796387, -0.07053914666175842, -0.32712140679359436, -0.47503072023391724, 0.09469934552907944, -0.2136068344116211, 0.0695204883813858, 1.2104547023773193, -0.0076699042692780495, 0.0005752427969127893, 0.00041944789700210094]} +{"t": 12.2546, "q": [-0.1381656378507614, 0.004555922467261553, -0.00546389352530241, 0.3159148097038269, -0.17618529498577118, -0.010250166058540344, -0.07911591231822968, -0.03219655156135559, 0.017088059335947037, 0.32161611318588257, -0.2576066851615906, 0.02182704769074917, 0.005236231256276369, 0.10555975139141083, 0.031873639672994614, 0.04195677116513252, 0.08533966541290283, 0.1588628888130188, 0.16846226155757904, -0.08236757665872574, -0.32619863748550415, -0.47410792112350464, 0.09465140849351883, -0.21347500383853912, 0.0694725513458252, 1.210418701171875, -0.0076579200103878975, 0.0005752427969127893, 0.00046738478704355657]} +{"t": 12.2713, "q": [-0.13819973170757294, 0.00424060458317399, -0.005276407115161419, 0.31589776277542114, -0.17618949711322784, -0.01024310477077961, -0.07920113205909729, -0.03262265771627426, 0.017181802541017532, 0.3215053379535675, -0.2576066851615906, 0.02182704769074917, 0.0052094473503530025, 0.10443626344203949, 0.032449085265398026, 0.04078231751918793, 0.07985088974237442, 0.16297347843647003, 0.1715182363986969, -0.09311743080615997, -0.32488036155700684, -0.4733169674873352, 0.09462743997573853, -0.21331921219825745, 0.06955644488334656, 1.210418701171875, -0.0076699042692780495, 0.0005992112564854324, 0.0005392901366576552]} +{"t": 12.288, "q": [-0.1381656378507614, 0.0038571092300117016, -0.005222839303314686, 0.3158807158470154, -0.17618942260742188, -0.01022894773632288, -0.0792437419295311, -0.033006154000759125, 0.01714162714779377, 0.32139453291893005, -0.25760242342948914, 0.021819796413183212, 0.005289798602461815, 0.10310995578765869, 0.03309723362326622, 0.03952397406101227, 0.0734153613448143, 0.16816264390945435, 0.1732679307460785, -0.10694722831249237, -0.32363399863243103, -0.4725379943847656, 0.09469934552907944, -0.21313944458961487, 0.06950850784778595, 1.2104426622390747, -0.0076579200103878975, 0.0005872270558029413, 0.0006111955153755844]} +{"t": 12.3048, "q": [-0.13811451196670532, 0.003618489485234022, -0.00516927195712924, 0.3159148097038269, -0.17619365453720093, -0.010221878066658974, -0.07926931232213974, -0.03327886015176773, 0.01711484231054783, 0.3212326169013977, -0.2576025724411011, 0.02183420956134796, 0.005316582508385181, 0.10163414478302002, 0.03375387564301491, 0.03772634267807007, 0.06574545800685883, 0.17438246309757233, 0.17562882602214813, -0.12215520441532135, -0.322291761636734, -0.4713156223297119, 0.09471133351325989, -0.21274396777153015, 0.06956842541694641, 1.2104426622390747, -0.0076818885281682014, 0.0005752427969127893, 0.0006950850365683436]} +{"t": 12.3217, "q": [-0.13800372183322906, 0.003413958940654993, -0.005075528286397457, 0.3159233331680298, -0.1761978566646576, -0.01021481677889824, -0.07926931232213974, -0.033483389765024185, 0.017101449891924858, 0.3210877478122711, -0.2576066851615906, 0.02182704769074917, 0.005664771888405085, 0.10025511682033539, 0.03442654013633728, 0.03538941591978073, 0.057739995419979095, 0.1811295747756958, 0.17837320268154144, -0.13720738887786865, -0.3205420672893524, -0.46966177225112915, 0.09489109367132187, -0.2124084085226059, 0.06953247636556625, 1.2104547023773193, -0.0076579200103878975, 0.0005872270558029413, 0.0007310377550311387]} +{"t": 12.3384, "q": [-0.13805484771728516, 0.003166817594319582, -0.0051424880512058735, 0.31589776277542114, -0.1761978566646576, -0.01021481677889824, -0.07919260859489441, -0.03369644284248352, 0.016887180507183075, 0.3210536539554596, -0.2576066851615906, 0.02182704769074917, 0.006548637058585882, 0.09837210923433304, 0.03565481677651405, 0.03269296512007713, 0.04948286712169647, 0.18822424113750458, 0.18035060167312622, -0.1549200862646103, -0.3170187175273895, -0.4670732021331787, 0.09526260942220688, -0.21201293170452118, 0.06966429948806763, 1.2105745077133179, -0.0076579200103878975, 0.0006231797160580754, 0.000874848454259336]} +{"t": 12.3552, "q": [-0.13818268477916718, 0.0030389861203730106, -0.005222839303314686, 0.3158551752567291, -0.1761978566646576, -0.01021481677889824, -0.07927782833576202, -0.033841319382190704, 0.01663273386657238, 0.32084059715270996, -0.2575984597206116, 0.021841371431946754, 0.006829866673797369, 0.09660205245018005, 0.03683112934231758, 0.029936594888567924, 0.04026699811220169, 0.19811122119426727, 0.18189656734466553, -0.17224927246570587, -0.31147000193595886, -0.4644126892089844, 0.09509482979774475, -0.2115814983844757, 0.06967628747224808, 1.2105625867843628, -0.0076339514926075935, 0.0005872270558029413, 0.0009707222343422472]} +{"t": 12.372, "q": [-0.13818268477916718, 0.0029963753186166286, -0.005196055397391319, 0.31593185663223267, -0.1761978566646576, -0.01021481677889824, -0.07926931232213974, -0.03389245271682739, 0.016699694097042084, 0.3205423355102539, -0.257610946893692, 0.021834280341863632, 0.006896826438605785, 0.09477139264345169, 0.03806570917367935, 0.027120301499962807, 0.031614385545253754, 0.20587700605392456, 0.18476079404354095, -0.19017766416072845, -0.30640068650245667, -0.46169227361679077, 0.09499895572662354, -0.21119800209999084, 0.06961636245250702, 1.2105625867843628, -0.0076579200103878975, 0.0005992112564854324, 0.0009946906939148903]} +{"t": 12.3888, "q": [-0.13810598850250244, 0.0029793311841785908, -0.005196055397391319, 0.3158551752567291, -0.17620636522769928, -0.0102148512378335, -0.07927782833576202, -0.03395210951566696, 0.016713086515665054, 0.32048267126083374, -0.257610946893692, 0.021834280341863632, 0.006776299327611923, 0.09294773638248444, 0.03932942822575569, 0.02359693869948387, 0.02552640065550804, 0.21244436502456665, 0.18909908831119537, -0.20500215888023376, -0.30300915241241455, -0.4611530005931854, 0.09497498720884323, -0.2108624428510666, 0.06962835043668747, 1.2105625867843628, -0.0076818885281682014, 0.0005992112564854324, 0.0010785802733153105]} +{"t": 12.4055, "q": [-0.13813155889511108, 0.0029878527857363224, -0.00516927195712924, 0.31575289368629456, -0.17621050775051117, -0.010193624533712864, -0.07932896167039871, -0.03395210951566696, 0.016672909259796143, 0.32044005393981934, -0.257610946893692, 0.021834280341863632, 0.006588812451809645, 0.09118484705686569, 0.04054974392056465, 0.01871936023235321, 0.01746101677417755, 0.2195989489555359, 0.1928142011165619, -0.21853235363960266, -0.29942587018013, -0.46042194962501526, 0.09504689276218414, -0.21037109196186066, 0.06967628747224808, 1.2105625867843628, -0.0076699042692780495, 0.0005992112564854324, 0.0011265171924605966]} +{"t": 12.4224, "q": [-0.13819120824337006, 0.003004897851496935, -0.005222839303314686, 0.31562507152557373, -0.17620199918746948, -0.010193598456680775, -0.07934600859880447, -0.033909495919942856, 0.01661934331059456, 0.3202269971370697, -0.25761517882347107, 0.021841512992978096, 0.0066289883106946945, 0.08946119248867035, 0.041686274111270905, 0.011684619821608067, 0.009934922680258751, 0.22705313563346863, 0.19691281020641327, -0.23486684262752533, -0.2936614453792572, -0.4600864052772522, 0.09487911313772202, -0.20983180403709412, 0.06970025599002838, 1.2105745077133179, -0.0076579200103878975, 0.0005872270558029413, 0.0011744541116058826]} +{"t": 12.4391, "q": [-0.13822530210018158, 0.0030389861203730106, -0.005263015162199736, 0.31548872590065, -0.17620636522769928, -0.0102148512378335, -0.0793800950050354, -0.03387540951371193, 0.016565775498747826, 0.32003098726272583, -0.25761517882347107, 0.021841512992978096, 0.006334366742521524, 0.08775977790355682, 0.042843397706747055, 0.00447011599317193, 0.0026964505668729544, 0.23595741391181946, 0.20023243129253387, -0.24924792349338531, -0.28601551055908203, -0.46007439494132996, 0.094507597386837, -0.2091606855392456, 0.06972422450780869, 1.2105146646499634, -0.0076579200103878975, 0.0005752427969127893, 0.0012104067718610168]} +{"t": 12.4559, "q": [-0.1381656378507614, 0.0030986410565674305, -0.005222839303314686, 0.3153693974018097, -0.1762062907218933, -0.01020069420337677, -0.0794738382101059, -0.03383279964327812, 0.016605950891971588, 0.31993725895881653, -0.257610946893692, 0.021834280341863632, 0.0059995693154633045, 0.08616416901350021, 0.04393584281206131, -0.0024088292848318815, -0.003894873196259141, 0.24481375515460968, 0.20368389785289764, -0.26279008388519287, -0.2809222340583801, -0.46005043387413025, 0.09370465576648712, -0.20838171243667603, 0.06965231895446777, 1.2104426622390747, -0.0076579200103878975, 0.0005752427969127893, 0.0012343751732259989]} +{"t": 12.4726, "q": [-0.13819120824337006, 0.0031582950614392757, -0.005196055397391319, 0.31511375308036804, -0.17621050775051117, -0.010193624533712864, -0.07956758141517639, -0.033790186047554016, 0.016565775498747826, 0.3197582960128784, -0.2576276957988739, 0.02183440327644348, 0.00575851509347558, 0.08488642424345016, 0.04481307044625282, -0.008508799597620964, -0.00771784083917737, 0.24991902709007263, 0.20760273933410645, -0.27458256483078003, -0.2771831452846527, -0.4602302014827728, 0.09327322244644165, -0.20749486982822418, 0.06961636245250702, 1.2103348970413208, -0.0076579200103878975, 0.0005512743373401463, 0.0012223910307511687]} +{"t": 12.4894, "q": [-0.13828495144844055, 0.0031582950614392757, -0.005196055397391319, 0.31474730372428894, -0.176214799284935, -0.01020072028040886, -0.0797891616821289, -0.033790186047554016, 0.016538990661501884, 0.31955376267433167, -0.257610946893692, 0.021834280341863632, 0.0055978125892579556, 0.0842357948422432, 0.045277535915374756, -0.011840414255857468, -0.01091762911528349, 0.25193238258361816, 0.20929251611232758, -0.2806346118450165, -0.27433091402053833, -0.4602421820163727, 0.09308147430419922, -0.2066200226545334, 0.06961636245250702, 1.2102988958358765, -0.0076818885281682014, 0.0005632585962302983, 0.0012223910307511687]} +{"t": 12.5061, "q": [-0.1383105218410492, 0.0031582950614392757, -0.005196055397391319, 0.31432971358299255, -0.17621058225631714, -0.010207789950072765, -0.07996812462806702, -0.033790186047554016, 0.016552383080124855, 0.3192555010318756, -0.25762367248535156, 0.021855978295207024, 0.0056112040765583515, 0.08404519408941269, 0.04548867046833038, -0.013769874349236488, -0.0138417799025774, 0.2526274621486664, 0.2102632373571396, -0.28401416540145874, -0.27240145206451416, -0.4604339301586151, 0.09312941133975983, -0.20540961623191833, 0.06960438191890717, 1.2103468179702759, -0.0076699042692780495, 0.0005752427969127893, 0.0011504855938255787]} +{"t": 12.5228, "q": [-0.13834460079669952, 0.003166817594319582, -0.005196055397391319, 0.3139462172985077, -0.17621058225631714, -0.010207789950072765, -0.0801130011677742, -0.0337987095117569, 0.016498815268278122, 0.3190253973007202, -0.25763192772865295, 0.021841635927557945, 0.00571833923459053, 0.08414829522371292, 0.04555809125304222, -0.014716628938913345, -0.01581917703151703, 0.2523278594017029, 0.21075458824634552, -0.28458940982818604, -0.2718741297721863, -0.46072155237197876, 0.09336909651756287, -0.20413929224014282, 0.0695204883813858, 1.2103947401046753, -0.0076579200103878975, 0.0005872270558029413, 0.0011145329335704446]} +{"t": 12.5396, "q": [-0.1383105218410492, 0.003226472530514002, -0.005236231256276369, 0.313664972782135, -0.17620207369327545, -0.010207755491137505, -0.08031752705574036, -0.03376462310552597, 0.016405072063207626, 0.31900835037231445, -0.25764042139053345, 0.021856103092432022, 0.005785298999398947, 0.08441515266895294, 0.04564698040485382, -0.01601092517375946, -0.018935075029730797, 0.2526993751525879, 0.21103021502494812, -0.28473320603370667, -0.271898090839386, -0.46085336804389954, 0.09348893910646439, -0.20232968032360077, 0.0694965198636055, 1.2104426622390747, -0.0076459357514977455, 0.0005872270558029413, 0.0009467537747696042]} +{"t": 12.5563, "q": [-0.13829347491264343, 0.003388392273336649, -0.005343366414308548, 0.31351158022880554, -0.1762062907218933, -0.01020069420337677, -0.08033457398414612, -0.03363678976893425, 0.016271153464913368, 0.3189827799797058, -0.2576490640640259, 0.0218849815428257, 0.0060933125205338, 0.08465304970741272, 0.0456906221807003, -0.016658073291182518, -0.020972393453121185, 0.25446105003356934, 0.21117402613162994, -0.2848290801048279, -0.2719101011753082, -0.460961252450943, 0.0935608446598053, -0.20046013593673706, 0.06950850784778595, 1.210478663444519, -0.0076818885281682014, 0.0005872270558029413, 0.0007190534961409867]} +{"t": 12.573, "q": [-0.13831904530525208, 0.00363553361967206, -0.005651379935443401, 0.313477486371994, -0.17621487379074097, -0.01021488569676876, -0.08032605051994324, -0.03345782682299614, 0.01596313901245594, 0.3189401626586914, -0.25765305757522583, 0.02186342515051365, 0.00638793408870697, 0.08490478992462158, 0.04578965902328491, -0.016502277925610542, -0.021883195266127586, 0.25658226013183594, 0.21198895573616028, -0.2848290801048279, -0.2710951566696167, -0.46109306812286377, 0.0935848131775856, -0.19886623322963715, 0.06950850784778595, 1.2105026245117188, -0.0076699042692780495, 0.0006231797160580754, 0.0004074636672157794]} +{"t": 12.5898, "q": [-0.1383957415819168, 0.0039167641662061214, -0.005959393456578255, 0.31351158022880554, -0.17619793117046356, -0.010228973813354969, -0.08033457398414612, -0.03338964655995369, 0.01577565260231495, 0.318897545337677, -0.2576570212841034, 0.021841848269104958, 0.006602204404771328, 0.08505953848361969, 0.04588911682367325, -0.016166720539331436, -0.022278673946857452, 0.2593146562576294, 0.21288777887821198, -0.2848290801048279, -0.26965704560279846, -0.46109306812286377, 0.09346497058868408, -0.19761987030506134, 0.06941263377666473, 1.2105026245117188, -0.0076579200103878975, 0.0006231797160580754, 7.190534961409867e-05]} +{"t": 12.6065, "q": [-0.13846391439437866, 0.00426617031916976, -0.006106704473495483, 0.31360533833503723, -0.17620214819908142, -0.010221912525594234, -0.08030048757791519, -0.03328738361597061, 0.015695301815867424, 0.318897545337677, -0.25766128301620483, 0.021849099546670914, 0.006963785737752914, 0.08511891216039658, 0.04590468481183052, -0.016154736280441284, -0.022182801738381386, 0.26197516918182373, 0.21304357051849365, -0.28475716710090637, -0.2682549059391022, -0.46109306812286377, 0.09333314746618271, -0.19728431105613708, 0.06940064579248428, 1.2104905843734741, -0.0076699042692780495, 0.0006111955153755844, -0.000215716048842296]} +{"t": 12.6232, "q": [-0.13842131197452545, 0.004487745929509401, -0.006334366742521524, 0.3137246370315552, -0.17619793117046356, -0.010228973813354969, -0.08024083077907562, -0.03328738361597061, 0.015561383217573166, 0.318897545337677, -0.25766539573669434, 0.02184193767607212, 0.007151272147893906, 0.08517955988645554, 0.045854680240154266, -0.016598151996731758, -0.02208692766726017, 0.26382073760032654, 0.21301960945129395, -0.2847451865673065, -0.2664452791213989, -0.4611050486564636, 0.09324925392866135, -0.19739218056201935, 0.06929279118776321, 1.2105265855789185, -0.0076818885281682014, 0.0006351639167405665, -0.00037151097785681486]} +{"t": 12.64, "q": [-0.13838721811771393, 0.004743408877402544, -0.006361150648444891, 0.3138609826564789, -0.1761937141418457, -0.010236043483018875, -0.08018117398023605, -0.03328738361597061, 0.0155345993116498, 0.31897425651550293, -0.2576736509799957, 0.021827613934874535, 0.007084312848746777, 0.08528555184602737, 0.0457741916179657, -0.01738911122083664, -0.021979069337248802, 0.2643600106239319, 0.21261213719844818, -0.28456541895866394, -0.2651030421257019, -0.4611649811267853, 0.09310544282197952, -0.19755995273590088, 0.0692208856344223, 1.2104666233062744, -0.0076818885281682014, 0.0006231797160580754, -0.0003834952076431364]} +{"t": 12.6567, "q": [-0.13837017118930817, 0.004947939421981573, -0.006374542135745287, 0.3140314221382141, -0.1761852204799652, -0.010236009024083614, -0.08009595423936844, -0.03328738361597061, 0.01562834158539772, 0.3190680146217346, -0.2576735317707062, 0.021813182160258293, 0.006923609878867865, 0.08543670922517776, 0.045672591775655746, -0.018275942653417587, -0.020672788843512535, 0.26444390416145325, 0.21052688360214233, -0.2843257486820221, -0.2646836042404175, -0.46142861247062683, 0.09303353726863861, -0.19758392870426178, 0.0692448541522026, 1.2104905843734741, -0.0076579200103878975, 0.0006231797160580754, -0.00035952674807049334]} +{"t": 12.6734, "q": [-0.13834460079669952, 0.005007594358175993, -0.00638793408870697, 0.3143126666545868, -0.17618949711322784, -0.01024310477077961, -0.08001073449850082, -0.03326181694865227, 0.015681909397244453, 0.3192980885505676, -0.25768589973449707, 0.021791696548461914, 0.006937001831829548, 0.08575396984815598, 0.04546859487891197, -0.019881829619407654, -0.019330555573105812, 0.2649592459201813, 0.20852552354335785, -0.2840501070022583, -0.2647075653076172, -0.4615364968776703, 0.09312941133975983, -0.19761987030506134, 0.0692208856344223, 1.2105026245117188, -0.0076818885281682014, 0.0006231797160580754, -0.00035952674807049334]} +{"t": 12.6903, "q": [-0.13834460079669952, 0.005016116891056299, -0.00638793408870697, 0.31455978751182556, -0.1761767864227295, -0.010250131599605083, -0.08002778142690659, -0.033244773745536804, 0.015722084790468216, 0.31966453790664673, -0.2576860189437866, 0.021806109696626663, 0.006843258626759052, 0.08616118878126144, 0.045241087675094604, -0.025322668254375458, -0.018755313009023666, 0.26536670327186584, 0.206440269947052, -0.28359469771385193, -0.2645517587661743, -0.46159639954566956, 0.09320131689310074, -0.19758392870426178, 0.06916096061468124, 1.2105026245117188, -0.00771784083917737, 0.0006351639167405665, -0.00033555831760168076]} +{"t": 12.7071, "q": [-0.13834460079669952, 0.004990550223737955, -0.006334366742521524, 0.31478989124298096, -0.17618949711322784, -0.01024310477077961, -0.08001073449850082, -0.03322772681713104, 0.015882788226008415, 0.31993725895881653, -0.2576776444911957, 0.0218060202896595, 0.0061736637726426125, 0.08666430413722992, 0.04506927728652954, -0.0297927837818861, -0.018084196373820305, 0.2652468681335449, 0.20475049316883087, -0.2832231819629669, -0.2644079625606537, -0.461931973695755, 0.09309346228837967, -0.19761987030506134, 0.069196917116642, 1.2105146646499634, -0.007693872787058353, 0.0006111955153755844, -0.0003475425182841718]} +{"t": 12.7238, "q": [-0.13832756876945496, 0.005007594358175993, -0.006160271819680929, 0.31498590111732483, -0.1761767864227295, -0.010250131599605083, -0.08000221103429794, -0.033244773745536804, 0.01613723486661911, 0.3201758861541748, -0.25766927003860474, 0.02180594950914383, 0.005651379935443401, 0.08711651712656021, 0.044830020517110825, -0.03265701234340668, -0.017652763053774834, 0.26518693566322327, 0.20283301174640656, -0.28293555974960327, -0.2643600106239319, -0.46196791529655457, 0.09288972616195679, -0.1976078897714615, 0.06918492913246155, 1.2104426622390747, -0.00771784083917737, 0.0006231797160580754, -0.00033555831760168076]} +{"t": 12.7405, "q": [-0.13831904530525208, 0.004947939421981573, -0.00605313666164875, 0.3149944245815277, -0.17618529498577118, -0.010250166058540344, -0.08000221103429794, -0.033244773745536804, 0.01628454588353634, 0.3204059600830078, -0.25766927003860474, 0.02180594950914383, 0.00479429867118597, 0.08734236657619476, 0.04472433030605316, -0.03437075763940811, -0.017473001033067703, 0.26509106159210205, 0.2015267312526703, -0.2826958894729614, -0.2643240690231323, -0.4619798958301544, 0.0927099660038948, -0.19761987030506134, 0.06910104304552078, 1.210418701171875, -0.0076818885281682014, 0.0005992112564854324, -0.00037151097785681486]} +{"t": 12.7572, "q": [-0.13828495144844055, 0.004973506089299917, -0.00579869095236063, 0.31492626667022705, -0.17618949711322784, -0.01024310477077961, -0.08001073449850082, -0.03323625028133392, 0.01661934331059456, 0.32065311074256897, -0.2576735317707062, 0.021813182160258293, 0.003575636073946953, 0.0873650461435318, 0.04470905289053917, -0.03570100665092468, -0.01756887510418892, 0.2650551199913025, 0.201323002576828, -0.282504141330719, -0.26434803009033203, -0.46194395422935486, 0.09299758821725845, -0.19761987030506134, 0.06907707452774048, 1.210418701171875, -0.00771784083917737, 0.0005872270558029413, -0.0003834952076431364]} +{"t": 12.774, "q": [-0.13836164772510529, 0.004990550223737955, -0.005651379935443401, 0.3149603307247162, -0.1761852204799652, -0.010236009024083614, -0.08003629744052887, -0.03322772681713104, 0.016873788088560104, 0.3208576440811157, -0.2576735317707062, 0.021813182160258293, 0.0028926494996994734, 0.08733499050140381, 0.04472005367279053, -0.03658783808350563, -0.01762879453599453, 0.2650311291217804, 0.2012990266084671, -0.2823483347892761, -0.2646836042404175, -0.46194395422935486, 0.09363275021314621, -0.19753599166870117, 0.06907707452774048, 1.2103947401046753, -0.0076818885281682014, 0.0005752427969127893, -0.0003954794374294579]} +{"t": 12.7907, "q": [-0.13845539093017578, 0.004999072756618261, -0.005557636730372906, 0.3149432837963104, -0.17618949711322784, -0.01024310477077961, -0.08002778142690659, -0.033244773745536804, 0.01698092371225357, 0.3210621774196625, -0.2576608955860138, 0.02180589735507965, 0.0027051628567278385, 0.08729000389575958, 0.04473187401890755, -0.03760650008916855, -0.01798832230269909, 0.2645997107028961, 0.201323002576828, -0.28216859698295593, -0.26488733291625977, -0.4619559347629547, 0.09410014003515244, -0.19730828702449799, 0.06900516897439957, 1.2104666233062744, -0.0076818885281682014, 0.0005752427969127893, -0.00045540055725723505]} +{"t": 12.8074, "q": [-0.1384468674659729, 0.004947939421981573, -0.005477285478264093, 0.31498590111732483, -0.17618529498577118, -0.010250166058540344, -0.08001073449850082, -0.033185116946697235, 0.01711484231054783, 0.32129228115081787, -0.25764816999435425, 0.02178419753909111, 0.00258463597856462, 0.08727506548166275, 0.04473267123103142, -0.03886484354734421, -0.01918674446642399, 0.2644319236278534, 0.201323002576828, -0.2821565866470337, -0.2650551199913025, -0.46177616715431213, 0.0941840261220932, -0.19720043241977692, 0.06902913749217987, 1.210478663444519, -0.0076699042692780495, 0.0005632585962302983, -0.0004793690168298781]} +{"t": 12.8243, "q": [-0.13842131197452545, 0.004888284485787153, -0.005303190555423498, 0.3150029480457306, -0.17619793117046356, -0.010228973813354969, -0.07999368757009506, -0.03321068361401558, 0.017235370352864265, 0.32144567370414734, -0.25764840841293335, 0.021812988445162773, 0.0025578520726412535, 0.08728262037038803, 0.04472758620977402, -0.04080628603696823, -0.020265324041247368, 0.26449185609817505, 0.20133498311042786, -0.2822045385837555, -0.26527082920074463, -0.4615844190120697, 0.09423196315765381, -0.19729630649089813, 0.06898120045661926, 1.2105026245117188, -0.0076699042692780495, 0.0005512743373401463, -0.0004913532175123692]} +{"t": 12.841, "q": [-0.13843834400177002, 0.004803063813596964, -0.005196055397391319, 0.31501147150993347, -0.17618942260742188, -0.01022894773632288, -0.08001073449850082, -0.03315955027937889, 0.01732911355793476, 0.321471244096756, -0.25764840841293335, 0.021812988445162773, 0.0025578520726412535, 0.08727506548166275, 0.04473267123103142, -0.04283162206411362, -0.02111620455980301, 0.26676884293556213, 0.20258134603500366, -0.2824562191963196, -0.2650551199913025, -0.46117696166038513, 0.09425593167543411, -0.19736820459365845, 0.0689212828874588, 1.2104905843734741, -0.0076818885281682014, 0.0005752427969127893, -0.0004913532175123692]} +{"t": 12.8578, "q": [-0.13845539093017578, 0.004743408877402544, -0.00516927195712924, 0.3151733875274658, -0.17618949711322784, -0.01024310477077961, -0.0800192579627037, -0.03314250707626343, 0.017369288951158524, 0.3215053379535675, -0.2576526701450348, 0.021820221096277237, 0.0027721223887056112, 0.08724445849657059, 0.04477175325155258, -0.04332297295331955, -0.021379858255386353, 0.26820695400238037, 0.20470255613327026, -0.28244420886039734, -0.26486337184906006, -0.46087735891342163, 0.09425593167543411, -0.1973801851272583, 0.0688733458518982, 1.2105026245117188, -0.007705857045948505, 0.0005632585962302983, -0.0005153216770850122]} +{"t": 12.8746, "q": [-0.1385406106710434, 0.0046752323396503925, -0.00516927195712924, 0.3152671456336975, -0.17618949711322784, -0.01024310477077961, -0.08008743077516556, -0.033176593482494354, 0.017342504113912582, 0.3214968144893646, -0.25764840841293335, 0.021812988445162773, 0.003026568330824375, 0.08717644214630127, 0.044817473739385605, -0.043418847024440765, -0.020433103665709496, 0.2684226632118225, 0.20618858933448792, -0.2824082672595978, -0.2647794783115387, -0.46092528104782104, 0.09451958537101746, -0.19732026755809784, 0.06883738934993744, 1.2105146646499634, -0.007693872787058353, 0.0005872270558029413, -0.0005153216770850122]} +{"t": 12.8914, "q": [-0.1384894847869873, 0.004572966601699591, -0.0051424880512058735, 0.3153267800807953, -0.17618949711322784, -0.01024310477077961, -0.08004482090473175, -0.033176593482494354, 0.017355896532535553, 0.3214627206325531, -0.2576400339603424, 0.021812917664647102, 0.0032274469267576933, 0.0871766209602356, 0.04480811208486557, -0.04355067387223244, -0.019833892583847046, 0.26956117153167725, 0.20714733004570007, -0.28238430619239807, -0.26471954584121704, -0.46094924211502075, 0.0947832390666008, -0.19734424352645874, 0.06886135786771774, 1.210538625717163, -0.0076818885281682014, 0.0005632585962302983, -0.0005392901366576552]} +{"t": 12.9081, "q": [-0.13841278851032257, 0.0043854801915585995, -0.005102312192320824, 0.315420538187027, -0.1761937141418457, -0.010236043483018875, -0.08002778142690659, -0.033185116946697235, 0.017355896532535553, 0.3214115798473358, -0.2576485276222229, 0.02182738296687603, 0.0033747577108442783, 0.0871766209602356, 0.04480811208486557, -0.0436105951666832, -0.019582223147153854, 0.27050793170928955, 0.20822592079639435, -0.28244420886039734, -0.26449185609817505, -0.4611170291900635, 0.09471133351325989, -0.1974281221628189, 0.06882540881633759, 1.2105505466461182, -0.0076818885281682014, 0.0005752427969127893, -0.0005512743373401463]} +{"t": 12.9248, "q": [-0.13842131197452545, 0.0043002585880458355, -0.004995177034288645, 0.3153779208660126, -0.1761937141418457, -0.010236043483018875, -0.08009595423936844, -0.03322772681713104, 0.017355896532535553, 0.32129228115081787, -0.2576485276222229, 0.02182738296687603, 0.0034015413839370012, 0.08718399703502655, 0.0448123924434185, -0.04350273683667183, -0.0195582564920187, 0.2713468372821808, 0.20964005589485168, -0.2825281023979187, -0.2643360495567322, -0.46127283573150635, 0.09461545944213867, -0.1974281221628189, 0.06884937733411789, 1.210538625717163, -0.0076818885281682014, 0.0005872270558029413, -0.0005512743373401463]} +{"t": 12.9415, "q": [-0.1384042650461197, 0.004232082050293684, -0.0049148257821798325, 0.31548872590065, -0.17618092894554138, -0.010228913277387619, -0.08013004064559937, -0.03326181694865227, 0.017409464344382286, 0.321283757686615, -0.25764429569244385, 0.021820150315761566, 0.003468500915914774, 0.08716150373220444, 0.044818270951509476, -0.04358662664890289, -0.019450398162007332, 0.27195802330970764, 0.2109103798866272, -0.28254008293151855, -0.26424017548561096, -0.46132075786590576, 0.09462743997573853, -0.1974520981311798, 0.06883738934993744, 1.2105505466461182, -0.0076699042692780495, 0.0005872270558029413, -0.0005632585962302983]} +{"t": 12.9583, "q": [-0.1383957415819168, 0.004112772177904844, -0.0049148257821798325, 0.3154972493648529, -0.17618514597415924, -0.010221851989626884, -0.08013004064559937, -0.03325329348444939, 0.017342504113912582, 0.3211303651332855, -0.25764429569244385, 0.021820150315761566, 0.003655987558886409, 0.08710085600614548, 0.04486827552318573, -0.04277170076966286, -0.019582223147153854, 0.27242541313171387, 0.2118092030286789, -0.2829235792160034, -0.26412034034729004, -0.4613327383995056, 0.09460347145795822, -0.1974281221628189, 0.06883738934993744, 1.2105265855789185, -0.0076579200103878975, 0.0005872270558029413, -0.0005992112564854324]} +{"t": 12.9751, "q": [-0.13836164772510529, 0.004104250576347113, -0.004928217735141516, 0.31556540727615356, -0.17618949711322784, -0.01024310477077961, -0.08010447770357132, -0.03326181694865227, 0.017262153327465057, 0.32103660702705383, -0.25764429569244385, 0.021820150315761566, 0.00388364982791245, 0.0870632529258728, 0.04488431289792061, -0.04266384243965149, -0.019845876842737198, 0.27250930666923523, 0.21251626312732697, -0.2829835116863251, -0.2641562819480896, -0.4613567292690277, 0.09459149092435837, -0.19750003516674042, 0.06883738934993744, 1.2105625867843628, -0.0076818885281682014, 0.0005992112564854324, -0.0006231797160580754]} +{"t": 12.9918, "q": [-0.13833607733249664, 0.004087206441909075, -0.004941609688103199, 0.3155483603477478, -0.17618942260742188, -0.01022894773632288, -0.08013004064559937, -0.03326181694865227, 0.017208585515618324, 0.3209599256515503, -0.2576400339603424, 0.021812917664647102, 0.004071136470884085, 0.08704058080911636, 0.044899553060531616, -0.04302337020635605, -0.020313261076807976, 0.2724733352661133, 0.21279190480709076, -0.283103346824646, -0.26409637928009033, -0.46136870980262756, 0.09459149092435837, -0.19753599166870117, 0.06883738934993744, 1.2105745077133179, -0.0076459357514977455, 0.0006231797160580754, -0.0006591323763132095]} +{"t": 13.0087, "q": [-0.13831904530525208, 0.0040786839090287685, -0.004955001175403595, 0.31553131341934204, -0.1761937141418457, -0.010236043483018875, -0.08015561103820801, -0.03326181694865227, 0.01715501770377159, 0.3208320736885071, -0.25765252113342285, 0.02180582657456398, 0.004312190227210522, 0.08702527731657028, 0.044919077306985855, -0.043299004435539246, -0.020732710137963295, 0.27242541313171387, 0.21294769644737244, -0.2831992208957672, -0.2640843987464905, -0.4614046514034271, 0.09463942795991898, -0.19754797220230103, 0.06883738934993744, 1.2106584310531616, -0.0076818885281682014, 0.0006351639167405665, -0.0006950850365683436]} +{"t": 13.0254, "q": [-0.1383105218410492, 0.004112772177904844, -0.0049817850813269615, 0.3155483603477478, -0.1761852204799652, -0.010236009024083614, -0.08017265051603317, -0.03323625028133392, 0.017074666917324066, 0.3207809329032898, -0.2576567828655243, 0.021813059225678444, 0.00445950124412775, 0.08703283965587616, 0.04491399601101875, -0.04338289424777031, -0.021331921219825745, 0.2722935676574707, 0.21301960945129395, -0.28321120142936707, -0.2641562819480896, -0.4614406228065491, 0.09460347145795822, -0.19757193326950073, 0.06884937733411789, 1.2106584310531616, -0.007693872787058353, 0.0006471481756307185, -0.0006950850365683436]} +{"t": 13.0422, "q": [-0.1382167786359787, 0.0041639055125415325, -0.005008568987250328, 0.31553131341934204, -0.1761852204799652, -0.010236009024083614, -0.0802067443728447, -0.03323625028133392, 0.017047883942723274, 0.3207383453845978, -0.25765690207481384, 0.0218274537473917, 0.004392541944980621, 0.08704758435487747, 0.04492256045341492, -0.04349075257778168, -0.021439779549837112, 0.2721377909183502, 0.21323531866073608, -0.28323519229888916, -0.26416826248168945, -0.4615844190120697, 0.09459149092435837, -0.19759590923786163, 0.06884937733411789, 1.2106943130493164, -0.007693872787058353, 0.0006471481756307185, -0.0006831008358858526]} +{"t": 13.0589, "q": [-0.13819973170757294, 0.004291736986488104, -0.005048744846135378, 0.31548020243644714, -0.17618949711322784, -0.01024310477077961, -0.08022378385066986, -0.033193640410900116, 0.017021099105477333, 0.32056790590286255, -0.25765690207481384, 0.0218274537473917, 0.004312190227210522, 0.08704021573066711, 0.044918276369571686, -0.04355067387223244, -0.021451763808727264, 0.27161046862602234, 0.21346302330493927, -0.2832711338996887, -0.26434803009033203, -0.46187204122543335, 0.09453156590461731, -0.19757193326950073, 0.06888532638549805, 1.210706353187561, -0.0076818885281682014, 0.0006471481756307185, -0.0007070692954584956]} +{"t": 13.0756, "q": [-0.13819120824337006, 0.004402524325996637, -0.005102312192320824, 0.315420538187027, -0.17617671191692352, -0.010235974565148354, -0.08025787770748138, -0.03322772681713104, 0.01698092371225357, 0.32051676511764526, -0.2576567828655243, 0.021813059225678444, 0.0042854067869484425, 0.08703283965587616, 0.04491399601101875, -0.04355067387223244, -0.021535653620958328, 0.2709992825984955, 0.21343904733657837, -0.28323519229888916, -0.26464763283729553, -0.46239933371543884, 0.09408815205097198, -0.19751201570034027, 0.06886135786771774, 1.210706353187561, -0.007693872787058353, 0.0006591323763132095, -0.0006950850365683436]} +{"t": 13.0924, "q": [-0.13814008235931396, 0.004538878332823515, -0.005102312192320824, 0.31535235047340393, -0.1761852204799652, -0.010236009024083614, -0.0802493542432785, -0.0332021601498127, 0.017007706686854362, 0.3204230070114136, -0.25765690207481384, 0.0218274537473917, 0.004205055069178343, 0.0870477706193924, 0.04491319879889488, -0.04364654794335365, -0.021535653620958328, 0.2702922224998474, 0.21336714923381805, -0.2831512987613678, -0.2647794783115387, -0.4630345106124878, 0.09342902153730392, -0.19752399623394012, 0.0688733458518982, 1.210634469985962, -0.0076699042692780495, 0.0006591323763132095, -0.0006831008358858526]} +{"t": 13.1094, "q": [-0.1380804181098938, 0.004658188205212355, -0.0051424880512058735, 0.31529271602630615, -0.17618949711322784, -0.01024310477077961, -0.08025787770748138, -0.033176593482494354, 0.01698092371225357, 0.3204059600830078, -0.25765690207481384, 0.0218274537473917, 0.004138095770031214, 0.08706306666135788, 0.04489367455244064, -0.04418583959341049, -0.021631525829434395, 0.26928552985191345, 0.2134031057357788, -0.2830793857574463, -0.26469558477401733, -0.46332213282585144, 0.09322528541088104, -0.19755995273590088, 0.06884937733411789, 1.2105865478515625, -0.0076699042692780495, 0.0006351639167405665, -0.0006831008358858526]} +{"t": 13.1261, "q": [-0.13809746503829956, 0.004760453011840582, -0.005196055397391319, 0.315233051776886, -0.17618949711322784, -0.01024310477077961, -0.08030901104211807, -0.033185116946697235, 0.016927355900406837, 0.32034632563591003, -0.25766515731811523, 0.021813130006194115, 0.003923825453966856, 0.08708555996417999, 0.04488779604434967, -0.04645085707306862, -0.023513050749897957, 0.2692975401878357, 0.21371468901634216, -0.2831752598285675, -0.26458773016929626, -0.4628787040710449, 0.09299758821725845, -0.19752399623394012, 0.06886135786771774, 1.2105984687805176, -0.0076818885281682014, 0.0006351639167405665, -0.0007070692954584956]} +{"t": 13.1428, "q": [-0.1380804181098938, 0.0049820286221802235, -0.005222839303314686, 0.31524157524108887, -0.17618529498577118, -0.010250166058540344, -0.080343097448349, -0.033176593482494354, 0.01695414073765278, 0.32038041949272156, -0.2576608955860138, 0.02180589735507965, 0.0035086767747998238, 0.08707008510828018, 0.04491668939590454, -0.04683435335755348, -0.025718146935105324, 0.2706757187843323, 0.21436183154582977, -0.28313931822776794, -0.2644319236278534, -0.46124887466430664, 0.0929616317152977, -0.19739218056201935, 0.06884937733411789, 1.2105505466461182, -0.007705857045948505, 0.0006111955153755844, -0.0006831008358858526]} +{"t": 13.1596, "q": [-0.13815711438655853, 0.0051439483650028706, -0.005222839303314686, 0.31516486406326294, -0.17618529498577118, -0.010250166058540344, -0.08036013692617416, -0.033193640410900116, 0.01695414073765278, 0.32029518485069275, -0.2576650381088257, 0.021798716858029366, 0.003696163184940815, 0.08706306666135788, 0.04489367455244064, -0.04675046354532242, -0.02588592655956745, 0.27207785844802856, 0.21475732326507568, -0.283247172832489, -0.26439598202705383, -0.4589598774909973, 0.09347695857286453, -0.19732026755809784, 0.06886135786771774, 1.2105984687805176, -0.0076699042692780495, 0.0006231797160580754, -0.0006950850365683436]} +{"t": 13.1764, "q": [-0.13813155889511108, 0.0052291699685156345, -0.005410325713455677, 0.3151478171348572, -0.1761852204799652, -0.010236009024083614, -0.08036866039037704, -0.033176593482494354, 0.01678004488348961, 0.32029518485069275, -0.2576608955860138, 0.02180589735507965, 0.004057744517922401, 0.08707800507545471, 0.04489287734031677, -0.046726495027542114, -0.025957832112908363, 0.2742709815502167, 0.21497303247451782, -0.2832711338996887, -0.26428812742233276, -0.45445379614830017, 0.09408815205097198, -0.1973322480916977, 0.06880144029855728, 1.2105745077133179, -0.0076579200103878975, 0.0006111955153755844, -0.0007070692954584956]} +{"t": 13.1931, "q": [-0.13813155889511108, 0.005220647435635328, -0.005571028683334589, 0.3151307702064514, -0.17618529498577118, -0.010250166058540344, -0.08036013692617416, -0.03315955027937889, 0.016592558473348618, 0.3202696144580841, -0.25765666365623474, 0.021798662841320038, 0.0041916631162166595, 0.08714491873979568, 0.04490331932902336, -0.04718189314007759, -0.026928553357720375, 0.27936428785324097, 0.21522469818592072, -0.2832950949668884, -0.263784795999527, -0.44826993346214294, 0.09423196315765381, -0.19744011759757996, 0.06880144029855728, 1.210634469985962, -0.0076818885281682014, 0.0005992112564854324, -0.0006950850365683436]} +{"t": 13.21, "q": [-0.13818268477916718, 0.00526325823739171, -0.005704947747290134, 0.3151307702064514, -0.17618107795715332, -0.010257227346301079, -0.080343097448349, -0.03315103054046631, 0.01647203229367733, 0.3202610909938812, -0.2576734125614166, 0.021798787638545036, 0.00483447453007102, 0.08722655475139618, 0.044922277331352234, -0.04733768850564957, -0.028426581993699074, 0.2859675884246826, 0.21569208800792694, -0.2832950949668884, -0.26361700892448425, -0.4382391571998596, 0.09424394369125366, -0.19758392870426178, 0.06871754676103592, 1.210646390914917, -0.0076579200103878975, 0.0006231797160580754, -0.0007070692954584956]} +{"t": 13.2268, "q": [-0.1382679045200348, 0.00526325823739171, -0.005959393456578255, 0.3151392936706543, -0.1761767864227295, -0.010250131599605083, -0.08036013692617416, -0.03309137374162674, 0.016257761046290398, 0.3202184736728668, -0.25766903162002563, 0.021777158603072166, 0.005731731187552214, 0.08732272684574127, 0.04495910927653313, -0.04706205427646637, -0.029876673594117165, 0.2944404184818268, 0.21593177318572998, -0.2832950949668884, -0.2637248635292053, -0.42817240953445435, 0.09430386871099472, -0.19757193326950073, 0.06869357824325562, 1.210634469985962, -0.0076579200103878975, 0.0005872270558029413, -0.0007070692954584956]} +{"t": 13.2435, "q": [-0.13833607733249664, 0.00528882397338748, -0.006187055725604296, 0.3151478171348572, -0.17617256939411163, -0.010257202200591564, -0.08032605051994324, -0.033116940408945084, 0.016003314405679703, 0.3202184736728668, -0.2576815187931061, 0.021770067512989044, 0.006642380263656378, 0.08741078525781631, 0.04502904787659645, -0.046858321875333786, -0.030787475407123566, 0.3040398061275482, 0.2160995453596115, -0.2831512987613678, -0.2636529505252838, -0.4167993664741516, 0.09438775479793549, -0.19755995273590088, 0.06863366067409515, 1.210646390914917, -0.007693872787058353, 0.0005992112564854324, -0.0007190534961409867]} +{"t": 13.2602, "q": [-0.1383957415819168, 0.00528882397338748, -0.006374542135745287, 0.3151222765445709, -0.1761767864227295, -0.010250131599605083, -0.08030901104211807, -0.03309989720582962, 0.015882788226008415, 0.3201417922973633, -0.25768575072288513, 0.021777300164103508, 0.007245015352964401, 0.0874253362417221, 0.04504694417119026, -0.046678557991981506, -0.031506527215242386, 0.3150532841682434, 0.2160995453596115, -0.28313931822776794, -0.2637009024620056, -0.40645697712898254, 0.09433981776237488, -0.19758392870426178, 0.0686216726899147, 1.2106584310531616, -0.007693872787058353, 0.0006351639167405665, -0.0007550062146037817]} +{"t": 13.277, "q": [-0.1383957415819168, 0.005314390640705824, -0.006495069246739149, 0.3150796592235565, -0.17618107795715332, -0.010257227346301079, -0.0802493542432785, -0.0331084169447422, 0.015748869627714157, 0.3201247453689575, -0.2576900124549866, 0.02178453467786312, 0.007753907702863216, 0.08749996870756149, 0.04504285752773285, -0.0466545894742012, -0.031506527215242386, 0.32615068554878235, 0.2160755842924118, -0.2830793857574463, -0.2634372413158417, -0.3939095139503479, 0.09435180574655533, -0.19755995273590088, 0.0686216726899147, 1.2106943130493164, -0.0076818885281682014, 0.0006351639167405665, -0.0007789746159687638]} +{"t": 13.2937, "q": [-0.1383957415819168, 0.005271779838949442, -0.0065620290115475655, 0.31506261229515076, -0.17617686092853546, -0.010264297015964985, -0.08022378385066986, -0.0331084169447422, 0.015695301815867424, 0.32011622190475464, -0.257689893245697, 0.021770138293504715, 0.008195839822292328, 0.08764073252677917, 0.04508655145764351, -0.046486809849739075, -0.03141065314412117, 0.3374757766723633, 0.21620741486549377, -0.2829835116863251, -0.2630297839641571, -0.3821529746055603, 0.09436378628015518, -0.19752399623394012, 0.06864564120769501, 1.2107183933258057, -0.0076699042692780495, 0.0006231797160580754, -0.0007669904152862728]} +{"t": 13.3105, "q": [-0.13842982053756714, 0.005254735704511404, -0.006642380263656378, 0.31497737765312195, -0.17617686092853546, -0.010264297015964985, -0.08022378385066986, -0.033116940408945084, 0.01565512642264366, 0.32006508111953735, -0.257698118686676, 0.02175581455230713, 0.00832975935190916, 0.0878317654132843, 0.045225609093904495, -0.04565989971160889, -0.031374700367450714, 0.34856119751930237, 0.21644708514213562, -0.2826239764690399, -0.2625264525413513, -0.37116342782974243, 0.09436378628015518, -0.19755995273590088, 0.06868159770965576, 1.2107423543930054, -0.0076699042692780495, 0.0006591323763132095, -0.0007669904152862728]} +{"t": 13.3273, "q": [-0.13852356374263763, 0.005271779838949442, -0.006615596357733011, 0.3149518072605133, -0.17617686092853546, -0.010264297015964985, -0.08029196411371231, -0.03309137374162674, 0.01564173400402069, 0.31997987627983093, -0.25770238041877747, 0.021763047203421593, 0.008356543257832527, 0.08810422569513321, 0.04539291560649872, -0.04416187107563019, -0.031326763331890106, 0.3591432571411133, 0.2177533656358719, -0.28226447105407715, -0.26234668493270874, -0.36144423484802246, 0.09410014003515244, -0.19755995273590088, 0.06865762919187546, 1.2107423543930054, -0.0076579200103878975, 0.0006591323763132095, -0.0007669904152862728]} +{"t": 13.344, "q": [-0.1386343538761139, 0.005246214102953672, -0.006669164169579744, 0.31487512588500977, -0.17617686092853546, -0.010264297015964985, -0.08032605051994324, -0.0331084169447422, 0.015614950098097324, 0.31992873549461365, -0.25770238041877747, 0.021763047203421593, 0.008302975445985794, 0.08827295899391174, 0.04552852734923363, -0.04194478690624237, -0.03020024672150612, 0.36760413646698, 0.21951505541801453, -0.28143754601478577, -0.26174744963645935, -0.35236018896102905, 0.09364473819732666, -0.19754797220230103, 0.06868159770965576, 1.2107183933258057, -0.0076818885281682014, 0.0006471481756307185, -0.0007669904152862728]} +{"t": 13.3607, "q": [-0.13868549466133118, 0.0052291699685156345, -0.006615596357733011, 0.31478989124298096, -0.17617256939411163, -0.010257202200591564, -0.08036013692617416, -0.03309989720582962, 0.01562834158539772, 0.31983497738838196, -0.25770649313926697, 0.0217558853328228, 0.00831636693328619, 0.08831699192523956, 0.04556349664926529, -0.039392147213220596, -0.028366660699248314, 0.37582531571388245, 0.2207973599433899, -0.2804548442363739, -0.26156771183013916, -0.34516966342926025, 0.09346497058868408, -0.19755995273590088, 0.06866960972547531, 1.2106584310531616, -0.0076699042692780495, 0.0006351639167405665, -0.0007789746159687638]} +{"t": 13.3774, "q": [-0.1386769711971283, 0.0051865591667592525, -0.006615596357733011, 0.3147217333316803, -0.17618107795715332, -0.010257227346301079, -0.080343097448349, -0.033116940408945084, 0.01562834158539772, 0.3197753429412842, -0.25770238041877747, 0.021763047203421593, 0.008236016146838665, 0.08833871781826019, 0.04559501260519028, -0.03560513257980347, -0.02665291726589203, 0.3816496431827545, 0.2214924544095993, -0.2785134017467499, -0.26174744963645935, -0.338985800743103, 0.09340505301952362, -0.19755995273590088, 0.06869357824325562, 1.2106584310531616, -0.0076699042692780495, 0.0006351639167405665, -0.0007789746159687638]} +{"t": 13.3943, "q": [-0.13868549466133118, 0.005058727692812681, -0.006548637058585882, 0.31461092829704285, -0.17618107795715332, -0.010257227346301079, -0.08036866039037704, -0.03313398361206055, 0.01564173400402069, 0.31969863176345825, -0.2577066123485565, 0.02177029848098755, 0.008021745830774307, 0.08832304179668427, 0.04563325271010399, -0.03202185034751892, -0.025802036747336388, 0.3877376317977905, 0.2220676988363266, -0.27627235651016235, -0.2619631886482239, -0.3322027325630188, 0.09342902153730392, -0.19753599166870117, 0.06869357824325562, 1.2106943130493164, -0.0076579200103878975, 0.0006351639167405665, -0.0007789746159687638]} +{"t": 13.4111, "q": [-0.13871105015277863, 0.004956461954861879, -0.006441501900553703, 0.3144404888153076, -0.17618107795715332, -0.010257227346301079, -0.08046240359544754, -0.0331084169447422, 0.015722084790468216, 0.319528192281723, -0.25770238041877747, 0.021763047203421593, 0.007780691608786583, 0.08833740651607513, 0.04566049948334694, -0.028798094019293785, -0.025310683995485306, 0.39232757687568665, 0.2231942117214203, -0.2739114463329315, -0.26259833574295044, -0.3269176781177521, 0.09348893910646439, -0.19755995273590088, 0.06864564120769501, 1.2106703519821167, -0.0076699042692780495, 0.0006351639167405665, -0.0007909588748589158]} +{"t": 13.4278, "q": [-0.13873662054538727, 0.004879762884229422, -0.006307582836598158, 0.3143638074398041, -0.17618100345134735, -0.010243070311844349, -0.08049649745225906, -0.0331084169447422, 0.01581582799553871, 0.3195026218891144, -0.25770238041877747, 0.021763047203421593, 0.007619988638907671, 0.08830604702234268, 0.045736972242593765, -0.025849973782896996, -0.02413623034954071, 0.395587295293808, 0.22488398849964142, -0.27158650755882263, -0.26319754123687744, -0.3228670060634613, 0.09351290762424469, -0.19755995273590088, 0.06866960972547531, 1.210706353187561, -0.0076579200103878975, 0.0006231797160580754, -0.0007789746159687638]} +{"t": 13.4447, "q": [-0.13877923786640167, 0.004743408877402544, -0.006267406977713108, 0.3143638074398041, -0.17618100345134735, -0.010243070311844349, -0.08049649745225906, -0.03314250707626343, 0.01581582799553871, 0.31951966881752014, -0.2577107548713684, 0.021763136610388756, 0.007499461527913809, 0.08830416202545166, 0.04583052173256874, -0.023560985922813416, -0.022710107266902924, 0.39716920256614685, 0.2274366319179535, -0.2687941789627075, -0.26359304785728455, -0.32053008675575256, 0.0935848131775856, -0.19755995273590088, 0.0686216726899147, 1.210706353187561, -0.0076339514926075935, 0.0006351639167405665, -0.0008029430755414069]} +{"t": 13.4614, "q": [-0.1388644576072693, 0.004726364742964506, -0.006280798930674791, 0.31438082456588745, -0.17618949711322784, -0.01024310477077961, -0.08051353693008423, -0.033116940408945084, 0.01581582799553871, 0.319528192281723, -0.25770238041877747, 0.021763047203421593, 0.007472677621990442, 0.08828037232160568, 0.045901909470558167, -0.021691447123885155, -0.021571604534983635, 0.3976605534553528, 0.22936609387397766, -0.26426413655281067, -0.26416826248168945, -0.31806135177612305, 0.09364473819732666, -0.19755995273590088, 0.0685977041721344, 1.2107183933258057, -0.0076459357514977455, 0.0006351639167405665, -0.000850879994686693]} +{"t": 13.4781, "q": [-0.13884741067886353, 0.0046326215378940105, -0.006267406977713108, 0.3144404888153076, -0.17618529498577118, -0.010250166058540344, -0.08053058385848999, -0.03309989720582962, 0.01581582799553871, 0.319528192281723, -0.25770238041877747, 0.021763047203421593, 0.007459285669028759, 0.0882873609662056, 0.04592489078640938, -0.019965719431638718, -0.02069675736129284, 0.3974328637123108, 0.23033681511878967, -0.26011762022972107, -0.2646596431732178, -0.3145499527454376, 0.0936087816953659, -0.19758392870426178, 0.06858572363853455, 1.210706353187561, -0.0076339514926075935, 0.0006351639167405665, -0.000850879994686693]} +{"t": 13.495, "q": [-0.13883888721466064, 0.004624099005013704, -0.006213839631527662, 0.31451719999313354, -0.17618100345134735, -0.010243070311844349, -0.08051353693008423, -0.03313398361206055, 0.015856005251407623, 0.31961342692375183, -0.25770238041877747, 0.021763047203421593, 0.007204839959740639, 0.08827998489141464, 0.04592061787843704, -0.018803250044584274, -0.020612867549061775, 0.39707332849502563, 0.23166705667972565, -0.25485652685165405, -0.2650551199913025, -0.3119373917579651, 0.09348893910646439, -0.19758392870426178, 0.0685737356543541, 1.2107183933258057, -0.0076818885281682014, 0.0006351639167405665, -0.000850879994686693]} +{"t": 13.5117, "q": [-0.13877923786640167, 0.004624099005013704, -0.006146880332380533, 0.31456831097602844, -0.17618100345134735, -0.010243070311844349, -0.08049649745225906, -0.03313398361206055, 0.015922963619232178, 0.31966453790664673, -0.2577066123485565, 0.02177029848098755, 0.006776299327611923, 0.08831021934747696, 0.04590027406811714, -0.01812014915049076, -0.02063683606684208, 0.39677372574806213, 0.23363247513771057, -0.25003886222839355, -0.2652828097343445, -0.310031920671463, 0.0932612419128418, -0.19757193326950073, 0.06863366067409515, 1.2106943130493164, -0.0076818885281682014, 0.0006351639167405665, -0.000874848454259336]} +{"t": 13.5284, "q": [-0.13875366747379303, 0.004666709806770086, -0.00613348837941885, 0.31474730372428894, -0.1761852204799652, -0.010236009024083614, -0.08047092705965042, -0.0331084169447422, 0.016016706824302673, 0.3197753429412842, -0.2576982378959656, 0.021770209074020386, 0.006267406977713108, 0.08828037232160568, 0.045901909470558167, -0.017484985291957855, -0.020660804584622383, 0.39661794900894165, 0.23546606302261353, -0.24507740139961243, -0.2655104994773865, -0.3089892864227295, 0.09311743080615997, -0.19758392870426178, 0.0686216726899147, 1.2106584310531616, -0.007705857045948505, 0.0006351639167405665, -0.000874848454259336]} +{"t": 13.5451, "q": [-0.13877923786640167, 0.004726364742964506, -0.00613348837941885, 0.3148921728134155, -0.17617686092853546, -0.010264297015964985, -0.08046240359544754, -0.03313398361206055, 0.016083667054772377, 0.3198605477809906, -0.25770238041877747, 0.021763047203421593, 0.005946001503616571, 0.08829528838396072, 0.0459010936319828, -0.016897758468985558, -0.020624851807951927, 0.3965100646018982, 0.23683226108551025, -0.24293223023414612, -0.2656782865524292, -0.3085578382015228, 0.09311743080615997, -0.19758392870426178, 0.06860969215631485, 1.2106584310531616, -0.0076699042692780495, 0.0006351639167405665, -0.000874848454259336]} +{"t": 13.5619, "q": [-0.1387621909379959, 0.004794541280716658, -0.006106704473495483, 0.3150796592235565, -0.1761767864227295, -0.010250131599605083, -0.08046240359544754, -0.0331084169447422, 0.01612384244799614, 0.31997987627983093, -0.2576941251754761, 0.02177737094461918, 0.005731731187552214, 0.08828773349523544, 0.045906178653240204, -0.01641838811337948, -0.021044299006462097, 0.3955393433570862, 0.23789885640144348, -0.24090689420700073, -0.26571422815322876, -0.30847394466400146, 0.09322528541088104, -0.19757193326950073, 0.06858572363853455, 1.210646390914917, -0.0076579200103878975, 0.0006231797160580754, -0.000874848454259336]} +{"t": 13.5786, "q": [-0.1387707144021988, 0.004888284485787153, -0.006120096426457167, 0.31525009870529175, -0.1761767864227295, -0.010250131599605083, -0.0804368406534195, -0.03314250707626343, 0.01613723486661911, 0.3201844096183777, -0.2576982378959656, 0.021770209074020386, 0.005477285478264093, 0.08826525509357452, 0.045912083238363266, -0.016142752021551132, -0.02177533693611622, 0.3947843611240387, 0.23855799436569214, -0.2383662462234497, -0.26569026708602905, -0.30849793553352356, 0.09323727339506149, -0.19755995273590088, 0.06864564120769501, 1.210646390914917, -0.0076818885281682014, 0.0006351639167405665, -0.0008868326549418271]} +{"t": 13.5953, "q": [-0.1387621909379959, 0.004956461954861879, -0.006106704473495483, 0.3152756690979004, -0.1761767864227295, -0.010250131599605083, -0.08044536411762238, -0.033116940408945084, 0.016190802678465843, 0.3203548491001129, -0.257689893245697, 0.021770138293504715, 0.0051424880512058735, 0.08827300369739532, 0.04589764401316643, -0.01589108258485794, -0.02190716378390789, 0.39467647671699524, 0.2388456016778946, -0.2352743148803711, -0.2657501995563507, -0.308545857667923, 0.09321330487728119, -0.19752399623394012, 0.0686216726899147, 1.210646390914917, -0.0076579200103878975, 0.0005992112564854324, -0.000874848454259336]} +{"t": 13.612, "q": [-0.1386769711971283, 0.005058727692812681, -0.006026353221386671, 0.31530123949050903, -0.17618100345134735, -0.010243070311844349, -0.08041127026081085, -0.0331084169447422, 0.01631132885813713, 0.3205849528312683, -0.2576940059661865, 0.021762976422905922, 0.004379149992018938, 0.08827337622642517, 0.04587893187999725, -0.015915051102638245, -0.022194785997271538, 0.39440086483955383, 0.23908528685569763, -0.23341675102710724, -0.2657981216907501, -0.3087136447429657, 0.09318933635950089, -0.19747605919837952, 0.06860969215631485, 1.2106105089187622, -0.0076579200103878975, 0.0005872270558029413, -0.000862864195369184]} +{"t": 13.6288, "q": [-0.1386769711971283, 0.005109860096126795, -0.005972785409539938, 0.31528419256210327, -0.1761767864227295, -0.010250131599605083, -0.08040275424718857, -0.03309989720582962, 0.01647203229367733, 0.320721298456192, -0.2576856315135956, 0.02176290564239025, 0.0036158119328320026, 0.08829585462808609, 0.04587302729487419, -0.015974972397089005, -0.023908529430627823, 0.393609881401062, 0.2392410933971405, -0.2322782576084137, -0.2658820152282715, -0.3088334798812866, 0.0933091789484024, -0.1974281221628189, 0.06863366067409515, 1.2105984687805176, -0.0076579200103878975, 0.0005992112564854324, -0.0008868326549418271]} +{"t": 13.6455, "q": [-0.13868549466133118, 0.0052291699685156345, -0.005959393456578255, 0.31524157524108887, -0.1761767864227295, -0.010250131599605083, -0.08041979372501373, -0.03309989720582962, 0.016525600105524063, 0.3208235502243042, -0.2576897442340851, 0.021755743771791458, 0.0029328251257538795, 0.08828848600387573, 0.045868758112192154, -0.016034893691539764, -0.025921879336237907, 0.39198005199432373, 0.23952871561050415, -0.23128356039524078, -0.2659059762954712, -0.3089413344860077, 0.0933091789484024, -0.19739218056201935, 0.0685977041721344, 1.2106105089187622, -0.0076579200103878975, 0.0005872270558029413, -0.000898816913831979]} +{"t": 13.6623, "q": [-0.1386769711971283, 0.005399612244218588, -0.005852258298546076, 0.31530123949050903, -0.17618107795715332, -0.010257227346301079, -0.08042831718921661, -0.0331084169447422, 0.01664612628519535, 0.3209684193134308, -0.25768551230430603, 0.021748511120676994, 0.0025980276986956596, 0.08828093111515045, 0.045873843133449554, -0.016226641833782196, -0.02780340239405632, 0.39045804738998413, 0.2398642748594284, -0.2301330715417862, -0.26589399576187134, -0.30900126695632935, 0.09342902153730392, -0.19739218056201935, 0.0686216726899147, 1.2106224298477173, -0.0076579200103878975, 0.0005872270558029413, -0.000874848454259336]} +{"t": 13.679, "q": [-0.13865992426872253, 0.005518921185284853, -0.0057719070464372635, 0.31530123949050903, -0.17617686092853546, -0.010264297015964985, -0.08041979372501373, -0.03309989720582962, 0.016766652464866638, 0.321096271276474, -0.25768139958381653, 0.021755672991275787, 0.002531068166717887, 0.08828111737966537, 0.045864492654800415, -0.016574183478951454, -0.0300923902541399, 0.3892955780029297, 0.2401878386735916, -0.22888672351837158, -0.26589399576187134, -0.30900126695632935, 0.09368068724870682, -0.19741614162921906, 0.06860969215631485, 1.210646390914917, -0.0076579200103878975, 0.0005992112564854324, -0.000874848454259336]} +{"t": 13.6958, "q": [-0.13869401812553406, 0.005646753590553999, -0.00579869095236063, 0.3152671456336975, -0.17618949711322784, -0.01024310477077961, -0.08040275424718857, -0.0331084169447422, 0.01678004488348961, 0.3212240934371948, -0.25768139958381653, 0.021755672991275787, 0.0025578520726412535, 0.08826638013124466, 0.04585595056414604, -0.016825852915644646, -0.032501220703125, 0.3883727788925171, 0.2404634803533554, -0.22700519859790802, -0.2659059762954712, -0.30900126695632935, 0.09394434094429016, -0.19741614162921906, 0.06860969215631485, 1.210646390914917, -0.0076699042692780495, 0.0005992112564854324, -0.000874848454259336]} +{"t": 13.7125, "q": [-0.13868549466133118, 0.0057404967956244946, -0.00579869095236063, 0.31525862216949463, -0.1761767864227295, -0.010250131599605083, -0.0803857073187828, -0.03309989720582962, 0.01679343730211258, 0.32124966382980347, -0.2576771378517151, 0.021748440340161324, 0.00258463597856462, 0.08826619386672974, 0.04586530849337578, -0.01684982143342495, -0.034814175218343735, 0.3874739706516266, 0.24079903960227966, -0.2259146273136139, -0.26589399576187134, -0.30900126695632935, 0.09406418353319168, -0.19741614162921906, 0.06863366067409515, 1.210646390914917, -0.0076579200103878975, 0.0005992112564854324, -0.000874848454259336]} diff --git a/Data/G1/think_5.jsonl b/Data/G1/think_5.jsonl new file mode 100644 index 0000000..55271e1 --- /dev/null +++ b/Data/G1/think_5.jsonl @@ -0,0 +1,896 @@ +{"meta": {"hz": 60.0, "motors": 29}} +{"t": 0.0, "q": [-0.152840718626976, 0.007700583431869745, 0.0008169056382030249, 0.31593185663223267, -0.17480365931987762, -0.01051354967057705, -0.09732767194509506, -0.024893099442124367, 0.025083020329475403, 0.32089173793792725, -0.2528330385684967, 0.02260647341609001, 0.002397149335592985, 0.002640363061800599, 0.00877439510077238, 0.24868465960025787, 0.2799035608768463, -0.08207996189594269, 0.8264800906181335, -0.007837682962417603, 0.00045540055725723505, -0.005872270558029413, 0.24715067446231842, -0.2873697280883789, 0.07813715189695358, 0.793631374835968, -0.0049135321751236916, 0.002205097349360585, 0.0014740596525371075]} +{"t": 0.0167, "q": [-0.15269584953784943, 0.007700583431869745, 0.0008169056382030249, 0.31593185663223267, -0.1748080551624298, -0.010534802451729774, -0.09718279540538788, -0.024893099442124367, 0.02505623735487461, 0.3208661675453186, -0.2528330385684967, 0.02260647341609001, 0.0030399602837860584, 0.003089860314503312, 0.009599515236914158, 0.24802552163600922, 0.27751868963241577, -0.08264321833848953, 0.8278103470802307, -0.008388957940042019, 0.00046738478704355657, -0.006052033975720406, 0.24664734303951263, -0.28558409214019775, 0.07784952968358994, 0.7957885265350342, -0.005153216887265444, 0.002241050126031041, 0.0015579492319375277]} +{"t": 0.0335, "q": [-0.15241461992263794, 0.007785804104059935, 0.0009374326909892261, 0.3161875307559967, -0.17477411031723022, -0.010591305792331696, -0.09673964977264404, -0.024756744503974915, 0.025096412748098373, 0.32153940200805664, -0.2527956962585449, 0.022670937702059746, 0.0034283252898603678, 0.0030874046497046947, 0.01034773513674736, 0.24719861149787903, 0.27544543147087097, -0.0827750414609909, 0.829044759273529, -0.00854475237429142, 0.0005033374764025211, -0.006076002027839422, 0.2461320161819458, -0.28373852372169495, 0.07759785652160645, 0.7977179884910583, -0.005261074751615524, 0.0023369239643216133, 0.0014500912511721253]} +{"t": 0.0502, "q": [-0.1521163433790207, 0.007768759969621897, 0.000897257006727159, 0.31617048382759094, -0.17477403581142426, -0.010577148757874966, -0.09640728682279587, -0.024833444505929947, 0.02504284493625164, 0.32171836495399475, -0.25279998779296875, 0.02267817221581936, 0.0036425956059247255, 0.0030778422951698303, 0.011560068465769291, 0.24649155139923096, 0.2727729380130768, -0.0833742544054985, 0.8297877311706543, -0.00860467366874218, 0.0004793690168298781, -0.006171876098960638, 0.2458324134349823, -0.2806825339794159, 0.07770571857690811, 0.7989403605461121, -0.005309011787176132, 0.0023968450259417295, 0.0015459650894626975]} +{"t": 0.0669, "q": [-0.15203964710235596, 0.007709105033427477, 0.0008302975329570472, 0.3161960542201996, -0.17476114630699158, -0.01057001668959856, -0.09626241028308868, -0.02484196610748768, 0.024949101731181145, 0.32161611318588257, -0.25278717279434204, 0.02265646867454052, 0.003655987558886409, 0.003114797407761216, 0.012024858966469765, 0.2464076578617096, 0.26900991797447205, -0.08417719602584839, 0.8306386470794678, -0.008616657927632332, 0.0005153216770850122, -0.006195844616740942, 0.24568860232830048, -0.2769913971424103, 0.07813715189695358, 0.8002945780754089, -0.005344964563846588, 0.0024088292848318815, 0.0015819177497178316]} +{"t": 0.0837, "q": [-0.1515112817287445, 0.00831417553126812, 0.0005088920588605106, 0.31634944677352905, -0.17475683987140656, -0.010562920942902565, -0.09560620784759521, -0.024816399440169334, 0.024654479697346687, 0.3217865526676178, -0.25279155373573303, 0.02267809771001339, 0.003589028026908636, 0.003123388858512044, 0.012917653657495975, 0.24632376432418823, 0.2650551199913025, -0.08470450341701508, 0.831525444984436, -0.00866459496319294, 0.0005033374764025211, -0.006243781186640263, 0.24568860232830048, -0.2732882797718048, 0.07878429442644119, 0.8012892603874207, -0.005368933081626892, 0.0024088292848318815, 0.001797633827663958]} +{"t": 0.1004, "q": [-0.15111926198005676, 0.00868062674999237, 0.0003481892927084118, 0.3163323998451233, -0.17476114630699158, -0.01057001668959856, -0.09534201771020889, -0.024816399440169334, 0.0245339535176754, 0.3217439353466034, -0.252774715423584, 0.022677969187498093, 0.003696163184940815, 0.0031027132645249367, 0.013506850227713585, 0.24641963839530945, 0.2613160312175751, -0.08478839695453644, 0.8322085738182068, -0.00866459496319294, 0.0005153216770850122, -0.0062797339633107185, 0.24594026803970337, -0.2698967456817627, 0.07904794812202454, 0.8022000789642334, -0.005320996046066284, 0.0023968450259417295, 0.0017736653098836541]} +{"t": 0.1171, "q": [-0.15083803236484528, 0.008331218734383583, 0.0003883649769704789, 0.3163835406303406, -0.17476114630699158, -0.01057001668959856, -0.09518010169267654, -0.02491866610944271, 0.024614304304122925, 0.32162463665008545, -0.2527788579463959, 0.0226708073168993, 0.003803298342972994, 0.003178277285769582, 0.013870512135326862, 0.24653948843479156, 0.2581881582736969, -0.08500410616397858, 0.832939624786377, -0.008676579222083092, 0.0005153216770850122, -0.0062917182222008705, 0.24590431153774261, -0.2670804560184479, 0.07935953885316849, 0.8030509352684021, -0.005344964563846588, 0.0024807346053421497, 0.0018335864879190922]} +{"t": 0.1339, "q": [-0.15079541504383087, 0.008390873670578003, 0.0003883649769704789, 0.31645169854164124, -0.17476539313793182, -0.0105629563331604, -0.09506931155920029, -0.024893099442124367, 0.024574128910899162, 0.321658730506897, -0.2527788579463959, 0.0226708073168993, 0.003803298342972994, 0.0032082691323012114, 0.014157536439597607, 0.24658742547035217, 0.2552879750728607, -0.08520784229040146, 0.8337305784225464, -0.008676579222083092, 0.0005273059359751642, -0.0062797339633107185, 0.24597622454166412, -0.2648274004459381, 0.07955128699541092, 0.803805947303772, -0.005368933081626892, 0.0024687503464519978, 0.0018335864879190922]} +{"t": 0.1506, "q": [-0.1507783681154251, 0.008416440337896347, 0.0003481892927084118, 0.3165539801120758, -0.17476539313793182, -0.0105629563331604, -0.09502670168876648, -0.024867532774806023, 0.02452056109905243, 0.3217524588108063, -0.25278300046920776, 0.022663628682494164, 0.003803298342972994, 0.0032762556802481413, 0.014497267082333565, 0.24656344950199127, 0.25310683250427246, -0.08545950800180435, 0.8344256281852722, -0.008640626445412636, 0.0005392901366576552, -0.0063156867399811745, 0.24589233100414276, -0.2630777060985565, 0.07961120456457138, 0.8044530749320984, -0.005368933081626892, 0.0024687503464519978, 0.0018096179701387882]} +{"t": 0.1673, "q": [-0.15072724223136902, 0.008484616875648499, 0.00033479739795438945, 0.3167073726654053, -0.17475683987140656, -0.010562920942902565, -0.09498409181833267, -0.024816399440169334, 0.02450716868042946, 0.3218291699886322, -0.2527787387371063, 0.02265639416873455, 0.0038568659219890833, 0.0032986619044095278, 0.014856108464300632, 0.24651551246643066, 0.2518484890460968, -0.08548347651958466, 0.8348571062088013, -0.00866459496319294, 0.0005273059359751642, -0.0063276709988713264, 0.2458084374666214, -0.2619152367115021, 0.07963517308235168, 0.805004358291626, -0.005368933081626892, 0.0024687503464519978, 0.0018455706303939223]} +{"t": 0.1841, "q": [-0.15074428915977478, 0.008518707007169724, 0.00030801360844634473, 0.3167840838432312, -0.17475683987140656, -0.010562920942902565, -0.09495000541210175, -0.02479935623705387, 0.024480385705828667, 0.32181212306022644, -0.2527872920036316, 0.022670863196253777, 0.003816690295934677, 0.0033595070708543062, 0.015018993057310581, 0.24651551246643066, 0.251201331615448, -0.0854954645037651, 0.8352165818214417, -0.008652610704302788, 0.0005392901366576552, -0.0063276709988713264, 0.2457844763994217, -0.2613040506839752, 0.07963517308235168, 0.8054118156433105, -0.005404885392636061, 0.0024687503464519978, 0.0018096179701387882]} +{"t": 0.201, "q": [-0.15074428915977478, 0.008544271811842918, 0.0002410541201243177, 0.3168692886829376, -0.17475683987140656, -0.010562920942902565, -0.09489887207746506, -0.024756744503974915, 0.024466993287205696, 0.3218632638454437, -0.2527787387371063, 0.02265639416873455, 0.003803298342972994, 0.0032678991556167603, 0.015229270793497562, 0.24653948843479156, 0.251201331615448, -0.08550744503736496, 0.8355401754379272, -0.008700547739863396, 0.0005273059359751642, -0.0063156867399811745, 0.2458324134349823, -0.26110032200813293, 0.07961120456457138, 0.8057833313941956, -0.005404885392636061, 0.0024927188642323017, 0.0018096179701387882]} +{"t": 0.2178, "q": [-0.15072724223136902, 0.008510183542966843, 0.00020087843586225063, 0.3170056641101837, -0.1747525930404663, -0.010569981299340725, -0.0948818251490593, -0.02473970130085945, 0.024440210312604904, 0.32189735770225525, -0.25278717279434204, 0.02265646867454052, 0.003816690295934677, 0.003267712891101837, 0.015478108078241348, 0.24653948843479156, 0.25126126408576965, -0.08539959043264389, 0.8357678651809692, -0.008700547739863396, 0.0005273059359751642, -0.0063276709988713264, 0.2458084374666214, -0.26110032200813293, 0.07956327497959137, 0.8062028288841248, -0.005428853910416365, 0.0024927188642323017, 0.001761681167408824]} +{"t": 0.2345, "q": [-0.15071871876716614, 0.00849314033985138, 0.00016070275160018355, 0.31708234548568726, -0.17476114630699158, -0.01057001668959856, -0.09483069181442261, -0.024748222902417183, 0.024466993287205696, 0.3219314217567444, -0.2527872920036316, 0.022670863196253777, 0.00388364982791245, 0.0031608212739229202, 0.01574576459825039, 0.2465035319328308, 0.25139307975769043, -0.08533966541290283, 0.8358997106552124, -0.008700547739863396, 0.0005273059359751642, -0.006339655257761478, 0.2458084374666214, -0.2611362636089325, 0.07949136942625046, 0.8067061305046082, -0.005428853910416365, 0.002540655666962266, 0.001761681167408824]} +{"t": 0.2513, "q": [-0.15071871876716614, 0.008484616875648499, 0.00018748654110822827, 0.3171079158782959, -0.17476114630699158, -0.01057001668959856, -0.09482216835021973, -0.024756744503974915, 0.024453600868582726, 0.321956992149353, -0.25278300046920776, 0.022663628682494164, 0.003923825453966856, 0.003107320051640272, 0.01595137268304825, 0.2464795559644699, 0.25144103169441223, -0.08525577932596207, 0.8359835743904114, -0.008700547739863396, 0.0005512743373401463, -0.0063037024810910225, 0.2457844763994217, -0.26114824414253235, 0.07951533794403076, 0.8071615099906921, -0.005416869651526213, 0.0025166873820126057, 0.001761681167408824]} +{"t": 0.268, "q": [-0.15071871876716614, 0.00849314033985138, 0.00018748654110822827, 0.3171164393424988, -0.17475691437721252, -0.010577077977359295, -0.09481364488601685, -0.024756744503974915, 0.024480385705828667, 0.3219314217567444, -0.25278717279434204, 0.02265646867454052, 0.003910433501005173, 0.003123548347502947, 0.016133759170770645, 0.24649155139923096, 0.25139307975769043, -0.08530371636152267, 0.8361154198646545, -0.0087245162576437, 0.0005273059359751642, -0.0063156867399811745, 0.2458084374666214, -0.26112428307533264, 0.07950334995985031, 0.8074851036071777, -0.005464806687086821, 0.0025286716409027576, 0.001785649568773806]} +{"t": 0.2847, "q": [-0.15071871876716614, 0.008476095274090767, 0.00018748654110822827, 0.31712496280670166, -0.1747525930404663, -0.010569981299340725, -0.09482216835021973, -0.024773789569735527, 0.024493776261806488, 0.3219655156135559, -0.25277459621429443, 0.022663572803139687, 0.00388364982791245, 0.0030788767617195845, 0.016258548945188522, 0.24652749300003052, 0.2513810992240906, -0.08532768487930298, 0.836163341999054, -0.008700547739863396, 0.0005273059359751642, -0.0063156867399811745, 0.2458324134349823, -0.26112428307533264, 0.07952731847763062, 0.8077247738838196, -0.005464806687086821, 0.002540655666962266, 0.0017736653098836541]} +{"t": 0.3015, "q": [-0.15070167183876038, 0.008459052070975304, 0.00020087843586225063, 0.3171505331993103, -0.17475676536560059, -0.010548763908445835, -0.09482216835021973, -0.024807877838611603, 0.024480385705828667, 0.32194846868515015, -0.2527788579463959, 0.0226708073168993, 0.003910433501005173, 0.003041950287297368, 0.016407351940870285, 0.24652749300003052, 0.2513810992240906, -0.08532768487930298, 0.8362472653388977, -0.008700547739863396, 0.0005512743373401463, -0.0063156867399811745, 0.245856374502182, -0.2611362636089325, 0.07950334995985031, 0.8079525232315063, -0.0055127437226474285, 0.00256462418474257, 0.001785649568773806]} +{"t": 0.3182, "q": [-0.15071871876716614, 0.008442007005214691, 0.00020087843586225063, 0.3171505331993103, -0.17475683987140656, -0.010562920942902565, -0.09480512887239456, -0.024824922904372215, 0.0245339535176754, 0.3219740390777588, -0.2527787387371063, 0.02265639416873455, 0.0038970415480434895, 0.003020325442776084, 0.016575375571846962, 0.24651551246643066, 0.25139307975769043, -0.08532768487930298, 0.836307168006897, -0.008700547739863396, 0.0005512743373401463, -0.0063276709988713264, 0.245856374502182, -0.26112428307533264, 0.07949136942625046, 0.8080483675003052, -0.005476790945976973, 0.00256462418474257, 0.0017736653098836541]} +{"t": 0.3349, "q": [-0.15071871876716614, 0.008450528606772423, 0.00020087843586225063, 0.3171505331993103, -0.1747525930404663, -0.010569981299340725, -0.09482216835021973, -0.02485048770904541, 0.02450716868042946, 0.321956992149353, -0.2527914345264435, 0.022663703188300133, 0.0038702578749507666, 0.0030365921556949615, 0.016738632693886757, 0.2465035319328308, 0.2514290511608124, -0.08527974784374237, 0.8363431096076965, -0.0087245162576437, 0.0005512743373401463, -0.0063276709988713264, 0.2458324134349823, -0.2611362636089325, 0.07946740090847015, 0.8080843091011047, -0.005476790945976973, 0.00256462418474257, 0.001761681167408824]} +{"t": 0.3517, "q": [-0.15071871876716614, 0.008467573672533035, 0.00022766222537029535, 0.31713348627090454, -0.17475683987140656, -0.010562920942902565, -0.09483069181442261, -0.024867532774806023, 0.02450716868042946, 0.3219314217567444, -0.2527788579463959, 0.0226708073168993, 0.003816690295934677, 0.00310579314827919, 0.016877932474017143, 0.24641963839530945, 0.2514290511608124, -0.08527974784374237, 0.8363431096076965, -0.0087245162576437, 0.0005512743373401463, -0.0063276709988713264, 0.24582043290138245, -0.26114824414253235, 0.07949136942625046, 0.8080723285675049, -0.005452822428196669, 0.00256462418474257, 0.001797633827663958]} +{"t": 0.3684, "q": [-0.15072724223136902, 0.008467573672533035, 0.00020087843586225063, 0.31709086894989014, -0.1747525930404663, -0.010569981299340725, -0.09482216835021973, -0.024893099442124367, 0.02450716868042946, 0.3219314217567444, -0.2527828812599182, 0.022649234160780907, 0.0038568659219890833, 0.003175444435328245, 0.017084449529647827, 0.24633574485778809, 0.2513810992240906, -0.08530371636152267, 0.8363670706748962, -0.008736500516533852, 0.0005752427969127893, -0.0063156867399811745, 0.2457844763994217, -0.26114824414253235, 0.07951533794403076, 0.808060348033905, -0.005452822428196669, 0.00256462418474257, 0.0017736653098836541]} +{"t": 0.3852, "q": [-0.15070167183876038, 0.008484616875648499, 0.00022766222537029535, 0.3170738220214844, -0.1747525930404663, -0.010569981299340725, -0.09480512887239456, -0.0249016210436821, 0.02450716868042946, 0.32193994522094727, -0.2527872920036316, 0.022670863196253777, 0.0038702578749507666, 0.003123737405985594, 0.017290852963924408, 0.24631178379058838, 0.25139307975769043, -0.08530371636152267, 0.8363550901412964, -0.008700547739863396, 0.0005512743373401463, -0.0063276709988713264, 0.24574851989746094, -0.2611362636089325, 0.07953930646181107, 0.8080723285675049, -0.0054887752048671246, 0.00256462418474257, 0.001797633827663958]} +{"t": 0.402, "q": [-0.1506931483745575, 0.008501661941409111, 0.00020087843586225063, 0.3170652985572815, -0.1747610718011856, -0.010555860586464405, -0.09483069181442261, -0.024893099442124367, 0.024493776261806488, 0.32190585136413574, -0.25278300046920776, 0.022663628682494164, 0.0038970415480434895, 0.0030798388179391623, 0.01753087341785431, 0.24622789025306702, 0.25140509009361267, -0.08530371636152267, 0.8363670706748962, -0.0087245162576437, 0.0005273059359751642, -0.0063276709988713264, 0.24572455883026123, -0.26114824414253235, 0.07949136942625046, 0.808060348033905, -0.005476790945976973, 0.00256462418474257, 0.0017736653098836541]} +{"t": 0.4187, "q": [-0.15071871876716614, 0.008467573672533035, 0.00020087843586225063, 0.31704825162887573, -0.17475683987140656, -0.010562920942902565, -0.09483921527862549, -0.024884577840566635, 0.024453600868582726, 0.3218717873096466, -0.2527914345264435, 0.022663703188300133, 0.00388364982791245, 0.003050134051591158, 0.017818056046962738, 0.2462039291858673, 0.2514290511608124, -0.08530371636152267, 0.8363670706748962, -0.008712531998753548, 0.0005632585962302983, -0.0063276709988713264, 0.24571256339550018, -0.26114824414253235, 0.07949136942625046, 0.8080483675003052, -0.005452822428196669, 0.00256462418474257, 0.001749696908518672]} +{"t": 0.4354, "q": [-0.15071019530296326, 0.008476095274090767, 0.00021427033061627299, 0.31703120470046997, -0.17476114630699158, -0.01057001668959856, -0.09481364488601685, -0.024876054376363754, 0.024466993287205696, 0.32188883423805237, -0.25277459621429443, 0.022663572803139687, 0.004004176706075668, 0.002997079398483038, 0.01809048466384411, 0.24616797268390656, 0.25139307975769043, -0.08533966541290283, 0.8363910913467407, -0.008700547739863396, 0.0005392901366576552, -0.0063276709988713264, 0.24565264582633972, -0.26114824414253235, 0.07949136942625046, 0.808060348033905, -0.005452822428196669, 0.00256462418474257, 0.001749696908518672]} +{"t": 0.4521, "q": [-0.15071019530296326, 0.008442007005214691, 0.00018748654110822827, 0.3170056641101837, -0.1747482717037201, -0.01056288555264473, -0.09484773874282837, -0.024884577840566635, 0.024426817893981934, 0.32188883423805237, -0.25278717279434204, 0.02265646867454052, 0.003964001312851906, 0.002860968466848135, 0.01838698424398899, 0.24619193375110626, 0.2513810992240906, -0.08535165339708328, 0.8363910913467407, -0.0087245162576437, 0.0005392901366576552, -0.0063276709988713264, 0.24564066529273987, -0.2611362636089325, 0.07949136942625046, 0.808060348033905, -0.0054887752048671246, 0.002576608443632722, 0.001761681167408824]} +{"t": 0.4689, "q": [-0.15070167183876038, 0.008459052070975304, 0.00018748654110822827, 0.31698861718177795, -0.17475251853466034, -0.010555824264883995, -0.09485626220703125, -0.024867532774806023, 0.024453600868582726, 0.32185474038124084, -0.25278300046920776, 0.022663628682494164, 0.003923825453966856, 0.0028230559546500444, 0.01863027550280094, 0.24621590971946716, 0.25140509009361267, -0.08533966541290283, 0.8363910913467407, -0.0087245162576437, 0.0005512743373401463, -0.0063276709988713264, 0.24564066529273987, -0.26114824414253235, 0.07950334995985031, 0.8080723285675049, -0.0055127437226474285, 0.00256462418474257, 0.001749696908518672]} +{"t": 0.4856, "q": [-0.15068462491035461, 0.008467573672533035, 0.00018748654110822827, 0.31699714064598083, -0.1747525930404663, -0.010569981299340725, -0.09481364488601685, -0.024867532774806023, 0.024440210312604904, 0.32188883423805237, -0.25278300046920776, 0.022663628682494164, 0.0039506093598902225, 0.0028078549075871706, 0.018895473331212997, 0.2462039291858673, 0.25140509009361267, -0.08531569689512253, 0.83645099401474, -0.0087245162576437, 0.0005392901366576552, -0.0063276709988713264, 0.24562868475914001, -0.2611362636089325, 0.07949136942625046, 0.8080483675003052, -0.0054887752048671246, 0.002600576961413026, 0.001761681167408824]} +{"t": 0.5023, "q": [-0.15071871876716614, 0.008459052070975304, 0.00018748654110822827, 0.3169630467891693, -0.17475683987140656, -0.010562920942902565, -0.09483069181442261, -0.024833444505929947, 0.024440210312604904, 0.3218632638454437, -0.2527788579463959, 0.0226708073168993, 0.0039506093598902225, 0.00281533389352262, 0.01907075010240078, 0.24625186622142792, 0.25140509009361267, -0.08532768487930298, 0.8364749550819397, -0.0087245162576437, 0.0005512743373401463, -0.0063276709988713264, 0.2456047087907791, -0.26114824414253235, 0.07947938144207001, 0.8080723285675049, -0.0054887752048671246, 0.002588592702522874, 0.001797633827663958]} +{"t": 0.5191, "q": [-0.15071019530296326, 0.008467573672533035, 0.00018748654110822827, 0.31694599986076355, -0.17476114630699158, -0.01057001668959856, -0.09485626220703125, -0.02484196610748768, 0.024440210312604904, 0.3218632638454437, -0.2527872920036316, 0.022670863196253777, 0.003977392800152302, 0.0028077159076929092, 0.019245976582169533, 0.24622789025306702, 0.25140509009361267, -0.08530371636152267, 0.8364989161491394, -0.0087245162576437, 0.0005273059359751642, -0.0063276709988713264, 0.2455567717552185, -0.26114824414253235, 0.07950334995985031, 0.8080483675003052, -0.005464806687086821, 0.002576608443632722, 0.001749696908518672]} +{"t": 0.5358, "q": [-0.15071019530296326, 0.008459052070975304, 0.00020087843586225063, 0.31694599986076355, -0.1747610718011856, -0.010555860586464405, -0.09483921527862549, -0.02485048770904541, 0.024400033056735992, 0.3218376934528351, -0.25278717279434204, 0.02265646867454052, 0.003977392800152302, 0.002860481385141611, 0.019411925226449966, 0.2462039291858673, 0.25139307975769043, -0.08533966541290283, 0.8364989161491394, -0.008736500516533852, 0.0005512743373401463, -0.0063276709988713264, 0.24554479122161865, -0.26114824414253235, 0.07951533794403076, 0.8080723285675049, -0.005464806687086821, 0.002588592702522874, 0.0017736653098836541]} +{"t": 0.5525, "q": [-0.15071019530296326, 0.008467573672533035, 0.00020087843586225063, 0.31694599986076355, -0.17475683987140656, -0.010562920942902565, -0.09482216835021973, -0.02485048770904541, 0.024413425475358963, 0.32184621691703796, -0.25278717279434204, 0.02265646867454052, 0.003977392800152302, 0.0029208071064203978, 0.01954473927617073, 0.24619193375110626, 0.25139307975769043, -0.08535165339708328, 0.8365228772163391, -0.0087245162576437, 0.0005392901366576552, -0.0063276709988713264, 0.2455088347196579, -0.2611362636089325, 0.07951533794403076, 0.8080723285675049, -0.0055127437226474285, 0.002588592702522874, 0.001761681167408824]} +{"t": 0.5693, "q": [-0.15068462491035461, 0.008467573672533035, 0.00020087843586225063, 0.3169630467891693, -0.17476114630699158, -0.01057001668959856, -0.09483069181442261, -0.02485048770904541, 0.024426817893981934, 0.3218717873096466, -0.25278717279434204, 0.02265646867454052, 0.0039506093598902225, 0.002928300527855754, 0.01968390680849552, 0.2461559921503067, 0.25139307975769043, -0.08531569689512253, 0.8365468382835388, -0.0087245162576437, 0.0005392901366576552, -0.006339655257761478, 0.24544891715049744, -0.26114824414253235, 0.07949136942625046, 0.808060348033905, -0.005476790945976973, 0.002600576961413026, 0.0017736653098836541]} +{"t": 0.586, "q": [-0.15071871876716614, 0.008450528606772423, 0.00018748654110822827, 0.31694599986076355, -0.17475676536560059, -0.010548763908445835, -0.09484773874282837, -0.02485901117324829, 0.024453600868582726, 0.3218291699886322, -0.2527831196784973, 0.022678041830658913, 0.00388364982791245, 0.0029358312021940947, 0.019727222621440887, 0.24614399671554565, 0.2514290511608124, -0.08532768487930298, 0.8365828394889832, -0.008736500516533852, 0.0005512743373401463, -0.0063156867399811745, 0.24537701904773712, -0.2611362636089325, 0.07949136942625046, 0.808060348033905, -0.005452822428196669, 0.002624545246362686, 0.0017736653098836541]} +{"t": 0.6028, "q": [-0.15071871876716614, 0.008476095274090767, 0.00020087843586225063, 0.31693747639656067, -0.17475683987140656, -0.010562920942902565, -0.09485626220703125, -0.02485901117324829, 0.024453600868582726, 0.32184621691703796, -0.25278717279434204, 0.02265646867454052, 0.003910433501005173, 0.0029358090832829475, 0.019784947857260704, 0.24614399671554565, 0.25139307975769043, -0.08530371636152267, 0.836594820022583, -0.008760469034314156, 0.0005512743373401463, -0.0063276709988713264, 0.24531708657741547, -0.26112428307533264, 0.07951533794403076, 0.808060348033905, -0.0054887752048671246, 0.002624545246362686, 0.001749696908518672]} +{"t": 0.6195, "q": [-0.1507357656955719, 0.008476095274090767, 0.00018748654110822827, 0.31694599986076355, -0.17476114630699158, -0.01057001668959856, -0.09483921527862549, -0.02485048770904541, 0.024480385705828667, 0.3218376934528351, -0.2527914345264435, 0.022663703188300133, 0.003910433501005173, 0.0029659797437489033, 0.019833145663142204, 0.2461559921503067, 0.25140509009361267, -0.08535165339708328, 0.8365828394889832, -0.008736500516533852, 0.0005392901366576552, -0.0063276709988713264, 0.24529312551021576, -0.26112428307533264, 0.07951533794403076, 0.808060348033905, -0.0054887752048671246, 0.002600576961413026, 0.001797633827663958]} +{"t": 0.6362, "q": [-0.15071019530296326, 0.008476095274090767, 0.00020087843586225063, 0.31694599986076355, -0.17476114630699158, -0.01057001668959856, -0.09484773874282837, -0.02485901117324829, 0.024453600868582726, 0.32184621691703796, -0.25278717279434204, 0.02265646867454052, 0.003910433501005173, 0.0029508776497095823, 0.01985233835875988, 0.2461559921503067, 0.25139307975769043, -0.08533966541290283, 0.8365828394889832, -0.008736500516533852, 0.0005273059359751642, -0.0063276709988713264, 0.245257169008255, -0.26112428307533264, 0.07949136942625046, 0.8080723285675049, -0.0055127437226474285, 0.002624545246362686, 0.001761681167408824]} +{"t": 0.6529, "q": [-0.15071871876716614, 0.008476095274090767, 0.00018748654110822827, 0.3169630467891693, -0.17475676536560059, -0.010548763908445835, -0.09484773874282837, -0.024867532774806023, 0.024453600868582726, 0.32184621691703796, -0.25278300046920776, 0.022663628682494164, 0.0038970415480434895, 0.002950873924419284, 0.019861958920955658, 0.2461559921503067, 0.25139307975769043, -0.08532768487930298, 0.8365828394889832, -0.008772453293204308, 0.0005273059359751642, -0.0063276709988713264, 0.2452092319726944, -0.26114824414253235, 0.07951533794403076, 0.8080843091011047, -0.005464806687086821, 0.002636529505252838, 0.001785649568773806]} +{"t": 0.6697, "q": [-0.15071019530296326, 0.008484616875648499, 0.00020087843586225063, 0.31695452332496643, -0.17476539313793182, -0.0105629563331604, -0.09484773874282837, -0.02485901117324829, 0.024453600868582726, 0.3218632638454437, -0.25278300046920776, 0.022663628682494164, 0.003964001312851906, 0.0029659648425877094, 0.019871627911925316, 0.2461559921503067, 0.2514290511608124, -0.08531569689512253, 0.8366307616233826, -0.008736500516533852, 0.0005632585962302983, -0.0063276709988713264, 0.24519725143909454, -0.26114824414253235, 0.07949136942625046, 0.808060348033905, -0.005476790945976973, 0.002624545246362686, 0.001761681167408824]} +{"t": 0.6866, "q": [-0.15071019530296326, 0.008510183542966843, 0.00020087843586225063, 0.31695452332496643, -0.17476114630699158, -0.01057001668959856, -0.09485626220703125, -0.02485048770904541, 0.024480385705828667, 0.32184621691703796, -0.2527787387371063, 0.02265639416873455, 0.0039506093598902225, 0.0029659648425877094, 0.019871627911925316, 0.24614399671554565, 0.25139307975769043, -0.08532768487930298, 0.8366307616233826, -0.008760469034314156, 0.0005392901366576552, -0.0063276709988713264, 0.2451852709054947, -0.2611362636089325, 0.07951533794403076, 0.808060348033905, -0.0055127437226474285, 0.002636529505252838, 0.001761681167408824]} +{"t": 0.7033, "q": [-0.15071871876716614, 0.008476095274090767, 0.00021427033061627299, 0.3169715702533722, -0.17475683987140656, -0.010562920942902565, -0.09487330168485641, -0.02485901117324829, 0.024480385705828667, 0.3218376934528351, -0.2527914345264435, 0.022663703188300133, 0.003964001312851906, 0.002981055760756135, 0.019881296902894974, 0.2461799532175064, 0.25140509009361267, -0.08535165339708328, 0.8366307616233826, -0.008760469034314156, 0.0005273059359751642, -0.0063276709988713264, 0.2451852709054947, -0.2611362636089325, 0.07951533794403076, 0.8080843091011047, -0.005476790945976973, 0.002636529505252838, 0.0017736653098836541]} +{"t": 0.72, "q": [-0.15071019530296326, 0.008476095274090767, 0.00020087843586225063, 0.3169800937175751, -0.17476114630699158, -0.01057001668959856, -0.09485626220703125, -0.02485901117324829, 0.024466993287205696, 0.3218376934528351, -0.2527914345264435, 0.022663703188300133, 0.0039506093598902225, 0.002981055760756135, 0.019881296902894974, 0.2461559921503067, 0.25139307975769043, -0.08532768487930298, 0.8366427421569824, -0.008736500516533852, 0.0005392901366576552, -0.0063276709988713264, 0.2451612949371338, -0.26114824414253235, 0.07951533794403076, 0.8080723285675049, -0.005464806687086821, 0.002636529505252838, 0.001761681167408824]} +{"t": 0.7367, "q": [-0.15070167183876038, 0.008459052070975304, 0.00018748654110822827, 0.31698861718177795, -0.17475683987140656, -0.010562920942902565, -0.09485626220703125, -0.024867532774806023, 0.024466993287205696, 0.32184621691703796, -0.25279155373573303, 0.02267809771001339, 0.0039506093598902225, 0.0029886013362556696, 0.019886130467057228, 0.2461559921503067, 0.25139307975769043, -0.08535165339708328, 0.8366667032241821, -0.008736500516533852, 0.0005273059359751642, -0.0063276709988713264, 0.24517327547073364, -0.26112428307533264, 0.07950334995985031, 0.8080843091011047, -0.0054887752048671246, 0.00264851376414299, 0.0017736653098836541]} +{"t": 0.7535, "q": [-0.15071019530296326, 0.008424961939454079, 0.00018748654110822827, 0.3169800937175751, -0.17476539313793182, -0.0105629563331604, -0.09484773874282837, -0.02485901117324829, 0.024466993287205696, 0.32184621691703796, -0.25278300046920776, 0.022663628682494164, 0.003937217406928539, 0.0029735066927969456, 0.019886082038283348, 0.24616797268390656, 0.25139307975769043, -0.08535165339708328, 0.8367026448249817, -0.008736500516533852, 0.0005512743373401463, -0.0063276709988713264, 0.2451852709054947, -0.26114824414253235, 0.07949136942625046, 0.8080962896347046, -0.0054887752048671246, 0.002636529505252838, 0.0017736653098836541]} +{"t": 0.7702, "q": [-0.15071871876716614, 0.008450528606772423, 0.00018748654110822827, 0.3169800937175751, -0.17476114630699158, -0.01057001668959856, -0.09483921527862549, -0.02485048770904541, 0.024493776261806488, 0.3218717873096466, -0.25278300046920776, 0.022663628682494164, 0.003990784753113985, 0.0029961466789245605, 0.01989096589386463, 0.2461799532175064, 0.25139307975769043, -0.08531569689512253, 0.8367266058921814, -0.0087245162576437, 0.0005392901366576552, -0.0063276709988713264, 0.24519725143909454, -0.2611362636089325, 0.07950334995985031, 0.8080723285675049, -0.0054887752048671246, 0.002636529505252838, 0.001761681167408824]} +{"t": 0.787, "q": [-0.15070167183876038, 0.008450528606772423, 0.00020087843586225063, 0.3169715702533722, -0.17475683987140656, -0.010562920942902565, -0.09482216835021973, -0.024867532774806023, 0.024453600868582726, 0.3218632638454437, -0.2527872920036316, 0.022670863196253777, 0.003937217406928539, 0.002981055760756135, 0.019881296902894974, 0.2461559921503067, 0.25139307975769043, -0.08535165339708328, 0.8367146253585815, -0.008736500516533852, 0.0005512743373401463, -0.006339655257761478, 0.24517327547073364, -0.26112428307533264, 0.07951533794403076, 0.8080723285675049, -0.0054887752048671246, 0.00264851376414299, 0.0017736653098836541]} +{"t": 0.8038, "q": [-0.15071019530296326, 0.008467573672533035, 0.0001740946463542059, 0.31699714064598083, -0.17475683987140656, -0.010562920942902565, -0.09483069181442261, -0.02485901117324829, 0.024466993287205696, 0.3219143748283386, -0.2527872920036316, 0.022670863196253777, 0.003910433501005173, 0.0029961466789245605, 0.01989096589386463, 0.24614399671554565, 0.25140509009361267, -0.08535165339708328, 0.8367385864257812, -0.008736500516533852, 0.0005512743373401463, -0.0063276709988713264, 0.2451612949371338, -0.2611362636089325, 0.07951533794403076, 0.8080843091011047, -0.0055127437226474285, 0.002660498023033142, 0.001761681167408824]} +{"t": 0.8205, "q": [-0.1506931483745575, 0.008476095274090767, 0.0001740946463542059, 0.31699714064598083, -0.17475691437721252, -0.010577077977359295, -0.09480512887239456, -0.02485901117324829, 0.024480385705828667, 0.3219143748283386, -0.2527914345264435, 0.022663703188300133, 0.0038568659219890833, 0.0029886013362556696, 0.019886130467057228, 0.24614399671554565, 0.2514290511608124, -0.08532768487930298, 0.8367146253585815, -0.0087245162576437, 0.0005392901366576552, -0.0063276709988713264, 0.2451852709054947, -0.26114824414253235, 0.07949136942625046, 0.8080962896347046, -0.0054887752048671246, 0.002660498023033142, 0.001749696908518672]} +{"t": 0.8374, "q": [-0.15068462491035461, 0.008476095274090767, 0.00018748654110822827, 0.3170056641101837, -0.17476114630699158, -0.01057001668959856, -0.09481364488601685, -0.02485901117324829, 0.024466993287205696, 0.3219143748283386, -0.25278300046920776, 0.022663628682494164, 0.0039506093598902225, 0.0029885938856750727, 0.019905371591448784, 0.2461320161819458, 0.2514170706272125, -0.08532768487930298, 0.8367146253585815, -0.0087245162576437, 0.0005392901366576552, -0.006339655257761478, 0.2451852709054947, -0.26114824414253235, 0.07949136942625046, 0.8080962896347046, -0.0055127437226474285, 0.002672482281923294, 0.001761681167408824]} +{"t": 0.8541, "q": [-0.1506931483745575, 0.008476095274090767, 0.00020087843586225063, 0.3169715702533722, -0.17475683987140656, -0.010562920942902565, -0.09481364488601685, -0.02485901117324829, 0.024453600868582726, 0.32189735770225525, -0.2527788579463959, 0.0226708073168993, 0.003923825453966856, 0.0029885938856750727, 0.019905371591448784, 0.2461320161819458, 0.25140509009361267, -0.08535165339708328, 0.8367026448249817, -0.0087245162576437, 0.0005512743373401463, -0.0063276709988713264, 0.2451852709054947, -0.26114824414253235, 0.07950334995985031, 0.8080962896347046, -0.0054887752048671246, 0.002672482281923294, 0.001761681167408824]} +{"t": 0.8709, "q": [-0.1506931483745575, 0.008459052070975304, 0.00020087843586225063, 0.31698861718177795, -0.1747482717037201, -0.01056288555264473, -0.09479660540819168, -0.02485901117324829, 0.024440210312604904, 0.32190585136413574, -0.25278717279434204, 0.02265646867454052, 0.0038970415480434895, 0.0029734992422163486, 0.019905323162674904, 0.2461320161819458, 0.25140509009361267, -0.08535165339708328, 0.8367385864257812, -0.0087245162576437, 0.0005512743373401463, -0.0063276709988713264, 0.24517327547073364, -0.26114824414253235, 0.07952731847763062, 0.8080843091011047, -0.0054887752048671246, 0.002672482281923294, 0.00173771264962852]} +{"t": 0.8876, "q": [-0.1506931483745575, 0.008476095274090767, 0.00020087843586225063, 0.3170056641101837, -0.17475691437721252, -0.010577077977359295, -0.09479660540819168, -0.02484196610748768, 0.024453600868582726, 0.3219143748283386, -0.25278300046920776, 0.022663628682494164, 0.003923825453966856, 0.0029659501742571592, 0.019910110160708427, 0.2461320161819458, 0.25140509009361267, -0.08532768487930298, 0.8367385864257812, -0.0087245162576437, 0.0005632585962302983, -0.006339655257761478, 0.24517327547073364, -0.26112428307533264, 0.07951533794403076, 0.8081082701683044, -0.005452822428196669, 0.002672482281923294, 0.001761681167408824]} +{"t": 0.9044, "q": [-0.15071871876716614, 0.008484616875648499, 0.00018748654110822827, 0.31699714064598083, -0.17475691437721252, -0.010577077977359295, -0.09481364488601685, -0.02485901117324829, 0.024413425475358963, 0.3219143748283386, -0.2527914345264435, 0.022663703188300133, 0.003910433501005173, 0.0029885938856750727, 0.019905371591448784, 0.2461320161819458, 0.2514170706272125, -0.08532768487930298, 0.8367385864257812, -0.008736500516533852, 0.0005512743373401463, -0.0063156867399811745, 0.24517327547073364, -0.26112428307533264, 0.07950334995985031, 0.8080962896347046, -0.0054887752048671246, 0.002660498023033142, 0.001749696908518672]} +{"t": 0.9211, "q": [-0.15072724223136902, 0.008518707007169724, 0.0001740946463542059, 0.31699714064598083, -0.1747610718011856, -0.010555860586464405, -0.09481364488601685, -0.02485901117324829, 0.024453600868582726, 0.32188883423805237, -0.25278717279434204, 0.02265646867454052, 0.0038970415480434895, 0.0029885938856750727, 0.019905371591448784, 0.2461320161819458, 0.2514290511608124, -0.08532768487930298, 0.8367505669593811, -0.0087245162576437, 0.0005512743373401463, -0.006339655257761478, 0.2451612949371338, -0.26114824414253235, 0.07949136942625046, 0.8081202507019043, -0.005452822428196669, 0.002672482281923294, 0.001749696908518672]} +{"t": 0.9378, "q": [-0.15071871876716614, 0.008510183542966843, 0.0001740946463542059, 0.3169800937175751, -0.17476539313793182, -0.0105629563331604, -0.09483069181442261, -0.02485901117324829, 0.024413425475358963, 0.32189735770225525, -0.2527872920036316, 0.022670863196253777, 0.00388364982791245, 0.0029810448177158833, 0.019910158589482307, 0.24612003564834595, 0.2514170706272125, -0.08532768487930298, 0.836762547492981, -0.0087245162576437, 0.0005632585962302983, -0.0063276709988713264, 0.2451612949371338, -0.26114824414253235, 0.07951533794403076, 0.8080962896347046, -0.0054887752048671246, 0.002672482281923294, 0.001761681167408824]} +{"t": 0.9545, "q": [-0.15071871876716614, 0.008501661941409111, 0.00018748654110822827, 0.31699714064598083, -0.17475691437721252, -0.010577077977359295, -0.09483069181442261, -0.02485048770904541, 0.024453600868582726, 0.3218632638454437, -0.2527872920036316, 0.022670863196253777, 0.003923825453966856, 0.0029885864350944757, 0.01992461271584034, 0.24614399671554565, 0.25140509009361267, -0.08535165339708328, 0.8367505669593811, -0.008736500516533852, 0.0005632585962302983, -0.006339655257761478, 0.2451612949371338, -0.2611362636089325, 0.07949136942625046, 0.8081082701683044, -0.0054887752048671246, 0.002672482281923294, 0.0017736653098836541]} +{"t": 0.9714, "q": [-0.15072724223136902, 0.008476095274090767, 0.00018748654110822827, 0.31698861718177795, -0.17476114630699158, -0.01057001668959856, -0.09484773874282837, -0.02485901117324829, 0.024453600868582726, 0.3218632638454437, -0.25278300046920776, 0.022663628682494164, 0.003937217406928539, 0.0029810448177158833, 0.019910158589482307, 0.24614399671554565, 0.25140509009361267, -0.08535165339708328, 0.8367505669593811, -0.0087245162576437, 0.0005392901366576552, -0.0063276709988713264, 0.24517327547073364, -0.26114824414253235, 0.07949136942625046, 0.8080962896347046, -0.0054887752048671246, 0.002684466540813446, 0.001761681167408824]} +{"t": 0.9881, "q": [-0.15070167183876038, 0.00849314033985138, 0.00020087843586225063, 0.31698861718177795, -0.17476114630699158, -0.01057001668959856, -0.09484773874282837, -0.02485901117324829, 0.024480385705828667, 0.32185474038124084, -0.25278717279434204, 0.02265646867454052, 0.003910433501005173, 0.002996135503053665, 0.019919827580451965, 0.2461320161819458, 0.25140509009361267, -0.08532768487930298, 0.8367745876312256, -0.008700547739863396, 0.0005632585962302983, -0.006339655257761478, 0.2451612949371338, -0.26114824414253235, 0.07949136942625046, 0.8081082701683044, -0.0055247279815375805, 0.002672482281923294, 0.001785649568773806]} +{"t": 1.0048, "q": [-0.15070167183876038, 0.008476095274090767, 0.00020087843586225063, 0.31699714064598083, -0.17475683987140656, -0.010562920942902565, -0.09486477822065353, -0.02485048770904541, 0.024480385705828667, 0.32185474038124084, -0.25278717279434204, 0.02265646867454052, 0.003910433501005173, 0.0030036810785531998, 0.01992466114461422, 0.2461559921503067, 0.25140509009361267, -0.08530371636152267, 0.8367745876312256, -0.0087245162576437, 0.0005632585962302983, -0.0063276709988713264, 0.2451612949371338, -0.26114824414253235, 0.07950334995985031, 0.8081082701683044, -0.0055247279815375805, 0.0027084348257631063, 0.001785649568773806]} +{"t": 1.0216, "q": [-0.15070167183876038, 0.008459052070975304, 0.00020087843586225063, 0.31698861718177795, -0.17476114630699158, -0.01057001668959856, -0.09485626220703125, -0.02485901117324829, 0.024453600868582726, 0.32184621691703796, -0.2527828812599182, 0.022649234160780907, 0.003937217406928539, 0.0030036810785531998, 0.01992466114461422, 0.2461320161819458, 0.2514170706272125, -0.08532768487930298, 0.8367745876312256, -0.008700547739863396, 0.0005632585962302983, -0.0063276709988713264, 0.24514931440353394, -0.26114824414253235, 0.07947938144207001, 0.8081202507019043, -0.0055247279815375805, 0.0026964505668729544, 0.0017736653098836541]} +{"t": 1.0383, "q": [-0.15071019530296326, 0.008476095274090767, 0.00018748654110822827, 0.31698861718177795, -0.17475683987140656, -0.010562920942902565, -0.09483921527862549, -0.024867532774806023, 0.024453600868582726, 0.3218717873096466, -0.2527872920036316, 0.022670863196253777, 0.0039506093598902225, 0.0030036773532629013, 0.019934281706809998, 0.24614399671554565, 0.25140509009361267, -0.08531569689512253, 0.8367985486984253, -0.0087245162576437, 0.0005632585962302983, -0.006339655257761478, 0.2451612949371338, -0.26114824414253235, 0.07951533794403076, 0.8081322312355042, -0.0054887752048671246, 0.002672482281923294, 0.001761681167408824]} +{"t": 1.0551, "q": [-0.15071871876716614, 0.008450528606772423, 0.00018748654110822827, 0.3169800937175751, -0.17476114630699158, -0.01057001668959856, -0.09484773874282837, -0.02485901117324829, 0.024453600868582726, 0.32184621691703796, -0.2527872920036316, 0.022670863196253777, 0.003977392800152302, 0.002996135503053665, 0.019919827580451965, 0.2461080551147461, 0.25140509009361267, -0.08532768487930298, 0.836822509765625, -0.008760469034314156, 0.0005512743373401463, -0.0063276709988713264, 0.24514931440353394, -0.26112428307533264, 0.07950334995985031, 0.8081202507019043, -0.0055127437226474285, 0.0026964505668729544, 0.001749696908518672]} +{"t": 1.0718, "q": [-0.15071019530296326, 0.008459052070975304, 0.00018748654110822827, 0.3170056641101837, -0.17475683987140656, -0.010562920942902565, -0.09483921527862549, -0.02485901117324829, 0.024453600868582726, 0.3218717873096466, -0.25278717279434204, 0.02265646867454052, 0.003977392800152302, 0.0029810373671352863, 0.019929399713873863, 0.2461080551147461, 0.25140509009361267, -0.08535165339708328, 0.8368584513664246, -0.008760469034314156, 0.0005273059359751642, -0.006339655257761478, 0.24513733386993408, -0.2611362636089325, 0.07951533794403076, 0.8081082701683044, -0.0054887752048671246, 0.0026964505668729544, 0.0017736653098836541]} +{"t": 1.0885, "q": [-0.15072724223136902, 0.008484616875648499, 0.00020087843586225063, 0.3169715702533722, -0.1747525930404663, -0.010569981299340725, -0.09484773874282837, -0.02485901117324829, 0.024453600868582726, 0.3218376934528351, -0.2527872920036316, 0.022670863196253777, 0.003977392800152302, 0.002996128285303712, 0.01993906870484352, 0.24612003564834595, 0.25139307975769043, -0.08535165339708328, 0.8368584513664246, -0.008736500516533852, 0.0005273059359751642, -0.006339655257761478, 0.24514931440353394, -0.26112428307533264, 0.07949136942625046, 0.8081202507019043, -0.0054887752048671246, 0.0027084348257631063, 0.001749696908518672]} +{"t": 1.1054, "q": [-0.15070167183876038, 0.00849314033985138, 0.00018748654110822827, 0.31698861718177795, -0.1747525930404663, -0.010569981299340725, -0.09482216835021973, -0.02485901117324829, 0.024453600868582726, 0.32188883423805237, -0.2527872920036316, 0.022670863196253777, 0.003977392800152302, 0.002981018740683794, 0.019977502524852753, 0.24612003564834595, 0.25139307975769043, -0.08535165339708328, 0.8368704319000244, -0.008760469034314156, 0.0005392901366576552, -0.0063276709988713264, 0.24513733386993408, -0.26112428307533264, 0.07949136942625046, 0.8080962896347046, -0.0054887752048671246, 0.0027084348257631063, 0.0017736653098836541]} +{"t": 1.1221, "q": [-0.1506931483745575, 0.008467573672533035, 0.00018748654110822827, 0.31699714064598083, -0.17476114630699158, -0.01057001668959856, -0.09482216835021973, -0.02485901117324829, 0.024453600868582726, 0.3218717873096466, -0.25278717279434204, 0.02265646867454052, 0.004004176706075668, 0.0030036107636988163, 0.020107451826334, 0.24607209861278534, 0.2514170706272125, -0.08533966541290283, 0.8368584513664246, -0.008772453293204308, 0.0005512743373401463, -0.006339655257761478, 0.24512533843517303, -0.26114824414253235, 0.07951533794403076, 0.8081322312355042, -0.005452822428196669, 0.0027204190846532583, 0.001749696908518672]} +{"t": 1.1389, "q": [-0.1506931483745575, 0.008459052070975304, 0.00020087843586225063, 0.31698861718177795, -0.17475683987140656, -0.010562920942902565, -0.09483069181442261, -0.02484196610748768, 0.024453600868582726, 0.3218632638454437, -0.2527872920036316, 0.022670863196253777, 0.003937217406928539, 0.003018670715391636, 0.02019408531486988, 0.2460840791463852, 0.25140509009361267, -0.08535165339708328, 0.8368824124336243, -0.008736500516533852, 0.0005392901366576552, -0.0063276709988713264, 0.24508939683437347, -0.26114824414253235, 0.07950334995985031, 0.8080962896347046, -0.005476790945976973, 0.0027204190846532583, 0.001749696908518672]} +{"t": 1.1558, "q": [-0.1506931483745575, 0.00849314033985138, 0.00018748654110822827, 0.3170056641101837, -0.1747610718011856, -0.010555860586464405, -0.09483921527862549, -0.02485048770904541, 0.024453600868582726, 0.32189735770225525, -0.25278300046920776, 0.022663628682494164, 0.003964001312851906, 0.0030639038886874914, 0.020328914746642113, 0.24609605967998505, 0.2514170706272125, -0.08533966541290283, 0.8368943929672241, -0.008736500516533852, 0.0005392901366576552, -0.0063276709988713264, 0.24504145979881287, -0.26114824414253235, 0.07950334995985031, 0.8081442713737488, -0.0054887752048671246, 0.0027084348257631063, 0.001785649568773806]} +{"t": 1.1725, "q": [-0.15067610144615173, 0.008467573672533035, 0.00020087843586225063, 0.31699714064598083, -0.17475691437721252, -0.010577077977359295, -0.09483069181442261, -0.02485901117324829, 0.024453600868582726, 0.32188883423805237, -0.2527828812599182, 0.022649234160780907, 0.003977392800152302, 0.0030864577274769545, 0.0204774197191, 0.2460840791463852, 0.25140509009361267, -0.08535165339708328, 0.836906373500824, -0.008736500516533852, 0.0005392901366576552, -0.0063276709988713264, 0.24505344033241272, -0.26112428307533264, 0.07950334995985031, 0.8081442713737488, -0.0055127437226474285, 0.0027443876024335623, 0.00173771264962852]} +{"t": 1.1892, "q": [-0.15068462491035461, 0.008459052070975304, 0.00020087843586225063, 0.3170141577720642, -0.17475676536560059, -0.010548763908445835, -0.09479660540819168, -0.02485901117324829, 0.024453600868582726, 0.3218803107738495, -0.2527788579463959, 0.0226708073168993, 0.003964001312851906, 0.003093868726864457, 0.02064422331750393, 0.2460840791463852, 0.2514170706272125, -0.08535165339708328, 0.8369303345680237, -0.008736500516533852, 0.0005632585962302983, -0.0063037024810910225, 0.24505344033241272, -0.26114824414253235, 0.07951533794403076, 0.8081442713737488, -0.0054887752048671246, 0.0027324033435434103, 0.001761681167408824]} +{"t": 1.2061, "q": [-0.15067610144615173, 0.008459052070975304, 0.00018748654110822827, 0.3170226812362671, -0.17475691437721252, -0.010577077977359295, -0.09479660540819168, -0.02485901117324829, 0.024453600868582726, 0.32190585136413574, -0.2527872920036316, 0.022670863196253777, 0.003964001312851906, 0.003131433157250285, 0.020849080756306648, 0.24607209861278534, 0.25140509009361267, -0.08535165339708328, 0.8369303345680237, -0.008736500516533852, 0.0005512743373401463, -0.0063276709988713264, 0.24505344033241272, -0.26114824414253235, 0.07951533794403076, 0.8081562519073486, -0.0055127437226474285, 0.0027204190846532583, 0.0017736653098836541]} +{"t": 1.2229, "q": [-0.15067610144615173, 0.008450528606772423, 0.0001740946463542059, 0.3170226812362671, -0.17476539313793182, -0.0105629563331604, -0.0947880819439888, -0.02485901117324829, 0.024453600868582726, 0.32189735770225525, -0.2527872920036316, 0.022670863196253777, 0.003977392800152302, 0.0031916056759655476, 0.021087396889925003, 0.24606011807918549, 0.25140509009361267, -0.08535165339708328, 0.8369303345680237, -0.008760469034314156, 0.0005632585962302983, -0.0063276709988713264, 0.24507740139961243, -0.26114824414253235, 0.07949136942625046, 0.8081562519073486, -0.005452822428196669, 0.0027204190846532583, 0.0017736653098836541]} +{"t": 1.2396, "q": [-0.15070167183876038, 0.008476095274090767, 0.00018748654110822827, 0.3170056641101837, -0.17475683987140656, -0.010562920942902565, -0.09481364488601685, -0.02485901117324829, 0.024466993287205696, 0.32190585136413574, -0.2527788579463959, 0.0226708073168993, 0.003964001312851906, 0.003183959051966667, 0.021216269582509995, 0.24607209861278534, 0.25140509009361267, -0.08532768487930298, 0.8369542956352234, -0.008760469034314156, 0.0005512743373401463, -0.0063276709988713264, 0.24507740139961243, -0.2611362636089325, 0.07949136942625046, 0.8081562519073486, -0.0054887752048671246, 0.0027324033435434103, 0.0017736653098836541]} +{"t": 1.2565, "q": [-0.15070167183876038, 0.008467573672533035, 0.00018748654110822827, 0.3170226812362671, -0.1747525930404663, -0.010569981299340725, -0.09484773874282837, -0.02485901117324829, 0.024453600868582726, 0.32189735770225525, -0.2527831196784973, 0.022678041830658913, 0.004004176706075668, 0.0031611991580575705, 0.021373817697167397, 0.2460840791463852, 0.25139307975769043, -0.08533966541290283, 0.8369783163070679, -0.008760469034314156, 0.0005752427969127893, -0.006339655257761478, 0.24510137736797333, -0.26114824414253235, 0.07949136942625046, 0.8081562519073486, -0.0054887752048671246, 0.0027204190846532583, 0.001749696908518672]} +{"t": 1.2732, "q": [-0.15068462491035461, 0.008484616875648499, 0.00020087843586225063, 0.31703972816467285, -0.1747525930404663, -0.010569981299340725, -0.09482216835021973, -0.02485901117324829, 0.024453600868582726, 0.32189735770225525, -0.2527872920036316, 0.022670863196253777, 0.003977392800152302, 0.00315350154414773, 0.021569503471255302, 0.24607209861278534, 0.2514170706272125, -0.08531569689512253, 0.8369542956352234, -0.008760469034314156, 0.0005512743373401463, -0.0063276709988713264, 0.24511335790157318, -0.2611362636089325, 0.07950334995985031, 0.8081562519073486, -0.0054887752048671246, 0.0027204190846532583, 0.001785649568773806]} +{"t": 1.2899, "q": [-0.15071019530296326, 0.008467573672533035, 0.00020087843586225063, 0.31703120470046997, -0.17475691437721252, -0.010577077977359295, -0.09483921527862549, -0.02485048770904541, 0.024480385705828667, 0.32190585136413574, -0.2527828812599182, 0.022649234160780907, 0.003977392800152302, 0.003108181757852435, 0.021712543442845345, 0.2460840791463852, 0.2514170706272125, -0.08532768487930298, 0.8369542956352234, -0.008736500516533852, 0.0005512743373401463, -0.006339655257761478, 0.24510137736797333, -0.26112428307533264, 0.07951533794403076, 0.8081682324409485, -0.0055127437226474285, 0.0027204190846532583, 0.0017736653098836541]} +{"t": 1.3067, "q": [-0.15071871876716614, 0.008442007005214691, 0.00018748654110822827, 0.31703120470046997, -0.17475683987140656, -0.010562920942902565, -0.09482216835021973, -0.02485901117324829, 0.024480385705828667, 0.32188883423805237, -0.25278717279434204, 0.02265646867454052, 0.003964001312851906, 0.003100575180724263, 0.02186981588602066, 0.24606011807918549, 0.25139307975769043, -0.08530371636152267, 0.8369423151016235, -0.008796420879662037, 0.0005512743373401463, -0.006339655257761478, 0.24505344033241272, -0.26112428307533264, 0.07947938144207001, 0.8081562519073486, -0.0055247279815375805, 0.0027204190846532583, 0.001749696908518672]} +{"t": 1.3235, "q": [-0.15070167183876038, 0.008450528606772423, 0.00018748654110822827, 0.3170226812362671, -0.1747525930404663, -0.010569981299340725, -0.09483921527862549, -0.02485901117324829, 0.024480385705828667, 0.3218803107738495, -0.2527914345264435, 0.022663703188300133, 0.003937217406928539, 0.0030627762898802757, 0.02207479253411293, 0.24604812264442444, 0.25140509009361267, -0.08529172837734222, 0.8369783163070679, -0.008760469034314156, 0.0005632585962302983, -0.006339655257761478, 0.24505344033241272, -0.26114824414253235, 0.07949136942625046, 0.8081562519073486, -0.005464806687086821, 0.0027204190846532583, 0.001761681167408824]} +{"t": 1.3402, "q": [-0.15070167183876038, 0.008459052070975304, 0.00018748654110822827, 0.3170056641101837, -0.1747482717037201, -0.01056288555264473, -0.09482216835021973, -0.02484196610748768, 0.024453600868582726, 0.32189735770225525, -0.2527872920036316, 0.022670863196253777, 0.0039506093598902225, 0.003077789442613721, 0.022255852818489075, 0.24606011807918549, 0.25140509009361267, -0.08530371636152267, 0.8369542956352234, -0.008760469034314156, 0.0005632585962302983, -0.006339655257761478, 0.2450055032968521, -0.2611362636089325, 0.07949136942625046, 0.8081562519073486, -0.0054887752048671246, 0.0027204190846532583, 0.001749696908518672]} +{"t": 1.3569, "q": [-0.15068462491035461, 0.00849314033985138, 0.00020087843586225063, 0.31699714064598083, -0.1747482717037201, -0.01056288555264473, -0.09482216835021973, -0.024867532774806023, 0.024453600868582726, 0.32188883423805237, -0.2527788579463959, 0.0226708073168993, 0.003923825453966856, 0.0030324491672217846, 0.022456077858805656, 0.24604812264442444, 0.2514170706272125, -0.08535165339708328, 0.8369783163070679, -0.008772453293204308, 0.0005632585962302983, -0.006339655257761478, 0.24494558572769165, -0.26112428307533264, 0.07949136942625046, 0.8081562519073486, -0.0055127437226474285, 0.0027324033435434103, 0.001761681167408824]} +{"t": 1.3736, "q": [-0.15070167183876038, 0.008459052070975304, 0.00020087843586225063, 0.3169800937175751, -0.17476114630699158, -0.01057001668959856, -0.09483921527862549, -0.02485901117324829, 0.024453600868582726, 0.3218632638454437, -0.2527789771556854, 0.022685203701257706, 0.003964001312851906, 0.0031002582982182503, 0.02266087383031845, 0.24606011807918549, 0.25139307975769043, -0.08535165339708328, 0.8369542956352234, -0.008772453293204308, 0.0005632585962302983, -0.0063276709988713264, 0.24494558572769165, -0.26112428307533264, 0.07949136942625046, 0.8081562519073486, -0.005452822428196669, 0.0027563718613237143, 0.001761681167408824]} +{"t": 1.3904, "q": [-0.15070167183876038, 0.008476095274090767, 0.00020087843586225063, 0.31698861718177795, -0.17476539313793182, -0.0105629563331604, -0.09483069181442261, -0.02485901117324829, 0.024453600868582726, 0.3218717873096466, -0.2527914345264435, 0.022663703188300133, 0.0039506093598902225, 0.0031378772109746933, 0.022903844714164734, 0.24607209861278534, 0.25139307975769043, -0.08532768487930298, 0.8369783163070679, -0.008760469034314156, 0.0005632585962302983, -0.006339655257761478, 0.24494558572769165, -0.26114824414253235, 0.07951533794403076, 0.8081562519073486, -0.0054887752048671246, 0.0027443876024335623, 0.00173771264962852]} +{"t": 1.4071, "q": [-0.1506931483745575, 0.00849314033985138, 0.00018748654110822827, 0.31698861718177795, -0.17475683987140656, -0.010562920942902565, -0.09482216835021973, -0.024867532774806023, 0.024426817893981934, 0.3218717873096466, -0.2527831196784973, 0.022678041830658913, 0.0039506093598902225, 0.0031679668463766575, 0.023113470524549484, 0.24603614211082458, 0.2514170706272125, -0.08532768487930298, 0.8369783163070679, -0.008760469034314156, 0.0005512743373401463, -0.0063276709988713264, 0.24492160975933075, -0.26114824414253235, 0.07951533794403076, 0.8081562519073486, -0.0055127437226474285, 0.0027443876024335623, 0.001749696908518672]} +{"t": 1.4238, "q": [-0.15068462491035461, 0.008459052070975304, 0.00018748654110822827, 0.3169800937175751, -0.17475691437721252, -0.010577077977359295, -0.09483921527862549, -0.02485901117324829, 0.024440210312604904, 0.3218717873096466, -0.25278300046920776, 0.022663628682494164, 0.003964001312851906, 0.003190405899658799, 0.023346593603491783, 0.24603614211082458, 0.25140509009361267, -0.08531569689512253, 0.8369783163070679, -0.008760469034314156, 0.0005752427969127893, -0.0063276709988713264, 0.2449096292257309, -0.26112428307533264, 0.07951533794403076, 0.8081562519073486, -0.0055127437226474285, 0.0027443876024335623, 0.001761681167408824]} +{"t": 1.4405, "q": [-0.15070167183876038, 0.008476095274090767, 0.00018748654110822827, 0.3169800937175751, -0.1747525930404663, -0.010569981299340725, -0.09482216835021973, -0.02485901117324829, 0.024453600868582726, 0.3218717873096466, -0.2527789771556854, 0.022685203701257706, 0.003990784753113985, 0.0032354986760765314, 0.023536810651421547, 0.24602416157722473, 0.2514170706272125, -0.08535165339708328, 0.8369783163070679, -0.008736500516533852, 0.0005632585962302983, -0.0063276709988713264, 0.2449096292257309, -0.26114824414253235, 0.07949136942625046, 0.8081562519073486, -0.0055127437226474285, 0.0027683561202138662, 0.001725728390738368]} +{"t": 1.4573, "q": [-0.15068462491035461, 0.00849314033985138, 0.0001740946463542059, 0.3169715702533722, -0.17475683987140656, -0.010562920942902565, -0.09482216835021973, -0.02485901117324829, 0.024453600868582726, 0.3218803107738495, -0.2527914345264435, 0.022663703188300133, 0.003910433501005173, 0.0032353282440453768, 0.02374618873000145, 0.24606011807918549, 0.25140509009361267, -0.08535165339708328, 0.836966335773468, -0.00878443755209446, 0.0005752427969127893, -0.0063276709988713264, 0.2448616921901703, -0.2611362636089325, 0.07950334995985031, 0.8081562519073486, -0.0055127437226474285, 0.0027683561202138662, 0.001725728390738368]} +{"t": 1.4741, "q": [-0.1506931483745575, 0.008459052070975304, 0.00020087843586225063, 0.3169630467891693, -0.1747482717037201, -0.01056288555264473, -0.09482216835021973, -0.02485048770904541, 0.024453600868582726, 0.3218803107738495, -0.2527872920036316, 0.022670863196253777, 0.004017568659037352, 0.003235174110159278, 0.023936763405799866, 0.24604812264442444, 0.2514170706272125, -0.08532768487930298, 0.8369542956352234, -0.008736500516533852, 0.0005512743373401463, -0.0063276709988713264, 0.24482573568820953, -0.26112428307533264, 0.07951533794403076, 0.8081442713737488, -0.005476790945976973, 0.0027563718613237143, 0.001725728390738368]} +{"t": 1.4908, "q": [-0.15071019530296326, 0.008476095274090767, 0.00018748654110822827, 0.31698861718177795, -0.17477403581142426, -0.010577148757874966, -0.09481364488601685, -0.02485048770904541, 0.024400033056735992, 0.3218717873096466, -0.2527744770050049, 0.022649159654974937, 0.003977392800152302, 0.0031972534488886595, 0.024198902770876884, 0.24604812264442444, 0.25140509009361267, -0.08535165339708328, 0.8369783163070679, -0.008772453293204308, 0.0005752427969127893, -0.0063276709988713264, 0.24478977918624878, -0.26112428307533264, 0.07951533794403076, 0.8081562519073486, -0.0055127437226474285, 0.0027683561202138662, 0.0017736653098836541]} +{"t": 1.5075, "q": [-0.15068462491035461, 0.008484616875648499, 0.00018748654110822827, 0.31698861718177795, -0.1747525930404663, -0.010569981299340725, -0.09480512887239456, -0.02485901117324829, 0.024453600868582726, 0.3218803107738495, -0.252774715423584, 0.022677969187498093, 0.003977392800152302, 0.003151840530335903, 0.02445606328547001, 0.24600018560886383, 0.2514170706272125, -0.08532768487930298, 0.8369542956352234, -0.0087245162576437, 0.0005752427969127893, -0.006339655257761478, 0.24472986161708832, -0.2611362636089325, 0.07949136942625046, 0.8081442713737488, -0.0055127437226474285, 0.0027443876024335623, 0.0017137442482635379]} +{"t": 1.5243, "q": [-0.15067610144615173, 0.008450528606772423, 0.00020087843586225063, 0.3169800937175751, -0.17475683987140656, -0.010562920942902565, -0.09482216835021973, -0.024867532774806023, 0.024453600868582726, 0.3218717873096466, -0.2527788579463959, 0.0226708073168993, 0.003977392800152302, 0.0031291418708860874, 0.024651022627949715, 0.24603614211082458, 0.2514170706272125, -0.08532768487930298, 0.8369783163070679, -0.008736500516533852, 0.0005632585962302983, -0.0063276709988713264, 0.2446819245815277, -0.26114824414253235, 0.07949136942625046, 0.8081562519073486, -0.0055127437226474285, 0.0027683561202138662, 0.001761681167408824]} +{"t": 1.541, "q": [-0.15066757798194885, 0.008476095274090767, 0.00018748654110822827, 0.3170056641101837, -0.17476114630699158, -0.01057001668959856, -0.09483921527862549, -0.02485901117324829, 0.024440210312604904, 0.32188883423805237, -0.2527786195278168, 0.022641999647021294, 0.003964001312851906, 0.0031215171329677105, 0.0248554740101099, 0.24604812264442444, 0.2514170706272125, -0.08532768487930298, 0.8369783163070679, -0.008736500516533852, 0.0005752427969127893, -0.006339655257761478, 0.244657963514328, -0.2611362636089325, 0.07950334995985031, 0.8081562519073486, -0.005464806687086821, 0.0027683561202138662, 0.001749696908518672]} +{"t": 1.5577, "q": [-0.15067610144615173, 0.008459052070975304, 0.00020087843586225063, 0.31698861718177795, -0.17476114630699158, -0.01057001668959856, -0.09483921527862549, -0.02485901117324829, 0.024480385705828667, 0.32188883423805237, -0.2527914345264435, 0.022663703188300133, 0.003937217406928539, 0.0030988368671387434, 0.025002891197800636, 0.24604812264442444, 0.2514170706272125, -0.08532768487930298, 0.8369783163070679, -0.008760469034314156, 0.0005752427969127893, -0.0063276709988713264, 0.244657963514328, -0.26112428307533264, 0.07950334995985031, 0.8081562519073486, -0.005452822428196669, 0.0027443876024335623, 0.00173771264962852]} +{"t": 1.5747, "q": [-0.1506931483745575, 0.008476095274090767, 0.00020087843586225063, 0.31699714064598083, -0.17476114630699158, -0.01057001668959856, -0.09483921527862549, -0.02485901117324829, 0.024440210312604904, 0.3218717873096466, -0.25278717279434204, 0.02265646867454052, 0.003964001312851906, 0.0031063337810337543, 0.02510272152721882, 0.24604812264442444, 0.2514290511608124, -0.08532768487930298, 0.8369783163070679, -0.008772453293204308, 0.0005512743373401463, -0.0063276709988713264, 0.2446339875459671, -0.26112428307533264, 0.07950334995985031, 0.8081562519073486, -0.0054887752048671246, 0.0027683561202138662, 0.001749696908518672]} +{"t": 1.5914, "q": [-0.15071019530296326, 0.008467573672533035, 0.00020087843586225063, 0.31698861718177795, -0.17475691437721252, -0.010577077977359295, -0.09483069181442261, -0.02485901117324829, 0.024453600868582726, 0.3218717873096466, -0.2527787387371063, 0.02265639416873455, 0.003977392800152302, 0.0031138479243963957, 0.025164566934108734, 0.24604812264442444, 0.2514170706272125, -0.08532768487930298, 0.836966335773468, -0.008760469034314156, 0.0005632585962302983, -0.0063276709988713264, 0.24464596807956696, -0.26114824414253235, 0.07952731847763062, 0.8081562519073486, -0.005452822428196669, 0.0027683561202138662, 0.001749696908518672]} +{"t": 1.6081, "q": [-0.15072724223136902, 0.00849314033985138, 0.00018748654110822827, 0.3169800937175751, -0.1747525930404663, -0.010569981299340725, -0.09483921527862549, -0.02485901117324829, 0.024453600868582726, 0.32185474038124084, -0.2527914345264435, 0.022663703188300133, 0.003977392800152302, 0.003128896001726389, 0.025240713730454445, 0.24604812264442444, 0.2514170706272125, -0.08532768487930298, 0.8369783163070679, -0.008760469034314156, 0.0005512743373401463, -0.006339655257761478, 0.24462200701236725, -0.26114824414253235, 0.07949136942625046, 0.8081562519073486, -0.005440838169306517, 0.0027923244051635265, 0.001749696908518672]} +{"t": 1.6249, "q": [-0.15071871876716614, 0.008467573672533035, 0.00018748654110822827, 0.3169715702533722, -0.17476114630699158, -0.01057001668959856, -0.09483921527862549, -0.02485901117324829, 0.024453600868582726, 0.3218376934528351, -0.25278300046920776, 0.022663628682494164, 0.003977392800152302, 0.0031515012960880995, 0.0252740066498518, 0.24603614211082458, 0.2514170706272125, -0.08533966541290283, 0.8369783163070679, -0.008760469034314156, 0.0005632585962302983, -0.00635163951665163, 0.24459803104400635, -0.26114824414253235, 0.07950334995985031, 0.8081562519073486, -0.0055127437226474285, 0.0027803401462733746, 0.001725728390738368]} +{"t": 1.6416, "q": [-0.15071871876716614, 0.008459052070975304, 0.00020087843586225063, 0.3169630467891693, -0.17475683987140656, -0.010562920942902565, -0.09483069181442261, -0.02485901117324829, 0.024426817893981934, 0.3218376934528351, -0.2527787387371063, 0.02265639416873455, 0.003964001312851906, 0.003121331101283431, 0.02530260942876339, 0.24604812264442444, 0.2514170706272125, -0.08535165339708328, 0.8369783163070679, -0.008736500516533852, 0.0005512743373401463, -0.006339655257761478, 0.2446100264787674, -0.26112428307533264, 0.07950334995985031, 0.8081562519073486, -0.0054887752048671246, 0.0027923244051635265, 0.00173771264962852]} +{"t": 1.6583, "q": [-0.15071871876716614, 0.008501661941409111, 0.00018748654110822827, 0.31694599986076355, -0.1747610718011856, -0.010555860586464405, -0.09483921527862549, -0.02485901117324829, 0.024426817893981934, 0.3218206465244293, -0.2527831196784973, 0.022678041830658913, 0.003937217406928539, 0.003136406419798732, 0.025312108919024467, 0.24606011807918549, 0.2514290511608124, -0.08532768487930298, 0.8369783163070679, -0.00878443755209446, 0.0005512743373401463, -0.0063276709988713264, 0.24459803104400635, -0.2611362636089325, 0.07949136942625046, 0.8081562519073486, -0.0055247279815375805, 0.0028043086640536785, 0.001761681167408824]} +{"t": 1.6751, "q": [-0.15072724223136902, 0.008484616875648499, 0.00018748654110822827, 0.31694599986076355, -0.17476539313793182, -0.0105629563331604, -0.09486477822065353, -0.02485901117324829, 0.024453600868582726, 0.32180359959602356, -0.2527914345264435, 0.022663703188300133, 0.003910433501005173, 0.0031514817383140326, 0.025321610271930695, 0.24603614211082458, 0.25140509009361267, -0.08531569689512253, 0.8369783163070679, -0.008760469034314156, 0.0005392901366576552, -0.0063276709988713264, 0.24457406997680664, -0.2611362636089325, 0.07947938144207001, 0.8081562519073486, -0.0054887752048671246, 0.0028043086640536785, 0.001761681167408824]} +{"t": 1.6918, "q": [-0.1507357656955719, 0.008467573672533035, 0.00018748654110822827, 0.31693747639656067, -0.17476539313793182, -0.0105629563331604, -0.0948818251490593, -0.024867532774806023, 0.024480385705828667, 0.32181212306022644, -0.2527872920036316, 0.022670863196253777, 0.003937217406928539, 0.003136386862024665, 0.025359712541103363, 0.24603614211082458, 0.2514170706272125, -0.08535165339708328, 0.8369783163070679, -0.008760469034314156, 0.0005392901366576552, -0.0063276709988713264, 0.2445620894432068, -0.26114824414253235, 0.07947938144207001, 0.8081442713737488, -0.0054887752048671246, 0.0027803401462733746, 0.00173771264962852]} +{"t": 1.7087, "q": [-0.15071019530296326, 0.00849314033985138, 0.00020087843586225063, 0.316911906003952, -0.1747525930404663, -0.010569981299340725, -0.09486477822065353, -0.02485048770904541, 0.024453600868582726, 0.3218206465244293, -0.2527914345264435, 0.022663703188300133, 0.0039506093598902225, 0.0031740753911435604, 0.025383464992046356, 0.24602416157722473, 0.2514290511608124, -0.08533966541290283, 0.8369902968406677, -0.008760469034314156, 0.0005273059359751642, -0.0063276709988713264, 0.2445620894432068, -0.26114824414253235, 0.07951533794403076, 0.8081562519073486, -0.0054887752048671246, 0.0027923244051635265, 0.001761681167408824]} +{"t": 1.7254, "q": [-0.1507357656955719, 0.008467573672533035, 0.00018748654110822827, 0.3169204294681549, -0.17475683987140656, -0.010562920942902565, -0.09486477822065353, -0.024867532774806023, 0.024426817893981934, 0.3217950761318207, -0.2527788579463959, 0.0226708073168993, 0.0039506093598902225, 0.0031589881982654333, 0.025402527302503586, 0.24602416157722473, 0.2514170706272125, -0.08532768487930298, 0.8369783163070679, -0.008772453293204308, 0.0005392901366576552, -0.006339655257761478, 0.24455009400844574, -0.26114824414253235, 0.07949136942625046, 0.8081562519073486, -0.005464806687086821, 0.0028043086640536785, 0.00173771264962852]} +{"t": 1.7421, "q": [-0.15071871876716614, 0.008476095274090767, 0.00021427033061627299, 0.3169204294681549, -0.17476114630699158, -0.01057001668959856, -0.09484773874282837, -0.02485901117324829, 0.024453600868582726, 0.3218376934528351, -0.2527956962585449, 0.022670937702059746, 0.004004176706075668, 0.0031665260903537273, 0.025407277047634125, 0.24601218104362488, 0.25140509009361267, -0.08535165339708328, 0.8369783163070679, -0.008772453293204308, 0.0005392901366576552, -0.0063276709988713264, 0.24455009400844574, -0.26114824414253235, 0.07951533794403076, 0.8081562519073486, -0.005476790945976973, 0.0028162929229438305, 0.0017736653098836541]} +{"t": 1.759, "q": [-0.15072724223136902, 0.008476095274090767, 0.00018748654110822827, 0.3169289529323578, -0.1747525930404663, -0.010569981299340725, -0.09483921527862549, -0.02485048770904541, 0.024426817893981934, 0.3218291699886322, -0.2527788579463959, 0.0226708073168993, 0.003977392800152302, 0.003166518174111843, 0.025426318868994713, 0.24602416157722473, 0.25140509009361267, -0.08536363393068314, 0.8369783163070679, -0.008772453293204308, 0.0005392901366576552, -0.0063276709988713264, 0.24455009400844574, -0.26112428307533264, 0.07951533794403076, 0.8081682324409485, -0.0055127437226474285, 0.0027923244051635265, 0.001761681167408824]} +{"t": 1.7758, "q": [-0.15071871876716614, 0.008476095274090767, 0.00018748654110822827, 0.3169289529323578, -0.1747610718011856, -0.010555860586464405, -0.09483069181442261, -0.024867532774806023, 0.024440210312604904, 0.3218206465244293, -0.252774715423584, 0.022677969187498093, 0.003937217406928539, 0.0031815858092159033, 0.025454862043261528, 0.24601218104362488, 0.25139307975769043, -0.08533966541290283, 0.8369783163070679, -0.0087245162576437, 0.0005752427969127893, -0.0063276709988713264, 0.2445381134748459, -0.26114824414253235, 0.07949136942625046, 0.8081442713737488, -0.0055247279815375805, 0.0028043086640536785, 0.001761681167408824]} +{"t": 1.7925, "q": [-0.15071871876716614, 0.00843348540365696, 0.00018748654110822827, 0.3169289529323578, -0.17475683987140656, -0.010562920942902565, -0.0948818251490593, -0.02485048770904541, 0.024453600868582726, 0.3218291699886322, -0.25278300046920776, 0.022663628682494164, 0.003977392800152302, 0.0031665104907006025, 0.0254453606903553, 0.24601218104362488, 0.25140509009361267, -0.08532768487930298, 0.8369902968406677, -0.0087245162576437, 0.0005512743373401463, -0.0063276709988713264, 0.24455009400844574, -0.2611362636089325, 0.07949136942625046, 0.8081682324409485, -0.0054887752048671246, 0.0028043086640536785, 0.0017736653098836541]} +{"t": 1.8092, "q": [-0.15070167183876038, 0.00849314033985138, 0.00018748654110822827, 0.3169630467891693, -0.17475691437721252, -0.010577077977359295, -0.09485626220703125, -0.02485901117324829, 0.024453600868582726, 0.3218206465244293, -0.25278717279434204, 0.02265646867454052, 0.004004176706075668, 0.0031665104907006025, 0.0254453606903553, 0.24603614211082458, 0.2514290511608124, -0.08533966541290283, 0.8369902968406677, -0.0087245162576437, 0.0005632585962302983, -0.0063276709988713264, 0.24452613294124603, -0.26112428307533264, 0.07947938144207001, 0.8081562519073486, -0.0055247279815375805, 0.0027923244051635265, 0.001761681167408824]} +{"t": 1.826, "q": [-0.15070167183876038, 0.008450528606772423, 0.00020087843586225063, 0.3169715702533722, -0.1747525930404663, -0.010569981299340725, -0.09486477822065353, -0.02485901117324829, 0.024453600868582726, 0.3218291699886322, -0.2527788579463959, 0.0226708073168993, 0.0039506093598902225, 0.00315896887332201, 0.02545013092458248, 0.24602416157722473, 0.2514170706272125, -0.08533966541290283, 0.8369783163070679, -0.008772453293204308, 0.0005512743373401463, -0.006339655257761478, 0.2445620894432068, -0.2611362636089325, 0.07950334995985031, 0.8081442713737488, -0.0054887752048671246, 0.0028043086640536785, 0.0017736653098836541]} +{"t": 1.8427, "q": [-0.15070167183876038, 0.008442007005214691, 0.00018748654110822827, 0.3169715702533722, -0.17476114630699158, -0.01057001668959856, -0.09484773874282837, -0.02485901117324829, 0.024426817893981934, 0.32185474038124084, -0.25278300046920776, 0.022663628682494164, 0.003977392800152302, 0.0031514232978224754, 0.02546442113816738, 0.24604812264442444, 0.2514170706272125, -0.08532768487930298, 0.8369902968406677, -0.008760469034314156, 0.0005512743373401463, -0.00635163951665163, 0.2445381134748459, -0.26114824414253235, 0.07951533794403076, 0.8081562519073486, -0.0055127437226474285, 0.0027803401462733746, 0.001785649568773806]} +{"t": 1.8594, "q": [-0.15071019530296326, 0.008442007005214691, 0.00020087843586225063, 0.3169715702533722, -0.17476114630699158, -0.01057001668959856, -0.09484773874282837, -0.024884577840566635, 0.024453600868582726, 0.3218291699886322, -0.25278300046920776, 0.022663628682494164, 0.0039506093598902225, 0.003174044191837311, 0.02545963227748871, 0.24601218104362488, 0.25139307975769043, -0.08533966541290283, 0.8369783163070679, -0.00878443755209446, 0.0005512743373401463, -0.006339655257761478, 0.2445381134748459, -0.2611362636089325, 0.07950334995985031, 0.8081562519073486, -0.0055247279815375805, 0.0027923244051635265, 0.001785649568773806]} +{"t": 1.8761, "q": [-0.15070167183876038, 0.008442007005214691, 0.00020087843586225063, 0.3169715702533722, -0.1747610718011856, -0.010555860586464405, -0.09485626220703125, -0.024867532774806023, 0.024466993287205696, 0.3218291699886322, -0.2527828812599182, 0.022649234160780907, 0.003964001312851906, 0.003181581851094961, 0.025464382022619247, 0.24601218104362488, 0.25140509009361267, -0.08535165339708328, 0.8369783163070679, -0.008760469034314156, 0.0005512743373401463, -0.006339655257761478, 0.24455009400844574, -0.26112428307533264, 0.07951533794403076, 0.8081442713737488, -0.0054887752048671246, 0.0028043086640536785, 0.0017736653098836541]} +{"t": 1.893, "q": [-0.15072724223136902, 0.008459052070975304, 0.00020087843586225063, 0.3169800937175751, -0.1747610718011856, -0.010555860586464405, -0.09486477822065353, -0.024867532774806023, 0.024453600868582726, 0.3218291699886322, -0.2527914345264435, 0.022663703188300133, 0.003964001312851906, 0.003158960957080126, 0.02546917274594307, 0.24601218104362488, 0.25139307975769043, -0.08535165339708328, 0.8369783163070679, -0.0087245162576437, 0.0005632585962302983, -0.006339655257761478, 0.24455009400844574, -0.26112428307533264, 0.07951533794403076, 0.8081562519073486, -0.0055127437226474285, 0.0027923244051635265, 0.001761681167408824]} +{"t": 1.9097, "q": [-0.1506931483745575, 0.008484616875648499, 0.00018748654110822827, 0.3169630467891693, -0.17476114630699158, -0.01057001668959856, -0.09485626220703125, -0.024867532774806023, 0.024453600868582726, 0.3218206465244293, -0.25278717279434204, 0.02265646867454052, 0.0039506093598902225, 0.0031665065325796604, 0.02545488066971302, 0.24600018560886383, 0.25139307975769043, -0.08535165339708328, 0.8369783163070679, -0.0087245162576437, 0.0005632585962302983, -0.0063276709988713264, 0.2445381134748459, -0.26114824414253235, 0.07949136942625046, 0.8081442713737488, -0.0055247279815375805, 0.0028162929229438305, 0.001761681167408824]} +{"t": 1.9264, "q": [-0.15071019530296326, 0.008476095274090767, 0.00018748654110822827, 0.3169715702533722, -0.17475683987140656, -0.010562920942902565, -0.09486477822065353, -0.02484196610748768, 0.024453600868582726, 0.3218206465244293, -0.2527788579463959, 0.0226708073168993, 0.003977392800152302, 0.0031740362755954266, 0.025478674098849297, 0.24600018560886383, 0.2514170706272125, -0.08533966541290283, 0.8369902968406677, -0.008760469034314156, 0.0005512743373401463, -0.006339655257761478, 0.24452613294124603, -0.26114824414253235, 0.07949136942625046, 0.8081562519073486, -0.0055127437226474285, 0.0027923244051635265, 0.0017736653098836541]} +{"t": 1.9433, "q": [-0.15071871876716614, 0.008476095274090767, 0.00018748654110822827, 0.3169715702533722, -0.1747525930404663, -0.010569981299340725, -0.09486477822065353, -0.024867532774806023, 0.024480385705828667, 0.3218376934528351, -0.2527831196784973, 0.022678041830658913, 0.003977392800152302, 0.003158960957080126, 0.02546917274594307, 0.24598820507526398, 0.2514170706272125, -0.08533966541290283, 0.836966335773468, -0.0087245162576437, 0.0005392901366576552, -0.006339655257761478, 0.2445381134748459, -0.26112428307533264, 0.07949136942625046, 0.8081562519073486, -0.0055127437226474285, 0.0028043086640536785, 0.001749696908518672]} +{"t": 1.9603, "q": [-0.15071871876716614, 0.00843348540365696, 0.00021427033061627299, 0.3169715702533722, -0.17476114630699158, -0.01057001668959856, -0.09486477822065353, -0.02485901117324829, 0.024480385705828667, 0.32184621691703796, -0.25278300046920776, 0.022663628682494164, 0.003964001312851906, 0.003166498616337776, 0.02547392249107361, 0.24600018560886383, 0.2514290511608124, -0.08535165339708328, 0.8369902968406677, -0.008736500516533852, 0.0005752427969127893, -0.0063276709988713264, 0.2445381134748459, -0.26112428307533264, 0.07951533794403076, 0.8081562519073486, -0.0054887752048671246, 0.0028043086640536785, 0.001761681167408824]} +{"t": 1.977, "q": [-0.15071871876716614, 0.008450528606772423, 0.00020087843586225063, 0.31694599986076355, -0.17475691437721252, -0.010577077977359295, -0.09486477822065353, -0.02485901117324829, 0.024480385705828667, 0.3218206465244293, -0.2527788579463959, 0.0226708073168993, 0.0039506093598902225, 0.003174044191837311, 0.02545963227748871, 0.24602416157722473, 0.25139307975769043, -0.08532768487930298, 0.8369783163070679, -0.008760469034314156, 0.0005392901366576552, -0.006339655257761478, 0.24455009400844574, -0.26112428307533264, 0.07949136942625046, 0.8081682324409485, -0.005452822428196669, 0.0028043086640536785, 0.001725728390738368]} +{"t": 1.9937, "q": [-0.15072724223136902, 0.008416440337896347, 0.00021427033061627299, 0.3169630467891693, -0.17476114630699158, -0.01057001668959856, -0.09486477822065353, -0.024867532774806023, 0.024480385705828667, 0.32180359959602356, -0.2527787387371063, 0.02265639416873455, 0.003990784753113985, 0.003166498616337776, 0.02547392249107361, 0.24601218104362488, 0.2514290511608124, -0.08531569689512253, 0.8369783163070679, -0.008736500516533852, 0.0005392901366576552, -0.00635163951665163, 0.2445381134748459, -0.26112428307533264, 0.07949136942625046, 0.8081682324409485, -0.0054887752048671246, 0.0028043086640536785, 0.001749696908518672]} +{"t": 2.0106, "q": [-0.15071871876716614, 0.008476095274090767, 0.00020087843586225063, 0.3169630467891693, -0.1747525930404663, -0.010569981299340725, -0.09486477822065353, -0.024867532774806023, 0.024453600868582726, 0.3218376934528351, -0.2527788579463959, 0.0226708073168993, 0.003977392800152302, 0.003166498616337776, 0.02547392249107361, 0.24602416157722473, 0.2514170706272125, -0.08532768487930298, 0.8369783163070679, -0.008760469034314156, 0.0005512743373401463, -0.006339655257761478, 0.2445381134748459, -0.2611362636089325, 0.07949136942625046, 0.8081682324409485, -0.005476790945976973, 0.0028043086640536785, 0.001761681167408824]} +{"t": 2.0274, "q": [-0.15070167183876038, 0.008442007005214691, 0.00018748654110822827, 0.31695452332496643, -0.17475683987140656, -0.010562920942902565, -0.09484773874282837, -0.02485901117324829, 0.024453600868582726, 0.32184621691703796, -0.2527914345264435, 0.022663703188300133, 0.0039506093598902225, 0.0031664948910474777, 0.025483444333076477, 0.24600018560886383, 0.2514290511608124, -0.08535165339708328, 0.8369783163070679, -0.00878443755209446, 0.0005392901366576552, -0.006339655257761478, 0.24455009400844574, -0.26114824414253235, 0.07951533794403076, 0.8081562519073486, -0.0055127437226474285, 0.0028162929229438305, 0.001761681167408824]} +{"t": 2.0441, "q": [-0.15070167183876038, 0.008450528606772423, 0.00020087843586225063, 0.3169715702533722, -0.1747525930404663, -0.010569981299340725, -0.09483921527862549, -0.024867532774806023, 0.024453600868582726, 0.32185474038124084, -0.25278300046920776, 0.022663628682494164, 0.004017568659037352, 0.003151415381580591, 0.02548346295952797, 0.24600018560886383, 0.2514170706272125, -0.08532768487930298, 0.8369783163070679, -0.008760469034314156, 0.0005273059359751642, -0.006339655257761478, 0.24452613294124603, -0.26114824414253235, 0.07949136942625046, 0.8081562519073486, -0.0054887752048671246, 0.0028162929229438305, 0.00173771264962852]} +{"t": 2.0611, "q": [-0.15071019530296326, 0.008476095274090767, 0.00018748654110822827, 0.3169715702533722, -0.17475683987140656, -0.010562920942902565, -0.09483921527862549, -0.024876054376363754, 0.024440210312604904, 0.32185474038124084, -0.25278300046920776, 0.022663628682494164, 0.003977392800152302, 0.0031664948910474777, 0.025483444333076477, 0.24601218104362488, 0.25139307975769043, -0.08531569689512253, 0.8369783163070679, -0.008736500516533852, 0.0005392901366576552, -0.006339655257761478, 0.24451415240764618, -0.2611362636089325, 0.07949136942625046, 0.8081562519073486, -0.005464806687086821, 0.0028162929229438305, 0.0017736653098836541]} +{"t": 2.0778, "q": [-0.15067610144615173, 0.008467573672533035, 0.00018748654110822827, 0.3169630467891693, -0.1747525930404663, -0.010569981299340725, -0.09483921527862549, -0.02485901117324829, 0.024453600868582726, 0.32188883423805237, -0.25278300046920776, 0.022663628682494164, 0.003977392800152302, 0.0031664869748055935, 0.025502484291791916, 0.24600018560886383, 0.2514170706272125, -0.08535165339708328, 0.8369783163070679, -0.008772453293204308, 0.0005392901366576552, -0.006339655257761478, 0.24452613294124603, -0.2611362636089325, 0.07950334995985031, 0.8081562519073486, -0.0055127437226474285, 0.0028043086640536785, 0.001749696908518672]} +{"t": 2.0945, "q": [-0.15068462491035461, 0.008459052070975304, 0.0001740946463542059, 0.3169630467891693, -0.1747525930404663, -0.010569981299340725, -0.09483069181442261, -0.02485901117324829, 0.024426817893981934, 0.3218717873096466, -0.25278300046920776, 0.022663628682494164, 0.003964001312851906, 0.003174028592184186, 0.025497714057564735, 0.24600018560886383, 0.25140509009361267, -0.08531569689512253, 0.8369783163070679, -0.008760469034314156, 0.0005512743373401463, -0.006339655257761478, 0.2445381134748459, -0.26114824414253235, 0.07949136942625046, 0.8081682324409485, -0.005476790945976973, 0.0028043086640536785, 0.00173771264962852]} +{"t": 2.1114, "q": [-0.15067610144615173, 0.008450528606772423, 0.00018748654110822827, 0.31694599986076355, -0.17476114630699158, -0.01057001668959856, -0.09482216835021973, -0.024867532774806023, 0.024453600868582726, 0.3218717873096466, -0.2527872920036316, 0.022670863196253777, 0.004004176706075668, 0.003158949315547943, 0.025497734546661377, 0.24598820507526398, 0.2514170706272125, -0.08532768487930298, 0.836966335773468, -0.008736500516533852, 0.0005273059359751642, -0.006375608034431934, 0.2445381134748459, -0.2611362636089325, 0.07949136942625046, 0.8081442713737488, -0.0054887752048671246, 0.0028043086640536785, 0.0017736653098836541]} +{"t": 2.1281, "q": [-0.15068462491035461, 0.008459052070975304, 0.0001740946463542059, 0.3169715702533722, -0.17474402487277985, -0.010569954290986061, -0.09481364488601685, -0.02485901117324829, 0.024413425475358963, 0.32188883423805237, -0.2527872920036316, 0.022670863196253777, 0.004004176706075668, 0.0031664869748055935, 0.025502484291791916, 0.24598820507526398, 0.2514170706272125, -0.08533966541290283, 0.8369783163070679, -0.008736500516533852, 0.0005392901366576552, -0.006339655257761478, 0.2445381134748459, -0.26112428307533264, 0.07950334995985031, 0.8081562519073486, -0.005464806687086821, 0.0028282771818339825, 0.0017736653098836541]} +{"t": 2.1448, "q": [-0.15068462491035461, 0.008476095274090767, 0.00021427033061627299, 0.3169800937175751, -0.17475683987140656, -0.010562920942902565, -0.09482216835021973, -0.02485901117324829, 0.024426817893981934, 0.32189735770225525, -0.25277459621429443, 0.022663572803139687, 0.003977392800152302, 0.003174024634063244, 0.025507235899567604, 0.24597622454166412, 0.2514290511608124, -0.08532768487930298, 0.8369783163070679, -0.008736500516533852, 0.0005273059359751642, -0.00635163951665163, 0.24451415240764618, -0.26114824414253235, 0.07949136942625046, 0.8081562519073486, -0.005464806687086821, 0.0028162929229438305, 0.001749696908518672]} +{"t": 2.1617, "q": [-0.15067610144615173, 0.008476095274090767, 0.00018748654110822827, 0.3169630467891693, -0.17475691437721252, -0.010577077977359295, -0.09482216835021973, -0.02485048770904541, 0.024440210312604904, 0.3218717873096466, -0.2527788579463959, 0.0226708073168993, 0.0039506093598902225, 0.003158941399306059, 0.025516776368021965, 0.24601218104362488, 0.25139307975769043, -0.08532768487930298, 0.8369783163070679, -0.008736500516533852, 0.0005273059359751642, -0.00635163951665163, 0.24452613294124603, -0.26112428307533264, 0.07951533794403076, 0.8081442713737488, -0.0054887752048671246, 0.0028402614407241344, 0.001749696908518672]} +{"t": 2.1784, "q": [-0.15066757798194885, 0.008450528606772423, 0.00018748654110822827, 0.3169800937175751, -0.17475683987140656, -0.010562920942902565, -0.09480512887239456, -0.02485901117324829, 0.024453600868582726, 0.32189735770225525, -0.25278300046920776, 0.022663628682494164, 0.003964001312851906, 0.003158941399306059, 0.025516776368021965, 0.24597622454166412, 0.25140509009361267, -0.08532768487930298, 0.8369783163070679, -0.008736500516533852, 0.0005392901366576552, -0.0063156867399811745, 0.2445381134748459, -0.26112428307533264, 0.07951533794403076, 0.8081562519073486, -0.0055127437226474285, 0.0028282771818339825, 0.001761681167408824]} +{"t": 2.1951, "q": [-0.15070167183876038, 0.008450528606772423, 0.00018748654110822827, 0.3169715702533722, -0.17476539313793182, -0.0105629563331604, -0.09479660540819168, -0.02485048770904541, 0.024440210312604904, 0.3218717873096466, -0.25278300046920776, 0.022663628682494164, 0.003964001312851906, 0.003174024634063244, 0.025507235899567604, 0.24598820507526398, 0.25140509009361267, -0.08532768487930298, 0.8369783163070679, -0.0087245162576437, 0.0005392901366576552, -0.00635163951665163, 0.2445381134748459, -0.26112428307533264, 0.07951533794403076, 0.8081682324409485, -0.0054887752048671246, 0.0028162929229438305, 0.001749696908518672]} +{"t": 2.2119, "q": [-0.15071871876716614, 0.00849314033985138, 0.00018748654110822827, 0.3169715702533722, -0.1747610718011856, -0.010555860586464405, -0.09483069181442261, -0.02485048770904541, 0.024426817893981934, 0.3218803107738495, -0.25278300046920776, 0.022663628682494164, 0.003923825453966856, 0.0031815622933208942, 0.025511985644698143, 0.24598820507526398, 0.2514170706272125, -0.08532768487930298, 0.8369902968406677, -0.008736500516533852, 0.0005273059359751642, -0.006339655257761478, 0.2445381134748459, -0.26112428307533264, 0.07949136942625046, 0.8081562519073486, -0.0054887752048671246, 0.0028162929229438305, 0.001749696908518672]} +{"t": 2.2286, "q": [-0.15070167183876038, 0.008476095274090767, 0.00018748654110822827, 0.31698861718177795, -0.17475683987140656, -0.010562920942902565, -0.09484773874282837, -0.024867532774806023, 0.024480385705828667, 0.3218632638454437, -0.2527788579463959, 0.0226708073168993, 0.003964001312851906, 0.003158941399306059, 0.025516776368021965, 0.24598820507526398, 0.25140509009361267, -0.08532768487930298, 0.8369783163070679, -0.008736500516533852, 0.0005512743373401463, -0.006339655257761478, 0.24452613294124603, -0.26112428307533264, 0.07947938144207001, 0.8081802129745483, -0.0054887752048671246, 0.0028162929229438305, 0.00173771264962852]} +{"t": 2.2454, "q": [-0.15072724223136902, 0.008484616875648499, 0.00020087843586225063, 0.3169800937175751, -0.1747482717037201, -0.01056288555264473, -0.09483069181442261, -0.024867532774806023, 0.024453600868582726, 0.3218632638454437, -0.25278300046920776, 0.022663628682494164, 0.003964001312851906, 0.003158941399306059, 0.025516776368021965, 0.24598820507526398, 0.25140509009361267, -0.08531569689512253, 0.8369902968406677, -0.0087245162576437, 0.0005512743373401463, -0.006363623775541782, 0.24455009400844574, -0.26112428307533264, 0.07949136942625046, 0.8081802129745483, -0.0054887752048671246, 0.0028282771818339825, 0.00173771264962852]} +{"t": 2.2621, "q": [-0.15072724223136902, 0.008467573672533035, 0.00018748654110822827, 0.31698861718177795, -0.1747525930404663, -0.010569981299340725, -0.09484773874282837, -0.024867532774806023, 0.024453600868582726, 0.3218632638454437, -0.25278717279434204, 0.02265646867454052, 0.003964001312851906, 0.003174024634063244, 0.025507235899567604, 0.24598820507526398, 0.2514170706272125, -0.08532768487930298, 0.8369902968406677, -0.008712531998753548, 0.0005512743373401463, -0.006363623775541782, 0.2445381134748459, -0.26114824414253235, 0.07949136942625046, 0.8081802129745483, -0.0054887752048671246, 0.0028282771818339825, 0.001749696908518672]} +{"t": 2.2788, "q": [-0.15071019530296326, 0.008476095274090767, 0.00018748654110822827, 0.31698861718177795, -0.17476114630699158, -0.01057001668959856, -0.09483069181442261, -0.024876054376363754, 0.024466993287205696, 0.3218632638454437, -0.25278300046920776, 0.022663628682494164, 0.003964001312851906, 0.003158941399306059, 0.025516776368021965, 0.24600018560886383, 0.25140509009361267, -0.08532768487930298, 0.8369783163070679, -0.008760469034314156, 0.0005512743373401463, -0.00635163951665163, 0.24455009400844574, -0.26114824414253235, 0.07951533794403076, 0.8081802129745483, -0.0055127437226474285, 0.0028402614407241344, 0.001749696908518672]} +{"t": 2.2956, "q": [-0.15072724223136902, 0.008442007005214691, 0.00018748654110822827, 0.3169800937175751, -0.17476963996887207, -0.01055589597672224, -0.09484773874282837, -0.02485901117324829, 0.024453600868582726, 0.32185474038124084, -0.2527872920036316, 0.022670863196253777, 0.003937217406928539, 0.0031514037400484085, 0.025512026622891426, 0.24600018560886383, 0.25139307975769043, -0.08533966541290283, 0.8369902968406677, -0.008772453293204308, 0.0005273059359751642, -0.006339655257761478, 0.2445381134748459, -0.26114824414253235, 0.07949136942625046, 0.8081802129745483, -0.0054887752048671246, 0.0028282771818339825, 0.0017736653098836541]} +{"t": 2.3124, "q": [-0.15070167183876038, 0.008467573672533035, 0.00018748654110822827, 0.31698861718177795, -0.1747610718011856, -0.010555860586464405, -0.09485626220703125, -0.02485901117324829, 0.024480385705828667, 0.3218717873096466, -0.2527787387371063, 0.02265639416873455, 0.003977392800152302, 0.0031664790585637093, 0.025521526113152504, 0.24598820507526398, 0.25139307975769043, -0.08532768487930298, 0.8369783163070679, -0.008772453293204308, 0.0005273059359751642, -0.00635163951665163, 0.24452613294124603, -0.26114824414253235, 0.07951533794403076, 0.808204174041748, -0.0054887752048671246, 0.0028282771818339825, 0.00173771264962852]} +{"t": 2.3291, "q": [-0.15071019530296326, 0.008416440337896347, 0.0001740946463542059, 0.31699714064598083, -0.17475691437721252, -0.010577077977359295, -0.09485626220703125, -0.02485048770904541, 0.024466993287205696, 0.32184621691703796, -0.2527914345264435, 0.022663703188300133, 0.003990784753113985, 0.0031740169506520033, 0.025526277720928192, 0.24597622454166412, 0.2514290511608124, -0.08535165339708328, 0.8369902968406677, -0.008760469034314156, 0.0005512743373401463, -0.006363623775541782, 0.2445381134748459, -0.26114824414253235, 0.07947938144207001, 0.8081921935081482, -0.0054887752048671246, 0.0028402614407241344, 0.00173771264962852]} +{"t": 2.3458, "q": [-0.1506931483745575, 0.008416440337896347, 0.00020087843586225063, 0.3169630467891693, -0.1747482717037201, -0.01056288555264473, -0.09484773874282837, -0.024867532774806023, 0.024480385705828667, 0.32184621691703796, -0.25278300046920776, 0.022663628682494164, 0.003977392800152302, 0.0031589337158948183, 0.025535818189382553, 0.24601218104362488, 0.25140509009361267, -0.08532768487930298, 0.8369783163070679, -0.008760469034314156, 0.0005273059359751642, -0.006339655257761478, 0.2445381134748459, -0.26112428307533264, 0.07949136942625046, 0.808204174041748, -0.0054887752048671246, 0.0028402614407241344, 0.00173771264962852]} +{"t": 2.3625, "q": [-0.15070167183876038, 0.008424961939454079, 0.00020087843586225063, 0.3169630467891693, -0.17476114630699158, -0.01057001668959856, -0.09485626220703125, -0.024867532774806023, 0.024453600868582726, 0.3218376934528351, -0.2527831196784973, 0.022678041830658913, 0.003964001312851906, 0.0031740169506520033, 0.025526277720928192, 0.24601218104362488, 0.25140509009361267, -0.08533966541290283, 0.8369902968406677, -0.008772453293204308, 0.0005392901366576552, -0.00635163951665163, 0.24452613294124603, -0.2611362636089325, 0.07949136942625046, 0.8081921935081482, -0.005464806687086821, 0.0028522456996142864, 0.001761681167408824]} +{"t": 2.3793, "q": [-0.15070167183876038, 0.008459052070975304, 0.00018748654110822827, 0.31694599986076355, -0.17475683987140656, -0.010562920942902565, -0.09486477822065353, -0.02485901117324829, 0.024480385705828667, 0.3218206465244293, -0.25278300046920776, 0.022663628682494164, 0.003964001312851906, 0.0031664713751524687, 0.025540567934513092, 0.24601218104362488, 0.2514290511608124, -0.08532768487930298, 0.8369902968406677, -0.008772453293204308, 0.0005512743373401463, -0.006363623775541782, 0.24452613294124603, -0.26114824414253235, 0.07951533794403076, 0.808204174041748, -0.005476790945976973, 0.0028402614407241344, 0.001749696908518672]} +{"t": 2.396, "q": [-0.15071019530296326, 0.008424961939454079, 0.00020087843586225063, 0.3169630467891693, -0.17475691437721252, -0.010577077977359295, -0.09484773874282837, -0.02485048770904541, 0.024480385705828667, 0.3218291699886322, -0.2527914345264435, 0.022663703188300133, 0.003964001312851906, 0.0031589337158948183, 0.025535818189382553, 0.24601218104362488, 0.2514170706272125, -0.08529172837734222, 0.8369783163070679, -0.008736500516533852, 0.0005392901366576552, -0.006339655257761478, 0.2445381134748459, -0.26114824414253235, 0.07949136942625046, 0.808204174041748, -0.005476790945976973, 0.0028522456996142864, 0.001761681167408824]} +{"t": 2.4127, "q": [-0.15071019530296326, 0.008450528606772423, 0.00020087843586225063, 0.31693747639656067, -0.17475691437721252, -0.010577077977359295, -0.09484773874282837, -0.02485901117324829, 0.024426817893981934, 0.3218206465244293, -0.2527914345264435, 0.022663703188300133, 0.003964001312851906, 0.0031740169506520033, 0.025526277720928192, 0.24600018560886383, 0.2514170706272125, -0.08530371636152267, 0.8369783163070679, -0.008796420879662037, 0.0005512743373401463, -0.006339655257761478, 0.24452613294124603, -0.26114824414253235, 0.07950334995985031, 0.8081802129745483, -0.005464806687086821, 0.0028522456996142864, 0.001761681167408824]} +{"t": 2.4296, "q": [-0.15071871876716614, 0.008459052070975304, 0.00018748654110822827, 0.31693747639656067, -0.1747525930404663, -0.010569981299340725, -0.09486477822065353, -0.02485901117324829, 0.024453600868582726, 0.3218291699886322, -0.25278717279434204, 0.02265646867454052, 0.0039506093598902225, 0.0031664713751524687, 0.025540567934513092, 0.24598820507526398, 0.2514170706272125, -0.08532768487930298, 0.8369783163070679, -0.008772453293204308, 0.0005632585962302983, -0.006339655257761478, 0.2445381134748459, -0.26112428307533264, 0.07950334995985031, 0.8081802129745483, -0.0055127437226474285, 0.0028522456996142864, 0.00173771264962852]} +{"t": 2.4463, "q": [-0.15071871876716614, 0.00843348540365696, 0.00020087843586225063, 0.3169289529323578, -0.17476539313793182, -0.0105629563331604, -0.0948818251490593, -0.02485901117324829, 0.024453600868582726, 0.3218206465244293, -0.25279155373573303, 0.02267809771001339, 0.003977392800152302, 0.0031664713751524687, 0.025540567934513092, 0.24598820507526398, 0.2514290511608124, -0.08530371636152267, 0.8369902968406677, -0.008772453293204308, 0.0005512743373401463, -0.00635163951665163, 0.2445381134748459, -0.2611362636089325, 0.07949136942625046, 0.8081921935081482, -0.0055127437226474285, 0.0028642297256737947, 0.0017736653098836541]} +{"t": 2.4631, "q": [-0.15071871876716614, 0.008459052070975304, 0.00018748654110822827, 0.3169204294681549, -0.1747610718011856, -0.010555860586464405, -0.09489034861326218, -0.02485901117324829, 0.024453600868582726, 0.3217950761318207, -0.2527872920036316, 0.022670863196253777, 0.003964001312851906, 0.0031664713751524687, 0.025540567934513092, 0.24596424400806427, 0.2514290511608124, -0.08532768487930298, 0.8369902968406677, -0.008772453293204308, 0.0005512743373401463, -0.006339655257761478, 0.2445381134748459, -0.26114824414253235, 0.07951533794403076, 0.8081921935081482, -0.0055127437226474285, 0.0028522456996142864, 0.0017736653098836541]} +{"t": 2.4799, "q": [-0.15071019530296326, 0.008484616875648499, 0.00018748654110822827, 0.3169289529323578, -0.17475251853466034, -0.010555824264883995, -0.09486477822065353, -0.02485901117324829, 0.024453600868582726, 0.32181212306022644, -0.2527828812599182, 0.022649234160780907, 0.003977392800152302, 0.003174009034410119, 0.02554531954228878, 0.24598820507526398, 0.25140509009361267, -0.08532768487930298, 0.8369902968406677, -0.008772453293204308, 0.0005512743373401463, -0.006339655257761478, 0.2445381134748459, -0.26114824414253235, 0.07947938144207001, 0.8081802129745483, -0.0054887752048671246, 0.0028642297256737947, 0.0017736653098836541]} +{"t": 2.4966, "q": [-0.15072724223136902, 0.008442007005214691, 0.00018748654110822827, 0.3169204294681549, -0.17475683987140656, -0.010562920942902565, -0.09489887207746506, -0.02485901117324829, 0.024440210312604904, 0.32176950573921204, -0.2527831196784973, 0.022678041830658913, 0.004004176706075668, 0.003174009034410119, 0.02554531954228878, 0.24597622454166412, 0.25140509009361267, -0.08530371636152267, 0.8369783163070679, -0.008760469034314156, 0.0005392901366576552, -0.00635163951665163, 0.2445381134748459, -0.26112428307533264, 0.07951533794403076, 0.8081921935081482, -0.0054887752048671246, 0.0029001825023442507, 0.001761681167408824]} +{"t": 2.5134, "q": [-0.15071871876716614, 0.008450528606772423, 0.00018748654110822827, 0.31694599986076355, -0.17476531863212585, -0.01054879929870367, -0.09489887207746506, -0.02485901117324829, 0.024466993287205696, 0.3217780292034149, -0.25278300046920776, 0.022663628682494164, 0.003990784753113985, 0.0031664713751524687, 0.025540567934513092, 0.24598820507526398, 0.25140509009361267, -0.08532768487930298, 0.8369783163070679, -0.008760469034314156, 0.0005512743373401463, -0.00635163951665163, 0.24452613294124603, -0.26112428307533264, 0.07949136942625046, 0.8081921935081482, -0.005452822428196669, 0.0028642297256737947, 0.0017736653098836541]} +{"t": 2.5301, "q": [-0.15071871876716614, 0.008450528606772423, 0.00021427033061627299, 0.31694599986076355, -0.17475683987140656, -0.010562920942902565, -0.09489034861326218, -0.024867532774806023, 0.024480385705828667, 0.3217865526676178, -0.2527789771556854, 0.022685203701257706, 0.003964001312851906, 0.003174009034410119, 0.02554531954228878, 0.24597622454166412, 0.25139307975769043, -0.08530371636152267, 0.8369902968406677, -0.00878443755209446, 0.0005392901366576552, -0.00635163951665163, 0.2445381134748459, -0.26114824414253235, 0.07949136942625046, 0.8081802129745483, -0.0055127437226474285, 0.0028881982434540987, 0.001785649568773806]} +{"t": 2.5468, "q": [-0.15071871876716614, 0.00843348540365696, 0.00020087843586225063, 0.3169630467891693, -0.1747610718011856, -0.010555860586464405, -0.09489034861326218, -0.02485901117324829, 0.024480385705828667, 0.3217865526676178, -0.25278717279434204, 0.02265646867454052, 0.004004176706075668, 0.0031589337158948183, 0.025535818189382553, 0.24600018560886383, 0.2514170706272125, -0.08532768487930298, 0.8369902968406677, -0.0087245162576437, 0.0005273059359751642, -0.006339655257761478, 0.24452613294124603, -0.26114824414253235, 0.07949136942625046, 0.8081682324409485, -0.0054887752048671246, 0.0028881982434540987, 0.0017736653098836541]} +{"t": 2.5637, "q": [-0.15071019530296326, 0.008424961939454079, 0.00018748654110822827, 0.31694599986076355, -0.17475683987140656, -0.010562920942902565, -0.09489034861326218, -0.024867532774806023, 0.024480385705828667, 0.3217780292034149, -0.2527788579463959, 0.0226708073168993, 0.003964001312851906, 0.003174009034410119, 0.02554531954228878, 0.24595224857330322, 0.2514170706272125, -0.08537562191486359, 0.8370022773742676, -0.008760469034314156, 0.0005632585962302983, -0.006339655257761478, 0.2445381134748459, -0.26114824414253235, 0.07950334995985031, 0.8081802129745483, -0.0054887752048671246, 0.0028881982434540987, 0.001749696908518672]} +{"t": 2.5804, "q": [-0.15071019530296326, 0.008450528606772423, 0.00021427033061627299, 0.31693747639656067, -0.17476114630699158, -0.01057001668959856, -0.09490738809108734, -0.024867532774806023, 0.024480385705828667, 0.3217950761318207, -0.2527788579463959, 0.0226708073168993, 0.0039506093598902225, 0.0031664713751524687, 0.025540567934513092, 0.24597622454166412, 0.25140509009361267, -0.08532768487930298, 0.8369783163070679, -0.008736500516533852, 0.0005632585962302983, -0.006339655257761478, 0.2445381134748459, -0.26112428307533264, 0.07949136942625046, 0.808204174041748, -0.0055127437226474285, 0.0028762139845639467, 0.001761681167408824]} +{"t": 2.5972, "q": [-0.15072724223136902, 0.008459052070975304, 0.00020087843586225063, 0.31693747639656067, -0.1747525930404663, -0.010569981299340725, -0.09490738809108734, -0.024867532774806023, 0.024480385705828667, 0.32176950573921204, -0.25278300046920776, 0.022663628682494164, 0.003977392800152302, 0.0031815506517887115, 0.02554054744541645, 0.24594026803970337, 0.2514170706272125, -0.08532768487930298, 0.8369783163070679, -0.008760469034314156, 0.0005632585962302983, -0.00635163951665163, 0.2445381134748459, -0.26114824414253235, 0.07950334995985031, 0.8081802129745483, -0.0054887752048671246, 0.0028881982434540987, 0.001761681167408824]} +{"t": 2.6139, "q": [-0.15072724223136902, 0.00843348540365696, 0.00021427033061627299, 0.31694599986076355, -0.1747610718011856, -0.010555860586464405, -0.0948818251490593, -0.02485901117324829, 0.024480385705828667, 0.3217865526676178, -0.2527914345264435, 0.022663703188300133, 0.004004176706075668, 0.0031815466936677694, 0.02555006928741932, 0.24594026803970337, 0.2514290511608124, -0.08535165339708328, 0.8369902968406677, -0.0087245162576437, 0.0005512743373401463, -0.0063276709988713264, 0.2445381134748459, -0.2611362636089325, 0.07947938144207001, 0.8081921935081482, -0.0055127437226474285, 0.0028762139845639467, 0.001761681167408824]} +{"t": 2.6306, "q": [-0.15071871876716614, 0.008450528606772423, 0.00020087843586225063, 0.31694599986076355, -0.1747610718011856, -0.010555860586464405, -0.09489034861326218, -0.024876054376363754, 0.024480385705828667, 0.3217780292034149, -0.2527872920036316, 0.022670863196253777, 0.003937217406928539, 0.00318908435292542, 0.025554819032549858, 0.24594026803970337, 0.2514170706272125, -0.08535165339708328, 0.8369902968406677, -0.008736500516533852, 0.0005512743373401463, -0.0063156867399811745, 0.2445381134748459, -0.26112428307533264, 0.07947938144207001, 0.8082161545753479, -0.0054887752048671246, 0.0028642297256737947, 0.0017736653098836541]} +{"t": 2.6474, "q": [-0.15072724223136902, 0.008442007005214691, 0.00020087843586225063, 0.3169289529323578, -0.1747525930404663, -0.010569981299340725, -0.09490738809108734, -0.02485048770904541, 0.024480385705828667, 0.3217865526676178, -0.2527872920036316, 0.022670863196253777, 0.003937217406928539, 0.003174009034410119, 0.02554531954228878, 0.24592828750610352, 0.2514170706272125, -0.08535165339708328, 0.8369902968406677, -0.008736500516533852, 0.0005752427969127893, -0.006363623775541782, 0.24455009400844574, -0.26114824414253235, 0.07947938144207001, 0.8082161545753479, -0.0054887752048671246, 0.0028762139845639467, 0.001761681167408824]} +{"t": 2.6643, "q": [-0.15071871876716614, 0.008450528606772423, 0.00018748654110822827, 0.3169289529323578, -0.1747482717037201, -0.01056288555264473, -0.0948818251490593, -0.024867532774806023, 0.024453600868582726, 0.3217865526676178, -0.25278717279434204, 0.02265646867454052, 0.003977392800152302, 0.003174009034410119, 0.02554531954228878, 0.24592828750610352, 0.2514170706272125, -0.08533966541290283, 0.8370142579078674, -0.008760469034314156, 0.0005632585962302983, -0.00635163951665163, 0.2445381134748459, -0.26114824414253235, 0.07951533794403076, 0.8082281351089478, -0.0054887752048671246, 0.0029361352790147066, 0.0017736653098836541]} +{"t": 2.6811, "q": [-0.15070167183876038, 0.00849314033985138, 0.00020087843586225063, 0.3169204294681549, -0.17476539313793182, -0.0105629563331604, -0.09489034861326218, -0.02485048770904541, 0.024453600868582726, 0.3218206465244293, -0.25278300046920776, 0.022663628682494164, 0.003964001312851906, 0.003174009034410119, 0.02554531954228878, 0.24594026803970337, 0.25140509009361267, -0.08532768487930298, 0.8369902968406677, -0.008736500516533852, 0.0005632585962302983, -0.00635163951665163, 0.24455009400844574, -0.26114824414253235, 0.07949136942625046, 0.808204174041748, -0.0055247279815375805, 0.0028881982434540987, 0.001761681167408824]} +{"t": 2.6978, "q": [-0.15070167183876038, 0.008467573672533035, 0.00020087843586225063, 0.31693747639656067, -0.17476539313793182, -0.0105629563331604, -0.09486477822065353, -0.02485901117324829, 0.024453600868582726, 0.3217950761318207, -0.2527914345264435, 0.022663703188300133, 0.003937217406928539, 0.003174009034410119, 0.02554531954228878, 0.24595224857330322, 0.2514170706272125, -0.08535165339708328, 0.8369902968406677, -0.008760469034314156, 0.0005392901366576552, -0.006375608034431934, 0.24455009400844574, -0.26114824414253235, 0.07949136942625046, 0.8082161545753479, -0.0054887752048671246, 0.0028881982434540987, 0.001761681167408824]} +{"t": 2.7148, "q": [-0.15072724223136902, 0.008442007005214691, 0.00020087843586225063, 0.31693747639656067, -0.17475683987140656, -0.010562920942902565, -0.0948818251490593, -0.024867532774806023, 0.024453600868582726, 0.3217865526676178, -0.2527788579463959, 0.0226708073168993, 0.003964001312851906, 0.003174005076289177, 0.0255548395216465, 0.24592828750610352, 0.2514170706272125, -0.08532768487930298, 0.8369902968406677, -0.008760469034314156, 0.0005273059359751642, -0.00635163951665163, 0.24452613294124603, -0.26114824414253235, 0.07949136942625046, 0.8082161545753479, -0.005476790945976973, 0.0028881982434540987, 0.001749696908518672]} +{"t": 2.7316, "q": [-0.15072724223136902, 0.008467573672533035, 0.00020087843586225063, 0.31693747639656067, -0.17475251853466034, -0.010555824264883995, -0.09484773874282837, -0.02485901117324829, 0.024453600868582726, 0.3218206465244293, -0.2527788579463959, 0.0226708073168993, 0.003937217406928539, 0.0031664674170315266, 0.02555008977651596, 0.24592828750610352, 0.2514170706272125, -0.08533966541290283, 0.8369902968406677, -0.008736500516533852, 0.0005392901366576552, -0.00635163951665163, 0.2445381134748459, -0.26112428307533264, 0.07949136942625046, 0.8082281351089478, -0.005476790945976973, 0.0029121667612344027, 0.0017736653098836541]} +{"t": 2.7484, "q": [-0.15071019530296326, 0.008450528606772423, 0.00020087843586225063, 0.3169289529323578, -0.1747610718011856, -0.010555860586464405, -0.09485626220703125, -0.024867532774806023, 0.024453600868582726, 0.3218291699886322, -0.25278717279434204, 0.02265646867454052, 0.003910433501005173, 0.003166459733620286, 0.02556913159787655, 0.24592828750610352, 0.2514290511608124, -0.08535165339708328, 0.8369902968406677, -0.008736500516533852, 0.0005392901366576552, -0.006339655257761478, 0.24452613294124603, -0.26114824414253235, 0.07950334995985031, 0.8082520961761475, -0.0055127437226474285, 0.0029121667612344027, 0.00173771264962852]} +{"t": 2.7651, "q": [-0.15072724223136902, 0.008450528606772423, 0.00020087843586225063, 0.3169204294681549, -0.17475691437721252, -0.010577077977359295, -0.09485626220703125, -0.02485901117324829, 0.024466993287205696, 0.3218206465244293, -0.2527914345264435, 0.022663703188300133, 0.004004176706075668, 0.0031589220743626356, 0.02556437999010086, 0.24592828750610352, 0.25140509009361267, -0.08535165339708328, 0.8370142579078674, -0.008760469034314156, 0.0005392901366576552, -0.00635163951665163, 0.2445381134748459, -0.26112428307533264, 0.07947938144207001, 0.8082760572433472, -0.0054887752048671246, 0.0029001825023442507, 0.0017736653098836541]} +{"t": 2.7818, "q": [-0.15068462491035461, 0.008476095274090767, 0.00018748654110822827, 0.3169289529323578, -0.17475691437721252, -0.010577077977359295, -0.09483921527862549, -0.024867532774806023, 0.024426817893981934, 0.3218206465244293, -0.2527828812599182, 0.022649234160780907, 0.0039506093598902225, 0.0031589220743626356, 0.02556437999010086, 0.24592828750610352, 0.2514170706272125, -0.08532768487930298, 0.8370142579078674, -0.008760469034314156, 0.0005512743373401463, -0.006339655257761478, 0.2445381134748459, -0.26114824414253235, 0.07949136942625046, 0.8082640767097473, -0.0055127437226474285, 0.0029001825023442507, 0.001761681167408824]} +{"t": 2.7985, "q": [-0.15070167183876038, 0.008442007005214691, 0.00020087843586225063, 0.31693747639656067, -0.17475251853466034, -0.010555824264883995, -0.09484773874282837, -0.02484196610748768, 0.024426817893981934, 0.3218206465244293, -0.2527788579463959, 0.0226708073168993, 0.0039506093598902225, 0.0031815350521355867, 0.025578631088137627, 0.24595224857330322, 0.2514170706272125, -0.08535165339708328, 0.8369902968406677, -0.008760469034314156, 0.0005273059359751642, -0.006339655257761478, 0.2445381134748459, -0.26114824414253235, 0.07949136942625046, 0.8082640767097473, -0.0055247279815375805, 0.0029121667612344027, 0.00173771264962852]} +{"t": 2.8154, "q": [-0.15070167183876038, 0.008424961939454079, 0.00018748654110822827, 0.31693747639656067, -0.1747525930404663, -0.010569981299340725, -0.09486477822065353, -0.024867532774806023, 0.024466993287205696, 0.3218206465244293, -0.2527831196784973, 0.022678041830658913, 0.004017568659037352, 0.0031739973928779364, 0.025573881343007088, 0.24592828750610352, 0.2514290511608124, -0.08535165339708328, 0.8369902968406677, -0.008760469034314156, 0.0005752427969127893, -0.00635163951665163, 0.2445381134748459, -0.26114824414253235, 0.07949136942625046, 0.8082401156425476, -0.0054887752048671246, 0.0028881982434540987, 0.001761681167408824]} +{"t": 2.8321, "q": [-0.15071019530296326, 0.008450528606772423, 0.00018748654110822827, 0.31693747639656067, -0.1747525930404663, -0.010569981299340725, -0.09483069181442261, -0.024867532774806023, 0.024453600868582726, 0.3218206465244293, -0.2527872920036316, 0.022670863196253777, 0.003964001312851906, 0.0031739973928779364, 0.025573881343007088, 0.24591630697250366, 0.2514170706272125, -0.08532768487930298, 0.8369902968406677, -0.008736500516533852, 0.0005512743373401463, -0.006339655257761478, 0.2445381134748459, -0.26112428307533264, 0.07947938144207001, 0.8082401156425476, -0.005476790945976973, 0.0029001825023442507, 0.0017736653098836541]} +{"t": 2.8489, "q": [-0.15070167183876038, 0.008450528606772423, 0.00020087843586225063, 0.31694599986076355, -0.17475683987140656, -0.010562920942902565, -0.09484773874282837, -0.02485901117324829, 0.024453600868582726, 0.3218376934528351, -0.25278717279434204, 0.02265646867454052, 0.0039506093598902225, 0.0031815350521355867, 0.025578631088137627, 0.24592828750610352, 0.25140509009361267, -0.08532768487930298, 0.8370142579078674, -0.008760469034314156, 0.0005153216770850122, -0.006375608034431934, 0.2445381134748459, -0.26114824414253235, 0.07947938144207001, 0.8082640767097473, -0.005464806687086821, 0.0029001825023442507, 0.001761681167408824]} +{"t": 2.8658, "q": [-0.15071019530296326, 0.008459052070975304, 0.00020087843586225063, 0.31694599986076355, -0.17475683987140656, -0.010562920942902565, -0.09486477822065353, -0.02485048770904541, 0.024440210312604904, 0.3218206465244293, -0.2527786195278168, 0.022641999647021294, 0.003964001312851906, 0.0031739973928779364, 0.025573881343007088, 0.24594026803970337, 0.2514170706272125, -0.08532768487930298, 0.8369902968406677, -0.008736500516533852, 0.0005273059359751642, -0.006339655257761478, 0.24452613294124603, -0.26112428307533264, 0.07949136942625046, 0.8082401156425476, -0.005452822428196669, 0.0029001825023442507, 0.001761681167408824]} +{"t": 2.8825, "q": [-0.15070167183876038, 0.008442007005214691, 0.00018748654110822827, 0.31693747639656067, -0.1747610718011856, -0.010555860586464405, -0.09486477822065353, -0.024867532774806023, 0.024426817893981934, 0.32180359959602356, -0.2527872920036316, 0.022670863196253777, 0.003990784753113985, 0.0031966182868927717, 0.025569090619683266, 0.24595224857330322, 0.25140509009361267, -0.08535165339708328, 0.8370142579078674, -0.008736500516533852, 0.0005512743373401463, -0.006339655257761478, 0.2445381134748459, -0.26112428307533264, 0.07951533794403076, 0.8082640767097473, -0.0054887752048671246, 0.0028881982434540987, 0.001749696908518672]} +{"t": 2.8993, "q": [-0.15071019530296326, 0.008450528606772423, 0.00020087843586225063, 0.31694599986076355, -0.17475683987140656, -0.010562920942902565, -0.09486477822065353, -0.02485901117324829, 0.024453600868582726, 0.32181212306022644, -0.2527831196784973, 0.022678041830658913, 0.003937217406928539, 0.0031966182868927717, 0.025569090619683266, 0.24595224857330322, 0.25140509009361267, -0.08533966541290283, 0.8370142579078674, -0.008760469034314156, 0.0005632585962302983, -0.006339655257761478, 0.2445381134748459, -0.26112428307533264, 0.07951533794403076, 0.8082401156425476, -0.005464806687086821, 0.0029001825023442507, 0.001749696908518672]} +{"t": 2.9162, "q": [-0.15071871876716614, 0.008442007005214691, 0.00020087843586225063, 0.31695452332496643, -0.17476531863212585, -0.01054879929870367, -0.09486477822065353, -0.024867532774806023, 0.024453600868582726, 0.3218291699886322, -0.2527914345264435, 0.022663703188300133, 0.003990784753113985, 0.0031739973928779364, 0.025573881343007088, 0.24595224857330322, 0.2514170706272125, -0.08535165339708328, 0.8370142579078674, -0.008760469034314156, 0.0005752427969127893, -0.00635163951665163, 0.24455009400844574, -0.2611362636089325, 0.07949136942625046, 0.8082640767097473, -0.0054887752048671246, 0.0029001825023442507, 0.001761681167408824]} +{"t": 2.9329, "q": [-0.15071019530296326, 0.008476095274090767, 0.00020087843586225063, 0.31695452332496643, -0.17475683987140656, -0.010562920942902565, -0.09486477822065353, -0.024867532774806023, 0.024453600868582726, 0.3218291699886322, -0.2527872920036316, 0.022670863196253777, 0.003977392800152302, 0.0031966182868927717, 0.025569090619683266, 0.24595224857330322, 0.2514290511608124, -0.08532768487930298, 0.8370142579078674, -0.008700547739863396, 0.0005632585962302983, -0.006339655257761478, 0.2445381134748459, -0.26112428307533264, 0.07947938144207001, 0.8082401156425476, -0.005464806687086821, 0.0028881982434540987, 0.001749696908518672]} +{"t": 2.9496, "q": [-0.15071019530296326, 0.00849314033985138, 0.00020087843586225063, 0.3169630467891693, -0.17475683987140656, -0.010562920942902565, -0.09485626220703125, -0.02485901117324829, 0.024426817893981934, 0.3218206465244293, -0.25278300046920776, 0.022663628682494164, 0.003990784753113985, 0.0031739973928779364, 0.025573881343007088, 0.24592828750610352, 0.2514290511608124, -0.08532768487930298, 0.8370142579078674, -0.008736500516533852, 0.0005752427969127893, -0.00635163951665163, 0.24450215697288513, -0.26112428307533264, 0.07950334995985031, 0.8082520961761475, -0.005464806687086821, 0.0029001825023442507, 0.001749696908518672]} +{"t": 2.9664, "q": [-0.15071019530296326, 0.008484616875648499, 0.00020087843586225063, 0.3169630467891693, -0.17475683987140656, -0.010562920942902565, -0.09486477822065353, -0.02484196610748768, 0.024440210312604904, 0.32181212306022644, -0.25278300046920776, 0.022663628682494164, 0.004017568659037352, 0.0031739973928779364, 0.025573881343007088, 0.24591630697250366, 0.25140509009361267, -0.08532768487930298, 0.8370142579078674, -0.008760469034314156, 0.0005632585962302983, -0.006363623775541782, 0.24450215697288513, -0.26112428307533264, 0.07950334995985031, 0.8082520961761475, -0.005464806687086821, 0.0029121667612344027, 0.001749696908518672]} +{"t": 2.9831, "q": [-0.15071871876716614, 0.008476095274090767, 0.00018748654110822827, 0.31694599986076355, -0.1747525930404663, -0.010569981299340725, -0.09483921527862549, -0.024867532774806023, 0.024466993287205696, 0.3218206465244293, -0.25278300046920776, 0.022663628682494164, 0.004044352564960718, 0.0031815350521355867, 0.025578631088137627, 0.24590431153774261, 0.2514290511608124, -0.08532768487930298, 0.8370142579078674, -0.008772453293204308, 0.0005632585962302983, -0.006363623775541782, 0.24446621537208557, -0.26114824414253235, 0.07950334995985031, 0.8082640767097473, -0.005452822428196669, 0.0029241510201245546, 0.001761681167408824]} +{"t": 2.9998, "q": [-0.15070167183876038, 0.008484616875648499, 0.00020087843586225063, 0.31693747639656067, -0.1747525930404663, -0.010569981299340725, -0.09483921527862549, -0.02485048770904541, 0.024440210312604904, 0.3218376934528351, -0.25278300046920776, 0.022663628682494164, 0.004017568659037352, 0.0031815350521355867, 0.025578631088137627, 0.24590431153774261, 0.25140509009361267, -0.08533966541290283, 0.8370142579078674, -0.008736500516533852, 0.0005752427969127893, -0.00635163951665163, 0.24440628290176392, -0.26112428307533264, 0.07951533794403076, 0.8082520961761475, -0.0054887752048671246, 0.0029001825023442507, 0.001761681167408824]} +{"t": 3.0166, "q": [-0.15071871876716614, 0.008476095274090767, 0.00020087843586225063, 0.31693747639656067, -0.17475691437721252, -0.010577077977359295, -0.09484773874282837, -0.024867532774806023, 0.024466993287205696, 0.3218206465244293, -0.25277459621429443, 0.022663572803139687, 0.004030960611999035, 0.0031815350521355867, 0.025578631088137627, 0.24592828750610352, 0.2514290511608124, -0.08533966541290283, 0.8370142579078674, -0.008736500516533852, 0.0005752427969127893, -0.006375608034431934, 0.2443104088306427, -0.26112428307533264, 0.07951533794403076, 0.8082640767097473, -0.0054887752048671246, 0.0029001825023442507, 0.001785649568773806]} +{"t": 3.0333, "q": [-0.15068462491035461, 0.008476095274090767, 0.00021427033061627299, 0.31693747639656067, -0.17476114630699158, -0.01057001668959856, -0.09483921527862549, -0.02485048770904541, 0.024440210312604904, 0.3218206465244293, -0.2527788579463959, 0.0226708073168993, 0.004030960611999035, 0.003158929757773876, 0.025545338168740273, 0.24541296064853668, 0.24935577809810638, -0.08500410616397858, 0.8387399911880493, -0.008772453293204308, 0.00033555831760168076, -0.006363623775541782, 0.2433636635541916, -0.25947046279907227, 0.07898803055286407, 0.8101096749305725, -0.0054887752048671246, 0.0028762139845639467, 0.001797633827663958]} +{"t": 3.05, "q": [-0.15065906941890717, 0.008467573672533035, 0.00020087843586225063, 0.31690338253974915, -0.1747610718011856, -0.010555860586464405, -0.09483069181442261, -0.02485048770904541, 0.024453600868582726, 0.3218376934528351, -0.2527788579463959, 0.0226708073168993, 0.004030960611999035, 0.0031891039106994867, 0.025507215410470963, 0.24379509687423706, 0.24687503278255463, -0.084596648812294, 0.8431141972541809, -0.00882038939744234, 0.0003954794374294579, -0.006339655257761478, 0.24174578487873077, -0.2575170397758484, 0.07806524634361267, 0.814328134059906, -0.0055127437226474285, 0.0029241510201245546, 0.0017137442482635379]} +{"t": 3.0667, "q": [-0.15059088170528412, 0.008459052070975304, 0.00020087843586225063, 0.31690338253974915, -0.17475683987140656, -0.010562920942902565, -0.09479660540819168, -0.02484196610748768, 0.024453600868582726, 0.32184621691703796, -0.25277459621429443, 0.022663572803139687, 0.004030960611999035, 0.003226811997592449, 0.02548336423933506, 0.24222515523433685, 0.2437831163406372, -0.08478839695453644, 0.8477520942687988, -0.00882038939744234, 0.0005512743373401463, -0.006375608034431934, 0.2407630831003189, -0.2551681101322174, 0.07802928984165192, 0.8172162771224976, -0.0054887752048671246, 0.0029241510201245546, 0.0016777915880084038]} +{"t": 3.0835, "q": [-0.15062497556209564, 0.008442007005214691, 0.00016070275160018355, 0.31690338253974915, -0.1747525930404663, -0.010569981299340725, -0.0947880819439888, -0.024884577840566635, 0.024453600868582726, 0.32185474038124084, -0.2527703046798706, 0.022656338289380074, 0.004097919911146164, 0.0032343417406082153, 0.025507155805826187, 0.24123047292232513, 0.23870180547237396, -0.08460862934589386, 0.8510717153549194, -0.008856342174112797, 0.0005273059359751642, -0.006363623775541782, 0.240139901638031, -0.25225594639778137, 0.07796937227249146, 0.8191577196121216, -0.005476790945976973, 0.0029001825023442507, 0.0016777915880084038]} +{"t": 3.1002, "q": [-0.15063349902629852, 0.008450528606772423, 0.00018748654110822827, 0.3168863356113434, -0.17476114630699158, -0.01057001668959856, -0.09477103501558304, -0.0249016210436821, 0.024453600868582726, 0.3218206465244293, -0.2527914345264435, 0.022663703188300133, 0.004338974133133888, 0.0032946395222097635, 0.025554679334163666, 0.23972046375274658, 0.23274563252925873, -0.08475244045257568, 0.8551223874092102, -0.008916263468563557, 0.0005632585962302983, -0.006375608034431934, 0.2398642748594284, -0.2488044947385788, 0.07794540375471115, 0.8210033178329468, -0.0055127437226474285, 0.0029001825023442507, 0.001689775730483234]} +{"t": 3.1169, "q": [-0.15065054595470428, 0.008484616875648499, 9.374327055411413e-05, 0.3168863356113434, -0.17475683987140656, -0.010562920942902565, -0.09475399553775787, -0.024935709312558174, 0.024333074688911438, 0.32184621691703796, -0.2527788579463959, 0.0226708073168993, 0.004660379607230425, 0.003279544645920396, 0.025592783465981483, 0.23865386843681335, 0.22547121345996857, -0.08490823209285736, 0.8589813113212585, -0.008856342174112797, 0.0005512743373401463, -0.006339655257761478, 0.23908528685569763, -0.24414263665676117, 0.0779094472527504, 0.8233641982078552, -0.0054887752048671246, 0.0029121667612344027, 0.001701759989373386]} +{"t": 3.1337, "q": [-0.15065054595470428, 0.00849314033985138, 4.017568790004589e-05, 0.3168692886829376, -0.17476114630699158, -0.01057001668959856, -0.09474547207355499, -0.02491866610944271, 0.024319682270288467, 0.3218291699886322, -0.2527914345264435, 0.022663703188300133, 0.004807690624147654, 0.0032569237519055605, 0.025597572326660156, 0.2377910017967224, 0.21769344806671143, -0.08500410616397858, 0.863199770450592, -0.008856342174112797, 0.0005153216770850122, -0.006375608034431934, 0.23825837671756744, -0.23848608136177063, 0.07783754169940948, 0.8256292343139648, -0.005476790945976973, 0.0029121667612344027, 0.001689775730483234]} +{"t": 3.1504, "q": [-0.15065054595470428, 0.00849314033985138, 2.6783791327034123e-05, 0.31686076521873474, -0.17475251853466034, -0.010555824264883995, -0.09473694860935211, -0.024884577840566635, 0.024319682270288467, 0.3218291699886322, -0.2527788579463959, 0.0226708073168993, 0.004740730859339237, 0.0032343068160116673, 0.02559284307062626, 0.23715583980083466, 0.2090887725353241, -0.0851718857884407, 0.8681373000144958, -0.008892294950783253, 0.0006111955153755844, -0.006387591827660799, 0.23670043051242828, -0.23217038810253143, 0.0779094472527504, 0.8291166424751282, -0.005476790945976973, 0.0029001825023442507, 0.001701759989373386]} +{"t": 3.1671, "q": [-0.1506420224905014, 0.008476095274090767, 5.3567582654068246e-05, 0.31685224175453186, -0.17476114630699158, -0.01057001668959856, -0.09476251900196075, -0.02484196610748768, 0.02434646710753441, 0.3218206465244293, -0.2527872920036316, 0.022670863196253777, 0.004660379607230425, 0.0032116780057549477, 0.02561667561531067, 0.23725171387195587, 0.19956131279468536, -0.08527974784374237, 0.8713370561599731, -0.008892294950783253, 0.0006111955153755844, -0.006423544604331255, 0.23473502695560455, -0.2250397801399231, 0.07792143523693085, 0.8340181708335876, -0.005476790945976973, 0.0029361352790147066, 0.0016777915880084038]} +{"t": 3.1841, "q": [-0.15066757798194885, 0.008476095274090767, 4.017568790004589e-05, 0.31686076521873474, -0.1747610718011856, -0.010555860586464405, -0.09484773874282837, -0.02485901117324829, 0.02435985766351223, 0.3217950761318207, -0.2527872920036316, 0.022670863196253777, 0.004593420308083296, 0.003294588765129447, 0.025678450241684914, 0.23696409165859222, 0.1902136206626892, -0.08530371636152267, 0.875004231929779, -0.008916263468563557, 0.0005992112564854324, -0.006411560345441103, 0.23293738067150116, -0.2177533656358719, 0.07796937227249146, 0.8391714096069336, -0.005464806687086821, 0.002984072081744671, 0.0016777915880084038]} +{"t": 3.2008, "q": [-0.15067610144615173, 0.008476095274090767, 2.6783791327034123e-05, 0.31685224175453186, -0.17476114630699158, -0.01057001668959856, -0.09482216835021973, -0.02485048770904541, 0.024306289851665497, 0.3217865526676178, -0.25278717279434204, 0.02265646867454052, 0.004566636402159929, 0.003422704292461276, 0.025778187438845634, 0.23692813515663147, 0.18100973963737488, -0.08535165339708328, 0.8779163956642151, -0.0088803106918931, 0.0006231797160580754, -0.006411560345441103, 0.2314034104347229, -0.21101823449134827, 0.07831691205501556, 0.8434976935386658, -0.0054887752048671246, 0.003032008884474635, 0.001785649568773806]} +{"t": 3.2175, "q": [-0.1506420224905014, 0.008459052070975304, 4.017568790004589e-05, 0.31685224175453186, -0.17476963996887207, -0.01055589597672224, -0.09482216835021973, -0.02485901117324829, 0.02435985766351223, 0.3218206465244293, -0.2527831196784973, 0.022678041830658913, 0.004566636402159929, 0.0035507921129465103, 0.02583969198167324, 0.23696409165859222, 0.1712905317544937, -0.08537562191486359, 0.8807806372642517, -0.0088803106918931, 0.0005992112564854324, -0.006387591827660799, 0.23000125586986542, -0.2043190598487854, 0.07840079814195633, 0.8477161526679993, -0.0054887752048671246, 0.003079945920035243, 0.0018695391481742263]} +{"t": 3.2343, "q": [-0.1506420224905014, 0.008476095274090767, 0.0, 0.31685224175453186, -0.17476114630699158, -0.01057001668959856, -0.09479660540819168, -0.02484196610748768, 0.024319682270288467, 0.32181212306022644, -0.2527828812599182, 0.022649234160780907, 0.004539852496236563, 0.003580924356356263, 0.02585863694548607, 0.23662853240966797, 0.16254204511642456, -0.0851718857884407, 0.884495735168457, -0.0088803106918931, 0.0005392901366576552, -0.00635163951665163, 0.227736234664917, -0.19859059154987335, 0.07832889258861542, 0.8518027663230896, -0.0055127437226474285, 0.0031398669816553593, 0.0018935075495392084]} +{"t": 3.251, "q": [-0.15065906941890717, 0.008467573672533035, -2.6783791327034123e-05, 0.3168692886829376, -0.17475676536560059, -0.010548763908445835, -0.09481364488601685, -0.02473970130085945, 0.024292899295687675, 0.3218206465244293, -0.2527788579463959, 0.0226708073168993, 0.0045264605432748795, 0.003565826453268528, 0.02588718943297863, 0.23643678426742554, 0.1540212631225586, -0.08502807468175888, 0.8880430459976196, -0.008892294950783253, 0.0005392901366576552, -0.005908222869038582, 0.22463232278823853, -0.19366508722305298, 0.0782330259680748, 0.8552662134170532, -0.005572664551436901, 0.0033555831760168076, 0.0019054918084293604]} +{"t": 3.2682, "q": [-0.15065054595470428, 0.008476095274090767, -5.3567582654068246e-05, 0.3168692886829376, -0.17475691437721252, -0.010577077977359295, -0.09477955847978592, -0.024628913030028343, 0.024292899295687675, 0.3218291699886322, -0.2527914345264435, 0.022663703188300133, 0.004553244449198246, 0.003565841121599078, 0.02586817741394043, 0.23636487126350403, 0.1473580300807953, -0.08466855436563492, 0.8899845480918884, -0.0088803106918931, 0.0005033374764025211, -0.004781705792993307, 0.22186395525932312, -0.1910165697336197, 0.07819706946611404, 0.8571836948394775, -0.005584648810327053, 0.00347542529925704, 0.0020133499056100845]} +{"t": 3.2849, "q": [-0.15065054595470428, 0.00849314033985138, -0.0002946217136923224, 0.3168692886829376, -0.17475691437721252, -0.010577077977359295, -0.09473694860935211, -0.024466993287205696, 0.02417237125337124, 0.32184621691703796, -0.25277459621429443, 0.022663572803139687, 0.005102312192320824, 0.0035357088781893253, 0.0258492324501276, 0.2359693944454193, 0.14037123322486877, -0.08447680622339249, 0.8919858932495117, -0.008796420879662037, 0.00041944789700210094, -0.0027204190846532583, 0.21853235363960266, -0.18938671052455902, 0.07808921486139297, 0.8588375449180603, -0.005644570104777813, 0.00355931487865746, 0.0020013656467199326]} +{"t": 3.3018, "q": [-0.15065054595470428, 0.008467573672533035, -0.0006294191116467118, 0.31690338253974915, -0.1747525930404663, -0.010569981299340725, -0.09458354860544205, -0.024339161813259125, 0.02387774921953678, 0.3218291699886322, -0.25279131531715393, 0.022649308666586876, 0.0057719070464372635, 0.0034980804193764925, 0.025778017938137054, 0.23503462970256805, 0.1365722268819809, -0.08308663219213486, 0.8940951228141785, -0.00882038939744234, 0.0003954794374294579, -0.0005632585962302983, 0.21571604907512665, -0.18915900588035583, 0.07782556116580963, 0.859688401222229, -0.005668538622558117, 0.003583283396437764, 0.0019893813878297806]} +{"t": 3.3185, "q": [-0.15065054595470428, 0.008459052070975304, -0.001044567907229066, 0.316911906003952, -0.17474834620952606, -0.010577050969004631, -0.09447276592254639, -0.024202806875109673, 0.023596519604325294, 0.32180359959602356, -0.25279131531715393, 0.022649308666586876, 0.006361150648444891, 0.0035358283203095198, 0.025706632062792778, 0.23393207788467407, 0.13575729727745056, -0.08294282108545303, 0.8962882161140442, -0.008796420879662037, 0.0002636529679875821, 0.0012223910307511687, 0.21246832609176636, -0.18935075402259827, 0.07709451764822006, 0.8605632185935974, -0.0057524279691278934, 0.003595267655327916, 0.0019654128700494766]} +{"t": 3.3352, "q": [-0.15067610144615173, 0.008510183542966843, -0.001419540960341692, 0.31694599986076355, -0.17472288012504578, -0.010619423352181911, -0.09439606219530106, -0.02394714392721653, 0.023328682407736778, 0.3218206465244293, -0.2527954578399658, 0.022642146795988083, 0.006615596357733011, 0.0035433538723737, 0.025720875710248947, 0.23272167146205902, 0.13617675006389618, -0.08278702944517136, 0.8979181051254272, -0.008844357915222645, 0.00027563716867007315, 0.002037318190559745, 0.20919664204120636, -0.18932679295539856, 0.07667507231235504, 0.8610545992851257, -0.005812349263578653, 0.003571299137547612, 0.0018815234070643783]} +{"t": 3.3519, "q": [-0.15071019530296326, 0.008603926748037338, -0.0017141626449301839, 0.31694599986076355, -0.17469310760498047, -0.010654709301888943, -0.09438754618167877, -0.023751135915517807, 0.023154588416218758, 0.3218206465244293, -0.25279948115348816, 0.022620590403676033, 0.006575420964509249, 0.003513187635689974, 0.02573995664715767, 0.2314273715019226, 0.1365482658147812, -0.08278702944517136, 0.8996557593345642, -0.00882038939744234, 0.0001917476038215682, 0.002253034384921193, 0.20599684119224548, -0.1892668753862381, 0.07630356401205063, 0.8618096113204956, -0.005908222869038582, 0.00355931487865746, 0.0018216022290289402]} +{"t": 3.3687, "q": [-0.15071019530296326, 0.00868062674999237, -0.0018614735454320908, 0.316911906003952, -0.17469748854637146, -0.010675962083041668, -0.0944216325879097, -0.023623304441571236, 0.02304745279252529, 0.3218206465244293, -0.25279948115348816, 0.022620590403676033, 0.006441501900553703, 0.003528270870447159, 0.025730416178703308, 0.22954584658145905, 0.13703961670398712, -0.08273909240961075, 0.902364194393158, -0.008856342174112797, 0.00017976337403524667, 0.002277002902701497, 0.20328840613365173, -0.1892908364534378, 0.07569236308336258, 0.862828254699707, -0.0062797339633107185, 0.0035473306197673082, 0.001785649568773806]} +{"t": 3.3854, "q": [-0.15071871876716614, 0.008697669953107834, -0.0018480815924704075, 0.3169204294681549, -0.17468476295471191, -0.010697153396904469, -0.09437902271747589, -0.02358069270849228, 0.023060845211148262, 0.3218206465244293, -0.25280776619911194, 0.022606270387768745, 0.006267406977713108, 0.003633837215602398, 0.025682644918560982, 0.2274605929851532, 0.13709953427314758, -0.0827510729432106, 0.9056119322776794, -0.0088803106918931, 0.00011984225420746952, 0.0023129554465413094, 0.20150277018547058, -0.18965037167072296, 0.07534482330083847, 0.863798975944519, -0.006747118663042784, 0.003511378075927496, 0.0018455706303939223]} +{"t": 3.4024, "q": [-0.1506931483745575, 0.008706193417310715, -0.0018614735454320908, 0.3169204294681549, -0.17468900978565216, -0.010690083727240562, -0.09436197578907013, -0.02358069270849228, 0.023074235767126083, 0.3218206465244293, -0.25280362367630005, 0.02261343039572239, 0.00613348837941885, 0.0038373966235667467, 0.02562989853322506, 0.2257348597049713, 0.13723136484622955, -0.08273909240961075, 0.9078410267829895, -0.008856342174112797, 0.00013182648399379104, 0.0024327978026121855, 0.20016053318977356, -0.1905132234096527, 0.07503323256969452, 0.8650573492050171, -0.00717855105176568, 0.003511378075927496, 0.0018216022290289402]} +{"t": 3.4192, "q": [-0.1506931483745575, 0.00868062674999237, -0.001834689755924046, 0.316911906003952, -0.17468900978565216, -0.010690083727240562, -0.09438754618167877, -0.023606259375810623, 0.023114411160349846, 0.32180359959602356, -0.25280776619911194, 0.022606270387768745, 0.006026353221386671, 0.003995672333985567, 0.02564379945397377, 0.22387731075286865, 0.13712351024150848, -0.08279900997877121, 0.9100820422172546, -0.008856342174112797, 0.00013182648399379104, 0.002540655666962266, 0.19902202486991882, -0.19107648730278015, 0.07482950389385223, 0.8671185970306396, -0.007490140851587057, 0.0035353463608771563, 0.0018695391481742263]} +{"t": 3.4359, "q": [-0.1506931483745575, 0.008629493415355682, -0.001794514013454318, 0.31690338253974915, -0.17468468844890594, -0.010682987049221992, -0.09438754618167877, -0.023631826043128967, 0.023114411160349846, 0.32181212306022644, -0.2528121769428253, 0.022627899423241615, 0.006079920567572117, 0.004161412362009287, 0.02574799954891205, 0.22189991176128387, 0.13703961670398712, -0.08279900997877121, 0.9125028848648071, -0.008856342174112797, 0.00013182648399379104, 0.00264851376414299, 0.19817115366458893, -0.19151990115642548, 0.07460179924964905, 0.8692517876625061, -0.0076459357514977455, 0.00355931487865746, 0.0018695391481742263]} +{"t": 3.4526, "q": [-0.15071019530296326, 0.008646538481116295, -0.001794514013454318, 0.3168778121471405, -0.17468476295471191, -0.010697153396904469, -0.09440458565950394, -0.0236403476446867, 0.023114411160349846, 0.3217865526676178, -0.2528120279312134, 0.02261350490152836, 0.0061736637726426125, 0.00425177626311779, 0.025852369144558907, 0.21961092948913574, 0.13712351024150848, -0.08279900997877121, 0.914911687374115, -0.008832373656332493, 0.00017976337403524667, 0.00264851376414299, 0.19714049994945526, -0.1920112520456314, 0.07456585019826889, 0.8721519708633423, -0.007753793615847826, 0.0035353463608771563, 0.0018815234070643783]} +{"t": 3.4694, "q": [-0.15071871876716614, 0.008629493415355682, -0.001834689755924046, 0.3168863356113434, -0.17468476295471191, -0.010697153396904469, -0.09438754618167877, -0.02365739271044731, 0.023114411160349846, 0.3217865526676178, -0.2528119385242462, 0.02259909175336361, 0.0061736637726426125, 0.0042516570538282394, 0.02599496953189373, 0.2175256758928299, 0.1371954083442688, -0.08276306092739105, 0.9170328974723816, -0.008832373656332493, 0.0001917476038215682, 0.0026964505668729544, 0.19575034081935883, -0.1934134066104889, 0.07432616502046585, 0.8758431077003479, -0.007921572774648666, 0.003571299137547612, 0.0018695391481742263]} +{"t": 3.4862, "q": [-0.15074428915977478, 0.008578360080718994, -0.001794514013454318, 0.3168692886829376, -0.17468476295471191, -0.010697153396904469, -0.09443015605211258, -0.0236403476446867, 0.023141195997595787, 0.3217524588108063, -0.25280776619911194, 0.022606270387768745, 0.006213839631527662, 0.004228944890201092, 0.026113854721188545, 0.21556025743484497, 0.13730326294898987, -0.08279900997877121, 0.9187586307525635, -0.008844357915222645, 0.00022770027862861753, 0.0027084348257631063, 0.19448000192642212, -0.19547469913959503, 0.07397862523794174, 0.8795462846755981, -0.008113320916891098, 0.00355931487865746, 0.0018575548892840743]} +{"t": 3.5031, "q": [-0.15074428915977478, 0.008569838479161263, -0.0017811221769079566, 0.3168778121471405, -0.17468900978565216, -0.010690083727240562, -0.0944216325879097, -0.023682959377765656, 0.023141195997595787, 0.32172688841819763, -0.25280362367630005, 0.02261343039572239, 0.006240623537451029, 0.004198730457574129, 0.026189977303147316, 0.2134031057357788, 0.1372433453798294, -0.08283496648073196, 0.9208558797836304, -0.008796420879662037, 0.00025166873820126057, 0.0027084348257631063, 0.19280222058296204, -0.19757193326950073, 0.0730917900800705, 0.8837646842002869, -0.008364989422261715, 0.003583283396437764, 0.0018216022290289402]} +{"t": 3.5198, "q": [-0.15076132118701935, 0.008569838479161263, -0.0017543383873999119, 0.3168181777000427, -0.17468476295471191, -0.010697153396904469, -0.09443015605211258, -0.023691480979323387, 0.023114411160349846, 0.32171836495399475, -0.25280362367630005, 0.02261343039572239, 0.006294190883636475, 0.004213774111121893, 0.02622796967625618, 0.21044299006462097, 0.13709953427314758, -0.08285893499851227, 0.924175500869751, -0.00882038939744234, 0.0003115898580290377, 0.0027324033435434103, 0.19126823544502258, -0.1997290998697281, 0.07213304936885834, 0.8874078989028931, -0.0087245162576437, 0.003595267655327916, 0.0018216022290289402]} +{"t": 3.5366, "q": [-0.15076984465122223, 0.008561316877603531, -0.0017677302239462733, 0.3168181777000427, -0.17468468844890594, -0.010682987049221992, -0.0944642424583435, -0.023691480979323387, 0.023154588416218758, 0.3217013478279114, -0.25280776619911194, 0.022606270387768745, 0.0061736637726426125, 0.004228825215250254, 0.02625645510852337, 0.20836971700191498, 0.1369916796684265, -0.08287091553211212, 0.9271236062049866, -0.00882038939744234, 0.0003115898580290377, 0.0027443876024335623, 0.18920694291591644, -0.20183831453323364, 0.07173757255077362, 0.8906676173210144, -0.008760469034314156, 0.0036072516813874245, 0.0018216022290289402]} +{"t": 3.5533, "q": [-0.15074428915977478, 0.008595405146479607, -0.0017141626449301839, 0.31680113077163696, -0.17468476295471191, -0.010697153396904469, -0.09450685232877731, -0.023665914312005043, 0.023154588416218758, 0.32167577743530273, -0.2528160810470581, 0.022591929882764816, 0.005879042204469442, 0.004281560890376568, 0.02628961019217968, 0.20714733004570007, 0.1369437426328659, -0.08288290351629257, 0.9286456108093262, -0.00882038939744234, 0.0003115898580290377, 0.0027324033435434103, 0.18663033843040466, -0.20363596081733704, 0.07156979292631149, 0.893843412399292, -0.00878443755209446, 0.003583283396437764, 0.0018455706303939223]} +{"t": 3.5701, "q": [-0.1507357656955719, 0.008638015016913414, -0.0016605950659140944, 0.31672441959381104, -0.1746804416179657, -0.010690056718885899, -0.09456650912761688, -0.023614780977368355, 0.023275114595890045, 0.3216928243637085, -0.25281620025634766, 0.022606326267123222, 0.005651379935443401, 0.004304177593439817, 0.026284806430339813, 0.20575715601444244, 0.1369916796684265, -0.08287091553211212, 0.9314499497413635, -0.008856342174112797, 0.00027563716867007315, 0.0027443876024335623, 0.18374213576316833, -0.20515795052051544, 0.07135407626628876, 0.8973788022994995, -0.008868326433002949, 0.003583283396437764, 0.0018216022290289402]} +{"t": 3.5868, "q": [-0.15071871876716614, 0.008655060082674026, -0.0016472031129524112, 0.31667327880859375, -0.1746889352798462, -0.010675926692783833, -0.09456650912761688, -0.023623304441571236, 0.023221546784043312, 0.3216502070426941, -0.2528160810470581, 0.022591929882764816, 0.0055442447774112225, 0.004364446736872196, 0.02632269635796547, 0.20412731170654297, 0.13705159723758698, -0.08289488404989243, 0.935153067111969, -0.008844357915222645, 0.0002037318336078897, 0.0027443876024335623, 0.1815010905265808, -0.2064642310142517, 0.07127019017934799, 0.9006864428520203, -0.009096027351915836, 0.00355931487865746, 0.0018335864879190922]} +{"t": 3.6035, "q": [-0.15071871876716614, 0.00868062674999237, -0.0017141626449301839, 0.3166391849517822, -0.1746804416179657, -0.010690056718885899, -0.09457503259181976, -0.02358921617269516, 0.023141195997595787, 0.3216502070426941, -0.25282448530197144, 0.022592004388570786, 0.005812082905322313, 0.004417206160724163, 0.026327310130000114, 0.20313261449337006, 0.13709953427314758, -0.08287091553211212, 0.9378495216369629, -0.008892294950783253, -9.58738019107841e-05, 0.0027443876024335623, 0.17906829714775085, -0.20817798376083374, 0.07124622166156769, 0.9040180444717407, -0.00920388475060463, 0.003571299137547612, 0.0018695391481742263]} +{"t": 3.6203, "q": [-0.15079541504383087, 0.008655060082674026, -0.0019150411244481802, 0.316656231880188, -0.17468468844890594, -0.010682987049221992, -0.09453241527080536, -0.02358921617269516, 0.022967100143432617, 0.32162463665008545, -0.25283291935920715, 0.022592077031731606, 0.006495069246739149, 0.004424689337611198, 0.02638907916843891, 0.20235364139080048, 0.1372673213481903, -0.08278702944517136, 0.9416844844818115, -0.00894023198634386, -0.0006831008358858526, 0.0027084348257631063, 0.17619207501411438, -0.21043100953102112, 0.0713181272149086, 0.9073017239570618, -0.009491506032645702, 0.0036072516813874245, 0.0018815234070643783]} +{"t": 3.6371, "q": [-0.1509658545255661, 0.008595405146479607, -0.002316797850653529, 0.31666475534439087, -0.17468468844890594, -0.010682987049221992, -0.0945153757929802, -0.023623304441571236, 0.022578736767172813, 0.3216075897216797, -0.2528454661369324, 0.02258499152958393, 0.007378934416919947, 0.004326602444052696, 0.026508159935474396, 0.20218586921691895, 0.13737517595291138, -0.0827271044254303, 0.946214497089386, -0.008952216245234013, -0.001318264752626419, 0.0026964505668729544, 0.17318403720855713, -0.21294769644737244, 0.07133010774850845, 0.9098303914070129, -0.009611348621547222, 0.0036192359402775764, 0.0018815234070643783]} +{"t": 3.6539, "q": [-0.15117038786411285, 0.008561316877603531, -0.0027051628567278385, 0.31672441959381104, -0.1746804416179657, -0.010690056718885899, -0.09448980540037155, -0.023665914312005043, 0.022257329896092415, 0.3215649724006653, -0.25283706188201904, 0.02258491702377796, 0.00832975935190916, 0.004205896984785795, 0.026632020249962807, 0.20223380625247955, 0.13741113245487213, -0.08273909240961075, 0.9496899247169495, -0.008952216245234013, -0.0015819177497178316, 0.00264851376414299, 0.17025989294052124, -0.21553629636764526, 0.0713181272149086, 0.9122392535209656, -0.009647301398217678, 0.003595267655327916, 0.0018455706303939223]} +{"t": 3.6706, "q": [-0.15140901505947113, 0.008501661941409111, -0.0030399602837860584, 0.3168351948261261, -0.1746804416179657, -0.010690056718885899, -0.09445571899414062, -0.023751135915517807, 0.02186896651983261, 0.3215138614177704, -0.252853661775589, 0.022556256502866745, 0.009026138111948967, 0.004107793793082237, 0.02677008882164955, 0.20225776731967926, 0.13792644441127777, -0.08273909240961075, 0.9544596672058105, -0.008952216245234013, -0.0014740596525371075, 0.002552639925852418, 0.16647286713123322, -0.21781329810619354, 0.0713420957326889, 0.9159663319587708, -0.009731191210448742, 0.003595267655327916, 0.0018575548892840743]} +{"t": 3.6874, "q": [-0.1515112817287445, 0.008510183542966843, -0.0032676225528120995, 0.31694599986076355, -0.17468900978565216, -0.010690083727240562, -0.0944216325879097, -0.023861922323703766, 0.021560952067375183, 0.3215138614177704, -0.2528453469276428, 0.022570595145225525, 0.009267191402614117, 0.004115184303373098, 0.026945946738123894, 0.20225776731967926, 0.1402394026517868, -0.08263123035430908, 0.9574556946754456, -0.008976184763014317, -0.001306280493736267, 0.0025166873820126057, 0.1621106117963791, -0.2197427600622177, 0.07136606425046921, 0.9203645586967468, -0.009767143987119198, 0.0036432044580578804, 0.0018575548892840743]} +{"t": 3.7042, "q": [-0.15158797800540924, 0.008484616875648499, -0.0032676225528120995, 0.31695452332496643, -0.17468468844890594, -0.010682987049221992, -0.09444719552993774, -0.024023843929171562, 0.021467208862304688, 0.32147976756095886, -0.2528539001941681, 0.02258506417274475, 0.00933415163308382, 0.004175437614321709, 0.0270028505474329, 0.20262928307056427, 0.14283998310565948, -0.08255932480096817, 0.9618539214134216, -0.008952216245234013, -0.0006950850365683436, 0.0024088292848318815, 0.15800002217292786, -0.2214445173740387, 0.07136606425046921, 0.9240676760673523, -0.009827064350247383, 0.003595267655327916, 0.0019054918084293604]} +{"t": 3.7209, "q": [-0.15158797800540924, 0.008450528606772423, -0.003240838646888733, 0.31698861718177795, -0.17468900978565216, -0.010690083727240562, -0.09443867206573486, -0.024219851940870285, 0.02149399183690548, 0.3214968144893646, -0.2528453469276428, 0.022570595145225525, 0.009307367727160454, 0.00428843405097723, 0.02708340249955654, 0.20301277935504913, 0.14564429223537445, -0.0824754387140274, 0.9662761092185974, -0.008952216245234013, -0.0003954794374294579, 0.002265018643811345, 0.15300260484218597, -0.22360166907310486, 0.0713181272149086, 0.9280344247817993, -0.010066749528050423, 0.0036432044580578804, 0.0019174760673195124]} +{"t": 3.7377, "q": [-0.151605024933815, 0.008450528606772423, -0.0032274469267576933, 0.31699714064598083, -0.17468900978565216, -0.010690083727240562, -0.09437902271747589, -0.02443290501832962, 0.02150738425552845, 0.3214968144893646, -0.2528453469276428, 0.022570595145225525, 0.009293975308537483, 0.004386387299746275, 0.02712596021592617, 0.20318055152893066, 0.14854447543621063, -0.08246345072984695, 0.9696915745735168, -0.009036106057465076, -0.00044341632747091353, 0.0020732709672302008, 0.1483766883611679, -0.2257108986377716, 0.07121026515960693, 0.9297002553939819, -0.01019857544451952, 0.003595267655327916, 0.0019054918084293604]} +{"t": 3.7545, "q": [-0.15162205696105957, 0.00843348540365696, -0.0032006630208343267, 0.3170141577720642, -0.17468468844890594, -0.010682987049221992, -0.09438754618167877, -0.02462039142847061, 0.02153416909277439, 0.3214968144893646, -0.25284960865974426, 0.022577829658985138, 0.009240408428013325, 0.004378845915198326, 0.0271307323127985, 0.20300078392028809, 0.1516723483800888, -0.0824754387140274, 0.9749407172203064, -0.00900015328079462, -0.0005273059359751642, 0.0018335864879190922, 0.1432594358921051, -0.2272568643093109, 0.07077883183956146, 0.9316297173500061, -0.010066749528050423, 0.003523362334817648, 0.0018335864879190922]} +{"t": 3.7713, "q": [-0.1516135334968567, 0.008450528606772423, -0.0030801359098404646, 0.3170141577720642, -0.17468468844890594, -0.010682987049221992, -0.09439606219530106, -0.02473970130085945, 0.021587735041975975, 0.3215138614177704, -0.25285401940345764, 0.022599460557103157, 0.008972570300102234, 0.004401446785777807, 0.027144931256771088, 0.20298880338668823, 0.15487214922904968, -0.0824754387140274, 0.9794707298278809, -0.00900015328079462, -0.0003834952076431364, 0.0016058861510828137, 0.13902899622917175, -0.2280118763446808, 0.06967628747224808, 0.9333434700965881, -0.009839048609137535, 0.0035353463608771563, 0.0018935075495392084]} +{"t": 3.7881, "q": [-0.1516135334968567, 0.008459052070975304, -0.003026568330824375, 0.31699714064598083, -0.17468461394309998, -0.010668830946087837, -0.09437049925327301, -0.02484196610748768, 0.021708263084292412, 0.3215053379535675, -0.2528454661369324, 0.02258499152958393, 0.00873151607811451, 0.004386355634778738, 0.02716398797929287, 0.20294086635112762, 0.15810787677764893, -0.0824754387140274, 0.9843123555183411, -0.008976184763014317, -0.00037151097785681486, 0.001306280493736267, 0.1357453167438507, -0.22864703834056854, 0.06858572363853455, 0.9344819188117981, -0.009731191210448742, 0.0035353463608771563, 0.0019054918084293604]} +{"t": 3.8048, "q": [-0.15166467428207397, 0.008416440337896347, -0.002959609031677246, 0.31698861718177795, -0.17468900978565216, -0.010690083727240562, -0.09437902271747589, -0.02496979758143425, 0.021775221452116966, 0.3214968144893646, -0.2528454661369324, 0.02258499152958393, 0.008530637249350548, 0.004356181249022484, 0.027192575857043266, 0.20291690528392792, 0.16102005541324615, -0.08249940723180771, 0.9877039194107056, -0.00900015328079462, -0.0002996056282427162, 0.0010785802733153105, 0.1329529881477356, -0.23009712994098663, 0.0679745227098465, 0.9355006217956543, -0.009635317139327526, 0.003511378075927496, 0.0019414444686844945]} +{"t": 3.8217, "q": [-0.1516561508178711, 0.008459052070975304, -0.002946217078715563, 0.31698861718177795, -0.1746932566165924, -0.010683022439479828, -0.09437049925327301, -0.025123195722699165, 0.021748438477516174, 0.32147976756095886, -0.25285401940345764, 0.022599460557103157, 0.008584205061197281, 0.004363731015473604, 0.02717829868197441, 0.20288094878196716, 0.16378840804100037, -0.08251138776540756, 0.9916586875915527, -0.009012137539684772, -0.00033555831760168076, 0.0008388957940042019, 0.13069996237754822, -0.23261381685733795, 0.0676988884806633, 0.936579167842865, -0.009671269915997982, 0.0034274884965270758, 0.0019414444686844945]} +{"t": 3.8385, "q": [-0.15166467428207397, 0.008450528606772423, -0.002986392704769969, 0.31695452332496643, -0.174684539437294, -0.010654673911631107, -0.09436197578907013, -0.025293638929724693, 0.021641302853822708, 0.3215053379535675, -0.2528541684150696, 0.022613873705267906, 0.008610988967120647, 0.004363731015473604, 0.02717829868197441, 0.20183831453323364, 0.16628111898899078, -0.0824754387140274, 0.9960808753967285, -0.00900015328079462, -0.00027563716867007315, 0.0006831008358858526, 0.12874652445316315, -0.2359693944454193, 0.06749515980482101, 0.9384127855300903, -0.009635317139327526, 0.0033435989171266556, 0.0019534286111593246]} +{"t": 3.8553, "q": [-0.1516476273536682, 0.008450528606772423, -0.002959609031677246, 0.3169204294681549, -0.17468038201332092, -0.010675891302525997, -0.09437049925327301, -0.025353293865919113, 0.02168147824704647, 0.3214627206325531, -0.25285831093788147, 0.022606711834669113, 0.008557421155273914, 0.004378797952085733, 0.0271877720952034, 0.20080767571926117, 0.16859407722949982, -0.0824514701962471, 0.9991008639335632, -0.009012137539684772, -0.00027563716867007315, 0.0005632585962302983, 0.12675714492797852, -0.2394927591085434, 0.06718356907367706, 0.9403542280197144, -0.00959936436265707, 0.0032716935966163874, 0.0019414444686844945]} +{"t": 3.872, "q": [-0.15166467428207397, 0.00843348540365696, -0.0029194331727921963, 0.3168692886829376, -0.17469748854637146, -0.010675962083041668, -0.09441310912370682, -0.02532772719860077, 0.02168147824704647, 0.32140305638313293, -0.25285401940345764, 0.022599460557103157, 0.008302975445985794, 0.004363731015473604, 0.02717829868197441, 0.1997530609369278, 0.17085909843444824, -0.0824514701962471, 1.002408504486084, -0.009072058834135532, -0.00025166873820126057, 0.0004074636672157794, 0.12517523765563965, -0.24326778948307037, 0.06646451354026794, 0.9419361352920532, -0.00947952177375555, 0.0031997880432754755, 0.0019414444686844945]} +{"t": 3.8888, "q": [-0.15166467428207397, 0.008390873670578003, -0.0029194331727921963, 0.31686076521873474, -0.17469318211078644, -0.010668866336345673, -0.09440458565950394, -0.025259550660848618, 0.02169487066566944, 0.3213774859905243, -0.25285831093788147, 0.022606711834669113, 0.00799496192485094, 0.00430339016020298, 0.02722596935927868, 0.1988542526960373, 0.17318403720855713, -0.08249940723180771, 1.0049132108688354, -0.009096027351915836, -0.00022770027862861753, 0.00017976337403524667, 0.12391688674688339, -0.24689900875091553, 0.0652780756354332, 0.944129228591919, -0.009179916232824326, 0.0031997880432754755, 0.0019414444686844945]} +{"t": 3.9056, "q": [-0.1516476273536682, 0.008390873670578003, -0.0029194331727921963, 0.31686076521873474, -0.1746889352798462, -0.010675926692783833, -0.09441310912370682, -0.025182850658893585, 0.02168147824704647, 0.32130080461502075, -0.25285831093788147, 0.022606711834669113, 0.007740515749901533, 0.0042807734571397305, 0.027230773121118546, 0.1983029693365097, 0.17537714540958405, -0.0824514701962471, 1.0063632726669312, -0.009072058834135532, -0.00023968450841493905, 8.388957940042019e-05, 0.12273044884204865, -0.25045832991600037, 0.06412758678197861, 0.947185218334198, -0.009012137539684772, 0.0032357408199459314, 0.0019174760673195124]} +{"t": 3.9224, "q": [-0.1516476273536682, 0.008348263800144196, -0.0029060414526611567, 0.31680113077163696, -0.17468900978565216, -0.010690083727240562, -0.09445571899414062, -0.02514876239001751, 0.021708263084292412, 0.32130932807922363, -0.2528541684150696, 0.022613873705267906, 0.007740515749901533, 0.004356117453426123, 0.027268629521131516, 0.19764384627342224, 0.17733058333396912, -0.08243948221206665, 1.007873296737671, -0.00906007457524538, -0.00027563716867007315, -4.793690095539205e-05, 0.12193949520587921, -0.2550962269306183, 0.06274940073490143, 0.9505767822265625, -0.00882038939744234, 0.0033435989171266556, 0.0019534286111593246]} +{"t": 3.9393, "q": [-0.15163910388946533, 0.008331218734383583, -0.002946217078715563, 0.31680965423583984, -0.17469748854637146, -0.010675962083041668, -0.09448128938674927, -0.02514876239001751, 0.021641302853822708, 0.321283757686615, -0.25285831093788147, 0.022606711834669113, 0.007753907702863216, 0.004589688498526812, 0.02737727016210556, 0.19691281020641327, 0.17879265546798706, -0.0824514701962471, 1.0099705457687378, -0.009072058834135532, -0.000431432097684592, -0.000107858024421148, 0.12135226279497147, -0.2599618136882782, 0.061898522078990936, 0.9527818560600281, -0.008796420879662037, 0.0033555831760168076, 0.002049302449449897]} +{"t": 3.956, "q": [-0.151605024933815, 0.008348263800144196, -0.0029194331727921963, 0.31672441959381104, -0.17469748854637146, -0.010675962083041668, -0.0945153757929802, -0.02508910745382309, 0.021641302853822708, 0.3212326169013977, -0.25285831093788147, 0.022606711834669113, 0.0077672996558249, 0.00474043982103467, 0.0273768100887537, 0.19612184166908264, 0.18013489246368408, -0.0824754387140274, 1.0133382081985474, -0.009108011610805988, -0.0004793690168298781, -0.00015579492901451886, 0.11963851749897003, -0.2653307616710663, 0.06143113970756531, 0.9541240930557251, -0.008748484775424004, 0.0032836776226758957, 0.0020253341645002365]} +{"t": 3.9728, "q": [-0.15157945454120636, 0.008356785401701927, -0.0029194331727921963, 0.3167499899864197, -0.1746932566165924, -0.010683022439479828, -0.09448980540037155, -0.02491866610944271, 0.02165469527244568, 0.3212411403656006, -0.25286245346069336, 0.02259955182671547, 0.007619988638907671, 0.004710265900939703, 0.027405422180891037, 0.1955346167087555, 0.18166887760162354, -0.0824514701962471, 1.0170292854309082, -0.00911999586969614, -0.0005153216770850122, -0.00025166873820126057, 0.11643873155117035, -0.2700525224208832, 0.06143113970756531, 0.9551187753677368, -0.008760469034314156, 0.003079945920035243, 0.0020013656467199326]} +{"t": 3.9896, "q": [-0.15157093107700348, 0.008365308865904808, -0.0029328251257538795, 0.3166988492012024, -0.1746889352798462, -0.010675926692783833, -0.09448980540037155, -0.024577781558036804, 0.021641302853822708, 0.3212326169013977, -0.25286245346069336, 0.02259955182671547, 0.007673555985093117, 0.004544399678707123, 0.027453461661934853, 0.19453993439674377, 0.18309499323368073, -0.08243948221206665, 1.0215593576431274, -0.009155947715044022, -0.0005273059359751642, -0.0003475425182841718, 0.11368235945701599, -0.2733481824398041, 0.06155098229646683, 0.9554303884506226, -0.008796420879662037, 0.0027563718613237143, 0.0019654128700494766]} +{"t": 4.0063, "q": [-0.15159650146961212, 0.008390873670578003, -0.0029997846577316523, 0.3166903257369995, -0.17469318211078644, -0.010668866336345673, -0.09445571899414062, -0.024381771683692932, 0.021560952067375183, 0.32124966382980347, -0.25285401940345764, 0.022599460557103157, 0.0076869479380548, 0.00414477800950408, 0.027611345052719116, 0.19374896585941315, 0.18466491997241974, -0.08248741924762726, 1.0250946283340454, -0.00926380604505539, -0.0003834952076431364, -0.00046738478704355657, 0.11110575497150421, -0.27650004625320435, 0.061598919332027435, 0.9553584456443787, -0.008736500516533852, 0.002037318190559745, 0.002061286708340049]} +{"t": 4.0231, "q": [-0.15157945454120636, 0.008424961939454079, -0.0030399602837860584, 0.3166903257369995, -0.17468900978565216, -0.010690083727240562, -0.09445571899414062, -0.02419428527355194, 0.02150738425552845, 0.32124966382980347, -0.25286245346069336, 0.02259955182671547, 0.007673555985093117, 0.0038131345063447952, 0.027669019997119904, 0.19365309178829193, 0.1858993023633957, -0.08243948221206665, 1.0274676084518433, -0.009287774562835693, -0.0003954794374294579, -0.0005273059359751642, 0.10706707090139389, -0.2794002294540405, 0.06149106100201607, 0.9549030661582947, -0.008700547739863396, 0.0010785802733153105, 0.002265018643811345]} +{"t": 4.0398, "q": [-0.1515624076128006, 0.008424961939454079, -0.0030399602837860584, 0.31671589612960815, -0.17468461394309998, -0.010668830946087837, -0.09444719552993774, -0.02413463033735752, 0.021574344485998154, 0.32125818729400635, -0.25284960865974426, 0.022577829658985138, 0.007553029339760542, 0.0035645123571157455, 0.02754121646285057, 0.1934134066104889, 0.1868700236082077, -0.08246345072984695, 1.029888391494751, -0.009407617151737213, -0.00037151097785681486, -0.0005872270558029413, 0.10043979436159134, -0.28309136629104614, 0.06127534434199333, 0.9537286162376404, -0.008628642186522484, -0.0005992112564854324, 0.0023848607670515776]} +{"t": 4.0566, "q": [-0.15146014094352722, 0.008424961939454079, -0.0030399602837860584, 0.31676703691482544, -0.17468900978565216, -0.010690083727240562, -0.09436197578907013, -0.02412610873579979, 0.02153416909277439, 0.32135191559791565, -0.25284960865974426, 0.022577829658985138, 0.007606596685945988, 0.003120039589703083, 0.027233276516199112, 0.19244268536567688, 0.1874932050704956, -0.08240353316068649, 1.0329084396362305, -0.009455553255975246, -0.0003834952076431364, -0.0006591323763132095, 0.0932612419128418, -0.2878730893135071, 0.06093978509306908, 0.9523983597755432, -0.008616657927632332, -0.0024567660875618458, 0.0024327978026121855]} +{"t": 4.0733, "q": [-0.15144309401512146, 0.008424961939454079, -0.0031203117687255144, 0.3168181777000427, -0.17468038201332092, -0.010675891302525997, -0.09424266964197159, -0.024023843929171562, 0.021453816443681717, 0.3213348984718323, -0.2528453469276428, 0.022570595145225525, 0.007834259420633316, 0.0025399515870958567, 0.026868578046560287, 0.1912921965122223, 0.18788868188858032, -0.08240353316068649, 1.0355808734893799, -0.009455553255975246, -0.00035952674807049334, -0.0007430219557136297, 0.08568721264600754, -0.29409289360046387, 0.06089184805750847, 0.9501453042030334, -0.008652610704302788, -0.004673847928643227, 0.0024447820615023375]} +{"t": 4.09, "q": [-0.15145161747932434, 0.008416440337896347, -0.0032006630208343267, 0.3168863356113434, -0.17468468844890594, -0.010682987049221992, -0.09413187950849533, -0.024049410596489906, 0.02136007323861122, 0.32135191559791565, -0.2528453469276428, 0.022570595145225525, 0.008128880523145199, 0.0018768809968605638, 0.026489220559597015, 0.19024957716464996, 0.18815234303474426, -0.08239154517650604, 1.0373306274414062, -0.009527458809316158, -0.0003834952076431364, -0.0007909588748589158, 0.07812516391277313, -0.30109167098999023, 0.06071208417415619, 0.9482518434524536, -0.008652610704302788, -0.006795055698603392, 0.0025047031231224537]} +{"t": 4.1068, "q": [-0.15144309401512146, 0.008424961939454079, -0.003240838646888733, 0.3169289529323578, -0.17468476295471191, -0.010697153396904469, -0.09406369924545288, -0.024040887132287025, 0.02133329026401043, 0.32139453291893005, -0.2528453469276428, 0.022570595145225525, 0.008075312711298466, 0.001010048552416265, 0.026094937697052956, 0.18909908831119537, 0.18843995034694672, -0.08240353316068649, 1.0406502485275269, -0.009563411585986614, -0.0005512743373401463, -0.000850879994686693, 0.06876548379659653, -0.3086656928062439, 0.059609536081552505, 0.9474368691444397, -0.008640626445412636, -0.009024121798574924, 0.002576608443632722]} +{"t": 4.1235, "q": [-0.151417538523674, 0.008399397134780884, -0.0032006630208343267, 0.3170738220214844, -0.1746804416179657, -0.010690056718885899, -0.09408074617385864, -0.024040887132287025, 0.021400248631834984, 0.3214286267757416, -0.25284120440483093, 0.022577757015824318, 0.0077672996558249, 0.0003467315691523254, 0.025781411677598953, 0.1883440911769867, 0.18885940313339233, -0.08240353316068649, 1.04305899143219, -0.009635317139327526, -0.0003475425182841718, -0.000898816913831979, 0.05944175645709038, -0.317318320274353, 0.0583871454000473, 0.9463223814964294, -0.008628642186522484, -0.011456918902695179, 0.002552639925852418]} +{"t": 4.1402, "q": [-0.15140049159526825, 0.008407918736338615, -0.0032006630208343267, 0.317099392414093, -0.1746804416179657, -0.010690056718885899, -0.09408926963806152, -0.024040887132287025, 0.021453816443681717, 0.32143715023994446, -0.2528369426727295, 0.022570522502064705, 0.0074860695749521255, -0.00033165852073580027, 0.025458386167883873, 0.1882961541414261, 0.1892908364534378, -0.08240353316068649, 1.043861985206604, -0.00971920695155859, -0.0003475425182841718, -0.0009587380336597562, 0.050765179097652435, -0.32645028829574585, 0.05723666027188301, 0.9450041055679321, -0.008628642186522484, -0.014261228032410145, 0.002552639925852418]} +{"t": 4.1569, "q": [-0.15139196813106537, 0.008399397134780884, -0.0032006630208343267, 0.317099392414093, -0.17468476295471191, -0.010697153396904469, -0.09408074617385864, -0.024049410596489906, 0.021400248631834984, 0.3214115798473358, -0.2528410851955414, 0.022563360631465912, 0.00735215051099658, -0.000995277427136898, 0.025020265951752663, 0.18790066242218018, 0.1898421049118042, -0.08240353316068649, 1.0446889400482178, -0.009791111573576927, -0.00033555831760168076, -0.0009946906939148903, 0.0415373258292675, -0.336900532245636, 0.05517537146806717, 0.9431345462799072, -0.008580705150961876, -0.017772605642676353, 0.0024208135437220335]} +{"t": 4.1737, "q": [-0.151289701461792, 0.008390873670578003, -0.0032006630208343267, 0.3171505331993103, -0.17468900978565216, -0.010690083727240562, -0.09400404989719391, -0.024040887132287025, 0.021413641050457954, 0.3214286267757416, -0.2528410851955414, 0.022563360631465912, 0.007298583164811134, -0.001847470528446138, 0.02450091764330864, 0.18764899671077728, 0.19038140773773193, -0.08237956464290619, 1.0448685884475708, -0.009875001385807991, -0.00037151097785681486, -0.0010546118719503284, 0.03301654011011124, -0.3471830189228058, 0.05245495215058327, 0.9414567947387695, -0.008580705150961876, -0.02298574335873127, 0.002253034384921193]} +{"t": 4.1904, "q": [-0.151289701461792, 0.00843348540365696, -0.003173879347741604, 0.31712496280670166, -0.1746889352798462, -0.010675926692783833, -0.09398700296878815, -0.023972710594534874, 0.021427033469080925, 0.3214286267757416, -0.2528369426727295, 0.022570522502064705, 0.0070307450369000435, -0.003137218067422509, 0.02383728139102459, 0.1874212920665741, 0.19095665216445923, -0.08241551369428635, 1.0449405908584595, -0.009875001385807991, -0.0003475425182841718, -0.0010785802733153105, 0.02323741279542446, -0.35784897208213806, 0.04890762269496918, 0.9391917586326599, -0.008592689409852028, -0.028570393100380898, 0.002061286708340049]} +{"t": 4.2071, "q": [-0.15126413106918335, 0.008450528606772423, -0.0031604873947799206, 0.31712496280670166, -0.17468900978565216, -0.010690083727240562, -0.09399552643299103, -0.023913055658340454, 0.021467208862304688, 0.3214115798473358, -0.25284120440483093, 0.022577757015824318, 0.006870042532682419, -0.004766874015331268, 0.02298579551279545, 0.1868939995765686, 0.19137609004974365, -0.08241551369428635, 1.0451443195343018, -0.009946906939148903, -0.00033555831760168076, -0.0011265171924605966, 0.014908376149833202, -0.3672565817832947, 0.044928859919309616, 0.9357642531394958, -0.008592689409852028, -0.03304050862789154, 0.001294296351261437]} +{"t": 4.2239, "q": [-0.15122152864933014, 0.008484616875648499, -0.003173879347741604, 0.3171590566635132, -0.17468900978565216, -0.010690083727240562, -0.09395291656255722, -0.02388748899102211, 0.021440425887703896, 0.32144567370414734, -0.2528369426727295, 0.022570522502064705, 0.006655772216618061, -0.00629132054746151, 0.022275427356362343, 0.1858993023633957, 0.19179554283618927, -0.0824514701962471, 1.0452041625976562, -0.010030796751379967, -0.0003115898580290377, -0.0011744541116058826, 0.006998787634074688, -0.3761608600616455, 0.03984754905104637, 0.9311023950576782, -0.00860467366874218, -0.03630021959543228, 0.0011265171924605966]} +{"t": 4.2406, "q": [-0.15121300518512726, 0.008459052070975304, -0.0031470954418182373, 0.3171846270561218, -0.17468468844890594, -0.010682987049221992, -0.09390178322792053, -0.02389601245522499, 0.021427033469080925, 0.3214541971683502, -0.2528410851955414, 0.022563360631465912, 0.006642380263656378, -0.007800883147865534, 0.021563701331615448, 0.18466491997241974, 0.1920352280139923, -0.08246345072984695, 1.0452162027359009, -0.010066749528050423, -0.00033555831760168076, -0.0012104067718610168, -0.0002037318336078897, -0.3843221068382263, 0.036384109407663345, 0.9265244007110596, -0.008508799597620964, -0.03894873335957527, 0.0010546118719503284]} +{"t": 4.2574, "q": [-0.1511533409357071, 0.008476095274090767, -0.0031470954418182373, 0.3171590566635132, -0.17467620968818665, -0.010697117075324059, -0.09381656348705292, -0.023921577259898186, 0.02149399183690548, 0.3214541971683502, -0.2528369426727295, 0.022570522502064705, 0.006575420964509249, -0.009227841161191463, 0.020960243418812752, 0.1832268238067627, 0.1922389566898346, -0.08249940723180771, 1.0454798936843872, -0.010042781010270119, -0.0003115898580290377, -0.001282312092371285, -0.007586014457046986, -0.3909374177455902, 0.031674306839704514, 0.9244391918182373, -0.008424910716712475, -0.043346941471099854, 0.0010905645322054625]} +{"t": 4.2741, "q": [-0.15112778544425964, 0.008476095274090767, -0.0031203117687255144, 0.3172101676464081, -0.17468476295471191, -0.010697153396904469, -0.09379951655864716, -0.023921577259898186, 0.02150738425552845, 0.3214968144893646, -0.2528410851955414, 0.022563360631465912, 0.00638793408870697, -0.010594246909022331, 0.020508820191025734, 0.1814052164554596, 0.19250260293483734, -0.08248741924762726, 1.045863389968872, -0.010030796751379967, -0.0002996056282427162, -0.001282312092371285, -0.01619068905711174, -0.3975766599178314, 0.02780340239405632, 0.9233246445655823, -0.008245146833360195, -0.04839230328798294, 0.000898816913831979]} +{"t": 4.2908, "q": [-0.1511448174715042, 0.008459052070975304, -0.003106919815763831, 0.3172442615032196, -0.17468476295471191, -0.010697153396904469, -0.09380804002285004, -0.023921577259898186, 0.02153416909277439, 0.321471244096756, -0.2528369426727295, 0.022570522502064705, 0.006347758695483208, -0.01184014417231083, 0.020142465829849243, 0.17902036011219025, 0.19277824461460114, -0.0824754387140274, 1.0470257997512817, -0.010030796751379967, -0.00032357408781535923, -0.001330249011516571, -0.022722091525793076, -0.4035448133945465, 0.024867268279194832, 0.9215869307518005, -0.007993478327989578, -0.054012902081012726, 0.0008868326549418271]} +{"t": 4.3075, "q": [-0.15111073851585388, 0.00843348540365696, -0.003093527862802148, 0.3173976540565491, -0.17468468844890594, -0.010682987049221992, -0.09365464001893997, -0.023930100724101067, 0.02153416909277439, 0.32158201932907104, -0.2528283894062042, 0.02255605347454548, 0.006495069246739149, -0.012934766709804535, 0.019900772720575333, 0.17634788155555725, 0.19301792979240417, -0.08253535628318787, 1.0488593578338623, -0.010030796751379967, -0.00033555831760168076, -0.0013662016717717052, -0.027599669992923737, -0.40844637155532837, 0.021871211007237434, 0.9188305735588074, -0.0076459357514977455, -0.05892643705010414, 0.0008269115351140499]} +{"t": 4.3243, "q": [-0.15111073851585388, 0.008442007005214691, -0.0031203117687255144, 0.3175510764122009, -0.1746804416179657, -0.010690056718885899, -0.09352681040763855, -0.02394714392721653, 0.02150738425552845, 0.3215649724006653, -0.25282424688339233, 0.022563213482499123, 0.006481677293777466, -0.013825495727360249, 0.019721735268831253, 0.17347165942192078, 0.19325761497020721, -0.08251138776540756, 1.0514839887619019, -0.01005476526916027, -0.0003475425182841718, -0.0013662016717717052, -0.03254915401339531, -0.4138033092021942, 0.020792631432414055, 0.9168171882629395, -0.007286408916115761, -0.06545783579349518, 0.000862864195369184]} +{"t": 4.3411, "q": [-0.151102215051651, 0.008424961939454079, -0.0030801359098404646, 0.3176107108592987, -0.1746889352798462, -0.010675926692783833, -0.09352681040763855, -0.023964188992977142, 0.021574344485998154, 0.32157349586486816, -0.25281983613967896, 0.02254156582057476, 0.006374542135745287, -0.014504936523735523, 0.019610745832324028, 0.1709909290075302, 0.19340142607688904, -0.08251138776540756, 1.0545278787612915, -0.010066749528050423, -0.0003115898580290377, -0.0014141385909169912, -0.036551885306835175, -0.41816556453704834, 0.02009754627943039, 0.914683997631073, -0.006555370986461639, -0.07210908085107803, 0.000898816913831979]} +{"t": 4.358, "q": [-0.15108516812324524, 0.008424961939454079, -0.0030533522367477417, 0.3177556097507477, -0.1746932566165924, -0.010683022439479828, -0.09350124001502991, -0.02400679886341095, 0.021641302853822708, 0.32162463665008545, -0.25280287861824036, 0.022527024149894714, 0.0060933125205338, -0.01499550137668848, 0.019582560285925865, 0.16924123466014862, 0.19356921315193176, -0.08251138776540756, 1.0570446252822876, -0.010090718045830727, -0.00035952674807049334, -0.0014381069922819734, -0.04044676199555397, -0.42153313755989075, 0.019726034253835678, 0.9123590588569641, -0.005476790945976973, -0.07729825377464294, 0.0009587380336597562]} +{"t": 4.3747, "q": [-0.15107664465904236, 0.008416440337896347, -0.002959609031677246, 0.31778115034103394, -0.17468900978565216, -0.010690083727240562, -0.0935523733496666, -0.023972710594534874, 0.021761830896139145, 0.32163316011428833, -0.25279006361961365, 0.022505320608615875, 0.005865650251507759, -0.015357975848019123, 0.019483907148241997, 0.16774320602416992, 0.19382087886333466, -0.08248741924762726, 1.0604960918426514, -0.010126669891178608, -0.0003475425182841718, -0.0014620755100622773, -0.044257745146751404, -0.4241456985473633, 0.0189590435475111, 0.9090514183044434, -0.00441019469872117, -0.08119312673807144, 0.0010426276130601764]} +{"t": 4.3915, "q": [-0.15102551877498627, 0.008424961939454079, -0.002839081920683384, 0.3177896738052368, -0.1746804416179657, -0.010690056718885899, -0.09354384988546371, -0.023981232196092606, 0.021882357075810432, 0.3216416835784912, -0.2527729570865631, 0.02247636392712593, 0.005222839303314686, -0.015478920191526413, 0.019406402483582497, 0.16673652827739716, 0.19437214732170105, -0.0824754387140274, 1.0634561777114868, -0.010294449515640736, -0.000107858024421148, -0.0014980281703174114, -0.04797285422682762, -0.4264346957206726, 0.018323879688978195, 0.9058036804199219, -0.0035473306197673082, -0.08689761906862259, 0.0011025486746802926]} +{"t": 4.4084, "q": [-0.1508295089006424, 0.008467573672533035, -0.0025578520726412535, 0.3177896738052368, -0.17468468844890594, -0.010682987049221992, -0.0935949832201004, -0.023972710594534874, 0.022217154502868652, 0.32170987129211426, -0.2527688145637512, 0.022483525797724724, 0.0038434739690274, -0.01546380203217268, 0.019416093826293945, 0.1663530319929123, 0.19511516392230988, -0.0824275016784668, 1.0648343563079834, -0.01065397635102272, -9.58738019107841e-05, -0.0015339808305725455, -0.051364388316869736, -0.4284360408782959, 0.018204038962721825, 0.9030353426933289, -0.0014860439114272594, -0.09344100207090378, 0.0011984225129708648]} +{"t": 4.4251, "q": [-0.15066757798194885, 0.00849314033985138, -0.0022632302716374397, 0.3177470862865448, -0.17468900978565216, -0.010690083727240562, -0.09361203014850616, -0.023972710594534874, 0.02252516895532608, 0.32176098227500916, -0.25274744629859924, 0.02244735322892666, 0.002959609031677246, -0.015342909842729568, 0.019474493339657784, 0.1655740588903427, 0.1959061324596405, -0.08237956464290619, 1.0659129619598389, -0.010809770785272121, -5.992112710373476e-05, -0.0015579492319375277, -0.05340170860290527, -0.43068909645080566, 0.01818007044494152, 0.9002909660339355, 0.0009108011145144701, -0.10024804621934891, 0.001330249011516571]} +{"t": 4.4418, "q": [-0.1505482792854309, 0.008484616875648499, -0.002169487066566944, 0.31768742203712463, -0.17468900978565216, -0.010690083727240562, -0.0935949832201004, -0.023938622325658798, 0.02267247997224331, 0.3217865526676178, -0.25274744629859924, 0.02244735322892666, 0.002839081920683384, -0.01508600078523159, 0.019600853323936462, 0.16448348760604858, 0.19668510556221008, -0.08213987946510315, 1.0667638778686523, -0.010881676338613033, -5.992112710373476e-05, -0.0015339808305725455, -0.05403687059879303, -0.4327264130115509, 0.018144117668271065, 0.8965758681297302, 0.003020024858415127, -0.10676746070384979, 0.0014381069922819734]} +{"t": 4.4586, "q": [-0.15047158300876617, 0.008510183542966843, -0.0021159194875508547, 0.31764480471611023, -0.1746932566165924, -0.010683022439479828, -0.0935949832201004, -0.02388748899102211, 0.022739438340067863, 0.3217780292034149, -0.252738893032074, 0.02243286557495594, 0.0027855143416672945, -0.014746204949915409, 0.019684987142682076, 0.16339293122291565, 0.19734424352645874, -0.08203202486038208, 1.0672551393508911, -0.010989534668624401, -4.793690095539205e-05, -0.0015699334908276796, -0.05433647707104683, -0.4340566396713257, 0.017892448231577873, 0.8934959173202515, 0.005464806687086821, -0.11416172981262207, 0.0014500912511721253]} +{"t": 4.4753, "q": [-0.15037783980369568, 0.008544271811842918, -0.0021159194875508547, 0.3176107108592987, -0.17468900978565216, -0.010690083727240562, -0.0935949832201004, -0.023861922323703766, 0.022739438340067863, 0.32181212306022644, -0.2527390122413635, 0.022447261959314346, 0.0026783791836351156, -0.014323359355330467, 0.019784169271588326, 0.1621585488319397, 0.197907492518425, -0.08197209984064102, 1.0677465200424194, -0.011049455963075161, -2.3968450477696024e-05, -0.0015699334908276796, -0.05445631965994835, -0.43493151664733887, 0.01756887510418892, 0.88950514793396, 0.010366355068981647, -0.1215679794549942, 0.0014980281703174114]} +{"t": 4.4922, "q": [-0.15030112862586975, 0.008646538481116295, -0.0020355682354420424, 0.31753402948379517, -0.17468468844890594, -0.010682987049221992, -0.09361203014850616, -0.023742614313960075, 0.022793006151914597, 0.32181212306022644, -0.2527472972869873, 0.02243294008076191, 0.0024507169146090746, -0.013787191361188889, 0.01993682235479355, 0.16080433130264282, 0.19826702773571014, -0.08196011930704117, 1.0685614347457886, -0.011109377257525921, -1.1984225238848012e-05, -0.0015819177497178316, -0.05470798909664154, -0.43508729338645935, 0.016921725124120712, 0.8859578371047974, 0.015255918726325035, -0.1281832754611969, 0.0015339808305725455]} +{"t": 4.5089, "q": [-0.15021590888500214, 0.008706193417310715, -0.0019284329609945416, 0.3175169825553894, -0.1746804416179657, -0.010690056718885899, -0.09364611655473709, -0.023614780977368355, 0.022940317168831825, 0.32181212306022644, -0.2527303397655487, 0.022418398410081863, 0.0023301898036152124, -0.013100340031087399, 0.02007121592760086, 0.15898273885250092, 0.19841083884239197, -0.0818282887339592, 1.0703949928283691, -0.011361045762896538, -1.1984225238848012e-05, -0.0016178704099729657, -0.05475592613220215, -0.43488356471061707, 0.01569933444261551, 0.88241046667099, 0.02263820171356201, -0.1383458971977234, 0.0015459650894626975]} +{"t": 4.5256, "q": [-0.15002842247486115, 0.008834024891257286, -0.0017275545978918672, 0.31741470098495483, -0.1746804416179657, -0.010690056718885899, -0.09363759309053421, -0.023503994569182396, 0.02320815436542034, 0.3218206465244293, -0.252717524766922, 0.022396694868803024, 0.0017409464344382286, -0.01217980682849884, 0.020106688141822815, 0.15752065181732178, 0.19847075641155243, -0.08170844614505768, 1.0719410181045532, -0.011540808714926243, 4.793690095539205e-05, -0.0016058861510828137, -0.0547679103910923, -0.43460792303085327, 0.01336241140961647, 0.8784077763557434, 0.026940537616610527, -0.1490238457918167, 0.0015339808305725455]} +{"t": 4.5423, "q": [-0.14969606697559357, 0.008936289697885513, -0.0013659733813256025, 0.3172954022884369, -0.17468900978565216, -0.010690083727240562, -0.09363759309053421, -0.023367639631032944, 0.023556344211101532, 0.3218632638454437, -0.2527047097682953, 0.022374972701072693, 0.0012454462703317404, -0.011425256729125977, 0.020054666325449944, 0.15654993057250977, 0.19843479990959167, -0.08173241466283798, 1.0728996992111206, -0.01164866704493761, 0.00014381069922819734, -0.0016178704099729657, -0.0547679103910923, -0.4344521462917328, 0.009467537514865398, 0.8736380338668823, 0.03323225677013397, -0.160061314702034, 0.0015579492319375277]} +{"t": 4.559, "q": [-0.14928700029850006, 0.009055599570274353, -0.0008302975329570472, 0.31717610359191895, -0.17468476295471191, -0.010697153396904469, -0.09357794374227524, -0.02329094149172306, 0.023998277261853218, 0.3219655156135559, -0.2526790499687195, 0.022331565618515015, 0.0006963785854168236, -0.010595441795885563, 0.01989785023033619, 0.15544737875461578, 0.1983269453048706, -0.08170844614505768, 1.0738105773925781, -0.01164866704493761, 0.00014381069922819734, -0.0016178704099729657, -0.05470798909664154, -0.4343682527542114, 0.004853611346334219, 0.8675380945205688, 0.03942809998989105, -0.17053551971912384, 0.0015699334908276796]} +{"t": 4.5758, "q": [-0.148860901594162, 0.009234564378857613, -0.00022766222537029535, 0.3170738220214844, -0.17468900978565216, -0.010690083727240562, -0.09350124001502991, -0.02316311001777649, 0.024400033056735992, 0.3220166563987732, -0.2525978684425354, 0.02219405770301819, 0.00033479739795438945, -0.009916776791214943, 0.01962520182132721, 0.15393736958503723, 0.19811122119426727, -0.08172043412923813, 1.0752485990524292, -0.01170858833938837, 0.00016777915880084038, -0.0016178704099729657, -0.05466005206108093, -0.43324172496795654, -0.002061286708340049, 0.8609347343444824, 0.04417385533452034, -0.18278340995311737, 0.0015939020086079836]} +{"t": 4.5926, "q": [-0.14851148426532745, 0.009353874251246452, 0.00030801360844634473, 0.3170226812362671, -0.17468476295471191, -0.010697153396904469, -0.09347567707300186, -0.023077888414263725, 0.024788398295640945, 0.32217857241630554, -0.2525252103805542, 0.02207103744149208, 0.0001473108568461612, -0.009230554103851318, 0.01935737393796444, 0.15235546231269836, 0.19787153601646423, -0.08172043412923813, 1.076890468597412, -0.01179247722029686, 0.00014381069922819734, -0.0016058861510828137, -0.054743941873311996, -0.4321511685848236, -0.0063276709988713264, 0.8545711040496826, 0.04966263100504875, -0.1922389566898346, 0.0015939020086079836]} +{"t": 4.6093, "q": [-0.14828991889953613, 0.009439093992114067, 0.0006963785854168236, 0.31703120470046997, -0.17468900978565216, -0.010690083727240562, -0.09333932399749756, -0.023026755079627037, 0.02504284493625164, 0.3222467601299286, -0.25244399905204773, 0.021933546289801598, 0.0001473108568461612, -0.00858194287866354, 0.019007420167326927, 0.15027019381523132, 0.19747605919837952, -0.08175638318061829, 1.0793472528457642, -0.01191231980919838, 0.00014381069922819734, -0.0016538230702280998, -0.054743941873311996, -0.4310366213321686, -0.011217234656214714, 0.8481236100196838, 0.056721337139606476, -0.20338428020477295, 0.0016538230702280998]} +{"t": 4.626, "q": [-0.14801721274852753, 0.00945613905787468, 0.0009240407962352037, 0.3170567750930786, -0.1746804416179657, -0.010690056718885899, -0.09320297092199326, -0.023001190274953842, 0.0251767635345459, 0.3223831057548523, -0.2524014115333557, 0.02187557891011238, 0.00010713516530813649, -0.008001222275197506, 0.0186615027487278, 0.14868828654289246, 0.19714049994945526, -0.08173241466283798, 1.0810489654541016, -0.012020178139209747, 0.00014381069922819734, -0.0016538230702280998, -0.054743941873311996, -0.4303295612335205, -0.014333133585751057, 0.8403578400611877, 0.06302504241466522, -0.21376262605190277, 0.0016178704099729657]} +{"t": 4.6427, "q": [-0.1476166695356369, 0.009498748928308487, 0.0014061490073800087, 0.31703972816467285, -0.17468468844890594, -0.010682987049221992, -0.09304957091808319, -0.02298414520919323, 0.02552495338022709, 0.32250240445137024, -0.2523542642593384, 0.021781569346785545, 1.3391895663517062e-05, -0.007352408021688461, 0.018416238948702812, 0.14748986065387726, 0.19684089720249176, -0.08170844614505768, 1.0828107595443726, -0.01224787812680006, 0.00014381069922819734, -0.0016658073291182518, -0.05507949739694595, -0.4298262298107147, -0.017173394560813904, 0.8342698812484741, 0.0670757070183754, -0.22580677270889282, 0.0018455706303939223]} +{"t": 4.6595, "q": [-0.1471138596534729, 0.009618058800697327, 0.001982000656425953, 0.3170652985572815, -0.17468476295471191, -0.010697153396904469, -0.09280242770910263, -0.02292449027299881, 0.025980276986956596, 0.3226558268070221, -0.252311646938324, 0.02172360196709633, 4.017568790004589e-05, -0.0065977866761386395, 0.018276503309607506, 0.14642326533794403, 0.19666112959384918, -0.08172043412923813, 1.0843087434768677, -0.012715263292193413, 0.00014381069922819734, -0.0016777915880084038, -0.05589442700147629, -0.4295865297317505, -0.019462382420897484, 0.8274868130683899, 0.0734393298625946, -0.23620907962322235, 0.0018216022290289402]} +{"t": 4.6762, "q": [-0.14654287695884705, 0.009694758802652359, 0.0023435817565768957, 0.31703972816467285, -0.17468476295471191, -0.010697153396904469, -0.09238484501838684, -0.02285631373524666, 0.026328466832637787, 0.32272398471832275, -0.2522774636745453, 0.02166570909321308, 4.017568790004589e-05, -0.0059335860423743725, 0.01818304881453514, 0.1457042098045349, 0.19661319255828857, -0.08175638318061829, 1.0850636959075928, -0.013518205843865871, 0.00015579492901451886, -0.001701759989373386, -0.05625395476818085, -0.4293828010559082, -0.021020330488681793, 0.8202243447303772, 0.0809055045247078, -0.24711471796035767, 0.001797633827663958]} +{"t": 4.6929, "q": [-0.14594633877277374, 0.009754413738846779, 0.0026649872306734324, 0.31704825162887573, -0.17468468844890594, -0.010682987049221992, -0.09200987219810486, -0.02279665879905224, 0.026582913473248482, 0.32281774282455444, -0.2522349953651428, 0.02162213809788227, -0.00010713516530813649, -0.0051938919350504875, 0.018041959032416344, 0.14539262652397156, 0.19664914906024933, -0.08173241466283798, 1.0855191946029663, -0.014536865055561066, 0.00016777915880084038, -0.001689775730483234, -0.05650562047958374, -0.4288075566291809, -0.02250637486577034, 0.8113440275192261, 0.08708936721086502, -0.26017752289772034, 0.0018335864879190922]} +{"t": 4.7097, "q": [-0.1451367288827896, 0.00987372174859047, 0.0029997846577316523, 0.3170056641101837, -0.1746889352798462, -0.010675926692783833, -0.09149002283811569, -0.022702915593981743, 0.026957886293530464, 0.32286885380744934, -0.25215402245521545, 0.021513454616069794, -0.00030801360844634473, -0.00462021678686142, 0.017976807430386543, 0.1449611932039261, 0.19667312502861023, -0.08173241466283798, 1.0862621068954468, -0.016094814985990524, 0.00015579492901451886, -0.001701759989373386, -0.05685316398739815, -0.42757317423820496, -0.024771394208073616, 0.8020322918891907, 0.09406418353319168, -0.27385154366493225, 0.0018335864879190922]} +{"t": 4.7264, "q": [-0.14396920800209045, 0.010018598288297653, 0.0035220684949308634, 0.31689485907554626, -0.17468468844890594, -0.010682987049221992, -0.09065485745668411, -0.022592127323150635, 0.02735964208841324, 0.3228859007358551, -0.25209859013557434, 0.021433766931295395, -0.0006695947959087789, -0.0041597201488912106, 0.017982786521315575, 0.14463761448860168, 0.19667312502861023, -0.08175638318061829, 1.0870651006698608, -0.01708950474858284, 0.00016777915880084038, -0.001701759989373386, -0.05754825100302696, -0.42554786801338196, -0.028810078278183937, 0.7911985516548157, 0.10318417847156525, -0.287393718957901, 0.0018695391481742263]} +{"t": 4.7431, "q": [-0.14263975620269775, 0.010095298290252686, 0.003977392800152302, 0.31671589612960815, -0.17467613518238068, -0.010682960972189903, -0.08973446488380432, -0.02250690758228302, 0.027841750532388687, 0.32294556498527527, -0.25206440687179565, 0.021375874057412148, -0.0008302975329570472, -0.0039861914701759815, 0.01785418577492237, 0.14391855895519257, 0.19658923149108887, -0.08175638318061829, 1.0882515907287598, -0.017496969550848007, 0.00016777915880084038, -0.001701759989373386, -0.05844706669449806, -0.4232349097728729, -0.03428686782717705, 0.7810719013214111, 0.10932010412216187, -0.30086398124694824, 0.0021092237439006567]} +{"t": 4.7599, "q": [-0.14136995375156403, 0.010146429762244225, 0.0041247038170695305, 0.316656231880188, -0.17467620968818665, -0.010697117075324059, -0.0884561538696289, -0.022430207580327988, 0.027989061549305916, 0.32296261191368103, -0.2520473301410675, 0.021346936002373695, -0.0007499461644329131, -0.003933410160243511, 0.017773088067770004, 0.14269617199897766, 0.1965293139219284, -0.08172043412923813, 1.0894500017166138, -0.017796574160456657, 0.00016777915880084038, -0.0017137442482635379, -0.059130165725946426, -0.4206223487854004, -0.04027898237109184, 0.7691236138343811, 0.11593539267778397, -0.3140825629234314, 0.002217081608250737]} +{"t": 4.7766, "q": [-0.14038991928100586, 0.010223129764199257, 0.0041247038170695305, 0.3166988492012024, -0.17468038201332092, -0.010675891302525997, -0.08730566501617432, -0.022344985976815224, 0.027975669130682945, 0.3229370415210724, -0.25203463435173035, 0.021339626982808113, -0.0007633380591869354, -0.0038128674495965242, 0.017458051443099976, 0.14150972664356232, 0.19649335741996765, -0.08175638318061829, 1.0905284881591797, -0.01780855841934681, 0.0001917476038215682, -0.001725728390738368, -0.06042446196079254, -0.41788992285728455, -0.04488092288374901, 0.7560487985610962, 0.12344950437545776, -0.32659411430358887, 0.002229065867140889]} +{"t": 4.7934, "q": [-0.1390434205532074, 0.010282784700393677, 0.004111311864107847, 0.31686076521873474, -0.17468476295471191, -0.010697153396904469, -0.08590804040431976, -0.02225976623594761, 0.028002453967928886, 0.3228262662887573, -0.2519746720790863, 0.02122391387820244, -0.0007901218486949801, -0.0035563588608056307, 0.017170967534184456, 0.1396401971578598, 0.19628962874412537, -0.08178035169839859, 1.0921823978424072, -0.017916416749358177, 0.000215716048842296, -0.001749696908518672, -0.06265352666378021, -0.4147860109806061, -0.05011802911758423, 0.7411404252052307, 0.13211409747600555, -0.34252113103866577, 0.0024567660875618458]} +{"t": 4.8101, "q": [-0.13842131197452545, 0.01029982790350914, 0.004071136470884085, 0.31708234548568726, -0.1746804416179657, -0.010690056718885899, -0.08523479104042053, -0.022251242771744728, 0.027948886156082153, 0.3227580785751343, -0.2519490122795105, 0.021180490031838417, -0.0007231623749248683, -0.003110995516180992, 0.016790146008133888, 0.13793843984603882, 0.1959540694952011, -0.08178035169839859, 1.0932849645614624, -0.01798832230269909, 0.0003475425182841718, -0.001761681167408824, -0.06538593024015427, -0.4124610722064972, -0.05499561131000519, 0.7255250215530396, 0.14239656925201416, -0.3570699989795685, 0.0028881982434540987]} +{"t": 4.8268, "q": [-0.1383019983768463, 0.010274261236190796, 0.004030960611999035, 0.31731244921684265, -0.17468468844890594, -0.010682987049221992, -0.08507286757230759, -0.022293854504823685, 0.027948886156082153, 0.3227410316467285, -0.2518640458583832, 0.021093346178531647, -0.0006160272168926895, -0.0029347119852900505, 0.016051646322011948, 0.13640445470809937, 0.19564247131347656, -0.08179233968257904, 1.09421968460083, -0.018084196373820305, 0.00035952674807049334, -0.001749696908518672, -0.06930477172136307, -0.4112387001514435, -0.058890484273433685, 0.7105327248573303, 0.15166036784648895, -0.37133121490478516, 0.0028881982434540987]} +{"t": 4.8436, "q": [-0.13755205273628235, 0.010257218033075333, 0.004044352564960718, 0.31764480471611023, -0.1746976375579834, -0.010704276151955128, -0.08421213924884796, -0.022302376106381416, 0.027948886156082153, 0.3228006958961487, -0.25177091360092163, 0.021034937351942062, -0.00044193255598656833, -0.0037512509152293205, 0.015036297030746937, 0.13428324460983276, 0.19540278613567352, -0.0818043202161789, 1.0952743291854858, -0.018132133409380913, 0.00035952674807049334, -0.0018096179701387882, -0.07402656227350235, -0.41162219643592834, -0.06095176935195923, 0.6974339485168457, 0.16018114984035492, -0.38433411717414856, 0.0032956618815660477]} +{"t": 4.8603, "q": [-0.13695549964904785, 0.010257218033075333, 0.003937217406928539, 0.3179686367511749, -0.1746804416179657, -0.010690056718885899, -0.08328322321176529, -0.022302376106381416, 0.027855142951011658, 0.3227921724319458, -0.25173258781433105, 0.02098420448601246, -0.00026783792418427765, -0.004903010092675686, 0.01388602051883936, 0.1315268725156784, 0.19536684453487396, -0.08181630820035934, 1.0968202352523804, -0.01812014915049076, 0.00037151097785681486, -0.001785649568773806, -0.07957525551319122, -0.4120296537876129, -0.06425941735506058, 0.6831967234611511, 0.16873788833618164, -0.3966299295425415, 0.003499393817037344]} +{"t": 4.8771, "q": [-0.13663166761398315, 0.010265739634633064, 0.003803298342972994, 0.31836065649986267, -0.17469339072704315, -0.010711345821619034, -0.08269520103931427, -0.022293854504823685, 0.027774792164564133, 0.32280921936035156, -0.2515625059604645, 0.020795539021492004, -0.00026783792418427765, -0.006011864636093378, 0.012698677368462086, 0.12916597723960876, 0.19546271860599518, -0.0818043202161789, 1.0983902215957642, -0.018132133409380913, 0.00033555831760168076, -0.001785649568773806, -0.08682571351528168, -0.41204163432121277, -0.06930477172136307, 0.669163167476654, 0.17752233147621155, -0.40867406129837036, 0.003511378075927496]} +{"t": 4.8938, "q": [-0.13641861081123352, 0.010325394570827484, 0.0037899063900113106, 0.31901687383651733, -0.17469339072704315, -0.010711345821619034, -0.08227761834859848, -0.022234199568629265, 0.027788182720541954, 0.3228347897529602, -0.2512367069721222, 0.02061270736157894, -0.00037497308221645653, -0.006883922498673201, 0.011591145768761635, 0.12704476714134216, 0.19561851024627686, -0.08179233968257904, 1.0998642444610596, -0.01812014915049076, 0.0003115898580290377, -0.001785649568773806, -0.09459149092435837, -0.41192179918289185, -0.0757882371544838, 0.6551416516304016, 0.18570755422115326, -0.420993834733963, 0.0036192359402775764]} +{"t": 4.9105, "q": [-0.13617147505283356, 0.01041913777589798, 0.003816690295934677, 0.3196389973163605, -0.17468468844890594, -0.010682987049221992, -0.08172368258237839, -0.0221489779651165, 0.027841750532388687, 0.32280921936035156, -0.25076058506965637, 0.02057255432009697, -0.00037497308221645653, -0.007492737844586372, 0.010477409698069096, 0.1248636394739151, 0.19571438431739807, -0.08175638318061829, 1.1011345386505127, -0.018156101927161217, 0.00032357408781535923, -0.001785649568773806, -0.10248909145593643, -0.4116101861000061, -0.08406934142112732, 0.6399216651916504, 0.19519905745983124, -0.43126434087753296, 0.0037510625552386045]} +{"t": 4.9273, "q": [-0.13585615158081055, 0.010427659377455711, 0.003816690295934677, 0.32015031576156616, -0.17468900978565216, -0.010690083727240562, -0.08116121590137482, -0.0221489779651165, 0.02792210318148136, 0.32277512550354004, -0.25044509768486023, 0.020605778321623802, -0.00037497308221645653, -0.007892396301031113, 0.009520097635686398, 0.1227664053440094, 0.19573834538459778, -0.08176837116479874, 1.10206937789917, -0.018156101927161217, 0.00037151097785681486, -0.001785649568773806, -0.1097874864935875, -0.41234123706817627, -0.0911879688501358, 0.6259720325469971, 0.20388762652873993, -0.441690593957901, 0.004002731293439865]} +{"t": 4.944, "q": [-0.1358305811882019, 0.010393571108579636, 0.0037497307639569044, 0.32074686884880066, -0.17468900978565216, -0.010690083727240562, -0.08087147027254105, -0.0221489779651165, 0.02789531834423542, 0.32280921936035156, -0.25021305680274963, 0.0205533504486084, -0.0001473108568461612, -0.008523741737008095, 0.008600117638707161, 0.12083694338798523, 0.19576232135295868, -0.08176837116479874, 1.1027284860610962, -0.01818007044494152, 0.00037151097785681486, -0.001785649568773806, -0.11561182141304016, -0.413479745388031, -0.09670071303844452, 0.6135204434394836, 0.21334317326545715, -0.45029526948928833, 0.004386226646602154]} +{"t": 4.9607, "q": [-0.13590729236602783, 0.010385049507021904, 0.003669379511848092, 0.3214968144893646, -0.17468468844890594, -0.010682987049221992, -0.08068398386240005, -0.0221489779651165, 0.027855142951011658, 0.3228006958961487, -0.24996933341026306, 0.02060881070792675, 1.3391895663517062e-05, -0.009061652235686779, 0.007679388392716646, 0.11943478882312775, 0.19589415192604065, -0.08176837116479874, 1.1031479835510254, -0.018216023221611977, 0.0003475425182841718, -0.0018096179701387882, -0.12231100350618362, -0.4144744277000427, -0.10151837021112442, 0.6030102372169495, 0.2224152386188507, -0.45894789695739746, 0.004518053028732538]} +{"t": 4.9775, "q": [-0.1358817219734192, 0.01041913777589798, 0.0036827712319791317, 0.32235753536224365, -0.17468468844890594, -0.010682987049221992, -0.08041979372501373, -0.0221489779651165, 0.02790871076285839, 0.32281774282455444, -0.24973437190055847, 0.020664501935243607, -5.3567582654068246e-05, -0.008970172144472599, 0.006782177370041609, 0.11818842589855194, 0.19608590006828308, -0.08174440264701843, 1.104022741317749, -0.018216023221611977, 0.00035952674807049334, -0.0018096179701387882, -0.12902216613292694, -0.41473808884620667, -0.10487395524978638, 0.5930633544921875, 0.23185880482196808, -0.46629422903060913, 0.004829642828553915]} +{"t": 4.9942, "q": [-0.13600103557109833, 0.010487314313650131, 0.003696163184940815, 0.3229285180568695, -0.17468468844890594, -0.010682987049221992, -0.08039423078298569, -0.02208080142736435, 0.028002453967928886, 0.32281774282455444, -0.24946534633636475, 0.02072000317275524, -0.00012052706006215885, -0.008429788053035736, 0.005521032959222794, 0.11673834174871445, 0.19633756577968597, -0.08162456005811691, 1.105281114578247, -0.018251974135637283, 0.00041944789700210094, -0.0018096179701387882, -0.13570936024188995, -0.4147860109806061, -0.11121360957622528, 0.5832602381706238, 0.24051141738891602, -0.47215449810028076, 0.0051891696639359]} +{"t": 5.011, "q": [-0.1362907737493515, 0.010572535917162895, 0.003655987558886409, 0.32346540689468384, -0.17468468844890594, -0.010682987049221992, -0.08033457398414612, -0.022004101425409317, 0.02792210318148136, 0.3228262662887573, -0.24922530353069305, 0.020710833370685577, 2.6783791327034123e-05, -0.008589058183133602, 0.004959488287568092, 0.11478491127490997, 0.1965293139219284, -0.08161257207393646, 1.1066113710403442, -0.01822800748050213, 0.000431432097684592, -0.001797633827663958, -0.14101837575435638, -0.4148579239845276, -0.1197463795542717, 0.5737687349319458, 0.2489243447780609, -0.47662460803985596, 0.005848302040249109]} +{"t": 5.0277, "q": [-0.13677653670310974, 0.010632190853357315, 0.0034952848218381405, 0.3239852488040924, -0.17468468844890594, -0.010682987049221992, -0.08040275424718857, -0.021927403286099434, 0.027814967557787895, 0.3227836489677429, -0.24890950322151184, 0.020701052621006966, 0.0002812298189383, -0.009710104204714298, 0.004657259210944176, 0.11301124095916748, 0.19660121202468872, -0.0815766230225563, 1.1080974340438843, -0.018251974135637283, 0.0005153216770850122, -0.0018335864879190922, -0.14662699401378632, -0.41419878602027893, -0.12770390510559082, 0.56523597240448, 0.2599857747554779, -0.48303619027137756, 0.005944175645709038]} +{"t": 5.0444, "q": [-0.1370236873626709, 0.010623667389154434, 0.0034283252898603678, 0.3243176341056824, -0.1746932566165924, -0.010683022439479828, -0.08041979372501373, -0.021918881684541702, 0.027788182720541954, 0.3227154612541199, -0.2487250417470932, 0.0208144448697567, 0.0006963785854168236, -0.010838478803634644, 0.004398195073008537, 0.11134544014930725, 0.19656525552272797, -0.08161257207393646, 1.1096433401107788, -0.01822800748050213, 0.0006351639167405665, -0.0018455706303939223, -0.15126489102840424, -0.41341981291770935, -0.1332526057958603, 0.557829737663269, 0.26942935585975647, -0.488944411277771, 0.006471481639891863]} +{"t": 5.0612, "q": [-0.13710038363933563, 0.010564012452960014, 0.0034149333368986845, 0.3244113624095917, -0.1746932566165924, -0.010683022439479828, -0.08040275424718857, -0.021927403286099434, 0.027801575139164925, 0.3226643204689026, -0.24866630136966705, 0.02084268443286419, 0.001004392164759338, -0.012000017799437046, 0.0040279170498251915, 0.1101110652089119, 0.1964094638824463, -0.08160059154033661, 1.1109496355056763, -0.01822800748050213, 0.0007070692954584956, -0.0018455706303939223, -0.15470436215400696, -0.4132041037082672, -0.13753096759319305, 0.5518855452537537, 0.2793043553829193, -0.49432530999183655, 0.00701077189296484]} +{"t": 5.078, "q": [-0.13710038363933563, 0.010512880980968475, 0.003481892868876457, 0.3244113624095917, -0.1747017353773117, -0.010668901726603508, -0.08041127026081085, -0.021978534758090973, 0.02788192592561245, 0.32258763909339905, -0.2486620396375656, 0.02083546668291092, 0.0009240407962352037, -0.01297673024237156, 0.0036306201945990324, 0.10969161242246628, 0.19634954631328583, -0.08161257207393646, 1.1121001243591309, -0.018216023221611977, 0.0008149273344315588, -0.0018455706303939223, -0.15834756195545197, -0.41312021017074585, -0.14121012389659882, 0.546109139919281, 0.28805282711982727, -0.49961036443710327, 0.0076219672337174416]} +{"t": 5.0947, "q": [-0.13704924285411835, 0.010504359379410744, 0.0036292036529630423, 0.32436874508857727, -0.17469748854637146, -0.010675962083041668, -0.08041979372501373, -0.021995579823851585, 0.027948886156082153, 0.3225279748439789, -0.24865370988845825, 0.02084977924823761, 0.0007499461644329131, -0.013748793862760067, 0.003422262379899621, 0.10915232449769974, 0.19633756577968597, -0.08162456005811691, 1.11326265335083, -0.01816808618605137, 0.0009347695740871131, -0.0018695391481742263, -0.16142751276493073, -0.4125569462776184, -0.14491325616836548, 0.5385470986366272, 0.29909029603004456, -0.5056504011154175, 0.00866459496319294]} +{"t": 5.1116, "q": [-0.1370236873626709, 0.010453226044774055, 0.003696163184940815, 0.3243176341056824, -0.17470598220825195, -0.010661832056939602, -0.08041979372501373, -0.022004101425409317, 0.02802923694252968, 0.3224853575229645, -0.2486330270767212, 0.020885519683361053, 0.0005490677431225777, -0.014406696893274784, 0.003556608222424984, 0.10839731991291046, 0.19636152684688568, -0.08163654059171677, 1.1143171787261963, -0.01812014915049076, 0.0010306433541700244, -0.0018455706303939223, -0.16376443207263947, -0.41159820556640625, -0.14855645596981049, 0.5303978323936462, 0.3077069818973541, -0.5102523565292358, 0.009239837527275085]} +{"t": 5.1284, "q": [-0.1370236873626709, 0.010427659377455711, 0.0037631227169185877, 0.32418978214263916, -0.17469748854637146, -0.010675962083041668, -0.08046240359544754, -0.02202966809272766, 0.028136372566223145, 0.32240015268325806, -0.2486288994550705, 0.020892668515443802, 0.00016070275160018355, -0.014913048595190048, 0.0038174039218574762, 0.107414610683918, 0.1964094638824463, -0.08160059154033661, 1.1154437065124512, -0.01810816489160061, 0.0012583436910063028, -0.0018695391481742263, -0.1675274819135666, -0.410160094499588, -0.15251125395298004, 0.5224882364273071, 0.31875643134117126, -0.5147344470024109, 0.010234528221189976]} +{"t": 5.1451, "q": [-0.13704924285411835, 0.010427659377455711, 0.0038702578749507666, 0.3240790069103241, -0.17470166087150574, -0.010654736310243607, -0.08052206039428711, -0.02202966809272766, 0.02823011577129364, 0.322331964969635, -0.24860408902168274, 0.020935576409101486, 6.695948104606941e-05, -0.015215125866234303, 0.0040846834890544415, 0.10592857003211975, 0.19644542038440704, -0.08161257207393646, 1.116726040840149, -0.018072212114930153, 0.0014740596525371075, -0.0018695391481742263, -0.17103886604309082, -0.40818271040916443, -0.15795208513736725, 0.5143150091171265, 0.3298538029193878, -0.5178143978118896, 0.011061440221965313]} +{"t": 5.1621, "q": [-0.1370662897825241, 0.01041913777589798, 0.0038568659219890833, 0.32386595010757446, -0.17470166087150574, -0.010654736310243607, -0.08055614680051804, -0.02202114649116993, 0.02821672335267067, 0.32230639457702637, -0.24860423803329468, 0.020949942991137505, 0.0001473108568461612, -0.015351025387644768, 0.0042184218764305115, 0.10401108860969543, 0.1964574009180069, -0.08163654059171677, 1.1186195611953735, -0.017964353784918785, 0.0015939020086079836, -0.0018575548892840743, -0.17348363995552063, -0.40700826048851013, -0.16177505254745483, 0.5063934326171875, 0.34320423007011414, -0.5213257670402527, 0.01179247722029686]} +{"t": 5.1788, "q": [-0.1370662897825241, 0.010410616174340248, 0.0037899063900113106, 0.32377222180366516, -0.1746974140405655, -0.010661805048584938, -0.08052206039428711, -0.022038189694285393, 0.02808280475437641, 0.32226380705833435, -0.24861250817775726, 0.020935645326972008, 0.0006695947959087789, -0.015471791848540306, 0.004323215689510107, 0.10135059058666229, 0.1965293139219284, -0.08161257207393646, 1.1212440729141235, -0.017976338043808937, 0.001701759989373386, -0.0018575548892840743, -0.17595238983631134, -0.40523460507392883, -0.16660469770431519, 0.49789661169052124, 0.3555479943752289, -0.5269224047660828, 0.012954947538673878]} +{"t": 5.1955, "q": [-0.13708333671092987, 0.010436180979013443, 0.0037095551379024982, 0.32355064153671265, -0.17471447587013245, -0.010647710412740707, -0.08055614680051804, -0.02202966809272766, 0.027975669130682945, 0.3222041428089142, -0.24862124025821686, 0.02096446603536606, 0.0008169056382030249, -0.01544893253594637, 0.004395617172122002, 0.0993012934923172, 0.19663716852664948, -0.08161257207393646, 1.1232694387435913, -0.017904432490468025, 0.0018216022290289402, -0.0018695391481742263, -0.17881663143634796, -0.4036526679992676, -0.17008012533187866, 0.4890642464160919, 0.368431031703949, -0.5323272943496704, 0.013913685455918312]} +{"t": 5.2123, "q": [-0.13700664043426514, 0.010495835915207863, 0.0036827712319791317, 0.3232949674129486, -0.17471037805080414, -0.010683094151318073, -0.08058171719312668, -0.022004101425409317, 0.027989061549305916, 0.3220677971839905, -0.24862951040267944, 0.02095017023384571, 0.0006963785854168236, -0.015380805358290672, 0.004420285578817129, 0.09769540280103683, 0.19674502313137054, -0.08160059154033661, 1.124995231628418, -0.01794038526713848, 0.0019054918084293604, -0.0019054918084293604, -0.18233998119831085, -0.40096819400787354, -0.17422667145729065, 0.4808550477027893, 0.3828001320362091, -0.5376003384590149, 0.01510012336075306]} +{"t": 5.229, "q": [-0.1369725465774536, 0.01059810258448124, 0.0037095551379024982, 0.32304781675338745, -0.1747017353773117, -0.010668901726603508, -0.08068398386240005, -0.02191035822033882, 0.028002453967928886, 0.3220507502555847, -0.24862951040267944, 0.02095017023384571, 0.0004151487664785236, -0.015312541276216507, 0.004502686206251383, 0.09575396031141281, 0.19694875180721283, -0.081552654504776, 1.127859354019165, -0.017952369526028633, 0.0019294602097943425, -0.0019054918084293604, -0.18646256625652313, -0.3975526988506317, -0.17861288785934448, 0.4737244248390198, 0.39624643325805664, -0.5408959984779358, 0.015339808538556099]} +{"t": 5.2457, "q": [-0.13690437376499176, 0.010751500725746155, 0.003696163184940815, 0.32262173295021057, -0.17470598220825195, -0.010661832056939602, -0.08075215667486191, -0.021825138479471207, 0.027962278574705124, 0.3220166563987732, -0.24863363802433014, 0.020943021401762962, 0.00020087843586225063, -0.015206336975097656, 0.004638351500034332, 0.09287774562835693, 0.19704462587833405, -0.08154066652059555, 1.1318740844726562, -0.01798832230269909, 0.002181129064410925, -0.0018935075495392084, -0.19017766416072845, -0.3947364091873169, -0.18275943398475647, 0.4662822484970093, 0.4096927344799042, -0.546480655670166, 0.015387745574116707]} +{"t": 5.2624, "q": [-0.13691289722919464, 0.010862287133932114, 0.0036292036529630423, 0.3222297132015228, -0.17469318211078644, -0.010668866336345673, -0.08087147027254105, -0.021688783541321754, 0.02788192592561245, 0.3218717873096466, -0.24863363802433014, 0.020943021401762962, 0.00022766222537029535, -0.015062235295772552, 0.004808030556887388, 0.0909123346209526, 0.1971045583486557, -0.0815286859869957, 1.1342229843139648, -0.018012290820479393, 0.002277002902701497, -0.0018815234070643783, -0.19250260293483734, -0.39094939827919006, -0.18900321424007416, 0.4581689238548279, 0.42328283190727234, -0.5513822436332703, 0.015579492785036564]} +{"t": 5.2792, "q": [-0.13686175644397736, 0.011015685275197029, 0.0036158119328320026, 0.32181212306022644, -0.17468468844890594, -0.010682987049221992, -0.08095669001340866, -0.021629128605127335, 0.02790871076285839, 0.3217354118824005, -0.24864619970321655, 0.020935924723744392, 0.00020087843586225063, -0.014956166036427021, 0.0048859454691410065, 0.08895890414714813, 0.19720043241977692, -0.08149272948503494, 1.1366678476333618, -0.018012290820479393, 0.0022889869287610054, -0.0018815234070643783, -0.19481556117534637, -0.3865032494068146, -0.19692479074001312, 0.4495043158531189, 0.4373283386230469, -0.5559002757072449, 0.015687350183725357]} +{"t": 5.296, "q": [-0.13673393428325653, 0.011117950081825256, 0.0036292036529630423, 0.32140305638313293, -0.1747061312198639, -0.010690154507756233, -0.08096521347761154, -0.021569473668932915, 0.02792210318148136, 0.3216843008995056, -0.24865874648094177, 0.020928846672177315, -0.00012052706006215885, -0.014721504412591457, 0.004969783592969179, 0.08741293847560883, 0.1973322480916977, -0.08136090636253357, 1.1392803192138672, -0.01806022785604, 0.002277002902701497, -0.0018935075495392084, -0.19766780734062195, -0.38218891620635986, -0.20485834777355194, 0.4416187107563019, 0.45233258605003357, -0.5593277812004089, 0.01577123999595642]} +{"t": 5.3127, "q": [-0.13662314414978027, 0.011134995147585869, 0.003696163184940815, 0.3209173083305359, -0.17469318211078644, -0.010668866336345673, -0.08102486282587051, -0.02153538540005684, 0.027975669130682945, 0.3215479254722595, -0.24866288900375366, 0.020921697840094566, -0.0005490677431225777, -0.014449195004999638, 0.004981759935617447, 0.08620253205299377, 0.19755995273590088, -0.08134891837835312, 1.1416772603988647, -0.018024275079369545, 0.0022889869287610054, -0.0019174760673195124, -0.2010233998298645, -0.3785816729068756, -0.211785227060318, 0.43559062480926514, 0.4650118947029114, -0.5623837113380432, 0.015627428889274597]} +{"t": 5.3295, "q": [-0.13653792440891266, 0.011152040213346481, 0.003776514669880271, 0.32044005393981934, -0.17469748854637146, -0.010675962083041668, -0.08108451962471008, -0.021560952067375183, 0.028002453967928886, 0.3214541971683502, -0.24867956340312958, 0.02090747095644474, -0.0008302975329570472, -0.014078187756240368, 0.005153398960828781, 0.08515990525484085, 0.1977517008781433, -0.08134891837835312, 1.1433310508728027, -0.018012290820479393, 0.002277002902701497, -0.0019534286111593246, -0.20412731170654297, -0.3764844238758087, -0.2183765470981598, 0.43038949370384216, 0.4781346321105957, -0.5678246021270752, 0.0156513974070549]} +{"t": 5.3462, "q": [-0.1365634948015213, 0.011117950081825256, 0.003816690295934677, 0.320090651512146, -0.1747017353773117, -0.010668901726603508, -0.08122939616441727, -0.021560952067375183, 0.02804262936115265, 0.32140305638313293, -0.24867956340312958, 0.02090747095644474, -0.0009642164804972708, -0.013418955728411674, 0.0056740217842161655, 0.0839734673500061, 0.19781161844730377, -0.08136090636253357, 1.144793152809143, -0.018024275079369545, 0.002253034384921193, -0.0019294602097943425, -0.20651216804981232, -0.3749384582042694, -0.2244165986776352, 0.4248168170452118, 0.4929710924625397, -0.5734931230545044, 0.01575925573706627]} +{"t": 5.363, "q": [-0.1366060972213745, 0.011109428480267525, 0.003910433501005173, 0.31979238986968994, -0.17470188438892365, -0.010697214864194393, -0.08140835911035538, -0.02153538540005684, 0.028122980147600174, 0.3213263750076294, -0.24867971241474152, 0.02092183753848076, -0.001084743533283472, -0.012721986509859562, 0.006284966599196196, 0.083074651658535, 0.19778765738010406, -0.08134891837835312, 1.1461713314056396, -0.018012290820479393, 0.002265018643811345, -0.0019414444686844945, -0.2079862356185913, -0.3726375102996826, -0.23118768632411957, 0.4199991524219513, 0.5044759511947632, -0.5773879885673523, 0.015795208513736725]} +{"t": 5.3797, "q": [-0.13672541081905365, 0.011058295145630836, 0.0039506093598902225, 0.3195367157459259, -0.17468886077404022, -0.010661769658327103, -0.0815361887216568, -0.021560952067375183, 0.028109589591622353, 0.3211814761161804, -0.24868400394916534, 0.02092905528843403, -0.0009508245857432485, -0.011994674801826477, 0.006944180466234684, 0.08156463503837585, 0.1976558268070221, -0.08132494986057281, 1.1484602689743042, -0.018036259338259697, 0.002181129064410925, -0.0019414444686844945, -0.2091846466064453, -0.36983320116996765, -0.23845012485980988, 0.4158526062965393, 0.5158729553222656, -0.579125702381134, 0.015867114067077637]} +{"t": 5.3966, "q": [-0.1367935836315155, 0.011007163673639297, 0.0039506093598902225, 0.31928104162216187, -0.1746889352798462, -0.010675926692783833, -0.08160436898469925, -0.02159504033625126, 0.02806941419839859, 0.3210451304912567, -0.24867971241474152, 0.02092183753848076, -0.0007365542696788907, -0.011441671289503574, 0.007453235797584057, 0.08018644899129868, 0.19750003516674042, -0.08133693784475327, 1.150773286819458, -0.018024275079369545, 0.002193113323301077, -0.0019773971289396286, -0.2105388641357422, -0.36771199107170105, -0.24415461719036102, 0.41383928060531616, 0.5256280899047852, -0.5799166560173035, 0.015903066843748093]} +{"t": 5.4133, "q": [-0.13681915402412415, 0.010913420468568802, 0.0039506093598902225, 0.31901687383651733, -0.17468900978565216, -0.010690083727240562, -0.0816725492477417, -0.021629128605127335, 0.02806941419839859, 0.32084912061691284, -0.24868813157081604, 0.02092190645635128, -0.0002544460294302553, -0.010828284546732903, 0.008009424433112144, 0.07933557033538818, 0.19729630649089813, -0.08139685541391373, 1.1513724327087402, -0.018024275079369545, 0.002121207769960165, -0.0019534286111593246, -0.21111410856246948, -0.36551886796951294, -0.24826520681381226, 0.411909818649292, 0.5380077958106995, -0.5799645781517029, 0.015843145549297333]} +{"t": 5.4301, "q": [-0.13686175644397736, 0.010862287133932114, 0.003910433501005173, 0.31873562932014465, -0.17469318211078644, -0.010668866336345673, -0.08166402578353882, -0.021646173670887947, 0.027975669130682945, 0.32061901688575745, -0.24869655072689056, 0.02092197723686695, 0.0003883649769704789, -0.010343576781451702, 0.008483266457915306, 0.07856857776641846, 0.1970326453447342, -0.08142082393169403, 1.1516600847244263, -0.018012290820479393, 0.0021092237439006567, -0.0019654128700494766, -0.21186912059783936, -0.36296623945236206, -0.2532027065753937, 0.41022002696990967, 0.5490812659263611, -0.579952597618103, 0.015962988138198853]} +{"t": 5.447, "q": [-0.13686175644397736, 0.010828198865056038, 0.0038568659219890833, 0.3184373676776886, -0.1746932566165924, -0.010683022439479828, -0.08168958872556686, -0.021680261939764023, 0.02788192592561245, 0.3204485774040222, -0.24870941042900085, 0.020943649113178253, 0.001004392164759338, -0.010025150142610073, 0.00899494905024767, 0.0779334157705307, 0.19668510556221008, -0.08143281191587448, 1.151755928993225, -0.018012290820479393, 0.0020732709672302008, -0.0019654128700494766, -0.21192903816699982, -0.36116859316825867, -0.25587520003318787, 0.4087699353694916, 0.5593517422676086, -0.5799406170845032, 0.01601092517375946]} +{"t": 5.4637, "q": [-0.13687027990818024, 0.010819677263498306, 0.0038568659219890833, 0.3180794417858124, -0.17468468844890594, -0.010682987049221992, -0.08178333193063736, -0.021688783541321754, 0.027855142951011658, 0.3202269971370697, -0.2487134039402008, 0.020922116935253143, 0.0012990138493478298, -0.009866362437605858, 0.009562383405864239, 0.07747801393270493, 0.19636152684688568, -0.08142082393169403, 1.151755928993225, -0.018024275079369545, 0.0020253341645002365, -0.0019654128700494766, -0.21166539192199707, -0.3592630922794342, -0.2561628222465515, 0.4079670011997223, 0.567321240901947, -0.5798807144165039, 0.016238626092672348]} +{"t": 5.4805, "q": [-0.13685323297977448, 0.01083672046661377, 0.0038568659219890833, 0.3177556097507477, -0.1746974140405655, -0.010661805048584938, -0.08188559859991074, -0.021688783541321754, 0.027828359976410866, 0.3200565576553345, -0.24871769547462463, 0.020929334685206413, 0.0015400679549202323, -0.009725965559482574, 0.010432278737425804, 0.07679491490125656, 0.1961817741394043, -0.08143281191587448, 1.1517798900604248, -0.018036259338259697, 0.0019893813878297806, -0.0019893813878297806, -0.21126990020275116, -0.35690221190452576, -0.2561388313770294, 0.4076913595199585, 0.5741402506828308, -0.5796530246734619, 0.016466325148940086]} +{"t": 5.4973, "q": [-0.13693846762180328, 0.010870808735489845, 0.0037899063900113106, 0.31754255294799805, -0.17468468844890594, -0.010682987049221992, -0.08200491219758987, -0.02165469527244568, 0.02770783193409443, 0.31997987627983093, -0.24873866140842438, 0.020922325551509857, 0.0018614735454320908, -0.009635618887841702, 0.011565123684704304, 0.07568038254976273, 0.19608590006828308, -0.08144479244947433, 1.1517798900604248, -0.018072212114930153, 0.0019773971289396286, -0.0019654128700494766, -0.21099427342414856, -0.3546372056007385, -0.2554197907447815, 0.4072719216346741, 0.5802642107009888, -0.5790178179740906, 0.016777915880084038]} +{"t": 5.514, "q": [-0.13708333671092987, 0.010913420468568802, 0.0036292036529630423, 0.3173976540565491, -0.17469333112239838, -0.010697179473936558, -0.08208160847425461, -0.021586518734693527, 0.02757391333580017, 0.31993725895881653, -0.24873851239681244, 0.02090795896947384, 0.002356973709538579, -0.009641350246965885, 0.012787451036274433, 0.0740145742893219, 0.19596605002880096, -0.08143281191587448, 1.1518398523330688, -0.01804824359714985, 0.0020133499056100845, -0.0019654128700494766, -0.21092236042022705, -0.3523242473602295, -0.25450900197029114, 0.40643301606178284, 0.5847223401069641, -0.5774598717689514, 0.017125457525253296]} +{"t": 5.5308, "q": [-0.13717707991600037, 0.010887853801250458, 0.003481892868876457, 0.31732097268104553, -0.17470188438892365, -0.010697214864194393, -0.08211569488048553, -0.021586518734693527, 0.02741320990025997, 0.3198605477809906, -0.24875934422016144, 0.02088656648993492, 0.0029328251257538795, -0.0097593292593956, 0.014492128044366837, 0.07182145863771439, 0.19572636485099792, -0.08145678043365479, 1.15174400806427, -0.01806022785604, 0.0020013656467199326, -0.0019534286111593246, -0.20944830775260925, -0.35079026222229004, -0.2532027065753937, 0.4064929485321045, 0.5875746011734009, -0.5754585266113281, 0.017844511196017265]} +{"t": 5.5475, "q": [-0.1373049020767212, 0.01089637540280819, 0.0033077981788665056, 0.31732097268104553, -0.17468900978565216, -0.010690083727240562, -0.08212421834468842, -0.021586518734693527, 0.02722572349011898, 0.31983497738838196, -0.2487550526857376, 0.02087934873998165, 0.0032944062259048223, -0.010315464809536934, 0.016192328184843063, 0.06970025599002838, 0.19554659724235535, -0.08144479244947433, 1.1516121625900269, -0.01806022785604, 0.0019534286111593246, -0.0019654128700494766, -0.2075667828321457, -0.3499993085861206, -0.2510695159435272, 0.40652889013290405, 0.5885692834854126, -0.5738286972045898, 0.018863171339035034]} +{"t": 5.5643, "q": [-0.1376628428697586, 0.01089637540280819, 0.00321405497379601, 0.3172357380390167, -0.17468468844890594, -0.010682987049221992, -0.08233726769685745, -0.02159504033625126, 0.027131980285048485, 0.31961342692375183, -0.24875934422016144, 0.02088656648993492, 0.0035086767747998238, -0.011037091724574566, 0.01788036711513996, 0.06711166352033615, 0.19542676210403442, -0.08145678043365479, 1.1515761613845825, -0.01806022785604, 0.0019174760673195124, -0.0019773971289396286, -0.20587700605392456, -0.3486570715904236, -0.24753417074680328, 0.4075595438480377, 0.5882217288017273, -0.5715876221656799, 0.020984377712011337]} +{"t": 5.5811, "q": [-0.13804633915424347, 0.010828198865056038, 0.0032274469267576933, 0.317286878824234, -0.1746932566165924, -0.010683022439479828, -0.08266111463308334, -0.021629128605127335, 0.027131980285048485, 0.3196219503879547, -0.24876347184181213, 0.020879417657852173, 0.0037631227169185877, -0.012022510170936584, 0.019501592963933945, 0.06386393308639526, 0.1953069120645523, -0.08148074895143509, 1.1516361236572266, -0.018012290820479393, 0.0019174760673195124, -0.0019654128700494766, -0.20348015427589417, -0.3484053909778595, -0.24233302474021912, 0.40887778997421265, 0.5870832204818726, -0.5686874389648438, 0.023980434983968735]} +{"t": 5.5979, "q": [-0.13866844773292542, 0.01077706553041935, 0.003240838646888733, 0.317286878824234, -0.17469339072704315, -0.010711345821619034, -0.08320652693510056, -0.02166321687400341, 0.027185548096895218, 0.31959637999534607, -0.24875934422016144, 0.02088656648993492, 0.003990784753113985, -0.013015205971896648, 0.0209732037037611, 0.06007692217826843, 0.1952829509973526, -0.08145678043365479, 1.1517919301986694, -0.018072212114930153, 0.0019294602097943425, -0.0019773971289396286, -0.20119117200374603, -0.3482016623020172, -0.23678432404994965, 0.4087699353694916, 0.5852136611938477, -0.56597900390625, 0.02641323208808899]} +{"t": 5.6147, "q": [-0.1391797810792923, 0.01066627912223339, 0.0031604873947799206, 0.317286878824234, -0.17468468844890594, -0.010682987049221992, -0.08354741334915161, -0.021748438477516174, 0.02707841247320175, 0.31951966881752014, -0.24876347184181213, 0.020879417657852173, 0.005182663444429636, -0.013901353813707829, 0.02255810610949993, 0.056541573256254196, 0.19527097046375275, -0.08143281191587448, 1.1518158912658691, -0.018012290820479393, 0.0019414444686844945, -0.0019654128700494766, -0.19899806380271912, -0.34809380769729614, -0.23214642703533173, 0.40862613916397095, 0.5817142724990845, -0.5636540651321411, 0.029085714370012283]} +{"t": 5.6315, "q": [-0.13946101069450378, 0.010589579120278358, 0.002959609031677246, 0.31721869111061096, -0.1746976375579834, -0.010704276151955128, -0.08364968001842499, -0.021825138479471207, 0.026850750669836998, 0.31938332319259644, -0.24875934422016144, 0.02088656648993492, 0.006575420964509249, -0.01473370660096407, 0.02437467686831951, 0.05265868455171585, 0.19546271860599518, -0.08143281191587448, 1.1518398523330688, -0.018084196373820305, 0.0019414444686844945, -0.0019773971289396286, -0.1958821564912796, -0.34871697425842285, -0.22701717913150787, 0.4086141586303711, 0.5776156783103943, -0.5590521097183228, 0.03308844566345215]} +{"t": 5.6483, "q": [-0.13992120325565338, 0.010470269247889519, 0.0027989062946289778, 0.3170056641101837, -0.17469333112239838, -0.010697179473936558, -0.08387977629899979, -0.021876269951462746, 0.02670343965291977, 0.3188038170337677, -0.24875934422016144, 0.02088656648993492, 0.007579812780022621, -0.015401486307382584, 0.02545805461704731, 0.05013001337647438, 0.1957862824201584, -0.08136090636253357, 1.151755928993225, -0.01806022785604, 0.0019294602097943425, -0.0019773971289396286, -0.19207118451595306, -0.35176098346710205, -0.21951505541801453, 0.40860214829444885, 0.5719471573829651, -0.5537790656089783, 0.037223003804683685]} +{"t": 5.6651, "q": [-0.1398700624704361, 0.01035948283970356, 0.0027989062946289778, 0.3168863356113434, -0.17468468844890594, -0.010682987049221992, -0.08385420590639114, -0.02202966809272766, 0.02670343965291977, 0.31836065649986267, -0.24876347184181213, 0.020879417657852173, 0.007901218719780445, -0.016460910439491272, 0.02652694098651409, 0.04824849218130112, 0.1961577981710434, -0.08127701282501221, 1.1517679691314697, -0.018132133409380913, 0.0019294602097943425, -0.0019654128700494766, -0.18847590684890747, -0.35710594058036804, -0.20912472903728485, 0.40860214829444885, 0.5653917789459229, -0.5487217307090759, 0.04237622022628784]} +{"t": 5.6818, "q": [-0.13985301554203033, 0.010308349505066872, 0.002865865593776107, 0.31666475534439087, -0.1746932566165924, -0.010683022439479828, -0.0838712528347969, -0.022055234760046005, 0.02671683207154274, 0.31800273060798645, -0.24876347184181213, 0.020879417657852173, 0.007847650907933712, -0.017534874379634857, 0.02762334980070591, 0.046846337616443634, 0.19654129445552826, -0.08086955547332764, 1.151755928993225, -0.018144117668271065, 0.0019414444686844945, -0.0019773971289396286, -0.18543191254138947, -0.36374521255493164, -0.19971711933612823, 0.4079190492630005, 0.5557804107666016, -0.5442636013031006, 0.047529436647892]} +{"t": 5.6988, "q": [-0.13976779580116272, 0.010257218033075333, 0.0029194331727921963, 0.3167755603790283, -0.17469756305217743, -0.010690119117498398, -0.0839223861694336, -0.022123411297798157, 0.02673022449016571, 0.31762775778770447, -0.24874663352966309, 0.02087927795946598, 0.007753907702863216, -0.01846475526690483, 0.02880905754864216, 0.04537227749824524, 0.1968289166688919, -0.08015049993991852, 1.1518278121948242, -0.018144117668271065, 0.0019654128700494766, -0.0019773971289396286, -0.1829991191625595, -0.37100765109062195, -0.19135212898254395, 0.40747565031051636, 0.5452343225479126, -0.5402129292488098, 0.05231114476919174]} +{"t": 5.7155, "q": [-0.13976779580116272, 0.010223129764199257, 0.0029997846577316523, 0.3167755603790283, -0.1746976375579834, -0.010704276151955128, -0.08399908244609833, -0.02214045636355877, 0.02673022449016571, 0.3173294961452484, -0.24876347184181213, 0.020879417657852173, 0.007713731843978167, -0.019432170316576958, 0.029941316694021225, 0.04362257942557335, 0.19704462587833405, -0.07916779071092606, 1.1518877744674683, -0.01816808618605137, 0.0019654128700494766, -0.0019773971289396286, -0.18017084896564484, -0.3795284330844879, -0.18316689133644104, 0.40696030855178833, 0.5345324277877808, -0.5352154970169067, 0.05607419088482857]} +{"t": 5.7322, "q": [-0.13967405259609222, 0.0101805180311203, 0.003026568330824375, 0.3167329430580139, -0.1746932566165924, -0.010683022439479828, -0.08407578617334366, -0.022183066233992577, 0.02671683207154274, 0.31712496280670166, -0.24876362085342407, 0.02089378423988819, 0.007633380591869354, -0.020564468577504158, 0.03111737035214901, 0.041836928576231, 0.19711653888225555, -0.07786151021718979, 1.151851773262024, -0.01822800748050213, 0.0019654128700494766, -0.0019773971289396286, -0.17655161023139954, -0.39000263810157776, -0.1723930835723877, 0.4069842994213104, 0.524729311466217, -0.531392514705658, 0.06071208417415619]} +{"t": 5.749, "q": [-0.1395462304353714, 0.010214606299996376, 0.003026568330824375, 0.31675851345062256, -0.1746889352798462, -0.010675926692783833, -0.08415248245000839, -0.022191587835550308, 0.02670343965291977, 0.3168692886829376, -0.2487720400094986, 0.020893853157758713, 0.007579812780022621, -0.02183055877685547, 0.03248845413327217, 0.04006326571106911, 0.19720043241977692, -0.07494934648275375, 1.1518038511276245, -0.01818007044494152, 0.0019654128700494766, -0.0019893813878297806, -0.1721893548965454, -0.4012558162212372, -0.16415992379188538, 0.406792551279068, 0.5108635425567627, -0.5268505215644836, 0.06676411628723145]} +{"t": 5.7658, "q": [-0.13953770697116852, 0.010316872969269753, 0.003026568330824375, 0.31666475534439087, -0.17469339072704315, -0.010711345821619034, -0.08415248245000839, -0.02208932302892208, 0.026636481285095215, 0.31652840971946716, -0.24876362085342407, 0.02089378423988819, 0.0074191102758049965, -0.02333691157400608, 0.03379785269498825, 0.03820570930838585, 0.1973562240600586, -0.07176154106855392, 1.151684045791626, -0.018192054703831673, 0.0019534286111593246, -0.0019773971289396286, -0.1678989976644516, -0.4114064574241638, -0.15694540739059448, 0.40636110305786133, 0.4990590810775757, -0.5229436755180359, 0.07237273454666138]} +{"t": 5.7826, "q": [-0.13952918350696564, 0.010427659377455711, 0.0029997846577316523, 0.3166051208972931, -0.17469339072704315, -0.010711345821619034, -0.08415248245000839, -0.022012624889612198, 0.026582913473248482, 0.3163750171661377, -0.24876347184181213, 0.020879417657852173, 0.007044136989861727, -0.025181123986840248, 0.03503774479031563, 0.03597664460539818, 0.19761987030506134, -0.06825016438961029, 1.1517200469970703, -0.018192054703831673, 0.0019893813878297806, -0.0019893813878297806, -0.16411198675632477, -0.42238402366638184, -0.14935940504074097, 0.40630120038986206, 0.4873145520687103, -0.5176705718040466, 0.07789746671915054]} +{"t": 5.7995, "q": [-0.13952918350696564, 0.010529924184083939, 0.003026568330824375, 0.3164602220058441, -0.1746804416179657, -0.010690056718885899, -0.08426327258348465, -0.02190183661878109, 0.026609696447849274, 0.3163238763809204, -0.24876362085342407, 0.02089378423988819, 0.006254015490412712, -0.02739170752465725, 0.036424145102500916, 0.03374757990241051, 0.19778765738010406, -0.06430735439062119, 1.15174400806427, -0.01818007044494152, 0.0019773971289396286, -0.0020013656467199326, -0.16086424887180328, -0.43391284346580505, -0.14137791097164154, 0.40597760677337646, 0.47367650270462036, -0.5107916593551636, 0.08338624238967896]} +{"t": 5.8163, "q": [-0.13962292671203613, 0.010606624186038971, 0.0030801359098404646, 0.31645169854164124, -0.17468900978565216, -0.010690083727240562, -0.08451040834188461, -0.0218507032841444, 0.026636481285095215, 0.3162727355957031, -0.24876362085342407, 0.02089378423988819, 0.005852258298546076, -0.029422016814351082, 0.03754519298672676, 0.03147057443857193, 0.1982070952653885, -0.062138207256793976, 1.1517319679260254, -0.018096180632710457, 0.0019654128700494766, -0.0020133499056100845, -0.15672969818115234, -0.4472273290157318, -0.13081979751586914, 0.4057978391647339, 0.4608174264431, -0.504260241985321, 0.0896420031785965]} +{"t": 5.8331, "q": [-0.13979336619377136, 0.01066627912223339, 0.0031604873947799206, 0.3163835406303406, -0.17468908429145813, -0.010704249143600464, -0.08483424782752991, -0.021808093413710594, 0.02670343965291977, 0.3162216246128082, -0.2487633228302002, 0.020865051075816154, 0.005624596029520035, -0.03131832182407379, 0.03831656277179718, 0.028726188465952873, 0.1986025869846344, -0.06152701377868652, 1.151755928993225, -0.018084196373820305, 0.0019893813878297806, -0.0020133499056100845, -0.15143266320228577, -0.46072155237197876, -0.1215919479727745, 0.40533047914505005, 0.44716739654541016, -0.4987235367298126, 0.09444767981767654]} +{"t": 5.8499, "q": [-0.13979336619377136, 0.010700367391109467, 0.0031872710678726435, 0.31625568866729736, -0.17468908429145813, -0.010704249143600464, -0.08491095155477524, -0.02179104834794998, 0.026757007464766502, 0.3161363899707794, -0.24876759946346283, 0.020872268825769424, 0.005664771888405085, -0.03313283622264862, 0.038808424025774, 0.025370605289936066, 0.19886623322963715, -0.061347249895334244, 1.15174400806427, -0.01800030656158924, 0.0019534286111593246, -0.0020133499056100845, -0.14480538666248322, -0.4741438925266266, -0.11422164738178253, 0.40525856614112854, 0.43259456753730774, -0.49185657501220703, 0.09906160831451416]} +{"t": 5.8667, "q": [-0.13981893658638, 0.01071741059422493, 0.0032274469267576933, 0.31608524918556213, -0.17468476295471191, -0.010697153396904469, -0.08490242809057236, -0.021808093413710594, 0.026757007464766502, 0.3160170912742615, -0.24875934422016144, 0.02088656648993492, 0.005624596029520035, -0.03499188274145126, 0.039306893944740295, 0.0216554943472147, 0.19893814623355865, -0.06131129711866379, 1.1518038511276245, -0.017952369526028633, 0.0019773971289396286, -0.0020133499056100845, -0.13868145644664764, -0.4867512881755829, -0.10748651623725891, 0.40533047914505005, 0.42100584506988525, -0.48518136143684387, 0.10482601821422577]} +{"t": 5.8835, "q": [-0.13984449207782745, 0.010674800723791122, 0.003240838646888733, 0.31608524918556213, -0.17468908429145813, -0.010704249143600464, -0.08491095155477524, -0.021808093413710594, 0.026770399883389473, 0.3159489035606384, -0.24876347184181213, 0.020879417657852173, 0.005624596029520035, -0.03637720271945, 0.03980870544910431, 0.01794038526713848, 0.1989021897315979, -0.06132328137755394, 1.1519237756729126, -0.017892448231577873, 0.0019893813878297806, -0.0020133499056100845, -0.1327013224363327, -0.4991549551486969, -0.09952899068593979, 0.4053184688091278, 0.41005223989486694, -0.4799322783946991, 0.1107102707028389]} +{"t": 5.9004, "q": [-0.13986153900623322, 0.010623667389154434, 0.0032810145057737827, 0.31608524918556213, -0.17468051612377167, -0.010704213753342628, -0.08491095155477524, -0.021859226748347282, 0.026810575276613235, 0.3158125579357147, -0.24876362085342407, 0.02089378423988819, 0.00575851509347558, -0.037401553243398666, 0.04033656045794487, 0.014045512303709984, 0.19884227216243744, -0.0613832026720047, 1.1520795822143555, -0.017856495454907417, 0.0019893813878297806, -0.0020253341645002365, -0.12634968757629395, -0.5111392140388489, -0.09093630313873291, 0.4061693549156189, 0.399697870016098, -0.47455134987831116, 0.1149287223815918]} +{"t": 5.9172, "q": [-0.13992972671985626, 0.010623667389154434, 0.003347973804920912, 0.3161363899707794, -0.17468900978565216, -0.010690083727240562, -0.08501321822404861, -0.021859226748347282, 0.02689092606306076, 0.3157869875431061, -0.24876347184181213, 0.020879417657852173, 0.005651379935443401, -0.037998586893081665, 0.040755536407232285, 0.011061440221965313, 0.19877035915851593, -0.0613832026720047, 1.151971697807312, -0.017844511196017265, 0.0019893813878297806, -0.0020253341645002365, -0.119770348072052, -0.5210022330284119, -0.0842730700969696, 0.40712809562683105, 0.3885885179042816, -0.4678521752357483, 0.1185239851474762]} +{"t": 5.934, "q": [-0.13997232913970947, 0.010572535917162895, 0.003575636073946953, 0.31612786650657654, -0.17468908429145813, -0.010704249143600464, -0.08512400090694427, -0.021918881684541702, 0.02702484466135502, 0.3157784640789032, -0.2487550526857376, 0.02087934873998165, 0.005557636730372906, -0.03801299259066582, 0.04083049297332764, 0.008832373656332493, 0.19872242212295532, -0.0613832026720047, 1.1518757343292236, -0.01782054267823696, 0.0020013656467199326, -0.002037318190559745, -0.11323894560337067, -0.5291754603385925, -0.07756190747022629, 0.4073198437690735, 0.37847381830215454, -0.4631543457508087, 0.12250275164842606]} +{"t": 5.9508, "q": [-0.13989563286304474, 0.010470269247889519, 0.003669379511848092, 0.3161449134349823, -0.17468900978565216, -0.010690083727240562, -0.0851154774427414, -0.022004101425409317, 0.027105197310447693, 0.31580403447151184, -0.24875934422016144, 0.02088656648993492, 0.00546389352530241, -0.03776415437459946, 0.04097278043627739, 0.0062677497044205666, 0.19851869344711304, -0.061347249895334244, 1.151911735534668, -0.017856495454907417, 0.002037318190559745, -0.002037318190559745, -0.10453839600086212, -0.537588357925415, -0.0712941586971283, 0.4071880280971527, 0.3678797483444214, -0.45915162563323975, 0.1275840550661087]} +{"t": 5.9677, "q": [-0.13982746005058289, 0.010444704443216324, 0.0037229470908641815, 0.3161108195781708, -0.1746804416179657, -0.010690056718885899, -0.08509843796491623, -0.022046713158488274, 0.027131980285048485, 0.31580403447151184, -0.24875520169734955, 0.02089371345937252, 0.005303190555423498, -0.037319447845220566, 0.04120435193181038, 0.003858920419588685, 0.19850671291351318, -0.06133526563644409, 1.1519596576690674, -0.017892448231577873, 0.002049302449449897, -0.0020133499056100845, -0.09592173993587494, -0.5454021096229553, -0.06242582947015762, 0.4072359502315521, 0.3570699989795685, -0.45698246359825134, 0.13288109004497528]} +{"t": 5.9844, "q": [-0.13976779580116272, 0.010470269247889519, 0.0037899063900113106, 0.31612786650657654, -0.17467620968818665, -0.010697117075324059, -0.08509843796491623, -0.021995579823851585, 0.027172155678272247, 0.3158722221851349, -0.24875934422016144, 0.02088656648993492, 0.00483447453007102, -0.036964964121580124, 0.04141480475664139, 0.00173771264962852, 0.19868646562099457, -0.06132328137755394, 1.151971697807312, -0.017904432490468025, 0.0020732709672302008, -0.0020133499056100845, -0.08820389956235886, -0.5530120730400085, -0.051292482763528824, 0.4061453938484192, 0.3464639484882355, -0.4556402564048767, 0.13620072603225708]} +{"t": 6.0011, "q": [-0.13975074887275696, 0.010581057518720627, 0.0038568659219890833, 0.3161363899707794, -0.17468900978565216, -0.010690083727240562, -0.08514957129955292, -0.021918881684541702, 0.02723911590874195, 0.3159233331680298, -0.24875934422016144, 0.02088656648993492, 0.004084527958184481, -0.03651230037212372, 0.04169796407222748, -0.00028762139845639467, 0.1989021897315979, -0.06126336008310318, 1.151983618736267, -0.017916416749358177, 0.0020732709672302008, -0.0020133499056100845, -0.08219980448484421, -0.5581533312797546, -0.04169312119483948, 0.40495896339416504, 0.3371522128582001, -0.45472943782806396, 0.14011956751346588]} +{"t": 6.0179, "q": [-0.13974224030971527, 0.010700367391109467, 0.0038434739690274, 0.3161534368991852, -0.17468476295471191, -0.010697153396904469, -0.08514104783535004, -0.021816615015268326, 0.02725250832736492, 0.3160170912742615, -0.2487550526857376, 0.02087934873998165, 0.003977392800152302, -0.036097753793001175, 0.04190967231988907, -0.0027084348257631063, 0.19889020919799805, -0.06114351749420166, 1.151983618736267, -0.017952369526028633, 0.0021092237439006567, -0.0020133499056100845, -0.07502125203609467, -0.5625514984130859, -0.03290868178009987, 0.4040960967540741, 0.3290628492832184, -0.45345911383628845, 0.14430205523967743]} +{"t": 6.0347, "q": [-0.1397763192653656, 0.01072593405842781, 0.0037899063900113106, 0.3161534368991852, -0.17466771602630615, -0.010711238719522953, -0.08513252437114716, -0.02177400514483452, 0.02721233107149601, 0.31611934304237366, -0.2487550526857376, 0.02087934873998165, 0.004178271628916264, -0.035585835576057434, 0.04211849719285965, -0.005249090492725372, 0.1986025869846344, -0.06114351749420166, 1.1520315408706665, -0.01800030656158924, 0.0021092237439006567, -0.0020253341645002365, -0.067674919962883, -0.566494345664978, -0.024172183126211166, 0.40332910418510437, 0.3195473849773407, -0.45106226205825806, 0.1489998698234558]} +{"t": 6.0515, "q": [-0.13980188965797424, 0.010742977261543274, 0.0036827712319791317, 0.3161108195781708, -0.1746719628572464, -0.010704178363084793, -0.0851154774427414, -0.021739916875958443, 0.027131980285048485, 0.31617048382759094, -0.24876347184181213, 0.020879417657852173, 0.0043523660860955715, -0.034872766584157944, 0.042138829827308655, -0.007310377433896065, 0.19847075641155243, -0.06115550175309181, 1.1520435810089111, -0.018012290820479393, 0.002121207769960165, -0.002037318190559745, -0.060508351773023605, -0.5719231963157654, -0.01176850963383913, 0.4031732976436615, 0.31079888343811035, -0.4478504955768585, 0.15440475940704346]} +{"t": 6.0683, "q": [-0.13980188965797424, 0.010734455659985542, 0.003655987558886409, 0.3161534368991852, -0.17467203736305237, -0.010718335397541523, -0.08509843796491623, -0.021756960079073906, 0.027118587866425514, 0.3162727355957031, -0.24874663352966309, 0.02087927795946598, 0.004539852496236563, -0.03414385765790939, 0.042262475937604904, -0.00914396345615387, 0.19829098880290985, -0.061179470270872116, 1.1520196199417114, -0.01804824359714985, 0.0020852552261203527, -0.0020133499056100845, -0.053174007683992386, -0.57569819688797, -0.0012343751732259989, 0.4031014144420624, 0.3008999228477478, -0.4460288882255554, 0.1576644629240036]} +{"t": 6.0853, "q": [-0.13980188965797424, 0.010751500725746155, 0.0036292036529630423, 0.3161534368991852, -0.17467620968818665, -0.010697117075324059, -0.08509843796491623, -0.021739916875958443, 0.027118587866425514, 0.31635797023773193, -0.24875490367412567, 0.020864982157945633, 0.004633595701307058, -0.033112529665231705, 0.042674679309129715, -0.010366355068981647, 0.19811122119426727, -0.061167486011981964, 1.1520196199417114, -0.018012290820479393, 0.0020732709672302008, -0.002037318190559745, -0.047038085758686066, -0.5772801041603088, 0.007478156592696905, 0.40316131711006165, 0.29297834634780884, -0.4447346031665802, 0.16142751276493073]} +{"t": 6.1021, "q": [-0.13982746005058289, 0.010760022327303886, 0.0036292036529630423, 0.31620457768440247, -0.1746634691953659, -0.010718308389186859, -0.08509843796491623, -0.021739916875958443, 0.027158765122294426, 0.3165625035762787, -0.24875903129577637, 0.020857833325862885, 0.004606812261044979, -0.031840767711400986, 0.04315602779388428, -0.01091762911528349, 0.19777566194534302, -0.06113153323531151, 1.1520315408706665, -0.01798832230269909, 0.0020972394850105047, -0.0020133499056100845, -0.04159724712371826, -0.5778074264526367, 0.017592841759324074, 0.4031014144420624, 0.286051481962204, -0.44379982352256775, 0.16399213671684265]} +{"t": 6.1188, "q": [-0.13981893658638, 0.010768543928861618, 0.003655987558886409, 0.3162216246128082, -0.1746634691953659, -0.010718308389186859, -0.08508139103651047, -0.021739916875958443, 0.02722572349011898, 0.3167414665222168, -0.2487550526857376, 0.02087934873998165, 0.004633595701307058, -0.030547136440873146, 0.043538421392440796, -0.010845723561942577, 0.19727233052253723, -0.061167486011981964, 1.1520915031433105, -0.018036259338259697, 0.002121207769960165, -0.0020253341645002365, -0.036671727895736694, -0.578298807144165, 0.02828277088701725, 0.40276584029197693, 0.2784055471420288, -0.44327253103256226, 0.16620922088623047]} +{"t": 6.1356, "q": [-0.13980188965797424, 0.01071741059422493, 0.003655987558886409, 0.31620457768440247, -0.17468059062957764, -0.010718370787799358, -0.08507286757230759, -0.02177400514483452, 0.02722572349011898, 0.31699714064598083, -0.24875076115131378, 0.020872129127383232, 0.004821082577109337, -0.029012184590101242, 0.04412978142499924, -0.010869692079722881, 0.19651731848716736, -0.061167486011981964, 1.1520675420761108, -0.018012290820479393, 0.0020852552261203527, -0.002049302449449897, -0.031063111498951912, -0.5781070590019226, 0.03621632978320122, 0.40208274126052856, 0.2708674669265747, -0.44276919960975647, 0.16952885687351227]} +{"t": 6.1524, "q": [-0.13980188965797424, 0.010674800723791122, 0.0036425956059247255, 0.3161960542201996, -0.17467628419399261, -0.010711274109780788, -0.08503025770187378, -0.021825138479471207, 0.02723911590874195, 0.31726983189582825, -0.24875076115131378, 0.020872129127383232, 0.005048744846135378, -0.02787625417113304, 0.044558849185705185, -0.010821755044162273, 0.1959540694952011, -0.06113153323531151, 1.1520795822143555, -0.018024275079369545, 0.002121207769960165, -0.002037318190559745, -0.02647315338253975, -0.5779392719268799, 0.04236423596739769, 0.40189099311828613, 0.26407238841056824, -0.4424456059932709, 0.17208148539066315]} +{"t": 6.1691, "q": [-0.1398700624704361, 0.010623667389154434, 0.003669379511848092, 0.3161108195781708, -0.1746634691953659, -0.010718308389186859, -0.08500469475984573, -0.021859226748347282, 0.02723911590874195, 0.3174317479133606, -0.24875934422016144, 0.02088656648993492, 0.005196055397391319, -0.02706448920071125, 0.044761158525943756, -0.010749850422143936, 0.1955585926771164, -0.06115550175309181, 1.1520795822143555, -0.018012290820479393, 0.002133192028850317, -0.002037318190559745, -0.02232661098241806, -0.5762015581130981, 0.04724181443452835, 0.4016513228416443, 0.2565702795982361, -0.44207409024238586, 0.17392705380916595]} +{"t": 6.1861, "q": [-0.13987858593463898, 0.010546969249844551, 0.003696163184940815, 0.316093772649765, -0.17467628419399261, -0.010711274109780788, -0.08497060835361481, -0.02191035822033882, 0.027306076139211655, 0.31768742203712463, -0.24875092506408691, 0.02088649570941925, 0.00516927195712924, -0.026057081297039986, 0.04509710147976875, -0.010546118021011353, 0.19541478157043457, -0.06115550175309181, 1.152199387550354, -0.018036259338259697, 0.002157160546630621, -0.002037318190559745, -0.01912682317197323, -0.5738406777381897, 0.053881075233221054, 0.4013516902923584, 0.25298699736595154, -0.44182243943214417, 0.1750895380973816]} +{"t": 6.2029, "q": [-0.13987858593463898, 0.010487314313650131, 0.0037229470908641815, 0.3161022961139679, -0.17466771602630615, -0.010711238719522953, -0.08495356142520905, -0.02197001315653324, 0.02735964208841324, 0.31804534792900085, -0.24875076115131378, 0.020872129127383232, 0.005102312192320824, -0.025321243330836296, 0.045183923095464706, -0.010222543962299824, 0.19539080560207367, -0.061167486011981964, 1.1523910760879517, -0.018072212114930153, 0.002193113323301077, -0.002049302449449897, -0.017053551971912384, -0.5718153119087219, 0.05971739441156387, 0.40074050426483154, 0.2505302429199219, -0.44147488474845886, 0.17554493248462677]} +{"t": 6.2196, "q": [-0.13990415632724762, 0.010402092710137367, 0.0038568659219890833, 0.3161363899707794, -0.17467188835144043, -0.010690021328628063, -0.08496208488941193, -0.02202966809272766, 0.027506953105330467, 0.31822431087493896, -0.24875076115131378, 0.020872129127383232, 0.004968393128365278, -0.02357860468327999, 0.045464254915714264, -0.009839048609137535, 0.19545072317123413, -0.061167486011981964, 1.1527386903762817, -0.01804824359714985, 0.002205097349360585, -0.002037318190559745, -0.015315840020775795, -0.5692986249923706, 0.06457100808620453, 0.39998549222946167, 0.24832512438297272, -0.44112735986709595, 0.1757366806268692]} +{"t": 6.2364, "q": [-0.13992120325565338, 0.010325394570827484, 0.003923825453966856, 0.31620457768440247, -0.17466771602630615, -0.010711238719522953, -0.08496208488941193, -0.02208080142736435, 0.027640873566269875, 0.31822431087493896, -0.24873821437358856, 0.020879225805401802, 0.004955001175403595, -0.021439917385578156, 0.045451585203409195, -0.00953944306820631, 0.19549866020679474, -0.061167486011981964, 1.1530861854553223, -0.01804824359714985, 0.002229065867140889, -0.002049302449449897, -0.014057496562600136, -0.5663625001907349, 0.06815429031848907, 0.3993263840675354, 0.24655146896839142, -0.4409715533256531, 0.1757366806268692]} +{"t": 6.2532, "q": [-0.13983598351478577, 0.010265739634633064, 0.004030960611999035, 0.31626421213150024, -0.17467203736305237, -0.010718335397541523, -0.08496208488941193, -0.02214045636355877, 0.027761399745941162, 0.31841179728507996, -0.24873821437358856, 0.020879225805401802, 0.004901433829218149, -0.019339049234986305, 0.04530005529522896, -0.009359680116176605, 0.19554659724235535, -0.061167486011981964, 1.1533138751983643, -0.01806022785604, 0.002205097349360585, -0.002037318190559745, -0.013757891021668911, -0.5631147623062134, 0.07013168931007385, 0.3987990617752075, 0.24526914954185486, -0.4410194754600525, 0.17574866116046906]} +{"t": 6.2699, "q": [-0.13976779580116272, 0.010214606299996376, 0.004178271628916264, 0.31630682945251465, -0.17467620968818665, -0.010697117075324059, -0.08495356142520905, -0.022225676104426384, 0.02788192592561245, 0.31850555539131165, -0.24873390793800354, 0.02087198942899704, 0.004740730859339237, -0.017066827043890953, 0.04479484632611275, -0.009155947715044022, 0.19559453427791595, -0.06109558045864105, 1.1534696817398071, -0.01810816489160061, 0.002229065867140889, -0.0020253341645002365, -0.01390170119702816, -0.5588603615760803, 0.07064700871706009, 0.39829573035240173, 0.24425049126148224, -0.44128313660621643, 0.17556889355182648]} +{"t": 6.2867, "q": [-0.13961440324783325, 0.010154951363801956, 0.004298798739910126, 0.31629830598831177, -0.17466771602630615, -0.010711238719522953, -0.08494503796100616, -0.022251242771744728, 0.02802923694252968, 0.3186759948730469, -0.2487424910068512, 0.020886443555355072, 0.004312190227210522, -0.014943531714379787, 0.04437865689396858, -0.00900015328079462, 0.1956304907798767, -0.06089184805750847, 1.15362548828125, -0.018156101927161217, 0.002229065867140889, -0.002037318190559745, -0.014093449339270592, -0.5539109110832214, 0.07023954391479492, 0.3978283405303955, 0.24357937276363373, -0.4416187107563019, 0.17534120380878448]} +{"t": 6.3035, "q": [-0.1395462304353714, 0.010223129764199257, 0.00445950124412775, 0.3163750171661377, -0.17467620968818665, -0.010697117075324059, -0.08497060835361481, -0.022225676104426384, 0.028176547959446907, 0.3189998269081116, -0.24874678254127502, 0.02089366316795349, 0.0037631227169185877, -0.013074440881609917, 0.04420274496078491, -0.008772453293204308, 0.19573834538459778, -0.0607600212097168, 1.1538891792297363, -0.018251974135637283, 0.002241050126031041, -0.0020253341645002365, -0.014045512303709984, -0.5488415360450745, 0.0697721615433693, 0.39701342582702637, 0.2425367534160614, -0.44193029403686523, 0.17526929080486298]} +{"t": 6.3202, "q": [-0.13943544030189514, 0.010257218033075333, 0.0045264605432748795, 0.31643468141555786, -0.17466771602630615, -0.010711238719522953, -0.08498764783143997, -0.022191587835550308, 0.02825690060853958, 0.31924697756767273, -0.24873821437358856, 0.020879225805401802, 0.0031872710678726435, -0.011279977858066559, 0.044107649475336075, -0.008508799597620964, 0.19587017595767975, -0.060460414737463, 1.1542487144470215, -0.018251974135637283, 0.002241050126031041, -0.0020732709672302008, -0.014117416925728321, -0.5447549223899841, 0.06822619587182999, 0.3961026072502136, 0.24045149981975555, -0.4421579837799072, 0.1751134991645813]} +{"t": 6.337, "q": [-0.13942691683769226, 0.01029982790350914, 0.004553244449198246, 0.3165113627910614, -0.1746634691953659, -0.010718308389186859, -0.0850217342376709, -0.022114889696240425, 0.028337251394987106, 0.31946852803230286, -0.2487424910068512, 0.020886443555355072, 0.0028926494996994734, -0.009793990291655064, 0.04377898946404457, -0.008376973681151867, 0.19591811299324036, -0.06036454066634178, 1.154596209526062, -0.018275942653417587, 0.002241050126031041, -0.002037318190559745, -0.01408146508038044, -0.5422981977462769, 0.06766293197870255, 0.39559927582740784, 0.2379947304725647, -0.44222989678382874, 0.17496968805789948]} +{"t": 6.3538, "q": [-0.13937577605247498, 0.010393571108579636, 0.004539852496236563, 0.3165625035762787, -0.1746634691953659, -0.010718308389186859, -0.0850217342376709, -0.022072279825806618, 0.028310466557741165, 0.3195452392101288, -0.24873390793800354, 0.02087198942899704, 0.00287925754673779, -0.008495260961353779, 0.04339591786265373, -0.008388957940042019, 0.19576232135295868, -0.06029263883829117, 1.1549676656723022, -0.01829991117119789, 0.002253034384921193, -0.0020253341645002365, -0.013889716938138008, -0.5402368903160095, 0.06760301440954208, 0.3952637314796448, 0.2367723435163498, -0.44220593571662903, 0.17493373155593872]} +{"t": 6.3705, "q": [-0.1392735242843628, 0.010470269247889519, 0.0045130690559744835, 0.3167329430580139, -0.17466339468955994, -0.010704142972826958, -0.08500469475984573, -0.022004101425409317, 0.02825690060853958, 0.3197753429412842, -0.24874235689640045, 0.02087206020951271, 0.0029328251257538795, -0.0073537747375667095, 0.043251100927591324, -0.008364989422261715, 0.19541478157043457, -0.060280654579401016, 1.1552073955535889, -0.01829991117119789, 0.002229065867140889, -0.0020253341645002365, -0.013410348445177078, -0.5371689200401306, 0.06755507737398148, 0.3955153822898865, 0.23575368523597717, -0.4421460032463074, 0.1748138964176178]} +{"t": 6.3872, "q": [-0.13920533657073975, 0.010555490851402283, 0.0045130690559744835, 0.3168181777000427, -0.17465484142303467, -0.010704115964472294, -0.08500469475984573, -0.02191035822033882, 0.02825690060853958, 0.31984350085258484, -0.24874235689640045, 0.02087206020951271, 0.0029060414526611567, -0.005964210722595453, 0.043355729430913925, -0.008341020904481411, 0.1952829509973526, -0.06029263883829117, 1.1554590463638306, -0.018311895430088043, 0.002253034384921193, -0.002061286708340049, -0.012535499408841133, -0.533561646938324, 0.06762698292732239, 0.39544346928596497, 0.23516644537448883, -0.44212204217910767, 0.17469404637813568]} +{"t": 6.404, "q": [-0.1391797810792923, 0.010615145787596703, 0.004539852496236563, 0.3168863356113434, -0.17466771602630615, -0.010711238719522953, -0.08501321822404861, -0.021876269951462746, 0.028364034369587898, 0.319903165102005, -0.24872121214866638, 0.02086470276117325, 0.00258463597856462, -0.004769562277942896, 0.043618205934762955, -0.008341020904481411, 0.19527097046375275, -0.06029263883829117, 1.1558066606521606, -0.018323879688978195, 0.002229065867140889, -0.002061286708340049, -0.011732556857168674, -0.5296188592910767, 0.067674919962883, 0.3951318860054016, 0.23443540930747986, -0.44220593571662903, 0.17475397884845734]} +{"t": 6.4207, "q": [-0.139128640294075, 0.010623667389154434, 0.004660379607230425, 0.31699714064598083, -0.17465929687023163, -0.010739525780081749, -0.08503025770187378, -0.021859226748347282, 0.02856491319835186, 0.3200054466724396, -0.24873390793800354, 0.02087198942899704, 0.0018882573349401355, -0.0038980019744485617, 0.04379930719733238, -0.008293083868920803, 0.19519905745983124, -0.060280654579401016, 1.1567294597625732, -0.01829991117119789, 0.002241050126031041, -0.002049302449449897, -0.011361045762896538, -0.5263591408729553, 0.06790261715650558, 0.3939334750175476, 0.23386016488075256, -0.4424695670604706, 0.17469404637813568]} +{"t": 6.4374, "q": [-0.13900932669639587, 0.010632190853357315, 0.004821082577109337, 0.3170226812362671, -0.1746591478586197, -0.01071121171116829, -0.08503878116607666, -0.021859226748347282, 0.028819359838962555, 0.32007360458374023, -0.24871279299259186, 0.020864631980657578, 0.0014061490073800087, -0.0033947776537388563, 0.043720491230487823, -0.008388957940042019, 0.19476762413978577, -0.06029263883829117, 1.1582993268966675, -0.018311895430088043, 0.002265018643811345, -0.002061286708340049, -0.011540808714926243, -0.5228477716445923, 0.0679745227098465, 0.392183780670166, 0.2332489788532257, -0.4433444142341614, 0.17468206584453583]} +{"t": 6.4541, "q": [-0.13883888721466064, 0.010606624186038971, 0.005062136333435774, 0.3171164393424988, -0.1746506690979004, -0.010725333355367184, -0.0850217342376709, -0.021859226748347282, 0.02908719703555107, 0.3202269971370697, -0.24870850145816803, 0.020857414230704308, 0.0013391895918175578, -0.0031245278660207987, 0.04353293031454086, -0.008364989422261715, 0.19424031674861908, -0.060340575873851776, 1.1595935821533203, -0.01829991117119789, 0.002277002902701497, -0.002037318190559745, -0.012271846644580364, -0.5184375643730164, 0.06774682551622391, 0.38850462436676025, 0.23276960849761963, -0.4449023902416229, 0.17462214827537537]} +{"t": 6.4708, "q": [-0.13874514400959015, 0.010606624186038971, 0.005196055397391319, 0.3171420097351074, -0.17465491592884064, -0.010718272998929024, -0.08500469475984573, -0.021859226748347282, 0.02924790047109127, 0.3203548491001129, -0.2487170696258545, 0.020871851593255997, 0.001419540960341692, -0.0031247467268258333, 0.0433071069419384, -0.008388957940042019, 0.19308984279632568, -0.06041247770190239, 1.1603246927261353, -0.018263958394527435, 0.002253034384921193, -0.002061286708340049, -0.012883041985332966, -0.5140873193740845, 0.06717158108949661, 0.3847775161266327, 0.23276960849761963, -0.44661611318588257, 0.17440642416477203]} +{"t": 6.4876, "q": [-0.13871105015277863, 0.01059810258448124, 0.005236231256276369, 0.31722721457481384, -0.17464211583137512, -0.010725297965109348, -0.08500469475984573, -0.0218507032841444, 0.029328251257538795, 0.3204997181892395, -0.24872121214866638, 0.02086470276117325, 0.0015400679549202323, -0.0032150002662092447, 0.043193988502025604, -0.008329036645591259, 0.19183149933815002, -0.06053232029080391, 1.1606961488723755, -0.018275942653417587, 0.002241050126031041, -0.002061286708340049, -0.013146694749593735, -0.5090180039405823, 0.06641657650470734, 0.38196122646331787, 0.2329254001379013, -0.4478265345096588, 0.17434650659561157]} +{"t": 6.5043, "q": [-0.1387280970811844, 0.010572535917162895, 0.005276407115161419, 0.31732097268104553, -0.1746464967727661, -0.01074656005948782, -0.08498764783143997, -0.021893315017223358, 0.029448779299855232, 0.32057642936706543, -0.2487088143825531, 0.020886147394776344, 0.0015936355339363217, -0.0032525556161999702, 0.0431986078619957, -0.008448879234492779, 0.1906929910182953, -0.06052033603191376, 1.161031723022461, -0.018263958394527435, 0.002241050126031041, -0.002061286708340049, -0.013518205843865871, -0.5031337141990662, 0.06579339504241943, 0.37921684980392456, 0.23346468806266785, -0.4493005871772766, 0.17435848712921143]} +{"t": 6.521, "q": [-0.13875366747379303, 0.01053844764828682, 0.005396933760493994, 0.3173806369304657, -0.17465922236442566, -0.010725368745625019, -0.08499617129564285, -0.02190183661878109, 0.02955591306090355, 0.32061901688575745, -0.24869197607040405, 0.020886007696390152, 0.0015132841654121876, -0.003267597872763872, 0.04317975416779518, -0.008460862562060356, 0.18973425030708313, -0.06053232029080391, 1.1612714529037476, -0.018263958394527435, 0.002241050126031041, -0.002061286708340049, -0.014512896537780762, -0.4961588978767395, 0.06475076824426651, 0.3765323758125305, 0.235022634267807, -0.45036718249320984, 0.17432254552841187]} +{"t": 6.5378, "q": [-0.13865140080451965, 0.010470269247889519, 0.005584420636296272, 0.3173806369304657, -0.1746549904346466, -0.010732430033385754, -0.08499617129564285, -0.021952969953417778, 0.02977018430829048, 0.3206445872783661, -0.24868784844875336, 0.0208931565284729, 0.0015802436973899603, -0.0031700648833066225, 0.043052952736616135, -0.008448879234492779, 0.18865567445755005, -0.06054430454969406, 1.161618947982788, -0.01828792691230774, 0.002241050126031041, -0.002061286708340049, -0.016022909432649612, -0.48939982056617737, 0.06240186095237732, 0.3740636110305786, 0.23743146657943726, -0.4511461555957794, 0.17439444363117218]} +{"t": 6.5545, "q": [-0.13860879838466644, 0.010393571108579636, 0.005651379935443401, 0.3173806369304657, -0.17465491592884064, -0.010718272998929024, -0.08499617129564285, -0.022038189694285393, 0.02989071048796177, 0.3206360638141632, -0.24869641661643982, 0.02090759202837944, 0.001673986902460456, -0.0029523330740630627, 0.04293584078550339, -0.008364989422261715, 0.18757709860801697, -0.06052033603191376, 1.16184663772583, -0.01828792691230774, 0.002241050126031041, -0.002061286708340049, -0.017892448231577873, -0.48333579301834106, 0.05944175645709038, 0.37167876958847046, 0.23998410999774933, -0.45233258605003357, 0.17468206584453583]} +{"t": 6.5712, "q": [-0.13857470452785492, 0.010385049507021904, 0.005745123140513897, 0.31732097268104553, -0.1746549904346466, -0.010732430033385754, -0.08499617129564285, -0.022055234760046005, 0.030011238530278206, 0.32065311074256897, -0.24868370592594147, 0.020900322124361992, 0.0014865003759041429, -0.0027045966126024723, 0.042771752923727036, -0.008317052386701107, 0.1865943819284439, -0.060460414737463, 1.1621222496032715, -0.018311895430088043, 0.002241050126031041, -0.0020852552261203527, -0.0195582564920187, -0.47555801272392273, 0.05560680478811264, 0.36943772435188293, 0.24423851072788239, -0.4550410211086273, 0.174538254737854]} +{"t": 6.588, "q": [-0.13838721811771393, 0.010427659377455711, 0.005905826110392809, 0.3172954022884369, -0.1746506690979004, -0.010725333355367184, -0.08500469475984573, -0.02202966809272766, 0.03022550791501999, 0.3206786811351776, -0.24867971241474152, 0.02092183753848076, 0.0012856220128014684, -0.002411620458588004, 0.04265443608164787, -0.008341020904481411, 0.18607906997203827, -0.060376524925231934, 1.1623740196228027, -0.018311895430088043, 0.002241050126031041, -0.002061286708340049, -0.020433103665709496, -0.4667735993862152, 0.05077716335654259, 0.3663218021392822, 0.25241175293922424, -0.46035003662109375, 0.1745622307062149]} +{"t": 6.6048, "q": [-0.13831904530525208, 0.010495835915207863, 0.0059995693154633045, 0.31717610359191895, -0.17465922236442566, -0.010725368745625019, -0.0850217342376709, -0.021952969953417778, 0.030346035957336426, 0.32071277499198914, -0.24867956340312958, 0.02090747095644474, 0.0008436894277110696, -0.001833152724429965, 0.042377226054668427, -0.008341020904481411, 0.18581540882587433, -0.060340575873851776, 1.162517786026001, -0.018335863947868347, 0.002241050126031041, -0.0020732709672302008, -0.020984377712011337, -0.45737797021865845, 0.04458131641149521, 0.3611925542354584, 0.26020148396492004, -0.4641610383987427, 0.1745142936706543]} +{"t": 6.6215, "q": [-0.1383019983768463, 0.010589579120278358, 0.006012961268424988, 0.317099392414093, -0.17465922236442566, -0.010725368745625019, -0.08503025770187378, -0.021876269951462746, 0.03041299432516098, 0.320721298456192, -0.24867956340312958, 0.02090747095644474, 0.0004151487664785236, -0.0007664224831387401, 0.04174729436635971, -0.007837682962417603, 0.18568359315395355, -0.060268670320510864, 1.1628652811050415, -0.018383800983428955, 0.002241050126031041, -0.0020732709672302008, -0.021871211007237434, -0.44723930954933167, 0.037103161215782166, 0.3550446629524231, 0.2684466540813446, -0.4684513807296753, 0.17450229823589325]} +{"t": 6.6382, "q": [-0.13818268477916718, 0.010606624186038971, 0.006039745174348354, 0.3170141577720642, -0.1746549904346466, -0.010732430033385754, -0.08503025770187378, -0.021859226748347282, 0.03038621135056019, 0.3207383453845978, -0.2486838549375534, 0.02091468870639801, 0.0002544460294302553, 0.0003833458758890629, 0.04106459766626358, -0.007022756151854992, 0.18540795147418976, -0.06025668606162071, 1.163548469543457, -0.01847967505455017, 0.002253034384921193, -0.0020732709672302008, -0.022170817479491234, -0.43822717666625977, 0.03032008931040764, 0.34881284832954407, 0.27854934334754944, -0.4713994860649109, 0.1745622307062149]} +{"t": 6.6552, "q": [-0.13807189464569092, 0.010649234056472778, 0.00605313666164875, 0.3169800937175751, -0.1746506690979004, -0.010725333355367184, -0.08503025770187378, -0.021825138479471207, 0.030372818931937218, 0.3207809329032898, -0.24867543578147888, 0.02091461978852749, 0.00012052706006215885, 0.0017964593134820461, 0.040347788482904434, -0.0063037024810910225, 0.1853000968694687, -0.06023271754384041, 1.164674997329712, -0.01853959634900093, 0.002253034384921193, -0.002061286708340049, -0.022230736911296844, -0.4292150139808655, 0.024399882182478905, 0.3426889181137085, 0.2879449725151062, -0.47367650270462036, 0.17455023527145386]} +{"t": 6.6719, "q": [-0.13802076876163483, 0.01078558899462223, 0.00605313666164875, 0.3169800937175751, -0.1746506690979004, -0.010725333355367184, -0.0850217342376709, -0.021688783541321754, 0.03041299432516098, 0.3207639157772064, -0.24867543578147888, 0.02091461978852749, 2.6783791327034123e-05, 0.003322805278003216, 0.039774905890226364, -0.006052033975720406, 0.1851203292608261, -0.06019676476716995, 1.166460633277893, -0.018683407455682755, 0.002277002902701497, -0.0020852552261203527, -0.02208692766726017, -0.4210657477378845, 0.02004960924386978, 0.33673277497291565, 0.29973745346069336, -0.4765647053718567, 0.1745622307062149]} +{"t": 6.6887, "q": [-0.13792702555656433, 0.010921942070126534, 0.006039745174348354, 0.31699714064598083, -0.1746506690979004, -0.010725333355367184, -0.0850217342376709, -0.02159504033625126, 0.03043977916240692, 0.32089173793792725, -0.2486879825592041, 0.020907539874315262, -0.00036158118746243417, 0.005270278546959162, 0.03917092829942703, -0.005932191386818886, 0.18508437275886536, -0.060148827731609344, 1.1688814163208008, -0.01877928152680397, 0.002265018643811345, -0.0020732709672302008, -0.022458437830209732, -0.41194576025009155, 0.016538230702280998, 0.3307526409626007, 0.310858815908432, -0.48174187541007996, 0.17452627420425415]} +{"t": 6.7063, "q": [-0.13791850209236145, 0.011049773544073105, 0.006039745174348354, 0.31703972816467285, -0.1746549904346466, -0.010732430033385754, -0.0850217342376709, -0.021518342196941376, 0.030493346974253654, 0.3209599256515503, -0.24867956340312958, 0.02090747095644474, -0.0006294191116467118, 0.007150913588702679, 0.03845608979463577, -0.006076002027839422, 0.1850244551897049, -0.06007692217826843, 1.1718535423278809, -0.019030949100852013, 0.002265018643811345, -0.0020972394850105047, -0.022554311901330948, -0.40465936064720154, 0.013590111397206783, 0.32500019669532776, 0.3224236071109772, -0.48663145303726196, 0.17455023527145386]} +{"t": 6.723, "q": [-0.13782475888729095, 0.011152040213346481, 0.006039745174348354, 0.31703972816467285, -0.17465074360370636, -0.010739490389823914, -0.0850217342376709, -0.021399032324552536, 0.030520129948854446, 0.32107070088386536, -0.24867956340312958, 0.02090747095644474, -0.0009776083752512932, 0.00955167692154646, 0.03739074617624283, -0.00589623861014843, 0.18494056165218353, -0.05989715829491615, 1.1739147901535034, -0.019282618537545204, 0.002265018643811345, -0.0020972394850105047, -0.022470422089099884, -0.3940053880214691, 0.007334345951676369, 0.31656330823898315, 0.34032803773880005, -0.49255165457725525, 0.17468206584453583]} +{"t": 6.7397, "q": [-0.13778214156627655, 0.011228738352656364, 0.006079920567572117, 0.3170738220214844, -0.17464211583137512, -0.010725297965109348, -0.0850217342376709, -0.021288244053721428, 0.03057369776070118, 0.3211814761161804, -0.24867528676986694, 0.02090025320649147, -0.0012856220128014684, 0.010665631853044033, 0.03697848692536354, -0.0057284594513475895, 0.1848207265138626, -0.059489693492650986, 1.1760120391845703, -0.019761987030506134, 0.002229065867140889, -0.0021092237439006567, -0.022434469312429428, -0.38359108567237854, -0.0008149273344315588, 0.3091930150985718, 0.3548888564109802, -0.4974771738052368, 0.17468206584453583]} +{"t": 6.7565, "q": [-0.13774806261062622, 0.011271348223090172, 0.006066528614610434, 0.3171079158782959, -0.17465491592884064, -0.010718272998929024, -0.08503878116607666, -0.021203022450208664, 0.030707616358995438, 0.32124966382980347, -0.24867528676986694, 0.02090025320649147, -0.0017543383873999119, 0.012051277793943882, 0.036307383328676224, -0.0055367122404277325, 0.18459302186965942, -0.05884254723787308, 1.1790679693222046, -0.020672788843512535, 0.002253034384921193, -0.002133192028850317, -0.022374548017978668, -0.37335655093193054, -0.008808405138552189, 0.3017508089542389, 0.37155890464782715, -0.503517210483551, 0.17457421123981476]} +{"t": 6.7733, "q": [-0.13768839836120605, 0.011271348223090172, 0.006106704473495483, 0.3171931505203247, -0.17465506494045258, -0.010746586136519909, -0.08503878116607666, -0.021220067515969276, 0.03076118417084217, 0.32126671075820923, -0.24867528676986694, 0.02090025320649147, -0.0024775005877017975, 0.013278922066092491, 0.03573589399456978, -0.005045359022915363, 0.18429341912269592, -0.05723666027188301, 1.1814289093017578, -0.021619541570544243, 0.002253034384921193, -0.002145176287740469, -0.022194785997271538, -0.364284485578537, -0.015807192772626877, 0.29387718439102173, 0.38875627517700195, -0.507927417755127, 0.174538254737854]} +{"t": 6.7902, "q": [-0.1374327391386032, 0.011254305019974709, 0.006160271819680929, 0.3172442615032196, -0.17465081810951233, -0.010753655806183815, -0.08500469475984573, -0.021254155784845352, 0.030841534957289696, 0.3214541971683502, -0.24867084622383118, 0.020878668874502182, -0.004365758039057255, 0.01583372801542282, 0.03431834280490875, -0.00339153571985662, 0.1841016709804535, -0.05442036688327789, 1.1828910112380981, -0.022542327642440796, 0.002241050126031041, -0.002157160546630621, -0.02232661098241806, -0.35498473048210144, -0.022278673946857452, 0.2862671911716461, 0.40475523471832275, -0.5125413537025452, 0.17450229823589325]} +{"t": 6.8069, "q": [-0.13727934658527374, 0.01126282662153244, 0.006160271819680929, 0.31727835536003113, -0.17462952435016632, -0.010774810798466206, -0.08495356142520905, -0.021228589117527008, 0.030854927375912666, 0.3215138614177704, -0.24867956340312958, 0.02090747095644474, -0.0076467725448310375, 0.018404832109808922, 0.032886020839214325, -0.001282312092371285, 0.18413762748241425, -0.05078914761543274, 1.1842212677001953, -0.024148214608430862, 0.002253034384921193, -0.002145176287740469, -0.02341717667877674, -0.3467515707015991, -0.027156254276633263, 0.27999943494796753, 0.4196276366710663, -0.5160407423973083, 0.1744903177022934]} +{"t": 6.8237, "q": [-0.13716855645179749, 0.011305436491966248, 0.00613348837941885, 0.3172954022884369, -0.1745276004076004, -0.010930154472589493, -0.08496208488941193, -0.02117745764553547, 0.030868319794535637, 0.32162463665008545, -0.24868784844875336, 0.0208931565284729, -0.010606381110846996, 0.021173356100916862, 0.0313226543366909, 0.0008388957940042019, 0.18425746262073517, -0.04597148671746254, 1.1858271360397339, -0.026329342275857925, 0.002241050126031041, -0.002133192028850317, -0.023860592395067215, -0.33735594153404236, -0.03456250578165054, 0.27147865295410156, 0.43531498312950134, -0.5184375643730164, 0.1744903177022934]} +{"t": 6.8404, "q": [-0.1370662897825241, 0.011399181559681892, 0.006106704473495483, 0.3172954022884369, -0.17442567646503448, -0.011085506528615952, -0.08494503796100616, -0.021075190976262093, 0.030854927375912666, 0.32176098227500916, -0.2486751228570938, 0.020885886624455452, -0.013619557954370975, 0.023753875866532326, 0.02999837137758732, 0.002277002902701497, 0.18434135615825653, -0.04225637763738632, 1.1883916854858398, -0.028079040348529816, 0.002241050126031041, -0.002145176287740469, -0.023968450725078583, -0.32817602157592773, -0.04343083128333092, 0.26341328024864197, 0.4488811492919922, -0.5222964882850647, 0.17450229823589325]} +{"t": 6.8572, "q": [-0.13698959350585938, 0.011475879698991776, 0.0059995693154633045, 0.31730392575263977, -0.17429828643798828, -0.011283213272690773, -0.08494503796100616, -0.02099849283695221, 0.030881712213158607, 0.3219740390777588, -0.2486751228570938, 0.020885886624455452, -0.01679343730211258, 0.026230106130242348, 0.028651701286435127, 0.003942809998989105, 0.184401273727417, -0.040111202746629715, 1.1915075778961182, -0.02937333658337593, 0.002241050126031041, -0.002121207769960165, -0.0240643247961998, -0.31891220808029175, -0.05134041979908943, 0.2550722360610962, 0.4637775421142578, -0.5276175141334534, 0.1742626130580902]} +{"t": 6.8739, "q": [-0.13691289722919464, 0.011714499443769455, 0.006012961268424988, 0.3173465430736542, -0.17418362200260162, -0.011459755711257458, -0.08497060835361481, -0.0208877045661211, 0.031015630811452866, 0.32199960947036743, -0.24865813553333282, 0.02087136171758175, -0.019284330308437347, 0.028398435562849045, 0.027319906279444695, 0.005009406246244907, 0.18441325426101685, -0.03837348893284798, 1.1947433948516846, -0.030104374513030052, 0.002253034384921193, -0.002157160546630621, -0.023309318348765373, -0.31077492237091064, -0.05860286206007004, 0.24683909118175507, 0.4773916006088257, -0.5315243601799011, 0.1741427779197693]} +{"t": 6.8908, "q": [-0.13671688735485077, 0.01192755252122879, 0.006066528614610434, 0.3173806369304657, -0.1741029918193817, -0.01159394346177578, -0.08495356142520905, -0.020742828026413918, 0.03141738846898079, 0.3220251798629761, -0.2486281543970108, 0.020806461572647095, -0.021708263084292412, 0.03010694496333599, 0.026177462190389633, 0.006219812668859959, 0.18456904590129852, -0.036204345524311066, 1.1976914405822754, -0.030523821711540222, 0.002253034384921193, -0.002133192028850317, -0.02274606004357338, -0.3043394088745117, -0.0638279840350151, 0.2413143664598465, 0.4907899796962738, -0.535419225692749, 0.17413079738616943]} +{"t": 6.9076, "q": [-0.1366146206855774, 0.012294001877307892, 0.006240623537451029, 0.3175169825553894, -0.1740095615386963, -0.011735165491700172, -0.08495356142520905, -0.02047012187540531, 0.03176557645201683, 0.32217857241630554, -0.2485215812921524, 0.020611610263586044, -0.022752830758690834, 0.031105123460292816, 0.025503654032945633, 0.006459497381001711, 0.18525215983390808, -0.03375956416130066, 1.2000163793563843, -0.03063168004155159, 0.002265018643811345, -0.002121207769960165, -0.022074943408370018, -0.2981795072555542, -0.06972422450780869, 0.2362929731607437, 0.5040205717086792, -0.5373007655143738, 0.1741188019514084]} +{"t": 6.9243, "q": [-0.1366060972213745, 0.012634888291358948, 0.006441501900553703, 0.31767889857292175, -0.17392908036708832, -0.011897685006260872, -0.08497912436723709, -0.020231502130627632, 0.03206019848585129, 0.3221870958805084, -0.2483130395412445, 0.02028663083910942, -0.022793006151914597, 0.031975239515304565, 0.0248639564961195, 0.006231796927750111, 0.185743510723114, -0.030919300392270088, 1.2014305591583252, -0.030619695782661438, 0.002253034384921193, -0.002133192028850317, -0.021871211007237434, -0.29180389642715454, -0.07860453426837921, 0.2295338660478592, 0.517706573009491, -0.5381036996841431, 0.17413079738616943]} +{"t": 6.9412, "q": [-0.13658905029296875, 0.012882029637694359, 0.006414717994630337, 0.3177896738052368, -0.17378456890583038, -0.01209533866494894, -0.08499617129564285, -0.02021445706486702, 0.03211376443505287, 0.3221870958805084, -0.24812136590480804, 0.01996179111301899, -0.022926924750208855, 0.03253600373864174, 0.024330036714673042, 0.006363623775541782, 0.1856715977191925, -0.026077674701809883, 1.202041745185852, -0.030607711523771286, 0.002229065867140889, -0.002157160546630621, -0.02015746757388115, -0.28548821806907654, -0.08743690699338913, 0.22340992093086243, 0.5324950814247131, -0.5386549830436707, 0.17399896681308746]} +{"t": 6.9579, "q": [-0.13654644787311554, 0.013257002457976341, 0.006588812451809645, 0.3179686367511749, -0.1737082600593567, -0.012236631475389004, -0.08500469475984573, -0.020137758925557137, 0.03240838646888733, 0.3222041428089142, -0.2478787750005722, 0.019579043611884117, -0.02319476380944252, 0.03264361247420311, 0.02398575283586979, 0.006603308022022247, 0.1855757236480713, -0.02292582206428051, 1.202940583229065, -0.030619695782661438, 0.002241050126031041, -0.002157160546630621, -0.018671423196792603, -0.27944815158843994, -0.0944356918334961, 0.2187241017818451, 0.5464566946029663, -0.5387388467788696, 0.1738431751728058]} +{"t": 6.9749, "q": [-0.136572003364563, 0.01391320489346981, 0.007124488707631826, 0.31822431087493896, -0.17367854714393616, -0.01228607352823019, -0.08504730463027954, -0.020120713859796524, 0.03289049491286278, 0.32217004895210266, -0.24757227301597595, 0.019088009372353554, -0.023261722177267075, 0.03256242722272873, 0.02371649630367756, 0.0068789455108344555, 0.18551580607891083, -0.02093644067645073, 1.2038273811340332, -0.030607711523771286, 0.002229065867140889, -0.002145176287740469, -0.01768871583044529, -0.2732643187046051, -0.10051169991493225, 0.21402627229690552, 0.5622639060020447, -0.5387747883796692, 0.17369936406612396]} +{"t": 6.9917, "q": [-0.1365634948015213, 0.014646107330918312, 0.007928002625703812, 0.318479984998703, -0.1736530214548111, -0.012314289808273315, -0.08510696142911911, -0.020061058923602104, 0.033345818519592285, 0.32208484411239624, -0.24719882011413574, 0.018653906881809235, -0.023261722177267075, 0.03237519785761833, 0.02351529523730278, 0.00701077189296484, 0.185371994972229, -0.019150791689753532, 1.2048460245132446, -0.030607711523771286, 0.002217081608250737, -0.002145176287740469, -0.017664747312664986, -0.26706844568252563, -0.10571285337209702, 0.20882512629032135, 0.5781669616699219, -0.5388107895851135, 0.1735915094614029]} +{"t": 7.0085, "q": [-0.13653792440891266, 0.015464229509234428, 0.008691340684890747, 0.3187697231769562, -0.17363610863685608, -0.012356697581708431, -0.08517513424158096, -0.01997583918273449, 0.033827926963567734, 0.32203370332717896, -0.24675355851650238, 0.018183285370469093, -0.023221546784043312, 0.032142676413059235, 0.023324474692344666, 0.0070587084628641605, 0.18522818386554718, -0.017484985291957855, 1.2062722444534302, -0.030595727264881134, 0.002205097349360585, -0.002157160546630621, -0.01788046397268772, -0.2591348886489868, -0.11266370117664337, 0.2033483386039734, 0.5936266183853149, -0.5388227701187134, 0.17354357242584229]} +{"t": 7.0252, "q": [-0.13651235401630402, 0.016716981306672096, 0.009468070231378078, 0.31905949115753174, -0.17361490428447723, -0.012392009608447552, -0.08522626757621765, -0.019873572513461113, 0.03432342782616615, 0.32198256254196167, -0.2463737428188324, 0.018050838261842728, -0.02319476380944252, 0.031962454319000244, 0.02321365661919117, 0.006771087180823088, 0.18521620333194733, -0.01629854552447796, 1.2079379558563232, -0.030607711523771286, 0.002217081608250737, -0.002133192028850317, -0.018036259338259697, -0.2513691186904907, -0.1215679794549942, 0.19908194243907928, 0.6085589528083801, -0.5388107895851135, 0.17351959645748138]} +{"t": 7.0419, "q": [-0.13645270466804504, 0.01806347444653511, 0.010057313367724419, 0.3193066120147705, -0.1736021637916565, -0.012413200922310352, -0.08532001078128815, -0.01972869783639908, 0.03479214385151863, 0.3219740390777588, -0.24607397615909576, 0.01792621798813343, -0.02316797897219658, 0.03186510503292084, 0.023106060922145844, 0.006471481639891863, 0.18518024682998657, -0.015207981690764427, 1.2097595930099487, -0.030583743005990982, 0.002205097349360585, -0.002169144805520773, -0.01828792691230774, -0.24488565325737, -0.12941764295101166, 0.19446802139282227, 0.6241024732589722, -0.5387508273124695, 0.17330388724803925]} +{"t": 7.0587, "q": [-0.13640156388282776, 0.01836174912750721, 0.01057959720492363, 0.3194344639778137, -0.1735682189464569, -0.012469703331589699, -0.08539670705795288, -0.019711652770638466, 0.035207293927669525, 0.3219740390777588, -0.24581235647201538, 0.017837855964899063, -0.023127803578972816, 0.03186548501253128, 0.02303946390748024, 0.006195844616740942, 0.18518024682998657, -0.014189322479069233, 1.2109700441360474, -0.030523821711540222, 0.002205097349360585, -0.002169144805520773, -0.019534287974238396, -0.23848608136177063, -0.13670405745506287, 0.18848788738250732, 0.6369256377220154, -0.5386190414428711, 0.17302824556827545]} +{"t": 7.0754, "q": [-0.13629929721355438, 0.018327660858631134, 0.011115273460745811, 0.319528192281723, -0.17350873351097107, -0.012554422952234745, -0.08551602065563202, -0.019541211426258087, 0.03558226674795151, 0.321956992149353, -0.2456595003604889, 0.01764982007443905, -0.023060845211148262, 0.031836651265621185, 0.022811690345406532, 0.005968144163489342, 0.1851203292608261, -0.013098758645355701, 1.212132453918457, -0.030499853193759918, 0.002133192028850317, -0.002181129064410925, -0.021331921219825745, -0.2332250028848648, -0.1426122784614563, 0.18178871273994446, 0.6526848673820496, -0.5385470986366272, 0.172968327999115]} +{"t": 7.0923, "q": [-0.13600954413414001, 0.018336182460188866, 0.01151703018695116, 0.31959637999534607, -0.17348773777484894, -0.012632214464247227, -0.0855245441198349, -0.019421901553869247, 0.03591706231236458, 0.32194846868515015, -0.24552428722381592, 0.017576850950717926, -0.022766223177313805, 0.031739868223667145, 0.022608859464526176, 0.005836317781358957, 0.1850963532924652, -0.012104067951440811, 1.2140859365463257, -0.030487868934869766, 0.002121207769960165, -0.002169144805520773, -0.022458437830209732, -0.22982148826122284, -0.1464831829071045, 0.17812153697013855, 0.6633987426757812, -0.5379119515419006, 0.1730642020702362]} +{"t": 7.109, "q": [-0.13583910465240479, 0.018353227525949478, 0.011691125109791756, 0.3196389973163605, -0.17341968417167664, -0.012716906145215034, -0.08551602065563202, -0.019294070079922676, 0.036064375191926956, 0.32194846868515015, -0.24545632302761078, 0.01749011129140854, -0.022243939340114594, 0.03149974346160889, 0.022432519122958183, 0.005560680292546749, 0.185000479221344, -0.01025849673897028, 1.2165666818618774, -0.030403979122638702, 0.0020972394850105047, -0.002205097349360585, -0.02269812300801277, -0.22749654948711395, -0.14997059106826782, 0.17494572699069977, 0.6729621887207031, -0.5367734432220459, 0.17316007614135742]} +{"t": 7.1258, "q": [-0.13584762811660767, 0.018412882462143898, 0.011704516597092152, 0.3196389973163605, -0.173343226313591, -0.012829876504838467, -0.08550749719142914, -0.01914067193865776, 0.0359974168241024, 0.3219655156135559, -0.24542641639709473, 0.01742519624531269, -0.021815398707985878, 0.031169332563877106, 0.022229351103305817, 0.005153216887265444, 0.18486866354942322, -0.007226487621665001, 1.2182084321975708, -0.03027215227484703, 0.0020732709672302008, -0.002205097349360585, -0.02274606004357338, -0.22586669027805328, -0.15299062430858612, 0.17399896681308746, 0.6795774698257446, -0.5347001552581787, 0.17332784831523895]} +{"t": 7.1425, "q": [-0.13594137132167816, 0.018378792330622673, 0.011717909015715122, 0.31961342692375183, -0.17328812181949615, -0.01293585728853941, -0.0855245441198349, -0.019029883667826653, 0.035876888781785965, 0.3219228982925415, -0.24540512263774872, 0.017389094457030296, -0.021038668230175972, 0.031011348590254784, 0.022180020809173584, 0.004769721534103155, 0.1844492107629776, -0.004577973857522011, 1.2191791534423828, -0.03021223098039627, 0.0020972394850105047, -0.002181129064410925, -0.022530343383550644, -0.22521954774856567, -0.15493206679821014, 0.17350761592388153, 0.685749351978302, -0.5334298610687256, 0.17362745106220245]} +{"t": 7.1593, "q": [-0.1360180675983429, 0.018412882462143898, 0.011650948785245419, 0.319528192281723, -0.17322863638401031, -0.013020575977861881, -0.08553306758403778, -0.018995795398950577, 0.035716187208890915, 0.32185474038124084, -0.24540095031261444, 0.01739625819027424, -0.020436033606529236, 0.030830401927232742, 0.022192951291799545, 0.003858920419588685, 0.18435333669185638, -0.0035473306197673082, 1.2194068431854248, -0.030140327289700508, 0.0020133499056100845, -0.002241050126031041, -0.022422485053539276, -0.2251116931438446, -0.15587881207466125, 0.1726926863193512, 0.6912860870361328, -0.5319437980651855, 0.17371134459972382]} +{"t": 7.176, "q": [-0.13599251210689545, 0.018412882462143898, 0.011637557297945023, 0.3194429874420166, -0.1731862723827362, -0.013105366379022598, -0.08554158359766006, -0.018936140462756157, 0.035676009953022, 0.32180359959602356, -0.2454092800617218, 0.017381947487592697, -0.01986018195748329, 0.030716998502612114, 0.0222568828612566, 0.0032117723021656275, 0.184401273727417, -0.0025286716409027576, 1.2196106910705566, -0.030128343030810356, 0.0020133499056100845, -0.002265018643811345, -0.02238653227686882, -0.2251356542110443, -0.15604659914970398, 0.17192569375038147, 0.6931555867195129, -0.5302659869194031, 0.1739869862794876]} +{"t": 7.1927, "q": [-0.13602659106254578, 0.01842992566525936, 0.011637557297945023, 0.3192555010318756, -0.17318634688854218, -0.013119522482156754, -0.08555863052606583, -0.01888500712811947, 0.03566261753439903, 0.3216502070426941, -0.24539659917354584, 0.017374660819768906, -0.01949859969317913, 0.0306414682418108, 0.02228681743144989, 0.0027084348257631063, 0.18443723022937775, -0.0015699334908276796, 1.219658613204956, -0.030080405995249748, 0.0019893813878297806, -0.002241050126031041, -0.022050974890589714, -0.22514763474464417, -0.15539944171905518, 0.1709190160036087, 0.6934192776679993, -0.5280129909515381, 0.17439444363117218]} +{"t": 7.2096, "q": [-0.13602659106254578, 0.01842140406370163, 0.011624165810644627, 0.3190680146217346, -0.17318202555179596, -0.013112426735460758, -0.08557567745447159, -0.018859442323446274, 0.035676009953022, 0.32148829102516174, -0.24540945887565613, 0.01741069182753563, -0.018949532881379128, 0.03056582808494568, 0.022335780784487724, 0.0017736653098836541, 0.18448516726493835, -0.0009587380336597562, 1.2196944952011108, -0.02991262637078762, 0.0019773971289396286, -0.002241050126031041, -0.021679462864995003, -0.22595058381557465, -0.152870774269104, 0.16987639665603638, 0.6927121877670288, -0.5254843235015869, 0.1754850149154663]} +{"t": 7.2263, "q": [-0.136197030544281, 0.018378792330622673, 0.01158398948609829, 0.3187952935695648, -0.1731777936220169, -0.013119487091898918, -0.08566942065954208, -0.01890205219388008, 0.03551530838012695, 0.32130932807922363, -0.245426207780838, 0.01739645004272461, -0.017516599968075752, 0.030459770932793617, 0.022432871162891388, -8.388957940042019e-05, 0.18456904590129852, -0.0002037318336078897, 1.2195626497268677, -0.029696909710764885, 0.0019534286111593246, -0.002265018643811345, -0.02135588973760605, -0.22847925126552582, -0.14992265403270721, 0.1694689244031906, 0.6903992295265198, -0.5227159261703491, 0.17655161023139954]} +{"t": 7.243, "q": [-0.13635043799877167, 0.018387315794825554, 0.011530422605574131, 0.31863337755203247, -0.17317362129688263, -0.013140713796019554, -0.08572907000780106, -0.01894466206431389, 0.035381387919187546, 0.3211303651332855, -0.24542196094989777, 0.01738923415541649, -0.01629793643951416, 0.030308110639452934, 0.02259739488363266, -0.001797633827663958, 0.18456904590129852, 0.00044341632747091353, 1.21937096118927, -0.02967294119298458, 0.0019654128700494766, -0.002265018643811345, -0.01913880743086338, -0.23327293992042542, -0.14455372095108032, 0.16927717626094818, 0.6869717240333557, -0.5197678208351135, 0.17782193422317505]} +{"t": 7.2598, "q": [-0.13645270466804504, 0.018353227525949478, 0.011530422605574131, 0.3183521330356598, -0.17316937446594238, -0.013147774152457714, -0.0858483836054802, -0.018970228731632233, 0.03530103713274002, 0.3209173083305359, -0.24543048441410065, 0.017403684556484222, -0.015574774704873562, 0.030194051563739777, 0.02277548983693123, -0.003583283396437764, 0.18459302186965942, 0.001318264752626419, 1.2193949222564697, -0.029445242136716843, 0.0019174760673195124, -0.002277002902701497, -0.01555552426725626, -0.24090689420700073, -0.13605691492557526, 0.1690734475851059, 0.6835682392120361, -0.5143988728523254, 0.18038655817508698]} +{"t": 7.2767, "q": [-0.13652940094470978, 0.01836174912750721, 0.011530422605574131, 0.318036824464798, -0.17316505312919617, -0.013140678405761719, -0.08601882308721542, -0.018978750333189964, 0.03530103713274002, 0.32071277499198914, -0.24542632699012756, 0.01741083152592182, -0.015266761183738708, 0.029860911890864372, 0.02304801158607006, -0.005668538622558117, 0.18471285700798035, 0.002217081608250737, 1.2194068431854248, -0.02943325787782669, 0.0019294602097943425, -0.002265018643811345, -0.01230779942125082, -0.24984712898731232, -0.12716461718082428, 0.16866599023342133, 0.6759822368621826, -0.5097969770431519, 0.1841735690832138]} +{"t": 7.2935, "q": [-0.1366146206855774, 0.018344704061746597, 0.011557205580174923, 0.31790047883987427, -0.17316512763500214, -0.013154835440218449, -0.08615517616271973, -0.01895318552851677, 0.03528764471411705, 0.32065311074256897, -0.24543464183807373, 0.017396537587046623, -0.015146234072744846, 0.02936028689146042, 0.02361869625747204, -0.0076339514926075935, 0.18607906997203827, 0.00264851376414299, 1.21937096118927, -0.029157619923353195, 0.0019054918084293604, -0.0023009711876511574, -0.010306433774530888, -0.25912290811538696, -0.11936288326978683, 0.16813868284225464, 0.6659873723983765, -0.5061178207397461, 0.18818828463554382]} +{"t": 7.3102, "q": [-0.13673393428325653, 0.018336182460188866, 0.011570597998797894, 0.31773003935813904, -0.17316505312919617, -0.013140678405761719, -0.08629152923822403, -0.018978750333189964, 0.03528764471411705, 0.320533812046051, -0.24543048441410065, 0.017403684556484222, -0.014972139149904251, 0.02878401055932045, 0.024275746196508408, -0.009946906939148903, 0.1874692291021347, 0.002948119305074215, 1.2193470001220703, -0.028929919004440308, 0.0019174760673195124, -0.0022889869287610054, -0.008772453293204308, -0.268266886472702, -0.1125079095363617, 0.16770724952220917, 0.6564958691596985, -0.5034093856811523, 0.19389277696609497]} +{"t": 7.3269, "q": [-0.13689585030078888, 0.018353227525949478, 0.011570597998797894, 0.3176021873950958, -0.17316944897174835, -0.013161931186914444, -0.08650458604097366, -0.01895318552851677, 0.03527425229549408, 0.320465624332428, -0.24544306099414825, 0.017396608367562294, -0.014824828132987022, 0.028351284563541412, 0.0248772744089365, -0.011504855938255787, 0.18870361149311066, 0.003055977402254939, 1.219310998916626, -0.02876214124262333, 0.0019054918084293604, -0.002229065867140889, -0.007909588515758514, -0.27781832218170166, -0.10495784133672714, 0.1675754189491272, 0.6455782055854797, -0.501575767993927, 0.1983509063720703]} +{"t": 7.3436, "q": [-0.13705776631832123, 0.018327660858631134, 0.011677732691168785, 0.3175084590911865, -0.17316089570522308, -0.013161895796656609, -0.0867602527141571, -0.01895318552851677, 0.035367995500564575, 0.32044005393981934, -0.24543464183807373, 0.017396537587046623, -0.014757868833839893, 0.028025010600686073, 0.025306398048996925, -0.013194631785154343, 0.18963837623596191, 0.003091930178925395, 1.219299077987671, -0.02871420420706272, 0.0019174760673195124, -0.002253034384921193, -0.007154582533985376, -0.28858014941215515, -0.09572999179363251, 0.1672997772693634, 0.634864330291748, -0.5000417828559875, 0.20176641643047333]} +{"t": 7.3603, "q": [-0.1371089071035385, 0.018344704061746597, 0.01177147589623928, 0.31741470098495483, -0.17315657436847687, -0.013154799118638039, -0.08684547245502472, -0.019029883667826653, 0.03542156517505646, 0.32033780217170715, -0.245426207780838, 0.01739645004272461, -0.014771261252462864, 0.027721215039491653, 0.025758937001228333, -0.016741963103413582, 0.1905132234096527, 0.003079945920035243, 1.2193470001220703, -0.028678251430392265, 0.0019054918084293604, -0.002277002902701497, -0.0062917182222008705, -0.3003486394882202, -0.08655007183551788, 0.16712002456188202, 0.6237549781799316, -0.4981003403663635, 0.20508605241775513]} +{"t": 7.3771, "q": [-0.13735604286193848, 0.018327660858631134, 0.011798259802162647, 0.31721869111061096, -0.17316512763500214, -0.013154835440218449, -0.0870840921998024, -0.01895318552851677, 0.035394780337810516, 0.3202610909938812, -0.24545137584209442, 0.017382314428687096, -0.014490030705928802, 0.027380257844924927, 0.026149412617087364, -0.021092236042022705, 0.1911124438047409, 0.003091930178925395, 1.219814419746399, -0.028666267171502113, 0.002121207769960165, -0.002277002902701497, -0.004805674310773611, -0.31063112616539, -0.07950334995985031, 0.1667724847793579, 0.6145750284194946, -0.4958832859992981, 0.20847758650779724]} +{"t": 7.3938, "q": [-0.13750091195106506, 0.01837027072906494, 0.011784868314862251, 0.31726130843162537, -0.17315664887428284, -0.013168956153094769, -0.08725453168153763, -0.018978750333189964, 0.035354603081941605, 0.3202355206012726, -0.24545563757419586, 0.017389530315995216, -0.013981139287352562, 0.027054181322455406, 0.026577649638056755, -0.02497512474656105, 0.1916637122631073, 0.0031158984638750553, 1.2197544574737549, -0.028666267171502113, 0.002121207769960165, -0.0022889869287610054, -0.00264851376414299, -0.32093754410743713, -0.07327155023813248, 0.16649684309959412, 0.6035135984420776, -0.49252769351005554, 0.21196499466896057]} +{"t": 7.4106, "q": [-0.1377565860748291, 0.018353227525949478, 0.011731300503015518, 0.31722721457481384, -0.17315657436847687, -0.013154799118638039, -0.08750167489051819, -0.01900431700050831, 0.03532782196998596, 0.32020995020866394, -0.24544721841812134, 0.017389461398124695, -0.013217801228165627, 0.02670576237142086, 0.026953978464007378, -0.02853444032371044, 0.1920112520456314, 0.003091930178925395, 1.2194788455963135, -0.028690235689282417, 0.002121207769960165, -0.002277002902701497, -0.00016777915880084038, -0.3320828676223755, -0.06537394970655441, 0.16647286713123322, 0.5926319360733032, -0.48965147137641907, 0.21502096951007843]} +{"t": 7.4273, "q": [-0.13792702555656433, 0.018327660858631134, 0.011798259802162647, 0.31727835536003113, -0.1731482297182083, -0.013197243213653564, -0.08797039091587067, -0.019029883667826653, 0.035381387919187546, 0.3202269971370697, -0.24544721841812134, 0.017389461398124695, -0.012976747006177902, 0.026577090844511986, 0.027074873447418213, -0.03063168004155159, 0.1923588067293167, 0.003055977402254939, 1.2194428443908691, -0.02864229865372181, 0.002121207769960165, -0.0023129554465413094, 0.002049302449449897, -0.3437075912952423, -0.056062206625938416, 0.1666766107082367, 0.5818580985069275, -0.4875662326812744, 0.21766948699951172]} +{"t": 7.444, "q": [-0.13805484771728516, 0.018344704061746597, 0.012079490348696709, 0.3172954022884369, -0.17313973605632782, -0.01321137323975563, -0.08852432668209076, -0.01900431700050831, 0.03562244400382042, 0.3202184736728668, -0.24545137584209442, 0.017382314428687096, -0.012749084271490574, 0.026584647595882416, 0.027069998905062675, -0.032824791967868805, 0.192562535405159, 0.003079945920035243, 1.2194068431854248, -0.02864229865372181, 0.0020972394850105047, -0.0023009711876511574, 0.005428853910416365, -0.3542416989803314, -0.048356350511312485, 0.16634105145931244, 0.5717673897743225, -0.4861281216144562, 0.2205217331647873]} +{"t": 7.4608, "q": [-0.13810598850250244, 0.01836174912750721, 0.012307152152061462, 0.3172527849674225, -0.17309291660785675, -0.013260744512081146, -0.08889077603816986, -0.01900431700050831, 0.03578314557671547, 0.32020995020866394, -0.24546386301517487, 0.017360854893922806, -0.012789260596036911, 0.02666017785668373, 0.02703075110912323, -0.03507782891392708, 0.1928381621837616, 0.0031398669816553593, 1.2194188833236694, -0.028690235689282417, 0.0020732709672302008, -0.002277002902701497, 0.008317052386701107, -0.3629542589187622, -0.0424121730029583, 0.16608937084674835, 0.5619403123855591, -0.48558881878852844, 0.22160030901432037]} +{"t": 7.4775, "q": [-0.13814859092235565, 0.018395837396383286, 0.01258838176727295, 0.31721869111061096, -0.17305472493171692, -0.013324308209121227, -0.08925722539424896, -0.01894466206431389, 0.0359974168241024, 0.32025256752967834, -0.24547238647937775, 0.017375288531184196, -0.012990138493478298, 0.026960961520671844, 0.02713988907635212, -0.03749864175915718, 0.19319769740104675, 0.003175819758325815, 1.2195866107940674, -0.02871420420706272, 0.002121207769960165, -0.002277002902701497, 0.011145329102873802, -0.3724936842918396, -0.03606053441762924, 0.16613730788230896, 0.5498482584953308, -0.48483380675315857, 0.22230738401412964]} +{"t": 7.4942, "q": [-0.1381741613149643, 0.018404358997941017, 0.012963354587554932, 0.31722721457481384, -0.1730123609304428, -0.013409098610281944, -0.08976003527641296, -0.018978750333189964, 0.03627864643931389, 0.32025256752967834, -0.24546386301517487, 0.017360854893922806, -0.013164233416318893, 0.027201205492019653, 0.027287889271974564, -0.03898468613624573, 0.1935092806816101, 0.0032237565610557795, 1.2196226119995117, -0.02870221994817257, 0.002157160546630621, -0.002277002902701497, 0.013602095656096935, -0.38121819496154785, -0.030008500441908836, 0.16618524491786957, 0.5375763773918152, -0.4840788245201111, 0.22267888486385345]} +{"t": 7.511, "q": [-0.13819973170757294, 0.01842140406370163, 0.013204408809542656, 0.3172357380390167, -0.1728382110595703, -0.0136703597381711, -0.09023727476596832, -0.018978750333189964, 0.036573268473148346, 0.3202355206012726, -0.24547238647937775, 0.017375288531184196, -0.01327136904001236, 0.02737388201057911, 0.027384674176573753, -0.04012318700551987, 0.19377294182777405, 0.0032956618815660477, 1.2195507287979126, -0.028726188465952873, 0.002157160546630621, -0.0022889869287610054, 0.01543568167835474, -0.3892236649990082, -0.023980434983968735, 0.16624517738819122, 0.5269583463668823, -0.4838990569114685, 0.22270286083221436]} +{"t": 7.5277, "q": [-0.13819973170757294, 0.01847253553569317, 0.01351242233067751, 0.31713348627090454, -0.172685444355011, -0.013924622908234596, -0.09063781052827835, -0.018970228731632233, 0.03685449808835983, 0.32025256752967834, -0.24547643959522247, 0.017353778705000877, -0.013284760527312756, 0.027441272512078285, 0.02745475061237812, -0.041069939732551575, 0.19397667050361633, 0.003403519978746772, 1.2196106910705566, -0.028726188465952873, 0.002169144805520773, -0.0023009711876511574, 0.01728125289082527, -0.39724111557006836, -0.017580857500433922, 0.16622120141983032, 0.5135480165481567, -0.4838031828403473, 0.22263094782829285]} +{"t": 7.5445, "q": [-0.1383019983768463, 0.0185492355376482, 0.013673125766217709, 0.31695452332496643, -0.17267702519893646, -0.01395290158689022, -0.0909360870718956, -0.01889353059232235, 0.03690806403756142, 0.3202269971370697, -0.24547238647937775, 0.017375288531184196, -0.013311544433236122, 0.027470510452985764, 0.027615675702691078, -0.04224439337849617, 0.19395269453525543, 0.003487409558147192, 1.2196346521377563, -0.028726188465952873, 0.002157160546630621, -0.0023009711876511574, 0.01907888613641262, -0.40362870693206787, -0.012954947538673878, 0.1666766107082367, 0.5010604858398438, -0.48376721143722534, 0.22257103025913239]} +{"t": 7.5612, "q": [-0.13842982053756714, 0.018642978742718697, 0.013766868971288204, 0.3167499899864197, -0.17267285287380219, -0.013974127359688282, -0.09118323028087616, -0.018850918859243393, 0.03697502240538597, 0.3201417922973633, -0.24548080563545227, 0.017375359311699867, -0.013311544433236122, 0.027439599856734276, 0.027758626267313957, -0.04332297295331955, 0.1938328593969345, 0.003523362334817648, 1.2197065353393555, -0.028750156983733177, 0.002157160546630621, -0.0023009711876511574, 0.020804615691304207, -0.4093691408634186, -0.00959936436265707, 0.16758739948272705, 0.48900431394577026, -0.48376721143722534, 0.22247515618801117]} +{"t": 7.578, "q": [-0.13859175145626068, 0.018694112077355385, 0.01384721975773573, 0.3164602220058441, -0.17267285287380219, -0.013974127359688282, -0.09146445989608765, -0.018816830590367317, 0.03708215802907944, 0.320090651512146, -0.24547643959522247, 0.017353778705000877, -0.013298152014613152, 0.027529403567314148, 0.02786155790090561, -0.044389571994543076, 0.1938088834285736, 0.00355931487865746, 1.2196825742721558, -0.02877412550151348, 0.002169144805520773, -0.002277002902701497, 0.02287788689136505, -0.41544514894485474, -0.0070587084628641605, 0.16811470687389374, 0.4760853350162506, -0.48376721143722534, 0.2223433256149292]} +{"t": 7.5947, "q": [-0.13878776133060455, 0.018711155280470848, 0.014007923193275928, 0.31624719500541687, -0.1726599782705307, -0.013966996222734451, -0.0917627289891243, -0.01882535219192505, 0.03713572770357132, 0.32006508111953735, -0.24548080563545227, 0.017375359311699867, -0.013324935920536518, 0.027536805719137192, 0.02788517251610756, -0.04533632472157478, 0.193760946393013, 0.0036072516813874245, 1.2196226119995117, -0.028798094019293785, 0.002181129064410925, -0.0023129554465413094, 0.02491520345211029, -0.42073020339012146, -0.005428853910416365, 0.16889367997646332, 0.4633820652961731, -0.483683317899704, 0.22225944697856903]} +{"t": 7.6115, "q": [-0.1388644576072693, 0.01871967688202858, 0.014141841791570187, 0.316051185131073, -0.17265574634075165, -0.013974056579172611, -0.09202691912651062, -0.01884239725768566, 0.0372830368578434, 0.3200395107269287, -0.24548912048339844, 0.01736106537282467, -0.013324935920536518, 0.02761170268058777, 0.02795987017452717, -0.04609132930636406, 0.19364111125469208, 0.0036671729758381844, 1.2194548845291138, -0.028750156983733177, 0.002169144805520773, -0.0022889869287610054, 0.026401247829198837, -0.4254160225391388, -0.0036791572347283363, 0.17095497250556946, 0.44972002506256104, -0.4834795892238617, 0.2220437228679657]} +{"t": 7.6282, "q": [-0.13898377120494843, 0.018745243549346924, 0.01436950359493494, 0.3158807158470154, -0.17266854643821716, -0.013967031612992287, -0.09229110181331635, -0.01882535219192505, 0.037416957318782806, 0.3200395107269287, -0.24550169706344604, 0.01735398732125759, -0.013338328339159489, 0.02771594189107418, 0.028176501393318176, -0.046618636697530746, 0.19304190576076508, 0.0036791572347283363, 1.2194188833236694, -0.028750156983733177, 0.002181129064410925, -0.0022889869287610054, 0.02731204964220524, -0.4300778806209564, -0.0018096179701387882, 0.17422667145729065, 0.43720850348472595, -0.48328784108161926, 0.2217680811882019]} +{"t": 7.6451, "q": [-0.1391371637582779, 0.018762288615107536, 0.014597166329622269, 0.315676212310791, -0.17266437411308289, -0.013988249003887177, -0.09264902770519257, -0.018850918859243393, 0.03764461725950241, 0.3199969232082367, -0.24550189077854156, 0.01738271489739418, -0.013311544433236122, 0.02794850431382656, 0.02833874151110649, -0.04675046354532242, 0.1916876882314682, 0.0036192359402775764, 1.21937096118927, -0.0288819819688797, 0.002145176287740469, -0.0023129554465413094, 0.02780340239405632, -0.43386489152908325, -0.00028762139845639467, 0.1780376434326172, 0.4229232966899872, -0.4831799864768982, 0.22150443494319916]} +{"t": 7.6618, "q": [-0.13917125761508942, 0.0188475102186203, 0.014891788363456726, 0.3155824542045593, -0.17265574634075165, -0.013974056579172611, -0.09285356104373932, -0.018859442323446274, 0.03784549608826637, 0.31997987627983093, -0.24550169706344604, 0.01735398732125759, -0.013365112245082855, 0.02827822044491768, 0.028637023642659187, -0.04687030613422394, 0.190117746591568, 0.0036432044580578804, 1.2194068431854248, -0.028810078278183937, 0.002169144805520773, -0.0023009711876511574, 0.028390629217028618, -0.43668121099472046, 0.0005512743373401463, 0.18166887760162354, 0.40989646315574646, -0.4832039475440979, 0.2212407886981964]} +{"t": 7.6785, "q": [-0.13929907977581024, 0.018924208357930183, 0.015159625560045242, 0.3154120147228241, -0.17267285287380219, -0.013974127359688282, -0.0931859239935875, -0.018799787387251854, 0.03814011812210083, 0.31997987627983093, -0.24549338221549988, 0.01736828126013279, -0.013351719826459885, 0.028705686330795288, 0.02895721048116684, -0.0469302274286747, 0.18824821710586548, 0.0036432044580578804, 1.2194068431854248, -0.028786109760403633, 0.002157160546630621, -0.0023009711876511574, 0.02913365140557289, -0.439293771982193, 0.0015939020086079836, 0.18531207740306854, 0.39564719796180725, -0.48301219940185547, 0.22098910808563232]} +{"t": 7.6953, "q": [-0.13939282298088074, 0.01901795156300068, 0.01538728829473257, 0.31539496779441833, -0.17266422510147095, -0.013959934934973717, -0.09337341040372849, -0.01884239725768566, 0.03836778178811073, 0.32002246379852295, -0.2455018013715744, 0.01736835017800331, -0.013324935920536518, 0.02928321622312069, 0.02931191213428974, -0.047145940363407135, 0.18637867271900177, 0.0036312201991677284, 1.2193589210510254, -0.02883404679596424, 0.002145176287740469, -0.0023009711876511574, 0.0300923902541399, -0.44119924306869507, 0.002277002902701497, 0.18768495321273804, 0.3811343014240265, -0.4828204810619354, 0.22076141834259033]} +{"t": 7.712, "q": [-0.13948656618595123, 0.019111694768071175, 0.015521206893026829, 0.3153097629547119, -0.17266429960727692, -0.013974091969430447, -0.09361203014850616, -0.01884239725768566, 0.0384749174118042, 0.3199969232082367, -0.24549773335456848, 0.01738986186683178, -0.013324935920536518, 0.030048711225390434, 0.029705874621868134, -0.047205861657857895, 0.18428143858909607, 0.00355931487865746, 1.21937096118927, -0.028786109760403633, 0.002157160546630621, -0.0023009711876511574, 0.031147001311182976, -0.44227781891822815, 0.0032237565610557795, 0.1895425021648407, 0.36686110496520996, -0.4827725291252136, 0.22046180069446564]} +{"t": 7.7289, "q": [-0.13953770697116852, 0.019299181178212166, 0.015574774704873562, 0.3152756690979004, -0.17266429960727692, -0.013974091969430447, -0.0937824696302414, -0.018876485526561737, 0.038582053035497665, 0.32002246379852295, -0.24550595879554749, 0.017361203208565712, -0.013311544433236122, 0.030882440507411957, 0.03001781739294529, -0.04724181443452835, 0.18225610256195068, 0.003451456781476736, 1.219310998916626, -0.028750156983733177, 0.002157160546630621, -0.0023009711876511574, 0.031806133687496185, -0.4423377513885498, 0.003930825740098953, 0.19100458920001984, 0.3503228724002838, -0.48273658752441406, 0.22030600905418396]} +{"t": 7.7456, "q": [-0.13952066004276276, 0.019554845988750458, 0.015722084790468216, 0.31528419256210327, -0.17266854643821716, -0.013967031612992287, -0.09379951655864716, -0.01888500712811947, 0.03866240382194519, 0.3200480341911316, -0.24549773335456848, 0.01738986186683178, -0.013311544433236122, 0.031783074140548706, 0.030398054048419, -0.04727776721119881, 0.1799311637878418, 0.003415504237636924, 1.2192630767822266, -0.02870221994817257, 0.002157160546630621, -0.0023129554465413094, 0.03226153552532196, -0.44227781891822815, 0.005716475658118725, 0.19234681129455566, 0.3347194194793701, -0.4826047420501709, 0.22012625634670258]} +{"t": 7.7624, "q": [-0.13953770697116852, 0.019597455859184265, 0.01580243743956089, 0.315233051776886, -0.17266422510147095, -0.013959934934973717, -0.09389325976371765, -0.018867963925004005, 0.03878292813897133, 0.32006508111953735, -0.24549762904644012, 0.01737549714744091, -0.01327136904001236, 0.032572098076343536, 0.030567210167646408, -0.04727776721119881, 0.17733058333396912, 0.0034274884965270758, 1.219310998916626, -0.028606345877051353, 0.002157160546630621, -0.0023129554465413094, 0.03254915401339531, -0.442433625459671, 0.009827064350247383, 0.19437214732170105, 0.3177737295627594, -0.4818737208843231, 0.21993450820446014]} +{"t": 7.7792, "q": [-0.13951213657855988, 0.019597455859184265, 0.015869395807385445, 0.31528419256210327, -0.1726599782705307, -0.013966996222734451, -0.09387621283531189, -0.018876485526561737, 0.03878292813897133, 0.3200821280479431, -0.2454935759305954, 0.01739700883626938, -0.013150841929018497, 0.03331615403294563, 0.030708814039826393, -0.04737364128232002, 0.17440642416477203, 0.003415504237636924, 1.2192511558532715, -0.02865428291261196, 0.002181129064410925, -0.0023009711876511574, 0.0327768549323082, -0.4424456059932709, 0.013805827125906944, 0.19758392870426178, 0.29986926913261414, -0.4806992709636688, 0.21995846927165985]} +{"t": 7.7962, "q": [-0.13951213657855988, 0.019640065729618073, 0.015869395807385445, 0.31529271602630615, -0.17266862094402313, -0.013981187716126442, -0.09387621283531189, -0.018850918859243393, 0.03880971297621727, 0.320090651512146, -0.24549762904644012, 0.01737549714744091, -0.012976747006177902, 0.03385034203529358, 0.030721839517354965, -0.047265782952308655, 0.1717938631772995, 0.0033555831760168076, 1.219143271446228, -0.028570393100380898, 0.002157160546630621, -0.0023129554465413094, 0.03278883919119835, -0.44242164492607117, 0.019234681501984596, 0.20237761735916138, 0.2824082672595978, -0.47934505343437195, 0.21965886652469635]} +{"t": 7.813, "q": [-0.13951213657855988, 0.019665632396936417, 0.015869395807385445, 0.31535235047340393, -0.17266862094402313, -0.013981187716126442, -0.0938676968216896, -0.018850918859243393, 0.03878292813897133, 0.3201332688331604, -0.24548941850662231, 0.017404155805706978, -0.012749084271490574, 0.03430982306599617, 0.030651003122329712, -0.047529436647892, 0.16894161701202393, 0.0033555831760168076, 1.2189993858337402, -0.028570393100380898, 0.002169144805520773, -0.0023009711876511574, 0.03308844566345215, -0.4421939551830292, 0.023309318348765373, 0.20815400779247284, 0.2652588486671448, -0.4774874746799469, 0.2197187840938568]} +{"t": 7.8297, "q": [-0.13953770697116852, 0.01968267746269703, 0.015856005251407623, 0.3153779208660126, -0.17266429960727692, -0.013974091969430447, -0.09387621283531189, -0.018867963925004005, 0.03876953944563866, 0.3201417922973633, -0.2455018013715744, 0.01736835017800331, -0.012293760664761066, 0.034708864986896515, 0.03060966543853283, -0.04816460236907005, 0.16565795242786407, 0.003403519978746772, 1.2186518907546997, -0.0285943616181612, 0.002169144805520773, -0.0022889869287610054, 0.034514568746089935, -0.44188234210014343, 0.02672482281923294, 0.2133551687002182, 0.24872061610221863, -0.47468316555023193, 0.21970680356025696]} +{"t": 7.8464, "q": [-0.13953770697116852, 0.01974233239889145, 0.015856005251407623, 0.3153779208660126, -0.17266429960727692, -0.013974091969430447, -0.09387621283531189, -0.01883387565612793, 0.03883649781346321, 0.3201417922973633, -0.24550200998783112, 0.017397096380591393, -0.012079490348696709, 0.03519080579280853, 0.03053312376141548, -0.048536110669374466, 0.1630573719739914, 0.003403519978746772, 1.2183762788772583, -0.02858237735927105, 0.002169144805520773, -0.0023009711876511574, 0.035712990909814835, -0.4416426718235016, 0.029505163431167603, 0.21836456656455994, 0.23217038810253143, -0.47138750553131104, 0.21947909891605377]} +{"t": 7.8632, "q": [-0.139503613114357, 0.019725287333130836, 0.015909571200609207, 0.3154120147228241, -0.1726599782705307, -0.013966996222734451, -0.09385917335748672, -0.01883387565612793, 0.038916848599910736, 0.3201673626899719, -0.24550189077854156, 0.01738271489739418, -0.012039314024150372, 0.03569478541612625, 0.03053629957139492, -0.049075402319431305, 0.15995346009731293, 0.003379551460966468, 1.218400239944458, -0.028558408841490746, 0.002181129064410925, -0.0023129554465413094, 0.03754657879471779, -0.4414149820804596, 0.03203383460640907, 0.22458438575267792, 0.21414612233638763, -0.46779224276542664, 0.21943116188049316]} +{"t": 7.88, "q": [-0.13952066004276276, 0.019733808934688568, 0.01596313901245594, 0.315420538187027, -0.17266854643821716, -0.013967031612992287, -0.09391030669212341, -0.018867963925004005, 0.03893024101853371, 0.3201417922973633, -0.24550625681877136, 0.017404312267899513, -0.012052706442773342, 0.03619936481118202, 0.03046322613954544, -0.049554772675037384, 0.15722104907035828, 0.003403519978746772, 1.2182804346084595, -0.028558408841490746, 0.002169144805520773, -0.0023129554465413094, 0.03985953330993652, -0.4412591755390167, 0.03211772441864014, 0.22952188551425934, 0.196577250957489, -0.46556317806243896, 0.21919147670269012]} +{"t": 7.8967, "q": [-0.139503613114357, 0.01968267746269703, 0.016056882217526436, 0.3154461085796356, -0.17266429960727692, -0.013974091969430447, -0.09394439309835434, -0.01888500712811947, 0.03905076906085014, 0.32015883922576904, -0.2454935759305954, 0.01739700883626938, -0.012213408946990967, 0.036816079169511795, 0.0304871778935194, -0.04990231245756149, 0.15483619272708893, 0.0034274884965270758, 1.2182564735412598, -0.02853444032371044, 0.002157160546630621, -0.0023129554465413094, 0.042999401688575745, -0.4411153495311737, 0.03197391331195831, 0.23218238353729248, 0.1805303692817688, -0.4636576771736145, 0.21901170909404755]} +{"t": 7.9135, "q": [-0.13947804272174835, 0.01969119906425476, 0.016230978071689606, 0.3154120147228241, -0.1726727932691574, -0.01395996194332838, -0.0939614400267601, -0.01888500712811947, 0.03918468579649925, 0.3201417922973633, -0.24550200998783112, 0.017397096380591393, -0.012400895357131958, 0.03722301498055458, 0.030392611399292946, -0.049974218010902405, 0.15225958824157715, 0.00339153571985662, 1.2182804346084595, -0.028510471805930138, 0.002121207769960165, -0.0023129554465413094, 0.046786416321992874, -0.44107940793037415, 0.03193796053528786, 0.2338481843471527, 0.16389626264572144, -0.4617522060871124, 0.2189997285604477]} +{"t": 7.9302, "q": [-0.13943544030189514, 0.019708242267370224, 0.016364896669983864, 0.3154034912586212, -0.1726599782705307, -0.013966996222734451, -0.09395291656255722, -0.01888500712811947, 0.03929182142019272, 0.3201332688331604, -0.24550625681877136, 0.017404312267899513, -0.012561597861349583, 0.03740415722131729, 0.03031264618039131, -0.04986635968089104, 0.1504499614238739, 0.00339153571985662, 1.2183163166046143, -0.028498487547039986, 0.002121207769960165, -0.0023249397054314613, 0.04993826523423195, -0.44100749492645264, 0.0318780392408371, 0.23577764630317688, 0.14817295968532562, -0.46000251173973083, 0.21891583502292633]} +{"t": 7.947, "q": [-0.13940134644508362, 0.019708242267370224, 0.016418464481830597, 0.31542906165122986, -0.17266422510147095, -0.013959934934973717, -0.09397847950458527, -0.018876485526561737, 0.03935877978801727, 0.32015883922576904, -0.24549773335456848, 0.01738986186683178, -0.01277586817741394, 0.03743418678641319, 0.030321449041366577, -0.04966263100504875, 0.14859241247177124, 0.003451456781476736, 1.2184361219406128, -0.028510471805930138, 0.002133192028850317, -0.0023249397054314613, 0.05223923921585083, -0.4412112236022949, 0.03165033832192421, 0.2389654517173767, 0.13344435393810272, -0.45885202288627625, 0.21891583502292633]} +{"t": 7.9637, "q": [-0.1394098699092865, 0.019725287333130836, 0.01647203229367733, 0.31548020243644714, -0.17266854643821716, -0.013967031612992287, -0.09400404989719391, -0.018867963925004005, 0.039425741881132126, 0.3202269971370697, -0.2454935759305954, 0.01739700883626938, -0.013257976621389389, 0.037426628172397614, 0.03032636269927025, -0.049554772675037384, 0.1468067616224289, 0.003463441040366888, 1.2185081243515015, -0.028498487547039986, 0.002121207769960165, -0.0023129554465413094, 0.054060839116573334, -0.44119924306869507, 0.0313027948141098, 0.24272850155830383, 0.11683420836925507, -0.4583606719970703, 0.21889187395572662]} +{"t": 7.9805, "q": [-0.1394098699092865, 0.019793463870882988, 0.01665951870381832, 0.31548020243644714, -0.17266854643821716, -0.013967031612992287, -0.0940551832318306, -0.018791263923048973, 0.039599835872650146, 0.32025256752967834, -0.2454935759305954, 0.01739700883626938, -0.013833828270435333, 0.037426628172397614, 0.03032636269927025, -0.04951881989836693, 0.14515294134616852, 0.0034394727554172277, 1.2185440063476562, -0.028498487547039986, 0.002121207769960165, -0.0023129554465413094, 0.05622998625040054, -0.4410434663295746, 0.030607711523771286, 0.24598820507526398, 0.10343585163354874, -0.45807304978370667, 0.21880798041820526]} +{"t": 7.9972, "q": [-0.13932465016841888, 0.019767897203564644, 0.01680682972073555, 0.31548872590065, -0.1726727932691574, -0.01395996194332838, -0.09406369924545288, -0.018808308988809586, 0.039747145026922226, 0.32034632563591003, -0.24548931419849396, 0.01738979108631611, -0.014838220551609993, 0.03744930401444435, 0.030311623588204384, -0.04939897730946541, 0.14361895620822906, 0.003463441040366888, 1.2186279296875, -0.02846253477036953, 0.002121207769960165, -0.0023249397054314613, 0.057692062109708786, -0.4416187107563019, 0.02913365140557289, 0.2496793419122696, 0.08995359390974045, -0.4578093886375427, 0.21861623227596283]} +{"t": 8.0139, "q": [-0.13929907977581024, 0.019776420667767525, 0.017061274498701096, 0.3154972493648529, -0.17266422510147095, -0.013959934934973717, -0.09415744245052338, -0.018850918859243393, 0.03996141627430916, 0.3204485774040222, -0.24549773335456848, 0.01738986186683178, -0.015896180644631386, 0.037494588643312454, 0.030291631817817688, -0.049135323613882065, 0.14213290810585022, 0.0034394727554172277, 1.2187358140945435, -0.028498487547039986, 0.0021092237439006567, -0.0023129554465413094, 0.05893842130899429, -0.4429129958152771, 0.027719512581825256, 0.2526754140853882, 0.07544069737195969, -0.45747384428977966, 0.21861623227596283]} +{"t": 8.0306, "q": [-0.1392650008201599, 0.019776420667767525, 0.017275545746088028, 0.3155483603477478, -0.1726727932691574, -0.01395996194332838, -0.09427675604820251, -0.01883387565612793, 0.04016229510307312, 0.3204911947250366, -0.24548931419849396, 0.01738979108631611, -0.016552383080124855, 0.03750228509306908, 0.030267750844359398, -0.049075402319431305, 0.14091052114963531, 0.0034394727554172277, 1.2188076972961426, -0.02846253477036953, 0.0020852552261203527, -0.0023129554465413094, 0.06040049344301224, -0.44400355219841003, 0.02612561173737049, 0.2546767592430115, 0.06409163773059845, -0.4573659598827362, 0.21854433417320251]} +{"t": 8.0474, "q": [-0.13923943042755127, 0.019784942269325256, 0.017556775361299515, 0.315676212310791, -0.1726684719324112, -0.01395286526530981, -0.09434492886066437, -0.018867963925004005, 0.04037656635046005, 0.3205508589744568, -0.24547238647937775, 0.017375288531184196, -0.017061274498701096, 0.03750977665185928, 0.03027232363820076, -0.04900349676609039, 0.1395443230867386, 0.0034394727554172277, 1.2188316583633423, -0.02846253477036953, 0.0021092237439006567, -0.0023129554465413094, 0.062186144292354584, -0.4447585642337799, 0.023800671100616455, 0.256318598985672, 0.053413692861795425, -0.45737797021865845, 0.21860425174236298]} +{"t": 8.0641, "q": [-0.1391371637582779, 0.019784942269325256, 0.017677301540970802, 0.31570175290107727, -0.17267285287380219, -0.013974127359688282, -0.09434492886066437, -0.018936140462756157, 0.04052387550473213, 0.32061901688575745, -0.24547238647937775, 0.017375288531184196, -0.017396071925759315, 0.037532661110162735, 0.03022913634777069, -0.04894357547163963, 0.13833391666412354, 0.0034394727554172277, 1.2188196182250977, -0.028486503288149834, 0.0021092237439006567, -0.0023129554465413094, 0.064079649746418, -0.4451061189174652, 0.0210682675242424, 0.25725337862968445, 0.04313122481107712, -0.45737797021865845, 0.2184963971376419]} +{"t": 8.0808, "q": [-0.13912011682987213, 0.019819030538201332, 0.017757654190063477, 0.31571879982948303, -0.1726684719324112, -0.01395286526530981, -0.09434492886066437, -0.01884239725768566, 0.040577445179224014, 0.3206957280635834, -0.24547643959522247, 0.017353778705000877, -0.017918355762958527, 0.0375857912003994, 0.030166376382112503, -0.048703890293836594, 0.13748303055763245, 0.003451456781476736, 1.2189035415649414, -0.028486503288149834, 0.002133192028850317, -0.0023129554465413094, 0.06503839045763016, -0.44606485962867737, 0.019833892583847046, 0.25824806094169617, 0.0337236113846302, -0.4573419988155365, 0.21846044063568115]} +{"t": 8.0976, "q": [-0.13900932669639587, 0.019827552139759064, 0.017891572788357735, 0.3157869875431061, -0.1726599782705307, -0.013966996222734451, -0.09435345232486725, -0.01882535219192505, 0.04069796949625015, 0.32080650329589844, -0.24546802043914795, 0.017353707924485207, -0.01845403201878071, 0.03769148141145706, 0.030116626992821693, -0.048584047704935074, 0.1368958055973053, 0.0034394727554172277, 1.2189395427703857, -0.028510471805930138, 0.002121207769960165, -0.0023249397054314613, 0.06545783579349518, -0.44729921221733093, 0.018887139856815338, 0.2593146562576294, 0.02539457380771637, -0.45735397934913635, 0.2184963971376419]} +{"t": 8.1144, "q": [-0.13894115388393402, 0.019836075603961945, 0.018012098968029022, 0.31584665179252625, -0.17266854643821716, -0.013967031612992287, -0.09440458565950394, -0.018757175654172897, 0.04079171270132065, 0.3209173083305359, -0.24546802043914795, 0.017353707924485207, -0.01917719468474388, 0.037804875522851944, 0.03004302829504013, -0.048356350511312485, 0.136692076921463, 0.0034394727554172277, 1.2189635038375854, -0.028546424582600594, 0.002133192028850317, -0.0023249397054314613, 0.06542188674211502, -0.4484497010707855, 0.017892448231577873, 0.26020148396492004, 0.01822800748050213, -0.45737797021865845, 0.21850837767124176]} +{"t": 8.1312, "q": [-0.13884741067886353, 0.01986164040863514, 0.018186194822192192, 0.3158722221851349, -0.17267709970474243, -0.013967057690024376, -0.09440458565950394, -0.018620822578668594, 0.04097919911146164, 0.32101956009864807, -0.24546802043914795, 0.017353707924485207, -0.019793221727013588, 0.03792603686451912, 0.029936103150248528, -0.04822452366352081, 0.1366681009531021, 0.0034394727554172277, 1.2189035415649414, -0.028498487547039986, 0.002121207769960165, -0.0023249397054314613, 0.06539791822433472, -0.4499717056751251, 0.016957677900791168, 0.26045316457748413, 0.011804461479187012, -0.4574378728866577, 0.21850837767124176]} +{"t": 8.1479, "q": [-0.1387707144021988, 0.01992129534482956, 0.01832011342048645, 0.3159148097038269, -0.17266422510147095, -0.013959934934973717, -0.09441310912370682, -0.018510034307837486, 0.041086334735155106, 0.32107070088386536, -0.24545960128307343, 0.017353639006614685, -0.020382465794682503, 0.038092561066150665, 0.02979974076151848, -0.048116665333509445, 0.13679993152618408, 0.003451456781476736, 1.218915581703186, -0.02853444032371044, 0.002145176287740469, -0.0023369239643216133, 0.0652780756354332, -0.45228466391563416, 0.01613076776266098, 0.2603812515735626, 0.00854475237429142, -0.4576895534992218, 0.21860425174236298]} +{"t": 8.1649, "q": [-0.13866844773292542, 0.019853118807077408, 0.018387073650956154, 0.3159659504890442, -0.17266429960727692, -0.013974091969430447, -0.09440458565950394, -0.018501512706279755, 0.04120686277747154, 0.3211559057235718, -0.24545533955097198, 0.017346404492855072, -0.02083778940141201, 0.03822877258062363, 0.029692476615309715, -0.04800880700349808, 0.13703961670398712, 0.003499393817037344, 1.2189754247665405, -0.02853444032371044, 0.002133192028850317, -0.0023129554465413094, 0.06515823304653168, -0.45413023233413696, 0.013662016950547695, 0.260237455368042, 0.005944175645709038, -0.45825281739234924, 0.21861623227596283]} +{"t": 8.1818, "q": [-0.138625830411911, 0.01992129534482956, 0.018440639600157738, 0.3160000443458557, -0.17267285287380219, -0.013974127359688282, -0.0944216325879097, -0.018433336168527603, 0.04130060598254204, 0.3212240934371948, -0.24545523524284363, 0.017332039773464203, -0.021132411435246468, 0.038387589156627655, 0.02957996353507042, -0.047876980155706406, 0.1372433453798294, 0.003523362334817648, 1.2189635038375854, -0.028606345877051353, 0.0020852552261203527, -0.0023129554465413094, 0.06508632749319077, -0.45410627126693726, 0.008964200504124165, 0.2601655423641205, 0.0036551887169480324, -0.4591396450996399, 0.2187720388174057]} +{"t": 8.1986, "q": [-0.13860027492046356, 0.019938340410590172, 0.01849420741200447, 0.3160597085952759, -0.17266854643821716, -0.013967031612992287, -0.09443015605211258, -0.01840776950120926, 0.04136756435036659, 0.32130080461502075, -0.24545098841190338, 0.017324823886156082, -0.021373465657234192, 0.038735419511795044, 0.029353471472859383, -0.04767324775457382, 0.13741113245487213, 0.0036671729758381844, 1.2189275026321411, -0.028618330135941505, 0.002121207769960165, -0.0023129554465413094, 0.06491854786872864, -0.45148172974586487, 0.0029241510201245546, 0.2588352859020233, 0.00355931487865746, -0.46129679679870605, 0.2187959998846054]} +{"t": 8.2153, "q": [-0.13856618106365204, 0.019946862012147903, 0.018681693822145462, 0.31608524918556213, -0.17266422510147095, -0.013959934934973717, -0.0944216325879097, -0.018424812704324722, 0.04154166206717491, 0.3213689625263214, -0.24545523524284363, 0.017332039773464203, -0.021721655502915382, 0.0393855907022953, 0.028948811814188957, -0.047529436647892, 0.13762684166431427, 0.0037270940374583006, 1.219083309173584, -0.028690235689282417, 0.0020972394850105047, -0.0023369239643216133, 0.06491854786872864, -0.44709548354148865, -0.0034274884965270758, 0.2536461353302002, 0.004637895151972771, -0.46539539098739624, 0.21871210634708405]} +{"t": 8.2324, "q": [-0.13831904530525208, 0.020006516948342323, 0.019029883667826653, 0.3160426616668701, -0.17266422510147095, -0.013959934934973717, -0.0944216325879097, -0.01841629110276699, 0.04186306521296501, 0.32148829102516174, -0.24543848633766174, 0.017346283420920372, -0.02249838411808014, 0.040278661996126175, 0.028273263946175575, -0.047385625541210175, 0.13767477869987488, 0.0038109836168587208, 1.2192151546478271, -0.028738172724843025, 0.0020972394850105047, -0.0023249397054314613, 0.06391187012195587, -0.44064798951148987, -0.011145329102873802, 0.24757012724876404, 0.007370298728346825, -0.4696737825870514, 0.21883195638656616]} +{"t": 8.2491, "q": [-0.13785885274410248, 0.020134348422288895, 0.01948520727455616, 0.3160597085952759, -0.1726727932691574, -0.01395996194332838, -0.09437049925327301, -0.018433336168527603, 0.04235856607556343, 0.32161611318588257, -0.24543848633766174, 0.017346283420920372, -0.02303406037390232, 0.04093124344944954, 0.02758324332535267, -0.04664260521531105, 0.1378665268421173, 0.004014715552330017, 1.2195147275924683, -0.028869997709989548, 0.0020972394850105047, -0.0023249397054314613, 0.06120343878865242, -0.4324507713317871, -0.019690081477165222, 0.24079903960227966, 0.014944328926503658, -0.47295746207237244, 0.21848441660404205]} +{"t": 8.2658, "q": [-0.13750943541526794, 0.0203388798981905, 0.019927140325307846, 0.3160000443458557, -0.17266422510147095, -0.013959934934973717, -0.09431084245443344, -0.018433336168527603, 0.042760323733091354, 0.3218803107738495, -0.24542175233364105, 0.0173605065792799, -0.02367687225341797, 0.04157793149352074, 0.026708269491791725, -0.04490489140152931, 0.13817811012268066, 0.004350273869931698, 1.2200660705566406, -0.02894190326333046, 0.002121207769960165, -0.0023369239643216133, 0.05740443989634514, -0.42385807633399963, -0.028630314394831657, 0.23413580656051636, 0.024891234934329987, -0.47579771280288696, 0.21858029067516327]} +{"t": 8.2827, "q": [-0.13745830953121185, 0.02046671137213707, 0.020047668367624283, 0.31594038009643555, -0.17267709970474243, -0.013967057690024376, -0.09421709924936295, -0.018450379371643066, 0.04285406693816185, 0.3220592737197876, -0.24540501832962036, 0.017374731600284576, -0.023636694997549057, 0.042117223143577576, 0.026092037558555603, -0.04382631182670593, 0.13916082680225372, 0.004601942375302315, 1.2205214500427246, -0.029085714370012283, 0.0021092237439006567, -0.0023249397054314613, 0.0541447289288044, -0.414450466632843, -0.042759716510772705, 0.2274126559495926, 0.036084502935409546, -0.47862598299980164, 0.21903568506240845]} +{"t": 8.2994, "q": [-0.13754352927207947, 0.020637154579162598, 0.01998070813715458, 0.31598299741744995, -0.1726727932691574, -0.01395996194332838, -0.09414892643690109, -0.01840776950120926, 0.042760323733091354, 0.32227233052253723, -0.24539242684841156, 0.017381826415657997, -0.023569736629724503, 0.04262438789010048, 0.025741467252373695, -0.04296344891190529, 0.1401675045490265, 0.004817658569663763, 1.220629334449768, -0.0291815884411335, 0.0021092237439006567, -0.0023249397054314613, 0.05029779300093651, -0.40657681226730347, -0.05638577789068222, 0.22314627468585968, 0.047086022794246674, -0.48132243752479553, 0.2187480628490448]} +{"t": 8.3162, "q": [-0.13761170208454132, 0.020858729258179665, 0.019953925162553787, 0.3160426616668701, -0.1726856678724289, -0.013967094011604786, -0.09418301284313202, -0.01846742443740368, 0.042746931314468384, 0.3224768340587616, -0.2453673779964447, 0.017410343512892723, -0.023462601006031036, 0.043078433722257614, 0.025444654747843742, -0.04198073968291283, 0.14121012389659882, 0.004853611346334219, 1.2211205959320068, -0.029205556958913803, 0.0021092237439006567, -0.0023369239643216133, 0.04580370709300041, -0.40030908584594727, -0.06911302357912064, 0.22007831931114197, 0.06205431744456291, -0.48356348276138306, 0.21891583502292633]} +{"t": 8.3331, "q": [-0.13768839836120605, 0.020909860730171204, 0.019913749769330025, 0.3161022961139679, -0.17267709970474243, -0.013967057690024376, -0.09414892643690109, -0.018441857770085335, 0.042746931314468384, 0.32254502177238464, -0.24532100558280945, 0.017402777448296547, -0.023221546784043312, 0.043533194810152054, 0.02506238967180252, -0.04075834900140762, 0.14209695160388947, 0.004853611346334219, 1.221540093421936, -0.029229525476694107, 0.0021092237439006567, -0.0023129554465413094, 0.042388204485177994, -0.3923395574092865, -0.08507601171731949, 0.21698638796806335, 0.07427822798490524, -0.4858524799346924, 0.2190716415643692]} +{"t": 8.3498, "q": [-0.13768839836120605, 0.020909860730171204, 0.019927140325307846, 0.3161108195781708, -0.1726727932691574, -0.01395996194332838, -0.09411483258008957, -0.018433336168527603, 0.04272014647722244, 0.3227154612541199, -0.24527861177921295, 0.01735932007431984, -0.023301897570490837, 0.043777111917734146, 0.02469520829617977, -0.038972701877355576, 0.1429598182439804, 0.0049135321751236916, 1.221707820892334, -0.02925349399447441, 0.0021092237439006567, -0.0023249397054314613, 0.03921238332986832, -0.38568833470344543, -0.0983785018324852, 0.21505692601203918, 0.08616658300161362, -0.4878178834915161, 0.21873608231544495]} +{"t": 8.3666, "q": [-0.13767987489700317, 0.020909860730171204, 0.01998070813715458, 0.31606820225715637, -0.17267702519893646, -0.01395290158689022, -0.09410630911588669, -0.018399247899651527, 0.04281388968229294, 0.3227580785751343, -0.24518509209156036, 0.017229227349162102, -0.023475993424654007, 0.043968260288238525, 0.02433355338871479, -0.03705522418022156, 0.14371483027935028, 0.004997421987354755, 1.2219715118408203, -0.029277462512254715, 0.0021092237439006567, -0.0023249397054314613, 0.03670768067240715, -0.38099050521850586, -0.10935605317354202, 0.21341508626937866, 0.0990016832947731, -0.4888964593410492, 0.21892783045768738]} +{"t": 8.3835, "q": [-0.13776510953903198, 0.02089281752705574, 0.020034275949001312, 0.3160426616668701, -0.1726684719324112, -0.01395286526530981, -0.09406369924545288, -0.018305504694581032, 0.042746931314468384, 0.3227580785751343, -0.24509167671203613, 0.01711353287100792, -0.023328682407736778, 0.04408257454633713, 0.024163927882909775, -0.03591672331094742, 0.14426609873771667, 0.005021390505135059, 1.2224029302597046, -0.02936135232448578, 0.002121207769960165, -0.0023249397054314613, 0.03542536869645119, -0.37602904438972473, -0.12209528684616089, 0.21126990020275116, 0.11000320315361023, -0.48987916111946106, 0.2191195785999298]} +{"t": 8.4002, "q": [-0.1378929316997528, 0.020901339128613472, 0.019927140325307846, 0.31607672572135925, -0.17268134653568268, -0.013959997333586216, -0.09406369924545288, -0.018160628154873848, 0.04266658052802086, 0.32286885380744934, -0.24504482746124268, 0.017034132033586502, -0.023127803578972816, 0.04409771412611008, 0.02415400743484497, -0.03498195484280586, 0.14484134316444397, 0.005057343281805515, 1.2225947380065918, -0.02942127361893654, 0.002121207769960165, -0.0023129554465413094, 0.034322820603847504, -0.3720143139362335, -0.1320302039384842, 0.20962806046009064, 0.12193949520587921, -0.4906221926212311, 0.21903568506240845]} +{"t": 8.417, "q": [-0.1379355490207672, 0.020875772461295128, 0.019913749769330025, 0.31612786650657654, -0.1726684719324112, -0.01395286526530981, -0.09408926963806152, -0.018041318282485008, 0.04263979569077492, 0.32295408844947815, -0.24499370157718658, 0.016947496682405472, -0.02303406037390232, 0.04410543665289879, 0.024130001664161682, -0.03374757990241051, 0.14534468948841095, 0.005057343281805515, 1.2228703498840332, -0.029385320842266083, 0.0021092237439006567, -0.0023489082232117653, 0.03278883919119835, -0.3683231770992279, -0.14115020632743835, 0.20775853097438812, 0.1336001455783844, -0.4917607009410858, 0.21905964612960815]} +{"t": 8.4337, "q": [-0.1378929316997528, 0.020909860730171204, 0.019953925162553787, 0.31616196036338806, -0.1726727932691574, -0.01395996194332838, -0.09408926963806152, -0.01787939853966236, 0.04270675405859947, 0.3229711353778839, -0.2449042648077011, 0.016795910894870758, -0.023141195997595787, 0.04421883076429367, 0.024074645712971687, -0.032417330890893936, 0.14576412737369537, 0.00506932707503438, 1.223193883895874, -0.029385320842266083, 0.0020972394850105047, -0.0023249397054314613, 0.030535805970430374, -0.36429646611213684, -0.1504020243883133, 0.20564930140972137, 0.14842462539672852, -0.4932107925415039, 0.21910758316516876]} +{"t": 8.4504, "q": [-0.13783328235149384, 0.020901339128613472, 0.02000749297440052, 0.31621310114860535, -0.1726599782705307, -0.013966996222734451, -0.0940977931022644, -0.01775156706571579, 0.042760323733091354, 0.32295408844947815, -0.2448149025440216, 0.01665867120027542, -0.02319476380944252, 0.04443078860640526, 0.02393576130270958, -0.03133874759078026, 0.1459558755159378, 0.005057343281805515, 1.223253846168518, -0.029349368065595627, 0.002121207769960165, -0.0023369239643216133, 0.028558408841490746, -0.35917922854423523, -0.16074441373348236, 0.20386365056037903, 0.1603609174489975, -0.4944571554660797, 0.21917949616909027]} +{"t": 8.4672, "q": [-0.13787588477134705, 0.020926905795931816, 0.01999410055577755, 0.31617048382759094, -0.17266854643821716, -0.013967031612992287, -0.0940977931022644, -0.01764077879488468, 0.04272014647722244, 0.32299670577049255, -0.24474258720874786, 0.01655031554400921, -0.023154588416218758, 0.044695962220430374, 0.02373358979821205, -0.030619695782661438, 0.1459558755159378, 0.00506932707503438, 1.2232178449630737, -0.02936135232448578, 0.002121207769960165, -0.0023249397054314613, 0.02695252187550068, -0.3538702130317688, -0.1700441688299179, 0.20271317660808563, 0.17139838635921478, -0.4955836534500122, 0.2190476655960083]} +{"t": 8.4841, "q": [-0.13785885274410248, 0.020969515666365623, 0.01996731571853161, 0.3162216246128082, -0.1726599782705307, -0.013966996222734451, -0.09406369924545288, -0.017538513988256454, 0.0426933616399765, 0.3230733871459961, -0.24471713602542877, 0.016521379351615906, -0.023060845211148262, 0.04488551616668701, 0.023571496829390526, -0.030284136533737183, 0.14591993391513824, 0.00506932707503438, 1.223193883895874, -0.029397305101156235, 0.0020972394850105047, -0.0023369239643216133, 0.025730131193995476, -0.3499513566493988, -0.17675533890724182, 0.20171847939491272, 0.18381404876708984, -0.49669820070266724, 0.21917949616909027]} +{"t": 8.5009, "q": [-0.13784180581569672, 0.020960994064807892, 0.019927140325307846, 0.3162216246128082, -0.1726430058479309, -0.013995246961712837, -0.09407222270965576, -0.017410682514309883, 0.04266658052802086, 0.3230733871459961, -0.24471257627010345, 0.016471054404973984, -0.022967100143432617, 0.04509058967232704, 0.023351870477199554, -0.030008500441908836, 0.14589595794677734, 0.00506932707503438, 1.2232178449630737, -0.029409289360046387, 0.0020732709672302008, -0.0023249397054314613, 0.02442385070025921, -0.3467276096343994, -0.18166887760162354, 0.20077171921730042, 0.19531890749931335, -0.498435914516449, 0.2190956026315689]} +{"t": 8.5176, "q": [-0.13784180581569672, 0.021088825538754463, 0.019913749769330025, 0.316238671541214, -0.17263875901699066, -0.014002308249473572, -0.09407222270965576, -0.017316939309239388, 0.04266658052802086, 0.3230733871459961, -0.24468711018562317, 0.01644209958612919, -0.022779613733291626, 0.04531104117631912, 0.023093795403838158, -0.02978079952299595, 0.1459079384803772, 0.005057343281805515, 1.2232298851013184, -0.02942127361893654, 0.0020852552261203527, -0.0023249397054314613, 0.02346511371433735, -0.342988520860672, -0.1879965364933014, 0.19871044158935547, 0.20629645884037018, -0.501491904258728, 0.21920345723628998]} +{"t": 8.5344, "q": [-0.13784180581569672, 0.021216657012701035, 0.01986018195748329, 0.3162727355957031, -0.17261755466461182, -0.014037620276212692, -0.09408074617385864, -0.0172658059746027, 0.042586229741573334, 0.3230648636817932, -0.24468286335468292, 0.01643488183617592, -0.02252516895532608, 0.045523323118686676, 0.022917035967111588, -0.029589051380753517, 0.14589595794677734, 0.005093295592814684, 1.2232778072357178, -0.029409289360046387, 0.002049302449449897, -0.0023249397054314613, 0.023009711876511574, -0.339213490486145, -0.1949354112148285, 0.1962297111749649, 0.21804098784923553, -0.5043561458587646, 0.21916751563549042]} +{"t": 8.5512, "q": [-0.13784180581569672, 0.02125074528157711, 0.01982000470161438, 0.3163323998451233, -0.17259639501571655, -0.014087097719311714, -0.09408926963806152, -0.017231717705726624, 0.04255944490432739, 0.32304781675338745, -0.24468286335468292, 0.01643488183617592, -0.02237785793840885, 0.04562181606888771, 0.022843120619654655, -0.02931341528892517, 0.14589595794677734, 0.005081311333924532, 1.223253846168518, -0.029397305101156235, 0.0020133499056100845, -0.0023848607670515776, 0.022949790582060814, -0.3354983925819397, -0.2006758451461792, 0.19329357147216797, 0.2251116931438446, -0.5062735676765442, 0.21895179152488708]} +{"t": 8.568, "q": [-0.13781623542308807, 0.02125926874577999, 0.019793221727013588, 0.31644317507743835, -0.1725497990846634, -0.014178948476910591, -0.0940977931022644, -0.017248760908842087, 0.04251926764845848, 0.3230307996273041, -0.24467860162258148, 0.016427665948867798, -0.02216358669102192, 0.045667242258787155, 0.02281336300075054, -0.02900182455778122, 0.14584802091121674, 0.005057343281805515, 1.223313808441162, -0.029385320842266083, 0.0020133499056100845, -0.0023249397054314613, 0.022997727617621422, -0.3327300250530243, -0.2046665996313095, 0.1886676549911499, 0.23251794278621674, -0.5075798630714417, 0.21920345723628998]} +{"t": 8.5847, "q": [-0.13788440823554993, 0.021233702078461647, 0.019753046333789825, 0.31644317507743835, -0.17252850532531738, -0.014200103469192982, -0.09408926963806152, -0.017248760908842087, 0.0424657016992569, 0.3229881823062897, -0.24467860162258148, 0.016427665948867798, -0.021976100280880928, 0.045652177184820175, 0.022813772782683372, -0.02870221994817257, 0.14576412737369537, 0.005057343281805515, 1.2232778072357178, -0.029385320842266083, 0.0020013656467199326, -0.0023728765081614256, 0.02322542853653431, -0.3301534354686737, -0.2073390781879425, 0.183298721909523, 0.23803068697452545, -0.5089460611343384, 0.21922743320465088]} +{"t": 8.6014, "q": [-0.13790997862815857, 0.02125926874577999, 0.019793221727013588, 0.31640058755874634, -0.17252425849437714, -0.014207164756953716, -0.09407222270965576, -0.017248760908842087, 0.04251926764845848, 0.32290294766426086, -0.24466583132743835, 0.016406016424298286, -0.02200288511812687, 0.04548710584640503, 0.02274208515882492, -0.028378644958138466, 0.1456083357334137, 0.00506932707503438, 1.2233017683029175, -0.02936135232448578, 0.0020133499056100845, -0.0023489082232117653, 0.0228659026324749, -0.32824793457984924, -0.20882512629032135, 0.18009893596172333, 0.24053537845611572, -0.5103002786636353, 0.2192993313074112]} +{"t": 8.6182, "q": [-0.1379355490207672, 0.021233702078461647, 0.019779829308390617, 0.31634092330932617, -0.17252425849437714, -0.014207164756953716, -0.09406369924545288, -0.017351027578115463, 0.04253266006708145, 0.32280921936035156, -0.2446700781583786, 0.016413232311606407, -0.021935924887657166, 0.04520247131586075, 0.022559434175491333, -0.028234833851456642, 0.14524881541728973, 0.005045359022915363, 1.2232778072357178, -0.029337383806705475, 0.0020133499056100845, -0.0023489082232117653, 0.02214684896171093, -0.3267858624458313, -0.20967599749565125, 0.17687517404556274, 0.24164991080760956, -0.511211097240448, 0.21928735077381134]} +{"t": 8.6349, "q": [-0.13795259594917297, 0.021174047142267227, 0.019793221727013588, 0.31640058755874634, -0.17251993715763092, -0.014200068078935146, -0.09406369924545288, -0.017478859052062035, 0.04251926764845848, 0.32281774282455444, -0.24466998875141144, 0.016398869454860687, -0.021761830896139145, 0.044865306466817856, 0.022354397922754288, -0.028234833851456642, 0.14497317373752594, 0.005021390505135059, 1.2231699228286743, -0.029385320842266083, 0.0019893813878297806, -0.0023489082232117653, 0.02183525823056698, -0.3257911503314972, -0.21113808453083038, 0.17353157699108124, 0.2425127774477005, -0.5121937990188599, 0.2192993313074112]} +{"t": 8.6516, "q": [-0.13797815144062042, 0.021165525540709496, 0.01983339712023735, 0.3163835406303406, -0.1725200116634369, -0.014214225113391876, -0.09407222270965576, -0.017606690526008606, 0.04253266006708145, 0.3227410316467285, -0.24467433989048004, 0.016420450061559677, -0.02168147824704647, 0.044535405933856964, 0.02218245156109333, -0.028210865333676338, 0.1449851542711258, 0.004997421987354755, 1.2231340408325195, -0.02930143103003502, 0.0019654128700494766, -0.0023608924821019173, 0.021331921219825745, -0.3254915475845337, -0.2128278613090515, 0.17133846879005432, 0.24354343116283417, -0.5128529071807861, 0.2193472683429718]} +{"t": 8.6685, "q": [-0.13802076876163483, 0.021174047142267227, 0.019886964932084084, 0.3164602220058441, -0.1725328117609024, -0.014207200147211552, -0.09408074617385864, -0.01776008866727352, 0.042599618434906006, 0.32267284393310547, -0.24465760588645935, 0.016434673219919205, -0.02168147824704647, 0.044167496263980865, 0.022054295986890793, -0.028234833851456642, 0.14494919776916504, 0.004985437728464603, 1.2231340408325195, -0.029277462512254715, 0.0019654128700494766, -0.0023489082232117653, 0.02118811011314392, -0.3254316449165344, -0.21562017500400543, 0.17035576701164246, 0.2443823218345642, -0.513008713722229, 0.2192753702402115]} +{"t": 8.6855, "q": [-0.13815711438655853, 0.02113995887339115, 0.019873572513461113, 0.3164176344871521, -0.1725243330001831, -0.014221320860087872, -0.09411483258008957, -0.01786235347390175, 0.042586229741573334, 0.32259616255760193, -0.24466611444950104, 0.016449106857180595, -0.02168147824704647, 0.04392664507031441, 0.022041641175746918, -0.028258802369236946, 0.1446615755558014, 0.0049375006929039955, 1.223026156425476, -0.029205556958913803, 0.0019534286111593246, -0.0023489082232117653, 0.02124803140759468, -0.3253836929798126, -0.21776536107063293, 0.1706433892250061, 0.24566462635993958, -0.5129967331886292, 0.21905964612960815]} +{"t": 8.7023, "q": [-0.13825085759162903, 0.02113995887339115, 0.01984678953886032, 0.31644317507743835, -0.17252418398857117, -0.014193007722496986, -0.09418301284313202, -0.017947575077414513, 0.04257283732295036, 0.3224853575229645, -0.24464520812034607, 0.016470495611429214, -0.02152077667415142, 0.04389636591076851, 0.022061457857489586, -0.028294755145907402, 0.14389459788799286, 0.00490154791623354, 1.222954273223877, -0.029205556958913803, 0.0019414444686844945, -0.0023608924821019173, 0.021403826773166656, -0.3253956735134125, -0.21828067302703857, 0.17072726786136627, 0.24621590971946716, -0.5130326747894287, 0.21910758316516876]} +{"t": 8.7191, "q": [-0.1383019983768463, 0.02112291380763054, 0.01986018195748329, 0.3165454566478729, -0.1725328117609024, -0.014207200147211552, -0.09424266964197159, -0.017956096678972244, 0.04253266006708145, 0.3223916292190552, -0.24465373158454895, 0.016484929248690605, -0.020944925025105476, 0.04394139349460602, 0.022079283371567726, -0.028366660699248314, 0.14306768774986267, 0.004877579864114523, 1.2229303121566772, -0.02919357270002365, 0.0019054918084293604, -0.0023489082232117653, 0.02142779529094696, -0.32534775137901306, -0.21832861006259918, 0.17439444363117218, 0.2467551976442337, -0.512697160243988, 0.2190476655960083]} +{"t": 8.7358, "q": [-0.1383105218410492, 0.021105870604515076, 0.01980661414563656, 0.31668180227279663, -0.1725284308195114, -0.014185946434736252, -0.0943278893828392, -0.0179987084120512, 0.042452309280633926, 0.3221956193447113, -0.24466632306575775, 0.016477834433317184, -0.019886964932084084, 0.04397878050804138, 0.022111576050519943, -0.028306739404797554, 0.14135393500328064, 0.004829642828553915, 1.2228703498840332, -0.029145635664463043, 0.0018335864879190922, -0.0023608924821019173, 0.023800671100616455, -0.32320258021354675, -0.21730995178222656, 0.1768631935119629, 0.2476300448179245, -0.5125173926353455, 0.21886791288852692]} +{"t": 8.7526, "q": [-0.13834460079669952, 0.021105870604515076, 0.019753046333789825, 0.3166903257369995, -0.1725328117609024, -0.014207200147211552, -0.09436197578907013, -0.01798166334629059, 0.04239874333143234, 0.3220166563987732, -0.2446705847978592, 0.016485068947076797, -0.01900310069322586, 0.043993763625621796, 0.02212068997323513, -0.028366660699248314, 0.1399158239364624, 0.004817658569663763, 1.2226905822753906, -0.0291815884411335, 0.001725728390738368, -0.0023489082232117653, 0.027491813525557518, -0.3189241886138916, -0.21518874168395996, 0.1772826462984085, 0.247701957821846, -0.512553334236145, 0.21905964612960815]} +{"t": 8.7693, "q": [-0.1383105218410492, 0.021165525540709496, 0.019753046333789825, 0.31667327880859375, -0.17251993715763092, -0.014200068078935146, -0.09443015605211258, -0.017947575077414513, 0.042412132024765015, 0.3219143748283386, -0.24467484652996063, 0.016492284834384918, -0.01862812601029873, 0.04400875046849251, 0.022129802033305168, -0.02834269218146801, 0.13860954344272614, 0.004817658569663763, 1.2226426601409912, -0.02912166714668274, 0.0015939020086079836, -0.0023489082232117653, 0.028354676440358162, -0.31402266025543213, -0.21251626312732697, 0.1777620166540146, 0.24691098928451538, -0.5125653147697449, 0.21950307488441467]} +{"t": 8.7861, "q": [-0.1383019983768463, 0.02118256874382496, 0.019686086103320122, 0.31663069128990173, -0.17251993715763092, -0.014200068078935146, -0.09443015605211258, -0.017964620143175125, 0.042278215289115906, 0.32180359959602356, -0.2446705847978592, 0.016485068947076797, -0.017851397395133972, 0.04388754814863205, 0.022218581289052963, -0.028366660699248314, 0.13736319541931152, 0.004757737275213003, 1.2227505445480347, -0.029145635664463043, 0.0015699334908276796, -0.0023489082232117653, 0.028198881074786186, -0.3095884919166565, -0.20866933465003967, 0.1780376434326172, 0.24514931440353394, -0.512637197971344, 0.22017419338226318]} +{"t": 8.8029, "q": [-0.1383531242609024, 0.021165525540709496, 0.019538775086402893, 0.31661364436149597, -0.17251986265182495, -0.014185911044478416, -0.09444719552993774, -0.017913486808538437, 0.0421442948281765, 0.32166725397109985, -0.24467067420482635, 0.01649945043027401, -0.016726477071642876, 0.04372857138514519, 0.022322621196508408, -0.02840261347591877, 0.1360209584236145, 0.004649879410862923, 1.2227624654769897, -0.02907373011112213, 0.0015699334908276796, -0.0023608924821019173, 0.027395939454436302, -0.3055498003959656, -0.20633240044116974, 0.1781095564365387, 0.24307604134082794, -0.512697160243988, 0.22021013498306274]} +{"t": 8.8196, "q": [-0.13837869465351105, 0.02118256874382496, 0.01948520727455616, 0.3165539801120758, -0.17252425849437714, -0.014207164756953716, -0.09444719552993774, -0.0179305300116539, 0.04202376678586006, 0.32153940200805664, -0.24467484652996063, 0.016492284834384918, -0.015695301815867424, 0.0435771644115448, 0.02242170460522175, -0.0288819819688797, 0.1344510167837143, 0.004446147475391626, 1.2226545810699463, -0.02906174585223198, 0.0015579492319375277, -0.0023608924821019173, 0.027276096865534782, -0.30141523480415344, -0.20449881255626678, 0.17821741104125977, 0.23872576653957367, -0.5128889083862305, 0.22011426091194153]} +{"t": 8.8364, "q": [-0.13843834400177002, 0.021174047142267227, 0.019418248906731606, 0.316426157951355, -0.17252850532531738, -0.014200103469192982, -0.09440458565950394, -0.01798166334629059, 0.04190324246883392, 0.3213689625263214, -0.24468326568603516, 0.01649235561490059, -0.014690909534692764, 0.04322143271565437, 0.022645041346549988, -0.029217541217803955, 0.13310879468917847, 0.004422178957611322, 1.2226066589355469, -0.029049761593341827, 0.0015579492319375277, -0.0023608924821019173, 0.027647607028484344, -0.2985749840736389, -0.20246149599552155, 0.17722272872924805, 0.23423168063163757, -0.5131165981292725, 0.2201981544494629]} +{"t": 8.8532, "q": [-0.1384894847869873, 0.021174047142267227, 0.019230762496590614, 0.3162897825241089, -0.17252857983112335, -0.014214260503649712, -0.09440458565950394, -0.017964620143175125, 0.04178271442651749, 0.321283757686615, -0.24468761682510376, 0.01651393435895443, -0.014048098586499691, 0.04286562651395798, 0.02287789061665535, -0.02895388752222061, 0.1318264752626419, 0.00436225812882185, 1.2225468158721924, -0.028977856040000916, 0.0014740596525371075, -0.0023608924821019173, 0.027455860748887062, -0.2976042628288269, -0.1997770369052887, 0.17540112137794495, 0.22941403090953827, -0.5140513777732849, 0.2201981544494629]} +{"t": 8.8699, "q": [-0.13849800825119019, 0.021157002076506615, 0.019270937889814377, 0.31620457768440247, -0.17253705859184265, -0.014200138859450817, -0.09440458565950394, -0.017956096678972244, 0.041755929589271545, 0.32116442918777466, -0.2446875274181366, 0.01649957150220871, -0.014048098586499691, 0.04240414872765541, 0.023142054677009583, -0.028846031054854393, 0.13077186048030853, 0.004386226646602154, 1.2224149703979492, -0.02901380881667137, 0.0014141385909169912, -0.0023608924821019173, 0.027839355170726776, -0.2983233332633972, -0.19827900826931, 0.17417873442173004, 0.2241889089345932, -0.5146745443344116, 0.220545694231987]} +{"t": 8.8867, "q": [-0.13851505517959595, 0.02113995887339115, 0.019351288676261902, 0.3161960542201996, -0.17253273725509644, -0.014193043112754822, -0.09440458565950394, -0.018015751615166664, 0.04180949926376343, 0.32107922434806824, -0.24469603598117828, 0.0165140051394701, -0.014182017184793949, 0.0417383648455143, 0.023539762943983078, -0.02877412550151348, 0.12992098927497864, 0.00441019469872117, 1.2223910093307495, -0.029037777334451675, 0.0014021543320268393, -0.0023728765081614256, 0.02811499312520027, -0.2993299961090088, -0.195834219455719, 0.17431055009365082, 0.2164231240749359, -0.5147344470024109, 0.22145649790763855]} +{"t": 8.9034, "q": [-0.138625830411911, 0.02113995887339115, 0.019351288676261902, 0.31620457768440247, -0.17252850532531738, -0.014200103469192982, -0.09444719552993774, -0.017973141744732857, 0.0418228916823864, 0.3211047947406769, -0.24467919766902924, 0.0165138840675354, -0.014262368902564049, 0.04103424772620201, 0.024037284776568413, -0.02931341528892517, 0.12895026803016663, 0.004434163216501474, 1.2222591638565063, -0.028989840298891068, 0.0014261228498071432, -0.0023608924821019173, 0.028965871781110764, -0.30171486735343933, -0.19220300018787384, 0.17529326677322388, 0.20744693279266357, -0.514722466468811, 0.22445255517959595]} +{"t": 8.9201, "q": [-0.13883036375045776, 0.021088825538754463, 0.019284330308437347, 0.316238671541214, -0.17252418398857117, -0.014193007722496986, -0.09454946219921112, -0.018041318282485008, 0.041755929589271545, 0.3211303651332855, -0.24468344449996948, 0.01652109995484352, -0.014155233278870583, 0.04036811739206314, 0.024491094052791595, -0.030224215239286423, 0.12808740139007568, 0.004434163216501474, 1.2222352027893066, -0.02895388752222061, 0.0014620755100622773, -0.0023608924821019173, 0.030128343030810356, -0.30743134021759033, -0.18845194578170776, 0.1760842204093933, 0.19452793896198273, -0.5147464275360107, 0.2290305346250534]} +{"t": 8.9368, "q": [-0.13889002799987793, 0.021071782335639, 0.01929772086441517, 0.3162897825241089, -0.17252850532531738, -0.014200103469192982, -0.09457503259181976, -0.018024273216724396, 0.041769322007894516, 0.3211047947406769, -0.2446833699941635, 0.01650671847164631, -0.014235584996640682, 0.039528198540210724, 0.02503926120698452, -0.030248183757066727, 0.12776382267475128, 0.00441019469872117, 1.2215640544891357, -0.028917934745550156, 0.0013781859306618571, -0.0023489082232117653, 0.03175819665193558, -0.31391480565071106, -0.18369419872760773, 0.17659954726696014, 0.1815010905265808, -0.5147703886032104, 0.23272167146205902]} +{"t": 8.9536, "q": [-0.13892410695552826, 0.021097347140312195, 0.019284330308437347, 0.31630682945251465, -0.1725328117609024, -0.014207200147211552, -0.09456650912761688, -0.018024273216724396, 0.04179610684514046, 0.32112184166908264, -0.24469177424907684, 0.01650678738951683, -0.014222193509340286, 0.038666680455207825, 0.025477562099695206, -0.030835412442684174, 0.1276559680700302, 0.00441019469872117, 1.220401644706726, -0.028869997709989548, 0.0013781859306618571, -0.0023489082232117653, 0.03483814373612404, -0.3218723237514496, -0.17659954726696014, 0.17687517404556274, 0.16583770513534546, -0.5149261951446533, 0.23690415918827057]} +{"t": 8.9704, "q": [-0.13891558349132538, 0.021097347140312195, 0.019257545471191406, 0.3164091110229492, -0.17252850532531738, -0.014200103469192982, -0.09454093873500824, -0.018024273216724396, 0.04179610684514046, 0.3211303651332855, -0.2446918785572052, 0.0165211521089077, -0.014222193509340286, 0.03770003467798233, 0.025880394503474236, -0.031626369804143906, 0.12775184214115143, 0.004386226646602154, 1.2196944952011108, -0.02882206253707409, 0.0013662016717717052, -0.0023608924821019173, 0.03898468613624573, -0.3300575613975525, -0.16952885687351227, 0.17692311108112335, 0.150198295712471, -0.5150460600852966, 0.2416858673095703]} +{"t": 8.9871, "q": [-0.13900932669639587, 0.02106325887143612, 0.019244154915213585, 0.31640058755874634, -0.17252850532531738, -0.014200103469192982, -0.09458354860544205, -0.01810949482023716, 0.04179610684514046, 0.321096271276474, -0.2446833699941635, 0.01650671847164631, -0.01419540960341692, 0.03680204972624779, 0.02615213394165039, -0.03323225677013397, 0.12778779864311218, 0.00436225812882185, 1.2194907665252686, -0.028726188465952873, 0.0013662016717717052, -0.0023608924821019173, 0.04507267102599144, -0.33980071544647217, -0.1622304618358612, 0.17639581859111786, 0.1330009251832962, -0.5153336524963379, 0.24561668932437897]} +{"t": 9.0038, "q": [-0.13900932669639587, 0.021046215668320656, 0.019230762496590614, 0.31648579239845276, -0.17253705859184265, -0.014200138859450817, -0.09457503259181976, -0.018135061487555504, 0.04179610684514046, 0.32111331820487976, -0.24468326568603516, 0.01649235561490059, -0.014048098586499691, 0.035859547555446625, 0.02633851021528244, -0.0351976677775383, 0.12770390510559082, 0.004326305352151394, 1.21937096118927, -0.028678251430392265, 0.0013662016717717052, -0.0023608924821019173, 0.05181979015469551, -0.3494000732898712, -0.15541143715381622, 0.17607223987579346, 0.11317902058362961, -0.5158250331878662, 0.25003886222839355]} +{"t": 9.0205, "q": [-0.13906046748161316, 0.02102064900100231, 0.01913701929152012, 0.3165454566478729, -0.17252418398857117, -0.014193007722496986, -0.09454946219921112, -0.018100973218679428, 0.04171575605869293, 0.3211303651332855, -0.24467910826206207, 0.016499502584338188, -0.013766868971288204, 0.03487898036837578, 0.02658749558031559, -0.0370192714035511, 0.1278596967458725, 0.004266384057700634, 1.219430923461914, -0.028618330135941505, 0.0013542174128815532, -0.0023489082232117653, 0.0577639639377594, -0.3580646812915802, -0.14994663000106812, 0.17643176019191742, 0.09376458078622818, -0.5159328579902649, 0.25293904542922974]} +{"t": 9.0374, "q": [-0.13906046748161316, 0.02102064900100231, 0.019096843898296356, 0.3165539801120758, -0.17252418398857117, -0.014193007722496986, -0.09457503259181976, -0.018092451617121696, 0.041742537170648575, 0.3211474120616913, -0.2446833699941635, 0.01650671847164631, -0.013632949441671371, 0.03402622416615486, 0.026867032051086426, -0.03827761486172676, 0.1278836727142334, 0.004290352575480938, 1.21937096118927, -0.028606345877051353, 0.001342233270406723, -0.0023608924821019173, 0.06386393308639526, -0.3667772114276886, -0.1435590386390686, 0.1768871694803238, 0.07408647984266281, -0.5159568786621094, 0.2549643814563751]} +{"t": 9.0542, "q": [-0.13907751441001892, 0.02102064900100231, 0.01913701929152012, 0.31657102704048157, -0.17252418398857117, -0.014193007722496986, -0.09457503259181976, -0.018083928152918816, 0.04179610684514046, 0.3211559057235718, -0.24468326568603516, 0.01649235561490059, -0.01379365287721157, 0.03342932462692261, 0.02719677984714508, -0.039092544466257095, 0.127931609749794, 0.004266384057700634, 1.2193470001220703, -0.028498487547039986, 0.001318264752626419, -0.0023489082232117653, 0.06937667727470398, -0.3759691119194031, -0.13644041121006012, 0.17703098058700562, 0.056661415845155716, -0.5159688591957092, 0.2567380666732788]} +{"t": 9.071, "q": [-0.13905194401741028, 0.020978039130568504, 0.019203977659344673, 0.3166391849517822, -0.17253273725509644, -0.014193043112754822, -0.09466025233268738, -0.018100973218679428, 0.04184967279434204, 0.3211388885974884, -0.24468326568603516, 0.01649235561490059, -0.013927571475505829, 0.03312679007649422, 0.02741154655814171, -0.039320241659879684, 0.12800350785255432, 0.004266384057700634, 1.2194068431854248, -0.028558408841490746, 0.001318264752626419, -0.0023608924821019173, 0.0731397271156311, -0.38351917266845703, -0.13010074198246002, 0.1772347092628479, 0.0412137508392334, -0.5159568786621094, 0.25835591554641724]} +{"t": 9.0877, "q": [-0.13906046748161316, 0.020935427397489548, 0.01931111328303814, 0.31668180227279663, -0.17252857983112335, -0.014214260503649712, -0.09480512887239456, -0.018100973218679428, 0.04197020083665848, 0.32111331820487976, -0.24468326568603516, 0.01649235561490059, -0.014248977415263653, 0.0330885648727417, 0.02750244550406933, -0.039452068507671356, 0.12779977917671204, 0.00424241553992033, 1.2194428443908691, -0.028546424582600594, 0.001330249011516571, -0.0023489082232117653, 0.07749000191688538, -0.3900386095046997, -0.1258343607187271, 0.18021878600120544, 0.02600576914846897, -0.5156572461128235, 0.26004570722579956]} +{"t": 9.1044, "q": [-0.1390945464372635, 0.02089281752705574, 0.019404856488108635, 0.316656231880188, -0.17253273725509644, -0.014193043112754822, -0.09490738809108734, -0.01810949482023716, 0.042050551623106, 0.32112184166908264, -0.24468326568603516, 0.01649235561490059, -0.014409679919481277, 0.03317118063569069, 0.027534006163477898, -0.03984754905104637, 0.1272844523191452, 0.004254399798810482, 1.21937096118927, -0.028558408841490746, 0.001318264752626419, -0.0023608924821019173, 0.0824514701962471, -0.39509594440460205, -0.12313791364431381, 0.18314293026924133, 0.01236772071570158, -0.5155613422393799, 0.26092055439949036]} +{"t": 9.1212, "q": [-0.13903489708900452, 0.020901339128613472, 0.019391464069485664, 0.3166391849517822, -0.17252850532531738, -0.014200103469192982, -0.0949244350194931, -0.018135061487555504, 0.04202376678586006, 0.3211303651332855, -0.2446833699941635, 0.01650671847164631, -0.014315936714410782, 0.033404942601919174, 0.027477163821458817, -0.04072239622473717, 0.12645754218101501, 0.004266384057700634, 1.2193589210510254, -0.028546424582600594, 0.001318264752626419, -0.0023489082232117653, 0.088791124522686, -0.39933836460113525, -0.12122043967247009, 0.18521620333194733, -0.002037318190559745, -0.515321671962738, 0.2612560987472534]} +{"t": 9.1379, "q": [-0.13900932669639587, 0.020875772461295128, 0.019378073513507843, 0.3165454566478729, -0.1725241094827652, -0.014178850688040257, -0.09495000541210175, -0.018126539885997772, 0.041930023580789566, 0.32107922434806824, -0.24468742311000824, 0.01648520864546299, -0.014222193509340286, 0.03365364670753479, 0.027438998222351074, -0.041729073971509933, 0.1256905496120453, 0.00430233683437109, 1.219310998916626, -0.02858237735927105, 0.001318264752626419, -0.0023489082232117653, 0.0947592705488205, -0.4029216468334198, -0.11949470639228821, 0.1868220865726471, -0.015184013172984123, -0.5151898860931396, 0.2616635859012604]} +{"t": 9.1547, "q": [-0.13903489708900452, 0.02089281752705574, 0.019364681094884872, 0.316426157951355, -0.17252418398857117, -0.014193007722496986, -0.09500965476036072, -0.01811801828444004, 0.04195680841803551, 0.32098546624183655, -0.24469603598117828, 0.0165140051394701, -0.014088273979723454, 0.03392447903752327, 0.027471551671624184, -0.04283162206411362, 0.1251632422208786, 0.004314321093261242, 1.2193230390548706, -0.028630314394831657, 0.001318264752626419, -0.0023369239643216133, 0.10081130266189575, -0.4057139754295349, -0.11808057129383087, 0.18725351989269257, -0.030595727264881134, -0.5151898860931396, 0.2619032561779022]} +{"t": 9.1715, "q": [-0.1390434205532074, 0.020901339128613472, 0.019270937889814377, 0.316426157951355, -0.17252425849437714, -0.014207164756953716, -0.09498409181833267, -0.018083928152918816, 0.04187645763158798, 0.3209599256515503, -0.24469594657421112, 0.01649964042007923, -0.013539206236600876, 0.03414953500032425, 0.027599969878792763, -0.043838296085596085, 0.12487562745809555, 0.004326305352151394, 1.2192751169204712, -0.028606345877051353, 0.001318264752626419, -0.0023489082232117653, 0.10573682188987732, -0.4083385169506073, -0.11637881398200989, 0.18722954392433167, -0.045216482132673264, -0.5152018666267395, 0.26177144050598145]} +{"t": 9.1883, "q": [-0.13901785016059875, 0.020901339128613472, 0.01917719468474388, 0.3163664937019348, -0.17251569032669067, -0.014207128435373306, -0.09500965476036072, -0.018092451617121696, 0.04178271442651749, 0.32094287872314453, -0.24469594657421112, 0.01649964042007923, -0.013164233416318893, 0.034284476190805435, 0.0276922807097435, -0.04422179237008095, 0.12471982836723328, 0.004338289611041546, 1.2192751169204712, -0.028618330135941505, 0.001318264752626419, -0.0023728765081614256, 0.10970360040664673, -0.41069939732551575, -0.11528825014829636, 0.18731343746185303, -0.06029263883829117, -0.5151898860931396, 0.26149579882621765]} +{"t": 9.205, "q": [-0.13900932669639587, 0.020909860730171204, 0.01917719468474388, 0.3162897825241089, -0.17252857983112335, -0.014214260503649712, -0.09505226463079453, -0.01805836334824562, 0.04179610684514046, 0.3209002614021301, -0.2447001039981842, 0.01649249531328678, -0.01319101732224226, 0.0344197116792202, 0.0277370847761631, -0.044269729405641556, 0.12465991079807281, 0.00441019469872117, 1.2192751169204712, -0.02864229865372181, 0.001318264752626419, -0.0023608924821019173, 0.11244798451662064, -0.4126528203487396, -0.11510848253965378, 0.18715764582157135, -0.07487744092941284, -0.5152378082275391, 0.26075276732444763]} +{"t": 9.2219, "q": [-0.139000803232193, 0.020918384194374084, 0.019217370077967644, 0.3162216246128082, -0.17252425849437714, -0.014207164756953716, -0.09505226463079453, -0.018041318282485008, 0.04180949926376343, 0.32088321447372437, -0.24469177424907684, 0.01650678738951683, -0.013351719826459885, 0.03448775038123131, 0.027692977339029312, -0.044197823852300644, 0.1245880052447319, 0.00441019469872117, 1.2193589210510254, -0.02865428291261196, 0.001330249011516571, -0.0023489082232117653, 0.11490475386381149, -0.41494181752204895, -0.11504856497049332, 0.18696589767932892, -0.0905408188700676, -0.5153096914291382, 0.25992587208747864]} +{"t": 9.2387, "q": [-0.13897524774074554, 0.02094395086169243, 0.019190587103366852, 0.31616196036338806, -0.17252850532531738, -0.014200103469192982, -0.09502670168876648, -0.018032796680927277, 0.0418228916823864, 0.32088321447372437, -0.24469594657421112, 0.01649964042007923, -0.013472246937453747, 0.03457067161798477, 0.027677075937390327, -0.04416187107563019, 0.12452808767557144, 0.004434163216501474, 1.2193470001220703, -0.028738172724843025, 0.0013662016717717052, -0.0023608924821019173, 0.11663047969341278, -0.4175543785095215, -0.11524031311273575, 0.18676216900348663, -0.10484998673200607, -0.5153576135635376, 0.2586195766925812]} +{"t": 9.2554, "q": [-0.13898377120494843, 0.020960994064807892, 0.019190587103366852, 0.31611934304237366, -0.17252850532531738, -0.014200103469192982, -0.09503522515296936, -0.018041318282485008, 0.04183628037571907, 0.32088321447372437, -0.2447001039981842, 0.01649249531328678, -0.013472246937453747, 0.03459358960390091, 0.02762436866760254, -0.044197823852300644, 0.12437228858470917, 0.004434163216501474, 1.2192511558532715, -0.028726188465952873, 0.001342233270406723, -0.0023608924821019173, 0.11761318892240524, -0.41987931728363037, -0.11595936119556427, 0.1865464448928833, -0.12179568409919739, -0.5153816342353821, 0.2564144730567932]} +{"t": 9.2721, "q": [-0.13901785016059875, 0.020978039130568504, 0.019217370077967644, 0.3161449134349823, -0.17251993715763092, -0.014200068078935146, -0.09502670168876648, -0.01805836334824562, 0.04184967279434204, 0.3208661675453186, -0.24469168484210968, 0.01649242453277111, -0.013499030843377113, 0.03458615019917488, 0.02761026658117771, -0.04428171366453171, 0.12410863488912582, 0.004422178957611322, 1.2192511558532715, -0.02870221994817257, 0.001342233270406723, -0.0023608924821019173, 0.11796072870492935, -0.4219405949115753, -0.1164507195353508, 0.18634271621704102, -0.1368958055973053, -0.5154175758361816, 0.25356224179267883]} +{"t": 9.2888, "q": [-0.13900932669639587, 0.020969515666365623, 0.019230762496590614, 0.3161960542201996, -0.17251993715763092, -0.014200068078935146, -0.09500113129615784, -0.01805836334824562, 0.04186306521296501, 0.3209002614021301, -0.24469177424907684, 0.01650678738951683, -0.01352581474930048, 0.03460133448243141, 0.02759096585214138, -0.04430568218231201, 0.12362926453351974, 0.004422178957611322, 1.2192511558532715, -0.028678251430392265, 0.001342233270406723, -0.0023249397054314613, 0.11790081113576889, -0.4238221347332001, -0.11719373613595963, 0.18613898754119873, -0.15149259567260742, -0.5155014395713806, 0.24923592805862427]} +{"t": 9.3056, "q": [-0.13898377120494843, 0.020995082333683968, 0.019257545471191406, 0.3162301480770111, -0.17251993715763092, -0.014200068078935146, -0.09497556835412979, -0.018092451617121696, 0.04188985005021095, 0.3209002614021301, -0.24469168484210968, 0.01649242453277111, -0.013606165535748005, 0.03463931381702423, 0.027537958696484566, -0.044377587735652924, 0.12294616550207138, 0.004422178957611322, 1.2192151546478271, -0.02865428291261196, 0.001342233270406723, -0.0023489082232117653, 0.11776898056268692, -0.42475688457489014, -0.11803263425827026, 0.18595921993255615, -0.16671255230903625, -0.5155014395713806, 0.24568860232830048]} +{"t": 9.3223, "q": [-0.13896672427654266, 0.020995082333683968, 0.019257545471191406, 0.31629830598831177, -0.17252425849437714, -0.014207164756953716, -0.09495000541210175, -0.018126539885997772, 0.04190324246883392, 0.32094287872314453, -0.24469168484210968, 0.01649242453277111, -0.013766868971288204, 0.03473009541630745, 0.027469730004668236, -0.04442552477121353, 0.12191552668809891, 0.004422178957611322, 1.2192511558532715, -0.028618330135941505, 0.0013542174128815532, -0.0023369239643216133, 0.11776898056268692, -0.4251883327960968, -0.11885954439640045, 0.1856715977191925, -0.18124942481517792, -0.51554936170578, 0.24081102013587952]} +{"t": 9.3391, "q": [-0.13894115388393402, 0.020986560732126236, 0.01929772086441517, 0.3163323998451233, -0.17252857983112335, -0.014214260503649712, -0.09490738809108734, -0.018126539885997772, 0.04194341599941254, 0.32099398970603943, -0.2446957379579544, 0.01647091470658779, -0.014074882492423058, 0.03482862189412117, 0.02736814133822918, -0.04441354051232338, 0.12077701836824417, 0.004446147475391626, 1.2192271947860718, -0.028678251430392265, 0.0013542174128815532, -0.0023249397054314613, 0.11770906299352646, -0.42512840032577515, -0.12001003324985504, 0.1841016709804535, -0.19499532878398895, -0.5158010721206665, 0.23755131661891937]} +{"t": 9.3558, "q": [-0.13888150453567505, 0.0210036039352417, 0.019431641325354576, 0.31639206409454346, -0.17252425849437714, -0.014207164756953716, -0.09486477822065353, -0.018126539885997772, 0.04202376678586006, 0.32107070088386536, -0.24468326568603516, 0.01649235561490059, -0.01478465273976326, 0.034866813570261, 0.027286546304821968, -0.04428171366453171, 0.11941082030534744, 0.004434163216501474, 1.219299077987671, -0.028678251430392265, 0.0013542174128815532, -0.0023489082232117653, 0.1176731064915657, -0.42538008093833923, -0.12118448317050934, 0.18326276540756226, -0.20948426425457, -0.5159448385238647, 0.23333287239074707]} +{"t": 9.3726, "q": [-0.13889853656291962, 0.020969515666365623, 0.01947181671857834, 0.31639206409454346, -0.17253273725509644, -0.014193043112754822, -0.09480512887239456, -0.01811801828444004, 0.04206394404172897, 0.32116442918777466, -0.2446875274181366, 0.01649957150220871, -0.015481031499803066, 0.03486737981438637, 0.027200967073440552, -0.04424576088786125, 0.11790081113576889, 0.00441019469872117, 1.219299077987671, -0.028666267171502113, 0.0013542174128815532, -0.0023369239643216133, 0.11760120093822479, -0.42551189661026, -0.12226306647062302, 0.18283134698867798, -0.22460834681987762, -0.5160766839981079, 0.2283833771944046]} +{"t": 9.3895, "q": [-0.13887298107147217, 0.02101212739944458, 0.01947181671857834, 0.31639206409454346, -0.17252857983112335, -0.014214260503649712, -0.0947880819439888, -0.018135061487555504, 0.042104121297597885, 0.32130080461502075, -0.24469158053398132, 0.01647806167602539, -0.015856005251407623, 0.034845005720853806, 0.027168165892362595, -0.04430568218231201, 0.11643873155117035, 0.004338289611041546, 1.219310998916626, -0.02865428291261196, 0.0013662016717717052, -0.0023608924821019173, 0.1173735037446022, -0.4254879355430603, -0.12391688674688339, 0.1825796663761139, -0.23888155817985535, -0.516148567199707, 0.2235417515039444]} +{"t": 9.4062, "q": [-0.1389070600271225, 0.020986560732126236, 0.01949859969317913, 0.3164176344871521, -0.17252418398857117, -0.014193007722496986, -0.09477955847978592, -0.018075406551361084, 0.042117513716220856, 0.32143715023994446, -0.24467910826206207, 0.016499502584338188, -0.01596313901245594, 0.03493582457304001, 0.027099687606096268, -0.044437509030103683, 0.11471300572156906, 0.0041585261933505535, 1.219299077987671, -0.02864229865372181, 0.001342233270406723, -0.0023489082232117653, 0.11658254265785217, -0.4252362549304962, -0.12599016726016998, 0.1823999136686325, -0.2545689046382904, -0.5161725878715515, 0.21756163239479065]} +{"t": 9.423, "q": [-0.13892410695552826, 0.020969515666365623, 0.01947181671857834, 0.316426157951355, -0.17252418398857117, -0.014193007722496986, -0.09475399553775787, -0.018100973218679428, 0.0421442948281765, 0.32153087854385376, -0.2446833699941635, 0.01650671847164631, -0.015882788226008415, 0.035110268741846085, 0.02691059187054634, -0.04468917474150658, 0.113131083548069, 0.004122573416680098, 1.2191911935806274, -0.0285943616181612, 0.0013542174128815532, -0.0023489082232117653, 0.11586348712444305, -0.42508047819137573, -0.12833906710147858, 0.182328000664711, -0.2699446678161621, -0.5161606073379517, 0.21143768727779388]} +{"t": 9.4399, "q": [-0.13894115388393402, 0.020960994064807892, 0.01948520727455616, 0.3164772689342499, -0.17252418398857117, -0.014193007722496986, -0.09473694860935211, -0.01811801828444004, 0.04213090240955353, 0.3215649724006653, -0.2446749359369278, 0.01650666631758213, -0.015829220414161682, 0.03528547286987305, 0.026607390493154526, -0.04470115900039673, 0.11157313734292984, 0.004122573416680098, 1.2192151546478271, -0.028570393100380898, 0.0013542174128815532, -0.0023489082232117653, 0.11524031311273575, -0.42499658465385437, -0.13008876144886017, 0.1823040395975113, -0.2863271236419678, -0.5161606073379517, 0.20490628480911255]} +{"t": 9.4566, "q": [-0.13895820081233978, 0.020935427397489548, 0.01948520727455616, 0.3164602220058441, -0.1725284308195114, -0.014185946434736252, -0.0946943387389183, -0.01811801828444004, 0.0421442948281765, 0.32158201932907104, -0.2446875274181366, 0.01649957150220871, -0.01577565260231495, 0.03557462617754936, 0.0261544082313776, -0.04465322196483612, 0.10979947447776794, 0.0041345576755702496, 1.2192151546478271, -0.02864229865372181, 0.0013542174128815532, -0.0023489082232117653, 0.11503657698631287, -0.42490071058273315, -0.13074789941310883, 0.18213625252246857, -0.3005763590335846, -0.5161365866661072, 0.19908194243907928]} +{"t": 9.4734, "q": [-0.13894115388393402, 0.020909860730171204, 0.01947181671857834, 0.3165113627910614, -0.17253698408603668, -0.014185973443090916, -0.09463468194007874, -0.018143583089113235, 0.042117513716220856, 0.3216075897216797, -0.24467067420482635, 0.01649945043027401, -0.015735477209091187, 0.035765428096055984, 0.025775259360671043, -0.04460528492927551, 0.10776215046644211, 0.004206463228911161, 1.2192391157150269, -0.028606345877051353, 0.001342233270406723, -0.0023608924821019173, 0.1149766594171524, -0.42469698190689087, -0.13108345866203308, 0.18199244141578674, -0.31828904151916504, -0.5161246061325073, 0.19367706775665283]} +{"t": 9.4902, "q": [-0.13891558349132538, 0.020918384194374084, 0.019458424299955368, 0.3165625035762787, -0.1725284308195114, -0.014185946434736252, -0.09458354860544205, -0.018143583089113235, 0.04213090240955353, 0.321658730506897, -0.24467504024505615, 0.016521031036973, -0.01565512642264366, 0.035993024706840515, 0.02552354894578457, -0.04456933215260506, 0.10572483390569687, 0.0041824947111308575, 1.2192630767822266, -0.028606345877051353, 0.001342233270406723, -0.0023489082232117653, 0.11501260846853256, -0.42469698190689087, -0.13126322627067566, 0.1819804608821869, -0.33516281843185425, -0.5161365866661072, 0.1892189383506775]} +{"t": 9.507, "q": [-0.13893263041973114, 0.020935427397489548, 0.01947181671857834, 0.3165965974330902, -0.1725241094827652, -0.014178850688040257, -0.09456650912761688, -0.018143583089113235, 0.042117513716220856, 0.3217013478279114, -0.24466651678085327, 0.01650659739971161, -0.015681909397244453, 0.03616710752248764, 0.02539166249334812, -0.04454536363482475, 0.10387926548719406, 0.0041585261933505535, 1.2191911935806274, -0.028606345877051353, 0.001342233270406723, -0.0023608924821019173, 0.11504856497049332, -0.4246729910373688, -0.13137108087539673, 0.18196848034858704, -0.3507303297519684, -0.5161246061325073, 0.18465293943881989]} +{"t": 9.5237, "q": [-0.13894115388393402, 0.020918384194374084, 0.01948520727455616, 0.31661364436149597, -0.1725241094827652, -0.014178850688040257, -0.09457503259181976, -0.01810949482023716, 0.042117513716220856, 0.32172688841819763, -0.24464571475982666, 0.016542332246899605, -0.015708694234490395, 0.03631085902452469, 0.02529815025627613, -0.04454536363482475, 0.101698137819767, 0.0041944789700210094, 1.219155192375183, -0.02864229865372181, 0.001342233270406723, -0.0023489082232117653, 0.11513245105743408, -0.42452919483184814, -0.1315268725156784, 0.1819804608821869, -0.3677958846092224, -0.5160647034645081, 0.17964354157447815]} +{"t": 9.5405, "q": [-0.13894115388393402, 0.020901339128613472, 0.01949859969317913, 0.31657102704048157, -0.1725284308195114, -0.014185946434736252, -0.094557985663414, -0.01811801828444004, 0.04213090240955353, 0.3217439353466034, -0.244637593626976, 0.016585370525717735, -0.01565512642264366, 0.03647710755467415, 0.025218404829502106, -0.04459330067038536, 0.09961287677288055, 0.004218447487801313, 1.219155192375183, -0.02865428291261196, 0.001342233270406723, -0.0023489082232117653, 0.11549197882413864, -0.42448127269744873, -0.13149091601371765, 0.18196848034858704, -0.3846457004547119, -0.5160527229309082, 0.17459817230701447]} +{"t": 9.5572, "q": [-0.13897524774074554, 0.02089281752705574, 0.01947181671857834, 0.3165625035762787, -0.17252418398857117, -0.014193007722496986, -0.094557985663414, -0.01810949482023716, 0.042117513716220856, 0.3217439353466034, -0.24462926387786865, 0.016599664464592934, -0.015588166192173958, 0.03664349019527435, 0.025119639933109283, -0.04452139511704445, 0.09764746576547623, 0.0041944789700210094, 1.219155192375183, -0.028570393100380898, 0.001342233270406723, -0.0023728765081614256, 0.11573166400194168, -0.42445728182792664, -0.13135908544063568, 0.1820044219493866, -0.4031014144420624, -0.5160287618637085, 0.17035576701164246]} +{"t": 9.574, "q": [-0.13894115388393402, 0.02088429592549801, 0.01948520727455616, 0.3166477084159851, -0.1725241094827652, -0.014178850688040257, -0.09454946219921112, -0.018126539885997772, 0.042104121297597885, 0.3217950761318207, -0.24460411071777344, 0.016613835468888283, -0.0154542475938797, 0.036719147115945816, 0.025070423260331154, -0.044497426599264145, 0.09592173993587494, 0.0041705104522407055, 1.2192151546478271, -0.028570393100380898, 0.0013542174128815532, -0.0023249397054314613, 0.11580356955528259, -0.4244093596935272, -0.13116735219955444, 0.1820283979177475, -0.4205504357814789, -0.5160048007965088, 0.16671255230903625]} +{"t": 9.5907, "q": [-0.13894115388393402, 0.02088429592549801, 0.01948520727455616, 0.31663069128990173, -0.1725241094827652, -0.014178850688040257, -0.09454946219921112, -0.018143583089113235, 0.042104121297597885, 0.3217950761318207, -0.24460835754871368, 0.016621053218841553, -0.0154542475938797, 0.03674941137433052, 0.025050736963748932, -0.044497426599264145, 0.09474728256464005, 0.00407463638111949, 1.2191911935806274, -0.028558408841490746, 0.001330249011516571, -0.0023608924821019173, 0.11580356955528259, -0.4244213402271271, -0.13104750216007233, 0.1820283979177475, -0.4395693838596344, -0.5159808397293091, 0.1622544229030609]} +{"t": 9.6074, "q": [-0.13895820081233978, 0.020901339128613472, 0.01948520727455616, 0.3165965974330902, -0.1725112348794937, -0.014171718619763851, -0.09454093873500824, -0.01810949482023716, 0.042104121297597885, 0.32181212306022644, -0.24460835754871368, 0.016621053218841553, -0.015467639081180096, 0.036741845309734344, 0.0250556580722332, -0.044497426599264145, 0.09377656131982803, 0.003930825740098953, 1.2192031145095825, -0.028486503288149834, 0.0013542174128815532, -0.0023608924821019173, 0.11591142416000366, -0.42457711696624756, -0.13077186048030853, 0.18196848034858704, -0.4586962163448334, -0.5159568786621094, 0.15808391571044922]} +{"t": 9.6242, "q": [-0.13895820081233978, 0.020901339128613472, 0.01947181671857834, 0.31663069128990173, -0.1725112348794937, -0.014171718619763851, -0.09452389925718307, -0.018143583089113235, 0.04213090240955353, 0.32180359959602356, -0.24459993839263916, 0.016620982438325882, -0.015521206893026829, 0.03671921417117119, 0.02506091259419918, -0.044497426599264145, 0.0930095687508583, 0.0038229678757488728, 1.2192391157150269, -0.028414597734808922, 0.001342233270406723, -0.0023728765081614256, 0.11589944362640381, -0.4246130883693695, -0.13066400587558746, 0.18186061084270477, -0.4804356098175049, -0.5159448385238647, 0.15303856134414673]} +{"t": 9.6409, "q": [-0.13896672427654266, 0.020926905795931816, 0.019458424299955368, 0.31661364436149597, -0.17251978814601898, -0.014171754010021687, -0.09453241527080536, -0.01810949482023716, 0.042104121297597885, 0.32180359959602356, -0.24460004270076752, 0.01663534715771675, -0.015521206893026829, 0.036711715161800385, 0.025056324899196625, -0.044497426599264145, 0.09235043823719025, 0.0038349521346390247, 1.2192630767822266, -0.02840261347591877, 0.0013542174128815532, -0.0023728765081614256, 0.11589944362640381, -0.4247928559780121, -0.13066400587558746, 0.181728795170784, -0.4998500645160675, -0.5158729553222656, 0.15031813085079193]} +{"t": 9.6576, "q": [-0.13895820081233978, 0.020909860730171204, 0.01948520727455616, 0.31657102704048157, -0.1725112348794937, -0.014171718619763851, -0.0945153757929802, -0.018075406551361084, 0.042090728878974915, 0.3217865526676178, -0.24459993839263916, 0.016620982438325882, -0.015547990798950195, 0.03674947842955589, 0.02504122629761696, -0.04447345808148384, 0.09172725677490234, 0.0038469363935291767, 1.2192031145095825, -0.028390629217028618, 0.001342233270406723, -0.0023608924821019173, 0.11598332971334457, -0.4250205457210541, -0.13061606884002686, 0.18163292109966278, -0.5210621356964111, -0.5158130526542664, 0.1477774828672409]} +{"t": 9.6743, "q": [-0.1389496773481369, 0.02089281752705574, 0.01947181671857834, 0.31663069128990173, -0.17251546680927277, -0.014164658263325691, -0.09450685232877731, -0.018126539885997772, 0.04206394404172897, 0.3217950761318207, -0.24460846185684204, 0.016635416075587273, -0.015507815405726433, 0.03674947842955589, 0.02504122629761696, -0.04447345808148384, 0.09111606329679489, 0.003882888937368989, 1.2192151546478271, -0.028354676440358162, 0.0013542174128815532, -0.0023369239643216133, 0.11598332971334457, -0.425284206867218, -0.13061606884002686, 0.18171681463718414, -0.5397215485572815, -0.5155733823776245, 0.14499713480472565]} +{"t": 9.6916, "q": [-0.13895820081233978, 0.020909860730171204, 0.019458424299955368, 0.3166051208972931, -0.17251546680927277, -0.014164658263325691, -0.09450685232877731, -0.018126539885997772, 0.04206394404172897, 0.3217950761318207, -0.2446042001247406, 0.016628200188279152, -0.015400679782032967, 0.03674197569489479, 0.025036638602614403, -0.04444948956370354, 0.09046891331672668, 0.003942809998989105, 1.2192151546478271, -0.02834269218146801, 0.001342233270406723, -0.0023489082232117653, 0.11603126674890518, -0.4255838096141815, -0.13066400587558746, 0.18171681463718414, -0.5605381727218628, -0.515177845954895, 0.14122210443019867]} +{"t": 9.7084, "q": [-0.13895820081233978, 0.020875772461295128, 0.019445031881332397, 0.31657955050468445, -0.17251978814601898, -0.014171754010021687, -0.09447276592254639, -0.018126539885997772, 0.042090728878974915, 0.3217950761318207, -0.2446042001247406, 0.016628200188279152, -0.015293545089662075, 0.03674191236495972, 0.025046147406101227, -0.04442552477121353, 0.08974986523389816, 0.003930825740098953, 1.2192151546478271, -0.028354676440358162, 0.001342233270406723, -0.0023489082232117653, 0.11600729823112488, -0.42609912157058716, -0.13067598640918732, 0.18186061084270477, -0.5802642107009888, -0.5144827961921692, 0.13727930188179016]} +{"t": 9.7251, "q": [-0.13896672427654266, 0.020875772461295128, 0.019445031881332397, 0.3165625035762787, -0.172519713640213, -0.014157588593661785, -0.09450685232877731, -0.018126539885997772, 0.042077336460351944, 0.3217780292034149, -0.24460846185684204, 0.016635416075587273, -0.015173017978668213, 0.03674954175949097, 0.025031715631484985, -0.04442552477121353, 0.08885104954242706, 0.003990747034549713, 1.2191672325134277, -0.02834269218146801, 0.001342233270406723, -0.0023489082232117653, 0.11601928621530533, -0.4267103374004364, -0.13068798184394836, 0.18183664977550507, -0.6010568141937256, -0.5139075517654419, 0.1324017196893692]} +{"t": 9.742, "q": [-0.13895820081233978, 0.020875772461295128, 0.019458424299955368, 0.31657102704048157, -0.17251554131507874, -0.014178815297782421, -0.09450685232877731, -0.01805836334824562, 0.04202376678586006, 0.3217780292034149, -0.24460004270076752, 0.01663534715771675, -0.01511945016682148, 0.036802370101213455, 0.025016285479068756, -0.04447345808148384, 0.08796421438455582, 0.004026699811220169, 1.219155192375183, -0.028366660699248314, 0.001318264752626419, -0.0023489082232117653, 0.11603126674890518, -0.42732152342796326, -0.13069996237754822, 0.1818246692419052, -0.6201237440109253, -0.5133562684059143, 0.1294296383857727]} +{"t": 9.759, "q": [-0.1389496773481369, 0.020858729258179665, 0.019445031881332397, 0.31663069128990173, -0.17251116037368774, -0.014157561585307121, -0.09450685232877731, -0.018075406551361084, 0.042050551623106, 0.3217780292034149, -0.24460014700889587, 0.01664971001446247, -0.015106058679521084, 0.03686276450753212, 0.02499593235552311, -0.044497426599264145, 0.08702944219112396, 0.004098604898899794, 1.2191072702407837, -0.028390629217028618, 0.001318264752626419, -0.0023369239643216133, 0.11604325473308563, -0.42775294184684753, -0.13077186048030853, 0.18211229145526886, -0.6401134133338928, -0.5123975276947021, 0.1266133338212967]} +{"t": 9.7757, "q": [-0.13898377120494843, 0.020850205793976784, 0.01947181671857834, 0.31653693318367004, -0.17250266671180725, -0.014171683229506016, -0.09454946219921112, -0.018100973218679428, 0.042077336460351944, 0.3217439353466034, -0.24459588527679443, 0.01664249412715435, -0.01511945016682148, 0.03693085536360741, 0.024951636791229248, -0.044497426599264145, 0.0860707089304924, 0.00407463638111949, 1.2191072702407837, -0.02840261347591877, 0.001294296351261437, -0.0023848607670515776, 0.11606722325086594, -0.42832818627357483, -0.13093964755535126, 0.1823519766330719, -0.6605585217475891, -0.5110073685646057, 0.12352140992879868]} +{"t": 9.7925, "q": [-0.13898377120494843, 0.020807595923542976, 0.01948520727455616, 0.31661364436149597, -0.172515407204628, -0.01415049284696579, -0.09454946219921112, -0.018160628154873848, 0.042090728878974915, 0.32171836495399475, -0.24460430443286896, 0.016642563045024872, -0.015173017978668213, 0.03707447648048401, 0.024877147749066353, -0.04441354051232338, 0.08527974784374237, 0.00407463638111949, 1.219071388244629, -0.028426581993699074, 0.001282312092371285, -0.0023728765081614256, 0.1161271408200264, -0.4292509853839874, -0.13099956512451172, 0.18225610256195068, -0.6811354160308838, -0.509413480758667, 0.12023773044347763]} +{"t": 9.8094, "q": [-0.1389496773481369, 0.020799074321985245, 0.01949859969317913, 0.31662216782569885, -0.17251546680927277, -0.014164658263325691, -0.09453241527080536, -0.018143583089113235, 0.042090728878974915, 0.32172688841819763, -0.24460430443286896, 0.016642563045024872, -0.01519980188459158, 0.0371575653553009, 0.024842029437422752, -0.04440155625343323, 0.08463259786367416, 0.00407463638111949, 1.2190953493118286, -0.02840261347591877, 0.001282312092371285, -0.0023608924821019173, 0.11613912880420685, -0.43031758069992065, -0.1309516280889511, 0.18225610256195068, -0.699722945690155, -0.5081311464309692, 0.11671437323093414]} +{"t": 9.8261, "q": [-0.13894115388393402, 0.020807595923542976, 0.01947181671857834, 0.3166391849517822, -0.17251546680927277, -0.014164658263325691, -0.09454946219921112, -0.01811801828444004, 0.04203715920448303, 0.32170987129211426, -0.24461272358894348, 0.016642633825540543, -0.015213193371891975, 0.03726348653435707, 0.0247731264680624, -0.044437509030103683, 0.08402140438556671, 0.004098604898899794, 1.2190593481063843, -0.028390629217028618, 0.001294296351261437, -0.0023608924821019173, 0.11613912880420685, -0.43139615654945374, -0.13108345866203308, 0.18224410712718964, -0.7182865142822266, -0.5066450834274292, 0.11281949281692505]} +{"t": 9.8428, "q": [-0.13894115388393402, 0.020807595923542976, 0.01948520727455616, 0.31662216782569885, -0.17251116037368774, -0.014157561585307121, -0.09457503259181976, -0.018083928152918816, 0.042077336460351944, 0.32170987129211426, -0.24460004270076752, 0.01663534715771675, -0.015266761183738708, 0.03737690672278404, 0.024708768352866173, -0.04446147382259369, 0.08347012847661972, 0.004098604898899794, 1.219083309173584, -0.028390629217028618, 0.001270327833481133, -0.0023489082232117653, 0.11616309732198715, -0.4320552945137024, -0.13119131326675415, 0.18222014605998993, -0.7375811338424683, -0.5053508281707764, 0.11009907722473145]} +{"t": 9.8597, "q": [-0.13893263041973114, 0.020841684192419052, 0.01948520727455616, 0.31661364436149597, -0.17250682413578033, -0.014150448143482208, -0.09458354860544205, -0.01811801828444004, 0.042077336460351944, 0.3217013478279114, -0.24460430443286896, 0.016642563045024872, -0.015280152671039104, 0.03751295059919357, 0.02463909238576889, -0.04447345808148384, 0.08291885256767273, 0.004110589157789946, 1.219071388244629, -0.028414597734808922, 0.001270327833481133, -0.0023608924821019173, 0.1161511093378067, -0.43253466486930847, -0.1312752068042755, 0.18223212659358978, -0.7554016709327698, -0.5044400095939636, 0.10872089117765427]} +{"t": 9.8764, "q": [-0.13893263041973114, 0.020850205793976784, 0.019458424299955368, 0.31657955050468445, -0.1725112348794937, -0.014171718619763851, -0.09457503259181976, -0.01810949482023716, 0.042077336460351944, 0.3217013478279114, -0.24461272358894348, 0.016642633825540543, -0.015280152671039104, 0.037633996456861496, 0.024560250341892242, -0.04442552477121353, 0.08216384798288345, 0.0041705104522407055, 1.2190234661102295, -0.028438566252589226, 0.001282312092371285, -0.0023369239643216133, 0.11613912880420685, -0.43361324071884155, -0.13126322627067566, 0.18218418955802917, -0.7732581496238708, -0.5038647651672363, 0.1076902449131012]} +{"t": 9.8931, "q": [-0.13893263041973114, 0.020875772461295128, 0.019431641325354576, 0.3165539801120758, -0.17251978814601898, -0.014171754010021687, -0.09457503259181976, -0.018075406551361084, 0.04206394404172897, 0.3217013478279114, -0.24460846185684204, 0.016635416075587273, -0.015266761183738708, 0.03777017444372177, 0.024471554905176163, -0.044437509030103683, 0.08131296932697296, 0.004206463228911161, 1.2190474271774292, -0.028426581993699074, 0.001282312092371285, -0.0023608924821019173, 0.1161031723022461, -0.43453601002693176, -0.13126322627067566, 0.1821242719888687, -0.7911626100540161, -0.5036490559577942, 0.10626412183046341]} +{"t": 9.9098, "q": [-0.13893263041973114, 0.020901339128613472, 0.019431641325354576, 0.31661364436149597, -0.17251554131507874, -0.014178815297782421, -0.09458354860544205, -0.01811801828444004, 0.04202376678586006, 0.32170987129211426, -0.24460846185684204, 0.016635416075587273, -0.01519980188459158, 0.03783819451928139, 0.024436715990304947, -0.044437509030103683, 0.08039018511772156, 0.0041944789700210094, 1.2190114259719849, -0.028390629217028618, 0.0012583436910063028, -0.0023369239643216133, 0.11613912880420685, -0.43488356471061707, -0.131203293800354, 0.18218418955802917, -0.8064305186271667, -0.5035052299499512, 0.10484998673200607]} +{"t": 9.9266, "q": [-0.13891558349132538, 0.02088429592549801, 0.019431641325354576, 0.31663069128990173, -0.1725069135427475, -0.014164622873067856, -0.09458354860544205, -0.018126539885997772, 0.04202376678586006, 0.32170987129211426, -0.2446042001247406, 0.016628200188279152, -0.01519980188459158, 0.03795897588133812, 0.024395916610956192, -0.044437509030103683, 0.0797070786356926, 0.004206463228911161, 1.2189514636993408, -0.028390629217028618, 0.0012463594321161509, -0.0023608924821019173, 0.11616309732198715, -0.43483564257621765, -0.131203293800354, 0.18222014605998993, -0.8225612640380859, -0.5032655596733093, 0.10330402106046677]} +{"t": 9.9434, "q": [-0.13891558349132538, 0.02089281752705574, 0.019404856488108635, 0.31666475534439087, -0.17250259220600128, -0.014157508499920368, -0.09458354860544205, -0.018143583089113235, 0.042050551623106, 0.32172688841819763, -0.24460846185684204, 0.016635416075587273, -0.01519980188459158, 0.038125213235616684, 0.02431603893637657, -0.04447345808148384, 0.07897604256868362, 0.00424241553992033, 1.2189874649047852, -0.02840261347591877, 0.0012223910307511687, -0.0023369239643216133, 0.1161511093378067, -0.4346558749675751, -0.1312272697687149, 0.18231602013111115, -0.8373618125915527, -0.5030019283294678, 0.1020217090845108]} +{"t": 9.9601, "q": [-0.1389070600271225, 0.020909860730171204, 0.019431641325354576, 0.31672441959381104, -0.17251978814601898, -0.014171754010021687, -0.09459207206964493, -0.018143583089113235, 0.04202376678586006, 0.3217013478279114, -0.24460430443286896, 0.016642563045024872, -0.01519980188459158, 0.038253556936979294, 0.02427031099796295, -0.04444948956370354, 0.078508660197258, 0.004266384057700634, 1.2189514636993408, -0.028426581993699074, 0.0011864382540807128, -0.0023489082232117653, 0.11613912880420685, -0.43439221382141113, -0.13128718733787537, 0.18248379230499268, -0.8479797840118408, -0.5026543736457825, 0.10059558600187302]} +{"t": 9.9768, "q": [-0.13889002799987793, 0.020926905795931816, 0.019391464069485664, 0.31668180227279663, -0.17251116037368774, -0.014157561585307121, -0.09461764246225357, -0.018143583089113235, 0.04206394404172897, 0.3217013478279114, -0.24459578096866608, 0.01662812940776348, -0.015293545089662075, 0.03836704045534134, 0.02419639751315117, -0.04444948956370354, 0.07818508893251419, 0.004254399798810482, 1.2189514636993408, -0.028438566252589226, 0.0010905645322054625, -0.0023129554465413094, 0.11604325473308563, -0.4343802332878113, -0.13163472712039948, 0.18266355991363525, -0.8586697578430176, -0.5022828578948975, 0.09834255278110504]} +{"t": 9.9938, "q": [-0.13887298107147217, 0.02089281752705574, 0.019404856488108635, 0.316656231880188, -0.1725069135427475, -0.014164622873067856, -0.09461764246225357, -0.018100973218679428, 0.04206394404172897, 0.32171836495399475, -0.2446042001247406, 0.016628200188279152, -0.0153738958761096, 0.038495518267154694, 0.02413165010511875, -0.04436560347676277, 0.07812516391277313, 0.004266384057700634, 1.2190234661102295, -0.028450550511479378, 0.0010785802733153105, -0.0023369239643216133, 0.11549197882413864, -0.43241482973098755, -0.13271330296993256, 0.18274745345115662, -0.8645899295806885, -0.501947283744812, 0.09555022418498993]} +{"t": 10.0107, "q": [-0.13888150453567505, 0.02101212739944458, 0.019378073513507843, 0.3165539801120758, -0.1725112348794937, -0.014171718619763851, -0.09459207206964493, -0.018024273216724396, 0.04201037809252739, 0.3217013478279114, -0.24460835754871368, 0.016621053218841553, -0.015320328995585442, 0.03869948536157608, 0.024046067148447037, -0.044197823852300644, 0.07810119539499283, 0.004266384057700634, 1.2191193103790283, -0.02847451902925968, 0.0010186590952798724, -0.0023489082232117653, 0.11498863995075226, -0.42782485485076904, -0.1339476853609085, 0.18281935155391693, -0.867466151714325, -0.5016596913337708, 0.09251821786165237]} +{"t": 10.0274, "q": [-0.1388644576072693, 0.02102064900100231, 0.01929772086441517, 0.3165965974330902, -0.17251554131507874, -0.014178815297782421, -0.09463468194007874, -0.018066884949803352, 0.04194341599941254, 0.3216843008995056, -0.2446167916059494, 0.01662110537290573, -0.015266761183738708, 0.039046309888362885, 0.0239998921751976, -0.043910201638936996, 0.07806524634361267, 0.004278368316590786, 1.219155192375183, -0.02846253477036953, 0.0009946906939148903, -0.0023489082232117653, 0.11456919461488724, -0.4241456985473633, -0.13467872142791748, 0.18280737102031708, -0.8701865673065186, -0.5015398263931274, 0.0899416133761406]} +{"t": 10.0442, "q": [-0.13883888721466064, 0.02101212739944458, 0.019284330308437347, 0.31661364436149597, -0.17251130938529968, -0.014185875654220581, -0.0946517288684845, -0.01805836334824562, 0.04194341599941254, 0.3216416835784912, -0.2446167916059494, 0.01662110537290573, -0.015266761183738708, 0.03948367387056351, 0.023932568728923798, -0.043538689613342285, 0.07805325835943222, 0.004326305352151394, 1.219299077987671, -0.028570393100380898, 0.0009467537747696042, -0.0023489082232117653, 0.11334680020809174, -0.41966360807418823, -0.1354457139968872, 0.18253172934055328, -0.8716965913772583, -0.5016596913337708, 0.08755674958229065]} +{"t": 10.061, "q": [-0.13882184028625488, 0.02102064900100231, 0.019284330308437347, 0.3165965974330902, -0.17251130938529968, -0.014185875654220581, -0.0946943387389183, -0.01805836334824562, 0.04194341599941254, 0.3216075897216797, -0.24460835754871368, 0.016621053218841553, -0.015266761183738708, 0.03983832523226738, 0.02384313754737377, -0.043299004435539246, 0.07813715189695358, 0.004374242387712002, 1.219310998916626, -0.02864229865372181, 0.000898816913831979, -0.0023489082232117653, 0.11184877157211304, -0.41464221477508545, -0.13582921028137207, 0.1826755404472351, -0.8719123005867004, -0.5017914772033691, 0.08613062649965286]} +{"t": 10.0777, "q": [-0.1388559341430664, 0.021046215668320656, 0.019270937889814377, 0.3165539801120758, -0.1725069135427475, -0.014164622873067856, -0.09473694860935211, -0.01805836334824562, 0.04197020083665848, 0.32158201932907104, -0.24462084472179413, 0.016599593684077263, -0.015360504388809204, 0.04034433141350746, 0.023654861375689507, -0.04298741742968559, 0.07819706946611404, 0.004494084510952234, 1.2193470001220703, -0.028750156983733177, 0.000850879994686693, -0.0023489082232117653, 0.10991931706666946, -0.40848231315612793, -0.13633254170417786, 0.1826036423444748, -0.8710973858833313, -0.502091109752655, 0.08446481823921204]} +{"t": 10.0945, "q": [-0.13879628479480743, 0.021046215668320656, 0.01929772086441517, 0.3165965974330902, -0.1725069135427475, -0.014164622873067856, -0.09476251900196075, -0.01805836334824562, 0.04194341599941254, 0.32153087854385376, -0.24462094902992249, 0.016613958403468132, -0.01538728829473257, 0.04088776186108589, 0.023498984053730965, -0.04278368502855301, 0.07822103798389435, 0.004601942375302315, 1.2193230390548706, -0.028810078278183937, 0.0008149273344315588, -0.0023608924821019173, 0.10781008750200272, -0.4025980532169342, -0.13688382506370544, 0.18277141451835632, -0.8689761757850647, -0.5021989345550537, 0.08357799053192139]} +{"t": 10.1113, "q": [-0.13883888721466064, 0.02113995887339115, 0.019284330308437347, 0.3165198862552643, -0.1725112348794937, -0.014171718619763851, -0.09486477822065353, -0.018007230013608932, 0.04194341599941254, 0.3214968144893646, -0.2446167916059494, 0.01662110537290573, -0.015481031499803066, 0.04155290499329567, 0.02317839488387108, -0.042460110038518906, 0.07824500650167465, 0.004685832187533379, 1.2193949222564697, -0.02894190326333046, 0.0007669904152862728, -0.0023249397054314613, 0.10517355799674988, -0.3945087194442749, -0.13892114162445068, 0.18283134698867798, -0.8633795380592346, -0.5022229552268982, 0.08290687203407288]} +{"t": 10.128, "q": [-0.13883036375045776, 0.021208135411143303, 0.019270937889814377, 0.31649431586265564, -0.17251116037368774, -0.014157561585307121, -0.09486477822065353, -0.01798166334629059, 0.04195680841803551, 0.32148829102516174, -0.24463778734207153, 0.016614098101854324, -0.015601558610796928, 0.0421876460313797, 0.022914817556738853, -0.042160503566265106, 0.0782330259680748, 0.004829642828553915, 1.219538688659668, -0.029109682887792587, 0.0007310377550311387, -0.0023009711876511574, 0.10280068218708038, -0.3865032494068146, -0.14156965911388397, 0.18289126455783844, -0.8587536215782166, -0.502234935760498, 0.08221178501844406]} +{"t": 10.1448, "q": [-0.13877923786640167, 0.02125074528157711, 0.019270937889814377, 0.316468745470047, -0.17250274121761322, -0.014185840263962746, -0.09483921527862549, -0.01798166334629059, 0.04194341599941254, 0.3215053379535675, -0.24462926387786865, 0.016599664464592934, -0.015601558610796928, 0.04282207414507866, 0.022679360583424568, -0.04169312119483948, 0.0782569944858551, 0.0049494849517941475, 1.2197184562683105, -0.02924150973558426, 0.0006950850365683436, -0.0023009711876511574, 0.10051169991493225, -0.3783060312271118, -0.1449611932039261, 0.18291522562503815, -0.8534925580024719, -0.5023068189620972, 0.08156463503837585]} +{"t": 10.1615, "q": [-0.1387621909379959, 0.02125074528157711, 0.019230762496590614, 0.3164091110229492, -0.17250266671180725, -0.014171683229506016, -0.09485626220703125, -0.0179305300116539, 0.04190324246883392, 0.32148829102516174, -0.24463333189487457, 0.016578152775764465, -0.015601558610796928, 0.043380334973335266, 0.022550513967871666, -0.04081827029585838, 0.0782569944858551, 0.005009406246244907, 1.2196944952011108, -0.02943325787782669, 0.0006111955153755844, -0.0023129554465413094, 0.09861818701028824, -0.3703005611896515, -0.14868828654289246, 0.1829272210597992, -0.8481475710868835, -0.5023667216300964, 0.08045010268688202]} +{"t": 10.1782, "q": [-0.13875366747379303, 0.02137005515396595, 0.019244154915213585, 0.3163835406303406, -0.1724984347820282, -0.014178743585944176, -0.0948818251490593, -0.017887920141220093, 0.04190324246883392, 0.3214968144893646, -0.24462926387786865, 0.016599664464592934, -0.015614950098097324, 0.04399034008383751, 0.022539155557751656, -0.039799612015485764, 0.0782569944858551, 0.005141232628375292, 1.219658613204956, -0.02955309860408306, 0.0005872270558029413, -0.0023369239643216133, 0.09706024080514908, -0.36144423484802246, -0.15343403816223145, 0.18289126455783844, -0.8391833901405334, -0.5026184320449829, 0.07905993610620499]} +{"t": 10.1951, "q": [-0.1387621909379959, 0.021591629832983017, 0.019244154915213585, 0.31631535291671753, -0.17250274121761322, -0.014185840263962746, -0.09489887207746506, -0.01786235347390175, 0.04187645763158798, 0.3214968144893646, -0.2446335256099701, 0.016606880351901054, -0.015829220414161682, 0.04447196051478386, 0.02257397398352623, -0.038613174110651016, 0.0782569944858551, 0.005261074751615524, 1.2196944952011108, -0.029708893969655037, 0.0005512743373401463, -0.0023249397054314613, 0.09578990936279297, -0.35136550664901733, -0.1599894016981125, 0.1829032450914383, -0.8324123024940491, -0.5029659271240234, 0.07653126120567322]} +{"t": 10.212, "q": [-0.1387280970811844, 0.021693896502256393, 0.019284330308437347, 0.3163323998451233, -0.17251130938529968, -0.014185875654220581, -0.09490738809108734, -0.017845310270786285, 0.041916634887456894, 0.321471244096756, -0.24461659789085388, 0.016592377796769142, -0.01615062542259693, 0.04497683793306351, 0.022527359426021576, -0.03739078342914581, 0.0782569944858551, 0.005584648810327053, 1.2198023796081543, -0.029828736558556557, 0.0005392901366576552, -0.0023249397054314613, 0.09461545944213867, -0.34085533022880554, -0.16682042181491852, 0.18293920159339905, -0.8242270946502686, -0.5033254623413086, 0.07381084561347961]} +{"t": 10.2287, "q": [-0.13870254158973694, 0.021745027974247932, 0.01933789812028408, 0.31630682945251465, -0.17250706255435944, -0.014192936010658741, -0.09494148194789886, -0.017845310270786285, 0.04197020083665848, 0.3214968144893646, -0.24462084472179413, 0.016599593684077263, -0.01661934331059456, 0.04546646773815155, 0.022509390488266945, -0.036132439970970154, 0.07828095555305481, 0.005944175645709038, 1.2199102640151978, -0.030068421736359596, 0.0005512743373401463, -0.0023608924821019173, 0.09375259280204773, -0.3314836621284485, -0.17260879278182983, 0.1829511821269989, -0.8141723275184631, -0.5036730170249939, 0.07180947810411453]} +{"t": 10.2455, "q": [-0.13865140080451965, 0.021745027974247932, 0.01931111328303814, 0.31626421213150024, -0.17251554131507874, -0.014178815297782421, -0.09493295848369598, -0.017836786806583405, 0.04197020083665848, 0.3214968144893646, -0.24462510645389557, 0.016606811434030533, -0.016900572925806046, 0.04580539092421532, 0.0225049015134573, -0.03507782891392708, 0.07838881760835648, 0.006411560345441103, 1.2200779914855957, -0.030128343030810356, 0.0005752427969127893, -0.0023129554465413094, 0.09352489560842514, -0.32278311252593994, -0.17767812311649323, 0.18298713862895966, -0.8031348586082458, -0.5041283965110779, 0.06972422450780869]} +{"t": 10.2624, "q": [-0.13865140080451965, 0.021779118105769157, 0.01933789812028408, 0.3162216246128082, -0.17251130938529968, -0.014185875654220581, -0.09495852142572403, -0.017828265205025673, 0.04199698567390442, 0.321471244096756, -0.2446291744709015, 0.016585299745202065, -0.017382681369781494, 0.04600156098604202, 0.022461462765932083, -0.03410710394382477, 0.0788082629442215, 0.007142598275095224, 1.2202458381652832, -0.030188262462615967, 0.0005992112564854324, -0.0023249397054314613, 0.09336909651756287, -0.31372305750846863, -0.1817048192024231, 0.18301109969615936, -0.7907910943031311, -0.5044639706611633, 0.06666824221611023]} +{"t": 10.2791, "q": [-0.13860027492046356, 0.02179616130888462, 0.019364681094884872, 0.31625568866729736, -0.17251130938529968, -0.014185875654220581, -0.09494148194789886, -0.017777131870388985, 0.04199698567390442, 0.3215138614177704, -0.24462926387786865, 0.016599664464592934, -0.017744261771440506, 0.04605400562286377, 0.022493356838822365, -0.033184319734573364, 0.07946740090847015, 0.008448879234492779, 1.220401644706726, -0.03021223098039627, 0.0006231797160580754, -0.0023249397054314613, 0.09323727339506149, -0.30368027091026306, -0.1880205124616623, 0.1830230951309204, -0.7787230014801025, -0.5052788853645325, 0.06476275622844696]} +{"t": 10.2958, "q": [-0.13859175145626068, 0.021813206374645233, 0.01933789812028408, 0.3162727355957031, -0.17250698804855347, -0.014178779907524586, -0.09490738809108734, -0.017708955332636833, 0.04198359325528145, 0.3215479254722595, -0.24462926387786865, 0.016599664464592934, -0.018038883805274963, 0.04606899246573448, 0.022502468898892403, -0.03233344107866287, 0.0797550156712532, 0.010737866163253784, 1.2203896045684814, -0.030344057828187943, 0.0005872270558029413, -0.0023249397054314613, 0.0933091789484024, -0.2934816777706146, -0.1937849223613739, 0.18289126455783844, -0.7639224529266357, -0.5064413547515869, 0.06374409049749374]} +{"t": 10.3136, "q": [-0.13860027492046356, 0.02190694957971573, 0.019351288676261902, 0.3162727355957031, -0.17250706255435944, -0.014192936010658741, -0.09489887207746506, -0.017717478796839714, 0.04199698567390442, 0.3215649724006653, -0.24462075531482697, 0.016585230827331543, -0.018346896395087242, 0.04605400562286377, 0.022493356838822365, -0.031314779072999954, 0.07969509810209274, 0.014728613197803497, 1.2203776836395264, -0.03033207356929779, 0.0005632585962302983, -0.0023249397054314613, 0.09305750578641891, -0.28339096903800964, -0.19969314336776733, 0.18206435441970825, -0.7491219639778137, -0.50807124376297, 0.0626055896282196]} +{"t": 10.3303, "q": [-0.13856618106365204, 0.021949559450149536, 0.019351288676261902, 0.31634092330932617, -0.1724984347820282, -0.014178743585944176, -0.09479660540819168, -0.01768338866531849, 0.04202376678586006, 0.3215990662574768, -0.24461233615875244, 0.01658516190946102, -0.01882900483906269, 0.04603910446166992, 0.02247472107410431, -0.030176280066370964, 0.07965914160013199, 0.017532922327518463, 1.2204256057739258, -0.03039199486374855, 0.0005752427969127893, -0.0023129554465413094, 0.09149955958127975, -0.2730485796928406, -0.20620058476924896, 0.18206435441970825, -0.7351602911949158, -0.5091977715492249, 0.06161090359091759]} +{"t": 10.347, "q": [-0.13859175145626068, 0.022000692784786224, 0.019404856488108635, 0.3163750171661377, -0.17250274121761322, -0.014185840263962746, -0.09480512887239456, -0.0177004337310791, 0.04206394404172897, 0.3216843008995056, -0.24461233615875244, 0.01658516190946102, -0.01916380226612091, 0.04602411761879921, 0.02246560901403427, -0.029157619923353195, 0.07965914160013199, 0.019510319456458092, 1.2203896045684814, -0.030427947640419006, 0.0005512743373401463, -0.0023369239643216133, 0.09013336151838303, -0.2638327181339264, -0.21202491223812103, 0.182328000664711, -0.7194010615348816, -0.5099287629127502, 0.06055628880858421]} +{"t": 10.3637, "q": [-0.13860027492046356, 0.021949559450149536, 0.019391464069485664, 0.31634944677352905, -0.17251554131507874, -0.014178815297782421, -0.09477955847978592, -0.01775156706571579, 0.042077336460351944, 0.3217439353466034, -0.24462075531482697, 0.016585230827331543, -0.01949859969317913, 0.04602411761879921, 0.02246560901403427, -0.028198881074786186, 0.07961120456457138, 0.022530343383550644, 1.220401644706726, -0.03043993189930916, 0.0004913532175123692, -0.0023249397054314613, 0.08893493562936783, -0.25510820746421814, -0.21719011664390564, 0.1823519766330719, -0.7046724557876587, -0.5106238722801208, 0.059669457376003265]} +{"t": 10.3805, "q": [-0.138625830411911, 0.021992169320583344, 0.019431641325354576, 0.316281259059906, -0.17251130938529968, -0.014185875654220581, -0.09480512887239456, -0.017785655334591866, 0.042117513716220856, 0.3217865526676178, -0.24461233615875244, 0.01658516190946102, -0.019766438752412796, 0.046031609177589417, 0.02247016318142414, -0.027288081124424934, 0.07959922403097153, 0.025322668254375458, 1.2204614877700806, -0.030427947640419006, 0.0004913532175123692, -0.0023009711876511574, 0.08794024586677551, -0.24833711981773376, -0.2214205414056778, 0.18236395716667175, -0.6907348036766052, -0.5118342638015747, 0.05842309817671776]} +{"t": 10.3974, "q": [-0.13864287734031677, 0.021932516247034073, 0.019404856488108635, 0.31634944677352905, -0.1725112348794937, -0.014171718619763851, -0.09476251900196075, -0.017794176936149597, 0.042104121297597885, 0.3218632638454437, -0.24461649358272552, 0.016578014940023422, -0.01983339712023735, 0.046039264649152756, 0.022455673664808273, -0.026461169123649597, 0.07991081476211548, 0.026748791337013245, 1.2204614877700806, -0.030547790229320526, 0.0004793690168298781, -0.0023249397054314613, 0.08742492645978928, -0.2412903904914856, -0.22671757638454437, 0.18250776827335358, -0.6746639609336853, -0.5134641528129578, 0.05730856582522392]} +{"t": 10.4141, "q": [-0.13871105015277863, 0.021992169320583344, 0.019364681094884872, 0.3163323998451233, -0.17250698804855347, -0.014178779907524586, -0.09470286220312119, -0.01775156706571579, 0.042077336460351944, 0.32188883423805237, -0.24461233615875244, 0.01658516190946102, -0.019686086103320122, 0.04600905254483223, 0.022466016933321953, -0.02605370618402958, 0.08024637401103973, 0.02780340239405632, 1.2204854488372803, -0.030595727264881134, 0.000431432097684592, -0.0023369239643216133, 0.08713730424642563, -0.23421970009803772, -0.23275762796401978, 0.18249578773975372, -0.6612535715103149, -0.5150220990180969, 0.056481651961803436]} +{"t": 10.4308, "q": [-0.13877923786640167, 0.021941037848591805, 0.01932450570166111, 0.3162897825241089, -0.1725156158208847, -0.014192972332239151, -0.0946943387389183, -0.017777131870388985, 0.04202376678586006, 0.3219314217567444, -0.24460390210151672, 0.01658507250249386, -0.01948520727455616, 0.04600905254483223, 0.022466016933321953, -0.025718146935105324, 0.08036621659994125, 0.02930143103003502, 1.2205214500427246, -0.030619695782661438, 0.00041944789700210094, -0.0023129554465413094, 0.08710134774446487, -0.22798790037631989, -0.23903734982013702, 0.18266355991363525, -0.6473159193992615, -0.5162564516067505, 0.05579855293035507]} +{"t": 10.4477, "q": [-0.13877923786640167, 0.021949559450149536, 0.01929772086441517, 0.31634944677352905, -0.17250698804855347, -0.014178779907524586, -0.09467729181051254, -0.017777131870388985, 0.04199698567390442, 0.3219655156135559, -0.24462075531482697, 0.016585230827331543, -0.019364681094884872, 0.04602411761879921, 0.02246560901403427, -0.02540655806660652, 0.08036621659994125, 0.03148255869746208, 1.2205214500427246, -0.030607711523771286, 0.0003834952076431364, -0.0023369239643216133, 0.08714928478002548, -0.22254706919193268, -0.2440347820520401, 0.18281935155391693, -0.633066713809967, -0.5174428820610046, 0.05517537146806717]} +{"t": 10.4645, "q": [-0.13877923786640167, 0.02190694957971573, 0.01931111328303814, 0.3163323998451233, -0.17251130938529968, -0.014185875654220581, -0.0946943387389183, -0.017785655334591866, 0.042050551623106, 0.3220251798629761, -0.24461233615875244, 0.01658516190946102, -0.019378073513507843, 0.04600905254483223, 0.022466016933321953, -0.025070998817682266, 0.08036621659994125, 0.034934017807245255, 1.2206172943115234, -0.03057175874710083, 0.0003954794374294579, -0.0023249397054314613, 0.08723317831754684, -0.21715416014194489, -0.24796560406684875, 0.18284332752227783, -0.618889331817627, -0.5186173319816589, 0.054791878908872604]} +{"t": 10.4812, "q": [-0.13877923786640167, 0.02190694957971573, 0.01931111328303814, 0.31645169854164124, -0.17250706255435944, -0.014192936010658741, -0.09467729181051254, -0.017734521999955177, 0.042050551623106, 0.32209333777427673, -0.24460390210151672, 0.01658507250249386, -0.019391464069485664, 0.04602411761879921, 0.02246560901403427, -0.024867268279194832, 0.08042613416910172, 0.03766642138361931, 1.2208091020584106, -0.03057175874710083, 0.00041944789700210094, -0.0023608924821019173, 0.08737698942422867, -0.21242038905620575, -0.25135713815689087, 0.18289126455783844, -0.6034057140350342, -0.5212299227714539, 0.054743941873311996]} +{"t": 10.498, "q": [-0.13878776133060455, 0.021872861310839653, 0.01932450570166111, 0.3164176344871521, -0.17251138389110565, -0.014200032688677311, -0.09467729181051254, -0.01774304360151291, 0.04206394404172897, 0.32212743163108826, -0.24460381269454956, 0.01657070964574814, -0.019418248906731606, 0.04602411761879921, 0.02246560901403427, -0.02479536272585392, 0.08049803972244263, 0.03978762775659561, 1.2208449840545654, -0.030559774488210678, 0.0003954794374294579, -0.0023489082232117653, 0.08747286349534988, -0.2087891697883606, -0.25388580560684204, 0.1829032450914383, -0.5878262519836426, -0.5254603624343872, 0.054672036319971085]} +{"t": 10.5147, "q": [-0.1387195736169815, 0.021881382912397385, 0.019351288676261902, 0.3164602220058441, -0.17251130938529968, -0.014185875654220581, -0.09472842514514923, -0.01774304360151291, 0.042104121297597885, 0.3221615254878998, -0.24459965527057648, 0.016577856615185738, -0.01948520727455616, 0.04602411761879921, 0.02246560901403427, -0.024771394208073616, 0.08055796474218369, 0.042508047074079514, 1.2209408283233643, -0.030547790229320526, 0.00041944789700210094, -0.0023608924821019173, 0.08734103292226791, -0.20525382459163666, -0.2559111416339874, 0.1829272210597992, -0.5718752145767212, -0.5293312668800354, 0.05463608354330063]} +{"t": 10.5314, "q": [-0.13871105015277863, 0.02185581624507904, 0.019364681094884872, 0.316468745470047, -0.17251138389110565, -0.014200032688677311, -0.09471138566732407, -0.0177004337310791, 0.042104121297597885, 0.3221870958805084, -0.24461233615875244, 0.01658516190946102, -0.019605735316872597, 0.04602411761879921, 0.02246560901403427, -0.024747425690293312, 0.0806059017777443, 0.045036718249320984, 1.2210007905960083, -0.030535805970430374, 0.0004074636672157794, -0.0023249397054314613, 0.0872211903333664, -0.2004481554031372, -0.2582840323448181, 0.18296316266059875, -0.5539708137512207, -0.5330343842506409, 0.05454020947217941]} +{"t": 10.5482, "q": [-0.13866844773292542, 0.02185581624507904, 0.019351288676261902, 0.3164602220058441, -0.17250274121761322, -0.014185840263962746, -0.09470286220312119, -0.01764077879488468, 0.04206394404172897, 0.3222382366657257, -0.2446080595254898, 0.01657792739570141, -0.019619127735495567, 0.04603934288024902, 0.022446148097515106, -0.02479536272585392, 0.08080963045358658, 0.046486809849739075, 1.2209768295288086, -0.030547790229320526, 0.000431432097684592, -0.0023369239643216133, 0.08710134774446487, -0.19469572603702545, -0.26186731457710266, 0.18296316266059875, -0.5387747883796692, -0.5366895794868469, 0.05424060299992561]} +{"t": 10.5649, "q": [-0.13859175145626068, 0.021864337846636772, 0.019364681094884872, 0.31645169854164124, -0.17250698804855347, -0.014178779907524586, -0.0946943387389183, -0.017555557191371918, 0.042104121297597885, 0.3222382366657257, -0.2446037083864212, 0.01655634678900242, -0.01964591071009636, 0.04606955498456955, 0.022435802966356277, -0.024843299761414528, 0.08107328414916992, 0.04737364128232002, 1.2209768295288086, -0.03057175874710083, 0.00045540055725723505, -0.0023489082232117653, 0.08713730424642563, -0.1886436939239502, -0.26559439301490784, 0.1829272210597992, -0.5208584070205688, -0.5387029051780701, 0.054132744669914246]} +{"t": 10.5817, "q": [-0.13859175145626068, 0.021864337846636772, 0.019364681094884872, 0.31645169854164124, -0.17250706255435944, -0.014192936010658741, -0.09471138566732407, -0.017495902255177498, 0.04213090240955353, 0.3222382366657257, -0.24460797011852264, 0.01656356267631054, -0.01982000470161438, 0.0460846982896328, 0.02242586947977543, -0.02490321919322014, 0.08127701282501221, 0.04776912182569504, 1.2209768295288086, -0.03057175874710083, 0.000431432097684592, -0.0023489082232117653, 0.08718524128198624, -0.18277141451835632, -0.26933348178863525, 0.18268753588199615, -0.5044519901275635, -0.5403807163238525, 0.054132744669914246]} +{"t": 10.5985, "q": [-0.13856618106365204, 0.021881382912397385, 0.019364681094884872, 0.3164091110229492, -0.1725071370601654, -0.014207102358341217, -0.0946943387389183, -0.017419204115867615, 0.042104121297597885, 0.3222382366657257, -0.24459955096244812, 0.016563493758440018, -0.019953925162553787, 0.04611506685614586, 0.022396471351385117, -0.02491520345211029, 0.08149272948503494, 0.04816460236907005, 1.2209768295288086, -0.030559774488210678, 0.00045540055725723505, -0.0023489082232117653, 0.0863463431596756, -0.17570072412490845, -0.27567312121391296, 0.1820044219493866, -0.48715874552726746, -0.5447309613227844, 0.0541447289288044]} +{"t": 10.6153, "q": [-0.13851505517959595, 0.021898426115512848, 0.019364681094884872, 0.31648579239845276, -0.1725028157234192, -0.014200005680322647, -0.09464320540428162, -0.017402159050107002, 0.042104121297597885, 0.3222382366657257, -0.24459955096244812, 0.016563493758440018, -0.02002088353037834, 0.046085018664598465, 0.022387772798538208, -0.02503504604101181, 0.08164852857589722, 0.04821253940463066, 1.2209649085998535, -0.030547790229320526, 0.00044341632747091353, -0.0023608924821019173, 0.08499212563037872, -0.16978052258491516, -0.2816772162914276, 0.1818246692419052, -0.4698295593261719, -0.5486857891082764, 0.0538451224565506]} +{"t": 10.6321, "q": [-0.13848096132278442, 0.021889904513955116, 0.019364681094884872, 0.3165113627910614, -0.1724986433982849, -0.014221223071217537, -0.09459207206964493, -0.017402159050107002, 0.042077336460351944, 0.3222041428089142, -0.24459955096244812, 0.016563493758440018, -0.01999410055577755, 0.046085257083177567, 0.022359201684594154, -0.025106951594352722, 0.08168447762727737, 0.04822452366352081, 1.2209408283233643, -0.030595727264881134, 0.00044341632747091353, -0.0023608924821019173, 0.08318250626325607, -0.16448348760604858, -0.2871180772781372, 0.18157300353050232, -0.4524524509906769, -0.5518735647201538, 0.0535694882273674]} +{"t": 10.6489, "q": [-0.13843834400177002, 0.021864337846636772, 0.019364681094884872, 0.31649431586265564, -0.17249849438667297, -0.014192909933626652, -0.09460059553384781, -0.01739363744854927, 0.042117513716220856, 0.3221956193447113, -0.24460797011852264, 0.01656356267631054, -0.01999410055577755, 0.04607784375548363, 0.02234512008726597, -0.025070998817682266, 0.08174440264701843, 0.04828444495797157, 1.2209888696670532, -0.030559774488210678, 0.0004793690168298781, -0.0023369239643216133, 0.08072574436664581, -0.1588868647813797, -0.2926308214664459, 0.18128538131713867, -0.4342244267463684, -0.5549535155296326, 0.05332980304956436]} +{"t": 10.6656, "q": [-0.13841278851032257, 0.021889904513955116, 0.019431641325354576, 0.316468745470047, -0.17249849438667297, -0.014192909933626652, -0.09464320540428162, -0.01738511584699154, 0.04218447208404541, 0.3222041428089142, -0.24459955096244812, 0.016563493758440018, -0.0203155055642128, 0.04607776924967766, 0.022354645654559135, -0.024879250675439835, 0.08193615078926086, 0.04839230328798294, 1.2210367918014526, -0.030559774488210678, 0.0004793690168298781, -0.0023608924821019173, 0.07685483992099762, -0.1525472104549408, -0.29828736186027527, 0.18116553127765656, -0.41436657309532166, -0.5571826100349426, 0.05263471603393555]} +{"t": 10.6825, "q": [-0.13842131197452545, 0.021889904513955116, 0.01947181671857834, 0.316426157951355, -0.17250289022922516, -0.014214162714779377, -0.09467729181051254, -0.017368070781230927, 0.04218447208404541, 0.3222041428089142, -0.24460381269454956, 0.01657070964574814, -0.02097170799970627, 0.046085257083177567, 0.022359201684594154, -0.024711472913622856, 0.08211591094732285, 0.04838031902909279, 1.2213243246078491, -0.030547790229320526, 0.0005273059359751642, -0.0023489082232117653, 0.07239670306444168, -0.14626747369766235, -0.30408772826194763, 0.18111759424209595, -0.3933582305908203, -0.5581533312797546, 0.052083443850278854]} +{"t": 10.6993, "q": [-0.13836164772510529, 0.021923992782831192, 0.01948520727455616, 0.31644317507743835, -0.17249001562595367, -0.014207030646502972, -0.0946517288684845, -0.017359549179673195, 0.04218447208404541, 0.32222118973731995, -0.24459955096244812, 0.016563493758440018, -0.021212762221693993, 0.046085257083177567, 0.022359201684594154, -0.02473544143140316, 0.08216384798288345, 0.048416271805763245, 1.2213842868804932, -0.030547790229320526, 0.0005512743373401463, -0.0023608924821019173, 0.06786666810512543, -0.1398678869009018, -0.31097865104675293, 0.1810816377401352, -0.37490251660346985, -0.5584529042243958, 0.05161605775356293]} +{"t": 10.716, "q": [-0.13841278851032257, 0.021932516247034073, 0.019458424299955368, 0.3164091110229492, -0.17249418795108795, -0.014185813255608082, -0.09463468194007874, -0.017368070781230927, 0.04217107966542244, 0.3221956193447113, -0.24460797011852264, 0.01656356267631054, -0.02117258682847023, 0.04610048606991768, 0.02233974263072014, -0.024879250675439835, 0.08207996189594269, 0.048416271805763245, 1.221372365951538, -0.030535805970430374, 0.0005512743373401463, -0.0023489082232117653, 0.0632048025727272, -0.1324736326932907, -0.31951144337654114, 0.1811295747756958, -0.3544933795928955, -0.5584888458251953, 0.05137637257575989]} +{"t": 10.7328, "q": [-0.13841278851032257, 0.021889904513955116, 0.019404856488108635, 0.31644317507743835, -0.1725028157234192, -0.014200005680322647, -0.09462615847587585, -0.01738511584699154, 0.04215768724679947, 0.3222041428089142, -0.24459528923034668, 0.016556276008486748, -0.021132411435246468, 0.04610805958509445, 0.02233477681875229, -0.024951156228780746, 0.08205599337816238, 0.04839230328798294, 1.221312403678894, -0.030535805970430374, 0.0005153216770850122, -0.0023608924821019173, 0.05860286206007004, -0.12519919872283936, -0.32732513546943665, 0.1811775118112564, -0.33493512868881226, -0.5584409236907959, 0.05090899020433426]} +{"t": 10.7495, "q": [-0.13842131197452545, 0.021881382912397385, 0.019458424299955368, 0.3164602220058441, -0.1724899411201477, -0.014192874543368816, -0.0946517288684845, -0.017402159050107002, 0.04218447208404541, 0.3222041428089142, -0.24459955096244812, 0.016563493758440018, -0.02115919440984726, 0.04610805958509445, 0.02233477681875229, -0.024939171969890594, 0.08205599337816238, 0.0484522208571434, 1.2213243246078491, -0.030535805970430374, 0.0005273059359751642, -0.0023489082232117653, 0.05403687059879303, -0.11866779625415802, -0.33334121108055115, 0.18129736185073853, -0.31631162762641907, -0.5583570599555969, 0.05032176151871681]} +{"t": 10.7662, "q": [-0.13838721811771393, 0.021881382912397385, 0.019458424299955368, 0.3164772689342499, -0.17249849438667297, -0.014192909933626652, -0.0946517288684845, -0.017402159050107002, 0.04218447208404541, 0.3221870958805084, -0.24460360407829285, 0.01654198206961155, -0.021226154640316963, 0.04607792943716049, 0.0223355982452631, -0.02490321919322014, 0.08210393041372299, 0.04844023659825325, 1.2213484048843384, -0.030535805970430374, 0.0005273059359751642, -0.0023608924821019173, 0.04929111897945404, -0.11256782710552216, -0.3386981785297394, 0.18133331835269928, -0.29791584610939026, -0.5582132339477539, 0.04957874119281769]} +{"t": 10.7832, "q": [-0.1384042650461197, 0.021889904513955116, 0.019445031881332397, 0.31648579239845276, -0.1725028157234192, -0.014200005680322647, -0.0946517288684845, -0.01738511584699154, 0.04215768724679947, 0.3221615254878998, -0.24460797011852264, 0.01656356267631054, -0.021038668230175972, 0.04610056430101395, 0.02233021892607212, -0.025011077523231506, 0.08210393041372299, 0.048416271805763245, 1.2213003635406494, -0.030559774488210678, 0.0005153216770850122, -0.0023608924821019173, 0.04488092288374901, -0.10634801536798477, -0.34367161989212036, 0.18144117295742035, -0.2787051498889923, -0.5580214858055115, 0.04915929213166237]} +{"t": 10.8001, "q": [-0.13843834400177002, 0.02190694957971573, 0.019404856488108635, 0.3164091110229492, -0.1724943369626999, -0.014214127324521542, -0.09463468194007874, -0.01738511584699154, 0.042077336460351944, 0.32209333777427673, -0.2446037083864212, 0.01655634678900242, -0.020744046196341515, 0.046085577458143234, 0.022321105003356934, -0.025070998817682266, 0.08204400539398193, 0.048416271805763245, 1.2212884426116943, -0.030487868934869766, 0.0004793690168298781, -0.0023608924821019173, 0.040290966629981995, -0.09940914809703827, -0.34975960850715637, 0.1814531534910202, -0.26117223501205444, -0.5578896403312683, 0.04887166991829872]} +{"t": 10.8169, "q": [-0.13845539093017578, 0.021932516247034073, 0.019404856488108635, 0.316468745470047, -0.1724899411201477, -0.014192874543368816, -0.09467729181051254, -0.01738511584699154, 0.042077336460351944, 0.32207632064819336, -0.24461223185062408, 0.01657078042626381, -0.020436033606529236, 0.04607784375548363, 0.02234512008726597, -0.025106951594352722, 0.08197209984064102, 0.04844023659825325, 1.2211086750030518, -0.03051183745265007, 0.0004793690168298781, -0.0023728765081614256, 0.036012597382068634, -0.0941600576043129, -0.3545413315296173, 0.18208831548690796, -0.24517327547073364, -0.557602047920227, 0.04878778010606766]} +{"t": 10.8337, "q": [-0.1384894847869873, 0.021889904513955116, 0.019418248906731606, 0.3165198862552643, -0.1724943369626999, -0.014214127324521542, -0.09471138566732407, -0.01744477078318596, 0.04206394404172897, 0.32199108600616455, -0.24460797011852264, 0.01656356267631054, -0.02034229040145874, 0.04607776924967766, 0.022354645654559135, -0.025118935853242874, 0.08192416280508041, 0.048416271805763245, 1.2210966348648071, -0.030475884675979614, 0.00046738478704355657, -0.0023728765081614256, 0.031985897570848465, -0.08947422355413437, -0.35867586731910706, 0.1825796663761139, -0.23097197711467743, -0.5572664737701416, 0.04873984307050705]} +{"t": 10.8504, "q": [-0.13852356374263763, 0.021889904513955116, 0.019364681094884872, 0.31657102704048157, -0.1724943369626999, -0.014214127324521542, -0.09473694860935211, -0.017461813986301422, 0.04202376678586006, 0.32190585136413574, -0.24460797011852264, 0.01656356267631054, -0.020087843760848045, 0.046024758368730545, 0.02238941751420498, -0.02527473121881485, 0.08193615078926086, 0.048416271805763245, 1.2210726737976074, -0.030463900417089462, 0.00045540055725723505, -0.0023728765081614256, 0.02846253477036953, -0.0851239487528801, -0.3623071014881134, 0.18275943398475647, -0.22009029984474182, -0.5571346282958984, 0.04947088286280632]} +{"t": 10.8672, "q": [-0.1385832279920578, 0.02190694957971573, 0.019378073513507843, 0.3165198862552643, -0.17249856889247894, -0.014207066968083382, -0.09476251900196075, -0.017478859052062035, 0.04201037809252739, 0.32181212306022644, -0.24460797011852264, 0.01656356267631054, -0.019592342898249626, 0.045971911400556564, 0.022405141964554787, -0.025610288605093956, 0.08193615078926086, 0.048416271805763245, 1.2210607528686523, -0.030475884675979614, 0.00045540055725723505, -0.0023608924821019173, 0.026317358016967773, -0.08291885256767273, -0.3630021810531616, 0.18277141451835632, -0.2105388641357422, -0.556859016418457, 0.05032176151871681]} +{"t": 10.8839, "q": [-0.13857470452785492, 0.021872861310839653, 0.01933789812028408, 0.3165965974330902, -0.17248569428920746, -0.014199934899806976, -0.09472842514514923, -0.017555557191371918, 0.04194341599941254, 0.3217524588108063, -0.24461223185062408, 0.01657078042626381, -0.018587950617074966, 0.04575246572494507, 0.022530149668455124, -0.02612561173737049, 0.08193615078926086, 0.04839230328798294, 1.221024751663208, -0.030415963381528854, 0.0004793690168298781, -0.0023728765081614256, 0.02552640065550804, -0.08267916738986969, -0.3623550236225128, 0.18379007279872894, -0.20407937467098236, -0.5564156174659729, 0.052275191992521286]} +{"t": 10.9009, "q": [-0.1387707144021988, 0.021872861310839653, 0.01917719468474388, 0.3165539801120758, -0.17250289022922516, -0.014214162714779377, -0.09474547207355499, -0.017606690526008606, 0.04178271442651749, 0.32166725397109985, -0.24461223185062408, 0.01657078042626381, -0.017101449891924858, 0.04543434455990791, 0.022748231887817383, -0.02623346820473671, 0.08188821375370026, 0.04839230328798294, 1.2208330631256104, -0.030415963381528854, 0.0005033374764025211, -0.0023608924821019173, 0.02563425712287426, -0.0827510729432106, -0.3619835376739502, 0.18501247465610504, -0.2006279081106186, -0.5559601783752441, 0.054192665964365005]} +{"t": 10.9177, "q": [-0.13882184028625488, 0.02185581624507904, 0.019110234454274178, 0.3165198862552643, -0.17249426245689392, -0.014199970290064812, -0.09482216835021973, -0.017657823860645294, 0.04171575605869293, 0.3215479254722595, -0.24461649358272552, 0.016578014940023422, -0.01596313901245594, 0.04506339877843857, 0.022990988567471504, -0.026317358016967773, 0.0818522572517395, 0.04838031902909279, 1.220725178718567, -0.03033207356929779, 0.0004793690168298781, -0.0023848607670515776, 0.02575409971177578, -0.08336227387189865, -0.359538733959198, 0.18526414036750793, -0.19933362305164337, -0.5557085275650024, 0.056721337139606476]} +{"t": 10.9345, "q": [-0.13894115388393402, 0.021864337846636772, 0.019070059061050415, 0.3165028393268585, -0.1724899411201477, -0.014192874543368816, -0.09479660540819168, -0.017726000398397446, 0.04163540527224541, 0.3213689625263214, -0.24462075531482697, 0.016585230827331543, -0.01411505788564682, 0.04436688497662544, 0.023456670343875885, -0.02696450613439083, 0.0818522572517395, 0.04833238199353218, 1.2205814123153687, -0.03026016801595688, 0.0005153216770850122, -0.0023608924821019173, 0.02811499312520027, -0.0860467404127121, -0.3560752868652344, 0.18600715696811676, -0.1991298794746399, -0.5554448962211609, 0.06244979798793793]} +{"t": 10.9514, "q": [-0.13911159336566925, 0.02179616130888462, 0.018721869215369225, 0.3165113627910614, -0.17249001562595367, -0.014207030646502972, -0.09482216835021973, -0.017734521999955177, 0.041247040033340454, 0.3213348984718323, -0.2446250170469284, 0.016592446714639664, -0.01258838176727295, 0.04347379878163338, 0.024022921919822693, -0.02725212834775448, 0.08224774152040482, 0.04830841347575188, 1.2203296422958374, -0.03020024672150612, 0.0004913532175123692, -0.0023608924821019173, 0.02984072081744671, -0.08912668377161026, -0.3517969250679016, 0.18748122453689575, -0.19946543872356415, -0.5548816323280334, 0.06972422450780869]} +{"t": 10.9683, "q": [-0.13920533657073975, 0.021821727976202965, 0.018561167642474174, 0.31648579239845276, -0.1724858433008194, -0.014228257350623608, -0.09483921527862549, -0.017726000398397446, 0.041099727153778076, 0.3212240934371948, -0.24462510645389557, 0.016606811434030533, -0.010887610726058483, 0.04253510385751724, 0.0246647410094738, -0.027767449617385864, 0.08289488404989243, 0.04830841347575188, 1.2201858758926392, -0.030056437477469444, 0.0004793690168298781, -0.0023608924821019173, 0.03085937909781933, -0.09290171414613724, -0.3459126651287079, 0.1888953596353531, -0.20063990354537964, -0.5539947748184204, 0.07753793895244598]} +{"t": 10.985, "q": [-0.1392309069633484, 0.021779118105769157, 0.018574560061097145, 0.31640058755874634, -0.1724901646375656, -0.014235353097319603, -0.09486477822065353, -0.0177004337310791, 0.04105955362319946, 0.3211047947406769, -0.2446291744709015, 0.016585299745202065, -0.008972570300102234, 0.04149836301803589, 0.025342462584376335, -0.028570393100380898, 0.08358997106552124, 0.04828444495797157, 1.2195507287979126, -0.02997254766523838, 0.0003954794374294579, -0.0023489082232117653, 0.03153049573302269, -0.09727595746517181, -0.33843451738357544, 0.19017766416072845, -0.20114323496818542, -0.5534554719924927, 0.08445283770561218]} +{"t": 11.0018, "q": [-0.13925647735595703, 0.021770594641566277, 0.018561167642474174, 0.31640058755874634, -0.1724858433008194, -0.014228257350623608, -0.09486477822065353, -0.017649300396442413, 0.041072942316532135, 0.32101956009864807, -0.24463333189487457, 0.016578152775764465, -0.007003961596637964, 0.0404699333012104, 0.025937708094716072, -0.029636988416314125, 0.0845247432589531, 0.048236507922410965, 1.219155192375183, -0.029876673594117165, 0.0003954794374294579, -0.0023608924821019173, 0.032225582748651505, -0.10408299416303635, -0.32896697521209717, 0.19156783819198608, -0.2012031525373459, -0.5527364611625671, 0.0911400318145752]} +{"t": 11.0187, "q": [-0.1392650008201599, 0.021779118105769157, 0.018574560061097145, 0.3162897825241089, -0.1724773496389389, -0.014242378994822502, -0.0948818251490593, -0.01762373559176922, 0.04104616120457649, 0.3208746910095215, -0.24463768303394318, 0.016599733382463455, -0.005236231256276369, 0.03942688927054405, 0.026494836434721947, -0.03082342818379402, 0.08548347651958466, 0.04818857088685036, 1.2190593481063843, -0.02978079952299595, 0.0003954794374294579, -0.0023608924821019173, 0.03323225677013397, -0.1098593920469284, -0.320721834897995, 0.19270634651184082, -0.2012750655412674, -0.5522450804710388, 0.09704825282096863]} +{"t": 11.0354, "q": [-0.13924795389175415, 0.02179616130888462, 0.018561167642474174, 0.31620457768440247, -0.17247304320335388, -0.014235282316803932, -0.09490738809108734, -0.01757260225713253, 0.04101937636733055, 0.3208320736885071, -0.2446417510509491, 0.016578223556280136, -0.003347973804920912, 0.03857271745800972, 0.026966549456119537, -0.03183010220527649, 0.08641824871301651, 0.04818857088685036, 1.2188076972961426, -0.029708893969655037, 0.00035952674807049334, -0.0023608924821019173, 0.034202978014945984, -0.11448530107736588, -0.3153529167175293, 0.1937130093574524, -0.2012271285057068, -0.5517177581787109, 0.1023213118314743]} +{"t": 11.0522, "q": [-0.13924795389175415, 0.021762073040008545, 0.01862812601029873, 0.3161363899707794, -0.17248159646987915, -0.014235317707061768, -0.09496704488992691, -0.01750442571938038, 0.04105955362319946, 0.32075539231300354, -0.24464164674282074, 0.016563860699534416, 0.0003883649769704789, 0.03782414644956589, 0.027434075251221657, -0.03362773731350899, 0.08736500144004822, 0.0481526181101799, 1.2189035415649414, -0.02967294119298458, 0.00037151097785681486, -0.0023608924821019173, 0.03585680201649666, -0.11950669437646866, -0.3107629418373108, 0.19492343068122864, -0.20121514797210693, -0.5512863397598267, 0.10964367538690567]} +{"t": 11.0689, "q": [-0.13929055631160736, 0.02178763970732689, 0.018681693822145462, 0.31611934304237366, -0.17247727513313293, -0.014228221960365772, -0.09495852142572403, -0.01744477078318596, 0.041099727153778076, 0.32066163420677185, -0.24463322758674622, 0.016563789919018745, 0.0031203117687255144, 0.03710586205124855, 0.027882447466254234, -0.0354972742497921, 0.08806008845567703, 0.04808071255683899, 1.2187837362289429, -0.029505163431167603, 0.00032357408781535923, -0.0023608924821019173, 0.03796602413058281, -0.12479173392057419, -0.3075152337551117, 0.1962297111749649, -0.2009994238615036, -0.5510466694831848, 0.11466506868600845]} +{"t": 11.0856, "q": [-0.1394524872303009, 0.021770594641566277, 0.018427249044179916, 0.31598299741744995, -0.17248591780662537, -0.014242414385080338, -0.09493295848369598, -0.01745329238474369, 0.04081849753856659, 0.32052528858184814, -0.24464155733585358, 0.016549479216337204, 0.004995177034288645, 0.03638745844364166, 0.028349798172712326, -0.03707919269800186, 0.08882708102464676, 0.04804475978016853, 1.2185440063476562, -0.029337383806705475, 0.00023968450841493905, -0.0023489082232117653, 0.03982358053326607, -0.13103552162647247, -0.3024698495864868, 0.19826702773571014, -0.20084363222122192, -0.5506991147994995, 0.11911121755838394]} +{"t": 11.1023, "q": [-0.13946951925754547, 0.02178763970732689, 0.01833350583910942, 0.3160000443458557, -0.17247304320335388, -0.014235282316803932, -0.09496704488992691, -0.017461813986301422, 0.04065779596567154, 0.32047414779663086, -0.24465413391590118, 0.016542401164770126, 0.006079920567572117, 0.03571479022502899, 0.02876751683652401, -0.0381937250494957, 0.08965399116277695, 0.04790094867348671, 1.2185440063476562, -0.029145635664463043, 0.00022770027862861753, -0.0023608924821019173, 0.04186089709401131, -0.13825002312660217, -0.29604631662368774, 0.19966918230056763, -0.2006279081106186, -0.5502916574478149, 0.12382101267576218]} +{"t": 11.119, "q": [-0.13946951925754547, 0.0217365063726902, 0.018387073650956154, 0.3159659504890442, -0.17248167097568512, -0.014249474741518497, -0.09496704488992691, -0.01745329238474369, 0.04067118838429451, 0.32033780217170715, -0.24467086791992188, 0.0165281780064106, 0.006521853152662516, 0.03533681482076645, 0.029012849554419518, -0.03899667039513588, 0.09046891331672668, 0.04779309034347534, 1.2185919284820557, -0.02900182455778122, 0.00022770027862861753, -0.0023608924821019173, 0.04428171366453171, -0.14539262652397156, -0.28938308358192444, 0.2004241794347763, -0.20054402947425842, -0.5501118898391724, 0.12891431152820587]} +{"t": 11.1358, "q": [-0.13946951925754547, 0.021762073040008545, 0.01833350583910942, 0.31589776277542114, -0.17247304320335388, -0.014235282316803932, -0.09495000541210175, -0.017402159050107002, 0.04064440354704857, 0.320278137922287, -0.2446749359369278, 0.01650666631758213, 0.006588812451809645, 0.03503456339240074, 0.02919009141623974, -0.03978762775659561, 0.09137971699237823, 0.04773316904902458, 1.218567967414856, -0.02876214124262333, 0.000215716048842296, -0.0023489082232117653, 0.04681038483977318, -0.1521996557712555, -0.28279176354408264, 0.2013709396123886, -0.2004002183675766, -0.549992024898529, 0.1335522085428238]} +{"t": 11.1526, "q": [-0.13944396376609802, 0.021753551438450813, 0.01832011342048645, 0.31588923931121826, -0.17247304320335388, -0.014235282316803932, -0.09495000541210175, -0.017291372641921043, 0.04060422629117966, 0.3202269971370697, -0.2446833699941635, 0.01650671847164631, 0.006508461199700832, 0.03467969968914986, 0.02935401350259781, -0.04066247493028641, 0.09243433177471161, 0.047637294977903366, 1.2186518907546997, -0.028786109760403633, 0.00022770027862861753, -0.0023608924821019173, 0.04860801622271538, -0.15827566385269165, -0.27751868963241577, 0.20246149599552155, -0.20025640726089478, -0.5498961806297302, 0.1363924741744995]} +{"t": 11.1693, "q": [-0.13942691683769226, 0.021779118105769157, 0.01833350583910942, 0.3158807158470154, -0.17247727513313293, -0.014228221960365772, -0.09498409181833267, -0.017120929434895515, 0.04067118838429451, 0.32020995020866394, -0.24467910826206207, 0.016499502584338188, 0.006414717994630337, 0.034233663231134415, 0.02964315377175808, -0.0418129600584507, 0.09384846687316895, 0.047577373683452606, 1.2187237739562988, -0.028678251430392265, 0.0002636529679875821, -0.0023848607670515776, 0.050273824483156204, -0.16480706632137299, -0.2719460427761078, 0.2039475440979004, -0.20016053318977356, -0.5497403740882874, 0.14063487946987152]} +{"t": 11.1861, "q": [-0.1394524872303009, 0.021770594641566277, 0.01829332858324051, 0.3158807158470154, -0.17246894538402557, -0.014270666055381298, -0.09497556835412979, -0.0169675312936306, 0.040590837597846985, 0.32025256752967834, -0.24469158053398132, 0.01647806167602539, 0.00646828580647707, 0.03377252444624901, 0.0299603883177042, -0.04332297295331955, 0.09526260942220688, 0.047445546835660934, 1.2187597751617432, -0.02865428291261196, 0.00023968450841493905, -0.0023968450259417295, 0.052215270698070526, -0.1709669530391693, -0.26638534665107727, 0.20502611994743347, -0.19998076558113098, -0.5496325492858887, 0.14522483944892883]} +{"t": 11.2028, "q": [-0.13946951925754547, 0.021821727976202965, 0.018212977796792984, 0.31589776277542114, -0.17245197296142578, -0.014298916794359684, -0.09500113129615784, -0.01678004488348961, 0.0405372679233551, 0.3202355206012726, -0.24469980597496033, 0.016449403017759323, 0.00642810994759202, 0.033334217965602875, 0.03024384193122387, -0.044677190482616425, 0.09664079546928406, 0.04746951535344124, 1.2187477350234985, -0.028630314394831657, 0.00027563716867007315, -0.0023608924821019173, 0.05420465022325516, -0.17924804985523224, -0.2579724192619324, 0.20621256530284882, -0.19965718686580658, -0.5495366454124451, 0.15116901695728302]} +{"t": 11.2196, "q": [-0.13943544030189514, 0.02196660451591015, 0.018186194822192192, 0.31593185663223267, -0.1724136918783188, -0.014348323456943035, -0.09503522515296936, -0.01660108007490635, 0.040564052760601044, 0.3202610909938812, -0.24471229314804077, 0.016427945345640182, 0.006347758695483208, 0.033032070845365524, 0.030420493334531784, -0.0457318052649498, 0.09800699353218079, 0.04748149961233139, 1.2187358140945435, -0.02858237735927105, 0.00028762139845639467, -0.0023608924821019173, 0.05614609643816948, -0.18671423196792603, -0.24936775863170624, 0.20712336897850037, -0.19877035915851593, -0.5494527816772461, 0.15472833812236786]} +{"t": 11.2363, "q": [-0.13941839337348938, 0.022068869322538376, 0.01811923459172249, 0.3159659504890442, -0.1723797470331192, -0.014404826797544956, -0.0950607880949974, -0.016447681933641434, 0.0405372679233551, 0.32025256752967834, -0.2447414994239807, 0.016392279416322708, 0.006187055725604296, 0.032775212079286575, 0.03057737462222576, -0.04694221168756485, 0.09933724254369736, 0.047505468130111694, 1.2186998128890991, -0.028606345877051353, 0.0002636529679875821, -0.0023489082232117653, 0.05854294076561928, -0.1947316825389862, -0.24173380434513092, 0.2078663855791092, -0.19783559441566467, -0.5493209362030029, 0.1570412814617157]} +{"t": 11.253, "q": [-0.1394098699092865, 0.022230789065361023, 0.01811923459172249, 0.3159489035606384, -0.17234140634536743, -0.014440076425671577, -0.09513749182224274, -0.016353938728570938, 0.040564052760601044, 0.32025256752967834, -0.24473704397678375, 0.016356300562620163, 0.006039745174348354, 0.03267703205347061, 0.030631499364972115, -0.04773316904902458, 0.10018812119960785, 0.04754142090678215, 1.2186998128890991, -0.02865428291261196, 0.0002996056282427162, -0.0023728765081614256, 0.06067613139748573, -0.20156268775463104, -0.23606526851654053, 0.20815400779247284, -0.1973322480916977, -0.5492490530014038, 0.15961790084838867]} +{"t": 11.2697, "q": [-0.13941839337348938, 0.022307489067316055, 0.01815940998494625, 0.3159233331680298, -0.1723245084285736, -0.014482485130429268, -0.09520566463470459, -0.0163028072565794, 0.04060422629117966, 0.32025256752967834, -0.24474558234214783, 0.016370750963687897, 0.006039745174348354, 0.032692085951566696, 0.03063119947910309, -0.04844023659825325, 0.10073939710855484, 0.047565389424562454, 1.2186639308929443, -0.02865428291261196, 0.00028762139845639467, -0.0023608924821019173, 0.06381599605083466, -0.20889702439308167, -0.23001323640346527, 0.20811805129051208, -0.19721241295337677, -0.5492250323295593, 0.16287760436534882]} +{"t": 11.2866, "q": [-0.1394098699092865, 0.02227340079843998, 0.018092451617121696, 0.3159233331680298, -0.17227797210216522, -0.0145884919911623, -0.09518010169267654, -0.016277240589261055, 0.04055066034197807, 0.32028666138648987, -0.24474963545799255, 0.016349241137504578, 0.006079920567572117, 0.03268446773290634, 0.030645575374364853, -0.04903944954276085, 0.1011228933930397, 0.047565389424562454, 1.2186639308929443, -0.028570393100380898, 0.00025166873820126057, -0.0023608924821019173, 0.06713563203811646, -0.2177533656358719, -0.22210364043712616, 0.2082379013299942, -0.1971524953842163, -0.5491771101951599, 0.16541826725006104]} +{"t": 11.3034, "q": [-0.13939282298088074, 0.02228192239999771, 0.01813262701034546, 0.31588923931121826, -0.17226092517375946, -0.01460258662700653, -0.09523975104093552, -0.016285762190818787, 0.040564052760601044, 0.3202696144580841, -0.24474547803401947, 0.016356388106942177, 0.005946001503616571, 0.032661862671375275, 0.030650772154331207, -0.049195244908332825, 0.10148242115974426, 0.04754142090678215, 1.2187597751617432, -0.028558408841490746, 0.0002636529679875821, -0.0023489082232117653, 0.06971223652362823, -0.22674153745174408, -0.21224063634872437, 0.20917266607284546, -0.19716447591781616, -0.5491411685943604, 0.16855812072753906]} +{"t": 11.3201, "q": [-0.1394098699092865, 0.0222648773342371, 0.018226370215415955, 0.31589776277542114, -0.1722566783428192, -0.014609647914767265, -0.09535054117441177, -0.016294283792376518, 0.04068458080291748, 0.32025256752967834, -0.244753897190094, 0.016356458887457848, 0.0058388663455843925, 0.0325862318277359, 0.03070918656885624, -0.04924318194389343, 0.10175805538892746, 0.047517452389001846, 1.2188196182250977, -0.028498487547039986, 0.00027563716867007315, -0.0023608924821019173, 0.07245662808418274, -0.23565781116485596, -0.20318055152893066, 0.20952020585536957, -0.19734424352645874, -0.5491291880607605, 0.17224927246570587]} +{"t": 11.3368, "q": [-0.13946101069450378, 0.0222648773342371, 0.018226370215415955, 0.3158722221851349, -0.17225675284862518, -0.014623804949223995, -0.09536758810281754, -0.016277240589261055, 0.04064440354704857, 0.3202696144580841, -0.244753897190094, 0.016356458887457848, 0.005905826110392809, 0.03250298649072647, 0.030781980603933334, -0.04936302453279495, 0.10190186649560928, 0.04746951535344124, 1.218795657157898, -0.02846253477036953, 0.00028762139845639467, -0.0023848607670515776, 0.07533284276723862, -0.24385501444339752, -0.19518707692623138, 0.20929251611232758, -0.1973562240600586, -0.5491291880607605, 0.17522135376930237]} +{"t": 11.3535, "q": [-0.13946101069450378, 0.02227340079843998, 0.018226370215415955, 0.31588923931121826, -0.17223115265369415, -0.014637863263487816, -0.09535054117441177, -0.016277240589261055, 0.0406310111284256, 0.3202610909938812, -0.24474963545799255, 0.016349241137504578, 0.0060933125205338, 0.03240487352013588, 0.030826620757579803, -0.049386993050575256, 0.1019737720489502, 0.047385625541210175, 1.2188196182250977, -0.028366660699248314, 0.0003115898580290377, -0.0023489082232117653, 0.07762182503938675, -0.2505781650543213, -0.18882344663143158, 0.2091367095708847, -0.1974281221628189, -0.5491411685943604, 0.177210733294487]} +{"t": 11.3703, "q": [-0.13947804272174835, 0.02228192239999771, 0.018186194822192192, 0.3158551752567291, -0.1722269058227539, -0.014644932933151722, -0.09535054117441177, -0.016285762190818787, 0.04060422629117966, 0.3202355206012726, -0.244753897190094, 0.016356458887457848, 0.0060933125205338, 0.03214887157082558, 0.030850710347294807, -0.049375008791685104, 0.10206964612007141, 0.04733768850564957, 1.2188316583633423, -0.028306739404797554, 0.0002636529679875821, -0.0023608924821019173, 0.07982692122459412, -0.25905102491378784, -0.1802307665348053, 0.20898091793060303, -0.1974041610956192, -0.5491291880607605, 0.17832526564598083]} +{"t": 11.387, "q": [-0.13946101069450378, 0.022230789065361023, 0.018226370215415955, 0.31584665179252625, -0.1722397804260254, -0.014652055688202381, -0.09535054117441177, -0.01631132885813713, 0.04064440354704857, 0.32025256752967834, -0.24476221203804016, 0.01634216494858265, 0.006079920567572117, 0.03186976909637451, 0.030955873429775238, -0.04939897730946541, 0.10217750072479248, 0.04712197184562683, 1.218855619430542, -0.028258802369236946, 0.0002636529679875821, -0.0023608924821019173, 0.08211591094732285, -0.26726019382476807, -0.1705954521894455, 0.20889702439308167, -0.19750003516674042, -0.5491651296615601, 0.1793798804283142]} +{"t": 11.4037, "q": [-0.1394950896501541, 0.02222226746380329, 0.018186194822192192, 0.31584665179252625, -0.17223963141441345, -0.014623742550611496, -0.09532497823238373, -0.016328373923897743, 0.0406310111284256, 0.3202355206012726, -0.24476221203804016, 0.01634216494858265, 0.006254015490412712, 0.031553108245134354, 0.031056713312864304, -0.049434930086135864, 0.10222543776035309, 0.0469302274286747, 1.2188196182250977, -0.02817491441965103, 0.00028762139845639467, -0.0023608924821019173, 0.08531569689512253, -0.2751578092575073, -0.16287760436534882, 0.20893298089504242, -0.19755995273590088, -0.5491291880607605, 0.1810816377401352]} +{"t": 11.4204, "q": [-0.139503613114357, 0.022239310666918755, 0.018186194822192192, 0.3158551752567291, -0.1722397804260254, -0.014652055688202381, -0.09534201771020889, -0.016328373923897743, 0.04060422629117966, 0.3202355206012726, -0.24476221203804016, 0.01634216494858265, 0.00642810994759202, 0.03118361346423626, 0.031191395595669746, -0.049506835639476776, 0.10228536278009415, 0.046798400580883026, 1.2188196182250977, -0.028067056089639664, 0.0002636529679875821, -0.0023968450259417295, 0.08807206898927689, -0.28189295530319214, -0.15617842972278595, 0.20884908735752106, -0.1976318657398224, -0.5491291880607605, 0.1829991191625595]} +{"t": 11.4372, "q": [-0.13948656618595123, 0.022247834131121635, 0.018199585378170013, 0.31584665179252625, -0.1722482591867447, -0.014637934975326061, -0.09534201771020889, -0.016328373923897743, 0.04060422629117966, 0.3202184736728668, -0.24475795030593872, 0.01633494719862938, 0.006441501900553703, 0.030775992199778557, 0.03140723705291748, -0.04954278841614723, 0.10238123685121536, 0.04669054225087166, 1.218855619430542, -0.027947213500738144, 0.0003115898580290377, -0.0023489082232117653, 0.09063669294118881, -0.28820863366127014, -0.15024623274803162, 0.2087891697883606, -0.1979314684867859, -0.5493808388710022, 0.18460500240325928]} +{"t": 11.4539, "q": [-0.1394950896501541, 0.02221374586224556, 0.018226370215415955, 0.31584665179252625, -0.1722353845834732, -0.014630802907049656, -0.09535054117441177, -0.016319850459694862, 0.04069796949625015, 0.3202269971370697, -0.24476221203804016, 0.01634216494858265, 0.006213839631527662, 0.0303075909614563, 0.03171886131167412, -0.049554772675037384, 0.10253702849149704, 0.04664260521531105, 1.218855619430542, -0.02792324498295784, 0.0002636529679875821, -0.0023728765081614256, 0.092985600233078, -0.2948598861694336, -0.1426602154970169, 0.2087891697883606, -0.1979314684867859, -0.5494527816772461, 0.1854199320077896]} +{"t": 11.4706, "q": [-0.13947804272174835, 0.02221374586224556, 0.018279938027262688, 0.3158551752567291, -0.1722397804260254, -0.014652055688202381, -0.09535906463861465, -0.016353938728570938, 0.04071136191487312, 0.3202355206012726, -0.24476636946201324, 0.01633501797914505, 0.006066528614610434, 0.02984682098031044, 0.03201645240187645, -0.049626678228378296, 0.10265687108039856, 0.04659466817975044, 1.2188196182250977, -0.02792324498295784, 0.00028762139845639467, -0.0023848607670515776, 0.09545435756444931, -0.302829384803772, -0.13375593721866608, 0.2087412327528, -0.19796741008758545, -0.5495486259460449, 0.1862947791814804]} +{"t": 11.4873, "q": [-0.13946101069450378, 0.022196700796484947, 0.018279938027262688, 0.3158807158470154, -0.17223970592021942, -0.014637899585068226, -0.09537611156702042, -0.016345417127013206, 0.040778324007987976, 0.3202355206012726, -0.24475805461406708, 0.01634931191802025, 0.005852258298546076, 0.02921993099153042, 0.032421063631772995, -0.04984239116311073, 0.10295648127794266, 0.04651077836751938, 1.2188196182250977, -0.02786332368850708, 0.00027563716867007315, -0.0023728765081614256, 0.09776730835437775, -0.3103315234184265, -0.1257384866476059, 0.20866933465003967, -0.1985306739807129, -0.5497882962226868, 0.18784074485301971]} +{"t": 11.504, "q": [-0.13946101069450378, 0.02221374586224556, 0.01830672100186348, 0.31589776277542114, -0.17223121225833893, -0.014652029611170292, -0.09535054117441177, -0.016336895525455475, 0.040738146752119064, 0.32025256752967834, -0.2447495311498642, 0.016334859654307365, 0.0058388663455843925, 0.028638632968068123, 0.0327763557434082, -0.05035771429538727, 0.10325608402490616, 0.04651077836751938, 1.2188076972961426, -0.027839355170726776, 0.00027563716867007315, -0.0023728765081614256, 0.09981661289930344, -0.3163715600967407, -0.11967447400093079, 0.2084895670413971, -0.19933362305164337, -0.5500040054321289, 0.18978218734264374]} +{"t": 11.5208, "q": [-0.13946101069450378, 0.0222648773342371, 0.018266545608639717, 0.315906286239624, -0.1722397804260254, -0.014652055688202381, -0.09535054117441177, -0.016336895525455475, 0.040724754333496094, 0.3202696144580841, -0.24475784599781036, 0.016320565715432167, 0.005932609550654888, 0.0278988815844059, 0.03321482613682747, -0.051304467022418976, 0.1035437062382698, 0.04640292003750801, 1.2188316583633423, -0.027815386652946472, 0.00027563716867007315, -0.0023968450259417295, 0.10242917388677597, -0.32283106446266174, -0.11371831595897675, 0.20836971700191498, -0.2012271285057068, -0.5503036379814148, 0.19169966876506805]} +{"t": 11.5375, "q": [-0.13946951925754547, 0.022239310666918755, 0.018253153190016747, 0.31593185663223267, -0.17224395275115967, -0.014630838297307491, -0.09530793130397797, -0.016328373923897743, 0.04064440354704857, 0.3203207552433014, -0.24476221203804016, 0.01634216494858265, 0.006120096426457167, 0.02709142491221428, 0.03365970775485039, -0.05228717625141144, 0.10372346639633179, 0.04634299874305725, 1.218795657157898, -0.027815386652946472, 0.00025166873820126057, -0.0023728765081614256, 0.10480204969644547, -0.32905086874961853, -0.10760635882616043, 0.20836971700191498, -0.20280905067920685, -0.5507590174674988, 0.1928381621837616]} +{"t": 11.5543, "q": [-0.13944396376609802, 0.022230789065361023, 0.018279938027262688, 0.31598299741744995, -0.17223545908927917, -0.014644959941506386, -0.0952908843755722, -0.016336895525455475, 0.04067118838429451, 0.3203548491001129, -0.24475795030593872, 0.01633494719862938, 0.006026353221386671, 0.026351794600486755, 0.03413526341319084, -0.05288638547062874, 0.10391521453857422, 0.04627109318971634, 1.218843698501587, -0.02767157554626465, 0.0002636529679875821, -0.0023848607670515776, 0.10671952366828918, -0.33636125922203064, -0.09984058141708374, 0.20830979943275452, -0.20467858016490936, -0.5514661073684692, 0.1937369853258133]} +{"t": 11.571, "q": [-0.13946951925754547, 0.022230789065361023, 0.01832011342048645, 0.3160085678100586, -0.17223545908927917, -0.014644959941506386, -0.09532497823238373, -0.016336895525455475, 0.040778324007987976, 0.3203548491001129, -0.2447453737258911, 0.016342006623744965, 0.00571833923459053, 0.025733159855008125, 0.03448539972305298, -0.05352155119180679, 0.10420283675193787, 0.04613926634192467, 1.2188916206359863, -0.027659591287374496, 0.00027563716867007315, -0.0023728765081614256, 0.10807374119758606, -0.34445059299468994, -0.09105614572763443, 0.20804615318775177, -0.2063443958759308, -0.5525206923484802, 0.1943361908197403]} +{"t": 11.5878, "q": [-0.13946101069450378, 0.022239310666918755, 0.018387073650956154, 0.3160426616668701, -0.17223121225833893, -0.014652029611170292, -0.09532497823238373, -0.016353938728570938, 0.04081849753856659, 0.32038894295692444, -0.24475368857383728, 0.016327712684869766, 0.005571028683334589, 0.025023959577083588, 0.03489365428686142, -0.0544443354010582, 0.10450244694948196, 0.0460314080119133, 1.2190114259719849, -0.02756371721625328, 0.0002996056282427162, -0.0023608924821019173, 0.1092601791024208, -0.3509220778942108, -0.08423712104558945, 0.2079382985830307, -0.20787836611270905, -0.5532277822494507, 0.19497136771678925]} +{"t": 11.6047, "q": [-0.13946101069450378, 0.02222226746380329, 0.018373681232333183, 0.3160597085952759, -0.1722269058227539, -0.014644932933151722, -0.09530793130397797, -0.016353938728570938, 0.04080510511994362, 0.3204059600830078, -0.24474942684173584, 0.016320496797561646, 0.0055442447774112225, 0.024209674447774887, 0.03530265763401985, -0.055642757564783096, 0.10482601821422577, 0.0460314080119133, 1.2191312313079834, -0.027419907972216606, 0.00027563716867007315, -0.0023728765081614256, 0.1104346364736557, -0.35697412490844727, -0.0782330259680748, 0.20795027911663055, -0.20990370213985443, -0.553659200668335, 0.19567842781543732]} +{"t": 11.6215, "q": [-0.1394524872303009, 0.02220522239804268, 0.018360288813710213, 0.3161449134349823, -0.17223121225833893, -0.014652029611170292, -0.09528236091136932, -0.016353938728570938, 0.04083188995718956, 0.3204144835472107, -0.24474526941776276, 0.016327643766999245, 0.005704947747290134, 0.023531338199973106, 0.03561481088399887, -0.05703292787075043, 0.10506570339202881, 0.045887596905231476, 1.2192031145095825, -0.027419907972216606, 0.00027563716867007315, -0.0023728765081614256, 0.11177686601877213, -0.3627864718437195, -0.07325956970453262, 0.2078663855791092, -0.21389445662498474, -0.5541146397590637, 0.1962297111749649]} +{"t": 11.6382, "q": [-0.13947804272174835, 0.022196700796484947, 0.01833350583910942, 0.31616196036338806, -0.1722269058227539, -0.014644932933151722, -0.09526532143354416, -0.016396550461649895, 0.040764931589365005, 0.320465624332428, -0.2447453737258911, 0.016342006623744965, 0.005959393456578255, 0.022988788783550262, 0.0358399823307991, -0.0583871454000473, 0.10524546355009079, 0.045875612646341324, 1.2191672325134277, -0.027371970936655998, 0.0002636529679875821, -0.0023608924821019173, 0.11295132339000702, -0.3690182566642761, -0.0673753172159195, 0.20787836611270905, -0.2169504314661026, -0.5544142127037048, 0.19663716852664948]} +{"t": 11.6549, "q": [-0.13948656618595123, 0.02216261252760887, 0.01830672100186348, 0.3161875307559967, -0.17222698032855988, -0.014659089967608452, -0.09525679796934128, -0.016439160332083702, 0.040764931589365005, 0.3204571008682251, -0.24474526941776276, 0.016327643766999245, 0.005986177362501621, 0.022469162940979004, 0.03599400818347931, -0.05971739441156387, 0.10538927465677261, 0.045827675610780716, 1.2192031145095825, -0.02732403390109539, 0.00023968450841493905, -0.0023489082232117653, 0.11380220204591751, -0.37635260820388794, -0.06072406843304634, 0.20780646800994873, -0.22072546184062958, -0.5545220971107483, 0.19699668884277344]} +{"t": 11.6716, "q": [-0.13948656618595123, 0.022111479192972183, 0.018346896395087242, 0.31617048382759094, -0.17223553359508514, -0.014659125357866287, -0.09528236091136932, -0.016447681933641434, 0.04079171270132065, 0.32044005393981934, -0.24474526941776276, 0.016327643766999245, 0.005919218063354492, 0.021814240142703056, 0.03614980727434158, -0.061538998037576675, 0.1056169793009758, 0.04580370709300041, 1.2192391157150269, -0.027276096865534782, 0.00022770027862861753, -0.0023608924821019173, 0.11419767886400223, -0.3846457004547119, -0.053114086389541626, 0.20784242451190948, -0.22578279674053192, -0.5545340776443481, 0.19726034998893738]} +{"t": 11.6885, "q": [-0.13947804272174835, 0.02209443598985672, 0.018373681232333183, 0.31617048382759094, -0.17222273349761963, -0.014666150324046612, -0.09526532143354416, -0.016447681933641434, 0.04079171270132065, 0.32044005393981934, -0.24474942684173584, 0.016320496797561646, 0.005972785409539938, 0.021234625950455666, 0.036284685134887695, -0.06367219239473343, 0.10582070797681808, 0.0457557737827301, 1.2192031145095825, -0.02713228575885296, 0.0002636529679875821, -0.0023608924821019173, 0.11503657698631287, -0.39177629351615906, -0.047577373683452606, 0.20792630314826965, -0.23026490211486816, -0.5545340776443481, 0.19747605919837952]} +{"t": 11.7053, "q": [-0.13951213657855988, 0.022120002657175064, 0.01832011342048645, 0.3161363899707794, -0.1722184121608734, -0.014659054577350616, -0.09528236091136932, -0.016456205397844315, 0.040738146752119064, 0.3204571008682251, -0.24474942684173584, 0.016320496797561646, 0.006120096426457167, 0.020255615934729576, 0.03660871461033821, -0.06484664231538773, 0.10595253854990005, 0.04574378952383995, 1.2191672325134277, -0.027108317241072655, 0.0002636529679875821, -0.0023608924821019173, 0.11571967601776123, -0.39876312017440796, -0.04277170076966286, 0.2079382985830307, -0.2352982759475708, -0.5545340776443481, 0.19753599166870117]} +{"t": 11.722, "q": [-0.13958030939102173, 0.02215409092605114, 0.01829332858324051, 0.31606820225715637, -0.17222705483436584, -0.014673247002065182, -0.09533349424600601, -0.01643063873052597, 0.040738146752119064, 0.32038894295692444, -0.24474526941776276, 0.016327643766999245, 0.006213839631527662, 0.018516262993216515, 0.03715348616242409, -0.06509830802679062, 0.10606039315462112, 0.0457318052649498, 1.219155192375183, -0.026976490393280983, 0.0002636529679875821, -0.0023489082232117653, 0.11625897139310837, -0.40518665313720703, -0.03827761486172676, 0.20802217721939087, -0.24067918956279755, -0.5545700192451477, 0.19761987030506134]} +{"t": 11.7389, "q": [-0.139631450176239, 0.022137045860290527, 0.01833350583910942, 0.3160000443458557, -0.17222698032855988, -0.014659089967608452, -0.09537611156702042, -0.01643063873052597, 0.040751539170742035, 0.3203122317790985, -0.2447453737258911, 0.016342006623744965, 0.006187055725604296, 0.016529051586985588, 0.037741318345069885, -0.06521815061569214, 0.10618023574352264, 0.04559997841715813, 1.2192151546478271, -0.026880616322159767, 0.0002636529679875821, -0.0023608924821019173, 0.11669040471315384, -0.4120296537876129, -0.03428686782717705, 0.20809409022331238, -0.24779783189296722, -0.5545580387115479, 0.1976558268070221]} +{"t": 11.7556, "q": [-0.13965700566768646, 0.022120002657175064, 0.018360288813710213, 0.3158807158470154, -0.17222698032855988, -0.014659089967608452, -0.09537611156702042, -0.01649029366672039, 0.04079171270132065, 0.32020145654678345, -0.24475795030593872, 0.01633494719862938, 0.006106704473495483, 0.01474603358656168, 0.038112521171569824, -0.06526608765125275, 0.10620420426130295, 0.045528072863817215, 1.219155192375183, -0.02677275985479355, 0.00022770027862861753, -0.0023728765081614256, 0.11684619635343552, -0.4191243052482605, -0.03075152263045311, 0.20807011425495148, -0.25420939922332764, -0.5545700192451477, 0.19784757494926453]} +{"t": 11.7723, "q": [-0.13967405259609222, 0.022009214386343956, 0.018373681232333183, 0.3157699406147003, -0.17222698032855988, -0.014659089967608452, -0.09537611156702042, -0.016575515270233154, 0.04080510511994362, 0.32006508111953735, -0.24476231634616852, 0.01635652780532837, 0.006039745174348354, 0.012548930011689663, 0.03864995762705803, -0.06529005616903305, 0.10612031817436218, 0.04550410434603691, 1.2192151546478271, -0.02666490152478218, 0.00022770027862861753, -0.0023608924821019173, 0.11670238524675369, -0.42572760581970215, -0.026101643219590187, 0.20807011425495148, -0.2587634027004242, -0.5545819997787476, 0.19783559441566467]} +{"t": 11.7891, "q": [-0.13966552913188934, 0.0220347810536623, 0.01845403201878071, 0.3155995011329651, -0.1722397804260254, -0.014652055688202381, -0.0953846275806427, -0.01660960353910923, 0.04081849753856659, 0.3199969232082367, -0.24476221203804016, 0.01634216494858265, 0.005905826110392809, 0.010577629320323467, 0.039323702454566956, -0.0653260126709938, 0.10609634965658188, 0.04548013582825661, 1.2192391157150269, -0.02659299597144127, 0.00023968450841493905, -0.0023728765081614256, 0.11657056212425232, -0.4322829842567444, -0.02051699347794056, 0.20836971700191498, -0.2646836042404175, -0.5545700192451477, 0.19784757494926453]} +{"t": 11.8058, "q": [-0.13974224030971527, 0.022051824256777763, 0.018520992249250412, 0.31548020243644714, -0.1722397804260254, -0.014652055688202381, -0.09540167450904846, -0.01666073501110077, 0.04083188995718956, 0.3198094367980957, -0.24475379288196564, 0.01634209416806698, 0.0057719070464372635, 0.008651982992887497, 0.03997677564620972, -0.06534998118877411, 0.10603642463684082, 0.045408230274915695, 1.2192151546478271, -0.026616964489221573, 0.000215716048842296, -0.0023728765081614256, 0.11654659360647202, -0.43730437755584717, -0.016658073291182518, 0.20824988186359406, -0.26958513259887695, -0.5546179413795471, 0.19784757494926453]} +{"t": 11.8225, "q": [-0.13979336619377136, 0.022043302655220032, 0.018534382805228233, 0.3153182566165924, -0.1722397804260254, -0.014652055688202381, -0.09545280784368515, -0.016694823279976845, 0.04080510511994362, 0.31965601444244385, -0.2447495311498642, 0.016334859654307365, 0.005651379935443401, 0.006673864088952541, 0.04081098735332489, -0.06540989875793457, 0.10613229870796204, 0.045432198792696, 1.2192151546478271, -0.026628948748111725, 0.00022770027862861753, -0.0023608924821019173, 0.11649865657091141, -0.4406719505786896, -0.013877732679247856, 0.2082139253616333, -0.2739713788032532, -0.5546659231185913, 0.19783559441566467]} +{"t": 11.8394, "q": [-0.13983598351478577, 0.022017735987901688, 0.018561167642474174, 0.31528419256210327, -0.1722397804260254, -0.014652055688202381, -0.09551246464252472, -0.0167374350130558, 0.04087206721305847, 0.31965601444244385, -0.244753897190094, 0.016356458887457848, 0.005517460871487856, 0.004741236101835966, 0.041858743876218796, -0.06539791822433472, 0.10607238113880157, 0.04549212008714676, 1.219430923461914, -0.02666490152478218, 0.00027563716867007315, -0.0023489082232117653, 0.1164746880531311, -0.4424695670604706, -0.011960256844758987, 0.20817798376083374, -0.27512186765670776, -0.5547018647193909, 0.19783559441566467]} +{"t": 11.8562, "q": [-0.1399638056755066, 0.0220347810536623, 0.01865491084754467, 0.3151733875274658, -0.1722525805234909, -0.014645030722022057, -0.09567438066005707, -0.01678856648504734, 0.040912240743637085, 0.31955376267433167, -0.24475805461406708, 0.01634931191802025, 0.005329974461346865, 0.002975028706714511, 0.04277113080024719, -0.06536196172237396, 0.10612031817436218, 0.045468151569366455, 1.2194668054580688, -0.026676885783672333, 0.00027563716867007315, -0.0023489082232117653, 0.11640278249979019, -0.44282910227775574, -0.010905644856393337, 0.20817798376083374, -0.27504995465278625, -0.5547497868537903, 0.19783559441566467]} +{"t": 11.8729, "q": [-0.1400575488805771, 0.0220347810536623, 0.01882900483906269, 0.31515634059906006, -0.1722525805234909, -0.014645030722022057, -0.09582778066396713, -0.016933443024754524, 0.04100598394870758, 0.31951966881752014, -0.2447497397661209, 0.016363605856895447, 0.004620204214006662, 0.0014873002655804157, 0.043657541275024414, -0.06518220156431198, 0.10600047558546066, 0.04549212008714676, 1.2196944952011108, -0.026748791337013245, 0.00028762139845639467, -0.0023489082232117653, 0.11558785289525986, -0.44252949953079224, -0.010893660597503185, 0.20817798376083374, -0.2748701870441437, -0.5547617673873901, 0.19779963791370392]} +{"t": 11.8896, "q": [-0.1400490254163742, 0.022068869322538376, 0.01896292343735695, 0.31515634059906006, -0.1722610741853714, -0.01463090069591999, -0.09587039053440094, -0.01702718622982502, 0.04116668552160263, 0.3195708096027374, -0.244753897190094, 0.016356458887457848, 0.003910433501005173, 5.255228461464867e-05, 0.044594086706638336, -0.0644032284617424, 0.10508967190980911, 0.04542021453380585, 1.220629334449768, -0.026856649667024612, 0.0003954794374294579, -0.0023608924821019173, 0.11474895477294922, -0.44222989678382874, -0.011073424480855465, 0.20809409022331238, -0.27472639083862305, -0.5549535155296326, 0.19782359898090363]} +{"t": 11.9064, "q": [-0.14008311927318573, 0.022060347720980644, 0.01898970827460289, 0.3150796592235565, -0.1722695529460907, -0.014616779051721096, -0.09593857079744339, -0.01708684116601944, 0.04122025519609451, 0.3195878565311432, -0.244753897190094, 0.016356458887457848, 0.0032810145057737827, -0.0012687576236203313, 0.04559846594929695, -0.06339655071496964, 0.10316020995378494, 0.04550410434603691, 1.2213243246078491, -0.027108317241072655, 0.000431432097684592, -0.0023369239643216133, 0.11426958441734314, -0.44197821617126465, -0.012547483667731285, 0.20780646800994873, -0.27437883615493774, -0.5553969144821167, 0.1977277249097824]} +{"t": 11.9232, "q": [-0.14008311927318573, 0.022077390924096107, 0.019043276086449623, 0.3150796592235565, -0.1722610741853714, -0.01463090069591999, -0.09601526707410812, -0.01715501770377159, 0.04128721356391907, 0.3196219503879547, -0.2447582483291626, 0.016378037631511688, 0.002946217078715563, -0.0025595573242753744, 0.04650815203785896, -0.06264154613018036, 0.10113487392663956, 0.04550410434603691, 1.2221992015838623, -0.027300065383315086, 0.0003954794374294579, -0.0022889869287610054, 0.11326291412115097, -0.44179844856262207, -0.013410348445177078, 0.20769861340522766, -0.27407923340797424, -0.5558043718338013, 0.19766780734062195]} +{"t": 11.9399, "q": [-0.14013424515724182, 0.02209443598985672, 0.019070059061050415, 0.3151222765445709, -0.1722610741853714, -0.01463090069591999, -0.09605787694454193, -0.01715501770377159, 0.04128721356391907, 0.3196219503879547, -0.24475815892219543, 0.01636367477476597, 0.00287925754673779, -0.0037674426566809416, 0.04736470431089401, -0.0622820183634758, 0.09915748238563538, 0.045707836747169495, 1.2228103876113892, -0.027467845007777214, 0.00011984225420746952, -0.002061286708340049, 0.112531878054142, -0.4415947198867798, -0.013721938244998455, 0.20757876336574554, -0.27357590198516846, -0.5564156174659729, 0.19769178330898285]} +{"t": 11.9566, "q": [-0.140193909406662, 0.022068869322538376, 0.019029883667826653, 0.31516486406326294, -0.17226962745189667, -0.014630936086177826, -0.0961175337433815, -0.017129452899098396, 0.041247040033340454, 0.31965601444244385, -0.24475379288196564, 0.01634209416806698, 0.002946217078715563, -0.004802263341844082, 0.04798092693090439, -0.06203034892678261, 0.09821072220802307, 0.0457557737827301, 1.2229901552200317, -0.02773149684071541, -0.0002996056282427162, -0.0016058861510828137, 0.1119086965918541, -0.4401686191558838, -0.014848454855382442, 0.207410991191864, -0.27310851216316223, -0.5569668412208557, 0.19757193326950073]} +{"t": 11.9734, "q": [-0.1401853859424591, 0.022068869322538376, 0.01900310069322586, 0.31530123949050903, -0.1722610741853714, -0.01463090069591999, -0.0961175337433815, -0.017044231295585632, 0.04122025519609451, 0.3197242021560669, -0.24474547803401947, 0.016356388106942177, 0.002946217078715563, -0.0057469867169857025, 0.04857804626226425, -0.06193447485566139, 0.09799501299858093, 0.04583965986967087, 1.2230980396270752, -0.027791418135166168, -0.0006950850365683436, -0.0013542174128815532, 0.11106979846954346, -0.4382750988006592, -0.015591477043926716, 0.20742297172546387, -0.272784948348999, -0.5574102997779846, 0.19761987030506134]} +{"t": 11.9901, "q": [-0.1401853859424591, 0.02210295759141445, 0.01896292343735695, 0.3153267800807953, -0.1722695529460907, -0.014616779051721096, -0.09612605720758438, -0.01697605475783348, 0.041233647614717484, 0.31979238986968994, -0.244753897190094, 0.016356458887457848, 0.002959609031677246, -0.006181806791573763, 0.04884849861264229, -0.061982411891222, 0.09803096204996109, 0.045815691351890564, 1.2231699228286743, -0.027875307947397232, -0.0008269115351140499, -0.0012223910307511687, 0.11020693182945251, -0.43610596656799316, -0.01583116129040718, 0.20739899575710297, -0.27240145206451416, -0.5578536987304688, 0.19766780734062195]} +{"t": 12.0068, "q": [-0.14016833901405334, 0.022077390924096107, 0.01896292343735695, 0.3154120147228241, -0.17225690186023712, -0.014652127400040627, -0.09612605720758438, -0.01691639982163906, 0.041233647614717484, 0.3198094367980957, -0.24473704397678375, 0.016356300562620163, 0.0029194331727921963, -0.006361610256135464, 0.048978984355926514, -0.062138207256793976, 0.098102867603302, 0.04579172283411026, 1.2231580018997192, -0.02786332368850708, -0.000898816913831979, -0.0011504855938255787, 0.10892461985349655, -0.43366116285324097, -0.01581917703151703, 0.20730312168598175, -0.27205389738082886, -0.5584648847579956, 0.19769178330898285]} +{"t": 12.0238, "q": [-0.14010868966579437, 0.02208591252565384, 0.01896292343735695, 0.31547167897224426, -0.17226114869117737, -0.014645066112279892, -0.0961175337433815, -0.01685674488544464, 0.041260428726673126, 0.3199116885662079, -0.24474963545799255, 0.016349241137504578, 0.00287925754673779, -0.00630900077521801, 0.049049437046051025, -0.06248575076460838, 0.09813882410526276, 0.04574378952383995, 1.223181962966919, -0.027887292206287384, -0.0009587380336597562, -0.0011145329335704446, 0.10746254771947861, -0.4307370185852051, -0.015579492785036564, 0.20711137354373932, -0.27161046862602234, -0.5590760707855225, 0.19766780734062195]} +{"t": 12.0405, "q": [-0.14008311927318573, 0.02208591252565384, 0.01896292343735695, 0.3155057430267334, -0.1722610741853714, -0.01463090069591999, -0.09612605720758438, -0.01683969981968403, 0.041233647614717484, 0.32002246379852295, -0.24474963545799255, 0.016349241137504578, 0.0028122980147600174, -0.006061297841370106, 0.04917681962251663, -0.06272543221712112, 0.09799501299858093, 0.04579172283411026, 1.2232178449630737, -0.027815386652946472, -0.0009467537747696042, -0.0010426276130601764, 0.10627610981464386, -0.4276570677757263, -0.01507615577429533, 0.2070154994726181, -0.27113109827041626, -0.5599389672279358, 0.19771574437618256]} +{"t": 12.0573, "q": [-0.14008311927318573, 0.02208591252565384, 0.018936140462756157, 0.3155057430267334, -0.17225682735443115, -0.014637970365583897, -0.09612605720758438, -0.016805611550807953, 0.04122025519609451, 0.32006508111953735, -0.24474963545799255, 0.016349241137504578, 0.0029328251257538795, -0.005858615040779114, 0.049294665455818176, -0.06284527480602264, 0.0977792963385582, 0.045707836747169495, 1.223253846168518, -0.027815386652946472, -0.0010066749528050423, -0.0009827064350247383, 0.10500577837228775, -0.4237382411956787, -0.014572817832231522, 0.20690764486789703, -0.2703161835670471, -0.5615448355674744, 0.19769178330898285]} +{"t": 12.0741, "q": [-0.14006607234477997, 0.022120002657175064, 0.018882572650909424, 0.3155995011329651, -0.1722482591867447, -0.014637934975326061, -0.09613457322120667, -0.01672038994729519, 0.04122025519609451, 0.32020995020866394, -0.24474547803401947, 0.016356388106942177, 0.002959609031677246, -0.00570842158049345, 0.049417003989219666, -0.06278535723686218, 0.09770739078521729, 0.045707836747169495, 1.2233617305755615, -0.027815386652946472, -0.0010306433541700244, -0.0009587380336597562, 0.10368751734495163, -0.4187168478965759, -0.014512896537780762, 0.20693162083625793, -0.26893800497055054, -0.5645409226417542, 0.1976797878742218]} +{"t": 12.0908, "q": [-0.1401001662015915, 0.022111479192972183, 0.01884239725768566, 0.3155824542045593, -0.1722525805234909, -0.014645030722022057, -0.09613457322120667, -0.016643691807985306, 0.04115329682826996, 0.3202184736728668, -0.24474111199378967, 0.016334790736436844, 0.0031203117687255144, -0.005633280146867037, 0.04951095953583717, -0.06250971555709839, 0.09768342226743698, 0.04574378952383995, 1.2235654592514038, -0.027911260724067688, -0.0010306433541700244, -0.0009347695740871131, 0.10263290256261826, -0.41356363892555237, -0.014321149326860905, 0.20677582919597626, -0.26621758937835693, -0.5689750909805298, 0.19764384627342224]} +{"t": 12.1076, "q": [-0.14010868966579437, 0.022137045860290527, 0.018748654052615166, 0.31560802459716797, -0.1722441017627716, -0.014659152366220951, -0.0961175337433815, -0.01660960353910923, 0.041072942316532135, 0.32025256752967834, -0.24474111199378967, 0.016334790736436844, 0.0033881496638059616, -0.005558206234127283, 0.04955807700753212, -0.062246065586805344, 0.09753961116075516, 0.04579172283411026, 1.2237811088562012, -0.02786332368850708, -0.0010785802733153105, -0.0009347695740871131, 0.10148242115974426, -0.4081946909427643, -0.013482253067195415, 0.2061646282672882, -0.2617834210395813, -0.5741642117500305, 0.19757193326950073]} +{"t": 12.1243, "q": [-0.1401001662015915, 0.02216261252760887, 0.01865491084754467, 0.31561654806137085, -0.1722441017627716, -0.014659152366220951, -0.09610901027917862, -0.01660960353910923, 0.04100598394870758, 0.3202610909938812, -0.24474547803401947, 0.016356388106942177, 0.0035354604478925467, -0.0054455953650176525, 0.04962875321507454, -0.06197042763233185, 0.09741976857185364, 0.04574378952383995, 1.2240327596664429, -0.027887292206287384, -0.0010546118719503284, -0.0009347695740871131, 0.10000836104154587, -0.40408411622047424, -0.012655341997742653, 0.20530176162719727, -0.2568459212779999, -0.5786463022232056, 0.19755995273590088]} +{"t": 12.141, "q": [-0.1401001662015915, 0.02214556746184826, 0.01862812601029873, 0.31557393074035645, -0.1722525805234909, -0.014645030722022057, -0.09610901027917862, -0.016584036871790886, 0.04097919911146164, 0.3202696144580841, -0.2447453737258911, 0.016342006623744965, 0.0035354604478925467, -0.005408058408647776, 0.04965231195092201, -0.06173074245452881, 0.09737183153629303, 0.04568386822938919, 1.2242364883422852, -0.02792324498295784, -0.0011145329335704446, -0.0009227853151969612, 0.09822271019220352, -0.3984035849571228, -0.011720572598278522, 0.2043430209159851, -0.24999094009399414, -0.5820258855819702, 0.19748805463314056]} +{"t": 12.1578, "q": [-0.14011721312999725, 0.02215409092605114, 0.0186415184289217, 0.3155909776687622, -0.17223985493183136, -0.014666222035884857, -0.09609196335077286, -0.01654142513871193, 0.04099259153008461, 0.3202696144580841, -0.24475379288196564, 0.01634209416806698, 0.0035086767747998238, -0.005423044785857201, 0.04966162517666817, -0.06163487210869789, 0.09734786301851273, 0.045707836747169495, 1.224452257156372, -0.027971182018518448, -0.0011504855938255787, -0.0009227853151969612, 0.09607753157615662, -0.3913089334964752, -0.01131310872733593, 0.20403143763542175, -0.2442624717950821, -0.5850459337234497, 0.19753599166870117]} +{"t": 12.1745, "q": [-0.14008311927318573, 0.02216261252760887, 0.01862812601029873, 0.31562507152557373, -0.1722441017627716, -0.014659152366220951, -0.09610048681497574, -0.01649029366672039, 0.04103276878595352, 0.3203207552433014, -0.2447369545698166, 0.016341937705874443, 0.003481892868876457, -0.005393055733293295, 0.04965236410498619, -0.06164685636758804, 0.09731190651655197, 0.04571982100605965, 1.224608063697815, -0.027971182018518448, -0.0011504855938255787, -0.0008868326549418271, 0.09378854930400848, -0.3834472596645355, -0.011265171691775322, 0.20395952463150024, -0.23840218782424927, -0.589360237121582, 0.19750003516674042]} +{"t": 12.1916, "q": [-0.1401001662015915, 0.022196700796484947, 0.01862812601029873, 0.3155824542045593, -0.17223553359508514, -0.014659125357866287, -0.09609196335077286, -0.01649029366672039, 0.04096581041812897, 0.3203207552433014, -0.2447453737258911, 0.016342006623744965, 0.00354885240085423, -0.005370550323277712, 0.04965713247656822, -0.06171875819563866, 0.09724000096321106, 0.04574378952383995, 1.2247039079666138, -0.027995150536298752, -0.0011864382540807128, -0.0009108011145144701, 0.09184709936380386, -0.376831978559494, -0.011265171691775322, 0.20382770895957947, -0.23039673268795013, -0.5936385989189148, 0.19744011759757996]} +{"t": 12.2084, "q": [-0.1401001662015915, 0.022179657593369484, 0.01862812601029873, 0.31560802459716797, -0.1722441017627716, -0.014659152366220951, -0.09606640040874481, -0.016507336869835854, 0.04097919911146164, 0.32038041949272156, -0.24474111199378967, 0.016334790736436844, 0.0035220684949308634, -0.00526548782363534, 0.04969499260187149, -0.061706773936748505, 0.0972040519118309, 0.0457318052649498, 1.224835753440857, -0.028019119054079056, -0.0012463594321161509, -0.0009108011145144701, 0.08923453837633133, -0.3687785863876343, -0.01137303002178669, 0.20381571352481842, -0.22113291919231415, -0.5974135994911194, 0.19739218056201935]} +{"t": 12.2253, "q": [-0.14006607234477997, 0.02215409092605114, 0.0186415184289217, 0.3155909776687622, -0.1722397804260254, -0.014652055688202381, -0.09608343988656998, -0.016515860334038734, 0.04100598394870758, 0.32034632563591003, -0.24474963545799255, 0.016349241137504578, 0.003575636073946953, -0.005205399822443724, 0.04975141957402229, -0.06169478967785835, 0.0971800833940506, 0.045707836747169495, 1.2250155210494995, -0.028019119054079056, -0.001270327833481133, -0.0008868326549418271, 0.08695753663778305, -0.3618277311325073, -0.011205250397324562, 0.20383968949317932, -0.2118092030286789, -0.6005535125732422, 0.1974520981311798]} +{"t": 12.242, "q": [-0.14011721312999725, 0.022188179194927216, 0.018587950617074966, 0.31556540727615356, -0.1722441017627716, -0.014659152366220951, -0.09606640040874481, -0.01654142513871193, 0.040939025580883026, 0.3203548491001129, -0.24474121630191803, 0.016349153593182564, 0.0036292036529630423, -0.005047761369496584, 0.04984099790453911, -0.06174272671341896, 0.09714412689208984, 0.04567188397049904, 1.2251832485198975, -0.028019119054079056, -0.001270327833481133, -0.000874848454259336, 0.08504006266593933, -0.3530193269252777, -0.011277155950665474, 0.20383968949317932, -0.2027730941772461, -0.6035375595092773, 0.1974520981311798]} +{"t": 12.2587, "q": [-0.14013424515724182, 0.02220522239804268, 0.018587950617074966, 0.3155057430267334, -0.17224416136741638, -0.014673317782580853, -0.09605787694454193, -0.01654142513871193, 0.040885455906391144, 0.32034632563591003, -0.24474111199378967, 0.016334790736436844, 0.0037229470908641815, -0.004965180065482855, 0.04989282786846161, -0.061766695231199265, 0.09707222133874893, 0.04569585248827934, 1.2254709005355835, -0.028067056089639664, -0.0013901700731366873, -0.000874848454259336, 0.08351806551218033, -0.3439352810382843, -0.011301124468445778, 0.20385167002677917, -0.19462381303310394, -0.6058984398841858, 0.1974281221628189]} +{"t": 12.2756, "q": [-0.14013424515724182, 0.02220522239804268, 0.018561167642474174, 0.3154631555080414, -0.1722441017627716, -0.014659152366220951, -0.09606640040874481, -0.01654142513871193, 0.040898848325014114, 0.32030370831489563, -0.24475805461406708, 0.01634931191802025, 0.0037631227169185877, -0.004890089388936758, 0.04994931071996689, -0.061766695231199265, 0.09698833525180817, 0.04571982100605965, 1.2256866693496704, -0.028067056089639664, -0.0014740596525371075, -0.000874848454259336, 0.08246345072984695, -0.3359657824039459, -0.01131310872733593, 0.203995481133461, -0.18878750503063202, -0.60931396484375, 0.19746407866477966]} +{"t": 12.2923, "q": [-0.14015981554985046, 0.022196700796484947, 0.018561167642474174, 0.31538644433021545, -0.17223553359508514, -0.014659125357866287, -0.09606640040874481, -0.016584036871790886, 0.04084528237581253, 0.32025256752967834, -0.2447453737258911, 0.016342006623744965, 0.003977392800152302, -0.00470239482820034, 0.05007646977901459, -0.06180264800786972, 0.09684452414512634, 0.045707836747169495, 1.2258903980255127, -0.028079040348529816, -0.0015459650894626975, -0.000862864195369184, 0.08170844614505768, -0.32831984758377075, -0.011181281879544258, 0.20422318577766418, -0.18153704702854156, -0.6142514944076538, 0.19748805463314056]} +{"t": 12.3091, "q": [-0.14017686247825623, 0.022179657593369484, 0.018561167642474174, 0.31534382700920105, -0.1722397804260254, -0.014652055688202381, -0.09608343988656998, -0.01661812514066696, 0.04084528237581253, 0.3201673626899719, -0.24475400149822235, 0.016370821744203568, 0.004071136470884085, -0.004672303795814514, 0.0501701682806015, -0.06180264800786972, 0.09678460657596588, 0.04571982100605965, 1.2261420488357544, -0.02816293016076088, -0.0016178704099729657, -0.000874848454259336, 0.08094145357608795, -0.32023048400878906, -0.011181281879544258, 0.20415127277374268, -0.1754850149154663, -0.6173554062843323, 0.19755995273590088]} +{"t": 12.3258, "q": [-0.1401853859424591, 0.02216261252760887, 0.018574560061097145, 0.31528419256210327, -0.1722525805234909, -0.014645030722022057, -0.09610048681497574, -0.01661812514066696, 0.04087206721305847, 0.32010769844055176, -0.24475815892219543, 0.01636367477476597, 0.0041247038170695305, -0.004679632373154163, 0.05033394321799278, -0.06181463226675987, 0.09674865007400513, 0.045707836747169495, 1.2264655828475952, -0.02816293016076088, -0.0016178704099729657, -0.0008868326549418271, 0.07995875179767609, -0.3119014501571655, -0.011181281879544258, 0.20448683202266693, -0.17345967888832092, -0.6192368865013123, 0.19751201570034027]} +{"t": 12.3425, "q": [-0.14021095633506775, 0.02216261252760887, 0.018601343035697937, 0.31525862216949463, -0.1722397804260254, -0.014652055688202381, -0.09610901027917862, -0.01666073501110077, 0.04087206721305847, 0.32007360458374023, -0.24475815892219543, 0.01636367477476597, 0.004178271628916264, -0.0047693741507828236, 0.05055829510092735, -0.061826616525650024, 0.09677261859178543, 0.0457318052649498, 1.2266932725906372, -0.028150945901870728, -0.00173771264962852, -0.000874848454259336, 0.07879628241062164, -0.3032488226890564, -0.011109377257525921, 0.20497818291187286, -0.1723211705684662, -0.6205911040306091, 0.19759590923786163]} +{"t": 12.3593, "q": [-0.14021946489810944, 0.022196700796484947, 0.018601343035697937, 0.31519895792007446, -0.1722441017627716, -0.014659152366220951, -0.0961175337433815, -0.016711868345737457, 0.040912240743637085, 0.3199969232082367, -0.24474963545799255, 0.016349241137504578, 0.004097919911146164, -0.0048890565522015095, 0.05082935094833374, -0.06187455356121063, 0.09678460657596588, 0.04579172283411026, 1.2269690036773682, -0.02816293016076088, -0.0017736653098836541, -0.000862864195369184, 0.07722634822130203, -0.295051634311676, -0.011157313361763954, 0.20507405698299408, -0.17106282711029053, -0.6214659810066223, 0.19766780734062195]} +{"t": 12.376, "q": [-0.14027060568332672, 0.02214556746184826, 0.01865491084754467, 0.31516486406326294, -0.17225690186023712, -0.014652127400040627, -0.09616014361381531, -0.016822656616568565, 0.040952417999506, 0.3199457824230194, -0.24476240575313568, 0.01637089066207409, 0.003990784753113985, -0.004971322137862444, 0.051030322909355164, -0.061898522078990936, 0.09678460657596588, 0.045815691351890564, 1.2271367311477661, -0.02817491441965103, -0.0018455706303939223, -0.0008388957940042019, 0.07544069737195969, -0.28940704464912415, -0.011684619821608067, 0.2052418440580368, -0.1702718734741211, -0.6217415928840637, 0.19754797220230103]} +{"t": 12.3927, "q": [-0.14026208221912384, 0.02216261252760887, 0.018721869215369225, 0.3151392936706543, -0.1722525805234909, -0.014645030722022057, -0.09616014361381531, -0.0169675312936306, 0.04101937636733055, 0.3199116885662079, -0.2447582483291626, 0.016378037631511688, 0.00354885240085423, -0.005053692031651735, 0.05113770440220833, -0.06179066374897957, 0.09694039821624756, 0.04579172283411026, 1.2274004220962524, -0.028126977384090424, -0.0018695391481742263, -0.0008149273344315588, 0.0731157585978508, -0.2833550274372101, -0.015723302960395813, 0.20540961623191833, -0.1670241504907608, -0.6215139031410217, 0.193533256649971]} +{"t": 12.4095, "q": [-0.1402365118265152, 0.022196700796484947, 0.01900310069322586, 0.3150540888309479, -0.17226114869117737, -0.014645066112279892, -0.09624536335468292, -0.017001619562506676, 0.04131399840116501, 0.3199457824230194, -0.24475815892219543, 0.01636367477476597, 0.002048959955573082, -0.005113655235618353, 0.05115623399615288, -0.06103565916419029, 0.09731190651655197, 0.04583965986967087, 1.2278677225112915, -0.028091024607419968, -0.0019054918084293604, -0.0007669904152862728, 0.0698440670967102, -0.27652400732040405, -0.02726411260664463, 0.2081899642944336, -0.16099607944488525, -0.621202290058136, 0.1871456652879715]} +{"t": 12.4262, "q": [-0.140193909406662, 0.022179657593369484, 0.0195119921118021, 0.315045565366745, -0.17227387428283691, -0.014623875729739666, -0.09646693617105484, -0.017061274498701096, 0.04187645763158798, 0.31996282935142517, -0.24474982917308807, 0.016377968713641167, 0.0007499461644329131, -0.005158497020602226, 0.05129649117588997, -0.06113153323531151, 0.0974796861410141, 0.04583965986967087, 1.2285867929458618, -0.028138961642980576, -0.0018096179701387882, -0.0007310377550311387, 0.06846588104963303, -0.27370771765708923, -0.036851491779088974, 0.21156951785087585, -0.1577363759279251, -0.6201237440109253, 0.18346650898456573]} +{"t": 12.4429, "q": [-0.14031320810317993, 0.02215409092605114, 0.01964591071009636, 0.31498590111732483, -0.17227819561958313, -0.014630971476435661, -0.09665442258119583, -0.01720615103840828, 0.04194341599941254, 0.31997135281562805, -0.24474982917308807, 0.016377968713641167, 0.0005088920588605106, -0.005218185018748045, 0.051577091217041016, -0.06204233318567276, 0.09755159169435501, 0.04586362838745117, 1.2286707162857056, -0.02810300886631012, -0.001797633827663958, -0.0007070692954584956, 0.06798651069402695, -0.2723415195941925, -0.0427117794752121, 0.21377460658550262, -0.15723302960395813, -0.620147705078125, 0.18275943398475647]} +{"t": 12.4598, "q": [-0.14040695130825043, 0.022128524258732796, 0.0195119921118021, 0.31501147150993347, -0.1722823679447174, -0.0146097457036376, -0.09665442258119583, -0.017359549179673195, 0.04179610684514046, 0.31997135281562805, -0.24475835263729095, 0.016392402350902557, 0.0008169056382030249, -0.0052777728997170925, 0.05196065828204155, -0.06343250721693039, 0.09749167412519455, 0.04580370709300041, 1.228778600692749, -0.02816293016076088, -0.001749696908518672, -0.0007070692954584956, 0.07113835960626602, -0.271670401096344, -0.04308329150080681, 0.21638716757297516, -0.15723302960395813, -0.6204113364219666, 0.18226808309555054]} +{"t": 12.4765, "q": [-0.1404666155576706, 0.02208591252565384, 0.019565559923648834, 0.31501999497413635, -0.17227387428283691, -0.014623875729739666, -0.09673112630844116, -0.017359549179673195, 0.04183628037571907, 0.31992873549461365, -0.24474993348121643, 0.016392331570386887, 0.0008169056382030249, -0.005330064799636602, 0.05209612101316452, -0.06370814144611359, 0.09744373708963394, 0.04580370709300041, 1.2288624048233032, -0.028186898678541183, -0.001761681167408824, -0.0006711166352033615, 0.07396663725376129, -0.26873427629470825, -0.04392218589782715, 0.21793313324451447, -0.15714915096759796, -0.6220292448997498, 0.1811535507440567]} +{"t": 12.4932, "q": [-0.14039844274520874, 0.02208591252565384, 0.019686086103320122, 0.31502851843833923, -0.1722695529460907, -0.014616779051721096, -0.09678225964307785, -0.017368070781230927, 0.04194341599941254, 0.31992873549461365, -0.244745671749115, 0.016385115683078766, 0.000522283953614533, -0.005300083197653294, 0.052096232771873474, -0.06369615346193314, 0.09739580005407333, 0.045707836747169495, 1.2292219400405884, -0.028079040348529816, -0.0016658073291182518, -0.0006111955153755844, 0.07569236308336258, -0.26606178283691406, -0.04385028034448624, 0.21862822771072388, -0.15717311203479767, -0.6245938539505005, 0.1812014877796173]} +{"t": 12.51, "q": [-0.1403728723526001, 0.022068869322538376, 0.01965930312871933, 0.315045565366745, -0.17227812111377716, -0.014616815373301506, -0.09676521271467209, -0.017359549179673195, 0.041930023580789566, 0.31992873549461365, -0.244745671749115, 0.016385115683078766, 0.0005624596378766, -0.005270102061331272, 0.05209634453058243, -0.0637800469994545, 0.09738381206989288, 0.04574378952383995, 1.2293897867202759, -0.028091024607419968, -0.0016538230702280998, -0.0005872270558029413, 0.07720237970352173, -0.2631256580352783, -0.04376639053225517, 0.21895179152488708, -0.1571131944656372, -0.6268588900566101, 0.18124942481517792]} +{"t": 12.5267, "q": [-0.14038139581680298, 0.02214556746184826, 0.01963251829147339, 0.3151307702064514, -0.17227387428283691, -0.014623875729739666, -0.09676521271467209, -0.01733398251235485, 0.04184967279434204, 0.32003098726272583, -0.24475409090518951, 0.016385184600949287, 0.0008302975329570472, -0.0052625699900090694, 0.052119750529527664, -0.0638279840350151, 0.09737183153629303, 0.0457557737827301, 1.2294976711273193, -0.028091024607419968, -0.001701759989373386, -0.0005752427969127893, 0.07807722687721252, -0.25884726643562317, -0.04376639053225517, 0.2187720388174057, -0.15692144632339478, -0.6315447092056274, 0.1814291924238205]} +{"t": 12.5436, "q": [-0.1403728723526001, 0.02215409092605114, 0.019592342898249626, 0.31524157524108887, -0.17227819561958313, -0.014630971476435661, -0.09673964977264404, -0.017308415845036507, 0.04180949926376343, 0.32010769844055176, -0.24475400149822235, 0.016370821744203568, 0.001232054433785379, -0.005225114990025759, 0.052105862647295, -0.06383996456861496, 0.09733587503433228, 0.04585164412856102, 1.2296533584594727, -0.02810300886631012, -0.001689775730483234, -0.0005872270558029413, 0.07778960466384888, -0.25520408153533936, -0.04170510545372963, 0.2185203582048416, -0.15698136389255524, -0.636733889579773, 0.18151307106018066]} +{"t": 12.5603, "q": [-0.1403728723526001, 0.022120002657175064, 0.019458424299955368, 0.3153608739376068, -0.1722695529460907, -0.014616779051721096, -0.09666294604539871, -0.0172658059746027, 0.041742537170648575, 0.32020145654678345, -0.2447497397661209, 0.016363605856895447, 0.0020623519085347652, -0.00526262866333127, 0.05208234488964081, -0.06387592107057571, 0.0971561148762703, 0.04580370709300041, 1.229917049407959, -0.028126977384090424, -0.001797633827663958, -0.0005872270558029413, 0.0776577815413475, -0.2511294484138489, -0.039020638912916183, 0.21871210634708405, -0.1570892184972763, -0.640556812286377, 0.18178871273994446]} +{"t": 12.5771, "q": [-0.1404154747724533, 0.022120002657175064, 0.019244154915213585, 0.3155057430267334, -0.17227387428283691, -0.014623875729739666, -0.09659477323293686, -0.017248760908842087, 0.04154166206717491, 0.32029518485069275, -0.24474558234214783, 0.016370750963687897, 0.002839081920683384, -0.0052701313979923725, 0.05207763984799385, -0.06395980715751648, 0.09694039821624756, 0.04574378952383995, 1.229905128479004, -0.028150945901870728, -0.0018575548892840743, -0.0005872270558029413, 0.0773581713438034, -0.24616797268390656, -0.038061898201704025, 0.21903568506240845, -0.15714915096759796, -0.6438645124435425, 0.1817767322063446]} +{"t": 12.5939, "q": [-0.14044956862926483, 0.02210295759141445, 0.01915041171014309, 0.31560802459716797, -0.17227387428283691, -0.014623875729739666, -0.09654363989830017, -0.01727432757616043, 0.04147469997406006, 0.3203718960285187, -0.24474142491817474, 0.016377897933125496, 0.0034149333368986845, -0.0053301649168133736, 0.05203066021203995, -0.06388790160417557, 0.0968565046787262, 0.0457318052649498, 1.229977011680603, -0.028186898678541183, -0.0019054918084293604, -0.0005632585962302983, 0.07468569278717041, -0.24042752385139465, -0.03801396116614342, 0.21919147670269012, -0.15732890367507935, -0.6456142067909241, 0.18174077570438385]} +{"t": 12.6106, "q": [-0.14044956862926483, 0.022128524258732796, 0.019123626872897148, 0.31571027636528015, -0.17227394878864288, -0.014638032764196396, -0.09649250656366348, -0.01727432757616043, 0.04146130755543709, 0.3204485774040222, -0.24474982917308807, 0.016377968713641167, 0.0036827712319791317, -0.005405162461102009, 0.052002325654029846, -0.06387592107057571, 0.09677261859178543, 0.04571982100605965, 1.2300249338150024, -0.02816293016076088, -0.0019773971289396286, -0.0005632585962302983, 0.07109042257070541, -0.23481890559196472, -0.03856523707509041, 0.2192993313074112, -0.1573648601770401, -0.6464051604270935, 0.1811535507440567]} +{"t": 12.6274, "q": [-0.14047513902187347, 0.022128524258732796, 0.019070059061050415, 0.3158296048641205, -0.17227387428283691, -0.014623875729739666, -0.09644989669322968, -0.017308415845036507, 0.041421134024858475, 0.320465624332428, -0.24474142491817474, 0.016377897933125496, 0.004446109291166067, -0.005435190629214048, 0.051974162459373474, -0.06387592107057571, 0.09659285843372345, 0.04574378952383995, 1.2300609350204468, -0.02816293016076088, -0.002157160546630621, -0.0005273059359751642, 0.06741126626729965, -0.22982148826122284, -0.03894873335957527, 0.22058165073394775, -0.15719708800315857, -0.6470283269882202, 0.18039853870868683]} +{"t": 12.6443, "q": [-0.14051774144172668, 0.022120002657175064, 0.018895965069532394, 0.3158722221851349, -0.1722695529460907, -0.014616779051721096, -0.0963902398943901, -0.01744477078318596, 0.04131399840116501, 0.32047414779663086, -0.24474558234214783, 0.016370750963687897, 0.005196055397391319, -0.0054727038368582726, 0.051950644701719284, -0.06364822387695312, 0.096580870449543, 0.04580370709300041, 1.2301207780838013, -0.028210865333676338, -0.002229065867140889, -0.0005512743373401463, 0.0646548941731453, -0.22539931535720825, -0.03953595831990242, 0.22083331644535065, -0.15722104907035828, -0.6479750871658325, 0.17973941564559937]} +{"t": 12.6612, "q": [-0.14054331183433533, 0.02210295759141445, 0.018869180232286453, 0.3158722221851349, -0.17226532101631165, -0.01462384033948183, -0.09639876335859299, -0.017547035589814186, 0.04128721356391907, 0.32047414779663086, -0.24474993348121643, 0.016392331570386887, 0.005571028683334589, -0.0054727038368582726, 0.051950644701719284, -0.0631568655371666, 0.09664079546928406, 0.04580370709300041, 1.2302405834197998, -0.02816293016076088, -0.002265018643811345, -0.0005632585962302983, 0.062377892434597015, -0.22102506458759308, -0.04055461660027504, 0.22071348130702972, -0.15725700557231903, -0.6498445868492126, 0.17831328511238098]} +{"t": 12.678, "q": [-0.14054331183433533, 0.02210295759141445, 0.018895965069532394, 0.31580403447151184, -0.17226532101631165, -0.01462384033948183, -0.09638171643018723, -0.017555557191371918, 0.0412738211452961, 0.32044005393981934, -0.24474160373210907, 0.016406644135713577, 0.0055442447774112225, -0.005502697546035051, 0.05194118246436119, -0.06278535723686218, 0.0969044417142868, 0.045827675610780716, 1.2303963899612427, -0.028258802369236946, -0.002253034384921193, -0.0005512743373401463, 0.06114351749420166, -0.2178252786397934, -0.04098604992032051, 0.2206176072359085, -0.15719708800315857, -0.6537754535675049, 0.1764077991247177]} +{"t": 12.6947, "q": [-0.14056888222694397, 0.022068869322538376, 0.018909357488155365, 0.31579551100730896, -0.1722695529460907, -0.014616779051721096, -0.09635615348815918, -0.017615212127566338, 0.04132739081978798, 0.3204230070114136, -0.24472902715206146, 0.016413720324635506, 0.005329974461346865, -0.005877392366528511, 0.05198655277490616, -0.06270146369934082, 0.0971561148762703, 0.04591156542301178, 1.2305163145065308, -0.028246818110346794, -0.0022889869287610054, -0.0005392901366576552, 0.06083192676305771, -0.2151528000831604, -0.0409381128847599, 0.220545694231987, -0.15723302960395813, -0.6576822996139526, 0.1746101677417755]} +{"t": 12.7117, "q": [-0.14056888222694397, 0.022068869322538376, 0.01898970827460289, 0.315676212310791, -0.17227819561958313, -0.014630971476435661, -0.09636467695236206, -0.017615212127566338, 0.04136756435036659, 0.3203633725643158, -0.24472051858901978, 0.016399288550019264, 0.00512909609824419, -0.006566975265741348, 0.05197463557124138, -0.06272543221712112, 0.09740778058767319, 0.04591156542301178, 1.2305761575698853, -0.028270786628127098, -0.002277002902701497, -0.0005033374764025211, 0.06119145452976227, -0.21378658711910248, -0.04096208140254021, 0.22048577666282654, -0.15717311203479767, -0.6609180569648743, 0.17282451689243317]} +{"t": 12.7284, "q": [-0.1405518352985382, 0.022077390924096107, 0.019016491249203682, 0.31560802459716797, -0.1722695529460907, -0.014616779051721096, -0.09636467695236206, -0.01763225719332695, 0.04138095676898956, 0.320278137922287, -0.2447207123041153, 0.016428014263510704, 0.005048744846135378, -0.007871291600167751, 0.051921870559453964, -0.06280932575464249, 0.09753961116075516, 0.04592354968190193, 1.2306960821151733, -0.028186898678541183, -0.002253034384921193, -0.00041944789700210094, 0.061239391565322876, -0.214829221367836, -0.040950097143650055, 0.2205936312675476, -0.15705327689647675, -0.6647650003433228, 0.1708231419324875]} +{"t": 12.7452, "q": [-0.14057740569114685, 0.02208591252565384, 0.019016491249203682, 0.3155909776687622, -0.17228244245052338, -0.014623911119997501, -0.09638171643018723, -0.01762373559176922, 0.04136756435036659, 0.32024404406547546, -0.24471645057201385, 0.016420798376202583, 0.004861257970333099, -0.009610744193196297, 0.05190298706293106, -0.06302504241466522, 0.09762349724769592, 0.045947518199682236, 1.2308279275894165, -0.02822284959256649, -0.002205097349360585, -0.00023968450841493905, 0.06127534434199333, -0.21678264439105988, -0.03952397406101227, 0.22118085622787476, -0.1571131944656372, -0.6675453186035156, 0.169193297624588]} +{"t": 12.762, "q": [-0.14061148464679718, 0.022051824256777763, 0.019016491249203682, 0.31543758511543274, -0.1722695529460907, -0.014616779051721096, -0.09643284976482391, -0.01757260225713253, 0.04134078323841095, 0.3201247453689575, -0.24471645057201385, 0.016420798376202583, 0.004767514765262604, -0.011252429336309433, 0.05180316045880318, -0.06355234980583191, 0.09767143428325653, 0.04597148671746254, 1.230947732925415, -0.02822284959256649, -0.002193113323301077, -0.000215716048842296, 0.06181463226675987, -0.225662961602211, -0.03880492225289345, 0.22102506458759308, -0.15720906853675842, -0.6700979471206665, 0.16807876527309418]} +{"t": 12.7788, "q": [-0.14059443771839142, 0.02197512611746788, 0.01898970827460289, 0.3154631555080414, -0.17227387428283691, -0.014623875729739666, -0.09643284976482391, -0.017495902255177498, 0.0412738211452961, 0.32011622190475464, -0.24471645057201385, 0.016420798376202583, 0.004593420308083296, -0.012638731859624386, 0.051947154104709625, -0.06386393308639526, 0.09770739078521729, 0.045947518199682236, 1.230947732925415, -0.028198881074786186, -0.002169144805520773, -0.00017976337403524667, 0.06284527480602264, -0.23635289072990417, -0.039200399070978165, 0.22097712755203247, -0.15719708800315857, -0.6733097434043884, 0.1666526347398758]} +{"t": 12.7955, "q": [-0.14054331183433533, 0.02197512611746788, 0.01900310069322586, 0.31547167897224426, -0.1722695529460907, -0.014616779051721096, -0.09645842015743256, -0.017257284373044968, 0.0412738211452961, 0.32007360458374023, -0.24472902715206146, 0.016413720324635506, 0.004178271628916264, -0.013875084929168224, 0.05213824287056923, -0.0638040155172348, 0.09787517040967941, 0.04598347097635269, 1.2309956550598145, -0.028270786628127098, -0.002169144805520773, -0.00011984225420746952, 0.06513426452875137, -0.2473783791065216, -0.03947603702545166, 0.2208932340145111, -0.15730494260787964, -0.6774682402610779, 0.16388428211212158]} +{"t": 12.8123, "q": [-0.14053478837013245, 0.022017735987901688, 0.019029883667826653, 0.31547167897224426, -0.17226970195770264, -0.014645093120634556, -0.09650954604148865, -0.01689935475587845, 0.04135417565703392, 0.32006508111953735, -0.24472476541996002, 0.016406504437327385, 0.003106919815763831, -0.014922726899385452, 0.05255874991416931, -0.06373210996389389, 0.09797104448080063, 0.045995455235242844, 1.231115460395813, -0.028186898678541183, -0.002193113323301077, -9.58738019107841e-05, 0.06792658567428589, -0.25927871465682983, -0.03934421017765999, 0.2208452969789505, -0.15724502503871918, -0.6808478236198425, 0.16026504337787628]} +{"t": 12.829, "q": [-0.14054331183433533, 0.02209443598985672, 0.019070059061050415, 0.3155995011329651, -0.1722610741853714, -0.01463090069591999, -0.09661181271076202, -0.016575515270233154, 0.041447918862104416, 0.32011622190475464, -0.2447119802236557, 0.01638483628630638, 0.0024105412885546684, -0.015602847561240196, 0.05306185036897659, -0.06376805901527405, 0.09824667870998383, 0.045995455235242844, 1.2312833070755005, -0.028210865333676338, -0.0021092237439006567, -3.5952674807049334e-05, 0.06991597265005112, -0.26873427629470825, -0.038217693567276, 0.22071348130702972, -0.15728096663951874, -0.6833405494689941, 0.1560945361852646]} +{"t": 12.8458, "q": [-0.1405518352985382, 0.022350098937749863, 0.019016491249203682, 0.3155909776687622, -0.1722654551267624, -0.014652162790298462, -0.0967140793800354, -0.016268718987703323, 0.041394349187612534, 0.32011622190475464, -0.24470773339271545, 0.01637762039899826, 0.002464108867570758, -0.015804043039679527, 0.053373079746961594, -0.06427139788866043, 0.09815080463886261, 0.04595950245857239, 1.231403112411499, -0.028186898678541183, -0.002121207769960165, 3.5952674807049334e-05, 0.07237273454666138, -0.2754933834075928, -0.03560513257980347, 0.2202221304178238, -0.15707723796367645, -0.6854617595672607, 0.15151655673980713]} +{"t": 12.8625, "q": [-0.14052626490592957, 0.022477930411696434, 0.0188022218644619, 0.31566768884658813, -0.17223985493183136, -0.014666222035884857, -0.09668851643800735, -0.016149409115314484, 0.041247040033340454, 0.3202355206012726, -0.2447076290845871, 0.01636325567960739, 0.0028122980147600174, -0.01569141075015068, 0.053434986621141434, -0.06469085067510605, 0.09811485558748245, 0.04592354968190193, 1.2314270734786987, -0.02816293016076088, -0.002145176287740469, 0.00014381069922819734, 0.07486545294523239, -0.2813296914100647, -0.030787475407123566, 0.2188199758529663, -0.1571131944656372, -0.6881701946258545, 0.14784938097000122]} +{"t": 12.8793, "q": [-0.1404580920934677, 0.02258019521832466, 0.018587950617074966, 0.3157443702220917, -0.17223568260669708, -0.014687439426779747, -0.09658624976873398, -0.016055665910243988, 0.041086334735155106, 0.3203718960285187, -0.2447327971458435, 0.016349084675312042, 0.003347973804920912, -0.015451696701347828, 0.053409330546855927, -0.06487061083316803, 0.0980788990855217, 0.045947518199682236, 1.2313671112060547, -0.028186898678541183, -0.002133192028850317, 0.0002996056282427162, 0.07599197328090668, -0.2883884012699127, -0.020984377712011337, 0.21768146753311157, -0.1571131944656372, -0.6903513073921204, 0.14225275814533234]} +{"t": 12.896, "q": [-0.1404154747724533, 0.0226995050907135, 0.01845403201878071, 0.3158210813999176, -0.17222298681735992, -0.014708618633449078, -0.09658624976873398, -0.015910789370536804, 0.040939025580883026, 0.32034632563591003, -0.24473685026168823, 0.016327572986483574, 0.003669379511848092, -0.015182248316705227, 0.05331844091415405, -0.06495450437068939, 0.09806691855192184, 0.04598347097635269, 1.2313671112060547, -0.028198881074786186, -0.002157160546630621, 0.0004074636672157794, 0.07614776492118835, -0.2968732416629791, -0.010162622667849064, 0.21578796207904816, -0.15718509256839752, -0.6913699507713318, 0.13470269739627838]} +{"t": 12.9128, "q": [-0.14044104516506195, 0.022861426696181297, 0.018346896395087242, 0.31589776277542114, -0.17208872735500336, -0.014934034086763859, -0.0965777263045311, -0.015731824561953545, 0.0408586747944355, 0.32038041949272156, -0.24473685026168823, 0.016327572986483574, 0.004405933897942305, -0.015099653042852879, 0.053361278027296066, -0.06518220156431198, 0.0980788990855217, 0.045947518199682236, 1.231403112411499, -0.028246818110346794, -0.002193113323301077, 0.0005392901366576552, 0.07665110379457474, -0.3063647449016571, 0.0008868326549418271, 0.21323531866073608, -0.15857526659965515, -0.6916695833206177, 0.12764398753643036]} +{"t": 12.9295, "q": [-0.1405518352985382, 0.02293812483549118, 0.017730869352817535, 0.3159233331680298, -0.17166893184185028, -0.015610173344612122, -0.09655216336250305, -0.015621037222445011, 0.04037656635046005, 0.32033780217170715, -0.2447325885295868, 0.016320357099175453, 0.006012961268424988, -0.015324655920267105, 0.05331242084503174, -0.0652541071176529, 0.09804295003414154, 0.04598347097635269, 1.2312712669372559, -0.028210865333676338, -0.002241050126031041, 0.0005992112564854324, 0.07672300934791565, -0.315233051776886, 0.010881676338613033, 0.21186912059783936, -0.160660520195961, -0.6913819313049316, 0.12130432575941086]} +{"t": 12.9463, "q": [-0.14067967236042023, 0.022895514965057373, 0.0169675312936306, 0.3158722221851349, -0.17138375341892242, -0.016103319823741913, -0.09642432630062103, -0.015621037222445011, 0.039733752608299255, 0.32034632563591003, -0.24473676085472107, 0.016313210129737854, 0.00739232636988163, -0.015662116929888725, 0.053248267620801926, -0.0652780756354332, 0.09806691855192184, 0.045995455235242844, 1.231187343597412, -0.028210865333676338, -0.0023608924821019173, 0.0006591323763132095, 0.07648332417011261, -0.32529979944229126, 0.022134864702820778, 0.2115335613489151, -0.162733793258667, -0.6909505128860474, 0.11332283169031143]} +{"t": 12.963, "q": [-0.1406967043876648, 0.022904036566615105, 0.01663273386657238, 0.3158551752567291, -0.17124517261981964, -0.016321640461683273, -0.09638171643018723, -0.015595471486449242, 0.039439134299755096, 0.32033780217170715, -0.24473239481449127, 0.016291629523038864, 0.008169055916368961, -0.015895001590251923, 0.05309165269136429, -0.06491854786872864, 0.0980549305677414, 0.04597148671746254, 1.231115460395813, -0.028186898678541183, -0.00264851376414299, 0.0006711166352033615, 0.07637546956539154, -0.3347194194793701, 0.030979221686720848, 0.2105868011713028, -0.16509468853473663, -0.6895962953567505, 0.10663563758134842]} +{"t": 12.9797, "q": [-0.14071375131607056, 0.022904036566615105, 0.016418464481830597, 0.315906286239624, -0.1711864471435547, -0.016420254483819008, -0.09633058309555054, -0.015561383217573166, 0.03929182142019272, 0.3203633725643158, -0.24474507570266724, 0.016298916190862656, 0.008945786394178867, -0.015947511419653893, 0.053077101707458496, -0.06443917751312256, 0.09806691855192184, 0.046007439494132996, 1.2313072681427002, -0.028258802369236946, -0.0027803401462733746, 0.0007070692954584956, 0.07621967047452927, -0.34415099024772644, 0.03887682780623436, 0.209112748503685, -0.16746756434440613, -0.6872833371162415, 0.09946907311677933]} +{"t": 12.9967, "q": [-0.14077341556549072, 0.02287846989929676, 0.016271153464913368, 0.3158807158470154, -0.17108143866062164, -0.016582220792770386, -0.09631354361772537, -0.015569904819130898, 0.039224863052368164, 0.3203633725643158, -0.24474497139453888, 0.016284553334116936, 0.009119881317019463, -0.01595495454967022, 0.053091052919626236, -0.0638040155172348, 0.09804295003414154, 0.0460314080119133, 1.2312952280044556, -0.028270786628127098, -0.0029241510201245546, 0.0007070692954584956, 0.07618372142314911, -0.35313916206359863, 0.04428171366453171, 0.20807011425495148, -0.17247696220874786, -0.6849464178085327, 0.09068462997674942]} +{"t": 13.0134, "q": [-0.14080749452114105, 0.022827336564660072, 0.016190802678465843, 0.31589776277542114, -0.17101405560970306, -0.016666650772094727, -0.09631354361772537, -0.015561383217573166, 0.03914451226592064, 0.32038894295692444, -0.2447408139705658, 0.016291698440909386, 0.009079704992473125, -0.015984831377863884, 0.05311880633234978, -0.06363623589277267, 0.0980549305677414, 0.046055376529693604, 1.2313072681427002, -0.028246818110346794, -0.002960103563964367, 0.0007550062146037817, 0.07614776492118835, -0.3617558181285858, 0.04903944954276085, 0.20727916061878204, -0.17730660736560822, -0.6823458075523376, 0.08366187661886215]} +{"t": 13.0302, "q": [-0.14079897105693817, 0.022835860028862953, 0.01628454588353634, 0.31588923931121826, -0.17099308967590332, -0.016701871529221535, -0.09632205963134766, -0.015569904819130898, 0.039251647889614105, 0.3204144835472107, -0.24472367763519287, 0.01624845154583454, 0.008825259283185005, -0.016074899584054947, 0.05308050662279129, -0.06368417292833328, 0.0980549305677414, 0.04607934504747391, 1.231343150138855, -0.028258802369236946, -0.003020024858415127, 0.0007909588748589158, 0.0758122056722641, -0.3719903528690338, 0.055642757564783096, 0.20628446340560913, -0.18164490163326263, -0.6789183616638184, 0.0767349973320961]} +{"t": 13.0469, "q": [-0.1407819241285324, 0.022784726694226265, 0.016431856900453568, 0.3159233331680298, -0.17099308967590332, -0.016701871529221535, -0.09631354361772537, -0.015621037222445011, 0.0393453910946846, 0.32044005393981934, -0.2447109967470169, 0.01624116487801075, 0.008343150839209557, -0.016150113195180893, 0.05300494655966759, -0.06389988958835602, 0.09806691855192184, 0.046067360788583755, 1.2313312292099, -0.028210865333676338, -0.002996056340634823, 0.0008149273344315588, 0.07564442604780197, -0.38176947832107544, 0.06186256930232048, 0.2055174857378006, -0.1861989051103592, -0.675370991230011, 0.06937667727470398]} +{"t": 13.0637, "q": [-0.14071375131607056, 0.022742116823792458, 0.016552383080124855, 0.31593185663223267, -0.171001598238945, -0.016701925545930862, -0.09628797322511673, -0.015680693089962006, 0.03951948508620262, 0.32047414779663086, -0.2447109967470169, 0.01624116487801075, 0.007753907702863216, -0.01618029549717903, 0.052948541939258575, -0.06416354328393936, 0.0980788990855217, 0.046055376529693604, 1.2313072681427002, -0.02822284959256649, -0.002960103563964367, 0.0008388957940042019, 0.07546466588973999, -0.39195606112480164, 0.06628475338220596, 0.20481041073799133, -0.19029751420021057, -0.6717278361320496, 0.062126222997903824]} +{"t": 13.0804, "q": [-0.14068818092346191, 0.0226995050907135, 0.016766652464866638, 0.31588923931121826, -0.17100578546524048, -0.01669488288462162, -0.09630502015352249, -0.01575739122927189, 0.03964000940322876, 0.32047414779663086, -0.24471110105514526, 0.01625552773475647, 0.007084312848746777, -0.01612795889377594, 0.05291633680462837, -0.06428338587284088, 0.09804295003414154, 0.04604339227080345, 1.2313191890716553, -0.02816293016076088, -0.0029001825023442507, 0.0008388957940042019, 0.07535681128501892, -0.40141162276268005, 0.0694965198636055, 0.20285698771476746, -0.1974041610956192, -0.6663229465484619, 0.05442036688327789]} +{"t": 13.0972, "q": [-0.14067114889621735, 0.022716550156474113, 0.016940748319029808, 0.3159148097038269, -0.17101861536502838, -0.01670202426612377, -0.09631354361772537, -0.015782957896590233, 0.03980071470141411, 0.32048267126083374, -0.2446984201669693, 0.016248241066932678, 0.006254015490412712, -0.016195591539144516, 0.052864231169223785, -0.06423544883728027, 0.0980788990855217, 0.04604339227080345, 1.231403112411499, -0.028258802369236946, -0.0026964505668729544, 0.0008269115351140499, 0.0751890316605568, -0.4108072519302368, 0.07216900587081909, 0.20034028589725494, -0.2042471468448639, -0.660942018032074, 0.046366967260837555]} +{"t": 13.114, "q": [-0.14067967236042023, 0.022665416821837425, 0.01714162714779377, 0.3159148097038269, -0.17101430892944336, -0.0166949275881052, -0.0963476300239563, -0.01582556776702404, 0.03994802385568619, 0.3205082416534424, -0.24468989670276642, 0.016233809292316437, 0.0058388663455843925, -0.016443433240056038, 0.05271682143211365, -0.06421148031949997, 0.0980788990855217, 0.04601942375302315, 1.2314749956130981, -0.02822284959256649, -0.002600576961413026, 0.0008388957940042019, 0.07516506314277649, -0.4199272394180298, 0.07472164183855057, 0.19757193326950073, -0.21092236042022705, -0.6555850505828857, 0.04050667956471443]} +{"t": 13.1307, "q": [-0.14066262543201447, 0.02263985015451908, 0.017208585515618324, 0.3159148097038269, -0.17101837694644928, -0.016673747450113297, -0.09635615348815918, -0.01587670110166073, 0.03997480869293213, 0.32051676511764526, -0.24468980729579926, 0.016219444572925568, 0.005557636730372906, -0.01675129309296608, 0.05255010724067688, -0.06419949233531952, 0.09806691855192184, 0.0460314080119133, 1.2316068410873413, -0.028246818110346794, -0.002540655666962266, 0.000874848454259336, 0.07514109462499619, -0.4279566705226898, 0.0763874500989914, 0.19579827785491943, -0.21963489055633545, -0.6512707471847534, 0.03444266319274902]} +{"t": 13.1477, "q": [-0.14065410196781158, 0.022597240284085274, 0.01730232872068882, 0.3159659504890442, -0.1710226982831955, -0.016680844128131866, -0.09635615348815918, -0.015910789370536804, 0.040055159479379654, 0.32055938243865967, -0.2446814775466919, 0.016233738511800766, 0.005303190555423498, -0.017014190554618835, 0.052383843809366226, -0.06427139788866043, 0.09806691855192184, 0.046007439494132996, 1.231630802154541, -0.028210865333676338, -0.0024327978026121855, 0.000850879994686693, 0.07500926405191422, -0.4358183443546295, 0.07776563614606857, 0.19347333908081055, -0.22857512533664703, -0.6453864574432373, 0.02865428291261196]} +{"t": 13.1647, "q": [-0.14065410196781158, 0.022503497079014778, 0.017355896532535553, 0.31593185663223267, -0.17101837694644928, -0.016673747450113297, -0.09633910655975342, -0.016021577641367912, 0.040095336735248566, 0.32057642936706543, -0.2446814775466919, 0.016233738511800766, 0.005289798602461815, -0.017269769683480263, 0.05219397693872452, -0.06425941735506058, 0.09804295003414154, 0.045995455235242844, 1.2316428422927856, -0.028186898678541183, -0.0024687503464519978, 0.000874848454259336, 0.07681888341903687, -0.44322457909584045, 0.0791318416595459, 0.19017766416072845, -0.23847410082817078, -0.6386873126029968, 0.021751368418335915]} +{"t": 13.1814, "q": [-0.14065410196781158, 0.022546106949448586, 0.017422856763005257, 0.31598299741744995, -0.17101837694644928, -0.016673747450113297, -0.0963476300239563, -0.016047142446041107, 0.04018907994031906, 0.32067015767097473, -0.2446814775466919, 0.016233738511800766, 0.00483447453007102, -0.017284724861383438, 0.05220317840576172, -0.06403171271085739, 0.09811485558748245, 0.046007439494132996, 1.231690764427185, -0.028306739404797554, -0.0024567660875618458, 0.000898816913831979, 0.07828095555305481, -0.4503192603588104, 0.07998272031545639, 0.18623486161231995, -0.2500268816947937, -0.6316405534744263, 0.015004250220954418]} +{"t": 13.1981, "q": [-0.14062000811100006, 0.022494975477457047, 0.017596950754523277, 0.3160170912742615, -0.17102688550949097, -0.016673801466822624, -0.09637319296598434, -0.016081232577562332, 0.04033638909459114, 0.32070425152778625, -0.2446601837873459, 0.01619763858616352, 0.0042854067869484425, -0.017262177541851997, 0.05221747234463692, -0.06383996456861496, 0.09806691855192184, 0.0460314080119133, 1.2317745685577393, -0.028234833851456642, -0.0024567660875618458, 0.0009108011145144701, 0.07944343239068985, -0.45777344703674316, 0.08134891837835312, 0.1817048192024231, -0.26154372096061707, -0.6235032677650452, 0.008376973681151867]} +{"t": 13.2151, "q": [-0.14061148464679718, 0.022477930411696434, 0.017677301540970802, 0.3161022961139679, -0.17103540897369385, -0.016673848032951355, -0.09637319296598434, -0.016098275780677795, 0.040403347462415695, 0.3207724392414093, -0.24464334547519684, 0.01619749888777733, 0.003937217406928539, -0.017329854890704155, 0.05216522514820099, -0.06389988958835602, 0.09806691855192184, 0.04597148671746254, 1.2319064140319824, -0.028210865333676338, -0.0024208135437220335, 0.0009108011145144701, 0.08012653142213821, -0.4634299874305725, 0.08156463503837585, 0.17939186096191406, -0.27512186765670776, -0.6159891486167908, 0.0014141385909169912]} +{"t": 13.2318, "q": [-0.14057740569114685, 0.022486452013254166, 0.017757654190063477, 0.3162727355957031, -0.17102256417274475, -0.016666706651449203, -0.09635615348815918, -0.016115320846438408, 0.040403347462415695, 0.3209684193134308, -0.24463483691215515, 0.016183065250515938, 0.0038702578749507666, -0.017472729086875916, 0.0520559661090374, -0.06401973217725754, 0.0980788990855217, 0.046007439494132996, 1.2319782972335815, -0.028246818110346794, -0.0024208135437220335, 0.0009227853151969612, 0.08103732764720917, -0.4688708186149597, 0.08143281191587448, 0.1784331351518631, -0.28718996047973633, -0.6090742945671082, -0.005057343281805515]} +{"t": 13.2485, "q": [-0.14057740569114685, 0.02246088720858097, 0.017730869352817535, 0.3163750171661377, -0.17101825773715973, -0.016659609973430634, -0.09632205963134766, -0.016140887513756752, 0.04038995876908302, 0.321096271276474, -0.24463483691215515, 0.016183065250515938, 0.003803298342972994, -0.017465444281697273, 0.05200454220175743, -0.06409163773059845, 0.09806691855192184, 0.0460314080119133, 1.2320023775100708, -0.02822284959256649, -0.0024208135437220335, 0.0009227853151969612, 0.08259528130292892, -0.4748869240283966, 0.08143281191587448, 0.17722272872924805, -0.29853904247283936, -0.6000980734825134, -0.011325092986226082]} +{"t": 13.2654, "q": [-0.14056888222694397, 0.02245236374437809, 0.017730869352817535, 0.3164091110229492, -0.17102676630020142, -0.016659654676914215, -0.09631354361772537, -0.016140887513756752, 0.04045691713690758, 0.32124966382980347, -0.24463056027889252, 0.016175830736756325, 0.0038568659219890833, -0.017420507967472076, 0.05199567228555679, -0.06399576365947723, 0.0980788990855217, 0.045995455235242844, 1.2320382595062256, -0.028198881074786186, -0.0024327978026121855, 0.0009467537747696042, 0.08444084972143173, -0.47959670424461365, 0.08089352399110794, 0.17582057416439056, -0.3119613528251648, -0.5909661054611206, -0.018551580607891083]} +{"t": 13.2821, "q": [-0.1405518352985382, 0.022477930411696434, 0.017757654190063477, 0.316468745470047, -0.17101405560970306, -0.016666650772094727, -0.09633058309555054, -0.01612384244799614, 0.04045691713690758, 0.3213263750076294, -0.24462629854679108, 0.016168612986803055, 0.0035354604478925467, -0.017398038879036903, 0.051991235464811325, -0.06376805901527405, 0.09806691855192184, 0.046007439494132996, 1.2322300672531128, -0.02822284959256649, -0.0024208135437220335, 0.0009227853151969612, 0.08563927561044693, -0.48406681418418884, 0.08010256290435791, 0.17455023527145386, -0.3249882161617279, -0.5816064476966858, -0.0261735487729311]} +{"t": 13.2989, "q": [-0.1405518352985382, 0.022494975477457047, 0.017757654190063477, 0.31667327880859375, -0.1710226982831955, -0.016680844128131866, -0.0963476300239563, -0.01607270911335945, 0.04049709066748619, 0.32139453291893005, -0.24460075795650482, 0.016125313937664032, 0.003468500915914774, -0.017375681549310684, 0.05195870250463486, -0.06372012197971344, 0.09806691855192184, 0.046007439494132996, 1.2324217557907104, -0.028234833851456642, -0.0024208135437220335, 0.0009467537747696042, 0.08557935059070587, -0.4886927306652069, 0.07983890920877457, 0.17283649742603302, -0.3379911184310913, -0.5726901888847351, -0.0331004299223423]} +{"t": 13.3157, "q": [-0.1405518352985382, 0.022503497079014778, 0.017690693959593773, 0.3167329430580139, -0.17101405560970306, -0.016666650772094727, -0.09633058309555054, -0.01607270911335945, 0.04044352471828461, 0.3214286267757416, -0.24459213018417358, 0.01609649881720543, 0.0036158119328320026, -0.017353443428874016, 0.05189807340502739, -0.0638040155172348, 0.09804295003414154, 0.045995455235242844, 1.2324217557907104, -0.028186898678541183, -0.0024687503464519978, 0.0009827064350247383, 0.08560331910848618, -0.4931628406047821, 0.07974303513765335, 0.17175792157649994, -0.35118573904037476, -0.5651760697364807, -0.039559926837682724]} +{"t": 13.3325, "q": [-0.1405603587627411, 0.022494975477457047, 0.017677301540970802, 0.3168692886829376, -0.17101837694644928, -0.016673747450113297, -0.09633910655975342, -0.016089754179120064, 0.040430132299661636, 0.32148829102516174, -0.24458786845207214, 0.01608928292989731, 0.003776514669880271, -0.017263680696487427, 0.051852233707904816, -0.0638279840350151, 0.0980788990855217, 0.046007439494132996, 1.2324457168579102, -0.028186898678541183, -0.0024927188642323017, 0.0009827064350247383, 0.08581903576850891, -0.4975131154060364, 0.0797070786356926, 0.1711467206478119, -0.36376917362213135, -0.5548936128616333, -0.04607934504747391]} +{"t": 13.3492, "q": [-0.14054331183433533, 0.022537585347890854, 0.017717478796839714, 0.3168692886829376, -0.17100998759269714, -0.01668783277273178, -0.09633910655975342, -0.016047142446041107, 0.040430132299661636, 0.3215138614177704, -0.24459213018417358, 0.01609649881720543, 0.0037229470908641815, -0.017151331529021263, 0.05183005332946777, -0.06370814144611359, 0.098102867603302, 0.046007439494132996, 1.2325176000595093, -0.02822284959256649, -0.0024927188642323017, 0.0010066749528050423, 0.085747130215168, -0.5001975893974304, 0.07884421944618225, 0.17077520489692688, -0.37550172209739685, -0.5444194078445435, -0.05205947533249855]} +{"t": 13.366, "q": [-0.14053478837013245, 0.022529063746333122, 0.017704086378216743, 0.3168863356113434, -0.1710226982831955, -0.016680844128131866, -0.0963476300239563, -0.01606418751180172, 0.04047030955553055, 0.32153087854385376, -0.24457944929599762, 0.016089212149381638, 0.003696163184940815, -0.01708376780152321, 0.0518542043864727, -0.06366020441055298, 0.09804295003414154, 0.04601942375302315, 1.2326135635375977, -0.028186898678541183, -0.0025286716409027576, 0.0010066749528050423, 0.08559133857488632, -0.5010964274406433, 0.07805325835943222, 0.17033179104328156, -0.3857721984386444, -0.534364640712738, -0.05854294076561928]} +{"t": 13.3827, "q": [-0.14054331183433533, 0.022546106949448586, 0.017690693959593773, 0.3168778121471405, -0.1710098683834076, -0.01667369343340397, -0.09635615348815918, -0.016047142446041107, 0.04044352471828461, 0.32153940200805664, -0.24459213018417358, 0.01609649881720543, 0.003803298342972994, -0.01706133410334587, 0.0518404021859169, -0.06369615346193314, 0.0980788990855217, 0.04601942375302315, 1.2326135635375977, -0.028186898678541183, -0.0025166873820126057, 0.0010066749528050423, 0.08555538207292557, -0.5010125041007996, 0.0770106315612793, 0.17028385400772095, -0.3968815803527832, -0.5249689817428589, -0.06621284782886505]} +{"t": 13.3995, "q": [-0.14053478837013245, 0.02257167361676693, 0.017690693959593773, 0.3168692886829376, -0.1710226982831955, -0.016680844128131866, -0.09637319296598434, -0.016047142446041107, 0.040430132299661636, 0.32153087854385376, -0.24458786845207214, 0.01608928292989731, 0.003776514669880271, -0.017008764669299126, 0.0518643893301487, -0.06364822387695312, 0.0980788990855217, 0.0460314080119133, 1.232589602470398, -0.02816293016076088, -0.002576608443632722, 0.0010186590952798724, 0.08559133857488632, -0.5008087754249573, 0.07547665387392044, 0.17016401886940002, -0.4048750698566437, -0.5153336524963379, -0.0725165456533432]} +{"t": 13.4165, "q": [-0.14048366248607635, 0.022537585347890854, 0.017717478796839714, 0.3167755603790283, -0.17101837694644928, -0.016673747450113297, -0.0963902398943901, -0.016038620844483376, 0.04047030955553055, 0.32147976756095886, -0.2445836067199707, 0.01608206517994404, 0.0035086767747998238, -0.016933798789978027, 0.05186520889401436, -0.06346845626831055, 0.0981268361210823, 0.0460314080119133, 1.232601523399353, -0.028234833851456642, -0.00256462418474257, 0.0010306433541700244, 0.08541157096624374, -0.500832736492157, 0.07305583357810974, 0.16988837718963623, -0.410531610250473, -0.5061657428741455, -0.07933557033538818]} +{"t": 13.4332, "q": [-0.14047513902187347, 0.022597240284085274, 0.01778443716466427, 0.316656231880188, -0.17100973427295685, -0.016659537330269814, -0.09643284976482391, -0.0160045325756073, 0.0405372679233551, 0.3214286267757416, -0.24458371102809906, 0.016096429899334908, 0.002986392704769969, -0.01691129244863987, 0.051870137453079224, -0.06346845626831055, 0.098102867603302, 0.0460314080119133, 1.232601523399353, -0.028210865333676338, -0.0025286716409027576, 0.0010186590952798724, 0.08496815711259842, -0.5004492402076721, 0.06886135786771774, 0.16901353001594543, -0.41204163432121277, -0.4997301995754242, -0.08732905238866806]} +{"t": 13.45, "q": [-0.14038991928100586, 0.022622806951403618, 0.017864787951111794, 0.3165113627910614, -0.1710226982831955, -0.016680844128131866, -0.0964413732290268, -0.015970444306731224, 0.040564052760601044, 0.32136043906211853, -0.2445836067199707, 0.01608206517994404, 0.002423933008685708, -0.016866620630025864, 0.051795706152915955, -0.0634564757347107, 0.0980788990855217, 0.0460314080119133, 1.2326254844665527, -0.02822284959256649, -0.0025047031231224537, 0.0010306433541700244, 0.08380568772554398, -0.499778151512146, 0.0641036182641983, 0.16749152541160583, -0.41171807050704956, -0.494888573884964, -0.094507597386837]} +{"t": 13.4669, "q": [-0.14024503529071808, 0.0226995050907135, 0.01797192357480526, 0.31629830598831177, -0.17101430892944336, -0.0166949275881052, -0.09644989669322968, -0.01588522270321846, 0.04067118838429451, 0.32129228115081787, -0.2445836067199707, 0.01608206517994404, 0.002048959955573082, -0.01686715893447399, 0.05166459456086159, -0.0635044127702713, 0.09806691855192184, 0.046007439494132996, 1.2326494455337524, -0.02822284959256649, -0.0024208135437220335, 0.0010785802733153105, 0.08162456005811691, -0.4991070330142975, 0.05940580368041992, 0.16541826725006104, -0.4099443852901459, -0.4915449917316437, -0.10386727750301361]} +{"t": 13.4837, "q": [-0.14012572169303894, 0.022801771759986877, 0.018079059198498726, 0.31611934304237366, -0.1710226982831955, -0.016680844128131866, -0.09647545963525772, -0.01581704616546631, 0.040778324007987976, 0.32126671075820923, -0.24457944929599762, 0.016089212149381638, 0.0014329327968880534, -0.016829965636134148, 0.05159476771950722, -0.0635044127702713, 0.098102867603302, 0.046007439494132996, 1.2327333688735962, -0.028234833851456642, -0.0023968450259417295, 0.0010785802733153105, 0.07768175005912781, -0.49522414803504944, 0.05325789749622345, 0.16496285796165466, -0.4079430401325226, -0.4893878102302551, -0.11376625299453735]} +{"t": 13.5004, "q": [-0.1401001662015915, 0.022912558168172836, 0.01829332858324051, 0.3160085678100586, -0.17102256417274475, -0.016666706651449203, -0.09651806950569153, -0.01576591283082962, 0.04096581041812897, 0.3212326169013977, -0.2445836067199707, 0.01608206517994404, 0.0007499461644329131, -0.016597561538219452, 0.051601994782686234, -0.0635044127702713, 0.09806691855192184, 0.045995455235242844, 1.232829213142395, -0.028258802369236946, -0.0023009711876511574, 0.0010785802733153105, 0.07266035676002502, -0.49100568890571594, 0.046546731144189835, 0.16471119225025177, -0.40332910418510437, -0.4880216121673584, -0.12255068868398666]} +{"t": 13.5172, "q": [-0.1400916427373886, 0.022886991500854492, 0.018387073650956154, 0.31580403447151184, -0.17102256417274475, -0.016666706651449203, -0.09659477323293686, -0.015800001099705696, 0.04100598394870758, 0.3211474120616913, -0.24457944929599762, 0.016089212149381638, 0.0006294191116467118, -0.016327304765582085, 0.05169859901070595, -0.06383996456861496, 0.09804295003414154, 0.045995455235242844, 1.2328771352767944, -0.02816293016076088, -0.002277002902701497, 0.0010785802733153105, 0.06813032180070877, -0.4868471622467041, 0.03869706392288208, 0.16473515331745148, -0.39968588948249817, -0.48736247420310974, -0.12956145405769348]} +{"t": 13.534, "q": [-0.14017686247825623, 0.02281881496310234, 0.018400464206933975, 0.3157443702220917, -0.17103108763694763, -0.016666751354932785, -0.09662885963916779, -0.01582556776702404, 0.04099259153008461, 0.3211303651332855, -0.2445836067199707, 0.01608206517994404, 0.0007767299539409578, -0.016124412417411804, 0.05183637887239456, -0.06411560624837875, 0.09804295003414154, 0.0460314080119133, 1.2329010963439941, -0.02816293016076088, -0.002277002902701497, 0.0010905645322054625, 0.06441520899534225, -0.4829762578010559, 0.0327768549323082, 0.1651066690683365, -0.3973609507083893, -0.4867153465747833, -0.13455888628959656]} +{"t": 13.5507, "q": [-0.14024503529071808, 0.022793248295783997, 0.01832011342048645, 0.3156335949897766, -0.17102676630020142, -0.016659654676914215, -0.09662885963916779, -0.015859656035900116, 0.040912240743637085, 0.32097694277763367, -0.24457944929599762, 0.016089212149381638, 0.001312405802309513, -0.01616944931447506, 0.05181723088026047, -0.06418751180171967, 0.09804295003414154, 0.04597148671746254, 1.2329131364822388, -0.028186898678541183, -0.0023129554465413094, 0.0011504855938255787, 0.06150304526090622, -0.47779908776283264, 0.026557043194770813, 0.16519056260585785, -0.3957071304321289, -0.48614010214805603, -0.14073075354099274]} +{"t": 13.5675, "q": [-0.14029617607593536, 0.02275063842535019, 0.01830672100186348, 0.3154972493648529, -0.17103515565395355, -0.01664557121694088, -0.09661181271076202, -0.015902267768979073, 0.04081849753856659, 0.32089173793792725, -0.2445753812789917, 0.01611074060201645, 0.0017409464344382286, -0.016221892088651657, 0.051821380853652954, -0.0640556812286377, 0.09806691855192184, 0.04598347097635269, 1.2329490184783936, -0.028186898678541183, -0.0023608924821019173, 0.0011624698527157307, 0.05850698798894882, -0.4732450842857361, 0.02088850550353527, 0.16834241151809692, -0.3925672769546509, -0.4860442280769348, -0.1475018411874771]} +{"t": 13.5842, "q": [-0.1403302550315857, 0.022665416821837425, 0.01830672100186348, 0.3153608739376068, -0.17103947699069977, -0.01665266789495945, -0.09662885963916779, -0.015987489372491837, 0.040778324007987976, 0.3208235502243042, -0.24458371102809906, 0.016096429899334908, 0.0018480815924704075, -0.016161490231752396, 0.05194354057312012, -0.0637560784816742, 0.0980788990855217, 0.046007439494132996, 1.2329490184783936, -0.02817491441965103, -0.0024208135437220335, 0.0011864382540807128, 0.05712880194187164, -0.47162720561027527, 0.017616810277104378, 0.17197363078594208, -0.3913089334964752, -0.48625993728637695, -0.15293069183826447]} +{"t": 13.6009, "q": [-0.14033877849578857, 0.022614285349845886, 0.018346896395087242, 0.3150796592235565, -0.1710352748632431, -0.016659708693623543, -0.09669703245162964, -0.016089754179120064, 0.04081849753856659, 0.32061901688575745, -0.2445879727602005, 0.016103645786643028, 0.0017677302239462733, -0.016010547056794167, 0.05223492160439491, -0.06349242478609085, 0.0980788990855217, 0.0460314080119133, 1.2330210208892822, -0.028210865333676338, -0.0024327978026121855, 0.0011744541116058826, 0.05687713250517845, -0.4712916314601898, 0.015375761315226555, 0.1761081963777542, -0.3902902603149414, -0.48651161789894104, -0.1562143713235855]} +{"t": 13.6176, "q": [-0.14044104516506195, 0.022614285349845886, 0.018360288813710213, 0.3149518072605133, -0.17104798555374146, -0.016652721911668777, -0.0967140793800354, -0.016115320846438408, 0.04081849753856659, 0.3204571008682251, -0.24459213018417358, 0.01609649881720543, 0.0017811221769079566, -0.015919044613838196, 0.052665963768959045, -0.06367219239473343, 0.09806691855192184, 0.04601942375302315, 1.2330808639526367, -0.028186898678541183, -0.0024687503464519978, 0.0011984225129708648, 0.05687713250517845, -0.4716152250766754, 0.013338442891836166, 0.181357279419899, -0.38983485102653503, -0.4875182807445526, -0.1582397073507309]} +{"t": 13.6343, "q": [-0.14049218595027924, 0.022597240284085274, 0.01833350583910942, 0.3147643208503723, -0.17104798555374146, -0.016652721911668777, -0.09676521271467209, -0.016115320846438408, 0.04071136191487312, 0.32025256752967834, -0.2445879727602005, 0.016103645786643028, 0.0019686087034642696, -0.01602252572774887, 0.053057651966810226, -0.06399576365947723, 0.09811485558748245, 0.046007439494132996, 1.2329730987548828, -0.02817491441965103, -0.0025047031231224537, 0.0011864382540807128, 0.060088906437158585, -0.4721425175666809, 0.01284708920866251, 0.18580342829227448, -0.3896431028842926, -0.48898035287857056, -0.15933027863502502]} +{"t": 13.6513, "q": [-0.14054331183433533, 0.022614285349845886, 0.01833350583910942, 0.31461092829704285, -0.17104379832744598, -0.01665976271033287, -0.09676521271467209, -0.016115320846438408, 0.04071136191487312, 0.32015883922576904, -0.24458371102809906, 0.016096429899334908, 0.0018748653819784522, -0.016080491244792938, 0.0535711869597435, -0.06413957476615906, 0.0980788990855217, 0.04604339227080345, 1.2330089807510376, -0.02822284959256649, -0.0025286716409027576, 0.0011864382540807128, 0.0673753172159195, -0.4718908667564392, 0.01344630029052496, 0.18855980038642883, -0.3892955780029297, -0.4903465509414673, -0.16009727120399475]} +{"t": 13.668, "q": [-0.14053478837013245, 0.022656895220279694, 0.018387073650956154, 0.3143978714942932, -0.17103947699069977, -0.01665266789495945, -0.09689304232597351, -0.016047142446041107, 0.04081849753856659, 0.320090651512146, -0.24458371102809906, 0.016096429899334908, 0.0011383111122995615, -0.016078952699899673, 0.05393553897738457, -0.064079649746418, 0.09804295003414154, 0.0460314080119133, 1.2331048250198364, -0.02816293016076088, -0.0025166873820126057, 0.0012104067718610168, 0.07285210490226746, -0.47160324454307556, 0.014249243773519993, 0.1907409280538559, -0.3887203335762024, -0.49160489439964294, -0.16143949329853058]} +{"t": 13.6847, "q": [-0.1405518352985382, 0.02269098348915577, 0.018587950617074966, 0.3142700493335724, -0.17104379832744598, -0.01665976271033287, -0.09714870899915695, -0.016021577641367912, 0.04096581041812897, 0.3200821280479431, -0.24459223449230194, 0.01611086167395115, 0.0008302975329570472, -0.015995223075151443, 0.05424938350915909, -0.06423544883728027, 0.09806691855192184, 0.046007439494132996, 1.2332247495651245, -0.028234833851456642, -0.0024927188642323017, 0.0012104067718610168, 0.07654324918985367, -0.4708482325077057, 0.015447665937244892, 0.19418039917945862, -0.38730618357658386, -0.4916648268699646, -0.16396817564964294]} +{"t": 13.7014, "q": [-0.14056888222694397, 0.02269098348915577, 0.018587950617074966, 0.3142189085483551, -0.17103935778141022, -0.016638528555631638, -0.09724245220422745, -0.016021577641367912, 0.040912240743637085, 0.3200480341911316, -0.2445879727602005, 0.016103645786643028, 0.001084743533283472, -0.015769734978675842, 0.05445707216858864, -0.06466688215732574, 0.0980788990855217, 0.046007439494132996, 1.2331048250198364, -0.028246818110346794, -0.0025047031231224537, 0.0012104067718610168, 0.07856857776641846, -0.4699014723300934, 0.015591477043926716, 0.19791947305202484, -0.3828960061073303, -0.49218013882637024, -0.1667245477437973]} +{"t": 13.7182, "q": [-0.14049218595027924, 0.022673940286040306, 0.018614735454320908, 0.3141251802444458, -0.17104366421699524, -0.016645625233650208, -0.0972680151462555, -0.016021577641367912, 0.040939025580883026, 0.3199543058872223, -0.24459639191627502, 0.01610371470451355, 0.0012186624808236957, -0.015597322024405003, 0.05450080335140228, -0.06476275622844696, 0.09806691855192184, 0.046007439494132996, 1.233176827430725, -0.028270786628127098, -0.0025047031231224537, 0.0011744541116058826, 0.07852064073085785, -0.47078830003738403, 0.014980281703174114, 0.20204205811023712, -0.376604288816452, -0.49267148971557617, -0.17053551971912384]} +{"t": 13.735, "q": [-0.14047513902187347, 0.02275916002690792, 0.018561167642474174, 0.31410813331604004, -0.17104366421699524, -0.016645625233650208, -0.0972680151462555, -0.01593635603785515, 0.0408586747944355, 0.31993725895881653, -0.244609072804451, 0.016111019998788834, 0.0014865003759041429, -0.015469849109649658, 0.05454408377408981, -0.06484664231538773, 0.0980788990855217, 0.045995455235242844, 1.2331647872924805, -0.028186898678541183, -0.0025047031231224537, 0.0011984225129708648, 0.07829294353723526, -0.4712676703929901, 0.014884407632052898, 0.206068754196167, -0.36898231506347656, -0.4936062693595886, -0.17377126216888428]} +{"t": 13.7518, "q": [-0.14044956862926483, 0.022904036566615105, 0.018387073650956154, 0.3140825629234314, -0.17103959619998932, -0.016666805371642113, -0.09728506207466125, -0.015740348026156425, 0.04071136191487312, 0.3198946416378021, -0.244609072804451, 0.016111019998788834, 0.001673986902460456, -0.015357247553765774, 0.054615218192338943, -0.06483466178178787, 0.09804295003414154, 0.045995455235242844, 1.2331647872924805, -0.028270786628127098, -0.002540655666962266, 0.0011984225129708648, 0.07818508893251419, -0.47171109914779663, 0.013721938244998455, 0.20747090876102448, -0.35977843403816223, -0.49529603123664856, -0.17579659819602966]} +{"t": 13.7685, "q": [-0.1404154747724533, 0.023270487785339355, 0.018373681232333183, 0.3140484690666199, -0.17103540897369385, -0.016673848032951355, -0.09731914848089218, -0.015382418408989906, 0.04068458080291748, 0.31987759470939636, -0.24459628760814667, 0.01608935184776783, 0.001272230059839785, -0.015394818969070911, 0.05458217114210129, -0.0644032284617424, 0.0980788990855217, 0.046055376529693604, 1.233272671699524, -0.028234833851456642, -0.00256462418474257, 0.0012223910307511687, 0.07831691205501556, -0.4717710018157959, 0.011600730009377003, 0.20725518465042114, -0.34989145398139954, -0.49729740619659424, -0.1781335175037384]} +{"t": 13.7852, "q": [-0.14035582542419434, 0.023807380348443985, 0.018413856625556946, 0.31406551599502563, -0.17104379832744598, -0.01665976271033287, -0.0973532423377037, -0.014879613183438778, 0.04079171270132065, 0.319903165102005, -0.24459202587604523, 0.01608213596045971, 0.0007901218486949801, -0.015447398647665977, 0.05453963950276375, -0.06413957476615906, 0.09804295003414154, 0.04604339227080345, 1.233500361442566, -0.028186898678541183, -0.0025286716409027576, 0.0012343751732259989, 0.07814913243055344, -0.47028496861457825, 0.009299758821725845, 0.20717130601406097, -0.33892586827278137, -0.498807430267334, -0.18051838874816895]} +{"t": 13.8019, "q": [-0.1403217315673828, 0.024054521694779396, 0.018400464206933975, 0.3140740394592285, -0.17104379832744598, -0.01665976271033287, -0.09734471887350082, -0.014572817832231522, 0.04081849753856659, 0.31997135281562805, -0.2445877641439438, 0.01607491821050644, 0.000709770480170846, -0.015395097434520721, 0.05450749769806862, -0.06446314603090286, 0.09804295003414154, 0.0460314080119133, 1.2337400913238525, -0.028270786628127098, -0.0025047031231224537, 0.001270327833481133, 0.07808921486139297, -0.4662223160266876, 0.009563411585986614, 0.2072671800851822, -0.32754087448120117, -0.4998500645160675, -0.18229204416275024]} +{"t": 13.8187, "q": [-0.14034730195999146, 0.02414826489984989, 0.01813262701034546, 0.31414222717285156, -0.17102676630020142, -0.016659654676914215, -0.09731914848089218, -0.014453507959842682, 0.0406310111284256, 0.32003098726272583, -0.24459609389305115, 0.01606062427163124, 0.0012052706442773342, -0.015125511214137077, 0.05450074374675751, -0.06505037099123001, 0.09800699353218079, 0.045995455235242844, 1.2339317798614502, -0.028234833851456642, -0.0025286716409027576, 0.0012583436910063028, 0.077957384288311, -0.462531179189682, 0.010102702304720879, 0.20784242451190948, -0.31552067399024963, -0.5004972219467163, -0.18335863947868347]} +{"t": 13.8354, "q": [-0.14038991928100586, 0.024165309965610504, 0.01781122200191021, 0.314227432012558, -0.17101861536502838, -0.01670202426612377, -0.0973106250166893, -0.01435124222189188, 0.040430132299661636, 0.3200821280479431, -0.24461284279823303, 0.01604638248682022, 0.0017811221769079566, -0.014758513309061527, 0.054508794099092484, -0.06514624506235123, 0.09804295003414154, 0.04598347097635269, 1.234147548675537, -0.02822284959256649, -0.0024927188642323017, 0.001270327833481133, 0.07784952968358994, -0.4588640034198761, 0.010390323586761951, 0.20842964947223663, -0.30330875515937805, -0.5011922717094421, -0.184772789478302]} +{"t": 13.8521, "q": [-0.14039844274520874, 0.024233486503362656, 0.017690693959593773, 0.31437230110168457, -0.1710144281387329, -0.01670907437801361, -0.09724245220422745, -0.014283065684139729, 0.04032299667596817, 0.3201247453689575, -0.24462531507015228, 0.016024941578507423, 0.0023435817565768957, -0.014324120245873928, 0.05451279506087303, -0.06523013859987259, 0.0980788990855217, 0.04598347097635269, 1.2345789670944214, -0.02817491441965103, -0.0024567660875618458, 0.001282312092371285, 0.07709451764822006, -0.45445379614830017, 0.01245160959661007, 0.20850154757499695, -0.28850823640823364, -0.5016716718673706, -0.18600715696811676]} +{"t": 13.8688, "q": [-0.14043252170085907, 0.024216441437602043, 0.017610343173146248, 0.314483106136322, -0.17100998759269714, -0.01668783277273178, -0.097174271941185, -0.014283065684139729, 0.04028282314538956, 0.32020145654678345, -0.24462521076202393, 0.016010578721761703, 0.0027855143416672945, -0.013627499341964722, 0.0544767901301384, -0.06523013859987259, 0.09806691855192184, 0.04597148671746254, 1.2349624633789062, -0.02816293016076088, -0.0025166873820126057, 0.001306280493736267, 0.07636348158121109, -0.4502233862876892, 0.01583116129040718, 0.20836971700191498, -0.2733961343765259, -0.5020671486854553, -0.18695391714572906]} +{"t": 13.8856, "q": [-0.14038991928100586, 0.024173831567168236, 0.017583558335900307, 0.314670592546463, -0.1710144281387329, -0.01670907437801361, -0.09714870899915695, -0.014334198087453842, 0.04028282314538956, 0.3202696144580841, -0.2446335405111313, 0.015996284782886505, 0.0029730007518082857, -0.013043411076068878, 0.0543883740901947, -0.06509830802679062, 0.09803096204996109, 0.04597148671746254, 1.235381841659546, -0.028294755145907402, -0.002672482281923294, 0.001318264752626419, 0.07542871683835983, -0.4475628733634949, 0.020289292559027672, 0.20824988186359406, -0.2592068016529083, -0.501803457736969, -0.1875411421060562]} +{"t": 13.9023, "q": [-0.14038991928100586, 0.02413122169673443, 0.017583558335900307, 0.3147217333316803, -0.17101022601127625, -0.016716117039322853, -0.09712313860654831, -0.014436463825404644, 0.04029621556401253, 0.32029518485069275, -0.24462947249412537, 0.016017794609069824, 0.003173879347741604, -0.0124440873041749, 0.05437437817454338, -0.06490656733512878, 0.09795905649662018, 0.04598347097635269, 1.2358613014221191, -0.028246818110346794, -0.0028522456996142864, 0.001342233270406723, 0.0749373584985733, -0.4449862539768219, 0.024148214608430862, 0.20801019668579102, -0.24082300066947937, -0.5013840198516846, -0.18761304020881653]} +{"t": 13.9192, "q": [-0.14039844274520874, 0.02407156676054001, 0.017583558335900307, 0.31475579738616943, -0.17098085582256317, -0.016765428707003593, -0.0970805287361145, -0.01447055209428072, 0.040256038308143616, 0.3203718960285187, -0.24463362991809845, 0.016010647639632225, 0.0034015413839370012, -0.01214448269456625, 0.054348692297935486, -0.06489457935094833, 0.09799501299858093, 0.046007439494132996, 1.2363646030426025, -0.028258802369236946, -0.0029121667612344027, 0.001342233270406723, 0.0743381455540657, -0.44255346059799194, 0.02756371721625328, 0.20629645884037018, -0.22404509782791138, -0.5013360977172852, -0.18757709860801697]} +{"t": 13.936, "q": [-0.14038991928100586, 0.02407156676054001, 0.017556775361299515, 0.31493479013442993, -0.17096395790576935, -0.01677946001291275, -0.0970379188656807, -0.014462029561400414, 0.040256038308143616, 0.32052528858184814, -0.24462521076202393, 0.016010578721761703, 0.0035354604478925467, -0.012122021056711674, 0.05434419959783554, -0.06487061083316803, 0.09804295003414154, 0.04607934504747391, 1.2365922927856445, -0.028318723663687706, -0.002996056340634823, 0.001330249011516571, 0.07274425029754639, -0.43970122933387756, 0.031746212393045425, 0.20537367463111877, -0.20469056069850922, -0.5009046792984009, -0.18755312263965607]} +{"t": 13.9528, "q": [-0.14038991928100586, 0.024114176630973816, 0.017422856763005257, 0.31501999497413635, -0.17095987498760223, -0.016800647601485252, -0.09699530899524689, -0.014436463825404644, 0.04016229510307312, 0.32056790590286255, -0.2446293830871582, 0.016003431752324104, 0.003696163184940815, -0.012219703756272793, 0.0542546808719635, -0.06505037099123001, 0.09804295003414154, 0.04607934504747391, 1.2367600202560425, -0.028294755145907402, -0.002984072081744671, 0.0013542174128815532, 0.0709945484995842, -0.4351711869239807, 0.033903371542692184, 0.20483437180519104, -0.18633073568344116, -0.50023353099823, -0.18756510317325592]} +{"t": 13.9696, "q": [-0.14038991928100586, 0.024105655029416084, 0.017248760908842087, 0.3151733875274658, -0.1709389090538025, -0.01683586649596691, -0.09682486951351166, -0.014419419690966606, 0.04002837464213371, 0.32066163420677185, -0.24462521076202393, 0.016010578721761703, 0.0036827712319791317, -0.012279819697141647, 0.05419815331697464, -0.06521815061569214, 0.09804295003414154, 0.046055376529693604, 1.2369637489318848, -0.028258802369236946, -0.002972087822854519, 0.001330249011516571, 0.06858572363853455, -0.4304374158382416, 0.03586878627538681, 0.20442691445350647, -0.16613730788230896, -0.4990830719470978, -0.18758907914161682]} +{"t": 13.9866, "q": [-0.1403728723526001, 0.024063043296337128, 0.017221977934241295, 0.31528419256210327, -0.1709389090538025, -0.01683586649596691, -0.0968078225851059, -0.014427941292524338, 0.04004176706075668, 0.32074686884880066, -0.24462512135505676, 0.015996214002370834, 0.0037095551379024982, -0.012227684259414673, 0.05410046502947807, -0.06513426452875137, 0.098102867603302, 0.046067360788583755, 1.2370357513427734, -0.028318723663687706, -0.002960103563964367, 0.001342233270406723, 0.06624879688024521, -0.4268900752067566, 0.03784618154168129, 0.20415127277374268, -0.1483047902584076, -0.49692589044570923, -0.18761304020881653]} +{"t": 14.0033, "q": [-0.14036434888839722, 0.024063043296337128, 0.017262153327465057, 0.31529271602630615, -0.1709389090538025, -0.01683586649596691, -0.09681634604930878, -0.014453507959842682, 0.04012211784720421, 0.3208235502243042, -0.2446168065071106, 0.016010507941246033, 0.003696163184940815, -0.012130657210946083, 0.053984444588422775, -0.06509830802679062, 0.09804295003414154, 0.04604339227080345, 1.2370716333389282, -0.028246818110346794, -0.002972087822854519, 0.001330249011516571, 0.06322877109050751, -0.42370226979255676, 0.039380162954330444, 0.20363596081733704, -0.12752413749694824, -0.4932107925415039, -0.18761304020881653]} +{"t": 14.0201, "q": [-0.14033877849578857, 0.024054521694779396, 0.017248760908842087, 0.31534382700920105, -0.17092619836330414, -0.016842864453792572, -0.09679077565670013, -0.014453507959842682, 0.040108729153871536, 0.3209002614021301, -0.2446168065071106, 0.016010507941246033, 0.0036292036529630423, -0.0120862340554595, 0.053816623985767365, -0.06511029601097107, 0.09804295003414154, 0.0460314080119133, 1.2371914386749268, -0.028294755145907402, -0.002972087822854519, 0.0013542174128815532, 0.0604843832552433, -0.4209459125995636, 0.039931438863277435, 0.2033243626356125, -0.10703111439943314, -0.48969942331314087, -0.18760105967521667]} +{"t": 14.0368, "q": [-0.1403217315673828, 0.024063043296337128, 0.017235370352864265, 0.31543758511543274, -0.17091768980026245, -0.016842810437083244, -0.09676521271467209, -0.014444985426962376, 0.040081944316625595, 0.3209514021873474, -0.24462521076202393, 0.016010578721761703, 0.00354885240085423, -0.01208662148565054, 0.05369516834616661, -0.06503839045763016, 0.09804295003414154, 0.04607934504747391, 1.237227439880371, -0.028270786628127098, -0.002996056340634823, 0.001330249011516571, 0.05783586949110031, -0.41822549700737, 0.040590569376945496, 0.20285698771476746, -0.08571118116378784, -0.4862000048160553, -0.18757709860801697]} +{"t": 14.0536, "q": [-0.1403302550315857, 0.024054521694779396, 0.017235370352864265, 0.3154631555080414, -0.17092619836330414, -0.016842864453792572, -0.09674816578626633, -0.014444985426962376, 0.040095336735248566, 0.32098546624183655, -0.24462096393108368, 0.016003360971808434, 0.0035354604478925467, -0.012041875161230564, 0.05363011732697487, -0.06511029601097107, 0.09803096204996109, 0.04604339227080345, 1.237227439880371, -0.028246818110346794, -0.002984072081744671, 0.0013542174128815532, 0.05555886775255203, -0.4154092073440552, 0.041441451758146286, 0.2018503099679947, -0.06606903672218323, -0.48266467452049255, -0.1874932050704956]} +{"t": 14.0703, "q": [-0.1403217315673828, 0.024063043296337128, 0.01715501770377159, 0.31552278995513916, -0.17089682817459106, -0.016892166808247566, -0.09673964977264404, -0.014436463825404644, 0.040068551898002625, 0.32107922434806824, -0.24460828304290771, 0.01599607616662979, 0.003589028026908636, -0.012019617483019829, 0.053560223430395126, -0.06519418209791183, 0.09804295003414154, 0.04607934504747391, 1.2372993230819702, -0.028258802369236946, -0.002972087822854519, 0.0013542174128815532, 0.05362940952181816, -0.4127606749534607, 0.04280765354633331, 0.20029236376285553, -0.044329650700092316, -0.4784581959247589, -0.18748122453689575]} +{"t": 14.087, "q": [-0.1403217315673828, 0.02408008836209774, 0.01711484231054783, 0.3155568838119507, -0.17088423669338226, -0.01691330224275589, -0.09673112630844116, -0.014419419690966606, 0.04004176706075668, 0.3210877478122711, -0.24461233615875244, 0.01597454771399498, 0.0036292036529630423, -0.011929946951568127, 0.053486183285713196, -0.06523013859987259, 0.0980788990855217, 0.046055376529693604, 1.2372514009475708, -0.028270786628127098, -0.002960103563964367, 0.0013542174128815532, 0.05179582163691521, -0.41047170758247375, 0.044018059968948364, 0.1985786110162735, -0.024591630324721336, -0.4728735685348511, -0.18757709860801697]} +{"t": 14.1038, "q": [-0.1403217315673828, 0.024063043296337128, 0.017101449891924858, 0.3155824542045593, -0.17085474729537964, -0.016948476433753967, -0.09673112630844116, -0.014419419690966606, 0.040055159479379654, 0.321096271276474, -0.24460828304290771, 0.01599607616662979, 0.003669379511848092, -0.01186280231922865, 0.05339795723557472, -0.06521815061569214, 0.09801898151636124, 0.04604339227080345, 1.2373353242874146, -0.028246818110346794, -0.002948119305074215, 0.0013781859306618571, 0.04951881989836693, -0.40869802236557007, 0.0460314080119133, 0.1965532749891281, -0.0015579492319375277, -0.4659586548805237, -0.18755312263965607]} +{"t": 14.1205, "q": [-0.1403302550315857, 0.02407156676054001, 0.017074666917324066, 0.31561654806137085, -0.17084190249443054, -0.016941307112574577, -0.09669703245162964, -0.014444985426962376, 0.04004176706075668, 0.32116442918777466, -0.24460817873477936, 0.01598169468343258, 0.0037631227169185877, -0.011832951568067074, 0.053360819816589355, -0.06514624506235123, 0.09803096204996109, 0.0460314080119133, 1.23732328414917, -0.028234833851456642, -0.002948119305074215, 0.0013901700731366873, 0.04682236909866333, -0.4070921540260315, 0.048356350511312485, 0.19531890749931335, 0.021631525829434395, -0.45967891812324524, -0.18755312263965607]} +{"t": 14.1372, "q": [-0.1403217315673828, 0.024037478491663933, 0.017088059335947037, 0.3156506419181824, -0.17085474729537964, -0.016948476433753967, -0.09670555591583252, -0.014444985426962376, 0.040055159479379654, 0.32117295265197754, -0.2446124404668808, 0.015988929197192192, 0.0038702578749507666, -0.011713206768035889, 0.053296152502298355, -0.06515823304653168, 0.09797104448080063, 0.0460314080119133, 1.2373472452163696, -0.028258802369236946, -0.002960103563964367, 0.0013901700731366873, 0.044976796954870224, -0.40567800402641296, 0.05053747817873955, 0.19412048161029816, 0.04370646923780441, -0.4549930989742279, -0.18758907914161682]} +{"t": 14.154, "q": [-0.1403302550315857, 0.024046000093221664, 0.017088059335947037, 0.31560802459716797, -0.17085067927837372, -0.016969656571745872, -0.09670555591583252, -0.014444985426962376, 0.04004176706075668, 0.3211388885974884, -0.2446124404668808, 0.015988929197192192, 0.0039506093598902225, -0.011571009643375874, 0.05321758985519409, -0.06509830802679062, 0.09795905649662018, 0.0460314080119133, 1.23732328414917, -0.028246818110346794, -0.002972087822854519, 0.0013901700731366873, 0.0436345636844635, -0.40408411622047424, 0.0520714595913887, 0.19144800305366516, 0.06564958393573761, -0.44866541028022766, -0.18757709860801697]} +{"t": 14.1709, "q": [-0.14031320810317993, 0.024054521694779396, 0.017074666917324066, 0.31556540727615356, -0.1708548665046692, -0.01696261391043663, -0.09670555591583252, -0.014453507959842682, 0.04004176706075668, 0.3211559057235718, -0.24461254477500916, 0.016003292053937912, 0.003977392800152302, -0.011421353556215763, 0.0531250424683094, -0.06505037099123001, 0.09803096204996109, 0.0460314080119133, 1.2373592853546143, -0.028246818110346794, -0.002984072081744671, 0.0013781859306618571, 0.042520031332969666, -0.4024422764778137, 0.05338972434401512, 0.18814034759998322, 0.08525577932596207, -0.4422179162502289, -0.18758907914161682]} +{"t": 14.1879, "q": [-0.14025355875492096, 0.024097133427858353, 0.017034491524100304, 0.31553131341934204, -0.1708463579416275, -0.016962559893727303, -0.09670555591583252, -0.014419419690966606, 0.0399882011115551, 0.3211474120616913, -0.24460400640964508, 0.015988841652870178, 0.003923825453966856, -0.011413992382586002, 0.05307362973690033, -0.06496648490428925, 0.09806691855192184, 0.04601942375302315, 1.2373712062835693, -0.02828277088701725, -0.002996056340634823, 0.0013901700731366873, 0.04114184528589249, -0.40088433027267456, 0.054983627051115036, 0.18459302186965942, 0.10640793293714523, -0.4344281554222107, -0.1874932050704956]} +{"t": 14.2049, "q": [-0.14029617607593536, 0.024088609963655472, 0.017021099105477333, 0.3154972493648529, -0.17082525789737701, -0.0169836413115263, -0.09669703245162964, -0.014376808889210224, 0.03996141627430916, 0.321096271276474, -0.24460817873477936, 0.01598169468343258, 0.00388364982791245, -0.01148158311843872, 0.05302170291543007, -0.06490656733512878, 0.0980788990855217, 0.0460314080119133, 1.2373113632202148, -0.028306739404797554, -0.002996056340634823, 0.0013781859306618571, 0.03917643055319786, -0.39924249053001404, 0.05675728991627693, 0.18281935155391693, 0.12389291822910309, -0.4259193539619446, -0.1875411421060562]} +{"t": 14.2216, "q": [-0.14031320810317993, 0.024114176630973816, 0.01698092371225357, 0.3155142664909363, -0.17082107067108154, -0.01699068211019039, -0.09669703245162964, -0.014342720620334148, 0.03996141627430916, 0.3210877478122711, -0.24461659789085388, 0.015981782227754593, 0.003910433501005173, -0.011534104123711586, 0.052997950464487076, -0.06488259881734848, 0.09804295003414154, 0.046067360788583755, 1.2373712062835693, -0.028246818110346794, -0.002984072081744671, 0.0013781859306618571, 0.036695696413517, -0.3980320692062378, 0.05855492502450943, 0.18250776827335358, 0.13685984909534454, -0.41957971453666687, -0.18758907914161682]} +{"t": 14.2383, "q": [-0.14029617607593536, 0.02408008836209774, 0.017021099105477333, 0.31548872590065, -0.1708337664604187, -0.016983695328235626, -0.0967140793800354, -0.014368286356329918, 0.04000159353017807, 0.3210877478122711, -0.24461659789085388, 0.015981782227754593, 0.003468500915914774, -0.011504101566970348, 0.05300751328468323, -0.06487061083316803, 0.09804295003414154, 0.046055376529693604, 1.237443208694458, -0.028258802369236946, -0.002972087822854519, 0.0014141385909169912, 0.034382741898298264, -0.3973369896411896, 0.060028985142707825, 0.18243585526943207, 0.1489519327878952, -0.4147500693798065, -0.18782876431941986]} +{"t": 14.2553, "q": [-0.14028765261173248, 0.02408008836209774, 0.017235370352864265, 0.31548020243644714, -0.17083808779716492, -0.016990790143609047, -0.09672260284423828, -0.014393853023648262, 0.04013551026582718, 0.32107922434806824, -0.24460828304290771, 0.01599607616662979, 0.0028122980147600174, -0.01146651990711689, 0.053049877285957336, -0.06493053585290909, 0.0980788990855217, 0.04604339227080345, 1.2374192476272583, -0.02828277088701725, -0.0029241510201245546, 0.0014141385909169912, 0.03281280770897865, -0.397157222032547, 0.06107161194086075, 0.1823759377002716, 0.15575897693634033, -0.4105435907840729, -0.18810440599918365]} +{"t": 14.272, "q": [-0.14024503529071808, 0.024046000093221664, 0.017422856763005257, 0.3154631555080414, -0.1708337664604187, -0.016983695328235626, -0.09677373617887497, -0.014444985426962376, 0.04033638909459114, 0.32107922434806824, -0.24460817873477936, 0.01598169468343258, 0.0021159194875508547, -0.01148153468966484, 0.05304041877388954, -0.06488259881734848, 0.0980788990855217, 0.046055376529693604, 1.2374911308288574, -0.028258802369236946, -0.0029121667612344027, 0.0014261228498071432, 0.03139866888523102, -0.39751675724983215, 0.06079597398638725, 0.18196848034858704, 0.15899471938610077, -0.40590572357177734, -0.1880684494972229]} +{"t": 14.2888, "q": [-0.14017686247825623, 0.024046000093221664, 0.01779782958328724, 0.31548020243644714, -0.17085067927837372, -0.016969656571745872, -0.09679929912090302, -0.014453507959842682, 0.040590837597846985, 0.3210877478122711, -0.2445913404226303, 0.015981554985046387, 0.0012588382232934237, -0.011609174311161041, 0.052950650453567505, -0.06485863029956818, 0.09804295003414154, 0.0460314080119133, 1.2376348972320557, -0.028210865333676338, -0.0028282771818339825, 0.0014381069922819734, 0.029397305101156235, -0.39781635999679565, 0.06052033603191376, 0.1809018850326538, 0.15897074341773987, -0.4023224115371704, -0.18805646896362305]} +{"t": 14.3057, "q": [-0.14007459580898285, 0.02401191182434559, 0.018186194822192192, 0.3154631555080414, -0.17085067927837372, -0.016969656571745872, -0.09681634604930878, -0.014564295299351215, 0.04087206721305847, 0.32111331820487976, -0.24459142982959747, 0.015995917841792107, 0.00033479739795438945, -0.011946971528232098, 0.05274715647101402, -0.06483466178178787, 0.09806691855192184, 0.046055376529693604, 1.2377667427062988, -0.02822284959256649, -0.0027683561202138662, 0.0014381069922819734, 0.027455860748887062, -0.4018310606479645, 0.059010326862335205, 0.17861288785934448, 0.15677763521671295, -0.3999015986919403, -0.1875411421060562]} +{"t": 14.3225, "q": [-0.14003197848796844, 0.023977823555469513, 0.01829332858324051, 0.31552278995513916, -0.17085906863212585, -0.016955571249127388, -0.0968078225851059, -0.014581339433789253, 0.04104616120457649, 0.3211388885974884, -0.2445829212665558, 0.015981484204530716, -0.0002946217136923224, -0.01244994718581438, 0.0524304136633873, -0.06487061083316803, 0.09804295003414154, 0.0460314080119133, 1.2378746271133423, -0.028234833851456642, -0.00264851376414299, 0.0014381069922819734, 0.025969816371798515, -0.407391756772995, 0.05831523984670639, 0.17441841959953308, 0.15302656590938568, -0.3986073136329651, -0.1865943819284439]} +{"t": 14.3392, "q": [-0.13998085260391235, 0.023969300091266632, 0.018427249044179916, 0.3155909776687622, -0.17086338996887207, -0.016962667927145958, -0.09679929912090302, -0.014632471837103367, 0.04119347035884857, 0.32117295265197754, -0.24456161260604858, 0.01594538427889347, -0.0006562029011547565, -0.013163414783775806, 0.051980309188365936, -0.06494251638650894, 0.09804295003414154, 0.046007439494132996, 1.2379344701766968, -0.028270786628127098, -0.002588592702522874, 0.0014381069922819734, 0.024783378466963768, -0.41413888335227966, 0.057260628789663315, 0.1690494865179062, 0.14486531913280487, -0.3977085053920746, -0.18525215983390808]} +{"t": 14.3559, "q": [-0.13994675874710083, 0.023969300091266632, 0.018520992249250412, 0.3156847357749939, -0.17085056006908417, -0.01695551723241806, -0.09678225964307785, -0.014623950235545635, 0.04122025519609451, 0.3212240934371948, -0.24453596770763397, 0.01588772051036358, -0.0008704732172191143, -0.013952150009572506, 0.05147279426455498, -0.06494251638650894, 0.09813882410526276, 0.046007439494132996, 1.2379823923110962, -0.028318723663687706, -0.0025286716409027576, 0.0014500912511721253, 0.02407630905508995, -0.42083805799484253, 0.05693705379962921, 0.16286562383174896, 0.1348225325345993, -0.39691755175590515, -0.18259166181087494]} +{"t": 14.3727, "q": [-0.1399552822113037, 0.023969300091266632, 0.018520992249250412, 0.3158807158470154, -0.17086338996887207, -0.016962667927145958, -0.09676521271467209, -0.014632471837103367, 0.0412738211452961, 0.32129228115081787, -0.24450209736824036, 0.015858694911003113, -0.0008436894277110696, -0.015221748501062393, 0.05068941414356232, -0.06490656733512878, 0.09817477315664291, 0.046007439494132996, 1.2380423545837402, -0.028186898678541183, -0.0024807346053421497, 0.0014381069922819734, 0.02335725538432598, -0.42750129103660583, 0.057512298226356506, 0.15742477774620056, 0.11866779625415802, -0.3955633342266083, -0.1780855804681778]} +{"t": 14.3894, "q": [-0.14002346992492676, 0.023994866758584976, 0.018413856625556946, 0.3161022961139679, -0.1708463579416275, -0.016962559893727303, -0.09673964977264404, -0.014640994369983673, 0.04120686277747154, 0.32139453291893005, -0.2444382905960083, 0.015764791518449783, -0.00037497308221645653, -0.016108520328998566, 0.05015603452920914, -0.06491854786872864, 0.09821072220802307, 0.046007439494132996, 1.2380902767181396, -0.028246818110346794, -0.0025047031231224537, 0.0014141385909169912, 0.023393208160996437, -0.43448808789253235, 0.05897437408566475, 0.1525951325893402, 0.10193782299757004, -0.3934421241283417, -0.17292039096355438]} +{"t": 14.4061, "q": [-0.1400575488805771, 0.023986345157027245, 0.018400464206933975, 0.3163750171661377, -0.17085067927837372, -0.016969656571745872, -0.09673112630844116, -0.014640994369983673, 0.04116668552160263, 0.3214541971683502, -0.24439559876918793, 0.015678225085139275, 0.00018748654110822827, -0.017032910138368607, 0.04958974942564964, -0.06484664231538773, 0.09825865924358368, 0.046055376529693604, 1.2380902767181396, -0.02822284959256649, -0.0025286716409027576, 0.0014500912511721253, 0.02371678128838539, -0.44013264775276184, 0.0604843832552433, 0.14842462539672852, 0.08475244045257568, -0.3904340863227844, -0.169193297624588]} +{"t": 14.4228, "q": [-0.14010868966579437, 0.023994866758584976, 0.018360288813710213, 0.31666475534439087, -0.17085056006908417, -0.01695551723241806, -0.09667999297380447, -0.014632471837103367, 0.04116668552160263, 0.3215053379535675, -0.24428939819335938, 0.015540863387286663, 0.0007365542696788907, -0.018115811049938202, 0.04889358952641487, -0.06464291363954544, 0.09829461574554443, 0.0460314080119133, 1.238126277923584, -0.028246818110346794, -0.002600576961413026, 0.0014980281703174114, 0.024220118299126625, -0.44377586245536804, 0.062138207256793976, 0.14329537749290466, 0.06545783579349518, -0.3855445086956024, -0.16516658663749695]} +{"t": 14.4396, "q": [-0.14008311927318573, 0.023943735286593437, 0.018413856625556946, 0.3168351948261261, -0.17084647715091705, -0.016976697370409966, -0.09659477323293686, -0.014649515971541405, 0.04116668552160263, 0.32158201932907104, -0.24420015513896942, 0.015418005175888538, 0.001084743533283472, -0.018657254055142403, 0.04854996129870415, -0.06423544883728027, 0.09839048981666565, 0.046055376529693604, 1.238126277923584, -0.028258802369236946, -0.002624545246362686, 0.0016178704099729657, 0.02455567754805088, -0.44594499468803406, 0.0628572627902031, 0.13922074437141418, 0.047685232013463974, -0.3807867765426636, -0.1618110090494156]} +{"t": 14.4563, "q": [-0.14007459580898285, 0.023918168619275093, 0.01845403201878071, 0.31680965423583984, -0.1708591878414154, -0.0169697105884552, -0.09645842015743256, -0.014700649306178093, 0.0412738211452961, 0.3216928243637085, -0.24406859278678894, 0.015266052447259426, 0.0011383111122995615, -0.019228816032409668, 0.048177868127822876, -0.06387592107057571, 0.09860620647668839, 0.04609132930636406, 1.2381621599197388, -0.02822284959256649, -0.002624545246362686, 0.001749696908518672, 0.024651551619172096, -0.4479583501815796, 0.06332464516162872, 0.13609285652637482, 0.027959197759628296, -0.37782666087150574, -0.15895876288414001]} +{"t": 14.473, "q": [-0.14015981554985046, 0.02384999208152294, 0.018561167642474174, 0.31672441959381104, -0.17085042595863342, -0.016941379755735397, -0.09627092629671097, -0.014811436645686626, 0.04134078323841095, 0.3217439353466034, -0.24393288791179657, 0.015121246688067913, 0.001004392164759338, -0.019710464403033257, 0.04784342274069786, -0.06379202753305435, 0.09890580922365189, 0.04609132930636406, 1.238186240196228, -0.02822284959256649, -0.002600576961413026, 0.0018455706303939223, 0.024699488654732704, -0.4502473473548889, 0.06342051923274994, 0.13195830583572388, 0.009311743080615997, -0.3754657804965973, -0.15702930092811584]} +{"t": 14.4897, "q": [-0.14016833901405334, 0.023807380348443985, 0.0188022218644619, 0.31666475534439087, -0.1708546280860901, -0.01693432778120041, -0.09616866707801819, -0.014879613183438778, 0.04152826964855194, 0.3217950761318207, -0.2437083125114441, 0.014911073260009289, 0.0006829866906628013, -0.02032761089503765, 0.04741335287690163, -0.06374409049749374, 0.09916946291923523, 0.04611529782414436, 1.2382581233978271, -0.028186898678541183, -0.002612560987472534, 0.0018935075495392084, 0.02473544143140316, -0.45263218879699707, 0.06338457018136978, 0.12747620046138763, -0.009755159728229046, -0.3734644055366516, -0.15518373250961304]} +{"t": 14.5065, "q": [-0.14026208221912384, 0.023764770478010178, 0.019217370077967644, 0.3165113627910614, -0.17087572813034058, -0.016913248226046562, -0.09604935348033905, -0.014973356388509274, 0.041916634887456894, 0.32185474038124084, -0.24334177374839783, 0.014872112311422825, 0.00033479739795438945, -0.0210125632584095, 0.046921540051698685, -0.06379202753305435, 0.09944510459899902, 0.04611529782414436, 1.2383179664611816, -0.028210865333676338, -0.002576608443632722, 0.0019174760673195124, 0.024759409949183464, -0.45565223693847656, 0.06339655071496964, 0.12173575907945633, -0.02901380881667137, -0.3709956705570221, -0.15275093913078308]} +{"t": 14.5232, "q": [-0.14026208221912384, 0.023756248876452446, 0.019619127735495567, 0.316656231880188, -0.17087572813034058, -0.016913248226046562, -0.0959811806678772, -0.015024489723145962, 0.04233178123831749, 0.32184621691703796, -0.2427285760641098, 0.015082545578479767, -1.3391895663517062e-05, -0.021637415513396263, 0.04648667201399803, -0.06385195255279541, 0.09969677031040192, 0.04613926634192467, 1.2383419275283813, -0.02816293016076088, -0.00256462418474257, 0.0019534286111593246, 0.024783378466963768, -0.4586363136768341, 0.06308495998382568, 0.11659453064203262, -0.05023787170648575, -0.36909016966819763, -0.1507256031036377]} +{"t": 14.5399, "q": [-0.14026208221912384, 0.023730682209134102, 0.019953925162553787, 0.3168778121471405, -0.17088423669338226, -0.01691330224275589, -0.0959811806678772, -0.015075622126460075, 0.04272014647722244, 0.32184621691703796, -0.24215203523635864, 0.015113693661987782, -0.00030801360844634473, -0.022277962416410446, 0.045947302132844925, -0.06386393308639526, 0.09988851845264435, 0.04610331356525421, 1.2383419275283813, -0.028186898678541183, -0.002540655666962266, 0.0019654128700494766, 0.024867268279194832, -0.4614406228065491, 0.06291718035936356, 0.11182480305433273, -0.07023954391479492, -0.36736443638801575, -0.14964702725410461]} +{"t": 14.5567, "q": [-0.14028765261173248, 0.02371363714337349, 0.020208369940519333, 0.3173976540565491, -0.17086288332939148, -0.01690608821809292, -0.09597265720367432, -0.01510118879377842, 0.04304155334830284, 0.32185474038124084, -0.2415637969970703, 0.01528122741729021, -0.00046871634549461305, -0.022986115887761116, 0.0453927256166935, -0.06386393308639526, 0.09999637305736542, 0.04611529782414436, 1.2383779287338257, -0.028210865333676338, -0.002540655666962266, 0.0020013656467199326, 0.024843299761414528, -0.4641130864620209, 0.06278535723686218, 0.10609634965658188, -0.09199091047048569, -0.36326584219932556, -0.14883209764957428]} +{"t": 14.5734, "q": [-0.14029617607593536, 0.023705115541815758, 0.020422641187906265, 0.31785786151885986, -0.17081551253795624, -0.016842151060700417, -0.09596413373947144, -0.015109710395336151, 0.04334956780076027, 0.3218717873096466, -0.24104659259319305, 0.015370319597423077, -0.000522283953614533, -0.023552339524030685, 0.04475010931491852, -0.0638040155172348, 0.10011621564626694, 0.04615125060081482, 1.2384498119354248, -0.028186898678541183, -0.002540655666962266, 0.002049302449449897, 0.024843299761414528, -0.46636611223220825, 0.06268948316574097, 0.10115884244441986, -0.11236409842967987, -0.35814857482910156, -0.14758573472499847]} +{"t": 14.5901, "q": [-0.1403302550315857, 0.023671027272939682, 0.020569952204823494, 0.3183010220527649, -0.17079366743564606, -0.01677836664021015, -0.09589595347642899, -0.01510118879377842, 0.0435638353228569, 0.32188883423805237, -0.240412175655365, 0.015544761903584003, -0.0004151487664785236, -0.02417122572660446, 0.04412030801177025, -0.0637800469994545, 0.100176140666008, 0.04611529782414436, 1.238569736480713, -0.028138961642980576, -0.0025166873820126057, 0.002049302449449897, 0.024831315502524376, -0.4687749445438385, 0.06259360909461975, 0.09758754819631577, -0.13590110838413239, -0.3532709777355194, -0.14529675245285034]} +{"t": 14.6069, "q": [-0.14038991928100586, 0.023645460605621338, 0.020596735179424286, 0.3186589479446411, -0.17079366743564606, -0.01677836664021015, -0.09576812386512756, -0.015135277062654495, 0.043630797415971756, 0.32188883423805237, -0.2398962378501892, 0.015706611797213554, -1.3391895663517062e-05, -0.0247371606528759, 0.04357178881764412, -0.06383996456861496, 0.10015217214822769, 0.04611529782414436, 1.238581657409668, -0.028150945901870728, -0.0025286716409027576, 0.002061286708340049, 0.02461559884250164, -0.4712676703929901, 0.06268948316574097, 0.0953584834933281, -0.1594141572713852, -0.34892070293426514, -0.1428879201412201]} +{"t": 14.6236, "q": [-0.14049218595027924, 0.023509107530117035, 0.020543167367577553, 0.3189316391944885, -0.17074641585350037, -0.01672857627272606, -0.095708467066288, -0.015254586935043335, 0.043590620160102844, 0.32188883423805237, -0.2394936978816986, 0.015861988067626953, 0.0006428110064007342, -0.025228226557374, 0.04302321374416351, -0.06389988958835602, 0.10008026659488678, 0.04611529782414436, 1.2385337352752686, -0.02816293016076088, -0.002540655666962266, 0.0020732709672302008, 0.024507740512490273, -0.47323307394981384, 0.06272543221712112, 0.09413608908653259, -0.17945179343223572, -0.34636807441711426, -0.14161759614944458]} +{"t": 14.6403, "q": [-0.14053478837013245, 0.02342388592660427, 0.02052977681159973, 0.31918731331825256, -0.17073765397071838, -0.016700245440006256, -0.09566585719585419, -0.015399462543427944, 0.043590620160102844, 0.3218803107738495, -0.23910798132419586, 0.01601746492087841, 0.0013257976388558745, -0.025388063862919807, 0.042649075388908386, -0.0637560784816742, 0.10002034157514572, 0.04611529782414436, 1.2385576963424683, -0.028186898678541183, -0.002576608443632722, 0.0020732709672302008, 0.024447819218039513, -0.47492286562919617, 0.0628572627902031, 0.09286576509475708, -0.2018742710351944, -0.3424132764339447, -0.14075472950935364]} +{"t": 14.6573, "q": [-0.14061148464679718, 0.02324492111802101, 0.020543167367577553, 0.3195878565311432, -0.1707032322883606, -0.016657596454024315, -0.09556359797716141, -0.015535816550254822, 0.043604012578725815, 0.3219228982925415, -0.238748237490654, 0.01630222611129284, 0.0019150411244481802, -0.025494446977972984, 0.04243113845586777, -0.06349242478609085, 0.10002034157514572, 0.04609132930636406, 1.2385936975479126, -0.028186898678541183, -0.002612560987472534, 0.0020732709672302008, 0.024387897923588753, -0.4761931896209717, 0.06286924332380295, 0.09195496141910553, -0.22369754314422607, -0.3381468951702118, -0.13999971747398376]} +{"t": 14.674, "q": [-0.14067967236042023, 0.023134132847189903, 0.02048959955573082, 0.3198690712451935, -0.17059946060180664, -0.01647309586405754, -0.095520980656147, -0.015672169625759125, 0.043590620160102844, 0.32199108600616455, -0.23844309151172638, 0.016580166295170784, 0.0024775005877017975, -0.025434818118810654, 0.04235690459609032, -0.06332464516162872, 0.09998439252376556, 0.04609132930636406, 1.2386056184768677, -0.028210865333676338, -0.002660498023033142, 0.0020732709672302008, 0.02436392940580845, -0.47685232758522034, 0.062929168343544, 0.09169130772352219, -0.24590431153774261, -0.335330605506897, -0.13910090923309326]} +{"t": 14.6908, "q": [-0.14075636863708496, 0.022852903231978416, 0.02051638439297676, 0.31984350085258484, -0.16991305351257324, -0.01537273172289133, -0.09552950412034988, -0.01589374616742134, 0.043590620160102844, 0.3220166563987732, -0.2382042557001114, 0.016700685024261475, 0.0026783791836351156, -0.02534504607319832, 0.0423019640147686, -0.06309694796800613, 0.0998765304684639, 0.04611529782414436, 1.2386176586151123, -0.028246818110346794, -0.0026964505668729544, 0.0020852552261203527, 0.024351945146918297, -0.4771639108657837, 0.06295313686132431, 0.09124789386987686, -0.2694533169269562, -0.3322027325630188, -0.13796240091323853]} +{"t": 14.7077, "q": [-0.14077341556549072, 0.022614285349845886, 0.020476208999753, 0.3197753429412842, -0.16956102848052979, -0.015031086280941963, -0.09551246464252472, -0.016089754179120064, 0.04348348453640938, 0.3220166563987732, -0.2378694713115692, 0.016942564398050308, 0.002691771136596799, -0.025292571634054184, 0.04228871688246727, -0.06298908591270447, 0.09982859343290329, 0.04610331356525421, 1.238641619682312, -0.028234833851456642, -0.0027204190846532583, 0.0020732709672302008, 0.024268055334687233, -0.4776313006877899, 0.06279733777046204, 0.09040899574756622, -0.2934816777706146, -0.32926657795906067, -0.13635651767253876]} +{"t": 14.7246, "q": [-0.14082454144954681, 0.02251201868057251, 0.020476208999753, 0.3197582960128784, -0.16924455761909485, -0.014972468838095665, -0.09553802758455276, -0.01618349738419056, 0.04351026937365532, 0.3220251798629761, -0.23761382699012756, 0.0170629620552063, 0.002718554809689522, -0.02526242844760418, 0.042308006435632706, -0.0628812313079834, 0.09979264438152313, 0.04609132930636406, 1.2385936975479126, -0.028294755145907402, -0.0027563718613237143, 0.002061286708340049, 0.024232102558016777, -0.4784581959247589, 0.06277336925268173, 0.08971390873193741, -0.31661126017570496, -0.3273371160030365, -0.13430720567703247]} +{"t": 14.7413, "q": [-0.14080749452114105, 0.022469408810138702, 0.02051638439297676, 0.3198094367980957, -0.1690383404493332, -0.014914537779986858, -0.09554655104875565, -0.016200540587306023, 0.043577227741479874, 0.3220251798629761, -0.23734891414642334, 0.01709720678627491, 0.0025176764465868473, -0.025262538343667984, 0.04228920489549637, -0.06272543221712112, 0.09976867586374283, 0.04609132930636406, 1.238581657409668, -0.028294755145907402, -0.0027683561202138662, 0.002061286708340049, 0.024339960888028145, -0.47899749875068665, 0.06278535723686218, 0.08882708102464676, -0.3374038636684418, -0.3257432281970978, -0.13209013640880585]} +{"t": 14.7581, "q": [-0.14080749452114105, 0.02246088720858097, 0.02052977681159973, 0.31988611817359924, -0.16887548565864563, -0.014913461171090603, -0.09554655104875565, -0.01619201898574829, 0.043604012578725815, 0.3220251798629761, -0.2371288239955902, 0.017067119479179382, 0.002276622224599123, -0.025262590497732162, 0.04227980226278305, -0.06272543221712112, 0.09980462491512299, 0.04611529782414436, 1.238653540611267, -0.028246818110346794, -0.0027683561202138662, 0.002061286708340049, 0.02430400811135769, -0.47922518849372864, 0.06268948316574097, 0.08798818290233612, -0.3588676154613495, -0.32370591163635254, -0.13011273741722107]} +{"t": 14.7748, "q": [-0.14077341556549072, 0.022529063746333122, 0.02051638439297676, 0.31988611817359924, -0.16866977512836456, -0.01491210050880909, -0.09553802758455276, -0.016140887513756752, 0.0436575785279274, 0.32204222679138184, -0.23692557215690613, 0.017022810876369476, 0.002169487066566944, -0.025277992710471153, 0.04221374914050102, -0.06278535723686218, 0.09979264438152313, 0.04611529782414436, 1.238569736480713, -0.02822284959256649, -0.0027443876024335623, 0.0020732709672302008, 0.02412424609065056, -0.47954878211021423, 0.06248575076460838, 0.08683769404888153, -0.3807388246059418, -0.31999078392982483, -0.1289862096309662]} +{"t": 14.7915, "q": [-0.14075636863708496, 0.022537585347890854, 0.02052977681159973, 0.31993725895881653, -0.16856728494167328, -0.014953852631151676, -0.09554655104875565, -0.016089754179120064, 0.04369775578379631, 0.32204222679138184, -0.23676051199436188, 0.017000239342451096, 0.0021427033934742212, -0.02527095377445221, 0.042133960872888565, -0.0628572627902031, 0.09979264438152313, 0.04610331356525421, 1.238569736480713, -0.02822284959256649, -0.0027324033435434103, 0.0020732709672302008, 0.023992419242858887, -0.47984838485717773, 0.062305986881256104, 0.08617856353521347, -0.40143558382987976, -0.3165033757686615, -0.12844692170619965]} +{"t": 14.8084, "q": [-0.14077341556549072, 0.022554630413651466, 0.02051638439297676, 0.31996282935142517, -0.1684943586587906, -0.014946302399039268, -0.09553802758455276, -0.01606418751180172, 0.04367097094655037, 0.3220677971839905, -0.2367011457681656, 0.016971159726381302, 0.0021427033934742212, -0.025233492255210876, 0.042120471596717834, -0.06286924332380295, 0.09974470734596252, 0.04609132930636406, 1.2385936975479126, -0.028234833851456642, -0.0027443876024335623, 0.002049302449449897, 0.02412424609065056, -0.48010003566741943, 0.062198128551244736, 0.0860467404127121, -0.42031073570251465, -0.3137589991092682, -0.12805144488811493]} +{"t": 14.8251, "q": [-0.14075636863708496, 0.022554630413651466, 0.02051638439297676, 0.3199543058872223, -0.16843050718307495, -0.01499537006020546, -0.09556359797716141, -0.01606418751180172, 0.0436575785279274, 0.3220677971839905, -0.2366713285446167, 0.016935110092163086, 0.002089135814458132, -0.025128286331892014, 0.0421314612030983, -0.06279733777046204, 0.09973271936178207, 0.04610331356525421, 1.238569736480713, -0.028294755145907402, -0.0027443876024335623, 0.0020852552261203527, 0.02448377199470997, -0.4798843264579773, 0.062078285962343216, 0.08555538207292557, -0.43995288014411926, -0.3116377890110016, -0.12801548838615417]} +{"t": 14.8418, "q": [-0.14074784517288208, 0.022597240284085274, 0.02051638439297676, 0.3199116885662079, -0.168387770652771, -0.015009233728051186, -0.0956147238612175, -0.016021577641367912, 0.0436575785279274, 0.32208484411239624, -0.2366628646850586, 0.016935057938098907, 0.001901649171486497, -0.02498544566333294, 0.042157139629125595, -0.06262955814599991, 0.09970875084400177, 0.04609132930636406, 1.238581657409668, -0.028234833851456642, -0.0027563718613237143, 0.0020852552261203527, 0.024651551619172096, -0.47927314043045044, 0.062078285962343216, 0.0848483145236969, -0.4569944739341736, -0.30962443351745605, -0.12800350785255432]} +{"t": 14.8585, "q": [-0.14071375131607056, 0.022656895220279694, 0.02051638439297676, 0.31988611817359924, -0.16836194694042206, -0.014994916506111622, -0.09564029425382614, -0.015961922705173492, 0.0436575785279274, 0.3221189081668854, -0.23665432631969452, 0.016920659691095352, 0.0016605950659140944, -0.02479778788983822, 0.04213637858629227, -0.062497735023498535, 0.09969677031040192, 0.04613926634192467, 1.238641619682312, -0.028270786628127098, -0.0027443876024335623, 0.0020732709672302008, 0.02473544143140316, -0.47835034132003784, 0.061886537820100784, 0.08468053489923477, -0.4749707877635956, -0.3078148365020752, -0.12809938192367554]} +{"t": 14.8753, "q": [-0.1406967043876648, 0.022725071758031845, 0.02050299197435379, 0.31982648372650146, -0.1683579534292221, -0.015030242502689362, -0.09568290412425995, -0.01589374616742134, 0.04369775578379631, 0.3221103847026825, -0.23665860295295715, 0.01692785881459713, 0.0014865003759041429, -0.02464771270751953, 0.04211034998297691, -0.06248575076460838, 0.09964883327484131, 0.04611529782414436, 1.2386655807495117, -0.028258802369236946, -0.0027324033435434103, 0.002061286708340049, 0.024759409949183464, -0.47767922282218933, 0.06149106100201607, 0.08480037748813629, -0.4900709092617035, -0.3058374226093292, -0.12835104763507843]} +{"t": 14.892, "q": [-0.1406967043876648, 0.0227676834911108, 0.02050299197435379, 0.31964749097824097, -0.16834938526153564, -0.01503018569201231, -0.09571699053049088, -0.01581704616546631, 0.0436575785279274, 0.3220677971839905, -0.23665851354599, 0.016913512721657753, 0.0013525814283639193, -0.024557674303650856, 0.04209284856915474, -0.06254567205905914, 0.09958890825510025, 0.04607934504747391, 1.2386655807495117, -0.028234833851456642, -0.0027443876024335623, 0.002049302449449897, 0.024759409949183464, -0.47719985246658325, 0.06084391102194786, 0.08524379134178162, -0.4996223449707031, -0.3033686876296997, -0.12849485874176025]} +{"t": 14.9089, "q": [-0.14066262543201447, 0.022844381630420685, 0.020476208999753, 0.31946852803230286, -0.16832415759563446, -0.015086586587131023, -0.09577664732933044, -0.015740348026156425, 0.0436575785279274, 0.32204222679138184, -0.23666688799858093, 0.01689920201897621, 0.0012454462703317404, -0.024467388167977333, 0.042122453451156616, -0.062557652592659, 0.09955295920372009, 0.046067360788583755, 1.2386295795440674, -0.028210865333676338, -0.0027324033435434103, 0.002049302449449897, 0.024783378466963768, -0.47692424058914185, 0.060148827731609344, 0.0854714959859848, -0.5071484446525574, -0.30081602931022644, -0.12863866984844208]} +{"t": 14.9256, "q": [-0.14067967236042023, 0.022980734705924988, 0.020476208999753, 0.3193066120147705, -0.16829869151115417, -0.015114701353013515, -0.09581925719976425, -0.015595471486449242, 0.0436575785279274, 0.32199108600616455, -0.23667961359024048, 0.016906455159187317, 0.001191878691315651, -0.02427145466208458, 0.04224783927202225, -0.062557652592659, 0.09952899068593979, 0.046055376529693604, 1.2386295795440674, -0.028186898678541183, -0.0027204190846532583, 0.002049302449449897, 0.024987109005451202, -0.4766845405101776, 0.059609536081552505, 0.08675380796194077, -0.510384202003479, -0.29781997203826904, -0.12874652445316315]} +{"t": 14.9423, "q": [-0.1406967043876648, 0.02312561124563217, 0.020409248769283295, 0.31910207867622375, -0.1682480126619339, -0.015199217014014721, -0.09592152386903763, -0.015467639081180096, 0.043604012578725815, 0.3219314217567444, -0.23668798804283142, 0.016892163082957268, 0.0012186624808236957, -0.024007746949791908, 0.042407210916280746, -0.0625816211104393, 0.09942113608121872, 0.04607934504747391, 1.2386176586151123, -0.02822284959256649, -0.0027443876024335623, 0.002049302449449897, 0.02581402100622654, -0.474335640668869, 0.059118181467056274, 0.08937834948301315, -0.5107077360153198, -0.2948119342327118, -0.12891431152820587]} +{"t": 14.9591, "q": [-0.14068818092346191, 0.02323639951646328, 0.020436033606529236, 0.3188890516757965, -0.16821855306625366, -0.015262658707797527, -0.09599822014570236, -0.015365374274551868, 0.043630797415971756, 0.32185474038124084, -0.23670482635498047, 0.016877923160791397, 0.0010177841177210212, -0.023796839639544487, 0.042523402720689774, -0.06254567205905914, 0.09921739995479584, 0.046055376529693604, 1.2386655807495117, -0.028258802369236946, -0.0027443876024335623, 0.002037318190559745, 0.02702442742884159, -0.4711957573890686, 0.05867476761341095, 0.0914396420121193, -0.5105040073394775, -0.292367160320282, -0.12950153648853302]} +{"t": 14.9758, "q": [-0.14067967236042023, 0.023372752591967583, 0.02050299197435379, 0.31868451833724976, -0.1682099848985672, -0.015262611210346222, -0.09614309668540955, -0.015280152671039104, 0.043630797415971756, 0.32181212306022644, -0.2366962879896164, 0.016863524913787842, 0.00044193255598656833, -0.023165017366409302, 0.042730025947093964, -0.062497735023498535, 0.09918145090341568, 0.046067360788583755, 1.238653540611267, -0.02822284959256649, -0.0027443876024335623, 0.002049302449449897, 0.027515782043337822, -0.4679240882396698, 0.05788380652666092, 0.09384846687316895, -0.5096771121025085, -0.29003024101257324, -0.13017265498638153]} +{"t": 14.9927, "q": [-0.14065410196781158, 0.023372752591967583, 0.02051638439297676, 0.31842032074928284, -0.16820576786994934, -0.015269652009010315, -0.09627092629671097, -0.015237542800605297, 0.04371114820241928, 0.3217524588108063, -0.23669645190238953, 0.016892215237021446, -0.0002946217136923224, -0.022608816623687744, 0.042841266840696335, -0.06253368407487869, 0.09914549440145493, 0.046055376529693604, 1.2386775016784668, -0.028234833851456642, -0.0027324033435434103, 0.002061286708340049, 0.027431892231106758, -0.4646283984184265, 0.05632586032152176, 0.09616142511367798, -0.5083827972412109, -0.28770530223846436, -0.13096360862255096]} diff --git a/Data/G1/think_6.jsonl b/Data/G1/think_6.jsonl new file mode 100644 index 0000000..05cbb50 --- /dev/null +++ b/Data/G1/think_6.jsonl @@ -0,0 +1,896 @@ +{"meta": {"hz": 60.0, "motors": 29}} +{"t": 0.0, "q": [-0.1563262641429901, 0.021634241566061974, 0.020543167367577553, 0.3159489035606384, -0.16829000413417816, -0.015100497752428055, -0.1120283231139183, -0.017461813986301422, 0.04286745935678482, 0.319528192281723, -0.23779281973838806, 0.016769900918006897, 0.002986392704769969, 0.003187428927049041, 0.009642546065151691, 0.24810941517353058, 0.27572107315063477, -0.08248741924762726, 0.8270193934440613, -0.007861651480197906, 0.0006950850365683436, -0.0024447820615023375, 0.2521480917930603, -0.2838823199272156, 0.07935953885316849, 0.7896286249160767, -0.006591323763132095, 0.0009227853151969612, 0.0011385014513507485]} +{"t": 0.0167, "q": [-0.15620696544647217, 0.021642763167619705, 0.020569952204823494, 0.31593185663223267, -0.16829435527324677, -0.015107603743672371, -0.11178970336914062, -0.017436247318983078, 0.04280049726366997, 0.3195708096027374, -0.2377929836511612, 0.0167985912412405, 0.003589028026908636, 0.0036205982323735952, 0.010486084967851639, 0.24752219021320343, 0.2734920084476471, -0.08303869515657425, 0.828385591506958, -0.008388957940042019, 0.0006471481756307185, -0.00256462418474257, 0.2517526149749756, -0.28191691637039185, 0.0791078731417656, 0.791546106338501, -0.006962834857404232, 0.000898816913831979, 0.0011744541116058826]} +{"t": 0.0335, "q": [-0.15575528144836426, 0.021804682910442352, 0.020556559786200523, 0.31620457768440247, -0.16825197637081146, -0.015163891017436981, -0.1112528070807457, -0.017069797962903976, 0.04280049726366997, 0.32029518485069275, -0.23776385188102722, 0.01684863679111004, 0.0038568659219890833, 0.00365594495087862, 0.01158357784152031, 0.24659940600395203, 0.2720179557800293, -0.08331433683633804, 0.8298596739768982, -0.008520783856511116, 0.0007190534961409867, -0.002636529505252838, 0.250973641872406, -0.2796279191970825, 0.07889215648174286, 0.7940268516540527, -0.007190535310655832, 0.0009707222343422472, 0.0010785802733153105]} +{"t": 0.0502, "q": [-0.15543144941329956, 0.021753551438450813, 0.020583342760801315, 0.31612786650657654, -0.1682390570640564, -0.015156736597418785, -0.11082670092582703, -0.017061274498701096, 0.04272014647722244, 0.32055938243865967, -0.2377597838640213, 0.016870148479938507, 0.004030960611999035, 0.0035978348460048437, 0.012711410410702229, 0.24602416157722473, 0.2696690261363983, -0.08385362476110458, 0.8306626081466675, -0.008568720892071724, 0.0006950850365683436, -0.0027084348257631063, 0.2506261169910431, -0.2769913971424103, 0.07902397960424423, 0.7953570485115051, -0.007250456139445305, 0.0009707222343422472, 0.0011744541116058826]} +{"t": 0.0669, "q": [-0.15524396300315857, 0.021770594641566277, 0.02030211314558983, 0.31606820225715637, -0.1682390570640564, -0.015156736597418785, -0.11027276515960693, -0.017163541167974472, 0.04251926764845848, 0.320533812046051, -0.23773440718650818, 0.016841283068060875, 0.004057744517922401, 0.003719077678397298, 0.01352264266461134, 0.24584439396858215, 0.2663014829158783, -0.08430902659893036, 0.8315734267234802, -0.008616657927632332, 0.0007070692954584956, -0.0027563718613237143, 0.2506740391254425, -0.2737676501274109, 0.0794074758887291, 0.79648357629776, -0.007262440398335457, 0.0009707222343422472, 0.0013662016717717052]} +{"t": 0.0836, "q": [-0.1547241061925888, 0.022171134129166603, 0.02000749297440052, 0.31616196036338806, -0.1682390570640564, -0.015156736597418785, -0.10952281951904297, -0.017120929434895515, 0.042251430451869965, 0.3205849528312683, -0.23773856461048126, 0.016834136098623276, 0.004030960611999035, 0.003847564337775111, 0.014589784666895866, 0.2457844763994217, 0.262778103351593, -0.08450077474117279, 0.8324003219604492, -0.00866459496319294, 0.0007310377550311387, -0.0027683561202138662, 0.2509017288684845, -0.2704240381717682, 0.07962319254875183, 0.79722660779953, -0.007274424657225609, 0.0009827064350247383, 0.0014381069922819734]} +{"t": 0.1004, "q": [-0.15419574081897736, 0.022605761885643005, 0.0196726955473423, 0.31625568866729736, -0.168234720826149, -0.015149639919400215, -0.10904558002948761, -0.01689935475587845, 0.04194341599941254, 0.3205934464931488, -0.23773856461048126, 0.016834136098623276, 0.004017568659037352, 0.0037858886644244194, 0.01553709339350462, 0.24586836993694305, 0.25932663679122925, -0.08481236547231674, 0.8332391977310181, -0.00866459496319294, 0.0007430219557136297, -0.0028282771818339825, 0.2510215938091278, -0.2673800587654114, 0.07986287772655487, 0.7981134653091431, -0.007250456139445305, 0.0009587380336597562, 0.0014740596525371075]} +{"t": 0.1171, "q": [-0.15410199761390686, 0.022060347720980644, 0.0196726955473423, 0.3164772689342499, -0.16826465725898743, -0.01514276023954153, -0.10888366401195526, -0.017376594245433807, 0.04195680841803551, 0.3203122317790985, -0.2377554476261139, 0.01684858649969101, 0.004057744517922401, 0.0037168317940086126, 0.016163762658834457, 0.24591630697250366, 0.25575536489486694, -0.08509998023509979, 0.8341020941734314, -0.0087245162576437, 0.0007190534961409867, -0.0028162929229438305, 0.2512732446193695, -0.2647075653076172, 0.07998272031545639, 0.798568844795227, -0.007262440398335457, 0.0009946906939148903, 0.0014620755100622773]} +{"t": 0.1339, "q": [-0.1540849506855011, 0.022077390924096107, 0.0196726955473423, 0.3166988492012024, -0.16825608909130096, -0.015142703428864479, -0.10880696028470993, -0.017282849177718163, 0.04197020083665848, 0.32043153047561646, -0.23775121569633484, 0.016841387376189232, 0.004138095770031214, 0.003742740722373128, 0.016849715262651443, 0.24595224857330322, 0.2529750168323517, -0.08530371636152267, 0.8348330855369568, -0.008700547739863396, 0.0007550062146037817, -0.0028282771818339825, 0.25128522515296936, -0.2626582682132721, 0.08009057492017746, 0.7988684773445129, -0.007298393175005913, 0.0009946906939148903, 0.0015100124292075634]} +{"t": 0.1506, "q": [-0.15410199761390686, 0.02214556746184826, 0.01952538453042507, 0.31689485907554626, -0.16825608909130096, -0.015142703428864479, -0.10872174054384232, -0.01720615103840828, 0.04190324246883392, 0.32056790590286255, -0.2377428114414215, 0.016841335222125053, 0.004097919911146164, 0.003608987433835864, 0.01753016747534275, 0.24596424400806427, 0.2508538067340851, -0.08548347651958466, 0.8353843688964844, -0.008760469034314156, 0.0007550062146037817, -0.0028642297256737947, 0.2512492835521698, -0.26089659333229065, 0.08009057492017746, 0.7989643216133118, -0.007286408916115761, 0.0009946906939148903, 0.0014980281703174114]} +{"t": 0.1674, "q": [-0.15411904454231262, 0.022188179194927216, 0.0195119921118021, 0.3170056641101837, -0.1682475209236145, -0.015142646618187428, -0.10873878747224808, -0.017180584371089935, 0.04187645763158798, 0.3205849528312683, -0.23774272203445435, 0.016826990991830826, 0.00416487967595458, 0.0034501655027270317, 0.01790793240070343, 0.24604812264442444, 0.24964340031147003, -0.08565125614404678, 0.8358637690544128, -0.0087245162576437, 0.0007789746159687638, -0.0028881982434540987, 0.2512732446193695, -0.2599857747554779, 0.08011454343795776, 0.7990602254867554, -0.007286408916115761, 0.0010066749528050423, 0.0015100124292075634]} +{"t": 0.1842, "q": [-0.15411904454231262, 0.022179657593369484, 0.01947181671857834, 0.3171931505203247, -0.16825173795223236, -0.015135605819523335, -0.10867060720920563, -0.017163541167974472, 0.04184967279434204, 0.3206786811351776, -0.23775112628936768, 0.016827041283249855, 0.004218447022140026, 0.0032989627216011286, 0.018194912001490593, 0.24619193375110626, 0.2490801364183426, -0.08568721264600754, 0.8362352848052979, -0.008736500516533852, 0.0007909588748589158, -0.0029121667612344027, 0.2513211965560913, -0.25960227847099304, 0.08010256290435791, 0.799239993095398, -0.007286408916115761, 0.0009946906939148903, 0.0015339808305725455]} +{"t": 0.2009, "q": [-0.1541275680065155, 0.022171134129166603, 0.019431641325354576, 0.3172101676464081, -0.16825173795223236, -0.015135605819523335, -0.10866208374500275, -0.017172062769532204, 0.04184967279434204, 0.3206786811351776, -0.23775121569633484, 0.016841387376189232, 0.004205055069178343, 0.0033442131243646145, 0.018252139911055565, 0.24628780782222748, 0.24897228181362152, -0.08567522466182709, 0.836594820022583, -0.008700547739863396, 0.0007789746159687638, -0.0029241510201245546, 0.2513691186904907, -0.25957831740379333, 0.08004263788461685, 0.7994676828384399, -0.007286408916115761, 0.0010186590952798724, 0.0015100124292075634]} +{"t": 0.2176, "q": [-0.15411904454231262, 0.022128524258732796, 0.019391464069485664, 0.31732097268104553, -0.16825173795223236, -0.015135605819523335, -0.10862799733877182, -0.017163541167974472, 0.0418228916823864, 0.3206786811351776, -0.23775121569633484, 0.016841387376189232, 0.004258622881025076, 0.0033593112602829933, 0.01825210638344288, 0.24633574485778809, 0.24903219938278198, -0.08560331910848618, 0.8369303345680237, -0.008736500516533852, 0.0007669904152862728, -0.0029241510201245546, 0.25139307975769043, -0.2595902979373932, 0.07997073233127594, 0.7997432947158813, -0.007286408916115761, 0.0010066749528050423, 0.0014860439114272594]} +{"t": 0.2344, "q": [-0.15411904454231262, 0.022111479192972183, 0.019404856488108635, 0.3174232244491577, -0.16825595498085022, -0.015128565020859241, -0.10858538746833801, -0.017172062769532204, 0.04183628037571907, 0.32071277499198914, -0.23775960505008698, 0.01684143953025341, 0.0042854067869484425, 0.0033517584670335054, 0.018256900832057, 0.24629980325698853, 0.24918799102306366, -0.08543553948402405, 0.8372419476509094, -0.008760469034314156, 0.0007909588748589158, -0.0029001825023442507, 0.25135713815689087, -0.2595902979373932, 0.07997073233127594, 0.7999470233917236, -0.007286408916115761, 0.0010186590952798724, 0.0014740596525371075]} +{"t": 0.2511, "q": [-0.15411052107810974, 0.022120002657175064, 0.019418248906731606, 0.31744879484176636, -0.1682475209236145, -0.015142646618187428, -0.10856834053993225, -0.01720615103840828, 0.04184967279434204, 0.32071277499198914, -0.23774687945842743, 0.016819844022393227, 0.0042854067869484425, 0.0033819549717009068, 0.018256833776831627, 0.2462039291858673, 0.24922394752502441, -0.08539959043264389, 0.8373977541923523, -0.00878443755209446, 0.0007909588748589158, -0.0029001825023442507, 0.2513211965560913, -0.2595902979373932, 0.07998272031545639, 0.8001148104667664, -0.007322361692786217, 0.0010186590952798724, 0.0014860439114272594]} +{"t": 0.2678, "q": [-0.15410199761390686, 0.022128524258732796, 0.019404856488108635, 0.31749141216278076, -0.1682475209236145, -0.015142646618187428, -0.10856834053993225, -0.017248760908842087, 0.04183628037571907, 0.32070425152778625, -0.23775528371334076, 0.016819894313812256, 0.004298798739910126, 0.003412144025787711, 0.01826632022857666, 0.24612003564834595, 0.24922394752502441, -0.0854235589504242, 0.8374816179275513, -0.008736500516533852, 0.0007789746159687638, -0.0029001825023442507, 0.2512972056865692, -0.25960227847099304, 0.07998272031545639, 0.8002226948738098, -0.007298393175005913, 0.0010306433541700244, 0.0014980281703174114]} +{"t": 0.2845, "q": [-0.15410199761390686, 0.022068869322538376, 0.019431641325354576, 0.3175084590911865, -0.1682516187429428, -0.015121467411518097, -0.10855130106210709, -0.017291372641921043, 0.04186306521296501, 0.32071277499198914, -0.2377554476261139, 0.01684858649969101, 0.004258622881025076, 0.0033894930966198444, 0.018271148204803467, 0.2461080551147461, 0.2491760104894638, -0.08550744503736496, 0.837505578994751, -0.008760469034314156, 0.0007789746159687638, -0.0029001825023442507, 0.2512492835521698, -0.25960227847099304, 0.07997073233127594, 0.8002945780754089, -0.007322361692786217, 0.0010066749528050423, 0.0014740596525371075]} +{"t": 0.3014, "q": [-0.15410199761390686, 0.022128524258732796, 0.019431641325354576, 0.3174658417701721, -0.16824738681316376, -0.01512850821018219, -0.10856834053993225, -0.017282849177718163, 0.04187645763158798, 0.32067015767097473, -0.23775537312030792, 0.016834240406751633, 0.004205055069178343, 0.003351736580953002, 0.018285565078258514, 0.2460840791463852, 0.24918799102306366, -0.08548347651958466, 0.8375295400619507, -0.008736500516533852, 0.0007909588748589158, -0.0029121667612344027, 0.25118935108184814, -0.25960227847099304, 0.07998272031545639, 0.8003784418106079, -0.007322361692786217, 0.0010306433541700244, 0.0014860439114272594]} +{"t": 0.3181, "q": [-0.15410199761390686, 0.022111479192972183, 0.019431641325354576, 0.31749141216278076, -0.16825173795223236, -0.015135605819523335, -0.1085427775979042, -0.017308415845036507, 0.04188985005021095, 0.32070425152778625, -0.23775537312030792, 0.016834240406751633, 0.004272014833986759, 0.0033139516599476337, 0.018338199704885483, 0.24607209861278534, 0.24921196699142456, -0.08548347651958466, 0.8375295400619507, -0.0087245162576437, 0.0007909588748589158, -0.0029241510201245546, 0.25121334195137024, -0.25960227847099304, 0.07998272031545639, 0.8003784418106079, -0.007322361692786217, 0.0010186590952798724, 0.0015100124292075634]} +{"t": 0.3349, "q": [-0.15410199761390686, 0.022128524258732796, 0.019445031881332397, 0.31744879484176636, -0.16824738681316376, -0.01512850821018219, -0.10853425413370132, -0.017342504113912582, 0.04186306521296501, 0.3206957280635834, -0.23774687945842743, 0.016819844022393227, 0.004325582180172205, 0.003313899040222168, 0.01840508170425892, 0.2460840791463852, 0.24921196699142456, -0.0854475274682045, 0.8375415205955505, -0.0087245162576437, 0.0007789746159687638, -0.0029001825023442507, 0.2511534094810486, -0.2595902979373932, 0.07998272031545639, 0.8004264235496521, -0.007322361692786217, 0.0010306433541700244, 0.0014980281703174114]} +{"t": 0.3518, "q": [-0.1540849506855011, 0.022120002657175064, 0.019431641325354576, 0.3173806369304657, -0.1682516187429428, -0.015121467411518097, -0.10853425413370132, -0.017359549179673195, 0.04187645763158798, 0.3206786811351776, -0.23774272203445435, 0.016826990991830826, 0.0042854067869484425, 0.0033289382699877024, 0.018481485545635223, 0.24604812264442444, 0.2491999864578247, -0.0854475274682045, 0.837565541267395, -0.008760469034314156, 0.0008149273344315588, -0.0029001825023442507, 0.2511534094810486, -0.2595902979373932, 0.07998272031545639, 0.8004983067512512, -0.007322361692786217, 0.0010546118719503284, 0.0015100124292075634]} +{"t": 0.3685, "q": [-0.15409347414970398, 0.02208591252565384, 0.019458424299955368, 0.3173891305923462, -0.16825173795223236, -0.015135605819523335, -0.10853425413370132, -0.017359549179673195, 0.04186306521296501, 0.3206360638141632, -0.2377469688653946, 0.016834188252687454, 0.004272014833986759, 0.0033364028204232454, 0.018591349944472313, 0.24600018560886383, 0.24922394752502441, -0.0854235589504242, 0.8375895023345947, -0.008772453293204308, 0.0007909588748589158, -0.0029121667612344027, 0.25114142894744873, -0.25960227847099304, 0.080030657351017, 0.8004983067512512, -0.007346330210566521, 0.0010306433541700244, 0.0014980281703174114]} +{"t": 0.3852, "q": [-0.15410199761390686, 0.022120002657175064, 0.019431641325354576, 0.3173806369304657, -0.16826030611991882, -0.015135662630200386, -0.10853425413370132, -0.017359549179673195, 0.0418228916823864, 0.3206360638141632, -0.23774687945842743, 0.016819844022393227, 0.004298798739910126, 0.0032909829169511795, 0.018753880634903908, 0.24592828750610352, 0.24922394752502441, -0.0854475274682045, 0.8375895023345947, -0.008772453293204308, 0.0007669904152862728, -0.0029121667612344027, 0.25114142894744873, -0.25960227847099304, 0.0800066888332367, 0.8005462288856506, -0.007334345951676369, 0.0010306433541700244, 0.0014860439114272594]} +{"t": 0.402, "q": [-0.15410199761390686, 0.02209443598985672, 0.019458424299955368, 0.3173294961452484, -0.16825595498085022, -0.015128565020859241, -0.10853425413370132, -0.017368070781230927, 0.04184967279434204, 0.3206360638141632, -0.2377554476261139, 0.01684858649969101, 0.004312190227210522, 0.003245582338422537, 0.01893475651741028, 0.2458803504705429, 0.24922394752502441, -0.0854475274682045, 0.8375895023345947, -0.008796420879662037, 0.0007669904152862728, -0.002948119305074215, 0.2511294484138489, -0.25960227847099304, 0.0800066888332367, 0.8005582094192505, -0.007334345951676369, 0.0010306433541700244, 0.0015219965716823936]} +{"t": 0.4187, "q": [-0.15411052107810974, 0.022068869322538376, 0.019431641325354576, 0.31730392575263977, -0.16825173795223236, -0.015135605819523335, -0.10852573066949844, -0.017351027578115463, 0.04184967279434204, 0.3205849528312683, -0.23776385188102722, 0.01684863679111004, 0.0042854067869484425, 0.0032907684799283743, 0.019181201234459877, 0.2458324134349823, 0.24921196699142456, -0.0854235589504242, 0.8375895023345947, -0.008796420879662037, 0.0007669904152862728, -0.0029001825023442507, 0.2511054575443268, -0.2595902979373932, 0.07997073233127594, 0.8005701899528503, -0.007322361692786217, 0.0010426276130601764, 0.0014860439114272594]} +{"t": 0.4355, "q": [-0.15410199761390686, 0.02210295759141445, 0.019431641325354576, 0.31732097268104553, -0.16825173795223236, -0.015135605819523335, -0.10853425413370132, -0.01733398251235485, 0.0418228916823864, 0.3206019699573517, -0.23775537312030792, 0.016834240406751633, 0.004218447022140026, 0.0033208599779754877, 0.019427595660090446, 0.24582043290138245, 0.24918799102306366, -0.08545950800180435, 0.8376134634017944, -0.008772453293204308, 0.0007550062146037817, -0.0029001825023442507, 0.2510695159435272, -0.25960227847099304, 0.07998272031545639, 0.8006421327590942, -0.007346330210566521, 0.0010306433541700244, 0.0015219965716823936]} +{"t": 0.4525, "q": [-0.15411904454231262, 0.022120002657175064, 0.019431641325354576, 0.3172954022884369, -0.16826030611991882, -0.015135662630200386, -0.1085427775979042, -0.017316939309239388, 0.04180949926376343, 0.32061049342155457, -0.2377554476261139, 0.01684858649969101, 0.004231838975101709, 0.0033660505432635546, 0.01966605708003044, 0.24584439396858215, 0.24921196699142456, -0.0854714959859848, 0.8375895023345947, -0.008772453293204308, 0.0007789746159687638, -0.0029001825023442507, 0.2510814964771271, -0.25960227847099304, 0.07999470084905624, 0.8006541132926941, -0.007334345951676369, 0.0010546118719503284, 0.0014980281703174114]} +{"t": 0.4692, "q": [-0.15409347414970398, 0.022120002657175064, 0.019418248906731606, 0.3172954022884369, -0.16825173795223236, -0.015135605819523335, -0.10853425413370132, -0.017308415845036507, 0.0418228916823864, 0.3205934464931488, -0.23775121569633484, 0.016841387376189232, 0.004218447022140026, 0.003456513164564967, 0.019935719668865204, 0.24584439396858215, 0.2491999864578247, -0.08548347651958466, 0.8376014828681946, -0.00878443755209446, 0.0007550062146037817, -0.0029001825023442507, 0.2510695159435272, -0.2595902979373932, 0.07998272031545639, 0.8007140159606934, -0.007334345951676369, 0.0010426276130601764, 0.0014740596525371075]} +{"t": 0.4859, "q": [-0.1540849506855011, 0.022120002657175064, 0.019431641325354576, 0.3172954022884369, -0.16825173795223236, -0.015135605819523335, -0.10853425413370132, -0.017291372641921043, 0.04180949926376343, 0.32061049342155457, -0.23775121569633484, 0.016841387376189232, 0.004272014833986759, 0.0036072798538953066, 0.02023296058177948, 0.24586836993694305, 0.2491999864578247, -0.08548347651958466, 0.8376254439353943, -0.00878443755209446, 0.0007669904152862728, -0.0029121667612344027, 0.2510695159435272, -0.25960227847099304, 0.07998272031545639, 0.8007379770278931, -0.007346330210566521, 0.0010665960144251585, 0.0014740596525371075]} +{"t": 0.5027, "q": [-0.15410199761390686, 0.02216261252760887, 0.019418248906731606, 0.31730392575263977, -0.16825608909130096, -0.015142703428864479, -0.10855130106210709, -0.017291372641921043, 0.04179610684514046, 0.3205934464931488, -0.23775112628936768, 0.016827041283249855, 0.004258622881025076, 0.0037428666837513447, 0.0205185879021883, 0.24584439396858215, 0.24922394752502441, -0.08545950800180435, 0.8376254439353943, -0.008772453293204308, 0.0007669904152862728, -0.0028881982434540987, 0.25105753540992737, -0.25960227847099304, 0.07998272031545639, 0.8007499575614929, -0.007346330210566521, 0.0010546118719503284, 0.0014860439114272594]} +{"t": 0.5194, "q": [-0.15407642722129822, 0.02210295759141445, 0.019404856488108635, 0.31732097268104553, -0.16825173795223236, -0.015135605819523335, -0.10853425413370132, -0.01727432757616043, 0.04184967279434204, 0.3206019699573517, -0.23774272203445435, 0.016826990991830826, 0.004298798739910126, 0.0037803840823471546, 0.020780641585588455, 0.2458324134349823, 0.24921196699142456, -0.08545950800180435, 0.8376134634017944, -0.008760469034314156, 0.0007669904152862728, -0.0028881982434540987, 0.2510814964771271, -0.25957831740379333, 0.0800066888332367, 0.8007499575614929, -0.007334345951676369, 0.0010306433541700244, 0.0014860439114272594]} +{"t": 0.5361, "q": [-0.1540849506855011, 0.022111479192972183, 0.019431641325354576, 0.31730392575263977, -0.16825173795223236, -0.015135605819523335, -0.1085427775979042, -0.01727432757616043, 0.04183628037571907, 0.3206275403499603, -0.23775121569633484, 0.016841387376189232, 0.004258622881025076, 0.0037725926376879215, 0.021090639755129814, 0.24584439396858215, 0.24921196699142456, -0.0854714959859848, 0.8376374244689941, -0.008736500516533852, 0.0007550062146037817, -0.0028881982434540987, 0.25105753540992737, -0.2595902979373932, 0.07998272031545639, 0.8007739186286926, -0.007322361692786217, 0.0010665960144251585, 0.0014860439114272594]} +{"t": 0.5528, "q": [-0.15411052107810974, 0.022128524258732796, 0.019431641325354576, 0.3172954022884369, -0.16825608909130096, -0.015142703428864479, -0.10853425413370132, -0.01727432757616043, 0.0418228916823864, 0.3206275403499603, -0.23775537312030792, 0.016834240406751633, 0.004272014833986759, 0.0037573142908513546, 0.021329296752810478, 0.24584439396858215, 0.24921196699142456, -0.0854475274682045, 0.837649405002594, -0.008760469034314156, 0.0007669904152862728, -0.0029121667612344027, 0.2510695159435272, -0.2595902979373932, 0.07998272031545639, 0.8007739186286926, -0.007334345951676369, 0.0010426276130601764, 0.0014860439114272594]} +{"t": 0.5696, "q": [-0.15410199761390686, 0.022120002657175064, 0.019404856488108635, 0.3172954022884369, -0.16824738681316376, -0.01512850821018219, -0.10853425413370132, -0.01727432757616043, 0.04180949926376343, 0.32061901688575745, -0.23775112628936768, 0.016827041283249855, 0.004258622881025076, 0.0036740940995514393, 0.021611085161566734, 0.24586836993694305, 0.24921196699142456, -0.0854475274682045, 0.837649405002594, -0.008772453293204308, 0.0007669904152862728, -0.0029121667612344027, 0.2510455548763275, -0.25960227847099304, 0.080030657351017, 0.8007859587669373, -0.007334345951676369, 0.0010665960144251585, 0.0014980281703174114]} +{"t": 0.5863, "q": [-0.1541275680065155, 0.022128524258732796, 0.019404856488108635, 0.31730392575263977, -0.16825173795223236, -0.015135605819523335, -0.10853425413370132, -0.017282849177718163, 0.04180949926376343, 0.3206275403499603, -0.23775121569633484, 0.016841387376189232, 0.004312190227210522, 0.0036512664519250393, 0.02185453474521637, 0.245856374502182, 0.24922394752502441, -0.0854475274682045, 0.8376374244689941, -0.008760469034314156, 0.0007909588748589158, -0.0029121667612344027, 0.25105753540992737, -0.25960227847099304, 0.07998272031545639, 0.8007859587669373, -0.007334345951676369, 0.0010546118719503284, 0.0014620755100622773]} +{"t": 0.6031, "q": [-0.15410199761390686, 0.022120002657175064, 0.019431641325354576, 0.3173294961452484, -0.16825173795223236, -0.015135605819523335, -0.10853425413370132, -0.017291372641921043, 0.04183628037571907, 0.3205934464931488, -0.23775960505008698, 0.01684143953025341, 0.004312190227210522, 0.0036285314708948135, 0.022088119760155678, 0.24586836993694305, 0.2491999864578247, -0.0854235589504242, 0.837649405002594, -0.00878443755209446, 0.0007789746159687638, -0.0029361352790147066, 0.2510455548763275, -0.25960227847099304, 0.0800066888332367, 0.8007739186286926, -0.007334345951676369, 0.0010546118719503284, 0.0014860439114272594]} +{"t": 0.6198, "q": [-0.15411052107810974, 0.022137045860290527, 0.019431641325354576, 0.31732097268104553, -0.16825173795223236, -0.015135605819523335, -0.1085427775979042, -0.017291372641921043, 0.04183628037571907, 0.32061901688575745, -0.23775112628936768, 0.016827041283249855, 0.004312190227210522, 0.0036284485831856728, 0.022297797724604607, 0.2458803504705429, 0.2491999864578247, -0.0854475274682045, 0.8376733660697937, -0.008772453293204308, 0.0007789746159687638, -0.0029121667612344027, 0.2510215938091278, -0.2595902979373932, 0.0800066888332367, 0.8007739186286926, -0.007358314469456673, 0.0010546118719503284, 0.0014980281703174114]} +{"t": 0.6367, "q": [-0.15409347414970398, 0.022120002657175064, 0.019418248906731606, 0.31735506653785706, -0.16825173795223236, -0.015135605819523335, -0.1085427775979042, -0.017308415845036507, 0.04184967279434204, 0.32061901688575745, -0.23775537312030792, 0.016834240406751633, 0.004312190227210522, 0.0036132875829935074, 0.02247890830039978, 0.2458803504705429, 0.24921196699142456, -0.0854714959859848, 0.8376853466033936, -0.008760469034314156, 0.0007669904152862728, -0.0029121667612344027, 0.2510455548763275, -0.25960227847099304, 0.07999470084905624, 0.8007739186286926, -0.007346330210566521, 0.0010665960144251585, 0.0015100124292075634]} +{"t": 0.6535, "q": [-0.1540849506855011, 0.022120002657175064, 0.019418248906731606, 0.3173294961452484, -0.16825173795223236, -0.015135605819523335, -0.1085427775979042, -0.017299894243478775, 0.04186306521296501, 0.3206019699573517, -0.23775537312030792, 0.016834240406751633, 0.004338974133133888, 0.003620732109993696, 0.02272193133831024, 0.245856374502182, 0.24922394752502441, -0.08545950800180435, 0.8376853466033936, -0.008760469034314156, 0.0007550062146037817, -0.0029121667612344027, 0.25100958347320557, -0.2595902979373932, 0.07999470084905624, 0.8007739186286926, -0.007346330210566521, 0.0010426276130601764, 0.0014860439114272594]} +{"t": 0.6702, "q": [-0.15410199761390686, 0.022111479192972183, 0.019431641325354576, 0.3173294961452484, -0.1682516187429428, -0.015121467411518097, -0.10853425413370132, -0.017308415845036507, 0.04183628037571907, 0.32061049342155457, -0.23775537312030792, 0.016834240406751633, 0.004298798739910126, 0.0036583070177584887, 0.022945651784539223, 0.2458324134349823, 0.24922394752502441, -0.0854475274682045, 0.8376733660697937, -0.008760469034314156, 0.0007550062146037817, -0.0029121667612344027, 0.2509976029396057, -0.25960227847099304, 0.07999470084905624, 0.8007739186286926, -0.007358314469456673, 0.0010665960144251585, 0.0014740596525371075]} +{"t": 0.6871, "q": [-0.15410199761390686, 0.022060347720980644, 0.019431641325354576, 0.3173465430736542, -0.16825173795223236, -0.015135605819523335, -0.10853425413370132, -0.017316939309239388, 0.04183628037571907, 0.3206275403499603, -0.23775537312030792, 0.016834240406751633, 0.004298798739910126, 0.003665641415864229, 0.023197827860713005, 0.24582043290138245, 0.24921196699142456, -0.0854475274682045, 0.8376733660697937, -0.008772453293204308, 0.0007789746159687638, -0.0029001825023442507, 0.250973641872406, -0.2595902979373932, 0.07998272031545639, 0.800809919834137, -0.007358314469456673, 0.0010546118719503284, 0.0014980281703174114]} +{"t": 0.7038, "q": [-0.15409347414970398, 0.022111479192972183, 0.019418248906731606, 0.31735506653785706, -0.16825173795223236, -0.015135605819523335, -0.1085427775979042, -0.017316939309239388, 0.04183628037571907, 0.32061049342155457, -0.2377510368824005, 0.016812697052955627, 0.0043523660860955715, 0.003725779475644231, 0.02343558706343174, 0.2458324134349823, 0.24921196699142456, -0.0854475274682045, 0.8376853466033936, -0.008760469034314156, 0.0007550062146037817, -0.0029241510201245546, 0.250973641872406, -0.25960227847099304, 0.08001866936683655, 0.800809919834137, -0.007358314469456673, 0.0010546118719503284, 0.0014980281703174114]} +{"t": 0.7205, "q": [-0.15411052107810974, 0.02210295759141445, 0.019404856488108635, 0.3173465430736542, -0.16825173795223236, -0.015135605819523335, -0.1085427775979042, -0.017308415845036507, 0.04180949926376343, 0.32061049342155457, -0.23775121569633484, 0.016841387376189232, 0.004312190227210522, 0.0037255820352584124, 0.02367350645363331, 0.24579645693302155, 0.24921196699142456, -0.0854475274682045, 0.8376853466033936, -0.008772453293204308, 0.0007669904152862728, -0.0029361352790147066, 0.250973641872406, -0.25960227847099304, 0.080030657351017, 0.800809919834137, -0.007346330210566521, 0.0010665960144251585, 0.0015100124292075634]} +{"t": 0.7374, "q": [-0.15410199761390686, 0.02208591252565384, 0.019431641325354576, 0.3173380196094513, -0.16825173795223236, -0.015135605819523335, -0.10853425413370132, -0.017299894243478775, 0.04179610684514046, 0.32061901688575745, -0.23775537312030792, 0.016834240406751633, 0.004298798739910126, 0.0037329725455492735, 0.023859217762947083, 0.24582043290138245, 0.24921196699142456, -0.0854235589504242, 0.8376973271369934, -0.008796420879662037, 0.0007669904152862728, -0.0029001825023442507, 0.250973641872406, -0.2595902979373932, 0.0800066888332367, 0.8008219003677368, -0.007334345951676369, 0.0010665960144251585, 0.0015100124292075634]} +{"t": 0.7541, "q": [-0.15409347414970398, 0.022120002657175064, 0.019404856488108635, 0.3173465430736542, -0.16825173795223236, -0.015135605819523335, -0.10853425413370132, -0.017308415845036507, 0.04180949926376343, 0.3206360638141632, -0.23774272203445435, 0.016826990991830826, 0.0042854067869484425, 0.00374784879386425, 0.024116452783346176, 0.2458084374666214, 0.24922394752502441, -0.0854235589504242, 0.8376613855361938, -0.00878443755209446, 0.0007669904152862728, -0.0029121667612344027, 0.2509976029396057, -0.25960227847099304, 0.0800066888332367, 0.8008338809013367, -0.007346330210566521, 0.0010665960144251585, 0.0015100124292075634]} +{"t": 0.7708, "q": [-0.15409347414970398, 0.02210295759141445, 0.019431641325354576, 0.31735506653785706, -0.16825173795223236, -0.015135605819523335, -0.10851720720529556, -0.017316939309239388, 0.04183628037571907, 0.3206445872783661, -0.2377469688653946, 0.016834188252687454, 0.004272014833986759, 0.003732596058398485, 0.024326125159859657, 0.2458324134349823, 0.24922394752502441, -0.0854475274682045, 0.8376613855361938, -0.008772453293204308, 0.0007789746159687638, -0.0028881982434540987, 0.25098562240600586, -0.25957831740379333, 0.0800066888332367, 0.8008338809013367, -0.007358314469456673, 0.0010665960144251585, 0.0014740596525371075]} +{"t": 0.7876, "q": [-0.1540849506855011, 0.022137045860290527, 0.019418248906731606, 0.31735506653785706, -0.16825173795223236, -0.015135605819523335, -0.10853425413370132, -0.017308415845036507, 0.04179610684514046, 0.32061901688575745, -0.23774687945842743, 0.016819844022393227, 0.004338974133133888, 0.0036721110809594393, 0.024516860023140907, 0.2458084374666214, 0.24921196699142456, -0.08543553948402405, 0.8376973271369934, -0.00878443755209446, 0.0007789746159687638, -0.0029001825023442507, 0.25098562240600586, -0.2595902979373932, 0.07999470084905624, 0.8008338809013367, -0.007358314469456673, 0.0010665960144251585, 0.0014980281703174114]} +{"t": 0.8043, "q": [-0.15407642722129822, 0.022128524258732796, 0.019418248906731606, 0.31732097268104553, -0.16825173795223236, -0.015135605819523335, -0.10853425413370132, -0.017316939309239388, 0.04179610684514046, 0.32061901688575745, -0.23774687945842743, 0.016819844022393227, 0.004272014833986759, 0.00362671772018075, 0.024745453149080276, 0.24579645693302155, 0.24922394752502441, -0.08543553948402405, 0.8376853466033936, -0.00878443755209446, 0.0007669904152862728, -0.0029121667612344027, 0.250973641872406, -0.25960227847099304, 0.0800066888332367, 0.8008338809013367, -0.007346330210566521, 0.0010665960144251585, 0.0014860439114272594]} +{"t": 0.821, "q": [-0.15409347414970398, 0.022111479192972183, 0.019404856488108635, 0.3173294961452484, -0.1682518571615219, -0.015149744227528572, -0.10852573066949844, -0.017308415845036507, 0.04179610684514046, 0.32061901688575745, -0.23775112628936768, 0.016827041283249855, 0.004298798739910126, 0.0035964748822152615, 0.024945177137851715, 0.2457844763994217, 0.24922394752502441, -0.0854235589504242, 0.8376973271369934, -0.008736500516533852, 0.0007430219557136297, -0.0029361352790147066, 0.2509257197380066, -0.2596142590045929, 0.0800066888332367, 0.8008338809013367, -0.007358314469456673, 0.0010665960144251585, 0.0015100124292075634]} +{"t": 0.8377, "q": [-0.15411052107810974, 0.022137045860290527, 0.019418248906731606, 0.3173294961452484, -0.16825173795223236, -0.015135605819523335, -0.10853425413370132, -0.017316939309239388, 0.04179610684514046, 0.3206275403499603, -0.23774272203445435, 0.016826990991830826, 0.004325582180172205, 0.0035964075941592455, 0.025106826797127724, 0.2458084374666214, 0.24922394752502441, -0.08545950800180435, 0.8376973271369934, -0.008772453293204308, 0.0007789746159687638, -0.0029241510201245546, 0.2509017288684845, -0.25960227847099304, 0.0800066888332367, 0.8008219003677368, -0.007346330210566521, 0.0010665960144251585, 0.0015100124292075634]} +{"t": 0.8545, "q": [-0.15411052107810974, 0.022137045860290527, 0.019418248906731606, 0.31730392575263977, -0.16826030611991882, -0.015135662630200386, -0.10852573066949844, -0.017299894243478775, 0.04178271442651749, 0.3206360638141632, -0.23775121569633484, 0.016841387376189232, 0.004312190227210522, 0.0035963489208370447, 0.02524961531162262, 0.24579645693302155, 0.24921196699142456, -0.0854714959859848, 0.8376613855361938, -0.008772453293204308, 0.0007550062146037817, -0.0029121667612344027, 0.2509017288684845, -0.2595902979373932, 0.07999470084905624, 0.8008338809013367, -0.007358314469456673, 0.0010785802733153105, 0.0014860439114272594]} +{"t": 0.8712, "q": [-0.15410199761390686, 0.022137045860290527, 0.019418248906731606, 0.31730392575263977, -0.16825173795223236, -0.015135605819523335, -0.10851720720529556, -0.017308415845036507, 0.04179610684514046, 0.3206275403499603, -0.2377428114414215, 0.016841335222125053, 0.004338974133133888, 0.0036339983344078064, 0.025368575006723404, 0.2457844763994217, 0.24921196699142456, -0.0854475274682045, 0.8376973271369934, -0.008772453293204308, 0.0007909588748589158, -0.0029361352790147066, 0.2509257197380066, -0.25960227847099304, 0.07999470084905624, 0.8008338809013367, -0.007346330210566521, 0.0010665960144251585, 0.0015100124292075634]} +{"t": 0.8879, "q": [-0.15411052107810974, 0.022137045860290527, 0.019418248906731606, 0.3172954022884369, -0.16826030611991882, -0.015135662630200386, -0.10850869119167328, -0.017299894243478775, 0.04179610684514046, 0.3206445872783661, -0.23774687945842743, 0.016819844022393227, 0.004325582180172205, 0.003664111252874136, 0.02548278495669365, 0.2457844763994217, 0.24922394752502441, -0.0854475274682045, 0.8376973271369934, -0.00878443755209446, 0.0007669904152862728, -0.0029121667612344027, 0.2509017288684845, -0.2595902979373932, 0.0800066888332367, 0.8008219003677368, -0.007346330210566521, 0.0010665960144251585, 0.0015219965716823936]} +{"t": 0.9048, "q": [-0.15411904454231262, 0.02214556746184826, 0.019431641325354576, 0.3172954022884369, -0.16825608909130096, -0.015142703428864479, -0.10850869119167328, -0.017299894243478775, 0.041769322007894516, 0.3206275403499603, -0.23774704337120056, 0.01684853434562683, 0.0042854067869484425, 0.0036339331418275833, 0.02553042769432068, 0.24579645693302155, 0.24918799102306366, -0.0854714959859848, 0.8376973271369934, -0.008796420879662037, 0.0007669904152862728, -0.0029121667612344027, 0.2509017288684845, -0.25960227847099304, 0.07998272031545639, 0.8008338809013367, -0.007358314469456673, 0.0011025486746802926, 0.0014980281703174114]} +{"t": 0.9215, "q": [-0.15410199761390686, 0.022111479192972183, 0.019404856488108635, 0.31726983189582825, -0.16826030611991882, -0.015135662630200386, -0.10850869119167328, -0.017299894243478775, 0.04179610684514046, 0.3206275403499603, -0.23774687945842743, 0.016819844022393227, 0.004312190227210522, 0.003671608865261078, 0.02558273822069168, 0.2457844763994217, 0.24922394752502441, -0.0854475274682045, 0.8377093076705933, -0.008772453293204308, 0.0007909588748589158, -0.0029241510201245546, 0.2509017288684845, -0.25960227847099304, 0.07998272031545639, 0.8008338809013367, -0.007358314469456673, 0.0011145329335704446, 0.0014860439114272594]} +{"t": 0.9383, "q": [-0.15411052107810974, 0.02214556746184826, 0.019404856488108635, 0.3172954022884369, -0.16825173795223236, -0.015135605819523335, -0.10850869119167328, -0.017299894243478775, 0.041769322007894516, 0.3206360638141632, -0.23774272203445435, 0.016826990991830826, 0.004325582180172205, 0.0036263682413846254, 0.025592323392629623, 0.2457844763994217, 0.24921196699142456, -0.08545950800180435, 0.8376973271369934, -0.008760469034314156, 0.0007550062146037817, -0.0029241510201245546, 0.2509017288684845, -0.25960227847099304, 0.0800066888332367, 0.8008338809013367, -0.007358314469456673, 0.0011025486746802926, 0.0015100124292075634]} +{"t": 0.9551, "q": [-0.15410199761390686, 0.02214556746184826, 0.019391464069485664, 0.3172954022884369, -0.16825173795223236, -0.015135605819523335, -0.1085001677274704, -0.017308415845036507, 0.041755929589271545, 0.3206360638141632, -0.2377554476261139, 0.01684858649969101, 0.004298798739910126, 0.003648968180641532, 0.025616062805056572, 0.2457844763994217, 0.24922394752502441, -0.08545950800180435, 0.8376973271369934, -0.008760469034314156, 0.0007789746159687638, -0.0029241510201245546, 0.2509017288684845, -0.25960227847099304, 0.080030657351017, 0.8008338809013367, -0.007358314469456673, 0.0011145329335704446, 0.0014740596525371075]} +{"t": 0.9721, "q": [-0.15410199761390686, 0.02214556746184826, 0.019404856488108635, 0.317286878824234, -0.1682475209236145, -0.015142646618187428, -0.10850869119167328, -0.017308415845036507, 0.041769322007894516, 0.3206360638141632, -0.23775121569633484, 0.016841387376189232, 0.004338974133133888, 0.0036565016489475965, 0.025620799511671066, 0.2457844763994217, 0.2491999864578247, -0.08548347651958466, 0.8376853466033936, -0.00878443755209446, 0.0007669904152862728, -0.0028881982434540987, 0.2509017288684845, -0.25960227847099304, 0.07999470084905624, 0.8008219003677368, -0.007358314469456673, 0.0011025486746802926, 0.0014980281703174114]} +{"t": 0.9888, "q": [-0.15410199761390686, 0.02214556746184826, 0.019404856488108635, 0.317286878824234, -0.16825173795223236, -0.015135605819523335, -0.10850869119167328, -0.017291372641921043, 0.04178271442651749, 0.32061901688575745, -0.23775537312030792, 0.016834240406751633, 0.004298798739910126, 0.0036715532187372446, 0.025649284943938255, 0.2457605004310608, 0.24922394752502441, -0.0854475274682045, 0.8376973271369934, -0.008760469034314156, 0.0007669904152862728, -0.0029121667612344027, 0.2509017288684845, -0.2595902979373932, 0.0800066888332367, 0.8008458614349365, -0.007358314469456673, 0.0011025486746802926, 0.0014740596525371075]} +{"t": 1.0055, "q": [-0.15411904454231262, 0.02210295759141445, 0.019391464069485664, 0.317286878824234, -0.16826030611991882, -0.015135662630200386, -0.1085001677274704, -0.017299894243478775, 0.041769322007894516, 0.3205934464931488, -0.23774272203445435, 0.016826990991830826, 0.004312190227210522, 0.003694169921800494, 0.02564448118209839, 0.24577249586582184, 0.24922394752502441, -0.0854475274682045, 0.8376973271369934, -0.008772453293204308, 0.0007789746159687638, -0.0029121667612344027, 0.2509017288684845, -0.25960227847099304, 0.07997073233127594, 0.8008338809013367, -0.007358314469456673, 0.0011025486746802926, 0.0014860439114272594]} +{"t": 1.0225, "q": [-0.15410199761390686, 0.022120002657175064, 0.019378073513507843, 0.31731244921684265, -0.16825173795223236, -0.015135605819523335, -0.10849164426326752, -0.017282849177718163, 0.041769322007894516, 0.3206360638141632, -0.2377469688653946, 0.016834188252687454, 0.004312190227210522, 0.0036866203881800175, 0.025658758357167244, 0.24573653936386108, 0.24921196699142456, -0.0854475274682045, 0.8376853466033936, -0.008772453293204308, 0.0007789746159687638, -0.0029241510201245546, 0.2509017288684845, -0.25960227847099304, 0.07998272031545639, 0.8008458614349365, -0.007358314469456673, 0.0011145329335704446, 0.0014860439114272594]} +{"t": 1.0393, "q": [-0.15411052107810974, 0.02215409092605114, 0.019404856488108635, 0.3172954022884369, -0.16825173795223236, -0.015135605819523335, -0.10848312079906464, -0.017299894243478775, 0.041755929589271545, 0.3206360638141632, -0.23773856461048126, 0.016834136098623276, 0.004245230928063393, 0.0036790708545595407, 0.0256730355322361, 0.24573653936386108, 0.24922394752502441, -0.0854475274682045, 0.8376973271369934, -0.008796420879662037, 0.0007909588748589158, -0.0029241510201245546, 0.2509017288684845, -0.2595902979373932, 0.080030657351017, 0.8008338809013367, -0.007358314469456673, 0.0010905645322054625, 0.0014740596525371075]} +{"t": 1.056, "q": [-0.15410199761390686, 0.02216261252760887, 0.019391464069485664, 0.31730392575263977, -0.16825173795223236, -0.015135605819523335, -0.1085001677274704, -0.0172658059746027, 0.041755929589271545, 0.3206360638141632, -0.23774687945842743, 0.016819844022393227, 0.0042854067869484425, 0.0036865966394543648, 0.02568727917969227, 0.24573653936386108, 0.24922394752502441, -0.0854475274682045, 0.8376973271369934, -0.008772453293204308, 0.0007789746159687638, -0.0029121667612344027, 0.2509017288684845, -0.25960227847099304, 0.0800066888332367, 0.8008219003677368, -0.007358314469456673, 0.0011145329335704446, 0.0014860439114272594]} +{"t": 1.0728, "q": [-0.15410199761390686, 0.02216261252760887, 0.019378073513507843, 0.31730392575263977, -0.16825173795223236, -0.015135605819523335, -0.10849164426326752, -0.017282849177718163, 0.04178271442651749, 0.32065311074256897, -0.2377469688653946, 0.016834188252687454, 0.004258622881025076, 0.003694114275276661, 0.025711027905344963, 0.24571256339550018, 0.2491999864578247, -0.0854475274682045, 0.8377093076705933, -0.008772453293204308, 0.0007789746159687638, -0.0029121667612344027, 0.25088974833488464, -0.25957831740379333, 0.0800066888332367, 0.8008338809013367, -0.007358314469456673, 0.0010785802733153105, 0.0014860439114272594]} +{"t": 1.0897, "q": [-0.15410199761390686, 0.02216261252760887, 0.019378073513507843, 0.31731244921684265, -0.16824738681316376, -0.01512850821018219, -0.10848312079906464, -0.0172658059746027, 0.04178271442651749, 0.32061901688575745, -0.2377469688653946, 0.016834188252687454, 0.004272014833986759, 0.003686564741656184, 0.02572530508041382, 0.24572455883026123, 0.24922394752502441, -0.0854475274682045, 0.8376973271369934, -0.008796420879662037, 0.0007669904152862728, -0.0029001825023442507, 0.2509017288684845, -0.25960227847099304, 0.0800066888332367, 0.8008338809013367, -0.007346330210566521, 0.0010905645322054625, 0.0014860439114272594]} +{"t": 1.1064, "q": [-0.15411052107810974, 0.02214556746184826, 0.019378073513507843, 0.31732097268104553, -0.16825173795223236, -0.015135605819523335, -0.10849164426326752, -0.017308415845036507, 0.041755929589271545, 0.3206445872783661, -0.23775537312030792, 0.016834240406751633, 0.004312190227210522, 0.0036940984427928925, 0.025730041787028313, 0.24572455883026123, 0.24922394752502441, -0.0854475274682045, 0.8376973271369934, -0.008796420879662037, 0.0007789746159687638, -0.0029121667612344027, 0.2509017288684845, -0.25960227847099304, 0.0800066888332367, 0.8008458614349365, -0.007370298728346825, 0.0011025486746802926, 0.0014620755100622773]} +{"t": 1.1232, "q": [-0.15411904454231262, 0.02216261252760887, 0.019378073513507843, 0.317286878824234, -0.16825608909130096, -0.015142703428864479, -0.10848312079906464, -0.017291372641921043, 0.04178271442651749, 0.32065311074256897, -0.23775537312030792, 0.016834240406751633, 0.004272014833986759, 0.0037091656122356653, 0.0257395152002573, 0.24571256339550018, 0.24922394752502441, -0.0854714959859848, 0.8376973271369934, -0.008772453293204308, 0.0007789746159687638, -0.0029121667612344027, 0.2509017288684845, -0.25960227847099304, 0.0800066888332367, 0.8008458614349365, -0.007370298728346825, 0.0011025486746802926, 0.0014620755100622773]} +{"t": 1.1399, "q": [-0.15411052107810974, 0.022128524258732796, 0.019391464069485664, 0.31732097268104553, -0.1682475209236145, -0.015142646618187428, -0.10848312079906464, -0.017299894243478775, 0.04178271442651749, 0.32067015767097473, -0.2377554476261139, 0.01684858649969101, 0.004298798739910126, 0.003701631911098957, 0.025734778493642807, 0.24572455883026123, 0.24922394752502441, -0.08548347651958466, 0.8376973271369934, -0.008760469034314156, 0.0007789746159687638, -0.0029121667612344027, 0.2509257197380066, -0.25960227847099304, 0.0800066888332367, 0.8008338809013367, -0.007370298728346825, 0.0010905645322054625, 0.0014860439114272594]} +{"t": 1.1566, "q": [-0.1541275680065155, 0.02216261252760887, 0.019391464069485664, 0.3173294961452484, -0.16825595498085022, -0.015128565020859241, -0.10848312079906464, -0.017282849177718163, 0.041742537170648575, 0.32066163420677185, -0.23774272203445435, 0.016826990991830826, 0.004272014833986759, 0.003716689068824053, 0.02575375698506832, 0.24573653936386108, 0.24921196699142456, -0.0854475274682045, 0.8377212882041931, -0.008772453293204308, 0.0007669904152862728, -0.0029241510201245546, 0.2509017288684845, -0.25960227847099304, 0.07999470084905624, 0.8008458614349365, -0.007370298728346825, 0.0011145329335704446, 0.0014980281703174114]} +{"t": 1.1735, "q": [-0.15411904454231262, 0.02216261252760887, 0.019378073513507843, 0.31731244921684265, -0.16825173795223236, -0.015135605819523335, -0.10848312079906464, -0.017299894243478775, 0.0417291484773159, 0.32066163420677185, -0.23774272203445435, 0.016826990991830826, 0.004272014833986759, 0.003709157695993781, 0.025749022141098976, 0.24573653936386108, 0.24922394752502441, -0.08548347651958466, 0.8377093076705933, -0.008772453293204308, 0.0007669904152862728, -0.0029241510201245546, 0.2509017288684845, -0.2595902979373932, 0.07999470084905624, 0.8008458614349365, -0.007358314469456673, 0.0011025486746802926, 0.0014860439114272594]} +{"t": 1.1902, "q": [-0.15407642722129822, 0.022171134129166603, 0.019378073513507843, 0.3173806369304657, -0.16824328899383545, -0.015149695798754692, -0.10846607387065887, -0.017299894243478775, 0.041742537170648575, 0.32066163420677185, -0.23774272203445435, 0.016826990991830826, 0.004298798739910126, 0.0037242225371301174, 0.025758491829037666, 0.24570058286190033, 0.24922394752502441, -0.0854954645037651, 0.8376853466033936, -0.008772453293204308, 0.0007669904152862728, -0.0029001825023442507, 0.2509017288684845, -0.25960227847099304, 0.0800066888332367, 0.8008458614349365, -0.007358314469456673, 0.0011145329335704446, 0.0015100124292075634]} +{"t": 1.2069, "q": [-0.15410199761390686, 0.022128524258732796, 0.019364681094884872, 0.31731244921684265, -0.16825595498085022, -0.015128565020859241, -0.10848312079906464, -0.017299894243478775, 0.04178271442651749, 0.32065311074256897, -0.23775112628936768, 0.016827041283249855, 0.004245230928063393, 0.003739289939403534, 0.025767965242266655, 0.24572455883026123, 0.24922394752502441, -0.0854475274682045, 0.8377093076705933, -0.008760469034314156, 0.0007909588748589158, -0.0029001825023442507, 0.2509017288684845, -0.2595902979373932, 0.0800066888332367, 0.8008458614349365, -0.007358314469456673, 0.0011025486746802926, 0.0014860439114272594]} +{"t": 1.2236, "q": [-0.15411904454231262, 0.02216261252760887, 0.019378073513507843, 0.31732097268104553, -0.16826030611991882, -0.015135662630200386, -0.10846607387065887, -0.017299894243478775, 0.04178271442651749, 0.32065311074256897, -0.23775537312030792, 0.016834240406751633, 0.004258622881025076, 0.003709139535203576, 0.025768034160137177, 0.24571256339550018, 0.24921196699142456, -0.0854714959859848, 0.8377212882041931, -0.008736500516533852, 0.0007789746159687638, -0.0029121667612344027, 0.2508777678012848, -0.25960227847099304, 0.0800066888332367, 0.8008458614349365, -0.007370298728346825, 0.0011145329335704446, 0.0014860439114272594]} +{"t": 1.2404, "q": [-0.15411052107810974, 0.022128524258732796, 0.019391464069485664, 0.3173294961452484, -0.16825595498085022, -0.015128565020859241, -0.10847459733486176, -0.017308415845036507, 0.041769322007894516, 0.3206360638141632, -0.23775112628936768, 0.016827041283249855, 0.004231838975101709, 0.003731732489541173, 0.025791749358177185, 0.24573653936386108, 0.24924792349338531, -0.0854475274682045, 0.8377212882041931, -0.008760469034314156, 0.0007669904152862728, -0.0029361352790147066, 0.2508777678012848, -0.2595902979373932, 0.07998272031545639, 0.8008458614349365, -0.007358314469456673, 0.0011025486746802926, 0.0014980281703174114]} +{"t": 1.2571, "q": [-0.15410199761390686, 0.022137045860290527, 0.019378073513507843, 0.3173380196094513, -0.16824738681316376, -0.01512850821018219, -0.10846607387065887, -0.017282849177718163, 0.041769322007894516, 0.3206445872783661, -0.23775537312030792, 0.016834240406751633, 0.004258622881025076, 0.003724166890606284, 0.02582504041492939, 0.24571256339550018, 0.24921196699142456, -0.0854714959859848, 0.8377093076705933, -0.008772453293204308, 0.0007669904152862728, -0.0029361352790147066, 0.2508777678012848, -0.25960227847099304, 0.0800066888332367, 0.8008578419685364, -0.007358314469456673, 0.0011145329335704446, 0.0014860439114272594]} +{"t": 1.2769, "q": [-0.1540849506855011, 0.02214556746184826, 0.019391464069485664, 0.3173465430736542, -0.16825173795223236, -0.015135605819523335, -0.10846607387065887, -0.017299894243478775, 0.04178271442651749, 0.3206360638141632, -0.23775960505008698, 0.01684143953025341, 0.004298798739910126, 0.0037467677611857653, 0.025839248672127724, 0.24572455883026123, 0.24918799102306366, -0.0854954645037651, 0.8377212882041931, -0.00878443755209446, 0.0007789746159687638, -0.0029001825023442507, 0.2508538067340851, -0.25957831740379333, 0.0800066888332367, 0.8008338809013367, -0.007358314469456673, 0.0011265171924605966, 0.0014740596525371075]} +{"t": 1.2936, "q": [-0.1540849506855011, 0.022179657593369484, 0.019378073513507843, 0.3173380196094513, -0.16825173795223236, -0.015135605819523335, -0.10848312079906464, -0.017299894243478775, 0.04180949926376343, 0.32061901688575745, -0.23775121569633484, 0.016841387376189232, 0.004258622881025076, 0.0037467440124601126, 0.025867769494652748, 0.24571256339550018, 0.24922394752502441, -0.0854714959859848, 0.837733268737793, -0.008796420879662037, 0.0007909588748589158, -0.0029241510201245546, 0.2508538067340851, -0.25960227847099304, 0.080030657351017, 0.8008458614349365, -0.007370298728346825, 0.0011145329335704446, 0.0014860439114272594]} +{"t": 1.3104, "q": [-0.15407642722129822, 0.022128524258732796, 0.019351288676261902, 0.3173465430736542, -0.16825173795223236, -0.015135605819523335, -0.10845755785703659, -0.017291372641921043, 0.04180949926376343, 0.32061901688575745, -0.23775121569633484, 0.016841387376189232, 0.004298798739910126, 0.0037391786463558674, 0.025901058688759804, 0.24572455883026123, 0.24922394752502441, -0.08550744503736496, 0.837733268737793, -0.00878443755209446, 0.0007789746159687638, -0.0029121667612344027, 0.2508298456668854, -0.25957831740379333, 0.080030657351017, 0.8008458614349365, -0.007358314469456673, 0.0011265171924605966, 0.0014980281703174114]} +{"t": 1.3272, "q": [-0.1540849506855011, 0.02210295759141445, 0.019378073513507843, 0.31735506653785706, -0.16825173795223236, -0.015135605819523335, -0.10848312079906464, -0.017299894243478775, 0.04178271442651749, 0.3206360638141632, -0.23774687945842743, 0.016819844022393227, 0.0042854067869484425, 0.003724087495356798, 0.02592010609805584, 0.24572455883026123, 0.24922394752502441, -0.0854714959859848, 0.8377093076705933, -0.008796420879662037, 0.0007669904152862728, -0.0029361352790147066, 0.2508298456668854, -0.25960227847099304, 0.07999470084905624, 0.8008458614349365, -0.007358314469456673, 0.0011145329335704446, 0.0014860439114272594]} +{"t": 1.344, "q": [-0.15410199761390686, 0.022120002657175064, 0.019378073513507843, 0.3173380196094513, -0.16823893785476685, -0.015142599120736122, -0.10848312079906464, -0.017308415845036507, 0.041769322007894516, 0.3206445872783661, -0.23775112628936768, 0.016827041283249855, 0.004231838975101709, 0.003724087495356798, 0.02592010609805584, 0.24570058286190033, 0.24921196699142456, -0.08548347651958466, 0.8377093076705933, -0.00882038939744234, 0.0007550062146037817, -0.0029241510201245546, 0.2508298456668854, -0.25960227847099304, 0.0800066888332367, 0.8008458614349365, -0.007358314469456673, 0.0011025486746802926, 0.0014740596525371075]} +{"t": 1.3607, "q": [-0.1540849506855011, 0.02215409092605114, 0.019378073513507843, 0.3173294961452484, -0.16825173795223236, -0.015135605819523335, -0.10847459733486176, -0.017299894243478775, 0.041769322007894516, 0.3206360638141632, -0.23774272203445435, 0.016826990991830826, 0.004298798739910126, 0.003724071430042386, 0.02593911997973919, 0.24572455883026123, 0.24922394752502441, -0.0854475274682045, 0.8377212882041931, -0.00882038939744234, 0.0007789746159687638, -0.002948119305074215, 0.2508298456668854, -0.2595902979373932, 0.07999470084905624, 0.8008458614349365, -0.007358314469456673, 0.0011385014513507485, 0.0014980281703174114]} +{"t": 1.3774, "q": [-0.15410199761390686, 0.02216261252760887, 0.019364681094884872, 0.31732097268104553, -0.16825173795223236, -0.015135605819523335, -0.10846607387065887, -0.017299894243478775, 0.041742537170648575, 0.3206360638141632, -0.23773856461048126, 0.016834136098623276, 0.0042854067869484425, 0.0037014547269791365, 0.025943925604224205, 0.24570058286190033, 0.24924792349338531, -0.08548347651958466, 0.837733268737793, -0.00882038939744234, 0.0007789746159687638, -0.0029361352790147066, 0.2508298456668854, -0.25960227847099304, 0.0800066888332367, 0.8008458614349365, -0.007370298728346825, 0.0011145329335704446, 0.0014740596525371075]} +{"t": 1.3941, "q": [-0.15411052107810974, 0.02216261252760887, 0.019378073513507843, 0.31731244921684265, -0.16825608909130096, -0.015142703428864479, -0.10847459733486176, -0.017282849177718163, 0.041769322007894516, 0.32065311074256897, -0.23775960505008698, 0.01684143953025341, 0.004312190227210522, 0.003724063513800502, 0.025948626920580864, 0.24568860232830048, 0.24922394752502441, -0.0854475274682045, 0.8377453088760376, -0.008796420879662037, 0.0007909588748589158, -0.0029241510201245546, 0.25081783533096313, -0.2595902979373932, 0.07998272031545639, 0.8008338809013367, -0.007358314469456673, 0.0011265171924605966, 0.0014860439114272594]} +{"t": 1.4111, "q": [-0.15410199761390686, 0.02215409092605114, 0.019378073513507843, 0.31731244921684265, -0.16825173795223236, -0.015135605819523335, -0.10846607387065887, -0.017299894243478775, 0.041755929589271545, 0.32061901688575745, -0.23775537312030792, 0.016834240406751633, 0.004258622881025076, 0.00373159721493721, 0.02595336362719536, 0.24568860232830048, 0.24922394752502441, -0.0854714959859848, 0.8377572894096375, -0.008796420879662037, 0.0007909588748589158, -0.0029361352790147066, 0.2508298456668854, -0.25960227847099304, 0.07998272031545639, 0.8008338809013367, -0.007358314469456673, 0.0011145329335704446, 0.0014980281703174114]} +{"t": 1.4278, "q": [-0.15411052107810974, 0.022171134129166603, 0.019364681094884872, 0.317286878824234, -0.16825173795223236, -0.015135605819523335, -0.10846607387065887, -0.017291372641921043, 0.041755929589271545, 0.3206360638141632, -0.2377469688653946, 0.016834188252687454, 0.004258622881025076, 0.003746664384379983, 0.025962837040424347, 0.24568860232830048, 0.24921196699142456, -0.08548347651958466, 0.8377812504768372, -0.008796420879662037, 0.0007669904152862728, -0.0029361352790147066, 0.2508298456668854, -0.25960227847099304, 0.0800066888332367, 0.8008338809013367, -0.007358314469456673, 0.0011265171924605966, 0.0014980281703174114]} +{"t": 1.4445, "q": [-0.15411052107810974, 0.022137045860290527, 0.019378073513507843, 0.31730392575263977, -0.16825173795223236, -0.015135605819523335, -0.10846607387065887, -0.017282849177718163, 0.041769322007894516, 0.3206360638141632, -0.23775121569633484, 0.016841387376189232, 0.004272014833986759, 0.0037316051311790943, 0.025943856686353683, 0.24568860232830048, 0.24922394752502441, -0.0854714959859848, 0.8377572894096375, -0.008796420879662037, 0.0007669904152862728, -0.002948119305074215, 0.2508298456668854, -0.25960227847099304, 0.080030657351017, 0.8008458614349365, -0.007358314469456673, 0.0011265171924605966, 0.0014860439114272594]} +{"t": 1.4612, "q": [-0.15411904454231262, 0.022179657593369484, 0.019378073513507843, 0.31730392575263977, -0.16825173795223236, -0.015135605819523335, -0.10846607387065887, -0.017299894243478775, 0.041755929589271545, 0.32061901688575745, -0.23775112628936768, 0.016827041283249855, 0.004298798739910126, 0.003731589298695326, 0.025962870568037033, 0.24568860232830048, 0.24922394752502441, -0.0854475274682045, 0.8377812504768372, -0.00882038939744234, 0.0007669904152862728, -0.002972087822854519, 0.2508298456668854, -0.25960227847099304, 0.07998272031545639, 0.8008578419685364, -0.007358314469456673, 0.0011265171924605966, 0.0015100124292075634]} +{"t": 1.478, "q": [-0.15409347414970398, 0.02215409092605114, 0.019364681094884872, 0.3173294961452484, -0.16825595498085022, -0.015128565020859241, -0.10846607387065887, -0.017282849177718163, 0.041769322007894516, 0.3206360638141632, -0.23775537312030792, 0.016834240406751633, 0.0042854067869484425, 0.0037391309160739183, 0.025958100333809853, 0.24568860232830048, 0.2491999864578247, -0.0854475274682045, 0.8377572894096375, -0.00882038939744234, 0.0007669904152862728, -0.0029241510201245546, 0.2508298456668854, -0.2595902979373932, 0.0800066888332367, 0.8008458614349365, -0.007358314469456673, 0.0011145329335704446, 0.0014740596525371075]} +{"t": 1.4947, "q": [-0.15410199761390686, 0.02215409092605114, 0.019378073513507843, 0.31732097268104553, -0.16825608909130096, -0.015142703428864479, -0.10847459733486176, -0.017291372641921043, 0.04178271442651749, 0.3206360638141632, -0.23775121569633484, 0.016841387376189232, 0.004272014833986759, 0.003731581149622798, 0.025972377508878708, 0.24570058286190033, 0.24922394752502441, -0.0854714959859848, 0.8377572894096375, -0.008844357915222645, 0.0007789746159687638, -0.0029361352790147066, 0.2508298456668854, -0.25957831740379333, 0.07999470084905624, 0.8008338809013367, -0.007358314469456673, 0.0011265171924605966, 0.0014740596525371075]} +{"t": 1.5115, "q": [-0.1540849506855011, 0.02215409092605114, 0.019364681094884872, 0.31732097268104553, -0.16825173795223236, -0.015135605819523335, -0.10846607387065887, -0.017299894243478775, 0.041769322007894516, 0.32061901688575745, -0.23775537312030792, 0.016834240406751633, 0.004298798739910126, 0.003731581149622798, 0.025972377508878708, 0.24568860232830048, 0.24922394752502441, -0.0854475274682045, 0.8377572894096375, -0.00882038939744234, 0.0007669904152862728, -0.0029121667612344027, 0.25081783533096313, -0.25960227847099304, 0.0800066888332367, 0.8008458614349365, -0.007358314469456673, 0.0011504855938255787, 0.0014860439114272594]} +{"t": 1.5282, "q": [-0.15410199761390686, 0.02216261252760887, 0.019364681094884872, 0.31732097268104553, -0.16825608909130096, -0.015142703428864479, -0.10846607387065887, -0.017282849177718163, 0.041769322007894516, 0.3206275403499603, -0.23775537312030792, 0.016834240406751633, 0.004312190227210522, 0.003731581149622798, 0.025972377508878708, 0.24568860232830048, 0.24922394752502441, -0.0854714959859848, 0.8377812504768372, -0.008796420879662037, 0.0007789746159687638, -0.0029121667612344027, 0.25075793266296387, -0.2595902979373932, 0.08001866936683655, 0.8008338809013367, -0.007346330210566521, 0.0011504855938255787, 0.0014980281703174114]} +{"t": 1.5449, "q": [-0.15409347414970398, 0.02214556746184826, 0.019378073513507843, 0.3173294961452484, -0.16824738681316376, -0.01512850821018219, -0.10846607387065887, -0.017299894243478775, 0.041755929589271545, 0.3206360638141632, -0.23775969445705414, 0.016855783760547638, 0.004338974133133888, 0.0037240476813167334, 0.025967640802264214, 0.24566462635993958, 0.24922394752502441, -0.08548347651958466, 0.8377572894096375, -0.00882038939744234, 0.0007669904152862728, -0.0029121667612344027, 0.2505781650543213, -0.25957831740379333, 0.0800066888332367, 0.8008338809013367, -0.007346330210566521, 0.0011385014513507485, 0.0014620755100622773]} +{"t": 1.5616, "q": [-0.15411052107810974, 0.022120002657175064, 0.019378073513507843, 0.31732097268104553, -0.16825595498085022, -0.015128565020859241, -0.10846607387065887, -0.017299894243478775, 0.041742537170648575, 0.32061901688575745, -0.237759530544281, 0.016827093437314034, 0.004298798739910126, 0.003716513980180025, 0.02596290409564972, 0.24564066529273987, 0.24922394752502441, -0.0854954645037651, 0.8377572894096375, -0.00882038939744234, 0.0007789746159687638, -0.0029361352790147066, 0.2501826882362366, -0.25957831740379333, 0.080030657351017, 0.8008458614349365, -0.007346330210566521, 0.0011504855938255787, 0.0014740596525371075]} +{"t": 1.5784, "q": [-0.15411052107810974, 0.022137045860290527, 0.019391464069485664, 0.31732097268104553, -0.16825173795223236, -0.015135605819523335, -0.10846607387065887, -0.01732546091079712, 0.04178271442651749, 0.3206275403499603, -0.2377510368824005, 0.016812697052955627, 0.004312190227210522, 0.0037240555975586176, 0.02595813386142254, 0.24554479122161865, 0.2491999864578247, -0.08550744503736496, 0.8377572894096375, -0.008796420879662037, 0.0007789746159687638, -0.0029121667612344027, 0.24966736137866974, -0.25957831740379333, 0.08001866936683655, 0.8008219003677368, -0.007358314469456673, 0.0011624698527157307, 0.0014860439114272594]} +{"t": 1.5953, "q": [-0.15411052107810974, 0.02214556746184826, 0.019404856488108635, 0.3172954022884369, -0.16825173795223236, -0.015135605819523335, -0.10846607387065887, -0.01732546091079712, 0.04178271442651749, 0.3206019699573517, -0.237759530544281, 0.016827093437314034, 0.004419325385242701, 0.003716513980180025, 0.02596290409564972, 0.2454608976840973, 0.24921196699142456, -0.0854954645037651, 0.8377812504768372, -0.008832373656332493, 0.0007789746159687638, -0.002948119305074215, 0.2490801364183426, -0.25957831740379333, 0.07999470084905624, 0.800809919834137, -0.007358314469456673, 0.0011744541116058826, 0.0014860439114272594]} +{"t": 1.612, "q": [-0.15411052107810974, 0.02214556746184826, 0.019364681094884872, 0.317286878824234, -0.16825173795223236, -0.015135605819523335, -0.10845755785703659, -0.017308415845036507, 0.041755929589271545, 0.32057642936706543, -0.23775121569633484, 0.016841387376189232, 0.004486285150051117, 0.0036712735891342163, 0.025982018560171127, 0.24542495608329773, 0.2491999864578247, -0.08548347651958466, 0.8377572894096375, -0.008832373656332493, 0.0007550062146037817, -0.002948119305074215, 0.24849291145801544, -0.25957831740379333, 0.07999470084905624, 0.8008338809013367, -0.007358314469456673, 0.0011864382540807128, 0.0014980281703174114]} +{"t": 1.6287, "q": [-0.15410199761390686, 0.022171134129166603, 0.01933789812028408, 0.31730392575263977, -0.16825173795223236, -0.015135605819523335, -0.10844051092863083, -0.017299894243478775, 0.0417291484773159, 0.3205849528312683, -0.23776385188102722, 0.01684863679111004, 0.005008568987250328, 0.0035732565447688103, 0.026015514507889748, 0.24547287821769714, 0.24921196699142456, -0.08548347651958466, 0.8378052115440369, -0.008844357915222645, 0.0007669904152862728, -0.0029001825023442507, 0.24783377349376678, -0.25957831740379333, 0.07995875179767609, 0.8008338809013367, -0.007370298728346825, 0.0011504855938255787, 0.0014860439114272594]} +{"t": 1.6456, "q": [-0.1541275680065155, 0.02216261252760887, 0.019284330308437347, 0.31731244921684265, -0.16825608909130096, -0.015142703428864479, -0.10844051092863083, -0.017316939309239388, 0.04166218638420105, 0.320533812046051, -0.23775537312030792, 0.016834240406751633, 0.005343366414308548, 0.0035355088766664267, 0.026086898520588875, 0.2455807477235794, 0.24921196699142456, -0.08551943302154541, 0.8378291726112366, -0.008832373656332493, 0.0007669904152862728, -0.0029361352790147066, 0.24731846153736115, -0.25957831740379333, 0.07997073233127594, 0.8008219003677368, -0.007370298728346825, 0.0011864382540807128, 0.0014860439114272594]} +{"t": 1.6623, "q": [-0.15411904454231262, 0.022128524258732796, 0.019244154915213585, 0.31732097268104553, -0.16825173795223236, -0.015135605819523335, -0.10843198746442795, -0.01732546091079712, 0.04164879396557808, 0.32055938243865967, -0.237759530544281, 0.016827093437314034, 0.005530852824449539, 0.003542994847521186, 0.026148676872253418, 0.2457844763994217, 0.24916402995586395, -0.08551943302154541, 0.83793705701828, -0.00882038939744234, 0.0007789746159687638, -0.0029241510201245546, 0.24688702821731567, -0.25957831740379333, 0.080030657351017, 0.8008219003677368, -0.007370298728346825, 0.0011744541116058826, 0.0014740596525371075]} +{"t": 1.679, "q": [-0.1541275680065155, 0.02214556746184826, 0.019217370077967644, 0.31726983189582825, -0.16825173795223236, -0.015135605819523335, -0.10844051092863083, -0.01732546091079712, 0.041595228016376495, 0.3205423355102539, -0.23775537312030792, 0.016834240406751633, 0.00571833923459053, 0.0035504410043358803, 0.026257986202836037, 0.2458324134349823, 0.2491999864578247, -0.08553141355514526, 0.8380329012870789, -0.008808405138552189, 0.0008029430755414069, -0.0029241510201245546, 0.24663536250591278, -0.25957831740379333, 0.0800066888332367, 0.8007979393005371, -0.007370298728346825, 0.0011864382540807128, 0.0014740596525371075]} +{"t": 1.6958, "q": [-0.15413609147071838, 0.02216261252760887, 0.019190587103366852, 0.31722721457481384, -0.16825173795223236, -0.015135605819523335, -0.10843198746442795, -0.017316939309239388, 0.041555050760507584, 0.32052528858184814, -0.23775537312030792, 0.016834240406751633, 0.0058388663455843925, 0.003573026042431593, 0.02629120834171772, 0.24590431153774261, 0.2491999864578247, -0.0854954645037651, 0.8380928039550781, -0.008796420879662037, 0.0007789746159687638, -0.0029361352790147066, 0.24649155139923096, -0.25957831740379333, 0.0800066888332367, 0.800809919834137, -0.007370298728346825, 0.0011744541116058826, 0.0014860439114272594]} +{"t": 1.7125, "q": [-0.15414461493492126, 0.02214556746184826, 0.01916380226612091, 0.31722721457481384, -0.16824738681316376, -0.01512850821018219, -0.10841494798660278, -0.017308415845036507, 0.041501484811306, 0.3205423355102539, -0.23776385188102722, 0.01684863679111004, 0.0058388663455843925, 0.003557926742359996, 0.02631976269185543, 0.24579645693302155, 0.24923592805862427, -0.08551943302154541, 0.8381407856941223, -0.00882038939744234, 0.0007789746159687638, -0.0029241510201245546, 0.2464076578617096, -0.2595902979373932, 0.07997073233127594, 0.8008219003677368, -0.007406251039355993, 0.0011984225129708648, 0.0015100124292075634]} +{"t": 1.7292, "q": [-0.15411052107810974, 0.02216261252760887, 0.01915041171014309, 0.3171846270561218, -0.16825173795223236, -0.015135605819523335, -0.1084064245223999, -0.017257284373044968, 0.04152826964855194, 0.32055938243865967, -0.23775121569633484, 0.016841387376189232, 0.005785298999398947, 0.0035353179555386305, 0.02631506137549877, 0.2455807477235794, 0.24921196699142456, -0.08550744503736496, 0.8381167650222778, -0.008796420879662037, 0.0007430219557136297, -0.0029241510201245546, 0.24623987078666687, -0.25960227847099304, 0.07994676381349564, 0.8007979393005371, -0.007430219557136297, 0.0012104067718610168, 0.0015100124292075634]} +{"t": 1.746, "q": [-0.15411904454231262, 0.022171134129166603, 0.01916380226612091, 0.3171846270561218, -0.16825173795223236, -0.015135605819523335, -0.10837233066558838, -0.017248760908842087, 0.04151487722992897, 0.3205508589744568, -0.2377680093050003, 0.01684148982167244, 0.005651379935443401, 0.0035126851871609688, 0.026338879019021988, 0.24531708657741547, 0.24921196699142456, -0.08548347651958466, 0.8380928039550781, -0.00882038939744234, 0.0007430219557136297, -0.002948119305074215, 0.24603614211082458, -0.2596622109413147, 0.07993478327989578, 0.800809919834137, -0.007490140851587057, 0.0012104067718610168, 0.0014980281703174114]} +{"t": 1.7627, "q": [-0.15410199761390686, 0.022188179194927216, 0.01916380226612091, 0.31717610359191895, -0.16824738681316376, -0.01512850821018219, -0.10835529118776321, -0.017231717705726624, 0.041501484811306, 0.32055938243865967, -0.23774687945842743, 0.016819844022393227, 0.005517460871487856, 0.0034900764003396034, 0.02633417584002018, 0.24499352276325226, 0.24922394752502441, -0.0854235589504242, 0.8380928039550781, -0.00882038939744234, 0.0007430219557136297, -0.002972087822854519, 0.24590431153774261, -0.2598299980163574, 0.07994676381349564, 0.8007739186286926, -0.00755006168037653, 0.0012223910307511687, 0.0014980281703174114]} +{"t": 1.7794, "q": [-0.15411904454231262, 0.02216261252760887, 0.01915041171014309, 0.3172016441822052, -0.16824738681316376, -0.01512850821018219, -0.1083638146519661, -0.01721467263996601, 0.041501484811306, 0.3205508589744568, -0.23775121569633484, 0.016841387376189232, 0.005450501572340727, 0.003490068484097719, 0.026343682780861855, 0.24471788108348846, 0.24930784106254578, -0.08537562191486359, 0.8380688428878784, -0.00882038939744234, 0.0007430219557136297, -0.0029361352790147066, 0.24577249586582184, -0.26006966829299927, 0.07982692122459412, 0.8007739186286926, -0.0076219672337174416, 0.0012343751732259989, 0.0014980281703174114]} +{"t": 1.7961, "q": [-0.15413609147071838, 0.02216261252760887, 0.01915041171014309, 0.3172016441822052, -0.16825173795223236, -0.015135605819523335, -0.1083638146519661, -0.017223196104168892, 0.041501484811306, 0.320533812046051, -0.23775121569633484, 0.016841387376189232, 0.005450501572340727, 0.0034976101014763117, 0.026338912546634674, 0.24440628290176392, 0.24955950677394867, -0.08521982282400131, 0.8380688428878784, -0.008844357915222645, 0.0007550062146037817, -0.0029361352790147066, 0.24562868475914001, -0.26032134890556335, 0.07977898418903351, 0.8007739186286926, -0.0076339514926075935, 0.0012343751732259989, 0.0014860439114272594]} +{"t": 1.8129, "q": [-0.1541275680065155, 0.02216261252760887, 0.019123626872897148, 0.31717610359191895, -0.16825173795223236, -0.015135605819523335, -0.10835529118776321, -0.017223196104168892, 0.04148809239268303, 0.320533812046051, -0.23775960505008698, 0.01684143953025341, 0.005504068918526173, 0.00349762593396008, 0.026319898664951324, 0.24415461719036102, 0.25001490116119385, -0.08507601171731949, 0.838020920753479, -0.008844357915222645, 0.0007070692954584956, -0.002948119305074215, 0.24547287821769714, -0.26047712564468384, 0.0797070786356926, 0.8007859587669373, -0.0076579200103878975, 0.0012343751732259989, 0.0014740596525371075]} +{"t": 1.8297, "q": [-0.15411052107810974, 0.02216261252760887, 0.01915041171014309, 0.3171420097351074, -0.16825173795223236, -0.015135605819523335, -0.1083638146519661, -0.01721467263996601, 0.04146130755543709, 0.320533812046051, -0.237759530544281, 0.016827093437314034, 0.005517460871487856, 0.00349762593396008, 0.026319898664951324, 0.24387899041175842, 0.2505302429199219, -0.08505204319953918, 0.8380089402198792, -0.008856342174112797, 0.0006950850365683436, -0.0029241510201245546, 0.24524518847465515, -0.2605610191822052, 0.07968311011791229, 0.8007619380950928, -0.0076579200103878975, 0.0012223910307511687, 0.0014860439114272594]} +{"t": 1.8464, "q": [-0.15410199761390686, 0.022196700796484947, 0.019110234454274178, 0.31712496280670166, -0.16825608909130096, -0.015142703428864479, -0.10835529118776321, -0.01720615103840828, 0.04147469997406006, 0.32051676511764526, -0.237759530544281, 0.016827093437314034, 0.005571028683334589, 0.0035051596350967884, 0.02632463537156582, 0.24349549412727356, 0.25118935108184814, -0.08493220061063766, 0.8379969596862793, -0.008856342174112797, 0.0007190534961409867, -0.002960103563964367, 0.24488565325737, -0.2605370581150055, 0.07968311011791229, 0.8007619380950928, -0.007705857045948505, 0.0012343751732259989, 0.0014860439114272594]} +{"t": 1.8631, "q": [-0.15411904454231262, 0.022179657593369484, 0.019123626872897148, 0.31713348627090454, -0.16826030611991882, -0.015135662630200386, -0.10835529118776321, -0.017257284373044968, 0.04148809239268303, 0.3204485774040222, -0.2377554476261139, 0.01684858649969101, 0.0055442447774112225, 0.0035202426370233297, 0.026315094903111458, 0.2431599348783493, 0.2517286539077759, -0.08470450341701508, 0.8379729986190796, -0.0088803106918931, 0.0006711166352033615, -0.0029361352790147066, 0.24455009400844574, -0.2605610191822052, 0.07969509810209274, 0.8007379770278931, -0.007741809356957674, 0.0012343751732259989, 0.0014740596525371075]} +{"t": 1.8798, "q": [-0.15411904454231262, 0.02214556746184826, 0.01913701929152012, 0.31712496280670166, -0.16826030611991882, -0.015135662630200386, -0.10833824425935745, -0.017282849177718163, 0.04148809239268303, 0.3204230070114136, -0.23776385188102722, 0.01684863679111004, 0.005624596029520035, 0.0035202507860958576, 0.026305587962269783, 0.24284833669662476, 0.25216007232666016, -0.08450077474117279, 0.83793705701828, -0.008856342174112797, 0.0006471481756307185, -0.002972087822854519, 0.24407073855400085, -0.26064491271972656, 0.07965914160013199, 0.8007259964942932, -0.007741809356957674, 0.0012343751732259989, 0.0014860439114272594]} +{"t": 1.8966, "q": [-0.15411052107810974, 0.02214556746184826, 0.019110234454274178, 0.317099392414093, -0.16826030611991882, -0.015135662630200386, -0.10834676772356033, -0.01732546091079712, 0.04148809239268303, 0.3204059600830078, -0.2377680093050003, 0.01684148982167244, 0.00571833923459053, 0.0035277842544019222, 0.026310324668884277, 0.24254873394966125, 0.2523758113384247, -0.08435696363449097, 0.83793705701828, -0.008892294950783253, 0.0006351639167405665, -0.0029361352790147066, 0.243687242269516, -0.2607887387275696, 0.07968311011791229, 0.8006900548934937, -0.007753793615847826, 0.0012343751732259989, 0.0014860439114272594]} +{"t": 1.9133, "q": [-0.1541275680065155, 0.022137045860290527, 0.01913701929152012, 0.31709086894989014, -0.16826452314853668, -0.015128621831536293, -0.10835529118776321, -0.01739363744854927, 0.04152826964855194, 0.3203207552433014, -0.23777227103710175, 0.01684870757162571, 0.00579869095236063, 0.003512709168717265, 0.026310358196496964, 0.24232102930545807, 0.2525915205478668, -0.08438093215227127, 0.8379610180854797, -0.008916263468563557, 0.0006351639167405665, -0.0029001825023442507, 0.24351945519447327, -0.26092055439949036, 0.07968311011791229, 0.8006061911582947, -0.007753793615847826, 0.0012223910307511687, 0.0014860439114272594]} +{"t": 1.93, "q": [-0.1541275680065155, 0.022179657593369484, 0.019123626872897148, 0.31713348627090454, -0.16826452314853668, -0.015128621831536293, -0.10834676772356033, -0.017410682514309883, 0.04148809239268303, 0.32029518485069275, -0.23776395618915558, 0.016863001510500908, 0.005946001503616571, 0.0035202347207814455, 0.026324601843953133, 0.2422371506690979, 0.25266343355178833, -0.08439291268587112, 0.8379490375518799, -0.008892294950783253, 0.0006351639167405665, -0.0029241510201245546, 0.24342358112335205, -0.26096847653388977, 0.07968311011791229, 0.8006181716918945, -0.007741809356957674, 0.0012223910307511687, 0.0014740596525371075]} +{"t": 1.9468, "q": [-0.15411904454231262, 0.02214556746184826, 0.01915041171014309, 0.31713348627090454, -0.16826452314853668, -0.015128621831536293, -0.10835529118776321, -0.01750442571938038, 0.041501484811306, 0.32028666138648987, -0.2377680093050003, 0.01684148982167244, 0.005972785409539938, 0.0035126851871609688, 0.026338879019021988, 0.24222515523433685, 0.2526514232158661, -0.08440490067005157, 0.8379729986190796, -0.008916263468563557, 0.0006351639167405665, -0.0029121667612344027, 0.24339962005615234, -0.26094451546669006, 0.0797070786356926, 0.8006301522254944, -0.007741809356957674, 0.0012343751732259989, 0.0014980281703174114]} +{"t": 1.9635, "q": [-0.15413609147071838, 0.02216261252760887, 0.01915041171014309, 0.31709086894989014, -0.16825583577156067, -0.015114426612854004, -0.10834676772356033, -0.017521468922495842, 0.04148809239268303, 0.3202696144580841, -0.23776811361312866, 0.01685585454106331, 0.005959393456578255, 0.0035428276751190424, 0.02634831704199314, 0.2422850877046585, 0.2526754140853882, -0.08439291268587112, 0.8379969596862793, -0.008892294950783253, 0.0006351639167405665, -0.0029121667612344027, 0.24342358112335205, -0.260980486869812, 0.0797070786356926, 0.8006181716918945, -0.007753793615847826, 0.0012343751732259989, 0.0014980281703174114]} +{"t": 1.9802, "q": [-0.1541275680065155, 0.022171134129166603, 0.01915041171014309, 0.31708234548568726, -0.16826018691062927, -0.015121524222195148, -0.10833824425935745, -0.017538513988256454, 0.04154166206717491, 0.3202696144580841, -0.23776385188102722, 0.01684863679111004, 0.005932609550654888, 0.0036030809860676527, 0.026405220851302147, 0.24234500527381897, 0.2528192102909088, -0.08439291268587112, 0.8379969596862793, -0.008892294950783253, 0.0006351639167405665, -0.0029121667612344027, 0.2435074746608734, -0.26096847653388977, 0.07971906661987305, 0.8006181716918945, -0.00777776213362813, 0.0012104067718610168, 0.0014980281703174114]} +{"t": 1.9971, "q": [-0.1541275680065155, 0.02216261252760887, 0.01915041171014309, 0.3171079158782959, -0.16826030611991882, -0.015135662630200386, -0.10834676772356033, -0.017598168924450874, 0.041501484811306, 0.32028666138648987, -0.23775121569633484, 0.016841387376189232, 0.0058388663455843925, 0.0036331848241388798, 0.026462193578481674, 0.24236896634101868, 0.25296303629875183, -0.08429703861474991, 0.838020920753479, -0.008916263468563557, 0.0006711166352033615, -0.0029121667612344027, 0.24361532926559448, -0.26096847653388977, 0.07974303513765335, 0.8006541132926941, -0.007765777874737978, 0.0012583436910063028, 0.0014740596525371075]} +{"t": 2.0138, "q": [-0.1541275680065155, 0.022171134129166603, 0.019203977659344673, 0.3170567750930786, -0.16826018691062927, -0.015121524222195148, -0.10834676772356033, -0.017589645460247993, 0.041501484811306, 0.3203207552433014, -0.23776395618915558, 0.016863001510500908, 0.005785298999398947, 0.00369343813508749, 0.02651909738779068, 0.24234500527381897, 0.2531907260417938, -0.0842730700969696, 0.8379849791526794, -0.008952216245234013, 0.0006351639167405665, -0.0029121667612344027, 0.24377112090587616, -0.26094451546669006, 0.07974303513765335, 0.8006900548934937, -0.00777776213362813, 0.0012223910307511687, 0.0014980281703174114]} +{"t": 2.0305, "q": [-0.15411052107810974, 0.02216261252760887, 0.019190587103366852, 0.3170738220214844, -0.16825583577156067, -0.015114426612854004, -0.10834676772356033, -0.017589645460247993, 0.041555050760507584, 0.3203548491001129, -0.23776385188102722, 0.01684863679111004, 0.005678163841366768, 0.0037612407468259335, 0.02656172402203083, 0.24233302474021912, 0.2534663677215576, -0.08415322750806808, 0.8379969596862793, -0.008952216245234013, 0.0006351639167405665, -0.002960103563964367, 0.2439868450164795, -0.26094451546669006, 0.0797070786356926, 0.8006900548934937, -0.007765777874737978, 0.0012104067718610168, 0.0014740596525371075]} +{"t": 2.0473, "q": [-0.1541275680065155, 0.02216261252760887, 0.019203977659344673, 0.3170738220214844, -0.16826452314853668, -0.015128621831536293, -0.10834676772356033, -0.01757260225713253, 0.04152826964855194, 0.3203718960285187, -0.23775553703308105, 0.016862930729985237, 0.005490677431225777, 0.003791375318542123, 0.026580670848488808, 0.24230904877185822, 0.25373002886772156, -0.08408132195472717, 0.8379729986190796, -0.008952216245234013, 0.0006351639167405665, -0.0029241510201245546, 0.24416659772396088, -0.26096847653388977, 0.0797070786356926, 0.8007379770278931, -0.007753793615847826, 0.0012343751732259989, 0.0014980281703174114]} +{"t": 2.064, "q": [-0.15411904454231262, 0.022188179194927216, 0.019203977659344673, 0.3170738220214844, -0.16826018691062927, -0.015121524222195148, -0.10833824425935745, -0.01757260225713253, 0.041581835597753525, 0.3204059600830078, -0.23776385188102722, 0.01684863679111004, 0.005356758367270231, 0.0038290435913950205, 0.02660435251891613, 0.24230904877185822, 0.25395771861076355, -0.08405735343694687, 0.8379729986190796, -0.009012137539684772, 0.0006351639167405665, -0.0029121667612344027, 0.24434636533260345, -0.260980486869812, 0.07968311011791229, 0.8007739186286926, -0.007741809356957674, 0.0012343751732259989, 0.0014860439114272594]} +{"t": 2.0807, "q": [-0.1541275680065155, 0.02216261252760887, 0.019217370077967644, 0.3171505331993103, -0.16826452314853668, -0.015128621831536293, -0.10834676772356033, -0.01757260225713253, 0.041555050760507584, 0.3204911947250366, -0.23775969445705414, 0.016855783760547638, 0.005343366414308548, 0.0038290515076369047, 0.026594845578074455, 0.2422850877046585, 0.25393375754356384, -0.08417719602584839, 0.83793705701828, -0.009012137539684772, 0.0005872270558029413, -0.0029241510201245546, 0.24445421993732452, -0.26094451546669006, 0.07964716106653214, 0.8007739186286926, -0.007753793615847826, 0.0012463594321161509, 0.0015339808305725455]} +{"t": 2.0976, "q": [-0.15411904454231262, 0.022171134129166603, 0.019217370077967644, 0.3172016441822052, -0.16825595498085022, -0.015128565020859241, -0.10834676772356033, -0.0175640806555748, 0.04152826964855194, 0.32056790590286255, -0.23775121569633484, 0.016841387376189232, 0.005329974461346865, 0.003813984338194132, 0.026585372164845467, 0.24234500527381897, 0.2538378834724426, -0.08432100713253021, 0.8379849791526794, -0.008988169021904469, 0.0005752427969127893, -0.0029241510201245546, 0.2445620894432068, -0.26094451546669006, 0.07959922403097153, 0.8007859587669373, -0.007729825098067522, 0.0012343751732259989, 0.0014980281703174114]} +{"t": 2.1143, "q": [-0.15411904454231262, 0.022188179194927216, 0.019217370077967644, 0.31721869111061096, -0.16826452314853668, -0.015128621831536293, -0.10834676772356033, -0.01750442571938038, 0.04154166206717491, 0.32056790590286255, -0.23775969445705414, 0.016855783760547638, 0.005316582508385181, 0.0038139764219522476, 0.02659487910568714, 0.24241690337657928, 0.25373002886772156, -0.08444084972143173, 0.8379729986190796, -0.008976184763014317, 0.00046738478704355657, -0.002948119305074215, 0.24464596807956696, -0.26096847653388977, 0.07952731847763062, 0.800809919834137, -0.00771784083917737, 0.0012343751732259989, 0.0015100124292075634]} +{"t": 2.131, "q": [-0.15411904454231262, 0.022188179194927216, 0.019217370077967644, 0.3173380196094513, -0.1682516187429428, -0.015121467411518097, -0.10832972079515457, -0.017478859052062035, 0.041555050760507584, 0.3206019699573517, -0.2377469688653946, 0.016834188252687454, 0.005303190555423498, 0.0037989169359207153, 0.026575898751616478, 0.24247683584690094, 0.2536940574645996, -0.08453672379255295, 0.8379610180854797, -0.008952216245234013, 0.0003954794374294579, -0.002948119305074215, 0.24475383758544922, -0.260980486869812, 0.07949136942625046, 0.8008219003677368, -0.0076818885281682014, 0.0012463594321161509, 0.0014740596525371075]} +{"t": 2.1478, "q": [-0.15411904454231262, 0.022171134129166603, 0.019203977659344673, 0.3173891305923462, -0.16825173795223236, -0.015135605819523335, -0.10832972079515457, -0.017436247318983078, 0.041608620434999466, 0.32066163420677185, -0.23774704337120056, 0.01684853434562683, 0.005343366414308548, 0.003813992254436016, 0.026575865224003792, 0.24241690337657928, 0.2537180185317993, -0.08456069231033325, 0.8379130363464355, -0.008892294950783253, 0.00028762139845639467, -0.0029361352790147066, 0.24475383758544922, -0.2610403895378113, 0.0794314444065094, 0.8008338809013367, -0.0076699042692780495, 0.0012343751732259989, 0.0014860439114272594]} +{"t": 2.1645, "q": [-0.1540849506855011, 0.02214556746184826, 0.01916380226612091, 0.3173976540565491, -0.16825608909130096, -0.015142703428864479, -0.1083126813173294, -0.01739363744854927, 0.041595228016376495, 0.32071277499198914, -0.2377469688653946, 0.016834188252687454, 0.005343366414308548, 0.003881881246343255, 0.026513919234275818, 0.24227309226989746, 0.2538019120693207, -0.0845247432589531, 0.8377572894096375, -0.008796420879662037, 5.992112710373476e-05, -0.0029241510201245546, 0.24474184215068817, -0.26105237007141113, 0.07935953885316849, 0.8008338809013367, -0.0076579200103878975, 0.0012343751732259989, 0.0014740596525371075]} +{"t": 2.1812, "q": [-0.15406790375709534, 0.022179657593369484, 0.019190587103366852, 0.3174317479133606, -0.16825595498085022, -0.015128565020859241, -0.10829563438892365, -0.017368070781230927, 0.041555050760507584, 0.32070425152778625, -0.23774687945842743, 0.016819844022393227, 0.005343366414308548, 0.003979930188506842, 0.026442397385835648, 0.24210532009601593, 0.2538498640060425, -0.0845247432589531, 0.8376853466033936, -0.008772453293204308, -7.190534961409867e-05, -0.0029121667612344027, 0.244657963514328, -0.2611123025417328, 0.07935953885316849, 0.8008458614349365, -0.0076579200103878975, 0.0012343751732259989, 0.0014980281703174114]} +{"t": 2.198, "q": [-0.15398268401622772, 0.022171134129166603, 0.01915041171014309, 0.3174317479133606, -0.16825173795223236, -0.015135605819523335, -0.10825302451848984, -0.017342504113912582, 0.04154166206717491, 0.32074686884880066, -0.23775537312030792, 0.016834240406751633, 0.005329974461346865, 0.00407042121514678, 0.026394659653306007, 0.24197348952293396, 0.2538378834724426, -0.0845487117767334, 0.8375895023345947, -0.008736500516533852, -0.00017976337403524667, -0.0029121667612344027, 0.2446100264787674, -0.26117223501205444, 0.07934755831956863, 0.8008578419685364, -0.0076579200103878975, 0.0012343751732259989, 0.0015100124292075634]} +{"t": 2.2147, "q": [-0.15395712852478027, 0.02216261252760887, 0.01917719468474388, 0.3174317479133606, -0.16825173795223236, -0.015135605819523335, -0.10823597759008408, -0.017299894243478775, 0.04154166206717491, 0.3207639157772064, -0.23775960505008698, 0.01684143953025341, 0.005289798602461815, 0.004175987560302019, 0.02634688839316368, 0.24197348952293396, 0.25381389260292053, -0.0845487117767334, 0.837565541267395, -0.008736500516533852, -0.00027563716867007315, -0.002960103563964367, 0.2445860505104065, -0.2612321376800537, 0.07928763329982758, 0.8008458614349365, -0.0076699042692780495, 0.0012343751732259989, 0.0014980281703174114]} +{"t": 2.2314, "q": [-0.15397416055202484, 0.02216261252760887, 0.01915041171014309, 0.31740617752075195, -0.16825608909130096, -0.015142703428864479, -0.10823597759008408, -0.017282849177718163, 0.04154166206717491, 0.32075539231300354, -0.23775537312030792, 0.016834240406751633, 0.005343366414308548, 0.004243830218911171, 0.026341982185840607, 0.24202142655849457, 0.2538378834724426, -0.08450077474117279, 0.837565541267395, -0.0087245162576437, -0.00028762139845639467, -0.0029241510201245546, 0.2446100264787674, -0.2612800896167755, 0.07929962128400803, 0.8008338809013367, -0.0076579200103878975, 0.0012463594321161509, 0.0014860439114272594]} +{"t": 2.2481, "q": [-0.1539400815963745, 0.02215409092605114, 0.01915041171014309, 0.3173976540565491, -0.16824328899383545, -0.015149695798754692, -0.10824450105428696, -0.01727432757616043, 0.04152826964855194, 0.3207383453845978, -0.23775537312030792, 0.016834240406751633, 0.005316582508385181, 0.0043191746808588505, 0.026379838585853577, 0.24202142655849457, 0.25388580560684204, -0.08448878675699234, 0.8375295400619507, -0.008736500516533852, -0.00027563716867007315, -0.0029361352790147066, 0.24459803104400635, -0.2613639533519745, 0.07928763329982758, 0.8008458614349365, -0.0076459357514977455, 0.0012583436910063028, 0.0014980281703174114]} +{"t": 2.2649, "q": [-0.15395712852478027, 0.02215409092605114, 0.01915041171014309, 0.31735506653785706, -0.16825173795223236, -0.015135605819523335, -0.10825302451848984, -0.017257284373044968, 0.041501484811306, 0.32071277499198914, -0.23775537312030792, 0.016834240406751633, 0.005450501572340727, 0.0044472902081906796, 0.026403270661830902, 0.2419854700565338, 0.25400564074516296, -0.08442886918783188, 0.8374935984611511, -0.008736500516533852, -0.00027563716867007315, -0.0029241510201245546, 0.24457406997680664, -0.2614598274230957, 0.07928763329982758, 0.8008458614349365, -0.0076459357514977455, 0.0012343751732259989, 0.0014980281703174114]} +{"t": 2.2816, "q": [-0.1539400815963745, 0.022128524258732796, 0.01916380226612091, 0.3173380196094513, -0.16825173795223236, -0.015135605819523335, -0.10823597759008408, -0.017282849177718163, 0.04152826964855194, 0.32065311074256897, -0.23775528371334076, 0.016819894313812256, 0.005477285478264093, 0.00454526674002409, 0.026417231187224388, 0.24194952845573425, 0.25425732135772705, -0.08438093215227127, 0.8374576568603516, -0.008760469034314156, -0.00028762139845639467, -0.0029361352790147066, 0.2445381134748459, -0.26159167289733887, 0.07928763329982758, 0.8008458614349365, -0.0076459357514977455, 0.0012343751732259989, 0.0014980281703174114]} +{"t": 2.2984, "q": [-0.15393155813217163, 0.022111479192972183, 0.019190587103366852, 0.3173294961452484, -0.16825173795223236, -0.015135605819523335, -0.10823597759008408, -0.017316939309239388, 0.04154166206717491, 0.3206360638141632, -0.23776385188102722, 0.01684863679111004, 0.005450501572340727, 0.004741219338029623, 0.02644515410065651, 0.2419135719537735, 0.2544251084327698, -0.08434497565031052, 0.8374816179275513, -0.008772453293204308, -0.00027563716867007315, -0.0029121667612344027, 0.24444223940372467, -0.26169952750205994, 0.07929962128400803, 0.8008578419685364, -0.0076459357514977455, 0.0012343751732259989, 0.0014980281703174114]} +{"t": 2.3152, "q": [-0.15393155813217163, 0.022171134129166603, 0.01916380226612091, 0.31726983189582825, -0.16825173795223236, -0.015135605819523335, -0.10824450105428696, -0.01733398251235485, 0.041555050760507584, 0.3206019699573517, -0.23775960505008698, 0.01684143953025341, 0.005477285478264093, 0.004899504594504833, 0.026449425145983696, 0.2416619062423706, 0.2545689046382904, -0.08433299511671066, 0.8374336957931519, -0.00882038939744234, -0.00027563716867007315, -0.0029121667612344027, 0.24441827833652496, -0.2617834210395813, 0.07928763329982758, 0.8008458614349365, -0.0076579200103878975, 0.0012343751732259989, 0.0015100124292075634]} +{"t": 2.332, "q": [-0.15393155813217163, 0.02214556746184826, 0.019190587103366852, 0.3172016441822052, -0.16825173795223236, -0.015135605819523335, -0.10825302451848984, -0.017359549179673195, 0.041555050760507584, 0.320533812046051, -0.23776385188102722, 0.01684863679111004, 0.005477285478264093, 0.00503511680290103, 0.026525063440203667, 0.2412664294242859, 0.25478461384773254, -0.0842491015791893, 0.8373138308525085, -0.00882038939744234, -0.00028762139845639467, -0.0029241510201245546, 0.24439430236816406, -0.2618792951107025, 0.07928763329982758, 0.8008338809013367, -0.0076459357514977455, 0.0012343751732259989, 0.0014860439114272594]} +{"t": 2.3487, "q": [-0.15395712852478027, 0.02214556746184826, 0.019190587103366852, 0.3171846270561218, -0.16825173795223236, -0.015135605819523335, -0.10823597759008408, -0.01739363744854927, 0.041555050760507584, 0.3204997181892395, -0.23776385188102722, 0.01684863679111004, 0.005410325713455677, 0.0050878520123660564, 0.026558177545666695, 0.24079903960227966, 0.2550722360610962, -0.08418918401002884, 0.8371580243110657, -0.00882038939744234, -0.0003475425182841718, -0.0029121667612344027, 0.24437034130096436, -0.26189127564430237, 0.07928763329982758, 0.8008338809013367, -0.0076579200103878975, 0.0012343751732259989, 0.0014740596525371075]} +{"t": 2.3656, "q": [-0.1539400815963745, 0.022137045860290527, 0.019203977659344673, 0.31716758012771606, -0.16826030611991882, -0.015135662630200386, -0.10824450105428696, -0.017410682514309883, 0.041555050760507584, 0.3204911947250366, -0.23776385188102722, 0.01684863679111004, 0.005329974461346865, 0.005148152820765972, 0.02655799314379692, 0.24031966924667358, 0.25529995560646057, -0.08412925899028778, 0.8369183540344238, -0.0088803106918931, -0.00037151097785681486, -0.0029121667612344027, 0.2443583458662033, -0.26192721724510193, 0.07931160181760788, 0.8008338809013367, -0.00771784083917737, 0.0012583436910063028, 0.0014620755100622773]} +{"t": 2.3823, "q": [-0.1539486050605774, 0.022120002657175064, 0.019217370077967644, 0.31713348627090454, -0.16825595498085022, -0.015128565020859241, -0.10824450105428696, -0.017436247318983078, 0.041568443179130554, 0.3204230070114136, -0.23776818811893463, 0.016870198771357536, 0.005383542273193598, 0.005208461079746485, 0.026548301801085472, 0.24003204703330994, 0.2554437518119812, -0.08410529047250748, 0.8368105292320251, -0.008916263468563557, -0.00035952674807049334, -0.0029001825023442507, 0.24429842829704285, -0.261951208114624, 0.07925168424844742, 0.8008458614349365, -0.007705857045948505, 0.0012223910307511687, 0.0014740596525371075]} +{"t": 2.3991, "q": [-0.1539400815963745, 0.02215409092605114, 0.019217370077967644, 0.3171079158782959, -0.16826018691062927, -0.015121524222195148, -0.10824450105428696, -0.017487380653619766, 0.041608620434999466, 0.3203548491001129, -0.23777227103710175, 0.01684870757162571, 0.005356758367270231, 0.00522354431450367, 0.026538750156760216, 0.23982831835746765, 0.255491703748703, -0.08403338491916656, 0.836762547492981, -0.008916263468563557, -0.0004074636672157794, -0.0029121667612344027, 0.24427446722984314, -0.26199913024902344, 0.07920374721288681, 0.8008338809013367, -0.007705857045948505, 0.0012583436910063028, 0.0014860439114272594]} +{"t": 2.4158, "q": [-0.15393155813217163, 0.022128524258732796, 0.019217370077967644, 0.31716758012771606, -0.16825595498085022, -0.015128565020859241, -0.10825302451848984, -0.017487380653619766, 0.041555050760507584, 0.3203207552433014, -0.23776811361312866, 0.01685585454106331, 0.00542371766641736, 0.005216002464294434, 0.026543525978922844, 0.2397444248199463, 0.2554677426815033, -0.08400941640138626, 0.8367505669593811, -0.008916263468563557, -0.00037151097785681486, -0.0029241510201245546, 0.24425049126148224, -0.2620590627193451, 0.0791797786951065, 0.8008338809013367, -0.007693872787058353, 0.0012343751732259989, 0.0014860439114272594]} +{"t": 2.4325, "q": [-0.15396563708782196, 0.02214556746184826, 0.019190587103366852, 0.3171164393424988, -0.16826030611991882, -0.015135662630200386, -0.10824450105428696, -0.017487380653619766, 0.041555050760507584, 0.3203292787075043, -0.2377680093050003, 0.01684148982167244, 0.005490677431225777, 0.005215970799326897, 0.026581553742289543, 0.23972046375274658, 0.25545573234558105, -0.08404537290334702, 0.8368824124336243, -0.008988169021904469, -0.0002037318336078897, -0.0029121667612344027, 0.24423851072788239, -0.26209500432014465, 0.07914382219314575, 0.8008458614349365, -0.0076818885281682014, 0.0012463594321161509, 0.0014740596525371075]} +{"t": 2.4493, "q": [-0.15393155813217163, 0.02214556746184826, 0.019190587103366852, 0.317099392414093, -0.16826441884040833, -0.015114475041627884, -0.10825302451848984, -0.017478859052062035, 0.04152826964855194, 0.32028666138648987, -0.2377680093050003, 0.01684148982167244, 0.005571028683334589, 0.0051932986825704575, 0.026652922853827477, 0.23990021646022797, 0.255491703748703, -0.0839255303144455, 0.8368824124336243, -0.008952216245234013, -0.0001917476038215682, -0.0029121667612344027, 0.24421453475952148, -0.26211896538734436, 0.07911985367536545, 0.8008338809013367, -0.007705857045948505, 0.0012343751732259989, 0.0014860439114272594]} +{"t": 2.466, "q": [-0.1539486050605774, 0.02215409092605114, 0.019190587103366852, 0.31712496280670166, -0.16826018691062927, -0.015121524222195148, -0.10823597759008408, -0.017495902255177498, 0.04151487722992897, 0.32029518485069275, -0.23776395618915558, 0.016863001510500908, 0.005731731187552214, 0.005268594715744257, 0.02674775943160057, 0.23990021646022797, 0.25550368428230286, -0.08387759327888489, 0.836906373500824, -0.008952216245234013, -0.00015579492901451886, -0.0029121667612344027, 0.24425049126148224, -0.2622148394584656, 0.07909588515758514, 0.8008338809013367, -0.007693872787058353, 0.0012343751732259989, 0.0014740596525371075]} +{"t": 2.4827, "q": [-0.15399973094463348, 0.02215409092605114, 0.019203977659344673, 0.31704825162887573, -0.16826452314853668, -0.015128621831536293, -0.10825302451848984, -0.017487380653619766, 0.041501484811306, 0.32028666138648987, -0.23777227103710175, 0.01684870757162571, 0.00579869095236063, 0.0053364126943051815, 0.026771320030093193, 0.23994815349578857, 0.255491703748703, -0.08388957381248474, 0.8369303345680237, -0.009012137539684772, -0.00016777915880084038, -0.0029241510201245546, 0.24425049126148224, -0.26227477192878723, 0.07909588515758514, 0.8008458614349365, -0.0076818885281682014, 0.0012343751732259989, 0.0014740596525371075]} +{"t": 2.4996, "q": [-0.15398268401622772, 0.02214556746184826, 0.019190587103366852, 0.3171164393424988, -0.1682516187429428, -0.015121467411518097, -0.10825302451848984, -0.017529990524053574, 0.04151487722992897, 0.32029518485069275, -0.23776395618915558, 0.016863001510500908, 0.0057719070464372635, 0.005351480096578598, 0.026780780404806137, 0.23997212946414948, 0.25547972321510315, -0.08385362476110458, 0.8369303345680237, -0.008988169021904469, -0.000215716048842296, -0.0029361352790147066, 0.24422653019428253, -0.26229873299598694, 0.07911985367536545, 0.8008338809013367, -0.0076818885281682014, 0.0012343751732259989, 0.0014740596525371075]} +{"t": 2.5163, "q": [-0.15397416055202484, 0.022128524258732796, 0.019190587103366852, 0.31709086894989014, -0.16826018691062927, -0.015121524222195148, -0.10823597759008408, -0.01751294732093811, 0.04151487722992897, 0.32030370831489563, -0.2377597838640213, 0.016870148479938507, 0.00575851509347558, 0.005328855477273464, 0.02679510973393917, 0.23994815349578857, 0.25547972321510315, -0.08388957381248474, 0.8369183540344238, -0.008952216245234013, -0.00025166873820126057, -0.0029361352790147066, 0.24425049126148224, -0.26227477192878723, 0.07914382219314575, 0.8008458614349365, -0.0076818885281682014, 0.0012343751732259989, 0.0014860439114272594]} +{"t": 2.533, "q": [-0.15398268401622772, 0.02214556746184826, 0.01917719468474388, 0.31709086894989014, -0.16825173795223236, -0.015135605819523335, -0.10825302451848984, -0.017495902255177498, 0.041501484811306, 0.3203122317790985, -0.23776385188102722, 0.01684863679111004, 0.005678163841366768, 0.005321313627064228, 0.0267998855561018, 0.239912211894989, 0.2554437518119812, -0.0839734673500061, 0.8369183540344238, -0.008952216245234013, -0.0002996056282427162, -0.0029361352790147066, 0.24425049126148224, -0.26229873299598694, 0.0791797786951065, 0.8008338809013367, -0.0076818885281682014, 0.001270327833481133, 0.0014860439114272594]} +{"t": 2.5499, "q": [-0.15398268401622772, 0.022137045860290527, 0.01917719468474388, 0.3171079158782959, -0.16825173795223236, -0.015135605819523335, -0.10824450105428696, -0.01750442571938038, 0.04151487722992897, 0.32033780217170715, -0.23775121569633484, 0.016841387376189232, 0.005624596029520035, 0.005313772242516279, 0.026804661378264427, 0.23990021646022797, 0.25543177127838135, -0.08399743586778641, 0.8369183540344238, -0.00894023198634386, -0.0003954794374294579, -0.0029241510201245546, 0.24427446722984314, -0.2622867524623871, 0.0791078731417656, 0.8008458614349365, -0.0076699042692780495, 0.0012583436910063028, 0.0014740596525371075]} +{"t": 2.5668, "q": [-0.15398268401622772, 0.02214556746184826, 0.019190587103366852, 0.31712496280670166, -0.16826018691062927, -0.015121524222195148, -0.10825302451848984, -0.017478859052062035, 0.04154166206717491, 0.32034632563591003, -0.23775969445705414, 0.016855783760547638, 0.005504068918526173, 0.005313772242516279, 0.026804661378264427, 0.239912211894989, 0.25535985827445984, -0.08403338491916656, 0.8369303345680237, -0.008952216245234013, -0.000431432097684592, -0.002948119305074215, 0.24429842829704285, -0.2622867524623871, 0.07909588515758514, 0.8008458614349365, -0.0076818885281682014, 0.0012463594321161509, 0.0014860439114272594]} +{"t": 2.5835, "q": [-0.1539486050605774, 0.022179657593369484, 0.019190587103366852, 0.3171846270561218, -0.16825595498085022, -0.015128565020859241, -0.10823597759008408, -0.01745329238474369, 0.04152826964855194, 0.3204144835472107, -0.23776385188102722, 0.01684863679111004, 0.00542371766641736, 0.005313772242516279, 0.026804661378264427, 0.239912211894989, 0.25535985827445984, -0.08405735343694687, 0.836906373500824, -0.008952216245234013, -0.0005392901366576552, -0.0029361352790147066, 0.24434636533260345, -0.2622867524623871, 0.07911985367536545, 0.8008458614349365, -0.0076818885281682014, 0.0012343751732259989, 0.0014980281703174114]} +{"t": 2.6004, "q": [-0.15397416055202484, 0.022188179194927216, 0.01917719468474388, 0.3171846270561218, -0.16825595498085022, -0.015128565020859241, -0.10823597759008408, -0.01744477078318596, 0.041555050760507584, 0.32047414779663086, -0.23776385188102722, 0.01684863679111004, 0.00542371766641736, 0.005298713222146034, 0.02678569406270981, 0.23973244428634644, 0.2553239166736603, -0.0839734673500061, 0.8368105292320251, -0.008976184763014317, -0.0007310377550311387, -0.0029241510201245546, 0.2443823218345642, -0.2622867524623871, 0.07911985367536545, 0.8008458614349365, -0.0076818885281682014, 0.0012583436910063028, 0.0014740596525371075]} +{"t": 2.6174, "q": [-0.15397416055202484, 0.02216261252760887, 0.01917719468474388, 0.3172101676464081, -0.16826452314853668, -0.015128621831536293, -0.10821893811225891, -0.01744477078318596, 0.041555050760507584, 0.32047414779663086, -0.23775121569633484, 0.016841387376189232, 0.005316582508385181, 0.005321369506418705, 0.026733338832855225, 0.23957665264606476, 0.2553958296775818, -0.0839494988322258, 0.8367865681648254, -0.008928247727453709, -0.0007909588748589158, -0.0029121667612344027, 0.2443583458662033, -0.2622867524623871, 0.0791078731417656, 0.8008458614349365, -0.0076818885281682014, 0.0012583436910063028, 0.0015219965716823936]} +{"t": 2.6341, "q": [-0.1539486050605774, 0.022171134129166603, 0.019203977659344673, 0.31726130843162537, -0.1682516187429428, -0.015121467411518097, -0.10821893811225891, -0.01744477078318596, 0.041595228016376495, 0.3204997181892395, -0.23776395618915558, 0.016863001510500908, 0.0053701503202319145, 0.005336492322385311, 0.026676252484321594, 0.2395167201757431, 0.255491703748703, -0.08385362476110458, 0.8367385864257812, -0.008916263468563557, -0.0009347695740871131, -0.0029361352790147066, 0.24432240426540375, -0.26229873299598694, 0.07904794812202454, 0.8008338809013367, -0.0076699042692780495, 0.0012463594321161509, 0.0015219965716823936]} +{"t": 2.6508, "q": [-0.1539400815963745, 0.022120002657175064, 0.019217370077967644, 0.317286878824234, -0.1682516187429428, -0.015121467411518097, -0.10818484425544739, -0.01745329238474369, 0.041581835597753525, 0.3204911947250366, -0.23775969445705414, 0.016855783760547638, 0.005356758367270231, 0.005359132774174213, 0.02664290927350521, 0.23938490450382233, 0.2555156648159027, -0.08381766825914383, 0.8366906642913818, -0.008928247727453709, -0.0009347695740871131, -0.002948119305074215, 0.2443343847990036, -0.26229873299598694, 0.07904794812202454, 0.8008338809013367, -0.0076818885281682014, 0.0012343751732259989, 0.0015100124292075634]} +{"t": 2.6676, "q": [-0.15393155813217163, 0.02215409092605114, 0.019203977659344673, 0.3173465430736542, -0.16825583577156067, -0.015114426612854004, -0.10818484425544739, -0.01744477078318596, 0.041608620434999466, 0.32052528858184814, -0.23776385188102722, 0.01684863679111004, 0.005303190555423498, 0.0053666746243834496, 0.026638133451342583, 0.23937290906906128, 0.25547972321510315, -0.08379369974136353, 0.8366667032241821, -0.008928247727453709, -0.0011385014513507485, -0.002960103563964367, 0.2443823218345642, -0.2623107135295868, 0.07904794812202454, 0.8008338809013367, -0.0076818885281682014, 0.0012463594321161509, 0.0014980281703174114]} +{"t": 2.6843, "q": [-0.15391451120376587, 0.022111479192972183, 0.019217370077967644, 0.3174317479133606, -0.16825173795223236, -0.015135605819523335, -0.10818484425544739, -0.01745329238474369, 0.04163540527224541, 0.32051676511764526, -0.23776385188102722, 0.01684863679111004, 0.005289798602461815, 0.00535158347338438, 0.026657192036509514, 0.23937290906906128, 0.25552764534950256, -0.08380568772554398, 0.8366427421569824, -0.008952216245234013, -0.0012583436910063028, -0.002948119305074215, 0.24437034130096436, -0.2623107135295868, 0.07904794812202454, 0.8008458614349365, -0.0076818885281682014, 0.0012343751732259989, 0.0014980281703174114]} +{"t": 2.701, "q": [-0.1539486050605774, 0.022060347720980644, 0.019217370077967644, 0.31740617752075195, -0.16825173795223236, -0.015135605819523335, -0.10819336771965027, -0.017461813986301422, 0.041608620434999466, 0.320533812046051, -0.23776385188102722, 0.01684863679111004, 0.005289798602461815, 0.00535158347338438, 0.026657192036509514, 0.23934894800186157, 0.2555875778198242, -0.08374576270580292, 0.8366068005561829, -0.00894023198634386, -0.0013901700731366873, -0.0028881982434540987, 0.24439430236816406, -0.2623586654663086, 0.07901199907064438, 0.8008338809013367, -0.0076818885281682014, 0.0012463594321161509, 0.0014980281703174114]} +{"t": 2.718, "q": [-0.1539486050605774, 0.02208591252565384, 0.019244154915213585, 0.31740617752075195, -0.16826030611991882, -0.015135662630200386, -0.1081763282418251, -0.017461813986301422, 0.041622012853622437, 0.3205082416534424, -0.23776385188102722, 0.01684863679111004, 0.005316582508385181, 0.005344065837562084, 0.026633448898792267, 0.2392650544643402, 0.2559471130371094, -0.08372179418802261, 0.836534857749939, -0.00894023198634386, -0.0014500912511721253, -0.0029361352790147066, 0.2443823218345642, -0.26249048113822937, 0.07901199907064438, 0.8008458614349365, -0.0076818885281682014, 0.0012583436910063028, 0.0014860439114272594]} +{"t": 2.7347, "q": [-0.15393155813217163, 0.02209443598985672, 0.019257545471191406, 0.3173976540565491, -0.16825595498085022, -0.015128565020859241, -0.10818484425544739, -0.017478859052062035, 0.04164879396557808, 0.3205082416534424, -0.23776385188102722, 0.01684863679111004, 0.0053701503202319145, 0.005419457331299782, 0.026614205911755562, 0.2391212433576584, 0.25623470544815063, -0.0836259201169014, 0.8363790512084961, -0.008916263468563557, -0.0015699334908276796, -0.0029241510201245546, 0.2443823218345642, -0.26257437467575073, 0.07895207405090332, 0.8008458614349365, -0.0076818885281682014, 0.001270327833481133, 0.0015100124292075634]} +{"t": 2.7514, "q": [-0.1539400815963745, 0.02209443598985672, 0.019217370077967644, 0.3173806369304657, -0.16825608909130096, -0.015142703428864479, -0.10820189118385315, -0.017478859052062035, 0.04163540527224541, 0.3205082416534424, -0.23776385188102722, 0.01684863679111004, 0.005316582508385181, 0.0053968485444784164, 0.026609521359205246, 0.23898941278457642, 0.2565702795982361, -0.08349409699440002, 0.8361873030662537, -0.008916263468563557, -0.001701759989373386, -0.0029001825023442507, 0.2443583458662033, -0.26269420981407166, 0.07890413701534271, 0.8008458614349365, -0.0076699042692780495, 0.0012463594321161509, 0.0015100124292075634]} +{"t": 2.7681, "q": [-0.15392303466796875, 0.022120002657175064, 0.019217370077967644, 0.31735506653785706, -0.16826030611991882, -0.015135662630200386, -0.10819336771965027, -0.017478859052062035, 0.041622012853622437, 0.3205082416534424, -0.2377680093050003, 0.01684148982167244, 0.005383542273193598, 0.0054043978452682495, 0.026595238596200943, 0.23890553414821625, 0.25690582394599915, -0.08339822292327881, 0.8360075950622559, -0.008892294950783253, -0.0017736653098836541, -0.0029121667612344027, 0.2443583458662033, -0.2628020644187927, 0.07889215648174286, 0.8008458614349365, -0.0076818885281682014, 0.0012463594321161509, 0.0015219965716823936]} +{"t": 2.7849, "q": [-0.15392303466796875, 0.02208591252565384, 0.019217370077967644, 0.31735506653785706, -0.16825173795223236, -0.015135605819523335, -0.10818484425544739, -0.017478859052062035, 0.041595228016376495, 0.3204997181892395, -0.23776385188102722, 0.01684863679111004, 0.005437109619379044, 0.0054043978452682495, 0.026595238596200943, 0.23890553414821625, 0.25720545649528503, -0.0833742544054985, 0.8359236717224121, -0.008952216245234013, -0.0018216022290289402, -0.0029001825023442507, 0.2443343847990036, -0.263005793094635, 0.07878429442644119, 0.8008338809013367, -0.0076699042692780495, 0.0012463594321161509, 0.0015219965716823936]} +{"t": 2.8018, "q": [-0.153905987739563, 0.02210295759141445, 0.019217370077967644, 0.3173465430736542, -0.16826030611991882, -0.015135662630200386, -0.1081763282418251, -0.017495902255177498, 0.041595228016376495, 0.3204911947250366, -0.23776395618915558, 0.016863001510500908, 0.005450501572340727, 0.0054043978452682495, 0.026595238596200943, 0.23892949521541595, 0.25737321376800537, -0.0833742544054985, 0.835935652256012, -0.008928247727453709, -0.0018216022290289402, -0.0029241510201245546, 0.24429842829704285, -0.2634252607822418, 0.07870040833950043, 0.8008338809013367, -0.0076818885281682014, 0.0012463594321161509, 0.0015100124292075634]} +{"t": 2.8185, "q": [-0.15392303466796875, 0.022137045860290527, 0.019190587103366852, 0.3173465430736542, -0.16825173795223236, -0.015135605819523335, -0.10816780477762222, -0.017478859052062035, 0.041555050760507584, 0.3204997181892395, -0.23776385188102722, 0.01684863679111004, 0.005504068918526173, 0.005411915481090546, 0.02661898173391819, 0.23895347118377686, 0.2573133111000061, -0.08342219144105911, 0.8359236717224121, -0.008952216245234013, -0.001797633827663958, -0.0029241510201245546, 0.24429842829704285, -0.2639046311378479, 0.07868842035531998, 0.8008458614349365, -0.0076818885281682014, 0.0012343751732259989, 0.0015219965716823936]} +{"t": 2.8352, "q": [-0.15393155813217163, 0.02210295759141445, 0.01917719468474388, 0.31735506653785706, -0.16825595498085022, -0.015128565020859241, -0.10818484425544739, -0.01745329238474369, 0.041501484811306, 0.3204997181892395, -0.23775969445705414, 0.016855783760547638, 0.0055442447774112225, 0.005381757393479347, 0.026628579944372177, 0.23897743225097656, 0.25720545649528503, -0.08355402201414108, 0.8359476327896118, -0.008928247727453709, -0.001797633827663958, -0.0029361352790147066, 0.24427446722984314, -0.26456376910209656, 0.07860453426837921, 0.8008338809013367, -0.0076818885281682014, 0.0012583436910063028, 0.0015100124292075634]} +{"t": 2.8521, "q": [-0.15392303466796875, 0.02210295759141445, 0.01915041171014309, 0.3172527849674225, -0.16824738681316376, -0.01512850821018219, -0.10818484425544739, -0.01738511584699154, 0.04151487722992897, 0.32048267126083374, -0.23776385188102722, 0.01684863679111004, 0.005557636730372906, 0.005366690456867218, 0.026619119569659233, 0.23897743225097656, 0.2571095824241638, -0.08356600254774094, 0.8359596133232117, -0.008976184763014317, -0.0018096179701387882, -0.0029121667612344027, 0.24427446722984314, -0.26523488759994507, 0.07848469167947769, 0.8008458614349365, -0.0076818885281682014, 0.0012583436910063028, 0.0015100124292075634]} +{"t": 2.8688, "q": [-0.1539400815963745, 0.022137045860290527, 0.01915041171014309, 0.31727835536003113, -0.16825173795223236, -0.015135605819523335, -0.1081763282418251, -0.017342504113912582, 0.04147469997406006, 0.32048267126083374, -0.237759530544281, 0.016827093437314034, 0.005584420636296272, 0.005366666242480278, 0.026647640392184258, 0.23902536928653717, 0.25707361102104187, -0.08368584513664246, 0.8360195755958557, -0.008976184763014317, -0.001749696908518672, -0.0029121667612344027, 0.24427446722984314, -0.26606178283691406, 0.07844873517751694, 0.8008458614349365, -0.0076818885281682014, 0.0012583436910063028, 0.0015339808305725455]} +{"t": 2.8856, "q": [-0.15392303466796875, 0.022128524258732796, 0.019123626872897148, 0.3172357380390167, -0.16825173795223236, -0.015135605819523335, -0.10815928131341934, -0.0172658059746027, 0.04147469997406006, 0.32052528858184814, -0.23776385188102722, 0.01684863679111004, 0.0055442447774112225, 0.005351567640900612, 0.026676205918192863, 0.23907330632209778, 0.25702568888664246, -0.0836498886346817, 0.8360315561294556, -0.009036106057465076, -0.0016298546688631177, -0.0029001825023442507, 0.24432240426540375, -0.26696059107780457, 0.07834088057279587, 0.8008458614349365, -0.0076818885281682014, 0.0012343751732259989, 0.0015219965716823936]} +{"t": 2.9024, "q": [-0.15392303466796875, 0.022179657593369484, 0.019056666642427444, 0.3172527849674225, -0.16825173795223236, -0.015135605819523335, -0.10816780477762222, -0.017180584371089935, 0.04146130755543709, 0.32052528858184814, -0.23775960505008698, 0.01684143953025341, 0.005517460871487856, 0.005374168045818806, 0.026690397411584854, 0.2391212433576584, 0.2569178342819214, -0.08375775068998337, 0.8360555171966553, -0.008988169021904469, -0.0015819177497178316, -0.0029121667612344027, 0.2443823218345642, -0.26781147718429565, 0.0782330259680748, 0.8008818030357361, -0.0076818885281682014, 0.0012463594321161509, 0.0015459650894626975]} +{"t": 2.9191, "q": [-0.15392303466796875, 0.02215409092605114, 0.019070059061050415, 0.3172442615032196, -0.16825608909130096, -0.015142703428864479, -0.10818484425544739, -0.01709536276757717, 0.041447918862104416, 0.3204997181892395, -0.23775537312030792, 0.016834240406751633, 0.005450501572340727, 0.005411844234913588, 0.026704542338848114, 0.23922909796237946, 0.25665417313575745, -0.08378171920776367, 0.836079478263855, -0.009012137539684772, -0.0014980281703174114, -0.0029361352790147066, 0.24441827833652496, -0.26866236329078674, 0.07808921486139297, 0.8009297251701355, -0.007693872787058353, 0.0012463594321161509, 0.0014860439114272594]} +{"t": 2.9359, "q": [-0.15392303466796875, 0.02216261252760887, 0.019029883667826653, 0.31726130843162537, -0.16825173795223236, -0.015135605819523335, -0.10816780477762222, -0.0169675312936306, 0.041407741606235504, 0.32051676511764526, -0.237759530544281, 0.016827093437314034, 0.00546389352530241, 0.005389235448092222, 0.026699857786297798, 0.2392650544643402, 0.2564384639263153, -0.08375775068998337, 0.8361274003982544, -0.008976184763014317, -0.0014021543320268393, -0.0029361352790147066, 0.24441827833652496, -0.26953721046447754, 0.07802928984165192, 0.8009417057037354, -0.0076818885281682014, 0.0012583436910063028, 0.0015219965716823936]} +{"t": 2.9526, "q": [-0.15391451120376587, 0.02215409092605114, 0.01897631585597992, 0.317286878824234, -0.16825608909130096, -0.015142703428864479, -0.10815928131341934, -0.016873788088560104, 0.04135417565703392, 0.3204911947250366, -0.2377510368824005, 0.016812697052955627, 0.005437109619379044, 0.005374168045818806, 0.026690397411584854, 0.23927703499794006, 0.2563665509223938, -0.08380568772554398, 0.8361753225326538, -0.00900015328079462, -0.001306280493736267, -0.0029361352790147066, 0.24443025887012482, -0.27025625109672546, 0.07796937227249146, 0.8010016679763794, -0.0076818885281682014, 0.0012583436910063028, 0.0014980281703174114]} +{"t": 2.9693, "q": [-0.15388894081115723, 0.022188179194927216, 0.018922748044133186, 0.31730392575263977, -0.16824328899383545, -0.015149695798754692, -0.10816780477762222, -0.016763001680374146, 0.04131399840116501, 0.32051676511764526, -0.237759530544281, 0.016827093437314034, 0.005477285478264093, 0.005374168045818806, 0.026690397411584854, 0.2392890304327011, 0.2563905119895935, -0.08378171920776367, 0.8361753225326538, -0.008976184763014317, -0.0012463594321161509, -0.0029121667612344027, 0.24441827833652496, -0.2710951566696167, 0.07784952968358994, 0.801037609577179, -0.0076818885281682014, 0.001270327833481133, 0.0014860439114272594]} +{"t": 2.986, "q": [-0.15388041734695435, 0.02216261252760887, 0.018882572650909424, 0.317286878824234, -0.168243408203125, -0.01516383420675993, -0.10816780477762222, -0.016686301678419113, 0.0412738211452961, 0.3205082416534424, -0.23775528371334076, 0.016819894313812256, 0.005450501572340727, 0.0054269591346383095, 0.02665696293115616, 0.23927703499794006, 0.2564144730567932, -0.08379369974136353, 0.836163341999054, -0.008928247727453709, -0.0011504855938255787, -0.0029361352790147066, 0.24443025887012482, -0.2718381881713867, 0.07771769911050797, 0.8010615706443787, -0.0076579200103878975, 0.001270327833481133, 0.0014740596525371075]} +{"t": 3.0028, "q": [-0.15387189388275146, 0.02222226746380329, 0.01882900483906269, 0.317286878824234, -0.168234720826149, -0.015149639919400215, -0.10819336771965027, -0.016626646742224693, 0.04128721356391907, 0.32052528858184814, -0.23775528371334076, 0.016819894313812256, 0.005517460871487856, 0.005494800861924887, 0.026652002707123756, 0.23930101096630096, 0.2564144730567932, -0.0836498886346817, 0.8361873030662537, -0.008976184763014317, -0.0010546118719503284, -0.0029361352790147066, 0.24439430236816406, -0.2725932002067566, 0.07766976207494736, 0.8010735511779785, -0.0076818885281682014, 0.001282312092371285, 0.0014860439114272594]} +{"t": 3.0195, "q": [-0.15386338531970978, 0.022247834131121635, 0.01881561428308487, 0.31731244921684265, -0.16823484003543854, -0.015163777396082878, -0.10816780477762222, -0.016584036871790886, 0.04122025519609451, 0.3205423355102539, -0.23775936663150787, 0.016798384487628937, 0.005530852824449539, 0.005570192821323872, 0.02663275972008705, 0.23851005733013153, 0.254748672246933, -0.08379369974136353, 0.8382725715637207, -0.008976184763014317, -0.001318264752626419, -0.003008040599524975, 0.24337564408779144, -0.27235350012779236, 0.07713047415018082, 0.8035423159599304, -0.00771784083917737, 0.0011504855938255787, 0.0014740596525371075]} +{"t": 3.0362, "q": [-0.15384633839130402, 0.022230789065361023, 0.01881561428308487, 0.3173465430736542, -0.16823484003543854, -0.015163777396082878, -0.10816780477762222, -0.016592558473348618, 0.041247040033340454, 0.32052528858184814, -0.23776361346244812, 0.016805583611130714, 0.005637987982481718, 0.005645582918077707, 0.026613516733050346, 0.23708392679691315, 0.25236380100250244, -0.08295480906963348, 0.841016948223114, -0.009012137539684772, -0.001306280493736267, -0.0029361352790147066, 0.24157801270484924, -0.2721377909183502, 0.07600395381450653, 0.8088273406028748, -0.007741809356957674, 0.0012104067718610168, 0.0015100124292075634]} +{"t": 3.053, "q": [-0.15384633839130402, 0.022171134129166603, 0.018788829445838928, 0.3173380196094513, -0.1682349592447281, -0.015177915804088116, -0.10816780477762222, -0.016626646742224693, 0.04122025519609451, 0.3204997181892395, -0.2377762645483017, 0.01681283302605152, 0.006026353221386671, 0.005690847989171743, 0.02656584419310093, 0.2349267601966858, 0.25114142894744873, -0.08318250626325607, 0.845115602016449, -0.009167931973934174, -0.001318264752626419, -0.002996056340634823, 0.2403676062822342, -0.27200594544410706, 0.0752130001783371, 0.8140045404434204, -0.007753793615847826, 0.001282312092371285, 0.0014980281703174114]} +{"t": 3.0697, "q": [-0.1538548618555069, 0.022171134129166603, 0.018762046471238136, 0.3173465430736542, -0.16823484003543854, -0.015163777396082878, -0.10809962451457977, -0.01666073501110077, 0.04113990440964699, 0.3204997181892395, -0.23776370286941528, 0.016819927841424942, 0.006160271819680929, 0.005864197853952646, 0.02657957375049591, 0.23335683345794678, 0.24935577809810638, -0.08321846276521683, 0.847740113735199, -0.009167931973934174, -0.0010905645322054625, -0.002984072081744671, 0.2392650544643402, -0.2718381881713867, 0.07498529553413391, 0.8179593086242676, -0.007753793615847826, 0.001294296351261437, 0.0015339808305725455]} +{"t": 3.0866, "q": [-0.15386338531970978, 0.02215409092605114, 0.018735261633992195, 0.31732097268104553, -0.16823484003543854, -0.015163777396082878, -0.10810814797878265, -0.016694823279976845, 0.04113990440964699, 0.32047414779663086, -0.23775936663150787, 0.016798384487628937, 0.006213839631527662, 0.005962102673947811, 0.02667909674346447, 0.23209848999977112, 0.2476300448179245, -0.08327838033437729, 0.8499931693077087, -0.009311743080615997, -0.0009707222343422472, -0.003032008884474635, 0.23828235268592834, -0.2715385854244232, 0.07481751590967178, 0.8210992217063904, -0.007741809356957674, 0.001306280493736267, 0.0015459650894626975]} +{"t": 3.1033, "q": [-0.153905987739563, 0.022179657593369484, 0.018735261633992195, 0.3172357380390167, -0.1682390570640564, -0.015156736597418785, -0.10809962451457977, -0.016694823279976845, 0.04112651199102402, 0.32047414779663086, -0.23775945603847504, 0.016812730580568314, 0.006320974789559841, 0.006022323854267597, 0.026773979887366295, 0.23090006411075592, 0.24589233100414276, -0.08327838033437729, 0.8521623015403748, -0.009287774562835693, -0.0010546118719503284, -0.003032008884474635, 0.23728765547275543, -0.27113109827041626, 0.0746377557516098, 0.8238555788993835, -0.007741809356957674, 0.001294296351261437, 0.0015339808305725455]} +{"t": 3.1201, "q": [-0.15388894081115723, 0.022196700796484947, 0.018708478659391403, 0.3172357380390167, -0.1682390570640564, -0.015156736597418785, -0.10810814797878265, -0.016703346744179726, 0.04112651199102402, 0.32047414779663086, -0.23776352405548096, 0.016791237518191338, 0.006334366742521524, 0.005999667104333639, 0.02682633511722088, 0.22943799197673798, 0.24421453475952148, -0.08324243128299713, 0.8550385236740112, -0.009359680116176605, -0.0009827064350247383, -0.003043993143364787, 0.23513050377368927, -0.2707236409187317, 0.07464973628520966, 0.8282897472381592, -0.007741809356957674, 0.001294296351261437, 0.0015579492319375277]} +{"t": 3.1368, "q": [-0.15388894081115723, 0.022188179194927216, 0.0188022218644619, 0.3172442615032196, -0.168243408203125, -0.01516383420675993, -0.10810814797878265, -0.016711868345737457, 0.04115329682826996, 0.32047414779663086, -0.23776370286941528, 0.016819927841424942, 0.006267406977713108, 0.005961952731013298, 0.026859723031520844, 0.2280837744474411, 0.24238096177577972, -0.08320647478103638, 0.8580345511436462, -0.009407617151737213, -0.0008868326549418271, -0.003055977402254939, 0.23203857243061066, -0.27020832896232605, 0.0746377557516098, 0.8341260552406311, -0.007741809356957674, 0.001318264752626419, 0.0015459650894626975]} +{"t": 3.1536, "q": [-0.1538974642753601, 0.022111479192972183, 0.01881561428308487, 0.3172016441822052, -0.16824328899383545, -0.015149695798754692, -0.10810814797878265, -0.01679708994925022, 0.04116668552160263, 0.3204144835472107, -0.23776793479919434, 0.01682712696492672, 0.00613348837941885, 0.006007121875882149, 0.02690708637237549, 0.22650185227394104, 0.2400680035352707, -0.08309862017631531, 0.8611025214195251, -0.009467537514865398, -0.0009707222343422472, -0.003032008884474635, 0.22859910130500793, -0.2697529196739197, 0.07460179924964905, 0.8399863243103027, -0.00777776213362813, 0.0013542174128815532, 0.0015819177497178316]} +{"t": 3.1703, "q": [-0.15388041734695435, 0.02214556746184826, 0.018788829445838928, 0.3171590566635132, -0.1682390570640564, -0.015156736597418785, -0.10810814797878265, -0.016873788088560104, 0.0411800779402256, 0.3204059600830078, -0.23776786029338837, 0.016812780871987343, 0.006106704473495483, 0.00610499270260334, 0.02697797492146492, 0.2244165986776352, 0.23777900636196136, -0.0830506831407547, 0.8646498918533325, -0.00947952177375555, -0.0010186590952798724, -0.003043993143364787, 0.22464430332183838, -0.26946529746055603, 0.07462576776742935, 0.8450077176094055, -0.007813714444637299, 0.0013901700731366873, 0.0015939020086079836]} +{"t": 3.187, "q": [-0.1538974642753601, 0.022137045860290527, 0.01881561428308487, 0.31717610359191895, -0.16824328899383545, -0.015149695798754692, -0.10810814797878265, -0.016941964626312256, 0.04119347035884857, 0.32038041949272156, -0.23777218163013458, 0.016834326088428497, 0.0060933125205338, 0.006195358466356993, 0.027025142684578896, 0.22217555344104767, 0.23550200462341309, -0.0830506831407547, 0.867466151714325, -0.009515474550426006, -0.0008269115351140499, -0.003055977402254939, 0.2211928516626358, -0.2692016661167145, 0.07462576776742935, 0.8493459820747375, -0.007873635739088058, 0.0013781859306618571, 0.0016058861510828137]} +{"t": 3.2038, "q": [-0.15388894081115723, 0.02215409092605114, 0.0188022218644619, 0.31713348627090454, -0.16824764013290405, -0.015156793408095837, -0.10809962451457977, -0.01697605475783348, 0.04116668552160263, 0.3203292787075043, -0.23777218163013458, 0.016834326088428497, 0.006267406977713108, 0.006225452292710543, 0.027063028886914253, 0.21965886652469635, 0.23321302235126495, -0.08308663219213486, 0.8691319823265076, -0.009515474550426006, -0.0009108011145144701, -0.003079945920035243, 0.2181488573551178, -0.26903387904167175, 0.07450592517852783, 0.8530851006507874, -0.007933557033538818, 0.0013901700731366873, 0.0015819177497178316]} +{"t": 3.2206, "q": [-0.1539486050605774, 0.022128524258732796, 0.018721869215369225, 0.31712496280670166, -0.1682390570640564, -0.015156736597418785, -0.10811667144298553, -0.017010143026709557, 0.041072942316532135, 0.3203292787075043, -0.23777633905410767, 0.016827179118990898, 0.006749515421688557, 0.006240450777113438, 0.027119966223835945, 0.21674670279026031, 0.2311277687549591, -0.08308663219213486, 0.8706420063972473, -0.009551427327096462, -0.0009467537747696042, -0.003067961661145091, 0.21571604907512665, -0.2689499855041504, 0.07449394464492798, 0.8557096123695374, -0.007933557033538818, 0.0013542174128815532, 0.0015819177497178316]} +{"t": 3.2374, "q": [-0.1539486050605774, 0.022111479192972183, 0.0186415184289217, 0.31713348627090454, -0.168243408203125, -0.01516383420675993, -0.10810814797878265, -0.017018664628267288, 0.04101937636733055, 0.32029518485069275, -0.2377806007862091, 0.01683439500629902, 0.007164664100855589, 0.006247883662581444, 0.02720067650079727, 0.21383452415466309, 0.22956982254981995, -0.0830506831407547, 0.8721280097961426, -0.009623332880437374, -0.0010426276130601764, -0.003067961661145091, 0.21288777887821198, -0.2687941789627075, 0.07456585019826889, 0.8586457967758179, -0.007957525551319122, 0.0013901700731366873, 0.0015939020086079836]} +{"t": 3.2541, "q": [-0.1539486050605774, 0.022137045860290527, 0.018601343035697937, 0.3171505331993103, -0.168234720826149, -0.015149639919400215, -0.10811667144298553, -0.017001619562506676, 0.040952417999506, 0.3202696144580841, -0.2377721071243286, 0.01681997999548912, 0.007673555985093117, 0.006240245420485735, 0.027281442657113075, 0.21032315492630005, 0.2283114790916443, -0.0830267146229744, 0.8747885227203369, -0.00971920695155859, -0.0010665960144251585, -0.003103914437815547, 0.20972393453121185, -0.26871028542518616, 0.07445798814296722, 0.8613901734352112, -0.008029431104660034, 0.0014381069922819734, 0.0015939020086079836]} +{"t": 3.2709, "q": [-0.15398268401622772, 0.02214556746184826, 0.018561167642474174, 0.31713348627090454, -0.1682390570640564, -0.015156736597418785, -0.10810814797878265, -0.017001619562506676, 0.040885455906391144, 0.3202610909938812, -0.23777633905410767, 0.016827179118990898, 0.007874434813857079, 0.006202561780810356, 0.02728632651269436, 0.20790234208106995, 0.22770027816295624, -0.08276306092739105, 0.8764423727989197, -0.009934922680258751, -0.0010905645322054625, -0.0031158984638750553, 0.20599684119224548, -0.2686024308204651, 0.07452989369630814, 0.8635593056678772, -0.008053399622440338, 0.0014620755100622773, 0.0016298546688631177]} +{"t": 3.2876, "q": [-0.15396563708782196, 0.02215409092605114, 0.018547775223851204, 0.3171931505203247, -0.1682475209236145, -0.015142646618187428, -0.10810814797878265, -0.01697605475783348, 0.0408586747944355, 0.3202610909938812, -0.23777633905410767, 0.016827179118990898, 0.007928002625703812, 0.006195008289068937, 0.027300601825118065, 0.20599684119224548, 0.22758044302463531, -0.08264321833848953, 0.8775808215141296, -0.010234528221189976, -0.0012343751732259989, -0.0031158984638750553, 0.20165856182575226, -0.26853054761886597, 0.07454188168048859, 0.8657763600349426, -0.008089352399110794, 0.0014500912511721253, 0.0016658073291182518]} +{"t": 3.3043, "q": [-0.15393155813217163, 0.022137045860290527, 0.018534382805228233, 0.31713348627090454, -0.1682390570640564, -0.015156736597418785, -0.10809962451457977, -0.01697605475783348, 0.04087206721305847, 0.3202610909938812, -0.2377806007862091, 0.01683439500629902, 0.007928002625703812, 0.006232739891856909, 0.02725772187113762, 0.2043430209159851, 0.2277841717004776, -0.08231963962316513, 0.8785755634307861, -0.010677944868803024, -0.0012583436910063028, -0.0031398669816553593, 0.1970326453447342, -0.2693933844566345, 0.07430219650268555, 0.868209183216095, -0.00812530517578125, 0.0014860439114272594, 0.0016777915880084038]} +{"t": 3.3211, "q": [-0.15396563708782196, 0.022137045860290527, 0.018574560061097145, 0.317099392414093, -0.168243408203125, -0.01516383420675993, -0.10810814797878265, -0.016950488090515137, 0.04084528237581253, 0.3202184736728668, -0.2377847582101822, 0.01682724803686142, 0.00798156950622797, 0.00622521061450243, 0.02725300006568432, 0.20285698771476746, 0.22788004577159882, -0.08192416280508041, 0.8791627883911133, -0.011037471704185009, -0.001342233270406723, -0.0031398669816553593, 0.1920112520456314, -0.2712389826774597, 0.07412243634462357, 0.871492862701416, -0.00814927276223898, 0.0014860439114272594, 0.0017137442482635379]} +{"t": 3.3378, "q": [-0.15405938029289246, 0.022171134129166603, 0.01915041171014309, 0.3170652985572815, -0.16823484003543854, -0.015163777396082878, -0.10835529118776321, -0.01672891341149807, 0.04135417565703392, 0.3198605477809906, -0.2377510368824005, 0.016812697052955627, 0.008838650770485401, 0.006330499891191721, 0.027414096519351006, 0.20081965625286102, 0.22790400683879852, -0.081552654504776, 0.8803611993789673, -0.011349061504006386, -0.0015100124292075634, -0.0031398669816553593, 0.1855757236480713, -0.2739953398704529, 0.073762908577919, 0.8757592439651489, -0.008221178315579891, 0.0015339808305725455, 0.001725728390738368]} +{"t": 3.3546, "q": [-0.15450254082679749, 0.022716550156474113, 0.021078843623399734, 0.3171420097351074, -0.16822217404842377, -0.015184909105300903, -0.10974439233541489, -0.016277240589261055, 0.04300137609243393, 0.3191191256046295, -0.2368142008781433, 0.016778158023953438, 0.00999035406857729, 0.007149748038500547, 0.029030099511146545, 0.19783559441566467, 0.2286590188741684, -0.08072574436664581, 0.8817154169082642, -0.011636682786047459, -0.0018335864879190922, -0.0031518512405455112, 0.17739050090312958, -0.27806997299194336, 0.07355917245149612, 0.8795942068099976, -0.008245146833360195, 0.0015339808305725455, 0.001749696908518672]} +{"t": 3.3713, "q": [-0.15572120249271393, 0.02287846989929676, 0.021480601280927658, 0.3171164393424988, -0.16804265975952148, -0.015240289270877838, -0.11051138490438461, -0.016200540587306023, 0.04340313374996185, 0.3195026218891144, -0.23609842360019684, 0.016594305634498596, 0.009387718513607979, 0.007929215207695961, 0.03159652277827263, 0.19422833621501923, 0.2304806262254715, -0.07964716106653214, 0.8837886452674866, -0.011924304068088531, -0.0017137442482635379, -0.0031997880432754755, 0.1696726679801941, -0.28258803486824036, 0.07245662808418274, 0.8821228742599487, -0.008317052386701107, 0.0015339808305725455, 0.001749696908518672]} +{"t": 3.3881, "q": [-0.1561046987771988, 0.02263985015451908, 0.021373465657234192, 0.31712496280670166, -0.16798314452171326, -0.015296462923288345, -0.11128690093755722, -0.016396550461649895, 0.04337634891271591, 0.3199543058872223, -0.2358541339635849, 0.016764966771006584, 0.009146664291620255, 0.008843909949064255, 0.033751241862773895, 0.19024957716464996, 0.2326257973909378, -0.07752595096826553, 0.8864491581916809, -0.012056130915880203, -0.0016178704099729657, -0.0031997880432754755, 0.1624821275472641, -0.28765735030174255, 0.07065898925065994, 0.8850110769271851, -0.008353005163371563, 0.0016178704099729657, 0.001725728390738368]} +{"t": 3.405, "q": [-0.15625809133052826, 0.02251201868057251, 0.021279722452163696, 0.31721869111061096, -0.16795259714126587, -0.015232625417411327, -0.11144029349088669, -0.01667778007686138, 0.04334956780076027, 0.3199543058872223, -0.2353011518716812, 0.01694086566567421, 0.009280583821237087, 0.009647054597735405, 0.03485764190554619, 0.1872415393590927, 0.23427961766719818, -0.07381084561347961, 0.8881509304046631, -0.012140019796788692, -0.0015699334908276796, -0.0032117723021656275, 0.15590278804302216, -0.2934337556362152, 0.06962835043668747, 0.887935221195221, -0.008353005163371563, 0.0016298546688631177, 0.00173771264962852]} +{"t": 3.4218, "q": [-0.15622399747371674, 0.022435320541262627, 0.02117258682847023, 0.3174232244491577, -0.1676263064146042, -0.014671862125396729, -0.11138916015625, -0.01708684116601944, 0.0432424321770668, 0.32015883922576904, -0.23507004976272583, 0.017132794484496117, 0.009240408428013325, 0.010353156365454197, 0.03545907512307167, 0.1859472393989563, 0.23605328798294067, -0.06999985873699188, 0.8890737295150757, -0.012175972573459148, -0.0015219965716823936, -0.0032237565610557795, 0.15030615031719208, -0.29966554045677185, 0.06938866525888443, 0.8908114433288574, -0.008376973681151867, 0.0016538230702280998, 0.001749696908518672]} +{"t": 3.4385, "q": [-0.15600243210792542, 0.02240123227238655, 0.02063691057264805, 0.3174828886985779, -0.16735665500164032, -0.014217539690434933, -0.11096305400133133, -0.017478859052062035, 0.04273353889584541, 0.32057642936706543, -0.23508712649345398, 0.017161592841148376, 0.009093097411096096, 0.010654492303729057, 0.03526817634701729, 0.18526414036750793, 0.2377670258283615, -0.06540989875793457, 0.8900324702262878, -0.012163988314568996, -0.0015219965716823936, -0.0031997880432754755, 0.14536865055561066, -0.30522623658180237, 0.06900516897439957, 0.8939153552055359, -0.008412926457822323, 0.0016298546688631177, 0.00173771264962852]} +{"t": 3.4553, "q": [-0.15570415556430817, 0.022290444001555443, 0.02002088353037834, 0.317661851644516, -0.1672610193490982, -0.01406135130673647, -0.11031537503004074, -0.017649300396442413, 0.042238038033246994, 0.32065311074256897, -0.23510847985744476, 0.017197607085108757, 0.009240408428013325, 0.01114494726061821, 0.034655243158340454, 0.18458104133605957, 0.23960061371326447, -0.06133526563644409, 0.8911349773406982, -0.012199941091239452, -0.0015219965716823936, -0.0031638354994356632, 0.14137791097164154, -0.3101397752761841, 0.06795055419206619, 0.8975585699081421, -0.008412926457822323, 0.0016298546688631177, 0.0016298546688631177]} +{"t": 3.4721, "q": [-0.15543997287750244, 0.022068869322538376, 0.019578952342271805, 0.3180623948574066, -0.16723492741584778, -0.014018748886883259, -0.10972735285758972, -0.017853831872344017, 0.04203715920448303, 0.32056790590286255, -0.23512955009937286, 0.017190590500831604, 0.009709124453365803, 0.011778606101870537, 0.03401640057563782, 0.18379007279872894, 0.24190159142017365, -0.05939381942152977, 0.8924891948699951, -0.012223909609019756, -0.0015100124292075634, -0.0031997880432754755, 0.13801033794879913, -0.3143342435359955, 0.06779476255178452, 0.9010220170021057, -0.008424910716712475, 0.0016178704099729657, 0.0016178704099729657]} +{"t": 3.4888, "q": [-0.15520134568214417, 0.021872861310839653, 0.019431641325354576, 0.3183521330356598, -0.16721320152282715, -0.013983252458274364, -0.1092330664396286, -0.017956096678972244, 0.04184967279434204, 0.3205508589744568, -0.23514226078987122, 0.017197856679558754, 0.009976962581276894, 0.012351355515420437, 0.033690523356199265, 0.18307103216648102, 0.24439430236816406, -0.05733253434300423, 0.894131064414978, -0.01224787812680006, -0.0014620755100622773, -0.003187804017215967, 0.13393570482730865, -0.31783363223075867, 0.06784269958734512, 0.9054321646690369, -0.008448879234492779, 0.0016298546688631177, 0.0016418388113379478]} +{"t": 3.5055, "q": [-0.15512464940547943, 0.021762073040008545, 0.019351288676261902, 0.318479984998703, -0.16720014810562134, -0.01396195124834776, -0.10898592323064804, -0.0179987084120512, 0.041742537170648575, 0.3205082416534424, -0.23514652252197266, 0.01720505766570568, 0.010204624384641647, 0.012931203469634056, 0.033549241721630096, 0.18208831548690796, 0.2469829022884369, -0.054612115025520325, 0.8959526419639587, -0.01224787812680006, -0.0014740596525371075, -0.003175819758325815, 0.13075987994670868, -0.3202784061431885, 0.06781873106956482, 0.9082245230674744, -0.008448879234492779, 0.0016298546688631177, 0.0016178704099729657]} +{"t": 3.5222, "q": [-0.1551331728696823, 0.021770594641566277, 0.01917719468474388, 0.3184458911418915, -0.16718724370002747, -0.013954797759652138, -0.1088666170835495, -0.018007230013608932, 0.041581835597753525, 0.32047414779663086, -0.23514652252197266, 0.01720505766570568, 0.010191232897341251, 0.013502852991223335, 0.03362024948000908, 0.18088988959789276, 0.24934379756450653, -0.0505494624376297, 0.8975105881690979, -0.012223909609019756, -0.0014620755100622773, -0.003187804017215967, 0.12754811346530914, -0.32186034321784973, 0.06787864863872528, 0.91117262840271, -0.008472846820950508, 0.0016298546688631177, 0.0016298546688631177]} +{"t": 3.539, "q": [-0.1551331728696823, 0.021779118105769157, 0.019070059061050415, 0.31832656264305115, -0.16719157993793488, -0.013961895368993282, -0.10884957015514374, -0.01798166334629059, 0.04152826964855194, 0.3204485774040222, -0.23514243960380554, 0.017226537689566612, 0.010151056572794914, 0.014043934643268585, 0.033870991319417953, 0.179655522108078, 0.25133317708969116, -0.045587994158267975, 0.8991764187812805, -0.012199941091239452, -0.0014500912511721253, -0.0031997880432754755, 0.12443221360445023, -0.3226872384548187, 0.06787864863872528, 0.914168655872345, -0.008472846820950508, 0.0016418388113379478, 0.0016178704099729657]} +{"t": 3.5557, "q": [-0.15515021979808807, 0.021838771179318428, 0.01900310069322586, 0.3181135356426239, -0.1671830117702484, -0.01396183855831623, -0.10884957015514374, -0.01786235347390175, 0.041434526443481445, 0.3203633725643158, -0.2351507991552353, 0.01721225678920746, 0.010164448991417885, 0.01448728982359171, 0.03408944606781006, 0.17869678139686584, 0.25321468710899353, -0.04186089709401131, 0.9012497067451477, -0.012235893867909908, -0.0014860439114272594, -0.0031518512405455112, 0.12174774706363678, -0.322663277387619, 0.06790261715650558, 0.9175122976303101, -0.00848483107984066, 0.0016178704099729657, 0.0016298546688631177]} +{"t": 3.5724, "q": [-0.15511612594127655, 0.021813206374645233, 0.01884239725768566, 0.3179856836795807, -0.16719171404838562, -0.013976032845675945, -0.10883253067731857, -0.017896441742777824, 0.04128721356391907, 0.32029518485069275, -0.23516778647899628, 0.01722673885524273, 0.010204624384641647, 0.014923105016350746, 0.03431270644068718, 0.17801368236541748, 0.25518012046813965, -0.03977564349770546, 0.9044854044914246, -0.01224787812680006, -0.0015100124292075634, -0.0031638354994356632, 0.11875168979167938, -0.3223996162414551, 0.06796254217624664, 0.9215989112854004, -0.00848483107984066, 0.0016178704099729657, 0.0016178704099729657]} +{"t": 3.5891, "q": [-0.15512464940547943, 0.02184729464352131, 0.01881561428308487, 0.31791752576828003, -0.1671789139509201, -0.013983026146888733, -0.10883253067731857, -0.017853831872344017, 0.041247040033340454, 0.3202184736728668, -0.23519718647003174, 0.017205478623509407, 0.010057313367724419, 0.015448966063559055, 0.0346202626824379, 0.17700700461864471, 0.2561388313770294, -0.038061898201704025, 0.9065467119216919, -0.012271846644580364, -0.0013662016717717052, -0.0031638354994356632, 0.11538412421941757, -0.322291761636734, 0.06809436529874802, 0.9265843629837036, -0.008472846820950508, 0.001689775730483234, 0.0016538230702280998]} +{"t": 3.6058, "q": [-0.15511612594127655, 0.021813206374645233, 0.01884239725768566, 0.31782376766204834, -0.16717879474163055, -0.013968887738883495, -0.10884104669094086, -0.017794176936149597, 0.04130060598254204, 0.32002246379852295, -0.23522251844406128, 0.01720566302537918, 0.010097489692270756, 0.016125034540891647, 0.03491593897342682, 0.17553295195102692, 0.2563425898551941, -0.0360964871942997, 0.9088237285614014, -0.012319783680140972, -0.0014261228498071432, -0.0031997880432754755, 0.11292735487222672, -0.3221479654312134, 0.06808238476514816, 0.9299039840698242, -0.008460862562060356, 0.001701759989373386, 0.0016538230702280998]} +{"t": 3.6226, "q": [-0.15512464940547943, 0.021838771179318428, 0.01884239725768566, 0.3177470862865448, -0.16717469692230225, -0.013990066945552826, -0.10883253067731857, -0.01775156706571579, 0.041247040033340454, 0.31992873549461365, -0.23527754843235016, 0.017227614298462868, 0.010017137974500656, 0.016755668446421623, 0.035287704318761826, 0.17341174185276031, 0.25598305463790894, -0.03413107246160507, 0.9110407829284668, -0.012391689233481884, -0.0013901700731366873, -0.003175819758325815, 0.11126154661178589, -0.32215994596481323, 0.06815429031848907, 0.9323247671127319, -0.008448879234492779, 0.0016777915880084038, 0.0016418388113379478]} +{"t": 3.6393, "q": [-0.1551416963338852, 0.021881382912397385, 0.018882572650909424, 0.3177129924297333, -0.16717469692230225, -0.013990066945552826, -0.10884957015514374, -0.017717478796839714, 0.04128721356391907, 0.31979238986968994, -0.23532377183437347, 0.017192132771015167, 0.009936786256730556, 0.017318671569228172, 0.035636525601148605, 0.17157815396785736, 0.25529995560646057, -0.03236939385533333, 0.9132938385009766, -0.012415657751262188, -0.0013781859306618571, -0.003175819758325815, 0.10976351797580719, -0.32172849774360657, 0.06815429031848907, 0.9344699382781982, -0.008472846820950508, 0.001725728390738368, 0.0015699334908276796]} +{"t": 3.656, "q": [-0.15510760247707367, 0.021872861310839653, 0.018936140462756157, 0.31754255294799805, -0.16717469692230225, -0.013990066945552826, -0.10885809361934662, -0.017674867063760757, 0.04130060598254204, 0.3195708096027374, -0.23537887632846832, 0.01721399649977684, 0.009575205855071545, 0.017889337614178658, 0.03593289479613304, 0.17060743272304535, 0.2549164593219757, -0.03032008931040764, 0.9153191447257996, -0.012559467926621437, -0.001306280493736267, -0.0031518512405455112, 0.10825350880622864, -0.3202185034751892, 0.0679984912276268, 0.9378015995025635, -0.00848483107984066, 0.0017137442482635379, 0.0009707222343422472]} +{"t": 3.6729, "q": [-0.15482637286186218, 0.02197512611746788, 0.019043276086449623, 0.31758514046669006, -0.16716623306274414, -0.014004156924784184, -0.10892627388238907, -0.01768338866531849, 0.04132739081978798, 0.31934070587158203, -0.2353915274143219, 0.01720690354704857, 0.009026138111948967, 0.018324250355362892, 0.036249060183763504, 0.1700441688299179, 0.2548445463180542, -0.0264851376414299, 0.9170209169387817, -0.012547483667731285, -0.001294296351261437, -0.003175819758325815, 0.10667158663272858, -0.319379597902298, 0.06784269958734512, 0.9426312446594238, -0.008448879234492779, 0.001797633827663958, 0.0003475425182841718]} +{"t": 3.6897, "q": [-0.15478377044200897, 0.021992169320583344, 0.01915041171014309, 0.317474365234375, -0.16717903316020966, -0.01399716455489397, -0.10901149362325668, -0.017666345462203026, 0.041421134024858475, 0.3190680146217346, -0.23540006577968597, 0.017221301794052124, 0.008624380454421043, 0.018751773983240128, 0.036532238125801086, 0.16948091983795166, 0.2540416121482849, -0.02383662387728691, 0.9184710383415222, -0.012643357738852501, -0.0012583436910063028, -0.003187804017215967, 0.1056409478187561, -0.31963127851486206, 0.06730341166257858, 0.9489229321479797, -0.008424910716712475, 0.0018815234070643783, -0.0009946906939148903]} +{"t": 3.7064, "q": [-0.1547326296567917, 0.02197512611746788, 0.019190587103366852, 0.317474365234375, -0.16716623306274414, -0.014004156924784184, -0.10904558002948761, -0.017674867063760757, 0.041407741606235504, 0.31868451833724976, -0.2354254424571991, 0.01722146011888981, 0.008276191540062428, 0.019164375960826874, 0.036787249147892, 0.1685701161623001, 0.25298699736595154, -0.022098911926150322, 0.9193817973136902, -0.012727247551083565, -0.001330249011516571, -0.003175819758325815, 0.10554507374763489, -0.31999078392982483, 0.0664525255560875, 0.9547232985496521, -0.008424910716712475, 0.0020972394850105047, -0.0024927188642323017]} +{"t": 3.7233, "q": [-0.15464740991592407, 0.021983647719025612, 0.019217370077967644, 0.31749141216278076, -0.16716623306274414, -0.014004156924784184, -0.10905410349369049, -0.017649300396442413, 0.041394349187612534, 0.31828397512435913, -0.2354254424571991, 0.01722146011888981, 0.00772712379693985, 0.01941889151930809, 0.037077177315950394, 0.16773121058940887, 0.25208818912506104, -0.020900487899780273, 0.9203525185585022, -0.01278716791421175, -0.0013781859306618571, -0.003187804017215967, 0.10560499131679535, -0.3200267553329468, 0.06633269041776657, 0.9606075286865234, -0.008424910716712475, 0.002157160546630621, -0.003379551460966468]} +{"t": 3.74, "q": [-0.15465593338012695, 0.021992169320583344, 0.01931111328303814, 0.3173891305923462, -0.16717493534088135, -0.014018361456692219, -0.10912228375673294, -0.017538513988256454, 0.041434526443481445, 0.3179856836795807, -0.2354210913181305, 0.01719989813864231, 0.007271799258887768, 0.019394846633076668, 0.03745993599295616, 0.1666526347398758, 0.2512253224849701, -0.019690081477165222, 0.9215989112854004, -0.01284708920866251, -0.0013901700731366873, -0.003187804017215967, 0.10560499131679535, -0.3225674033164978, 0.06612895429134369, 0.9675224423408508, -0.008424910716712475, 0.0022889869287610054, -0.003487409558147192]} +{"t": 3.7567, "q": [-0.15464740991592407, 0.02197512611746788, 0.019364681094884872, 0.31716758012771606, -0.16717928647994995, -0.014025458134710789, -0.10917340964078903, -0.01745329238474369, 0.041421134024858475, 0.317661851644516, -0.2354210913181305, 0.01719989813864231, 0.006923609878867865, 0.01920536532998085, 0.03785369545221329, 0.16535833477973938, 0.2505542039871216, -0.01876729726791382, 0.922893226146698, -0.013110741972923279, -0.0013901700731366873, -0.0031997880432754755, 0.1056169793009758, -0.32605481147766113, 0.06591323763132095, 0.9731910228729248, -0.008412926457822323, 0.00264851376414299, -0.0034394727554172277]} +{"t": 3.7737, "q": [-0.15466445684432983, 0.022017735987901688, 0.019378073513507843, 0.3168863356113434, -0.16717493534088135, -0.014018361456692219, -0.10924158990383148, -0.01733398251235485, 0.04146130755543709, 0.3173721134662628, -0.2354380041360855, 0.01720002107322216, 0.006695947609841824, 0.019181719049811363, 0.038113199174404144, 0.16421984136104584, 0.25006285309791565, -0.017892448231577873, 0.9238279461860657, -0.013542174361646175, -0.0014021543320268393, -0.0031997880432754755, 0.10560499131679535, -0.3289310336112976, 0.06564958393573761, 0.9769420623779297, -0.008412926457822323, 0.0029121667612344027, -0.0032956618815660477]} +{"t": 3.7907, "q": [-0.15465593338012695, 0.022068869322538376, 0.019445031881332397, 0.31662216782569885, -0.16717928647994995, -0.014025458134710789, -0.10937794297933578, -0.017231717705726624, 0.04154166206717491, 0.3171420097351074, -0.2354506552219391, 0.01719292812049389, 0.006575420964509249, 0.019346004351973534, 0.03836571052670479, 0.16261395812034607, 0.24982315301895142, -0.017005614936351776, 0.9250383973121643, -0.014333133585751057, -0.0013901700731366873, -0.0031997880432754755, 0.10585666447877884, -0.33138778805732727, 0.06558966636657715, 0.981316328048706, -0.008412926457822323, 0.0033196303993463516, -0.0032237565610557795]} +{"t": 3.8075, "q": [-0.15467298030853271, 0.022060347720980644, 0.019578952342271805, 0.31640058755874634, -0.16717928647994995, -0.014025458134710789, -0.10950577259063721, -0.017120929434895515, 0.04163540527224541, 0.3168778121471405, -0.23545894026756287, 0.01716427318751812, 0.006508461199700832, 0.019615091383457184, 0.03872063755989075, 0.1607084572315216, 0.2497512549161911, -0.016082830727100372, 0.9262847304344177, -0.015603461302816868, -0.001318264752626419, -0.003187804017215967, 0.10580872744321823, -0.3333771824836731, 0.065601646900177, 0.9878716468811035, -0.008424910716712475, 0.003882888937368989, -0.0031997880432754755]} +{"t": 3.8242, "q": [-0.15475820004940033, 0.022077390924096107, 0.0196726955473423, 0.31626421213150024, -0.16717928647994995, -0.014025458134710789, -0.10971030592918396, -0.017078319564461708, 0.04168897122144699, 0.31672441959381104, -0.2354588508605957, 0.0171499103307724, 0.0065620290115475655, 0.019906915724277496, 0.03903316706418991, 0.15867114067077637, 0.24971529841423035, -0.015231950208544731, 0.9271835684776306, -0.016753947362303734, -0.001330249011516571, -0.0032237565610557795, 0.10576079040765762, -0.33473140001296997, 0.06554172933101654, 0.9940794706344604, -0.008412926457822323, 0.005368933081626892, -0.0032117723021656275]} +{"t": 3.8409, "q": [-0.15488603711128235, 0.022068869322538376, 0.019726261496543884, 0.3162301480770111, -0.16718362271785736, -0.014032555744051933, -0.10990631580352783, -0.017069797962903976, 0.041769322007894516, 0.31668180227279663, -0.23545458912849426, 0.017142709344625473, 0.006602204404771328, 0.020250637084245682, 0.0395197868347168, 0.15682557225227356, 0.2497272789478302, -0.014045512303709984, 0.9277588129043579, -0.01746101677417755, -0.0012583436910063028, -0.0032117723021656275, 0.10571285337209702, -0.3357500433921814, 0.06554172933101654, 0.9987893104553223, -0.008412926457822323, 0.007873635739088058, -0.0032597093377262354]} +{"t": 3.8576, "q": [-0.15492011606693268, 0.02209443598985672, 0.01998070813715458, 0.3162216246128082, -0.16717928647994995, -0.014025458134710789, -0.11018754541873932, -0.017061274498701096, 0.04202376678586006, 0.3167073726654053, -0.23545877635478973, 0.017135564237833023, 0.006602204404771328, 0.020564263686537743, 0.039968494325876236, 0.15515977144241333, 0.24973927438259125, -0.012631373479962349, 0.9282261729240417, -0.017892448231577873, -0.001270327833481133, -0.0032117723021656275, 0.10572483390569687, -0.3361455202102661, 0.06551776081323624, 1.0042901039123535, -0.008412926457822323, 0.010090718045830727, -0.003367567202076316]} +{"t": 3.8743, "q": [-0.15498830378055573, 0.022077390924096107, 0.020235154777765274, 0.31625568866729736, -0.1671750545501709, -0.014032498933374882, -0.1103324219584465, -0.017044231295585632, 0.04235856607556343, 0.3167414665222168, -0.2354504019021988, 0.017149856314063072, 0.006642380263656378, 0.020960399881005287, 0.040410928428173065, 0.15302656590938568, 0.2497033178806305, -0.010630007833242416, 0.9293766617774963, -0.018036259338259697, -0.0012583436910063028, -0.003187804017215967, 0.10573682188987732, -0.33618149161338806, 0.06542188674211502, 1.0096110105514526, -0.008388957940042019, 0.011732556857168674, -0.003571299137547612]} +{"t": 3.8913, "q": [-0.15505647659301758, 0.02209443598985672, 0.020436033606529236, 0.3162897825241089, -0.16717058420181274, -0.014011254534125328, -0.11044320464134216, -0.017137974500656128, 0.04253266006708145, 0.31686076521873474, -0.2354544997215271, 0.017128365114331245, 0.006615596357733011, 0.021161608397960663, 0.04076167941093445, 0.15076155960559845, 0.2491999864578247, -0.006771087180823088, 0.9309226274490356, -0.018072212114930153, -0.001342233270406723, -0.0032357408199459314, 0.10577277094125748, -0.3361215591430664, 0.06539791822433472, 1.0136138200759888, -0.008388957940042019, 0.012619389221072197, -0.003990747034549713]} +{"t": 3.908, "q": [-0.1550990790128708, 0.02210295759141445, 0.020623520016670227, 0.31639206409454346, -0.16717058420181274, -0.014011254534125328, -0.11057104170322418, -0.017257284373044968, 0.04284067451953888, 0.3170652985572815, -0.23545031249523163, 0.017135510221123695, 0.006495069246739149, 0.021266227588057518, 0.04088281840085983, 0.14842462539672852, 0.2488524317741394, -0.003175819758325815, 0.9322768449783325, -0.01816808618605137, -0.0013662016717717052, -0.0032357408199459314, 0.10574880242347717, -0.3361455202102661, 0.0652541071176529, 1.016597867012024, -0.008388957940042019, 0.013314474374055862, -0.004757737275213003]} +{"t": 3.9248, "q": [-0.15506500005722046, 0.022111479192972183, 0.02097170799970627, 0.3165454566478729, -0.1671791672706604, -0.01401131134480238, -0.11062217503786087, -0.017402159050107002, 0.043108511716127396, 0.317286878824234, -0.23543767631053925, 0.017142605036497116, 0.006240623537451029, 0.021348772570490837, 0.04090529680252075, 0.14642326533794403, 0.24894830584526062, -0.0010665960144251585, 0.9328880310058594, -0.018251974135637283, -0.0014141385909169912, -0.0032237565610557795, 0.10568888485431671, -0.33615753054618835, 0.06505037099123001, 1.019126534461975, -0.008388957940042019, 0.013805827125906944, -0.005668538622558117]} +{"t": 3.9417, "q": [-0.15506500005722046, 0.022111479192972183, 0.0211859792470932, 0.3165454566478729, -0.16717903316020966, -0.01399716455489397, -0.11064773797988892, -0.017589645460247993, 0.04330939054489136, 0.3175084590911865, -0.23543767631053925, 0.017142605036497116, 0.00605313666164875, 0.02135639823973179, 0.04088163748383522, 0.1444578468799591, 0.24904417991638184, 0.0009946906939148903, 0.9331517219543457, -0.01829991117119789, -0.0014381069922819734, -0.0032237565610557795, 0.10571285337209702, -0.33606165647506714, 0.06471481919288635, 1.0218589305877686, -0.008376973681151867, 0.014057496562600136, -0.006615292280912399]} +{"t": 3.9584, "q": [-0.1550990790128708, 0.022077390924096107, 0.02134668081998825, 0.31648579239845276, -0.1671832650899887, -0.013990123756229877, -0.1106562614440918, -0.017649300396442413, 0.04351026937365532, 0.3177470862865448, -0.23542921245098114, 0.01714256964623928, 0.005959393456578255, 0.02135639823973179, 0.04088163748383522, 0.14192917943000793, 0.24903219938278198, 0.0032716935966163874, 0.933211624622345, -0.018323879688978195, -0.0021092237439006567, -0.0031997880432754755, 0.10579673945903778, -0.336073637008667, 0.0643792599439621, 1.0262451171875, -0.008329036645591259, 0.014165353961288929, -0.007993478327989578]} +{"t": 3.9752, "q": [-0.1551331728696823, 0.022068869322538376, 0.021560952067375183, 0.3165198862552643, -0.16719593107700348, -0.013968992047011852, -0.11063069105148315, -0.01776008866727352, 0.04371114820241928, 0.31808796525001526, -0.23542091250419617, 0.017171205952763557, 0.005892434157431126, 0.021348861977458, 0.040886446833610535, 0.13753096759319305, 0.24900823831558228, 0.004326305352151394, 0.9334752559661865, -0.0183478482067585, -0.0025047031231224537, -0.0032237565610557795, 0.10573682188987732, -0.33610957860946655, 0.06404370069503784, 1.0305954217910767, -0.008317052386701107, 0.014285196550190449, -0.010006828233599663]} +{"t": 3.9919, "q": [-0.15526100993156433, 0.02197512611746788, 0.02168147824704647, 0.316426157951355, -0.16720426082611084, -0.013940763659775257, -0.11063921451568604, -0.017734521999955177, 0.04383167624473572, 0.3184458911418915, -0.23539982736110687, 0.01717824675142765, 0.005959393456578255, 0.021333830431103706, 0.040886640548706055, 0.13310879468917847, 0.2489243447780609, 0.004793690051883459, 0.9339666366577148, -0.0183478482067585, -0.00264851376414299, -0.0032117723021656275, 0.10568888485431671, -0.33608561754226685, 0.06354036182165146, 1.0351015329360962, -0.008293083868920803, 0.014321149326860905, -0.012487562373280525]} +{"t": 4.0086, "q": [-0.15548257529735565, 0.02202625945210457, 0.021761830896139145, 0.31658807396888733, -0.1672169268131256, -0.013919641263782978, -0.11063069105148315, -0.017768610268831253, 0.04392541944980621, 0.31887200474739075, -0.2353704273700714, 0.017213942483067513, 0.005932609550654888, 0.02130386233329773, 0.04086818918585777, 0.12857875227928162, 0.24888838827610016, 0.004841627087444067, 0.9340624809265137, -0.0183478482067585, -0.002972087822854519, -0.0032237565610557795, 0.10572483390569687, -0.33613353967666626, 0.06259360909461975, 1.0389125347137451, -0.008293083868920803, 0.014345117844641209, -0.014872423373162746]} +{"t": 4.0254, "q": [-0.15542292594909668, 0.02185581624507904, 0.021882357075810432, 0.31694599986076355, -0.16720812022686005, -0.013891290873289108, -0.11063069105148315, -0.01786235347390175, 0.044112905859947205, 0.3192555010318756, -0.23531588912010193, 0.017278075218200684, 0.005879042204469442, 0.021289104595780373, 0.04081184044480324, 0.1252351552248001, 0.24894830584526062, 0.004877579864114523, 0.9336550235748291, -0.018323879688978195, -0.003775030840188265, -0.0032597093377262354, 0.10568888485431671, -0.33613353967666626, 0.062018364667892456, 1.042220115661621, -0.008293083868920803, 0.01435710210353136, -0.017532922327518463]} +{"t": 4.0422, "q": [-0.15540587902069092, 0.021770594641566277, 0.022069843485951424, 0.31749141216278076, -0.16718637943267822, -0.013855794444680214, -0.11063069105148315, -0.01786235347390175, 0.04451465979218483, 0.31956228613853455, -0.23514440655708313, 0.017513252794742584, 0.005477285478264093, 0.021334633231163025, 0.04071700572967529, 0.12226306647062302, 0.24916402995586395, 0.00490154791623354, 0.9335591793060303, -0.01829991117119789, -0.004637895151972771, -0.0032477250788360834, 0.10568888485431671, -0.33613353967666626, 0.06187455356121063, 1.0454199314117432, -0.008317052386701107, 0.014333133585751057, -0.02088850550353527]} +{"t": 4.0589, "q": [-0.1553632766008377, 0.021634241566061974, 0.022471601143479347, 0.3179686367511749, -0.16715148091316223, -0.013784859329462051, -0.11063069105148315, -0.01787087693810463, 0.04503694549202919, 0.31979238986968994, -0.2348768562078476, 0.01789814978837967, 0.005035352893173695, 0.021425340324640274, 0.040602732449769974, 0.11931494623422623, 0.24936775863170624, 0.0049255164340138435, 0.9334273338317871, -0.01829991117119789, -0.005944175645709038, -0.0032477250788360834, 0.10565292835235596, -0.33628934621810913, 0.061598919332027435, 1.048811435699463, -0.008305068127810955, 0.014333133585751057, -0.023572970181703568]} +{"t": 4.0759, "q": [-0.15526100993156433, 0.02143823355436325, 0.02287335693836212, 0.31831806898117065, -0.16697809100151062, -0.01348748430609703, -0.11063921451568604, -0.01792200841009617, 0.04558601230382919, 0.31987759470939636, -0.2345133125782013, 0.01844717375934124, 0.0045130690559744835, 0.02159140817821026, 0.040440358221530914, 0.11731357872486115, 0.24965538084506989, 0.00490154791623354, 0.933439314365387, -0.018192054703831673, -0.008017446845769882, -0.0032477250788360834, 0.10566491633653641, -0.3361934721469879, 0.061407171189785004, 1.0508008003234863, -0.008317052386701107, 0.014345117844641209, -0.025742115452885628]} +{"t": 4.0927, "q": [-0.15515874326229095, 0.021114392206072807, 0.023221546784043312, 0.3184885084629059, -0.16660593450069427, -0.012864948250353336, -0.11063921451568604, -0.017904965206980705, 0.04605472832918167, 0.31992021203041077, -0.23412029445171356, 0.019003091380000114, 0.004084527958184481, 0.02167511358857155, 0.0402178056538105, 0.11537213623523712, 0.24996696412563324, 0.004877579864114523, 0.9331517219543457, -0.018156101927161217, -0.011265171691775322, -0.0032956618815660477, 0.10568888485431671, -0.3361934721469879, 0.06127534434199333, 1.0524187088012695, -0.008269115351140499, 0.014333133585751057, -0.02804308757185936]} +{"t": 4.1095, "q": [-0.15511612594127655, 0.02064567618072033, 0.02336885780096054, 0.31854814291000366, -0.16618217527866364, -0.012199864722788334, -0.11063921451568604, -0.017956096678972244, 0.04621543362736702, 0.3200480341911316, -0.23379333317279816, 0.019344525411725044, 0.004057744517922401, 0.02160109020769596, 0.03998318687081337, 0.11297529190778732, 0.2501227557659149, 0.004865595605224371, 0.9320012331008911, -0.018144117668271065, -0.01501623447984457, -0.0033196303993463516, 0.10567689687013626, -0.3361934721469879, 0.06119145452976227, 1.054348111152649, -0.008281099610030651, 0.014285196550190449, -0.03033207356929779]} +{"t": 4.1262, "q": [-0.15511612594127655, 0.02004912868142128, 0.02336885780096054, 0.31859928369522095, -0.16580158472061157, -0.011591418646275997, -0.11063069105148315, -0.01792200841009617, 0.046282391995191574, 0.3202184736728668, -0.23346753418445587, 0.019857969135046005, 0.0041247038170695305, 0.021519390866160393, 0.03978164494037628, 0.11030280590057373, 0.25038641691207886, 0.004817658569663763, 0.9309705495834351, -0.01818007044494152, -0.02111620455980301, -0.003415504237636924, 0.10579673945903778, -0.3362174332141876, 0.061047643423080444, 1.0563015937805176, -0.008257131092250347, 0.014321149326860905, -0.03366369009017944]} +{"t": 4.1431, "q": [-0.15511612594127655, 0.019725287333130836, 0.02336885780096054, 0.318667471408844, -0.16542108356952667, -0.01099709514528513, -0.11062217503786087, -0.017956096678972244, 0.04625560715794563, 0.32028666138648987, -0.2330496609210968, 0.020485395565629005, 0.004151487722992897, 0.02141517400741577, 0.039575692266225815, 0.10820557177066803, 0.2503025233745575, 0.004733768757432699, 0.9286935925483704, -0.01818007044494152, -0.025981800630688667, -0.0036312201991677284, 0.105892613530159, -0.33620545268058777, 0.060987722128629684, 1.0580272674560547, -0.008233162574470043, 0.014309165067970753, -0.03637212514877319]} +{"t": 4.1598, "q": [-0.15512464940547943, 0.019290659576654434, 0.02338225021958351, 0.318710058927536, -0.16512267291545868, -0.010523060336709023, -0.11062217503786087, -0.018211761489510536, 0.046309176832437515, 0.32029518485069275, -0.23273244500160217, 0.020912937819957733, 0.004231838975101709, 0.021198399364948273, 0.03933822736144066, 0.10712698847055435, 0.25013473629951477, 0.004601942375302315, 0.9251102805137634, -0.01816808618605137, -0.02960103563964367, -0.003787015099078417, 0.10578475892543793, -0.33620545268058777, 0.060867879539728165, 1.0593695640563965, -0.008221178315579891, 0.0142971808090806, -0.038733016699552536]} +{"t": 4.1766, "q": [-0.15511612594127655, 0.018804898485541344, 0.023409033194184303, 0.31882086396217346, -0.16480253636837006, -0.0099995331838727, -0.11058808118104935, -0.01841629110276699, 0.04641630873084068, 0.3203207552433014, -0.2323327362537384, 0.021440228447318077, 0.004298798739910126, 0.020899014547467232, 0.03904944658279419, 0.1056409478187561, 0.24955950677394867, 0.004314321093261242, 0.9212992787361145, -0.018144117668271065, -0.03576092794537544, -0.0041944789700210094, 0.10578475892543793, -0.3361695110797882, 0.060867879539728165, 1.0606279373168945, -0.008233162574470043, 0.014333133585751057, -0.04254399985074997]} +{"t": 4.1935, "q": [-0.1550990790128708, 0.018446970731019974, 0.023449208587408066, 0.31897425651550293, -0.16460032761096954, -0.009652942419052124, -0.11054547131061554, -0.018731608986854553, 0.04652344435453415, 0.3204144835472107, -0.23204898834228516, 0.021753396838903427, 0.00445950124412775, 0.02074982039630413, 0.03877757117152214, 0.10419085621833801, 0.2491999864578247, 0.004002731293439865, 0.9170328974723816, -0.018132133409380913, -0.0439341701567173, -0.004446147475391626, 0.10573682188987732, -0.3362174332141876, 0.06079597398638725, 1.0623536109924316, -0.008221178315579891, 0.014309165067970753, -0.04429369792342186]} +{"t": 4.2103, "q": [-0.1551331728696823, 0.018131650984287262, 0.023462601006031036, 0.31918731331825256, -0.16441991925239563, -0.00938406027853489, -0.1104687750339508, -0.019029883667826653, 0.046617187559604645, 0.3205082416534424, -0.23176078498363495, 0.022045012563467026, 0.0045264605432748795, 0.02054785192012787, 0.03854908049106598, 0.10250107944011688, 0.2491280734539032, 0.0038349521346390247, 0.9117598533630371, -0.018156101927161217, -0.05017795041203499, -0.004625910893082619, 0.10571285337209702, -0.3361934721469879, 0.060628194361925125, 1.0645467042922974, -0.00820919405668974, 0.014309165067970753, -0.0457318052649498]} +{"t": 4.227, "q": [-0.1551331728696823, 0.017867466434836388, 0.023462601006031036, 0.31934070587158203, -0.16428661346435547, -0.009136528708040714, -0.11034094542264938, -0.01931963488459587, 0.04669753834605217, 0.3204997181892395, -0.23142559826374054, 0.022286072373390198, 0.004673771560192108, 0.020331399515271187, 0.03818880021572113, 0.09956493973731995, 0.2486007660627365, 0.0036072516813874245, 0.9066785573959351, -0.018192054703831673, -0.056541573256254196, -0.0049375006929039955, 0.10556904226541519, -0.3361934721469879, 0.06049636751413345, 1.0674588680267334, -0.008233162574470043, 0.014333133585751057, -0.047577373683452606]} +{"t": 4.2437, "q": [-0.15512464940547943, 0.017654413357377052, 0.023475993424654007, 0.3194429874420166, -0.1642049103975296, -0.008988006971776485, -0.11024720221757889, -0.019524166360497475, 0.04673771560192108, 0.32052528858184814, -0.23113574087619781, 0.022419961169362068, 0.0047541228123009205, 0.020280783995985985, 0.037722691893577576, 0.09647301584482193, 0.24745027720928192, 0.003463441040366888, 0.9021245241165161, -0.01818007044494152, -0.0643792599439621, -0.0051891696639359, 0.10462228953838348, -0.3362174332141876, 0.06040049344301224, 1.0709342956542969, -0.008221178315579891, 0.014345117844641209, -0.04957874119281769]} +{"t": 4.2605, "q": [-0.15510760247707367, 0.017483970150351524, 0.023569736629724503, 0.31970715522766113, -0.16408038139343262, -0.008811093866825104, -0.1101023256778717, -0.01966904290020466, 0.04685824364423752, 0.3206360638141632, -0.2308676540851593, 0.022618556395173073, 0.004847866017371416, 0.02069729194045067, 0.037070490419864655, 0.09190702438354492, 0.24633574485778809, 0.0033435989171266556, 0.8975225687026978, -0.01816808618605137, -0.07182145863771439, -0.005320996046066284, 0.10355568677186966, -0.33618149161338806, 0.06031660735607147, 1.073235273361206, -0.008233162574470043, 0.014345117844641209, -0.05216733366250992]} +{"t": 4.2772, "q": [-0.15506500005722046, 0.017364662140607834, 0.02354295179247856, 0.3199457824230194, -0.16398154199123383, -0.008648388087749481, -0.10993187874555588, -0.019754262641072273, 0.04688502848148346, 0.3207809329032898, -0.2306746542453766, 0.022731715813279152, 0.005664771888405085, 0.021128635853528976, 0.03645608201622963, 0.08828778564929962, 0.24512533843517303, 0.00339153571985662, 0.8911229968070984, -0.018204038962721825, -0.07982692122459412, -0.005380917340517044, 0.10251305997371674, -0.3361934721469879, 0.060280654579401016, 1.0762434005737305, -0.008233162574470043, 0.014345117844641209, -0.055271245539188385]} +{"t": 4.2939, "q": [-0.15501385927200317, 0.017305007204413414, 0.023449208587408066, 0.3199969232082367, -0.16386985778808594, -0.008478579111397266, -0.10985518246889114, -0.019762786105275154, 0.046804673969745636, 0.32089173793792725, -0.2304990142583847, 0.022888030856847763, 0.006106704473495483, 0.021499592810869217, 0.03586092218756676, 0.08559133857488632, 0.24447819590568542, 0.003403519978746772, 0.8843399286270142, -0.018204038962721825, -0.08924652636051178, -0.005476790945976973, 0.10095511376857758, -0.3361934721469879, 0.06030462309718132, 1.078927755355835, -0.008233162574470043, 0.01435710210353136, -0.057680077850818634]} +{"t": 4.3107, "q": [-0.1549968272447586, 0.017296483740210533, 0.023422425612807274, 0.32011622190475464, -0.1637754887342453, -0.008379410952329636, -0.1098296120762825, -0.019779829308390617, 0.04676450043916702, 0.32102808356285095, -0.23031385242938995, 0.022943906486034393, 0.006508461199700832, 0.022036602720618248, 0.035206153988838196, 0.08257131278514862, 0.24379509687423706, 0.00339153571985662, 0.8776407837867737, -0.018251974135637283, -0.09676063805818558, -0.005572664551436901, 0.0995769277215004, -0.3361934721469879, 0.06031660735607147, 1.0810970067977905, -0.008245146833360195, 0.014381070621311665, -0.060508351773023605]} +{"t": 4.3276, "q": [-0.15497125685214996, 0.017330573871731758, 0.02335546538233757, 0.32029518485069275, -0.16373269259929657, -0.008365140296518803, -0.10983813554048538, -0.019720174372196198, 0.04675110802054405, 0.3211388885974884, -0.23017875850200653, 0.022942829877138138, 0.006521853152662516, 0.02248212695121765, 0.03482648357748985, 0.08052200824022293, 0.2427644580602646, 0.00339153571985662, 0.8704022765159607, -0.01828792691230774, -0.10445450991392136, -0.005608617328107357, 0.09798302501440048, -0.3361934721469879, 0.06035256013274193, 1.0828466415405273, -0.008257131092250347, 0.014369086362421513, -0.06367219239473343]} +{"t": 4.3443, "q": [-0.15497125685214996, 0.017373183742165565, 0.023315289989113808, 0.32048267126083374, -0.16371989250183105, -0.00837215781211853, -0.1098296120762825, -0.019626431167125702, 0.04672432318329811, 0.32117295265197754, -0.22998854517936707, 0.022919796407222748, 0.006535245105624199, 0.023055771365761757, 0.034393034875392914, 0.07841278612613678, 0.24145816266536713, 0.004122573416680098, 0.8632596731185913, -0.01835983246564865, -0.1143055409193039, -0.005596633069217205, 0.09642507880926132, -0.33624139428138733, 0.060460414737463, 1.0841050148010254, -0.008233162574470043, 0.014345117844641209, -0.0653020441532135]} +{"t": 4.361, "q": [-0.15497978031635284, 0.017424317076802254, 0.023261722177267075, 0.3206019699573517, -0.16368994116783142, -0.008364991284906864, -0.10980404913425446, -0.019541211426258087, 0.046657364815473557, 0.3211985230445862, -0.229878768324852, 0.02291892282664776, 0.006615596357733011, 0.0237729474902153, 0.03386697173118591, 0.07636348158121109, 0.2403676062822342, 0.004098604898899794, 0.8568481206893921, -0.018335863947868347, -0.12300609052181244, -0.005644570104777813, 0.0951068103313446, -0.33618149161338806, 0.060448430478572845, 1.0855191946029663, -0.008257131092250347, 0.01435710210353136, -0.06629673391580582]} +{"t": 4.3779, "q": [-0.15497978031635284, 0.01744988188147545, 0.02318137139081955, 0.32080650329589844, -0.16365140676498413, -0.008343663066625595, -0.10974439233541489, -0.019532687962055206, 0.046590406447649, 0.32126671075820923, -0.22981105744838715, 0.0229040514677763, 0.006682556122541428, 0.024572882801294327, 0.03337222710251808, 0.07460179924964905, 0.23913322389125824, 0.0041585261933505535, 0.8508320450782776, -0.018371816724538803, -0.1330009251832962, -0.005656554363667965, 0.09432783722877502, -0.33615753054618835, 0.060448430478572845, 1.0864059925079346, -0.008245146833360195, 0.01435710210353136, -0.06720753759145737]} +{"t": 4.3948, "q": [-0.15497978031635284, 0.017441360279917717, 0.023087628185749054, 0.3210877478122711, -0.16363005340099335, -0.008350648917257786, -0.10958247631788254, -0.019541211426258087, 0.04651005193591118, 0.32129228115081787, -0.22977744042873383, 0.022918133065104485, 0.006950393784791231, 0.02534274198114872, 0.032878369092941284, 0.07262440770864487, 0.23821043968200684, 0.0041944789700210094, 0.8432220816612244, -0.018491659313440323, -0.14144980907440186, -0.005632585845887661, 0.09392037242650986, -0.3361934721469879, 0.06042446196079254, 1.087592363357544, -0.008245146833360195, 0.014369086362421513, -0.06852579861879349]} +{"t": 4.4115, "q": [-0.15497978031635284, 0.017424317076802254, 0.0228599663823843, 0.3213348984718323, -0.16363854706287384, -0.008336568251252174, -0.10934385657310486, -0.01954973302781582, 0.04633595794439316, 0.3213178515434265, -0.22977744042873383, 0.022918133065104485, 0.007472677621990442, 0.0261581651866436, 0.032354533672332764, 0.07062304019927979, 0.2370479702949524, 0.004254399798810482, 0.8382605910301208, -0.018611501902341843, -0.1504499614238739, -0.005644570104777813, 0.09364473819732666, -0.33620545268058777, 0.060436446219682693, 1.0888148546218872, -0.008233162574470043, 0.014369086362421513, -0.06976017355918884]} +{"t": 4.4282, "q": [-0.15497125685214996, 0.01739022694528103, 0.0226992629468441, 0.3215990662574768, -0.16363854706287384, -0.008336568251252174, -0.10913079977035522, -0.01955825462937355, 0.04610829800367355, 0.3213178515434265, -0.22976499795913696, 0.022939532995224, 0.007807475049048662, 0.027041560038924217, 0.031795527786016464, 0.06948453933000565, 0.23569375276565552, 0.004254399798810482, 0.8315014839172363, -0.01865943893790245, -0.16055266559123993, -0.005656554363667965, 0.09327322244644165, -0.33620545268058777, 0.060448430478572845, 1.090049147605896, -0.008245146833360195, 0.01435710210353136, -0.07123423367738724]} +{"t": 4.445, "q": [-0.1549542099237442, 0.01739022694528103, 0.0225385595113039, 0.32176950573921204, -0.16362999379634857, -0.008336528204381466, -0.10895183682441711, -0.019600866362452507, 0.045947592705488205, 0.3213178515434265, -0.2297735959291458, 0.022953934967517853, 0.008088705129921436, 0.027675822377204895, 0.03138730302453041, 0.06888532638549805, 0.23461517691612244, 0.00424241553992033, 0.8255573511123657, -0.018671423196792603, -0.16864201426506042, -0.005632585845887661, 0.09278187155723572, -0.3362174332141876, 0.060448430478572845, 1.0910917520523071, -0.008245146833360195, 0.014369086362421513, -0.07244464010000229]} +{"t": 4.4617, "q": [-0.1549542099237442, 0.017364662140607834, 0.022444816306233406, 0.3218803107738495, -0.16364280879497528, -0.00832951907068491, -0.10887514054775238, -0.019592342898249626, 0.045813675969839096, 0.32130932807922363, -0.22976930439472198, 0.022946733981370926, 0.008182448334991932, 0.02826501801609993, 0.03100772015750408, 0.06835801899433136, 0.233824223279953, 0.003990747034549713, 0.8207036852836609, -0.018623486161231995, -0.17831328511238098, -0.005644570104777813, 0.0920388475060463, -0.3361934721469879, 0.0604843832552433, 1.09233820438385, -0.008257131092250347, 0.01435710210353136, -0.07395465672016144]} +{"t": 4.4785, "q": [-0.1549542099237442, 0.017364662140607834, 0.022431425750255585, 0.3220507502555847, -0.16363425552845, -0.008329487405717373, -0.10884104669094086, -0.01960938796401024, 0.045773498713970184, 0.321283757686615, -0.22977758944034576, 0.022932467982172966, 0.008128880523145199, 0.02876358851790428, 0.030686264857649803, 0.06815429031848907, 0.23286548256874084, 0.003870904678478837, 0.8153347969055176, -0.01858753338456154, -0.18561168015003204, -0.005656554363667965, 0.09127186238765717, -0.3362174332141876, 0.060460414737463, 1.0932250022888184, -0.008269115351140499, 0.01435710210353136, -0.07592006772756577]} +{"t": 4.4952, "q": [-0.1549542099237442, 0.01740727201104164, 0.022404640913009644, 0.32212743163108826, -0.16364280879497528, -0.00832951907068491, -0.10884104669094086, -0.019600866362452507, 0.045786891132593155, 0.32130932807922363, -0.22976914048194885, 0.022932400926947594, 0.008008353412151337, 0.029224324971437454, 0.03039846010506153, 0.06814230233430862, 0.23199063539505005, 0.0037031255196779966, 0.8107448220252991, -0.018575549125671387, -0.19597803056240082, -0.005656554363667965, 0.09075653553009033, -0.3362174332141876, 0.060448430478572845, 1.0938841104507446, -0.008245146833360195, 0.01435710210353136, -0.07783754169940948]} +{"t": 4.5119, "q": [-0.15494568645954132, 0.017381705343723297, 0.022404640913009644, 0.3221530020236969, -0.16363854706287384, -0.008336568251252174, -0.10880696028470993, -0.019592342898249626, 0.045800283551216125, 0.3213263750076294, -0.2297651469707489, 0.02295386791229248, 0.007941394113004208, 0.029670115560293198, 0.030091963708400726, 0.06853778660297394, 0.23119966685771942, 0.003511378075927496, 0.8046808242797852, -0.018575549125671387, -0.20569723844528198, -0.005668538622558117, 0.09048090130090714, -0.3361695110797882, 0.060448430478572845, 1.0948548316955566, -0.008269115351140499, 0.014321149326860905, -0.07981494069099426]} +{"t": 4.5288, "q": [-0.15494568645954132, 0.01739022694528103, 0.022391250357031822, 0.3222041428089142, -0.16363854706287384, -0.008336568251252174, -0.10873878747224808, -0.019592342898249626, 0.045760106295347214, 0.32130932807922363, -0.22976499795913696, 0.022939532995224, 0.007914610207080841, 0.029934609308838844, 0.02990243025124073, 0.06871754676103592, 0.2296057641506195, 0.0027084348257631063, 0.7999829649925232, -0.018491659313440323, -0.21500898897647858, -0.005788380745798349, 0.09036105871200562, -0.3361934721469879, 0.060448430478572845, 1.0963048934936523, -0.008257131092250347, 0.014321149326860905, -0.0818762257695198]} +{"t": 4.5455, "q": [-0.15494568645954132, 0.01739022694528103, 0.02233768254518509, 0.3222808241844177, -0.16364280879497528, -0.00832951907068491, -0.10868765413761139, -0.01960938796401024, 0.04574671387672424, 0.32136043906211853, -0.229761004447937, 0.022961001843214035, 0.007834259420633316, 0.03013860248029232, 0.029780127108097076, 0.06890929490327835, 0.22674153745174408, 0.0023728765081614256, 0.7946380376815796, -0.018395785242319107, -0.22445255517959595, -0.005848302040249109, 0.09009740501642227, -0.33594179153442383, 0.060460414737463, 1.0981864929199219, -0.008233162574470043, 0.014309165067970753, -0.08415322750806808]} +{"t": 4.5623, "q": [-0.1549542099237442, 0.017381705343723297, 0.02233768254518509, 0.3223745822906494, -0.16364705562591553, -0.008322479203343391, -0.10861947387456894, -0.019592342898249626, 0.04573332518339157, 0.3213860094547272, -0.2297399640083313, 0.022967999801039696, 0.007807475049048662, 0.030335035175085068, 0.029662705957889557, 0.06890929490327835, 0.22426080703735352, 0.0019294602097943425, 0.7888975739479065, -0.0183478482067585, -0.23328493535518646, -0.005968144163489342, 0.08983375132083893, -0.33521077036857605, 0.06049636751413345, 1.1003795862197876, -0.008245146833360195, 0.014285196550190449, -0.08596284687519073]} +{"t": 4.579, "q": [-0.15492863953113556, 0.01739875040948391, 0.022310897707939148, 0.3225109279155731, -0.16364280879497528, -0.00832951907068491, -0.10858538746833801, -0.019592342898249626, 0.0457199327647686, 0.321471244096756, -0.22972768545150757, 0.023003751412034035, 0.0076869479380548, 0.030478568747639656, 0.02957945130765438, 0.0688733458518982, 0.22195982933044434, 0.0015579492319375277, 0.7833608388900757, -0.01841975376009941, -0.24392692744731903, -0.0062917182222008705, 0.08983375132083893, -0.3345276713371277, 0.0604843832552433, 1.1017817258834839, -0.008233162574470043, 0.014273212291300297, -0.08680174499750137]} +{"t": 4.5958, "q": [-0.15492863953113556, 0.017381705343723297, 0.02233768254518509, 0.3225705921649933, -0.1636427640914917, -0.00831539835780859, -0.10852573066949844, -0.01960938796401024, 0.045760106295347214, 0.32148829102516174, -0.2296859174966812, 0.02304641716182232, 0.007512853480875492, 0.030652444809675217, 0.02945769764482975, 0.06847786158323288, 0.21885591745376587, 0.0015699334908276796, 0.7771410346031189, -0.018575549125671387, -0.25241175293922424, -0.006495450157672167, 0.08990565687417984, -0.33396440744400024, 0.060508351773023605, 1.1032317876815796, -0.008221178315579891, 0.014261228032410145, -0.08737698942422867]} +{"t": 4.6126, "q": [-0.15492863953113556, 0.017356138676404953, 0.02237785793840885, 0.322706937789917, -0.16364280879497528, -0.00832951907068491, -0.10846607387065887, -0.01961790956556797, 0.045786891132593155, 0.3215138614177704, -0.22961942851543427, 0.02314625307917595, 0.007164664100855589, 0.0308565441519022, 0.029316304251551628, 0.06761500239372253, 0.21566811203956604, 0.0015579492319375277, 0.7716882228851318, -0.018851187080144882, -0.2624785006046295, -0.006759102921932936, 0.08992962539196014, -0.33359289169311523, 0.06055628880858421, 1.1045141220092773, -0.008221178315579891, 0.014225275255739689, -0.08780841529369354]} +{"t": 4.6293, "q": [-0.15492011606693268, 0.017313528805971146, 0.022391250357031822, 0.32286885380744934, -0.1636512577533722, -0.008301317691802979, -0.10842346400022507, -0.019686086103320122, 0.045800283551216125, 0.32153087854385376, -0.2295738309621811, 0.023224737495183945, 0.006749515421688557, 0.030909499153494835, 0.02927260659635067, 0.06717158108949661, 0.21225261688232422, 0.0014381069922819734, 0.7652766704559326, -0.0195582564920187, -0.2707955539226532, -0.007202519569545984, 0.08989367634057999, -0.333125501871109, 0.06060422584414482, 1.1055927276611328, -0.00820919405668974, 0.014201306737959385, -0.08817993104457855]} +{"t": 4.6461, "q": [-0.15492011606693268, 0.017322050407528877, 0.022418033331632614, 0.3230733871459961, -0.1636512577533722, -0.008301317691802979, -0.10837233066558838, -0.019703131169080734, 0.04588063433766365, 0.3215053379535675, -0.22946158051490784, 0.023388724774122238, 0.006495069246739149, 0.030871998518705368, 0.029249604791402817, 0.06614094227552414, 0.2084416300058365, 0.0013662016717717052, 0.7602552771568298, -0.020684773102402687, -0.28026309609413147, -0.0076579200103878975, 0.08989367634057999, -0.3325502574443817, 0.06060422584414482, 1.1068750619888306, -0.008197209797799587, 0.014189322479069233, -0.08853945881128311]} +{"t": 4.6629, "q": [-0.1549968272447586, 0.017305007204413414, 0.022484993562102318, 0.3231927156448364, -0.16365982592105865, -0.008301349356770515, -0.10837233066558838, -0.019703131169080734, 0.045974377542734146, 0.3214968144893646, -0.22936145961284637, 0.02350262552499771, 0.00642810994759202, 0.030849499627947807, 0.029235802590847015, 0.06483466178178787, 0.2048703283071518, 0.0014261228498071432, 0.7552698254585266, -0.021943116560578346, -0.2889396846294403, -0.007897604256868362, 0.0899655818939209, -0.3319990038871765, 0.06060422584414482, 1.1078697443008423, -0.008197209797799587, 0.014177338220179081, -0.08917462080717087]} +{"t": 4.6797, "q": [-0.15501385927200317, 0.017236828804016113, 0.02249838411808014, 0.32332906126976013, -0.16366831958293915, -0.008287269622087479, -0.10834676772356033, -0.019779829308390617, 0.04602794721722603, 0.32148829102516174, -0.22926534712314606, 0.023595059290528297, 0.00642810994759202, 0.03079688549041748, 0.029222574084997177, 0.06308495998382568, 0.20203006267547607, 0.0014021543320268393, 0.7509435415267944, -0.023692812770605087, -0.29524338245391846, -0.008233162574470043, 0.09002549946308136, -0.3314597010612488, 0.060568273067474365, 1.10915207862854, -0.008173241280019283, 0.014165353961288929, -0.09018129855394363]} +{"t": 4.6964, "q": [-0.1550479531288147, 0.01721978560090065, 0.0225385595113039, 0.3235676884651184, -0.16367687284946442, -0.008287301287055016, -0.10828711092472076, -0.019822441041469574, 0.04609490558505058, 0.3214968144893646, -0.22913621366024017, 0.023758893832564354, 0.006347758695483208, 0.030759213492274284, 0.029228033497929573, 0.06132328137755394, 0.19850671291351318, 0.0015819177497178316, 0.746042013168335, -0.027156254276633263, -0.3036203384399414, -0.008353005163371563, 0.0899895504117012, -0.33092039823532104, 0.060568273067474365, 1.1109017133712769, -0.008173241280019283, 0.014165353961288929, -0.09152352809906006]} +{"t": 4.7131, "q": [-0.15505647659301758, 0.01709195412695408, 0.022605519741773605, 0.3236699402332306, -0.16368108987808228, -0.008266139775514603, -0.10822746157646179, -0.019890617579221725, 0.04617525637149811, 0.321471244096756, -0.22904883325099945, 0.02388007938861847, 0.00642810994759202, 0.030751772224903107, 0.02921394631266594, 0.05957358330488205, 0.19459985196590424, 0.002169144805520773, 0.7415478825569153, -0.02955309860408306, -0.31276431679725647, -0.008424910716712475, 0.09000153094530106, -0.3304050862789154, 0.06055628880858421, 1.113202691078186, -0.00812530517578125, 0.014117416925728321, -0.0930095687508583]} +{"t": 4.7299, "q": [-0.1550479531288147, 0.016938555985689163, 0.022565344348549843, 0.32377222180366516, -0.16367682814598083, -0.008273179642856121, -0.10815075784921646, -0.020009927451610565, 0.04620204120874405, 0.321471244096756, -0.22901152074337006, 0.023944297805428505, 0.00642810994759202, 0.0307367704808712, 0.02920474484562874, 0.05823135003447533, 0.1919633150100708, 0.0021092237439006567, 0.7368860244750977, -0.031063111498951912, -0.3202904164791107, -0.008436894975602627, 0.0902412161231041, -0.3299616873264313, 0.06053232029080391, 1.1151561737060547, -0.00812530517578125, 0.014069480821490288, -0.09429188072681427]} +{"t": 4.7466, "q": [-0.15506500005722046, 0.01680220104753971, 0.022645695134997368, 0.32395970821380615, -0.16367682814598083, -0.008273179642856121, -0.10815075784921646, -0.02009514905512333, 0.04633595794439316, 0.3214541971683502, -0.2288992702960968, 0.0241082850843668, 0.006361150648444891, 0.0307367704808712, 0.02920474484562874, 0.0568651482462883, 0.18978218734264374, 0.0019534286111593246, 0.7333986163139343, -0.03178216516971588, -0.32924261689186096, -0.008592689409852028, 0.09062471240758896, -0.32949429750442505, 0.06054430454969406, 1.1170016527175903, -0.008101336658000946, 0.014057496562600136, -0.09582586586475372]} +{"t": 4.7634, "q": [-0.15506500005722046, 0.016759591177105904, 0.022819790989160538, 0.3241216242313385, -0.16368108987808228, -0.008266139775514603, -0.10815075784921646, -0.0201548021286726, 0.04657701402902603, 0.32147976756095886, -0.2287784218788147, 0.024257851764559746, 0.006187055725604296, 0.030751772224903107, 0.02921394631266594, 0.05565474182367325, 0.18762503564357758, 0.002181129064410925, 0.728940486907959, -0.03357980027794838, -0.33493512868881226, -0.008616657927632332, 0.09105614572763443, -0.3288351595401764, 0.06054430454969406, 1.1195063591003418, -0.00806538388133049, 0.01402154378592968, -0.09824667870998383]} +{"t": 4.7801, "q": [-0.1550479531288147, 0.01673402450978756, 0.022940317168831825, 0.3243005871772766, -0.16367678344249725, -0.008259058929979801, -0.10815928131341934, -0.020171847194433212, 0.04677789285778999, 0.32147976756095886, -0.2286030799150467, 0.02444283477962017, 0.00605313666164875, 0.030744213610887527, 0.02921883389353752, 0.05403687059879303, 0.18565961718559265, 0.002205097349360585, 0.7250935435295105, -0.037654437124729156, -0.3408433496952057, -0.008628642186522484, 0.09128384292125702, -0.32790037989616394, 0.06054430454969406, 1.1225264072418213, -0.008041415363550186, 0.014009559527039528, -0.10078733414411545]} +{"t": 4.7968, "q": [-0.15515021979808807, 0.016657326370477676, 0.02302066795527935, 0.3244965970516205, -0.1636938452720642, -0.008245009928941727, -0.10814223438501358, -0.020205935463309288, 0.046965379267930984, 0.321471244096756, -0.22853153944015503, 0.024463782086968422, 0.0059995693154633045, 0.030751772224903107, 0.02921394631266594, 0.05229916051030159, 0.18340657651424408, 0.002217081608250737, 0.7212346196174622, -0.04056660085916519, -0.3497476279735565, -0.008652610704302788, 0.0917871817946434, -0.3265581429004669, 0.06055628880858421, 1.124252200126648, -0.008053399622440338, 0.014009559527039528, -0.103220134973526]} +{"t": 4.8136, "q": [-0.15519282221794128, 0.016606193035840988, 0.02304745279252529, 0.3247096538543701, -0.1636938452720642, -0.008245009928941727, -0.1081337183713913, -0.020257068797945976, 0.04701894521713257, 0.321471244096756, -0.22834758460521698, 0.024634364992380142, 0.0059995693154633045, 0.030706429854035378, 0.029243264347314835, 0.05126851424574852, 0.18153704702854156, 0.002241050126031041, 0.7165727615356445, -0.044209808111190796, -0.35712990164756775, -0.008688563480973244, 0.09221861511468887, -0.32490432262420654, 0.06058025732636452, 1.1253067255020142, -0.008053399622440338, 0.013997575268149376, -0.10550911724567413]} +{"t": 4.8304, "q": [-0.15524396300315857, 0.0165550597012043, 0.023101020604372025, 0.3249567747116089, -0.16370660066604614, -0.008223889395594597, -0.10809962451457977, -0.02033376693725586, 0.047152865678071976, 0.32144567370414734, -0.2281379997730255, 0.02477605827152729, 0.006026353221386671, 0.030721429735422134, 0.029252469539642334, 0.05017795041203499, 0.180027037858963, 0.0022889869287610054, 0.7121985554695129, -0.04851214215159416, -0.36432045698165894, -0.008700547739863396, 0.09320131689310074, -0.3230228126049042, 0.06055628880858421, 1.1262415647506714, -0.008053399622440338, 0.013985591009259224, -0.10784604400396347]} +{"t": 4.8472, "q": [-0.1552695333957672, 0.01648688316345215, 0.023315289989113808, 0.3251783549785614, -0.1637193113565445, -0.008188638836145401, -0.10811667144298553, -0.020367855206131935, 0.04750105366110802, 0.3214627206325531, -0.22798384726047516, 0.02496839500963688, 0.005986177362501621, 0.030713986605405807, 0.0292383823543787, 0.04926715046167374, 0.17825336754322052, 0.0023129554465413094, 0.7083635926246643, -0.05153216794133186, -0.37264949083328247, -0.008748484775424004, 0.09398029744625092, -0.32110533118247986, 0.06054430454969406, 1.1267448663711548, -0.00800546258687973, 0.013937653973698616, -0.10941597819328308]} +{"t": 4.8639, "q": [-0.15526100993156433, 0.01642722822725773, 0.023569736629724503, 0.32534027099609375, -0.1637321263551712, -0.00818163063377142, -0.10811667144298553, -0.020444555208086967, 0.04788941890001297, 0.3214541971683502, -0.22781218588352203, 0.02510322444140911, 0.005865650251507759, 0.030759328976273537, 0.029209058731794357, 0.04860801622271538, 0.1762639880180359, 0.0023129554465413094, 0.7044807076454163, -0.054971642792224884, -0.37834200263023376, -0.008796420879662037, 0.09427990019321442, -0.31946349143981934, 0.06053232029080391, 1.1272481679916382, -0.007969509810209274, 0.013949638232588768, -0.11096194386482239]} +{"t": 4.8807, "q": [-0.15526100993156433, 0.016350530087947845, 0.023810790851712227, 0.3256470859050751, -0.16373637318611145, -0.008174590766429901, -0.10808258503675461, -0.020563865080475807, 0.0481974333524704, 0.3214627206325531, -0.22754031419754028, 0.0252796933054924, 0.005825474392622709, 0.030744213610887527, 0.02921883389353752, 0.04800880700349808, 0.17355555295944214, 0.0023129554465413094, 0.699866771697998, -0.05939381942152977, -0.3850291967391968, -0.00882038939744234, 0.09467537701129913, -0.3178935647010803, 0.060508351773023605, 1.128147006034851, -0.007933557033538818, 0.013949638232588768, -0.11278354376554489]} +{"t": 4.8975, "q": [-0.15530361235141754, 0.016290875151753426, 0.02402506023645401, 0.325953871011734, -0.1637406200170517, -0.008167549967765808, -0.10805701464414597, -0.020614996552467346, 0.04843848571181297, 0.3214541971683502, -0.22730962932109833, 0.025370556861162186, 0.005745123140513897, 0.030721601098775864, 0.029224006459116936, 0.047685232013463974, 0.17112275958061218, 0.0027923244051635265, 0.6956363320350647, -0.06324075907468796, -0.39384958148002625, -0.008832373656332493, 0.09491506218910217, -0.31639552116394043, 0.060448430478572845, 1.1287102699279785, -0.007909588515758514, 0.013949638232588768, -0.11413776129484177]} +{"t": 4.9143, "q": [-0.15543144941329956, 0.016239741817116737, 0.024266114458441734, 0.3264055550098419, -0.1637789011001587, -0.008104161359369755, -0.10805701464414597, -0.020666129887104034, 0.04870632290840149, 0.3214541971683502, -0.22705399990081787, 0.02548985369503498, 0.005477285478264093, 0.030668755993247032, 0.029248693957924843, 0.047625310719013214, 0.16898955404758453, 0.003367567202076316, 0.6902434229850769, -0.06847786158323288, -0.3999255895614624, -0.008832373656332493, 0.09526260942220688, -0.31494542956352234, 0.060460414737463, 1.129117727279663, -0.007909588515758514, 0.013949638232588768, -0.11539610475301743]} +{"t": 4.931, "q": [-0.1554570198059082, 0.01620565354824066, 0.02456073649227619, 0.32694244384765625, -0.163808673620224, -0.00805487111210823, -0.1080399677157402, -0.02076839469373226, 0.04904112219810486, 0.3214286267757416, -0.2267395406961441, 0.025622881948947906, 0.005249623209238052, 0.03069142811000347, 0.02923405170440674, 0.04701411724090576, 0.1666526347398758, 0.003906857222318649, 0.6864684224128723, -0.0737149715423584, -0.4057978391647339, -0.008832373656332493, 0.09587380290031433, -0.31379494071006775, 0.06047239899635315, 1.1295251846313477, -0.007873635739088058, 0.01396162249147892, -0.11696603894233704]} +{"t": 4.9477, "q": [-0.15549109876155853, 0.016086343675851822, 0.024801790714263916, 0.3274367153644562, -0.16380007565021515, -0.008040718734264374, -0.10798884183168411, -0.020930316299200058, 0.049335744231939316, 0.3214541971683502, -0.2265060842037201, 0.02583547867834568, 0.005155880004167557, 0.03070654347538948, 0.02922428771853447, 0.04617521911859512, 0.16449548304080963, 0.004254399798810482, 0.6835682392120361, -0.0803542286157608, -0.4120655953884125, -0.008832373656332493, 0.09641309082508087, -0.31280025839805603, 0.060448430478572845, 1.1299805641174316, -0.007873635739088058, 0.013949638232588768, -0.11938685178756714]} +{"t": 4.9644, "q": [-0.15558484196662903, 0.016001122072339058, 0.024975884705781937, 0.3278031647205353, -0.16382138431072235, -0.008019620552659035, -0.10792066156864166, -0.021041102707386017, 0.04956340417265892, 0.3214541971683502, -0.2262803614139557, 0.025990858674049377, 0.005062136333435774, 0.030713986605405807, 0.0292383823543787, 0.04536029323935509, 0.16224244236946106, 0.004374242387712002, 0.6794096827507019, -0.08683769404888153, -0.4176502525806427, -0.008844357915222645, 0.09694039821624756, -0.3118654787540436, 0.0604843832552433, 1.1304959058761597, -0.00788561999797821, 0.013949638232588768, -0.1218915581703186]} +{"t": 4.9812, "q": [-0.15561893582344055, 0.01583920232951641, 0.02504284493625164, 0.32817813754081726, -0.1638256013393402, -0.007998459972441196, -0.10780135542154312, -0.021220067515969276, 0.0496169738471508, 0.3214541971683502, -0.225986048579216, 0.026045313104987144, 0.005155880004167557, 0.03071410022675991, 0.029219405725598335, 0.044030044227838516, 0.1595100313425064, 0.0047217849642038345, 0.6755028367042542, -0.09211075305938721, -0.4210777282714844, -0.008856342174112797, 0.09751564264297485, -0.3110146224498749, 0.06041247770190239, 1.1312988996505737, -0.007873635739088058, 0.013985591009259224, -0.12374910712242126]} +{"t": 4.9979, "q": [-0.15572120249271393, 0.01571137085556984, 0.025069627910852432, 0.3286127746105194, -0.16381271183490753, -0.00797723513096571, -0.10769056528806686, -0.02136494405567646, 0.0497107170522213, 0.32143715023994446, -0.22575552761554718, 0.026150496676564217, 0.005343366414308548, 0.030699100345373154, 0.029210194945335388, 0.04236423596739769, 0.157017320394516, 0.005320996046066284, 0.6712124943733215, -0.0993012934923172, -0.42439737915992737, -0.008844357915222645, 0.09764746576547623, -0.3103674650192261, 0.060436446219682693, 1.1326770782470703, -0.007873635739088058, 0.013985591009259224, -0.12545086443424225]} +{"t": 5.0146, "q": [-0.15581494569778442, 0.015583539381623268, 0.025096412748098373, 0.3290814757347107, -0.16381266713142395, -0.007963123731315136, -0.10758829861879349, -0.02149277552962303, 0.04979106783866882, 0.32144567370414734, -0.22556547820568085, 0.026112869381904602, 0.005383542273193598, 0.030684098601341248, 0.029200980439782143, 0.040362872183322906, 0.15417705476284027, 0.006483465898782015, 0.6682524085044861, -0.10724683105945587, -0.429658442735672, -0.008844357915222645, 0.09770739078521729, -0.3099360466003418, 0.06040049344301224, 1.1345345973968506, -0.007873635739088058, 0.01396162249147892, -0.12789565324783325]} +{"t": 5.0314, "q": [-0.15588311851024628, 0.015421619638800621, 0.025096412748098373, 0.3294564485549927, -0.16378244757652283, -0.00787125714123249, -0.10750307887792587, -0.021620607003569603, 0.04985802620649338, 0.32143715023994446, -0.22521334886550903, 0.02626701258122921, 0.0053701503202319145, 0.030684156343340874, 0.02919149398803711, 0.03858920559287071, 0.15145663917064667, 0.007753793615847826, 0.6665146946907043, -0.11374228447675705, -0.4355786442756653, -0.008832373656332493, 0.09770739078521729, -0.30960047245025635, 0.06036454066634178, 1.136512041091919, -0.007873635739088058, 0.013973606750369072, -0.13019661605358124]} +{"t": 5.0481, "q": [-0.1559172123670578, 0.015251176431775093, 0.025149980559945107, 0.3297717869281769, -0.1637350469827652, -0.007751086726784706, -0.10739228874444962, -0.021739916875958443, 0.0499383807182312, 0.3214115798473358, -0.2248096764087677, 0.026549428701400757, 0.005557636730372906, 0.0306389257311821, 0.029201805591583252, 0.03715109825134277, 0.14855645596981049, 0.009036106057465076, 0.6641777753829956, -0.12201140075922012, -0.4401446282863617, -0.008832373656332493, 0.09776730835437775, -0.3093128502368927, 0.06035256013274193, 1.1384774446487427, -0.007873635739088058, 0.013973606750369072, -0.13198226690292358]} +{"t": 5.0649, "q": [-0.15611322224140167, 0.015063690021634102, 0.025149980559945107, 0.32993370294570923, -0.16355881094932556, -0.007446940056979656, -0.10734967887401581, -0.021884791553020477, 0.04992498829960823, 0.32134339213371277, -0.2244318425655365, 0.02687503583729267, 0.00613348837941885, 0.030593808740377426, 0.02919314056634903, 0.035892754793167114, 0.14485332369804382, 0.011684619821608067, 0.6608461141586304, -0.12971726059913635, -0.4423857033252716, -0.00882038939744234, 0.09759952872991562, -0.3091091215610504, 0.06029263883829117, 1.1416412591934204, -0.007849667221307755, 0.01396162249147892, -0.133648082613945]} +{"t": 5.0816, "q": [-0.15621548891067505, 0.014773938804864883, 0.025109805166721344, 0.3299422264099121, -0.16325373947620392, -0.006958799436688423, -0.107307069003582, -0.022072279825806618, 0.04991159588098526, 0.3213263750076294, -0.22420400381088257, 0.02697300724685192, 0.006736123468726873, 0.030480675399303436, 0.02922840788960457, 0.03477822244167328, 0.1405869424343109, 0.015172028914093971, 0.6576104164123535, -0.1378185898065567, -0.4439076781272888, -0.00882038939744234, 0.09738381206989288, -0.3088454604148865, 0.060280654579401016, 1.1452724933624268, -0.007837682962417603, 0.013997575268149376, -0.13538579642772675]} +{"t": 5.0983, "q": [-0.15634331107139587, 0.014339311048388481, 0.025002669543027878, 0.32993370294570923, -0.16299597918987274, -0.006562588270753622, -0.10731559246778488, -0.02226828783750534, 0.049817852675914764, 0.3212752342224121, -0.22406063973903656, 0.02704317308962345, 0.007378934416919947, 0.03038998879492283, 0.029286982491612434, 0.03385543450713158, 0.13642841577529907, 0.018263958394527435, 0.6549978256225586, -0.14753779768943787, -0.44524991512298584, -0.008796420879662037, 0.0972280204296112, -0.3085938096046448, 0.06030462309718132, 1.1479809284210205, -0.007849667221307755, 0.013997575268149376, -0.1377706527709961]} +{"t": 5.1151, "q": [-0.15644557774066925, 0.013742761686444283, 0.024908926337957382, 0.32987403869628906, -0.16285842657089233, -0.006322105415165424, -0.10733263939619064, -0.022472817450761795, 0.04979106783866882, 0.3212752342224121, -0.22395136952400208, 0.02712801843881607, 0.007579812780022621, 0.030397431924939156, 0.029301075264811516, 0.03368765860795975, 0.13344435393810272, 0.02022937312722206, 0.6520736813545227, -0.1555911898612976, -0.44636446237564087, -0.008832373656332493, 0.0972040519118309, -0.3082702159881592, 0.060340575873851776, 1.1507493257522583, -0.007837682962417603, 0.014009559527039528, -0.14067083597183228]} +{"t": 5.132, "q": [-0.15645410120487213, 0.011646322906017303, 0.02488214150071144, 0.32983142137527466, -0.16278551518917084, -0.006244193762540817, -0.10737524926662445, -0.02262621559202671, 0.04979106783866882, 0.32126671075820923, -0.2238682210445404, 0.027270400896668434, 0.007633380591869354, 0.03040493279695511, 0.029305681586265564, 0.03387940302491188, 0.13038836419582367, 0.022422485053539276, 0.6493412852287292, -0.16450746357440948, -0.44781455397605896, -0.008832373656332493, 0.09704825282096863, -0.3079945743083954, 0.06035256013274193, 1.154140830039978, -0.007837682962417603, 0.014009559527039528, -0.1436069756746292]} +{"t": 5.1488, "q": [-0.15645410120487213, 0.010206084698438644, 0.024466993287205696, 0.32964393496513367, -0.16272534430027008, -0.006145152263343334, -0.10736672580242157, -0.022898923605680466, 0.0497107170522213, 0.3213178515434265, -0.22385558485984802, 0.02727743238210678, 0.007700339891016483, 0.030427660793066025, 0.029281551018357277, 0.03338805213570595, 0.12697286903858185, 0.02575409971177578, 0.6473039388656616, -0.1726207733154297, -0.45013949275016785, -0.008832373656332493, 0.09640111029148102, -0.307718962430954, 0.06036454066634178, 1.1583712100982666, -0.007837682962417603, 0.014009559527039528, -0.1455603986978531]} +{"t": 5.1655, "q": [-0.15643705427646637, 0.010078253224492073, 0.024158980697393417, 0.3293968141078949, -0.16271236538887024, -0.006095703691244125, -0.1071707159280777, -0.02310345508158207, 0.04940270259976387, 0.32139453291893005, -0.223847433924675, 0.027306005358695984, 0.007941394113004208, 0.0305863656103611, 0.029179047793149948, 0.032345425337553024, 0.12434832006692886, 0.02689260058104992, 0.6452786326408386, -0.18370619416236877, -0.45325538516044617, -0.008856342174112797, 0.09575396031141281, -0.30740734934806824, 0.060376524925231934, 1.162230134010315, -0.007849667221307755, 0.014009559527039528, -0.14784938097000122]} +{"t": 5.1825, "q": [-0.15644557774066925, 0.009975988417863846, 0.02387774921953678, 0.32927748560905457, -0.16269947588443756, -0.006074479315429926, -0.10701731592416763, -0.02322276495397091, 0.049175042659044266, 0.32143715023994446, -0.22380170226097107, 0.027384312823414803, 0.008262800052762032, 0.030707169324159622, 0.02911992371082306, 0.0319020077586174, 0.12208329886198044, 0.027839355170726776, 0.6425342559814453, -0.19214308261871338, -0.45592787861824036, -0.008868326433002949, 0.09471133351325989, -0.3070598244667053, 0.06036454066634178, 1.1657295227050781, -0.007837682962417603, 0.01402154378592968, -0.15050987899303436]} +{"t": 5.1992, "q": [-0.1564711481332779, 0.009848156943917274, 0.023770615458488464, 0.3291581869125366, -0.16269516944885254, -0.006067407317459583, -0.10696618258953094, -0.023307986557483673, 0.04902772977948189, 0.3214115798473358, -0.22378091514110565, 0.027419917285442352, 0.008410110138356686, 0.03072234056890011, 0.02910066768527031, 0.031925976276397705, 0.11999804526567459, 0.028091024607419968, 0.6386513710021973, -0.20093950629234314, -0.45917558670043945, -0.008916263468563557, 0.09424394369125366, -0.30640068650245667, 0.060340575873851776, 1.1676470041275024, -0.007849667221307755, 0.014033528044819832, -0.15240339934825897]} +{"t": 5.2159, "q": [-0.156462624669075, 0.009745890274643898, 0.02370365522801876, 0.32906442880630493, -0.1626865714788437, -0.0060532549396157265, -0.10693209618330002, -0.023376163095235825, 0.04900094494223595, 0.3213860094547272, -0.22374765574932098, 0.027476873248815536, 0.008423502556979656, 0.03074495494365692, 0.029095493257045746, 0.03177018091082573, 0.11826033145189285, 0.028510471805930138, 0.6338097453117371, -0.20979584753513336, -0.46147656440734863, -0.008952216245234013, 0.09402823448181152, -0.3055737614631653, 0.06030462309718132, 1.1689772605895996, -0.007849667221307755, 0.014057496562600136, -0.15348197519779205]} +{"t": 5.2327, "q": [-0.1564711481332779, 0.009652147069573402, 0.023730438202619553, 0.32905593514442444, -0.16269508004188538, -0.006039165426045656, -0.10692357271909714, -0.023444339632987976, 0.048987552523612976, 0.3213348984718323, -0.22373104095458984, 0.02750534377992153, 0.008369934745132923, 0.03072234056890011, 0.02910066768527031, 0.031554464250802994, 0.11657056212425232, 0.02894190326333046, 0.6277337074279785, -0.21865218877792358, -0.4629625976085663, -0.009036106057465076, 0.09402823448181152, -0.3048427402973175, 0.06030462309718132, 1.169828176498413, -0.00782569870352745, 0.014045512303709984, -0.15445269644260406]} +{"t": 5.2494, "q": [-0.1564711481332779, 0.009507272392511368, 0.02370365522801876, 0.32901331782341003, -0.1626950353384018, -0.006025053560733795, -0.10690653324127197, -0.023572171106934547, 0.048987552523612976, 0.321283757686615, -0.22372272610664368, 0.027519578114151955, 0.008383326232433319, 0.030722396448254585, 0.029091179370880127, 0.030547790229320526, 0.11507253348827362, 0.029217541217803955, 0.6236351132392883, -0.22877885401248932, -0.46438872814178467, -0.00926380604505539, 0.09408815205097198, -0.304027795791626, 0.06031660735607147, 1.1710984706878662, -0.00782569870352745, 0.014033528044819832, -0.15539944171905518]} +{"t": 5.2662, "q": [-0.156462624669075, 0.009464660659432411, 0.023663479834794998, 0.3289792239665985, -0.16270363330841064, -0.006039205938577652, -0.10690653324127197, -0.023631826043128967, 0.04894737899303436, 0.321283757686615, -0.22371025383472443, 0.027540946379303932, 0.008302975445985794, 0.03073745407164097, 0.029090892523527145, 0.02960103563964367, 0.11352656781673431, 0.0294811949133873, 0.6194286346435547, -0.23879767954349518, -0.465934693813324, -0.009395632892847061, 0.09402823448181152, -0.3036922514438629, 0.060328591614961624, 1.1727403402328491, -0.007837682962417603, 0.014033528044819832, -0.1563941389322281]} +{"t": 5.2832, "q": [-0.15647967159748077, 0.009447617456316948, 0.023663479834794998, 0.32895365357398987, -0.16268649697303772, -0.006025021895766258, -0.10691504925489426, -0.0236403476446867, 0.04893398657441139, 0.321283757686615, -0.22369778156280518, 0.027562299743294716, 0.008302975445985794, 0.030714726075530052, 0.029115041717886925, 0.028869997709989548, 0.11208845674991608, 0.02996056340634823, 0.6154618859291077, -0.24807345867156982, -0.46788811683654785, -0.009647301398217678, 0.09404021501541138, -0.3036203384399414, 0.060376524925231934, 1.1738189458847046, -0.007837682962417603, 0.01402154378592968, -0.15749669075012207]} +{"t": 5.2999, "q": [-0.15649671852588654, 0.009439093992114067, 0.023609912022948265, 0.3289366066455841, -0.16269929707050323, -0.0060180132277309895, -0.10691504925489426, -0.0236403476446867, 0.04889380931854248, 0.32126671075820923, -0.2237021028995514, 0.027569502592086792, 0.00832975935190916, 0.030707169324159622, 0.02911992371082306, 0.028726188465952873, 0.11023090034723282, 0.031194938346743584, 0.6105363368988037, -0.2571095824241638, -0.4697217047214508, -0.009958891198039055, 0.09400426596403122, -0.3035244643688202, 0.06036454066634178, 1.1752809286117554, -0.00782569870352745, 0.01402154378592968, -0.15869511663913727]} +{"t": 5.3166, "q": [-0.1565137505531311, 0.009422050788998604, 0.023489385843276978, 0.32891955971717834, -0.16267794370651245, -0.00602499907836318, -0.10691504925489426, -0.0236403476446867, 0.048800066113471985, 0.32124966382980347, -0.22369778156280518, 0.027562299743294716, 0.008544029667973518, 0.030722226947546005, 0.029119642451405525, 0.028690235689282417, 0.10818160325288773, 0.03268098086118698, 0.6064976453781128, -0.26506710052490234, -0.47166314721107483, -0.01025849673897028, 0.09377656131982803, -0.30335670709609985, 0.060376524925231934, 1.1775100231170654, -0.00782569870352745, 0.013997575268149376, -0.1598575860261917]} +{"t": 5.3336, "q": [-0.15652227401733398, 0.009387962520122528, 0.023395642638206482, 0.32887694239616394, -0.1626865267753601, -0.006039142608642578, -0.10689800977706909, -0.02365739271044731, 0.04869293421506882, 0.3212411403656006, -0.22370609641075134, 0.027548065409064293, 0.008610988967120647, 0.03074484132230282, 0.02911446802318096, 0.028606345877051353, 0.10659968107938766, 0.034023214131593704, 0.6030222177505493, -0.27442678809165955, -0.4737603962421417, -0.010570086538791656, 0.09345299005508423, -0.3031649589538574, 0.06036454066634178, 1.1798230409622192, -0.007837682962417603, 0.014009559527039528, -0.16117584705352783]} +{"t": 5.3503, "q": [-0.15653079748153687, 0.009379439055919647, 0.023288507014513016, 0.32882583141326904, -0.162673681974411, -0.006032039411365986, -0.10689800977706909, -0.02364887110888958, 0.04859919100999832, 0.3212326169013977, -0.22371475398540497, 0.027562487870454788, 0.008718123659491539, 0.030805183574557304, 0.02909434773027897, 0.028618330135941505, 0.10549713671207428, 0.03514973446726799, 0.6000381708145142, -0.2828516960144043, -0.4761092960834503, -0.01079778652638197, 0.09309346228837967, -0.30296120047569275, 0.060376524925231934, 1.1818482875823975, -0.00782569870352745, 0.013997575268149376, -0.16254204511642456]} +{"t": 5.367, "q": [-0.1565137505531311, 0.009379439055919647, 0.02318137139081955, 0.3287917375564575, -0.16267789900302887, -0.006010869517922401, -0.10689800977706909, -0.0236403476446867, 0.048478662967681885, 0.3212326169013977, -0.22371475398540497, 0.027562487870454788, 0.008704732172191143, 0.030805183574557304, 0.02909434773027897, 0.028630314394831657, 0.10443054139614105, 0.03612045571208, 0.5974975228309631, -0.2915402352809906, -0.4782065451145172, -0.010977550409734249, 0.09260211139917374, -0.302829384803772, 0.060388509184122086, 1.1840415000915527, -0.007837682962417603, 0.013985591009259224, -0.1639322191476822]} +{"t": 5.3839, "q": [-0.15650522708892822, 0.009405005723237991, 0.023087628185749054, 0.32868945598602295, -0.162673681974411, -0.006032039411365986, -0.10690653324127197, -0.023623304441571236, 0.04839831218123436, 0.32120704650878906, -0.22372755408287048, 0.02756977640092373, 0.008677948266267776, 0.030812740325927734, 0.029089460149407387, 0.028678251430392265, 0.10337592661380768, 0.03677958622574806, 0.5949808359146118, -0.30113962292671204, -0.4797764718532562, -0.011121360585093498, 0.0920628160238266, -0.3026256561279297, 0.06040049344301224, 1.186414361000061, -0.007813714444637299, 0.013949638232588768, -0.16503477096557617]} +{"t": 5.4007, "q": [-0.15653079748153687, 0.009430572390556335, 0.02299388498067856, 0.32863834500312805, -0.16267363727092743, -0.006017918232828379, -0.10688948631286621, -0.023606259375810623, 0.048317961394786835, 0.3211559057235718, -0.22374002635478973, 0.027548406273126602, 0.008718123659491539, 0.030827682465314865, 0.02910814806818962, 0.028869997709989548, 0.10193782299757004, 0.03760650008916855, 0.5911698341369629, -0.3088814318180084, -0.48056742548942566, -0.01137303002178669, 0.09170328825712204, -0.3025417625904083, 0.060388509184122086, 1.1884756088256836, -0.007837682962417603, 0.01396162249147892, -0.16608937084674835]} +{"t": 5.4174, "q": [-0.15653079748153687, 0.009413527324795723, 0.022953709587454796, 0.32845938205718994, -0.16266512870788574, -0.00603199889883399, -0.10690653324127197, -0.02358921617269516, 0.04822421446442604, 0.3210877478122711, -0.22374850511550903, 0.027548491954803467, 0.00866455677896738, 0.030842740088701248, 0.02910786308348179, 0.028738172724843025, 0.10054764896631241, 0.03790610283613205, 0.588473379611969, -0.3179055452346802, -0.4809029996395111, -0.011684619821608067, 0.09137971699237823, -0.30243390798568726, 0.06041247770190239, 1.1897459030151367, -0.007813714444637299, 0.01396162249147892, -0.16731177270412445]} +{"t": 5.4341, "q": [-0.15650522708892822, 0.009413527324795723, 0.022900141775608063, 0.32837414741516113, -0.16266943514347076, -0.006039079278707504, -0.10692357271909714, -0.02358069270849228, 0.04822421446442604, 0.32103660702705383, -0.22375266253948212, 0.027541374787688255, 0.008450286462903023, 0.030880410224199295, 0.029102401807904243, 0.028498487547039986, 0.0993012934923172, 0.038721032440662384, 0.5859087705612183, -0.3247964680194855, -0.48128649592399597, -0.011864382773637772, 0.09097225219011307, -0.30233803391456604, 0.06036454066634178, 1.1908245086669922, -0.007813714444637299, 0.01396162249147892, -0.16896559298038483]} +{"t": 5.4509, "q": [-0.15649671852588654, 0.009430572390556335, 0.022900141775608063, 0.32833153009414673, -0.162673681974411, -0.006032039411365986, -0.10693209618330002, -0.023572171106934547, 0.04822421446442604, 0.32098546624183655, -0.22377361357212067, 0.027520107105374336, 0.00839671865105629, 0.030948253348469734, 0.029086880385875702, 0.02840261347591877, 0.09873802959918976, 0.03905659168958664, 0.5828288197517395, -0.3300815224647522, -0.4814542531967163, -0.012020178139209747, 0.09057677537202835, -0.30220621824264526, 0.060376524925231934, 1.191891074180603, -0.007813714444637299, 0.013949638232588768, -0.17157815396785736]} +{"t": 5.4676, "q": [-0.15647967159748077, 0.009439093992114067, 0.022886749356985092, 0.32826337218284607, -0.16266947984695435, -0.006053191609680653, -0.1069406196475029, -0.023546604439616203, 0.04822421446442604, 0.32094287872314453, -0.22377361357212067, 0.027520107105374336, 0.008356543257832527, 0.03101598098874092, 0.029090335592627525, 0.02847451902925968, 0.09880993515253067, 0.038852859288454056, 0.5807675123214722, -0.3352467119693756, -0.4815501272678375, -0.012415657751262188, 0.09020526707172394, -0.30213430523872375, 0.060376524925231934, 1.1932213306427002, -0.007801730651408434, 0.01396162249147892, -0.17375928163528442]} +{"t": 5.4843, "q": [-0.15647967159748077, 0.009464660659432411, 0.02283318154513836, 0.32813552021980286, -0.16265659034252167, -0.006031967233866453, -0.10696618258953094, -0.02352956123650074, 0.04817064851522446, 0.32089173793792725, -0.22377778589725494, 0.02751297317445278, 0.00832975935190916, 0.03115132264792919, 0.02911621890962124, 0.028438566252589226, 0.09890580922365189, 0.03876896947622299, 0.5794852375984192, -0.3381708562374115, -0.48162204027175903, -0.01296693179756403, 0.08980978280305862, -0.30206239223480225, 0.060376524925231934, 1.1944797039031982, -0.007765777874737978, 0.013973606750369072, -0.1750655621290207]} +{"t": 5.5024, "q": [-0.15648819506168365, 0.009473182260990143, 0.022806398570537567, 0.3280247449874878, -0.16265662014484406, -0.006046087946742773, -0.1069832295179367, -0.02352956123650074, 0.0481036901473999, 0.3208576440811157, -0.22378192842006683, 0.02750585600733757, 0.00831636693328619, 0.03134717792272568, 0.029093516990542412, 0.028678251430392265, 0.09914549440145493, 0.03864912688732147, 0.5782748460769653, -0.33980071544647217, -0.481849730014801, -0.013518205843865871, 0.0893663689494133, -0.30201447010040283, 0.060388509184122086, 1.1955822706222534, -0.00777776213362813, 0.013973606750369072, -0.17664748430252075]} +{"t": 5.5191, "q": [-0.15647967159748077, 0.009481705725193024, 0.022779613733291626, 0.32786282896995544, -0.16265659034252167, -0.006031967233866453, -0.10702583938837051, -0.023486949503421783, 0.04809029772877693, 0.3207639157772064, -0.22379456460475922, 0.027498822659254074, 0.008035137318074703, 0.03194195777177811, 0.029077453538775444, 0.02907373011112213, 0.10399910807609558, 0.03636014088988304, 0.5759019255638123, -0.3388899266719818, -0.4819576144218445, -0.01613076776266098, 0.08828778564929962, -0.3019784986972809, 0.06042446196079254, 1.1973918676376343, -0.00777776213362813, 0.013949638232588768, -0.17896044254302979]} +{"t": 5.536, "q": [-0.1564711481332779, 0.009481705725193024, 0.02283318154513836, 0.32771795988082886, -0.1626523733139038, -0.006053128279745579, -0.10705140233039856, -0.02346990630030632, 0.04818404093384743, 0.3206786811351776, -0.22379456460475922, 0.027498822659254074, 0.007660164497792721, 0.03281554952263832, 0.029013391584157944, 0.02997254766523838, 0.10949986428022385, 0.03356781601905823, 0.5715876221656799, -0.33551037311553955, -0.4821253716945648, -0.019354524090886116, 0.08707737922668457, -0.3020264506340027, 0.060436446219682693, 1.1993812322616577, -0.007765777874737978, 0.013949638232588768, -0.18073409795761108]} +{"t": 5.5529, "q": [-0.15644557774066925, 0.009473182260990143, 0.022819790989160538, 0.32763272523880005, -0.16265662014484406, -0.006046087946742773, -0.10705140233039856, -0.023478427901864052, 0.04818404093384743, 0.3206275403499603, -0.22379456460475922, 0.027498822659254074, 0.007633380591869354, 0.034328676760196686, 0.028958220034837723, 0.031374700367450714, 0.11631888896226883, 0.02943325787782669, 0.5675609111785889, -0.32845166325569153, -0.48236507177352905, -0.02208692766726017, 0.08620253205299377, -0.3025897145271301, 0.060448430478572845, 1.201586365699768, -0.00777776213362813, 0.01396162249147892, -0.18229204416275024]} +{"t": 5.5696, "q": [-0.15645410120487213, 0.009422050788998604, 0.022806398570537567, 0.32758158445358276, -0.16266097128391266, -0.006067280657589436, -0.10704288631677628, -0.023503994569182396, 0.04818404093384743, 0.3206275403499603, -0.2237987220287323, 0.027491705492138863, 0.0076869479380548, 0.03615735098719597, 0.02898082137107849, 0.03178216516971588, 0.12449213117361069, 0.023249397054314613, 0.5639416575431824, -0.3190680146217346, -0.4823291003704071, -0.024807346984744072, 0.08553141355514526, -0.30321288108825684, 0.060436446219682693, 1.2032042741775513, -0.00777776213362813, 0.01396162249147892, -0.18395785987377167]} +{"t": 5.5864, "q": [-0.156462624669075, 0.009422050788998604, 0.02283318154513836, 0.32745376229286194, -0.16265662014484406, -0.006046087946742773, -0.10713662952184677, -0.02352956123650074, 0.0481974333524704, 0.32057642936706543, -0.22379890084266663, 0.02750602550804615, 0.007673555985093117, 0.03875389322638512, 0.02890700474381447, 0.03202185034751892, 0.13336046040058136, 0.01678990013897419, 0.5597112774848938, -0.3103914260864258, -0.4822811782360077, -0.02805507183074951, 0.08468053489923477, -0.3037761449813843, 0.060460414737463, 1.204654335975647, -0.00777776213362813, 0.013985591009259224, -0.18607906997203827]} +{"t": 5.6032, "q": [-0.15648819506168365, 0.009413527324795723, 0.022806398570537567, 0.32730036973953247, -0.16264812648296356, -0.0060601686127483845, -0.10716219246387482, -0.02352956123650074, 0.04818404093384743, 0.3204911947250366, -0.22380322217941284, 0.027513228356838226, 0.007794083096086979, 0.04167608544230461, 0.02854265831410885, 0.03203383460640907, 0.1435590386390686, 0.010869692079722881, 0.5572065711021423, -0.29994118213653564, -0.4821733236312866, -0.030655648559331894, 0.08381766825914383, -0.30438733100891113, 0.060448430478572845, 1.2066797018051147, -0.00777776213362813, 0.014009559527039528, -0.18833209574222565]} +{"t": 5.62, "q": [-0.156462624669075, 0.009413527324795723, 0.022806398570537567, 0.3271980881690979, -0.16264812648296356, -0.0060601686127483845, -0.10717923939228058, -0.02353808283805847, 0.04818404093384743, 0.32043153047561646, -0.22381585836410522, 0.027506215497851372, 0.0077672996558249, 0.04467322677373886, 0.028160355985164642, 0.03215367719531059, 0.1534939557313919, 0.004877579864114523, 0.5545220971107483, -0.29062944650650024, -0.481885701417923, -0.03194994479417801, 0.08288290351629257, -0.30515432357788086, 0.06042446196079254, 1.208477258682251, -0.007741809356957674, 0.013997575268149376, -0.19062109291553497]} +{"t": 5.6367, "q": [-0.15641148388385773, 0.009430572390556335, 0.022819790989160538, 0.32708731293678284, -0.16264386475086212, -0.00606720894575119, -0.10718776285648346, -0.02352956123650074, 0.048143863677978516, 0.3204059600830078, -0.22384080290794373, 0.02746349386870861, 0.007700339891016483, 0.04796899855136871, 0.028011007234454155, 0.03221359848976135, 0.16534635424613953, -0.00025166873820126057, 0.5510706305503845, -0.2793043553829193, -0.4819096624851227, -0.033963292837142944, 0.08196011930704117, -0.3062688708305359, 0.060436446219682693, 1.2097595930099487, -0.00777776213362813, 0.01402154378592968, -0.19308984279632568]} +{"t": 5.6534, "q": [-0.15636888146400452, 0.009464660659432411, 0.022806398570537567, 0.32694244384765625, -0.1626395732164383, -0.0060601369477808475, -0.1072133257985115, -0.023486949503421783, 0.048130471259355545, 0.3203548491001129, -0.22386209666728973, 0.027470866218209267, 0.0076467725448310375, 0.05124667286872864, 0.028092656284570694, 0.03275288641452789, 0.1775103509426117, -0.005416869651526213, 0.5487337112426758, -0.26868632435798645, -0.48216134309768677, -0.03659982234239578, 0.08094145357608795, -0.3076949715614319, 0.060448430478572845, 1.2107782363891602, -0.00777776213362813, 0.013997575268149376, -0.19527097046375275]} +{"t": 5.6702, "q": [-0.156334787607193, 0.009473182260990143, 0.022819790989160538, 0.32680606842041016, -0.1626310646533966, -0.0060742259956896305, -0.10724741220474243, -0.023495472967624664, 0.048157256096601486, 0.3203122317790985, -0.22386641800403595, 0.027478069067001343, 0.007633380591869354, 0.05512062832713127, 0.028517810627818108, 0.033795516937971115, 0.19050124287605286, -0.009012137539684772, 0.5463848114013672, -0.256462424993515, -0.4821493625640869, -0.04092612862586975, 0.0794314444065094, -0.30960047245025635, 0.060436446219682693, 1.2122403383255005, -0.007753793615847826, 0.014045512303709984, -0.1965053379535675]} +{"t": 5.6869, "q": [-0.15631774067878723, 0.009481705725193024, 0.022819790989160538, 0.3266441524028778, -0.1626311093568802, -0.006088338326662779, -0.10733263939619064, -0.02346990630030632, 0.048157256096601486, 0.3203207552433014, -0.2238703966140747, 0.027456631883978844, 0.007566420827060938, 0.05854601413011551, 0.029237322509288788, 0.03514973446726799, 0.20298880338668823, -0.01164866704493761, 0.5439759492874146, -0.24395088851451874, -0.4822332262992859, -0.04343083128333092, 0.07752595096826553, -0.31184151768684387, 0.060448430478572845, 1.2139540910720825, -0.007753793615847826, 0.014069480821490288, -0.19769178330898285]} +{"t": 5.7037, "q": [-0.1562836617231369, 0.009481705725193024, 0.022779613733291626, 0.3266015648841858, -0.16262686252593994, -0.0060953786596655846, -0.10738376528024673, -0.02346138283610344, 0.0481036901473999, 0.3203292787075043, -0.2238788902759552, 0.027456698939204216, 0.007673555985093117, 0.06212235614657402, 0.030308522284030914, 0.03719903528690338, 0.21826869249343872, -0.016166720539331436, 0.541171669960022, -0.2311037927865982, -0.48252084851264954, -0.04625910893082619, 0.07496132701635361, -0.31466978788375854, 0.06047239899635315, 1.2162550687789917, -0.007753793615847826, 0.01408146508038044, -0.19905798137187958]} +{"t": 5.7204, "q": [-0.15630923211574554, 0.009490227326750755, 0.022766223177313805, 0.3264310956001282, -0.1626097559928894, -0.006095323711633682, -0.1075371652841568, -0.02346138283610344, 0.04811708256602287, 0.3203122317790985, -0.22390416264533997, 0.027442635968327522, 0.007928002625703812, 0.0656772330403328, 0.031083231791853905, 0.04009921848773956, 0.23429159820079803, -0.02076866291463375, 0.5382475256919861, -0.21892783045768738, -0.4829043447971344, -0.04929111897945404, 0.07198923826217651, -0.31773775815963745, 0.0604843832552433, 1.2196106910705566, -0.00777776213362813, 0.01408146508038044, -0.2000766396522522]} +{"t": 5.7371, "q": [-0.15630070865154266, 0.009464660659432411, 0.022766223177313805, 0.32615840435028076, -0.16258840262889862, -0.006102300714701414, -0.10763943195343018, -0.02346138283610344, 0.04805012047290802, 0.3203122317790985, -0.22391679883003235, 0.027435604482889175, 0.008289583027362823, 0.06883730739355087, 0.031464096158742905, 0.043239083141088486, 0.24990704655647278, -0.024831315502524376, 0.5355510711669922, -0.20481041073799133, -0.4836593568325043, -0.05078914761543274, 0.06771086901426315, -0.32105740904808044, 0.06055628880858421, 1.2248836755752563, -0.007765777874737978, 0.014153369702398777, -0.2006998211145401]} +{"t": 5.7539, "q": [-0.15629218518733978, 0.009490227326750755, 0.022592127323150635, 0.3261072635650635, -0.16257120668888092, -0.006074004340916872, -0.1076309084892273, -0.023444339632987976, 0.04784924164414406, 0.32033780217170715, -0.2239706814289093, 0.027328722178936005, 0.008691340684890747, 0.07152234762907028, 0.03193013370037079, 0.046366967260837555, 0.26501914858818054, -0.028378644958138466, 0.532279372215271, -0.1938088834285736, -0.4843304753303528, -0.05168796330690384, 0.06387592107057571, -0.32395756244659424, 0.06081994250416756, 1.2301807403564453, -0.007765777874737978, 0.014177338220179081, -0.20083165168762207]} +{"t": 5.7706, "q": [-0.1563262641429901, 0.0095157939940691, 0.02233768254518509, 0.3258260488510132, -0.1625499427318573, -0.006109214387834072, -0.1076309084892273, -0.023427294567227364, 0.04759479686617851, 0.3203122317790985, -0.22410506010055542, 0.027215493842959404, 0.009414502419531345, 0.07373873889446259, 0.032077740877866745, 0.04954278841614723, 0.27984365820884705, -0.03039199486374855, 0.5288638472557068, -0.18114157021045685, -0.4859243929386139, -0.052023522555828094, 0.06024470180273056, -0.3266899883747101, 0.06093978509306908, 1.234830617904663, -0.007789746392518282, 0.01423725951462984, -0.20086759328842163]} +{"t": 5.7874, "q": [-0.15631774067878723, 0.009490227326750755, 0.02200288511812687, 0.32556185126304626, -0.1625286340713501, -0.006130312103778124, -0.1076309084892273, -0.023435818031430244, 0.047152865678071976, 0.3203122317790985, -0.22420534491539001, 0.027087602764368057, 0.010017137974500656, 0.07499721646308899, 0.03208676353096962, 0.05259876325726509, 0.2947400212287903, -0.03356781601905823, 0.5255681872367859, -0.16811470687389374, -0.48766210675239563, -0.052035506814718246, 0.056721337139606476, -0.32894301414489746, 0.06114351749420166, 1.2394086122512817, -0.007813714444637299, 0.014273212291300297, -0.20090354979038239]} +{"t": 5.8041, "q": [-0.156334787607193, 0.009507272392511368, 0.02166808769106865, 0.3253061771392822, -0.16251163184642792, -0.006158481817692518, -0.10761386901140213, -0.023384684696793556, 0.046630579978227615, 0.32030370831489563, -0.22435183823108673, 0.026924362406134605, 0.01065994892269373, 0.07572318613529205, 0.03213341534137726, 0.05561878904700279, 0.31091874837875366, -0.03778626397252083, 0.522272527217865, -0.1537695974111557, -0.48902830481529236, -0.05205947533249855, 0.05277852714061737, -0.3307526409626007, 0.06137121841311455, 1.2443701028823853, -0.007801730651408434, 0.014309165067970753, -0.20090354979038239]} +{"t": 5.8208, "q": [-0.15631774067878723, 0.009507272392511368, 0.021467208862304688, 0.3249908685684204, -0.1624988317489624, -0.006165490485727787, -0.10761386901140213, -0.023376163095235825, 0.046295784413814545, 0.32020145654678345, -0.22441935539245605, 0.026896405965089798, 0.011195625178515911, 0.07592583447694778, 0.03210986778140068, 0.05800364911556244, 0.32697761058807373, -0.04169312119483948, 0.5199116468429565, -0.14112623035907745, -0.49038252234458923, -0.052023522555828094, 0.0487518273293972, -0.33231058716773987, 0.061407171189785004, 1.248504638671875, -0.00782569870352745, 0.014393054880201817, -0.20085561275482178]} +{"t": 5.8375, "q": [-0.15634331107139587, 0.0095157939940691, 0.02131989784538746, 0.3248033821582794, -0.16249457001686096, -0.006172539666295052, -0.10760534554719925, -0.02335059642791748, 0.04610829800367355, 0.320090651512146, -0.2244572788476944, 0.026875292882323265, 0.011356327682733536, 0.07591826468706131, 0.03211493790149689, 0.05992112681269646, 0.34002843499183655, -0.04394615441560745, 0.5179103016853333, -0.1278357356786728, -0.49172475934028625, -0.052023522555828094, 0.044916875660419464, -0.3335209786891937, 0.06152701377868652, 1.2524594068527222, -0.007909588515758514, 0.014488928020000458, -0.20084363222122192]} +{"t": 5.8543, "q": [-0.15638592839241028, 0.009507272392511368, 0.021252937614917755, 0.32465851306915283, -0.16249023377895355, -0.00615133810788393, -0.10751160234212875, -0.023359118029475212, 0.04592081159353256, 0.319903165102005, -0.22445295751094818, 0.02686809003353119, 0.011865219101309776, 0.07585027068853378, 0.032151129096746445, 0.06163487210869789, 0.3520006537437439, -0.04518052935600281, 0.5159808397293091, -0.1134786307811737, -0.49312689900398254, -0.051963601261377335, 0.041669152677059174, -0.33428797125816345, 0.06158693507313728, 1.2561025619506836, -0.007909588515758514, 0.01456083357334137, -0.20081965625286102]} +{"t": 5.8712, "q": [-0.156462624669075, 0.009413527324795723, 0.021226154640316963, 0.3244795501232147, -0.16249452531337738, -0.006158418953418732, -0.10747750848531723, -0.023444339632987976, 0.045960985124111176, 0.31969010829925537, -0.22444447875022888, 0.026868004351854324, 0.012213408946990967, 0.07575971633195877, 0.03219309076666832, 0.06326472759246826, 0.3628823459148407, -0.046127282083034515, 0.5140633583068848, -0.09949304163455963, -0.4947926998138428, -0.05193963274359703, 0.03803792968392372, -0.33495908975601196, 0.06164685636758804, 1.260764479637146, -0.007909588515758514, 0.014668691903352737, -0.20079569518566132]} +{"t": 5.8879, "q": [-0.15650522708892822, 0.009200476109981537, 0.021293114870786667, 0.3242238759994507, -0.16249872744083405, -0.006137257441878319, -0.10746899247169495, -0.023674435913562775, 0.04600116237998009, 0.319528192281723, -0.2244359850883484, 0.02686791867017746, 0.012213408946990967, 0.07560860365629196, 0.032275620847940445, 0.06484664231538773, 0.3724457621574402, -0.04677443206310272, 0.5126851797103882, -0.084596648812294, -0.49672216176986694, -0.05189169570803642, 0.03389138728380203, -0.33528268337249756, 0.061658840626478195, 1.2666127681732178, -0.007921572774648666, 0.014764565043151379, -0.20080767571926117]} +{"t": 5.9046, "q": [-0.15649671852588654, 0.008936289697885513, 0.02150738425552845, 0.3239937722682953, -0.16251158714294434, -0.006144369952380657, -0.10748603194952011, -0.02401532046496868, 0.046135079115629196, 0.3194003701210022, -0.22443616390228271, 0.026882238686084747, 0.011945570819079876, 0.07548020035028458, 0.03234293311834335, 0.06648848205804825, 0.38184139132499695, -0.0481286495923996, 0.5121698379516602, -0.07115034759044647, -0.4987834692001343, -0.051783837378025055, 0.02925349399447441, -0.33541449904441833, 0.06171875819563866, 1.2728685140609741, -0.007909588515758514, 0.014872423373162746, -0.20080767571926117]} +{"t": 5.9214, "q": [-0.15652227401733398, 0.008706193417310715, 0.021614519879221916, 0.3237466514110565, -0.16253289580345154, -0.0061232722364366055, -0.10748603194952011, -0.02443290501832962, 0.04632256552577019, 0.3192043602466583, -0.22442352771759033, 0.026889270171523094, 0.01159738190472126, 0.07537468522787094, 0.03238551318645477, 0.06811833381652832, 0.39064979553222656, -0.04911135509610176, 0.5121338963508606, -0.05595434829592705, -0.5005092024803162, -0.05171193182468414, 0.025202825665473938, -0.33548641204833984, 0.06180264800786972, 1.2785969972610474, -0.007909588515758514, 0.014980281703174114, -0.20080767571926117]} +{"t": 5.9382, "q": [-0.1565137505531311, 0.00873175822198391, 0.02169487066566944, 0.32341426610946655, -0.16254140436649323, -0.006109182722866535, -0.10748603194952011, -0.024995364248752594, 0.04633595794439316, 0.3191361725330353, -0.22441935539245605, 0.026896405965089798, 0.011356327682733536, 0.07535198330879211, 0.0324007049202919, 0.06967628747224808, 0.39818787574768066, -0.04990231245756149, 0.5119661092758179, -0.041609231382608414, -0.5018394589424133, -0.051663994789123535, 0.022961774840950966, -0.33548641204833984, 0.061826616525650024, 1.282431960105896, -0.007909588515758514, 0.01501623447984457, -0.20083165168762207]} +{"t": 5.9549, "q": [-0.15648819506168365, 0.00873175822198391, 0.02165469527244568, 0.3231245279312134, -0.16253280639648438, -0.006095039192587137, -0.10746046900749207, -0.025608956813812256, 0.04625560715794563, 0.31910207867622375, -0.22443217039108276, 0.026903675869107246, 0.01118223275989294, 0.07526145130395889, 0.032442595809698105, 0.07123423367738724, 0.4061693549156189, -0.05140034109354019, 0.511666476726532, -0.025670209899544716, -0.5028101801872253, -0.05152018368244171, 0.02117612585425377, -0.33555829524993896, 0.061898522078990936, 1.2859553098678589, -0.007909588515758514, 0.01501623447984457, -0.20089156925678253]} +{"t": 5.9717, "q": [-0.15649671852588654, 0.00873175822198391, 0.02168147824704647, 0.3227154612541199, -0.16254127025604248, -0.006066828966140747, -0.10746899247169495, -0.026018017902970314, 0.04625560715794563, 0.3189998269081116, -0.2244366556406021, 0.026925234124064445, 0.011101881042122841, 0.07523874938488007, 0.03245778754353523, 0.07264837622642517, 0.41429466009140015, -0.05391702800989151, 0.5117024779319763, -0.010354370810091496, -0.503061830997467, -0.051352404057979584, 0.019546272233128548, -0.33558228611946106, 0.06181463226675987, 1.2895146608352661, -0.007909588515758514, 0.01501623447984457, -0.200951486825943]} +{"t": 5.9884, "q": [-0.15645410120487213, 0.008714715018868446, 0.021708263084292412, 0.32225528359413147, -0.16252407431602478, -0.006038532592356205, -0.10746046900749207, -0.02647821232676506, 0.046282391995191574, 0.3187611997127533, -0.22443251311779022, 0.026932351291179657, 0.010793867520987988, 0.07522360980510712, 0.03246791660785675, 0.07411044836044312, 0.42247989773750305, -0.05712880194187164, 0.5118222832679749, 0.006159891840070486, -0.5031337141990662, -0.05122057721018791, 0.01780855841934681, -0.3355463147163391, 0.06185058504343033, 1.2930140495300293, -0.00788561999797821, 0.01501623447984457, -0.2009994238615036]} +{"t": 6.0052, "q": [-0.1564285308122635, 0.00868062674999237, 0.021748438477516174, 0.32185474038124084, -0.1624940037727356, -0.005989020690321922, -0.10747750848531723, -0.026895796880126, 0.04625560715794563, 0.31859928369522095, -0.22444115579128265, 0.02694675698876381, 0.010284976102411747, 0.07518591731786728, 0.032483797520399094, 0.07559649646282196, 0.43169575929641724, -0.06215019151568413, 0.5119780898094177, 0.0210682675242424, -0.5029659271240234, -0.05107676982879639, 0.01593901962041855, -0.33560624718666077, 0.06181463226675987, 1.296800971031189, -0.007873635739088058, 0.015004250220954418, -0.20105934143066406]} +{"t": 6.022, "q": [-0.15638592839241028, 0.008595405146479607, 0.021802006289362907, 0.321471244096756, -0.1624852567911148, -0.005932522937655449, -0.10747750848531723, -0.027236681431531906, 0.04625560715794563, 0.3184373676776886, -0.22444115579128265, 0.02694675698876381, 0.009695732034742832, 0.0751783475279808, 0.0324888601899147, 0.07745404541492462, 0.4392697811126709, -0.06543386727571487, 0.5120020508766174, 0.03677958622574806, -0.5027262568473816, -0.05098089575767517, 0.014273212291300297, -0.33560624718666077, 0.06179066374897957, 1.299988865852356, -0.007873635739088058, 0.014992265962064266, -0.2010713368654251]} +{"t": 6.0388, "q": [-0.15631774067878723, 0.008518707007169724, 0.021922532469034195, 0.3210025131702423, -0.16245952248573303, -0.005904195364564657, -0.10751160234212875, -0.027526432648301125, 0.046282391995191574, 0.318292498588562, -0.22446709871292114, 0.02698999084532261, 0.008905611000955105, 0.07506511360406876, 0.032545942813158035, 0.0800785943865776, 0.446807861328125, -0.06779476255178452, 0.512097954750061, 0.053593456745147705, -0.5023906826972961, -0.05077716335654259, 0.01230779942125082, -0.3356541693210602, 0.06186256930232048, 1.3030927181243896, -0.007873635739088058, 0.014968297444283962, -0.2010713368654251]} +{"t": 6.0556, "q": [-0.15623252093791962, 0.008501661941409111, 0.021976100280880928, 0.320533812046051, -0.16239498555660248, -0.005769848823547363, -0.10752012580633163, -0.027662787586450577, 0.04633595794439316, 0.3181135356426239, -0.22447559237480164, 0.026990076526999474, 0.008570813573896885, 0.07490619271993637, 0.032652296125888824, 0.08188821375370026, 0.45488524436950684, -0.0707428827881813, 0.5121578574180603, 0.07044327259063721, -0.5021989345550537, -0.05065732076764107, 0.010510165244340897, -0.33573806285858154, 0.06185058504343033, 1.3056334257125854, -0.007897604256868362, 0.014968297444283962, -0.20110727846622467]} +{"t": 6.0726, "q": [-0.15621548891067505, 0.008459052070975304, 0.02200288511812687, 0.32006508111953735, -0.1623649299144745, -0.005734449252486229, -0.10752012580633163, -0.027782095596194267, 0.04624221473932266, 0.3179686367511749, -0.22447559237480164, 0.026990076526999474, 0.008544029667973518, 0.07463417947292328, 0.032806288450956345, 0.08329036831855774, 0.4621357023715973, -0.07264837622642517, 0.5129008889198303, 0.0863942801952362, -0.50171959400177, -0.05059739947319031, 0.008676579222083092, -0.3357260823249817, 0.061886537820100784, 1.3088572025299072, -0.007873635739088058, 0.014944328926503658, -0.20111927390098572]} +{"t": 6.0893, "q": [-0.15621548891067505, 0.008476095274090767, 0.021935924887657166, 0.3197753429412842, -0.16231770813465118, -0.005670752841979265, -0.1075371652841568, -0.02780766226351261, 0.04614847153425217, 0.3178919553756714, -0.22448888421058655, 0.027040325105190277, 0.008744907565414906, 0.07421863079071045, 0.0330374576151371, 0.08490823209285736, 0.46903860569000244, -0.07352322340011597, 0.5135599970817566, 0.10282465070486069, -0.5013840198516846, -0.05036969855427742, 0.006962834857404232, -0.33578601479530334, 0.06192249059677124, 1.312248706817627, -0.007873635739088058, 0.014920360408723354, -0.20111927390098572]} +{"t": 6.1061, "q": [-0.15622399747371674, 0.008450528606772423, 0.021775221452116966, 0.31956228613853455, -0.16231337189674377, -0.005649560131132603, -0.1075371652841568, -0.027816183865070343, 0.04592081159353256, 0.3177385628223419, -0.22451451420783997, 0.0270549189299345, 0.009227016009390354, 0.07372809946537018, 0.03327184543013573, 0.08660999685525894, 0.4761572480201721, -0.07405053079128265, 0.5136678814888, 0.11945875734090805, -0.5014079809188843, -0.05032176151871681, 0.005680522881448269, -0.3357979953289032, 0.06191050633788109, 1.3154844045639038, -0.007897604256868362, 0.014872423373162746, -0.20111927390098572]} +{"t": 6.1228, "q": [-0.15621548891067505, 0.00843348540365696, 0.02165469527244568, 0.3193492293357849, -0.1623048186302185, -0.005649528466165066, -0.10752012580633163, -0.027816183865070343, 0.04570654034614563, 0.31758514046669006, -0.22454045712947845, 0.0270981527864933, 0.00966894906014204, 0.07326842099428177, 0.0334482342004776, 0.08823984861373901, 0.4821733236312866, -0.07425425946712494, 0.5137277841567993, 0.13398364186286926, -0.501491904258728, -0.05020191892981529, 0.0041944789700210094, -0.3358699083328247, 0.06197042763233185, 1.3189598321914673, -0.007861651480197906, 0.014860439114272594, -0.20111927390098572]} +{"t": 6.1395, "q": [-0.15622399747371674, 0.008467573672533035, 0.021453816443681717, 0.3192640244960785, -0.16229619085788727, -0.0056212726049125195, -0.10750307887792587, -0.02780766226351261, 0.045465484261512756, 0.3175255060195923, -0.22455759346485138, 0.027112627401947975, 0.010110881179571152, 0.07282233983278275, 0.033718232065439224, 0.08991764485836029, 0.4886687695980072, -0.07441005110740662, 0.5138116478919983, 0.14878416061401367, -0.5015398263931274, -0.05005810782313347, 0.003187804017215967, -0.33580997586250305, 0.06199439615011215, 1.320925235748291, -0.007873635739088058, 0.014860439114272594, -0.20111927390098572]} +{"t": 6.1563, "q": [-0.1562836617231369, 0.008476095274090767, 0.021252937614917755, 0.31915321946144104, -0.162287637591362, -0.005621232092380524, -0.10750307887792587, -0.027782095596194267, 0.04515747353434563, 0.31741470098495483, -0.22459150850772858, 0.027112968266010284, 0.010418894700706005, 0.07235308736562729, 0.03404085710644722, 0.0911879688501358, 0.4948646128177643, -0.07442203909158707, 0.5140153765678406, 0.16157132387161255, -0.5015637874603271, -0.05008207634091377, 0.0024088292848318815, -0.3358459174633026, 0.06209027022123337, 1.3219798803329468, -0.007873635739088058, 0.014872423373162746, -0.20111927390098572]} +{"t": 6.1731, "q": [-0.15631774067878723, 0.008467573672533035, 0.021038668230175972, 0.31896573305130005, -0.1622747927904129, -0.005614128895103931, -0.10748603194952011, -0.027765052393078804, 0.04490302503108978, 0.31726130843162537, -0.22460831701755524, 0.02709883637726307, 0.010887610726058483, 0.07185367494821548, 0.03437396138906479, 0.09197892993688583, 0.500832736492157, -0.0742902159690857, 0.5143629312515259, 0.1729443520307541, -0.5015398263931274, -0.05005810782313347, 0.0016658073291182518, -0.3358459174633026, 0.06209027022123337, 1.3229146003723145, -0.007873635739088058, 0.014872423373162746, -0.20114323496818542]} +{"t": 6.1899, "q": [-0.15636035799980164, 0.008467573672533035, 0.02085118182003498, 0.31888052821159363, -0.16227048635482788, -0.005607056897133589, -0.10747750848531723, -0.027722440659999847, 0.04471553862094879, 0.3172016441822052, -0.22466301918029785, 0.027063574641942978, 0.011128664948046207, 0.07142235338687897, 0.03466155752539635, 0.0923384577035904, 0.5052908658981323, -0.07389473170042038, 0.514578640460968, 0.184772789478302, -0.5015877485275269, -0.04999818652868271, 0.0007430219557136297, -0.33583393692970276, 0.06210225448012352, 1.32399320602417, -0.007873635739088058, 0.014884407632052898, -0.20113125443458557]} +{"t": 6.2066, "q": [-0.15641148388385773, 0.008484616875648499, 0.020717263221740723, 0.3188379108905792, -0.1622619330883026, -0.005607016384601593, -0.10746046900749207, -0.027696875855326653, 0.04454144462943077, 0.3171505331993103, -0.22470112144947052, 0.027056798338890076, 0.011209016665816307, 0.07101373374462128, 0.034934017807245255, 0.09242234379053116, 0.5100007057189941, -0.07418235391378403, 0.5148782730102539, 0.19427627325057983, -0.5015278458595276, -0.04999818652868271, -0.00045540055725723505, -0.33580997586250305, 0.06215019151568413, 1.3250718116760254, -0.007873635739088058, 0.014884407632052898, -0.20113125443458557]} +{"t": 6.2236, "q": [-0.15640297532081604, 0.008501661941409111, 0.020744046196341515, 0.3187952935695648, -0.1622619330883026, -0.005607016384601593, -0.10746046900749207, -0.027637220919132233, 0.04454144462943077, 0.31709086894989014, -0.2247217297554016, 0.027006855234503746, 0.011142057366669178, 0.0706053078174591, 0.035196904093027115, 0.09254218637943268, 0.5125892758369446, -0.07383481413125992, 0.515321671962738, 0.20235364139080048, -0.5015637874603271, -0.04998620226979256, -0.0015699334908276796, -0.3356302082538605, 0.06215019151568413, 1.3258627653121948, -0.007897604256868362, 0.014884407632052898, -0.20110727846622467]} +{"t": 6.2403, "q": [-0.15639445185661316, 0.008501661941409111, 0.020770831033587456, 0.31877824664115906, -0.16226188838481903, -0.005592904519289732, -0.10746899247169495, -0.027594609186053276, 0.04459501430392265, 0.3170567750930786, -0.2247217297554016, 0.027006855234503746, 0.011048314161598682, 0.0702274963259697, 0.03542054817080498, 0.09248226881027222, 0.513152539730072, -0.07357116043567657, 0.5158250331878662, 0.2084895670413971, -0.5018754005432129, -0.04999818652868271, -0.0024927188642323017, -0.3355463147163391, 0.062138207256793976, 1.3264859914779663, -0.007873635739088058, 0.014884407632052898, -0.20109529793262482]} +{"t": 6.2571, "q": [-0.15643705427646637, 0.008476095274090767, 0.020744046196341515, 0.3187611997127533, -0.16226619482040405, -0.005599976051598787, -0.10747750848531723, -0.027603132650256157, 0.04459501430392265, 0.31698861718177795, -0.2247343808412552, 0.02699984237551689, 0.011008137837052345, 0.0697227343916893, 0.03561647981405258, 0.09235043823719025, 0.51218181848526, -0.072792187333107, 0.5158370137214661, 0.2100115567445755, -0.5024147033691406, -0.04998620226979256, -0.003043993143364787, -0.33543846011161804, 0.06215019151568413, 1.3269293308258057, -0.007873635739088058, 0.014908376149833202, -0.20113125443458557]} +{"t": 6.2739, "q": [-0.15643705427646637, 0.008476095274090767, 0.02069047838449478, 0.31869304180145264, -0.16226615011692047, -0.005585864186286926, -0.1074434220790863, -0.027603132650256157, 0.0445280522108078, 0.31694599986076355, -0.2247302234172821, 0.027006959542632103, 0.01118223275989294, 0.06920447945594788, 0.0357091948390007, 0.09183511883020401, 0.5096531510353088, -0.06942461431026459, 0.5158130526542664, 0.2093883901834488, -0.5028700828552246, -0.04987834393978119, -0.0031158984638750553, -0.33521077036857605, 0.062198128551244736, 1.3274446725845337, -0.007873635739088058, 0.014908376149833202, -0.20113125443458557]} +{"t": 6.2907, "q": [-0.1564711481332779, 0.008476095274090767, 0.020543167367577553, 0.3187015652656555, -0.16227039694786072, -0.0055788238532841206, -0.10738376528024673, -0.027603132650256157, 0.044434309005737305, 0.31693747639656067, -0.22473853826522827, 0.02699272520840168, 0.01126258447766304, 0.06838879734277725, 0.0356447696685791, 0.09131979942321777, 0.5056264400482178, -0.06572148948907852, 0.5155373811721802, 0.20714733004570007, -0.5035771727561951, -0.04975850135087967, -0.0032477250788360834, -0.3349231481552124, 0.062258049845695496, 1.3285951614379883, -0.007861651480197906, 0.014908376149833202, -0.20113125443458557]} +{"t": 6.3074, "q": [-0.15647967159748077, 0.008476095274090767, 0.02048959955573082, 0.3187185823917389, -0.16226188838481903, -0.005592904519289732, -0.10734115540981293, -0.027603132650256157, 0.044273607432842255, 0.3168863356113434, -0.22475117444992065, 0.026985691860318184, 0.011503638699650764, 0.06739531457424164, 0.035407666116952896, 0.09125987440347672, 0.49958640336990356, -0.061107564717531204, 0.5154415369033813, 0.20331238210201263, -0.5043321251869202, -0.04978246986865997, -0.0032477250788360834, -0.3344078063964844, 0.062198128551244736, 1.3297456502914429, -0.007873635739088058, 0.01489639189094305, -0.20111927390098572]} +{"t": 6.3244, "q": [-0.1564711481332779, 0.008459052070975304, 0.0203155055642128, 0.3187611997127533, -0.16226188838481903, -0.005592904519289732, -0.10717923939228058, -0.02761165425181389, 0.044112905859947205, 0.3168778121471405, -0.22475117444992065, 0.026985691860318184, 0.012039314024150372, 0.06640912592411041, 0.03518441319465637, 0.0911879688501358, 0.4932107925415039, -0.05733253434300423, 0.5153936147689819, 0.19549866020679474, -0.5049433708190918, -0.049746520817279816, -0.0031158984638750553, -0.33394044637680054, 0.06223408132791519, 1.3311957120895386, -0.007861651480197906, 0.01489639189094305, -0.20111927390098572]} +{"t": 6.3411, "q": [-0.156462624669075, 0.008450528606772423, 0.020208369940519333, 0.3187952935695648, -0.16226188838481903, -0.005592904519289732, -0.10713662952184677, -0.02762017585337162, 0.0439789853990078, 0.3168778121471405, -0.22475533187389374, 0.02697855792939663, 0.012347327545285225, 0.06522826850414276, 0.03493990749120712, 0.09043296426534653, 0.4848937392234802, -0.05072922632098198, 0.5153816342353821, 0.18486866354942322, -0.505686342716217, -0.04971056804060936, -0.0031278827227652073, -0.3332813084125519, 0.062246065586805344, 1.333077311515808, -0.007873635739088058, 0.01489639189094305, -0.20109529793262482]} +{"t": 6.3578, "q": [-0.15647967159748077, 0.008476095274090767, 0.0201548021286726, 0.3188890516757965, -0.1622575968503952, -0.005585832521319389, -0.10710253566503525, -0.02761165425181389, 0.04391202703118324, 0.3168863356113434, -0.22475101053714752, 0.026971355080604553, 0.012481247074902058, 0.06399327516555786, 0.034776169806718826, 0.08948621153831482, 0.4747191369533539, -0.04066247493028641, 0.515321671962738, 0.17402292788028717, -0.5063215494155884, -0.04972255229949951, -0.0032477250788360834, -0.3324543833732605, 0.06227003410458565, 1.3346352577209473, -0.007861651480197906, 0.014884407632052898, -0.20109529793262482]} +{"t": 6.3745, "q": [-0.1564711481332779, 0.008467573672533035, 0.020128019154071808, 0.31891459226608276, -0.1622447520494461, -0.005578720010817051, -0.10706844925880432, -0.027603132650256157, 0.04391202703118324, 0.316911906003952, -0.22474683821201324, 0.026978489011526108, 0.012789260596036911, 0.06271369755268097, 0.03457583114504814, 0.08839564770460129, 0.46489205956459045, -0.03189002349972725, 0.5152857303619385, 0.1607084572315216, -0.5067409873008728, -0.04960270971059799, -0.0032597093377262354, -0.3316274881362915, 0.06222209706902504, 1.3366365432739258, -0.007897604256868362, 0.014884407632052898, -0.20108331739902496]} +{"t": 6.3913, "q": [-0.15647967159748077, 0.008459052070975304, 0.020047668367624283, 0.3190765380859375, -0.16224899888038635, -0.0055716801434755325, -0.10694914311170578, -0.02762017585337162, 0.043791498988866806, 0.31699714064598083, -0.22474683821201324, 0.026978489011526108, 0.013016922399401665, 0.06151678413152695, 0.03432856872677803, 0.08750881254673004, 0.4550889730453491, -0.022841934114694595, 0.5153096914291382, 0.14737001061439514, -0.5075079798698425, -0.049626678228378296, -0.003367567202076316, -0.33059683442115784, 0.06223408132791519, 1.3396565914154053, -0.007897604256868362, 0.014872423373162746, -0.2010713368654251]} +{"t": 6.408, "q": [-0.15647967159748077, 0.008442007005214691, 0.020034275949001312, 0.31914469599723816, -0.16224044561386108, -0.005571648478507996, -0.10691504925489426, -0.027628697454929352, 0.04380489140748978, 0.31698861718177795, -0.22473853826522827, 0.02699272520840168, 0.013418679125607014, 0.06029779464006424, 0.034019943326711655, 0.08682571351528168, 0.4457892179489136, -0.015255918726325035, 0.5152857303619385, 0.1356734186410904, -0.5085386037826538, -0.04959072545170784, -0.003463441040366888, -0.3296380937099457, 0.062246065586805344, 1.341610074043274, -0.007897604256868362, 0.014872423373162746, -0.2010713368654251]} +{"t": 6.4248, "q": [-0.1564711481332779, 0.008450528606772423, 0.020034275949001312, 0.3192128837108612, -0.16221892833709717, -0.00552216824144125, -0.10691504925489426, -0.027654264122247696, 0.043791498988866806, 0.31708234548568726, -0.22473420202732086, 0.02698550373315811, 0.013592774048447609, 0.05913035199046135, 0.03378957882523537, 0.08668190240859985, 0.43678906559944153, -0.008904279209673405, 0.5152018666267395, 0.12237092107534409, -0.5103122591972351, -0.049674615263938904, -0.00347542529925704, -0.3284876048564911, 0.06227003410458565, 1.3433477878570557, -0.007897604256868362, 0.014872423373162746, -0.20105934143066406]} +{"t": 6.4415, "q": [-0.15647967159748077, 0.008399397134780884, 0.02002088353037834, 0.3192555010318756, -0.1622103750705719, -0.005522127728909254, -0.10689800977706909, -0.02767983078956604, 0.04381828382611275, 0.317099392414093, -0.22472988069057465, 0.026978300884366035, 0.013820436783134937, 0.05799082666635513, 0.033688124269247055, 0.08671785145998001, 0.4256197512149811, 0.00033555831760168076, 0.5142790675163269, 0.10807374119758606, -0.5128649473190308, -0.049734536558389664, -0.003463441040366888, -0.3273611068725586, 0.062317971140146255, 1.3443783521652222, -0.007873635739088058, 0.014848454855382442, -0.2010713368654251]} +{"t": 6.4583, "q": [-0.1564711481332779, 0.00843348540365696, 0.020034275949001312, 0.3193577527999878, -0.16217182576656342, -0.005500817205756903, -0.10682982951402664, -0.027696875855326653, 0.043778106570243835, 0.3172954022884369, -0.22472988069057465, 0.026978300884366035, 0.014168625697493553, 0.05686429142951965, 0.03375605493783951, 0.08619055151939392, 0.4156009554862976, 0.006914897821843624, 0.5138476490974426, 0.09453156590461731, -0.5155134201049805, -0.04975850135087967, -0.0034394727554172277, -0.32627052068710327, 0.0622820183634758, 1.3455288410186768, -0.007873635739088058, 0.014848454855382442, -0.2010713368654251]} +{"t": 6.475, "q": [-0.1564711481332779, 0.008450528606772423, 0.02002088353037834, 0.3194003701210022, -0.16212455928325653, -0.005423000082373619, -0.10682130604982376, -0.027713919058442116, 0.043751321732997894, 0.31736359000205994, -0.22472572326660156, 0.026985418051481247, 0.014637341722846031, 0.05588103458285332, 0.03375683352351189, 0.08593887835741043, 0.4067206382751465, 0.012583436444401741, 0.5136559009552002, 0.08064185082912445, -0.5198397636413574, -0.0499262809753418, -0.0035353463608771563, -0.3253357708454132, 0.0622820183634758, 1.346859097480774, -0.007861651480197906, 0.01483647059649229, -0.2010713368654251]} +{"t": 6.4918, "q": [-0.156462624669075, 0.00843348540365696, 0.020034275949001312, 0.3194600045681, -0.16207727789878845, -0.0053451829589903355, -0.1068042665719986, -0.027696875855326653, 0.043764714151620865, 0.3173806369304657, -0.22472572326660156, 0.026985418051481247, 0.014918571338057518, 0.05506153777241707, 0.0338747575879097, 0.0860946774482727, 0.3976845443248749, 0.01734117418527603, 0.5129488110542297, 0.06717158108949661, -0.5241540670394897, -0.05001017078757286, -0.003906857222318649, -0.3245448172092438, 0.0622820183634758, 1.3478418588638306, -0.007861651480197906, 0.014848454855382442, -0.2010713368654251]} +{"t": 6.5086, "q": [-0.15644557774066925, 0.008407918736338615, 0.01999410055577755, 0.3194515109062195, -0.16201283037662506, -0.005239078775048256, -0.10679574310779572, -0.027705397456884384, 0.04373793303966522, 0.31744879484176636, -0.22471724450588226, 0.026985332369804382, 0.015507815405726433, 0.054534345865249634, 0.03403417393565178, 0.0860707089304924, 0.38885214924812317, 0.02100834622979164, 0.512037992477417, 0.05469600483775139, -0.5270782113075256, -0.05020191892981529, -0.004254399798810482, -0.3241133689880371, 0.06227003410458565, 1.348920464515686, -0.007837682962417603, 0.014848454855382442, -0.2010713368654251]} +{"t": 6.5253, "q": [-0.15645410120487213, 0.00837383046746254, 0.01999410055577755, 0.3194515109062195, -0.16196554899215698, -0.005161261651664972, -0.10679574310779572, -0.02774800732731819, 0.04368436336517334, 0.3175169825553894, -0.22472140192985535, 0.02697821520268917, 0.016525600105524063, 0.0543762631714344, 0.03407234326004982, 0.08591490983963013, 0.3786296248435974, 0.024819331243634224, 0.5109714269638062, 0.03910452872514725, -0.5289717316627502, -0.05035771429538727, -0.004685832187533379, -0.3239096403121948, 0.06229400262236595, 1.350574254989624, -0.007861651480197906, 0.01483647059649229, -0.2010713368654251]} +{"t": 6.5421, "q": [-0.15645410120487213, 0.00837383046746254, 0.019927140325307846, 0.3194344639778137, -0.16194844245910645, -0.0051611983217298985, -0.10682130604982376, -0.02774800732731819, 0.043617404997348785, 0.3175169825553894, -0.22472140192985535, 0.02697821520268917, 0.018052276223897934, 0.05439138785004616, 0.034062404185533524, 0.08536363393068314, 0.3683231770992279, 0.027455860748887062, 0.5103602409362793, 0.023992419242858887, -0.5299065113067627, -0.050405651330947876, -0.005380917340517044, -0.3238856792449951, 0.0622820183634758, 1.3531149625778198, -0.007837682962417603, 0.014824486337602139, -0.20108331739902496]} +{"t": 6.5589, "q": [-0.1564711481332779, 0.008399397134780884, 0.0196726955473423, 0.31932365894317627, -0.1619398146867752, -0.005132933612912893, -0.10683835297822952, -0.027756530791521072, 0.04337634891271591, 0.31745731830596924, -0.22474251687526703, 0.02697126939892769, 0.019619127735495567, 0.05447425693273544, 0.03403610736131668, 0.0851239487528801, 0.3600181043148041, 0.02907373011112213, 0.5098568797111511, 0.008616657927632332, -0.5305296778678894, -0.05071724206209183, -0.00701077189296484, -0.3238377273082733, 0.0622820183634758, 1.3566862344741821, -0.007861651480197906, 0.014812502078711987, -0.20105934143066406]} +{"t": 6.5757, "q": [-0.156462624669075, 0.008416440337896347, 0.019431641325354576, 0.31915321946144104, -0.161918506026268, -0.005154022481292486, -0.10686391592025757, -0.02767983078956604, 0.04314868897199631, 0.3174317479133606, -0.22477179765701294, 0.026935767382383347, 0.021105628460645676, 0.054594941437244415, 0.033984966576099396, 0.08531569689512253, 0.35283955931663513, 0.03139866888523102, 0.5089940428733826, -0.004673847928643227, -0.5312846899032593, -0.05108875036239624, -0.009371664375066757, -0.3237658143043518, 0.062258049845695496, 1.360209584236145, -0.00782569870352745, 0.014824486337602139, -0.2010713368654251]} +{"t": 6.5924, "q": [-0.1564200073480606, 0.008407918736338615, 0.019445031881332397, 0.3190339207649231, -0.16190144419670105, -0.0051680803298950195, -0.1069406196475029, -0.02739007957279682, 0.04313529655337334, 0.3173806369304657, -0.2248760610818863, 0.026786422356963158, 0.023489385843276978, 0.0548207126557827, 0.03393026068806648, 0.08555538207292557, 0.3458887040615082, 0.03537743166089058, 0.5076277852058411, -0.01967809721827507, -0.5324711203575134, -0.051412325352430344, -0.011444934643805027, -0.3237418532371521, 0.0622820183634758, 1.3625704050064087, -0.007861651480197906, 0.014884407632052898, -0.2010713368654251]} +{"t": 6.6094, "q": [-0.15634331107139587, 0.008424961939454079, 0.019445031881332397, 0.3188890516757965, -0.16190999746322632, -0.0051681119948625565, -0.10697470605373383, -0.026802053675055504, 0.04314868897199631, 0.31735506653785706, -0.2250506579875946, 0.026487404480576515, 0.02623472362756729, 0.05512238293886185, 0.03380655497312546, 0.08545950800180435, 0.33954906463623047, 0.03927230462431908, 0.505686342716217, -0.035473305732011795, -0.533621609210968, -0.05167597904801369, -0.012631373479962349, -0.323669970035553, 0.0622820183634758, 1.3637689352035522, -0.007861651480197906, 0.01483647059649229, -0.20105934143066406]} +{"t": 6.6261, "q": [-0.15630923211574554, 0.008424961939454079, 0.019270937889814377, 0.3187611997127533, -0.16191428899765015, -0.005175192374736071, -0.10695765912532806, -0.026214027777314186, 0.0430147685110569, 0.3173891305923462, -0.2252500206232071, 0.02615995891392231, 0.028966670855879784, 0.0553722158074379, 0.03362323343753815, 0.08563927561044693, 0.3337486982345581, 0.043898217380046844, 0.5029539465904236, -0.05195161700248718, -0.5342926979064941, -0.05192764848470688, -0.013338442891836166, -0.32359805703163147, 0.06229400262236595, 1.3648834228515625, -0.007861651480197906, 0.014848454855382442, -0.20108331739902496]} +{"t": 6.6429, "q": [-0.1562836617231369, 0.008459052070975304, 0.01882900483906269, 0.318667471408844, -0.16189298033714294, -0.005196281708776951, -0.10692357271909714, -0.025719745084643364, 0.042599618434906006, 0.31745731830596924, -0.2254527360200882, 0.02583964355289936, 0.031029021367430687, 0.05562160536646843, 0.03347770497202873, 0.08595086634159088, 0.3299257159233093, 0.046738479286432266, 0.5010724663734436, -0.06796254217624664, -0.5348679423332214, -0.052203286439180374, -0.014321149326860905, -0.32352614402770996, 0.0622820183634758, 1.3652548789978027, -0.007873635739088058, 0.014872423373162746, -0.20103538036346436]} +{"t": 6.6598, "q": [-0.15630070865154266, 0.008476095274090767, 0.018373681232333183, 0.31860780715942383, -0.16184616088867188, -0.005259629804641008, -0.10693209618330002, -0.02520841732621193, 0.042278215289115906, 0.3175510764122009, -0.2255977988243103, 0.025633370503783226, 0.032180726528167725, 0.05579546093940735, 0.033372554928064346, 0.08626244962215424, 0.32714536786079407, 0.04821253940463066, 0.4982801079750061, -0.08472847193479538, -0.5359705090522766, -0.05259876325726509, -0.015543540008366108, -0.32357409596443176, 0.0622820183634758, 1.3652548789978027, -0.007861651480197906, 0.014872423373162746, -0.2009994238615036]} +{"t": 6.6766, "q": [-0.1563262641429901, 0.008501661941409111, 0.01811923459172249, 0.31854814291000366, -0.16180796921253204, -0.005351250991225243, -0.10690653324127197, -0.024748222902417183, 0.042077336460351944, 0.3175255060195923, -0.22578366100788116, 0.025312907993793488, 0.03290388733148575, 0.056014593690633774, 0.0332469567656517, 0.08646618574857712, 0.3239455819129944, 0.04998620226979256, 0.49432530999183655, -0.10115884244441986, -0.5378280878067017, -0.0529463067650795, -0.016706010326743126, -0.32357409596443176, 0.062246065586805344, 1.3653148412704468, -0.007873635739088058, 0.014872423373162746, -0.20091553032398224]} +{"t": 6.6933, "q": [-0.15629218518733978, 0.008697669953107834, 0.01765051856637001, 0.3184714615345001, -0.1617738902568817, -0.0053934697061777115, -0.10690653324127197, -0.024296551942825317, 0.04184967279434204, 0.3175766170024872, -0.22600290179252625, 0.024964096024632454, 0.033211901783943176, 0.05620391294360161, 0.033103495836257935, 0.08669388294219971, 0.3196192979812622, 0.0526467002928257, 0.4913652241230011, -0.12016582489013672, -0.5405005216598511, -0.05346162989735603, -0.01770070008933544, -0.3235620856285095, 0.062317971140146255, 1.3653627634048462, -0.007873635739088058, 0.014860439114272594, -0.2007477581501007]} +{"t": 6.7101, "q": [-0.15629218518733978, 0.008842546492815018, 0.017248760908842087, 0.31850555539131165, -0.1617441326379776, -0.005442759953439236, -0.10688948631286621, -0.024049410596489906, 0.041568443179130554, 0.31767037510871887, -0.22612713277339935, 0.024779099971055984, 0.03314494341611862, 0.05631737411022186, 0.03302875906229019, 0.08683769404888153, 0.31466978788375854, 0.05500759556889534, 0.4897473454475403, -0.1375189870595932, -0.5416390299797058, -0.0541447289288044, -0.01858753338456154, -0.32357409596443176, 0.06235392391681671, 1.3653987646102905, -0.007897604256868362, 0.014872423373162746, -0.20061592757701874]} +{"t": 6.7269, "q": [-0.15629218518733978, 0.008987423032522202, 0.017021099105477333, 0.31851404905319214, -0.16171860694885254, -0.005485018715262413, -0.10690653324127197, -0.023802269250154495, 0.04151487722992897, 0.31773003935813904, -0.22618496417999268, 0.0246793944388628, 0.03309137374162674, 0.05633239448070526, 0.033028244972229004, 0.08712531626224518, 0.30992403626441956, 0.0559663325548172, 0.48828527331352234, -0.15662184357643127, -0.5425258874893188, -0.05548696219921112, -0.019282618537545204, -0.32355010509490967, 0.062437813729047775, 1.3653987646102905, -0.00788561999797821, 0.014872423373162746, -0.20054402947425842]} +{"t": 6.7436, "q": [-0.15629218518733978, 0.009140821173787117, 0.017021099105477333, 0.31850555539131165, -0.16169729828834534, -0.005506116896867752, -0.10692357271909714, -0.02365739271044731, 0.04154166206717491, 0.31772151589393616, -0.2262178361415863, 0.024608099833130836, 0.033024415373802185, 0.056324828416109085, 0.03303322568535805, 0.08732905238866806, 0.30443528294563293, 0.056661415845155716, 0.4868711233139038, -0.1771627962589264, -0.542226254940033, -0.05805158615112305, -0.019714049994945526, -0.32352614402770996, 0.06248575076460838, 1.3653987646102905, -0.007897604256868362, 0.014884407632052898, -0.20052005350589752]} +{"t": 6.7604, "q": [-0.15630070865154266, 0.00915786437690258, 0.017021099105477333, 0.31855666637420654, -0.16169309616088867, -0.005527269095182419, -0.10692357271909714, -0.023614780977368355, 0.041568443179130554, 0.31773003935813904, -0.22623038291931152, 0.024601062759757042, 0.03295745700597763, 0.05629468336701393, 0.03304370492696762, 0.0875447690486908, 0.29828736186027527, 0.05754825100302696, 0.4846780300140381, -0.19809924066066742, -0.5416629910469055, -0.06174272671341896, -0.019893813878297806, -0.3234422504901886, 0.06242582947015762, 1.3653987646102905, -0.007897604256868362, 0.014872423373162746, -0.20052005350589752]} +{"t": 6.7771, "q": [-0.156334787607193, 0.009055599570274353, 0.017101449891924858, 0.31854814291000366, -0.16170158982276917, -0.005513188429176807, -0.10690653324127197, -0.023691480979323387, 0.04164879396557808, 0.31772151589393616, -0.22623038291931152, 0.024601062759757042, 0.03291727975010872, 0.05627966672182083, 0.033044226467609406, 0.08764063566923141, 0.29164811968803406, 0.05784785374999046, 0.482257217168808, -0.21760955452919006, -0.5409559607505798, -0.06471481919288635, -0.019953735172748566, -0.32345423102378845, 0.06244979798793793, 1.36544668674469, -0.00788561999797821, 0.014872423373162746, -0.20055601000785828]} +{"t": 6.7938, "q": [-0.15636035799980164, 0.008893679827451706, 0.017235370352864265, 0.3185651898384094, -0.16170164942741394, -0.005527309607714415, -0.10687243938446045, -0.02383635751903057, 0.041755929589271545, 0.3177385628223419, -0.22622212767601013, 0.024615300819277763, 0.032850321382284164, 0.056249409914016724, 0.03306415677070618, 0.08785635232925415, 0.2838823199272156, 0.057500313967466354, 0.4798364043235779, -0.23907330632209778, -0.5401650071144104, -0.06828611344099045, -0.019953735172748566, -0.32343026995658875, 0.06240186095237732, 1.3654825687408447, -0.007873635739088058, 0.014860439114272594, -0.20060394704341888]} +{"t": 6.8107, "q": [-0.15636035799980164, 0.008689148351550102, 0.017570167779922485, 0.31854814291000366, -0.16171860694885254, -0.005485018715262413, -0.10685539990663528, -0.024083498865365982, 0.04198359325528145, 0.3177044689655304, -0.22620940208435059, 0.02460801973938942, 0.03281014412641525, 0.056181665509939194, 0.033080652356147766, 0.08798818290233612, 0.2746424973011017, 0.05733253434300423, 0.4759654998779297, -0.25847578048706055, -0.5389905571937561, -0.07109042257070541, -0.020085562020540237, -0.32340630888938904, 0.06238987669348717, 1.3655306100845337, -0.007873635739088058, 0.014860439114272594, -0.2006518840789795]} +{"t": 6.8274, "q": [-0.15635183453559875, 0.00849314033985138, 0.01779782958328724, 0.31859076023101807, -0.16171860694885254, -0.005485018715262413, -0.10679574310779572, -0.024526648223400116, 0.042117513716220856, 0.31768742203712463, -0.2262052744626999, 0.02461513876914978, 0.03281014412641525, 0.05609879642724991, 0.03310711681842804, 0.08807206898927689, 0.26398852467536926, 0.05706888064742088, 0.4715912342071533, -0.28131771087646484, -0.536845326423645, -0.07299591600894928, -0.020253339782357216, -0.32340630888938904, 0.06246178224682808, 1.365518569946289, -0.007861651480197906, 0.014860439114272594, -0.2007237821817398]} +{"t": 6.8442, "q": [-0.15636035799980164, 0.008501661941409111, 0.017864787951111794, 0.31859076023101807, -0.1617228239774704, -0.005463857669383287, -0.10673608630895615, -0.025191372260451317, 0.042104121297597885, 0.31773003935813904, -0.2261970192193985, 0.0246293768286705, 0.03266283497214317, 0.05602426081895828, 0.03306245803833008, 0.08587896078824997, 0.2528911232948303, 0.056721337139606476, 0.4691224992275238, -0.3031170070171356, -0.5322434306144714, -0.07504522055387497, -0.020672788843512535, -0.32338234782218933, 0.06236590817570686, 1.365518569946289, -0.007861651480197906, 0.014872423373162746, -0.2007477581501007]} +{"t": 6.8609, "q": [-0.1563262641429901, 0.008501661941409111, 0.01811923459172249, 0.31863337755203247, -0.16174408793449402, -0.005428647622466087, -0.10673608630895615, -0.02569417841732502, 0.04234517365694046, 0.3177641034126282, -0.22617636620998383, 0.024664992466568947, 0.032167334109544754, 0.055881697684526443, 0.03305304795503616, 0.08361393958330154, 0.24299214780330658, 0.056541573256254196, 0.4662223160266876, -0.32412534952163696, -0.5258678197860718, -0.07685483992099762, -0.021631525829434395, -0.32338234782218933, 0.06246178224682808, 1.3654946088790894, -0.007861651480197906, 0.014860439114272594, -0.2007477581501007]} +{"t": 6.8777, "q": [-0.156334787607193, 0.008476095274090767, 0.01846742443740368, 0.3186759948730469, -0.16179512441158295, -0.005344138480722904, -0.10672756284475327, -0.02617141604423523, 0.04257283732295036, 0.31773003935813904, -0.22616811096668243, 0.02467923052608967, 0.03175218403339386, 0.05563376098871231, 0.03306606411933899, 0.0815766230225563, 0.23226626217365265, 0.05611014366149902, 0.46269896626472473, -0.34549322724342346, -0.5211459994316101, -0.07969509810209274, -0.022518359124660492, -0.32340630888938904, 0.06242582947015762, 1.365458607673645, -0.007837682962417603, 0.014860439114272594, -0.2007477581501007]} +{"t": 6.8944, "q": [-0.156334787607193, 0.008442007005214691, 0.01862812601029873, 0.31868451833724976, -0.16180366277694702, -0.005344170145690441, -0.10670199990272522, -0.02671683207154274, 0.04273353889584541, 0.3177556097507477, -0.22615158557891846, 0.024707727134227753, 0.031685225665569305, 0.05525827780365944, 0.033069152384996414, 0.07959922403097153, 0.22219951450824738, 0.055642757564783096, 0.4578453302383423, -0.36678919196128845, -0.5181379914283752, -0.08321846276521683, -0.0228659026324749, -0.3234182894229889, 0.062497735023498535, 1.3654346466064453, -0.00782569870352745, 0.014848454855382442, -0.20077171921730042]} +{"t": 6.9112, "q": [-0.1563262641429901, 0.008407918736338615, 0.018681693822145462, 0.31868451833724976, -0.16182063519954681, -0.005301888566464186, -0.10665086656808853, -0.02739007957279682, 0.04267997294664383, 0.3177981972694397, -0.22612664103507996, 0.02473612315952778, 0.031658440828323364, 0.054822180420160294, 0.033121563494205475, 0.07811318337917328, 0.21170133352279663, 0.05507949739694595, 0.4513978362083435, -0.3878215253353119, -0.5152617692947388, -0.08655007183551788, -0.023033680394291878, -0.3234422504901886, 0.062437813729047775, 1.3654346466064453, -0.007837682962417603, 0.014848454855382442, -0.20080767571926117]} +{"t": 6.9279, "q": [-0.1563262641429901, 0.008228953927755356, 0.01866830326616764, 0.3186759948730469, -0.16182056069374084, -0.0052736555226147175, -0.10654859989881516, -0.027884362265467644, 0.04262640327215195, 0.31778115034103394, -0.22612249851226807, 0.02474326081573963, 0.031832534819841385, 0.054431989789009094, 0.033096764236688614, 0.07624363899230957, 0.20139490067958832, 0.05463608354330063, 0.44522595405578613, -0.4100402593612671, -0.5113189816474915, -0.08952216058969498, -0.023033680394291878, -0.32338234782218933, 0.06246178224682808, 1.36544668674469, -0.007837682962417603, 0.014848454855382442, -0.20079569518566132]} +{"t": 6.9448, "q": [-0.15631774067878723, 0.0079562459141016, 0.018681693822145462, 0.3187526762485504, -0.16183756291866302, -0.005245485808700323, -0.1064378172159195, -0.028353078290820122, 0.042586229741573334, 0.31786638498306274, -0.2261185348033905, 0.02476469986140728, 0.032020021229982376, 0.054281964898109436, 0.033082861453294754, 0.07443401962518692, 0.192562535405159, 0.05451624095439911, 0.43932971358299255, -0.4304374158382416, -0.5063215494155884, -0.09171527624130249, -0.023213444277644157, -0.3233943283557892, 0.06247376650571823, 1.3654346466064453, -0.007837682962417603, 0.01483647059649229, -0.20081965625286102]} +{"t": 6.9615, "q": [-0.156334787607193, 0.007657972630113363, 0.01866830326616764, 0.31877824664115906, -0.16183322668075562, -0.005224293097853661, -0.10631850361824036, -0.028907015919685364, 0.04250587522983551, 0.31790047883987427, -0.2261185348033905, 0.02476469986140728, 0.03226107731461525, 0.05419928580522537, 0.03309035301208496, 0.07255250215530396, 0.18402975797653198, 0.05442036688327789, 0.43321776390075684, -0.4507027566432953, -0.5009885430335999, -0.09276989102363586, -0.023453129455447197, -0.32340630888938904, 0.062437813729047775, 1.3654346466064453, -0.007837682962417603, 0.01483647059649229, -0.20083165168762207]} +{"t": 6.9782, "q": [-0.15635183453559875, 0.007274477276951075, 0.018587950617074966, 0.3187611997127533, -0.16178594529628754, -0.005146475974470377, -0.1063014566898346, -0.029409820213913918, 0.042412132024765015, 0.31796011328697205, -0.22610598802566528, 0.024771736934781075, 0.032368212938308716, 0.05420684814453125, 0.03308537229895592, 0.0707428827881813, 0.17676731944084167, 0.05392901226878166, 0.4285798668861389, -0.4717470407485962, -0.49704575538635254, -0.09363275021314621, -0.023860592395067215, -0.32370591163635254, 0.06247376650571823, 1.36544668674469, -0.007837682962417603, 0.014848454855382442, -0.20084363222122192]} +{"t": 6.995, "q": [-0.1563262641429901, 0.00703585846349597, 0.018614735454320908, 0.3187271058559418, -0.1616440862417221, -0.004898921586573124, -0.10627589374780655, -0.02973366156220436, 0.04238535091280937, 0.3181220591068268, -0.22610631585121155, 0.02480037696659565, 0.032341428101062775, 0.054207056760787964, 0.03306644409894943, 0.06938866525888443, 0.1702958345413208, 0.053893059492111206, 0.4239180088043213, -0.4890642464160919, -0.4920123815536499, -0.09412410855293274, -0.024447819218039513, -0.32414931058883667, 0.06246178224682808, 1.3654346466064453, -0.007813714444637299, 0.014848454855382442, -0.20085561275482178]} +{"t": 7.0117, "q": [-0.15631774067878723, 0.006865415256470442, 0.018614735454320908, 0.31869304180145264, -0.16151928901672363, -0.004637309815734625, -0.10627589374780655, -0.030006367713212967, 0.0423719584941864, 0.3182584047317505, -0.22609804570674896, 0.024814633652567863, 0.032328035682439804, 0.05422964319586754, 0.033060960471630096, 0.06848984956741333, 0.16461531817913055, 0.05368933081626892, 0.41768619418144226, -0.5080112814903259, -0.48488175868988037, -0.0948072075843811, -0.024951156228780746, -0.32460471987724304, 0.06244979798793793, 1.3654227256774902, -0.00782569870352745, 0.014860439114272594, -0.20085561275482178]} +{"t": 7.0285, "q": [-0.15630923211574554, 0.006763150449842215, 0.01862812601029873, 0.31869304180145264, -0.1614333838224411, -0.00450994074344635, -0.10627589374780655, -0.030168289318680763, 0.04230500012636185, 0.31836065649986267, -0.22609804570674896, 0.024814633652567863, 0.032328035682439804, 0.05422964319586754, 0.033060960471630096, 0.06777079403400421, 0.15984559059143066, 0.05367734655737877, 0.4111787676811218, -0.5261673927307129, -0.47906941175460815, -0.0953584834933281, -0.025226794183254242, -0.3248923420906067, 0.06244979798793793, 1.3654346466064453, -0.007837682962417603, 0.014848454855382442, -0.20086759328842163]} +{"t": 7.0454, "q": [-0.15631774067878723, 0.006677928846329451, 0.01862812601029873, 0.3187015652656555, -0.16137322783470154, -0.004410908091813326, -0.10628441721200943, -0.030227944254875183, 0.042291607707738876, 0.31842032074928284, -0.2260940819978714, 0.02483607456088066, 0.032354820519685745, 0.054222289472818375, 0.033047016710042953, 0.06670419871807098, 0.1547163426876068, 0.05348559841513634, 0.4050907790660858, -0.5466125011444092, -0.4742158055305481, -0.09607753157615662, -0.025550367310643196, -0.32507210969924927, 0.06250971555709839, 1.36544668674469, -0.00782569870352745, 0.014848454855382442, -0.20086759328842163]} +{"t": 7.0621, "q": [-0.1562836617231369, 0.006669407244771719, 0.018587950617074966, 0.3187185823917389, -0.1612701416015625, -0.004255242180079222, -0.10629294067621231, -0.030244987457990646, 0.042291607707738876, 0.31855666637420654, -0.22608582675457, 0.024850312620401382, 0.032381605356931686, 0.05423741415143013, 0.03303705155849457, 0.06570950895547867, 0.15083345770835876, 0.05338972434401512, 0.399098664522171, -0.5652719140052795, -0.46871504187583923, -0.09648499637842178, -0.02582600526511669, -0.3251320421695709, 0.06254567205905914, 1.365506649017334, -0.00782569870352745, 0.014872423373162746, -0.20086759328842163]} +{"t": 7.0789, "q": [-0.15625809133052826, 0.006660884711891413, 0.018534382805228233, 0.3187526762485504, -0.16115853190422058, -0.004113665781915188, -0.10629294067621231, -0.030244987457990646, 0.04221125692129135, 0.318710058927536, -0.22607724368572235, 0.02483591064810753, 0.03239499405026436, 0.05427513271570206, 0.033021602779626846, 0.06433132290840149, 0.14665096998214722, 0.05346162989735603, 0.39087748527526855, -0.5861124992370605, -0.46166831254959106, -0.09686849266290665, -0.025957832112908363, -0.32520392537117004, 0.06252170354127884, 1.3655664920806885, -0.007861651480197906, 0.014884407632052898, -0.20084363222122192]} +{"t": 7.0956, "q": [-0.15626661479473114, 0.006677928846329451, 0.018373681232333183, 0.3187611997127533, -0.16110701858997345, -0.004042897839099169, -0.10626737028360367, -0.030227944254875183, 0.04202376678586006, 0.3188123404979706, -0.22608566284179688, 0.024835992604494095, 0.03258248046040535, 0.054328080266714096, 0.03298672288656235, 0.062078285962343216, 0.1432833969593048, 0.054803863167762756, 0.3844539523124695, -0.6063178777694702, -0.45537659525871277, -0.09700031578540802, -0.025957832112908363, -0.32527583837509155, 0.062437813729047775, 1.3656504154205322, -0.007861651480197906, 0.014872423373162746, -0.20085561275482178]} +{"t": 7.1123, "q": [-0.1562410444021225, 0.0067375837825238705, 0.01814601942896843, 0.31878677010536194, -0.16100835800170898, -0.003936658147722483, -0.10628441721200943, -0.030176810920238495, 0.0418228916823864, 0.3191276490688324, -0.22608582675457, 0.024850312620401382, 0.03271640092134476, 0.05439583957195282, 0.03297026827931404, 0.05965747311711311, 0.14065885543823242, 0.05565474182367325, 0.37861761450767517, -0.6294234991073608, -0.4481261372566223, -0.09729992598295212, -0.026029737666249275, -0.32534775137901306, 0.06247376650571823, 1.3656623363494873, -0.007861651480197906, 0.014860439114272594, -0.20085561275482178]} +{"t": 7.1291, "q": [-0.15623252093791962, 0.0067801945842802525, 0.018052276223897934, 0.3188379108905792, -0.16093116998672485, -0.003865786362439394, -0.1063014566898346, -0.030057501047849655, 0.0417291484773159, 0.3193918466567993, -0.22608582675457, 0.024850312620401382, 0.0327431857585907, 0.054395947605371475, 0.03296080604195595, 0.05789579078555107, 0.13829796016216278, 0.055942364037036896, 0.37195441126823425, -0.6496049165725708, -0.4387664496898651, -0.09735984355211258, -0.026281405240297318, -0.32537171244621277, 0.06241384521126747, 1.3656623363494873, -0.007813714444637299, 0.014872423373162746, -0.20085561275482178]} +{"t": 7.1458, "q": [-0.15618139505386353, 0.006848371122032404, 0.018025491386651993, 0.31892311573028564, -0.16086263954639435, -0.0038231881335377693, -0.10631850361824036, -0.029938191175460815, 0.04168897122144699, 0.3194429874420166, -0.22607740759849548, 0.024850230664014816, 0.03275657817721367, 0.05441853404045105, 0.03295532241463661, 0.05620601773262024, 0.13621270656585693, 0.05573863163590431, 0.36589038372039795, -0.6688635945320129, -0.4318994879722595, -0.09746770560741425, -0.026521090418100357, -0.3254436254501343, 0.0626055896282196, 1.3656623363494873, -0.007837682962417603, 0.014884407632052898, -0.20084363222122192]} +{"t": 7.1625, "q": [-0.15608765184879303, 0.006959159392863512, 0.018012098968029022, 0.3189913034439087, -0.16082417964935303, -0.003830110654234886, -0.10633555054664612, -0.029767749831080437, 0.041742537170648575, 0.3196304738521576, -0.2260899543762207, 0.02484319359064102, 0.032703008502721786, 0.054433658719062805, 0.032945357263088226, 0.05358147248625755, 0.13344435393810272, 0.05607419088482857, 0.3594188988208771, -0.6883259415626526, -0.4251883327960968, -0.09746770560741425, -0.0267847441136837, -0.32552751898765564, 0.06261757761240005, 1.3656623363494873, -0.007813714444637299, 0.014872423373162746, -0.20087958872318268]} +{"t": 7.1794, "q": [-0.15603651106357574, 0.006993247661739588, 0.01797192357480526, 0.3191617429256439, -0.16080708801746368, -0.0038300384767353535, -0.10629294067621231, -0.02965696156024933, 0.04171575605869293, 0.3198179602622986, -0.2260899543762207, 0.02484319359064102, 0.032703008502721786, 0.05450940504670143, 0.032886069267988205, 0.05066930502653122, 0.13029249012470245, 0.05764412507414818, 0.3525998890399933, -0.709873616695404, -0.41584062576293945, -0.09746770560741425, -0.026856649667024612, -0.3255874216556549, 0.06262955814599991, 1.365686297416687, -0.00782569870352745, 0.014872423373162746, -0.20085561275482178]} +{"t": 7.1962, "q": [-0.15599390864372253, 0.0069847251288592815, 0.017945140600204468, 0.31923845410346985, -0.16080282628536224, -0.003837078809738159, -0.1063014566898346, -0.029529130086302757, 0.04170236364006996, 0.3199116885662079, -0.22608582675457, 0.024850312620401382, 0.0326494425535202, 0.054622966796159744, 0.03280186653137207, 0.04828444495797157, 0.12736834585666656, 0.05965747311711311, 0.3468354642391205, -0.7291801571846008, -0.4082905650138855, -0.09746770560741425, -0.027000458911061287, -0.32575520873069763, 0.0626055896282196, 1.3657103776931763, -0.007837682962417603, 0.014884407632052898, -0.20085561275482178]} +{"t": 7.2129, "q": [-0.1559172123670578, 0.007018813397735357, 0.01798531599342823, 0.3192980885505676, -0.16078998148441315, -0.0038299839943647385, -0.10631850361824036, -0.029384253546595573, 0.04178271442651749, 0.31993725895881653, -0.22608153522014618, 0.024843111634254456, 0.03240838646888733, 0.054736532270908356, 0.032717667520046234, 0.04682236909866333, 0.12446816265583038, 0.061467092484235764, 0.34012430906295776, -0.7510034441947937, -0.3991106450557709, -0.0974796861410141, -0.027240144088864326, -0.3258630633354187, 0.06248575076460838, 1.365746259689331, -0.00782569870352745, 0.014884407632052898, -0.20086759328842163]} +{"t": 7.2297, "q": [-0.1558745950460434, 0.007018813397735357, 0.018012098968029022, 0.3193492293357849, -0.16079002618789673, -0.003844096092507243, -0.10630998015403748, -0.02929903194308281, 0.04180949926376343, 0.31997987627983093, -0.22608582675457, 0.024850312620401382, 0.03223429247736931, 0.05477414280176163, 0.032711680978536606, 0.04514457657933235, 0.12116051465272903, 0.06358829885721207, 0.3331974148750305, -0.7724911570549011, -0.39005059003829956, -0.09746770560741425, -0.027216175571084023, -0.3259828984737396, 0.062497735023498535, 1.365746259689331, -0.007837682962417603, 0.014884407632052898, -0.20087958872318268]} +{"t": 7.2464, "q": [-0.1558745950460434, 0.0070699467323720455, 0.018025491386651993, 0.31934070587158203, -0.16079002618789673, -0.003844096092507243, -0.10631850361824036, -0.029273467138409615, 0.0418228916823864, 0.3199883997440338, -0.22608582675457, 0.024850312620401382, 0.03227446973323822, 0.05478191748261452, 0.03268777206540108, 0.04325106739997864, 0.11755326390266418, 0.06558966636657715, 0.32697761058807373, -0.7930561304092407, -0.38359108567237854, -0.09744373708963394, -0.027120301499962807, -0.3260428309440613, 0.0625816211104393, 1.3658421039581299, -0.00782569870352745, 0.014884407632052898, -0.20086759328842163]} +{"t": 7.2632, "q": [-0.15585754811763763, 0.007095512468367815, 0.01797192357480526, 0.3193662762641907, -0.16078147292137146, -0.0038440644275397062, -0.10631850361824036, -0.029256422072649002, 0.04179610684514046, 0.32003098726272583, -0.22608566284179688, 0.024835992604494095, 0.03228786215186119, 0.05476678907871246, 0.03269773721694946, 0.04158526286482811, 0.11486879736185074, 0.06729142367839813, 0.31963127851486206, -0.8133813738822937, -0.3741954565048218, -0.09746770560741425, -0.026928553357720375, -0.3260907828807831, 0.06256964057683945, 1.365902066230774, -0.00782569870352745, 0.014908376149833202, -0.20084363222122192]} +{"t": 7.2799, "q": [-0.15584902465343475, 0.007044380065053701, 0.0179987084120512, 0.3193918466567993, -0.16078998148441315, -0.0038299839943647385, -0.10631850361824036, -0.029256422072649002, 0.0418228916823864, 0.32001397013664246, -0.22607724368572235, 0.02483591064810753, 0.03230125084519386, 0.054759226739406586, 0.032702717930078506, 0.040410809218883514, 0.11289139837026596, 0.0680224597454071, 0.31280025839805603, -0.8344256281852722, -0.36609411239624023, -0.09744373708963394, -0.026868632063269615, -0.32612672448158264, 0.06250971555709839, 1.3661057949066162, -0.00782569870352745, 0.014908376149833202, -0.20087958872318268]} +{"t": 7.2966, "q": [-0.15584051609039307, 0.007052902597934008, 0.01813262701034546, 0.3194429874420166, -0.16079002618789673, -0.003844096092507243, -0.10630998015403748, -0.029273467138409615, 0.041916634887456894, 0.32001397013664246, -0.22608153522014618, 0.024843111634254456, 0.03224768489599228, 0.05478180944919586, 0.03269723430275917, 0.039332225918769836, 0.11065035313367844, 0.06912501156330109, 0.30637672543525696, -0.8534805774688721, -0.3583882451057434, -0.09746770560741425, -0.02677275985479355, -0.32615068554878235, 0.06264154613018036, 1.3661776781082153, -0.007837682962417603, 0.014932344667613506, -0.20086759328842163]} +{"t": 7.3134, "q": [-0.15585754811763763, 0.0070273359306156635, 0.01815940998494625, 0.3194515109062195, -0.1607857346534729, -0.0038370240945369005, -0.106344074010849, -0.029324598610401154, 0.04198359325528145, 0.32001397013664246, -0.22607757151126862, 0.024864550679922104, 0.03220750764012337, 0.05476678907871246, 0.03269773721694946, 0.03858920559287071, 0.10790596157312393, 0.07033541798591614, 0.3000011146068573, -0.8728830218315125, -0.3494000732898712, -0.0974796861410141, -0.026628948748111725, -0.32624655961990356, 0.06252170354127884, 1.3662855625152588, -0.007837682962417603, 0.014920360408723354, -0.20086759328842163]} +{"t": 7.3303, "q": [-0.15586607158184052, 0.0070273359306156635, 0.018199585378170013, 0.3194515109062195, -0.16078567504882812, -0.0038229033816605806, -0.10635259002447128, -0.029384253546595573, 0.04199698567390442, 0.3199883997440338, -0.22607724368572235, 0.02483591064810753, 0.03193967044353485, 0.05475911870598793, 0.0327121801674366, 0.03828959912061691, 0.10603642463684082, 0.0706949457526207, 0.2948119342327118, -0.8893493413925171, -0.34242525696754456, -0.0974796861410141, -0.026581011712551117, -0.3263064920902252, 0.06250971555709839, 1.3665971755981445, -0.00777776213362813, 0.014932344667613506, -0.20087958872318268]} +{"t": 7.3471, "q": [-0.15585754811763763, 0.00703585846349597, 0.018279938027262688, 0.3194344639778137, -0.1607857346534729, -0.0038370240945369005, -0.106344074010849, -0.029409820213913918, 0.042104121297597885, 0.31997987627983093, -0.22607724368572235, 0.02483591064810753, 0.03180575370788574, 0.05475911870598793, 0.0327121801674366, 0.03785816580057144, 0.10427474230527878, 0.07116232812404633, 0.28837642073631287, -0.907361626625061, -0.3334251046180725, -0.09746770560741425, -0.026449184864759445, -0.3263184726238251, 0.062557652592659, 1.3671125173568726, -0.007801730651408434, 0.014932344667613506, -0.20090354979038239]} +{"t": 7.3639, "q": [-0.15586607158184052, 0.007018813397735357, 0.01832011342048645, 0.3194344639778137, -0.16079844534397125, -0.0038017737679183483, -0.10633555054664612, -0.02947799675166607, 0.042077336460351944, 0.31996282935142517, -0.22608153522014618, 0.024843111634254456, 0.03191288560628891, 0.05475166067481041, 0.03270770236849785, 0.03751062601804733, 0.101698137819767, 0.07215701788663864, 0.28083834052085876, -0.9257214665412903, -0.3247125744819641, -0.0974557176232338, -0.026389263570308685, -0.3263304531574249, 0.062497735023498535, 1.3679993152618408, -0.007801730651408434, 0.014920360408723354, -0.20091553032398224]} +{"t": 7.3809, "q": [-0.15586607158184052, 0.0069847251288592815, 0.01830672100186348, 0.3194344639778137, -0.16079853475093842, -0.0038300068117678165, -0.10633555054664612, -0.02960582822561264, 0.04206394404172897, 0.31997987627983093, -0.2260899543762207, 0.02484319359064102, 0.03193967044353485, 0.05477414280176163, 0.032711680978536606, 0.03706720843911171, 0.09904962033033371, 0.07290004193782806, 0.27465447783470154, -0.9432064890861511, -0.318145215511322, -0.0974796861410141, -0.026101643219590187, -0.3263184726238251, 0.06252170354127884, 1.3688981533050537, -0.007801730651408434, 0.014932344667613506, -0.2009275257587433]} +{"t": 7.3976, "q": [-0.15589164197444916, 0.006967680994421244, 0.01832011342048645, 0.3194344639778137, -0.16078564524650574, -0.003808782435953617, -0.10635259002447128, -0.02965696156024933, 0.042077336460351944, 0.31997987627983093, -0.22608582675457, 0.024850312620401382, 0.03193967044353485, 0.05476668104529381, 0.032707199454307556, 0.03592870756983757, 0.09727595746517181, 0.07322361320257187, 0.27053189277648926, -0.9609191417694092, -0.30879753828048706, -0.0975036546587944, -0.026041721925139427, -0.3263424336910248, 0.06247376650571823, 1.3697010278701782, -0.007801730651408434, 0.014932344667613506, -0.20096346735954285]} +{"t": 7.4144, "q": [-0.1558745950460434, 0.00697620352730155, 0.018360288813710213, 0.31942594051361084, -0.16078993678092957, -0.003815854201093316, -0.10639519989490509, -0.02966548316180706, 0.0421442948281765, 0.31997987627983093, -0.2260816991329193, 0.024857431650161743, 0.031645048409700394, 0.054766472429037094, 0.03272612392902374, 0.03548528999090195, 0.09610150009393692, 0.07305583357810974, 0.26638534665107727, -0.9795545935630798, -0.3001329302787781, -0.09749167412519455, -0.02611362747848034, -0.32622259855270386, 0.06247376650571823, 1.3704800605773926, -0.00777776213362813, 0.014920360408723354, -0.2009994238615036]} +{"t": 7.4312, "q": [-0.15588311851024628, 0.0069847251288592815, 0.018440639600157738, 0.3194429874420166, -0.16078993678092957, -0.003815854201093316, -0.1063866838812828, -0.02960582822561264, 0.04221125692129135, 0.3199883997440338, -0.22607344388961792, 0.024871671572327614, 0.0315513052046299, 0.05472886189818382, 0.03273211047053337, 0.03558116406202316, 0.095058873295784, 0.07288806140422821, 0.26137596368789673, -0.9970396161079407, -0.29010215401649475, -0.09751564264297485, -0.026137595996260643, -0.32615068554878235, 0.06248575076460838, 1.370743751525879, -0.007765777874737978, 0.01489639189094305, -0.20098744332790375]} +{"t": 7.4479, "q": [-0.1558745950460434, 0.006993247661739588, 0.018400464206933975, 0.3194515109062195, -0.16079844534397125, -0.0038017737679183483, -0.10639519989490509, -0.02960582822561264, 0.04219786450266838, 0.31997135281562805, -0.2260691523551941, 0.024864470586180687, 0.031524524092674255, 0.05473632365465164, 0.03273659199476242, 0.03576092794537544, 0.09492705017328262, 0.07262440770864487, 0.25617480278015137, -1.013458013534546, -0.28069451451301575, -0.09752762317657471, -0.026017753407359123, -0.326066792011261, 0.06248575076460838, 1.37104332447052, -0.00777776213362813, 0.014908376149833202, -0.20098744332790375]} +{"t": 7.4647, "q": [-0.15586607158184052, 0.0069847251288592815, 0.018427249044179916, 0.3194429874420166, -0.16078993678092957, -0.003815854201093316, -0.10639519989490509, -0.02961435168981552, 0.04217107966542244, 0.31997987627983093, -0.22606931626796722, 0.024878790602087975, 0.03157809004187584, 0.05477403849363327, 0.0327211432158947, 0.035844817757606506, 0.09545435756444931, 0.0725405141711235, 0.2528431713581085, -1.0284502506256104, -0.2714906334877014, -0.09758754819631577, -0.025849973782896996, -0.3260428309440613, 0.06244979798793793, 1.3716305494308472, -0.007765777874737978, 0.01489639189094305, -0.2009994238615036]} +{"t": 7.4816, "q": [-0.15585754811763763, 0.007001769263297319, 0.018400464206933975, 0.3194515109062195, -0.16078993678092957, -0.003815854201093316, -0.10639519989490509, -0.029622873291373253, 0.04215768724679947, 0.32001397013664246, -0.2260650247335434, 0.024871589615941048, 0.031497739255428314, 0.05478906258940697, 0.03272064030170441, 0.035892754793167114, 0.09577792882919312, 0.07207313179969788, 0.24964340031147003, -1.04380202293396, -0.2602853775024414, -0.09761151671409607, -0.02594584785401821, -0.3260188698768616, 0.06242582947015762, 1.3729248046875, -0.00777776213362813, 0.014884407632052898, -0.2009994238615036]} +{"t": 7.4983, "q": [-0.15583199262619019, 0.007010291796177626, 0.018413856625556946, 0.31946852803230286, -0.16078564524650574, -0.003808782435953617, -0.10639519989490509, -0.029588785022497177, 0.04218447208404541, 0.3200480341911316, -0.22605659067630768, 0.024871526286005974, 0.03144416958093643, 0.05478160083293915, 0.03271615877747536, 0.03600061312317848, 0.09555022418498993, 0.07147391885519028, 0.24536502361297607, -1.057547926902771, -0.2499549835920334, -0.09764746576547623, -0.026209499686956406, -0.32587504386901855, 0.062437813729047775, 1.3739434480667114, -0.00777776213362813, 0.014860439114272594, -0.20098744332790375]} +{"t": 7.515, "q": [-0.15583199262619019, 0.007018813397735357, 0.018400464206933975, 0.31951114535331726, -0.1607813537120819, -0.0038017104379832745, -0.10636111348867416, -0.02953765168786049, 0.04213090240955353, 0.3200480341911316, -0.2260524481534958, 0.024878645315766335, 0.031497739255428314, 0.054789166897535324, 0.032711178064346313, 0.03588077053427696, 0.09517871588468552, 0.0709705799818039, 0.241242453455925, -1.0736547708511353, -0.2382463961839676, -0.09765945374965668, -0.026521090418100357, -0.32577916979789734, 0.06247376650571823, 1.3754894733428955, -0.007765777874737978, 0.014848454855382442, -0.20101140439510345]} +{"t": 7.5319, "q": [-0.1558234691619873, 0.00703585846349597, 0.018387073650956154, 0.3195452392101288, -0.16077709197998047, -0.003808759618550539, -0.10637816041707993, -0.02949504181742668, 0.04215768724679947, 0.3200565576553345, -0.2260524481534958, 0.024878645315766335, 0.031189724802970886, 0.05477403849363327, 0.0327211432158947, 0.035892754793167114, 0.09526260942220688, 0.0697721615433693, 0.2379228174686432, -1.0884672403335571, -0.22714900970458984, -0.0977553278207779, -0.02720419131219387, -0.3256593346595764, 0.06246178224682808, 1.3768197298049927, -0.007789746392518282, 0.01483647059649229, -0.20101140439510345]} +{"t": 7.5487, "q": [-0.15583199262619019, 0.00703585846349597, 0.01850759983062744, 0.3195452392101288, -0.16077713668346405, -0.0038228717166930437, -0.10641224682331085, -0.02948652021586895, 0.042238038033246994, 0.3200565576553345, -0.2260441929101944, 0.024892885237932205, 0.030694223940372467, 0.054766472429037094, 0.03272612392902374, 0.036024581640958786, 0.09557419270277023, 0.06850183010101318, 0.23616114258766174, -1.1021533012390137, -0.21431389451026917, -0.09806691855192184, -0.027767449617385864, -0.32562339305877686, 0.06242582947015762, 1.377610683441162, -0.007789746392518282, 0.014812502078711987, -0.20101140439510345]} +{"t": 7.5655, "q": [-0.15581494569778442, 0.0070273359306156635, 0.018574560061097145, 0.31956228613853455, -0.1607813537120819, -0.0038017104379832745, -0.10641224682331085, -0.029503563418984413, 0.04231838881969452, 0.3200821280479431, -0.22603560984134674, 0.02487848326563835, 0.02993088588118553, 0.05477393418550491, 0.03273060545325279, 0.036024581640958786, 0.09589777141809464, 0.06729142367839813, 0.235022634267807, -1.1156474351882935, -0.20115521550178528, -0.09851033240556717, -0.028354676440358162, -0.32545560598373413, 0.06247376650571823, 1.3785454034805298, -0.007765777874737978, 0.014800517819821835, -0.2009994238615036]} +{"t": 7.5822, "q": [-0.15579789876937866, 0.0070273359306156635, 0.018614735454320908, 0.3195367157459259, -0.1607770472764969, -0.0037946386728435755, -0.10641224682331085, -0.029520608484745026, 0.04234517365694046, 0.3200480341911316, -0.2260483205318451, 0.024885764345526695, 0.029703224077820778, 0.05478150025010109, 0.03272562474012375, 0.036144424229860306, 0.09596967697143555, 0.06641657650470734, 0.23381222784519196, -1.1308674812316895, -0.18913504481315613, -0.09909755736589432, -0.02906174585223198, -0.3253836929798126, 0.06248575076460838, 1.3803789615631104, -0.00777776213362813, 0.014788533560931683, -0.2009994238615036]} +{"t": 7.5989, "q": [-0.15581494569778442, 0.00703585846349597, 0.01865491084754467, 0.319528192281723, -0.16079413890838623, -0.0037947020027786493, -0.1064378172159195, -0.029563218355178833, 0.04234517365694046, 0.32001397013664246, -0.2260483205318451, 0.024885764345526695, 0.029796967282891273, 0.05477393418550491, 0.03273060545325279, 0.036204345524311066, 0.09596967697143555, 0.06596117466688156, 0.2326497584581375, -1.1428277492523193, -0.17570072412490845, -0.09972073882818222, -0.02984072081744671, -0.3253117799758911, 0.062437813729047775, 1.3824882507324219, -0.007765777874737978, 0.014788533560931683, -0.2009994238615036]} +{"t": 7.6156, "q": [-0.15583199262619019, 0.007001769263297319, 0.0186415184289217, 0.3194515109062195, -0.1607813537120819, -0.0038017104379832745, -0.10644633322954178, -0.02959730662405491, 0.04234517365694046, 0.31997987627983093, -0.2260441929101944, 0.024892885237932205, 0.029863927513360977, 0.05476626381278038, 0.03274505212903023, 0.036252282559871674, 0.09638912230730057, 0.06411560624837875, 0.23229023814201355, -1.1557587385177612, -0.16254204511642456, -0.1008232906460762, -0.030643664300441742, -0.3252638578414917, 0.06241384521126747, 1.383986234664917, -0.007765777874737978, 0.014764565043151379, -0.20101140439510345]} +{"t": 7.6324, "q": [-0.15584051609039307, 0.0069847251288592815, 0.018681693822145462, 0.31942594051361084, -0.16078124940395355, -0.00377347762696445, -0.10652303695678711, -0.029639918357133865, 0.0423719584941864, 0.31996282935142517, -0.2260483205318451, 0.024885764345526695, 0.02977018430829048, 0.054781392216682434, 0.03273508697748184, 0.03624029830098152, 0.09679658710956573, 0.06217416003346443, 0.23214642703533173, -1.1686537265777588, -0.14831677079200745, -0.10308830440044403, -0.03148255869746208, -0.3252878189086914, 0.062437813729047775, 1.3850888013839722, -0.007765777874737978, 0.014764565043151379, -0.20103538036346436]} +{"t": 7.6492, "q": [-0.15586607158184052, 0.006993247661739588, 0.018721869215369225, 0.31932365894317627, -0.16078980267047882, -0.003773517906665802, -0.1065741702914238, -0.029639918357133865, 0.0424657016992569, 0.31988611817359924, -0.22606104612350464, 0.02489304728806019, 0.02974339947104454, 0.054781392216682434, 0.03273508697748184, 0.036324188113212585, 0.09701230376958847, 0.060508351773023605, 0.23206253349781036, -1.180302381515503, -0.1338757872581482, -0.10585666447877884, -0.03200986608862877, -0.32527583837509155, 0.062437813729047775, 1.3857120275497437, -0.007765777874737978, 0.01477654930204153, -0.20105934143066406]} +{"t": 7.6659, "q": [-0.15586607158184052, 0.007001769263297319, 0.01866830326616764, 0.3192214071750641, -0.1607983559370041, -0.0037735409568995237, -0.10655712336301804, -0.02965696156024933, 0.042412132024765015, 0.3198179602622986, -0.22606104612350464, 0.02489304728806019, 0.029823752120137215, 0.05478885397315025, 0.03273956850171089, 0.036324188113212585, 0.09764746576547623, 0.05910619720816612, 0.23224230110645294, -1.1925742626190186, -0.12001003324985504, -0.10808572918176651, -0.0322016142308712, -0.32532379031181335, 0.06246178224682808, 1.3862392902374268, -0.007789746392518282, 0.01477654930204153, -0.20105934143066406]} +{"t": 7.6826, "q": [-0.15590868890285492, 0.00703585846349597, 0.018681693822145462, 0.31910207867622375, -0.1607983112335205, -0.0037594286259263754, -0.10659120976924896, -0.029648439958691597, 0.042412132024765015, 0.31969863176345825, -0.22605262696743011, 0.024892965331673622, 0.029796967282891273, 0.05476616322994232, 0.03275451436638832, 0.0363960936665535, 0.09976867586374283, 0.058471035212278366, 0.23254190385341644, -1.2059845924377441, -0.1035197377204895, -0.1098354235291481, -0.03236939385533333, -0.32537171244621277, 0.06242582947015762, 1.3868625164031982, -0.007753793615847826, 0.01477654930204153, -0.20105934143066406]} +{"t": 7.6993, "q": [-0.15594276785850525, 0.0069847251288592815, 0.018762046471238136, 0.31897425651550293, -0.16081540286540985, -0.0037594919558614492, -0.10663381963968277, -0.02965696156024933, 0.042452309280633926, 0.3195708096027374, -0.22605691850185394, 0.02490016631782055, 0.029649656265974045, 0.05471289902925491, 0.0328177809715271, 0.03670768067240715, 0.10163821280002594, 0.05754825100302696, 0.2329493761062622, -1.218855619430542, -0.08693356812000275, -0.11174091696739197, -0.032513201236724854, -0.32564735412597656, 0.06247376650571823, 1.387281894683838, -0.007741809356957674, 0.01477654930204153, -0.20109529793262482]} +{"t": 7.7162, "q": [-0.1559683382511139, 0.006959159392863512, 0.0188022218644619, 0.31891459226608276, -0.16082817316055298, -0.0037383625749498606, -0.10665939003229141, -0.029682528227567673, 0.042586229741573334, 0.31947705149650574, -0.2260567545890808, 0.02488584630191326, 0.02940860204398632, 0.05459923297166824, 0.03291144594550133, 0.03795403987169266, 0.1026448905467987, 0.0565655417740345, 0.2331770658493042, -1.2310914993286133, -0.07307980209589005, -0.1134546622633934, -0.032513201236724854, -0.3260188698768616, 0.06241384521126747, 1.3875455856323242, -0.007765777874737978, 0.014764565043151379, -0.20111927390098572]} +{"t": 7.7332, "q": [-0.15593425929546356, 0.006950636859983206, 0.01884239725768566, 0.31882938742637634, -0.1608409285545349, -0.003717233194038272, -0.1066679134964943, -0.02973366156220436, 0.042599618434906006, 0.3192980885505676, -0.22605279088020325, 0.02490728534758091, 0.029180940240621567, 0.054493337869644165, 0.03298120200634003, 0.03948802128434181, 0.10277671366930008, 0.05633784458041191, 0.2329014390707016, -1.2434473037719727, -0.05951366201043129, -0.11503657698631287, -0.032345425337553024, -0.32647424936294556, 0.06240186095237732, 1.3876055479049683, -0.007741809356957674, 0.014764565043151379, -0.20116721093654633]} +{"t": 7.7499, "q": [-0.155959814786911, 0.006908026058226824, 0.018949532881379128, 0.31882938742637634, -0.16084517538547516, -0.003710192861035466, -0.10662530362606049, -0.029827404767274857, 0.04266658052802086, 0.319272518157959, -0.22606104612350464, 0.02489304728806019, 0.02904702164232731, 0.05444806069135666, 0.03300163522362709, 0.040650490671396255, 0.10310029238462448, 0.056182049214839935, 0.23241007328033447, -1.2557190656661987, -0.04655871540307999, -0.11604325473308563, -0.032165661454200745, -0.3269656300544739, 0.06236590817570686, 1.3876893520355225, -0.007729825098067522, 0.014752581715583801, -0.2012750655412674]} +{"t": 7.7666, "q": [-0.1559683382511139, 0.006848371122032404, 0.019029883667826653, 0.31882086396217346, -0.1608664095401764, -0.0036608707159757614, -0.10664234310388565, -0.029946712777018547, 0.04267997294664383, 0.31924697756767273, -0.22606121003627777, 0.024907367303967476, 0.02908719703555107, 0.05446318909525871, 0.032991670072078705, 0.04158526286482811, 0.10373545438051224, 0.056122127920389175, 0.23206253349781036, -1.2670681476593018, -0.035173699259757996, -0.11706191301345825, -0.031985897570848465, -0.3276846706867218, 0.06234193965792656, 1.3878451585769653, -0.007705857045948505, 0.014764565043151379, -0.20135895907878876]} +{"t": 7.7835, "q": [-0.155959814786911, 0.00679723871871829, 0.019016491249203682, 0.31882086396217346, -0.16086643934249878, -0.003674982814118266, -0.10664234310388565, -0.030066022649407387, 0.04266658052802086, 0.31924697756767273, -0.22606121003627777, 0.024907367303967476, 0.029207725077867508, 0.05445562303066254, 0.03299665078520775, 0.042340267449617386, 0.10458633303642273, 0.056122127920389175, 0.23152324557304382, -1.2776023149490356, -0.022362563759088516, -0.11790081113576889, -0.03194994479417801, -0.3284636437892914, 0.062317971140146255, 1.3879051208496094, -0.0076699042692780495, 0.014752581715583801, -0.20145483314990997]} +{"t": 7.8002, "q": [-0.15597686171531677, 0.0067801945842802525, 0.01900310069322586, 0.31882086396217346, -0.1608579456806183, -0.0036890634801238775, -0.10663381963968277, -0.030108634382486343, 0.04262640327215195, 0.3192980885505676, -0.22605708241462708, 0.024914486333727837, 0.02958269789814949, 0.054455727338790894, 0.032987188547849655, 0.04286757484078407, 0.10590460151433945, 0.055990301072597504, 0.2293301373720169, -1.2875971794128418, -0.011301124468445778, -0.11833223700523376, -0.03189002349972725, -0.32929056882858276, 0.062377892434597015, 1.3880609273910522, -0.0076459357514977455, 0.014764565043151379, -0.20153871178627014]} +{"t": 7.8171, "q": [-0.155959814786911, 0.006763150449842215, 0.01898970827460289, 0.31887200474739075, -0.1608579456806183, -0.0036890634801238775, -0.10658268630504608, -0.03014272265136242, 0.04257283732295036, 0.31934070587158203, -0.22605691850185394, 0.02490016631782055, 0.029997846111655235, 0.05444826930761337, 0.032982707023620605, 0.04313122481107712, 0.10745056718587875, 0.05603823810815811, 0.22537533938884735, -1.2978556156158447, 0.0005153216770850122, -0.11847604811191559, -0.0318780392408371, -0.3302013576030731, 0.06236590817570686, 1.388084888458252, -0.0076459357514977455, 0.014764565043151379, -0.2015507072210312]} +{"t": 7.8338, "q": [-0.15595129132270813, 0.006754627916961908, 0.018909357488155365, 0.31896573305130005, -0.16084514558315277, -0.0036960807628929615, -0.10656564682722092, -0.030176810920238495, 0.04250587522983551, 0.3195367157459259, -0.22605279088020325, 0.02490728534758091, 0.03038621135056019, 0.05450121685862541, 0.032947830855846405, 0.043059322983026505, 0.1098114550113678, 0.05625395476818085, 0.22100110352039337, -1.3079942464828491, 0.011660651303827763, -0.11853597313165665, -0.031925976276397705, -0.331327885389328, 0.06246178224682808, 1.3881207704544067, -0.0076339514926075935, 0.014752581715583801, -0.2015746682882309]} +{"t": 7.8505, "q": [-0.15594276785850525, 0.006746106315404177, 0.01882900483906269, 0.31905096769332886, -0.16083228588104248, -0.0036889684852212667, -0.10655712336301804, -0.030176810920238495, 0.04250587522983551, 0.31969010829925537, -0.22604866325855255, 0.02491440437734127, 0.03073440119624138, 0.05457685515284538, 0.03289800509810448, 0.0430113859474659, 0.11266370117664337, 0.056649431586265564, 0.21656693518161774, -1.3184205293655396, 0.024531709030270576, -0.1185479536652565, -0.03212970867753029, -0.33251431584358215, 0.062437813729047775, 1.3880728483200073, -0.00760998297482729, 0.01468067616224289, -0.2015746682882309]} +{"t": 7.8673, "q": [-0.15593425929546356, 0.006771672051399946, 0.018748654052615166, 0.319085031747818, -0.1608237773180008, -0.0037030577659606934, -0.10654859989881516, -0.030176810920238495, 0.042412132024765015, 0.31984350085258484, -0.2260441929101944, 0.024892885237932205, 0.031055806204676628, 0.054614778608083725, 0.03286362811923027, 0.04295146465301514, 0.11699000746011734, 0.05633784458041191, 0.21260015666484833, -1.3286430835723877, 0.036012597382068634, -0.11855994164943695, -0.0322016142308712, -0.3335449695587158, 0.06246178224682808, 1.3880728483200073, -0.0076459357514977455, 0.014668691903352737, -0.2015746682882309]} +{"t": 7.8842, "q": [-0.1559172123670578, 0.006771672051399946, 0.01865491084754467, 0.31914469599723816, -0.1607895791530609, -0.003702922258526087, -0.10653156042098999, -0.030168289318680763, 0.04230500012636185, 0.3199883997440338, -0.22603610157966614, 0.024921443313360214, 0.03128346800804138, 0.05462980270385742, 0.032863128930330276, 0.04295146465301514, 0.12059725821018219, 0.05621800199151039, 0.20852552354335785, -1.338542103767395, 0.04731371998786926, -0.11855994164943695, -0.032285504043102264, -0.3342280685901642, 0.062437813729047775, 1.3880728483200073, -0.0076339514926075935, 0.014656707644462585, -0.2015746682882309]} +{"t": 7.9009, "q": [-0.15593425929546356, 0.006754627916961908, 0.018574560061097145, 0.31928104162216187, -0.16075962781906128, -0.003695755498483777, -0.10649746656417847, -0.030168289318680763, 0.042278215289115906, 0.320090651512146, -0.22602353990077972, 0.0249284990131855, 0.0315513052046299, 0.05471300706267357, 0.032808318734169006, 0.042939480394124985, 0.1245640367269516, 0.05637379735708237, 0.20423516631126404, -1.3476500511169434, 0.059609536081552505, -0.1185479536652565, -0.03230947256088257, -0.33479130268096924, 0.06253368407487869, 1.3880488872528076, -0.0076459357514977455, 0.014656707644462585, -0.2015746682882309]} +{"t": 7.9176, "q": [-0.1559172123670578, 0.0067801945842802525, 0.018574560061097145, 0.31937479972839355, -0.1607467532157898, -0.0036745399702340364, -0.10649746656417847, -0.030159765854477882, 0.042238038033246994, 0.3202355206012726, -0.22600702941417694, 0.024956976994872093, 0.0317789688706398, 0.05481133610010147, 0.03274354711174965, 0.04296344891190529, 0.12921391427516937, 0.05637379735708237, 0.19842281937599182, -1.356842041015625, 0.0713420957326889, -0.11853597313165665, -0.03244129940867424, -0.33518680930137634, 0.062497735023498535, 1.3880728483200073, -0.0076339514926075935, 0.01462075486779213, -0.20156268775463104]} +{"t": 7.9345, "q": [-0.15590868890285492, 0.006763150449842215, 0.018561167642474174, 0.3194429874420166, -0.16072964668273926, -0.0036744766402989626, -0.10647190362215042, -0.03015124425292015, 0.042251430451869965, 0.32024404406547546, -0.22598619759082794, 0.0249782707542181, 0.03196645528078079, 0.054977744817733765, 0.03263393044471741, 0.04292749613523483, 0.13238973915576935, 0.05679324269294739, 0.19299396872520447, -1.3677476644515991, 0.08204400539398193, -0.1185239851474762, -0.032465267926454544, -0.3354983925819397, 0.06253368407487869, 1.387929081916809, -0.0076459357514977455, 0.014572817832231522, -0.2015267312526703]} +{"t": 7.9512, "q": [-0.15590016543865204, 0.0067375837825238705, 0.018574560061097145, 0.3194855749607086, -0.1607082039117813, -0.0036532205995172262, -0.10641224682331085, -0.030185332521796227, 0.042238038033246994, 0.32029518485069275, -0.22598224878311157, 0.0249997116625309, 0.03208698332309723, 0.055204663425683975, 0.03248446434736252, 0.04290352761745453, 0.13663215935230255, 0.0571647547185421, 0.18833209574222565, -1.3782098293304443, 0.09275790303945541, -0.11847604811191559, -0.032645028084516525, -0.3356302082538605, 0.06248575076460838, 1.387929081916809, -0.0076459357514977455, 0.014548849314451218, -0.2015507072210312]} +{"t": 7.968, "q": [-0.15590016543865204, 0.006712018046528101, 0.018561167642474174, 0.31951114535331726, -0.16070811450481415, -0.003624987555667758, -0.10639519989490509, -0.03021089918911457, 0.042278215289115906, 0.3203122317790985, -0.22598224878311157, 0.0249997116625309, 0.03215394169092178, 0.05545418709516525, 0.03232968598604202, 0.04291551187634468, 0.14107829332351685, 0.05758420377969742, 0.18480873107910156, -1.3870662450790405, 0.1043945848941803, -0.11846406757831573, -0.03278883919119835, -0.3356421887874603, 0.06246178224682808, 1.3878211975097656, -0.0076459357514977455, 0.014512896537780762, -0.2015507072210312]} +{"t": 7.985, "q": [-0.1558745950460434, 0.0066949729807674885, 0.018587950617074966, 0.31951114535331726, -0.1607038527727127, -0.003632036503404379, -0.10639519989490509, -0.03027055412530899, 0.042264822870492935, 0.32029518485069275, -0.22597381472587585, 0.024999629706144333, 0.03204680606722832, 0.055643197149038315, 0.03221472352743149, 0.04292749613523483, 0.14552444219589233, 0.05799166485667229, 0.18006297945976257, -1.395107626914978, 0.11507253348827362, -0.11841613054275513, -0.033136382699012756, -0.3356541693210602, 0.062437813729047775, 1.387797236442566, -0.0076339514926075935, 0.014464959502220154, -0.2015507072210312]} +{"t": 8.0017, "q": [-0.15588311851024628, 0.006643840577453375, 0.018614735454320908, 0.31951114535331726, -0.1607038527727127, -0.003632036503404379, -0.10637816041707993, -0.030296120792627335, 0.04230500012636185, 0.3202696144580841, -0.22595730423927307, 0.025028107687830925, 0.03204680606722832, 0.05590028688311577, 0.03205496817827225, 0.04291551187634468, 0.14944328367710114, 0.058770641684532166, 0.17377126216888428, -1.4041078090667725, 0.12547484040260315, -0.11836819350719452, -0.03328019380569458, -0.33573806285858154, 0.06247376650571823, 1.3878092765808105, -0.0076339514926075935, 0.01444099098443985, -0.2015507072210312]} +{"t": 8.0185, "q": [-0.1558745950460434, 0.006550097372382879, 0.018574560061097145, 0.3194940984249115, -0.160686656832695, -0.00360380532220006, -0.10637816041707993, -0.030432473868131638, 0.042238038033246994, 0.32029518485069275, -0.2259698510169983, 0.02502106875181198, 0.03206019848585129, 0.056127335876226425, 0.03189614787697792, 0.04283162206411362, 0.1527749001979828, 0.060340575873851776, 0.1670001745223999, -1.4127124547958374, 0.13531388342380524, -0.11810453981161118, -0.033256225287914276, -0.3357260823249817, 0.062557652592659, 1.387797236442566, -0.0076339514926075935, 0.014393054880201817, -0.20153871178627014]} +{"t": 8.0352, "q": [-0.15585754811763763, 0.006498964969068766, 0.018587950617074966, 0.3194515109062195, -0.16069945693016052, -0.003596763126552105, -0.10636963695287704, -0.030475085601210594, 0.042238038033246994, 0.32025256752967834, -0.2259698510169983, 0.02502106875181198, 0.03212715685367584, 0.05634653940796852, 0.031770214438438416, 0.04253201559185982, 0.15603461861610413, 0.06180264800786972, 0.16172711551189423, -1.4190521240234375, 0.14427809417247772, -0.11803263425827026, -0.03332813084125519, -0.3357500433921814, 0.06248575076460838, 1.3877853155136108, -0.007597998715937138, 0.014393054880201817, -0.20156268775463104]} +{"t": 8.0519, "q": [-0.15584902465343475, 0.006498964969068766, 0.018574560061097145, 0.3194429874420166, -0.16070376336574554, -0.0036038102116435766, -0.10637816041707993, -0.0305176954716444, 0.042251430451869965, 0.32024404406547546, -0.2259741574525833, 0.025028269737958908, 0.03207359090447426, 0.056610070168972015, 0.031709007918834686, 0.04256796836853027, 0.1600133776664734, 0.06383996456861496, 0.15690946578979492, -1.4240974187850952, 0.1529187113046646, -0.11791279166936874, -0.033615753054618835, -0.3358459174633026, 0.06254567205905914, 1.3877493143081665, -0.007597998715937138, 0.014321149326860905, -0.20156268775463104]} +{"t": 8.0688, "q": [-0.15586607158184052, 0.0064733983017504215, 0.018574560061097145, 0.31938332319259644, -0.16069090366363525, -0.003596756374463439, -0.10639519989490509, -0.030526217073202133, 0.042238038033246994, 0.3202184736728668, -0.2259657233953476, 0.025028187781572342, 0.03203341364860535, 0.056805066764354706, 0.031730640679597855, 0.042699795216321945, 0.16474714875221252, 0.06482267379760742, 0.15240339934825897, -1.4262666702270508, 0.1588389277458191, -0.11790081113576889, -0.0337236113846302, -0.3358699083328247, 0.06247376650571823, 1.387797236442566, -0.00760998297482729, 0.0142971808090806, -0.2015746682882309]} +{"t": 8.0855, "q": [-0.15586607158184052, 0.006490442436188459, 0.018547775223851204, 0.3193662762641907, -0.1607079654932022, -0.003582682693377137, -0.10637816041707993, -0.03050917387008667, 0.0421442948281765, 0.3201758861541748, -0.225978285074234, 0.025021150708198547, 0.032194118946790695, 0.05716567113995552, 0.03171813115477562, 0.0427117794752121, 0.17012806236743927, 0.06610498577356339, 0.14452975988388062, -1.4275009632110596, 0.16481904685497284, -0.11788882315158844, -0.0336996428668499, -0.33588188886642456, 0.06248575076460838, 1.3878092765808105, -0.0076339514926075935, 0.014261228032410145, -0.2015746682882309]} +{"t": 8.1022, "q": [-0.15590016543865204, 0.006498964969068766, 0.018427249044179916, 0.31928956508636475, -0.1607036590576172, -0.0035756356082856655, -0.10636963695287704, -0.03050917387008667, 0.04203715920448303, 0.3201247453689575, -0.22598257660865784, 0.025028351694345474, 0.03258248046040535, 0.057776063680648804, 0.03153129667043686, 0.04277170076966286, 0.17612017691135406, 0.06817825883626938, 0.13476261496543884, -1.4289270639419556, 0.17190173268318176, -0.11788882315158844, -0.03357980027794838, -0.33590584993362427, 0.06253368407487869, 1.3879530429840088, -0.00760998297482729, 0.014273212291300297, -0.2015507072210312]} +{"t": 8.119, "q": [-0.15593425929546356, 0.006481920834630728, 0.018279938027262688, 0.3192980885505676, -0.16068661212921143, -0.0035897092893719673, -0.10636963695287704, -0.03050917387008667, 0.04186306521296501, 0.32010769844055176, -0.22599926590919495, 0.02501419372856617, 0.033037807792425156, 0.058680783957242966, 0.031215915456414223, 0.04277170076966286, 0.18286728858947754, 0.07073089480400085, 0.12652945518493652, -1.430616855621338, 0.17709089815616608, -0.11788882315158844, -0.03366369009017944, -0.3358938694000244, 0.06247376650571823, 1.3879170417785645, -0.007597998715937138, 0.014273212291300297, -0.2015746682882309]} +{"t": 8.1357, "q": [-0.15593425929546356, 0.006498964969068766, 0.01815940998494625, 0.31928956508636475, -0.16068235039710999, -0.0035967582371085882, -0.10636963695287704, -0.030492128804326057, 0.04179610684514046, 0.3201332688331604, -0.22599926590919495, 0.02501419372856617, 0.032997630536556244, 0.05947119742631912, 0.031031472608447075, 0.04277170076966286, 0.18994997441768646, 0.07227686047554016, 0.12232298403978348, -1.4309405088424683, 0.18088988959789276, -0.11788882315158844, -0.03422694653272629, -0.3359657824039459, 0.062557652592659, 1.3877493143081665, -0.00760998297482729, 0.01423725951462984, -0.2015746682882309]} +{"t": 8.1524, "q": [-0.15589164197444916, 0.0065586199052631855, 0.018226370215415955, 0.31928956508636475, -0.160686656832695, -0.00360380532220006, -0.10641224682331085, -0.030406907200813293, 0.04184967279434204, 0.3201247453689575, -0.22599513828754425, 0.02502131275832653, 0.03279675170779228, 0.06007198244333267, 0.03100903518497944, 0.043346941471099854, 0.1968528777360916, 0.07347528636455536, 0.12001003324985504, -1.4303293228149414, 0.18450912833213806, -0.11791279166936874, -0.035173699259757996, -0.3359777629375458, 0.0625816211104393, 1.387629508972168, -0.007586014457046986, 0.014201306737959385, -0.20161062479019165]} +{"t": 8.1694, "q": [-0.15590016543865204, 0.006652363110333681, 0.018226370215415955, 0.31928104162216187, -0.16068661212921143, -0.0035897092893719673, -0.10644633322954178, -0.030296120792627335, 0.04184967279434204, 0.32011622190475464, -0.22599926590919495, 0.02501419372856617, 0.03279675170779228, 0.06034921109676361, 0.03105073794722557, 0.04640292003750801, 0.2028689682483673, 0.07445798814296722, 0.11798469722270966, -1.4283039569854736, 0.18755312263965607, -0.1179247796535492, -0.0354972742497921, -0.3359777629375458, 0.062497735023498535, 1.3875216245651245, -0.00760998297482729, 0.014141385443508625, -0.20156268775463104]} +{"t": 8.1861, "q": [-0.15590868890285492, 0.006729062180966139, 0.018038883805274963, 0.31923845410346985, -0.16068239510059357, -0.003610845422372222, -0.10641224682331085, -0.030185332521796227, 0.04171575605869293, 0.32011622190475464, -0.22599926590919495, 0.02501419372856617, 0.03295745700597763, 0.060438867658376694, 0.031085245311260223, 0.04980643838644028, 0.20901687443256378, 0.07490140944719315, 0.11242401599884033, -1.4233545064926147, 0.18918298184871674, -0.11791279166936874, -0.0354972742497921, -0.3359657824039459, 0.06253368407487869, 1.387569546699524, -0.007586014457046986, 0.014141385443508625, -0.2015746682882309]} +{"t": 8.2029, "q": [-0.1559172123670578, 0.006788717117160559, 0.017690693959593773, 0.31922993063926697, -0.16066108644008636, -0.0036319680511951447, -0.106344074010849, -0.03009158931672573, 0.041434526443481445, 0.3201247453689575, -0.22602024674415588, 0.0250072181224823, 0.033506523817777634, 0.060544468462467194, 0.03104344755411148, 0.05330583453178406, 0.2163751870393753, 0.07601594179868698, 0.10270480811595917, -1.4202744960784912, 0.19038140773773193, -0.11791279166936874, -0.035353463143110275, -0.33601370453834534, 0.06250971555709839, 1.387641429901123, -0.007597998715937138, 0.014141385443508625, -0.2015507072210312]} +{"t": 8.2198, "q": [-0.15594276785850525, 0.006805761251598597, 0.017262153327465057, 0.31923845410346985, -0.16061429679393768, -0.0037094370927661657, -0.1062077134847641, -0.030048979446291924, 0.041099727153778076, 0.32019293308258057, -0.22602885961532593, 0.025021638721227646, 0.034176118671894073, 0.06089852750301361, 0.030940312892198563, 0.05555886775255203, 0.22332604229450226, 0.07752595096826553, 0.09341703355312347, -1.416990876197815, 0.19185546040534973, -0.11791279166936874, -0.03528155758976936, -0.3359178304672241, 0.062497735023498535, 1.3877613544464111, -0.0076339514926075935, 0.014141385443508625, -0.20156268775463104]} +{"t": 8.2365, "q": [-0.15594276785850525, 0.00679723871871829, 0.016753261908888817, 0.3193066120147705, -0.16053764522075653, -0.003808012930676341, -0.10605432093143463, -0.030040455982089043, 0.04067118838429451, 0.32029518485069275, -0.22604157030582428, 0.02502891980111599, 0.034564483910799026, 0.06143853813409805, 0.030976930633187294, 0.05764412507414818, 0.23086410760879517, 0.07914382219314575, 0.08524379134178162, -1.4112623929977417, 0.19330555200576782, -0.1179247796535492, -0.03554521128535271, -0.33566614985466003, 0.06256964057683945, 1.3877613544464111, -0.0076339514926075935, 0.014153369702398777, -0.20156268775463104]} +{"t": 8.2532, "q": [-0.155959814786911, 0.0067801945842802525, 0.016498815268278122, 0.3193151354789734, -0.160405233502388, -0.0038713174872100353, -0.10605432093143463, -0.030006367713212967, 0.04038995876908302, 0.3203207552433014, -0.2260333150625229, 0.02504315786063671, 0.03479214385151863, 0.061970409005880356, 0.031065909191966057, 0.06007692217826843, 0.2382703721523285, 0.08102534711360931, 0.07842476665973663, -1.4052702188491821, 0.19446802139282227, -0.11791279166936874, -0.03600061312317848, -0.33543846011161804, 0.0626055896282196, 1.3877613544464111, -0.00760998297482729, 0.014177338220179081, -0.20156268775463104]} +{"t": 8.2701, "q": [-0.1560109555721283, 0.00679723871871829, 0.0163247212767601, 0.31933218240737915, -0.16006675362586975, -0.003737174440175295, -0.1060713604092598, -0.029921147972345352, 0.04032299667596817, 0.32038041949272156, -0.2260458767414093, 0.025036120787262917, 0.0348055362701416, 0.06232215836644173, 0.03115214966237545, 0.06234193965792656, 0.24469390511512756, 0.08251138776540756, 0.07384679466485977, -1.3993860483169556, 0.19486349821090698, -0.11791279166936874, -0.036252282559871674, -0.3353186249732971, 0.0626055896282196, 1.3878332376480103, -0.00760998297482729, 0.014189322479069233, -0.20156268775463104]} +{"t": 8.2868, "q": [-0.15603651106357574, 0.00679723871871829, 0.016204193234443665, 0.3193151354789734, -0.15967221558094025, -0.0034832097589969635, -0.10613101720809937, -0.029887059703469276, 0.040256038308143616, 0.32051676511764526, -0.2260333150625229, 0.02504315786063671, 0.034711793065071106, 0.06250122934579849, 0.031240101903676987, 0.06550577282905579, 0.2525196075439453, 0.08265519887208939, 0.06890929490327835, -1.3916202783584595, 0.19501930475234985, -0.11788882315158844, -0.03622831404209137, -0.33516281843185425, 0.06253368407487869, 1.3878811597824097, -0.00760998297482729, 0.014177338220179081, -0.2015507072210312]} +{"t": 8.3036, "q": [-0.15601947903633118, 0.006839849520474672, 0.01613723486661911, 0.3192980885505676, -0.15946254134178162, -0.0034759987611323595, -0.10616510361433029, -0.029742183163762093, 0.04029621556401253, 0.32056790590286255, -0.22602058947086334, 0.02503589354455471, 0.034577876329422, 0.06255339831113815, 0.031271278858184814, 0.0697721615433693, 0.26002174615859985, 0.08253535628318787, 0.06327670812606812, -1.3825721740722656, 0.19506722688674927, -0.11788882315158844, -0.03612045571208, -0.33493512868881226, 0.06250971555709839, 1.3882286548614502, -0.00760998297482729, 0.014189322479069233, -0.20153871178627014]} +{"t": 8.3205, "q": [-0.1560109555721283, 0.00685689365491271, 0.01615062542259693, 0.3193066120147705, -0.1593812257051468, -0.003468890208750963, -0.10615658760070801, -0.02961435168981552, 0.04032299667596817, 0.32061049342155457, -0.22602058947086334, 0.02503589354455471, 0.034537699073553085, 0.06254583597183228, 0.03127629682421684, 0.07439807057380676, 0.2658460736274719, 0.08251138776540756, 0.057500313967466354, -1.3759088516235352, 0.19482755661010742, -0.11788882315158844, -0.03573695942759514, -0.33463552594184875, 0.06254567205905914, 1.3883965015411377, -0.0076339514926075935, 0.014201306737959385, -0.2015507072210312]} +{"t": 8.3373, "q": [-0.15599390864372253, 0.006882460322231054, 0.01615062542259693, 0.3193577527999878, -0.15932556986808777, -0.0034618021454662085, -0.10614806413650513, -0.029571739956736565, 0.04034978151321411, 0.3207298219203949, -0.22602473199367523, 0.025028757750988007, 0.03429664298892021, 0.06253837794065475, 0.03127184137701988, 0.07947938144207001, 0.2722935676574707, 0.08197209984064102, 0.052083443850278854, -1.3653508424758911, 0.1943841278553009, -0.11776898056268692, -0.035473305732011795, -0.33424004912376404, 0.06248575076460838, 1.3889358043670654, -0.0076339514926075935, 0.014177338220179081, -0.20150277018547058]} +{"t": 8.354, "q": [-0.15595129132270813, 0.00691654859110713, 0.016190802678465843, 0.31938332319259644, -0.15927013754844666, -0.0035110721364617348, -0.10619919747114182, -0.029512085020542145, 0.040403347462415695, 0.3208235502243042, -0.22602058947086334, 0.02503589354455471, 0.033827926963567734, 0.06254594773054123, 0.031266823410987854, 0.08513593673706055, 0.27694347500801086, 0.08128900080919266, 0.04569585248827934, -1.3560150861740112, 0.19437214732170105, -0.11773303151130676, -0.03567703813314438, -0.33383259177207947, 0.06253368407487869, 1.389510989189148, -0.0076459357514977455, 0.014177338220179081, -0.20149077475070953]} +{"t": 8.3707, "q": [-0.15595129132270813, 0.006890981923788786, 0.016271153464913368, 0.3193918466567993, -0.1592315435409546, -0.003489910392090678, -0.10621623694896698, -0.029503563418984413, 0.04052387550473213, 0.32084059715270996, -0.2260078489780426, 0.025028593838214874, 0.033694010227918625, 0.06254594773054123, 0.031266823410987854, 0.09033709019422531, 0.27956801652908325, 0.08102534711360931, 0.039799612015485764, -1.3435754776000977, 0.19389277696609497, -0.11770906299352646, -0.03562910109758377, -0.33336520195007324, 0.06246178224682808, 1.3900622129440308, -0.0076459357514977455, 0.014153369702398777, -0.20146681368350983]} +{"t": 8.3875, "q": [-0.155959814786911, 0.006882460322231054, 0.016190802678465843, 0.31942594051361084, -0.15918020904064178, -0.0034898605663329363, -0.10617362707853317, -0.029512085020542145, 0.04047030955553055, 0.32088321447372437, -0.2260078489780426, 0.025028593838214874, 0.03373418375849724, 0.06253080815076828, 0.03127685561776161, 0.0941840261220932, 0.28178510069847107, 0.08025835454463959, 0.03627625107765198, -1.33256196975708, 0.19355721771717072, -0.11766112595796585, -0.03542536869645119, -0.3328258991241455, 0.062557652592659, 1.390649437904358, -0.0076459357514977455, 0.014165353961288929, -0.20149077475070953]} +{"t": 8.4042, "q": [-0.15600243210792542, 0.00685689365491271, 0.016164017841219902, 0.3195026218891144, -0.15914593636989594, -0.0034757459070533514, -0.10618215054273605, -0.029520608484745026, 0.040403347462415695, 0.3209599256515503, -0.22600768506526947, 0.025014273822307587, 0.03378775343298912, 0.06251567602157593, 0.03128688409924507, 0.09822271019220352, 0.28373852372169495, 0.07926366478204727, 0.03371162712574005, -1.3209972381591797, 0.19298197329044342, -0.11763715744018555, -0.0354972742497921, -0.33211883902549744, 0.06248575076460838, 1.3913205862045288, -0.0076339514926075935, 0.014165353961288929, -0.20146681368350983]} +{"t": 8.421, "q": [-0.1560109555721283, 0.006873937789350748, 0.016190802678465843, 0.31951966881752014, -0.15913726389408112, -0.0034475557040423155, -0.10619067400693893, -0.029529130086302757, 0.04045691713690758, 0.3209599256515503, -0.22599099576473236, 0.02502843178808689, 0.03374757617712021, 0.06250054389238358, 0.03129691258072853, 0.1025969535112381, 0.28530845046043396, 0.07789746671915054, 0.030607711523771286, -1.308497667312622, 0.19178356230258942, -0.11755326390266418, -0.03573695942759514, -0.33138778805732727, 0.062497735023498535, 1.3915722370147705, -0.0076459357514977455, 0.014165353961288929, -0.20145483314990997]} +{"t": 8.4378, "q": [-0.15600243210792542, 0.006873937789350748, 0.016230978071689606, 0.3195452392101288, -0.15914152562618256, -0.0034405156038701534, -0.10617362707853317, -0.029563218355178833, 0.04049709066748619, 0.3209684193134308, -0.22599099576473236, 0.02502843178808689, 0.033720795065164566, 0.062463052570819855, 0.031293582171201706, 0.10701913386583328, 0.28685441613197327, 0.0755365714430809, 0.027455860748887062, -1.2945001125335693, 0.19030949473381042, -0.11750532686710358, -0.03586878627538681, -0.33062079548835754, 0.06247376650571823, 1.3917161226272583, -0.0076699042692780495, 0.014153369702398777, -0.20144283771514893]} +{"t": 8.4545, "q": [-0.15599390864372253, 0.00685689365491271, 0.0163247212767601, 0.3195452392101288, -0.15912866592407227, -0.003433461533859372, -0.10619067400693893, -0.029580263420939445, 0.0405372679233551, 0.3210025131702423, -0.22597861289978027, 0.025049790740013123, 0.03364044055342674, 0.062477957457304, 0.03130248934030533, 0.11265172064304352, 0.28862807154655457, 0.07192932069301605, 0.022782012820243835, -1.2806822061538696, 0.1877688467502594, -0.11740945279598236, -0.03603656589984894, -0.32984182238578796, 0.06248575076460838, 1.3918958902359009, -0.0076339514926075935, 0.014129401184618473, -0.20144283771514893]} +{"t": 8.4714, "q": [-0.15599390864372253, 0.006839849520474672, 0.0163247212767601, 0.3195708096027374, -0.1591200977563858, -0.0034334459342062473, -0.10618215054273605, -0.029622873291373253, 0.040590837597846985, 0.3210025131702423, -0.22597019374370575, 0.025049708783626556, 0.03356008976697922, 0.06243278086185455, 0.03131364285945892, 0.11814048886299133, 0.2906893789768219, 0.06848984956741333, 0.018323879688978195, -1.2646713256835938, 0.18506041169166565, -0.1173735037446022, -0.036084502935409546, -0.328978955745697, 0.06248575076460838, 1.3920636177062988, -0.0076339514926075935, 0.014165353961288929, -0.20145483314990997]} +{"t": 8.4885, "q": [-0.1559683382511139, 0.006848371122032404, 0.016364896669983864, 0.31956228613853455, -0.15912866592407227, -0.003433461533859372, -0.10619067400693893, -0.02961435168981552, 0.040577445179224014, 0.3209599256515503, -0.22597861289978027, 0.025049790740013123, 0.03327886015176773, 0.062394943088293076, 0.03133871778845787, 0.12323378771543503, 0.29261884093284607, 0.06591323763132095, 0.014584802091121674, -1.250553846359253, 0.18164490163326263, -0.11722969263792038, -0.03622831404209137, -0.3281160891056061, 0.06247376650571823, 1.3922673463821411, -0.0076339514926075935, 0.014165353961288929, -0.20145483314990997]} +{"t": 8.5052, "q": [-0.1559683382511139, 0.006839849520474672, 0.016418464481830597, 0.3195708096027374, -0.1591286063194275, -0.0034193655010312796, -0.10618215054273605, -0.02961435168981552, 0.04064440354704857, 0.32097694277763367, -0.22597001492977142, 0.02503538876771927, 0.033158332109451294, 0.062334634363651276, 0.031359896063804626, 0.12814731895923615, 0.29429662227630615, 0.06374409049749374, 0.01152882445603609, -1.2343991994857788, 0.17637184262275696, -0.11706191301345825, -0.03622831404209137, -0.3274329900741577, 0.06254567205905914, 1.3925789594650269, -0.0076339514926075935, 0.014177338220179081, -0.20146681368350983]} +{"t": 8.5219, "q": [-0.15597686171531677, 0.0068228053860366344, 0.016431856900453568, 0.3195708096027374, -0.1591329127550125, -0.00342642143368721, -0.10618215054273605, -0.029622873291373253, 0.04067118838429451, 0.32097694277763367, -0.22597432136535645, 0.025042589753866196, 0.033185116946697235, 0.06227409467101097, 0.03140001371502876, 0.13258148729801178, 0.29509955644607544, 0.06216217577457428, 0.00999484397470951, -1.2185200452804565, 0.17212942242622375, -0.11694207042455673, -0.03615640848875046, -0.32684576511383057, 0.06254567205905914, 1.3930943012237549, -0.0076339514926075935, 0.014189322479069233, -0.20147879421710968]} +{"t": 8.5388, "q": [-0.15604503452777863, 0.0068228053860366344, 0.016378289088606834, 0.31956228613853455, -0.15912435948848724, -0.0034264058340340853, -0.10618215054273605, -0.029639918357133865, 0.04061761870980263, 0.3209514021873474, -0.22597019374370575, 0.025049708783626556, 0.03326546773314476, 0.06216058135032654, 0.031475238502025604, 0.13630858063697815, 0.29544711112976074, 0.06095176935195923, 0.010066749528050423, -1.202652931213379, 0.16922923922538757, -0.11681023985147476, -0.03624029830098152, -0.32640236616134644, 0.062497735023498535, 1.3942208290100098, -0.0076339514926075935, 0.014177338220179081, -0.20150277018547058]} +{"t": 8.5555, "q": [-0.15607912838459015, 0.00685689365491271, 0.016378289088606834, 0.31956228613853455, -0.1591329127550125, -0.00342642143368721, -0.10619919747114182, -0.029622873291373253, 0.040590837597846985, 0.32094287872314453, -0.22597861289978027, 0.025049790740013123, 0.03326546773314476, 0.0619865283370018, 0.031590577214956284, 0.14010757207870483, 0.2957586944103241, 0.05974136292934418, 0.010354370810091496, -1.1879363059997559, 0.1667005717754364, -0.1167503222823143, -0.03643204644322395, -0.32599490880966187, 0.0625816211104393, 1.3950836658477783, -0.0076339514926075935, 0.014165353961288929, -0.20149077475070953]} +{"t": 8.5723, "q": [-0.15607060492038727, 0.006873937789350748, 0.016405072063207626, 0.31955376267433167, -0.1591329127550125, -0.00342642143368721, -0.10621623694896698, -0.02961435168981552, 0.040590837597846985, 0.32092583179473877, -0.22597432136535645, 0.025042589753866196, 0.03313155099749565, 0.06173737347126007, 0.031708721071481705, 0.1444338858127594, 0.2960582971572876, 0.05800364911556244, 0.010522149503231049, -1.1718894243240356, 0.16298545897006989, -0.11653460562229156, -0.03665974363684654, -0.32562339305877686, 0.062557652592659, 1.3958146572113037, -0.0076339514926075935, 0.014177338220179081, -0.20149077475070953]} +{"t": 8.5893, "q": [-0.1560620814561844, 0.006873937789350748, 0.016405072063207626, 0.31951114535331726, -0.15913717448711395, -0.003419372485950589, -0.10622476041316986, -0.029588785022497177, 0.0406310111284256, 0.320908784866333, -0.22597432136535645, 0.025042589753866196, 0.032836928963661194, 0.061383433640003204, 0.03180238604545593, 0.1489279717206955, 0.2966575026512146, 0.05510346591472626, 0.010486196726560593, -1.1565136909484863, 0.1565139889717102, -0.11641476303339005, -0.03711514547467232, -0.3253357708454132, 0.06264154613018036, 1.3970370292663574, -0.0076459357514977455, 0.014165353961288929, -0.20147879421710968]} +{"t": 8.606, "q": [-0.1560620814561844, 0.006882460322231054, 0.01644524745643139, 0.31951114535331726, -0.15913711488246918, -0.003405276220291853, -0.10621623694896698, -0.029588785022497177, 0.040724754333496094, 0.32084059715270996, -0.22597844898700714, 0.025035470724105835, 0.03259587287902832, 0.06118760257959366, 0.031857021152973175, 0.15285879373550415, 0.29696911573410034, 0.05243098363280296, 0.01043826062232256, -1.1394002437591553, 0.1501503586769104, -0.11637881398200989, -0.037582531571388245, -0.3251679837703705, 0.06254567205905914, 1.3980677127838135, -0.0076459357514977455, 0.014141385443508625, -0.20147879421710968]} +{"t": 8.6228, "q": [-0.15607912838459015, 0.006873937789350748, 0.016498815268278122, 0.3194344639778137, -0.15915417671203613, -0.003391202772036195, -0.10622476041316986, -0.02959730662405491, 0.040738146752119064, 0.32079797983169556, -0.22597861289978027, 0.025049790740013123, 0.03255569934844971, 0.061036597937345505, 0.03192891180515289, 0.15662184357643127, 0.29764020442962646, 0.04981842264533043, 0.010486196726560593, -1.1212440729141235, 0.14591993391513824, -0.11622301489114761, -0.03798999264836311, -0.32510805130004883, 0.06253368407487869, 1.3988347053527832, -0.0076459357514977455, 0.014165353961288929, -0.20147879421710968]} +{"t": 8.6395, "q": [-0.15607060492038727, 0.00685689365491271, 0.016512207686901093, 0.3193577527999878, -0.15915413200855255, -0.0033771065063774586, -0.1062503308057785, -0.02960582822561264, 0.04079171270132065, 0.3207383453845978, -0.22597432136535645, 0.025042589753866196, 0.03230125084519386, 0.06092308461666107, 0.032004132866859436, 0.16060060262680054, 0.29936593770980835, 0.04609132930636406, 0.010546118021011353, -1.100415587425232, 0.14150972664356232, -0.11607920378446579, -0.03870904818177223, -0.32504814863204956, 0.06253368407487869, 1.3993860483169556, -0.0076339514926075935, 0.014165353961288929, -0.20149077475070953]} +{"t": 8.6562, "q": [-0.15608765184879303, 0.006873937789350748, 0.01663273386657238, 0.3193066120147705, -0.15916693210601807, -0.0033700820058584213, -0.10635259002447128, -0.029631394892930984, 0.040912240743637085, 0.32071277499198914, -0.22598721086978912, 0.025064190849661827, 0.03208698332309723, 0.060832180082798004, 0.03207363933324814, 0.1642797589302063, 0.30173882842063904, 0.042268361896276474, 0.010618023574352264, -1.0820796489715576, 0.13681191205978394, -0.11589944362640381, -0.03965580090880394, -0.3250121772289276, 0.0626055896282196, 1.399949312210083, -0.0076339514926075935, 0.014165353961288929, -0.20147879421710968]} +{"t": 8.673, "q": [-0.1560961753129959, 0.00685689365491271, 0.016672909259796143, 0.3191702663898468, -0.15916268527507782, -0.0033771221060305834, -0.10640372335910797, -0.029631394892930984, 0.04099259153008461, 0.32066163420677185, -0.22598274052143097, 0.025042671710252762, 0.031845927238464355, 0.06075664237141609, 0.03211420401930809, 0.1682465374469757, 0.30460304021835327, 0.037930071353912354, 0.010725881904363632, -1.0614428520202637, 0.13049623370170593, -0.11580356955528259, -0.040650490671396255, -0.3249163031578064, 0.06259360909461975, 1.4003926515579224, -0.0076339514926075935, 0.014189322479069233, -0.20150277018547058]} +{"t": 8.6897, "q": [-0.1560961753129959, 0.006873937789350748, 0.016686301678419113, 0.319085031747818, -0.1591711938381195, -0.0033630330581218004, -0.10639519989490509, -0.02961435168981552, 0.040939025580883026, 0.3206019699573517, -0.22598686814308167, 0.025035550817847252, 0.03188610449433327, 0.06069611757993698, 0.03215421736240387, 0.17136242985725403, 0.3071197271347046, 0.034382741898298264, 0.010869692079722881, -1.041980504989624, 0.12524713575839996, -0.11569570749998093, -0.04141748324036598, -0.3248923420906067, 0.06262955814599991, 1.4008959531784058, -0.0076339514926075935, 0.014189322479069233, -0.20147879421710968]} +{"t": 8.7064, "q": [-0.15612174570560455, 0.006873937789350748, 0.016592558473348618, 0.31905096769332886, -0.1591583788394928, -0.0033700664062052965, -0.10639519989490509, -0.02960582822561264, 0.04080510511994362, 0.32061049342155457, -0.2259995937347412, 0.025042833760380745, 0.032180726528167725, 0.06055237352848053, 0.03224924951791763, 0.17375928163528442, 0.3094566762447357, 0.0313027948141098, 0.010893660597503185, -1.0208042860031128, 0.11931494623422623, -0.11567173898220062, -0.04235225170850754, -0.3249163031578064, 0.06250971555709839, 1.402226209640503, -0.0076459357514977455, 0.014201306737959385, -0.20146681368350983]} +{"t": 8.7232, "q": [-0.156147301197052, 0.006882460322231054, 0.01648542284965515, 0.3189998269081116, -0.15916693210601807, -0.0033700820058584213, -0.1063866838812828, -0.029571739956736565, 0.04067118838429451, 0.3206019699573517, -0.22599977254867554, 0.025057170540094376, 0.0324217788875103, 0.06040862947702408, 0.0323442779481411, 0.1757127046585083, 0.31354328989982605, 0.02690458483994007, 0.010977550409734249, -1.0006588697433472, 0.1119326651096344, -0.1155518963932991, -0.04339487850666046, -0.32497623562812805, 0.06256964057683945, 1.4036403894424438, -0.0076339514926075935, 0.014213290996849537, -0.20146681368350983]} +{"t": 8.7399, "q": [-0.15623252093791962, 0.006899504456669092, 0.016391679644584656, 0.31901687383651733, -0.15916693210601807, -0.0033700820058584213, -0.10642929375171661, -0.029512085020542145, 0.04064440354704857, 0.32055938243865967, -0.2260037213563919, 0.025035714730620384, 0.032381605356931686, 0.060181550681591034, 0.03250378370285034, 0.17814551293849945, 0.31803736090660095, 0.022578280419111252, 0.012715263292193413, -0.9804654121398926, 0.10576079040765762, -0.11534816771745682, -0.04476108029484749, -0.3249642550945282, 0.0625816211104393, 1.4048748016357422, -0.0076459357514977455, 0.014249243773519993, -0.20149077475070953]} +{"t": 8.7568, "q": [-0.15623252093791962, 0.006967680994421244, 0.01644524745643139, 0.31895720958709717, -0.15916268527507782, -0.0033771221060305834, -0.10652303695678711, -0.029401298612356186, 0.04071136191487312, 0.32052528858184814, -0.2260037213563919, 0.025035714730620384, 0.032314643263816833, 0.05995447561144829, 0.032663293182849884, 0.18116553127765656, 0.32200413942337036, 0.01883920282125473, 0.013985591009259224, -0.9611948132514954, 0.10179401189088821, -0.11512047052383423, -0.04595950245857239, -0.32492831349372864, 0.06259360909461975, 1.405198335647583, -0.0076459357514977455, 0.014249243773519993, -0.20147879421710968]} +{"t": 8.7737, "q": [-0.15624956786632538, 0.007018813397735357, 0.016418464481830597, 0.318897545337677, -0.15916268527507782, -0.0033771221060305834, -0.10653156042098999, -0.029333122074604034, 0.04069796949625015, 0.3204997181892395, -0.2260037213563919, 0.025035714730620384, 0.032314643263816833, 0.059727393090724945, 0.03282279521226883, 0.18363428115844727, 0.3263064920902252, 0.014452975243330002, 0.015195997431874275, -0.9415766000747681, 0.09734786301851273, -0.1149766594171524, -0.046954195946455, -0.32492831349372864, 0.06265352666378021, 1.4058455228805542, -0.0076339514926075935, 0.014261228032410145, -0.20147879421710968]} +{"t": 8.7907, "q": [-0.15625809133052826, 0.007018813397735357, 0.016418464481830597, 0.3188464343547821, -0.15916268527507782, -0.0033771221060305834, -0.10658268630504608, -0.029230855405330658, 0.04069796949625015, 0.3204571008682251, -0.2260078489780426, 0.025028593838214874, 0.032167334109544754, 0.05944747105240822, 0.03300785645842552, 0.187445268034935, 0.3297339677810669, 0.01077381893992424, 0.015843145549297333, -0.9198012948036194, 0.09108011424541473, -0.11478491127490997, -0.04844023659825325, -0.32488036155700684, 0.06265352666378021, 1.406912088394165, -0.0076339514926075935, 0.0142971808090806, -0.20146681368350983]} +{"t": 8.8075, "q": [-0.1562410444021225, 0.007044380065053701, 0.01645863987505436, 0.31882938742637634, -0.15916693210601807, -0.0033700820058584213, -0.10659120976924896, -0.029171200469136238, 0.040764931589365005, 0.3204230070114136, -0.2259995937347412, 0.025042833760380745, 0.03208698332309723, 0.05922830104827881, 0.03313399478793144, 0.19093267619609833, 0.33308956027030945, 0.006926882080733776, 0.01613076776266098, -0.8993921279907227, 0.0833502858877182, -0.11453323811292648, -0.04971056804060936, -0.3248204290866852, 0.06271345168352127, 1.40729558467865, -0.0076459357514977455, 0.014321149326860905, -0.20144283771514893]} +{"t": 8.8242, "q": [-0.15627513825893402, 0.00703585846349597, 0.016431856900453568, 0.31877824664115906, -0.15915843844413757, -0.003384162439033389, -0.1065741702914238, -0.029145635664463043, 0.04068458080291748, 0.3203718960285187, -0.22601646184921265, 0.02504301443696022, 0.03215394169092178, 0.05900132283568382, 0.033283937722444534, 0.19446802139282227, 0.33663690090179443, 0.0028522456996142864, 0.01629854552447796, -0.8779403567314148, 0.07607585936784744, -0.1143774464726448, -0.050585415214300156, -0.32472455501556396, 0.06270146369934082, 1.407583236694336, -0.0076459357514977455, 0.014345117844641209, -0.20143085718154907]} +{"t": 8.8409, "q": [-0.15627513825893402, 0.00703585846349597, 0.01644524745643139, 0.3186759948730469, -0.15916693210601807, -0.0033700820058584213, -0.1066167801618576, -0.029145635664463043, 0.040751539170742035, 0.3203207552433014, -0.2260078489780426, 0.025028593838214874, 0.03208698332309723, 0.058827418833971024, 0.0333893857896328, 0.19889020919799805, 0.33900976181030273, 0.00013182648399379104, 0.01649029366672039, -0.8568601012229919, 0.06874151527881622, -0.11428157240152359, -0.051544152200222015, -0.32458075881004333, 0.06277336925268173, 1.4077749252319336, -0.0076459357514977455, 0.014369086362421513, -0.20143085718154907]} +{"t": 8.8577, "q": [-0.15627513825893402, 0.007052902597934008, 0.016512207686901093, 0.3186163306236267, -0.15916693210601807, -0.0033700820058584213, -0.10663381963968277, -0.029145635664463043, 0.04080510511994362, 0.3202269971370697, -0.2260204255580902, 0.02502155676484108, 0.03215394169092178, 0.05866842716932297, 0.033503711223602295, 0.20242555439472198, 0.3411189913749695, -0.002948119305074215, 0.01740109547972679, -0.836966335773468, 0.06192249059677124, -0.11422164738178253, -0.052155349403619766, -0.3245208263397217, 0.0628812313079834, 1.4077749252319336, -0.0076459357514977455, 0.014369086362421513, -0.20145483314990997]} +{"t": 8.8744, "q": [-0.1563262641429901, 0.007018813397735357, 0.01647203229367733, 0.3185651898384094, -0.15917544066905975, -0.0033559927251189947, -0.10662530362606049, -0.029205288738012314, 0.040724754333496094, 0.32020995020866394, -0.22601646184921265, 0.02504301443696022, 0.03222090005874634, 0.058562543243169785, 0.03357354924082756, 0.20570921897888184, 0.3432641625404358, -0.005944175645709038, 0.018911106511950493, -0.8155025839805603, 0.0577879324555397, -0.11422164738178253, -0.05245495215058327, -0.32442495226860046, 0.06296511739492416, 1.4078348875045776, -0.0076459357514977455, 0.014405039139091969, -0.20145483314990997]} +{"t": 8.8912, "q": [-0.15631774067878723, 0.0070273359306156635, 0.01648542284965515, 0.31849703192710876, -0.1591712385416031, -0.003377129090949893, -0.10663381963968277, -0.02923937886953354, 0.040738146752119064, 0.3201844096183777, -0.22602058947086334, 0.02503589354455471, 0.03220750764012337, 0.058396149426698685, 0.03368329629302025, 0.20989172160625458, 0.34542131423950195, -0.008988169021904469, 0.019905798137187958, -0.7939189672470093, 0.05283844843506813, -0.11408982425928116, -0.052874401211738586, -0.32423320412635803, 0.06300107389688492, 1.4078948497772217, -0.0076699042692780495, 0.014393054880201817, -0.20145483314990997]} +{"t": 8.908, "q": [-0.15634331107139587, 0.007010291796177626, 0.016512207686901093, 0.318479984998703, -0.15917544066905975, -0.0033559927251189947, -0.10662530362606049, -0.02923937886953354, 0.04079171270132065, 0.3201247453689575, -0.2260204255580902, 0.02502155676484108, 0.03226107731461525, 0.05810118466615677, 0.03387784957885742, 0.21275594830513, 0.3469792604446411, -0.013554158620536327, 0.021032314747571945, -0.7727308869361877, 0.04579172283411026, -0.114053875207901, -0.05303019657731056, -0.3239096403121948, 0.06297710537910461, 1.4079067707061768, -0.0076579200103878975, 0.01441702339798212, -0.20145483314990997]} +{"t": 8.9247, "q": [-0.15635183453559875, 0.0070273359306156635, 0.016431856900453568, 0.31842032074928284, -0.1591797024011612, -0.003348952392116189, -0.10660825669765472, -0.029264943674206734, 0.04069796949625015, 0.3201332688331604, -0.22602473199367523, 0.025028757750988007, 0.032341428101062775, 0.05766262486577034, 0.034157734364271164, 0.2151767611503601, 0.34864509105682373, -0.01870737597346306, 0.021919148042798042, -0.7516985535621643, 0.0373188778758049, -0.11401791870594025, -0.05309011787176132, -0.32352614402770996, 0.06308495998382568, 1.4079188108444214, -0.0076459357514977455, 0.014429006725549698, -0.20145483314990997]} +{"t": 8.9414, "q": [-0.15634331107139587, 0.006993247661739588, 0.016391679644584656, 0.3184373676776886, -0.1591711938381195, -0.0033630330581218004, -0.10659120976924896, -0.029273467138409615, 0.04065779596567154, 0.3201247453689575, -0.2260204255580902, 0.02502155676484108, 0.0324217788875103, 0.05715632811188698, 0.03445417061448097, 0.21742980182170868, 0.34986746311187744, -0.023081617429852486, 0.02196708507835865, -0.732080340385437, 0.0303800106048584, -0.11398196965456009, -0.053174007683992386, -0.32317858934402466, 0.0632048025727272, 1.4079188108444214, -0.0076459357514977455, 0.014429006725549698, -0.20143085718154907]} +{"t": 8.9582, "q": [-0.15636888146400452, 0.007018813397735357, 0.016418464481830597, 0.31846293807029724, -0.15918400883674622, -0.0033559994772076607, -0.10659120976924896, -0.029281988739967346, 0.04071136191487312, 0.3201332688331604, -0.22601215541362762, 0.025035813450813293, 0.03240838646888733, 0.05664244294166565, 0.034755364060401917, 0.21952703595161438, 0.35083818435668945, -0.02672482281923294, 0.022230736911296844, -0.7099934220314026, 0.021919148042798042, -0.11398196965456009, -0.053413692861795425, -0.3227112293243408, 0.06331266462802887, 1.4078948497772217, -0.0076579200103878975, 0.014405039139091969, -0.20144283771514893]} +{"t": 8.9749, "q": [-0.1563774049282074, 0.007010291796177626, 0.016431856900453568, 0.31851404905319214, -0.15917544066905975, -0.0033559927251189947, -0.10659120976924896, -0.029273467138409615, 0.040724754333496094, 0.3201758861541748, -0.2260119765996933, 0.025021474808454514, 0.03244856372475624, 0.05615272745490074, 0.03491845354437828, 0.2211449146270752, 0.3515212833881378, -0.028810078278183937, 0.022530343383550644, -0.687606930732727, 0.016034893691539764, -0.11395800113677979, -0.053533535450696945, -0.3223636746406555, 0.06368417292833328, 1.4078948497772217, -0.0076459357514977455, 0.01441702339798212, -0.20144283771514893]} +{"t": 8.9916, "q": [-0.15636888146400452, 0.007001769263297319, 0.016431856900453568, 0.3185310959815979, -0.1591711938381195, -0.0033630330581218004, -0.10659120976924896, -0.029281988739967346, 0.040764931589365005, 0.32019293308258057, -0.22601628303527832, 0.025028694421052933, 0.032354820519685745, 0.05584530904889107, 0.03489585220813751, 0.22228340804576874, 0.3523961305618286, -0.030104374513030052, 0.023201460018754005, -0.6648368835449219, 0.011181281879544258, -0.11389807611703873, -0.053593456745147705, -0.3221000134944916, 0.0646548941731453, 1.4078948497772217, -0.0076459357514977455, 0.014405039139091969, -0.20143085718154907]} +{"t": 9.0083, "q": [-0.15634331107139587, 0.007018813397735357, 0.01648542284965515, 0.3185651898384094, -0.1591797024011612, -0.003348952392116189, -0.10659120976924896, -0.029273467138409615, 0.04081849753856659, 0.3202184736728668, -0.2260078489780426, 0.025028593838214874, 0.03226107731461525, 0.055628515779972076, 0.034822992980480194, 0.22336198389530182, 0.35393011569976807, -0.03183010220527649, 0.024292023852467537, -0.6431694030761719, 0.0041944789700210094, -0.11379022151231766, -0.05364139378070831, -0.32186034321784973, 0.06543386727571487, 1.4078948497772217, -0.0076339514926075935, 0.014393054880201817, -0.20143085718154907]} +{"t": 9.0251, "q": [-0.156334787607193, 0.007018813397735357, 0.016512207686901093, 0.3185737133026123, -0.1591797024011612, -0.003348952392116189, -0.10659120976924896, -0.029281988739967346, 0.040885455906391144, 0.3202610909938812, -0.22601215541362762, 0.025035813450813293, 0.03208698332309723, 0.05551692470908165, 0.03473712503910065, 0.2244645357131958, 0.3560872972011566, -0.033843450248241425, 0.025478463619947433, -0.6215498447418213, -0.003463441040366888, -0.11369434744119644, -0.05366536229848862, -0.3216685950756073, 0.06600911170244217, 1.4078707695007324, -0.0076339514926075935, 0.014393054880201817, -0.20143085718154907]} +{"t": 9.0418, "q": [-0.1563262641429901, 0.006993247661739588, 0.016552383080124855, 0.31859076023101807, -0.15918394923210144, -0.003341912291944027, -0.10659973323345184, -0.029316077008843422, 0.040925633162260056, 0.32025256752967834, -0.22600802779197693, 0.025042932480573654, 0.03206019848585129, 0.055479660630226135, 0.034714795649051666, 0.22560304403305054, 0.35945484042167664, -0.036491964012384415, 0.02623346820473671, -0.5974016189575195, -0.008700547739863396, -0.11352656781673431, -0.05366536229848862, -0.3215727210044861, 0.0664764940738678, 1.4078348875045776, -0.0076459357514977455, 0.014381070621311665, -0.20144283771514893]} +{"t": 9.0586, "q": [-0.15630923211574554, 0.0069847251288592815, 0.016592558473348618, 0.3185822367668152, -0.1591797024011612, -0.003348952392116189, -0.10660825669765472, -0.029384253546595573, 0.040952417999506, 0.3202696144580841, -0.2260078489780426, 0.025028593838214874, 0.031859319657087326, 0.055479876697063446, 0.03469591215252876, 0.22669360041618347, 0.363829106092453, -0.03984754905104637, 0.0276835598051548, -0.5735170841217041, -0.014225275255739689, -0.11339473724365234, -0.05374924838542938, -0.321464866399765, 0.06665626168251038, 1.4078348875045776, -0.0076459357514977455, 0.014381070621311665, -0.20143085718154907]} +{"t": 9.0755, "q": [-0.1562836617231369, 0.0069847251288592815, 0.016672909259796143, 0.3185737133026123, -0.15918821096420288, -0.003334863344207406, -0.10664234310388565, -0.029409820213913918, 0.04099259153008461, 0.3202610909938812, -0.22601646184921265, 0.02504301443696022, 0.031645048409700394, 0.05554014816880226, 0.0346749946475029, 0.22785606980323792, 0.3683711290359497, -0.04267582669854164, 0.029924610629677773, -0.5492490530014038, -0.02063683606684208, -0.11326291412115097, -0.053881075233221054, -0.3213450014591217, 0.06684800982475281, 1.4078468084335327, -0.0076219672337174416, 0.014369086362421513, -0.20139490067958832]} +{"t": 9.0923, "q": [-0.15625809133052826, 0.007001769263297319, 0.016713086515665054, 0.3185651898384094, -0.15918821096420288, -0.003334863344207406, -0.10663381963968277, -0.029401298612356186, 0.04104616120457649, 0.32025256752967834, -0.22601646184921265, 0.02504301443696022, 0.031350426375865936, 0.05554771050810814, 0.034670017659664154, 0.22909045219421387, 0.37393179535865784, -0.04507267102599144, 0.03305249288678169, -0.5243338346481323, -0.025550367310643196, -0.11320298910140991, -0.054000917822122574, -0.3212251663208008, 0.0670757070183754, 1.407822847366333, -0.0076339514926075935, 0.014393054880201817, -0.20141887664794922]} +{"t": 9.1092, "q": [-0.1562410444021225, 0.007001769263297319, 0.016726477071642876, 0.31851404905319214, -0.15918821096420288, -0.003334863344207406, -0.10664234310388565, -0.02935868687927723, 0.041072942316532135, 0.3202610909938812, -0.22600802779197693, 0.025042932480573654, 0.03109598159790039, 0.05554014816880226, 0.0346749946475029, 0.23033681511878967, 0.37944453954696655, -0.04622315615415573, 0.03643204644322395, -0.4993826746940613, -0.028750156983733177, -0.11311910301446915, -0.0541447289288044, -0.3209735155105591, 0.06723150610923767, 1.4077988862991333, -0.0076339514926075935, 0.014369086362421513, -0.20143085718154907]} +{"t": 9.1259, "q": [-0.15624956786632538, 0.00703585846349597, 0.016726477071642876, 0.31845441460609436, -0.15917544066905975, -0.0033559927251189947, -0.10668495297431946, -0.02929903194308281, 0.04105955362319946, 0.32024404406547546, -0.2260037213563919, 0.025035714730620384, 0.0307477917522192, 0.05554771050810814, 0.034670017659664154, 0.23147530853748322, 0.3865032494068146, -0.04724181443452835, 0.041968755424022675, -0.47093212604522705, -0.03209375590085983, -0.11309513449668884, -0.05438441410660744, -0.32080572843551636, 0.06745920330286026, 1.4078468084335327, -0.0076459357514977455, 0.014345117844641209, -0.20139490067958832]} +{"t": 9.1427, "q": [-0.15625809133052826, 0.007061424199491739, 0.016753261908888817, 0.3184032738208771, -0.15918825566768646, -0.0033489593770354986, -0.10678721964359283, -0.02924790047109127, 0.041099727153778076, 0.3202355206012726, -0.22602058947086334, 0.02503589354455471, 0.030372818931937218, 0.055540040135383606, 0.0346844345331192, 0.23300929367542267, 0.39327433705329895, -0.04746951535344124, 0.0466306209564209, -0.44499826431274414, -0.03564108535647392, -0.11297529190778732, -0.054672036319971085, -0.3206019997596741, 0.06766293197870255, 1.4077988862991333, -0.0076459357514977455, 0.014369086362421513, -0.20138292014598846]} +{"t": 9.1594, "q": [-0.15627513825893402, 0.0070699467323720455, 0.01682022027671337, 0.31823283433914185, -0.15918825566768646, -0.0033489593770354986, -0.10690653324127197, -0.029205288738012314, 0.04116668552160263, 0.32015031576156616, -0.22602473199367523, 0.025028757750988007, 0.030118374153971672, 0.05554749444127083, 0.03468890115618706, 0.23491477966308594, 0.4003210663795471, -0.04754142090678215, 0.05216733366250992, -0.4171708822250366, -0.04102200269699097, -0.11287941783666611, -0.05493569001555443, -0.32048216462135315, 0.06791460514068604, 1.407822847366333, -0.0076459357514977455, 0.014381070621311665, -0.2013469636440277]} +{"t": 9.1763, "q": [-0.15626661479473114, 0.007095512468367815, 0.016913963481783867, 0.31813058257102966, -0.15918825566768646, -0.0033489593770354986, -0.10700879245996475, -0.029205288738012314, 0.04122025519609451, 0.320090651512146, -0.22602902352809906, 0.025035958737134933, 0.02971661649644375, 0.055555056780576706, 0.03468392416834831, 0.2371198832988739, 0.40835049748420715, -0.04779309034347534, 0.0574643611907959, -0.39189615845680237, -0.04544418305158615, -0.11278354376554489, -0.055151402950286865, -0.32033833861351013, 0.06819023936986923, 1.4077988862991333, -0.0076699042692780495, 0.01435710210353136, -0.20131102204322815]} +{"t": 9.193, "q": [-0.15623252093791962, 0.007061424199491739, 0.0169675312936306, 0.31796011328697205, -0.15918394923210144, -0.003341912291944027, -0.1070769727230072, -0.02918824553489685, 0.04131399840116501, 0.31997987627983093, -0.22602488100528717, 0.025043094530701637, 0.029529130086302757, 0.055555056780576706, 0.03468392416834831, 0.23908528685569763, 0.41634395718574524, -0.04806872829794884, 0.0628572627902031, -0.3674722909927368, -0.047805074602365494, -0.11268766969442368, -0.055391088128089905, -0.32011064887046814, 0.0683220699429512, 1.407822847366333, -0.0076699042692780495, 0.01435710210353136, -0.20128704607486725]} +{"t": 9.2098, "q": [-0.1562410444021225, 0.0070699467323720455, 0.017074666917324066, 0.31786638498306274, -0.15918400883674622, -0.0033559994772076607, -0.10713662952184677, -0.029205288738012314, 0.04136756435036659, 0.31993725895881653, -0.22603744268417358, 0.02503603883087635, 0.029529130086302757, 0.055592428892850876, 0.03469681367278099, 0.24097880721092224, 0.42508047819137573, -0.04816460236907005, 0.06762698292732239, -0.3409392237663269, -0.04862000048160553, -0.11256782710552216, -0.055451009422540665, -0.3197990357875824, 0.06847786158323288, 1.4078468084335327, -0.0076459357514977455, 0.01435710210353136, -0.2012510895729065]} +{"t": 9.2265, "q": [-0.15629218518733978, 0.007061424199491739, 0.017061274498701096, 0.31773003935813904, -0.15918825566768646, -0.0033489593770354986, -0.10713662952184677, -0.029222333803772926, 0.04132739081978798, 0.3198094367980957, -0.22604157030582428, 0.02502891980111599, 0.02971661649644375, 0.05559977516531944, 0.03471072018146515, 0.24236896634101868, 0.43361324071884155, -0.0481286495923996, 0.07213304936885834, -0.31605997681617737, -0.0490274652838707, -0.1125079095363617, -0.055451009422540665, -0.3194515109062195, 0.0685737356543541, 1.4078468084335327, -0.0076699042692780495, 0.014369086362421513, -0.20123910903930664]} +{"t": 9.2433, "q": [-0.15630923211574554, 0.007052902597934008, 0.017061274498701096, 0.3175595998764038, -0.1591797024011612, -0.003348952392116189, -0.10716219246387482, -0.029256422072649002, 0.04135417565703392, 0.31969010829925537, -0.22604569792747498, 0.02502180077135563, 0.029944278299808502, 0.05560733750462532, 0.034705743193626404, 0.24385501444339752, 0.44202616810798645, -0.04788896441459656, 0.07695070654153824, -0.2910369038581848, -0.04918326064944267, -0.11240004748106003, -0.05548696219921112, -0.3191039562225342, 0.06870556622743607, 1.4078948497772217, -0.0076699042692780495, 0.014381070621311665, -0.20121514797210693]} +{"t": 9.26, "q": [-0.15629218518733978, 0.0070273359306156635, 0.017061274498701096, 0.3174828886985779, -0.15918821096420288, -0.003334863344207406, -0.10714515298604965, -0.02929903194308281, 0.04132739081978798, 0.3196730613708496, -0.2260458767414093, 0.025036120787262917, 0.029984453693032265, 0.05559977516531944, 0.03471072018146515, 0.2452092319726944, 0.4509783685207367, -0.04808071255683899, 0.08199606835842133, -0.2660258412361145, -0.04923119768500328, -0.11237607896327972, -0.05561878904700279, -0.31870847940444946, 0.06875350326299667, 1.4078948497772217, -0.0076699042692780495, 0.014381070621311665, -0.2012031525373459]} +{"t": 9.2767, "q": [-0.15629218518733978, 0.007052902597934008, 0.017101449891924858, 0.3174828886985779, -0.15918821096420288, -0.003334863344207406, -0.10715366899967194, -0.02930755540728569, 0.041394349187612534, 0.3196219503879547, -0.22604157030582428, 0.02502891980111599, 0.029957670718431473, 0.055584654211997986, 0.03472067043185234, 0.2467551976442337, 0.4582168459892273, -0.04818857088685036, 0.08556737005710602, -0.24229706823825836, -0.049195244908332825, -0.11237607896327972, -0.055870458483695984, -0.3183968961238861, 0.06880144029855728, 1.4078707695007324, -0.0076699042692780495, 0.014393054880201817, -0.20121514797210693]} +{"t": 9.2935, "q": [-0.1563262641429901, 0.0070273359306156635, 0.01715501770377159, 0.3174828886985779, -0.15919245779514313, -0.0033278230112046003, -0.10712810605764389, -0.02936721034348011, 0.041421134024858475, 0.3195026218891144, -0.22604157030582428, 0.02502891980111599, 0.03005141392350197, 0.055584654211997986, 0.03472067043185234, 0.24766600131988525, 0.4647122919559479, -0.04830841347575188, 0.08894691616296768, -0.2197187840938568, -0.04915929213166237, -0.11231616139411926, -0.05603823810815811, -0.3180972933769226, 0.06878945231437683, 1.4079067707061768, -0.0076699042692780495, 0.014393054880201817, -0.2012031525373459]} +{"t": 9.3103, "q": [-0.156334787607193, 0.007001769263297319, 0.017195194959640503, 0.31749141216278076, -0.15921807289123535, -0.0033137474674731493, -0.10711105912923813, -0.02943538688123226, 0.041394349187612534, 0.3194855749607086, -0.2260458767414093, 0.025036120787262917, 0.029984453693032265, 0.055584654211997986, 0.03472067043185234, 0.24785774946212769, 0.47015315294265747, -0.048464205116033554, 0.09179916232824326, -0.20052005350589752, -0.048955559730529785, -0.11232814192771912, -0.05615808069705963, -0.3177737295627594, 0.0688973143696785, 1.4079067707061768, -0.0076699042692780495, 0.014393054880201817, -0.20123910903930664]} +{"t": 9.3272, "q": [-0.15635183453559875, 0.0069847251288592815, 0.01731572113931179, 0.3174402713775635, -0.15922223031520844, -0.0032785239163786173, -0.10711105912923813, -0.02948652021586895, 0.04151487722992897, 0.3194515109062195, -0.22604157030582428, 0.02502891980111599, 0.029971063137054443, 0.055584654211997986, 0.03472067043185234, 0.24773789942264557, 0.4733409583568573, -0.047757137566804886, 0.09419600665569305, -0.18375413119792938, -0.048955559730529785, -0.11232814192771912, -0.05622998625040054, -0.3173782229423523, 0.06898120045661926, 1.4079067707061768, -0.0076699042692780495, 0.014393054880201817, -0.20123910903930664]} +{"t": 9.344, "q": [-0.15634331107139587, 0.0069421143271028996, 0.01744963973760605, 0.3174232244491577, -0.15922647714614868, -0.0032714835833758116, -0.1070769727230072, -0.029563218355178833, 0.041581835597753525, 0.31933218240737915, -0.22603347897529602, 0.02505749650299549, 0.030118374153971672, 0.055569637566804886, 0.03472117707133293, 0.24751020967960358, 0.47452738881111145, -0.04627109318971634, 0.09642507880926132, -0.16848622262477875, -0.049075402319431305, -0.11231616139411926, -0.056182049214839935, -0.3168988823890686, 0.06893326342105865, 1.4079067707061768, -0.0076699042692780495, 0.014405039139091969, -0.2012271285057068]} +{"t": 9.3607, "q": [-0.15634331107139587, 0.006882460322231054, 0.01746303215622902, 0.3174317479133606, -0.1592477411031723, -0.003236273769289255, -0.1070343628525734, -0.029708094894886017, 0.04154166206717491, 0.3192980885505676, -0.2260417491197586, 0.025043239817023277, 0.030198724940419197, 0.055554624646902084, 0.03472169116139412, 0.24753417074680328, 0.47507864236831665, -0.04508465528488159, 0.09926533699035645, -0.1529426872730255, -0.04897952824831009, -0.11232814192771912, -0.056062206625938416, -0.31651538610458374, 0.0689452514052391, 1.4079667329788208, -0.0076699042692780495, 0.01441702339798212, -0.20123910903930664]} +{"t": 9.3775, "q": [-0.15635183453559875, 0.0068228053860366344, 0.01748981513082981, 0.3174317479133606, -0.159260556101799, -0.0032292315736413, -0.10704288631677628, -0.029818881303071976, 0.041595228016376495, 0.3193151354789734, -0.22604157030582428, 0.02502891980111599, 0.030158549547195435, 0.05556218698620796, 0.034716714173555374, 0.2473783791065216, 0.4752824008464813, -0.044377587735652924, 0.10235726833343506, -0.1402873396873474, -0.048763811588287354, -0.11231616139411926, -0.056062206625938416, -0.3160839378833771, 0.0689212828874588, 1.4079786539077759, -0.0076699042692780495, 0.014429006725549698, -0.2012510895729065]} +{"t": 9.3942, "q": [-0.15634331107139587, 0.0068228053860366344, 0.017704086378216743, 0.3174402713775635, -0.15927337110042572, -0.003222198225557804, -0.10705992579460144, -0.029861493036150932, 0.04168897122144699, 0.31934070587158203, -0.2260333150625229, 0.02504315786063671, 0.029863927513360977, 0.05552438274025917, 0.0347415916621685, 0.24649155139923096, 0.4750906527042389, -0.04398210719227791, 0.10479006916284561, -0.12627777457237244, -0.048596031963825226, -0.11234012991189957, -0.056122127920389175, -0.31559258699417114, 0.0689212828874588, 1.4079906940460205, -0.007693872787058353, 0.01441702339798212, -0.20126308500766754]} +{"t": 9.4109, "q": [-0.15631774067878723, 0.0068228053860366344, 0.017918355762958527, 0.31745731830596924, -0.15927337110042572, -0.003222198225557804, -0.10705992579460144, -0.029878536239266396, 0.04186306521296501, 0.3193492293357849, -0.22603347897529602, 0.02505749650299549, 0.029636265709996223, 0.05536613613367081, 0.034798864275217056, 0.24544891715049744, 0.4742158055305481, -0.04374242201447487, 0.10639595240354538, -0.11593539267778397, -0.04869190603494644, -0.11235211044549942, -0.056182049214839935, -0.31508925557136536, 0.06893326342105865, 1.4079906940460205, -0.0076699042692780495, 0.014429006725549698, -0.20126308500766754]} +{"t": 9.4277, "q": [-0.15629218518733978, 0.0068228053860366344, 0.01797192357480526, 0.31749993562698364, -0.1592775136232376, -0.0031869744416326284, -0.10704288631677628, -0.029887059703469276, 0.041930023580789566, 0.31938332319259644, -0.22602902352809906, 0.025035958737134933, 0.029502345249056816, 0.05512537062168121, 0.0348542220890522, 0.24443025887012482, 0.47245410084724426, -0.043478768318891525, 0.1070910394191742, -0.10900851339101791, -0.04884770140051842, -0.11236409842967987, -0.05608617514371872, -0.314633846282959, 0.0689212828874588, 1.4079786539077759, -0.007693872787058353, 0.01441702339798212, -0.2012990266084671]} +{"t": 9.4444, "q": [-0.15630923211574554, 0.006788717117160559, 0.018012098968029022, 0.3175169825553894, -0.15928177535533905, -0.0031799343414604664, -0.10704288631677628, -0.029938191175460815, 0.041916634887456894, 0.3193662762641907, -0.226029172539711, 0.025050295516848564, 0.029689833521842957, 0.05476653203368187, 0.034734275192022324, 0.24270452558994293, 0.46803194284439087, -0.04104597121477127, 0.10730675607919693, -0.1032441034913063, -0.049494851380586624, -0.11235211044549942, -0.05603823810815811, -0.314262330532074, 0.0689212828874588, 1.4079667329788208, -0.0076699042692780495, 0.01441702339798212, -0.2012990266084671]} +{"t": 9.4613, "q": [-0.15630070865154266, 0.0067801945842802525, 0.017945140600204468, 0.3175766170024872, -0.15928177535533905, -0.0031799343414604664, -0.10697470605373383, -0.029938191175460815, 0.04179610684514046, 0.3193918466567993, -0.2260250449180603, 0.025057414546608925, 0.030131764709949493, 0.054304059594869614, 0.03448536619544029, 0.24027173221111298, 0.46477222442626953, -0.04018310829997063, 0.1071389764547348, -0.10119479894638062, -0.05060938373208046, -0.11237607896327972, -0.05603823810815811, -0.3139507472515106, 0.0688973143696785, 1.4079667329788208, -0.0076699042692780495, 0.01441702339798212, -0.20131102204322815]} +{"t": 9.478, "q": [-0.15627513825893402, 0.006771672051399946, 0.017851397395133972, 0.31764480471611023, -0.15929032862186432, -0.0031799410935491323, -0.10692357271909714, -0.029946712777018547, 0.041769322007894516, 0.3193918466567993, -0.2260333150625229, 0.02504315786063671, 0.03042638674378395, 0.053901307284832, 0.03425302729010582, 0.23795877397060394, 0.4607095718383789, -0.039092544466257095, 0.10650380700826645, -0.09955295920372009, -0.05199955403804779, -0.11236409842967987, -0.05595434829592705, -0.3136751055717468, 0.06884937733411789, 1.4079667329788208, -0.0076699042692780495, 0.014393054880201817, -0.201323002576828]} +{"t": 9.4948, "q": [-0.15621548891067505, 0.0067801945842802525, 0.017878180369734764, 0.31777262687683105, -0.15928182005882263, -0.0031940215267241, -0.10689800977706909, -0.029929669573903084, 0.0418228916823864, 0.3194855749607086, -0.22602902352809906, 0.025035958737134933, 0.030479954555630684, 0.053707342594861984, 0.03413637727499008, 0.23581360280513763, 0.45615556836128235, -0.03695935010910034, 0.10590460151433945, -0.09847437590360641, -0.053221944719552994, -0.11236409842967987, -0.0559663325548172, -0.31354328989982605, 0.06884937733411789, 1.4079667329788208, -0.0076699042692780495, 0.014381070621311665, -0.20131102204322815]} +{"t": 9.5117, "q": [-0.15621548891067505, 0.00679723871871829, 0.017891572788357735, 0.3178834319114685, -0.1592775136232376, -0.0031869744416326284, -0.10687243938446045, -0.029955236241221428, 0.0418228916823864, 0.31956228613853455, -0.22602075338363647, 0.025050213560461998, 0.03043977916240692, 0.05372246354818344, 0.034126438200473785, 0.23329691588878632, 0.45053496956825256, -0.03455052152276039, 0.10577277094125748, -0.09827064722776413, -0.05440838262438774, -0.11240004748106003, -0.055930379778146744, -0.3135073184967041, 0.06886135786771774, 1.4079906940460205, -0.0076699042692780495, 0.014405039139091969, -0.201323002576828]} +{"t": 9.5284, "q": [-0.1561984419822693, 0.006754627916961908, 0.017904965206980705, 0.31796011328697205, -0.1592732071876526, -0.0031799187418073416, -0.10687243938446045, -0.029938191175460815, 0.04183628037571907, 0.31964749097824097, -0.22602488100528717, 0.025043094530701637, 0.03043977916240692, 0.05374504625797272, 0.034120988100767136, 0.22986942529678345, 0.44389569759368896, -0.032297488301992416, 0.10567689687013626, -0.09901367127895355, -0.05638577789068222, -0.11237607896327972, -0.05595434829592705, -0.3134833574295044, 0.0688733458518982, 1.4079667329788208, -0.0076699042692780495, 0.014405039139091969, -0.201323002576828]} +{"t": 9.5451, "q": [-0.15618139505386353, 0.006805761251598597, 0.017851397395133972, 0.3180794417858124, -0.1592690646648407, -0.0032151511404663324, -0.10686391592025757, -0.02990410290658474, 0.04180949926376343, 0.31984350085258484, -0.22601233422756195, 0.02505013346672058, 0.03039960376918316, 0.05373012647032738, 0.03411201387643814, 0.22650185227394104, 0.43545880913734436, -0.028869997709989548, 0.10477808117866516, -0.1014224961400032, -0.06040049344301224, -0.11238806694746017, -0.05595434829592705, -0.31339946389198303, 0.06884937733411789, 1.4079667329788208, -0.0076699042692780495, 0.014405039139091969, -0.201323002576828]} +{"t": 9.562, "q": [-0.15616434812545776, 0.006848371122032404, 0.017838004976511, 0.3183010220527649, -0.15926481783390045, -0.0032221912406384945, -0.10682982951402664, -0.02984444797039032, 0.04180949926376343, 0.31987759470939636, -0.22601233422756195, 0.02505013346672058, 0.030546914786100388, 0.05361812189221382, 0.03405417129397392, 0.2235177904367447, 0.42409777641296387, -0.02231462672352791, 0.10366354882717133, -0.10622817277908325, -0.06477473676204681, -0.11242401599884033, -0.055702678859233856, -0.31329160928726196, 0.06881342083215714, 1.4079546928405762, -0.0076459357514977455, 0.014405039139091969, -0.2013469636440277]} +{"t": 9.5787, "q": [-0.15617287158966064, 0.006839849520474672, 0.01763712614774704, 0.3184885084629059, -0.15926051139831543, -0.003215144155547023, -0.10665086656808853, -0.029827404767274857, 0.041622012853622437, 0.32006508111953735, -0.22601646184921265, 0.02504301443696022, 0.03143078088760376, 0.0534169040620327, 0.033914145082235336, 0.21968282759189606, 0.4128086268901825, -0.014968297444283962, 0.1026448905467987, -0.11002717167139053, -0.0695204883813858, -0.11245997250080109, -0.054983627051115036, -0.31329160928726196, 0.06875350326299667, 1.4079307317733765, -0.0076459357514977455, 0.014405039139091969, -0.2013469636440277]} +{"t": 9.5955, "q": [-0.15615582466125488, 0.0068228053860366344, 0.017208585515618324, 0.3186248540878296, -0.159256249666214, -0.0032221844885498285, -0.10639519989490509, -0.02985296957194805, 0.0412738211452961, 0.3201247453689575, -0.22600802779197693, 0.025042932480573654, 0.03256909176707268, 0.05334354192018509, 0.033756013959646225, 0.21539248526096344, 0.40145957469940186, -0.007022756151854992, 0.10048773139715195, -0.11772104352712631, -0.07354719191789627, -0.11247195303440094, -0.053940996527671814, -0.31331557035446167, 0.06868159770965576, 1.4079786539077759, -0.0076459357514977455, 0.014429006725549698, -0.20135895907878876]} +{"t": 9.6124, "q": [-0.15617287158966064, 0.0067801945842802525, 0.016739869490265846, 0.3187015652656555, -0.15924343466758728, -0.0032292178366333246, -0.10629294067621231, -0.029887059703469276, 0.040885455906391144, 0.3202184736728668, -0.22601646184921265, 0.02504301443696022, 0.033185116946697235, 0.05338217318058014, 0.033655643463134766, 0.21074260771274567, 0.38972699642181396, 0.0028282771818339825, 0.09909755736589432, -0.12627777457237244, -0.0791318416595459, -0.11245997250080109, -0.0532459132373333, -0.31331557035446167, 0.06869357824325562, 1.4079906940460205, -0.0076459357514977455, 0.014405039139091969, -0.2013709396123886]} +{"t": 9.6291, "q": [-0.1561984419822693, 0.006746106315404177, 0.016431856900453568, 0.31882938742637634, -0.15923073887825012, -0.0032644434832036495, -0.1062503308057785, -0.029895581305027008, 0.04067118838429451, 0.3203292787075043, -0.22601646184921265, 0.02504301443696022, 0.033694010227918625, 0.05339004471898079, 0.03362235054373741, 0.20596089959144592, 0.3771076202392578, 0.012727247551083565, 0.09827064722776413, -0.13609285652637482, -0.08616658300161362, -0.11245997250080109, -0.052982259541749954, -0.3133515417575836, 0.06865762919187546, 1.4079906940460205, -0.0076459357514977455, 0.01441702339798212, -0.2013709396123886]} +{"t": 9.6458, "q": [-0.15621548891067505, 0.006814282853156328, 0.016391679644584656, 0.31910207867622375, -0.15921372175216675, -0.003292613197118044, -0.10623328387737274, -0.029827404767274857, 0.0406310111284256, 0.3204485774040222, -0.2259911745786667, 0.02504275180399418, 0.033707402646541595, 0.053323011845350266, 0.03357258439064026, 0.20223380625247955, 0.3640807569026947, 0.02329733408987522, 0.09648499637842178, -0.14940734207630157, -0.09194297343492508, -0.11247195303440094, -0.05303019657731056, -0.31331557035446167, 0.06868159770965576, 1.407942771911621, -0.0076459357514977455, 0.014405039139091969, -0.2013709396123886]} +{"t": 9.6627, "q": [-0.15624956786632538, 0.006805761251598597, 0.016351504251360893, 0.3194088935852051, -0.159217968583107, -0.003285572864115238, -0.10612249374389648, -0.029767749831080437, 0.04064440354704857, 0.32051676511764526, -0.22598274052143097, 0.025042671710252762, 0.033827926963567734, 0.05324147269129753, 0.033476077020168304, 0.19850671291351318, 0.35236018896102905, 0.03239336237311363, 0.09586181491613388, -0.1614874303340912, -0.09555022418498993, -0.11248394101858139, -0.053054165095090866, -0.3133275806903839, 0.06865762919187546, 1.4079546928405762, -0.0076339514926075935, 0.014464959502220154, -0.20139490067958832]} +{"t": 9.6794, "q": [-0.15620696544647217, 0.0068228053860366344, 0.016351504251360893, 0.3195793330669403, -0.159217968583107, -0.003285572864115238, -0.10607988387346268, -0.029759226366877556, 0.04064440354704857, 0.3207383453845978, -0.22597432136535645, 0.025042589753866196, 0.0336136594414711, 0.053227268159389496, 0.033401008695364, 0.19577430188655853, 0.33995652198791504, 0.04188486561179161, 0.09576594084501266, -0.17387911677360535, -0.09891779720783234, -0.11249592155218124, -0.05309011787176132, -0.3133755028247833, 0.0685737356543541, 1.4079307317733765, -0.0076459357514977455, 0.01441702339798212, -0.20139490067958832]} +{"t": 9.6961, "q": [-0.15621548891067505, 0.006831326987594366, 0.016391679644584656, 0.31979238986968994, -0.159217968583107, -0.003285572864115238, -0.10608840733766556, -0.02973366156220436, 0.040751539170742035, 0.3207894563674927, -0.22596605122089386, 0.02505684643983841, 0.03347973898053169, 0.053212251514196396, 0.0334014929831028, 0.193161740899086, 0.3275168836116791, 0.04885968565940857, 0.09587380290031433, -0.18980616331100464, -0.10246512293815613, -0.11249592155218124, -0.05307813361287117, -0.3133515417575836, 0.06863366067409515, 1.4079307317733765, -0.0076699042692780495, 0.014393054880201817, -0.20140689611434937]} +{"t": 9.7129, "q": [-0.15622399747371674, 0.006848371122032404, 0.016431856900453568, 0.3198179602622986, -0.1592094749212265, -0.003299653297290206, -0.1060713604092598, -0.02972513809800148, 0.04081849753856659, 0.3208320736885071, -0.22594954073429108, 0.025085324421525, 0.033345818519592285, 0.05315246805548668, 0.0333750918507576, 0.19050124287605286, 0.3147057592868805, 0.05442036688327789, 0.09607753157615662, -0.2064642310142517, -0.10770223289728165, -0.11261576414108276, -0.05289836972951889, -0.31329160928726196, 0.0686216726899147, 1.4079188108444214, -0.0076459357514977455, 0.014393054880201817, -0.2013709396123886]} +{"t": 9.7297, "q": [-0.15622399747371674, 0.006814282853156328, 0.01645863987505436, 0.31982648372650146, -0.15921372175216675, -0.003292613197118044, -0.1060713604092598, -0.029742183163762093, 0.040764931589365005, 0.3208576440811157, -0.22591203451156616, 0.025120776146650314, 0.03331903740763664, 0.05289087072014809, 0.03326549381017685, 0.18784074485301971, 0.2983233332633972, 0.06197042763233185, 0.09649698436260223, -0.22463232278823853, -0.11248394101858139, -0.11265172064304352, -0.05257479473948479, -0.31299200654029846, 0.06863366067409515, 1.4079307317733765, -0.0076459357514977455, 0.014381070621311665, -0.20140689611434937]} +{"t": 9.7464, "q": [-0.15625809133052826, 0.0068228053860366344, 0.016498815268278122, 0.3198179602622986, -0.15921366214752197, -0.0032785169314593077, -0.1061139702796936, -0.029750704765319824, 0.040885455906391144, 0.32084912061691284, -0.22591616213321686, 0.025113657116889954, 0.033211901783943176, 0.05225517228245735, 0.033035751432180405, 0.18643859028816223, 0.28208470344543457, 0.06996390968561172, 0.09795905649662018, -0.2430400848388672, -0.11477292329072952, -0.11267568916082382, -0.052395034581422806, -0.3122609853744507, 0.06850183010101318, 1.4079546928405762, -0.0076459357514977455, 0.014405039139091969, -0.2013469636440277]} +{"t": 9.7631, "q": [-0.1562410444021225, 0.0068228053860366344, 0.016538990661501884, 0.3197668194770813, -0.15922223031520844, -0.0032785239163786173, -0.10614806413650513, -0.029767749831080437, 0.040885455906391144, 0.3207724392414093, -0.22591185569763184, 0.025106456130743027, 0.03309137374162674, 0.05152119696140289, 0.0328415222465992, 0.185971200466156, 0.26723623275756836, 0.0776338130235672, 0.09906160831451416, -0.2597820460796356, -0.11600729823112488, -0.11284346133470535, -0.05229916051030159, -0.3114340603351593, 0.0682981014251709, 1.4079667329788208, -0.0076339514926075935, 0.014381070621311665, -0.20140689611434937]} +{"t": 9.7799, "q": [-0.15622399747371674, 0.006831326987594366, 0.016565775498747826, 0.3196815848350525, -0.15923498570919037, -0.003257403150200844, -0.10613101720809937, -0.0297847930341959, 0.040912240743637085, 0.32070425152778625, -0.2259330153465271, 0.025113819167017937, 0.03294406458735466, 0.050567660480737686, 0.032800305634737015, 0.1853959709405899, 0.25135713815689087, 0.08518387377262115, 0.09997240453958511, -0.2789088785648346, -0.11749334633350372, -0.11305917799472809, -0.05231114476919174, -0.31052327156066895, 0.06819023936986923, 1.4079546928405762, -0.00760998297482729, 0.014405039139091969, -0.20139490067958832]} +{"t": 9.7966, "q": [-0.1562410444021225, 0.00679723871871829, 0.016565775498747826, 0.3195452392101288, -0.15924349427223206, -0.003243313869461417, -0.10614806413650513, -0.02979331463575363, 0.040885455906391144, 0.3206275403499603, -0.2259371429681778, 0.025106681510806084, 0.03294406458735466, 0.04955289140343666, 0.03286433964967728, 0.18416158854961395, 0.23593343794345856, 0.09290171414613724, 0.1007753536105156, -0.29684925079345703, -0.11950669437646866, -0.11317902058362961, -0.05228717625141144, -0.3095405399799347, 0.0680224597454071, 1.407942771911621, -0.0076459357514977455, 0.01441702339798212, -0.20138292014598846]} +{"t": 9.8134, "q": [-0.15625809133052826, 0.006805761251598597, 0.016538990661501884, 0.31937479972839355, -0.1592477411031723, -0.003236273769289255, -0.10610545426607132, -0.02979331463575363, 0.04084528237581253, 0.32048267126083374, -0.2259371429681778, 0.025106681510806084, 0.03313155099749565, 0.04860549420118332, 0.03294983133673668, 0.18243585526943207, 0.22221150994300842, 0.09996042400598526, 0.10154233872890472, -0.3151851296424866, -0.12178369611501694, -0.11321497708559036, -0.052155349403619766, -0.3086656928062439, 0.06785468012094498, 1.4079786539077759, -0.0076459357514977455, 0.01441702339798212, -0.20140689611434937]} +{"t": 9.8301, "q": [-0.15630923211574554, 0.006788717117160559, 0.01647203229367733, 0.31922993063926697, -0.15925200283527374, -0.0032292334362864494, -0.10614806413650513, -0.029810359701514244, 0.04081849753856659, 0.3204059600830078, -0.2259497046470642, 0.02509964443743229, 0.03311815857887268, 0.047543641179800034, 0.033231351524591446, 0.18041053414344788, 0.20712336897850037, 0.1080377921462059, 0.10260893404483795, -0.33288583159446716, -0.1245640367269516, -0.11362244188785553, -0.05223923921585083, -0.3078148365020752, 0.06771086901426315, 1.407942771911621, -0.0076339514926075935, 0.01441702339798212, -0.20144283771514893]} +{"t": 9.8468, "q": [-0.15631774067878723, 0.006805761251598597, 0.01647203229367733, 0.3191191256046295, -0.15925200283527374, -0.0032292334362864494, -0.10618215054273605, -0.029810359701514244, 0.040764931589365005, 0.3203633725643158, -0.22595812380313873, 0.025099724531173706, 0.0330645889043808, 0.046381786465644836, 0.03373732790350914, 0.17860090732574463, 0.19404856860637665, 0.11537213623523712, 0.10360362380743027, -0.3501790761947632, -0.127560093998909, -0.11380220204591751, -0.0523710660636425, -0.3070598244667053, 0.06765095144510269, 1.407942771911621, -0.0076339514926075935, 0.01444099098443985, -0.20145483314990997]} +{"t": 9.8636, "q": [-0.15634331107139587, 0.006839849520474672, 0.01647203229367733, 0.31895720958709717, -0.159256249666214, -0.0032221844885498285, -0.10621623694896698, -0.02979331463575363, 0.040738146752119064, 0.32025256752967834, -0.22596673667430878, 0.025114145129919052, 0.03309137374162674, 0.04503161087632179, 0.03430887684226036, 0.17618009448051453, 0.1810816377401352, 0.12131631374359131, 0.10366354882717133, -0.3691261112689972, -0.130604088306427, -0.11393403261899948, -0.052383050322532654, -0.306340754032135, 0.06756706535816193, 1.4079546928405762, -0.0076459357514977455, 0.014429006725549698, -0.20146681368350983]} +{"t": 9.8803, "q": [-0.156334787607193, 0.006831326987594366, 0.01647203229367733, 0.3187697231769562, -0.15926475822925568, -0.0032081040553748608, -0.10624180734157562, -0.02977627143263817, 0.04071136191487312, 0.3202269971370697, -0.22596655786037445, 0.025099806487560272, 0.0330645889043808, 0.0437869094312191, 0.034867189824581146, 0.17332784831523895, 0.1681506633758545, 0.12712866067886353, 0.10375942289829254, -0.3893435001373291, -0.1327013224363327, -0.11423363536596298, -0.05231114476919174, -0.3055378198623657, 0.06757904589176178, 1.4079906940460205, -0.0076459357514977455, 0.014429006725549698, -0.20143085718154907]} +{"t": 9.8972, "q": [-0.15634331107139587, 0.00685689365491271, 0.01647203229367733, 0.31865042448043823, -0.15926051139831543, -0.003215144155547023, -0.10628441721200943, -0.029742183163762093, 0.040751539170742035, 0.32020145654678345, -0.22596673667430878, 0.025114145129919052, 0.03293067216873169, 0.042579252272844315, 0.035493507981300354, 0.1703677475452423, 0.15610651671886444, 0.1333245038986206, 0.10402307659387589, -0.40763142704963684, -0.13331252336502075, -0.11450926959514618, -0.05229916051030159, -0.3047468662261963, 0.06753110885620117, 1.4079667329788208, -0.0076339514926075935, 0.01444099098443985, -0.20146681368350983]} +{"t": 9.914, "q": [-0.15636035799980164, 0.006865415256470442, 0.01647203229367733, 0.31846293807029724, -0.15926910936832428, -0.003229238325729966, -0.106344074010849, -0.029708094894886017, 0.040778324007987976, 0.3200821280479431, -0.22597499191761017, 0.02509990520775318, 0.032676223665475845, 0.041455529630184174, 0.03599916771054268, 0.1675993949174881, 0.1444099098443985, 0.13827398419380188, 0.10455038398504257, -0.42695000767707825, -0.13349229097366333, -0.11459316313266754, -0.05228717625141144, -0.3038240671157837, 0.06749515980482101, 1.4079906940460205, -0.0076459357514977455, 0.01444099098443985, -0.20145483314990997]} +{"t": 9.9307, "q": [-0.15634331107139587, 0.006873937789350748, 0.016552383080124855, 0.31826692819595337, -0.159260556101799, -0.0032292315736413, -0.10644633322954178, -0.02967400662600994, 0.040912240743637085, 0.31996282935142517, -0.2259751558303833, 0.02511422522366047, 0.031859319657087326, 0.04052109643816948, 0.0363348126411438, 0.1657538264989853, 0.1338757872581482, 0.14267219603061676, 0.10496982932090759, -0.4448065161705017, -0.13318069279193878, -0.11473697423934937, -0.05240701511502266, -0.30338066816329956, 0.06749515980482101, 1.407942771911621, -0.0076339514926075935, 0.014429006725549698, -0.20143085718154907]} +{"t": 9.9475, "q": [-0.1563262641429901, 0.006899504456669092, 0.016713086515665054, 0.3182413578033447, -0.159260556101799, -0.0032292315736413, -0.10651451349258423, -0.029622873291373253, 0.041072942316532135, 0.31987759470939636, -0.22597531974315643, 0.025128545239567757, 0.03110937401652336, 0.03986545652151108, 0.036591190844774246, 0.16411198675632477, 0.12450411915779114, 0.1476576328277588, 0.10574880242347717, -0.4603860080242157, -0.13306085765361786, -0.11488078534603119, -0.05251487344503403, -0.30310502648353577, 0.06751912832260132, 1.4079307317733765, -0.0076459357514977455, 0.01441702339798212, -0.20144283771514893]} +{"t": 9.9643, "q": [-0.1562836617231369, 0.006925070192664862, 0.017061274498701096, 0.3182498812675476, -0.15927757322788239, -0.003201061859726906, -0.10655712336301804, -0.02959730662405491, 0.04128721356391907, 0.31974977254867554, -0.22597911953926086, 0.02509278617799282, 0.030493346974253654, 0.03939076140522957, 0.03676769509911537, 0.16212259232997894, 0.11443736404180527, 0.15356586873531342, 0.10722286254167557, -0.47644487023353577, -0.13271330296993256, -0.11500062793493271, -0.052383050322532654, -0.30291327834129333, 0.06745920330286026, 1.4079307317733765, -0.0076339514926075935, 0.01441702339798212, -0.20145483314990997]} +{"t": 9.981, "q": [-0.1562836617231369, 0.006959159392863512, 0.01714162714779377, 0.3182157874107361, -0.15927331149578094, -0.0032081108074635267, -0.10656564682722092, -0.029571739956736565, 0.04138095676898956, 0.31970715522766113, -0.2259751558303833, 0.02511422522366047, 0.029877319931983948, 0.03908819705247879, 0.037020184099674225, 0.16050472855567932, 0.10687532275915146, 0.15695740282535553, 0.10963169485330582, -0.4895915389060974, -0.13258148729801178, -0.11506054550409317, -0.05219130218029022, -0.3025777041912079, 0.06743523478507996, 1.4079188108444214, -0.00760998297482729, 0.01441702339798212, -0.20145483314990997]} +{"t": 9.998, "q": [-0.15630923211574554, 0.006959159392863512, 0.017342504113912582, 0.31799420714378357, -0.15928182005882263, -0.0031940215267241, -0.10676165670156479, -0.029588785022497177, 0.04151487722992897, 0.31969010829925537, -0.22599200904369354, 0.025114387273788452, 0.029328251257538795, 0.039011500775814056, 0.03721078485250473, 0.15962988138198853, 0.1008232906460762, 0.1586112231016159, 0.1119086965918541, -0.5007608532905579, -0.13238973915576935, -0.11506054550409317, -0.052095428109169006, -0.3019425570964813, 0.06745920330286026, 1.4079307317733765, -0.0076339514926075935, 0.01441702339798212, -0.20145483314990997]} +{"t": 10.0147, "q": [-0.15630923211574554, 0.006950636859983206, 0.017610343173146248, 0.31768742203712463, -0.15926475822925568, -0.0032081040553748608, -0.10700027644634247, -0.02960582822561264, 0.04168897122144699, 0.3196389973163605, -0.22598788142204285, 0.025121508166193962, 0.028805967420339584, 0.03912275284528732, 0.037382759153842926, 0.15954598784446716, 0.09644904732704163, 0.1598336100578308, 0.11380220204591751, -0.5078794956207275, -0.13231782615184784, -0.11508451402187347, -0.05210741236805916, -0.30153509974479675, 0.06743523478507996, 1.407882809638977, -0.00760998297482729, 0.01441702339798212, -0.20145483314990997]} +{"t": 10.0315, "q": [-0.15629218518733978, 0.006967680994421244, 0.017690693959593773, 0.3175084590911865, -0.15927757322788239, -0.003201061859726906, -0.10716219246387482, -0.02959730662405491, 0.04178271442651749, 0.31960490345954895, -0.22600489854812622, 0.025135990232229233, 0.028189940378069878, 0.03949574753642082, 0.037694741040468216, 0.15965384244918823, 0.0944836288690567, 0.1597377359867096, 0.11589944362640381, -0.5130206942558289, -0.13243767619132996, -0.11513245105743408, -0.05216733366250992, -0.301223486661911, 0.0673992857336998, 1.4079067707061768, -0.00760998297482729, 0.014369086362421513, -0.20145483314990997]} +{"t": 10.0483, "q": [-0.15629218518733978, 0.007001769263297319, 0.017704086378216743, 0.3173891305923462, -0.1592690646648407, -0.0032151511404663324, -0.1072644591331482, -0.029520608484745026, 0.041742537170648575, 0.3195878565311432, -0.22603002190589905, 0.025121914222836494, 0.027439994737505913, 0.03986196964979172, 0.03791719302535057, 0.15972575545310974, 0.09492705017328262, 0.15955796837806702, 0.118248350918293, -0.5157771110534668, -0.13264140486717224, -0.11519237607717514, -0.05229916051030159, -0.30111563205718994, 0.0673992857336998, 1.407882809638977, -0.00760998297482729, 0.014393054880201817, -0.20146681368350983]} +{"t": 10.065, "q": [-0.15629218518733978, 0.007104035001248121, 0.017730869352817535, 0.31726130843162537, -0.15926481783390045, -0.0032221912406384945, -0.10737524926662445, -0.02935868687927723, 0.041755929589271545, 0.31955376267433167, -0.2260381132364273, 0.025093337520956993, 0.02687753550708294, 0.04028872027993202, 0.038071781396865845, 0.15977369248867035, 0.0960056260228157, 0.15940217673778534, 0.12010590732097626, -0.5170474052429199, -0.1327013224363327, -0.11537213623523712, -0.0523710660636425, -0.30118754506111145, 0.0673992857336998, 1.4079067707061768, -0.00760998297482729, 0.014393054880201817, -0.20146681368350983]} +{"t": 10.0818, "q": [-0.1562836617231369, 0.007172211539000273, 0.017757654190063477, 0.3172442615032196, -0.15926051139831543, -0.003215144155547023, -0.10742638260126114, -0.029085980728268623, 0.041755929589271545, 0.31955376267433167, -0.2260548174381256, 0.02507917955517769, 0.026435602456331253, 0.04083498194813728, 0.038279540836811066, 0.16042083501815796, 0.09674865007400513, 0.15931828320026398, 0.12168782204389572, -0.5168676376342773, -0.1327252984046936, -0.11546801030635834, -0.052442967891693115, -0.30123549699783325, 0.0674232542514801, 1.4078707695007324, -0.00760998297482729, 0.014393054880201817, -0.20146681368350983]} +{"t": 10.0987, "q": [-0.15627513825893402, 0.007282999809831381, 0.017704086378216743, 0.3172357380390167, -0.1592606008052826, -0.0032433276064693928, -0.10749455541372299, -0.028787706047296524, 0.041769322007894516, 0.31951114535331726, -0.22607149183750153, 0.025065021589398384, 0.026140980422496796, 0.04155376926064491, 0.03850652649998665, 0.16166719794273376, 0.10042780637741089, 0.15912654995918274, 0.12325775623321533, -0.5157171487808228, -0.1330488622188568, -0.11553991585969925, -0.05245495215058327, -0.30121150612831116, 0.06747119128704071, 1.407882809638977, -0.0076339514926075935, 0.014393054880201817, -0.20146681368350983]} +{"t": 10.1154, "q": [-0.15629218518733978, 0.007393787149339914, 0.017744261771440506, 0.31721869111061096, -0.159260556101799, -0.0032292315736413, -0.10760534554719925, -0.02841273322701454, 0.04183628037571907, 0.3195026218891144, -0.2260672003030777, 0.025057820603251457, 0.0260472372174263, 0.04262642189860344, 0.03861536085605621, 0.16254204511642456, 0.10426276177167892, 0.15899471938610077, 0.1248396709561348, -0.512553334236145, -0.13327656686306, -0.1155518963932991, -0.05243098363280296, -0.301223486661911, 0.06745920330286026, 1.4078707695007324, -0.00760998297482729, 0.014381070621311665, -0.20149077475070953]} +{"t": 10.1322, "q": [-0.15629218518733978, 0.00736822048202157, 0.01779782958328724, 0.31722721457481384, -0.15925204753875732, -0.003243320854380727, -0.10769056528806686, -0.028148546814918518, 0.041916634887456894, 0.319528192281723, -0.2260838747024536, 0.025043664500117302, 0.025832965970039368, 0.04420895129442215, 0.038747526705265045, 0.16348880529403687, 0.10851716250181198, 0.15988154709339142, 0.12658937275409698, -0.507699728012085, -0.13350427150726318, -0.1155279278755188, -0.05257479473948479, -0.3011995255947113, 0.06738729774951935, 1.4079067707061768, -0.00760998297482729, 0.014393054880201817, -0.20145483314990997]} +{"t": 10.1491, "q": [-0.15626661479473114, 0.007402308750897646, 0.01781122200191021, 0.3172357380390167, -0.1592521071434021, -0.0032574080396443605, -0.10769056528806686, -0.027952538803219795, 0.04194341599941254, 0.3195452392101288, -0.2260962724685669, 0.025022288784384727, 0.0258865337818861, 0.04628705233335495, 0.03884467855095863, 0.16496285796165466, 0.11473697423934937, 0.16057662665843964, 0.12805144488811493, -0.5009286403656006, -0.1338518112897873, -0.11551594734191895, -0.05259876325726509, -0.301223486661911, 0.06733936071395874, 1.4079188108444214, -0.00760998297482729, 0.014381070621311665, -0.20147879421710968]} +{"t": 10.1659, "q": [-0.15625809133052826, 0.007470486219972372, 0.017838004976511, 0.31722721457481384, -0.1592521071434021, -0.0032574080396443605, -0.10781839489936829, -0.0278587955981493, 0.04202376678586006, 0.3195793330669403, -0.22612519562244415, 0.02497243508696556, 0.025739222764968872, 0.0482688769698143, 0.03876867517828941, 0.16712002456188202, 0.12201140075922012, 0.1603369563817978, 0.12881843745708466, -0.49342650175094604, -0.13407951593399048, -0.1155279278755188, -0.05259876325726509, -0.3011995255947113, 0.06733936071395874, 1.4079546928405762, -0.007574030198156834, 0.01435710210353136, -0.2015267312526703]} +{"t": 10.1826, "q": [-0.15622399747371674, 0.00748753035441041, 0.01795853115618229, 0.3172357380390167, -0.1592435985803604, -0.003271497320383787, -0.10787805169820786, -0.02780766226351261, 0.04215768724679947, 0.3196219503879547, -0.22612105309963226, 0.024979570880532265, 0.02551156096160412, 0.05066398158669472, 0.038605619221925735, 0.16951686143875122, 0.12999288737773895, 0.16026504337787628, 0.12887835502624512, -0.4830721318721771, -0.13466674089431763, -0.11551594734191895, -0.052670668810606, -0.30141523480415344, 0.06725547462701797, 1.4079906940460205, -0.007574030198156834, 0.01444099098443985, -0.20156268775463104]} +{"t": 10.1994, "q": [-0.15621548891067505, 0.007504574488848448, 0.01798531599342823, 0.31726983189582825, -0.15923509001731873, -0.003285577753558755, -0.10791213810443878, -0.027765052393078804, 0.04218447208404541, 0.31965601444244385, -0.22611676156520844, 0.024972369894385338, 0.025417817756533623, 0.052707236260175705, 0.03835298866033554, 0.1708471179008484, 0.138393834233284, 0.16016916930675507, 0.1288543939590454, -0.4720945954322815, -0.13533785939216614, -0.1155039593577385, -0.05271860584616661, -0.30213430523872375, 0.06720753759145737, 1.408170461654663, -0.007574030198156834, 0.01441702339798212, -0.2015746682882309]} +{"t": 10.2161, "q": [-0.15620696544647217, 0.0075386627577245235, 0.01795853115618229, 0.3172527849674225, -0.1592223346233368, -0.0033067071344703436, -0.10792918503284454, -0.02767983078956604, 0.04215768724679947, 0.3196815848350525, -0.22611676156520844, 0.024972369894385338, 0.02551156096160412, 0.05486069992184639, 0.037630751729011536, 0.17175792157649994, 0.1474778801202774, 0.15919844806194305, 0.12863866984844208, -0.4594392478466034, -0.1359250843524933, -0.1155279278755188, -0.052742574363946915, -0.30345258116722107, 0.06718356907367706, 1.4092130661010742, -0.007574030198156834, 0.01444099098443985, -0.2015986442565918]} +{"t": 10.2329, "q": [-0.15618139505386353, 0.007530141156166792, 0.01797192357480526, 0.3172954022884369, -0.15920096635818481, -0.0033137425780296326, -0.10791213810443878, -0.027577565982937813, 0.04215768724679947, 0.31974124908447266, -0.22612088918685913, 0.024965234100818634, 0.025605304166674614, 0.05640712007880211, 0.03688517212867737, 0.17229720950126648, 0.15580691397190094, 0.15750867128372192, 0.12851883471012115, -0.44589707255363464, -0.1365962028503418, -0.1155039593577385, -0.053353771567344666, -0.30448320508003235, 0.06718356907367706, 1.410147786140442, -0.00760998297482729, 0.014476943761110306, -0.2015986442565918]} +{"t": 10.2499, "q": [-0.15613025426864624, 0.007453442085534334, 0.01797192357480526, 0.31736359000205994, -0.15920531749725342, -0.003334876848384738, -0.10787805169820786, -0.027424167841672897, 0.042117513716220856, 0.3197668194770813, -0.2261165827512741, 0.024958014488220215, 0.02571243979036808, 0.05775292217731476, 0.03599918633699417, 0.17263276875019073, 0.16408801078796387, 0.1555911898612976, 0.128530815243721, -0.43204331398010254, -0.1369916796684265, -0.11549197882413864, -0.054743941873311996, -0.30547788739204407, 0.06724348664283752, 1.410567283630371, -0.007574030198156834, 0.014488928020000458, -0.20158664882183075]} +{"t": 10.2667, "q": [-0.15586607158184052, 0.007461963687092066, 0.01797192357480526, 0.317474365234375, -0.1591925173997879, -0.0033419104292988777, -0.10777578502893448, -0.027159981429576874, 0.04217107966542244, 0.3199457824230194, -0.2261081486940384, 0.02495795115828514, 0.02572583220899105, 0.058547165244817734, 0.03545653074979782, 0.17289641499519348, 0.17281252145767212, 0.15357784926891327, 0.1284349411725998, -0.4175783395767212, -0.1375669240951538, -0.11551594734191895, -0.057260628789663315, -0.3066163957118988, 0.06724348664283752, 1.4116698503494263, -0.007597998715937138, 0.01450091227889061, -0.20158664882183075]} +{"t": 10.2835, "q": [-0.15579789876937866, 0.007444919552654028, 0.01798531599342823, 0.31762775778770447, -0.15917550027370453, -0.003370080143213272, -0.10775022208690643, -0.026802053675055504, 0.042238038033246994, 0.3200395107269287, -0.2261081486940384, 0.02495795115828514, 0.025672264397144318, 0.058902956545352936, 0.03519345447421074, 0.17298030853271484, 0.18157300353050232, 0.15152853727340698, 0.12827914953231812, -0.40154343843460083, -0.13845375180244446, -0.11551594734191895, -0.06031660735607147, -0.3076590299606323, 0.06732738018035889, 1.4134554862976074, -0.0076219672337174416, 0.014536865055561066, -0.20151475071907043]} +{"t": 10.3003, "q": [-0.15578937530517578, 0.007419352885335684, 0.01798531599342823, 0.3177385628223419, -0.15914997458457947, -0.0034123389050364494, -0.10774169862270355, -0.02642708085477352, 0.042291607707738876, 0.32011622190475464, -0.2260827124118805, 0.024943387135863304, 0.025672264397144318, 0.059009529650211334, 0.035066913813352585, 0.17300426959991455, 0.19017766416072845, 0.14935940504074097, 0.12817129492759705, -0.3846457004547119, -0.13972407579421997, -0.11551594734191895, -0.06370814144611359, -0.30842602252960205, 0.06735134869813919, 1.4157564640045166, -0.0076339514926075935, 0.01456083357334137, -0.20138292014598846]} +{"t": 10.317, "q": [-0.1558234691619873, 0.007444919552654028, 0.01798531599342823, 0.31790047883987427, -0.15912871062755585, -0.0034475489519536495, -0.10775022208690643, -0.026069151237607002, 0.04230500012636185, 0.3201758861541748, -0.22605691850185394, 0.02490016631782055, 0.025672264397144318, 0.058972179889678955, 0.03505412116646767, 0.17310014367103577, 0.19829098880290985, 0.14684271812438965, 0.12791961431503296, -0.3681793808937073, -0.14150972664356232, -0.11545602232217789, -0.067123644053936, -0.30904918909072876, 0.06735134869813919, 1.4185847043991089, -0.0076339514926075935, 0.01456083357334137, -0.2012271285057068]} +{"t": 10.3337, "q": [-0.15581494569778442, 0.007453442085534334, 0.0179987084120512, 0.31804534792900085, -0.1590946912765503, -0.0035038883797824383, -0.10774169862270355, -0.025907231494784355, 0.04234517365694046, 0.3202696144580841, -0.22602751851081848, 0.02490704134106636, 0.02572583220899105, 0.05886024609208107, 0.035006310790777206, 0.17319601774215698, 0.20594890415668488, 0.1439065784215927, 0.12801548838615417, -0.3505505621433258, -0.14400245249271393, -0.11545602232217789, -0.0710424855351448, -0.3095884919166565, 0.0674232542514801, 1.4219282865524292, -0.0076459357514977455, 0.014572817832231522, -0.2010233998298645]} +{"t": 10.3505, "q": [-0.15581494569778442, 0.007453442085534334, 0.01797192357480526, 0.31837770342826843, -0.1590692698955536, -0.0035743217449635267, -0.10769908875226974, -0.0258646197617054, 0.04234517365694046, 0.32043153047561646, -0.22602751851081848, 0.02490704134106636, 0.025739222764968872, 0.05883790925145149, 0.03499297797679901, 0.17377126216888428, 0.21421802043914795, 0.13949638605117798, 0.12827914953231812, -0.33122003078460693, -0.1477055698633194, -0.11545602232217789, -0.07468569278717041, -0.31010380387306213, 0.06765095144510269, 1.4253557920455933, -0.0076699042692780495, 0.014584802091121674, -0.20084363222122192]} +{"t": 10.3672, "q": [-0.1558234691619873, 0.007444919552654028, 0.0179987084120512, 0.3185651898384094, -0.15903934836387634, -0.0035813504364341497, -0.1076735183596611, -0.0258646197617054, 0.0423719584941864, 0.32048267126083374, -0.2260020524263382, 0.024892477318644524, 0.026007061824202538, 0.05882278084754944, 0.03500295430421829, 0.17473000288009644, 0.22218753397464752, 0.13423530757427216, 0.1284349411725998, -0.3129321038722992, -0.15203188359737396, -0.11540809273719788, -0.07811318337917328, -0.31045135855674744, 0.067674919962883, 1.429034948348999, -0.0076459357514977455, 0.014596786350011826, -0.2007237821817398]} +{"t": 10.384, "q": [-0.1558234691619873, 0.007419352885335684, 0.0179987084120512, 0.318667471408844, -0.15902239084243774, -0.003623607335612178, -0.10764795541763306, -0.02598392963409424, 0.04238535091280937, 0.3205849528312683, -0.2259937971830368, 0.024906717240810394, 0.0262079406529665, 0.05880788713693619, 0.03499406576156616, 0.1763119250535965, 0.22977355122566223, 0.12892629206180573, 0.1284349411725998, -0.2938172519207001, -0.1558668315410614, -0.11542007327079773, -0.08193615078926086, -0.3106071352958679, 0.0676988884806633, 1.4324264526367188, -0.007693872787058353, 0.01468067616224289, -0.20060394704341888]} +{"t": 10.4008, "q": [-0.15584902465343475, 0.007393787149339914, 0.018012098968029022, 0.3187697231769562, -0.15900106728076935, -0.0036447299644351006, -0.1076309084892273, -0.026094717904925346, 0.042452309280633926, 0.3206019699573517, -0.2259688526391983, 0.02493511326611042, 0.026462385430932045, 0.058830346912145615, 0.03499796614050865, 0.17802566289901733, 0.23661653697490692, 0.12468387931585312, 0.1284349411725998, -0.27380359172821045, -0.15747271478176117, -0.11539610475301743, -0.08557935059070587, -0.3106071352958679, 0.0676988884806633, 1.4352188110351562, -0.007705857045948505, 0.014716628938913345, -0.20059196650981903]} +{"t": 10.4176, "q": [-0.1558745950460434, 0.007402308750897646, 0.018052276223897934, 0.3189060688018799, -0.1590181291103363, -0.0036306562833487988, -0.10754568874835968, -0.026282204315066338, 0.042438916862010956, 0.3206275403499603, -0.22596900165081024, 0.0249494519084692, 0.026623088866472244, 0.05880788713693619, 0.03499406576156616, 0.1801588535308838, 0.24259667098522186, 0.12088488042354584, 0.1284828782081604, -0.2550722360610962, -0.1585153490304947, -0.11540809273719788, -0.08940231800079346, -0.3105592131614685, 0.06771086901426315, 1.4385863542556763, -0.007705857045948505, 0.014764565043151379, -0.20059196650981903]} +{"t": 10.4343, "q": [-0.1559172123670578, 0.007393787149339914, 0.018038883805274963, 0.31892311573028564, -0.15901382267475128, -0.003623609198257327, -0.10754568874835968, -0.026563433930277824, 0.042452309280633926, 0.3205849528312683, -0.22596058249473572, 0.024949369952082634, 0.02687753550708294, 0.05879276245832443, 0.03500404208898544, 0.1825796663761139, 0.24999094009399414, 0.11593539267778397, 0.12884239852428436, -0.23419572412967682, -0.15964186191558838, -0.11539610475301743, -0.09304552525281906, -0.3104393780231476, 0.0677228569984436, 1.4424333572387695, -0.007693872787058353, 0.014908376149833202, -0.20061592757701874]} +{"t": 10.4511, "q": [-0.15600243210792542, 0.00742787541821599, 0.018025491386651993, 0.31891459226608276, -0.15901382267475128, -0.003623609198257327, -0.1075371652841568, -0.026972495019435883, 0.042412132024765015, 0.32057642936706543, -0.2259485274553299, 0.02499936893582344, 0.02737303450703621, 0.05874738097190857, 0.035033971071243286, 0.18528810143470764, 0.2573372721672058, 0.10987138003110886, 0.12904614210128784, -0.21576398611068726, -0.1607324331998825, -0.11542007327079773, -0.09569403529167175, -0.3103674650192261, 0.06768690049648285, 1.444938063621521, -0.0076818885281682014, 0.01507615577429533, -0.2006758451461792]} +{"t": 10.4678, "q": [-0.1560109555721283, 0.00742787541821599, 0.01811923459172249, 0.31882086396217346, -0.15901808440685272, -0.003616560250520706, -0.10754568874835968, -0.027364512905478477, 0.042452309280633926, 0.32052528858184814, -0.22593596577644348, 0.025006424635648727, 0.027279291301965714, 0.058716896921396255, 0.03507279232144356, 0.18939869105815887, 0.26379677653312683, 0.10506570339202881, 0.12904614210128784, -0.19697272777557373, -0.16238625347614288, -0.11538412421941757, -0.09904962033033371, -0.31034350395202637, 0.06773483753204346, 1.448533296585083, -0.0076699042692780495, 0.015184013172984123, -0.20071180164813995]} +{"t": 10.4845, "q": [-0.15600243210792542, 0.007410831283777952, 0.018226370215415955, 0.3187271058559418, -0.1590351015329361, -0.003588390536606312, -0.10752864181995392, -0.027765052393078804, 0.04249248653650284, 0.3204230070114136, -0.2259361296892166, 0.025020744651556015, 0.027265898883342743, 0.058716896921396255, 0.03507279232144356, 0.19338944554328918, 0.2700165808200836, 0.10041582584381104, 0.12926185131072998, -0.178684800863266, -0.16424380242824554, -0.11539610475301743, -0.10177004337310791, -0.3103554844856262, 0.06771086901426315, 1.4515773057937622, -0.0076818885281682014, 0.015399729833006859, -0.20073577761650085]} +{"t": 10.5012, "q": [-0.15602800250053406, 0.007419352885335684, 0.018226370215415955, 0.3185822367668152, -0.15904785692691803, -0.0035672697704285383, -0.10752864181995392, -0.028063325211405754, 0.042438916862010956, 0.3203633725643158, -0.22594903409481049, 0.02504236437380314, 0.027279291301965714, 0.05862636864185333, 0.03511378914117813, 0.19726034998893738, 0.27642813324928284, 0.09541840106248856, 0.12941764295101166, -0.1612597405910492, -0.1664489060640335, -0.11538412421941757, -0.10326807200908661, -0.3103914260864258, 0.06761500239372253, 1.4534348249435425, -0.0076699042692780495, 0.015483618713915348, -0.20078371465206146]} +{"t": 10.518, "q": [-0.15603651106357574, 0.007342653814703226, 0.018253153190016747, 0.31832656264305115, -0.1590648591518402, -0.003539100056514144, -0.10751160234212875, -0.028489431366324425, 0.042452309280633926, 0.32020995020866394, -0.2259449064731598, 0.0250494834035635, 0.02758730575442314, 0.05855807662010193, 0.03517761826515198, 0.20150277018547058, 0.28228843212127686, 0.09034907072782516, 0.12951351702213287, -0.144110307097435, -0.1688457429409027, -0.11538412421941757, -0.10453839600086212, -0.3104393780231476, 0.06765095144510269, 1.4557597637176514, -0.0076699042692780495, 0.015531555749475956, -0.20083165168762207]} +{"t": 10.5347, "q": [-0.1560535579919815, 0.007223344873636961, 0.018253153190016747, 0.31813058257102966, -0.15909038484096527, -0.0034968412946909666, -0.10750307887792587, -0.028907015919685364, 0.0423719584941864, 0.3201247453689575, -0.2259703427553177, 0.025064047425985336, 0.027788182720541954, 0.05833876132965088, 0.03532245755195618, 0.20502611994743347, 0.28666266798973083, 0.0866459459066391, 0.1300048828125, -0.12904614210128784, -0.17100290954113007, -0.11537213623523712, -0.10579673945903778, -0.31047531962394714, 0.06768690049648285, 1.4583244323730469, -0.0076579200103878975, 0.015543540008366108, -0.20083165168762207]} +{"t": 10.5514, "q": [-0.15611322224140167, 0.007172211539000273, 0.018266545608639717, 0.31781524419784546, -0.15909889340400696, -0.003482760861515999, -0.10751160234212875, -0.02924790047109127, 0.04231838881969452, 0.3199543058872223, -0.22598324716091156, 0.02508566714823246, 0.028015846386551857, 0.05811932682991028, 0.03547674044966698, 0.20875321328639984, 0.29107287526130676, 0.08312258869409561, 0.1309276670217514, -0.11254385858774185, -0.1733638048171997, -0.11536015570163727, -0.10718691349029541, -0.3104393780231476, 0.06762698292732239, 1.4617758989334106, -0.0076818885281682014, 0.01555552426725626, -0.20085561275482178]} +{"t": 10.5682, "q": [-0.1561046987771988, 0.007061424199491739, 0.01829332858324051, 0.31768742203712463, -0.15912866592407227, -0.003433461533859372, -0.10751160234212875, -0.029469475150108337, 0.042264822870492935, 0.3198690712451935, -0.2259875386953354, 0.025092868134379387, 0.02840421162545681, 0.057741325348615646, 0.03571692481637001, 0.21173729002475739, 0.2953392565250397, 0.08023438602685928, 0.13222195208072662, -0.09727595746517181, -0.1753891408443451, -0.11539610475301743, -0.10869692265987396, -0.3103794455528259, 0.06763897091150284, 1.4653351306915283, -0.0076699042692780495, 0.015519571490585804, -0.20089156925678253]} +{"t": 10.5849, "q": [-0.15627513825893402, 0.0069847251288592815, 0.018279938027262688, 0.31767037510871887, -0.1591499298810959, -0.0033982517197728157, -0.10747750848531723, -0.02961435168981552, 0.042264822870492935, 0.31979238986968994, -0.2259959727525711, 0.02509293146431446, 0.029020238667726517, 0.05742376670241356, 0.035925883799791336, 0.21379858255386353, 0.29738855361938477, 0.07941946387290955, 0.13328854739665985, -0.08361393958330154, -0.1764077991247177, -0.11536015570163727, -0.1098593920469284, -0.31029555201530457, 0.06761500239372253, 1.4684151411056519, -0.0076219672337174416, 0.015519571490585804, -0.20090354979038239]} +{"t": 10.6016, "q": [-0.156334787607193, 0.006899504456669092, 0.018266545608639717, 0.3176107108592987, -0.15919256210327148, -0.0033560064621269703, -0.10743489861488342, -0.029759226366877556, 0.04217107966542244, 0.31970715522766113, -0.22600457072257996, 0.025107331573963165, 0.02991749532520771, 0.057053737342357635, 0.03613196685910225, 0.21523667871952057, 0.29844316840171814, 0.078508660197258, 0.13416339457035065, -0.07272028177976608, -0.17677929997444153, -0.11533618718385696, -0.11081813275814056, -0.31012779474258423, 0.06753110885620117, 1.4715189933776855, -0.0076459357514977455, 0.015519571490585804, -0.20091553032398224]} +{"t": 10.6184, "q": [-0.1563774049282074, 0.00679723871871829, 0.018199585378170013, 0.3175595998764038, -0.15920096635818481, -0.0033137425780296326, -0.10732411593198776, -0.02997227944433689, 0.04203715920448303, 0.3196389973163605, -0.2260172963142395, 0.02511461451649666, 0.03077457658946514, 0.05666903778910637, 0.03631029278039932, 0.21615947782993317, 0.2984311878681183, 0.07799334079027176, 0.13435514271259308, -0.06428338587284088, -0.1771627962589264, -0.11532419919967651, -0.11127353459596634, -0.31010380387306213, 0.06754309684038162, 1.4734125137329102, -0.0076459357514977455, 0.015507587231695652, -0.200951486825943]} +{"t": 10.6352, "q": [-0.15639445185661316, 0.006669407244771719, 0.01811923459172249, 0.3175595998764038, -0.15921802818775177, -0.003299660049378872, -0.10724741220474243, -0.030117155984044075, 0.04195680841803551, 0.31960490345954895, -0.2260172963142395, 0.02511461451649666, 0.03147095441818237, 0.05625523254275322, 0.036414261907339096, 0.21650701761245728, 0.2974604666233063, 0.07787349820137024, 0.134247288107872, -0.05825531855225563, -0.177582249045372, -0.11531221866607666, -0.11154916882514954, -0.31012779474258423, 0.06753110885620117, 1.4745869636535645, -0.0076219672337174416, 0.0154956029728055, -0.2009754627943039]} +{"t": 10.6519, "q": [-0.15638592839241028, 0.006524530705064535, 0.018038883805274963, 0.3175595998764038, -0.15923073887825012, -0.0032644434832036495, -0.10716219246387482, -0.03027055412530899, 0.04186306521296501, 0.31956228613853455, -0.22602158784866333, 0.025121815502643585, 0.03199324011802673, 0.05586649850010872, 0.036305349320173264, 0.2163512110710144, 0.2965376675128937, 0.07787349820137024, 0.13366006314754486, -0.05456417798995972, -0.17800170183181763, -0.11530023068189621, -0.11181282252073288, -0.31012779474258423, 0.06751912832260132, 1.475437879562378, -0.0076459357514977455, 0.015483618713915348, -0.20101140439510345]} +{"t": 10.6688, "q": [-0.15638592839241028, 0.00646487670019269, 0.018038883805274963, 0.3175510764122009, -0.1592392474412918, -0.003250354202464223, -0.10708549618721008, -0.030364297330379486, 0.04184967279434204, 0.3195452392101288, -0.22602589428424835, 0.025129033252596855, 0.032180726528167725, 0.055538248270750046, 0.036156635731458664, 0.21578796207904816, 0.29334986209869385, 0.07826897501945496, 0.1327013224363327, -0.05366536229848862, -0.17860090732574463, -0.11528825014829636, -0.11208845674991608, -0.31012779474258423, 0.06748317182064056, 1.4758094549179077, -0.00760998297482729, 0.015483618713915348, -0.20105934143066406]} +{"t": 10.6856, "q": [-0.15634331107139587, 0.006439310032874346, 0.01798531599342823, 0.3176107108592987, -0.15924780070781708, -0.003250360954552889, -0.10700879245996475, -0.0303813423961401, 0.0418228916823864, 0.31959637999534607, -0.22602176666259766, 0.025136152282357216, 0.032354820519685745, 0.05521714314818382, 0.03602134436368942, 0.21479326486587524, 0.29032984375953674, 0.07919175922870636, 0.13181449472904205, -0.05409679189324379, -0.17931996285915375, -0.11521634459495544, -0.11207647621631622, -0.3100918233394623, 0.06753110885620117, 1.475965142250061, -0.007597998715937138, 0.015459650196135044, -0.20108331739902496]} +{"t": 10.7023, "q": [-0.156334787607193, 0.00646487670019269, 0.017838004976511, 0.31767037510871887, -0.1592392474412918, -0.003250354202464223, -0.10692357271909714, -0.030372818931937218, 0.04164879396557808, 0.31960490345954895, -0.22602589428424835, 0.025129033252596855, 0.032368212938308716, 0.05483551323413849, 0.035925764590501785, 0.2133791297674179, 0.28807681798934937, 0.08001866936683655, 0.13091567158699036, -0.05668538436293602, -0.18012291193008423, -0.1152283251285553, -0.11207647621631622, -0.3099839687347412, 0.06753110885620117, 1.4762887954711914, -0.00760998297482729, 0.015471634455025196, -0.20111927390098572]} +{"t": 10.719, "q": [-0.156334787607193, 0.006498964969068766, 0.017757654190063477, 0.3177556097507477, -0.15924355387687683, -0.0032574012875556946, -0.10687243938446045, -0.030304642394185066, 0.041608620434999466, 0.3196219503879547, -0.22602571547031403, 0.025114694610238075, 0.03247534856200218, 0.05447643622756004, 0.0358244925737381, 0.21137776970863342, 0.28316327929496765, 0.08370981365442276, 0.12944161891937256, -0.06064017862081528, -0.1810816377401352, -0.11521634459495544, -0.11202853918075562, -0.30990007519721985, 0.06748317182064056, 1.4766004085540771, -0.007586014457046986, 0.015459650196135044, -0.20115521550178528]} +{"t": 10.7358, "q": [-0.15631774067878723, 0.006498964969068766, 0.017543382942676544, 0.3178749084472656, -0.1592179238796234, -0.0032714679837226868, -0.10674460977315903, -0.030304642394185066, 0.041447918862104416, 0.31969863176345825, -0.22601331770420074, 0.02513607032597065, 0.03314494341611862, 0.054245468229055405, 0.03567642718553543, 0.21017934381961823, 0.2772071063518524, 0.0890907272696495, 0.12688897550106049, -0.0659252256155014, -0.18274745345115662, -0.11521634459495544, -0.11140535771846771, -0.30992403626441956, 0.06751912832260132, 1.4772953987121582, -0.007597998715937138, 0.015447665937244892, -0.20116721093654633]} +{"t": 10.7526, "q": [-0.15630923211574554, 0.00646487670019269, 0.01714162714779377, 0.3180709183216095, -0.15921372175216675, -0.003292613197118044, -0.10648894309997559, -0.03032168745994568, 0.04111311957240105, 0.31978386640548706, -0.22601746022701263, 0.025128934532403946, 0.03376096859574318, 0.05420170724391937, 0.03556462377309799, 0.20892100036144257, 0.27068769931793213, 0.09514276683330536, 0.12524713575839996, -0.07270829379558563, -0.18485666811466217, -0.11515641957521439, -0.11086606979370117, -0.3100798428058624, 0.06747119128704071, 1.477966547012329, -0.007586014457046986, 0.015459650196135044, -0.20117919147014618]} +{"t": 10.7694, "q": [-0.15630070865154266, 0.006413743365556002, 0.016713086515665054, 0.3181220591068268, -0.15921802818775177, -0.003299660049378872, -0.10641224682331085, -0.030355775728821754, 0.040764931589365005, 0.3198946416378021, -0.22602158784866333, 0.025121815502643585, 0.033827926963567734, 0.05411365628242493, 0.03538823127746582, 0.20562534034252167, 0.2649112939834595, 0.10130265355110168, 0.12314990162849426, -0.08373378217220306, -0.18732541799545288, -0.11518038809299469, -0.11072225868701935, -0.31001991033554077, 0.06745920330286026, 1.4783260822296143, -0.007574030198156834, 0.015459650196135044, -0.2012031525373459]} +{"t": 10.7862, "q": [-0.15626661479473114, 0.006490442436188459, 0.016699694097042084, 0.31822431087493896, -0.15920521318912506, -0.0033066936302930117, -0.10642929375171661, -0.030296120792627335, 0.04087206721305847, 0.3199543058872223, -0.22600902616977692, 0.025128871202468872, 0.03373418375849724, 0.054092906415462494, 0.03523319959640503, 0.20273713767528534, 0.25889521837234497, 0.1095118522644043, 0.12104067206382751, -0.09273393452167511, -0.19038140773773193, -0.11515641957521439, -0.11080614477396011, -0.3099839687347412, 0.06747119128704071, 1.4783260822296143, -0.007574030198156834, 0.01543568167835474, -0.2012750655412674]} +{"t": 10.803, "q": [-0.15630923211574554, 0.006507486570626497, 0.016713086515665054, 0.3185310959815979, -0.15919245779514313, -0.0033278230112046003, -0.1064378172159195, -0.030244987457990646, 0.040885455906391144, 0.32015031576156616, -0.22600457072257996, 0.025107331573963165, 0.03374757617712021, 0.05413135886192322, 0.035151708871126175, 0.19908194243907928, 0.25146499276161194, 0.11845207959413528, 0.11936288326978683, -0.10480204969644547, -0.195235013961792, -0.11513245105743408, -0.11079416424036026, -0.3099839687347412, 0.06747119128704071, 1.4783740043640137, -0.00755006168037653, 0.01543568167835474, -0.2012750655412674]} +{"t": 10.8198, "q": [-0.15625809133052826, 0.0065160091035068035, 0.01661934331059456, 0.3187015652656555, -0.15918821096420288, -0.003334863344207406, -0.10631850361824036, -0.030219420790672302, 0.04079171270132065, 0.32029518485069275, -0.22600042819976807, 0.02511446923017502, 0.033680617809295654, 0.054110608994960785, 0.034996677190065384, 0.1961098611354828, 0.24501748383045197, 0.12590627372264862, 0.11776898056268692, -0.11636682599782944, -0.19866250455379486, -0.11513245105743408, -0.11051852256059647, -0.31001991033554077, 0.0674472227692604, 1.478410005569458, -0.00755006168037653, 0.015423697419464588, -0.20128704607486725]} +{"t": 10.8366, "q": [-0.15624956786632538, 0.006541575770825148, 0.016592558473348618, 0.318897545337677, -0.1591797024011612, -0.003348952392116189, -0.10626737028360367, -0.030193854123353958, 0.04081849753856659, 0.32039743661880493, -0.22598375380039215, 0.025128627195954323, 0.033694010227918625, 0.054068032652139664, 0.03478102758526802, 0.19330555200576782, 0.23740750551223755, 0.13464276492595673, 0.11627095192670822, -0.12958543002605438, -0.20019648969173431, -0.11513245105743408, -0.11033876240253448, -0.31004390120506287, 0.06741126626729965, 1.4784339666366577, -0.007538077887147665, 0.015423697419464588, -0.201323002576828]} +{"t": 10.8533, "q": [-0.15626661479473114, 0.006541575770825148, 0.016579166054725647, 0.3191276490688324, -0.15917964279651642, -0.0033348563592880964, -0.10616510361433029, -0.030176810920238495, 0.04084528237581253, 0.32044005393981934, -0.22596293687820435, 0.025149904191493988, 0.033707402646541595, 0.054122041910886765, 0.03465183079242706, 0.19012972712516785, 0.22927021980285645, 0.1425883173942566, 0.11482086032629013, -0.14347514510154724, -0.20049609243869781, -0.11512047052383423, -0.11005114018917084, -0.3100918233394623, 0.06741126626729965, 1.4784698486328125, -0.00755006168037653, 0.01541171409189701, -0.20131102204322815]} +{"t": 10.87, "q": [-0.1562410444021225, 0.006550097372382879, 0.016605950891971588, 0.3192128837108612, -0.15917102992534637, -0.003320762189105153, -0.10619067400693893, -0.030168289318680763, 0.0408586747944355, 0.32055938243865967, -0.22595037519931793, 0.025156959891319275, 0.03364044055342674, 0.054055169224739075, 0.034592706710100174, 0.18764899671077728, 0.2213726043701172, 0.15061774849891663, 0.11304719746112823, -0.15752065181732178, -0.20061592757701874, -0.11513245105743408, -0.10993129760026932, -0.3100678622722626, 0.06736332923173904, 1.4784938097000122, -0.007538077887147665, 0.015399729833006859, -0.201323002576828]} +{"t": 10.8867, "q": [-0.1562410444021225, 0.006541575770825148, 0.016686301678419113, 0.3192980885505676, -0.15918390452861786, -0.0033278074115514755, -0.1062077134847641, -0.030176810920238495, 0.04100598394870758, 0.3205508589744568, -0.22592972218990326, 0.025192556902766228, 0.033372603356838226, 0.05397328361868858, 0.03453407436609268, 0.18556374311447144, 0.2115814983844757, 0.15945011377334595, 0.11060241609811783, -0.1727645844221115, -0.20066386461257935, -0.11512047052383423, -0.10996725410223007, -0.3099600076675415, 0.06738729774951935, 1.4785058498382568, -0.00755006168037653, 0.015399729833006859, -0.201323002576828]} +{"t": 10.9035, "q": [-0.15622399747371674, 0.006524530705064535, 0.016739869490265846, 0.3193577527999878, -0.15916678309440613, -0.003327802522107959, -0.10616510361433029, -0.030176810920238495, 0.04105955362319946, 0.32056790590286255, -0.22591319680213928, 0.025221051648259163, 0.03331903740763664, 0.05392877385020256, 0.034488361328840256, 0.18289126455783844, 0.20331238210201263, 0.165777787566185, 0.10881676524877548, -0.1898421049118042, -0.20061592757701874, -0.11515641957521439, -0.10966764390468597, -0.3098401725292206, 0.06738729774951935, 1.4785298109054565, -0.007538077887147665, 0.015399729833006859, -0.201323002576828]} +{"t": 10.9202, "q": [-0.15624956786632538, 0.00646487670019269, 0.016726477071642876, 0.3194088935852051, -0.15917108952999115, -0.0033348496071994305, -0.10616510361433029, -0.030244987457990646, 0.04101937636733055, 0.32055938243865967, -0.2259049415588379, 0.025235291570425034, 0.03341278061270714, 0.05391376093029976, 0.03448886051774025, 0.17899638414382935, 0.19312578439712524, 0.17425063252449036, 0.10775016993284225, -0.2076147198677063, -0.2004002183675766, -0.11515641957521439, -0.10933208465576172, -0.3097322881221771, 0.06732738018035889, 1.4785178899765015, -0.00755006168037653, 0.015399729833006859, -0.20133498311042786]} +{"t": 10.937, "q": [-0.1562836617231369, 0.00637113256379962, 0.016699694097042084, 0.3194344639778137, -0.15916678309440613, -0.003327802522107959, -0.10616510361433029, -0.03033020906150341, 0.04096581041812897, 0.320533812046051, -0.2258966863155365, 0.025249529629945755, 0.03357348218560219, 0.053898636251688004, 0.034498799592256546, 0.17475397884845734, 0.1823759377002716, 0.18208831548690796, 0.10723485052585602, -0.22526748478412628, -0.2001485526561737, -0.11514443904161453, -0.10911636799573898, -0.3096364140510559, 0.06731539219617844, 1.4785537719726562, -0.00755006168037653, 0.015387745574116707, -0.20133498311042786]} +{"t": 10.9539, "q": [-0.15631774067878723, 0.0062688677571713924, 0.016699694097042084, 0.31942594051361084, -0.15917959809303284, -0.003320760326460004, -0.10615658760070801, -0.030415430665016174, 0.04096581041812897, 0.32052528858184814, -0.2258966863155365, 0.025249529629945755, 0.03356008976697922, 0.05386093258857727, 0.034514203667640686, 0.17095497250556946, 0.17227323353290558, 0.18875154852867126, 0.10717492550611496, -0.24187761545181274, -0.19953735172748566, -0.11516840755939484, -0.1089605763554573, -0.30955255031585693, 0.06732738018035889, 1.478577733039856, -0.00755006168037653, 0.015387745574116707, -0.20133498311042786]} +{"t": 10.9706, "q": [-0.15630070865154266, 0.006200690288096666, 0.01679343730211258, 0.3193918466567993, -0.1591753363609314, -0.0033278092741966248, -0.10619919747114182, -0.030475085601210594, 0.041086334735155106, 0.3204571008682251, -0.2258884161710739, 0.02526378631591797, 0.033211901783943176, 0.053823236376047134, 0.034529611468315125, 0.16753946244716644, 0.16124774515628815, 0.19698470830917358, 0.10715095698833466, -0.2590150535106659, -0.1989501267671585, -0.115204356610775, -0.1088886708021164, -0.3093608021736145, 0.06732738018035889, 1.4785897731781006, -0.00755006168037653, 0.015387745574116707, -0.20138292014598846]} +{"t": 10.9874, "q": [-0.15627513825893402, 0.006243301089853048, 0.017061274498701096, 0.31932365894317627, -0.15920086205005646, -0.0032855505123734474, -0.10622476041316986, -0.030475085601210594, 0.04132739081978798, 0.3204571008682251, -0.2258884161710739, 0.02526378631591797, 0.03279675170779228, 0.05371125042438507, 0.034471817314624786, 0.16467523574829102, 0.15091735124588013, 0.20358802378177643, 0.10712698847055435, -0.27744680643081665, -0.19856663048267365, -0.11519237607717514, -0.1086370050907135, -0.3091810345649719, 0.06730341166257858, 1.4785897731781006, -0.00755006168037653, 0.015375761315226555, -0.2013469636440277]} +{"t": 11.0041, "q": [-0.15626661479473114, 0.006200690288096666, 0.01714162714779377, 0.31922993063926697, -0.15920937061309814, -0.0032714700791984797, -0.10623328387737274, -0.030483607202768326, 0.041421134024858475, 0.32043153047561646, -0.2258925586938858, 0.025256648659706116, 0.03255569934844971, 0.05361426621675491, 0.03441349044442177, 0.16187092661857605, 0.1416655331850052, 0.20841765403747559, 0.10707905143499374, -0.2942366898059845, -0.19806328415870667, -0.1152762621641159, -0.10857708007097244, -0.3090372085571289, 0.06733936071395874, 1.4786016941070557, -0.007562045939266682, 0.015375761315226555, -0.20133498311042786]} +{"t": 11.0209, "q": [-0.15624956786632538, 0.0061836461536586285, 0.017195194959640503, 0.3191191256046295, -0.15922217071056366, -0.0032644278835505247, -0.10625884681940079, -0.030526217073202133, 0.041447918862104416, 0.3203718960285187, -0.2258884161710739, 0.02526378631591797, 0.03228786215186119, 0.05356920510530472, 0.03441493958234787, 0.15892280638217926, 0.13250957429409027, 0.21315142512321472, 0.1070910394191742, -0.3097802400588989, -0.1973801851272583, -0.11528825014829636, -0.10830144584178925, -0.30892935395240784, 0.06730341166257858, 1.478577733039856, -0.007538077887147665, 0.015363777056336403, -0.2013469636440277]} +{"t": 11.0376, "q": [-0.15624956786632538, 0.006192168686538935, 0.017275545746088028, 0.3189401626586914, -0.1592264324426651, -0.003257387550547719, -0.10629294067621231, -0.0305176954716444, 0.04151487722992897, 0.3202696144580841, -0.2258925586938858, 0.025256648659706116, 0.03191288560628891, 0.053500946611166, 0.034478574991226196, 0.1562143713235855, 0.12413260340690613, 0.21691447496414185, 0.10792993009090424, -0.3264622688293457, -0.1964813768863678, -0.11532419919967651, -0.10807374119758606, -0.3088454604148865, 0.06730341166257858, 1.4785897731781006, -0.007538077887147665, 0.015351792797446251, -0.20133498311042786]} +{"t": 11.0543, "q": [-0.15624956786632538, 0.006200690288096666, 0.017396071925759315, 0.31882938742637634, -0.15922212600708008, -0.0032503404654562473, -0.10641224682331085, -0.030526217073202133, 0.041555050760507584, 0.3202610909938812, -0.22588412463665009, 0.025256585329771042, 0.031216509640216827, 0.053251415491104126, 0.03464256227016449, 0.1542729288339615, 0.11543205380439758, 0.2208692729473114, 0.10930811613798141, -0.3426889181137085, -0.19529493153095245, -0.11540809273719788, -0.10792993009090424, -0.3086417317390442, 0.06730341166257858, 1.4785658121109009, -0.007526093628257513, 0.015339808538556099, -0.2013469636440277]} +{"t": 11.0711, "q": [-0.15623252093791962, 0.006209212820976973, 0.01750320754945278, 0.31864190101623535, -0.1592349410057068, -0.0032432982698082924, -0.10647190362215042, -0.03050917387008667, 0.041608620434999466, 0.32019293308258057, -0.22589685022830963, 0.025263849645853043, 0.031015630811452866, 0.05293383076786995, 0.03485127165913582, 0.15209180116653442, 0.10703111439943314, 0.22352977097034454, 0.11055447906255722, -0.36056938767433167, -0.19464778900146484, -0.11542007327079773, -0.10777413845062256, -0.30842602252960205, 0.06731539219617844, 1.4785658121109009, -0.007538077887147665, 0.015351792797446251, -0.2013469636440277]} +{"t": 11.0878, "q": [-0.15624956786632538, 0.006251823622733355, 0.01748981513082981, 0.31849703192710876, -0.15924343466758728, -0.0032292178366333246, -0.1064804270863533, -0.030475085601210594, 0.041608620434999466, 0.320090651512146, -0.2258966863155365, 0.025249529629945755, 0.030962062999606133, 0.052654556930065155, 0.034987855702638626, 0.15013837814331055, 0.09843842685222626, 0.2253393828868866, 0.11138138920068741, -0.37725141644477844, -0.19391675293445587, -0.11543205380439758, -0.10760635882616043, -0.3082103133201599, 0.06731539219617844, 1.478577733039856, -0.007538077887147665, 0.015327824279665947, -0.2013469636440277]} +{"t": 11.1047, "q": [-0.15621548891067505, 0.0062688677571713924, 0.01744963973760605, 0.31837770342826843, -0.15923908352851868, -0.0032080835662782192, -0.10649746656417847, -0.03045804053544998, 0.041608620434999466, 0.3200480341911316, -0.22590528428554535, 0.02526393160223961, 0.03092188760638237, 0.052269432693719864, 0.03519393876194954, 0.14909574389457703, 0.09105614572763443, 0.22608241438865662, 0.11181282252073288, -0.3946644961833954, -0.19307784736156464, -0.11544404178857803, -0.10737866163253784, -0.3080185651779175, 0.06731539219617844, 1.4785658121109009, -0.007526093628257513, 0.015327824279665947, -0.20133498311042786]} +{"t": 11.1215, "q": [-0.15621548891067505, 0.00628591189160943, 0.017516599968075752, 0.3183095455169678, -0.15923914313316345, -0.003222170751541853, -0.1065741702914238, -0.030432473868131638, 0.04163540527224541, 0.3200054466724396, -0.22590941190719604, 0.0252568107098341, 0.030680833384394646, 0.05190657824277878, 0.0354316383600235, 0.14849653840065002, 0.08342219144105911, 0.2268134504556656, 0.11212441325187683, -0.41229331493377686, -0.1916157752275467, -0.11553991585969925, -0.10699516534805298, -0.3078387975692749, 0.06735134869813919, 1.4785897731781006, -0.007562045939266682, 0.015327824279665947, -0.20133498311042786]} +{"t": 11.1382, "q": [-0.15622399747371674, 0.006320000160485506, 0.017529990524053574, 0.31822431087493896, -0.15923914313316345, -0.003222170751541853, -0.10660825669765472, -0.030406907200813293, 0.04164879396557808, 0.3199116885662079, -0.22590510547161102, 0.02524961158633232, 0.03043977916240692, 0.05167980492115021, 0.03558031842112541, 0.1476816087961197, 0.07529688626527786, 0.22802385687828064, 0.11235211044549942, -0.4287356436252594, -0.18968631327152252, -0.1155758649110794, -0.10661166906356812, -0.30775490403175354, 0.06730341166257858, 1.4786137342453003, -0.007538077887147665, 0.015327824279665947, -0.2013469636440277]} +{"t": 11.1552, "q": [-0.15624956786632538, 0.006328522693365812, 0.017543382942676544, 0.31813058257102966, -0.15924765169620514, -0.0032080814708024263, -0.10663381963968277, -0.03038986399769783, 0.04166218638420105, 0.3198179602622986, -0.22591766715049744, 0.025242572650313377, 0.030292468145489693, 0.051611773669719696, 0.035624921321868896, 0.14709438383579254, 0.0686216726899147, 0.22856314480304718, 0.11259179562330246, -0.44372791051864624, -0.1866183578968048, -0.11559983342885971, -0.10656373202800751, -0.3076710104942322, 0.06732738018035889, 1.4786137342453003, -0.00755006168037653, 0.015339808538556099, -0.20133498311042786]} +{"t": 11.1719, "q": [-0.15621548891067505, 0.006328522693365812, 0.01763712614774704, 0.318105012178421, -0.15924349427223206, -0.003243313869461417, -0.10668495297431946, -0.0303813423961401, 0.04170236364006996, 0.31978386640548706, -0.22591783106327057, 0.025256892666220665, 0.03007819689810276, 0.05158153548836708, 0.03564474359154701, 0.14686667919158936, 0.061538998037576675, 0.22915036976337433, 0.11278354376554489, -0.45774945616722107, -0.1819804608821869, -0.11567173898220062, -0.10652777552604675, -0.3076111078262329, 0.06731539219617844, 1.4786016941070557, -0.007538077887147665, 0.015339808538556099, -0.2013469636440277]} +{"t": 11.1887, "q": [-0.15621548891067505, 0.006354088429361582, 0.017717478796839714, 0.3180709183216095, -0.15925200283527374, -0.0032292334362864494, -0.10670199990272522, -0.030372818931937218, 0.04178271442651749, 0.3197668194770813, -0.22590941190719604, 0.0252568107098341, 0.02993088588118553, 0.05159645900130272, 0.0356537289917469, 0.14643524587154388, 0.05427655577659607, 0.23014506697654724, 0.11287941783666611, -0.4733409583568573, -0.17616811394691467, -0.11577960103750229, -0.10656373202800751, -0.3076111078262329, 0.06730341166257858, 1.4786256551742554, -0.007514109369367361, 0.015339808538556099, -0.2013709396123886]} +{"t": 11.2056, "q": [-0.15621548891067505, 0.006362610962241888, 0.017717478796839714, 0.3180283010005951, -0.1592477411031723, -0.003236273769289255, -0.1067105233669281, -0.030364297330379486, 0.04180949926376343, 0.31974977254867554, -0.22592195868492126, 0.025249773636460304, 0.029689833521842957, 0.05159645900130272, 0.0356537289917469, 0.14633937180042267, 0.04854809492826462, 0.23064839839935303, 0.11382617056369781, -0.48570865392684937, -0.17318403720855713, -0.1158754751086235, -0.10646785795688629, -0.3076350688934326, 0.06731539219617844, 1.4786137342453003, -0.007514109369367361, 0.015339808538556099, -0.2013709396123886]} +{"t": 11.2224, "q": [-0.15621548891067505, 0.006439310032874346, 0.017744261771440506, 0.31796011328697205, -0.1592433899641037, -0.003215130651369691, -0.10677017271518707, -0.03032168745994568, 0.04180949926376343, 0.319715678691864, -0.22592195868492126, 0.025249773636460304, 0.029636265709996223, 0.05158889666199684, 0.035658687353134155, 0.14649516344070435, 0.04370646923780441, 0.23086410760879517, 0.11455720663070679, -0.49778875708580017, -0.17113474011421204, -0.11600729823112488, -0.10634801536798477, -0.3076111078262329, 0.06731539219617844, 1.4786256551742554, -0.007502125110477209, 0.015339808538556099, -0.20139490067958832]} +{"t": 11.2391, "q": [-0.15623252093791962, 0.00646487670019269, 0.017757654190063477, 0.3179345726966858, -0.159234881401062, -0.0032292110845446587, -0.10679574310779572, -0.030304642394185066, 0.04183628037571907, 0.31974124908447266, -0.22592195868492126, 0.025249773636460304, 0.029622873291373253, 0.051558561623096466, 0.03568795695900917, 0.1466030329465866, 0.03846936300396919, 0.23042069375514984, 0.1152762621641159, -0.5076398253440857, -0.16853415966033936, -0.11628293991088867, -0.10612031817436218, -0.3076590299606323, 0.06731539219617844, 1.4786137342453003, -0.007514109369367361, 0.015351792797446251, -0.20139490067958832]} +{"t": 11.256, "q": [-0.15622399747371674, 0.006481920834630728, 0.017771044746041298, 0.3178834319114685, -0.159234881401062, -0.0032292110845446587, -0.10685539990663528, -0.030287597328424454, 0.04184967279434204, 0.31974977254867554, -0.22593021392822266, 0.025235533714294434, 0.029288075864315033, 0.05155836418271065, 0.03570685535669327, 0.1468307226896286, 0.0336996428668499, 0.22922228276729584, 0.11639079451560974, -0.5168796181678772, -0.16497483849525452, -0.11657056212425232, -0.10609634965658188, -0.3076710104942322, 0.06731539219617844, 1.4786376953125, -0.007490140851587057, 0.015363777056336403, -0.20143085718154907]} +{"t": 11.2729, "q": [-0.15620696544647217, 0.006507486570626497, 0.017771044746041298, 0.3178834319114685, -0.15923918783664703, -0.0032362581696361303, -0.10688096284866333, -0.03020237758755684, 0.04188985005021095, 0.3197668194770813, -0.2259346842765808, 0.025257054716348648, 0.028605088591575623, 0.05155836418271065, 0.03570685535669327, 0.1471782773733139, 0.030296120792627335, 0.22764036059379578, 0.11832025647163391, -0.5222246050834656, -0.1615833044052124, -0.11687016487121582, -0.10607238113880157, -0.3076710104942322, 0.06735134869813919, 1.4786256551742554, -0.007514109369367361, 0.015339808538556099, -0.20143085718154907]} +{"t": 11.2897, "q": [-0.15623252093791962, 0.006609752308577299, 0.01779782958328724, 0.31785786151885986, -0.15923063457012177, -0.0032362511847168207, -0.10697470605373383, -0.03009158931672573, 0.04188985005021095, 0.31974977254867554, -0.22593055665493011, 0.025264175608754158, 0.02758730575442314, 0.051573481410741806, 0.03569694235920906, 0.14748986065387726, 0.028570393100380898, 0.22526748478412628, 0.12065718322992325, -0.5254843235015869, -0.1567656546831131, -0.11714579910039902, -0.1061922162771225, -0.3076710104942322, 0.06735134869813919, 1.4786137342453003, -0.007514109369367361, 0.015351792797446251, -0.20144283771514893]} +{"t": 11.3064, "q": [-0.15623252093791962, 0.006712018046528101, 0.01781122200191021, 0.3178408145904541, -0.1592349410057068, -0.0032432982698082924, -0.10704288631677628, -0.02996375784277916, 0.04197020083665848, 0.3197753429412842, -0.2259388118982315, 0.025249935686588287, 0.02654273808002472, 0.051588404923677444, 0.03570592775940895, 0.14771756529808044, 0.0285943616181612, 0.22103704512119293, 0.12280235439538956, -0.5280010104179382, -0.15367372334003448, -0.11745738983154297, -0.10626412183046341, -0.3076111078262329, 0.06738729774951935, 1.4786256551742554, -0.007514109369367361, 0.015339808538556099, -0.20144283771514893]} +{"t": 11.3231, "q": [-0.15620696544647217, 0.0068228053860366344, 0.01795853115618229, 0.3178408145904541, -0.1592349410057068, -0.0032432982698082924, -0.10712810605764389, -0.02977627143263817, 0.042050551623106, 0.31979238986968994, -0.2259346842765808, 0.025257054716348648, 0.02568565495312214, 0.05162570998072624, 0.035728391259908676, 0.15033012628555298, 0.02901380881667137, 0.21746575832366943, 0.12487562745809555, -0.5280249714851379, -0.15253521502017975, -0.11793676018714905, -0.10637198388576508, -0.3075871169567108, 0.0673992857336998, 1.4786137342453003, -0.007514109369367361, 0.015327824279665947, -0.20144283771514893]} +{"t": 11.3399, "q": [-0.15620696544647217, 0.006933592725545168, 0.0179987084120512, 0.31781524419784546, -0.15922647714614868, -0.0032714835833758116, -0.10719627887010574, -0.02960582822561264, 0.042090728878974915, 0.31982648372650146, -0.22593435645103455, 0.025228414684534073, 0.02519015595316887, 0.0516631118953228, 0.035741403698921204, 0.15357784926891327, 0.02924150973558426, 0.21322333812713623, 0.12722453474998474, -0.5271860957145691, -0.1519479900598526, -0.11816445738077164, -0.10626412183046341, -0.3075871169567108, 0.06747119128704071, 1.4786137342453003, -0.007538077887147665, 0.015291871502995491, -0.20143085718154907]} +{"t": 11.3566, "q": [-0.1561984419822693, 0.006993247661739588, 0.01797192357480526, 0.3177896738052368, -0.1592264324426651, -0.003257387550547719, -0.10725593566894531, -0.02942686527967453, 0.042090728878974915, 0.3198179602622986, -0.2259388118982315, 0.025249935686588287, 0.024962494149804115, 0.051730453968048096, 0.03576293960213661, 0.15656191110610962, 0.030607711523771286, 0.20871727168560028, 0.12842296063899994, -0.5254843235015869, -0.15191203355789185, -0.11840414255857468, -0.10615626722574234, -0.30759909749031067, 0.0674232542514801, 1.4786137342453003, -0.007526093628257513, 0.015315840020775795, -0.20144283771514893]} +{"t": 11.3733, "q": [-0.15618139505386353, 0.007095512468367815, 0.018012098968029022, 0.3177556097507477, -0.159217968583107, -0.003285572864115238, -0.10737524926662445, -0.029171200469136238, 0.04215768724679947, 0.3198179602622986, -0.2259512096643448, 0.025228559970855713, 0.02468126453459263, 0.051843445748090744, 0.0357263945043087, 0.15934225916862488, 0.034095119684934616, 0.20588898658752441, 0.1284589171409607, -0.5201393365859985, -0.15216371417045593, -0.11851200461387634, -0.10612031817436218, -0.3074912428855896, 0.06743523478507996, 1.4786256551742554, -0.007538077887147665, 0.015303855761885643, -0.20143085718154907]} +{"t": 11.3901, "q": [-0.15616434812545776, 0.007138123270124197, 0.01798531599342823, 0.3177470862865448, -0.15920086205005646, -0.0032855505123734474, -0.10738376528024673, -0.029034847393631935, 0.042117513716220856, 0.3198179602622986, -0.2259512096643448, 0.025228559970855713, 0.024667872115969658, 0.0520845502614975, 0.035643383860588074, 0.16154736280441284, 0.039020638912916183, 0.20231768488883972, 0.12849485874176025, -0.5164961218833923, -0.1524992734193802, -0.11853597313165665, -0.10609634965658188, -0.3074912428855896, 0.06747119128704071, 1.4786137342453003, -0.007538077887147665, 0.015291871502995491, -0.20144283771514893]} +{"t": 11.4068, "q": [-0.15616434812545776, 0.007197778206318617, 0.017918355762958527, 0.3177129924297333, -0.1591966599225998, -0.003306686645373702, -0.10738376528024673, -0.028932582587003708, 0.042050551623106, 0.31982648372650146, -0.22595500946044922, 0.025192800909280777, 0.02489553391933441, 0.05246848985552788, 0.03553204983472824, 0.1630333960056305, 0.04368250072002411, 0.19926171004772186, 0.1282072365283966, -0.5124814510345459, -0.15308649837970734, -0.11859589070081711, -0.10609634965658188, -0.30759909749031067, 0.06749515980482101, 1.4786376953125, -0.007514109369367361, 0.015327824279665947, -0.20144283771514893]} +{"t": 11.4236, "q": [-0.15616434812545776, 0.007214822340756655, 0.017931748181581497, 0.3177044689655304, -0.15919245779514313, -0.0033278230112046003, -0.10738376528024673, -0.028855882585048676, 0.042050551623106, 0.31982648372650146, -0.22595533728599548, 0.025221440941095352, 0.0251767635345459, 0.05294276028871536, 0.03539871796965599, 0.164076030254364, 0.04802079126238823, 0.19751201570034027, 0.12776382267475128, -0.5072323083877563, -0.15392538905143738, -0.11864382773637772, -0.10609634965658188, -0.30775490403175354, 0.06743523478507996, 1.4786616563796997, -0.007514109369367361, 0.015327824279665947, -0.20145483314990997]} +{"t": 11.4403, "q": [-0.156147301197052, 0.007214822340756655, 0.017891572788357735, 0.31772151589393616, -0.1591881513595581, -0.0033207673113793135, -0.10743489861488342, -0.028779184445738792, 0.04203715920448303, 0.3198520243167877, -0.22596359252929688, 0.02520720101892948, 0.025083020329475403, 0.05354563891887665, 0.035180553793907166, 0.1651546061038971, 0.05391702800989151, 0.1955346167087555, 0.12759605050086975, -0.5006170272827148, -0.15456055104732513, -0.11865581572055817, -0.10602444410324097, -0.3078387975692749, 0.06741126626729965, 1.4787814617156982, -0.007514109369367361, 0.015339808538556099, -0.20144283771514893]} +{"t": 11.457, "q": [-0.15611322224140167, 0.007223344873636961, 0.017918355762958527, 0.31773003935813904, -0.15918390452861786, -0.0033278074115514755, -0.1074434220790863, -0.028668396174907684, 0.042117513716220856, 0.3198946416378021, -0.22596359252929688, 0.02520720101892948, 0.02504284493625164, 0.05409591645002365, 0.03496885299682617, 0.16613730788230896, 0.0607839897274971, 0.19310182332992554, 0.1275121569633484, -0.4945050776004791, -0.15482421219348907, -0.11865581572055817, -0.10609634965658188, -0.30789870023727417, 0.0674232542514801, 1.4787935018539429, -0.007502125110477209, 0.015339808538556099, -0.20145483314990997]} +{"t": 11.4738, "q": [-0.15608765184879303, 0.007274477276951075, 0.017945140600204468, 0.3177129924297333, -0.15918394923210144, -0.003341912291944027, -0.10746046900749207, -0.02858317457139492, 0.0421442948281765, 0.3198946416378021, -0.22596359252929688, 0.02520720101892948, 0.02501606196165085, 0.054615944623947144, 0.03477702662348747, 0.16719192266464233, 0.06773483753204346, 0.19132815301418304, 0.12734438478946686, -0.4861161410808563, -0.15493206679821014, -0.11865581572055817, -0.10612031817436218, -0.3079346716403961, 0.0674232542514801, 1.4788414239883423, -0.007514109369367361, 0.015339808538556099, -0.20149077475070953]} +{"t": 11.4905, "q": [-0.1560620814561844, 0.007274477276951075, 0.01798531599342823, 0.31772151589393616, -0.15918394923210144, -0.003341912291944027, -0.10745194554328918, -0.02853204309940338, 0.04213090240955353, 0.319903165102005, -0.22596772015094757, 0.02520008198916912, 0.024935709312558174, 0.055067893117666245, 0.03462967649102211, 0.16818661987781525, 0.07502125203609467, 0.1905371993780136, 0.12734438478946686, -0.47687628865242004, -0.15512381494045258, -0.11866779625415802, -0.10606039315462112, -0.3080185651779175, 0.0674472227692604, 1.478925347328186, -0.007478156592696905, 0.015351792797446251, -0.20151475071907043]} +{"t": 11.5072, "q": [-0.15608765184879303, 0.007274477276951075, 0.017945140600204468, 0.31772151589393616, -0.15918394923210144, -0.003341912291944027, -0.10746046900749207, -0.028480909764766693, 0.04215768724679947, 0.319903165102005, -0.22596772015094757, 0.02520008198916912, 0.02486875094473362, 0.055459022521972656, 0.034550342708826065, 0.16895361244678497, 0.08261924982070923, 0.19029751420021057, 0.12717659771442413, -0.46828359365463257, -0.1552436500787735, -0.11865581572055817, -0.10597650706768036, -0.3080425262451172, 0.06741126626729965, 1.4791409969329834, -0.007514109369367361, 0.015351792797446251, -0.20151475071907043]} +{"t": 11.5239, "q": [-0.15607912838459015, 0.0072915214113891125, 0.017945140600204468, 0.31772151589393616, -0.15918394923210144, -0.003341912291944027, -0.10746046900749207, -0.028438299894332886, 0.04219786450266838, 0.3199116885662079, -0.22595500946044922, 0.025192800909280777, 0.024908926337957382, 0.05575196072459221, 0.034526243805885315, 0.16930115222930908, 0.08965399116277695, 0.1902136206626892, 0.1260380893945694, -0.45882806181907654, -0.1558188945055008, -0.11865581572055817, -0.10597650706768036, -0.3080664873123169, 0.06738729774951935, 1.4793328046798706, -0.007502125110477209, 0.015339808538556099, -0.2015267312526703]} +{"t": 11.5407, "q": [-0.1560620814561844, 0.007274477276951075, 0.01795853115618229, 0.31773003935813904, -0.15917113423347473, -0.003348936792463064, -0.10746046900749207, -0.028438299894332886, 0.04215768724679947, 0.31993725895881653, -0.22596772015094757, 0.02520008198916912, 0.024962494149804115, 0.055932044982910156, 0.03452952951192856, 0.1694689244031906, 0.09732389450073242, 0.18966235220432281, 0.12500745058059692, -0.4489290714263916, -0.15604659914970398, -0.11865581572055817, -0.10588063299655914, -0.3080664873123169, 0.06741126626729965, 1.4797642230987549, -0.007502125110477209, 0.015339808538556099, -0.20150277018547058]} +{"t": 11.5574, "q": [-0.15607060492038727, 0.007257433142513037, 0.01797192357480526, 0.31773003935813904, -0.15917108952999115, -0.0033348496071994305, -0.10749455541372299, -0.028438299894332886, 0.04219786450266838, 0.319903165102005, -0.2259632647037506, 0.025178560987114906, 0.024908926337957382, 0.05602937936782837, 0.03454979136586189, 0.1696486920118332, 0.10571285337209702, 0.18897925317287445, 0.12384498119354248, -0.4375200867652893, -0.1561904102563858, -0.11865581572055817, -0.10588063299655914, -0.3080185651779175, 0.06741126626729965, 1.4805312156677246, -0.007478156592696905, 0.015327824279665947, -0.2015267312526703]} +{"t": 11.5741, "q": [-0.15608765184879303, 0.007265954744070768, 0.01797192357480526, 0.31773003935813904, -0.15918394923210144, -0.003341912291944027, -0.10746899247169495, -0.028429776430130005, 0.04222464561462402, 0.31993725895881653, -0.22596772015094757, 0.02520008198916912, 0.02485535852611065, 0.05607421323657036, 0.03456713631749153, 0.16961273550987244, 0.11362244188785553, 0.18878750503063202, 0.12264656275510788, -0.4268421530723572, -0.15652596950531006, -0.11865581572055817, -0.10586864501237869, -0.3079706132411957, 0.0674232542514801, 1.4813700914382935, -0.007514109369367361, 0.015315840020775795, -0.2015267312526703]} +{"t": 11.5908, "q": [-0.15607912838459015, 0.0072489106096327305, 0.018012098968029022, 0.3177129924297333, -0.1591668426990509, -0.003341889940202236, -0.10747750848531723, -0.028446821495890617, 0.042238038033246994, 0.31993725895881653, -0.22597184777259827, 0.02519296295940876, 0.02485535852611065, 0.05608934164047241, 0.034557171165943146, 0.16956479847431183, 0.12161591649055481, 0.18766097724437714, 0.1212683767080307, -0.4171708822250366, -0.15690946578979492, -0.11864382773637772, -0.10585666447877884, -0.30787473917007446, 0.06741126626729965, 1.4822089672088623, -0.007502125110477209, 0.015327824279665947, -0.2015267312526703]} +{"t": 11.6076, "q": [-0.15608765184879303, 0.0072489106096327305, 0.018012098968029022, 0.31773003935813904, -0.1591797024011612, -0.003348952392116189, -0.10746899247169495, -0.028489431366324425, 0.04231838881969452, 0.319903165102005, -0.22597184777259827, 0.02519296295940876, 0.024935709312558174, 0.056104470044374466, 0.03454720601439476, 0.16956479847431183, 0.1296093910932541, 0.18639065325260162, 0.1194467693567276, -0.40548625588417053, -0.15732890367507935, -0.11864382773637772, -0.10597650706768036, -0.3077429234981537, 0.0674232542514801, 1.4829399585723877, -0.007502125110477209, 0.015327824279665947, -0.20151475071907043]} +{"t": 11.6243, "q": [-0.15607060492038727, 0.007257433142513037, 0.018025491386651993, 0.3176959455013275, -0.1591797024011612, -0.003348952392116189, -0.10747750848531723, -0.028566131368279457, 0.04230500012636185, 0.3199116885662079, -0.22597184777259827, 0.02519296295940876, 0.025109805166721344, 0.05613439157605171, 0.034555621445178986, 0.16958877444267273, 0.1381901055574417, 0.18395785987377167, 0.11816445738077164, -0.3930825889110565, -0.15777233242988586, -0.11864382773637772, -0.10602444410324097, -0.3076590299606323, 0.06741126626729965, 1.4835631847381592, -0.007490140851587057, 0.015351792797446251, -0.20151475071907043]} +{"t": 11.6411, "q": [-0.15607912838459015, 0.007214822340756655, 0.018052276223897934, 0.3177129924297333, -0.15917964279651642, -0.0033348563592880964, -0.10747750848531723, -0.028659874573349953, 0.042291607707738876, 0.3198946416378021, -0.22596359252929688, 0.02520720101892948, 0.025324074551463127, 0.056156862527132034, 0.034559570252895355, 0.16961273550987244, 0.1468067616224289, 0.18035060167312622, 0.11727762967348099, -0.38089463114738464, -0.15811987221240997, -0.11865581572055817, -0.10609634965658188, -0.3075152337551117, 0.06738729774951935, 1.4843062162399292, -0.007514109369367361, 0.015327824279665947, -0.20151475071907043]} +{"t": 11.6578, "q": [-0.15608765184879303, 0.007214822340756655, 0.018065666779875755, 0.3176959455013275, -0.15918394923210144, -0.003341912291944027, -0.10746899247169495, -0.028779184445738792, 0.04231838881969452, 0.31988611817359924, -0.22597184777259827, 0.02519296295940876, 0.025471385568380356, 0.05621682479977608, 0.03456695377826691, 0.16973258554935455, 0.1552436500787735, 0.1765875518321991, 0.11634285748004913, -0.3688504695892334, -0.15882693231105804, -0.11865581572055817, -0.10626412183046341, -0.3072635531425476, 0.06741126626729965, 1.48537278175354, -0.007514109369367361, 0.015327824279665947, -0.20150277018547058]} +{"t": 11.6746, "q": [-0.1561046987771988, 0.007163689937442541, 0.018092451617121696, 0.31764480471611023, -0.15917964279651642, -0.0033348563592880964, -0.10746899247169495, -0.028932582587003708, 0.042291607707738876, 0.31983497738838196, -0.22596772015094757, 0.02520008198916912, 0.025605304166674614, 0.056231509894132614, 0.03459478169679642, 0.16986440122127533, 0.16293752193450928, 0.1727645844221115, 0.1152522936463356, -0.35645878314971924, -0.1600133776664734, -0.11864382773637772, -0.10639595240354538, -0.30699989199638367, 0.0673753172159195, 1.4856724739074707, -0.007490140851587057, 0.015339808538556099, -0.2015267312526703]} +{"t": 11.6915, "q": [-0.15612174570560455, 0.007121079135686159, 0.01815940998494625, 0.31764480471611023, -0.15918821096420288, -0.003334863344207406, -0.10747750848531723, -0.0290518905967474, 0.04230500012636185, 0.3198179602622986, -0.22597168385982513, 0.025178642943501472, 0.025739222764968872, 0.05624641478061676, 0.03460371121764183, 0.17030782997608185, 0.17037972807884216, 0.16955281794071198, 0.11385013908147812, -0.34260502457618713, -0.1622544229030609, -0.11865581572055817, -0.1064918264746666, -0.3066163957118988, 0.06731539219617844, 1.4859360456466675, -0.007502125110477209, 0.015327824279665947, -0.2015267312526703]} +{"t": 11.7082, "q": [-0.15613877773284912, 0.007086990866810083, 0.018186194822192192, 0.31764480471611023, -0.1591881513595581, -0.0033207673113793135, -0.10748603194952011, -0.02918824553489685, 0.04231838881969452, 0.31983497738838196, -0.22596772015094757, 0.02520008198916912, 0.025846358388662338, 0.05624619498848915, 0.03462260961532593, 0.1709429919719696, 0.17730660736560822, 0.16698819398880005, 0.11222028732299805, -0.32905086874961853, -0.16501079499721527, -0.11865581572055817, -0.10670754313468933, -0.3061490058898926, 0.06726745516061783, 1.486043930053711, -0.007514109369367361, 0.015339808538556099, -0.20153871178627014]} +{"t": 11.7249, "q": [-0.15615582466125488, 0.007052902597934008, 0.018253153190016747, 0.31764480471611023, -0.15920521318912506, -0.0033066936302930117, -0.10747750848531723, -0.029316077008843422, 0.04235856607556343, 0.3198094367980957, -0.22596359252929688, 0.02520720101892948, 0.025953494012355804, 0.05623874068260193, 0.03461814299225807, 0.17139838635921478, 0.18363428115844727, 0.16411198675632477, 0.11072225868701935, -0.3160719573497772, -0.1679229587316513, -0.11865581572055817, -0.10680341720581055, -0.30568164587020874, 0.06725547462701797, 1.4860678911209106, -0.007514109369367361, 0.015351792797446251, -0.2015746682882309]} +{"t": 11.7417, "q": [-0.15615582466125488, 0.007001769263297319, 0.018266545608639717, 0.31762775778770447, -0.1591966152191162, -0.0032925906125456095, -0.10746046900749207, -0.029469475150108337, 0.04233178123831749, 0.3198094367980957, -0.22596359252929688, 0.02520720101892948, 0.02623472362756729, 0.05626121163368225, 0.03462209179997444, 0.17173394560813904, 0.19063307344913483, 0.15986956655979156, 0.10965566337108612, -0.3031649589538574, -0.171865776181221, -0.11865581572055817, -0.1068153977394104, -0.3052981495857239, 0.06724348664283752, 1.4862836599349976, -0.007490140851587057, 0.015351792797446251, -0.2016226053237915]} +{"t": 11.7585, "q": [-0.156147301197052, 0.00697620352730155, 0.018212977796792984, 0.3176192343235016, -0.15920516848564148, -0.003292597597464919, -0.10745194554328918, -0.029588785022497177, 0.04231838881969452, 0.31983497738838196, -0.2259596288204193, 0.02522864192724228, 0.026502560824155807, 0.05623874068260193, 0.03461814299225807, 0.17197363078594208, 0.19699668884277344, 0.15596270561218262, 0.10897255688905716, -0.29104888439178467, -0.17572470009326935, -0.11863184720277786, -0.10687532275915146, -0.3049625754356384, 0.06719554960727692, 1.4866071939468384, -0.007514109369367361, 0.015375761315226555, -0.2016465812921524]} +{"t": 11.7752, "q": [-0.15616434812545776, 0.006908026058226824, 0.018266545608639717, 0.31762775778770447, -0.15920521318912506, -0.0033066936302930117, -0.10740933567285538, -0.02973366156220436, 0.04231838881969452, 0.31982648372650146, -0.22595533728599548, 0.025221440941095352, 0.0266900472342968, 0.0562460832297802, 0.03463205695152283, 0.1724170446395874, 0.20260530710220337, 0.1523195058107376, 0.10787001252174377, -0.27751868963241577, -0.1778339147567749, -0.11861985921859741, -0.10699516534805298, -0.3046509921550751, 0.06714761257171631, 1.4870506525039673, -0.007478156592696905, 0.015339808538556099, -0.20169450342655182]} +{"t": 11.792, "q": [-0.15617287158966064, 0.00685689365491271, 0.018253153190016747, 0.31767037510871887, -0.15919235348701477, -0.0032996395602822304, -0.10740933567285538, -0.029827404767274857, 0.042278215289115906, 0.3198690712451935, -0.22595533728599548, 0.025221440941095352, 0.026676656678318977, 0.0562460832297802, 0.03463205695152283, 0.1730642020702362, 0.20827385783195496, 0.14910772442817688, 0.10693524032831192, -0.2643600106239319, -0.1787087619304657, -0.11863184720277786, -0.10723485052585602, -0.30425551533699036, 0.067123644053936, 1.4874581098556519, -0.007502125110477209, 0.015351792797446251, -0.20169450342655182]} +{"t": 11.8089, "q": [-0.15613877773284912, 0.0068228053860366344, 0.018279938027262688, 0.3177129924297333, -0.15918384492397308, -0.003313720226287842, -0.1074008122086525, -0.029861493036150932, 0.04234517365694046, 0.31987759470939636, -0.2259470820426941, 0.025235679000616074, 0.02673022449016571, 0.056223612278699875, 0.03462810814380646, 0.1736394464969635, 0.21331921219825745, 0.1465311199426651, 0.10644388943910599, -0.2510215938091278, -0.17924804985523224, -0.11859589070081711, -0.1073906421661377, -0.3038480579853058, 0.06708769500255585, 1.4875179529190063, -0.007478156592696905, 0.015351792797446251, -0.20171847939491272]} +{"t": 11.8256, "q": [-0.15617287158966064, 0.00679723871871829, 0.01830672100186348, 0.3177641034126282, -0.15919235348701477, -0.0032996395602822304, -0.10738376528024673, -0.02990410290658474, 0.04233178123831749, 0.31993725895881653, -0.2259512096643448, 0.025228559970855713, 0.02671683207154274, 0.0562460832297802, 0.03463205695152283, 0.1741427779197693, 0.21829266846179962, 0.14412228763103485, 0.10628809034824371, -0.23852203786373138, -0.1795836091041565, -0.11863184720277786, -0.10753445327281952, -0.30353644490242004, 0.06705173850059509, 1.4876497983932495, -0.007466172333806753, 0.015351792797446251, -0.20173045992851257]} +{"t": 11.8423, "q": [-0.15612174570560455, 0.006754627916961908, 0.01832011342048645, 0.31777262687683105, -0.15918804705142975, -0.0032925927080214024, -0.10735820233821869, -0.029989324510097504, 0.0423719584941864, 0.31996282935142517, -0.2259429395198822, 0.025242816656827927, 0.026743615046143532, 0.0562460832297802, 0.03463205695152283, 0.17464610934257507, 0.2228706330060959, 0.14179734885692596, 0.1062161847949028, -0.22475215792655945, -0.17971543967723846, -0.1185719221830368, -0.10759437084197998, -0.30328479409217834, 0.06705173850059509, 1.4880332946777344, -0.007466172333806753, 0.015351792797446251, -0.20176641643047333]} +{"t": 11.8591, "q": [-0.15613877773284912, 0.006720539648085833, 0.01832011342048645, 0.3178408145904541, -0.1591966152191162, -0.0032925906125456095, -0.10735820233821869, -0.030040455982089043, 0.04234517365694046, 0.3200054466724396, -0.2259470820426941, 0.025235679000616074, 0.026743615046143532, 0.05623874068260193, 0.03461814299225807, 0.17507754266262054, 0.228335440158844, 0.1381421685218811, 0.10620420426130295, -0.21106617152690887, -0.1799791008234024, -0.11855994164943695, -0.10767826437950134, -0.30308106541633606, 0.06705173850059509, 1.4885605573654175, -0.007454188074916601, 0.015327824279665947, -0.20176641643047333]} +{"t": 11.8758, "q": [-0.15612174570560455, 0.006703495513647795, 0.01830672100186348, 0.3178408145904541, -0.15918804705142975, -0.0032925927080214024, -0.10735820233821869, -0.030057501047849655, 0.04233178123831749, 0.3200054466724396, -0.2259429395198822, 0.025242816656827927, 0.02686414308845997, 0.05623874068260193, 0.03461814299225807, 0.1754610389471054, 0.2340998500585556, 0.1335761696100235, 0.1061922162771225, -0.1998729109764099, -0.18039853870868683, -0.11853597313165665, -0.10781008750200272, -0.3029252588748932, 0.06706372648477554, 1.4896272420883179, -0.007454188074916601, 0.015327824279665947, -0.20179037749767303]} +{"t": 11.8926, "q": [-0.15615582466125488, 0.006686451379209757, 0.01830672100186348, 0.3178749084472656, -0.15918384492397308, -0.003313720226287842, -0.10734967887401581, -0.030057501047849655, 0.04231838881969452, 0.3200054466724396, -0.2259388118982315, 0.025249935686588287, 0.026850750669836998, 0.05623117461800575, 0.034623123705387115, 0.17620407044887543, 0.2388456016778946, 0.13042432069778442, 0.10615626722574234, -0.18710970878601074, -0.18086592853069305, -0.1185479536652565, -0.10821755230426788, -0.3027694523334503, 0.06706372648477554, 1.490837574005127, -0.007442203816026449, 0.015315840020775795, -0.20177839696407318]} +{"t": 11.9095, "q": [-0.15617287158966064, 0.006712018046528101, 0.01833350583910942, 0.3178834319114685, -0.15918384492397308, -0.003313720226287842, -0.10734115540981293, -0.030066022649407387, 0.04230500012636185, 0.3200054466724396, -0.2259388118982315, 0.025249935686588287, 0.026837358251214027, 0.0562160462141037, 0.0346330888569355, 0.17682723701000214, 0.24205738306045532, 0.1287824809551239, 0.10614427924156189, -0.17673136293888092, -0.18139323592185974, -0.1185239851474762, -0.1086370050907135, -0.3026496171951294, 0.06703975796699524, 1.4920600652694702, -0.007442203816026449, 0.015303855761885643, -0.20179037749767303]} +{"t": 11.9262, "q": [-0.15615582466125488, 0.0066949729807674885, 0.01832011342048645, 0.3178749084472656, -0.15919235348701477, -0.0032996395602822304, -0.10735820233821869, -0.030066022649407387, 0.04231838881969452, 0.3200054466724396, -0.2259388118982315, 0.025249935686588287, 0.02690431848168373, 0.05623117461800575, 0.034623123705387115, 0.17743843793869019, 0.24600018560886383, 0.12657739222049713, 0.10607238113880157, -0.16227839887142181, -0.1826276034116745, -0.11851200461387634, -0.10881676524877548, -0.30252978205680847, 0.06708769500255585, 1.4928029775619507, -0.007454188074916601, 0.015291871502995491, -0.20179037749767303]} +{"t": 11.9429, "q": [-0.15616434812545776, 0.006712018046528101, 0.01832011342048645, 0.3178834319114685, -0.15918384492397308, -0.003313720226287842, -0.10736672580242157, -0.030074546113610268, 0.042291607707738876, 0.32001397013664246, -0.2259429395198822, 0.025242816656827927, 0.026998061686754227, 0.05623874068260193, 0.03461814299225807, 0.1785050332546234, 0.2514530122280121, 0.12343751639127731, 0.10600047558546066, -0.14956313371658325, -0.18434135615825653, -0.11848803609609604, -0.10904446244239807, -0.3024219274520874, 0.06705173850059509, 1.4934980869293213, -0.007454188074916601, 0.015291871502995491, -0.20177839696407318]} +{"t": 11.9597, "q": [-0.15616434812545776, 0.006712018046528101, 0.01830672100186348, 0.3178408145904541, -0.15920090675354004, -0.003299637697637081, -0.10735820233821869, -0.030048979446291924, 0.04231838881969452, 0.31996282935142517, -0.2259429395198822, 0.025242816656827927, 0.027011454105377197, 0.05623851716518402, 0.03463703766465187, 0.1796075850725174, 0.2574211657047272, 0.12020178139209747, 0.10578475892543793, -0.1360449194908142, -0.18610303103923798, -0.11850001662969589, -0.10935605317354202, -0.30231407284736633, 0.06708769500255585, 1.4940015077590942, -0.007466172333806753, 0.015267902985215187, -0.20177839696407318]} +{"t": 11.9764, "q": [-0.15616434812545776, 0.006712018046528101, 0.01832011342048645, 0.31782376766204834, -0.1591966599225998, -0.003306686645373702, -0.10734115540981293, -0.030048979446291924, 0.042278215289115906, 0.31996282935142517, -0.2259429395198822, 0.025242816656827927, 0.027172155678272247, 0.056223612278699875, 0.03462810814380646, 0.180254727602005, 0.26264628767967224, 0.11691810190677643, 0.10548514872789383, -0.1215679794549942, -0.18815234303474426, -0.11848803609609604, -0.10959573835134506, -0.3022181987762451, 0.06708769500255585, 1.4943609237670898, -0.007442203816026449, 0.015279887244105339, -0.20177839696407318]} +{"t": 11.9932, "q": [-0.15615582466125488, 0.0067375837825238705, 0.01829332858324051, 0.31781524419784546, -0.1591923087835312, -0.003285543527454138, -0.10734967887401581, -0.030048979446291924, 0.042238038033246994, 0.3199543058872223, -0.2259429395198822, 0.025242816656827927, 0.027346251532435417, 0.056223612278699875, 0.03462810814380646, 0.1811775118112564, 0.26878219842910767, 0.11202853918075562, 0.10588063299655914, -0.10736667364835739, -0.19094465672969818, -0.11848803609609604, -0.10975153744220734, -0.30203843116760254, 0.06708769500255585, 1.494720458984375, -0.007454188074916601, 0.015267902985215187, -0.20177839696407318]} +{"t": 12.0099, "q": [-0.1561899185180664, 0.006763150449842215, 0.01829332858324051, 0.3177641034126282, -0.15919235348701477, -0.0032996395602822304, -0.10736672580242157, -0.03002341277897358, 0.042238038033246994, 0.31992873549461365, -0.22593452036380768, 0.02524273470044136, 0.027292683720588684, 0.05620826408267021, 0.03465696796774864, 0.18244785070419312, 0.2743428945541382, 0.10826548933982849, 0.10631205886602402, -0.09357283264398575, -0.19459985196590424, -0.11848803609609604, -0.11014701426029205, -0.30193057656288147, 0.067123644053936, 1.4947924613952637, -0.007442203816026449, 0.015267902985215187, -0.20179037749767303]} +{"t": 12.0266, "q": [-0.15618139505386353, 0.006771672051399946, 0.01829332858324051, 0.3177044689655304, -0.1591966152191162, -0.0032925906125456095, -0.10738376528024673, -0.02996375784277916, 0.042291607707738876, 0.3198009133338928, -0.2259470820426941, 0.025235679000616074, 0.027279291301965714, 0.05617822706699371, 0.034658003598451614, 0.1838500052690506, 0.27894482016563416, 0.10536530613899231, 0.10661166906356812, -0.080030657351017, -0.1976318657398224, -0.11847604811191559, -0.1104106679558754, -0.30188262462615967, 0.067123644053936, 1.4948164224624634, -0.007442203816026449, 0.015267902985215187, -0.20177839696407318]} +{"t": 12.0435, "q": [-0.1561984419822693, 0.006771672051399946, 0.018279938027262688, 0.31768742203712463, -0.15920090675354004, -0.003299637697637081, -0.10734967887401581, -0.029989324510097504, 0.04222464561462402, 0.31979238986968994, -0.2259429395198822, 0.025242816656827927, 0.02725250832736492, 0.05619313567876816, 0.03466693311929703, 0.18521620333194733, 0.28306740522384644, 0.10221345722675323, 0.10667158663272858, -0.06738729774951935, -0.19929766654968262, -0.11848803609609604, -0.11049455404281616, -0.30185866355895996, 0.067123644053936, 1.4948283433914185, -0.007430219557136297, 0.015255918726325035, -0.20180237293243408]} +{"t": 12.0602, "q": [-0.15617287158966064, 0.006771672051399946, 0.01830672100186348, 0.31762775778770447, -0.1591966152191162, -0.0032925906125456095, -0.10739228874444962, -0.030006367713212967, 0.042278215289115906, 0.3197753429412842, -0.2259512096643448, 0.025228559970855713, 0.02722572349011898, 0.056200698018074036, 0.034661952406167984, 0.187445268034935, 0.2873457670211792, 0.09857024997472763, 0.10667158663272858, -0.053653378039598465, -0.1998729109764099, -0.11847604811191559, -0.11063836514949799, -0.3018227219581604, 0.067123644053936, 1.4948164224624634, -0.007442203816026449, 0.015231950208544731, -0.20177839696407318]} +{"t": 12.0769, "q": [-0.15618139505386353, 0.006729062180966139, 0.01833350583910942, 0.3175681233406067, -0.1592051088809967, -0.0032785101793706417, -0.10737524926662445, -0.03002341277897358, 0.042278215289115906, 0.319715678691864, -0.22595550119876862, 0.02523576095700264, 0.02723911590874195, 0.05619313567876816, 0.03466693311929703, 0.18941068649291992, 0.293110191822052, 0.09257814288139343, 0.10689929127693176, -0.04084223881363869, -0.19995680451393127, -0.11846406757831573, -0.1107102707028389, -0.3017508089542389, 0.06713563203811646, 1.4948043823242188, -0.007442203816026449, 0.01521996594965458, -0.20177839696407318]} +{"t": 12.0938, "q": [-0.1561984419822693, 0.0067375837825238705, 0.01829332858324051, 0.3174317479133606, -0.15920941531658173, -0.0032855572644621134, -0.10737524926662445, -0.030006367713212967, 0.04222464561462402, 0.3196730613708496, -0.22595137357711792, 0.025242879986763, 0.027185548096895218, 0.05618556961417198, 0.03467191755771637, 0.19144800305366516, 0.2983472943305969, 0.08762865513563156, 0.10719889402389526, -0.028738172724843025, -0.19996878504753113, -0.11848803609609604, -0.11077019572257996, -0.3017028570175171, 0.06717158108949661, 1.4948523044586182, -0.007454188074916601, 0.015207981690764427, -0.20176641643047333]} +{"t": 12.1106, "q": [-0.1562410444021225, 0.006754627916961908, 0.01829332858324051, 0.3173976540565491, -0.15921366214752197, -0.0032785169314593077, -0.10738376528024673, -0.030006367713212967, 0.04219786450266838, 0.319528192281723, -0.22595568001270294, 0.02525009773671627, 0.027265898883342743, 0.05617033317685127, 0.034691330045461655, 0.19300594925880432, 0.30166691541671753, 0.084225133061409, 0.1076902449131012, -0.017496969550848007, -0.19994480907917023, -0.11846406757831573, -0.11089003831148148, -0.3016069829463959, 0.06720753759145737, 1.4948043823242188, -0.007454188074916601, 0.015195997431874275, -0.20176641643047333]} +{"t": 12.1273, "q": [-0.15625809133052826, 0.006754627916961908, 0.01829332858324051, 0.3173465430736542, -0.1592179238796234, -0.0032714679837226868, -0.10738376528024673, -0.030014891177415848, 0.0421442948281765, 0.3194515109062195, -0.22596395015716553, 0.02523585967719555, 0.027292683720588684, 0.05615531653165817, 0.03469184786081314, 0.1946118324995041, 0.3043154180049896, 0.08167249709367752, 0.10809770971536636, -0.006004096940159798, -0.19998076558113098, -0.11847604811191559, -0.11090201884508133, -0.30151110887527466, 0.06720753759145737, 1.4948523044586182, -0.007442203816026449, 0.015195997431874275, -0.20177839696407318]} +{"t": 12.1443, "q": [-0.15627513825893402, 0.0067375837825238705, 0.01830672100186348, 0.31730392575263977, -0.1592179238796234, -0.0032714679837226868, -0.10738376528024673, -0.030006367713212967, 0.04218447208404541, 0.3194003701210022, -0.22597236931324005, 0.025235941633582115, 0.02725250832736492, 0.05614764243364334, 0.03470627963542938, 0.19656525552272797, 0.3058973550796509, 0.08019843697547913, 0.10820557177066803, 0.004062652587890625, -0.20013655722141266, -0.11847604811191559, -0.11111773550510406, -0.30136731266975403, 0.06721951812505722, 1.4948523044586182, -0.007454188074916601, 0.015184013172984123, -0.20176641643047333]} +{"t": 12.161, "q": [-0.1562410444021225, 0.0067375837825238705, 0.01830672100186348, 0.31726130843162537, -0.1592392474412918, -0.003250354202464223, -0.10737524926662445, -0.03003193438053131, 0.042238038033246994, 0.31933218240737915, -0.22596824169158936, 0.025243060663342476, 0.02735964208841324, 0.05615520849823952, 0.03470129519701004, 0.19818313419818878, 0.3070358633995056, 0.07882025092840195, 0.10837335139513016, 0.013578127138316631, -0.2001485526561737, -0.11848803609609604, -0.11116567254066467, -0.3010677099227905, 0.06726745516061783, 1.494780421257019, -0.007454188074916601, 0.015148060396313667, -0.20176641643047333]} +{"t": 12.1777, "q": [-0.15626661479473114, 0.006729062180966139, 0.01829332858324051, 0.3171505331993103, -0.15923063457012177, -0.0032362511847168207, -0.10737524926662445, -0.030083067715168, 0.04218447208404541, 0.31934070587158203, -0.22597236931324005, 0.025235941633582115, 0.02753373794257641, 0.05616287887096405, 0.0346868634223938, 0.19968116283416748, 0.30874958634376526, 0.07635150104761124, 0.10857708007097244, 0.02244645357131958, -0.20018449425697327, -0.11847604811191559, -0.11118964105844498, -0.3008520007133484, 0.06720753759145737, 1.4947924613952637, -0.007454188074916601, 0.015148060396313667, -0.20176641643047333]} +{"t": 12.1945, "q": [-0.15625809133052826, 0.006712018046528101, 0.018266545608639717, 0.31712496280670166, -0.1592392474412918, -0.003250354202464223, -0.10737524926662445, -0.03009158931672573, 0.04213090240955353, 0.31933218240737915, -0.22597666084766388, 0.025243140757083893, 0.02792210318148136, 0.05615520849823952, 0.03470129519701004, 0.2006518840789795, 0.3112063705921173, 0.07300789654254913, 0.10885271430015564, 0.03175819665193558, -0.20018449425697327, -0.11846406757831573, -0.11117766052484512, -0.3006003201007843, 0.06723150610923767, 1.494780421257019, -0.007442203816026449, 0.015136076137423515, -0.20176641643047333]} +{"t": 12.2115, "q": [-0.15627513825893402, 0.0067375837825238705, 0.018239762634038925, 0.31708234548568726, -0.15923063457012177, -0.0032362511847168207, -0.10736672580242157, -0.030074546113610268, 0.042117513716220856, 0.3193577527999878, -0.22597666084766388, 0.025243140757083893, 0.028323858976364136, 0.05614018812775612, 0.034701813012361526, 0.20141887664794922, 0.313663125038147, 0.06962835043668747, 0.1092122420668602, 0.03846936300396919, -0.20020847022533417, -0.11845207959413528, -0.11128551512956619, -0.3002767562866211, 0.06725547462701797, 1.4947324991226196, -0.007442203816026449, 0.015124091878533363, -0.20175443589687347]} +{"t": 12.2282, "q": [-0.15630070865154266, 0.006720539648085833, 0.018253153190016747, 0.317099392414093, -0.1592392474412918, -0.003250354202464223, -0.10737524926662445, -0.030057501047849655, 0.042090728878974915, 0.31933218240737915, -0.22598078846931458, 0.025236021727323532, 0.028698831796646118, 0.05614018812775612, 0.034701813012361526, 0.20153871178627014, 0.3148016333580017, 0.06828611344099045, 0.10971558094024658, 0.04539624601602554, -0.2001725137233734, -0.11845207959413528, -0.1113094836473465, -0.30019286274909973, 0.06721951812505722, 1.494780421257019, -0.007442203816026449, 0.01510012336075306, -0.20175443589687347]} +{"t": 12.2449, "q": [-0.15630923211574554, 0.0067375837825238705, 0.018226370215415955, 0.317099392414093, -0.15923067927360535, -0.0032503472175449133, -0.10737524926662445, -0.030057501047849655, 0.042104121297597885, 0.31934070587158203, -0.225976824760437, 0.02525746077299118, 0.029180940240621567, 0.05614018812775612, 0.034701813012361526, 0.20153871178627014, 0.3151491582393646, 0.06773483753204346, 0.1101110652089119, 0.052383050322532654, -0.20013655722141266, -0.11845207959413528, -0.11129750311374664, -0.30031269788742065, 0.06724348664283752, 1.494768500328064, -0.007454188074916601, 0.015088140033185482, -0.20175443589687347]} +{"t": 12.2617, "q": [-0.15629218518733978, 0.006712018046528101, 0.018226370215415955, 0.317099392414093, -0.1592349410057068, -0.0032432982698082924, -0.10735820233821869, -0.030057501047849655, 0.042090728878974915, 0.3193577527999878, -0.2259850949048996, 0.02524322271347046, 0.02955591306090355, 0.056147750467061996, 0.034696828573942184, 0.20151475071907043, 0.3151971101760864, 0.06753110885620117, 0.11031479388475418, 0.056649431586265564, -0.20018449425697327, -0.11840414255857468, -0.1113094836473465, -0.3004685044288635, 0.06719554960727692, 1.494768500328064, -0.007442203816026449, 0.015088140033185482, -0.20176641643047333]} +{"t": 12.2784, "q": [-0.15627513825893402, 0.0067375837825238705, 0.018186194822192192, 0.3171590566635132, -0.15923498570919037, -0.003257403150200844, -0.10734115540981293, -0.030074546113610268, 0.04206394404172897, 0.31938332319259644, -0.22597666084766388, 0.025243140757083893, 0.029783576726913452, 0.05614018812775612, 0.034701813012361526, 0.20140689611434937, 0.31513717770576477, 0.06750714033842087, 0.11042264848947525, 0.06252170354127884, -0.20018449425697327, -0.11842811107635498, -0.1113094836473465, -0.3005763590335846, 0.06719554960727692, 1.4947924613952637, -0.007430219557136297, 0.015088140033185482, -0.20174244046211243]} +{"t": 12.2952, "q": [-0.15630923211574554, 0.0067375837825238705, 0.018186194822192192, 0.31716758012771606, -0.1592349410057068, -0.0032432982698082924, -0.10733263939619064, -0.030057501047849655, 0.04206394404172897, 0.31934070587158203, -0.2259809672832489, 0.02525034174323082, 0.03006480634212494, 0.05614018812775612, 0.034701813012361526, 0.20138292014598846, 0.3149574100971222, 0.06754309684038162, 0.11051852256059647, 0.06851381808519363, -0.20018449425697327, -0.11840414255857468, -0.11129750311374664, -0.3006003201007843, 0.06721951812505722, 1.4948043823242188, -0.007430219557136297, 0.01507615577429533, -0.20176641643047333]} +{"t": 12.3119, "q": [-0.15627513825893402, 0.0067375837825238705, 0.01814601942896843, 0.3171846270561218, -0.1592392474412918, -0.003250354202464223, -0.10732411593198776, -0.030048979446291924, 0.04202376678586006, 0.3193577527999878, -0.2259850949048996, 0.02524322271347046, 0.030185332521796227, 0.056125279515981674, 0.034692879766225815, 0.20138292014598846, 0.3148975074291229, 0.06768690049648285, 0.11059042811393738, 0.07158178091049194, -0.20018449425697327, -0.11839216202497482, -0.11128551512956619, -0.3006003201007843, 0.06724348664283752, 1.494780421257019, -0.007430219557136297, 0.01507615577429533, -0.20175443589687347]} +{"t": 12.3287, "q": [-0.15630923211574554, 0.0067375837825238705, 0.01813262701034546, 0.3172101676464081, -0.1592392474412918, -0.003250354202464223, -0.10731559246778488, -0.030048979446291924, 0.04202376678586006, 0.31934070587158203, -0.22597666084766388, 0.025243140757083893, 0.030346035957336426, 0.056125279515981674, 0.034692879766225815, 0.20121514797210693, 0.3148495554924011, 0.06791460514068604, 0.11057844758033752, 0.07226487994194031, -0.20022045075893402, -0.11841613054275513, -0.11127353459596634, -0.300624281167984, 0.06719554960727692, 1.4947564601898193, -0.007442203816026449, 0.01507615577429533, -0.20175443589687347]} +{"t": 12.3455, "q": [-0.1562836617231369, 0.006712018046528101, 0.01814601942896843, 0.31722721457481384, -0.1592392921447754, -0.0032644502352923155, -0.10731559246778488, -0.030048979446291924, 0.042050551623106, 0.3193577527999878, -0.2259850949048996, 0.02524322271347046, 0.03038621135056019, 0.056125279515981674, 0.034692879766225815, 0.2009275257587433, 0.31333956122398376, 0.06790261715650558, 0.11051852256059647, 0.07215701788663864, -0.2003283053636551, -0.11835620552301407, -0.11126154661178589, -0.300624281167984, 0.06717158108949661, 1.4947564601898193, -0.007430219557136297, 0.015088140033185482, -0.20175443589687347]} +{"t": 12.3623, "q": [-0.15627513825893402, 0.006746106315404177, 0.018105842173099518, 0.3172357380390167, -0.1592349410057068, -0.0032432982698082924, -0.10728150606155396, -0.030040455982089043, 0.04197020083665848, 0.3193577527999878, -0.22598491609096527, 0.02522890269756317, 0.030479954555630684, 0.05613284558057785, 0.03468789905309677, 0.20085561275482178, 0.3106071352958679, 0.0679984912276268, 0.11047058552503586, 0.07143796980381012, -0.2006518840789795, -0.11832025647163391, -0.11120162904262543, -0.300624281167984, 0.06715960055589676, 1.4948043823242188, -0.007430219557136297, 0.015088140033185482, -0.20175443589687347]} +{"t": 12.379, "q": [-0.15627513825893402, 0.006771672051399946, 0.018052276223897934, 0.3172527849674225, -0.1592392474412918, -0.003250354202464223, -0.10728150606155396, -0.029980802908539772, 0.04198359325528145, 0.3193492293357849, -0.22598491609096527, 0.02522890269756317, 0.03060048073530197, 0.056125279515981674, 0.034692879766225815, 0.20079569518566132, 0.3070718050003052, 0.0680224597454071, 0.11029082536697388, 0.06998787820339203, -0.2012510895729065, -0.11829628795385361, -0.11111773550510406, -0.30061230063438416, 0.06714761257171631, 1.4947924613952637, -0.007430219557136297, 0.015088140033185482, -0.20176641643047333]} +{"t": 12.3959, "q": [-0.15626661479473114, 0.0067801945842802525, 0.018038883805274963, 0.3173294961452484, -0.15923498570919037, -0.003257403150200844, -0.1072644591331482, -0.02996375784277916, 0.04198359325528145, 0.31937479972839355, -0.22598491609096527, 0.02522890269756317, 0.030721008777618408, 0.056125279515981674, 0.034692879766225815, 0.20075973868370056, 0.3024458885192871, 0.06990398466587067, 0.11025486886501312, 0.06899318099021912, -0.20207799971103668, -0.1182243824005127, -0.11096194386482239, -0.3005763590335846, 0.06713563203811646, 1.4947924613952637, -0.007406251039355993, 0.015064171515405178, -0.20175443589687347]} +{"t": 12.4126, "q": [-0.15626661479473114, 0.00679723871871829, 0.017918355762958527, 0.3173976540565491, -0.1592135727405548, -0.0032503337133675814, -0.1072133257985115, -0.029955236241221428, 0.04183628037571907, 0.31941741704940796, -0.22598905861377716, 0.02522178366780281, 0.03124329261481762, 0.056117936968803406, 0.03467896580696106, 0.2004241794347763, 0.29823943972587585, 0.07269631326198578, 0.11027883738279343, 0.06756706535816193, -0.20315659046173096, -0.11811652034521103, -0.11054249107837677, -0.30061230063438416, 0.06708769500255585, 1.4948283433914185, -0.007430219557136297, 0.01507615577429533, -0.20175443589687347]} +{"t": 12.4294, "q": [-0.15624956786632538, 0.006805761251598597, 0.017838004976511, 0.31741470098495483, -0.1592179238796234, -0.0032714679837226868, -0.10717923939228058, -0.029938191175460815, 0.0418228916823864, 0.3194515109062195, -0.225993350148201, 0.025228984653949738, 0.031524524092674255, 0.056125614792108536, 0.03466453775763512, 0.19936956465244293, 0.2941648066043854, 0.0752369686961174, 0.10990732908248901, 0.06502640247344971, -0.2046665996313095, -0.11808057129383087, -0.11031479388475418, -0.300624281167984, 0.0670757070183754, 1.4948883056640625, -0.007430219557136297, 0.015088140033185482, -0.20176641643047333]} +{"t": 12.4461, "q": [-0.15624956786632538, 0.006788717117160559, 0.017838004976511, 0.3175169825553894, -0.15922223031520844, -0.0032785239163786173, -0.1071707159280777, -0.029955236241221428, 0.0418228916823864, 0.31955376267433167, -0.2259850949048996, 0.02524322271347046, 0.03156469762325287, 0.05614819377660751, 0.03465903550386429, 0.19826702773571014, 0.2905096113681793, 0.07708253711462021, 0.10984741151332855, 0.05890246853232384, -0.20623652637004852, -0.11804462224245071, -0.11029082536697388, -0.30066025257110596, 0.06705173850059509, 1.4949122667312622, -0.007442203816026449, 0.01510012336075306, -0.20176641643047333]} +{"t": 12.4629, "q": [-0.15626661479473114, 0.00679723871871829, 0.017838004976511, 0.3175169825553894, -0.15920937061309814, -0.0032714700791984797, -0.10718776285648346, -0.02991262450814247, 0.04183628037571907, 0.3195878565311432, -0.2259850949048996, 0.02524322271347046, 0.031497739255428314, 0.05611070618033409, 0.034655604511499405, 0.19722439348697662, 0.28730982542037964, 0.07900001108646393, 0.10979947447776794, 0.05258677899837494, -0.20772257447242737, -0.11808057129383087, -0.11023090034723282, -0.3006482720375061, 0.06706372648477554, 1.4949241876602173, -0.007418235298246145, 0.01510012336075306, -0.20176641643047333]} +{"t": 12.4796, "q": [-0.15622399747371674, 0.006805761251598597, 0.017851397395133972, 0.317661851644516, -0.1591966152191162, -0.0032925906125456095, -0.10714515298604965, -0.02991262450814247, 0.04184967279434204, 0.31964749097824097, -0.22596824169158936, 0.025243060663342476, 0.031484346836805344, 0.05611070618033409, 0.034655604511499405, 0.19607390463352203, 0.2826719284057617, 0.08344615995883942, 0.10972756892442703, 0.047038085758686066, -0.20930449664592743, -0.11804462224245071, -0.1101350262761116, -0.30066025257110596, 0.06705173850059509, 1.4949722290039062, -0.007418235298246145, 0.015088140033185482, -0.20175443589687347]} +{"t": 12.4964, "q": [-0.15622399747371674, 0.00679723871871829, 0.017851397395133972, 0.3177556097507477, -0.15920941531658173, -0.0032855572644621134, -0.10711105912923813, -0.029929669573903084, 0.04186306521296501, 0.31969863176345825, -0.2259850949048996, 0.02524322271347046, 0.0315513052046299, 0.05611070618033409, 0.034655604511499405, 0.19507922232151031, 0.27799805998802185, 0.08740095794200897, 0.10969161242246628, 0.040231045335531235, -0.21152158081531525, -0.11803263425827026, -0.10984741151332855, -0.3006482720375061, 0.06703975796699524, 1.495008111000061, -0.007418235298246145, 0.01507615577429533, -0.20175443589687347]} +{"t": 12.5131, "q": [-0.15618139505386353, 0.006746106315404177, 0.017864787951111794, 0.3177981972694397, -0.15920090675354004, -0.003299637697637081, -0.1070769727230072, -0.029989324510097504, 0.04186306521296501, 0.31974124908447266, -0.2259809672832489, 0.02525034174323082, 0.031484346836805344, 0.056125834584236145, 0.03464563935995102, 0.19437214732170105, 0.2727969288825989, 0.09115201979875565, 0.10965566337108612, 0.031746212393045425, -0.21492509543895721, -0.11803263425827026, -0.1095597892999649, -0.30063626170158386, 0.06701578944921494, 1.495008111000061, -0.007394266780465841, 0.015064171515405178, -0.20175443589687347]} +{"t": 12.5298, "q": [-0.1561984419822693, 0.006720539648085833, 0.017864787951111794, 0.3178834319114685, -0.15920516848564148, -0.003292597597464919, -0.10708549618721008, -0.030006367713212967, 0.041916634887456894, 0.31982648372650146, -0.22597236931324005, 0.025235941633582115, 0.03147095441818237, 0.05611827224493027, 0.03465062379837036, 0.1938328593969345, 0.2683987021446228, 0.09305750578641891, 0.10964367538690567, 0.024591630324721336, -0.21783725917339325, -0.11800866574048996, -0.10927216708660126, -0.30063626170158386, 0.06700380146503448, 1.495008111000061, -0.007418235298246145, 0.015088140033185482, -0.20175443589687347]} +{"t": 12.5466, "q": [-0.15620696544647217, 0.006703495513647795, 0.017864787951111794, 0.31796011328697205, -0.1592094749212265, -0.003299653297290206, -0.10705140233039856, -0.030014891177415848, 0.04187645763158798, 0.3198179602622986, -0.22596824169158936, 0.025243060663342476, 0.031497739255428314, 0.05611070618033409, 0.034655604511499405, 0.1937130093574524, 0.2642042338848114, 0.0938844233751297, 0.10961970686912537, 0.016765931621193886, -0.2197427600622177, -0.11800866574048996, -0.10902049392461777, -0.30066025257110596, 0.06697983294725418, 1.4950201511383057, -0.007382282521575689, 0.015088140033185482, -0.20176641643047333]} +{"t": 12.5633, "q": [-0.1561984419822693, 0.0066949729807674885, 0.017878180369734764, 0.3180709183216095, -0.15920086205005646, -0.0032855505123734474, -0.10700027644634247, -0.030040455982089043, 0.041916634887456894, 0.3198179602622986, -0.22597253322601318, 0.025250261649489403, 0.0315513052046299, 0.05611070618033409, 0.034655604511499405, 0.19359317421913147, 0.25907498598098755, 0.09514276683330536, 0.10936804115772247, 0.006639260798692703, -0.22098910808563232, -0.11800866574048996, -0.1089126393198967, -0.30063626170158386, 0.06701578944921494, 1.4950320720672607, -0.007382282521575689, 0.01507615577429533, -0.20176641643047333]} +{"t": 12.5802, "q": [-0.1561984419822693, 0.006626796443015337, 0.017891572788357735, 0.3180709183216095, -0.15920937061309814, -0.0032714700791984797, -0.10697470605373383, -0.030125677585601807, 0.04190324246883392, 0.3198690712451935, -0.22596411406993866, 0.025250179693102837, 0.03161826729774475, 0.05611827224493027, 0.03465062379837036, 0.1931138038635254, 0.2536461353302002, 0.09580189734697342, 0.10890065133571625, -0.0021092237439006567, -0.22163626551628113, -0.11802065372467041, -0.10873287916183472, -0.3006722331047058, 0.06697983294725418, 1.4950560331344604, -0.007382282521575689, 0.015088140033185482, -0.20175443589687347]} +{"t": 12.597, "q": [-0.15616434812545776, 0.006575664039701223, 0.017891572788357735, 0.3180794417858124, -0.15920516848564148, -0.003292597597464919, -0.10699175298213959, -0.030219420790672302, 0.04190324246883392, 0.3198946416378021, -0.22595980763435364, 0.02524297870695591, 0.03157809004187584, 0.056125834584236145, 0.03464563935995102, 0.19239474833011627, 0.24844497442245483, 0.09593372046947479, 0.10856509953737259, -0.01209208369255066, -0.22224745154380798, -0.11803263425827026, -0.10844525694847107, -0.30068421363830566, 0.06697983294725418, 1.4950799942016602, -0.007382282521575689, 0.015088140033185482, -0.20177839696407318]} +{"t": 12.6138, "q": [-0.15617287158966064, 0.006575664039701223, 0.017878180369734764, 0.3181220591068268, -0.1592051088809967, -0.0032785101793706417, -0.10699175298213959, -0.030219420790672302, 0.041916634887456894, 0.3199457824230194, -0.22596824169158936, 0.025243060663342476, 0.031511131674051285, 0.056125834584236145, 0.03464563935995102, 0.19165173172950745, 0.24342358112335205, 0.0959576889872551, 0.10832541435956955, -0.02093644067645073, -0.22253507375717163, -0.11802065372467041, -0.10832541435956955, -0.3006482720375061, 0.06697983294725418, 1.4950920343399048, -0.007382282521575689, 0.015088140033185482, -0.20177839696407318]} +{"t": 12.6305, "q": [-0.1561899185180664, 0.006584185641258955, 0.017891572788357735, 0.3181135356426239, -0.15920086205005646, -0.0032855505123734474, -0.1069832295179367, -0.030193854123353958, 0.04190324246883392, 0.31993725895881653, -0.22595980763435364, 0.02524297870695591, 0.031524524092674255, 0.05607321485877037, 0.03465216979384422, 0.19100458920001984, 0.23770710825920105, 0.09677261859178543, 0.1083373948931694, -0.03189002349972725, -0.222618967294693, -0.11803263425827026, -0.10825350880622864, -0.3006722331047058, 0.06697983294725418, 1.4951878786087036, -0.007382282521575689, 0.015088140033185482, -0.20177839696407318]} +{"t": 12.6472, "q": [-0.1561899185180664, 0.006575664039701223, 0.017918355762958527, 0.318105012178421, -0.15920086205005646, -0.0032855505123734474, -0.1069832295179367, -0.030185332521796227, 0.04187645763158798, 0.31993725895881653, -0.22595980763435364, 0.02524297870695591, 0.0315513052046299, 0.056095801293849945, 0.03464667499065399, 0.1901896595954895, 0.2316790372133255, 0.09843842685222626, 0.10836136341094971, -0.0415133573114872, -0.22263094782829285, -0.11800866574048996, -0.10813366621732712, -0.30066025257110596, 0.06697983294725418, 1.4951878786087036, -0.007358314469456673, 0.015088140033185482, -0.20177839696407318]} +{"t": 12.664, "q": [-0.15616434812545776, 0.006584185641258955, 0.017904965206980705, 0.3181220591068268, -0.15920090675354004, -0.003299637697637081, -0.1069832295179367, -0.030185332521796227, 0.041916634887456894, 0.31997135281562805, -0.22596395015716553, 0.02523585967719555, 0.03141738846898079, 0.056125834584236145, 0.03464563935995102, 0.1895904392004013, 0.22579479217529297, 0.10021208971738815, 0.10832541435956955, -0.05074121057987213, -0.22270286083221436, -0.11802065372467041, -0.10804977267980576, -0.3006482720375061, 0.06700380146503448, 1.4951399564743042, -0.007358314469456673, 0.015088140033185482, -0.20177839696407318]} +{"t": 12.6809, "q": [-0.156147301197052, 0.006626796443015337, 0.017918355762958527, 0.3181135356426239, -0.1591923087835312, -0.003285543527454138, -0.10699175298213959, -0.03014272265136242, 0.041916634887456894, 0.3199457824230194, -0.22596824169158936, 0.025243060663342476, 0.0310691986232996, 0.056110929697752, 0.034636709839105606, 0.18939869105815887, 0.2205217331647873, 0.1025969535112381, 0.1083373948931694, -0.05881857872009277, -0.22275079786777496, -0.11802065372467041, -0.1079898551106453, -0.3006482720375061, 0.06700380146503448, 1.4950920343399048, -0.007358314469456673, 0.01507615577429533, -0.20177839696407318]} +{"t": 12.6976, "q": [-0.1560961753129959, 0.006686451379209757, 0.017918355762958527, 0.31808796525001526, -0.1591966152191162, -0.0032925906125456095, -0.10699175298213959, -0.030057501047849655, 0.04194341599941254, 0.31992873549461365, -0.22596395015716553, 0.02523585967719555, 0.030814751982688904, 0.056125834584236145, 0.03464563935995102, 0.18936274945735931, 0.214230015873909, 0.10541324317455292, 0.10820557177066803, -0.06760301440954208, -0.22282269597053528, -0.11800866574048996, -0.10784604400396347, -0.30068421363830566, 0.06697983294725418, 1.4950560331344604, -0.007358314469456673, 0.015040202997624874, -0.20175443589687347]} +{"t": 12.7143, "q": [-0.1560961753129959, 0.006754627916961908, 0.017891572788357735, 0.3180794417858124, -0.15920086205005646, -0.0032855505123734474, -0.10700027644634247, -0.02997227944433689, 0.041930023580789566, 0.3199457824230194, -0.22596807777881622, 0.02522874064743519, 0.030694223940372467, 0.056110929697752, 0.034636709839105606, 0.1890391707420349, 0.20895695686340332, 0.1070910394191742, 0.1076902449131012, -0.0773581713438034, -0.2228706330060959, -0.11804462224245071, -0.10747452825307846, -0.30066025257110596, 0.06700380146503448, 1.4949841499328613, -0.007358314469456673, 0.015028218738734722, -0.20176641643047333]} +{"t": 12.7311, "q": [-0.1560620814561844, 0.006814282853156328, 0.017878180369734764, 0.31804534792900085, -0.15920086205005646, -0.0032855505123734474, -0.10700879245996475, -0.02985296957194805, 0.041930023580789566, 0.3199457824230194, -0.22596395015716553, 0.02523585967719555, 0.030546914786100388, 0.056126054376363754, 0.03462674468755722, 0.18890734016895294, 0.20386365056037903, 0.1089126393198967, 0.10689929127693176, -0.08675380796194077, -0.2228706330060959, -0.11804462224245071, -0.10706707090139389, -0.3006961941719055, 0.06703975796699524, 1.4949722290039062, -0.007358314469456673, 0.015004250220954418, -0.20175443589687347]} +{"t": 12.7478, "q": [-0.15604503452777863, 0.00685689365491271, 0.017891572788357735, 0.31805387139320374, -0.15918804705142975, -0.0032925927080214024, -0.10702583938837051, -0.02972513809800148, 0.04195680841803551, 0.31993725895881653, -0.22596807777881622, 0.02522874064743519, 0.030372818931937218, 0.056126054376363754, 0.03462674468755722, 0.18858376145362854, 0.1992257535457611, 0.11140535771846771, 0.10614427924156189, -0.09459149092435837, -0.22284667193889618, -0.11805660277605057, -0.10682738572359085, -0.3006961941719055, 0.06703975796699524, 1.4949241876602173, -0.007358314469456673, 0.015004250220954418, -0.20174244046211243]} +{"t": 12.7645, "q": [-0.15604503452777863, 0.006899504456669092, 0.017891572788357735, 0.318036824464798, -0.1591881513595581, -0.0033207673113793135, -0.10702583938837051, -0.029588785022497177, 0.041930023580789566, 0.31993725895881653, -0.22598078846931458, 0.025236021727323532, 0.030346035957336426, 0.056126054376363754, 0.03462674468755722, 0.18816432356834412, 0.1941564381122589, 0.11376625299453735, 0.10532935708761215, -0.1040949821472168, -0.22283469140529633, -0.11805660277605057, -0.1065397635102272, -0.30068421363830566, 0.0670757070183754, 1.494936227798462, -0.007370298728346825, 0.014980281703174114, -0.20171847939491272]} +{"t": 12.7813, "q": [-0.15603651106357574, 0.006890981923788786, 0.017838004976511, 0.31804534792900085, -0.15918384492397308, -0.003313720226287842, -0.10700879245996475, -0.02953765168786049, 0.04186306521296501, 0.31992873549461365, -0.22597220540046692, 0.025221621617674828, 0.030479954555630684, 0.05613362044095993, 0.03462176024913788, 0.18787670135498047, 0.19088473916053772, 0.11420966684818268, 0.10429871082305908, -0.11263973265886307, -0.22278675436973572, -0.11805660277605057, -0.10632404685020447, -0.3006722331047058, 0.06708769500255585, 1.4949601888656616, -0.007370298728346825, 0.014968297444283962, -0.20173045992851257]} +{"t": 12.798, "q": [-0.15601947903633118, 0.006925070192664862, 0.017771044746041298, 0.318036824464798, -0.1591881513595581, -0.0033207673113793135, -0.10702583938837051, -0.02948652021586895, 0.04184967279434204, 0.31992873549461365, -0.22596807777881622, 0.02522874064743519, 0.03043977916240692, 0.05613362044095993, 0.03462176024913788, 0.18805646896362305, 0.18770891427993774, 0.11420966684818268, 0.10320814698934555, -0.12318585067987442, -0.22270286083221436, -0.11809255182743073, -0.10612031817436218, -0.3006482720375061, 0.0670757070183754, 1.4949482679367065, -0.007358314469456673, 0.014932344667613506, -0.20170649886131287]} +{"t": 12.8149, "q": [-0.15603651106357574, 0.0069421143271028996, 0.01782461255788803, 0.318036824464798, -0.1591753363609314, -0.0033278092741966248, -0.10701731592416763, -0.02947799675166607, 0.041916634887456894, 0.3199457824230194, -0.2259678989648819, 0.02521440200507641, 0.030520129948854446, 0.056126054376363754, 0.03462674468755722, 0.18803249299526215, 0.1841975450515747, 0.11455720663070679, 0.10234528034925461, -0.13183845579624176, -0.22265492379665375, -0.11809255182743073, -0.10609634965658188, -0.3006722331047058, 0.0670757070183754, 1.494936227798462, -0.007358314469456673, 0.014932344667613506, -0.20169450342655182]} +{"t": 12.8318, "q": [-0.15603651106357574, 0.00691654859110713, 0.01779782958328724, 0.318036824464798, -0.15918390452861786, -0.0033278074115514755, -0.10700879245996475, -0.029520608484745026, 0.04186306521296501, 0.31996282935142517, -0.2259804606437683, 0.025207381695508957, 0.03058709017932415, 0.056126054376363754, 0.03462674468755722, 0.188044473528862, 0.18134529888629913, 0.11436545848846436, 0.10182996094226837, -0.14342720806598663, -0.2225950062274933, -0.11811652034521103, -0.10609634965658188, -0.30068421363830566, 0.06708769500255585, 1.494936227798462, -0.007358314469456673, 0.014920360408723354, -0.20169450342655182]} +{"t": 12.8486, "q": [-0.15604503452777863, 0.006908026058226824, 0.017864787951111794, 0.318036824464798, -0.15918390452861786, -0.0033278074115514755, -0.10701731592416763, -0.0295546967536211, 0.04190324246883392, 0.3199543058872223, -0.2259637713432312, 0.02522152103483677, 0.030533522367477417, 0.05612616240978241, 0.03461729362607002, 0.18816432356834412, 0.17862488329410553, 0.11429355293512344, 0.10165020078420639, -0.15303856134414673, -0.22258301079273224, -0.11815247684717178, -0.10618023574352264, -0.3006961941719055, 0.06706372648477554, 1.4949601888656616, -0.007370298728346825, 0.014920360408723354, -0.20170649886131287]} +{"t": 12.8653, "q": [-0.1560535579919815, 0.006899504456669092, 0.017864787951111794, 0.3180197775363922, -0.15919245779514313, -0.0033278230112046003, -0.10700027644634247, -0.029631394892930984, 0.04194341599941254, 0.31997135281562805, -0.2259637713432312, 0.02522152103483677, 0.030520129948854446, 0.056126054376363754, 0.03462674468755722, 0.18812836706638336, 0.1757606416940689, 0.11425760388374329, 0.1017221063375473, -0.1649269014596939, -0.22228340804576874, -0.11818842589855194, -0.10626412183046341, -0.30066025257110596, 0.06708769500255585, 1.4949482679367065, -0.007370298728346825, 0.014908376149833202, -0.20169450342655182]} +{"t": 12.8821, "q": [-0.15608765184879303, 0.006865415256470442, 0.017904965206980705, 0.3180283010005951, -0.15919235348701477, -0.0032996395602822304, -0.1069832295179367, -0.02973366156220436, 0.04198359325528145, 0.31996282935142517, -0.22596395015716553, 0.02523585967719555, 0.030546914786100388, 0.0561409629881382, 0.034635674208402634, 0.18784074485301971, 0.17347165942192078, 0.11425760388374329, 0.1017460748553276, -0.17441841959953308, -0.22210364043712616, -0.11820041388273239, -0.10637198388576508, -0.3006722331047058, 0.06708769500255585, 1.4949241876602173, -0.007382282521575689, 0.01489639189094305, -0.2016705423593521]} +{"t": 12.8988, "q": [-0.15608765184879303, 0.0067801945842802525, 0.017931748181581497, 0.318036824464798, -0.15918804705142975, -0.0032925927080214024, -0.10697470605373383, -0.029861493036150932, 0.04202376678586006, 0.3199457824230194, -0.22595980763435364, 0.02524297870695591, 0.03043977916240692, 0.056126054376363754, 0.03462674468755722, 0.1876969337463379, 0.17199760675430298, 0.11392204463481903, 0.10178202390670776, -0.18660637736320496, -0.2217441201210022, -0.11828429996967316, -0.10638396441936493, -0.30066025257110596, 0.06718356907367706, 1.4949482679367065, -0.007358314469456673, 0.014884407632052898, -0.2016705423593521]} +{"t": 12.9156, "q": [-0.15607060492038727, 0.006720539648085833, 0.018079059198498726, 0.3180283010005951, -0.15919655561447144, -0.0032785034272819757, -0.10695765912532806, -0.029997846111655235, 0.042104121297597885, 0.3199457824230194, -0.22595980763435364, 0.02524297870695591, 0.030198724940419197, 0.05610347166657448, 0.03463223949074745, 0.18764899671077728, 0.1712186187505722, 0.11363442242145538, 0.10181798040866852, -0.19628962874412537, -0.22133666276931763, -0.11834422498941422, -0.10646785795688629, -0.30066025257110596, 0.06714761257171631, 1.4949601888656616, -0.007382282521575689, 0.014860439114272594, -0.2016705423593521]} +{"t": 12.9325, "q": [-0.15607912838459015, 0.006669407244771719, 0.018199585378170013, 0.318036824464798, -0.15920086205005646, -0.0032855505123734474, -0.1069832295179367, -0.030125677585601807, 0.04218447208404541, 0.3199457824230194, -0.22595550119876862, 0.02523576095700264, 0.029796967282891273, 0.05605820193886757, 0.03465268760919571, 0.18780478835105896, 0.17133846879005432, 0.11349061131477356, 0.10288457572460175, -0.20543359220027924, -0.22065354883670807, -0.11838017404079437, -0.10659968107938766, -0.30066025257110596, 0.067123644053936, 1.4949002265930176, -0.007370298728346825, 0.014848454855382442, -0.2016465812921524]} +{"t": 12.9493, "q": [-0.15608765184879303, 0.006601229775696993, 0.018253153190016747, 0.31799420714378357, -0.15920937061309814, -0.0032714700791984797, -0.10700027644634247, -0.03020237758755684, 0.042238038033246994, 0.31992873549461365, -0.22595568001270294, 0.02525009773671627, 0.029502345249056816, 0.055982477962970734, 0.034711889922618866, 0.18818828463554382, 0.17173394560813904, 0.11329886317253113, 0.10363958030939102, -0.21288777887821198, -0.22030600905418396, -0.11846406757831573, -0.10667158663272858, -0.30066025257110596, 0.06715960055589676, 1.4948883056640625, -0.007358314469456673, 0.01483647059649229, -0.2016465812921524]} +{"t": 12.9661, "q": [-0.1560961753129959, 0.006524530705064535, 0.018346896395087242, 0.3179686367511749, -0.1592136174440384, -0.003264420898631215, -0.10699175298213959, -0.030338730663061142, 0.04221125692129135, 0.3199116885662079, -0.22595155239105225, 0.025257235392928123, 0.02942199446260929, 0.05580868571996689, 0.03481687977910042, 0.18843995034694672, 0.17205752432346344, 0.11305917799472809, 0.10426276177167892, -0.2201981544494629, -0.22016219794750214, -0.11850001662969589, -0.10665960609912872, -0.3007201552391052, 0.06718356907367706, 1.4949002265930176, -0.007358314469456673, 0.014812502078711987, -0.2016465812921524]} +{"t": 12.9829, "q": [-0.15611322224140167, 0.006456354167312384, 0.018360288813710213, 0.31796011328697205, -0.1592349410057068, -0.0032432982698082924, -0.10699175298213959, -0.03044951893389225, 0.042238038033246994, 0.3198946416378021, -0.22595155239105225, 0.025257235392928123, 0.029301468282938004, 0.05556684359908104, 0.034966643899679184, 0.1885717809200287, 0.17221331596374512, 0.11212441325187683, 0.10468220710754395, -0.2292342633008957, -0.22013823688030243, -0.11867978423833847, -0.10664761811494827, -0.3007201552391052, 0.06724348664283752, 1.4948523044586182, -0.007370298728346825, 0.014824486337602139, -0.20163458585739136]} +{"t": 12.9997, "q": [-0.15613025426864624, 0.006328522693365812, 0.018387073650956154, 0.31790900230407715, -0.15923063457012177, -0.0032362511847168207, -0.10699175298213959, -0.03057735040783882, 0.042278215289115906, 0.3198690712451935, -0.22594328224658966, 0.025271475315093994, 0.0290738046169281, 0.05520445853471756, 0.03515825420618057, 0.1886916309595108, 0.17228522896766663, 0.11186075955629349, 0.10479006916284561, -0.23768313229084015, -0.2202221304178238, -0.1188715323805809, -0.10663563758134842, -0.3006961941719055, 0.06724348664283752, 1.4948283433914185, -0.007358314469456673, 0.014800517819821835, -0.20163458585739136]} +{"t": 13.0164, "q": [-0.15611322224140167, 0.0062262569554150105, 0.018440639600157738, 0.31791752576828003, -0.159234881401062, -0.0032292110845446587, -0.10699175298213959, -0.030705181881785393, 0.042251430451869965, 0.3198690712451935, -0.22594723105430603, 0.025250017642974854, 0.028993453830480576, 0.05481160804629326, 0.03538864105939865, 0.1886676549911499, 0.17145830392837524, 0.11146527528762817, 0.10544919967651367, -0.24594026803970337, -0.22013823688030243, -0.11894343793392181, -0.10668357461690903, -0.3006961941719055, 0.06721951812505722, 1.4948643445968628, -0.007370298728346825, 0.014788533560931683, -0.2016226053237915]} +{"t": 13.0333, "q": [-0.15615582466125488, 0.006217735353857279, 0.018427249044179916, 0.3178834319114685, -0.15923918783664703, -0.0032362581696361303, -0.10699175298213959, -0.03073927015066147, 0.042264822870492935, 0.3198605477809906, -0.22594723105430603, 0.025250017642974854, 0.028953278437256813, 0.0544414222240448, 0.03560386970639229, 0.1889672577381134, 0.17083513736724854, 0.11057844758033752, 0.10615626722574234, -0.2520162761211395, -0.22023411095142365, -0.11901534348726273, -0.10676746070384979, -0.3006961941719055, 0.06725547462701797, 1.4948523044586182, -0.007370298728346825, 0.014764565043151379, -0.20161062479019165]} +{"t": 13.05, "q": [-0.15613025426864624, 0.006192168686538935, 0.01845403201878071, 0.31785786151885986, -0.1592433899641037, -0.003215130651369691, -0.10700027644634247, -0.0307477917522192, 0.042278215289115906, 0.31984350085258484, -0.22595568001270294, 0.02525009773671627, 0.02888631820678711, 0.054018404334783554, 0.035844385623931885, 0.18943464756011963, 0.17042766511440277, 0.10959573835134506, 0.10699516534805298, -0.2582121193408966, -0.22047379612922668, -0.11929097771644592, -0.10685135424137115, -0.3005523979663849, 0.06724348664283752, 1.4948164224624634, -0.007382282521575689, 0.014752581715583801, -0.2015986442565918]} +{"t": 13.0667, "q": [-0.15616434812545776, 0.0061836461536586285, 0.018440639600157738, 0.31785786151885986, -0.15923914313316345, -0.003222170751541853, -0.10700879245996475, -0.03075631521642208, 0.04222464561462402, 0.31984350085258484, -0.22594723105430603, 0.025250017642974854, 0.029033629223704338, 0.053708385676145554, 0.03604809194803238, 0.18974623084068298, 0.1703198105096817, 0.10851716250181198, 0.10731873661279678, -0.26483938097953796, -0.2206176072359085, -0.11961454898118973, -0.10685135424137115, -0.30040857195854187, 0.06724348664283752, 1.4948164224624634, -0.007394266780465841, 0.014764565043151379, -0.2015986442565918]} +{"t": 13.0836, "q": [-0.15617287158966064, 0.006192168686538935, 0.018413856625556946, 0.31785786151885986, -0.15924769639968872, -0.0032221777364611626, -0.10700027644634247, -0.030730748549103737, 0.04215768724679947, 0.31984350085258484, -0.22594723105430603, 0.025250017642974854, 0.029328251257538795, 0.05350492149591446, 0.03612533584237099, 0.18968631327152252, 0.1702718734741211, 0.10787001252174377, 0.10729476809501648, -0.27283287048339844, -0.2210969775915146, -0.11997407674789429, -0.10686333477497101, -0.3003726303577423, 0.06725547462701797, 1.494840383529663, -0.007382282521575689, 0.01474059745669365, -0.2015746682882309]} +{"t": 13.1003, "q": [-0.1561899185180664, 0.006217735353857279, 0.018387073650956154, 0.31785786151885986, -0.1592477411031723, -0.003236273769289255, -0.10700027644634247, -0.030730748549103737, 0.042117513716220856, 0.3198690712451935, -0.22595155239105225, 0.025257235392928123, 0.029448779299855232, 0.05340014398097992, 0.036100443452596664, 0.18962639570236206, 0.17028385400772095, 0.10746254771947861, 0.1071150079369545, -0.2801792025566101, -0.22161228954792023, -0.12032162398099899, -0.10689929127693176, -0.3005044460296631, 0.06730341166257858, 1.4948523044586182, -0.007418235298246145, 0.014752581715583801, -0.2015746682882309]} +{"t": 13.1171, "q": [-0.15618139505386353, 0.006209212820976973, 0.018373681232333183, 0.3178408145904541, -0.15923914313316345, -0.003222170751541853, -0.1069832295179367, -0.030730748549103737, 0.042104121297597885, 0.3198690712451935, -0.22595155239105225, 0.025257235392928123, 0.02958269789814949, 0.05341557413339615, 0.036062244325876236, 0.18962639570236206, 0.17021195590496063, 0.10719889402389526, 0.1070910394191742, -0.2875494956970215, -0.22186395525932312, -0.12076503783464432, -0.10691127181053162, -0.30063626170158386, 0.06727944314479828, 1.4948043823242188, -0.007418235298246145, 0.014752581715583801, -0.20156268775463104]} +{"t": 13.1339, "q": [-0.15615582466125488, 0.0062262569554150105, 0.018346896395087242, 0.317849338054657, -0.15924769639968872, -0.0032221777364611626, -0.10699175298213959, -0.030722226947546005, 0.04213090240955353, 0.319903165102005, -0.22595584392547607, 0.02526443637907505, 0.029622873291373253, 0.05341589078307152, 0.03603396564722061, 0.18957845866680145, 0.17025989294052124, 0.1067914292216301, 0.1071150079369545, -0.29572275280952454, -0.22186395525932312, -0.12149607390165329, -0.10700714588165283, -0.30063626170158386, 0.06735134869813919, 1.494840383529663, -0.007406251039355993, 0.014728613197803497, -0.20153871178627014]} +{"t": 13.1507, "q": [-0.15616434812545776, 0.0062688677571713924, 0.01830672100186348, 0.3178749084472656, -0.159234881401062, -0.0032292110845446587, -0.10699175298213959, -0.03068813681602478, 0.04213090240955353, 0.3199457824230194, -0.22595155239105225, 0.025257235392928123, 0.02956930547952652, 0.053431008011102676, 0.036024052649736404, 0.189518541097641, 0.17040370404720306, 0.10633602738380432, 0.1070910394191742, -0.3029971718788147, -0.22180403769016266, -0.12307799607515335, -0.1071629449725151, -0.30063626170158386, 0.06732738018035889, 1.4948283433914185, -0.007430219557136297, 0.014752581715583801, -0.2015267312526703]} +{"t": 13.1674, "q": [-0.15617287158966064, 0.006320000160485506, 0.01829332858324051, 0.3178834319114685, -0.15923067927360535, -0.0032503472175449133, -0.1069832295179367, -0.030611438676714897, 0.042117513716220856, 0.31993725895881653, -0.22595155239105225, 0.025257235392928123, 0.02956930547952652, 0.05341610312461853, 0.0360151082277298, 0.189518541097641, 0.17055949568748474, 0.10604841262102127, 0.1071150079369545, -0.3099120557308197, -0.22180403769016266, -0.1260141283273697, -0.1071389764547348, -0.30063626170158386, 0.06735134869813919, 1.4948523044586182, -0.007418235298246145, 0.014728613197803497, -0.2015267312526703]} +{"t": 13.1842, "q": [-0.15612174570560455, 0.006302956026047468, 0.018279938027262688, 0.3179260492324829, -0.1592349410057068, -0.0032432982698082924, -0.10699175298213959, -0.03057735040783882, 0.042104121297597885, 0.3199969232082367, -0.22595155239105225, 0.025257235392928123, 0.029542522504925728, 0.05339384451508522, 0.03599226474761963, 0.18947060406208038, 0.17067933082580566, 0.10554507374763489, 0.10700714588165283, -0.3187444508075714, -0.22182801365852356, -0.1285547912120819, -0.1071150079369545, -0.30066025257110596, 0.06731539219617844, 1.4948523044586182, -0.007430219557136297, 0.014692660421133041, -0.20150277018547058]} +{"t": 13.2009, "q": [-0.1561046987771988, 0.006354088429361582, 0.018279938027262688, 0.31795158982276917, -0.1592349410057068, -0.0032432982698082924, -0.10697470605373383, -0.030551783740520477, 0.042104121297597885, 0.31997135281562805, -0.22595155239105225, 0.025257235392928123, 0.02956930547952652, 0.053401511162519455, 0.03597788140177727, 0.18943464756011963, 0.17060743272304535, 0.10543721169233322, 0.10703111439943314, -0.32682180404663086, -0.2217920571565628, -0.12982511520385742, -0.10703111439943314, -0.3006482720375061, 0.06729142367839813, 1.4948883056640625, -0.007394266780465841, 0.014692660421133041, -0.2015267312526703]} +{"t": 13.2177, "q": [-0.15612174570560455, 0.00634556682780385, 0.018253153190016747, 0.3179771602153778, -0.15923073887825012, -0.0032644434832036495, -0.10699175298213959, -0.030543262138962746, 0.042077336460351944, 0.3199969232082367, -0.22594723105430603, 0.025250017642974854, 0.02956930547952652, 0.05339426547288895, 0.0359545536339283, 0.18947060406208038, 0.17028385400772095, 0.10540126264095306, 0.10701913386583328, -0.3366488814353943, -0.22150443494319916, -0.13041234016418457, -0.10695920884609222, -0.3006722331047058, 0.06738729774951935, 1.4948643445968628, -0.007418235298246145, 0.01468067616224289, -0.20150277018547058]} +{"t": 13.2348, "q": [-0.15611322224140167, 0.00634556682780385, 0.018253153190016747, 0.3179856836795807, -0.1592136174440384, -0.003264420898631215, -0.10700027644634247, -0.030543262138962746, 0.042077336460351944, 0.32001397013664246, -0.22594740986824036, 0.025264354422688484, 0.029703224077820778, 0.05342429131269455, 0.0359535850584507, 0.18945862352848053, 0.16960075497627258, 0.1056409478187561, 0.1071150079369545, -0.34604451060295105, -0.22118085622787476, -0.13081979751586914, -0.10693524032831192, -0.30063626170158386, 0.06741126626729965, 1.494840383529663, -0.007394266780465841, 0.01468067616224289, -0.20149077475070953]} +{"t": 13.2515, "q": [-0.15613025426864624, 0.006337044294923544, 0.018239762634038925, 0.318036824464798, -0.1592136174440384, -0.003264420898631215, -0.1069832295179367, -0.030543262138962746, 0.042077336460351944, 0.3200054466724396, -0.22594723105430603, 0.025250017642974854, 0.029689833521842957, 0.053401824086904526, 0.035949598997831345, 0.18945862352848053, 0.16891765594482422, 0.10565292835235596, 0.1071629449725151, -0.3562910258769989, -0.22068950533866882, -0.13123925030231476, -0.10687532275915146, -0.30058833956718445, 0.06733936071395874, 1.4948883056640625, -0.007418235298246145, 0.014656707644462585, -0.20147879421710968]} +{"t": 13.2683, "q": [-0.15611322224140167, 0.00634556682780385, 0.018253153190016747, 0.318036824464798, -0.1592264324426651, -0.003257387550547719, -0.10699175298213959, -0.030543262138962746, 0.042104121297597885, 0.32001397013664246, -0.22595155239105225, 0.025257235392928123, 0.029649656265974045, 0.05340193212032318, 0.035940174013376236, 0.18943464756011963, 0.16858209669589996, 0.10544919967651367, 0.10712698847055435, -0.36646562814712524, -0.22046180069446564, -0.1320302039384842, -0.10689929127693176, -0.30058833956718445, 0.06735134869813919, 1.4948283433914185, -0.007418235298246145, 0.01468067616224289, -0.20147879421710968]} +{"t": 13.2852, "q": [-0.15612174570560455, 0.006302956026047468, 0.018266545608639717, 0.3181135356426239, -0.15921787917613983, -0.003257380798459053, -0.1069832295179367, -0.030602917075157166, 0.0421442948281765, 0.32001397013664246, -0.22594310343265533, 0.025257136672735214, 0.02973000891506672, 0.05340949073433876, 0.03593521565198898, 0.18948258459568024, 0.1676473319530487, 0.10544919967651367, 0.10712698847055435, -0.376604288816452, -0.2202460914850235, -0.1327013224363327, -0.10692325979471207, -0.3005763590335846, 0.06736332923173904, 1.494840383529663, -0.007406251039355993, 0.014656707644462585, -0.20150277018547058]} +{"t": 13.3019, "q": [-0.15613025426864624, 0.006251823622733355, 0.018279938027262688, 0.3181135356426239, -0.15922212600708008, -0.0032503404654562473, -0.1069832295179367, -0.030645526945590973, 0.04213090240955353, 0.32001397013664246, -0.22594723105430603, 0.025250017642974854, 0.029676441103219986, 0.05342460796236992, 0.035925306379795074, 0.18942266702651978, 0.1663290560245514, 0.10568888485431671, 0.10705508291721344, -0.38820502161979675, -0.22005434334278107, -0.13336046040058136, -0.10688730329275131, -0.300624281167984, 0.06732738018035889, 1.4948643445968628, -0.007418235298246145, 0.014632739126682281, -0.20147879421710968]} +{"t": 13.3186, "q": [-0.15613025426864624, 0.006260345224291086, 0.018266545608639717, 0.3181135356426239, -0.1592179238796234, -0.0032714679837226868, -0.1069832295179367, -0.03069666028022766, 0.04213090240955353, 0.3200054466724396, -0.22594723105430603, 0.025250017642974854, 0.02975679188966751, 0.053402241319417953, 0.035911887884140015, 0.18945862352848053, 0.16441158950328827, 0.105892613530159, 0.10727079957723618, -0.40118393301963806, -0.21920345723628998, -0.13400760293006897, -0.10687532275915146, -0.3006003201007843, 0.06736332923173904, 1.4948643445968628, -0.007430219557136297, 0.014608770608901978, -0.20146681368350983]} +{"t": 13.3355, "q": [-0.15613877773284912, 0.006217735353857279, 0.018266545608639717, 0.3181135356426239, -0.1592179238796234, -0.0032714679837226868, -0.10699175298213959, -0.03069666028022766, 0.04215768724679947, 0.31997987627983093, -0.22595155239105225, 0.025257235392928123, 0.02971661649644375, 0.05339479073882103, 0.03590741753578186, 0.18932679295539856, 0.16238625347614288, 0.1059165820479393, 0.10736667364835739, -0.41237717866897583, -0.21834060549736023, -0.1344989538192749, -0.10686333477497101, -0.3005044460296631, 0.06735134869813919, 1.4948283433914185, -0.007406251039355993, 0.01462075486779213, -0.20147879421710968]} +{"t": 13.3523, "q": [-0.15612174570560455, 0.006217735353857279, 0.01829332858324051, 0.318105012178421, -0.15922637283802032, -0.0032433003652840853, -0.1069832295179367, -0.03068813681602478, 0.04218447208404541, 0.31997987627983093, -0.22595155239105225, 0.025257235392928123, 0.029636265709996223, 0.053387124091386795, 0.03592180088162422, 0.18879948556423187, 0.1604088544845581, 0.10618023574352264, 0.1074385792016983, -0.4247928559780121, -0.2172260731458664, -0.13501428067684174, -0.10688730329275131, -0.30040857195854187, 0.06735134869813919, 1.4949002265930176, -0.007382282521575689, 0.014608770608901978, -0.20147879421710968]} +{"t": 13.369, "q": [-0.15613025426864624, 0.006200690288096666, 0.01832011342048645, 0.31809648871421814, -0.15922637283802032, -0.0032433003652840853, -0.10699175298213959, -0.030722226947546005, 0.04221125692129135, 0.31996282935142517, -0.22594723105430603, 0.025250017642974854, 0.02940860204398632, 0.05339479073882103, 0.03590741753578186, 0.1883920133113861, 0.15885090827941895, 0.10668357461690903, 0.10757040232419968, -0.435602605342865, -0.21617145836353302, -0.13540975749492645, -0.10687532275915146, -0.3003486394882202, 0.06738729774951935, 1.4948523044586182, -0.007406251039355993, 0.014596786350011826, -0.20145483314990997]} +{"t": 13.3858, "q": [-0.15613025426864624, 0.006200690288096666, 0.018373681232333183, 0.318036824464798, -0.15923498570919037, -0.003257403150200844, -0.10700879245996475, -0.03073927015066147, 0.042251430451869965, 0.31993725895881653, -0.22595137357711792, 0.025242879986763, 0.029207725077867508, 0.05340990796685219, 0.03589750453829765, 0.18827217817306519, 0.15753264725208282, 0.10748651623725891, 0.10778611898422241, -0.4455854892730713, -0.2154763638973236, -0.13558952510356903, -0.1068393662571907, -0.30028873682022095, 0.06735134869813919, 1.4948283433914185, -0.007394266780465841, 0.014584802091121674, -0.20143085718154907]} +{"t": 13.4026, "q": [-0.15611322224140167, 0.006192168686538935, 0.018387073650956154, 0.31801125407218933, -0.15923063457012177, -0.0032362511847168207, -0.10702583938837051, -0.03073927015066147, 0.042238038033246994, 0.3198605477809906, -0.22595568001270294, 0.02525009773671627, 0.029100589454174042, 0.05339479073882103, 0.03590741753578186, 0.18815234303474426, 0.15596270561218262, 0.10876882821321487, 0.10795389860868454, -0.45553237199783325, -0.21494905650615692, -0.1357453167438507, -0.10676746070384979, -0.30021682381629944, 0.0673753172159195, 1.4947924613952637, -0.007394266780465841, 0.014548849314451218, -0.20135895907878876]} +{"t": 13.4193, "q": [-0.15612174570560455, 0.006217735353857279, 0.018387073650956154, 0.3179686367511749, -0.15923918783664703, -0.0032362581696361303, -0.1070343628525734, -0.030722226947546005, 0.04221125692129135, 0.31983497738838196, -0.2259601354598999, 0.025271637365221977, 0.02908719703555107, 0.05339479073882103, 0.03590741753578186, 0.1880924105644226, 0.1540931612253189, 0.11021891981363297, 0.10818160325288773, -0.4661024808883667, -0.21463747322559357, -0.13585317134857178, -0.10674349218606949, -0.3000490367412567, 0.06738729774951935, 1.4947564601898193, -0.007418235298246145, 0.01456083357334137, -0.2013469636440277]} +{"t": 13.4361, "q": [-0.15612174570560455, 0.006243301089853048, 0.018373681232333183, 0.3179260492324829, -0.159234881401062, -0.0032292110845446587, -0.1070343628525734, -0.030705181881785393, 0.04219786450266838, 0.31978386640548706, -0.2259601354598999, 0.025271637365221977, 0.029140764847397804, 0.05339479073882103, 0.03590741753578186, 0.18814034759998322, 0.15213973820209503, 0.11175289750099182, 0.10838533192873001, -0.47704407572746277, -0.2143258899450302, -0.13593706488609314, -0.10663563758134842, -0.29984530806541443, 0.06735134869813919, 1.4947564601898193, -0.007418235298246145, 0.014524880796670914, -0.201323002576828]} +{"t": 13.4528, "q": [-0.15612174570560455, 0.006217735353857279, 0.018373681232333183, 0.31790047883987427, -0.15925200283527374, -0.0032292334362864494, -0.10702583938837051, -0.030713703483343124, 0.04219786450266838, 0.319715678691864, -0.22596411406993866, 0.025250179693102837, 0.029274683445692062, 0.053402241319417953, 0.035911887884140015, 0.18822424113750458, 0.15078552067279816, 0.11277155578136444, 0.10872089117765427, -0.48515740036964417, -0.21396635472774506, -0.1359969824552536, -0.1065397635102272, -0.2996295988559723, 0.06735134869813919, 1.49470853805542, -0.007406251039355993, 0.014524880796670914, -0.2012750655412674]} +{"t": 13.4695, "q": [-0.15613025426864624, 0.0062262569554150105, 0.018360288813710213, 0.317849338054657, -0.159234881401062, -0.0032292110845446587, -0.10704288631677628, -0.030705181881785393, 0.04215768724679947, 0.31970715522766113, -0.22595998644828796, 0.025257298722863197, 0.029314858838915825, 0.05340234935283661, 0.035902462899684906, 0.1883920133113861, 0.1498028188943863, 0.11284346133470535, 0.10902049392461777, -0.4950084090232849, -0.21348698437213898, -0.13609285652637482, -0.1065157949924469, -0.29942587018013, 0.0673753172159195, 1.494768500328064, -0.007430219557136297, 0.01450091227889061, -0.20126308500766754]} +{"t": 13.4865, "q": [-0.15612174570560455, 0.006243301089853048, 0.018373681232333183, 0.31781524419784546, -0.159234881401062, -0.0032292110845446587, -0.1070343628525734, -0.030705181881785393, 0.04217107966542244, 0.31970715522766113, -0.22595998644828796, 0.025257298722863197, 0.02943538688123226, 0.053409699350595474, 0.03591636195778847, 0.18851186335086823, 0.1486762911081314, 0.1128554493188858, 0.10942795872688293, -0.5038647651672363, -0.2131034880876541, -0.13610485196113586, -0.10656373202800751, -0.29921016097068787, 0.0673992857336998, 1.4947564601898193, -0.007430219557136297, 0.01450091227889061, -0.20123910903930664]} +{"t": 13.5033, "q": [-0.15613025426864624, 0.006260345224291086, 0.01832011342048645, 0.3178322911262512, -0.1592477411031723, -0.003236273769289255, -0.10701731592416763, -0.03068813681602478, 0.04215768724679947, 0.31970715522766113, -0.2259560078382492, 0.025278756394982338, 0.029542522504925728, 0.05339479073882103, 0.03590741753578186, 0.1886197179555893, 0.14719025790691376, 0.1128314808011055, 0.10966764390468597, -0.5142431259155273, -0.2127080112695694, -0.13618873059749603, -0.10663563758134842, -0.29891055822372437, 0.06745920330286026, 1.4947324991226196, -0.007430219557136297, 0.014476943761110306, -0.20121514797210693]} +{"t": 13.5201, "q": [-0.15611322224140167, 0.006217735353857279, 0.018346896395087242, 0.3178408145904541, -0.1592349410057068, -0.0032432982698082924, -0.10700879245996475, -0.030705181881785393, 0.04213090240955353, 0.31974977254867554, -0.22595155239105225, 0.025257235392928123, 0.02956930547952652, 0.05339479073882103, 0.03590741753578186, 0.18852384388446808, 0.14548850059509277, 0.11290338635444641, 0.1098593920469284, -0.5234230160713196, -0.21249230206012726, -0.13620072603225708, -0.10673151165246964, -0.29871881008148193, 0.06741126626729965, 1.494768500328064, -0.007442203816026449, 0.014464959502220154, -0.20121514797210693]} +{"t": 13.5368, "q": [-0.1561046987771988, 0.006217735353857279, 0.018346896395087242, 0.31785786151885986, -0.15923063457012177, -0.0032362511847168207, -0.10700027644634247, -0.030713703483343124, 0.0421442948281765, 0.3197668194770813, -0.22595155239105225, 0.025257235392928123, 0.029636265709996223, 0.05339479073882103, 0.03590741753578186, 0.1883680522441864, 0.1439065784215927, 0.11296330392360687, 0.10996725410223007, -0.5334418416023254, -0.21234849095344543, -0.13623666763305664, -0.1067914292216301, -0.2986229360103607, 0.0673992857336998, 1.494720458984375, -0.007430219557136297, 0.014464959502220154, -0.2012031525373459]} +{"t": 13.5536, "q": [-0.15612174570560455, 0.006200690288096666, 0.018346896395087242, 0.31786638498306274, -0.15923063457012177, -0.0032362511847168207, -0.10699175298213959, -0.03073927015066147, 0.0421442948281765, 0.31979238986968994, -0.22594723105430603, 0.025250017642974854, 0.029609480872750282, 0.05339479073882103, 0.03590741753578186, 0.18826019763946533, 0.14244450628757477, 0.11311910301446915, 0.11009907722473145, -0.5426697134971619, -0.21221666038036346, -0.13626064360141754, -0.1068153977394104, -0.2985510230064392, 0.06745920330286026, 1.49470853805542, -0.007430219557136297, 0.014452975243330002, -0.2012031525373459]} +{"t": 13.5704, "q": [-0.15613025426864624, 0.0061836461536586285, 0.01833350583910942, 0.31790047883987427, -0.1592349410057068, -0.0032432982698082924, -0.10700879245996475, -0.0307477917522192, 0.04217107966542244, 0.31978386640548706, -0.22595155239105225, 0.025257235392928123, 0.029663048684597015, 0.05340980365872383, 0.03590693324804306, 0.1883201152086258, 0.14103035628795624, 0.11311910301446915, 0.11023090034723282, -0.5529162287712097, -0.21196499466896057, -0.1362966001033783, -0.1068393662571907, -0.29853904247283936, 0.0674232542514801, 1.49470853805542, -0.007418235298246145, 0.01444099098443985, -0.20121514797210693]} +{"t": 13.5872, "q": [-0.15613025426864624, 0.006149557884782553, 0.018360288813710213, 0.31796011328697205, -0.15922632813453674, -0.003229204099625349, -0.10699175298213959, -0.030790403485298157, 0.04215768724679947, 0.31982648372650146, -0.22595155239105225, 0.025257235392928123, 0.02977018430829048, 0.05338723212480545, 0.035912372171878815, 0.18827217817306519, 0.13923272490501404, 0.11333481967449188, 0.11027883738279343, -0.5630308985710144, -0.21179720759391785, -0.1362966001033783, -0.1067914292216301, -0.2985510230064392, 0.06735134869813919, 1.4946845769882202, -0.007442203816026449, 0.01441702339798212, -0.2012031525373459]} +{"t": 13.604, "q": [-0.15613877773284912, 0.006115469615906477, 0.01833350583910942, 0.3179771602153778, -0.15923067927360535, -0.0032503472175449133, -0.1069832295179367, -0.030841534957289696, 0.04215768724679947, 0.31983497738838196, -0.22595155239105225, 0.025257235392928123, 0.029863927513360977, 0.05339479073882103, 0.03590741753578186, 0.18821226060390472, 0.13772271573543549, 0.1134306937456131, 0.11035074293613434, -0.5721748471260071, -0.21166539192199707, -0.1362966001033783, -0.10676746070384979, -0.29853904247283936, 0.06738729774951935, 1.4947444200515747, -0.007418235298246145, 0.01441702339798212, -0.2012031525373459]} +{"t": 13.6207, "q": [-0.15613025426864624, 0.006089902948588133, 0.018360288813710213, 0.3179686367511749, -0.15923063457012177, -0.0032362511847168207, -0.10695765912532806, -0.03087562508881092, 0.04215768724679947, 0.3198690712451935, -0.22594310343265533, 0.025257136672735214, 0.029984453693032265, 0.05339479073882103, 0.03590741753578186, 0.18828415870666504, 0.13633254170417786, 0.1134306937456131, 0.1104346364736557, -0.5835119485855103, -0.2114856243133545, -0.1362966001033783, -0.10674349218606949, -0.29853904247283936, 0.0674232542514801, 1.4947324991226196, -0.007418235298246145, 0.01441702339798212, -0.20119117200374603]} +{"t": 13.6375, "q": [-0.15613877773284912, 0.006055814679712057, 0.01833350583910942, 0.3179856836795807, -0.15923063457012177, -0.0032362511847168207, -0.10694914311170578, -0.030909713357686996, 0.04215768724679947, 0.31984350085258484, -0.22594723105430603, 0.025250017642974854, 0.029997846111655235, 0.05339479073882103, 0.03590741753578186, 0.18828415870666504, 0.13526594638824463, 0.11344267427921295, 0.11049455404281616, -0.595424234867096, -0.21119800209999084, -0.13628460466861725, -0.10669555515050888, -0.2985510230064392, 0.06741126626729965, 1.4947564601898193, -0.007418235298246145, 0.014429006725549698, -0.20119117200374603]} +{"t": 13.6542, "q": [-0.156147301197052, 0.0060472930781543255, 0.01833350583910942, 0.3179686367511749, -0.15924343466758728, -0.0032292178366333246, -0.1069406196475029, -0.030901189893484116, 0.042117513716220856, 0.3198605477809906, -0.22594723105430603, 0.025250017642974854, 0.030024630948901176, 0.05339489504694939, 0.03589798882603645, 0.18827217817306519, 0.1342233270406723, 0.1137063279747963, 0.11060241609811783, -0.6061621308326721, -0.21106617152690887, -0.1362966001033783, -0.10670754313468933, -0.2985510230064392, 0.06743523478507996, 1.494720458984375, -0.007430219557136297, 0.01435710210353136, -0.20119117200374603]} +{"t": 13.671, "q": [-0.15617287158966064, 0.0060472930781543255, 0.018346896395087242, 0.31799420714378357, -0.15923483669757843, -0.0032151236664503813, -0.10692357271909714, -0.030918234959244728, 0.04215768724679947, 0.3198946416378021, -0.22594723105430603, 0.025250017642974854, 0.0301049817353487, 0.05337242782115936, 0.0358940027654171, 0.18826019763946533, 0.1329529881477356, 0.11412577331066132, 0.11063836514949799, -0.6184579133987427, -0.2109822779893875, -0.1362966001033783, -0.10661166906356812, -0.29856300354003906, 0.06747119128704071, 1.494720458984375, -0.007406251039355993, 0.014405039139091969, -0.20121514797210693]} +{"t": 13.6877, "q": [-0.15615582466125488, 0.005979115609079599, 0.01832011342048645, 0.31800273060798645, -0.15923918783664703, -0.0032362581696361303, -0.10690653324127197, -0.03093527816236019, 0.04213090240955353, 0.3198946416378021, -0.22594723105430603, 0.025250017642974854, 0.030131764709949493, 0.05336497351527214, 0.035889528691768646, 0.18827217817306519, 0.13151489198207855, 0.11473697423934937, 0.11069829016923904, -0.629183828830719, -0.2109583169221878, -0.13628460466861725, -0.10656373202800751, -0.29858696460723877, 0.0673992857336998, 1.49470853805542, -0.007418235298246145, 0.014405039139091969, -0.2012031525373459]} +{"t": 13.7045, "q": [-0.15617287158966064, 0.005953548941761255, 0.01830672100186348, 0.3180197775363922, -0.15924349427223206, -0.003243313869461417, -0.10690653324127197, -0.03099493309855461, 0.04213090240955353, 0.3198605477809906, -0.22594740986824036, 0.025264354422688484, 0.030198724940419197, 0.05336497351527214, 0.035889528691768646, 0.1883201152086258, 0.1297532021999359, 0.11562380194664001, 0.11083011329174042, -0.6394543051719666, -0.21097029745578766, -0.1362726241350174, -0.10644388943910599, -0.29858696460723877, 0.0673753172159195, 1.4946964979171753, -0.007430219557136297, 0.014393054880201817, -0.2012031525373459]} +{"t": 13.7212, "q": [-0.15616434812545776, 0.005885372404009104, 0.01832011342048645, 0.3180197775363922, -0.1592477411031723, -0.003236273769289255, -0.10692357271909714, -0.031037544831633568, 0.042117513716220856, 0.3198520243167877, -0.22595155239105225, 0.025257235392928123, 0.030292468145489693, 0.05337242782115936, 0.0358940027654171, 0.18830813467502594, 0.12791961431503296, 0.11673834174871445, 0.11104582995176315, -0.6492693424224854, -0.21101823449134827, -0.13626064360141754, -0.10632404685020447, -0.29858696460723877, 0.0673992857336998, 1.4947324991226196, -0.007406251039355993, 0.014393054880201817, -0.2012271285057068]} +{"t": 13.7379, "q": [-0.15616434812545776, 0.005868328269571066, 0.01830672100186348, 0.3180197775363922, -0.15923063457012177, -0.0032362511847168207, -0.10692357271909714, -0.031071633100509644, 0.042104121297597885, 0.3198690712451935, -0.22595155239105225, 0.025257235392928123, 0.030279075726866722, 0.05337242782115936, 0.0358940027654171, 0.18818828463554382, 0.1260620653629303, 0.11808057129383087, 0.11116567254066467, -0.6597555875778198, -0.21103021502494812, -0.13623666763305664, -0.10628809034824371, -0.2985270619392395, 0.0673992857336998, 1.4947564601898193, -0.007430219557136297, 0.014393054880201817, -0.2012271285057068]} +{"t": 13.7547, "q": [-0.15613877773284912, 0.00585980573669076, 0.01833350583910942, 0.318036824464798, -0.15923058986663818, -0.003222163999453187, -0.10691504925489426, -0.031080154702067375, 0.04213090240955353, 0.3198690712451935, -0.22595155239105225, 0.025257235392928123, 0.030145157128572464, 0.05336497351527214, 0.035889528691768646, 0.18815234303474426, 0.12382101267576218, 0.12042947858572006, 0.11122559756040573, -0.6706132888793945, -0.21105419099330902, -0.1362486630678177, -0.10614427924156189, -0.29849109053611755, 0.0674232542514801, 1.4947324991226196, -0.007418235298246145, 0.014381070621311665, -0.20121514797210693]} +{"t": 13.7716, "q": [-0.156147301197052, 0.0058768498711287975, 0.018360288813710213, 0.3180283010005951, -0.159234881401062, -0.0032292110845446587, -0.10692357271909714, -0.031097199767827988, 0.04215768724679947, 0.3198520243167877, -0.22593897581100464, 0.025264255702495575, 0.03006480634212494, 0.05336497351527214, 0.035889528691768646, 0.18815234303474426, 0.120920829474926, 0.12354537844657898, 0.11134544014930725, -0.6791580319404602, -0.21104221045970917, -0.13623666763305664, -0.10609634965658188, -0.29844316840171814, 0.06736332923173904, 1.4947564601898193, -0.007430219557136297, 0.014381070621311665, -0.20121514797210693]} +{"t": 13.7884, "q": [-0.15616434812545776, 0.005800151731818914, 0.018346896395087242, 0.3180283010005951, -0.15923914313316345, -0.003222170751541853, -0.10691504925489426, -0.031122766435146332, 0.04213090240955353, 0.3198520243167877, -0.22595568001270294, 0.02525009773671627, 0.03005141392350197, 0.053357306867837906, 0.03590391203761101, 0.18815234303474426, 0.1179966852068901, 0.12649349868297577, 0.11139337718486786, -0.6882181167602539, -0.21105419099330902, -0.13623666763305664, -0.10602444410324097, -0.29844316840171814, 0.0673992857336998, 1.49470853805542, -0.007430219557136297, 0.014381070621311665, -0.2012031525373459]} +{"t": 13.8051, "q": [-0.15617287158966064, 0.005783106666058302, 0.018346896395087242, 0.3180197775363922, -0.1592433899641037, -0.003215130651369691, -0.10690653324127197, -0.031182419508695602, 0.042104121297597885, 0.31984350085258484, -0.22595155239105225, 0.025257235392928123, 0.03005141392350197, 0.053364869207143784, 0.03589895740151405, 0.1880684494972229, 0.11583951860666275, 0.12899820506572723, 0.11152520030736923, -0.6972541809082031, -0.21101823449134827, -0.13623666763305664, -0.10597650706768036, -0.2983472943305969, 0.06738729774951935, 1.494768500328064, -0.007418235298246145, 0.014369086362421513, -0.2012031525373459]} +{"t": 13.8219, "q": [-0.15616434812545776, 0.005817195866256952, 0.018346896395087242, 0.31800273060798645, -0.1592433899641037, -0.003215130651369691, -0.10692357271909714, -0.031148331239819527, 0.0421442948281765, 0.31984350085258484, -0.22595584392547607, 0.02526443637907505, 0.02989071048796177, 0.05335741490125656, 0.0358944870531559, 0.18808043003082275, 0.11434148997068405, 0.131574809551239, 0.11166901141405106, -0.7068775296211243, -0.2109343558549881, -0.13623666763305664, -0.105892613530159, -0.2981555461883545, 0.06743523478507996, 1.494720458984375, -0.007430219557136297, 0.01435710210353136, -0.20119117200374603]} +{"t": 13.8386, "q": [-0.15616434812545776, 0.00585980573669076, 0.018346896395087242, 0.31799420714378357, -0.1592433899641037, -0.003215130651369691, -0.1069406196475029, -0.03111424297094345, 0.04215768724679947, 0.3198520243167877, -0.22595155239105225, 0.025257235392928123, 0.02973000891506672, 0.05337242782115936, 0.0358940027654171, 0.18805646896362305, 0.11332283169031143, 0.13342037796974182, 0.11183679103851318, -0.7162851691246033, -0.2108864188194275, -0.13623666763305664, -0.1059405505657196, -0.2979757785797119, 0.06741126626729965, 1.4947324991226196, -0.007406251039355993, 0.014345117844641209, -0.20116721093654633]} +{"t": 13.8554, "q": [-0.15616434812545776, 0.005851284135133028, 0.01832011342048645, 0.31799420714378357, -0.15923908352851868, -0.0032080835662782192, -0.1069406196475029, -0.031088676303625107, 0.04213090240955353, 0.3198520243167877, -0.22595155239105225, 0.025257235392928123, 0.029783576726913452, 0.053364869207143784, 0.03589895740151405, 0.1880205124616623, 0.1128075122833252, 0.13446301221847534, 0.11212441325187683, -0.7250576019287109, -0.21076656877994537, -0.1362246870994568, -0.10586864501237869, -0.297855943441391, 0.0674232542514801, 1.4947444200515747, -0.007442203816026449, 0.014321149326860905, -0.20117919147014618]} +{"t": 13.8722, "q": [-0.15617287158966064, 0.0058768498711287975, 0.01832011342048645, 0.3179856836795807, -0.1592433899641037, -0.003215130651369691, -0.10693209618330002, -0.031088676303625107, 0.042090728878974915, 0.31983497738838196, -0.2259642779827118, 0.025264499709010124, 0.029863927513360977, 0.05336497351527214, 0.035889528691768646, 0.18805646896362305, 0.1125079095363617, 0.13453491032123566, 0.11228020489215851, -0.7352681756019592, -0.2105868011713028, -0.1362246870994568, -0.10579673945903778, -0.29781997203826904, 0.0674232542514801, 1.494720458984375, -0.007442203816026449, 0.014333133585751057, -0.20116721093654633]} +{"t": 13.889, "q": [-0.15615582466125488, 0.00585980573669076, 0.01832011342048645, 0.3179686367511749, -0.159234881401062, -0.0032292110845446587, -0.10692357271909714, -0.031088676303625107, 0.04213090240955353, 0.3198605477809906, -0.22595171630382538, 0.02527155540883541, 0.029877319931983948, 0.05336497351527214, 0.035889528691768646, 0.18803249299526215, 0.11186075955629349, 0.1347266584634781, 0.11238806694746017, -0.7446997761726379, -0.21051490306854248, -0.13623666763305664, -0.10582070797681808, -0.2977480888366699, 0.06736332923173904, 1.4946964979171753, -0.007430219557136297, 0.014309165067970753, -0.20116721093654633]} +{"t": 13.9057, "q": [-0.15615582466125488, 0.005868328269571066, 0.018346896395087242, 0.3179771602153778, -0.159234881401062, -0.0032292110845446587, -0.10692357271909714, -0.031088676303625107, 0.04213090240955353, 0.3198690712451935, -0.22595998644828796, 0.025257298722863197, 0.029850535094738007, 0.05337998643517494, 0.035889044404029846, 0.18803249299526215, 0.11109376698732376, 0.1348225325345993, 0.11238806694746017, -0.7551260590553284, -0.21047894656658173, -0.13623666763305664, -0.10583269596099854, -0.2976522147655487, 0.06736332923173904, 1.4947564601898193, -0.007454188074916601, 0.014285196550190449, -0.20116721093654633]} +{"t": 13.9226, "q": [-0.15616434812545776, 0.00585980573669076, 0.018346896395087242, 0.3179771602153778, -0.159234881401062, -0.0032292110845446587, -0.10693209618330002, -0.03110572136938572, 0.04215768724679947, 0.31987759470939636, -0.22594740986824036, 0.025264354422688484, 0.029796967282891273, 0.05337253212928772, 0.03588457405567169, 0.18803249299526215, 0.11003915965557098, 0.1350741982460022, 0.11248394101858139, -0.7619450688362122, -0.21037109196186066, -0.1362246870994568, -0.10578475892543793, -0.2975083887577057, 0.06741126626729965, 1.4947324991226196, -0.007442203816026449, 0.014261228032410145, -0.20116721093654633]} +{"t": 13.9395, "q": [-0.15613877773284912, 0.005817195866256952, 0.01833350583910942, 0.3179856836795807, -0.15924343466758728, -0.0032292178366333246, -0.1069406196475029, -0.03110572136938572, 0.04218447208404541, 0.3198946416378021, -0.22594723105430603, 0.025250017642974854, 0.029796967282891273, 0.05338754504919052, 0.03588408976793289, 0.18805646896362305, 0.10887668281793594, 0.13503825664520264, 0.11249592155218124, -0.7700344324111938, -0.2102392613887787, -0.13623666763305664, -0.10577277094125748, -0.2973765730857849, 0.0674232542514801, 1.4947444200515747, -0.007430219557136297, 0.014249243773519993, -0.20115521550178528]} +{"t": 13.9562, "q": [-0.15612174570560455, 0.005808673333376646, 0.018373681232333183, 0.3180197775363922, -0.1592433899641037, -0.003215130651369691, -0.1069406196475029, -0.031131288036704063, 0.04222464561462402, 0.3199116885662079, -0.22594740986824036, 0.025264354422688484, 0.02973000891506672, 0.05337998643517494, 0.035889044404029846, 0.188044473528862, 0.10788199305534363, 0.13495436310768127, 0.11247195303440094, -0.7775125503540039, -0.21004751324653625, -0.1362486630678177, -0.10578475892543793, -0.2971728444099426, 0.06738729774951935, 1.494720458984375, -0.007430219557136297, 0.01423725951462984, -0.20115521550178528]} +{"t": 13.973, "q": [-0.15612174570560455, 0.005800151731818914, 0.018427249044179916, 0.3180197775363922, -0.159234881401062, -0.0032292110845446587, -0.10693209618330002, -0.031148331239819527, 0.042238038033246994, 0.31988611817359924, -0.22594740986824036, 0.025264354422688484, 0.029529130086302757, 0.05336497351527214, 0.035889528691768646, 0.1879965364933014, 0.10722286254167557, 0.13467872142791748, 0.11244798451662064, -0.7840200066566467, -0.20969997346401215, -0.13623666763305664, -0.10582070797681808, -0.2969571053981781, 0.06735134869813919, 1.4947444200515747, -0.007430219557136297, 0.014225275255739689, -0.20115521550178528]} +{"t": 13.9897, "q": [-0.15613025426864624, 0.005808673333376646, 0.018387073650956154, 0.3180283010005951, -0.159234881401062, -0.0032292110845446587, -0.1069406196475029, -0.031156854704022408, 0.04222464561462402, 0.31993725895881653, -0.22594740986824036, 0.025264354422688484, 0.0292345080524683, 0.05340266227722168, 0.035874176770448685, 0.18803249299526215, 0.10693524032831192, 0.1344510167837143, 0.11244798451662064, -0.7888975739479065, -0.2090408354997635, -0.1362486630678177, -0.10582070797681808, -0.29671743512153625, 0.0673753172159195, 1.494768500328064, -0.007454188074916601, 0.014249243773519993, -0.20114323496818542]} +{"t": 14.0065, "q": [-0.15612174570560455, 0.005817195866256952, 0.018400464206933975, 0.3180283010005951, -0.15923058986663818, -0.003222163999453187, -0.10695765912532806, -0.031139809638261795, 0.042238038033246994, 0.3199543058872223, -0.22594723105430603, 0.025250017642974854, 0.029006846249103546, 0.05340266227722168, 0.035874176770448685, 0.18816432356834412, 0.10697119683027267, 0.1341753900051117, 0.112531878054142, -0.794230580329895, -0.2079862356185913, -0.13623666763305664, -0.10582070797681808, -0.29648974537849426, 0.06738729774951935, 1.494768500328064, -0.007442203816026449, 0.014213290996849537, -0.20115521550178528]} +{"t": 14.0232, "q": [-0.15611322224140167, 0.00583424000069499, 0.018387073650956154, 0.318036824464798, -0.15923063457012177, -0.0032362511847168207, -0.10696618258953094, -0.031097199767827988, 0.042251430451869965, 0.3199457824230194, -0.22595155239105225, 0.025257235392928123, 0.028846142813563347, 0.05341777950525284, 0.03586426377296448, 0.1883440911769867, 0.1070910394191742, 0.13388776779174805, 0.11275957524776459, -0.7959322929382324, -0.20670391619205475, -0.13626064360141754, -0.10574880242347717, -0.2963339388370514, 0.06738729774951935, 1.4948043823242188, -0.007430219557136297, 0.014213290996849537, -0.20113125443458557]} +{"t": 14.04, "q": [-0.1561046987771988, 0.005902416538447142, 0.018400464206933975, 0.31804534792900085, -0.15922632813453674, -0.003229204099625349, -0.1069832295179367, -0.0310460664331913, 0.04218447208404541, 0.3199543058872223, -0.22594328224658966, 0.025271475315093994, 0.028618481010198593, 0.05340266227722168, 0.035874176770448685, 0.18845194578170776, 0.10723485052585602, 0.13368403911590576, 0.113131083548069, -0.7967472672462463, -0.20539763569831848, -0.1362726241350174, -0.10577277094125748, -0.2962260842323303, 0.0674472227692604, 1.494720458984375, -0.007418235298246145, 0.014189322479069233, -0.20115521550178528]} +{"t": 14.0567, "q": [-0.1561046987771988, 0.0059620714746415615, 0.018400464206933975, 0.3180623948574066, -0.1592349410057068, -0.0032432982698082924, -0.10700879245996475, -0.03099493309855461, 0.04221125692129135, 0.31997987627983093, -0.22594740986824036, 0.025264354422688484, 0.028497954830527306, 0.05343268811702728, 0.035873208194971085, 0.1886436939239502, 0.10737866163253784, 0.1336001455783844, 0.11368235945701599, -0.7965674996376038, -0.20422318577766418, -0.1362966001033783, -0.10579673945903778, -0.29616615176200867, 0.06736332923173904, 1.4947444200515747, -0.007430219557136297, 0.014189322479069233, -0.20115521550178528]} +{"t": 14.0734, "q": [-0.15608765184879303, 0.006021726410835981, 0.018400464206933975, 0.3180283010005951, -0.15922632813453674, -0.003229204099625349, -0.10702583938837051, -0.03092675656080246, 0.04218447208404541, 0.31997135281562805, -0.22595155239105225, 0.025257235392928123, 0.028364034369587898, 0.053432900458574295, 0.03585435077548027, 0.18879948556423187, 0.10903248190879822, 0.13340839743614197, 0.11423363536596298, -0.7960641384124756, -0.20313261449337006, -0.13633254170417786, -0.10577277094125748, -0.2961302101612091, 0.06741126626729965, 1.4947924613952637, -0.007442203816026449, 0.014177338220179081, -0.20115521550178528]} +{"t": 14.0901, "q": [-0.15607060492038727, 0.0060472930781543255, 0.018387073650956154, 0.31800273060798645, -0.15923063457012177, -0.0032362511847168207, -0.1070343628525734, -0.030901189893484116, 0.04219786450266838, 0.31992873549461365, -0.22595155239105225, 0.025257235392928123, 0.028109589591622353, 0.053546108305454254, 0.03579869121313095, 0.18913504481315613, 0.1113334521651268, 0.1327732354402542, 0.11429355293512344, -0.7949975728988647, -0.2015746682882309, -0.13645239174365997, -0.10567689687013626, -0.2961302101612091, 0.0673992857336998, 1.4947324991226196, -0.007442203816026449, 0.014177338220179081, -0.20115521550178528]} +{"t": 14.1071, "q": [-0.15607912838459015, 0.006072858814150095, 0.018360288813710213, 0.3179856836795807, -0.1592264324426651, -0.003257387550547719, -0.10705992579460144, -0.03087562508881092, 0.04218447208404541, 0.31992021203041077, -0.22595568001270294, 0.02525009773671627, 0.028096197172999382, 0.05367433652281761, 0.035742539912462234, 0.18943464756011963, 0.11323894560337067, 0.13255751132965088, 0.1143534779548645, -0.7937511801719666, -0.20018449425697327, -0.13645239174365997, -0.10565292835235596, -0.2961901128292084, 0.0674472227692604, 1.4947324991226196, -0.007442203816026449, 0.014165353961288929, -0.20115521550178528]} +{"t": 14.1238, "q": [-0.15607060492038727, 0.006072858814150095, 0.01829332858324051, 0.3179345726966858, -0.1592136174440384, -0.003264420898631215, -0.1070769727230072, -0.030841534957289696, 0.04217107966542244, 0.319903165102005, -0.22595998644828796, 0.025257298722863197, 0.028122980147600174, 0.05386316031217575, 0.03563718870282173, 0.18941068649291992, 0.11643873155117035, 0.13209013640880585, 0.1143774464726448, -0.7928044199943542, -0.19904600083827972, -0.13651230931282043, -0.1055930107831955, -0.2962021231651306, 0.0673992857336998, 1.494768500328064, -0.007442203816026449, 0.014165353961288929, -0.20115521550178528]} +{"t": 14.1405, "q": [-0.15607912838459015, 0.0061836461536586285, 0.01832011342048645, 0.31791752576828003, -0.15921781957149506, -0.0032432933803647757, -0.10711958259344101, -0.030730748549103737, 0.04215768724679947, 0.3198605477809906, -0.22595568001270294, 0.02525009773671627, 0.02802923694252968, 0.053991276770830154, 0.03559047356247902, 0.18939869105815887, 0.11983026564121246, 0.1317545771598816, 0.11440141499042511, -0.7915580868721008, -0.19836290180683136, -0.136692076921463, -0.1055930107831955, -0.29614219069480896, 0.06747119128704071, 1.4948164224624634, -0.007418235298246145, 0.014153369702398777, -0.20114323496818542]} +{"t": 14.1573, "q": [-0.15608765184879303, 0.006234779488295317, 0.01830672100186348, 0.3178834319114685, -0.15921787917613983, -0.003257380798459053, -0.10714515298604965, -0.03062848374247551, 0.04217107966542244, 0.3198520243167877, -0.2259596288204193, 0.02522864192724228, 0.027801575139164925, 0.05412717163562775, 0.035519909113645554, 0.18942266702651978, 0.12326974421739578, 0.13167068362236023, 0.11436545848846436, -0.7900840044021606, -0.19815915822982788, -0.1368718296289444, -0.1056409478187561, -0.29616615176200867, 0.06756706535816193, 1.4948283433914185, -0.007454188074916601, 0.014177338220179081, -0.20116721093654633]} +{"t": 14.174, "q": [-0.15607912838459015, 0.006311478558927774, 0.01832011342048645, 0.3178408145904541, -0.15920937061309814, -0.0032714700791984797, -0.10716219246387482, -0.03056882880628109, 0.04215768724679947, 0.31983497738838196, -0.22596824169158936, 0.025243060663342476, 0.027614088729023933, 0.05421769618988037, 0.03547916188836098, 0.18939869105815887, 0.1270567625761032, 0.1312512308359146, 0.1143055409193039, -0.7871239185333252, -0.1980273425579071, -0.13715945184230804, -0.10576079040765762, -0.2961901128292084, 0.06753110885620117, 1.4949241876602173, -0.007442203816026449, 0.014165353961288929, -0.20115521550178528]} +{"t": 14.1908, "q": [-0.15607912838459015, 0.006337044294923544, 0.01832011342048645, 0.3177981972694397, -0.15921787917613983, -0.003257380798459053, -0.10717923939228058, -0.03050065040588379, 0.04215768724679947, 0.3198094367980957, -0.22596411406993866, 0.025250179693102837, 0.02757391333580017, 0.0542932003736496, 0.0354389064013958, 0.1893387734889984, 0.1314309984445572, 0.1309036910533905, 0.1143295094370842, -0.7812396883964539, -0.19794344902038574, -0.13732723891735077, -0.10595253854990005, -0.2961901128292084, 0.06753110885620117, 1.4949482679367065, -0.007442203816026449, 0.014189322479069233, -0.20115521550178528]} +{"t": 14.2078, "q": [-0.1561046987771988, 0.006388177629560232, 0.01830672100186348, 0.3177385628223419, -0.15922223031520844, -0.0032785239163786173, -0.10725593566894531, -0.030423952266573906, 0.0421442948281765, 0.3197327256202698, -0.225976824760437, 0.02525746077299118, 0.027614088729023933, 0.05432344600558281, 0.0354190319776535, 0.18930281698703766, 0.13593706488609314, 0.13061606884002686, 0.1143774464726448, -0.7747801542282104, -0.1980273425579071, -0.13737517595291138, -0.10609634965658188, -0.2961901128292084, 0.06754309684038162, 1.4949482679367065, -0.007442203816026449, 0.014177338220179081, -0.20114323496818542]} +{"t": 14.2246, "q": [-0.15611322224140167, 0.006413743365556002, 0.01829332858324051, 0.31758514046669006, -0.1592136174440384, -0.003264420898631215, -0.10728150606155396, -0.0303813423961401, 0.0421442948281765, 0.3196815848350525, -0.2259809672832489, 0.02525034174323082, 0.02758730575442314, 0.05432344600558281, 0.0354190319776535, 0.18932679295539856, 0.14160560071468353, 0.1299569457769394, 0.11431752145290375, -0.7690396904945374, -0.1980513036251068, -0.13750700652599335, -0.10620420426130295, -0.2961781322956085, 0.06761500239372253, 1.4950201511383057, -0.007454188074916601, 0.014213290996849537, -0.20115521550178528]} +{"t": 14.2413, "q": [-0.15612174570560455, 0.006413743365556002, 0.01832011342048645, 0.31749141216278076, -0.1592264324426651, -0.003257387550547719, -0.10731559246778488, -0.0303813423961401, 0.0421442948281765, 0.31956228613853455, -0.22596411406993866, 0.025250179693102837, 0.02757391333580017, 0.05434591695666313, 0.035423003137111664, 0.18936274945735931, 0.1471782773733139, 0.12946557998657227, 0.11416172981262207, -0.7605429291725159, -0.19814717769622803, -0.13757890462875366, -0.10626412183046341, -0.2961901128292084, 0.06754309684038162, 1.4950201511383057, -0.007442203816026449, 0.014201306737959385, -0.20114323496818542]} +{"t": 14.2581, "q": [-0.15612174570560455, 0.006422265898436308, 0.018346896395087242, 0.3173806369304657, -0.1592179238796234, -0.0032714679837226868, -0.10732411593198776, -0.030398385599255562, 0.04218447208404541, 0.3194855749607086, -0.22598078846931458, 0.025236021727323532, 0.02753373794257641, 0.05434580519795418, 0.035432443022727966, 0.1893387734889984, 0.15327824652194977, 0.12869858741760254, 0.11393403261899948, -0.7517943978309631, -0.19817115366458893, -0.13771073520183563, -0.10622817277908325, -0.2962260842323303, 0.06759103387594223, 1.4951519966125488, -0.007418235298246145, 0.014201306737959385, -0.20114323496818542]} +{"t": 14.275, "q": [-0.15612174570560455, 0.006396699231117964, 0.018346896395087242, 0.31727835536003113, -0.1592136174440384, -0.003264420898631215, -0.10732411593198776, -0.03044099546968937, 0.04218447208404541, 0.31941741704940796, -0.22598078846931458, 0.025236021727323532, 0.02737303450703621, 0.05436071380972862, 0.03544138744473457, 0.18915900588035583, 0.1599894016981125, 0.12729644775390625, 0.11371831595897675, -0.7442923188209534, -0.19818313419818878, -0.1378425657749176, -0.10622817277908325, -0.2962260842323303, 0.06756706535816193, 1.4952118396759033, -0.007442203816026449, 0.014213290996849537, -0.20113125443458557]} +{"t": 14.2918, "q": [-0.15613877773284912, 0.006388177629560232, 0.018413856625556946, 0.3172016441822052, -0.15923067927360535, -0.0032503472175449133, -0.10734115540981293, -0.030483607202768326, 0.042238038033246994, 0.31934070587158203, -0.22597666084766388, 0.025243140757083893, 0.02703823707997799, 0.0543682761490345, 0.035436417907476425, 0.18907512724399567, 0.1667005717754364, 0.125486820936203, 0.11382617056369781, -0.7345251441001892, -0.19821909070014954, -0.13793843984603882, -0.10630007833242416, -0.29621410369873047, 0.06757904589176178, 1.495223879814148, -0.007430219557136297, 0.014213290996849537, -0.20109529793262482]} +{"t": 14.3085, "q": [-0.15613877773284912, 0.006320000160485506, 0.01848081685602665, 0.3171420097351074, -0.1592392474412918, -0.003250354202464223, -0.10734967887401581, -0.0305176954716444, 0.042291607707738876, 0.319272518157959, -0.2259809672832489, 0.02525034174323082, 0.02655612863600254, 0.054383184760808945, 0.03544536232948303, 0.18914702534675598, 0.17379523813724518, 0.123365618288517, 0.11365839093923569, -0.725345253944397, -0.19843479990959167, -0.13803429901599884, -0.10644388943910599, -0.2962021231651306, 0.06757904589176178, 1.4952118396759033, -0.007442203816026449, 0.014213290996849537, -0.20108331739902496]} +{"t": 14.3255, "q": [-0.15615582466125488, 0.006277389358729124, 0.018547775223851204, 0.31709086894989014, -0.159234881401062, -0.0032292110845446587, -0.10735820233821869, -0.030585872009396553, 0.04233178123831749, 0.31922993063926697, -0.2259809672832489, 0.02525034174323082, 0.026315074414014816, 0.05436806008219719, 0.03545530140399933, 0.18917100131511688, 0.18066219985485077, 0.12148409336805344, 0.11339473724365234, -0.713169276714325, -0.19878233969211578, -0.1381421685218811, -0.10646785795688629, -0.29621410369873047, 0.06759103387594223, 1.4952478408813477, -0.007478156592696905, 0.01423725951462984, -0.2010233998298645]} +{"t": 14.3423, "q": [-0.156147301197052, 0.006260345224291086, 0.01866830326616764, 0.3170652985572815, -0.1592477411031723, -0.003236273769289255, -0.10734967887401581, -0.030705181881785393, 0.04233178123831749, 0.3192043602466583, -0.2259850949048996, 0.02524322271347046, 0.026167763397097588, 0.05436050146818161, 0.03546027094125748, 0.1892908364534378, 0.18826019763946533, 0.11829628795385361, 0.113131083548069, -0.7025033235549927, -0.19916583597660065, -0.13825002312660217, -0.1065397635102272, -0.2962260842323303, 0.06760301440954208, 1.4952478408813477, -0.007442203816026449, 0.01423725951462984, -0.20101140439510345]} +{"t": 14.3591, "q": [-0.15613877773284912, 0.006149557884782553, 0.018708478659391403, 0.3170056641101837, -0.159256249666214, -0.0032221844885498285, -0.10735820233821869, -0.03079892508685589, 0.0423719584941864, 0.3190935552120209, -0.22598113119602203, 0.025264661759138107, 0.0262079406529665, 0.05437551811337471, 0.03545977547764778, 0.18932679295539856, 0.19628962874412537, 0.11416172981262207, 0.11261576414108276, -0.6907827258110046, -0.2000526785850525, -0.13830994069576263, -0.1065397635102272, -0.2962021231651306, 0.06768690049648285, 1.4952597618103027, -0.007442203816026449, 0.014213290996849537, -0.2009754627943039]} +{"t": 14.3759, "q": [-0.15615582466125488, 0.006072858814150095, 0.018721869215369225, 0.3170141577720642, -0.15925200283527374, -0.0032292334362864494, -0.10735820233821869, -0.030909713357686996, 0.04238535091280937, 0.31911060214042664, -0.225976824760437, 0.02525746077299118, 0.02619454823434353, 0.05436050146818161, 0.03546027094125748, 0.18930281698703766, 0.20313261449337006, 0.11090201884508133, 0.11166901141405106, -0.6782232522964478, -0.20049609243869781, -0.13863351941108704, -0.10661166906356812, -0.2961302101612091, 0.06762698292732239, 1.4952718019485474, -0.007454188074916601, 0.014225275255739689, -0.2009275257587433]} +{"t": 14.3927, "q": [-0.15616434812545776, 0.006064337212592363, 0.018775437027215958, 0.3170056641101837, -0.15925194323062897, -0.003215128555893898, -0.10735820233821869, -0.030952323228120804, 0.042438916862010956, 0.31905949115753174, -0.22597700357437134, 0.025271780788898468, 0.025993669405579567, 0.05435293912887573, 0.035465240478515625, 0.18930281698703766, 0.20953220129013062, 0.10830144584178925, 0.11092598736286163, -0.6651005148887634, -0.20101140439510345, -0.13893312215805054, -0.1067914292216301, -0.2958905100822449, 0.06760301440954208, 1.4952837228775024, -0.007454188074916601, 0.01423725951462984, -0.2009275257587433]} +{"t": 14.4095, "q": [-0.15615582466125488, 0.005987638141959906, 0.01882900483906269, 0.3170226812362671, -0.15926465392112732, -0.003179911756888032, -0.10734967887401581, -0.031003456562757492, 0.04247909411787987, 0.3190765380859375, -0.2259809672832489, 0.02525034174323082, 0.025966886430978775, 0.05436806008219719, 0.03545530140399933, 0.18936274945735931, 0.2157280445098877, 0.10583269596099854, 0.11065035313367844, -0.6535717248916626, -0.20181435346603394, -0.13914884626865387, -0.10699516534805298, -0.2955549657344818, 0.06760301440954208, 1.495295763015747, -0.007442203816026449, 0.014225275255739689, -0.20086759328842163]} +{"t": 14.4262, "q": [-0.15618139505386353, 0.0059620714746415615, 0.01881561428308487, 0.31708234548568726, -0.159273162484169, -0.003165831323713064, -0.10733263939619064, -0.03105458803474903, 0.04250587522983551, 0.3191191256046295, -0.225976824760437, 0.02525746077299118, 0.026181155815720558, 0.05437551811337471, 0.03545977547764778, 0.18977020680904388, 0.22216357290744781, 0.1028725877404213, 0.1104346364736557, -0.6412639021873474, -0.2028449922800064, -0.13938851654529572, -0.1071389764547348, -0.29512351751327515, 0.06750714033842087, 1.4952718019485474, -0.007442203816026449, 0.014225275255739689, -0.20087958872318268]} +{"t": 14.443, "q": [-0.15615582466125488, 0.005902416538447142, 0.01881561428308487, 0.3171420097351074, -0.1592775136232376, -0.0031869744416326284, -0.10732411593198776, -0.031148331239819527, 0.042452309280633926, 0.31918731331825256, -0.22597269713878632, 0.02526458166539669, 0.026408817619085312, 0.05437562242150307, 0.03545033186674118, 0.19002187252044678, 0.22802385687828064, 0.09970875084400177, 0.1098114550113678, -0.6291598677635193, -0.20419920980930328, -0.13946042954921722, -0.10748651623725891, -0.29452431201934814, 0.06749515980482101, 1.4953076839447021, -0.007442203816026449, 0.014213290996849537, -0.2009275257587433]} +{"t": 14.4597, "q": [-0.15615582466125488, 0.00589389493688941, 0.01881561428308487, 0.3171846270561218, -0.15926891565322876, -0.00317287165671587, -0.10731559246778488, -0.031139809638261795, 0.042412132024765015, 0.31924697756767273, -0.2259684056043625, 0.025257380679249763, 0.026582913473248482, 0.05440586805343628, 0.03543045371770859, 0.190117746591568, 0.23463915288448334, 0.09537046402692795, 0.10967963188886642, -0.6160730719566345, -0.20585303008556366, -0.13948439061641693, -0.1080138236284256, -0.2936854362487793, 0.06743523478507996, 1.4953676462173462, -0.007430219557136297, 0.014225275255739689, -0.20091553032398224]} +{"t": 14.4765, "q": [-0.15613025426864624, 0.005910939071327448, 0.018788829445838928, 0.31732097268104553, -0.15926040709018707, -0.0031869609374552965, -0.10729002207517624, -0.031131288036704063, 0.042425524443387985, 0.3193918466567993, -0.22597269713878632, 0.02526458166539669, 0.02670343965291977, 0.05441343039274216, 0.03542548418045044, 0.19015370309352875, 0.24107468128204346, 0.09042097628116608, 0.10967963188886642, -0.6042686104774475, -0.20745892822742462, -0.13952034711837769, -0.10897255688905716, -0.29287049174308777, 0.06736332923173904, 1.4954036474227905, -0.007418235298246145, 0.014225275255739689, -0.20096346735954285]} +{"t": 14.4932, "q": [-0.15613877773284912, 0.0059194606728851795, 0.018775437027215958, 0.31740617752075195, -0.15926045179367065, -0.0032010481227189302, -0.10729854553937912, -0.031122766435146332, 0.042425524443387985, 0.3194600045681, -0.22596856951713562, 0.02527170069515705, 0.026609696447849274, 0.05439852178096771, 0.03541654348373413, 0.1901896595954895, 0.24628780782222748, 0.08663396537303925, 0.10970360040664673, -0.5927637219429016, -0.20892100036144257, -0.1395443230867386, -0.11001519113779068, -0.2920915186405182, 0.06726745516061783, 1.4953796863555908, -0.007406251039355993, 0.014213290996849537, -0.2010233998298645]} +{"t": 14.51, "q": [-0.15613025426864624, 0.005945027340203524, 0.018775437027215958, 0.3174317479133606, -0.15924765169620514, -0.0032080814708024263, -0.10727298259735107, -0.03110572136938572, 0.042425524443387985, 0.31956228613853455, -0.2259642779827118, 0.025264499709010124, 0.02655612863600254, 0.05438361316919327, 0.035407599061727524, 0.19017766416072845, 0.2524237334728241, 0.08197209984064102, 0.10976351797580719, -0.5807555317878723, -0.2114856243133545, -0.1395682841539383, -0.11089003831148148, -0.29139643907546997, 0.06724348664283752, 1.4953557252883911, -0.007418235298246145, 0.01423725951462984, -0.2010713368654251]} +{"t": 14.5267, "q": [-0.15612174570560455, 0.0059620714746415615, 0.018735261633992195, 0.3175255060195923, -0.15924769639968872, -0.0032221777364611626, -0.10729002207517624, -0.031088676303625107, 0.042438916862010956, 0.31965601444244385, -0.22597269713878632, 0.02526458166539669, 0.026448993012309074, 0.054391175508499146, 0.035402629524469376, 0.19015370309352875, 0.25824806094169617, 0.07780159264802933, 0.10976351797580719, -0.568435788154602, -0.21494905650615692, -0.13958026468753815, -0.11153718084096909, -0.2909410297870636, 0.06721951812505722, 1.4953076839447021, -0.007418235298246145, 0.014225275255739689, -0.20110727846622467]} +{"t": 14.5435, "q": [-0.15611322224140167, 0.005945027340203524, 0.018788829445838928, 0.31753402948379517, -0.1592562049627304, -0.003208088455721736, -0.1072644591331482, -0.031088676303625107, 0.042452309280633926, 0.3196815848350525, -0.22596411406993866, 0.025250179693102837, 0.026515953242778778, 0.0544063001871109, 0.03539269044995308, 0.1900937855243683, 0.26347318291664124, 0.07334345579147339, 0.10994328558444977, -0.5547617673873901, -0.21823273599147797, -0.1395922601222992, -0.1116570234298706, -0.29070135951042175, 0.06720753759145737, 1.495223879814148, -0.007418235298246145, 0.014213290996849537, -0.20114323496818542]} +{"t": 14.5602, "q": [-0.1561046987771988, 0.005910939071327448, 0.018775437027215958, 0.3175595998764038, -0.159256249666214, -0.0032221844885498285, -0.10725593566894531, -0.031088676303625107, 0.042412132024765015, 0.31969010829925537, -0.22595584392547607, 0.02526443637907505, 0.026502560824155807, 0.054391175508499146, 0.035402629524469376, 0.1907649040222168, 0.2689739465713501, 0.06858572363853455, 0.11057844758033752, -0.5422981977462769, -0.2202221304178238, -0.13958026468753815, -0.11171694844961166, -0.29042571783065796, 0.06719554960727692, 1.4951519966125488, -0.007394266780465841, 0.014213290996849537, -0.20115521550178528]} +{"t": 14.577, "q": [-0.15613877773284912, 0.005927983205765486, 0.018788829445838928, 0.31758514046669006, -0.1592562049627304, -0.003208088455721736, -0.1072644591331482, -0.031097199767827988, 0.042425524443387985, 0.31966453790664673, -0.2259601354598999, 0.025271637365221977, 0.026515953242778778, 0.05436092987656593, 0.03542250767350197, 0.19185546040534973, 0.2748701870441437, 0.06349242478609085, 0.11067432165145874, -0.5298465490341187, -0.22152841091156006, -0.1395922601222992, -0.11172892898321152, -0.29010215401649475, 0.06715960055589676, 1.4951878786087036, -0.007382282521575689, 0.014201306737959385, -0.20115521550178528]} +{"t": 14.5937, "q": [-0.15612174570560455, 0.005945027340203524, 0.018775437027215958, 0.3175766170024872, -0.15924765169620514, -0.0032080814708024263, -0.10729002207517624, -0.031088676303625107, 0.042412132024765015, 0.31964749097824097, -0.22595584392547607, 0.02526443637907505, 0.026515953242778778, 0.05437583848834038, 0.03543144837021828, 0.19276626408100128, 0.2789088785648346, 0.06023271754384041, 0.11090201884508133, -0.5156572461128235, -0.2223673015832901, -0.13958026468753815, -0.11170496046543121, -0.28982651233673096, 0.06718356907367706, 1.4952597618103027, -0.007382282521575689, 0.014213290996849537, -0.20116721093654633]} +{"t": 14.6104, "q": [-0.15611322224140167, 0.0059194606728851795, 0.018775437027215958, 0.31753402948379517, -0.15924765169620514, -0.0032080814708024263, -0.10727298259735107, -0.031088676303625107, 0.04238535091280937, 0.31960490345954895, -0.2259601354598999, 0.025271637365221977, 0.026582913473248482, 0.05437583848834038, 0.03543144837021828, 0.19379690289497375, 0.283247172832489, 0.05591839551925659, 0.11104582995176315, -0.503888726234436, -0.22307436168193817, -0.1395682841539383, -0.1116330549120903, -0.28952690958976746, 0.06719554960727692, 1.4952597618103027, -0.007382282521575689, 0.014189322479069233, -0.20116721093654633]} +{"t": 14.6271, "q": [-0.15613877773284912, 0.005953548941761255, 0.018788829445838928, 0.317474365234375, -0.15925189852714539, -0.0032010413706302643, -0.10728150606155396, -0.03110572136938572, 0.04239874333143234, 0.31955376267433167, -0.22595584392547607, 0.02526443637907505, 0.026636481285095215, 0.054383400827646255, 0.03542647883296013, 0.19487549364566803, 0.2876933217048645, 0.05146026238799095, 0.11111773550510406, -0.491113543510437, -0.22357770800590515, -0.13955630362033844, -0.11166901141405106, -0.2892392873764038, 0.06718356907367706, 1.4952478408813477, -0.007382282521575689, 0.014213290996849537, -0.20116721093654633]} +{"t": 14.6438, "q": [-0.156147301197052, 0.005953548941761255, 0.018762046471238136, 0.31741470098495483, -0.15925189852714539, -0.0032010413706302643, -0.10728150606155396, -0.031088676303625107, 0.0423719584941864, 0.31951966881752014, -0.2259601354598999, 0.025271637365221977, 0.0266900472342968, 0.05437583848834038, 0.03543144837021828, 0.19602596759796143, 0.29330193996429443, 0.045887596905231476, 0.11124956607818604, -0.4766605794429779, -0.22426080703735352, -0.1395443230867386, -0.11171694844961166, -0.2889396846294403, 0.06719554960727692, 1.4951159954071045, -0.007382282521575689, 0.014201306737959385, -0.2012031525373459]} +{"t": 14.6606, "q": [-0.15616434812545776, 0.005953548941761255, 0.018721869215369225, 0.31726983189582825, -0.15926045179367065, -0.0032010481227189302, -0.10729854553937912, -0.0310460664331913, 0.04233178123831749, 0.3193918466567993, -0.22596856951713562, 0.02527170069515705, 0.026649871841073036, 0.05437583848834038, 0.03543144837021828, 0.19758392870426178, 0.29888656735420227, 0.0409141443669796, 0.11126154661178589, -0.4633341133594513, -0.224692240357399, -0.13950836658477783, -0.11176488548517227, -0.28860411047935486, 0.06720753759145737, 1.4951399564743042, -0.007370298728346825, 0.014189322479069233, -0.20121514797210693]} +{"t": 14.6774, "q": [-0.15615582466125488, 0.005996159743517637, 0.01866830326616764, 0.3172101676464081, -0.15926475822925568, -0.0032081040553748608, -0.10729854553937912, -0.031037544831633568, 0.04231838881969452, 0.3193066120147705, -0.22597269713878632, 0.02526458166539669, 0.0266900472342968, 0.05437583848834038, 0.03543144837021828, 0.19867448508739471, 0.30318892002105713, 0.03711514547467232, 0.11140535771846771, -0.44956424832344055, -0.22527946531772614, -0.13950836658477783, -0.11177686601877213, -0.2884243428707123, 0.06717158108949661, 1.495163917541504, -0.007370298728346825, 0.014189322479069233, -0.2012271285057068]} +{"t": 14.6941, "q": [-0.15618139505386353, 0.006021726410835981, 0.01866830326616764, 0.3171590566635132, -0.15926045179367065, -0.0032010481227189302, -0.10729854553937912, -0.031020499765872955, 0.042278215289115906, 0.31924697756767273, -0.22598129510879517, 0.025278981775045395, 0.0266900472342968, 0.054383184760808945, 0.03544536232948303, 0.19968116283416748, 0.3074912428855896, 0.03351987898349762, 0.11156114935874939, -0.43511125445365906, -0.22617828845977783, -0.13952034711837769, -0.11172892898321152, -0.2882925271987915, 0.06720753759145737, 1.4951878786087036, -0.007370298728346825, 0.014189322479069233, -0.20126308500766754]} +{"t": 14.7108, "q": [-0.15618139505386353, 0.006030248012393713, 0.01866830326616764, 0.3170567750930786, -0.15926896035671234, -0.0031869588419795036, -0.10734115540981293, -0.03098641149699688, 0.042251430451869965, 0.3191617429256439, -0.22598129510879517, 0.025278981775045395, 0.02673022449016571, 0.05437562242150307, 0.03545033186674118, 0.20057997107505798, 0.31144604086875916, 0.030535805970430374, 0.11169297993183136, -0.4223960041999817, -0.22740067541599274, -0.13947241008281708, -0.11174091696739197, -0.2881966531276703, 0.06720753759145737, 1.4951878786087036, -0.007370298728346825, 0.014189322479069233, -0.2012510895729065]} +{"t": 14.7276, "q": [-0.15622399747371674, 0.006064337212592363, 0.01862812601029873, 0.31698861718177795, -0.15925614535808563, -0.0031940010376274586, -0.10735820233821869, -0.030918234959244728, 0.042238038033246994, 0.319042444229126, -0.22598542273044586, 0.025271862745285034, 0.026770399883389473, 0.05436817184090614, 0.035445861518383026, 0.20149077475070953, 0.3167310953140259, 0.026101643219590187, 0.11198060214519501, -0.40952494740486145, -0.22889870405197144, -0.13946042954921722, -0.11168099194765091, -0.287992924451828, 0.06723150610923767, 1.4951878786087036, -0.007358314469456673, 0.014201306737959385, -0.20126308500766754]} +{"t": 14.7445, "q": [-0.15622399747371674, 0.006089902948588133, 0.01865491084754467, 0.3169204294681549, -0.15926045179367065, -0.0032010481227189302, -0.10737524926662445, -0.030909713357686996, 0.042238038033246994, 0.3189998269081116, -0.22598955035209656, 0.025264743715524673, 0.02687753550708294, 0.05436806008219719, 0.03545530140399933, 0.20232968032360077, 0.321321040391922, 0.022614233195781708, 0.11224425584077835, -0.3961625397205353, -0.2305765002965927, -0.13946042954921722, -0.11169297993183136, -0.28775322437286377, 0.06721951812505722, 1.4951759576797485, -0.007358314469456673, 0.014189322479069233, -0.2012750655412674]} +{"t": 14.7613, "q": [-0.15624956786632538, 0.006115469615906477, 0.01862812601029873, 0.31680965423583984, -0.1592562049627304, -0.003208088455721736, -0.10742638260126114, -0.03087562508881092, 0.04219786450266838, 0.31891459226608276, -0.2259940207004547, 0.025286264717578888, 0.026797182857990265, 0.05437551811337471, 0.03545977547764778, 0.2031206339597702, 0.3256832957267761, 0.019114838913083076, 0.11272362619638443, -0.3828240931034088, -0.232853502035141, -0.13943645358085632, -0.11169297993183136, -0.28740569949150085, 0.06724348664283752, 1.4951279163360596, -0.007382282521575689, 0.014177338220179081, -0.20128704607486725]} +{"t": 14.778, "q": [-0.15623252093791962, 0.006132513750344515, 0.018601343035697937, 0.3167329430580139, -0.15925614535808563, -0.0031940010376274586, -0.10745194554328918, -0.030824491754174232, 0.04222464561462402, 0.31886348128318787, -0.2259940207004547, 0.025286264717578888, 0.02670343965291977, 0.05439798906445503, 0.03546374663710594, 0.20381571352481842, 0.32999762892723083, 0.015243934467434883, 0.11362244188785553, -0.36953359842300415, -0.23580162227153778, -0.13938851654529572, -0.1116330549120903, -0.2868903577327728, 0.06725547462701797, 1.4951878786087036, -0.007358314469456673, 0.014189322479069233, -0.2012990266084671]} +{"t": 14.7947, "q": [-0.15624956786632538, 0.006200690288096666, 0.0186415184289217, 0.3166903257369995, -0.15926475822925568, -0.0032081040553748608, -0.10749455541372299, -0.030781880021095276, 0.042238038033246994, 0.3188038170337677, -0.2259981483221054, 0.025279143825173378, 0.02652934566140175, 0.05439798906445503, 0.03546374663710594, 0.20467858016490936, 0.33446773886680603, 0.012343752197921276, 0.1146291121840477, -0.35558393597602844, -0.23876172304153442, -0.13937653601169586, -0.11159710586071014, -0.2861713171005249, 0.06733936071395874, 1.4951759576797485, -0.007370298728346825, 0.014189322479069233, -0.2012990266084671]} +{"t": 14.8117, "q": [-0.1562410444021225, 0.006277389358729124, 0.01862812601029873, 0.31663069128990173, -0.15924765169620514, -0.0032080814708024263, -0.10752012580633163, -0.03067961521446705, 0.042278215289115906, 0.3187526762485504, -0.2259981483221054, 0.025279143825173378, 0.026315074414014816, 0.05436795577406883, 0.03546474501490593, 0.20555342733860016, 0.33815887570381165, 0.009827064350247383, 0.11577960103750229, -0.3415384292602539, -0.24147015810012817, -0.13935257494449615, -0.11152520030736923, -0.2853563725948334, 0.06726745516061783, 1.4951759576797485, -0.007358314469456673, 0.014201306737959385, -0.20131102204322815]} +{"t": 14.8285, "q": [-0.15623252093791962, 0.006311478558927774, 0.01865491084754467, 0.3166051208972931, -0.15926900506019592, -0.003201063722372055, -0.10752012580633163, -0.030645526945590973, 0.042291607707738876, 0.31874415278434753, -0.2259940207004547, 0.025286264717578888, 0.026248116046190262, 0.054413001984357834, 0.035463251173496246, 0.20599684119224548, 0.34214964509010315, 0.0062917182222008705, 0.1176251694560051, -0.32866737246513367, -0.2434355616569519, -0.1392926573753357, -0.11118964105844498, -0.2842777967453003, 0.06726745516061783, 1.4951279163360596, -0.007358314469456673, 0.014189322479069233, -0.20135895907878876]} +{"t": 14.8452, "q": [-0.15622399747371674, 0.006302956026047468, 0.01865491084754467, 0.31657102704048157, -0.15926045179367065, -0.0032010481227189302, -0.10752864181995392, -0.03063700534403324, 0.042251430451869965, 0.3187526762485504, -0.22600658237934113, 0.025279244408011436, 0.026167763397097588, 0.05439798906445503, 0.03546374663710594, 0.20640431344509125, 0.3458048105239868, 0.002948119305074215, 0.1194707378745079, -0.3149814009666443, -0.24416659772396088, -0.13924472033977509, -0.11079416424036026, -0.28318724036216736, 0.06724348664283752, 1.4951159954071045, -0.007358314469456673, 0.014177338220179081, -0.20143085718154907]} +{"t": 14.8621, "q": [-0.15622399747371674, 0.0062944344244897366, 0.018695086240768433, 0.31658807396888733, -0.1592562049627304, -0.003208088455721736, -0.1075797751545906, -0.030645526945590973, 0.04230500012636185, 0.31873562932014465, -0.22600245475769043, 0.025286363437771797, 0.02587314322590828, 0.054405439645051956, 0.035468216985464096, 0.2072671800851822, 0.34853723645210266, 0.0008868326549418271, 0.12081297487020493, -0.3019545376300812, -0.24434636533260345, -0.13918478786945343, -0.1104346364736557, -0.2819768488407135, 0.06723150610923767, 1.4950799942016602, -0.007358314469456673, 0.014189322479069233, -0.20153871178627014]} +{"t": 14.8789, "q": [-0.15622399747371674, 0.00634556682780385, 0.018708478659391403, 0.3165965974330902, -0.15926900506019592, -0.003201063722372055, -0.10759682208299637, -0.030585872009396553, 0.0423719584941864, 0.31877824664115906, -0.22600245475769043, 0.025286363437771797, 0.02536424994468689, 0.05439787730574608, 0.035473186522722244, 0.20801019668579102, 0.3508022427558899, -0.0005512743373401463, 0.12226306647062302, -0.29032984375953674, -0.24439430236816406, -0.13910090923309326, -0.10973954945802689, -0.2810780107975006, 0.06715960055589676, 1.4950560331344604, -0.007358314469456673, 0.014177338220179081, -0.20163458585739136]} +{"t": 14.8956, "q": [-0.15622399747371674, 0.006379655096679926, 0.018748654052615166, 0.31663069128990173, -0.15926475822925568, -0.0032081040553748608, -0.10763943195343018, -0.030551783740520477, 0.042412132024765015, 0.3187526762485504, -0.22601087391376495, 0.025286445394158363, 0.02485535852611065, 0.054405439645051956, 0.035468216985464096, 0.20854948461055756, 0.35268375277519226, -0.001725728390738368, 0.12401276081800461, -0.2785373628139496, -0.24445421993732452, -0.13900503516197205, -0.10933208465576172, -0.2802271246910095, 0.06701578944921494, 1.49470853805542, -0.007346330210566521, 0.014141385443508625, -0.20177839696407318]} +{"t": 14.9125, "q": [-0.15620696544647217, 0.006354088429361582, 0.018762046471238136, 0.3166903257369995, -0.15927326679229736, -0.003194014774635434, -0.10763943195343018, -0.03056030534207821, 0.04247909411787987, 0.3187952935695648, -0.22600245475769043, 0.025286363437771797, 0.024279506877064705, 0.05442812293767929, 0.03545331209897995, 0.20892100036144257, 0.3538941740989685, -0.0023848607670515776, 0.12540292739868164, -0.26859045028686523, -0.24450215697288513, -0.13887320458889008, -0.10825350880622864, -0.27914854884147644, 0.06695586442947388, 1.493869662284851, -0.007334345951676369, 0.013877732679247856, -0.20193418860435486]} +{"t": 14.9293, "q": [-0.1561899185180664, 0.00637113256379962, 0.0188022218644619, 0.31675851345062256, -0.1592562049627304, -0.003208088455721736, -0.10763943195343018, -0.03057735040783882, 0.0424657016992569, 0.3188464343547821, -0.22601087391376495, 0.025286445394158363, 0.02386435866355896, 0.054555922746658325, 0.035434920340776443, 0.20910076797008514, 0.3550446629524231, -0.003043993143364787, 0.12697286903858185, -0.25870347023010254, -0.24449017643928528, -0.1387893110513687, -0.10637198388576508, -0.27832165360450745, 0.06689594686031342, 1.4939055442810059, -0.007334345951676369, 0.013793842867016792, -0.20201808214187622]} +{"t": 14.946, "q": [-0.15618139505386353, 0.006354088429361582, 0.0188022218644619, 0.3168351948261261, -0.15925189852714539, -0.0032010413706302643, -0.10764795541763306, -0.03056882880628109, 0.04250587522983551, 0.3189316391944885, -0.2259981483221054, 0.025279143825173378, 0.023596519604325294, 0.05461598560214043, 0.035432931035757065, 0.2090887725353241, 0.3558715581893921, -0.0031638354994356632, 0.12829113006591797, -0.24886442720890045, -0.24447819590568542, -0.1386694759130478, -0.10435863584280014, -0.2774827480316162, 0.06693189591169357, 1.4939055442810059, -0.007322361692786217, 0.013697969727218151, -0.20201808214187622]} +{"t": 14.9629, "q": [-0.15613877773284912, 0.006362610962241888, 0.018775437027215958, 0.31694599986076355, -0.15925194323062897, -0.003215128555893898, -0.10763943195343018, -0.030551783740520477, 0.04250587522983551, 0.319085031747818, -0.22599385678768158, 0.0252719447016716, 0.023221546784043312, 0.05464601516723633, 0.035431936383247375, 0.2090887725353241, 0.3564108610153198, -0.003175819758325815, 0.12929780781269073, -0.2413383275270462, -0.24446621537208557, -0.13859756290912628, -0.10175805538892746, -0.2767637073993683, 0.06690792739391327, 1.4938576221466064, -0.007322361692786217, 0.01356614287942648, -0.20198212563991547]} +{"t": 14.9796, "q": [-0.156147301197052, 0.006422265898436308, 0.018775437027215958, 0.3170567750930786, -0.1592433899641037, -0.003215130651369691, -0.10764795541763306, -0.030492128804326057, 0.042452309280633926, 0.3192214071750641, -0.2259940207004547, 0.025286264717578888, 0.0226992629468441, 0.05467626079916954, 0.03541205823421478, 0.2091846466064453, 0.35685428977012634, -0.002960103563964367, 0.13007678091526031, -0.2346271574497223, -0.24444223940372467, -0.13853764533996582, -0.09940914809703827, -0.27615249156951904, 0.06694388389587402, 1.4939534664154053, -0.007322361692786217, 0.013518205843865871, -0.2019701451063156]} +{"t": 14.9964, "q": [-0.15613025426864624, 0.00640522176399827, 0.018788829445838928, 0.3172016441822052, -0.15923918783664703, -0.0032362581696361303, -0.10764795541763306, -0.030406907200813293, 0.04250587522983551, 0.3193066120147705, -0.22599385678768158, 0.0252719447016716, 0.021788613870739937, 0.054729193449020386, 0.035377275198698044, 0.20923258364200592, 0.35724976658821106, -0.0029361352790147066, 0.1311313956975937, -0.22795194387435913, -0.2443823218345642, -0.13851366937160492, -0.09661682695150375, -0.27542147040367126, 0.06694388389587402, 1.4939175844192505, -0.007334345951676369, 0.013470268808305264, -0.20191022753715515]} diff --git a/Data/G1/think_7.jsonl b/Data/G1/think_7.jsonl new file mode 100644 index 0000000..1b31c6c --- /dev/null +++ b/Data/G1/think_7.jsonl @@ -0,0 +1,896 @@ +{"meta": {"hz": 60.0, "motors": 29}} +{"t": 0.0, "q": [-0.1586272418498993, 0.007777282502502203, 0.022484993562102318, 0.3165625035762787, -0.1594572216272354, -0.003187118098139763, -0.11301688849925995, -0.025591911748051643, 0.047956377267837524, 0.3194940984249115, -0.2251451313495636, 0.026588601991534233, 0.005263015162199736, 0.001295815804041922, 0.006243814714252949, 0.24993102252483368, 0.27742281556129456, -0.08279900997877121, 0.8260366916656494, -0.007873635739088058, 0.0005273059359751642, -0.005572664551436901, 0.25293904542922974, -0.2930862009525299, 0.07994676381349564, 0.7899522185325623, -0.004853611346334219, 0.010042781010270119, 0.0011624698527157307]} +{"t": 0.0167, "q": [-0.1578005999326706, 0.00789659097790718, 0.02252516895532608, 0.31668180227279663, -0.15936365723609924, -0.0033420471008867025, -0.11222433298826218, -0.025464080274105072, 0.04791620373725891, 0.32010769844055176, -0.22507844865322113, 0.026688195765018463, 0.005343366414308548, 0.0015365174040198326, 0.007330053020268679, 0.24923592805862427, 0.27490612864494324, -0.08329036831855774, 0.8274747729301453, -0.008317052386701107, 0.00046738478704355657, -0.005764412228018045, 0.2524716854095459, -0.29148033261299133, 0.07958724349737167, 0.7921213507652283, -0.005093295592814684, 0.010486196726560593, 0.0012223910307511687]} +{"t": 0.0335, "q": [-0.15716144442558289, 0.007743193302303553, 0.022645695134997368, 0.316843718290329, -0.1593678593635559, -0.0033209193497896194, -0.11149995028972626, -0.025557823479175568, 0.047942984849214554, 0.3204230070114136, -0.22510424256324768, 0.026717109605669975, 0.00542371766641736, 0.0015871479408815503, 0.00867912545800209, 0.2482532262802124, 0.2735878825187683, -0.08338624238967896, 0.8288530111312866, -0.00854475237429142, 0.0005392901366576552, -0.005812349263578653, 0.25181254744529724, -0.28987443447113037, 0.07949136942625046, 0.7943983674049377, -0.005177185405045748, 0.010881676338613033, 0.0012104067718610168]} +{"t": 0.0502, "q": [-0.15691429376602173, 0.007871026173233986, 0.022404640913009644, 0.3169289529323578, -0.1592777818441391, -0.003257428528741002, -0.1109289675951004, -0.025532258674502373, 0.04772871732711792, 0.3204571008682251, -0.22507013380527496, 0.026702430099248886, 0.00542371766641736, 0.0017071245238184929, 0.008928706869482994, 0.24785774946212769, 0.27101126313209534, -0.08405735343694687, 0.8297038674354553, -0.00866459496319294, 0.0005153216770850122, -0.00589623861014843, 0.2518245279788971, -0.28730982542037964, 0.07963517308235168, 0.7959922552108765, -0.00523710623383522, 0.01113334484398365, 0.0012223910307511687]} +{"t": 0.0669, "q": [-0.15618139505386353, 0.00831417553126812, 0.02204306051135063, 0.3171590566635132, -0.15928207337856293, -0.0032644756138324738, -0.10994892567396164, -0.025532258674502373, 0.04734035208821297, 0.32065311074256897, -0.22508294880390167, 0.026709718629717827, 0.005383542273193598, 0.0016385401831939816, 0.010152367874979973, 0.24743829667568207, 0.2677275836467743, -0.08456069231033325, 0.8305307626724243, -0.0087245162576437, 0.0005153216770850122, -0.00595615990459919, 0.2518245279788971, -0.2840021550655365, 0.07974303513765335, 0.7970708012580872, -0.00523710623383522, 0.01125318743288517, 0.001270327833481133]} +{"t": 0.0837, "q": [-0.15612174570560455, 0.008714715018868446, 0.02168147824704647, 0.3171590566635132, -0.15928633511066437, -0.003257435280829668, -0.109923355281353, -0.02550669200718403, 0.04689841717481613, 0.32061049342155457, -0.22508692741394043, 0.026688281446695328, 0.005450501572340727, 0.0015479055000469089, 0.010487855412065983, 0.24752219021320343, 0.2642281949520111, -0.08466855436563492, 0.8313696980476379, -0.008736500516533852, 0.0005273059359751642, -0.005944175645709038, 0.2520162761211395, -0.2801552414894104, 0.07997073233127594, 0.7979336977005005, -0.00523710623383522, 0.011337077245116234, 0.0013901700731366873]} +{"t": 0.1004, "q": [-0.15607060492038727, 0.008143732324242592, 0.021708263084292412, 0.3175084590911865, -0.15929488837718964, -0.0032574422657489777, -0.10988926887512207, -0.025557823479175568, 0.04681806638836861, 0.32055938243865967, -0.2251080423593521, 0.026681333780288696, 0.005410325713455677, 0.0015474166721105576, 0.010784938931465149, 0.2476540207862854, 0.26082468032836914, -0.0848483145236969, 0.8320168256759644, -0.008760469034314156, 0.0005392901366576552, -0.005980128422379494, 0.2522200047969818, -0.2766798138618469, 0.08022240549325943, 0.7984610199928284, -0.00523710623383522, 0.011361045762896538, 0.0014620755100622773]} +{"t": 0.1172, "q": [-0.15612174570560455, 0.008339742198586464, 0.021708263084292412, 0.31758514046669006, -0.15931200981140137, -0.0032574560027569532, -0.10988926887512207, -0.025489646941423416, 0.04684485122561455, 0.3205849528312683, -0.22512052953243256, 0.02665996551513672, 0.005410325713455677, 0.0015920412261039019, 0.01104365848004818, 0.24774989485740662, 0.2576368749141693, -0.08523181080818176, 0.8327239155769348, -0.008736500516533852, 0.0005512743373401463, -0.005992112681269646, 0.2523038983345032, -0.2739593982696533, 0.08048605918884277, 0.7988684773445129, -0.00523710623383522, 0.01143295131623745, 0.0014500912511721253]} +{"t": 0.134, "q": [-0.1561046987771988, 0.008331218734383583, 0.02168147824704647, 0.31758514046669006, -0.15930770337581635, -0.0032504089176654816, -0.10990631580352783, -0.025481125339865685, 0.046804673969745636, 0.32067015767097473, -0.22512434422969818, 0.026624206453561783, 0.005396933760493994, 0.0017195016844198108, 0.011153781786561012, 0.24784576892852783, 0.25448501110076904, -0.08541157096624374, 0.8334189653396606, -0.008736500516533852, 0.0005512743373401463, -0.005968144163489342, 0.2523758113384247, -0.27177825570106506, 0.0806059017777443, 0.799168050289154, -0.005273059010505676, 0.011444934643805027, 0.0015100124292075634]} +{"t": 0.1507, "q": [-0.15611322224140167, 0.008339742198586464, 0.021641302853822708, 0.3177470862865448, -0.15930339694023132, -0.003243352985009551, -0.10988926887512207, -0.02544703707098961, 0.046804673969745636, 0.3207639157772064, -0.2251329869031906, 0.026638612151145935, 0.00542371766641736, 0.0018395090010017157, 0.011230367235839367, 0.24784576892852783, 0.25216007232666016, -0.08551943302154541, 0.8342698812484741, -0.008760469034314156, 0.0005632585962302983, -0.005992112681269646, 0.25243571400642395, -0.2701963484287262, 0.08066581934690475, 0.7996114492416382, -0.005309011787176132, 0.011468903161585331, 0.0015100124292075634]} +{"t": 0.1676, "q": [-0.15611322224140167, 0.008356785401701927, 0.021641302853822708, 0.3178408145904541, -0.15929482877254486, -0.0032433548476547003, -0.10988926887512207, -0.025404425337910652, 0.04677789285778999, 0.32084912061691284, -0.2251329869031906, 0.026638612151145935, 0.005410325713455677, 0.001824523787945509, 0.011211210861802101, 0.24784576892852783, 0.2507699131965637, -0.08565125614404678, 0.834881067276001, -0.008772453293204308, 0.0005632585962302983, -0.00601608119904995, 0.2524476945400238, -0.2689979076385498, 0.0806538388133049, 0.8002226948738098, -0.005309011787176132, 0.011492871679365635, 0.0015339808305725455]} +{"t": 0.1843, "q": [-0.1561046987771988, 0.008348263800144196, 0.021627912297844887, 0.31796011328697205, -0.15929493308067322, -0.0032715382985770702, -0.10988926887512207, -0.025310682132840157, 0.04677789285778999, 0.3209684193134308, -0.2251329869031906, 0.026638612151145935, 0.005383542273193598, 0.0018245559185743332, 0.011192044243216515, 0.24784576892852783, 0.25011077523231506, -0.08566324412822723, 0.8353244662284851, -0.008772453293204308, 0.0005752427969127893, -0.006028065457940102, 0.25250762701034546, -0.26820695400238037, 0.0806538388133049, 0.8007259964942932, -0.005320996046066284, 0.011480887420475483, 0.0015219965716823936]} +{"t": 0.201, "q": [-0.1561046987771988, 0.008331218734383583, 0.021627912297844887, 0.3180709183216095, -0.15929493308067322, -0.0032715382985770702, -0.10988926887512207, -0.025233983993530273, 0.046791285276412964, 0.3210025131702423, -0.22511602938175201, 0.026638442650437355, 0.005450501572340727, 0.0018020070856437087, 0.011206435039639473, 0.24789370596408844, 0.2499549835920334, -0.08563927561044693, 0.8356480598449707, -0.008796420879662037, 0.0005752427969127893, -0.006040049716830254, 0.2524237334728241, -0.26778751611709595, 0.08064185082912445, 0.8009177446365356, -0.005273059010505676, 0.011516840197145939, 0.0014980281703174114]} +{"t": 0.2178, "q": [-0.1561046987771988, 0.008331218734383583, 0.021627912297844887, 0.3181561231613159, -0.15928642451763153, -0.003285627579316497, -0.10988926887512207, -0.025191372260451317, 0.046804673969745636, 0.3210877478122711, -0.22511570155620575, 0.02660980261862278, 0.005477285478264093, 0.0018245559185743332, 0.011192044243216515, 0.24789370596408844, 0.25003886222839355, -0.08555538207292557, 0.8359715938568115, -0.008796420879662037, 0.0005872270558029413, -0.006052033975720406, 0.2524237334728241, -0.267667680978775, 0.0806059017777443, 0.8010735511779785, -0.005273059010505676, 0.01152882445603609, 0.0015100124292075634]} +{"t": 0.2345, "q": [-0.15608765184879303, 0.008331218734383583, 0.021627912297844887, 0.3183010220527649, -0.159294992685318, -0.003285625483840704, -0.10988074541091919, -0.025182850658893585, 0.046791285276412964, 0.3211814761161804, -0.22512002289295197, 0.026617005467414856, 0.005396933760493994, 0.001869589788839221, 0.01120159775018692, 0.247929647564888, 0.25013473629951477, -0.0854475274682045, 0.836163341999054, -0.008796420879662037, 0.0005872270558029413, -0.006028065457940102, 0.2524237334728241, -0.2676796615123749, 0.08059391379356384, 0.8011214733123779, -0.005320996046066284, 0.011552792973816395, 0.0014740596525371075]} +{"t": 0.2512, "q": [-0.15607060492038727, 0.00831417553126812, 0.021614519879221916, 0.3183947503566742, -0.15927787125110626, -0.003285611979663372, -0.1098722293972969, -0.025182850658893585, 0.046791285276412964, 0.3212240934371948, -0.22511602938175201, 0.026638442650437355, 0.005383542273193598, 0.0019071548013016582, 0.011187197640538216, 0.24791766703128815, 0.25015872716903687, -0.08543553948402405, 0.8363670706748962, -0.00882038939744234, 0.0006111955153755844, -0.006040049716830254, 0.2524476945400238, -0.2677036225795746, 0.08055796474218369, 0.8011934161186218, -0.005332980304956436, 0.011600730009377003, 0.0014740596525371075]} +{"t": 0.268, "q": [-0.15607060492038727, 0.008322697132825851, 0.021627912297844887, 0.318479984998703, -0.15928637981414795, -0.0032715226989239454, -0.10985518246889114, -0.025199895724654198, 0.046804673969745636, 0.321283757686615, -0.2251117080450058, 0.02663123980164528, 0.005410325713455677, 0.0019296719692647457, 0.011191974394023418, 0.24791766703128815, 0.250146746635437, -0.08539959043264389, 0.8365108966827393, -0.008772453293204308, 0.0006351639167405665, -0.00601608119904995, 0.25248366594314575, -0.267667680978775, 0.08059391379356384, 0.8012293577194214, -0.005332980304956436, 0.011624698527157307, 0.0014980281703174114]} +{"t": 0.2847, "q": [-0.15607060492038727, 0.00831417553126812, 0.021641302853822708, 0.3185310959815979, -0.15927356481552124, -0.0032785648945719004, -0.10979552567005157, -0.02520841732621193, 0.046791285276412964, 0.32130080461502075, -0.22512002289295197, 0.026617005467414856, 0.005477285478264093, 0.0019146243575960398, 0.011211150325834751, 0.24791766703128815, 0.250146746635437, -0.0854475274682045, 0.8365468382835388, -0.00878443755209446, 0.0006111955153755844, -0.006004096940159798, 0.2524716854095459, -0.2675957679748535, 0.08059391379356384, 0.8012533187866211, -0.005309011787176132, 0.011612714268267155, 0.0014980281703174114]} +{"t": 0.3015, "q": [-0.15607060492038727, 0.008331218734383583, 0.021627912297844887, 0.3185651898384094, -0.15927787125110626, -0.003285611979663372, -0.10976996272802353, -0.02520841732621193, 0.046804673969745636, 0.3213263750076294, -0.22511586546897888, 0.026624122634530067, 0.00542371766641736, 0.001899607595987618, 0.011211160570383072, 0.247929647564888, 0.25013473629951477, -0.0854714959859848, 0.836594820022583, -0.008796420879662037, 0.0006351639167405665, -0.006028065457940102, 0.2524716854095459, -0.2675957679748535, 0.08058193325996399, 0.8012413382530212, -0.005285043269395828, 0.011636682786047459, 0.0015219965716823936]} +{"t": 0.3182, "q": [-0.15607912838459015, 0.008331218734383583, 0.021601127460598946, 0.3185651898384094, -0.15927362442016602, -0.003292652079835534, -0.10975291579961777, -0.02521693892776966, 0.046791285276412964, 0.32130932807922363, -0.2251117080450058, 0.02663123980164528, 0.005396933760493994, 0.0018846065504476428, 0.0112015875056386, 0.2479056864976883, 0.25015872716903687, -0.0854475274682045, 0.836678683757782, -0.00882038939744234, 0.0006231797160580754, -0.006028065457940102, 0.2524956464767456, -0.26755982637405396, 0.08058193325996399, 0.8012533187866211, -0.005332980304956436, 0.011636682786047459, 0.0015100124292075634]} +{"t": 0.3349, "q": [-0.15607912838459015, 0.008305653929710388, 0.021601127460598946, 0.3185651898384094, -0.15928642451763153, -0.003285627579316497, -0.10975291579961777, -0.025242505595088005, 0.04677789285778999, 0.3213263750076294, -0.22510738670825958, 0.026624036952853203, 0.00542371766641736, 0.001892122789286077, 0.011196790263056755, 0.247929647564888, 0.2501707077026367, -0.08541157096624374, 0.8368824124336243, -0.008796420879662037, 0.0006111955153755844, -0.006028065457940102, 0.25245967507362366, -0.2675957679748535, 0.08058193325996399, 0.8012413382530212, -0.00535694882273674, 0.011636682786047459, 0.0015100124292075634]} +{"t": 0.3518, "q": [-0.15607912838459015, 0.008305653929710388, 0.021627912297844887, 0.3185737133026123, -0.15928642451763153, -0.003285627579316497, -0.10972735285758972, -0.02526807226240635, 0.046804673969745636, 0.32130080461502075, -0.22512002289295197, 0.026617005467414856, 0.00546389352530241, 0.0018921380396932364, 0.011187207885086536, 0.2479056864976883, 0.250146746635437, -0.0854235589504242, 0.836966335773468, -0.008796420879662037, 0.0006231797160580754, -0.006052033975720406, 0.2523518204689026, -0.26758378744125366, 0.08056994527578354, 0.801265299320221, -0.005332980304956436, 0.011636682786047459, 0.0015100124292075634]} +{"t": 0.3685, "q": [-0.15607912838459015, 0.008339742198586464, 0.021627912297844887, 0.3185651898384094, -0.1592821180820465, -0.0032785716466605663, -0.10974439233541489, -0.02527659386396408, 0.046804673969745636, 0.32130932807922363, -0.22511586546897888, 0.026624122634530067, 0.005477285478264093, 0.0019146243575960398, 0.011211150325834751, 0.24778583645820618, 0.25015872716903687, -0.08541157096624374, 0.8370022773742676, -0.008796420879662037, 0.0006231797160580754, -0.006028065457940102, 0.2522919178009033, -0.2675718069076538, 0.0806059017777443, 0.801265299320221, -0.00529702752828598, 0.011636682786047459, 0.0014980281703174114]} +{"t": 0.3852, "q": [-0.15607060492038727, 0.00831417553126812, 0.021627912297844887, 0.3185651898384094, -0.1592821180820465, -0.0032785716466605663, -0.109735868871212, -0.02528511732816696, 0.04677789285778999, 0.32129228115081787, -0.2251117080450058, 0.02663123980164528, 0.005490677431225777, 0.0019146710401400924, 0.011182401329278946, 0.2476540207862854, 0.250146746635437, -0.0854235589504242, 0.8370142579078674, -0.008772453293204308, 0.0006351639167405665, -0.006028065457940102, 0.2522679269313812, -0.26755982637405396, 0.0806059017777443, 0.801265299320221, -0.00535694882273674, 0.01164866704493761, 0.0014860439114272594]} +{"t": 0.4021, "q": [-0.1560961753129959, 0.008305653929710388, 0.021627912297844887, 0.3185651898384094, -0.15927352011203766, -0.003264477476477623, -0.10972735285758972, -0.02528511732816696, 0.046804673969745636, 0.32129228115081787, -0.22511602938175201, 0.026638442650437355, 0.005410325713455677, 0.001892122789286077, 0.011196790263056755, 0.24766600131988525, 0.25013473629951477, -0.0854714959859848, 0.8370741605758667, -0.008796420879662037, 0.0006231797160580754, -0.006028065457940102, 0.2522679269313812, -0.26753583550453186, 0.08058193325996399, 0.801265299320221, -0.005332980304956436, 0.01164866704493761, 0.0014860439114272594]} +{"t": 0.4188, "q": [-0.15604503452777863, 0.00831417553126812, 0.021627912297844887, 0.31854814291000366, -0.159294992685318, -0.003285625483840704, -0.10974439233541489, -0.025302160531282425, 0.04677789285778999, 0.32125818729400635, -0.2251117080450058, 0.02663123980164528, 0.00546389352530241, 0.0018770903116092086, 0.011206383816897869, 0.24768996238708496, 0.250146746635437, -0.0854475274682045, 0.8370861411094666, -0.008772453293204308, 0.0006111955153755844, -0.00606401776894927, 0.25227993726730347, -0.26753583550453186, 0.08055796474218369, 0.801265299320221, -0.005332980304956436, 0.011660651303827763, 0.0014980281703174114]} +{"t": 0.4356, "q": [-0.15607912838459015, 0.008288608863949776, 0.021627912297844887, 0.3185310959815979, -0.1592821180820465, -0.0032785716466605663, -0.10972735285758972, -0.02527659386396408, 0.046804673969745636, 0.3212240934371948, -0.22512434422969818, 0.026624206453561783, 0.005450501572340727, 0.0018770114984363317, 0.01125430129468441, 0.24771393835544586, 0.250146746635437, -0.0854714959859848, 0.837134063243866, -0.008796420879662037, 0.0006111955153755844, -0.00601608119904995, 0.2523038983345032, -0.267523854970932, 0.08055796474218369, 0.8012772798538208, -0.00535694882273674, 0.011672635562717915, 0.0014980281703174114]} +{"t": 0.4525, "q": [-0.1560535579919815, 0.008297130465507507, 0.021627912297844887, 0.31850555539131165, -0.1592821180820465, -0.0032785716466605663, -0.10972735285758972, -0.02528511732816696, 0.04677789285778999, 0.3211899995803833, -0.22511586546897888, 0.026624122634530067, 0.005490677431225777, 0.0019145139958709478, 0.011278234422206879, 0.24776187539100647, 0.250146746635437, -0.08548347651958466, 0.8371820449829102, -0.008796420879662037, 0.0006351639167405665, -0.00601608119904995, 0.2523518204689026, -0.267523854970932, 0.08059391379356384, 0.801265299320221, -0.005332980304956436, 0.011696604080498219, 0.0014860439114272594]} +{"t": 0.4692, "q": [-0.15607060492038727, 0.008305653929710388, 0.021627912297844887, 0.31851404905319214, -0.15927362442016602, -0.003292652079835534, -0.10972735285758972, -0.025293638929724693, 0.046791285276412964, 0.32120704650878906, -0.22511586546897888, 0.026624122634530067, 0.005410325713455677, 0.0019744858145713806, 0.01133569423109293, 0.24777385592460632, 0.25015872716903687, -0.08548347651958466, 0.8372060060501099, -0.008796420879662037, 0.0006111955153755844, -0.006028065457940102, 0.2523758113384247, -0.26753583550453186, 0.08059391379356384, 0.8012533187866211, -0.005392901133745909, 0.011672635562717915, 0.0014860439114272594]} +{"t": 0.4859, "q": [-0.15607060492038727, 0.00831417553126812, 0.021614519879221916, 0.3184714615345001, -0.15927787125110626, -0.003285611979663372, -0.10972735285758972, -0.02527659386396408, 0.04677789285778999, 0.32117295265197754, -0.22511602938175201, 0.026638442650437355, 0.00542371766641736, 0.001974469982087612, 0.011345277540385723, 0.24779783189296722, 0.2501707077026367, -0.08545950800180435, 0.8372299671173096, -0.008796420879662037, 0.0006231797160580754, -0.006028065457940102, 0.25233983993530273, -0.267523854970932, 0.08058193325996399, 0.8012772798538208, -0.005380917340517044, 0.011684619821608067, 0.0015100124292075634]} +{"t": 0.5027, "q": [-0.1560620814561844, 0.00831417553126812, 0.021627912297844887, 0.31846293807029724, -0.15928642451763153, -0.003285627579316497, -0.10974439233541489, -0.02526807226240635, 0.04677789285778999, 0.32117295265197754, -0.2251286655664444, 0.02663140930235386, 0.005410325713455677, 0.001981923123821616, 0.011378813534975052, 0.24777385592460632, 0.250146746635437, -0.0854235589504242, 0.8372179865837097, -0.00878443755209446, 0.0006111955153755844, -0.006040049716830254, 0.2523278594017029, -0.2675478160381317, 0.08058193325996399, 0.8012772798538208, -0.00535694882273674, 0.011684619821608067, 0.0014980281703174114]} +{"t": 0.5194, "q": [-0.15607060492038727, 0.008305653929710388, 0.021601127460598946, 0.31845441460609436, -0.15928642451763153, -0.003285627579316497, -0.10974439233541489, -0.025259550660848618, 0.04677789285778999, 0.32117295265197754, -0.22512434422969818, 0.026624206453561783, 0.005410325713455677, 0.001974406884983182, 0.011383610777556896, 0.24774989485740662, 0.250146746635437, -0.08545950800180435, 0.8372419476509094, -0.008796420879662037, 0.0006351639167405665, -0.006040049716830254, 0.2522679269313812, -0.267523854970932, 0.08059391379356384, 0.8012892603874207, -0.005344964563846588, 0.011684619821608067, 0.0015219965716823936]} +{"t": 0.5363, "q": [-0.1560620814561844, 0.008297130465507507, 0.021587735041975975, 0.31845441460609436, -0.15929068624973297, -0.003278578631579876, -0.109735868871212, -0.025259550660848618, 0.04677789285778999, 0.3211559057235718, -0.22512434422969818, 0.026624206453561783, 0.005410325713455677, 0.001974406884983182, 0.011383610777556896, 0.24771393835544586, 0.25013473629951477, -0.08545950800180435, 0.8372419476509094, -0.008796420879662037, 0.0005872270558029413, -0.006028065457940102, 0.2522679269313812, -0.267523854970932, 0.08058193325996399, 0.8012772798538208, -0.005392901133745909, 0.011672635562717915, 0.0015100124292075634]} +{"t": 0.5531, "q": [-0.1560535579919815, 0.008288608863949776, 0.021627912297844887, 0.31845441460609436, -0.1592821180820465, -0.0032785716466605663, -0.10974439233541489, -0.025251027196645737, 0.04676450043916702, 0.3211814761161804, -0.2251286655664444, 0.02663140930235386, 0.005437109619379044, 0.001966906478628516, 0.011378823779523373, 0.24771393835544586, 0.25013473629951477, -0.08545950800180435, 0.8372419476509094, -0.008796420879662037, 0.0006231797160580754, -0.006028065457940102, 0.25227993726730347, -0.26753583550453186, 0.08056994527578354, 0.8012772798538208, -0.005332980304956436, 0.011684619821608067, 0.0014980281703174114]} +{"t": 0.5698, "q": [-0.15607060492038727, 0.008288608863949776, 0.021587735041975975, 0.31846293807029724, -0.15928642451763153, -0.003285627579316497, -0.10974439233541489, -0.025251027196645737, 0.046791285276412964, 0.32116442918777466, -0.2251245081424713, 0.02663852646946907, 0.00542371766641736, 0.001974406884983182, 0.011383610777556896, 0.24771393835544586, 0.250146746635437, -0.0854235589504242, 0.8372419476509094, -0.008796420879662037, 0.0006351639167405665, -0.006028065457940102, 0.2522919178009033, -0.26753583550453186, 0.08058193325996399, 0.8012892603874207, -0.005344964563846588, 0.011660651303827763, 0.0014860439114272594]} +{"t": 0.5867, "q": [-0.1560620814561844, 0.008305653929710388, 0.021601127460598946, 0.31845441460609436, -0.15928642451763153, -0.003285627579316497, -0.10972735285758972, -0.025242505595088005, 0.04676450043916702, 0.3211559057235718, -0.2251286655664444, 0.02663140930235386, 0.00546389352530241, 0.0019743754528462887, 0.011402777396142483, 0.24772591888904572, 0.2501707077026367, -0.0854235589504242, 0.8372659087181091, -0.008760469034314156, 0.0006231797160580754, -0.006052033975720406, 0.25227993726730347, -0.267523854970932, 0.08056994527578354, 0.8012772798538208, -0.00535694882273674, 0.011684619821608067, 0.0014980281703174114]} +{"t": 0.6036, "q": [-0.1560535579919815, 0.008322697132825851, 0.021601127460598946, 0.31846293807029724, -0.159294992685318, -0.003285625483840704, -0.10971882939338684, -0.025242505595088005, 0.04675110802054405, 0.3211474120616913, -0.22512434422969818, 0.026624206453561783, 0.005477285478264093, 0.0019818758592009544, 0.011407564394176006, 0.24773789942264557, 0.2501707077026367, -0.0854235589504242, 0.8372659087181091, -0.008796420879662037, 0.0006231797160580754, -0.006052033975720406, 0.2522919178009033, -0.267523854970932, 0.08056994527578354, 0.8012772798538208, -0.00535694882273674, 0.011696604080498219, 0.0014980281703174114]} +{"t": 0.6204, "q": [-0.15607060492038727, 0.00831417553126812, 0.021601127460598946, 0.31846293807029724, -0.15928642451763153, -0.003285627579316497, -0.10972735285758972, -0.025251027196645737, 0.046804673969745636, 0.3211985230445862, -0.22512850165367126, 0.02661708928644657, 0.005437109619379044, 0.001981891691684723, 0.011397981084883213, 0.24774989485740662, 0.25015872716903687, -0.0854235589504242, 0.8372898697853088, -0.00878443755209446, 0.0006231797160580754, -0.006052033975720406, 0.25227993726730347, -0.267523854970932, 0.08058193325996399, 0.8013012409210205, -0.005332980304956436, 0.011696604080498219, 0.0015339808305725455]} +{"t": 0.6372, "q": [-0.15607060492038727, 0.008322697132825851, 0.021601127460598946, 0.3184714615345001, -0.15929073095321655, -0.0032926746644079685, -0.109735868871212, -0.025251027196645737, 0.046791285276412964, 0.3211814761161804, -0.22512434422969818, 0.026624206453561783, 0.00546389352530241, 0.0019743754528462887, 0.011402777396142483, 0.24779783189296722, 0.2501707077026367, -0.0854714959859848, 0.8373138308525085, -0.008796420879662037, 0.0006231797160580754, -0.006040049716830254, 0.25227993726730347, -0.26753583550453186, 0.08059391379356384, 0.8012892603874207, -0.005332980304956436, 0.011684619821608067, 0.0015100124292075634]} +{"t": 0.654, "q": [-0.15607060492038727, 0.008305653929710388, 0.021614519879221916, 0.3184885084629059, -0.159294992685318, -0.003285625483840704, -0.10972735285758972, -0.025251027196645737, 0.04677789285778999, 0.3211899995803833, -0.22512434422969818, 0.026624206453561783, 0.00542371766641736, 0.0019668592140078545, 0.011407573707401752, 0.24776187539100647, 0.25015872716903687, -0.0854475274682045, 0.8373138308525085, -0.008736500516533852, 0.0006351639167405665, -0.006028065457940102, 0.25227993726730347, -0.267523854970932, 0.08058193325996399, 0.8013132214546204, -0.005344964563846588, 0.01170858833938837, 0.0014740596525371075]} +{"t": 0.6707, "q": [-0.15607912838459015, 0.008339742198586464, 0.021601127460598946, 0.3184714615345001, -0.1592821180820465, -0.0032785716466605663, -0.10970178246498108, -0.025251027196645737, 0.046804673969745636, 0.32121556997299194, -0.2251201868057251, 0.026631325483322144, 0.00542371766641736, 0.0019668906461447477, 0.011388407088816166, 0.24776187539100647, 0.2501826882362366, -0.0854475274682045, 0.8373377919197083, -0.00878443755209446, 0.0006231797160580754, -0.006028065457940102, 0.2523038983345032, -0.26753583550453186, 0.08055796474218369, 0.8012772798538208, -0.005380917340517044, 0.011696604080498219, 0.0014860439114272594]} +{"t": 0.6875, "q": [-0.15607060492038727, 0.008322697132825851, 0.021601127460598946, 0.3184885084629059, -0.15929923951625824, -0.003278585383668542, -0.10972735285758972, -0.025259550660848618, 0.04677789285778999, 0.32121556997299194, -0.22512002289295197, 0.026617005467414856, 0.005450501572340727, 0.0019668906461447477, 0.011388407088816166, 0.24774989485740662, 0.25015872716903687, -0.0854235589504242, 0.8373377919197083, -0.008772453293204308, 0.0006231797160580754, -0.006040049716830254, 0.2523518204689026, -0.26753583550453186, 0.08055796474218369, 0.8013132214546204, -0.005368933081626892, 0.011720572598278522, 0.0014980281703174114]} +{"t": 0.7044, "q": [-0.15604503452777863, 0.008331218734383583, 0.021627912297844887, 0.31851404905319214, -0.15928642451763153, -0.003285627579316497, -0.10971030592918396, -0.025259550660848618, 0.046804673969745636, 0.3212240934371948, -0.22512002289295197, 0.026617005467414856, 0.00546389352530241, 0.0019668906461447477, 0.011388407088816166, 0.24773789942264557, 0.2501707077026367, -0.0854235589504242, 0.8373377919197083, -0.008772453293204308, 0.0006111955153755844, -0.006040049716830254, 0.25233983993530273, -0.26751187443733215, 0.08058193325996399, 0.8012772798538208, -0.005332980304956436, 0.01170858833938837, 0.0014860439114272594]} +{"t": 0.7211, "q": [-0.15602800250053406, 0.008322697132825851, 0.021627912297844887, 0.31851404905319214, -0.15928642451763153, -0.003285627579316497, -0.10971030592918396, -0.025251027196645737, 0.04677789285778999, 0.3212411403656006, -0.22512002289295197, 0.026617005467414856, 0.005450501572340727, 0.0019443734781816602, 0.011383630335330963, 0.24774989485740662, 0.25015872716903687, -0.0854235589504242, 0.8373497724533081, -0.008772453293204308, 0.0006351639167405665, -0.006052033975720406, 0.2523758113384247, -0.267523854970932, 0.08058193325996399, 0.8013132214546204, -0.005344964563846588, 0.01170858833938837, 0.0015100124292075634]} +{"t": 0.7378, "q": [-0.15602800250053406, 0.008331218734383583, 0.021601127460598946, 0.318522572517395, -0.15928642451763153, -0.003285627579316497, -0.10971030592918396, -0.025251027196645737, 0.04677789285778999, 0.3212326169013977, -0.22511570155620575, 0.02660980261862278, 0.00542371766641736, 0.0019518581684678793, 0.01139800064265728, 0.24778583645820618, 0.25015872716903687, -0.08543553948402405, 0.8373737931251526, -0.008772453293204308, 0.0006351639167405665, -0.006040049716830254, 0.2523278594017029, -0.267523854970932, 0.08058193325996399, 0.8013012409210205, -0.005332980304956436, 0.01170858833938837, 0.0014860439114272594]} +{"t": 0.7546, "q": [-0.15601947903633118, 0.008322697132825851, 0.021627912297844887, 0.31851404905319214, -0.15928642451763153, -0.003285627579316497, -0.10971030592918396, -0.025259550660848618, 0.04677789285778999, 0.3212411403656006, -0.22512434422969818, 0.026624206453561783, 0.00542371766641736, 0.0019593744073063135, 0.01139320433139801, 0.24777385592460632, 0.250146746635437, -0.0854714959859848, 0.8373737931251526, -0.00878443755209446, 0.0006231797160580754, -0.006028065457940102, 0.2523278594017029, -0.26751187443733215, 0.08058193325996399, 0.8013252019882202, -0.00535694882273674, 0.011756525374948978, 0.0014740596525371075]} +{"t": 0.7713, "q": [-0.15604503452777863, 0.008305653929710388, 0.021614519879221916, 0.318522572517395, -0.15927782654762268, -0.0032715245615690947, -0.10970178246498108, -0.025251027196645737, 0.04677789285778999, 0.32124966382980347, -0.22511586546897888, 0.026624122634530067, 0.005410325713455677, 0.001974406884983182, 0.011383610777556896, 0.24777385592460632, 0.250146746635437, -0.0854475274682045, 0.8373737931251526, -0.008796420879662037, 0.0006351639167405665, -0.006040049716830254, 0.2523278594017029, -0.267523854970932, 0.08058193325996399, 0.8013252019882202, -0.005344964563846588, 0.011732556857168674, 0.0014860439114272594]} +{"t": 0.7881, "q": [-0.15601947903633118, 0.008305653929710388, 0.021587735041975975, 0.318522572517395, -0.15927362442016602, -0.003292652079835534, -0.10971030592918396, -0.025259550660848618, 0.04675110802054405, 0.3212411403656006, -0.22512002289295197, 0.026617005467414856, 0.00542371766641736, 0.0019518897170200944, 0.011378834024071693, 0.24774989485740662, 0.250146746635437, -0.0854714959859848, 0.8373857736587524, -0.008772453293204308, 0.0006231797160580754, -0.00601608119904995, 0.2523518204689026, -0.26753583550453186, 0.08056994527578354, 0.8013252019882202, -0.005368933081626892, 0.011720572598278522, 0.0014740596525371075]} +{"t": 0.8048, "q": [-0.15602800250053406, 0.008305653929710388, 0.021614519879221916, 0.318522572517395, -0.1592821180820465, -0.0032785716466605663, -0.10971030592918396, -0.025259550660848618, 0.04675110802054405, 0.32124966382980347, -0.22511570155620575, 0.02660980261862278, 0.005490677431225777, 0.0019518897170200944, 0.011378834024071693, 0.24773789942264557, 0.25015872716903687, -0.0854714959859848, 0.8373857736587524, -0.00878443755209446, 0.0006351639167405665, -0.006028065457940102, 0.2523518204689026, -0.2675478160381317, 0.08056994527578354, 0.8013731837272644, -0.005344964563846588, 0.011720572598278522, 0.0014980281703174114]} +{"t": 0.8215, "q": [-0.15601947903633118, 0.008331218734383583, 0.021601127460598946, 0.3185310959815979, -0.15929503738880157, -0.00329972174949944, -0.109735868871212, -0.025251027196645737, 0.04673771560192108, 0.3212326169013977, -0.22512002289295197, 0.026617005467414856, 0.00542371766641736, 0.001974406884983182, 0.011383610777556896, 0.24778583645820618, 0.25015872716903687, -0.08545950800180435, 0.8373857736587524, -0.008772453293204308, 0.0006351639167405665, -0.006040049716830254, 0.2523278594017029, -0.26753583550453186, 0.08059391379356384, 0.8013731837272644, -0.005332980304956436, 0.011720572598278522, 0.0014860439114272594]} +{"t": 0.8385, "q": [-0.15600243210792542, 0.008331218734383583, 0.021627912297844887, 0.31851404905319214, -0.15927793085575104, -0.0032997080124914646, -0.10971030592918396, -0.025259550660848618, 0.04677789285778999, 0.32124966382980347, -0.22512850165367126, 0.02661708928644657, 0.005437109619379044, 0.0019593744073063135, 0.01139320433139801, 0.24774989485740662, 0.25015872716903687, -0.0854235589504242, 0.8373857736587524, -0.008772453293204308, 0.0006351639167405665, -0.006028065457940102, 0.2523278594017029, -0.267523854970932, 0.08058193325996399, 0.8013731837272644, -0.005344964563846588, 0.011720572598278522, 0.0014860439114272594]} +{"t": 0.8553, "q": [-0.15601947903633118, 0.008331218734383583, 0.021601127460598946, 0.31851404905319214, -0.15929073095321655, -0.0032926746644079685, -0.10971030592918396, -0.025259550660848618, 0.04673771560192108, 0.3212326169013977, -0.22512434422969818, 0.026624206453561783, 0.005396933760493994, 0.0019518266199156642, 0.011417167261242867, 0.24774989485740662, 0.25015872716903687, -0.0854475274682045, 0.8374097347259521, -0.008772453293204308, 0.0006351639167405665, -0.006028065457940102, 0.25227993726730347, -0.26751187443733215, 0.08059391379356384, 0.8013851642608643, -0.005368933081626892, 0.011720572598278522, 0.0015339808305725455]} +{"t": 0.872, "q": [-0.15601947903633118, 0.00831417553126812, 0.021614519879221916, 0.31851404905319214, -0.15927362442016602, -0.003292652079835534, -0.10970178246498108, -0.025259550660848618, 0.04676450043916702, 0.3212240934371948, -0.22511570155620575, 0.02660980261862278, 0.00542371766641736, 0.001959358574822545, 0.011402787640690804, 0.24772591888904572, 0.250146746635437, -0.08545950800180435, 0.8374336957931519, -0.008772453293204308, 0.0006351639167405665, -0.00601608119904995, 0.2522919178009033, -0.267523854970932, 0.08055796474218369, 0.8013851642608643, -0.005332980304956436, 0.011732556857168674, 0.0015219965716823936]} +{"t": 0.8887, "q": [-0.15603651106357574, 0.00831417553126812, 0.021601127460598946, 0.31850555539131165, -0.1592864841222763, -0.0032997147645801306, -0.10971030592918396, -0.025251027196645737, 0.04677789285778999, 0.3212326169013977, -0.22512002289295197, 0.026617005467414856, 0.00542371766641736, 0.0019668592140078545, 0.011407573707401752, 0.24774989485740662, 0.250146746635437, -0.0854235589504242, 0.8374336957931519, -0.00878443755209446, 0.0006231797160580754, -0.00601608119904995, 0.2523038983345032, -0.267523854970932, 0.08058193325996399, 0.8013851642608643, -0.00535694882273674, 0.011720572598278522, 0.0014860439114272594]} +{"t": 0.9057, "q": [-0.15601947903633118, 0.008297130465507507, 0.021587735041975975, 0.318522572517395, -0.15928642451763153, -0.003285627579316497, -0.10971030592918396, -0.025259550660848618, 0.04675110802054405, 0.3212326169013977, -0.22511570155620575, 0.02660980261862278, 0.005410325713455677, 0.0019518581684678793, 0.01139800064265728, 0.24774989485740662, 0.25015872716903687, -0.08541157096624374, 0.8374456763267517, -0.00878443755209446, 0.0006351639167405665, -0.006028065457940102, 0.2523038983345032, -0.26751187443733215, 0.08056994527578354, 0.8013731837272644, -0.005392901133745909, 0.011720572598278522, 0.0014980281703174114]} +{"t": 0.9224, "q": [-0.15601947903633118, 0.008305653929710388, 0.021587735041975975, 0.318522572517395, -0.1592821180820465, -0.0032785716466605663, -0.10971030592918396, -0.025259550660848618, 0.04677789285778999, 0.3212240934371948, -0.22512434422969818, 0.026624206453561783, 0.005477285478264093, 0.0019443734781816602, 0.011383630335330963, 0.24773789942264557, 0.2501707077026367, -0.0854235589504242, 0.8374576568603516, -0.008760469034314156, 0.0006231797160580754, -0.00601608119904995, 0.25227993726730347, -0.267523854970932, 0.08059391379356384, 0.8013731837272644, -0.00535694882273674, 0.011732556857168674, 0.0014740596525371075]} +{"t": 0.9391, "q": [-0.1560109555721283, 0.00831417553126812, 0.021627912297844887, 0.31851404905319214, -0.15928642451763153, -0.003285627579316497, -0.10971030592918396, -0.025259550660848618, 0.04675110802054405, 0.3212326169013977, -0.22511570155620575, 0.02660980261862278, 0.005477285478264093, 0.0019593271426856518, 0.01142195425927639, 0.24774989485740662, 0.25015872716903687, -0.08543553948402405, 0.8374576568603516, -0.00878443755209446, 0.0006231797160580754, -0.006040049716830254, 0.25227993726730347, -0.267523854970932, 0.08058193325996399, 0.8013851642608643, -0.005392901133745909, 0.011744541116058826, 0.0014980281703174114]} +{"t": 0.956, "q": [-0.1560109555721283, 0.008305653929710388, 0.021627912297844887, 0.31850555539131165, -0.1592821180820465, -0.0032785716466605663, -0.10971030592918396, -0.025242505595088005, 0.04675110802054405, 0.3212240934371948, -0.22511586546897888, 0.026624122634530067, 0.005437109619379044, 0.0019593429751694202, 0.011412370949983597, 0.24774989485740662, 0.25015872716903687, -0.08543553948402405, 0.8374576568603516, -0.008772453293204308, 0.0006471481756307185, -0.006028065457940102, 0.252315878868103, -0.267523854970932, 0.08056994527578354, 0.8013971447944641, -0.005392901133745909, 0.011744541116058826, 0.0014860439114272594]} +{"t": 0.9727, "q": [-0.15599390864372253, 0.00831417553126812, 0.021601127460598946, 0.318522572517395, -0.15927362442016602, -0.003292652079835534, -0.10971030592918396, -0.025259550660848618, 0.04677789285778999, 0.3212240934371948, -0.22511570155620575, 0.02660980261862278, 0.00542371766641736, 0.0019893920980393887, 0.011402767151594162, 0.24776187539100647, 0.25015872716903687, -0.08545950800180435, 0.8374576568603516, -0.008760469034314156, 0.0006231797160580754, -0.006040049716830254, 0.2523038983345032, -0.26753583550453186, 0.08055796474218369, 0.8013731837272644, -0.005404885392636061, 0.011756525374948978, 0.0015219965716823936]} +{"t": 0.9895, "q": [-0.1560109555721283, 0.008305653929710388, 0.021627912297844887, 0.318522572517395, -0.15928223729133606, -0.0033067550975829363, -0.10971030592918396, -0.025259550660848618, 0.04675110802054405, 0.3212240934371948, -0.2251201868057251, 0.026631325483322144, 0.005437109619379044, 0.0019443734781816602, 0.011383630335330963, 0.24773789942264557, 0.25015872716903687, -0.0854235589504242, 0.8374696373939514, -0.008772453293204308, 0.0006231797160580754, -0.006028065457940102, 0.2522919178009033, -0.267523854970932, 0.08058193325996399, 0.8013971447944641, -0.005344964563846588, 0.011744541116058826, 0.0014980281703174114]} +{"t": 1.0062, "q": [-0.15601947903633118, 0.008305653929710388, 0.021587735041975975, 0.31851404905319214, -0.15927362442016602, -0.003292652079835534, -0.10971030592918396, -0.025259550660848618, 0.04677789285778999, 0.32124966382980347, -0.22512434422969818, 0.026624206453561783, 0.005450501572340727, 0.0019443734781816602, 0.011383630335330963, 0.24776187539100647, 0.2501707077026367, -0.08543553948402405, 0.8374696373939514, -0.008760469034314156, 0.0006231797160580754, -0.006028065457940102, 0.25227993726730347, -0.26751187443733215, 0.08058193325996399, 0.801409125328064, -0.00535694882273674, 0.011780492961406708, 0.0014860439114272594]} +{"t": 1.023, "q": [-0.1560109555721283, 0.008305653929710388, 0.021587735041975975, 0.31851404905319214, -0.15927362442016602, -0.003292652079835534, -0.10971030592918396, -0.025251027196645737, 0.04677789285778999, 0.3212326169013977, -0.22511570155620575, 0.02660980261862278, 0.005410325713455677, 0.0019518581684678793, 0.01139800064265728, 0.24777385592460632, 0.2501707077026367, -0.0854235589504242, 0.8374576568603516, -0.008796420879662037, 0.0006231797160580754, -0.006028065457940102, 0.25227993726730347, -0.26751187443733215, 0.08058193325996399, 0.801409125328064, -0.005332980304956436, 0.011744541116058826, 0.0014980281703174114]} +{"t": 1.0398, "q": [-0.15601947903633118, 0.008331218734383583, 0.021587735041975975, 0.31851404905319214, -0.15928217768669128, -0.003292667679488659, -0.10971030592918396, -0.025259550660848618, 0.04676450043916702, 0.3212326169013977, -0.22511570155620575, 0.02660980261862278, 0.005396933760493994, 0.0019593744073063135, 0.01139320433139801, 0.24778583645820618, 0.2501707077026367, -0.08541157096624374, 0.8374576568603516, -0.008772453293204308, 0.0006231797160580754, -0.006028065457940102, 0.2522919178009033, -0.26751187443733215, 0.08058193325996399, 0.8014211058616638, -0.005344964563846588, 0.01176850963383913, 0.0015100124292075634]} +{"t": 1.0566, "q": [-0.15601947903633118, 0.008322697132825851, 0.021587735041975975, 0.318522572517395, -0.15929073095321655, -0.0032926746644079685, -0.10971030592918396, -0.025259550660848618, 0.04676450043916702, 0.3212411403656006, -0.22512434422969818, 0.026624206453561783, 0.005450501572340727, 0.0019518581684678793, 0.01139800064265728, 0.24776187539100647, 0.25015872716903687, -0.08543553948402405, 0.8374576568603516, -0.008772453293204308, 0.0006351639167405665, -0.006052033975720406, 0.2523278594017029, -0.26751187443733215, 0.08058193325996399, 0.8014330863952637, -0.00535694882273674, 0.011756525374948978, 0.0015100124292075634]} +{"t": 1.0733, "q": [-0.15601947903633118, 0.008305653929710388, 0.021601127460598946, 0.31851404905319214, -0.1592821180820465, -0.0032785716466605663, -0.10970178246498108, -0.025259550660848618, 0.04677789285778999, 0.3212411403656006, -0.22512002289295197, 0.026617005467414856, 0.005410325713455677, 0.0019743754528462887, 0.011402777396142483, 0.24774989485740662, 0.25015872716903687, -0.0854235589504242, 0.8374576568603516, -0.008760469034314156, 0.0006231797160580754, -0.006040049716830254, 0.2523278594017029, -0.26751187443733215, 0.08056994527578354, 0.8014211058616638, -0.005368933081626892, 0.011780492961406708, 0.0015100124292075634]} +{"t": 1.0902, "q": [-0.1560109555721283, 0.008322697132825851, 0.021574344485998154, 0.3185310959815979, -0.15928217768669128, -0.003292667679488659, -0.10966769605875015, -0.025251027196645737, 0.04676450043916702, 0.32126671075820923, -0.22511586546897888, 0.026624122634530067, 0.005410325713455677, 0.0019743596203625202, 0.011412360705435276, 0.24776187539100647, 0.2501707077026367, -0.08543553948402405, 0.8374696373939514, -0.008796420879662037, 0.0006351639167405665, -0.006052033975720406, 0.2523758113384247, -0.26751187443733215, 0.08058193325996399, 0.8014450669288635, -0.00535694882273674, 0.011780492961406708, 0.0014980281703174114]} +{"t": 1.1069, "q": [-0.15600243210792542, 0.00831417553126812, 0.021601127460598946, 0.3185310959815979, -0.15928642451763153, -0.003285627579316497, -0.10965064913034439, -0.025259550660848618, 0.04673771560192108, 0.3212752342224121, -0.22512002289295197, 0.026617005467414856, 0.005410325713455677, 0.0019368571229279041, 0.011388427577912807, 0.24776187539100647, 0.2501826882362366, -0.08543553948402405, 0.8374816179275513, -0.008796420879662037, 0.0006351639167405665, -0.006040049716830254, 0.2523518204689026, -0.2674998939037323, 0.08056994527578354, 0.8014211058616638, -0.00535694882273674, 0.01176850963383913, 0.0015100124292075634]} +{"t": 1.1236, "q": [-0.1560109555721283, 0.008331218734383583, 0.021587735041975975, 0.31850555539131165, -0.15928642451763153, -0.003285627579316497, -0.10963360965251923, -0.025251027196645737, 0.04672432318329811, 0.32125818729400635, -0.22512002289295197, 0.026617005467414856, 0.005450501572340727, 0.0019593744073063135, 0.01139320433139801, 0.24776187539100647, 0.25015872716903687, -0.08541157096624374, 0.8374576568603516, -0.008796420879662037, 0.0006351639167405665, -0.006040049716830254, 0.2523758113384247, -0.2674998939037323, 0.08058193325996399, 0.8014330863952637, -0.00535694882273674, 0.011780492961406708, 0.0015219965716823936]} +{"t": 1.1404, "q": [-0.1560109555721283, 0.008331218734383583, 0.021560952067375183, 0.31850555539131165, -0.15927793085575104, -0.0032997080124914646, -0.10961656272411346, -0.025251027196645737, 0.04673771560192108, 0.3212752342224121, -0.22511586546897888, 0.026624122634530067, 0.005437109619379044, 0.0019593744073063135, 0.01139320433139801, 0.24776187539100647, 0.2501707077026367, -0.0854235589504242, 0.8374576568603516, -0.008796420879662037, 0.0006231797160580754, -0.00606401776894927, 0.2523278594017029, -0.26748791337013245, 0.08058193325996399, 0.8014330863952637, -0.005392901133745909, 0.01176850963383913, 0.0014980281703174114]} +{"t": 1.1571, "q": [-0.15600243210792542, 0.008356785401701927, 0.021547559648752213, 0.31850555539131165, -0.15929073095321655, -0.0032926746644079685, -0.10961656272411346, -0.025259550660848618, 0.04671093076467514, 0.32129228115081787, -0.22511570155620575, 0.02660980261862278, 0.00546389352530241, 0.0019668592140078545, 0.011407573707401752, 0.24773789942264557, 0.25015872716903687, -0.08543553948402405, 0.8374696373939514, -0.008772453293204308, 0.0006231797160580754, -0.006040049716830254, 0.2523278594017029, -0.2674998939037323, 0.08056994527578354, 0.8014450669288635, -0.00535694882273674, 0.011780492961406708, 0.0014740596525371075]} +{"t": 1.1739, "q": [-0.15600243210792542, 0.008348263800144196, 0.021547559648752213, 0.31851404905319214, -0.1592821180820465, -0.0032785716466605663, -0.10959099978208542, -0.025251027196645737, 0.04669753834605217, 0.32129228115081787, -0.22511154413223267, 0.02661691978573799, 0.00542371766641736, 0.0019518581684678793, 0.01139800064265728, 0.24772591888904572, 0.25015872716903687, -0.08541157096624374, 0.8374576568603516, -0.008796420879662037, 0.0006351639167405665, -0.006052033975720406, 0.25236380100250244, -0.2674998939037323, 0.08059391379356384, 0.8014211058616638, -0.005392901133745909, 0.011780492961406708, 0.0015459650894626975]} +{"t": 1.1906, "q": [-0.155959814786911, 0.00837383046746254, 0.02150738425552845, 0.318522572517395, -0.1592821180820465, -0.0032785716466605663, -0.1095995157957077, -0.025259550660848618, 0.04671093076467514, 0.32126671075820923, -0.22512002289295197, 0.026617005467414856, 0.005450501572340727, 0.0019518581684678793, 0.01139800064265728, 0.24772591888904572, 0.250146746635437, -0.08543553948402405, 0.8374696373939514, -0.008772453293204308, 0.0006471481756307185, -0.006052033975720406, 0.25227993726730347, -0.26751187443733215, 0.08058193325996399, 0.8014450669288635, -0.005380917340517044, 0.011780492961406708, 0.0015100124292075634]} +{"t": 1.2073, "q": [-0.15595129132270813, 0.008305653929710388, 0.021560952067375183, 0.31851404905319214, -0.15928217768669128, -0.003292667679488659, -0.1095995157957077, -0.025251027196645737, 0.04669753834605217, 0.32124966382980347, -0.2251117080450058, 0.02663123980164528, 0.005450501572340727, 0.0019668592140078545, 0.011407573707401752, 0.24774989485740662, 0.2501707077026367, -0.08543553948402405, 0.8374696373939514, -0.008796420879662037, 0.0006351639167405665, -0.006052033975720406, 0.25227993726730347, -0.267523854970932, 0.08058193325996399, 0.8014330863952637, -0.00535694882273674, 0.01176850963383913, 0.0015100124292075634]} +{"t": 1.2241, "q": [-0.1559683382511139, 0.00831417553126812, 0.02153416909277439, 0.3185310959815979, -0.15928642451763153, -0.003285627579316497, -0.10959099978208542, -0.025259550660848618, 0.0466841496527195, 0.32124966382980347, -0.2251117080450058, 0.02663123980164528, 0.00546389352530241, 0.0019518266199156642, 0.011417167261242867, 0.24772591888904572, 0.250146746635437, -0.0854235589504242, 0.8374696373939514, -0.008772453293204308, 0.0006231797160580754, -0.006040049716830254, 0.2522919178009033, -0.26751187443733215, 0.08058193325996399, 0.8014330863952637, -0.00535694882273674, 0.01176850963383913, 0.0015100124292075634]} +{"t": 1.2408, "q": [-0.155959814786911, 0.008305653929710388, 0.02153416909277439, 0.31851404905319214, -0.15927787125110626, -0.003285611979663372, -0.1095995157957077, -0.025259550660848618, 0.04667075723409653, 0.32124966382980347, -0.2251201868057251, 0.026631325483322144, 0.00542371766641736, 0.0019818758592009544, 0.011407564394176006, 0.24774989485740662, 0.2501707077026367, -0.0854475274682045, 0.8374696373939514, -0.008796420879662037, 0.0006231797160580754, -0.006052033975720406, 0.25227993726730347, -0.2674998939037323, 0.08058193325996399, 0.8014330863952637, -0.005392901133745909, 0.011780492961406708, 0.0015100124292075634]} +{"t": 1.2575, "q": [-0.155959814786911, 0.008305653929710388, 0.021560952067375183, 0.318522572517395, -0.15928642451763153, -0.003285627579316497, -0.1095995157957077, -0.025251027196645737, 0.0466841496527195, 0.32124966382980347, -0.22512002289295197, 0.026617005467414856, 0.005437109619379044, 0.0019743596203625202, 0.011412360705435276, 0.24774989485740662, 0.25015872716903687, -0.08543553948402405, 0.8374696373939514, -0.008796420879662037, 0.0006351639167405665, -0.006052033975720406, 0.2522679269313812, -0.2674998939037323, 0.08058193325996399, 0.8014570474624634, -0.005368933081626892, 0.011780492961406708, 0.0014980281703174114]} +{"t": 1.2744, "q": [-0.15597686171531677, 0.008288608863949776, 0.02153416909277439, 0.31851404905319214, -0.15928642451763153, -0.003285627579316497, -0.1095995157957077, -0.025259550660848618, 0.04671093076467514, 0.32126671075820923, -0.22512002289295197, 0.026617005467414856, 0.00542371766641736, 0.0019518581684678793, 0.01139800064265728, 0.24774989485740662, 0.25015872716903687, -0.08545950800180435, 0.8374576568603516, -0.008772453293204308, 0.0006231797160580754, -0.00606401776894927, 0.2523038983345032, -0.26751187443733215, 0.08058193325996399, 0.8014570474624634, -0.00535694882273674, 0.01179247722029686, 0.0014980281703174114]} +{"t": 1.2911, "q": [-0.15597686171531677, 0.008348263800144196, 0.021547559648752213, 0.31851404905319214, -0.15928637981414795, -0.0032715226989239454, -0.1095995157957077, -0.025259550660848618, 0.0466841496527195, 0.32126671075820923, -0.2251201868057251, 0.026631325483322144, 0.005437109619379044, 0.0019743596203625202, 0.011412360705435276, 0.24774989485740662, 0.25015872716903687, -0.0854235589504242, 0.8374696373939514, -0.008772453293204308, 0.0006231797160580754, -0.006052033975720406, 0.252315878868103, -0.26751187443733215, 0.08058193325996399, 0.8014450669288635, -0.005392901133745909, 0.011780492961406708, 0.0014860439114272594]} +{"t": 1.3079, "q": [-0.1559683382511139, 0.008331218734383583, 0.02153416909277439, 0.31850555539131165, -0.1592821180820465, -0.0032785716466605663, -0.1095995157957077, -0.025259550660848618, 0.04669753834605217, 0.32125818729400635, -0.22512434422969818, 0.026624206453561783, 0.005450501572340727, 0.001959358574822545, 0.011402787640690804, 0.24774989485740662, 0.25015872716903687, -0.0854235589504242, 0.8374696373939514, -0.008796420879662037, 0.0006231797160580754, -0.006052033975720406, 0.2523038983345032, -0.26751187443733215, 0.08058193325996399, 0.8014690279960632, -0.005416869651526213, 0.01179247722029686, 0.0014860439114272594]} +{"t": 1.3248, "q": [-0.15598538517951965, 0.00831417553126812, 0.021560952067375183, 0.31851404905319214, -0.15929068624973297, -0.003278578631579876, -0.10959099978208542, -0.025259550660848618, 0.04669753834605217, 0.32124966382980347, -0.22512002289295197, 0.026617005467414856, 0.005437109619379044, 0.0019668592140078545, 0.011407573707401752, 0.24776187539100647, 0.2501707077026367, -0.0854475274682045, 0.8374576568603516, -0.008772453293204308, 0.0005992112564854324, -0.006040049716830254, 0.2523278594017029, -0.2674998939037323, 0.08058193325996399, 0.8014690279960632, -0.005404885392636061, 0.01179247722029686, 0.0014980281703174114]} +{"t": 1.3415, "q": [-0.15597686171531677, 0.008339742198586464, 0.021560952067375183, 0.31850555539131165, -0.1592821180820465, -0.0032785716466605663, -0.1095995157957077, -0.025259550660848618, 0.04669753834605217, 0.32125818729400635, -0.22512434422969818, 0.026624206453561783, 0.005450501572340727, 0.0019668906461447477, 0.011388407088816166, 0.24774989485740662, 0.250146746635437, -0.0854475274682045, 0.8374696373939514, -0.008796420879662037, 0.0006231797160580754, -0.006052033975720406, 0.2523758113384247, -0.26751187443733215, 0.08059391379356384, 0.8014570474624634, -0.005416869651526213, 0.011804461479187012, 0.0014860439114272594]} +{"t": 1.3582, "q": [-0.155959814786911, 0.008305653929710388, 0.02150738425552845, 0.318522572517395, -0.15927787125110626, -0.003285611979663372, -0.1095995157957077, -0.025259550660848618, 0.0466841496527195, 0.32126671075820923, -0.22512434422969818, 0.026624206453561783, 0.00542371766641736, 0.0019518266199156642, 0.011417167261242867, 0.24776187539100647, 0.25015872716903687, -0.08543553948402405, 0.8374696373939514, -0.008760469034314156, 0.0006351639167405665, -0.006052033975720406, 0.2523278594017029, -0.2674998939037323, 0.08058193325996399, 0.8014810085296631, -0.005404885392636061, 0.011816445738077164, 0.0014860439114272594]} +{"t": 1.375, "q": [-0.155959814786911, 0.00831417553126812, 0.021547559648752213, 0.318522572517395, -0.1592821180820465, -0.0032785716466605663, -0.1095995157957077, -0.025251027196645737, 0.04669753834605217, 0.3212326169013977, -0.22512434422969818, 0.026624206453561783, 0.005437109619379044, 0.0019668592140078545, 0.011407573707401752, 0.24774989485740662, 0.2501707077026367, -0.0854235589504242, 0.8374696373939514, -0.008760469034314156, 0.0006231797160580754, -0.006028065457940102, 0.2523278594017029, -0.26751187443733215, 0.08058193325996399, 0.8014570474624634, -0.005416869651526213, 0.011804461479187012, 0.0014740596525371075]} +{"t": 1.3917, "q": [-0.155959814786911, 0.008288608863949776, 0.02152077667415142, 0.3185310959815979, -0.159269317984581, -0.0032856049947440624, -0.10960803925991058, -0.025259550660848618, 0.0466841496527195, 0.32125818729400635, -0.22512002289295197, 0.026617005467414856, 0.00542371766641736, 0.0019518266199156642, 0.011417167261242867, 0.24776187539100647, 0.25015872716903687, -0.0854235589504242, 0.8374935984611511, -0.00878443755209446, 0.0006351639167405665, -0.006052033975720406, 0.2523278594017029, -0.26751187443733215, 0.08058193325996399, 0.8014810085296631, -0.005368933081626892, 0.011804461479187012, 0.0015100124292075634]} +{"t": 1.4085, "q": [-0.15597686171531677, 0.008305653929710388, 0.021547559648752213, 0.318522572517395, -0.15928642451763153, -0.003285627579316497, -0.10958247631788254, -0.025259550660848618, 0.04671093076467514, 0.3212326169013977, -0.22512434422969818, 0.026624206453561783, 0.005450501572340727, 0.0019818758592009544, 0.011407564394176006, 0.24774989485740662, 0.25015872716903687, -0.08543553948402405, 0.8375175595283508, -0.00878443755209446, 0.0006231797160580754, -0.006052033975720406, 0.25227993726730347, -0.26751187443733215, 0.08058193325996399, 0.8014929890632629, -0.005392901133745909, 0.011804461479187012, 0.0015100124292075634]} +{"t": 1.4252, "q": [-0.15594276785850525, 0.00831417553126812, 0.021560952067375183, 0.318522572517395, -0.15927787125110626, -0.003285611979663372, -0.1095995157957077, -0.025259550660848618, 0.04667075723409653, 0.3212326169013977, -0.22512002289295197, 0.026617005467414856, 0.00546389352530241, 0.0019593271426856518, 0.01142195425927639, 0.24776187539100647, 0.2501707077026367, -0.0854235589504242, 0.837505578994751, -0.008772453293204308, 0.0006351639167405665, -0.006040049716830254, 0.25227993726730347, -0.26751187443733215, 0.08056994527578354, 0.8014690279960632, -0.005380917340517044, 0.011804461479187012, 0.0015219965716823936]} +{"t": 1.4419, "q": [-0.155959814786911, 0.008305653929710388, 0.02152077667415142, 0.3185310959815979, -0.15927793085575104, -0.0032997080124914646, -0.1095995157957077, -0.025259550660848618, 0.04671093076467514, 0.32125818729400635, -0.22512002289295197, 0.026617005467414856, 0.005477285478264093, 0.0019668592140078545, 0.011407573707401752, 0.24776187539100647, 0.25015872716903687, -0.0854475274682045, 0.8375175595283508, -0.00878443755209446, 0.0006351639167405665, -0.006040049716830254, 0.2523038983345032, -0.26748791337013245, 0.08056994527578354, 0.8014810085296631, -0.005392901133745909, 0.011804461479187012, 0.0015100124292075634]} +{"t": 1.4588, "q": [-0.155959814786911, 0.008305653929710388, 0.021547559648752213, 0.3185396194458008, -0.1592821180820465, -0.0032785716466605663, -0.1095995157957077, -0.025259550660848618, 0.04669753834605217, 0.32124966382980347, -0.2251201868057251, 0.026631325483322144, 0.005450501572340727, 0.0019593429751694202, 0.011412370949983597, 0.24774989485740662, 0.2501707077026367, -0.0854235589504242, 0.8375415205955505, -0.008772453293204308, 0.0006111955153755844, -0.006040049716830254, 0.2523038983345032, -0.26751187443733215, 0.08059391379356384, 0.8014810085296631, -0.005368933081626892, 0.011816445738077164, 0.0015339808305725455]} +{"t": 1.4755, "q": [-0.155959814786911, 0.008297130465507507, 0.021547559648752213, 0.3185310959815979, -0.15929073095321655, -0.0032926746644079685, -0.1095995157957077, -0.025259550660848618, 0.04671093076467514, 0.3212411403656006, -0.2251201868057251, 0.026631325483322144, 0.005450501572340727, 0.0019743596203625202, 0.011412360705435276, 0.24776187539100647, 0.25015872716903687, -0.08543553948402405, 0.8375535607337952, -0.00878443755209446, 0.0006351639167405665, -0.006052033975720406, 0.2523038983345032, -0.26751187443733215, 0.08059391379356384, 0.8014810085296631, -0.005380917340517044, 0.011804461479187012, 0.0015219965716823936]} +{"t": 1.4922, "q": [-0.15594276785850525, 0.00831417553126812, 0.02153416909277439, 0.3185310959815979, -0.15928217768669128, -0.003292667679488659, -0.1095995157957077, -0.025259550660848618, 0.04671093076467514, 0.32125818729400635, -0.22512002289295197, 0.026617005467414856, 0.005410325713455677, 0.0019743754528462887, 0.011402777396142483, 0.24777385592460632, 0.25015872716903687, -0.0854235589504242, 0.8375415205955505, -0.00878443755209446, 0.0006351639167405665, -0.006052033975720406, 0.2523038983345032, -0.2674998939037323, 0.08058193325996399, 0.8014810085296631, -0.00535694882273674, 0.01179247722029686, 0.0014860439114272594]} +{"t": 1.509, "q": [-0.15594276785850525, 0.00831417553126812, 0.02153416909277439, 0.3185310959815979, -0.15929073095321655, -0.0032926746644079685, -0.1095995157957077, -0.025259550660848618, 0.04669753834605217, 0.32124966382980347, -0.22511570155620575, 0.02660980261862278, 0.005477285478264093, 0.001989376498386264, 0.011412350460886955, 0.24774989485740662, 0.250146746635437, -0.08541157096624374, 0.8375895023345947, -0.00878443755209446, 0.0006231797160580754, -0.006052033975720406, 0.25233983993530273, -0.26751187443733215, 0.08059391379356384, 0.8014929890632629, -0.00535694882273674, 0.011816445738077164, 0.0015339808305725455]} +{"t": 1.5257, "q": [-0.15595129132270813, 0.008331218734383583, 0.02153416909277439, 0.318522572517395, -0.15927793085575104, -0.0032997080124914646, -0.1095995157957077, -0.025259550660848618, 0.046657364815473557, 0.3212326169013977, -0.22512434422969818, 0.026624206453561783, 0.005437109619379044, 0.0019743596203625202, 0.011412360705435276, 0.24773789942264557, 0.25015872716903687, -0.08543553948402405, 0.8375775218009949, -0.00882038939744234, 0.0006351639167405665, -0.006040049716830254, 0.25227993726730347, -0.2674998939037323, 0.08059391379356384, 0.8014929890632629, -0.005392901133745909, 0.011804461479187012, 0.0015100124292075634]} +{"t": 1.5425, "q": [-0.15595129132270813, 0.008331218734383583, 0.02152077667415142, 0.318522572517395, -0.15928642451763153, -0.003285627579316497, -0.1095995157957077, -0.025259550660848618, 0.04672432318329811, 0.32125818729400635, -0.22511586546897888, 0.026624122634530067, 0.005477285478264093, 0.0019518266199156642, 0.011417167261242867, 0.24773789942264557, 0.25015872716903687, -0.08543553948402405, 0.8376014828681946, -0.008796420879662037, 0.0006351639167405665, -0.006040049716830254, 0.25227993726730347, -0.2674998939037323, 0.08058193325996399, 0.8014929890632629, -0.005368933081626892, 0.011804461479187012, 0.0015100124292075634]} +{"t": 1.5594, "q": [-0.1559683382511139, 0.00831417553126812, 0.021547559648752213, 0.31851404905319214, -0.15929073095321655, -0.0032926746644079685, -0.1095995157957077, -0.025259550660848618, 0.0466841496527195, 0.3212326169013977, -0.22511570155620575, 0.02660980261862278, 0.00542371766641736, 0.0019743596203625202, 0.011412360705435276, 0.24774989485740662, 0.25015872716903687, -0.08541157096624374, 0.8376254439353943, -0.008796420879662037, 0.0006231797160580754, -0.006052033975720406, 0.25227993726730347, -0.26748791337013245, 0.08058193325996399, 0.8014929890632629, -0.005392901133745909, 0.011804461479187012, 0.0014860439114272594]} +{"t": 1.5761, "q": [-0.15595129132270813, 0.008305653929710388, 0.021547559648752213, 0.31850555539131165, -0.15928637981414795, -0.0032715226989239454, -0.1095995157957077, -0.025259550660848618, 0.04672432318329811, 0.3212411403656006, -0.22512002289295197, 0.026617005467414856, 0.005477285478264093, 0.0019593744073063135, 0.01139320433139801, 0.24773789942264557, 0.25015872716903687, -0.08545950800180435, 0.8376134634017944, -0.00878443755209446, 0.0006111955153755844, -0.00606401776894927, 0.2522919178009033, -0.26748791337013245, 0.08056994527578354, 0.8014929890632629, -0.005392901133745909, 0.011804461479187012, 0.0014980281703174114]} +{"t": 1.5928, "q": [-0.15595129132270813, 0.008305653929710388, 0.021547559648752213, 0.3185310959815979, -0.15928642451763153, -0.003285627579316497, -0.1095995157957077, -0.025259550660848618, 0.04669753834605217, 0.32124966382980347, -0.22512434422969818, 0.026624206453561783, 0.005477285478264093, 0.0019593429751694202, 0.011412370949983597, 0.24774989485740662, 0.25015872716903687, -0.0854235589504242, 0.8376254439353943, -0.008760469034314156, 0.0006231797160580754, -0.006052033975720406, 0.2522919178009033, -0.26751187443733215, 0.08058193325996399, 0.8014929890632629, -0.005416869651526213, 0.01179247722029686, 0.0015339808305725455]} +{"t": 1.6095, "q": [-0.15594276785850525, 0.008288608863949776, 0.021547559648752213, 0.3185310959815979, -0.15929068624973297, -0.003278578631579876, -0.1095995157957077, -0.025259550660848618, 0.04669753834605217, 0.3212240934371948, -0.22512434422969818, 0.026624206453561783, 0.005504068918526173, 0.0019743596203625202, 0.011412360705435276, 0.24771393835544586, 0.25015872716903687, -0.0854235589504242, 0.8376134634017944, -0.008772453293204308, 0.0006231797160580754, -0.006052033975720406, 0.25227993726730347, -0.26748791337013245, 0.08055796474218369, 0.8014929890632629, -0.005368933081626892, 0.011816445738077164, 0.0014980281703174114]} +{"t": 1.6263, "q": [-0.15599390864372253, 0.008280087262392044, 0.021547559648752213, 0.318522572517395, -0.15928642451763153, -0.003285627579316497, -0.1095995157957077, -0.025259550660848618, 0.04671093076467514, 0.32120704650878906, -0.2251245081424713, 0.02663852646946907, 0.00546389352530241, 0.0019593271426856518, 0.01142195425927639, 0.24778583645820618, 0.2501707077026367, -0.0854235589504242, 0.8376134634017944, -0.008796420879662037, 0.0006231797160580754, -0.006040049716830254, 0.2523278594017029, -0.2674998939037323, 0.08058193325996399, 0.8015049695968628, -0.005380917340517044, 0.011804461479187012, 0.0014980281703174114]} +{"t": 1.643, "q": [-0.15595129132270813, 0.008271565660834312, 0.021560952067375183, 0.3185310959815979, -0.1592821180820465, -0.0032785716466605663, -0.10960803925991058, -0.025259550660848618, 0.04672432318329811, 0.3212411403656006, -0.22511570155620575, 0.02660980261862278, 0.005450501572340727, 0.0019593271426856518, 0.01142195425927639, 0.24777385592460632, 0.25015872716903687, -0.0854235589504242, 0.8376374244689941, -0.008796420879662037, 0.0006351639167405665, -0.006040049716830254, 0.2523278594017029, -0.26748791337013245, 0.08056994527578354, 0.8014929890632629, -0.005404885392636061, 0.011804461479187012, 0.0014980281703174114]} +{"t": 1.6597, "q": [-0.15595129132270813, 0.008288608863949776, 0.021560952067375183, 0.3185310959815979, -0.1592864841222763, -0.0032997147645801306, -0.1095995157957077, -0.025259550660848618, 0.04672432318329811, 0.3212326169013977, -0.22511570155620575, 0.02660980261862278, 0.005437109619379044, 0.001981860026717186, 0.0114171477034688, 0.24777385592460632, 0.250146746635437, -0.08543553948402405, 0.8376374244689941, -0.008772453293204308, 0.0006111955153755844, -0.00606401776894927, 0.2523038983345032, -0.26748791337013245, 0.08058193325996399, 0.8014929890632629, -0.00535694882273674, 0.011804461479187012, 0.0014980281703174114]} +{"t": 1.6766, "q": [-0.15594276785850525, 0.008305653929710388, 0.021547559648752213, 0.31851404905319214, -0.15928642451763153, -0.003285627579316497, -0.1095995157957077, -0.025259550660848618, 0.04671093076467514, 0.3212411403656006, -0.22511586546897888, 0.026624122634530067, 0.005450501572340727, 0.0019518581684678793, 0.01139800064265728, 0.24778583645820618, 0.2501707077026367, -0.0854235589504242, 0.837649405002594, -0.008796420879662037, 0.0006231797160580754, -0.00606401776894927, 0.2523278594017029, -0.2674998939037323, 0.08056994527578354, 0.8014929890632629, -0.005416869651526213, 0.011816445738077164, 0.0014980281703174114]} +{"t": 1.6933, "q": [-0.155959814786911, 0.008322697132825851, 0.02150738425552845, 0.3185310959815979, -0.15928642451763153, -0.003285627579316497, -0.1095995157957077, -0.025259550660848618, 0.04669753834605217, 0.32121556997299194, -0.2251201868057251, 0.026631325483322144, 0.005477285478264093, 0.0019518266199156642, 0.011417167261242867, 0.24774989485740662, 0.2501707077026367, -0.08543553948402405, 0.837649405002594, -0.008796420879662037, 0.0006351639167405665, -0.006052033975720406, 0.2523278594017029, -0.26748791337013245, 0.08059391379356384, 0.8014929890632629, -0.005392901133745909, 0.011804461479187012, 0.0014740596525371075]} +{"t": 1.7101, "q": [-0.155959814786911, 0.008322697132825851, 0.02152077667415142, 0.31851404905319214, -0.159294992685318, -0.003285625483840704, -0.1095995157957077, -0.025259550660848618, 0.04671093076467514, 0.3212411403656006, -0.22511586546897888, 0.026624122634530067, 0.00546389352530241, 0.0019743596203625202, 0.011412360705435276, 0.24776187539100647, 0.25015872716903687, -0.0854475274682045, 0.837649405002594, -0.008796420879662037, 0.0006231797160580754, -0.006052033975720406, 0.2523278594017029, -0.26748791337013245, 0.08056994527578354, 0.8014929890632629, -0.005452822428196669, 0.011804461479187012, 0.0014860439114272594]} +{"t": 1.7268, "q": [-0.155959814786911, 0.008331218734383583, 0.02153416909277439, 0.31851404905319214, -0.15928642451763153, -0.003285627579316497, -0.1095995157957077, -0.025251027196645737, 0.0466841496527195, 0.3212411403656006, -0.22512434422969818, 0.026624206453561783, 0.00542371766641736, 0.0019668592140078545, 0.011407573707401752, 0.24774989485740662, 0.250146746635437, -0.0854475274682045, 0.8376254439353943, -0.008772453293204308, 0.0006231797160580754, -0.006076002027839422, 0.25233983993530273, -0.26748791337013245, 0.08058193325996399, 0.8014810085296631, -0.005440838169306517, 0.011828429996967316, 0.0015219965716823936]} +{"t": 1.7435, "q": [-0.155959814786911, 0.00831417553126812, 0.02152077667415142, 0.31851404905319214, -0.15928642451763153, -0.003285627579316497, -0.10959099978208542, -0.025259550660848618, 0.04671093076467514, 0.3212240934371948, -0.22511586546897888, 0.026624122634530067, 0.00542371766641736, 0.001981860026717186, 0.0114171477034688, 0.24773789942264557, 0.25015872716903687, -0.08543553948402405, 0.8376254439353943, -0.008760469034314156, 0.0006111955153755844, -0.006052033975720406, 0.2523278594017029, -0.2674998939037323, 0.08059391379356384, 0.8015169501304626, -0.005452822428196669, 0.011828429996967316, 0.0015100124292075634]} +{"t": 1.7603, "q": [-0.15594276785850525, 0.008305653929710388, 0.02152077667415142, 0.318522572517395, -0.15928637981414795, -0.0032715226989239454, -0.10960803925991058, -0.025259550660848618, 0.04672432318329811, 0.3212326169013977, -0.22512434422969818, 0.026624206453561783, 0.00542371766641736, 0.0019518266199156642, 0.011417167261242867, 0.24774989485740662, 0.2501707077026367, -0.0854235589504242, 0.837649405002594, -0.008760469034314156, 0.0006111955153755844, -0.006052033975720406, 0.2523038983345032, -0.2674759328365326, 0.08056994527578354, 0.8015049695968628, -0.005428853910416365, 0.011828429996967316, 0.0014980281703174114]} +{"t": 1.777, "q": [-0.15595129132270813, 0.008305653929710388, 0.02152077667415142, 0.31851404905319214, -0.1592821180820465, -0.0032785716466605663, -0.1095995157957077, -0.025259550660848618, 0.0466841496527195, 0.3212326169013977, -0.22511570155620575, 0.02660980261862278, 0.00546389352530241, 0.001944341929629445, 0.011402797885239124, 0.24774989485740662, 0.25015872716903687, -0.0854475274682045, 0.8376374244689941, -0.008760469034314156, 0.0006111955153755844, -0.00601608119904995, 0.25227993726730347, -0.26748791337013245, 0.08056994527578354, 0.8015169501304626, -0.005452822428196669, 0.011828429996967316, 0.0015100124292075634]} +{"t": 1.7937, "q": [-0.15593425929546356, 0.008348263800144196, 0.02152077667415142, 0.31851404905319214, -0.15928217768669128, -0.003292667679488659, -0.10959099978208542, -0.025251027196645737, 0.04667075723409653, 0.3212411403656006, -0.22512002289295197, 0.026617005467414856, 0.005477285478264093, 0.001981860026717186, 0.0114171477034688, 0.24774989485740662, 0.25015872716903687, -0.0854235589504242, 0.8376613855361938, -0.008736500516533852, 0.0006111955153755844, -0.006040049716830254, 0.2523038983345032, -0.26748791337013245, 0.08058193325996399, 0.8015049695968628, -0.005416869651526213, 0.011816445738077164, 0.0015219965716823936]} +{"t": 1.8105, "q": [-0.1559172123670578, 0.00831417553126812, 0.021547559648752213, 0.31849703192710876, -0.15928223729133606, -0.0033067550975829363, -0.10958247631788254, -0.025259550660848618, 0.0466841496527195, 0.32124966382980347, -0.22511586546897888, 0.026624122634530067, 0.00546389352530241, 0.0019518581684678793, 0.01139800064265728, 0.24779783189296722, 0.250146746635437, -0.08543553948402405, 0.837649405002594, -0.008796420879662037, 0.0006111955153755844, -0.006040049716830254, 0.2523518204689026, -0.26748791337013245, 0.08058193325996399, 0.8015289306640625, -0.005428853910416365, 0.011816445738077164, 0.0014860439114272594]} +{"t": 1.8272, "q": [-0.15594276785850525, 0.008339742198586464, 0.02153416909277439, 0.3185310959815979, -0.15927362442016602, -0.003292652079835534, -0.10956542938947678, -0.02526807226240635, 0.04669753834605217, 0.32126671075820923, -0.22512002289295197, 0.026617005467414856, 0.00546389352530241, 0.001936825574375689, 0.011407594196498394, 0.24789370596408844, 0.2502546012401581, -0.08541157096624374, 0.8376733660697937, -0.008736500516533852, 0.0006231797160580754, -0.00601608119904995, 0.2523278594017029, -0.26748791337013245, 0.08056994527578354, 0.8015049695968628, -0.005392901133745909, 0.011816445738077164, 0.0014980281703174114]} +{"t": 1.8439, "q": [-0.1559172123670578, 0.008331218734383583, 0.02153416909277439, 0.3185310959815979, -0.15927362442016602, -0.003292652079835534, -0.1095569059252739, -0.025259550660848618, 0.0466841496527195, 0.32124966382980347, -0.2251117080450058, 0.02663123980164528, 0.005490677431225777, 0.0019743596203625202, 0.011412360705435276, 0.247929647564888, 0.25033849477767944, -0.08539959043264389, 0.8376853466033936, -0.008736500516533852, 0.0005992112564854324, -0.006028065457940102, 0.2523278594017029, -0.2674998939037323, 0.08055796474218369, 0.8015289306640625, -0.005428853910416365, 0.011828429996967316, 0.0014980281703174114]} +{"t": 1.8607, "q": [-0.15592573583126068, 0.008322697132825851, 0.02152077667415142, 0.3185310959815979, -0.15928217768669128, -0.003292667679488659, -0.1095569059252739, -0.02526807226240635, 0.04667075723409653, 0.3212752342224121, -0.22511154413223267, 0.02661691978573799, 0.005477285478264093, 0.0019593271426856518, 0.01142195425927639, 0.24789370596408844, 0.2503504753112793, -0.08541157096624374, 0.8377093076705933, -0.008772453293204308, 0.0006111955153755844, -0.006040049716830254, 0.2523518204689026, -0.26748791337013245, 0.08056994527578354, 0.8015289306640625, -0.005416869651526213, 0.011816445738077164, 0.0014980281703174114]} +{"t": 1.8774, "q": [-0.15594276785850525, 0.008305653929710388, 0.021547559648752213, 0.3185396194458008, -0.15928637981414795, -0.0032715226989239454, -0.10953134298324585, -0.025293638929724693, 0.04671093076467514, 0.32124966382980347, -0.22511154413223267, 0.02661691978573799, 0.005410325713455677, 0.001981860026717186, 0.0114171477034688, 0.24791766703128815, 0.2503264844417572, -0.0854235589504242, 0.837733268737793, -0.008736500516533852, 0.0005992112564854324, -0.005992112681269646, 0.2523518204689026, -0.2674759328365326, 0.08058193325996399, 0.8015289306640625, -0.005428853910416365, 0.011828429996967316, 0.0015339808305725455]} +{"t": 1.8941, "q": [-0.15593425929546356, 0.008288608863949776, 0.021547559648752213, 0.31854814291000366, -0.1592821180820465, -0.0032785716466605663, -0.1095569059252739, -0.02532772719860077, 0.0466841496527195, 0.32126671075820923, -0.22512002289295197, 0.026617005467414856, 0.005450501572340727, 0.0019442788325250149, 0.011441131122410297, 0.24789370596408844, 0.25031450390815735, -0.08541157096624374, 0.8378052115440369, -0.008760469034314156, 0.0005992112564854324, -0.006028065457940102, 0.2523518204689026, -0.2674759328365326, 0.0806059017777443, 0.8015409111976624, -0.005440838169306517, 0.011816445738077164, 0.0015100124292075634]} +{"t": 1.9109, "q": [-0.15594276785850525, 0.00831417553126812, 0.02152077667415142, 0.31855666637420654, -0.1592864841222763, -0.0032997147645801306, -0.10953986644744873, -0.0253362488001585, 0.04671093076467514, 0.32126671075820923, -0.2251117080450058, 0.02663123980164528, 0.00542371766641736, 0.0019293093355372548, 0.011412390507757664, 0.2479536235332489, 0.2502785623073578, -0.08543553948402405, 0.8378052115440369, -0.008796420879662037, 0.0006231797160580754, -0.006052033975720406, 0.25233983993530273, -0.2674759328365326, 0.0806059017777443, 0.8015409111976624, -0.005428853910416365, 0.01185239851474762, 0.0014980281703174114]} +{"t": 1.9276, "q": [-0.155959814786911, 0.008322697132825851, 0.02153416909277439, 0.3185396194458008, -0.15927356481552124, -0.0032785648945719004, -0.10953986644744873, -0.025344770401716232, 0.04671093076467514, 0.32125818729400635, -0.2251117080450058, 0.02663123980164528, 0.005450501572340727, 0.0019293093355372548, 0.011412390507757664, 0.24794164299964905, 0.2502785623073578, -0.0854235589504242, 0.8378171920776367, -0.008796420879662037, 0.0006231797160580754, -0.00606401776894927, 0.2523278594017029, -0.2674759328365326, 0.08058193325996399, 0.8015528917312622, -0.005452822428196669, 0.011840414255857468, 0.0014980281703174114]} +{"t": 1.9443, "q": [-0.155959814786911, 0.00831417553126812, 0.02149399183690548, 0.31854814291000366, -0.15928642451763153, -0.003285627579316497, -0.10953134298324585, -0.0253362488001585, 0.04667075723409653, 0.32124966382980347, -0.22511602938175201, 0.026638442650437355, 0.005584420636296272, 0.001914324122481048, 0.011393234133720398, 0.24794164299964905, 0.2503025233745575, -0.0854235589504242, 0.8378411531448364, -0.008772453293204308, 0.0006351639167405665, -0.006040049716830254, 0.2523278594017029, -0.26748791337013245, 0.08059391379356384, 0.8015409111976624, -0.005428853910416365, 0.011828429996967316, 0.0015100124292075634]} +{"t": 1.9611, "q": [-0.155959814786911, 0.008365308865904808, 0.02150738425552845, 0.31854814291000366, -0.15928642451763153, -0.003285627579316497, -0.10954838246107101, -0.02532772719860077, 0.046657364815473557, 0.3212752342224121, -0.2251117080450058, 0.02663123980164528, 0.0056112040765583515, 0.0019593744073063135, 0.01139320433139801, 0.24791766703128815, 0.25033849477767944, -0.08543553948402405, 0.8378171920776367, -0.008736500516533852, 0.0006351639167405665, -0.006040049716830254, 0.2522439658641815, -0.26748791337013245, 0.08058193325996399, 0.8015528917312622, -0.005476790945976973, 0.011828429996967316, 0.0015219965716823936]} +{"t": 1.9779, "q": [-0.15593425929546356, 0.008339742198586464, 0.02152077667415142, 0.31854814291000366, -0.1592821180820465, -0.0032785716466605663, -0.10952281951904297, -0.0253362488001585, 0.046657364815473557, 0.3212752342224121, -0.22512002289295197, 0.026617005467414856, 0.0055978125892579556, 0.001966906478628516, 0.011378823779523373, 0.24794164299964905, 0.25031450390815735, -0.08543553948402405, 0.8378052115440369, -0.0087245162576437, 0.0006471481756307185, -0.006040049716830254, 0.2522439658641815, -0.2674759328365326, 0.08055796474218369, 0.8015409111976624, -0.005440838169306517, 0.011840414255857468, 0.0015339808305725455]} +{"t": 1.9946, "q": [-0.15594276785850525, 0.008339742198586464, 0.021480601280927658, 0.31855666637420654, -0.1592821180820465, -0.0032785716466605663, -0.10953134298324585, -0.025344770401716232, 0.0466841496527195, 0.32126671075820923, -0.2251117080450058, 0.02663123980164528, 0.0055442447774112225, 0.001974438549950719, 0.01136444415897131, 0.24736639857292175, 0.2503264844417572, -0.0854235589504242, 0.837733268737793, -0.008700547739863396, 0.0006471481756307185, -0.006052033975720406, 0.2522200047969818, -0.26748791337013245, 0.08058193325996399, 0.8015528917312622, -0.005428853910416365, 0.011828429996967316, 0.0015339808305725455]} +{"t": 2.0113, "q": [-0.15593425929546356, 0.008297130465507507, 0.02149399183690548, 0.31855666637420654, -0.15928637981414795, -0.0032715226989239454, -0.10953134298324585, -0.025302160531282425, 0.046643972396850586, 0.3212411403656006, -0.22512002289295197, 0.026617005467414856, 0.005450501572340727, 0.001959532033652067, 0.011297370307147503, 0.24626384675502777, 0.2503264844417572, -0.0854475274682045, 0.8376254439353943, -0.008736500516533852, 0.0006111955153755844, -0.006052033975720406, 0.2521241307258606, -0.2674759328365326, 0.0806059017777443, 0.8015528917312622, -0.005416869651526213, 0.011840414255857468, 0.0015459650894626975]} +{"t": 2.028, "q": [-0.1559172123670578, 0.008305653929710388, 0.02150738425552845, 0.3185396194458008, -0.159294992685318, -0.003285625483840704, -0.10952281951904297, -0.025293638929724693, 0.046643972396850586, 0.32125818729400635, -0.2251201868057251, 0.026631325483322144, 0.005383542273193598, 0.0019296252867206931, 0.011220724321901798, 0.24554479122161865, 0.2503504753112793, -0.08539959043264389, 0.8376014828681946, -0.008736500516533852, 0.0005992112564854324, -0.006028065457940102, 0.2518484890460968, -0.2674759328365326, 0.08056994527578354, 0.8015528917312622, -0.005452822428196669, 0.011816445738077164, 0.0015459650894626975]} +{"t": 2.0449, "q": [-0.15588311851024628, 0.008297130465507507, 0.021560952067375183, 0.31850555539131165, -0.15929068624973297, -0.003278578631579876, -0.10952281951904297, -0.025302160531282425, 0.04669753834605217, 0.32120704650878906, -0.22512434422969818, 0.026624206453561783, 0.004807690624147654, 0.0019597371574491262, 0.01117278728634119, 0.24513733386993408, 0.2503504753112793, -0.08541157096624374, 0.8375895023345947, -0.008772453293204308, 0.0005752427969127893, -0.006040049716830254, 0.25165674090385437, -0.26748791337013245, 0.08055796474218369, 0.8015409111976624, -0.005428853910416365, 0.011828429996967316, 0.0014980281703174114]} +{"t": 2.0616, "q": [-0.15584051609039307, 0.00831417553126812, 0.021627912297844887, 0.3184885084629059, -0.15929068624973297, -0.003278578631579876, -0.10952281951904297, -0.02526807226240635, 0.046804673969745636, 0.3211474120616913, -0.22512002289295197, 0.026617005467414856, 0.004097919911146164, 0.0019521419890224934, 0.011225501075387001, 0.24459803104400635, 0.2503025233745575, -0.08545950800180435, 0.8375895023345947, -0.008760469034314156, 0.0005392901366576552, -0.006052033975720406, 0.25176459550857544, -0.26748791337013245, 0.08054597675800323, 0.8015409111976624, -0.005428853910416365, 0.011828429996967316, 0.0015339808305725455]} +{"t": 2.0784, "q": [-0.15585754811763763, 0.00831417553126812, 0.02168147824704647, 0.31842032074928284, -0.15929923951625824, -0.003278585383668542, -0.10953134298324585, -0.02527659386396408, 0.04681806638836861, 0.32112184166908264, -0.2251286655664444, 0.02663140930235386, 0.003589028026908636, 0.001929482794366777, 0.011306974105536938, 0.24407073855400085, 0.25026658177375793, -0.0854714959859848, 0.8376014828681946, -0.008736500516533852, 0.0005033374764025211, -0.006040049716830254, 0.2521241307258606, -0.2674759328365326, 0.08056994527578354, 0.8015409111976624, -0.005428853910416365, 0.01185239851474762, 0.0014980281703174114]} +{"t": 2.0952, "q": [-0.15586607158184052, 0.00831417553126812, 0.02168147824704647, 0.31837770342826843, -0.159294992685318, -0.003285625483840704, -0.10953986644744873, -0.02526807226240635, 0.04681806638836861, 0.321096271276474, -0.22512434422969818, 0.026624206453561783, 0.003240838646888733, 0.0018842433346435428, 0.01142200455069542, 0.24381905794143677, 0.2502785623073578, -0.0854714959859848, 0.8376134634017944, -0.008796420879662037, 0.0004793690168298781, -0.006052033975720406, 0.2522200047969818, -0.2674759328365326, 0.08059391379356384, 0.8015649318695068, -0.005416869651526213, 0.011840414255857468, 0.0015100124292075634]} +{"t": 2.1121, "q": [-0.15584902465343475, 0.00831417553126812, 0.02169487066566944, 0.3183436095714569, -0.15929923951625824, -0.003278585383668542, -0.10954838246107101, -0.02526807226240635, 0.04688502848148346, 0.3210110366344452, -0.2251329869031906, 0.026638612151145935, 0.003133703488856554, 0.0018840547418221831, 0.011537004262208939, 0.24384303390979767, 0.2503025233745575, -0.0854714959859848, 0.8376134634017944, -0.008796420879662037, 0.0004793690168298781, -0.006040049716830254, 0.2523518204689026, -0.2674759328365326, 0.08058193325996399, 0.8016008734703064, -0.005392901133745909, 0.01185239851474762, 0.0015100124292075634]} +{"t": 2.1289, "q": [-0.1558745950460434, 0.008305653929710388, 0.021708263084292412, 0.31832656264305115, -0.15930350124835968, -0.003271545050665736, -0.1095569059252739, -0.025293638929724693, 0.0469118095934391, 0.3209684193134308, -0.2251286655664444, 0.02663140930235386, 0.0032274469267576933, 0.001928947283886373, 0.011632808484137058, 0.2440347820520401, 0.2502785623073578, -0.0854714959859848, 0.837649405002594, -0.00878443755209446, 0.0004913532175123692, -0.006076002027839422, 0.2523278594017029, -0.2674998939037323, 0.08053399622440338, 0.801636815071106, -0.005440838169306517, 0.01185239851474762, 0.0014860439114272594]} +{"t": 2.1456, "q": [-0.15588311851024628, 0.00831417553126812, 0.02169487066566944, 0.31832656264305115, -0.15929919481277466, -0.0032644979655742645, -0.10954838246107101, -0.025344770401716232, 0.04692520201206207, 0.32092583179473877, -0.2251286655664444, 0.02663140930235386, 0.0035086767747998238, 0.0019587757997214794, 0.011757371947169304, 0.24422653019428253, 0.25029054284095764, -0.0854714959859848, 0.8376853466033936, -0.008772453293204308, 0.0005033374764025211, -0.006052033975720406, 0.2523758113384247, -0.26748791337013245, 0.08056994527578354, 0.8016487956047058, -0.005404885392636061, 0.011876367032527924, 0.0015100124292075634]} +{"t": 2.1623, "q": [-0.15590016543865204, 0.008305653929710388, 0.02168147824704647, 0.3183095455169678, -0.1593034416437149, -0.0032574578654021025, -0.10954838246107101, -0.025370337069034576, 0.04685824364423752, 0.32092583179473877, -0.22512434422969818, 0.026624206453561783, 0.0038300822488963604, 0.0019510539714246988, 0.011886751279234886, 0.24444223940372467, 0.2503264844417572, -0.08543553948402405, 0.837733268737793, -0.008796420879662037, 0.0005153216770850122, -0.006040049716830254, 0.2523758113384247, -0.2674519419670105, 0.08058193325996399, 0.8016967177391052, -0.005428853910416365, 0.011876367032527924, 0.0015100124292075634]} +{"t": 2.179, "q": [-0.1559172123670578, 0.008305653929710388, 0.02169487066566944, 0.31833508610725403, -0.15930764377117157, -0.0032363126520067453, -0.1095569059252739, -0.025412948802113533, 0.04688502848148346, 0.320908784866333, -0.22512884438037872, 0.026645729318261147, 0.0041247038170695305, 0.001928331796079874, 0.01200655847787857, 0.24471788108348846, 0.2503983974456787, -0.08536363393068314, 0.8378411531448364, -0.008796420879662037, 0.0005512743373401463, -0.006052033975720406, 0.25236380100250244, -0.2674519419670105, 0.08056994527578354, 0.8017446398735046, -0.005416869651526213, 0.011876367032527924, 0.0015219965716823936]} +{"t": 2.1958, "q": [-0.15594276785850525, 0.008322697132825851, 0.02168147824704647, 0.31832656264305115, -0.1593034416437149, -0.0032574578654021025, -0.10956542938947678, -0.025438513606786728, 0.04687163606286049, 0.32094287872314453, -0.2251329869031906, 0.026638612151145935, 0.004218447022140026, 0.0018832189962267876, 0.012044921517372131, 0.24499352276325226, 0.25054222345352173, -0.08536363393068314, 0.837877094745636, -0.008796420879662037, 0.0005632585962302983, -0.006040049716830254, 0.2523997724056244, -0.26746395230293274, 0.08059391379356384, 0.8017566800117493, -0.005440838169306517, 0.011876367032527924, 0.0015579492319375277]} +{"t": 2.2125, "q": [-0.1559172123670578, 0.00831417553126812, 0.02169487066566944, 0.31836065649986267, -0.15931205451488495, -0.003271552035585046, -0.1095569059252739, -0.025464080274105072, 0.04688502848148346, 0.3209514021873474, -0.2251286655664444, 0.02663140930235386, 0.0041916631162166595, 0.0018832505447790027, 0.012025754898786545, 0.24508939683437347, 0.25056618452072144, -0.08529172837734222, 0.837877094745636, -0.0088803106918931, 0.0005752427969127893, -0.006040049716830254, 0.2523997724056244, -0.26743996143341064, 0.08058193325996399, 0.801780641078949, -0.005380917340517044, 0.011876367032527924, 0.0015459650894626975]} +{"t": 2.2292, "q": [-0.15593425929546356, 0.00837383046746254, 0.02169487066566944, 0.3183947503566742, -0.15931200981140137, -0.0032574560027569532, -0.10953986644744873, -0.025489646941423416, 0.04692520201206207, 0.3209684193134308, -0.2251286655664444, 0.02663140930235386, 0.0041916631162166595, 0.0018982988549396396, 0.012006578035652637, 0.24504145979881287, 0.2505781650543213, -0.08527974784374237, 0.837877094745636, -0.008952216245234013, 0.0005632585962302983, -0.006040049716830254, 0.2523518204689026, -0.2674519419670105, 0.08058193325996399, 0.8018165826797485, -0.005404885392636061, 0.011888351291418076, 0.0015100124292075634]} +{"t": 2.2459, "q": [-0.15593425929546356, 0.008322697132825851, 0.021721655502915382, 0.31841179728507996, -0.15929919481277466, -0.0032644979655742645, -0.10953134298324585, -0.025498168542981148, 0.0469118095934391, 0.32101956009864807, -0.22512035071849823, 0.02664564549922943, 0.004057744517922401, 0.0018683435628190637, 0.011958681978285313, 0.24488565325737, 0.2505062520503998, -0.08532768487930298, 0.8378411531448364, -0.009036106057465076, 0.0005392901366576552, -0.006040049716830254, 0.2524237334728241, -0.2674519419670105, 0.08058193325996399, 0.8018285632133484, -0.005428853910416365, 0.011876367032527924, 0.0015339808305725455]} +{"t": 2.2627, "q": [-0.15590016543865204, 0.008339742198586464, 0.02169487066566944, 0.3184288442134857, -0.15929919481277466, -0.0032644979655742645, -0.10953986644744873, -0.02550669200718403, 0.04693859443068504, 0.32107070088386536, -0.22512035071849823, 0.02664564549922943, 0.0038970415480434895, 0.0018834234215319157, 0.011920338496565819, 0.24464596807956696, 0.2505302429199219, -0.08530371636152267, 0.8377692699432373, -0.009096027351915836, 0.0005392901366576552, -0.00606401776894927, 0.2523997724056244, -0.2674519419670105, 0.08058193325996399, 0.8018285632133484, -0.005416869651526213, 0.011876367032527924, 0.0015100124292075634]} +{"t": 2.2795, "q": [-0.1558745950460434, 0.008288608863949776, 0.021708263084292412, 0.31851404905319214, -0.15930350124835968, -0.003271545050665736, -0.10954838246107101, -0.025498168542981148, 0.04693859443068504, 0.3210877478122711, -0.2251245081424713, 0.02663852646946907, 0.0037631227169185877, 0.0019210519967600703, 0.011867604218423367, 0.24449017643928528, 0.25056618452072144, -0.08529172837734222, 0.837649405002594, -0.009108011610805988, 0.0005033374764025211, -0.006040049716830254, 0.2523758113384247, -0.26746395230293274, 0.08058193325996399, 0.8018285632133484, -0.005440838169306517, 0.011888351291418076, 0.0015100124292075634]} +{"t": 2.2962, "q": [-0.15584051609039307, 0.00831417553126812, 0.021721655502915382, 0.31851404905319214, -0.1593034416437149, -0.0032574578654021025, -0.10953134298324585, -0.02551521360874176, 0.0470055527985096, 0.32111331820487976, -0.2251117080450058, 0.02663123980164528, 0.0037229470908641815, 0.0019737447146326303, 0.011786110699176788, 0.2442624717950821, 0.25059014558792114, -0.08527974784374237, 0.8375535607337952, -0.00920388475060463, 0.0004793690168298781, -0.006028065457940102, 0.2523278594017029, -0.26743996143341064, 0.08058193325996399, 0.8018405437469482, -0.005464806687086821, 0.011876367032527924, 0.0015100124292075634]} +{"t": 2.3129, "q": [-0.15584051609039307, 0.00831417553126812, 0.021721655502915382, 0.318522572517395, -0.15930350124835968, -0.003271545050665736, -0.10953134298324585, -0.02551521360874176, 0.0470055527985096, 0.3211047947406769, -0.22512035071849823, 0.02664564549922943, 0.0038568659219890833, 0.0020790044218301773, 0.011699791066348553, 0.24390295147895813, 0.2505781650543213, -0.08525577932596207, 0.8372898697853088, -0.00920388475060463, 0.00044341632747091353, -0.006052033975720406, 0.2520522177219391, -0.26743996143341064, 0.08058193325996399, 0.8018165826797485, -0.005476790945976973, 0.011876367032527924, 0.0015219965716823936]} +{"t": 2.3297, "q": [-0.15584051609039307, 0.008305653929710388, 0.021721655502915382, 0.318522572517395, -0.15929488837718964, -0.0032574422657489777, -0.10954838246107101, -0.02551521360874176, 0.046965379267930984, 0.32111331820487976, -0.22511602938175201, 0.026638442650437355, 0.004017568659037352, 0.0022142964880913496, 0.011613447219133377, 0.2434355616569519, 0.25059014558792114, -0.08519585430622101, 0.8368943929672241, -0.009191900491714478, 0.00033555831760168076, -0.006052033975720406, 0.2518245279788971, -0.26746395230293274, 0.08058193325996399, 0.8018165826797485, -0.005452822428196669, 0.011888351291418076, 0.0015100124292075634]} +{"t": 2.3464, "q": [-0.15583199262619019, 0.008305653929710388, 0.021708263084292412, 0.318522572517395, -0.15931200981140137, -0.0032574560027569532, -0.10952281951904297, -0.02551521360874176, 0.046978771686553955, 0.3211047947406769, -0.22512035071849823, 0.02664564549922943, 0.004084527958184481, 0.0023345565423369408, 0.01153668761253357, 0.24298016726970673, 0.250602126121521, -0.08518387377262115, 0.8364390134811401, -0.009167931973934174, 0.0001917476038215682, -0.006052033975720406, 0.2517286539077759, -0.2674519419670105, 0.08056994527578354, 0.8018165826797485, -0.005464806687086821, 0.011864382773637772, 0.0015339808305725455]} +{"t": 2.3632, "q": [-0.15581494569778442, 0.008297130465507507, 0.021735046058893204, 0.31851404905319214, -0.15930774807929993, -0.003264504950493574, -0.10952281951904297, -0.02551521360874176, 0.04699216037988663, 0.3210877478122711, -0.22512468695640564, 0.026652846485376358, 0.004057744517922401, 0.0025298981927335262, 0.011459868401288986, 0.24240492284297943, 0.25061410665512085, -0.0851718857884407, 0.8359236717224121, -0.009179916232824326, 0.000107858024421148, -0.006040049716830254, 0.2516807019710541, -0.26743996143341064, 0.08056994527578354, 0.8018165826797485, -0.005440838169306517, 0.011864382773637772, 0.0015100124292075634]} +{"t": 2.3801, "q": [-0.15579789876937866, 0.008305653929710388, 0.021735046058893204, 0.31849703192710876, -0.15931200981140137, -0.0032574560027569532, -0.10953134298324585, -0.02551521360874176, 0.046978771686553955, 0.32107070088386536, -0.22512884438037872, 0.026645729318261147, 0.004017568659037352, 0.002680018078535795, 0.011488501913845539, 0.24185365438461304, 0.25061410665512085, -0.0851718857884407, 0.8356360793113708, -0.009239837527275085, 5.992112710373476e-05, -0.006052033975720406, 0.2516927123069763, -0.26746395230293274, 0.08055796474218369, 0.8018165826797485, -0.005440838169306517, 0.011864382773637772, 0.0014980281703174114]} +{"t": 2.3968, "q": [-0.15579789876937866, 0.008305653929710388, 0.021748438477516174, 0.3184373676776886, -0.15931200981140137, -0.0032574560027569532, -0.10953986644744873, -0.025523735210299492, 0.04701894521713257, 0.32101956009864807, -0.22512884438037872, 0.026645729318261147, 0.0038568659219890833, 0.002905158093199134, 0.011555410921573639, 0.2413623034954071, 0.2506261169910431, -0.0851718857884407, 0.8354443311691284, -0.009227853268384933, 3.5952674807049334e-05, -0.006040049716830254, 0.25178858637809753, -0.2674519419670105, 0.08055796474218369, 0.8018165826797485, -0.005452822428196669, 0.011864382773637772, 0.0015100124292075634]} +{"t": 2.4135, "q": [-0.15578937530517578, 0.008297130465507507, 0.021748438477516174, 0.31842032074928284, -0.1593119502067566, -0.003243368584662676, -0.10953986644744873, -0.025523735210299492, 0.04701894521713257, 0.3210110366344452, -0.22512434422969818, 0.026624206453561783, 0.0037631227169185877, 0.0031152174342423677, 0.011660664342343807, 0.24093087017536163, 0.25061410665512085, -0.08518387377262115, 0.8352406024932861, -0.00920388475060463, 4.793690095539205e-05, -0.006040049716830254, 0.25190842151641846, -0.26743996143341064, 0.08059391379356384, 0.8018405437469482, -0.005428853910416365, 0.011876367032527924, 0.0014860439114272594]} +{"t": 2.4304, "q": [-0.15580642223358154, 0.008288608863949776, 0.021748438477516174, 0.3183521330356598, -0.15930774807929993, -0.003264504950493574, -0.10953986644744873, -0.025532258674502373, 0.04701894521713257, 0.3209599256515503, -0.2251329869031906, 0.026638612151145935, 0.003696163184940815, 0.003325199242681265, 0.011813834309577942, 0.24059531092643738, 0.25066205859184265, -0.0851718857884407, 0.8351806402206421, -0.009251821786165237, 7.190534961409867e-05, -0.006052033975720406, 0.25211215019226074, -0.26741600036621094, 0.08058193325996399, 0.8018165826797485, -0.005428853910416365, 0.011876367032527924, 0.0015219965716823936]} +{"t": 2.4472, "q": [-0.15580642223358154, 0.008280087262392044, 0.021775221452116966, 0.3183436095714569, -0.15930770337581635, -0.0032504089176654816, -0.10953986644744873, -0.025549301877617836, 0.04703233763575554, 0.3209514021873474, -0.2251329869031906, 0.026638612151145935, 0.0036827712319791317, 0.003560378449037671, 0.011962604708969593, 0.24037958681583405, 0.2508298456668854, -0.08515990525484085, 0.8351806402206421, -0.009239837527275085, 0.00011984225420746952, -0.006040049716830254, 0.2522439658641815, -0.2674519419670105, 0.08055796474218369, 0.8018405437469482, -0.005440838169306517, 0.01191231980919838, 0.0014980281703174114]} +{"t": 2.4639, "q": [-0.15579789876937866, 0.008297130465507507, 0.021775221452116966, 0.31832656264305115, -0.15929913520812988, -0.003250401932746172, -0.10953986644744873, -0.025557823479175568, 0.04704573005437851, 0.32094287872314453, -0.2251329869031906, 0.026638612151145935, 0.0036827712319791317, 0.003849506378173828, 0.01214509829878807, 0.24028371274471283, 0.25109347701072693, -0.08502807468175888, 0.8352046012878418, -0.009239837527275085, 0.00016777915880084038, -0.00606401776894927, 0.2523518204689026, -0.2674519419670105, 0.08055796474218369, 0.8018525242805481, -0.005416869651526213, 0.011864382773637772, 0.0015100124292075634]} +{"t": 2.4808, "q": [-0.15580642223358154, 0.008305653929710388, 0.021761830896139145, 0.31831806898117065, -0.15931200981140137, -0.0032574560027569532, -0.10953134298324585, -0.02557486854493618, 0.04704573005437851, 0.32094287872314453, -0.22512884438037872, 0.026645729318261147, 0.003736338810995221, 0.004222328308969736, 0.012380417436361313, 0.24040356278419495, 0.25135713815689087, -0.08500410616397858, 0.8352765440940857, -0.009239837527275085, 0.00022770027862861753, -0.006052033975720406, 0.25227993726730347, -0.26746395230293274, 0.08058193325996399, 0.8018525242805481, -0.005416869651526213, 0.011876367032527924, 0.0015100124292075634]} +{"t": 2.4975, "q": [-0.15581494569778442, 0.008305653929710388, 0.021775221452116966, 0.3183010220527649, -0.15930764377117157, -0.0032363126520067453, -0.10953986644744873, -0.02562600187957287, 0.04703233763575554, 0.3209514021873474, -0.22512468695640564, 0.026652846485376358, 0.0038970415480434895, 0.00468060839921236, 0.012677458114922047, 0.24063125252723694, 0.2516687214374542, -0.08493220061063766, 0.8353244662284851, -0.009239837527275085, 0.0002636529679875821, -0.006052033975720406, 0.2523278594017029, -0.26746395230293274, 0.08058193325996399, 0.8018764853477478, -0.005440838169306517, 0.011876367032527924, 0.0014740596525371075]} +{"t": 2.5142, "q": [-0.1558234691619873, 0.008297130465507507, 0.021775221452116966, 0.31833508610725403, -0.15930770337581635, -0.0032504089176654816, -0.10954838246107101, -0.02569417841732502, 0.04703233763575554, 0.32093435525894165, -0.2251329869031906, 0.026638612151145935, 0.0041247038170695305, 0.005262163933366537, 0.013041048310697079, 0.24089491367340088, 0.25198033452033997, -0.0848722830414772, 0.8354563117027283, -0.009227853268384933, 0.00032357408781535923, -0.006040049716830254, 0.2523038983345032, -0.2674519419670105, 0.08055796474218369, 0.8019124269485474, -0.005428853910416365, 0.011888351291418076, 0.0015100124292075634]} +{"t": 2.5311, "q": [-0.15584902465343475, 0.008297130465507507, 0.021761830896139145, 0.31833508610725403, -0.1593034416437149, -0.0032574578654021025, -0.10953134298324585, -0.025796443223953247, 0.04701894521713257, 0.3209514021873474, -0.22512884438037872, 0.026645729318261147, 0.004405933897942305, 0.005757222417742014, 0.013370689935982227, 0.24123047292232513, 0.25213611125946045, -0.08481236547231674, 0.8356360793113708, -0.009227853268384933, 0.000431432097684592, -0.006040049716830254, 0.2522439658641815, -0.2674519419670105, 0.08055796474218369, 0.8019363880157471, -0.005416869651526213, 0.011888351291418076, 0.0015100124292075634]} +{"t": 2.5478, "q": [-0.15588311851024628, 0.008305653929710388, 0.021775221452116966, 0.31833508610725403, -0.1593119502067566, -0.003243368584662676, -0.10953986644744873, -0.02594131976366043, 0.04701894521713257, 0.3209514021873474, -0.22512884438037872, 0.026645729318261147, 0.004700555466115475, 0.006210104562342167, 0.013713917694985867, 0.24175778031349182, 0.25218406319618225, -0.08486030250787735, 0.8356720209121704, -0.009167931973934174, 0.0004913532175123692, -0.00606401776894927, 0.2522679269313812, -0.2674759328365326, 0.08058193325996399, 0.8019363880157471, -0.005416869651526213, 0.011876367032527924, 0.0015219965716823936]} +{"t": 2.5645, "q": [-0.15590016543865204, 0.008297130465507507, 0.021775221452116966, 0.31833508610725403, -0.15932045876979828, -0.003229288151487708, -0.10954838246107101, -0.02612028457224369, 0.0470055527985096, 0.32094287872314453, -0.22512468695640564, 0.026652846485376358, 0.004941609688103199, 0.006595001555979252, 0.01405259594321251, 0.24222515523433685, 0.25217205286026, -0.08494418859481812, 0.8356720209121704, -0.009167931973934174, 0.0005273059359751642, -0.00606401776894927, 0.2523038983345032, -0.2674279808998108, 0.08055796474218369, 0.8019484281539917, -0.005416869651526213, 0.011900335550308228, 0.0014860439114272594]} +{"t": 2.5813, "q": [-0.15590016543865204, 0.008297130465507507, 0.021761830896139145, 0.31836065649986267, -0.15932470560073853, -0.003222239203751087, -0.10954838246107101, -0.02629072591662407, 0.0470055527985096, 0.32093435525894165, -0.22511637210845947, 0.02666708268225193, 0.00516927195712924, 0.007078159134835005, 0.01433787401765585, 0.2422611117362976, 0.25211215019226074, -0.08508799970149994, 0.8355880975723267, -0.009096027351915836, 0.0004793690168298781, -0.006052033975720406, 0.2523758113384247, -0.26746395230293274, 0.08055796474218369, 0.8019484281539917, -0.005440838169306517, 0.011876367032527924, 0.0014980281703174114]} +{"t": 2.598, "q": [-0.15593425929546356, 0.008288608863949776, 0.021748438477516174, 0.31837770342826843, -0.15931610763072968, -0.003208136186003685, -0.10953986644744873, -0.026444124057888985, 0.04699216037988663, 0.32094287872314453, -0.22514164447784424, 0.02665303647518158, 0.005731731187552214, 0.0075914799235761166, 0.014670909382402897, 0.24209333956241608, 0.2520042955875397, -0.08520784229040146, 0.8352885246276855, -0.009072058834135532, 0.00035952674807049334, -0.00601608119904995, 0.2523518204689026, -0.2674519419670105, 0.08055796474218369, 0.8019963502883911, -0.005428853910416365, 0.011864382773637772, 0.0014980281703174114]} +{"t": 2.6147, "q": [-0.15599390864372253, 0.008280087262392044, 0.021721655502915382, 0.3183436095714569, -0.15934176743030548, -0.0032081655226647854, -0.10953134298324585, -0.026640132069587708, 0.04693859443068504, 0.32094287872314453, -0.22513334453105927, 0.026667270809412003, 0.006160271819680929, 0.00819520652294159, 0.01500302366912365, 0.24194952845573425, 0.2520042955875397, -0.0851479172706604, 0.835108757019043, -0.009084043093025684, 7.190534961409867e-05, -0.006076002027839422, 0.2522679269313812, -0.26746395230293274, 0.08055796474218369, 0.8019963502883911, -0.005392901133745909, 0.011888351291418076, 0.0015100124292075634]} +{"t": 2.6314, "q": [-0.15594276785850525, 0.008271565660834312, 0.021721655502915382, 0.31833508610725403, -0.15933315455913544, -0.003194062504917383, -0.10952281951904297, -0.026767965406179428, 0.04692520201206207, 0.32092583179473877, -0.22514614462852478, 0.026674559339880943, 0.006294190883636475, 0.009342924691736698, 0.01515974197536707, 0.24175778031349182, 0.25198033452033997, -0.08515990525484085, 0.8348930478096008, -0.009072058834135532, -0.000215716048842296, -0.006052033975720406, 0.2520042955875397, -0.26746395230293274, 0.08055796474218369, 0.8019723892211914, -0.005428853910416365, 0.011888351291418076, 0.0014980281703174114]} +{"t": 2.6482, "q": [-0.15590868890285492, 0.008263042196631432, 0.021721655502915382, 0.31832656264305115, -0.15934166312217712, -0.0031799734570086002, -0.10940351337194443, -0.026861708611249924, 0.04688502848148346, 0.32094287872314453, -0.2251463085412979, 0.02668887935578823, 0.006294190883636475, 0.011162725277245045, 0.01535492017865181, 0.24148213863372803, 0.2520282566547394, -0.08513593673706055, 0.8345215320587158, -0.009108011610805988, -0.0003834952076431364, -0.006052033975720406, 0.2515488862991333, -0.2674759328365326, 0.08055796474218369, 0.8019843697547913, -0.005464806687086821, 0.011876367032527924, 0.0014740596525371075]} +{"t": 2.6651, "q": [-0.15585754811763763, 0.0082545205950737, 0.02165469527244568, 0.3183521330356598, -0.15933315455913544, -0.003194062504917383, -0.10934385657310486, -0.026878751814365387, 0.04681806638836861, 0.3209514021873474, -0.225150465965271, 0.02668176218867302, 0.006374542135745287, 0.013163808733224869, 0.015411032363772392, 0.24123047292232513, 0.2520042955875397, -0.08504006266593933, 0.8339822292327881, -0.00914396345615387, -0.000862864195369184, -0.006052033975720406, 0.2512253224849701, -0.2674759328365326, 0.08058193325996399, 0.8019843697547913, -0.005404885392636061, 0.01185239851474762, 0.0014980281703174114]} +{"t": 2.6818, "q": [-0.15586607158184052, 0.008245998993515968, 0.02166808769106865, 0.31831806898117065, -0.15932466089725494, -0.0032081431709229946, -0.1093268096446991, -0.026895796880126, 0.04681806638836861, 0.3209514021873474, -0.2251463085412979, 0.02668887935578823, 0.006508461199700832, 0.015617855824530125, 0.0154725918546319, 0.2407630831003189, 0.2520162761211395, -0.0848483145236969, 0.8328916430473328, -0.00914396345615387, -0.0014500912511721253, -0.00606401776894927, 0.2511054575443268, -0.26746395230293274, 0.08054597675800323, 0.8019843697547913, -0.005392901133745909, 0.011888351291418076, 0.0014980281703174114]} +{"t": 2.6986, "q": [-0.1558745950460434, 0.008280087262392044, 0.02165469527244568, 0.3183436095714569, -0.15933741629123688, -0.0031870135571807623, -0.10928419977426529, -0.02688727341592312, 0.04675110802054405, 0.32098546624183655, -0.2251419872045517, 0.026681676506996155, 0.006481677293777466, 0.018396900966763496, 0.015366936102509499, 0.24023577570915222, 0.2520162761211395, -0.08483633399009705, 0.8317052125930786, -0.009227853268384933, -0.0018695391481742263, -0.006076002027839422, 0.2511534094810486, -0.26748791337013245, 0.08053399622440338, 0.8019843697547913, -0.005416869651526213, 0.011876367032527924, 0.0015100124292075634]} +{"t": 2.7153, "q": [-0.15584902465343475, 0.008263042196631432, 0.021641302853822708, 0.3183521330356598, -0.15932035446166992, -0.003201096085831523, -0.10927567631006241, -0.026878751814365387, 0.04671093076467514, 0.32099398970603943, -0.2251463085412979, 0.02668887935578823, 0.006441501900553703, 0.020896680653095245, 0.015199563466012478, 0.2400919646024704, 0.25198033452033997, -0.08480037748813629, 0.8307225108146667, -0.009311743080615997, -0.002157160546630621, -0.006052033975720406, 0.25139307975769043, -0.26746395230293274, 0.08052200824022293, 0.8019843697547913, -0.005428853910416365, 0.011876367032527924, 0.0014980281703174114]} +{"t": 2.7321, "q": [-0.15578937530517578, 0.008263042196631432, 0.021601127460598946, 0.3183521330356598, -0.15932466089725494, -0.0032081431709229946, -0.10919898003339767, -0.026853185147047043, 0.0466841496527195, 0.32101956009864807, -0.2251463085412979, 0.02668887935578823, 0.006481677293777466, 0.023630350828170776, 0.015029668807983398, 0.2401159405708313, 0.25193238258361816, -0.08475244045257568, 0.829871654510498, -0.00932372733950615, -0.0024088292848318815, -0.006052033975720406, 0.25165674090385437, -0.26748791337013245, 0.08049803972244263, 0.8019963502883911, -0.005416869651526213, 0.011888351291418076, 0.0014740596525371075]} +{"t": 2.7488, "q": [-0.15570415556430817, 0.008263042196631432, 0.02150738425552845, 0.3183947503566742, -0.1593203991651535, -0.0032151832710951567, -0.1090967133641243, -0.026819096878170967, 0.046590406447649, 0.3210621774196625, -0.2251419872045517, 0.026681676506996155, 0.006642380263656378, 0.02640821598470211, 0.015083127655088902, 0.240139901638031, 0.25195634365081787, -0.08474045991897583, 0.8290807008743286, -0.009359680116176605, -0.002600576961413026, -0.006052033975720406, 0.2519923150539398, -0.26746395230293274, 0.08052200824022293, 0.8020203113555908, -0.005404885392636061, 0.011900335550308228, 0.0014980281703174114]} +{"t": 2.7656, "q": [-0.15569563210010529, 0.008305653929710388, 0.02133329026401043, 0.31842032074928284, -0.15931615233421326, -0.0032222322188317776, -0.1090029701590538, -0.026767965406179428, 0.0463627427816391, 0.3211047947406769, -0.2251463085412979, 0.02668887935578823, 0.007003961596637964, 0.029109783470630646, 0.015230892226099968, 0.23990021646022797, 0.2518964409828186, -0.08477640897035599, 0.8277384638786316, -0.009443569928407669, -0.003032008884474635, -0.00606401776894927, 0.25213611125946045, -0.26748791337013245, 0.08052200824022293, 0.8020921945571899, -0.005416869651526213, 0.011900335550308228, 0.0015339808305725455]} +{"t": 2.7823, "q": [-0.15569563210010529, 0.008271565660834312, 0.02117258682847023, 0.31849703192710876, -0.15931189060211182, -0.0032292725518345833, -0.10897740721702576, -0.02672535367310047, 0.04622882232069969, 0.3211559057235718, -0.22514598071575165, 0.026660239323973656, 0.007271799258887768, 0.03177407756447792, 0.015196778811514378, 0.23931299149990082, 0.25181254744529724, -0.0848722830414772, 0.8265400528907776, -0.009551427327096462, -0.003367567202076316, -0.006028065457940102, 0.25227993726730347, -0.26748791337013245, 0.08052200824022293, 0.8021880984306335, -0.005392901133745909, 0.01191231980919838, 0.0014980281703174114]} +{"t": 2.7991, "q": [-0.1556359827518463, 0.008263042196631432, 0.021078843623399734, 0.318522572517395, -0.15929058194160461, -0.003250395180657506, -0.1089092269539833, -0.02665717713534832, 0.0460413359105587, 0.3211814761161804, -0.2251463085412979, 0.02668887935578823, 0.00743250222876668, 0.034430187195539474, 0.015201902948319912, 0.23876172304153442, 0.25165674090385437, -0.08476442843675613, 0.8255093693733215, -0.009731191210448742, -0.003775030840188265, -0.006040049716830254, 0.2522679269313812, -0.26748791337013245, 0.08049803972244263, 0.8023198843002319, -0.005416869651526213, 0.011888351291418076, 0.0014860439114272594]} +{"t": 2.8158, "q": [-0.15552519261837006, 0.008263042196631432, 0.02099849283695221, 0.31854814291000366, -0.15929058194160461, -0.003250395180657506, -0.10884104669094086, -0.026606043800711632, 0.045947592705488205, 0.32117295265197754, -0.22515462338924408, 0.026674645021557808, 0.0076467725448310375, 0.03639109805226326, 0.01534248050302267, 0.23818647861480713, 0.25156086683273315, -0.08478839695453644, 0.8246105909347534, -0.009898969903588295, -0.004278368316590786, -0.006052033975720406, 0.2522679269313812, -0.2674759328365326, 0.08052200824022293, 0.8024038076400757, -0.005440838169306517, 0.011900335550308228, 0.0014980281703174114]} +{"t": 2.8325, "q": [-0.1554570198059082, 0.008245998993515968, 0.02082439698278904, 0.3185651898384094, -0.15928637981414795, -0.0032715226989239454, -0.10873878747224808, -0.026461169123649597, 0.045773498713970184, 0.32117295265197754, -0.22515462338924408, 0.026674645021557808, 0.007941394113004208, 0.038320790976285934, 0.015548287890851498, 0.2376711517572403, 0.25139307975769043, -0.08474045991897583, 0.8235559463500977, -0.010126669891178608, -0.004805674310773611, -0.006040049716830254, 0.2522679269313812, -0.2674759328365326, 0.08054597675800323, 0.8024756908416748, -0.005440838169306517, 0.011888351291418076, 0.0014980281703174114]} +{"t": 2.8493, "q": [-0.15543997287750244, 0.008237475529313087, 0.020717263221740723, 0.3185651898384094, -0.15927362442016602, -0.003292652079835534, -0.10870469361543655, -0.02630777098238468, 0.04567975550889969, 0.32117295265197754, -0.2251712530851364, 0.02664615772664547, 0.008048529736697674, 0.0396316759288311, 0.015794988721609116, 0.23719178140163422, 0.2512732446193695, -0.084596648812294, 0.8226691484451294, -0.010450243949890137, -0.00523710623383522, -0.006040049716830254, 0.2522200047969818, -0.2674759328365326, 0.08058193325996399, 0.8025116324424744, -0.005428853910416365, 0.01191231980919838, 0.0015100124292075634]} +{"t": 2.866, "q": [-0.15540587902069092, 0.0082545205950737, 0.020623520016670227, 0.3185651898384094, -0.15926936268806458, -0.00329969241283834, -0.10867913067340851, -0.026137327775359154, 0.04555922746658325, 0.3211559057235718, -0.2251918613910675, 0.026596250012516975, 0.00814227294176817, 0.040565211325883865, 0.016040442511439323, 0.2367963045835495, 0.25116539001464844, -0.08436894416809082, 0.8218661546707153, -0.010845723561942577, -0.005872270558029413, -0.006076002027839422, 0.2520282566547394, -0.26748791337013245, 0.08058193325996399, 0.8025476336479187, -0.005416869651526213, 0.011900335550308228, 0.0015339808305725455]} +{"t": 2.8829, "q": [-0.15540587902069092, 0.0082545205950737, 0.020476208999753, 0.3185651898384094, -0.15926511585712433, -0.0033067413605749607, -0.10860243439674377, -0.02599245123565197, 0.045452095568180084, 0.32116442918777466, -0.22526642680168152, 0.026482390239834785, 0.008249407634139061, 0.040889207273721695, 0.016075512394309044, 0.2364727258682251, 0.2510455548763275, -0.08403338491916656, 0.8210152983665466, -0.01119326613843441, -0.006699182093143463, -0.006052033975720406, 0.2520042955875397, -0.2674759328365326, 0.08053399622440338, 0.8025476336479187, -0.005416869651526213, 0.01191231980919838, 0.0015339808305725455]} +{"t": 2.8997, "q": [-0.15538030862808228, 0.008263042196631432, 0.020248545333743095, 0.31854814291000366, -0.1592651605606079, -0.0033208373934030533, -0.10842346400022507, -0.025856098160147667, 0.04519764706492424, 0.3211474120616913, -0.2253572940826416, 0.026325710117816925, 0.008423502556979656, 0.04085903987288475, 0.01607625000178814, 0.2362210601568222, 0.25075793266296387, -0.08404537290334702, 0.8196850419044495, -0.011612714268267155, -0.00782569870352745, -0.00606401776894927, 0.2520522177219391, -0.26751187443733215, 0.08049803972244263, 0.802523672580719, -0.005404885392636061, 0.01191231980919838, 0.0015219965716823936]} +{"t": 2.9165, "q": [-0.1553718000650406, 0.008228953927755356, 0.02002088353037834, 0.31854814291000366, -0.1592651605606079, -0.0033208373934030533, -0.1081763282418251, -0.02580496482551098, 0.04490302503108978, 0.32103660702705383, -0.22539032995700836, 0.02626873552799225, 0.00866455677896738, 0.04070069268345833, 0.016075346618890762, 0.23606526851654053, 0.25036245584487915, -0.08404537290334702, 0.8177675604820251, -0.011948272585868835, -0.009072058834135532, -0.006040049716830254, 0.2521960437297821, -0.2675957679748535, 0.08042613416910172, 0.8025715947151184, -0.005404885392636061, 0.011900335550308228, 0.0014860439114272594]} +{"t": 2.9333, "q": [-0.15538030862808228, 0.0082545205950737, 0.019779829308390617, 0.3185651898384094, -0.1592608541250229, -0.0033137816935777664, -0.10796327143907547, -0.025830531492829323, 0.044608402997255325, 0.3209514021873474, -0.22539032995700836, 0.02626873552799225, 0.009012745693325996, 0.040414441376924515, 0.016034577041864395, 0.23553796112537384, 0.2497991919517517, -0.08399743586778641, 0.8159579634666443, -0.012319783680140972, -0.0103783393278718, -0.006052033975720406, 0.25227993726730347, -0.26773956418037415, 0.08037819713354111, 0.8025715947151184, -0.005440838169306517, 0.011900335550308228, 0.0014860439114272594]} +{"t": 2.9501, "q": [-0.15538030862808228, 0.008245998993515968, 0.01948520727455616, 0.31864190101623535, -0.15927372872829437, -0.003320844378322363, -0.10769908875226974, -0.02599245123565197, 0.04435395821928978, 0.320908784866333, -0.22539860010147095, 0.026254497468471527, 0.00933415163308382, 0.04021098092198372, 0.016015667468309402, 0.23479494452476501, 0.24918799102306366, -0.08387759327888489, 0.8140884041786194, -0.01276320032775402, -0.011576761491596699, -0.006076002027839422, 0.25227993726730347, -0.26785942912101746, 0.0803062915802002, 0.8025955557823181, -0.005452822428196669, 0.011900335550308228, 0.0014381069922819734]} +{"t": 2.9669, "q": [-0.15533770620822906, 0.0082545205950737, 0.019364681094884872, 0.31882938742637634, -0.15926511585712433, -0.0033067413605749607, -0.1074434220790863, -0.026214027777314186, 0.04417986422777176, 0.32084059715270996, -0.2254030555486679, 0.02627601847052574, 0.009535029530525208, 0.04005301743745804, 0.015957338735461235, 0.23408786952495575, 0.24856480956077576, -0.0839255303144455, 0.8119552135467529, -0.013230584561824799, -0.012631373479962349, -0.006040049716830254, 0.2521960437297821, -0.267895370721817, 0.08018644899129868, 0.8025955557823181, -0.005440838169306517, 0.01191231980919838, 0.0014740596525371075]} +{"t": 2.9836, "q": [-0.15531213581562042, 0.008245998993515968, 0.01931111328303814, 0.319042444229126, -0.159269317984581, -0.0032856049947440624, -0.10718776285648346, -0.026554912328720093, 0.04404594376683235, 0.32080650329589844, -0.2253989279270172, 0.026283137500286102, 0.009776083752512932, 0.039940521121025085, 0.01585950143635273, 0.23314112424850464, 0.24784576892852783, -0.08385362476110458, 0.8091269731521606, -0.013733922503888607, -0.014057496562600136, -0.006052033975720406, 0.2520522177219391, -0.26785942912101746, 0.08018644899129868, 0.8025715947151184, -0.005404885392636061, 0.011888351291418076, 0.0014740596525371075]} +{"t": 3.0004, "q": [-0.15521839261054993, 0.008177820593118668, 0.01915041171014309, 0.3191617429256439, -0.15927787125110626, -0.003285611979663372, -0.10693209618330002, -0.026929885149002075, 0.043938808143138885, 0.3208150267601013, -0.22539067268371582, 0.026297375559806824, 0.010204624384641647, 0.03988073766231537, 0.01577477902173996, 0.2314513474702835, 0.2470787763595581, -0.08366187661886215, 0.8067540526390076, -0.014333133585751057, -0.01601092517375946, -0.006052033975720406, 0.25195634365081787, -0.26783543825149536, 0.08018644899129868, 0.8025955557823181, -0.005440838169306517, 0.011888351291418076, 0.0014860439114272594]} +{"t": 3.0171, "q": [-0.1551843136548996, 0.008084077388048172, 0.01896292343735695, 0.3194515109062195, -0.15928642451763153, -0.003285627579316497, -0.1065741702914238, -0.027338946238160133, 0.0436575785279274, 0.32093435525894165, -0.22539100050926208, 0.0263260155916214, 0.010552814230322838, 0.03987335413694382, 0.015751028433442116, 0.2290065586566925, 0.2439628690481186, -0.0821518674492836, 0.8014929890632629, -0.0174490325152874, -0.022338595241308212, -0.006099970545619726, 0.25139307975769043, -0.26603782176971436, 0.07939549535512924, 0.8047527074813843, -0.005440838169306517, 0.011936288326978683, 0.0015339808305725455]} +{"t": 3.0339, "q": [-0.15534622967243195, 0.0079562459141016, 0.018614735454320908, 0.31978386640548706, -0.1592906266450882, -0.0032644823659211397, -0.10636111348867416, -0.02767983078956604, 0.04330939054489136, 0.3209599256515503, -0.22537843883037567, 0.026333073154091835, 0.0122669767588377, 0.039827894419431686, 0.01578080654144287, 0.22712503373622894, 0.2404155433177948, -0.07953930646181107, 0.7914502024650574, -0.02123604714870453, -0.032045818865299225, -0.006087986286729574, 0.2506740391254425, -0.26306572556495667, 0.07865247130393982, 0.8103493452072144, -0.005416869651526213, 0.0120321623980999, 0.0014261228498071432]} +{"t": 3.0506, "q": [-0.1553718000650406, 0.007734671700745821, 0.018199585378170013, 0.3199457824230194, -0.15928207337856293, -0.0032644756138324738, -0.10602875053882599, -0.028233768418431282, 0.042787104845047, 0.3210451304912567, -0.22536209225654602, 0.026375869289040565, 0.014771261252462864, 0.03971514105796814, 0.01572125405073166, 0.22428476810455322, 0.23503462970256805, -0.07726229727268219, 0.7812276482582092, -0.02588592655956745, -0.043358925729990005, -0.00606401776894927, 0.2504822909832001, -0.2597341239452362, 0.07805325835943222, 0.8156703114509583, -0.005416869651526213, 0.012163988314568996, 0.001318264752626419]} +{"t": 3.0673, "q": [-0.1553718000650406, 0.00730856554582715, 0.017945140600204468, 0.3204571008682251, -0.15926486253738403, -0.003236278658732772, -0.10573899745941162, -0.028855882585048676, 0.04251926764845848, 0.32124966382980347, -0.22531253099441528, 0.026461338624358177, 0.018025491386651993, 0.039662618190050125, 0.01567942649126053, 0.22017419338226318, 0.22729282081127167, -0.07426624745130539, 0.7682247757911682, -0.031123032793402672, -0.05385710671544075, -0.006099970545619726, 0.25073397159576416, -0.25665417313575745, 0.07804127782583237, 0.8204999566078186, -0.005452822428196669, 0.012235893867909908, 0.0014141385909169912]} +{"t": 3.084, "q": [-0.15551666915416718, 0.0070699467323720455, 0.01779782958328724, 0.321096271276474, -0.15929463505744934, -0.003186988178640604, -0.10549186170101166, -0.029222333803772926, 0.042425524443387985, 0.32130080461502075, -0.22525471448898315, 0.026561027392745018, 0.021025275811553, 0.039670322090387344, 0.01565532013773918, 0.21615947782993317, 0.21921545267105103, -0.07173757255077362, 0.7583737373352051, -0.036192361265420914, -0.0631568655371666, -0.006111954804509878, 0.2510814964771271, -0.25308287143707275, 0.07799334079027176, 0.8239394426345825, -0.005464806687086821, 0.012295815162360668, 0.0014740596525371075]} +{"t": 3.1008, "q": [-0.15556779503822327, 0.006677928846329451, 0.01782461255788803, 0.32185474038124084, -0.1593201458454132, -0.003144729183986783, -0.10531289130449295, -0.02965696156024933, 0.042412132024765015, 0.32158201932907104, -0.22510090470314026, 0.026795845478773117, 0.026288291439414024, 0.039580170065164566, 0.015600021928548813, 0.20935243368148804, 0.2072432041168213, -0.06910104304552078, 0.7440525889396667, -0.041669152677059174, -0.07535681128501892, -0.00606401776894927, 0.2511773705482483, -0.24782179296016693, 0.07799334079027176, 0.8309022784233093, -0.005428853910416365, 0.012283830903470516, 0.0015219965716823936]} +{"t": 3.1175, "q": [-0.15592573583126068, 0.006541575770825148, 0.017771044746041298, 0.3227836489677429, -0.15934136509895325, -0.003095431951805949, -0.1050146222114563, -0.029929669573903084, 0.04233178123831749, 0.32176098227500916, -0.22481754422187805, 0.027222685515880585, 0.031176332384347916, 0.039520263671875, 0.015534442849457264, 0.20338428020477295, 0.19601398706436157, -0.06676411628723145, 0.7312055230140686, -0.04742157831788063, -0.087269127368927, -0.00612393906340003, 0.25121334195137024, -0.24206936359405518, 0.077957384288311, 0.8380089402198792, -0.005476790945976973, 0.01245160959661007, 0.0014860439114272594]} +{"t": 3.1344, "q": [-0.15629218518733978, 0.006209212820976973, 0.017221977934241295, 0.32373812794685364, -0.1593456268310547, -0.0030883830040693283, -0.10460555553436279, -0.030304642394185066, 0.04195680841803551, 0.3218291699886322, -0.22463013231754303, 0.027514396235346794, 0.03392167016863823, 0.03948257118463516, 0.015530544333159924, 0.19817115366458893, 0.18516826629638672, -0.06413957476615906, 0.7175914645195007, -0.05113668739795685, -0.09673666954040527, -0.006111954804509878, 0.2509017288684845, -0.236125186085701, 0.07794540375471115, 0.8435216546058655, -0.005464806687086821, 0.012559467926621437, 0.0014740596525371075]} +{"t": 3.1512, "q": [-0.15659897029399872, 0.005731974262744188, 0.016364896669983864, 0.3244369328022003, -0.15935412049293518, -0.0030743025708943605, -0.10413683950901031, -0.030730748549103737, 0.04131399840116501, 0.3219314217567444, -0.22448047995567322, 0.027770690619945526, 0.03488588705658913, 0.03946761041879654, 0.015511756762862206, 0.1934853196144104, 0.1742626130580902, -0.06304901093244553, 0.7034140825271606, -0.05493569001555443, -0.10674349218606949, -0.006099970545619726, 0.24989506602287292, -0.22977355122566223, 0.07805325835943222, 0.8484591841697693, -0.005440838169306517, 0.012571452185511589, 0.0015100124292075634]} +{"t": 3.1679, "q": [-0.1565563678741455, 0.0053655230440199375, 0.01594974845647812, 0.3250505328178406, -0.1593455672264099, -0.0030742958188056946, -0.10349768400192261, -0.031131288036704063, 0.04081849753856659, 0.32193994522094727, -0.22424334287643433, 0.02816218137741089, 0.035126943141222, 0.039459969848394394, 0.015526290982961655, 0.18897925317287445, 0.1640520542860031, -0.06291718035936356, 0.6895483732223511, -0.059130165725946426, -0.11761318892240524, -0.00612393906340003, 0.24839703738689423, -0.22306238114833832, 0.07800532132387161, 0.8532528877258301, -0.005416869651526213, 0.012607404962182045, 0.0014860439114272594]} +{"t": 3.1846, "q": [-0.15653932094573975, 0.005169515032321215, 0.01577565260231495, 0.32580047845840454, -0.1593710333108902, -0.003017940791323781, -0.10290113836526871, -0.031369905918836594, 0.04071136191487312, 0.32193994522094727, -0.22403547167778015, 0.02851817198097706, 0.03505998104810715, 0.03947512432932854, 0.015516364946961403, 0.1852761209011078, 0.15394935011863708, -0.06267749518156052, 0.6772405505180359, -0.062305986881256104, -0.127560093998909, -0.006135923322290182, 0.24741433560848236, -0.2166268527507782, 0.07806524634361267, 0.8570159077644348, -0.005404885392636061, 0.012619389221072197, 0.0014740596525371075]} +{"t": 3.2014, "q": [-0.15643705427646637, 0.005092815961688757, 0.015708694234490395, 0.3266015648841858, -0.15942642092704773, -0.002954583615064621, -0.10219380259513855, -0.03148069605231285, 0.040738146752119064, 0.3219314217567444, -0.223781555891037, 0.02892381325364113, 0.03500641509890556, 0.039467547088861465, 0.015521327964961529, 0.18130934238433838, 0.14387062191963196, -0.06279733777046204, 0.6644414067268372, -0.06653641909360886, -0.1374470740556717, -0.006135923322290182, 0.24671924114227295, -0.21014338731765747, 0.07831691205501556, 0.8607909679412842, -0.005440838169306517, 0.012667326256632805, 0.0015819177497178316]} +{"t": 3.2182, "q": [-0.15641148388385773, 0.004922373685985804, 0.015507815405726433, 0.327377051115036, -0.15946896374225616, -0.0028841549064964056, -0.10134159028530121, -0.03166818246245384, 0.04055066034197807, 0.3218291699886322, -0.2235194742679596, 0.0293580275028944, 0.03492606431245804, 0.03946742042899132, 0.015540470369160175, 0.1766594648361206, 0.13383983075618744, -0.06279733777046204, 0.6537754535675049, -0.06936469674110413, -0.14479340612888336, -0.006111954804509878, 0.24661138653755188, -0.20412731170654297, 0.0782330259680748, 0.8642663955688477, -0.005404885392636061, 0.012655341997742653, 0.0015939020086079836]} +{"t": 3.2349, "q": [-0.15638592839241028, 0.004666709806770086, 0.015025706961750984, 0.3280673623085022, -0.1595328003168106, -0.0027926124166697264, -0.10057459771633148, -0.03189827874302864, 0.04016229510307312, 0.3217950761318207, -0.22331112623214722, 0.029671022668480873, 0.03484571352601051, 0.039323851466178894, 0.015577338635921478, 0.1720934808254242, 0.12377307564020157, -0.06283329427242279, 0.6432892680168152, -0.07105447351932526, -0.15572302043437958, -0.006147907581180334, 0.24651551246643066, -0.19757193326950073, 0.07816112041473389, 0.8686525821685791, -0.005416869651526213, 0.012643357738852501, 0.0015100124292075634]} +{"t": 3.2517, "q": [-0.15639445185661316, 0.004436612594872713, 0.014570382423698902, 0.3286127746105194, -0.15955401957035065, -0.0027433063369244337, -0.10004622489213943, -0.03213689848780632, 0.039907850325107574, 0.32176098227500916, -0.22313617169857025, 0.0299413800239563, 0.034872494637966156, 0.03909752145409584, 0.015582661144435406, 0.16829447448253632, 0.11369434744119644, -0.06262955814599991, 0.6318802833557129, -0.07451791316270828, -0.16441158950328827, -0.006135923322290182, 0.24628780782222748, -0.19132815301418304, 0.07819706946611404, 0.8741174340248108, -0.005392901133745909, 0.012643357738852501, 0.0015100124292075634]} +{"t": 3.2685, "q": [-0.15641148388385773, 0.004223559517413378, 0.014302544295787811, 0.32896217703819275, -0.15957532823085785, -0.002722183708101511, -0.09963716566562653, -0.03232438489794731, 0.03977392986416817, 0.3217013478279114, -0.22296155989170074, 0.030240414664149284, 0.03488588705658913, 0.038954079151153564, 0.015600387938320637, 0.1651546061038971, 0.1046941950917244, -0.06274940073490143, 0.6195365190505981, -0.0785326287150383, -0.1748618334531784, -0.006207828875631094, 0.2460840791463852, -0.18550382554531097, 0.0782330259680748, 0.8794384002685547, -0.005440838169306517, 0.012667326256632805, 0.0014261228498071432]} +{"t": 3.2854, "q": [-0.15638592839241028, 0.003976418171077967, 0.014222193509340286, 0.3292093276977539, -0.15957953035831451, -0.0027010561898350716, -0.099330373108387, -0.0326056145131588, 0.03972036391496658, 0.32170987129211426, -0.22281606495380402, 0.030489591881632805, 0.034872494637966156, 0.03895414248108864, 0.015590816736221313, 0.16274577379226685, 0.09701230376958847, -0.06229400262236595, 0.6070129871368408, -0.0809055045247078, -0.1821242719888687, -0.006207828875631094, 0.24568860232830048, -0.18047045171260834, 0.07759785652160645, 0.8846994638442993, -0.005440838169306517, 0.012667326256632805, 0.0007669904152862728]} +{"t": 3.3021, "q": [-0.15636035799980164, 0.0037122326903045177, 0.01419540960341692, 0.3294564485549927, -0.15958373248577118, -0.0026799198240041733, -0.09912583976984024, -0.03291241079568863, 0.039733752608299255, 0.3217013478279114, -0.2226993292570114, 0.030660290271043777, 0.03479214385151863, 0.03898413106799126, 0.015618820674717426, 0.16028901934623718, 0.09115201979875565, -0.06274940073490143, 0.5960114598274231, -0.08306266367435455, -0.19045330584049225, -0.006207828875631094, 0.2455328106880188, -0.17680327594280243, 0.07744206488132477, 0.889133632183075, -0.0055007594637572765, 0.012655341997742653, -0.00027563716867007315]} +{"t": 3.3189, "q": [-0.1563262641429901, 0.003431003075093031, 0.014208801090717316, 0.32951611280441284, -0.15958373248577118, -0.0026799198240041733, -0.09910879284143448, -0.033185116946697235, 0.03964000940322876, 0.32167577743530273, -0.22259141504764557, 0.03085971437394619, 0.034551091492176056, 0.03900660201907158, 0.015642216429114342, 0.15870709717273712, 0.08568721264600754, -0.06264154613018036, 0.5846863985061646, -0.0851718857884407, -0.200352281332016, -0.006219812668859959, 0.24536502361297607, -0.17429856956005096, 0.0767589658498764, 0.8923693895339966, -0.005560680292546749, 0.012595420703291893, -0.0014620755100622773]} +{"t": 3.3357, "q": [-0.15635183453559875, 0.0032435166649520397, 0.014329328201711178, 0.3295672535896301, -0.1595964878797531, -0.0026587992906570435, -0.0991002693772316, -0.033364083617925644, 0.039599835872650146, 0.32163316011428833, -0.2225247323513031, 0.03095930628478527, 0.03459126502275467, 0.038968656212091446, 0.015676602721214294, 0.15779629349708557, 0.08110923320055008, -0.06244979798793793, 0.5738526582717896, -0.08735302090644836, -0.20762670040130615, -0.006231796927750111, 0.24502946436405182, -0.17323197424411774, 0.07558450847864151, 0.8953534364700317, -0.0055127437226474285, 0.012583436444401741, -0.0024327978026121855]} +{"t": 3.3525, "q": [-0.15639445185661316, 0.0030730743892490864, 0.014356112107634544, 0.3296780288219452, -0.15966880321502686, -0.002539071487262845, -0.09904062002897263, -0.03357713297009468, 0.039586443454027176, 0.3215905427932739, -0.22250410914421082, 0.031009230762720108, 0.03464483469724655, 0.038824643939733505, 0.01578046940267086, 0.15788018703460693, 0.07699864357709885, -0.06240186095237732, 0.5625514984130859, -0.08827580511569977, -0.2163032740354538, -0.006195844616740942, 0.24429842829704285, -0.1733398288488388, 0.07474561035633087, 0.8987090587615967, -0.0055007594637572765, 0.012595420703291893, -0.003032008884474635]} +{"t": 3.3692, "q": [-0.15639445185661316, 0.0029111537151038647, 0.014302544295787811, 0.3297206461429596, -0.15967720746994019, -0.0024967987556010485, -0.09890426695346832, -0.03374757617712021, 0.039425741881132126, 0.3215564489364624, -0.22247916460037231, 0.03105195239186287, 0.03467161953449249, 0.03871839866042137, 0.01587856002151966, 0.15808391571044922, 0.07417037338018417, -0.06268948316574097, 0.5512024760246277, -0.08829977363348007, -0.2241889089345932, -0.006243781186640263, 0.2434355616569519, -0.17355555295944214, 0.07435013353824615, 0.9026159048080444, -0.005452822428196669, 0.012571452185511589, -0.0032477250788360834]} +{"t": 3.3859, "q": [-0.15638592839241028, 0.002860021311789751, 0.014315936714410782, 0.3297291696071625, -0.15968140959739685, -0.002475671237334609, -0.09888722002506256, -0.03381575271487236, 0.039412349462509155, 0.32152238488197327, -0.22247916460037231, 0.03105195239186287, 0.034711793065071106, 0.03868810087442398, 0.015898358076810837, 0.1582397073507309, 0.07310377061367035, -0.06282130628824234, 0.5402608513832092, -0.08804810047149658, -0.2305525243282318, -0.006219812668859959, 0.24266858398914337, -0.17355555295944214, 0.0740385428071022, 0.9062830805778503, -0.005476790945976973, 0.012607404962182045, -0.003403519978746772]} +{"t": 3.4027, "q": [-0.1563774049282074, 0.002817410510033369, 0.014302544295787811, 0.32969507575035095, -0.159694105386734, -0.002440454438328743, -0.09888722002506256, -0.03389245271682739, 0.039439134299755096, 0.32144567370414734, -0.22247500717639923, 0.03105907142162323, 0.03475197032094002, 0.03880097717046738, 0.015938807278871536, 0.16032496094703674, 0.0734153613448143, -0.06294114887714386, 0.5280728936195374, -0.08785635232925415, -0.2398163378238678, -0.006219812668859959, 0.24227309226989746, -0.17339976131916046, 0.07382282614707947, 0.9092192053794861, -0.0055127437226474285, 0.012595420703291893, -0.0036312201991677284]} +{"t": 3.4195, "q": [-0.1563774049282074, 0.002817410510033369, 0.014168625697493553, 0.32964393496513367, -0.15969841182231903, -0.0024475015234202147, -0.09887869656085968, -0.03391801938414574, 0.03933199867606163, 0.3214286267757416, -0.22248780727386475, 0.03106635808944702, 0.0348992794752121, 0.038951411843299866, 0.016002297401428223, 0.16326110064983368, 0.07421831041574478, -0.06316885352134705, 0.5156812071800232, -0.08777246624231339, -0.24704281985759735, -0.006219812668859959, 0.24212928116321564, -0.1732679307460785, 0.07355917245149612, 0.9121193885803223, -0.0055247279815375805, 0.012559467926621437, -0.003882888937368989]} +{"t": 3.4363, "q": [-0.1563774049282074, 0.002817410510033369, 0.013927571475505829, 0.3296183943748474, -0.15968991816043854, -0.0024615819565951824, -0.09888722002506256, -0.0339350625872612, 0.039224863052368164, 0.32139453291893005, -0.22250062227249146, 0.031073665246367455, 0.035046592354774475, 0.03913934901356697, 0.01609838753938675, 0.16592159867286682, 0.07506918907165527, -0.06322877109050751, 0.5046437382698059, -0.08772452920675278, -0.25283119082450867, -0.006207828875631094, 0.241841658949852, -0.17323197424411774, 0.07323560118675232, 0.9149476885795593, -0.0055007594637572765, 0.012583436444401741, -0.0041345576755702496]} +{"t": 3.453, "q": [-0.15638592839241028, 0.002877065446227789, 0.013740085065364838, 0.32960987091064453, -0.15967710316181183, -0.0024686241522431374, -0.09889574348926544, -0.03387540951371193, 0.03927842900156975, 0.32140305638313293, -0.22250062227249146, 0.031073665246367455, 0.03500641509890556, 0.03934982419013977, 0.016208302229642868, 0.16891765594482422, 0.07576426863670349, -0.06297710537910461, 0.4932347536087036, -0.08770056068897247, -0.2591828405857086, -0.006207828875631094, 0.24117055535316467, -0.17319601774215698, 0.07258845120668411, 0.9186747670173645, -0.005476790945976973, 0.012559467926621437, -0.004374242387712002]} +{"t": 3.4699, "q": [-0.15636888146400452, 0.0029708086512982845, 0.013472246937453747, 0.32960134744644165, -0.15965138375759125, -0.0024545076303184032, -0.09887869656085968, -0.033781666308641434, 0.039238255470991135, 0.32136043906211853, -0.22250494360923767, 0.03108086809515953, 0.035019807517528534, 0.0395304411649704, 0.016271067783236504, 0.1708471179008484, 0.07819706946611404, -0.06280932575464249, 0.4838990569114685, -0.08773650974035263, -0.26534274220466614, -0.006207828875631094, 0.24083499610424042, -0.1732439547777176, 0.07203717529773712, 0.9221621751785278, -0.005464806687086821, 0.012571452185511589, -0.004458131734281778]} +{"t": 3.4868, "q": [-0.15639445185661316, 0.0029963753186166286, 0.013043706305325031, 0.3296183943748474, -0.15963850915431976, -0.0024474537931382656, -0.09875939041376114, -0.0337049663066864, 0.03926503658294678, 0.3213689625263214, -0.22252589464187622, 0.03105958364903927, 0.03516711667180061, 0.03983106091618538, 0.016416722908616066, 0.17247696220874786, 0.08116915822029114, -0.060568273067474365, 0.4737124443054199, -0.08808405697345734, -0.27020832896232605, -0.00618386035785079, 0.24051141738891602, -0.17330388724803925, 0.0716177299618721, 0.9263566136360168, -0.0055007594637572765, 0.012559467926621437, -0.004518053028732538]} +{"t": 3.5035, "q": [-0.15644557774066925, 0.0029963753186166286, 0.012548206374049187, 0.3296780288219452, -0.15958721935749054, -0.0024615000002086163, -0.0985974669456482, -0.0337049663066864, 0.03915790468454361, 0.32136043906211853, -0.22254252433776855, 0.031031113117933273, 0.035528700798749924, 0.040244463831186295, 0.01660248637199402, 0.17300426959991455, 0.08469252288341522, -0.05837516114115715, 0.4651077687740326, -0.08809603750705719, -0.27701535820961, -0.006207828875631094, 0.2407391220331192, -0.1733638048171997, 0.07098256796598434, 0.9295324683189392, -0.005464806687086821, 0.012571452185511589, -0.004661863669753075]} +{"t": 3.5203, "q": [-0.15647967159748077, 0.0029963753186166286, 0.012200016528367996, 0.3297547399997711, -0.15955288708209991, -0.002433289308100939, -0.09847816079854965, -0.0337049663066864, 0.03901059180498123, 0.3213774859905243, -0.22255083918571472, 0.031016862019896507, 0.035542089492082596, 0.040882743895053864, 0.016973847523331642, 0.173939049243927, 0.08832374215126038, -0.05505553260445595, 0.4562394618988037, -0.0881200060248375, -0.2840021550655365, -0.006219812668859959, 0.2407391220331192, -0.17342372238636017, 0.0700717642903328, 0.9319053292274475, -0.005452822428196669, 0.012571452185511589, -0.0047098007053136826]} +{"t": 3.537, "q": [-0.15648819506168365, 0.0030389861203730106, 0.012146449647843838, 0.32974621653556824, -0.15951426327228546, -0.0023980315309017897, -0.09847816079854965, -0.033662356436252594, 0.03897041454911232, 0.32136043906211853, -0.2225591540336609, 0.031002625823020935, 0.03556887432932854, 0.04147673770785332, 0.0172125231474638, 0.17467008531093597, 0.09152352809906006, -0.05018993467092514, 0.44753891229629517, -0.08833572268486023, -0.28865206241607666, -0.006243781186640263, 0.2406911849975586, -0.17344769835472107, 0.0691729485988617, 0.9333794116973877, -0.005464806687086821, 0.012559467926621437, -0.004829642828553915]} +{"t": 3.5537, "q": [-0.15649671852588654, 0.0030475077219307423, 0.012133057229220867, 0.3297291696071625, -0.15947982668876648, -0.002341637620702386, -0.09845259040594101, -0.033662356436252594, 0.03901059180498123, 0.32136043906211853, -0.22255483269691467, 0.030995424836874008, 0.03546173870563507, 0.04215514287352562, 0.017243390902876854, 0.17499366402626038, 0.09580189734697342, -0.04399409145116806, 0.4386466145515442, -0.08921056985855103, -0.2917919158935547, -0.006243781186640263, 0.24054737389087677, -0.17355555295944214, 0.06869357824325562, 0.9346017837524414, -0.0055007594637572765, 0.012559467926621437, -0.004877579864114523]} +{"t": 3.5705, "q": [-0.15644557774066925, 0.0030560302548110485, 0.012146449647843838, 0.3297547399997711, -0.1594497412443161, -0.0023063865955919027, -0.09835032373666763, -0.03363678976893425, 0.0390239842236042, 0.32139453291893005, -0.22255483269691467, 0.030995424836874008, 0.03547513112425804, 0.04284132272005081, 0.01722104661166668, 0.17528127133846283, 0.10101503133773804, -0.03838547319173813, 0.4315519630908966, -0.09098424017429352, -0.2944404184818268, -0.006231796927750111, 0.24045149981975555, -0.1735915094614029, 0.0683460384607315, 0.9359679818153381, -0.0054887752048671246, 0.012571452185511589, -0.004997421987354755]} +{"t": 3.5872, "q": [-0.1564285308122635, 0.0030219419859349728, 0.012133057229220867, 0.32973769307136536, -0.159436896443367, -0.002299332758411765, -0.09825658053159714, -0.03367939963936806, 0.03899719938635826, 0.32139453291893005, -0.22255483269691467, 0.030995424836874008, 0.03543495759367943, 0.043505650013685226, 0.01708933338522911, 0.17523333430290222, 0.10612031817436218, -0.03328019380569458, 0.42792072892189026, -0.09259012341499329, -0.29607027769088745, -0.006243781186640263, 0.24019981920719147, -0.1736634075641632, 0.06792658567428589, 0.9376218318939209, -0.0055007594637572765, 0.012547483667731285, -0.005117264110594988]} +{"t": 3.604, "q": [-0.15639445185661316, 0.0029708086512982845, 0.012213408946990967, 0.3297121226787567, -0.1594454050064087, -0.0022852434776723385, -0.09825658053159714, -0.0337049663066864, 0.03905076906085014, 0.3213774859905243, -0.22255083918571472, 0.031016862019896507, 0.035207293927669525, 0.044123925268650055, 0.017063692212104797, 0.17522135376930237, 0.1106863021850586, -0.026868632063269615, 0.42602720856666565, -0.09578990936279297, -0.2963099777698517, -0.0062677497044205666, 0.2394927591085434, -0.17380721867084503, 0.06774682551622391, 0.9396111965179443, -0.0054887752048671246, 0.012535499408841133, -0.005201153922826052]} +{"t": 3.6209, "q": [-0.15638592839241028, 0.0029537645168602467, 0.012481247074902058, 0.32965245842933655, -0.15944528579711914, -0.0022570600267499685, -0.09833328425884247, -0.03375609964132309, 0.039077550172805786, 0.32136043906211853, -0.22255083918571472, 0.031016862019896507, 0.03484571352601051, 0.044695835560560226, 0.01718212477862835, 0.17524532973766327, 0.11471300572156906, -0.020061593502759933, 0.42482879757881165, -0.09855826944112778, -0.2959384620189667, -0.006195844616740942, 0.23867782950401306, -0.17387911677360535, 0.0673753172159195, 0.9414687752723694, -0.005464806687086821, 0.012535499408841133, -0.00523710623383522]} +{"t": 3.6377, "q": [-0.15638592839241028, 0.002902632113546133, 0.012708908878266811, 0.3294990658760071, -0.159449502825737, -0.002235923893749714, -0.09843555092811584, -0.03382427617907524, 0.039077550172805786, 0.3213348984718323, -0.22255083918571472, 0.031016862019896507, 0.03426986187696457, 0.044951632618904114, 0.01724214106798172, 0.17482587695121765, 0.11894343793392181, -0.015303855761885643, 0.4238341152667999, -0.10057161748409271, -0.2953272759914398, -0.006231796927750111, 0.2377190887928009, -0.17385515570640564, 0.06725547462701797, 0.9438655972480774, -0.005464806687086821, 0.01251153089106083, -0.00529702752828598]} +{"t": 3.6545, "q": [-0.15627513825893402, 0.002860021311789751, 0.013016922399401665, 0.3293456733226776, -0.15947505831718445, -0.0022077609319239855, -0.09849520027637482, -0.033858366310596466, 0.03905076906085014, 0.32121556997299194, -0.22255083918571472, 0.031016862019896507, 0.03364044055342674, 0.04514778405427933, 0.017217829823493958, 0.17341174185276031, 0.12220314145088196, -0.009084043093025684, 0.42280346155166626, -0.10415489971637726, -0.29469209909439087, -0.006231796927750111, 0.23574168980121613, -0.1738431751728058, 0.06717158108949661, 0.9478923082351685, -0.005464806687086821, 0.012535499408841133, -0.005416869651526213]} +{"t": 3.6713, "q": [-0.1561899185180664, 0.0028259330429136753, 0.013432071544229984, 0.32927748560905457, -0.15952180325984955, -0.0021162047050893307, -0.09864860028028488, -0.033849842846393585, 0.03915790468454361, 0.3211985230445862, -0.22254252433776855, 0.031031113117933273, 0.033185116946697235, 0.04526090249419212, 0.01721004582941532, 0.17138640582561493, 0.12413260340690613, -0.0010066749528050423, 0.42195257544517517, -0.10608436167240143, -0.2940090000629425, -0.006219812668859959, 0.23386016488075256, -0.17378325760364532, 0.06695586442947388, 0.9513797163963318, -0.005452822428196669, 0.012535499408841133, -0.005452822428196669]} +{"t": 3.688, "q": [-0.1561899185180664, 0.0028259330429136753, 0.013753476552665234, 0.32910704612731934, -0.15957283973693848, -0.0020316955633461475, -0.09874234348535538, -0.03389245271682739, 0.03935877978801727, 0.3210621774196625, -0.22254668176174164, 0.031023995950818062, 0.03282353654503822, 0.04530591517686844, 0.01723748818039894, 0.17043964564800262, 0.1266612708568573, 0.004565989598631859, 0.4216409921646118, -0.10729476809501648, -0.2932300269603729, -0.006231796927750111, 0.2323022186756134, -0.17374730110168457, 0.0668240413069725, 0.9535248875617981, -0.005476790945976973, 0.012535499408841133, -0.005452822428196669]} +{"t": 3.7048, "q": [-0.15621548891067505, 0.0028514997102320194, 0.013927571475505829, 0.32895365357398987, -0.159602552652359, -0.0019683092832565308, -0.09886164963245392, -0.033909495919942856, 0.039398957043886185, 0.32094287872314453, -0.22253404557704926, 0.03103102743625641, 0.032381605356931686, 0.04531312361359596, 0.017280254513025284, 0.16957679390907288, 0.13061606884002686, 0.008388957940042019, 0.4219885468482971, -0.10777413845062256, -0.2913604974746704, -0.006219812668859959, 0.23031283915042877, -0.17372332513332367, 0.06678808480501175, 0.9562093615531921, -0.005464806687086821, 0.01251153089106083, -0.005452822428196669]} +{"t": 3.7216, "q": [-0.1562410444021225, 0.0028088889084756374, 0.014275760389864445, 0.328757643699646, -0.15967920422554016, -0.0018697244813665748, -0.09909175336360931, -0.03395210951566696, 0.039586443454027176, 0.32080650329589844, -0.2225385308265686, 0.031052550300955772, 0.031819142401218414, 0.045312460511922836, 0.017366187646985054, 0.1687978059053421, 0.13469070196151733, 0.013218600302934647, 0.42218029499053955, -0.10776215046644211, -0.2888438105583191, -0.0062917182222008705, 0.22740067541599274, -0.17372332513332367, 0.06662030518054962, 0.9598525762557983, -0.0055007594637572765, 0.01251153089106083, -0.005452822428196669]} +{"t": 3.7384, "q": [-0.15620696544647217, 0.002817410510033369, 0.014597166329622269, 0.3285275399684906, -0.15974721312522888, -0.0017429584404453635, -0.0992792397737503, -0.033969152718782425, 0.03984088823199272, 0.3205849528312683, -0.2225342094898224, 0.031045347452163696, 0.03125668317079544, 0.045312389731407166, 0.017375735566020012, 0.16883376240730286, 0.13859756290912628, 0.018084196373820305, 0.4222401976585388, -0.10778611898422241, -0.28636306524276733, -0.0062797339633107185, 0.2239132672548294, -0.17369936406612396, 0.06656038761138916, 0.9643226861953735, -0.0055127437226474285, 0.012535499408841133, -0.005452822428196669]} +{"t": 3.7552, "q": [-0.156147301197052, 0.0028259330429136753, 0.015079274773597717, 0.32832300662994385, -0.15984512865543365, -0.0016091725556179881, -0.09939002245664597, -0.03402028605341911, 0.040095336735248566, 0.32047414779663086, -0.2225342094898224, 0.031045347452163696, 0.030988845974206924, 0.04534997045993805, 0.017389055341482162, 0.16892963647842407, 0.14282800257205963, 0.02183525823056698, 0.42252781987190247, -0.1077381819486618, -0.2847212255001068, -0.0062797339633107185, 0.22106102108955383, -0.17367538809776306, 0.06658435612916946, 0.9686010479927063, -0.005476790945976973, 0.012535499408841133, -0.005452822428196669]} +{"t": 3.7719, "q": [-0.15613025426864624, 0.002817410510033369, 0.015440856106579304, 0.3281525671482086, -0.15991738438606262, -0.0014753487193956971, -0.0995093360543251, -0.03409698233008385, 0.040242645889520645, 0.3203548491001129, -0.22254718840122223, 0.031066955998539925, 0.030962062999606133, 0.04538005217909813, 0.01739780232310295, 0.16897757351398468, 0.14696255326271057, 0.02545449510216713, 0.4235464930534363, -0.10749849677085876, -0.2836785912513733, -0.0062677497044205666, 0.2193233072757721, -0.1736873835325241, 0.06653641909360886, 0.9708660840988159, -0.005452822428196669, 0.012547483667731285, -0.005452822428196669]} +{"t": 3.7886, "q": [-0.156147301197052, 0.002817410510033369, 0.015588166192173958, 0.32800769805908203, -0.15997697412967682, -0.0013908551773056388, -0.09959455579519272, -0.03413107246160507, 0.04032299667596817, 0.320278137922287, -0.22255998849868774, 0.031074263155460358, 0.03060048073530197, 0.04551464691758156, 0.017537415027618408, 0.16915734112262726, 0.1522955298423767, 0.02725212834775448, 0.426111102104187, -0.10698317736387253, -0.28212064504623413, -0.0062677497044205666, 0.21778932213783264, -0.1735915094614029, 0.06653641909360886, 0.9723880290985107, -0.0055247279815375805, 0.012559467926621437, -0.005440838169306517]} +{"t": 3.8054, "q": [-0.15618139505386353, 0.0028088889084756374, 0.015681909397244453, 0.3278372585773468, -0.16001950204372406, -0.0013204353163018823, -0.09965421259403229, -0.03412254899740219, 0.04034978151321411, 0.3200395107269287, -0.22255584597587585, 0.03108138032257557, 0.03060048073530197, 0.045534804463386536, 0.017856677994132042, 0.172968327999115, 0.15991750359535217, 0.027719512581825256, 0.42829224467277527, -0.10537729412317276, -0.28108999133110046, -0.0062677497044205666, 0.21677066385746002, -0.17357951402664185, 0.06653641909360886, 0.9733707308769226, -0.0055247279815375805, 0.012559467926621437, -0.005440838169306517]} +{"t": 3.8222, "q": [-0.15624956786632538, 0.0028088889084756374, 0.015735477209091187, 0.32749637961387634, -0.1600322723388672, -0.0012993059353902936, -0.0997394323348999, -0.034165158867836, 0.04032299667596817, 0.31983497738838196, -0.22255584597587585, 0.03108138032257557, 0.030975455418229103, 0.04562201350927353, 0.018254974856972694, 0.17550897598266602, 0.16834241151809692, 0.027575701475143433, 0.4309287667274475, -0.10357965528964996, -0.2801312506198883, -0.0062677497044205666, 0.21618343889713287, -0.17355555295944214, 0.0665244311094284, 0.9742216467857361, -0.005464806687086821, 0.012559467926621437, -0.005452822428196669]} +{"t": 3.8389, "q": [-0.15631774067878723, 0.0027833222411572933, 0.015722084790468216, 0.327146977186203, -0.16002801060676575, -0.0013063461519777775, -0.09990987181663513, -0.03422481566667557, 0.040269430726766586, 0.3197668194770813, -0.22256864607334137, 0.03108866699039936, 0.031189724802970886, 0.04572322964668274, 0.018776785582304, 0.1774624139070511, 0.17745041847229004, 0.02689260058104992, 0.43206727504730225, -0.10008026659488678, -0.2799515128135681, -0.006243781186640263, 0.21518874168395996, -0.173567533493042, 0.06651245057582855, 0.9754200577735901, -0.005476790945976973, 0.012571452185511589, -0.005464806687086821]} +{"t": 3.8557, "q": [-0.15640297532081604, 0.0027662781067192554, 0.015748869627714157, 0.3267890512943268, -0.16001945734024048, -0.0013063305523246527, -0.10008883476257324, -0.03425038233399391, 0.040242645889520645, 0.3195878565311432, -0.22256864607334137, 0.03108866699039936, 0.031497739255428314, 0.046005237847566605, 0.019303221255540848, 0.1803026646375656, 0.1877209097146988, 0.026221483945846558, 0.43227100372314453, -0.0924103632569313, -0.28086230158805847, -0.006231796927750111, 0.21403826773166656, -0.17357951402664185, 0.0665244311094284, 0.9765825271606445, -0.005476790945976973, 0.012559467926621437, -0.005452822428196669]} +{"t": 3.8724, "q": [-0.15643705427646637, 0.002757756505161524, 0.015748869627714157, 0.3264055550098419, -0.16001945734024048, -0.0013063305523246527, -0.10030189156532288, -0.034267425537109375, 0.040242645889520645, 0.31951966881752014, -0.22258161008358002, 0.03111027553677559, 0.03144416958093643, 0.04648324102163315, 0.019814515486359596, 0.18404175341129303, 0.19785955548286438, 0.022734075784683228, 0.4324268102645874, -0.08222377300262451, -0.28254008293151855, -0.006435528863221407, 0.2124803066253662, -0.1735915094614029, 0.06651245057582855, 0.9784760475158691, -0.0055007594637572765, 0.012571452185511589, -0.005476790945976973]} +{"t": 3.8891, "q": [-0.15643705427646637, 0.0027918447740375996, 0.01596313901245594, 0.32592830061912537, -0.16001519560813904, -0.0013133795000612736, -0.1007024273276329, -0.034267425537109375, 0.04034978151321411, 0.3194855749607086, -0.22258593142032623, 0.031117478385567665, 0.03092188760638237, 0.04690893366932869, 0.020245706662535667, 0.18972226977348328, 0.20725518465042114, 0.018731344491243362, 0.4324986934661865, -0.06967628747224808, -0.28403812646865845, -0.006531402934342623, 0.21022728085517883, -0.17357951402664185, 0.06640458852052689, 0.980657160282135, -0.0054887752048671246, 0.012547483667731285, -0.0055007594637572765]} +{"t": 3.9059, "q": [-0.1563774049282074, 0.002885587979108095, 0.016056882217526436, 0.32556185126304626, -0.16001100838184357, -0.0013345158658921719, -0.10085582733154297, -0.034165158867836, 0.04038995876908302, 0.3194600045681, -0.22259008884429932, 0.031110361218452454, 0.03089510276913643, 0.047379929572343826, 0.020646756514906883, 0.19499532878398895, 0.21790917217731476, 0.01356614287942648, 0.4302336871623993, -0.055702678859233856, -0.2864469587802887, -0.006699182093143463, 0.20809409022331238, -0.1735915094614029, 0.06628475338220596, 0.9836052656173706, -0.005440838169306517, 0.012571452185511589, -0.0055007594637572765]} +{"t": 3.9226, "q": [-0.1562836617231369, 0.0029537645168602467, 0.016030099242925644, 0.32515278458595276, -0.15998537838459015, -0.001348582562059164, -0.10095809400081635, -0.0340714156627655, 0.040403347462415695, 0.31928956508636475, -0.22260290384292603, 0.031117666512727737, 0.030828144401311874, 0.04785991460084915, 0.020880797877907753, 0.19908194243907928, 0.2286590188741684, 0.009431585669517517, 0.42754921317100525, -0.04146542027592659, -0.2880648076534271, -0.0070946612395346165, 0.20561335980892181, -0.1736634075641632, 0.06612895429134369, 0.9873683452606201, -0.005464806687086821, 0.012559467926621437, -0.0055486964993178844]} +{"t": 3.9394, "q": [-0.15622399747371674, 0.0030389861203730106, 0.01594974845647812, 0.32498234510421753, -0.15998537838459015, -0.001348582562059164, -0.10094104707241058, -0.03397767245769501, 0.040269430726766586, 0.3192555010318756, -0.22264930605888367, 0.03109663911163807, 0.03109598159790039, 0.04859592393040657, 0.021116841584444046, 0.20255737006664276, 0.24042752385139465, 0.004889564123004675, 0.4252122938632965, -0.025849973782896996, -0.28822061419487, -0.0071066454984247684, 0.2034442126750946, -0.17377126216888428, 0.0658772885799408, 0.9913590550422668, -0.005464806687086821, 0.012571452185511589, -0.005596633069217205]} +{"t": 3.9562, "q": [-0.1562410444021225, 0.0030730743892490864, 0.015856005251407623, 0.32473519444465637, -0.1599854826927185, -0.001376774744130671, -0.10098365694284439, -0.03397767245769501, 0.04017568752169609, 0.3191191256046295, -0.2227206528186798, 0.031032906845211983, 0.03139060363173485, 0.049482110887765884, 0.021366426721215248, 0.2052178680896759, 0.2528911232948303, -0.0008029430755414069, 0.4224918782711029, -0.00953944306820631, -0.288819819688797, -0.007238471880555153, 0.20181435346603394, -0.17402292788028717, 0.06564958393573761, 0.9936720132827759, -0.0055007594637572765, 0.012559467926621437, -0.005656554363667965]} +{"t": 3.973, "q": [-0.15616434812545776, 0.0031156851910054684, 0.015708694234490395, 0.32446250319480896, -0.1599598526954651, -0.001390841556712985, -0.10106036067008972, -0.03392654284834862, 0.040108729153871536, 0.3191191256046295, -0.22272896766662598, 0.03101867251098156, 0.03128346800804138, 0.050636742264032364, 0.0218740776181221, 0.20841765403747559, 0.26654115319252014, -0.006423544604331255, 0.41953176259994507, 0.008580705150961876, -0.28897562623023987, -0.007394266780465841, 0.1998009979724884, -0.17439444363117218, 0.06545783579349518, 0.9956254363059998, -0.005464806687086821, 0.012571452185511589, -0.005704491399228573]} +{"t": 3.9897, "q": [-0.15620696544647217, 0.0031582950614392757, 0.015748869627714157, 0.3243516981601715, -0.15995560586452484, -0.001397881773300469, -0.10135862976312637, -0.03386688604950905, 0.04020247235894203, 0.3191361725330353, -0.22274143993854523, 0.030997302383184433, 0.03109598159790039, 0.05150549113750458, 0.02236204780638218, 0.2115814983844757, 0.2798556387424469, -0.011564777232706547, 0.41556498408317566, 0.02611362747848034, -0.2892392873764038, -0.007586014457046986, 0.19791947305202484, -0.17484985291957855, 0.0653020441532135, 0.9975548982620239, -0.0055007594637572765, 0.012571452185511589, -0.0057284594513475895]} +{"t": 4.0066, "q": [-0.1561899185180664, 0.0031753401271998882, 0.015829220414161682, 0.32418978214263916, -0.15994295477867126, -0.0014471946051344275, -0.10146089643239975, -0.03382427617907524, 0.040229253470897675, 0.3191361725330353, -0.2227412611246109, 0.030982965603470802, 0.03110937401652336, 0.052425459027290344, 0.022937197238206863, 0.2139543741941452, 0.29452431201934814, -0.018971027806401253, 0.41219744086265564, 0.045432198792696, -0.2896946668624878, -0.00760998297482729, 0.1962776482105255, -0.1753891408443451, 0.06505037099123001, 0.9997360706329346, -0.005476790945976973, 0.012523515149950981, -0.0057284594513475895]} +{"t": 4.0234, "q": [-0.1562410444021225, 0.003166817594319582, 0.01581582799553871, 0.32406195998191833, -0.15993434190750122, -0.0014330917038023472, -0.10147794336080551, -0.03381575271487236, 0.040242645889520645, 0.31910207867622375, -0.2227625548839569, 0.03099035657942295, 0.031162941828370094, 0.05344279855489731, 0.023551497608423233, 0.21618343889713287, 0.3088934123516083, -0.02695252187550068, 0.4095129668712616, 0.06485863029956818, -0.28995832800865173, -0.007897604256868362, 0.19462381303310394, -0.17589247226715088, 0.06491854786872864, 1.002240777015686, -0.0054887752048671246, 0.012535499408841133, -0.005764412228018045]} +{"t": 4.0401, "q": [-0.15625809133052826, 0.0031242067925632, 0.015882788226008415, 0.32401081919670105, -0.15994714200496674, -0.001426058355718851, -0.10159724950790405, -0.033909495919942856, 0.04033638909459114, 0.3191361725330353, -0.22274541854858398, 0.03097584843635559, 0.031162941828370094, 0.05446673929691315, 0.0241976510733366, 0.21853235363960266, 0.32290297746658325, -0.03232145681977272, 0.40779921412467957, 0.0863463431596756, -0.29003024101257324, -0.00814927276223898, 0.19259847700595856, -0.1765635907649994, 0.06484664231538773, 1.0050690174102783, -0.0055007594637572765, 0.012523515149950981, -0.005788380745798349]} +{"t": 4.0569, "q": [-0.15627513825893402, 0.0030475077219307423, 0.01596313901245594, 0.3240278661251068, -0.15993858873844147, -0.0014260514872148633, -0.10157168656587601, -0.03397767245769501, 0.04037656635046005, 0.3191361725330353, -0.22274541854858398, 0.03097584843635559, 0.031337037682533264, 0.055437684059143066, 0.024859106168150902, 0.22053371369838715, 0.33661291003227234, -0.038361504673957825, 0.4065408706665039, 0.10779810696840286, -0.2903178632259369, -0.008221178315579891, 0.19095665216445923, -0.17697104811668396, 0.06463092565536499, 1.0073820352554321, -0.0055007594637572765, 0.012535499408841133, -0.005788380745798349]} +{"t": 4.0737, "q": [-0.15634331107139587, 0.002928198780864477, 0.016056882217526436, 0.32400229573249817, -0.15995140373706818, -0.0014190092915669084, -0.10158021003007889, -0.034148115664720535, 0.04037656635046005, 0.3190765380859375, -0.22274957597255707, 0.03096872940659523, 0.03153791278600693, 0.056348636746406555, 0.02545495145022869, 0.22302642464637756, 0.35049065947532654, -0.0445094108581543, 0.404215931892395, 0.13105948269367218, -0.2914923131465912, -0.008364989422261715, 0.18915900588035583, -0.17731860280036926, 0.06458298861980438, 1.0097428560256958, -0.005476790945976973, 0.012535499408841133, -0.005836317781358957]} +{"t": 4.0904, "q": [-0.1563774049282074, 0.002800366375595331, 0.01611045002937317, 0.3239767253398895, -0.15995565056800842, -0.0014119690749794245, -0.10156316310167313, -0.034275949001312256, 0.04045691713690758, 0.31905096769332886, -0.22274541854858398, 0.03097584843635559, 0.031671833246946335, 0.05727318301796913, 0.026163721457123756, 0.22652582824230194, 0.3632059097290039, -0.04838031902909279, 0.4004289209842682, 0.1522236317396164, -0.2932659685611725, -0.00854475237429142, 0.18665431439876556, -0.17767812311649323, 0.06439124047756195, 1.012115716934204, -0.0054887752048671246, 0.012559467926621437, -0.00589623861014843]} +{"t": 4.1071, "q": [-0.1564200073480606, 0.002655490767210722, 0.016271153464913368, 0.3239426612854004, -0.1599513590335846, -0.0014049219898879528, -0.10159724950790405, -0.03448047861456871, 0.04047030955553055, 0.3189998269081116, -0.2227497547864914, 0.03098306804895401, 0.031819142401218414, 0.05810887739062309, 0.026713170111179352, 0.23032481968402863, 0.37504634261131287, -0.052263207733631134, 0.39612656831741333, 0.1712905317544937, -0.2943565547466278, -0.008556736633181572, 0.18471285700798035, -0.17802566289901733, 0.06433132290840149, 1.0137815475463867, -0.0055367122404277325, 0.012571452185511589, -0.006028065457940102]} +{"t": 4.1239, "q": [-0.15649671852588654, 0.0024850484915077686, 0.0163247212767601, 0.32378074526786804, -0.15995991230010986, -0.0014049288583919406, -0.10169951617717743, -0.03465092182159424, 0.0405372679233551, 0.31892311573028564, -0.22274541854858398, 0.03097584843635559, 0.03192627802491188, 0.058855123817920685, 0.027170399203896523, 0.2341717630624771, 0.38758182525634766, -0.0571887232363224, 0.39227965474128723, 0.19155585765838623, -0.2951594889163971, -0.008616657927632332, 0.1829272210597992, -0.17834924161434174, 0.06429536640644073, 1.0151597261428833, -0.0055486964993178844, 0.012571452185511589, -0.006195844616740942]} +{"t": 4.1407, "q": [-0.15652227401733398, 0.002331650350242853, 0.016431856900453568, 0.32360175251960754, -0.1599598526954651, -0.001390841556712985, -0.10172508656978607, -0.03490658476948738, 0.04055066034197807, 0.3187697231769562, -0.2227497547864914, 0.03098306804895401, 0.03199324011802673, 0.05954963341355324, 0.027548575773835182, 0.23750337958335876, 0.40069258213043213, -0.06342051923274994, 0.3887442946434021, 0.20987974107265472, -0.2962021231651306, -0.008640626445412636, 0.181728795170784, -0.17864884436130524, 0.06425941735506058, 1.0160706043243408, -0.0055127437226474285, 0.012583436444401741, -0.0062677497044205666]} +{"t": 4.1574, "q": [-0.15648819506168365, 0.0021867742761969566, 0.01648542284965515, 0.32340577244758606, -0.1599641591310501, -0.0013978886418044567, -0.10170803964138031, -0.03507702797651291, 0.040577445179224014, 0.3186163306236267, -0.22275839745998383, 0.030997473746538162, 0.03204680606722832, 0.06007177382707596, 0.027870705351233482, 0.2409907877445221, 0.4122813045978546, -0.06883738934993744, 0.38448989391326904, 0.22850322723388672, -0.2980596721172333, -0.00882038939744234, 0.18074607849121094, -0.17885257303714752, 0.06421148031949997, 1.016657829284668, -0.0055486964993178844, 0.012583436444401741, -0.006339655257761478]} +{"t": 4.1742, "q": [-0.15650522708892822, 0.002110075205564499, 0.01648542284965515, 0.3232438266277313, -0.15996411442756653, -0.0013837926089763641, -0.10169099271297455, -0.03514520451426506, 0.04055066034197807, 0.31842032074928284, -0.2227625548839569, 0.03099035657942295, 0.03239499405026436, 0.06059284135699272, 0.02825857326388359, 0.24355541169643402, 0.422599732875824, -0.07366703450679779, 0.380978524684906, 0.2467072606086731, -0.3012474775314331, -0.008832373656332493, 0.18039853870868683, -0.17896044254302979, 0.06409163773059845, 1.016897439956665, -0.0055367122404277325, 0.012595420703291893, -0.006459497381001711]} +{"t": 4.1909, "q": [-0.15653932094573975, 0.0020674648694694042, 0.016525600105524063, 0.3230733871459961, -0.15997262299060822, -0.0013697120593860745, -0.10171656310558319, -0.03518781438469887, 0.04055066034197807, 0.31823283433914185, -0.22275839745998383, 0.030997473746538162, 0.03240838646888733, 0.06086527928709984, 0.02871771529316902, 0.24616797268390656, 0.43266648054122925, -0.07865247130393982, 0.3766881823539734, 0.2642521560192108, -0.30483075976371765, -0.0088803106918931, 0.180027037858963, -0.17902036011219025, 0.06411560624837875, 1.0170292854309082, -0.005560680292546749, 0.012571452185511589, -0.006591323763132095]} +{"t": 4.2077, "q": [-0.15659046173095703, 0.00204189820215106, 0.016498815268278122, 0.3228518068790436, -0.1599683165550232, -0.0013626649742946029, -0.10169099271297455, -0.03522190451622009, 0.04052387550473213, 0.31801125407218933, -0.2227540761232376, 0.030990270897746086, 0.032502129673957825, 0.061033640056848526, 0.029085924848914146, 0.24806147813796997, 0.4411153495311737, -0.08446481823921204, 0.3723258972167969, 0.28044286370277405, -0.3072635531425476, -0.008868326433002949, 0.17981131374835968, -0.17917615175247192, 0.06404370069503784, 1.0170772075653076, -0.0055127437226474285, 0.012571452185511589, -0.006687197834253311]} +{"t": 4.2245, "q": [-0.1566074937582016, 0.0020163320004940033, 0.016512207686901093, 0.32259616255760193, -0.15997686982154846, -0.0013626718427985907, -0.10171656310558319, -0.03524747118353844, 0.04049709066748619, 0.31794309616088867, -0.2227540761232376, 0.030990270897746086, 0.03246195614337921, 0.061148032546043396, 0.029574332758784294, 0.2494756132364273, 0.4481980502605438, -0.08923453837633133, 0.3681793808937073, 0.2963099777698517, -0.3091930150985718, -0.009048090316355228, 0.17957162857055664, -0.17924804985523224, 0.06401973217725754, 1.0172330141067505, -0.0055007594637572765, 0.012571452185511589, -0.006747118663042784]} +{"t": 4.2413, "q": [-0.1566074937582016, 0.0020163320004940033, 0.01647203229367733, 0.322331964969635, -0.15997262299060822, -0.0013697120593860745, -0.101759172976017, -0.035230424255132675, 0.04047030955553055, 0.3177896738052368, -0.22274991869926453, 0.030997388064861298, 0.03259587287902832, 0.06100965291261673, 0.0298443753272295, 0.2501707077026367, 0.4529198110103607, -0.09211075305938721, 0.3641526699066162, 0.30980420112609863, -0.31042739748954773, -0.009108011610805988, 0.17947575449943542, -0.179284006357193, 0.06389988958835602, 1.0173288583755493, -0.0055127437226474285, 0.012571452185511589, -0.006807039957493544]} +{"t": 4.2581, "q": [-0.15659897029399872, 0.002033376134932041, 0.016431856900453568, 0.3220251798629761, -0.15996836125850677, -0.0013767522759735584, -0.10174212604761124, -0.03521338105201721, 0.04036317393183708, 0.31773003935813904, -0.2227540761232376, 0.030990270897746086, 0.03282353654503822, 0.06088797375559807, 0.02997179888188839, 0.25026658177375793, 0.456299364566803, -0.09410014003515244, 0.36074915528297424, 0.3215487599372864, -0.3117336630821228, -0.00914396345615387, 0.17951171100139618, -0.17922408878803253, 0.06379202753305435, 1.0174248218536377, -0.005476790945976973, 0.012571452185511589, -0.0068789455108344555]} +{"t": 4.2749, "q": [-0.15658193826675415, 0.00204189820215106, 0.016364896669983864, 0.3218291699886322, -0.15997691452503204, -0.0013767591444775462, -0.10177621990442276, -0.03521338105201721, 0.04029621556401253, 0.3175681233406067, -0.22275839745998383, 0.030997473746538162, 0.032850321382284164, 0.06085735186934471, 0.030020205304026604, 0.2502546012401581, 0.4582168459892273, -0.09513077884912491, 0.3566385507583618, 0.33246636390686035, -0.31232088804244995, -0.009155947715044022, 0.17941583693027496, -0.17918813228607178, 0.06364822387695312, 1.0175446271896362, -0.0055007594637572765, 0.012559467926621437, -0.00689092930406332]} +{"t": 4.2916, "q": [-0.15654784440994263, 0.0020504207350313663, 0.016364896669983864, 0.32166725397109985, -0.1599683165550232, -0.0013626649742946029, -0.101759172976017, -0.03519633784890175, 0.04032299667596817, 0.3174658417701721, -0.2227540761232376, 0.030990270897746086, 0.03290388733148575, 0.060857586562633514, 0.030001292005181313, 0.24983514845371246, 0.4586962163448334, -0.09545435756444931, 0.35240814089775085, 0.3406396210193634, -0.3133515417575836, -0.009155947715044022, 0.17916417121887207, -0.17921210825443268, 0.0635044127702713, 1.017568588256836, -0.0055127437226474285, 0.012559467926621437, -0.00689092930406332]} +{"t": 4.3084, "q": [-0.15653079748153687, 0.002075986936688423, 0.016364896669983864, 0.321471244096756, -0.15997262299060822, -0.0013697120593860745, -0.101759172976017, -0.03518781438469887, 0.040269430726766586, 0.31736359000205994, -0.22276689112186432, 0.030997559428215027, 0.03291727975010872, 0.060857586562633514, 0.030001292005181313, 0.24909211695194244, 0.4581089913845062, -0.09544236958026886, 0.3482735753059387, 0.3447622060775757, -0.31421440839767456, -0.009167931973934174, 0.17902036011219025, -0.17923606932163239, 0.06321679055690765, 1.0176165103912354, -0.0055247279815375805, 0.012571452185511589, -0.006926882080733776]} +{"t": 4.3252, "q": [-0.156462624669075, 0.00210155313834548, 0.01631132885813713, 0.32130932807922363, -0.15996836125850677, -0.0013767522759735584, -0.101759172976017, -0.03513668105006218, 0.040229253470897675, 0.31736359000205994, -0.22277985513210297, 0.031019167974591255, 0.03293067216873169, 0.06085770204663277, 0.029991833493113518, 0.2487565577030182, 0.45762962102890015, -0.09467537701129913, 0.3431922495365143, 0.3449898958206177, -0.31536489725112915, -0.009179916232824326, 0.1790083795785904, -0.17921210825443268, 0.0631568655371666, 1.0178083181381226, -0.0055007594637572765, 0.012571452185511589, -0.006938866339623928]} +{"t": 4.3419, "q": [-0.15641148388385773, 0.002110075205564499, 0.016230978071689606, 0.3211388885974884, -0.15996411442756653, -0.0013837926089763641, -0.10176769644021988, -0.0351281613111496, 0.04014890268445015, 0.3173380196094513, -0.22278833389282227, 0.03101925179362297, 0.03298423811793327, 0.06085770204663277, 0.029991833493113518, 0.24866068363189697, 0.4545257091522217, -0.0935848131775856, 0.33884197473526, 0.3443906903266907, -0.3170306980609894, -0.009215869009494781, 0.17896044254302979, -0.17918813228607178, 0.06296511739492416, 1.0182876586914062, -0.0055007594637572765, 0.012559467926621437, -0.006926882080733776]} +{"t": 4.3586, "q": [-0.15640297532081604, 0.0021612080745399, 0.016164017841219902, 0.32112184166908264, -0.15996411442756653, -0.0013837926089763641, -0.10176769644021988, -0.035051461309194565, 0.040095336735248566, 0.3172954022884369, -0.22278816998004913, 0.031004931777715683, 0.033024415373802185, 0.06085770204663277, 0.029991833493113518, 0.24833711981773376, 0.4497320353984833, -0.09226655215024948, 0.33428797125816345, 0.3432162404060364, -0.31888824701309204, -0.009191900491714478, 0.17884059250354767, -0.17914019525051117, 0.06278535723686218, 1.018994688987732, -0.0055486964993178844, 0.012559467926621437, -0.00695085059851408]} +{"t": 4.3754, "q": [-0.15640297532081604, 0.0022123404778540134, 0.016043491661548615, 0.3211303651332855, -0.15996842086315155, -0.001390839577652514, -0.10176769644021988, -0.034991804510354996, 0.04000159353017807, 0.317286878824234, -0.22279664874076843, 0.031005017459392548, 0.03314494341611862, 0.06082766130566597, 0.029992956668138504, 0.24641963839530945, 0.4455854892730713, -0.09037303924560547, 0.3302493095397949, 0.34062764048576355, -0.32181239128112793, -0.009167931973934174, 0.17869678139686584, -0.1790802776813507, 0.06262955814599991, 1.019581913948059, -0.005464806687086821, 0.012559467926621437, -0.00695085059851408]} +{"t": 4.3922, "q": [-0.1564285308122635, 0.0022634733468294144, 0.016016706824302673, 0.32112184166908264, -0.1599598079919815, -0.0013767455238848925, -0.10177621990442276, -0.034923627972602844, 0.04000159353017807, 0.31727835536003113, -0.22279249131679535, 0.03101213462650776, 0.033051200211048126, 0.06082766130566597, 0.029992956668138504, 0.24507740139961243, 0.44103148579597473, -0.08813199400901794, 0.3249882161617279, 0.3352946639060974, -0.3254436254501343, -0.00920388475060463, 0.17855297029018402, -0.179056316614151, 0.06259360909461975, 1.0197257995605469, -0.0055007594637572765, 0.012535499408841133, -0.006938866339623928]} +{"t": 4.4089, "q": [-0.1564285308122635, 0.0022805174812674522, 0.016030099242925644, 0.32107070088386536, -0.1599598079919815, -0.0013767455238848925, -0.1018017828464508, -0.03488954156637192, 0.040055159479379654, 0.3172101676464081, -0.22278816998004913, 0.031004931777715683, 0.03307798132300377, 0.06082766130566597, 0.029992956668138504, 0.24391493201255798, 0.4340566396713257, -0.08441688120365143, 0.3196192979812622, 0.32894301414489746, -0.32894301414489746, -0.009251821786165237, 0.17842113971710205, -0.17904432117938995, 0.06244979798793793, 1.0198695659637451, -0.0054887752048671246, 0.012499546632170677, -0.00695085059851408]} +{"t": 4.4257, "q": [-0.1564285308122635, 0.0022634733468294144, 0.01597653143107891, 0.3210110366344452, -0.15996411442756653, -0.0013837926089763641, -0.10174212604761124, -0.03491510823369026, 0.03993463143706322, 0.3172016441822052, -0.22279664874076843, 0.031005017459392548, 0.03345295414328575, 0.06084280088543892, 0.02998293749988079, 0.24157801270484924, 0.42677024006843567, -0.08076169341802597, 0.31329160928726196, 0.3204222321510315, -0.33151963353157043, -0.009215869009494781, 0.1786608248949051, -0.17904432117938995, 0.062305986881256104, 1.0200014114379883, -0.005476790945976973, 0.012535499408841133, -0.00695085059851408]} +{"t": 4.4424, "q": [-0.15639445185661316, 0.0022123404778540134, 0.015882788226008415, 0.32099398970603943, -0.15995976328849792, -0.001362658222205937, -0.10164838284254074, -0.03495771810412407, 0.03982749953866005, 0.3172357380390167, -0.22281794250011444, 0.031012391671538353, 0.033720795065164566, 0.06086573749780655, 0.029948998242616653, 0.23957665264606476, 0.4217488467693329, -0.07831691205501556, 0.30695196986198425, 0.31075096130371094, -0.33324533700942993, -0.009299758821725845, 0.17858892679214478, -0.1790323406457901, 0.06221011281013489, 1.0205646753311157, -0.0055007594637572765, 0.012535499408841133, -0.00695085059851408]} +{"t": 4.4592, "q": [-0.15641148388385773, 0.0022379071451723576, 0.015829220414161682, 0.32099398970603943, -0.15995556116104126, -0.0013837944716215134, -0.10164838284254074, -0.03496623784303665, 0.03980071470141411, 0.31722721457481384, -0.22283872961997986, 0.030976803973317146, 0.03389488905668259, 0.06088820844888687, 0.0299528855830431, 0.23842616379261017, 0.4163319766521454, -0.0737149715423584, 0.2994977831840515, 0.3004685044288635, -0.3352706730365753, -0.009287774562835693, 0.17831328511238098, -0.179056316614151, 0.06217416003346443, 1.0213795900344849, -0.0055247279815375805, 0.012523515149950981, -0.006962834857404232]} +{"t": 4.4775, "q": [-0.1564285308122635, 0.0022038184106349945, 0.01578904502093792, 0.3210110366344452, -0.1599598079919815, -0.0013767455238848925, -0.1016228199005127, -0.03498328477144241, 0.03977392986416817, 0.3172016441822052, -0.22284305095672607, 0.030984006822109222, 0.03398863226175308, 0.06083546578884125, 0.02996903285384178, 0.2373955249786377, 0.40917739272117615, -0.06630872189998627, 0.29287049174308777, 0.28650686144828796, -0.3380510210990906, -0.009251821786165237, 0.17796574532985687, -0.17914019525051117, 0.06215019151568413, 1.021751046180725, -0.0055247279815375805, 0.012535499408841133, -0.006962834857404232]} +{"t": 4.4942, "q": [-0.15644557774066925, 0.0021952963434159756, 0.01578904502093792, 0.3210451304912567, -0.15995551645755768, -0.0013696984387934208, -0.10157168656587601, -0.03500032797455788, 0.03977392986416817, 0.3172357380390167, -0.22284704446792603, 0.030962569639086723, 0.03406898304820061, 0.060805544257164, 0.029960699379444122, 0.23646074533462524, 0.40189099311828613, -0.06023271754384041, 0.2874895930290222, 0.27140673995018005, -0.34129875898361206, -0.009251821786165237, 0.1778339147567749, -0.17914019525051117, 0.062138207256793976, 1.0223143100738525, -0.005440838169306517, 0.012499546632170677, -0.006962834857404232]} +{"t": 4.5111, "q": [-0.15643705427646637, 0.0021612080745399, 0.01578904502093792, 0.32103660702705383, -0.1599598526954651, -0.001390841556712985, -0.10150350630283356, -0.03502589464187622, 0.03977392986416817, 0.3172101676464081, -0.22284288704395294, 0.030969686806201935, 0.03432342782616615, 0.060805544257164, 0.029960699379444122, 0.2362210601568222, 0.39541950821876526, -0.05537910386919975, 0.2820487320423126, 0.25692981481552124, -0.3460564911365509, -0.009299758821725845, 0.17769010365009308, -0.1790802776813507, 0.062138207256793976, 1.0234408378601074, -0.0055007594637572765, 0.012475578114390373, -0.006974819116294384]} +{"t": 4.5279, "q": [-0.156462624669075, 0.00210155313834548, 0.01581582799553871, 0.321096271276474, -0.15996836125850677, -0.0013767522759735584, -0.10151202976703644, -0.0351281613111496, 0.03978732228279114, 0.3172101676464081, -0.22284704446792603, 0.030962569639086723, 0.034363605082035065, 0.060805544257164, 0.029960699379444122, 0.2368202805519104, 0.3878215253353119, -0.04857206344604492, 0.27679964900016785, 0.24120649695396423, -0.35155725479125977, -0.009215869009494781, 0.17743843793869019, -0.17904432117938995, 0.06211423873901367, 1.024579405784607, -0.005440838169306517, 0.012475578114390373, -0.006962834857404232]} +{"t": 4.5446, "q": [-0.15649671852588654, 0.0020248540677130222, 0.015829220414161682, 0.3210536539554596, -0.15997262299060822, -0.0013697120593860745, -0.10151202976703644, -0.03519633784890175, 0.03978732228279114, 0.31722721457481384, -0.22284704446792603, 0.030962569639086723, 0.034510914236307144, 0.060813114047050476, 0.02995569072663784, 0.23717980086803436, 0.3803553283214569, -0.042879559099674225, 0.27290478348731995, 0.22490794956684113, -0.35480496287345886, -0.009227853268384933, 0.17733058333396912, -0.17902036011219025, 0.062066301703453064, 1.0259934663772583, -0.0054887752048671246, 0.012439625337719917, -0.006974819116294384]} +{"t": 4.5615, "q": [-0.15649671852588654, 0.0020163320004940033, 0.01581582799553871, 0.3211047947406769, -0.1599683165550232, -0.0013626649742946029, -0.10149499028921127, -0.035238947719335556, 0.039747145026922226, 0.31727835536003113, -0.22284704446792603, 0.030962569639086723, 0.03473857790231705, 0.060805544257164, 0.029960699379444122, 0.23738352954387665, 0.3739437758922577, -0.03892476484179497, 0.26995664834976196, 0.2093883901834488, -0.35678237676620483, -0.009215869009494781, 0.17705494165420532, -0.17892448604106903, 0.06203034892678261, 1.0273597240447998, -0.005476790945976973, 0.012439625337719917, -0.006998787634074688]} +{"t": 4.5782, "q": [-0.15649671852588654, 0.0020078099332749844, 0.01580243743956089, 0.3210877478122711, -0.15997686982154846, -0.0013626718427985907, -0.10149499028921127, -0.035230424255132675, 0.0397605374455452, 0.3172357380390167, -0.2228427231311798, 0.030955366790294647, 0.03491267189383507, 0.06079797446727753, 0.029965708032250404, 0.2376951277256012, 0.3668011724948883, -0.03458647429943085, 0.2652828097343445, 0.19122029840946198, -0.35969454050064087, -0.009215869009494781, 0.1768871694803238, -0.17890051007270813, 0.06203034892678261, 1.0283544063568115, -0.005476790945976973, 0.012391689233481884, -0.006986803375184536]} +{"t": 4.595, "q": [-0.15653079748153687, 0.0020163320004940033, 0.01580243743956089, 0.3211047947406769, -0.15996406972408295, -0.0013697053072974086, -0.10144385695457458, -0.035238947719335556, 0.03972036391496658, 0.31726130843162537, -0.22284704446792603, 0.030962569639086723, 0.035193901509046555, 0.06079040840268135, 0.029970718547701836, 0.238066628575325, 0.3581365942955017, -0.028869997709989548, 0.25972214341163635, 0.17097894847393036, -0.3636133670806885, -0.009227853268384933, 0.17681525647640228, -0.17890051007270813, 0.06192249059677124, 1.0293011665344238, -0.005464806687086821, 0.012379704974591732, -0.007022756151854992]} +{"t": 4.6119, "q": [-0.1565137505531311, 0.0020248540677130222, 0.015762262046337128, 0.32107922434806824, -0.15997262299060822, -0.0013697120593860745, -0.1013927236199379, -0.03524747118353844, 0.039586443454027176, 0.31726130843162537, -0.2228383868932724, 0.03094816394150257, 0.03542156517505646, 0.06079797446727753, 0.029965708032250404, 0.23837822675704956, 0.34926825761795044, -0.022194785997271538, 0.2542453408241272, 0.15203188359737396, -0.3677958846092224, -0.009239837527275085, 0.17681525647640228, -0.17890051007270813, 0.061946459114551544, 1.0302000045776367, -0.0054887752048671246, 0.012355736456811428, -0.0070587084628641605]} +{"t": 4.6286, "q": [-0.15650522708892822, 0.0020248540677130222, 0.015601558610796928, 0.32107922434806824, -0.15996836125850677, -0.0013767522759735584, -0.10132454335689545, -0.035238947719335556, 0.039372172206640244, 0.31726983189582825, -0.22284704446792603, 0.030962569639086723, 0.03595723956823349, 0.060813114047050476, 0.02995569072663784, 0.23906132578849792, 0.34085533022880554, -0.01647830940783024, 0.2497752159833908, 0.13259346783161163, -0.3722420334815979, -0.009227853268384933, 0.17675533890724182, -0.17888852953910828, 0.06191050633788109, 1.0316619873046875, -0.005452822428196669, 0.012355736456811428, -0.007130614016205072]} +{"t": 4.6453, "q": [-0.15650522708892822, 0.0020589428022503853, 0.015320328995585442, 0.3210536539554596, -0.1599598526954651, -0.001390841556712985, -0.1012563705444336, -0.03521338105201721, 0.039064161479473114, 0.31726983189582825, -0.22285951673984528, 0.030941201373934746, 0.03643934801220894, 0.06082068011164665, 0.029950682073831558, 0.2398882359266281, 0.3325502574443817, -0.011109377257525921, 0.24420255422592163, 0.11096194386482239, -0.37447109818458557, -0.00920388475060463, 0.17649167776107788, -0.17887654900550842, 0.06181463226675987, 1.033195972442627, -0.005452822428196669, 0.012295815162360668, -0.007190535310655832]} +{"t": 4.6622, "q": [-0.15653932094573975, 0.002144163940101862, 0.014985531568527222, 0.3210621774196625, -0.1599513590335846, -0.0014049219898879528, -0.10117114335298538, -0.03513668105006218, 0.03878292813897133, 0.31727835536003113, -0.22287198901176453, 0.030919848009943962, 0.036894671618938446, 0.06082068011164665, 0.029950682073831558, 0.2403915673494339, 0.32377782464027405, -0.003954794257879257, 0.2377670258283615, 0.08976184576749802, -0.3755856156349182, -0.009299758821725845, 0.17615613341331482, -0.17887654900550842, 0.06181463226675987, 1.0344783067703247, -0.005476790945976973, 0.01230779942125082, -0.007262440398335457]} +{"t": 4.6791, "q": [-0.1565563678741455, 0.0021952963434159756, 0.014583774842321873, 0.32107922434806824, -0.15993434190750122, -0.0014330917038023472, -0.1010688841342926, -0.03502589464187622, 0.03848830983042717, 0.3172442615032196, -0.2229010909795761, 0.03087000921368599, 0.03752409294247627, 0.06081334501504898, 0.02993677742779255, 0.24027173221111298, 0.3130519390106201, 0.005440838169306517, 0.23123562335968018, 0.06544585525989532, -0.3770117461681366, -0.009251821786165237, 0.1759883463382721, -0.17893646657466888, 0.06179066374897957, 1.0352813005447388, -0.0054887752048671246, 0.01230779942125082, -0.007298393175005913]} +{"t": 4.6959, "q": [-0.15648819506168365, 0.0022379071451723576, 0.01411505788564682, 0.3211814761161804, -0.15993009507656097, -0.001440131920389831, -0.10085582733154297, -0.03494919463992119, 0.03828743100166321, 0.3173294961452484, -0.22294698655605316, 0.03080602176487446, 0.038086552172899246, 0.060836050659418106, 0.029921751469373703, 0.24015188217163086, 0.30423155426979065, 0.013050821609795094, 0.22527946531772614, 0.04199272394180298, -0.37817421555519104, -0.009179916232824326, 0.17572470009326935, -0.17899638414382935, 0.061766695231199265, 1.0362879037857056, -0.0055127437226474285, 0.012295815162360668, -0.007346330210566521]} +{"t": 4.7126, "q": [-0.15648819506168365, 0.002340172417461872, 0.0137802604585886, 0.32121556997299194, -0.15990881621837616, -0.0014753506984561682, -0.10073652118444443, -0.034812841564416885, 0.03801959007978439, 0.3173806369304657, -0.22299271821975708, 0.030727695673704147, 0.03812672570347786, 0.06085118651390076, 0.02991173230111599, 0.2401878386735916, 0.29614219069480896, 0.020001672208309174, 0.21938322484493256, 0.018755313009023666, -0.37951645255088806, -0.00900015328079462, 0.17517341673374176, -0.1790323406457901, 0.061766695231199265, 1.0367313623428345, -0.0055247279815375805, 0.01230779942125082, -0.007394266780465841]} +{"t": 4.7294, "q": [-0.15645410120487213, 0.0024253935553133488, 0.013646341860294342, 0.32124966382980347, -0.15988755226135254, -0.0015105606289580464, -0.10073652118444443, -0.03465092182159424, 0.03781871497631073, 0.31749141216278076, -0.22299255430698395, 0.03071337565779686, 0.03811333328485489, 0.06083616614341736, 0.029912292957305908, 0.24017585813999176, 0.2898624539375305, 0.024951156228780746, 0.21403826773166656, -0.0037031255196779966, -0.3810384273529053, -0.008988169021904469, 0.1746101677417755, -0.17906829714775085, 0.061778679490089417, 1.0369471311569214, -0.0055007594637572765, 0.012319783680140972, -0.007442203816026449]} +{"t": 4.7461, "q": [-0.15641148388385773, 0.0025787916965782642, 0.013619557954370975, 0.32129228115081787, -0.15987899899482727, -0.0015105537604540586, -0.10071095079183578, -0.03448047861456871, 0.03776514530181885, 0.3176021873950958, -0.22299687564373016, 0.030720578506588936, 0.038059767335653305, 0.06085875630378723, 0.029906723648309708, 0.2401159405708313, 0.28378644585609436, 0.028438566252589226, 0.20895695686340332, -0.028210865333676338, -0.38274019956588745, -0.009024121798574924, 0.17432254552841187, -0.1790802776813507, 0.061766695231199265, 1.0372467041015625, -0.0055367122404277325, 0.012319783680140972, -0.007442203816026449]} +{"t": 4.7629, "q": [-0.1563262641429901, 0.002629924099892378, 0.013579382561147213, 0.3213860094547272, -0.15986204147338867, -0.0015528107760474086, -0.10067686438560486, -0.0344378687441349, 0.03779193013906479, 0.3177044689655304, -0.22299255430698395, 0.03071337565779686, 0.03800620138645172, 0.06085130199790001, 0.029902275651693344, 0.240139901638031, 0.27661988139152527, 0.03296860307455063, 0.20389960706233978, -0.053821153938770294, -0.3843221068382263, -0.00900015328079462, 0.17427460849285126, -0.17914019525051117, 0.061766695231199265, 1.0375702381134033, -0.0055127437226474285, 0.012319783680140972, -0.007478156592696905]} +{"t": 4.7796, "q": [-0.15630923211574554, 0.002638446632772684, 0.013592774048447609, 0.32153940200805664, -0.15985777974128723, -0.0015598597237840295, -0.10065129399299622, -0.0344378687441349, 0.037724971771240234, 0.3177896738052368, -0.22299671173095703, 0.030706258490681648, 0.0378321036696434, 0.06083640083670616, 0.029893379658460617, 0.24017585813999176, 0.2686983048915863, 0.038361504673957825, 0.19881829619407654, -0.07776563614606857, -0.3859160244464874, -0.008964200504124165, 0.1742386519908905, -0.17909225821495056, 0.06175471097230911, 1.0378937721252441, -0.0054887752048671246, 0.01230779942125082, -0.007466172333806753]} +{"t": 4.7963, "q": [-0.15634331107139587, 0.002638446632772684, 0.013606165535748005, 0.32167577743530273, -0.15986204147338867, -0.0015528107760474086, -0.1006598174571991, -0.0344378687441349, 0.03776514530181885, 0.3178408145904541, -0.22299255430698395, 0.03071337565779686, 0.03780532255768776, 0.06084396690130234, 0.029888371005654335, 0.2401638776063919, 0.261435866355896, 0.04212455078959465, 0.1947556436061859, -0.10123074799776077, -0.38813310861587524, -0.008952216245234013, 0.17420269548892975, -0.17902036011219025, 0.061778679490089417, 1.0380855798721313, -0.005464806687086821, 0.012295815162360668, -0.007466172333806753]} +{"t": 4.8131, "q": [-0.1563262641429901, 0.0025873142294585705, 0.013713301159441471, 0.3217950761318207, -0.15986204147338867, -0.0015528107760474086, -0.10064277797937393, -0.03448047861456871, 0.0379258468747139, 0.31794309616088867, -0.22298823297023773, 0.030706172809004784, 0.03744373843073845, 0.06085130199790001, 0.029902275651693344, 0.24010396003723145, 0.2543172538280487, 0.04607934504747391, 0.1913880705833435, -0.12589429318904877, -0.3905419409275055, -0.008916263468563557, 0.17410682141780853, -0.17902036011219025, 0.06179066374897957, 1.0381814241409302, -0.005464806687086821, 0.012271846644580364, -0.007478156592696905]} +{"t": 4.8298, "q": [-0.156334787607193, 0.0025361808948218822, 0.013766868971288204, 0.32189735770225525, -0.15985777974128723, -0.0015598597237840295, -0.10064277797937393, -0.03454013541340828, 0.03800620138645172, 0.31801125407218933, -0.22298391163349152, 0.030698969960212708, 0.03726964443922043, 0.06083640083670616, 0.029893379658460617, 0.2401638776063919, 0.24833711981773376, 0.04832039773464203, 0.18818828463554382, -0.1492994725704193, -0.3923635482788086, -0.008868326433002949, 0.1741427779197693, -0.1790083795785904, 0.06174272671341896, 1.0382413864135742, -0.005440838169306517, 0.012271846644580364, -0.007514109369367361]} +{"t": 4.8466, "q": [-0.156334787607193, 0.0024509597569704056, 0.013874003663659096, 0.32203370332717896, -0.15986628830432892, -0.0015457705594599247, -0.10051494091749191, -0.03467648848891258, 0.038059767335653305, 0.31808796525001526, -0.2229795753955841, 0.03069174848496914, 0.03709555044770241, 0.06082138419151306, 0.029893942177295685, 0.24015188217163086, 0.24247683584690094, 0.04885968565940857, 0.1855757236480713, -0.1729443520307541, -0.39332225918769836, -0.008868326433002949, 0.17415475845336914, -0.17896044254302979, 0.06179066374897957, 1.0384211540222168, -0.0055007594637572765, 0.012283830903470516, -0.007514109369367361]} +{"t": 4.8633, "q": [-0.1563262641429901, 0.0023060841485857964, 0.013981139287352562, 0.3221530020236969, -0.15987055003643036, -0.0015387303428724408, -0.10050642490386963, -0.03479579836130142, 0.0381535105407238, 0.31809648871421814, -0.22296693921089172, 0.030698781833052635, 0.03680092841386795, 0.06081381440162659, 0.029898950830101967, 0.2401638776063919, 0.23600535094738007, 0.04990231245756149, 0.1817527562379837, -0.19656525552272797, -0.3935140073299408, -0.0088803106918931, 0.17405888438224792, -0.17894844710826874, 0.061778679490089417, 1.0384690761566162, -0.0055007594637572765, 0.012283830903470516, -0.007514109369367361]} +{"t": 4.88, "q": [-0.1563262641429901, 0.0021952963434159756, 0.01419540960341692, 0.3222041428089142, -0.1598833054304123, -0.0015176008455455303, -0.1004723310470581, -0.03498328477144241, 0.03836778178811073, 0.31814759969711304, -0.22297126054763794, 0.030705982819199562, 0.0366402268409729, 0.06082138419151306, 0.029893942177295685, 0.24015188217163086, 0.22877885401248932, 0.05128049850463867, 0.17618009448051453, -0.22200776636600494, -0.39337021112442017, -0.008832373656332493, 0.17404690384864807, -0.17893646657466888, 0.06179066374897957, 1.0384809970855713, -0.005464806687086821, 0.012283830903470516, -0.007514109369367361]} +{"t": 4.8967, "q": [-0.15634331107139587, 0.0019992878660559654, 0.014289152808487415, 0.32227233052253723, -0.1598833054304123, -0.0015176008455455303, -0.10039563477039337, -0.03514520451426506, 0.0384749174118042, 0.3181731700897217, -0.22295445203781128, 0.030720150098204613, 0.03658665716648102, 0.06080647557973862, 0.029885029420256615, 0.24012792110443115, 0.2211928516626358, 0.05276654288172722, 0.17048758268356323, -0.24884045124053955, -0.3935619592666626, -0.008844357915222645, 0.17402292788028717, -0.17892448604106903, 0.06179066374897957, 1.0385169982910156, -0.005476790945976973, 0.012259862385690212, -0.00755006168037653]} +{"t": 4.9135, "q": [-0.15635183453559875, 0.0018799779936671257, 0.014342720620334148, 0.322331964969635, -0.15989606082439423, -0.0014964713482186198, -0.10031893849372864, -0.03527303412556648, 0.03851509094238281, 0.3182413578033447, -0.22294165194034576, 0.03071286343038082, 0.03658665716648102, 0.06080647557973862, 0.029885029420256615, 0.24015188217163086, 0.2132832556962967, 0.05439639836549759, 0.16516658663749695, -0.2724613547325134, -0.3934301435947418, -0.00882038939744234, 0.17405888438224792, -0.17891250550746918, 0.06180264800786972, 1.038564920425415, -0.0055127437226474285, 0.012271846644580364, -0.00760998297482729]} +{"t": 4.9302, "q": [-0.1563774049282074, 0.0017521465197205544, 0.014356112107634544, 0.3224171996116638, -0.1598917692899704, -0.0014894242631271482, -0.10028484463691711, -0.035409390926361084, 0.03852848336100578, 0.31831806898117065, -0.2229418158531189, 0.03072718344628811, 0.03647952526807785, 0.06080647557973862, 0.029885029420256615, 0.2401638776063919, 0.2064882069826126, 0.05464806780219078, 0.16094814240932465, -0.29692116379737854, -0.3926871120929718, -0.008772453293204308, 0.17399896681308746, -0.17887654900550842, 0.06179066374897957, 1.0386128425598145, -0.0055127437226474285, 0.012259862385690212, -0.007729825098067522]} +{"t": 4.947, "q": [-0.15639445185661316, 0.0017436244525015354, 0.014436463825404644, 0.32250240445137024, -0.15989601612091064, -0.0014823840465396643, -0.10031041502952576, -0.03542643412947655, 0.03863561898469925, 0.3183521330356598, -0.22291238605976105, 0.030748382210731506, 0.036198295652866364, 0.06077620014548302, 0.029905064031481743, 0.23998410999774933, 0.2009275257587433, 0.05450425669550896, 0.15663382411003113, -0.3204461932182312, -0.39205193519592285, -0.008760469034314156, 0.1738431751728058, -0.17886456847190857, 0.06179066374897957, 1.0386368036270142, -0.005476790945976973, 0.012259862385690212, -0.007801730651408434]} +{"t": 4.9638, "q": [-0.15636035799980164, 0.0017436244525015354, 0.014556990936398506, 0.32258763909339905, -0.15990877151489258, -0.0014612545492127538, -0.10026780515909195, -0.03543495759367943, 0.038742754608392715, 0.3184032738208771, -0.22290390729904175, 0.03074829652905464, 0.035863496363162994, 0.06076139211654663, 0.029886648058891296, 0.23937290906906128, 0.19395269453525543, 0.0550675131380558, 0.15149259567260742, -0.34530147910118103, -0.3917643129825592, -0.0087245162576437, 0.17374730110168457, -0.17886456847190857, 0.06180264800786972, 1.0386488437652588, -0.0055127437226474285, 0.012271846644580364, -0.007837682962417603]} +{"t": 4.9806, "q": [-0.15631774067878723, 0.0017180577851831913, 0.014650734141469002, 0.3226558268070221, -0.15993013978004456, -0.0014542280696332455, -0.10026780515909195, -0.035460520535707474, 0.03878292813897133, 0.31845441460609436, -0.22289974987506866, 0.030755413696169853, 0.03547513112425804, 0.06074647605419159, 0.029877711087465286, 0.23920513689517975, 0.1865464448928833, 0.055043548345565796, 0.14584802091121674, -0.3693418502807617, -0.39145272970199585, -0.008592689409852028, 0.17375928163528442, -0.17880463600158691, 0.06180264800786972, 1.0386728048324585, -0.005476790945976973, 0.01224787812680006, -0.007873635739088058]} +{"t": 4.9974, "q": [-0.15630070865154266, 0.0017265803180634975, 0.014757868833839893, 0.3226558268070221, -0.1599215865135193, -0.0014542212011292577, -0.10029336810112, -0.035477567464113235, 0.038903456181287766, 0.318479984998703, -0.22289958596229553, 0.030741093680262566, 0.03507337346673012, 0.060754045844078064, 0.029872702434659004, 0.23932497203350067, 0.1801588535308838, 0.0547679103910923, 0.14092250168323517, -0.39384958148002625, -0.3906857371330261, -0.008520783856511116, 0.17371134459972382, -0.1787327378988266, 0.06181463226675987, 1.0386728048324585, -0.005440838169306517, 0.01224787812680006, -0.007957525551319122]} +{"t": 5.0142, "q": [-0.15630923211574554, 0.0017265803180634975, 0.01479804515838623, 0.3226473033428192, -0.15991728007793427, -0.001447174116037786, -0.10034450143575668, -0.03544347733259201, 0.03893024101853371, 0.31850555539131165, -0.22289559245109558, 0.030762530863285065, 0.034698400646448135, 0.06074647605419159, 0.029877711087465286, 0.23936092853546143, 0.1744423806667328, 0.05448028817772865, 0.13623666763305664, -0.41664355993270874, -0.38933151960372925, -0.008508799597620964, 0.17360348999500275, -0.1787087619304657, 0.06180264800786972, 1.0386488437652588, -0.005464806687086821, 0.012235893867909908, -0.008077368140220642]} +{"t": 5.0309, "q": [-0.15626661479473114, 0.0017777127213776112, 0.01486500445753336, 0.3226473033428192, -0.15990877151489258, -0.0014612545492127538, -0.10036154836416245, -0.035417910665273666, 0.03899719938635826, 0.31855666637420654, -0.22289542853832245, 0.030748210847377777, 0.03443056344985962, 0.06076161190867424, 0.029867693781852722, 0.23920513689517975, 0.16933710873126984, 0.05433647707104683, 0.13073591887950897, -0.4417625069618225, -0.3877735733985901, -0.008412926457822323, 0.17355555295944214, -0.1787087619304657, 0.06181463226675987, 1.0386967658996582, -0.0054887752048671246, 0.01224787812680006, -0.00820919405668974]} +{"t": 5.0477, "q": [-0.15622399747371674, 0.001794756855815649, 0.014851612038910389, 0.3226558268070221, -0.1599130779504776, -0.0014683016343042254, -0.10034450143575668, -0.03537530079483986, 0.03899719938635826, 0.31860780715942383, -0.22289542853832245, 0.030748210847377777, 0.0342564694583416, 0.06076161190867424, 0.029867693781852722, 0.2391452193260193, 0.16350078582763672, 0.054180681705474854, 0.12473181635141373, -0.4650118947029114, -0.3853168189525604, -0.008353005163371563, 0.1735915094614029, -0.17872075736522675, 0.06180264800786972, 1.0387088060379028, -0.0055007594637572765, 0.01224787812680006, -0.008317052386701107]} +{"t": 5.0645, "q": [-0.1561899185180664, 0.001837367657572031, 0.01486500445753336, 0.32263025641441345, -0.15991738438606262, -0.0014753487193956971, -0.10037006437778473, -0.03536677733063698, 0.03899719938635826, 0.31855666637420654, -0.22289974987506866, 0.030755413696169853, 0.034176118671894073, 0.06075415760278702, 0.029863227158784866, 0.23892949521541595, 0.15758058428764343, 0.05391702800989151, 0.12010590732097626, -0.4865955114364624, -0.38184139132499695, -0.008317052386701107, 0.1735915094614029, -0.17872075736522675, 0.06181463226675987, 1.0387088060379028, -0.0055007594637572765, 0.012259862385690212, -0.008400942198932171]} +{"t": 5.0813, "q": [-0.1561984419822693, 0.0018203235231339931, 0.014891788363456726, 0.3226643204689026, -0.1599130779504776, -0.0014683016343042254, -0.1004297211766243, -0.035349734127521515, 0.03901059180498123, 0.31855666637420654, -0.22289542853832245, 0.030748210847377777, 0.03413594141602516, 0.060754045844078064, 0.029872702434659004, 0.23874974250793457, 0.1516004502773285, 0.05380916967988014, 0.1158754751086235, -0.509725034236908, -0.37687990069389343, -0.008245146833360195, 0.173567533493042, -0.1787327378988266, 0.061826616525650024, 1.038720726966858, -0.005464806687086821, 0.012259862385690212, -0.008580705150961876]} +{"t": 5.0982, "q": [-0.1561984419822693, 0.0018118014559149742, 0.014891788363456726, 0.3226558268070221, -0.15991303324699402, -0.0014542143326252699, -0.10045529156923294, -0.035349734127521515, 0.03905076906085014, 0.31855666637420654, -0.22289542853832245, 0.030748210847377777, 0.03413594141602516, 0.060754045844078064, 0.029872702434659004, 0.23867782950401306, 0.14635135233402252, 0.05348559841513634, 0.11145329475402832, -0.5318119525909424, -0.37091177701950073, -0.008221178315579891, 0.17353157699108124, -0.17869678139686584, 0.06181463226675987, 1.0387327671051025, -0.0055007594637572765, 0.012235893867909908, -0.008808405138552189]} +{"t": 5.1149, "q": [-0.15616434812545776, 0.001828845590353012, 0.014891788363456726, 0.32267284393310547, -0.15990452468395233, -0.0014683036133646965, -0.10045529156923294, -0.03534121438860893, 0.03905076906085014, 0.318522572517395, -0.22290407121181488, 0.03076261654496193, 0.03413594141602516, 0.060738906264305115, 0.02988271974027157, 0.23882164061069489, 0.14182132482528687, 0.05313805490732193, 0.10694722831249237, -0.5527963638305664, -0.36816737055778503, -0.008197209797799587, 0.17354357242584229, -0.17869678139686584, 0.061826616525650024, 1.0387567281723022, -0.0055127437226474285, 0.012235893867909908, -0.009048090316355228]} +{"t": 5.1317, "q": [-0.15616434812545776, 0.0018032793886959553, 0.014891788363456726, 0.32268136739730835, -0.15990877151489258, -0.0014612545492127538, -0.10044676810503006, -0.035349734127521515, 0.03905076906085014, 0.31849703192710876, -0.22289974987506866, 0.030755413696169853, 0.03413594141602516, 0.06074647605419159, 0.029877711087465286, 0.2389175146818161, 0.1368238925933838, 0.05295829102396965, 0.1013985276222229, -0.5761895775794983, -0.36538705229759216, -0.008101336658000946, 0.17349563539028168, -0.17869678139686584, 0.061886537820100784, 1.0388165712356567, -0.005440838169306517, 0.01224787812680006, -0.00932372733950615]} +{"t": 5.1485, "q": [-0.1561899185180664, 0.0018118014559149742, 0.014878395944833755, 0.32268136739730835, -0.15991303324699402, -0.0014542143326252699, -0.10041268169879913, -0.035358257591724396, 0.03898380696773529, 0.318479984998703, -0.2228999137878418, 0.03076973371207714, 0.03424307703971863, 0.06074647605419159, 0.029877711087465286, 0.23907330632209778, 0.13273727893829346, 0.05261074751615524, 0.09614943712949753, -0.5990315079689026, -0.3625347912311554, -0.008041415363550186, 0.17350761592388153, -0.17862488329410553, 0.061898522078990936, 1.0388405323028564, -0.005464806687086821, 0.012235893867909908, -0.009707222692668438]} +{"t": 5.1653, "q": [-0.1561899185180664, 0.00178623478859663, 0.014891788363456726, 0.32268136739730835, -0.15991738438606262, -0.0014753487193956971, -0.10043824464082718, -0.03537530079483986, 0.03903737664222717, 0.31850555539131165, -0.22289974987506866, 0.030755413696169853, 0.03424307703971863, 0.060754045844078064, 0.029872702434659004, 0.23918116092681885, 0.1290820837020874, 0.05259876325726509, 0.09136773645877838, -0.6185897588729858, -0.35867586731910706, -0.007981494069099426, 0.17335182428359985, -0.17861288785934448, 0.06191050633788109, 1.038852572441101, -0.005476790945976973, 0.012235893867909908, -0.010282465256750584]} +{"t": 5.182, "q": [-0.15615582466125488, 0.0018032793886959553, 0.014918571338057518, 0.322706937789917, -0.15990881621837616, -0.0014753506984561682, -0.10044676810503006, -0.03537530079483986, 0.03903737664222717, 0.31851404905319214, -0.2228999137878418, 0.03076973371207714, 0.0342564694583416, 0.060768961906433105, 0.029881639406085014, 0.23931299149990082, 0.125486820936203, 0.05257479473948479, 0.0860946774482727, -0.6393823623657227, -0.3531751036643982, -0.007837682962417603, 0.17332784831523895, -0.17858892679214478, 0.06192249059677124, 1.0388644933700562, -0.005440838169306517, 0.012259862385690212, -0.010989534668624401]} +{"t": 5.1988, "q": [-0.15616434812545776, 0.0018032793886959553, 0.014891788363456726, 0.3227154612541199, -0.15991303324699402, -0.0014542143326252699, -0.10044676810503006, -0.03537530079483986, 0.03901059180498123, 0.3185396194458008, -0.22289974987506866, 0.030755413696169853, 0.03421629220247269, 0.06077652797102928, 0.029876630753278732, 0.23934894800186157, 0.12295815348625183, 0.05253884196281433, 0.08115717023611069, -0.6577781438827515, -0.34930419921875, -0.007586014457046986, 0.17330388724803925, -0.17851701378822327, 0.061886537820100784, 1.038852572441101, -0.005476790945976973, 0.01224787812680006, -0.011696604080498219]} +{"t": 5.2155, "q": [-0.15617287158966064, 0.0018032793886959553, 0.014891788363456726, 0.32268989086151123, -0.15991732478141785, -0.0014612614177167416, -0.1004297211766243, -0.03537530079483986, 0.039064161479473114, 0.31851404905319214, -0.22289974987506866, 0.030755413696169853, 0.03424307703971863, 0.06077674776315689, 0.029857676476240158, 0.2394208461046219, 0.12146012485027313, 0.05216733366250992, 0.0779334157705307, -0.6745081543922424, -0.34682348370552063, -0.007394266780465841, 0.17330388724803925, -0.17842113971710205, 0.06191050633788109, 1.0388765335083008, -0.005440838169306517, 0.012259862385690212, -0.01245160959661007]} +{"t": 5.2323, "q": [-0.156147301197052, 0.001794756855815649, 0.014931963756680489, 0.32272398471832275, -0.15991303324699402, -0.0014542143326252699, -0.10044676810503006, -0.03537530079483986, 0.039077550172805786, 0.31859928369522095, -0.22289542853832245, 0.030748210847377777, 0.03409576788544655, 0.06079166755080223, 0.029866613447666168, 0.23945680260658264, 0.12028566747903824, 0.05119660869240761, 0.07580022513866425, -0.6895363926887512, -0.342988520860672, -0.007298393175005913, 0.17327991127967834, -0.17831328511238098, 0.061958443373441696, 1.0388885736465454, -0.005476790945976973, 0.01224787812680006, -0.013218600302934647]} +{"t": 5.2492, "q": [-0.1561046987771988, 0.0018203235231339931, 0.014985531568527222, 0.32273250818252563, -0.15990877151489258, -0.0014612545492127538, -0.10044676810503006, -0.03537530079483986, 0.03915790468454361, 0.31860780715942383, -0.2228999137878418, 0.03076973371207714, 0.03397523984313011, 0.06079923361539841, 0.029861604794859886, 0.23948077857494354, 0.11929097771644592, 0.05075319483876228, 0.07358314096927643, -0.7050559520721436, -0.3385423719882965, -0.007046724669635296, 0.17327991127967834, -0.17814551293849945, 0.06197042763233185, 1.0389364957809448, -0.005476790945976973, 0.01224787812680006, -0.013733922503888607]} +{"t": 5.2659, "q": [-0.15607912838459015, 0.0018203235231339931, 0.01503909844905138, 0.32281774282455444, -0.1599002182483673, -0.0014612565282732248, -0.10044676810503006, -0.035358257591724396, 0.03918468579649925, 0.31864190101623535, -0.22289542853832245, 0.030748210847377777, 0.033868104219436646, 0.06079166755080223, 0.029866613447666168, 0.23948077857494354, 0.11855994164943695, 0.05069327354431152, 0.07040732353925705, -0.7191014289855957, -0.3328258991241455, -0.006819024216383696, 0.1732918918132782, -0.17804963886737823, 0.061982411891222, 1.0389604568481445, -0.005464806687086821, 0.012259862385690212, -0.014153369702398777]} +{"t": 5.2826, "q": [-0.15607060492038727, 0.0018203235231339931, 0.01505249086767435, 0.322894424200058, -0.15989597141742706, -0.0014682967448607087, -0.10046380758285522, -0.035358257591724396, 0.039224863052368164, 0.3187526762485504, -0.22289127111434937, 0.03075532801449299, 0.03374757617712021, 0.06079923361539841, 0.029861604794859886, 0.239540696144104, 0.1182723194360733, 0.04989032819867134, 0.06736332923173904, -0.7316489219665527, -0.32769665122032166, -0.006603308022022247, 0.17332784831523895, -0.17796574532985687, 0.061982411891222, 1.039020299911499, -0.0055007594637572765, 0.01224787812680006, -0.014632739126682281]} +{"t": 5.2995, "q": [-0.15603651106357574, 0.0018203235231339931, 0.015173017978668213, 0.32291147112846375, -0.15990015864372253, -0.0014471516478806734, -0.10054051131010056, -0.035358257591724396, 0.03933199867606163, 0.318897545337677, -0.22289542853832245, 0.030748210847377777, 0.0332922525703907, 0.06082193925976753, 0.02984657697379589, 0.2395646572113037, 0.11844009906053543, 0.04715792462229729, 0.0646788626909256, -0.7408648133277893, -0.32444894313812256, -0.006339655257761478, 0.17321999371051788, -0.17791780829429626, 0.062006380409002304, 1.0390442609786987, -0.005476790945976973, 0.012259862385690212, -0.015172028914093971]} +{"t": 5.3163, "q": [-0.1560109555721283, 0.001837367657572031, 0.015306936576962471, 0.32291147112846375, -0.159908726811409, -0.0014471672475337982, -0.10060016810894012, -0.035349734127521515, 0.03947930783033371, 0.31896573305130005, -0.22289559245109558, 0.030762530863285065, 0.0327431857585907, 0.06082918122410774, 0.02987000346183777, 0.24139824509620667, 0.11844009906053543, 0.04356265813112259, 0.061982411891222, -0.7480553388595581, -0.3213689923286438, -0.0062677497044205666, 0.1730402261018753, -0.1777620166540146, 0.06199439615011215, 1.0390442609786987, -0.0054887752048671246, 0.01224787812680006, -0.015723302960395813]} +{"t": 5.333, "q": [-0.15595129132270813, 0.001888500526547432, 0.015414072200655937, 0.32291147112846375, -0.1598959118127823, -0.0014542007120326161, -0.10072799772024155, -0.035290081053972244, 0.039559658616781235, 0.3190339207649231, -0.22290390729904175, 0.03074829652905464, 0.032502129673957825, 0.060912083834409714, 0.029843291267752647, 0.24351945519447327, 0.12005797028541565, 0.04009921848773956, 0.059969063848257065, -0.7532325387001038, -0.31778571009635925, -0.006243781186640263, 0.1730402261018753, -0.17759422957897186, 0.061982411891222, 1.0390682220458984, -0.0055007594637572765, 0.01224787812680006, -0.016466325148940086]} +{"t": 5.3499, "q": [-0.15593425929546356, 0.0019737216643989086, 0.0154542475938797, 0.32290294766426086, -0.15989601612091064, -0.0014823840465396643, -0.10078765451908112, -0.035238947719335556, 0.03962662070989609, 0.3191361725330353, -0.22289974987506866, 0.030755413696169853, 0.03246195614337921, 0.061085451394319534, 0.029784828424453735, 0.2452811449766159, 0.12289822846651077, 0.03790610283613205, 0.05881857872009277, -0.7548743486404419, -0.3132556676864624, -0.006207828875631094, 0.17320801317691803, -0.1774624139070511, 0.062018364667892456, 1.0391521453857422, -0.005476790945976973, 0.012259862385690212, -0.017556890845298767]} +{"t": 5.3666, "q": [-0.15586607158184052, 0.0020078099332749844, 0.015467639081180096, 0.32290294766426086, -0.15988315641880035, -0.0014753213617950678, -0.10084730386734009, -0.03518781438469887, 0.03962662070989609, 0.3192555010318756, -0.22290407121181488, 0.03076261654496193, 0.03244856372475624, 0.0612737238407135, 0.02973526157438755, 0.24688702821731567, 0.12605008482933044, 0.03567703813314438, 0.05844706669449806, -0.7548264265060425, -0.3087615668773651, -0.006087986286729574, 0.17330388724803925, -0.17737852036952972, 0.061982411891222, 1.0394397974014282, -0.005464806687086821, 0.012283830903470516, -0.018935075029730797]} +{"t": 5.3834, "q": [-0.15579789876937866, 0.002093031071126461, 0.015467639081180096, 0.3228859007358551, -0.1598745435476303, -0.0014612273080274463, -0.10086435079574585, -0.035162247717380524, 0.039599835872650146, 0.3193066120147705, -0.22289974987506866, 0.030755413696169853, 0.03240838646888733, 0.061514150351285934, 0.02971682883799076, 0.24854084849357605, 0.13052019476890564, 0.03233344107866287, 0.0583871454000473, -0.7534602284431458, -0.30503448843955994, -0.006076002027839422, 0.17327991127967834, -0.1771867722272873, 0.062018364667892456, 1.0400749444961548, -0.005476790945976973, 0.012283830903470516, -0.02046905644237995]} +{"t": 5.4001, "q": [-0.15577232837677002, 0.0021612080745399, 0.015467639081180096, 0.3228773772716522, -0.15987038612365723, -0.0014964508591219783, -0.10094104707241058, -0.035051461309194565, 0.03964000940322876, 0.3193577527999878, -0.22290407121181488, 0.03076261654496193, 0.03247534856200218, 0.0618755966424942, 0.029627449810504913, 0.24966736137866974, 0.1359250843524933, 0.02871420420706272, 0.05752428248524666, -0.7515906691551208, -0.3023500144481659, -0.005980128422379494, 0.17317205667495728, -0.176983043551445, 0.06203034892678261, 1.0410696268081665, -0.005440838169306517, 0.012271846644580364, -0.021403826773166656]} +{"t": 5.4169, "q": [-0.1557382494211197, 0.0022805174812674522, 0.015414072200655937, 0.32286885380744934, -0.15984903275966644, -0.0015034861862659454, -0.1009325236082077, -0.03494919463992119, 0.039573051035404205, 0.3194003701210022, -0.22290822863578796, 0.030755499377846718, 0.032528914511203766, 0.06242465600371361, 0.029544945806264877, 0.24981117248535156, 0.14341522753238678, 0.024172183126211166, 0.0556667260825634, -0.7477077841758728, -0.300025075674057, -0.00595615990459919, 0.17317205667495728, -0.17689915001392365, 0.062006380409002304, 1.0417287349700928, -0.0055007594637572765, 0.012283830903470516, -0.02208692766726017]} +{"t": 5.4336, "q": [-0.15571267902851105, 0.00235721655189991, 0.015414072200655937, 0.3228518068790436, -0.15985332429409027, -0.001510533271357417, -0.10094104707241058, -0.034863974899053574, 0.039559658616781235, 0.3194600045681, -0.22289974987506866, 0.030755413696169853, 0.0324217788875103, 0.06322801858186722, 0.02953791432082653, 0.250230610370636, 0.15098924934864044, 0.02010953053832054, 0.051604073494672775, -0.7415119409561157, -0.296477735042572, -0.005980128422379494, 0.17312411963939667, -0.17697104811668396, 0.06199439615011215, 1.0422440767288208, -0.005464806687086821, 0.012259862385690212, -0.02274606004357338]} +{"t": 5.4505, "q": [-0.15567858517169952, 0.002408349420875311, 0.01538728829473257, 0.3228262662887573, -0.15985332429409027, -0.001510533271357417, -0.10095809400081635, -0.03477875143289566, 0.039599835872650146, 0.3194600045681, -0.22290390729904175, 0.03074829652905464, 0.032502129673957825, 0.06406112760305405, 0.02954827807843685, 0.25029054284095764, 0.1591385304927826, 0.015927035361528397, 0.04848817363381386, -0.7338300347328186, -0.2921873927116394, -0.006004096940159798, 0.1730881631374359, -0.17711485922336578, 0.06197042763233185, 1.0428433418273926, -0.0055007594637572765, 0.01224787812680006, -0.023321302607655525]} +{"t": 5.4673, "q": [-0.1556871086359024, 0.0024594818241894245, 0.015414072200655937, 0.3228433132171631, -0.15984487533569336, -0.0015387097373604774, -0.10100070387125015, -0.03473614156246185, 0.03961322829127312, 0.31947705149650574, -0.22290822863578796, 0.030755499377846718, 0.03239499405026436, 0.06465353071689606, 0.02959616295993328, 0.25045832991600037, 0.16745558381080627, 0.011840414255857468, 0.04640292003750801, -0.7271069288253784, -0.2875974476337433, -0.005992112681269646, 0.1729922890663147, -0.1771867722272873, 0.06191050633788109, 1.0437182188034058, -0.0055007594637572765, 0.01224787812680006, -0.023848608136177063]} +{"t": 5.484, "q": [-0.15572120249271393, 0.0024935705587267876, 0.015440856106579304, 0.32280921936035156, -0.15984052419662476, -0.0015175666194409132, -0.1011626273393631, -0.03465944156050682, 0.03968018665909767, 0.3194600045681, -0.22290822863578796, 0.030755499377846718, 0.03243517130613327, 0.06493747979402542, 0.029698669910430908, 0.250973641872406, 0.17657557129859924, 0.0070706927217543125, 0.044269729405641556, -0.7159495949745178, -0.28433772921562195, -0.00595615990459919, 0.17293237149715424, -0.177210733294487, 0.06193447485566139, 1.0445091724395752, -0.005464806687086821, 0.012223909609019756, -0.0243759136646986]} +{"t": 5.5007, "q": [-0.15576380491256714, 0.0024850484915077686, 0.015414072200655937, 0.32281774282455444, -0.15983626246452332, -0.001524615683592856, -0.10122227668762207, -0.03467648848891258, 0.03964000940322876, 0.3194088935852051, -0.22291254997253418, 0.030762702226638794, 0.03246195614337921, 0.0650116354227066, 0.029771501198410988, 0.25211215019226074, 0.18605509400367737, 0.0012463594321161509, 0.04102200269699097, -0.7049840092658997, -0.28323519229888916, -0.005968144163489342, 0.17293237149715424, -0.1771867722272873, 0.061958443373441696, 1.0454438924789429, -0.005476790945976973, 0.012223909609019756, -0.024723457172513008]} +{"t": 5.5175, "q": [-0.15584902465343475, 0.0024594818241894245, 0.015440856106579304, 0.32273250818252563, -0.15984047949314117, -0.0015034793177619576, -0.10132454335689545, -0.034744665026664734, 0.03962662070989609, 0.31924697756767273, -0.2229168713092804, 0.03076990507543087, 0.0326494425535202, 0.0650264099240303, 0.02978985384106636, 0.2539696991443634, 0.1958581954240799, -0.005165201146155596, 0.036623790860176086, -0.6919811367988586, -0.2828037440776825, -0.005980128422379494, 0.1729443520307541, -0.17717479169368744, 0.06193447485566139, 1.0464506149291992, -0.005464806687086821, 0.012223909609019756, -0.02503504604101181]} +{"t": 5.5342, "q": [-0.15589164197444916, 0.002382783219218254, 0.015494422987103462, 0.322706937789917, -0.15984052419662476, -0.0015175666194409132, -0.10131601989269257, -0.03477875143289566, 0.03969357907772064, 0.31923845410346985, -0.2229127138853073, 0.03077702224254608, 0.03272979333996773, 0.06501884758472443, 0.029794881120324135, 0.2559950351715088, 0.20478643476963043, -0.010366355068981647, 0.03151851147413254, -0.6769529581069946, -0.2826000154018402, -0.005992112681269646, 0.17292039096355438, -0.17717479169368744, 0.061958443373441696, 1.0474932193756104, -0.005464806687086821, 0.01224787812680006, -0.025238778442144394]} +{"t": 5.5512, "q": [-0.155959814786911, 0.0023146062158048153, 0.015481031499803066, 0.32268989086151123, -0.15984472632408142, -0.0014964391011744738, -0.1012989804148674, -0.03488101810216904, 0.03964000940322876, 0.3191361725330353, -0.2229083925485611, 0.030769819393754005, 0.03295745700597763, 0.06501860916614532, 0.029813820496201515, 0.25794845819473267, 0.21421802043914795, -0.016322514042258263, 0.02581402100622654, -0.663626492023468, -0.2828037440776825, -0.005992112681269646, 0.17287245392799377, -0.17712685465812683, 0.061946459114551544, 1.0484399795532227, -0.005476790945976973, 0.01224787812680006, -0.02545449510216713]} +{"t": 5.5679, "q": [-0.15608765184879303, 0.0022123404778540134, 0.015494422987103462, 0.32263025641441345, -0.15985748171806335, -0.0014753096038475633, -0.1012563705444336, -0.03500032797455788, 0.03964000940322876, 0.3189998269081116, -0.22291254997253418, 0.030762702226638794, 0.03322529420256615, 0.0649958997964859, 0.029828904196619987, 0.26082468032836914, 0.2244165986776352, -0.02334527112543583, 0.01852761209011078, -0.6502280831336975, -0.28339096903800964, -0.006052033975720406, 0.17282451689243317, -0.17704296112060547, 0.06193447485566139, 1.0490751266479492, -0.005476790945976973, 0.012235893867909908, -0.025742115452885628]} +{"t": 5.5847, "q": [-0.15622399747371674, 0.0020674648694694042, 0.015507815405726433, 0.3225705921649933, -0.15985748171806335, -0.0014753096038475633, -0.1012563705444336, -0.03519633784890175, 0.03964000940322876, 0.3188464343547821, -0.22291254997253418, 0.030762702226638794, 0.0332922525703907, 0.06492777168750763, 0.029874155297875404, 0.26407238841056824, 0.2340039759874344, -0.029684925451874733, 0.010989534668624401, -0.6342052221298218, -0.28394225239753723, -0.006099970545619726, 0.17277657985687256, -0.17700700461864471, 0.06193447485566139, 1.0491949319839478, -0.005476790945976973, 0.01224787812680006, -0.025921879336237907]} +{"t": 5.6014, "q": [-0.15630070865154266, 0.0018970225937664509, 0.015601558610796928, 0.32250240445137024, -0.15987025201320648, -0.0014541802229359746, -0.10122227668762207, -0.03533269092440605, 0.03969357907772064, 0.3187271058559418, -0.22290407121181488, 0.03076261654496193, 0.03327886015176773, 0.0649050623178482, 0.029889238998293877, 0.2679672837257385, 0.24239294230937958, -0.03479020670056343, 0.003978762775659561, -0.6197162866592407, -0.28456541895866394, -0.00618386035785079, 0.17263276875019073, -0.17692311108112335, 0.06193447485566139, 1.0492069721221924, -0.0055367122404277325, 0.012235893867909908, -0.026089658960700035]} +{"t": 5.6181, "q": [-0.1563262641429901, 0.0017436244525015354, 0.015708694234490395, 0.3224683105945587, -0.15987880527973175, -0.0014541869750246406, -0.10117966681718826, -0.03551165387034416, 0.03970697149634361, 0.3186589479446411, -0.2229083925485611, 0.030769819393754005, 0.03342617303133011, 0.0649050623178482, 0.029889238998293877, 0.27230557799339294, 0.25331056118011475, -0.041369546204805374, -0.003571299137547612, -0.6038970947265625, -0.28484106063842773, -0.006171876098960638, 0.17258483171463013, -0.1768631935119629, 0.061898522078990936, 1.0492788553237915, -0.005476790945976973, 0.012235893867909908, -0.026329342275857925]} +{"t": 5.635, "q": [-0.15630923211574554, 0.001581704244017601, 0.015735477209091187, 0.32235753536224365, -0.15989576280117035, -0.0014119300758466125, -0.10117966681718826, -0.03567357361316681, 0.039733752608299255, 0.3186163306236267, -0.22290407121181488, 0.03076261654496193, 0.03331903740763664, 0.06487502157688141, 0.029890410602092743, 0.2774587869644165, 0.26431208848953247, -0.046738479286432266, -0.01191231980919838, -0.5881977677345276, -0.2849729061126709, -0.006411560345441103, 0.17242904007434845, -0.17679129540920258, 0.06193447485566139, 1.0493746995925903, -0.0055007594637572765, 0.012271846644580364, -0.026521090418100357]} +{"t": 5.6517, "q": [-0.15631774067878723, 0.0014964831061661243, 0.015922963619232178, 0.32227233052253723, -0.15991277992725372, -0.001383760361932218, -0.10119671374559402, -0.03574175387620926, 0.039894457906484604, 0.3184714615345001, -0.2229127138853073, 0.03077702224254608, 0.03339938819408417, 0.06485988199710846, 0.02990046516060829, 0.28258803486824036, 0.2745945453643799, -0.05041763558983803, -0.02009754627943039, -0.5729058980941772, -0.28498488664627075, -0.006411560345441103, 0.17229720950126648, -0.17674335837364197, 0.061898522078990936, 1.04939866065979, -0.0054887752048671246, 0.01224787812680006, -0.026628948748111725]} +{"t": 5.6685, "q": [-0.15636888146400452, 0.0013942178338766098, 0.01593635603785515, 0.32221266627311707, -0.15990857779979706, -0.0014048878801986575, -0.10117114335298538, -0.03585254028439522, 0.039894457906484604, 0.318479984998703, -0.22290407121181488, 0.03076261654496193, 0.033519916236400604, 0.06482961028814316, 0.02992057614028454, 0.2879689335823059, 0.2860395014286041, -0.05482783168554306, -0.02822284959256649, -0.5544861555099487, -0.2850687801837921, -0.006411560345441103, 0.17228522896766663, -0.17671938240528107, 0.061886537820100784, 1.049458622932434, -0.005416869651526213, 0.01224787812680006, -0.026688870042562485]} +{"t": 5.6852, "q": [-0.15639445185661316, 0.0013004741631448269, 0.015882788226008415, 0.32222118973731995, -0.15990857779979706, -0.0014048878801986575, -0.10114558041095734, -0.03592924028635025, 0.039747145026922226, 0.3184714615345001, -0.22290855646133423, 0.030784139409661293, 0.0339350625872612, 0.06482937186956406, 0.02993951551616192, 0.2920076251029968, 0.29906633496284485, -0.06054430454969406, -0.03498195484280586, -0.537132978439331, -0.2854043245315552, -0.006435528863221407, 0.1723451465368271, -0.1767074018716812, 0.061898522078990936, 1.049614429473877, -0.005428853910416365, 0.012271846644580364, -0.02684466540813446]} +{"t": 5.7019, "q": [-0.15643705427646637, 0.00127490796148777, 0.01581582799553871, 0.32222118973731995, -0.1599000096321106, -0.0014048897428438067, -0.10110297054052353, -0.036005936563014984, 0.03970697149634361, 0.318479984998703, -0.22290407121181488, 0.03076261654496193, 0.03429664298892021, 0.06482204049825668, 0.029925605282187462, 0.2957586944103241, 0.31135016679763794, -0.06523013859987259, -0.042148519307374954, -0.5210860967636108, -0.2858956754207611, -0.006435528863221407, 0.17233316600322723, -0.1766594648361206, 0.061898522078990936, 1.0500338077545166, -0.005476790945976973, 0.012295815162360668, -0.026988474652171135]} +{"t": 5.7186, "q": [-0.1564285308122635, 0.0012493417598307133, 0.015748869627714157, 0.3222297132015228, -0.15990857779979706, -0.0014048878801986575, -0.1011200100183487, -0.036022983491420746, 0.0396667942404747, 0.318479984998703, -0.22290822863578796, 0.030755499377846718, 0.034376997500658035, 0.06483718007802963, 0.029915548861026764, 0.30019286274909973, 0.3236459791660309, -0.06803444772958755, -0.05042961984872818, -0.5028700828552246, -0.2859915494918823, -0.006507434416562319, 0.17210546135902405, -0.1766594648361206, 0.061898522078990936, 1.0500458478927612, -0.005476790945976973, 0.012259862385690212, -0.027108317241072655]} +{"t": 5.7356, "q": [-0.15641148388385773, 0.00127490796148777, 0.015735477209091187, 0.32222118973731995, -0.15990431606769562, -0.0014119368279352784, -0.10110297054052353, -0.0359974168241024, 0.03968018665909767, 0.3185310959815979, -0.22290407121181488, 0.03076261654496193, 0.03441717103123665, 0.06484474241733551, 0.02991052158176899, 0.3041476607322693, 0.335330605506897, -0.0701197013258934, -0.05872270464897156, -0.48494166135787964, -0.28618329763412476, -0.006519418675452471, 0.1718418002128601, -0.1766354888677597, 0.061886537820100784, 1.0502375364303589, -0.005476790945976973, 0.012283830903470516, -0.027216175571084023]} +{"t": 5.7523, "q": [-0.15639445185661316, 0.0013004741631448269, 0.01562834158539772, 0.3222382366657257, -0.15990006923675537, -0.0014189770445227623, -0.10109444707632065, -0.035946283489465714, 0.03961322829127312, 0.3185737133026123, -0.2229168713092804, 0.03076990507543087, 0.03441717103123665, 0.06487502157688141, 0.029890410602092743, 0.3086177706718445, 0.3474826216697693, -0.07118629664182663, -0.0680224597454071, -0.4661264419555664, -0.28623124957084656, -0.006531402934342623, 0.17168600857257843, -0.1766834259033203, 0.061886537820100784, 1.050297498703003, -0.005476790945976973, 0.012283830903470516, -0.027348002418875694]} +{"t": 5.769, "q": [-0.1563774049282074, 0.0013516070321202278, 0.015601558610796928, 0.3222467601299286, -0.15989576280117035, -0.0014119300758466125, -0.10113705694675446, -0.03586958348751068, 0.039586443454027176, 0.31859076023101807, -0.2229127138853073, 0.03077702224254608, 0.03441717103123665, 0.06488259136676788, 0.02988538146018982, 0.31259652972221375, 0.36029374599456787, -0.07158178091049194, -0.07672300934791565, -0.44716739654541016, -0.28611138463020325, -0.006555370986461639, 0.17168600857257843, -0.1766834259033203, 0.06186256930232048, 1.0505491495132446, -0.005476790945976973, 0.012271846644580364, -0.027431892231106758]} +{"t": 5.7858, "q": [-0.15638592839241028, 0.0014112619683146477, 0.015547990798950195, 0.3222467601299286, -0.15989576280117035, -0.0014119300758466125, -0.10115410387516022, -0.03580993041396141, 0.039599835872650146, 0.3185737133026123, -0.2229083925485611, 0.030769819393754005, 0.03426986187696457, 0.06490530073642731, 0.029870297759771347, 0.3166232407093048, 0.37270939350128174, -0.07185741513967514, -0.08358997106552124, -0.4279566705226898, -0.2858477532863617, -0.006591323763132095, 0.17157815396785736, -0.1766834259033203, 0.06187455356121063, 1.0507768392562866, -0.0055007594637572765, 0.012259862385690212, -0.027491813525557518]} +{"t": 5.8025, "q": [-0.15630923211574554, 0.0015135272406041622, 0.015588166192173958, 0.32227233052253723, -0.15989580750465393, -0.001426017377525568, -0.1012052372097969, -0.03566505387425423, 0.03965340182185173, 0.3185822367668152, -0.2229168713092804, 0.03076990507543087, 0.03408237546682358, 0.06492044031620026, 0.0298602432012558, 0.3206739127635956, 0.3843460977077484, -0.07206114381551743, -0.08986970782279968, -0.41272473335266113, -0.2855960726737976, -0.006687197834253311, 0.1715182363986969, -0.1766834259033203, 0.06186256930232048, 1.0507768392562866, -0.0054887752048671246, 0.012271846644580364, -0.027515782043337822]} +{"t": 5.8192, "q": [-0.15631774067878723, 0.0016157925128936768, 0.015588166192173958, 0.32225528359413147, -0.15989580750465393, -0.001426017377525568, -0.10127341002225876, -0.03561392053961754, 0.03962662070989609, 0.31859076023101807, -0.2229168713092804, 0.03076990507543087, 0.03392167016863823, 0.06491287052631378, 0.029865270480513573, 0.32455679774284363, 0.39576706290245056, -0.0716177299618721, -0.09468736499547958, -0.39459261298179626, -0.28548821806907654, -0.006831008475273848, 0.1715661734342575, -0.17667144536972046, 0.061898522078990936, 1.0508008003234863, -0.005476790945976973, 0.012259862385690212, -0.027527766302227974]} +{"t": 5.8359, "q": [-0.1563262641429901, 0.0016498812474310398, 0.015574774704873562, 0.3222297132015228, -0.15989156067371368, -0.0014330575941130519, -0.10128193348646164, -0.03556278720498085, 0.039586443454027176, 0.3185651898384094, -0.22291254997253418, 0.030762702226638794, 0.03400202468037605, 0.06492801010608673, 0.029855214059352875, 0.3277325928211212, 0.4060615003108978, -0.07115034759044647, -0.09716809540987015, -0.3777787387371063, -0.2854762375354767, -0.0068429927341639996, 0.1715661734342575, -0.1766594648361206, 0.061898522078990936, 1.05088472366333, -0.0055007594637572765, 0.01224787812680006, -0.02750379778444767]} +{"t": 5.8527, "q": [-0.15635183453559875, 0.0016584033146500587, 0.015494422987103462, 0.32227233052253723, -0.15988300740718842, -0.0014330594567582011, -0.10123080015182495, -0.03556278720498085, 0.039559658616781235, 0.31859076023101807, -0.2229127138853073, 0.03077702224254608, 0.03414933383464813, 0.06489773094654083, 0.02987532690167427, 0.3306807279586792, 0.4171708822250366, -0.0710424855351448, -0.09825865924358368, -0.358568012714386, -0.28530845046043396, -0.0068549769930541515, 0.17153021693229675, -0.1766594648361206, 0.061886537820100784, 1.0510165691375732, -0.005476790945976973, 0.012235893867909908, -0.02755173295736313]} +{"t": 5.8694, "q": [-0.15638592839241028, 0.0016669253818690777, 0.015467639081180096, 0.32225528359413147, -0.15988300740718842, -0.0014330594567582011, -0.10122227668762207, -0.03557131066918373, 0.03947930783033371, 0.3185737133026123, -0.2229168713092804, 0.03076990507543087, 0.03426986187696457, 0.06489016115665436, 0.029880354180932045, 0.3332213759422302, 0.42695000767707825, -0.0710185170173645, -0.09816279262304306, -0.34224551916122437, -0.28493693470954895, -0.00689092930406332, 0.17138640582561493, -0.1766594648361206, 0.06192249059677124, 1.0510765314102173, -0.0055007594637572765, 0.012259862385690212, -0.027575701475143433]} +{"t": 5.8861, "q": [-0.15641148388385773, 0.0016413591802120209, 0.0154542475938797, 0.32222118973731995, -0.15988729894161224, -0.0014401065418496728, -0.1012563705444336, -0.03556278720498085, 0.03945252299308777, 0.3185822367668152, -0.22291705012321472, 0.030784225091338158, 0.03422968462109566, 0.06486745178699493, 0.029895437881350517, 0.336672842502594, 0.4379635155200958, -0.07091066241264343, -0.09813882410526276, -0.3213689923286438, -0.28484106063842773, -0.006974819116294384, 0.17102688550949097, -0.17667144536972046, 0.061898522078990936, 1.0510765314102173, -0.0055007594637572765, 0.012259862385690212, -0.027599669992923737]} +{"t": 5.9028, "q": [-0.1564200073480606, 0.0016243145801126957, 0.015494422987103462, 0.32217857241630554, -0.15989156067371368, -0.0014330575941130519, -0.10122227668762207, -0.035579830408096313, 0.03950609266757965, 0.31849703192710876, -0.2229168713092804, 0.03076990507543087, 0.0342564694583416, 0.06485988199710846, 0.02990046516060829, 0.3399205505847931, 0.4475748538970947, -0.07091066241264343, -0.09799501299858093, -0.3017747700214386, -0.2848051190376282, -0.006998787634074688, 0.17077520489692688, -0.17669542133808136, 0.06191050633788109, 1.0511363744735718, -0.005440838169306517, 0.012295815162360668, -0.027587685734033585]} +{"t": 5.9196, "q": [-0.15640297532081604, 0.001573182176798582, 0.015467639081180096, 0.3221103847026825, -0.15988725423812866, -0.0014260105090215802, -0.10121376067399979, -0.03562244400382042, 0.03949270024895668, 0.3184714615345001, -0.2229211926460266, 0.030777107924222946, 0.034176118671894073, 0.06485988199710846, 0.02990046516060829, 0.3431682884693146, 0.45707833766937256, -0.0709945484995842, -0.09794707596302032, -0.2836546301841736, -0.2845055162906647, -0.007034740410745144, 0.1705475151538849, -0.1766834259033203, 0.06191050633788109, 1.0512921810150146, -0.005464806687086821, 0.012295815162360668, -0.02761165425181389]} +{"t": 5.9363, "q": [-0.15639445185661316, 0.0015305713750422, 0.01562834158539772, 0.3219143748283386, -0.15989156067371368, -0.0014330575941130519, -0.10130750387907028, -0.03569062054157257, 0.03961322829127312, 0.31836917996406555, -0.22291254997253418, 0.030762702226638794, 0.03392167016863823, 0.06484474241733551, 0.02991052158176899, 0.347278892993927, 0.46641406416893005, -0.0713181272149086, -0.09764746576547623, -0.26324549317359924, -0.28415796160697937, -0.0071066454984247684, 0.17023591697216034, -0.1766594648361206, 0.061886537820100784, 1.0514119863510132, -0.005476790945976973, 0.012283830903470516, -0.027647607028484344]} +{"t": 5.9532, "q": [-0.15639445185661316, 0.0015220493078231812, 0.015748869627714157, 0.32176950573921204, -0.1598915159702301, -0.0014189702924340963, -0.10138420015573502, -0.03569914028048515, 0.03977392986416817, 0.3183862268924713, -0.22291705012321472, 0.030784225091338158, 0.03345295414328575, 0.06485208123922348, 0.029924433678388596, 0.35116177797317505, 0.4753423035144806, -0.07148590683937073, -0.09588578343391418, -0.24229706823825836, -0.28373852372169495, -0.007226487621665001, 0.1699482947587967, -0.1766354888677597, 0.06191050633788109, 1.0515319108963013, -0.0055007594637572765, 0.012295815162360668, -0.02767157554626465]} +{"t": 5.9699, "q": [-0.15638592839241028, 0.0015220493078231812, 0.015869395807385445, 0.3215564489364624, -0.15989576280117035, -0.0014119300758466125, -0.10147794336080551, -0.03569062054157257, 0.03982749953866005, 0.31822431087493896, -0.22291705012321472, 0.030784225091338158, 0.03307798132300377, 0.06484439224004745, 0.02993893250823021, 0.35540419816970825, 0.4839949309825897, -0.07146193832159042, -0.09427990019321442, -0.222019761800766, -0.28355875611305237, -0.007286408916115761, 0.1697685420513153, -0.17657557129859924, 0.06193447485566139, 1.0516396760940552, -0.0055007594637572765, 0.012271846644580364, -0.02767157554626465]} +{"t": 5.9866, "q": [-0.15636888146400452, 0.0015305713750422, 0.01598992384970188, 0.321471244096756, -0.1599128693342209, -0.0014119349652901292, -0.10156316310167313, -0.03569062054157257, 0.039921242743730545, 0.3181731700897217, -0.22292552888393402, 0.030784308910369873, 0.03294406458735466, 0.06478383392095566, 0.029979154467582703, 0.3594908118247986, 0.49319881200790405, -0.07177352160215378, -0.09305750578641891, -0.20208999514579773, -0.2833789885044098, -0.007406251039355993, 0.1697445660829544, -0.17651565372943878, 0.061958443373441696, 1.0519992113113403, -0.005476790945976973, 0.012271846644580364, -0.027659591287374496]} +{"t": 6.0034, "q": [-0.15638592839241028, 0.001547615509480238, 0.016016706824302673, 0.32130080461502075, -0.159921333193779, -0.001383767114020884, -0.10164838284254074, -0.03568209707736969, 0.039921242743730545, 0.3180623948574066, -0.22291705012321472, 0.030784225091338158, 0.032863713800907135, 0.06476112455129623, 0.029994238168001175, 0.363457590341568, 0.5010604858398438, -0.07209710031747818, -0.09182313084602356, -0.18399381637573242, -0.28313931822776794, -0.007538077887147665, 0.16957679390907288, -0.17646771669387817, 0.06197042763233185, 1.052694320678711, -0.0054887752048671246, 0.01224787812680006, -0.0276835598051548]} +{"t": 6.0201, "q": [-0.15640297532081604, 0.001547615509480238, 0.016030099242925644, 0.3210110366344452, -0.15991702675819397, -0.0013767200289294124, -0.101759172976017, -0.03566505387425423, 0.04000159353017807, 0.3179686367511749, -0.22292552888393402, 0.030784308910369873, 0.03294406458735466, 0.06476112455129623, 0.029994238168001175, 0.3672206401824951, 0.509185791015625, -0.07250456511974335, -0.09007343649864197, -0.16412396728992462, -0.2828996181488037, -0.0076219672337174416, 0.16921725869178772, -0.17645573616027832, 0.061982411891222, 1.0535212755203247, -0.0055007594637572765, 0.012235893867909908, -0.027659591287374496]} +{"t": 6.0368, "q": [-0.15640297532081604, 0.001539093442261219, 0.01598992384970188, 0.32084912061691284, -0.15991707146167755, -0.001390807330608368, -0.101759172976017, -0.03566505387425423, 0.039921242743730545, 0.31790047883987427, -0.22292552888393402, 0.030784308910369873, 0.033185116946697235, 0.06476100534200668, 0.030003705993294716, 0.3699410557746887, 0.5171792507171631, -0.07359512895345688, -0.08720920979976654, -0.1440623700618744, -0.28274381160736084, -0.00777776213362813, 0.1688697189092636, -0.17645573616027832, 0.061958443373441696, 1.0543721914291382, -0.005464806687086821, 0.012235893867909908, -0.0276835598051548]} +{"t": 6.0536, "q": [-0.1564200073480606, 0.0015305713750422, 0.01597653143107891, 0.3206275403499603, -0.15991707146167755, -0.001390807330608368, -0.101759172976017, -0.03568209707736969, 0.03980071470141411, 0.3178749084472656, -0.22292985022068024, 0.03079153038561344, 0.033359210938215256, 0.06476088613271713, 0.03001316823065281, 0.3720382750034332, 0.5240581631660461, -0.07436211407184601, -0.08379369974136353, -0.12515126168727875, -0.2826239764690399, -0.007837682962417603, 0.16825851798057556, -0.17645573616027832, 0.06193447485566139, 1.055318832397461, -0.005476790945976973, 0.01224787812680006, -0.0276835598051548]} +{"t": 6.0703, "q": [-0.15640297532081604, 0.0015561380423605442, 0.015869395807385445, 0.3205508589744568, -0.15990857779979706, -0.0014048878801986575, -0.10177621990442276, -0.035656530410051346, 0.0397605374455452, 0.31786638498306274, -0.22292985022068024, 0.03079153038561344, 0.03330564498901367, 0.06471558660268784, 0.03003387339413166, 0.3740636110305786, 0.5317520499229431, -0.0751890316605568, -0.07992279529571533, -0.10459832102060318, -0.28249216079711914, -0.007909588515758514, 0.1673237532377243, -0.17645573616027832, 0.061958443373441696, 1.05610990524292, -0.005464806687086821, 0.012259862385690212, -0.027707528322935104]} +{"t": 6.0871, "q": [-0.15639445185661316, 0.0016072704456746578, 0.01593635603785515, 0.3205082416534424, -0.15990851819515228, -0.001390800578519702, -0.10181882977485657, -0.03560539707541466, 0.03981410712003708, 0.31786638498306274, -0.22292985022068024, 0.03079153038561344, 0.03309137374162674, 0.06464746594429016, 0.030079122632741928, 0.3756934702396393, 0.5382595062255859, -0.07632753252983093, -0.07499728351831436, -0.08470450341701508, -0.28236034512519836, -0.00806538388133049, 0.16641294956207275, -0.17645573616027832, 0.06193447485566139, 1.0565292835235596, -0.005476790945976973, 0.012271846644580364, -0.027719512581825256]} +{"t": 6.1038, "q": [-0.1563774049282074, 0.0016413591802120209, 0.01594974845647812, 0.3204230070114136, -0.15990857779979706, -0.0014048878801986575, -0.10188700258731842, -0.03557131066918373, 0.03985428065061569, 0.31790047883987427, -0.22292985022068024, 0.03079153038561344, 0.032850321382284164, 0.06460961699485779, 0.0301042627543211, 0.37704768776893616, 0.5444793105125427, -0.07796937227249146, -0.06932874023914337, -0.06594919413328171, -0.28221651911735535, -0.00814927276223898, 0.16570588946342468, -0.17650367319583893, 0.061946459114551544, 1.0568288564682007, -0.0055127437226474285, 0.012283830903470516, -0.027719512581825256]} +{"t": 6.1205, "q": [-0.1563774049282074, 0.0016413591802120209, 0.01594974845647812, 0.32034632563591003, -0.15990857779979706, -0.0014048878801986575, -0.1018955260515213, -0.03555426374077797, 0.03985428065061569, 0.3178834319114685, -0.22293418645858765, 0.030798733234405518, 0.03276996687054634, 0.06460180133581161, 0.03012821264564991, 0.3774911165237427, 0.5508788824081421, -0.08074971288442612, -0.06337258219718933, -0.046067360788583755, -0.28198882937431335, -0.008161257021129131, 0.1654302477836609, -0.17647969722747803, 0.061982411891222, 1.0569727420806885, -0.0054887752048671246, 0.012283830903470516, -0.027707528322935104]} +{"t": 6.1374, "q": [-0.15636035799980164, 0.0016328366473317146, 0.01596313901245594, 0.32030370831489563, -0.15990427136421204, -0.0013978407951071858, -0.10188700258731842, -0.03556278720498085, 0.03985428065061569, 0.3178919553756714, -0.22293400764465332, 0.03078441321849823, 0.0327431857585907, 0.06454918533563614, 0.03013501688838005, 0.37759897112846375, 0.5568470358848572, -0.08406934142112732, -0.05698499083518982, -0.027371970936655998, -0.2819528579711914, -0.008245146833360195, 0.16529841721057892, -0.17647969722747803, 0.062006380409002304, 1.0574641227722168, -0.0055367122404277325, 0.012283830903470516, -0.027719512581825256]} +{"t": 6.1541, "q": [-0.15638592839241028, 0.0016498812474310398, 0.01598992384970188, 0.32030370831489563, -0.15990857779979706, -0.0014048878801986575, -0.10192961245775223, -0.03555426374077797, 0.039907850325107574, 0.31790900230407715, -0.22292985022068024, 0.03079153038561344, 0.03240838646888733, 0.06452634930610657, 0.030159568414092064, 0.37769484519958496, 0.5609456300735474, -0.08568721264600754, -0.05149621516466141, -0.009635317139327526, -0.2818569839000702, -0.008412926457822323, 0.16511864960193634, -0.17645573616027832, 0.06197042763233185, 1.0578715801239014, -0.005464806687086821, 0.012283830903470516, -0.027707528322935104]} +{"t": 6.1709, "q": [-0.15639445185661316, 0.0016157925128936768, 0.01611045002937317, 0.3202184736728668, -0.15991277992725372, -0.001383760361932218, -0.10214266926050186, -0.03557131066918373, 0.04004176706075668, 0.31791752576828003, -0.22292985022068024, 0.03079153038561344, 0.03208698332309723, 0.06452634930610657, 0.030159568414092064, 0.3774791359901428, 0.5639057159423828, -0.08646618574857712, -0.04536029323935509, 0.00755006168037653, -0.28186896443367004, -0.008508799597620964, 0.16507071256637573, -0.17639581859111786, 0.062006380409002304, 1.0580272674560547, -0.0055007594637572765, 0.012259862385690212, -0.027719512581825256]} +{"t": 6.1878, "q": [-0.15641148388385773, 0.0016328366473317146, 0.016244368627667427, 0.3202184736728668, -0.15991702675819397, -0.0013767200289294124, -0.10227049887180328, -0.03554574400186539, 0.04012211784720421, 0.31795158982276917, -0.22292985022068024, 0.03079153038561344, 0.03161826729774475, 0.06448093801736832, 0.03018973581492901, 0.37722745537757874, 0.566949725151062, -0.08749683201313019, -0.03954794257879257, 0.024292023852467537, -0.28191691637039185, -0.00854475237429142, 0.16501079499721527, -0.176240012049675, 0.062018364667892456, 1.0581351518630981, -0.0054887752048671246, 0.012259862385690212, -0.02767157554626465]} +{"t": 6.2045, "q": [-0.15640297532081604, 0.0016669253818690777, 0.016431856900453568, 0.3201844096183777, -0.15991702675819397, -0.0013767200289294124, -0.1023557186126709, -0.03556278720498085, 0.0403096042573452, 0.31796011328697205, -0.22292985022068024, 0.03079153038561344, 0.031136156991124153, 0.06441280990839005, 0.030234985053539276, 0.3766881823539734, 0.5690948963165283, -0.08813199400901794, -0.03353186324238777, 0.03844539448618889, -0.28184500336647034, -0.00860467366874218, 0.16498683393001556, -0.17614413797855377, 0.062006380409002304, 1.058123230934143, -0.005476790945976973, 0.012259862385690212, -0.027695544064044952]} +{"t": 6.2213, "q": [-0.15639445185661316, 0.0016498812474310398, 0.01663273386657238, 0.3201673626899719, -0.15992558002471924, -0.0013767181662842631, -0.1024920716881752, -0.03557131066918373, 0.04049709066748619, 0.3179856836795807, -0.22292552888393402, 0.030784308910369873, 0.03073440119624138, 0.06436751782894135, 0.03025568462908268, 0.37594515085220337, 0.5701854825019836, -0.08857540786266327, -0.027300065383315086, 0.05343766137957573, -0.28219255805015564, -0.008640626445412636, 0.16498683393001556, -0.1760602593421936, 0.061982411891222, 1.058123230934143, -0.005476790945976973, 0.012235893867909908, -0.027707528322935104]} +{"t": 6.2383, "q": [-0.15639445185661316, 0.0016498812474310398, 0.016860397532582283, 0.32015031576156616, -0.15991702675819397, -0.0013767200289294124, -0.10261990875005722, -0.035588353872299194, 0.04065779596567154, 0.318036824464798, -0.22292985022068024, 0.03079153038561344, 0.030533522367477417, 0.06434492021799088, 0.030261294916272163, 0.3750583231449127, 0.5705569982528687, -0.08923453837633133, -0.022278673946857452, 0.0662008598446846, -0.2822284996509552, -0.008676579222083092, 0.16497483849525452, -0.1759883463382721, 0.061982411891222, 1.0581711530685425, -0.005476790945976973, 0.012235893867909908, -0.0276835598051548]} +{"t": 6.2551, "q": [-0.15639445185661316, 0.0016498812474310398, 0.017021099105477333, 0.3201417922973633, -0.15992558002471924, -0.0013767181662842631, -0.10261138528585434, -0.035588353872299194, 0.04084528237581253, 0.3180283010005951, -0.22292985022068024, 0.03079153038561344, 0.03043977916240692, 0.06425409018993378, 0.030321629717946053, 0.3740636110305786, 0.5704371333122253, -0.09004946798086166, -0.016897758468985558, 0.07929962128400803, -0.28258803486824036, -0.008736500516533852, 0.16499881446361542, -0.17591644823551178, 0.062006380409002304, 1.0581951141357422, -0.0055247279815375805, 0.01224787812680006, -0.02767157554626465]} +{"t": 6.2719, "q": [-0.15636888146400452, 0.0016328366473317146, 0.017088059335947037, 0.3201417922973633, -0.1599212884902954, -0.0013696710811927915, -0.10263694822788239, -0.035596877336502075, 0.0408586747944355, 0.31809648871421814, -0.22292570769786835, 0.030798647552728653, 0.030533522367477417, 0.0641254112124443, 0.030407102778553963, 0.37310487031936646, 0.5696821212768555, -0.09049288183450699, -0.012942963279783726, 0.08852747082710266, -0.28261199593544006, -0.008772453293204308, 0.16499881446361542, -0.17580857872962952, 0.062018364667892456, 1.0582550764083862, -0.0055007594637572765, 0.01224787812680006, -0.0276835598051548]} +{"t": 6.2886, "q": [-0.15636888146400452, 0.0016243145801126957, 0.017074666917324066, 0.3201417922973633, -0.15991272032260895, -0.0013696642126888037, -0.1026284247636795, -0.03562244400382042, 0.0408586747944355, 0.3180794417858124, -0.22292137145996094, 0.030791427940130234, 0.030854927375912666, 0.06404983252286911, 0.030447911471128464, 0.3712473213672638, 0.5683518648147583, -0.09069661796092987, -0.008341020904481411, 0.09608951956033707, -0.28306740522384644, -0.00878443755209446, 0.16501079499721527, -0.17572470009326935, 0.061982411891222, 1.058290958404541, -0.005464806687086821, 0.01224787812680006, -0.0276835598051548]} +{"t": 6.3053, "q": [-0.1563774049282074, 0.00159022631123662, 0.017047883942723274, 0.32015883922576904, -0.15992984175682068, -0.0013696779496967793, -0.10260286182165146, -0.03564801067113876, 0.04081849753856659, 0.3180623948574066, -0.22292985022068024, 0.03079153038561344, 0.03128346800804138, 0.06400465220212936, 0.030459139496088028, 0.3684670031070709, 0.5666021704673767, -0.0905887559056282, -0.003511378075927496, 0.101698137819767, -0.2832711338996887, -0.00882038939744234, 0.16496285796165466, -0.17572470009326935, 0.062006380409002304, 1.0583149194717407, -0.0055007594637572765, 0.012283830903470516, -0.02767157554626465]} +{"t": 6.322, "q": [-0.1563774049282074, 0.00159022631123662, 0.017007706686854362, 0.32015883922576904, -0.15993408858776093, -0.0013626377331092954, -0.10257729887962341, -0.035656530410051346, 0.04081849753856659, 0.31808796525001526, -0.22292552888393402, 0.030784308910369873, 0.03160487487912178, 0.06397473067045212, 0.030450839549303055, 0.3648237884044647, 0.5636301040649414, -0.09049288183450699, 0.0018096179701387882, 0.10458633303642273, -0.28373852372169495, -0.008796420879662037, 0.16484302282333374, -0.17572470009326935, 0.062006380409002304, 1.0584228038787842, -0.005476790945976973, 0.012271846644580364, -0.027707528322935104]} +{"t": 6.3388, "q": [-0.15635183453559875, 0.0016243145801126957, 0.017007706686854362, 0.3201673626899719, -0.1599297821521759, -0.0013555906480178237, -0.10257729887962341, -0.035630963742733, 0.04079171270132065, 0.3181220591068268, -0.22292985022068024, 0.03079153038561344, 0.03144416958093643, 0.06375616788864136, 0.030520886182785034, 0.36219924688339233, 0.5595794320106506, -0.09012137353420258, 0.005009406246244907, 0.10631205886602402, -0.2838224172592163, -0.00878443755209446, 0.16449548304080963, -0.1756887435913086, 0.06203034892678261, 1.0584467649459839, -0.005476790945976973, 0.012271846644580364, -0.0276835598051548]} +{"t": 6.3556, "q": [-0.15629218518733978, 0.0016498812474310398, 0.017047883942723274, 0.3201673626899719, -0.15993404388427734, -0.0013485504314303398, -0.10257729887962341, -0.035596877336502075, 0.0408586747944355, 0.3181135356426239, -0.22292570769786835, 0.030798647552728653, 0.031042413786053658, 0.06352955847978592, 0.03063383139669895, 0.3599821627140045, 0.5545819997787476, -0.08978581428527832, 0.00695085059851408, 0.10650380700826645, -0.2844935357570648, -0.00882038939744234, 0.16424380242824554, -0.17565278708934784, 0.062066301703453064, 1.0584467649459839, -0.005476790945976973, 0.012271846644580364, -0.0276835598051548]} +{"t": 6.3723, "q": [-0.15627513825893402, 0.0016669253818690777, 0.017034491524100304, 0.3201417922973633, -0.15994690358638763, -0.0013555955374613404, -0.10254320502281189, -0.03557131066918373, 0.04087206721305847, 0.31809648871421814, -0.22292552888393402, 0.030784308910369873, 0.0309084951877594, 0.06334835290908813, 0.03071645274758339, 0.3568902313709259, 0.5487456917762756, -0.08923453837633133, 0.008916263468563557, 0.10544919967651367, -0.28493693470954895, -0.0088803106918931, 0.1643276959657669, -0.17559286952018738, 0.06204233318567276, 1.0584707260131836, -0.0055007594637572765, 0.012259862385690212, -0.027635622769594193]} +{"t": 6.3891, "q": [-0.15631774067878723, 0.0016669253818690777, 0.017047883942723274, 0.32015883922576904, -0.1599425971508026, -0.0013485484523698688, -0.10254320502281189, -0.03557131066918373, 0.0408586747944355, 0.318105012178421, -0.2229211926460266, 0.030777107924222946, 0.031029021367430687, 0.06325776875019073, 0.030757645145058632, 0.35323503613471985, 0.5402249097824097, -0.08826381713151932, 0.010390323586761951, 0.10288457572460175, -0.2864948809146881, -0.009012137539684772, 0.1646033376455307, -0.17549699544906616, 0.062066301703453064, 1.0586265325546265, -0.0055007594637572765, 0.012271846644580364, -0.027635622769594193]} +{"t": 6.4058, "q": [-0.1563262641429901, 0.0016584033146500587, 0.01699431613087654, 0.32015031576156616, -0.15993833541870117, -0.0013555974001064897, -0.10251764208078384, -0.035537220537662506, 0.040778324007987976, 0.31809648871421814, -0.22292552888393402, 0.030784308910369873, 0.03136381879448891, 0.06317510455846786, 0.030765460804104805, 0.3490285873413086, 0.5305536389350891, -0.0854475274682045, 0.011001518927514553, 0.09825865924358368, -0.28723791241645813, -0.009036106057465076, 0.16480706632137299, -0.17535318434238434, 0.062078285962343216, 1.0587104558944702, -0.0055247279815375805, 0.012271846644580364, -0.027635622769594193]} +{"t": 6.4225, "q": [-0.156334787607193, 0.0016754474490880966, 0.01682022027671337, 0.3201673626899719, -0.15993408858776093, -0.0013626377331092954, -0.10247503221035004, -0.035528700798749924, 0.04064440354704857, 0.318105012178421, -0.22292552888393402, 0.030784308910369873, 0.03191288560628891, 0.0631527453660965, 0.030752114951610565, 0.3441629707813263, 0.522727906703949, -0.08234360814094543, 0.011924304068088531, 0.09314139932394028, -0.28760942816734314, -0.008988169021904469, 0.16499881446361542, -0.17529326677322388, 0.062066301703453064, 1.0589141845703125, -0.005464806687086821, 0.012271846644580364, -0.027647607028484344]} +{"t": 6.4393, "q": [-0.15629218518733978, 0.0016839695163071156, 0.016699694097042084, 0.3201844096183777, -0.15993408858776093, -0.0013626377331092954, -0.10237276554107666, -0.03554574400186539, 0.04055066034197807, 0.31809648871421814, -0.22293832898139954, 0.030791616067290306, 0.03223429247736931, 0.063152976334095, 0.030733201652765274, 0.33980071544647217, 0.5163283348083496, -0.0806538388133049, 0.012691294774413109, 0.08767659217119217, -0.28832846879959106, -0.00900015328079462, 0.1649269014596939, -0.17529326677322388, 0.06203034892678261, 1.0589860677719116, -0.0055127437226474285, 0.012271846644580364, -0.027647607028484344]} +{"t": 6.456, "q": [-0.15627513825893402, 0.0016924915835261345, 0.016672909259796143, 0.32020145654678345, -0.15993408858776093, -0.0013626377331092954, -0.10236424207687378, -0.035537220537662506, 0.04048370197415352, 0.31813907623291016, -0.22292552888393402, 0.030784308910369873, 0.03256909176707268, 0.063152976334095, 0.030733201652765274, 0.3345516324043274, 0.5088741779327393, -0.07939549535512924, 0.013925669714808464, 0.0785326287150383, -0.2893950641155243, -0.009012137539684772, 0.16471119225025177, -0.1754370778799057, 0.06203034892678261, 1.059022068977356, -0.0055127437226474285, 0.012271846644580364, -0.027659591287374496]} +{"t": 6.4727, "q": [-0.1562836617231369, 0.0017010136507451534, 0.016498815268278122, 0.32025256752967834, -0.1599341332912445, -0.001376725034788251, -0.10232163220643997, -0.035528700798749924, 0.04034978151321411, 0.31822431087493896, -0.22293400764465332, 0.03078441321849823, 0.03290388733148575, 0.0631229430437088, 0.03073432296514511, 0.3286553919315338, 0.500832736492157, -0.07826897501945496, 0.015303855761885643, 0.06790261715650558, -0.2914683520793915, -0.009024121798574924, 0.16461531817913055, -0.17542508244514465, 0.06203034892678261, 1.0590579509735107, -0.005476790945976973, 0.012295815162360668, -0.02767157554626465]} +{"t": 6.4895, "q": [-0.15634331107139587, 0.0017180577851831913, 0.016431856900453568, 0.32028666138648987, -0.15992558002471924, -0.0013767181662842631, -0.10232163220643997, -0.03548608720302582, 0.04028282314538956, 0.31823283433914185, -0.22292137145996094, 0.030791427940130234, 0.03289049491286278, 0.06297274678945541, 0.030739935114979744, 0.32393360137939453, 0.49234792590141296, -0.0754886344075203, 0.016322514042258263, 0.05789579078555107, -0.2942127287387848, -0.009012137539684772, 0.1645554006099701, -0.17537714540958405, 0.062066301703453064, 1.0591537952423096, -0.005476790945976973, 0.012283830903470516, -0.027659591287374496]} +{"t": 6.5062, "q": [-0.1563262641429901, 0.0017436244525015354, 0.01647203229367733, 0.3203122317790985, -0.15992984175682068, -0.0013696779496967793, -0.10232163220643997, -0.035469043999910355, 0.04036317393183708, 0.3182413578033447, -0.22292552888393402, 0.030784308910369873, 0.03282353654503822, 0.06267259269952774, 0.03073223866522312, 0.3200267553329468, 0.48323991894721985, -0.07224091142416, 0.016502277925610542, 0.045647915452718735, -0.29736459255218506, -0.00894023198634386, 0.1645314246416092, -0.17528127133846283, 0.062138207256793976, 1.0591298341751099, -0.005476790945976973, 0.012283830903470516, -0.027647607028484344]} +{"t": 6.523, "q": [-0.15630923211574554, 0.0017521465197205544, 0.016512207686901093, 0.3203548491001129, -0.15993408858776093, -0.0013626377331092954, -0.10232163220643997, -0.03543495759367943, 0.04036317393183708, 0.31828397512435913, -0.2229296714067459, 0.03077719174325466, 0.032689616084098816, 0.062251221388578415, 0.030814141035079956, 0.31679099798202515, 0.4748389720916748, -0.0700957328081131, 0.016897758468985558, 0.033364083617925644, -0.3016069829463959, -0.008976184763014317, 0.16467523574829102, -0.17519739270210266, 0.062126222997903824, 1.0591537952423096, -0.005476790945976973, 0.012271846644580364, -0.02762363851070404]} +{"t": 6.5397, "q": [-0.15630923211574554, 0.0017180577851831913, 0.016552383080124855, 0.3203633725643158, -0.15992984175682068, -0.0013696779496967793, -0.10233015567064285, -0.03545200079679489, 0.04044352471828461, 0.3182584047317505, -0.2229211926460266, 0.030777107924222946, 0.03256909176707268, 0.061921022832393646, 0.03080756776034832, 0.3132556676864624, 0.46511977910995483, -0.06724348664283752, 0.01690974272787571, 0.02093644067645073, -0.3077069818973541, -0.008988169021904469, 0.16489095985889435, -0.17507754266262054, 0.062126222997903824, 1.0592257976531982, -0.005428853910416365, 0.01224787812680006, -0.027635622769594193]} +{"t": 6.5564, "q": [-0.15631774067878723, 0.0017010136507451534, 0.016552383080124855, 0.32043153047561646, -0.15992553532123566, -0.0013626308646053076, -0.10231310874223709, -0.0354946106672287, 0.04044352471828461, 0.31826692819595337, -0.2229211926460266, 0.030777107924222946, 0.03263605013489723, 0.061469849199056625, 0.03087168000638485, 0.3096124529838562, 0.4547654092311859, -0.06489457935094833, 0.016885774210095406, 0.00601608119904995, -0.31289613246917725, -0.008988169021904469, 0.16508270800113678, -0.17482587695121765, 0.06215019151568413, 1.0593935251235962, -0.005452822428196669, 0.012271846644580364, -0.02761165425181389]} +{"t": 6.5731, "q": [-0.15636888146400452, 0.0016754474490880966, 0.016552383080124855, 0.320465624332428, -0.15992984175682068, -0.0013696779496967793, -0.10233867913484573, -0.035537220537662506, 0.040430132299661636, 0.3182072639465332, -0.2229253500699997, 0.030769988894462585, 0.032836928963661194, 0.06095243617892265, 0.03082956373691559, 0.3060171902179718, 0.4454536437988281, -0.06272543221712112, 0.016873789951205254, -0.00906007457524538, -0.31768983602523804, -0.008892294950783253, 0.16526246070861816, -0.1745622307062149, 0.062138207256793976, 1.0595253705978394, -0.005428853910416365, 0.01230779942125082, -0.027575701475143433]} +{"t": 6.5899, "q": [-0.15638592839241028, 0.0016669253818690777, 0.016538990661501884, 0.3204997181892395, -0.15992984175682068, -0.0013696779496967793, -0.10230458527803421, -0.03555426374077797, 0.040403347462415695, 0.3182584047317505, -0.22292552888393402, 0.030784308910369873, 0.032850321382284164, 0.06036760285496712, 0.030775781720876694, 0.30288931727409363, 0.4370407164096832, -0.06268948316574097, 0.01684982143342495, -0.022458437830209732, -0.32384970784187317, -0.0088803106918931, 0.1652265191078186, -0.1742146760225296, 0.06216217577457428, 1.0598728656768799, -0.005476790945976973, 0.012283830903470516, -0.027575701475143433]} +{"t": 6.6066, "q": [-0.15636035799980164, 0.0016669253818690777, 0.016592558473348618, 0.3205082416534424, -0.15992553532123566, -0.0013626308646053076, -0.10232163220643997, -0.03556278720498085, 0.04049709066748619, 0.3182498812675476, -0.22291705012321472, 0.030784225091338158, 0.03271640092134476, 0.059924934059381485, 0.030759232118725777, 0.3003007173538208, 0.4292509853839874, -0.06295313686132431, 0.016825852915644646, -0.03711514547467232, -0.3296860456466675, -0.008904279209673405, 0.16509468853473663, -0.1739150732755661, 0.06216217577457428, 1.0599088668823242, -0.0055007594637572765, 0.012271846644580364, -0.027575701475143433]} +{"t": 6.6233, "q": [-0.15635183453559875, 0.0016584033146500587, 0.01664612628519535, 0.32051676511764526, -0.15992984175682068, -0.0013696779496967793, -0.10229606926441193, -0.03556278720498085, 0.04055066034197807, 0.318292498588562, -0.22291705012321472, 0.030784225091338158, 0.03271640092134476, 0.0594215914607048, 0.030792169272899628, 0.29689720273017883, 0.4209698736667633, -0.06316885352134705, 0.0168618056923151, -0.05249090492725372, -0.333724707365036, -0.008916263468563557, 0.16508270800113678, -0.1735915094614029, 0.06217416003346443, 1.059944748878479, -0.005476790945976973, 0.012271846644580364, -0.027587685734033585]} +{"t": 6.64, "q": [-0.15634331107139587, 0.0016669253818690777, 0.01661934331059456, 0.320533812046051, -0.1599297821521759, -0.0013555906480178237, -0.10223641246557236, -0.03556278720498085, 0.04045691713690758, 0.31831806898117065, -0.2229211926460266, 0.030777107924222946, 0.032836928963661194, 0.058873072266578674, 0.03081659786403179, 0.2938052713871002, 0.4124131500720978, -0.06314488500356674, 0.0168618056923151, -0.06814230233430862, -0.3374518156051636, -0.008904279209673405, 0.1652744561433792, -0.17327991127967834, 0.06221011281013489, 1.0600286722183228, -0.005452822428196669, 0.012295815162360668, -0.027575701475143433]} +{"t": 6.6568, "q": [-0.15636035799980164, 0.0016669253818690777, 0.01661934331059456, 0.3205423355102539, -0.15992553532123566, -0.0013626308646053076, -0.10223641246557236, -0.03555426374077797, 0.040416739881038666, 0.3183436095714569, -0.22292137145996094, 0.030791427940130234, 0.0329708456993103, 0.05827174708247185, 0.030865821987390518, 0.2905935049057007, 0.4042398929595947, -0.06319282203912735, 0.016813868656754494, -0.08295480906963348, -0.34201779961586, -0.008868326433002949, 0.16528643667697906, -0.1729443520307541, 0.062186144292354584, 1.0601245164871216, -0.005440838169306517, 0.012259862385690212, -0.02756371721625328]} +{"t": 6.6735, "q": [-0.15640297532081604, 0.0016584033146500587, 0.016538990661501884, 0.3205934464931488, -0.15992553532123566, -0.0013626308646053076, -0.10224493592977524, -0.03556278720498085, 0.04037656635046005, 0.3183436095714569, -0.22291705012321472, 0.030784225091338158, 0.03307798132300377, 0.05777592211961746, 0.030883021652698517, 0.2866746485233307, 0.39712128043174744, -0.06325273960828781, 0.016825852915644646, -0.09697634726762772, -0.348848819732666, -0.008868326433002949, 0.1652504801750183, -0.1727166473865509, 0.06222209706902504, 1.0603042840957642, -0.005464806687086821, 0.012271846644580364, -0.02755173295736313]} +{"t": 6.6902, "q": [-0.15639445185661316, 0.0016669253818690777, 0.016565775498747826, 0.32061901688575745, -0.1599297821521759, -0.0013555906480178237, -0.10228754580020905, -0.03555426374077797, 0.040430132299661636, 0.31833508610725403, -0.2229211926460266, 0.030777107924222946, 0.03275657817721367, 0.05747520551085472, 0.030912362039089203, 0.2841459810733795, 0.39075765013694763, -0.06326472759246826, 0.016945693641901016, -0.11057844758033752, -0.3537503480911255, -0.008904279209673405, 0.16504675149917603, -0.17258483171463013, 0.06223408132791519, 1.0603402853012085, -0.005476790945976973, 0.012283830903470516, -0.02755173295736313]} +{"t": 6.707, "q": [-0.15635183453559875, 0.0016669253818690777, 0.01664612628519535, 0.32061901688575745, -0.15992984175682068, -0.0013696779496967793, -0.10231310874223709, -0.03556278720498085, 0.0405372679233551, 0.3183436095714569, -0.22291705012321472, 0.030784225091338158, 0.03244856372475624, 0.057114820927381516, 0.0309059526771307, 0.28184500336647034, 0.38341131806373596, -0.06328869611024857, 0.0168618056923151, -0.1273323893547058, -0.3578968942165375, -0.008916263468563557, 0.16501079499721527, -0.1724170446395874, 0.062198128551244736, 1.0603163242340088, -0.0055127437226474285, 0.012283830903470516, -0.027527766302227974]} +{"t": 6.7237, "q": [-0.15631774067878723, 0.0016669253818690777, 0.016672909259796143, 0.3205934464931488, -0.15993839502334595, -0.0013696847017854452, -0.10229606926441193, -0.035537220537662506, 0.040577445179224014, 0.31832656264305115, -0.2229211926460266, 0.030777107924222946, 0.032314643263816833, 0.0568830743432045, 0.030814718455076218, 0.2796878516674042, 0.37729936838150024, -0.06328869611024857, 0.016873789951205254, -0.14249244332313538, -0.36245089769363403, -0.008904279209673405, 0.16516658663749695, -0.17222529649734497, 0.06222209706902504, 1.0603402853012085, -0.005476790945976973, 0.012283830903470516, -0.027515782043337822]} +{"t": 6.7407, "q": [-0.15636035799980164, 0.0016669253818690777, 0.016686301678419113, 0.32057642936706543, -0.15993408858776093, -0.0013626377331092954, -0.10228754580020905, -0.03554574400186539, 0.040577445179224014, 0.31823283433914185, -0.2229211926460266, 0.030777107924222946, 0.032368212938308716, 0.05677098035812378, 0.030766604468226433, 0.27747076749801636, 0.37130725383758545, -0.06284527480602264, 0.0168618056923151, -0.1595100313425064, -0.36759212613105774, -0.008892294950783253, 0.16532239317893982, -0.17202156782150269, 0.06216217577457428, 1.0604960918426514, -0.0055007594637572765, 0.012271846644580364, -0.027527766302227974]} +{"t": 6.7574, "q": [-0.15640297532081604, 0.0016669253818690777, 0.016699694097042084, 0.3205423355102539, -0.1599297821521759, -0.0013555906480178237, -0.10237276554107666, -0.035537220537662506, 0.04055066034197807, 0.31822431087493896, -0.22291705012321472, 0.030784225091338158, 0.03240838646888733, 0.05675584822893143, 0.030776584520936012, 0.2756132185459137, 0.3672206401824951, -0.06265352666378021, 0.016873789951205254, -0.17429856956005096, -0.37255361676216125, -0.008772453293204308, 0.16538231074810028, -0.17193767428398132, 0.06215019151568413, 1.0606279373168945, -0.005452822428196669, 0.012283830903470516, -0.027527766302227974]} +{"t": 6.7741, "q": [-0.15643705427646637, 0.0016754474490880966, 0.016713086515665054, 0.3204485774040222, -0.15992984175682068, -0.0013696779496967793, -0.10246650874614716, -0.03555426374077797, 0.040564052760601044, 0.3181220591068268, -0.22292552888393402, 0.030784308910369873, 0.03240838646888733, 0.056778330355882645, 0.030780531466007233, 0.27430692315101624, 0.3641526699066162, -0.06277336925268173, 0.01684982143342495, -0.1911603808403015, -0.37492647767066956, -0.008808405138552189, 0.16544222831726074, -0.17185379564762115, 0.062138207256793976, 1.0607117414474487, -0.005476790945976973, 0.012271846644580364, -0.027527766302227974]} +{"t": 6.7911, "q": [-0.1564200073480606, 0.0016924915835261345, 0.016713086515665054, 0.32038894295692444, -0.15993408858776093, -0.0013626377331092954, -0.1024920716881752, -0.035537220537662506, 0.040564052760601044, 0.3180623948574066, -0.22292552888393402, 0.030784308910369873, 0.032354820519685745, 0.056793246418237686, 0.030789468437433243, 0.2731444537639618, 0.3610846996307373, -0.06235392391681671, 0.016801884397864342, -0.20760273933410645, -0.37622079253196716, -0.00878443755209446, 0.16539429128170013, -0.1718178391456604, 0.062138207256793976, 1.0607717037200928, -0.005452822428196669, 0.012283830903470516, -0.02755173295736313]} +{"t": 6.8078, "q": [-0.1563774049282074, 0.0017010136507451534, 0.01665951870381832, 0.32029518485069275, -0.15993408858776093, -0.0013626377331092954, -0.10247503221035004, -0.03551165387034416, 0.04049709066748619, 0.3180283010005951, -0.22293832898139954, 0.030791616067290306, 0.03246195614337921, 0.05678589642047882, 0.030775541439652443, 0.27155056595802307, 0.35822048783302307, -0.06186256930232048, 0.016825852915644646, -0.22464430332183838, -0.37746715545654297, -0.00878443755209446, 0.1654062718153, -0.17180585861206055, 0.062126222997903824, 1.0608556270599365, -0.0055247279815375805, 0.012271846644580364, -0.027587685734033585]} +{"t": 6.8245, "q": [-0.1563774049282074, 0.0017606685869395733, 0.016579166054725647, 0.3202610909938812, -0.15992553532123566, -0.0013626308646053076, -0.10246650874614716, -0.0354946106672287, 0.04038995876908302, 0.31794309616088867, -0.22293832898139954, 0.030791616067290306, 0.03272979333996773, 0.05680081248283386, 0.030784478411078453, 0.26990872621536255, 0.35542815923690796, -0.06169478967785835, 0.01684982143342495, -0.24211730062961578, -0.37831801176071167, -0.008712531998753548, 0.16528643667697906, -0.17180585861206055, 0.062138207256793976, 1.060975432395935, -0.0054887752048671246, 0.012283830903470516, -0.027599669992923737]} +{"t": 6.8415, "q": [-0.15640297532081604, 0.0017777127213776112, 0.016512207686901093, 0.3201247453689575, -0.15993408858776093, -0.0013626377331092954, -0.10250911861658096, -0.035417910665273666, 0.04038995876908302, 0.3177470862865448, -0.2229381650686264, 0.03077729605138302, 0.032703008502721786, 0.05681594833731651, 0.030774500221014023, 0.26755982637405396, 0.35316312313079834, -0.06161090359091759, 0.0168618056923151, -0.2591828405857086, -0.37942057847976685, -0.008736500516533852, 0.1651066690683365, -0.17180585861206055, 0.06211423873901367, 1.0610233545303345, -0.005464806687086821, 0.012283830903470516, -0.02761165425181389]} +{"t": 6.8582, "q": [-0.15636888146400452, 0.001837367657572031, 0.016552383080124855, 0.3199969232082367, -0.15992558002471924, -0.0013767181662842631, -0.10257729887962341, -0.035358257591724396, 0.040416739881038666, 0.3177470862865448, -0.22294233739376068, 0.030770160257816315, 0.032502129673957825, 0.056830864399671555, 0.030783437192440033, 0.26552248001098633, 0.3511497974395752, -0.06115550175309181, 0.01770070008933544, -0.27694347500801086, -0.3803553283214569, -0.008712531998753548, 0.16481904685497284, -0.17178188264369965, 0.062126222997903824, 1.0610233545303345, -0.005476790945976973, 0.012283830903470516, -0.02761165425181389]} +{"t": 6.8749, "q": [-0.15638592839241028, 0.0019311108626425266, 0.016538990661501884, 0.31988611817359924, -0.15993408858776093, -0.0013626377331092954, -0.10268808156251907, -0.0352645143866539, 0.04049709066748619, 0.3176533281803131, -0.2229509800672531, 0.030784565955400467, 0.032341428101062775, 0.056838322430849075, 0.030787907540798187, 0.26368892192840576, 0.348848819732666, -0.06042446196079254, 0.018144117668271065, -0.29479995369911194, -0.381577730178833, -0.008688563480973244, 0.16475912928581238, -0.17178188264369965, 0.06211423873901367, 1.0610593557357788, -0.005440838169306517, 0.012295815162360668, -0.02761165425181389]} +{"t": 6.8917, "q": [-0.1563262641429901, 0.0019907657988369465, 0.016579166054725647, 0.31974977254867554, -0.15992558002471924, -0.0013767181662842631, -0.10267104208469391, -0.03522190451622009, 0.04049709066748619, 0.31758514046669006, -0.22295497357845306, 0.030763128772377968, 0.032314643263816833, 0.056853458285331726, 0.030777927488088608, 0.26169952750205994, 0.3466556966304779, -0.05992112681269646, 0.018563564866781235, -0.31259652972221375, -0.3825724124908447, -0.008676579222083092, 0.1649029403924942, -0.17178188264369965, 0.062138207256793976, 1.0611552000045776, -0.005452822428196669, 0.012271846644580364, -0.02761165425181389]} +{"t": 6.9084, "q": [-0.15636035799980164, 0.0020248540677130222, 0.016565775498747826, 0.31965601444244385, -0.1599297821521759, -0.0013555906480178237, -0.10268808156251907, -0.03521338105201721, 0.040430132299661636, 0.3175766170024872, -0.22295929491519928, 0.030770331621170044, 0.032314643263816833, 0.05684589222073555, 0.030782917514443398, 0.25926673412323, 0.3435158431529999, -0.05902231112122536, 0.019702065736055374, -0.33186715841293335, -0.38308775424957275, -0.008676579222083092, 0.16499881446361542, -0.1717699021100998, 0.062138207256793976, 1.0615626573562622, -0.005440838169306517, 0.012283830903470516, -0.027599669992923737]} +{"t": 6.9251, "q": [-0.15636888146400452, 0.0020248540677130222, 0.016579166054725647, 0.3195708096027374, -0.15993408858776093, -0.0013626377331092954, -0.10272216796875, -0.03519633784890175, 0.04044352471828461, 0.3175084590911865, -0.22295929491519928, 0.030770331621170044, 0.03239499405026436, 0.056838322430849075, 0.030787907540798187, 0.2564983665943146, 0.3398366868495941, -0.05717673897743225, 0.02063683606684208, -0.3512216806411743, -0.3832795023918152, -0.00866459496319294, 0.16486698389053345, -0.1717699021100998, 0.06211423873901367, 1.0623656511306763, -0.005464806687086821, 0.012259862385690212, -0.027599669992923737]} +{"t": 6.9421, "q": [-0.15636035799980164, 0.002033376134932041, 0.016565775498747826, 0.31951966881752014, -0.15992558002471924, -0.0013767181662842631, -0.10271365195512772, -0.03519633784890175, 0.040403347462415695, 0.3175169825553894, -0.22295929491519928, 0.030770331621170044, 0.03246195614337921, 0.05684589222073555, 0.030782917514443398, 0.25358620285987854, 0.33569014072418213, -0.05482783168554306, 0.020780647173523903, -0.3705762028694153, -0.38386672735214233, -0.008628642186522484, 0.16456738114356995, -0.17178188264369965, 0.062126222997903824, 1.063132643699646, -0.005464806687086821, 0.012259862385690212, -0.027587685734033585]} +{"t": 6.9588, "q": [-0.15635183453559875, 0.0020078099332749844, 0.016552383080124855, 0.3195367157459259, -0.15992984175682068, -0.0013696779496967793, -0.10269660502672195, -0.03521338105201721, 0.04038995876908302, 0.3175255060195923, -0.22297625243663788, 0.030770502984523773, 0.03258248046040535, 0.056838322430849075, 0.030787907540798187, 0.25054222345352173, 0.3321787416934967, -0.05259876325726509, 0.020780647173523903, -0.3889959752559662, -0.3844779133796692, -0.008580705150961876, 0.16445952653884888, -0.1717699021100998, 0.06217416003346443, 1.0635161399841309, -0.005452822428196669, 0.012259862385690212, -0.02761165425181389]} +{"t": 6.9756, "q": [-0.15631774067878723, 0.0020248540677130222, 0.016525600105524063, 0.319528192281723, -0.15992984175682068, -0.0013696779496967793, -0.10269660502672195, -0.03519633784890175, 0.04037656635046005, 0.3175681233406067, -0.22297193109989166, 0.030763300135731697, 0.032528914511203766, 0.05684599652886391, 0.030773457139730453, 0.24751020967960358, 0.32926657795906067, -0.050633352249860764, 0.020792631432414055, -0.4082905650138855, -0.3849453032016754, -0.008556736633181572, 0.1640520542860031, -0.1717459261417389, 0.06215019151568413, 1.0637677907943726, -0.0055127437226474285, 0.012283830903470516, -0.027587685734033585]} +{"t": 6.9925, "q": [-0.1562836617231369, 0.0020589428022503853, 0.016552383080124855, 0.3195793330669403, -0.1599212884902954, -0.0013696710811927915, -0.10271365195512772, -0.035162247717380524, 0.04049709066748619, 0.3176192343235016, -0.22297193109989166, 0.030763300135731697, 0.03220750764012337, 0.05685356259346008, 0.030768467113375664, 0.24513733386993408, 0.32649824023246765, -0.04800880700349808, 0.020684773102402687, -0.42736944556236267, -0.38508909940719604, -0.008532768115401268, 0.16356070339679718, -0.17175792157649994, 0.06210225448012352, 1.0640913248062134, -0.005476790945976973, 0.012271846644580364, -0.02761165425181389]} +{"t": 7.0092, "q": [-0.1561899185180664, 0.00210155313834548, 0.016672909259796143, 0.3196304738521576, -0.15992558002471924, -0.0013767181662842631, -0.10268808156251907, -0.03514520451426506, 0.040590837597846985, 0.3177044689655304, -0.22297193109989166, 0.030763300135731697, 0.03176557645201683, 0.056868698447942734, 0.030758487060666084, 0.2430400848388672, 0.3236100375652313, -0.04470115900039673, 0.02051699347794056, -0.44584912061691284, -0.385125070810318, -0.008508799597620964, 0.16329705715179443, -0.1717459261417389, 0.06215019151568413, 1.0645827054977417, -0.005452822428196669, 0.012271846644580364, -0.027599669992923737]} +{"t": 7.026, "q": [-0.1561046987771988, 0.002093031071126461, 0.016713086515665054, 0.3197242021560669, -0.15992984175682068, -0.0013696779496967793, -0.10263694822788239, -0.03514520451426506, 0.04065779596567154, 0.3178408145904541, -0.22296345233917236, 0.030763214454054832, 0.031511131674051285, 0.05691409856081009, 0.030728548765182495, 0.24063125252723694, 0.32163262367248535, -0.043119240552186966, 0.020684773102402687, -0.46364569664001465, -0.3842741847038269, -0.008412926457822323, 0.16323712468147278, -0.17173394560813904, 0.062138207256793976, 1.0652657747268677, -0.0055007594637572765, 0.01224787812680006, -0.027599669992923737]} +{"t": 7.0429, "q": [-0.1561046987771988, 0.002084509003907442, 0.01680682972073555, 0.31974977254867554, -0.15992984175682068, -0.0013696779496967793, -0.10266251862049103, -0.03515372797846794, 0.040764931589365005, 0.31790047883987427, -0.22295497357845306, 0.030763128772377968, 0.031189724802970886, 0.0569445826113224, 0.030689673498272896, 0.23823441565036774, 0.31999078392982483, -0.04249606281518936, 0.020445087924599648, -0.48111870884895325, -0.3831716477870941, -0.008341020904481411, 0.16311728954315186, -0.17168600857257843, 0.062138207256793976, 1.0661286115646362, -0.0054887752048671246, 0.01224787812680006, -0.027575701475143433]} +{"t": 7.0596, "q": [-0.1560961753129959, 0.002084509003907442, 0.016927355900406837, 0.3198179602622986, -0.1599212884902954, -0.0013696710811927915, -0.10263694822788239, -0.03518781438469887, 0.04084528237581253, 0.3179856836795807, -0.22295497357845306, 0.030763128772377968, 0.0309084951877594, 0.05695214867591858, 0.030684683471918106, 0.23556193709373474, 0.31723442673683167, -0.0418129600584507, 0.02039715088903904, -0.5001257061958313, -0.38181743025779724, -0.008293083868920803, 0.1630094349384308, -0.17169798910617828, 0.062138207256793976, 1.0672311782836914, -0.005464806687086821, 0.012223909609019756, -0.027599669992923737]} +{"t": 7.0764, "q": [-0.1560535579919815, 0.0020163320004940033, 0.017034491524100304, 0.31992873549461365, -0.15992558002471924, -0.0013767181662842631, -0.10261138528585434, -0.03520485758781433, 0.040952417999506, 0.31814759969711304, -0.22295065224170685, 0.03075592592358589, 0.030854927375912666, 0.05694469437003136, 0.0306802149862051, 0.23275762796401978, 0.31416645646095276, -0.041549310088157654, 0.019941750913858414, -0.5198157429695129, -0.37992390990257263, -0.008197209797799587, 0.16291356086730957, -0.17168600857257843, 0.06210225448012352, 1.0686213970184326, -0.0055127437226474285, 0.012211925350129604, -0.027575701475143433]} +{"t": 7.0931, "q": [-0.1560109555721283, 0.0019822437316179276, 0.017088059335947037, 0.32001397013664246, -0.15992558002471924, -0.0013767181662842631, -0.10256025195121765, -0.03524747118353844, 0.04101937636733055, 0.3182157874107361, -0.22294199466705322, 0.030741503462195396, 0.031029021367430687, 0.05694491043686867, 0.03066129982471466, 0.22979751229286194, 0.3117336630821228, -0.041741058230400085, 0.018491659313440323, -0.5381995439529419, -0.3775869905948639, -0.008173241280019283, 0.16296149790287018, -0.17166204750537872, 0.062126222997903824, 1.0703470706939697, -0.0055127437226474285, 0.012235893867909908, -0.02762363851070404]} +{"t": 7.1098, "q": [-0.1560109555721283, 0.0019566770642995834, 0.01711484231054783, 0.32015031576156616, -0.15992558002471924, -0.0013767181662842631, -0.10252616554498672, -0.03531564772129059, 0.04103276878595352, 0.31836065649986267, -0.22292935848236084, 0.030748534947633743, 0.031002238392829895, 0.05693031847476959, 0.030623985454440117, 0.22642995417118073, 0.30962443351745605, -0.04186089709401131, 0.017365142703056335, -0.5581653118133545, -0.37377598881721497, -0.008137288503348827, 0.16286562383174896, -0.17167402803897858, 0.06211423873901367, 1.071749210357666, -0.005464806687086821, 0.01224787812680006, -0.02761165425181389]} +{"t": 7.1266, "q": [-0.15597686171531677, 0.0019396329298615456, 0.017221977934241295, 0.3203207552433014, -0.159921333193779, -0.001383767114020884, -0.10252616554498672, -0.035349734127521515, 0.04111311957240105, 0.31849703192710876, -0.22292935848236084, 0.030748534947633743, 0.0309084951877594, 0.05693778023123741, 0.03062845580279827, 0.22305040061473846, 0.30685609579086304, -0.04193280264735222, 0.016682041808962822, -0.578298807144165, -0.3717626631259918, -0.00814927276223898, 0.16284164786338806, -0.17167402803897858, 0.06211423873901367, 1.0727919340133667, -0.0055127437226474285, 0.012223909609019756, -0.027647607028484344]} +{"t": 7.1433, "q": [-0.1559683382511139, 0.0019396329298615456, 0.017342504113912582, 0.3204911947250366, -0.1599128246307373, -0.0013978476636111736, -0.10251764208078384, -0.03534121438860893, 0.041233647614717484, 0.3186163306236267, -0.22290407121181488, 0.03076261654496193, 0.030975455418229103, 0.05693778023123741, 0.03062845580279827, 0.21887989342212677, 0.30280542373657227, -0.04195677116513252, 0.016238626092672348, -0.598024845123291, -0.37073200941085815, -0.008089352399110794, 0.1628296673297882, -0.17165005207061768, 0.062126222997903824, 1.0738345384597778, -0.005476790945976973, 0.012211925350129604, -0.027635622769594193]} +{"t": 7.1601, "q": [-0.15603651106357574, 0.0019225887954235077, 0.017355896532535553, 0.3206019699573517, -0.15992558002471924, -0.0013767181662842631, -0.10250911861658096, -0.035349734127521515, 0.041233647614717484, 0.3187015652656555, -0.22289974987506866, 0.030755413696169853, 0.031162941828370094, 0.05693031847476959, 0.030623985454440117, 0.21406222879886627, 0.2975563406944275, -0.041968755424022675, 0.015843145549297333, -0.6180744171142578, -0.3696773946285248, -0.007861651480197906, 0.16287760436534882, -0.17166204750537872, 0.06210225448012352, 1.0756680965423584, -0.005476790945976973, 0.012235893867909908, -0.027647607028484344]} +{"t": 7.1768, "q": [-0.15602800250053406, 0.0018799779936671257, 0.017342504113912582, 0.3206957280635834, -0.15990851819515228, -0.001390800578519702, -0.1024494618177414, -0.03538382425904274, 0.04122025519609451, 0.31877824664115906, -0.22288711369037628, 0.0307624451816082, 0.03147095441818237, 0.05693778023123741, 0.03062845580279827, 0.2087652087211609, 0.2920435965061188, -0.04206462949514389, 0.014884407632052898, -0.6375248432159424, -0.36821532249450684, -0.007526093628257513, 0.16284164786338806, -0.17168600857257843, 0.062066301703453064, 1.077561616897583, -0.0055007594637572765, 0.012211925350129604, -0.0276835598051548]} +{"t": 7.1935, "q": [-0.1560535579919815, 0.0018629338592290878, 0.017342504113912582, 0.32074686884880066, -0.15992562472820282, -0.0013908141991123557, -0.10246650874614716, -0.03542643412947655, 0.0411800779402256, 0.318854957818985, -0.22289127111434937, 0.03075532801449299, 0.03136381879448891, 0.05693031847476959, 0.030623985454440117, 0.20386365056037903, 0.2877412438392639, -0.042508047074079514, 0.013697969727218151, -0.6550817489624023, -0.3664536476135254, -0.007454188074916601, 0.1627817302942276, -0.17168600857257843, 0.062078285962343216, 1.0787839889526367, -0.0055127437226474285, 0.012235893867909908, -0.0276835598051548]} +{"t": 7.2102, "q": [-0.1560109555721283, 0.0018799779936671257, 0.017409464344382286, 0.3207298219203949, -0.159921333193779, -0.001383767114020884, -0.1024920716881752, -0.035409390926361084, 0.04132739081978798, 0.31886348128318787, -0.22289559245109558, 0.030762530863285065, 0.031002238392829895, 0.056945450603961945, 0.030614005401730537, 0.19866250455379486, 0.282132625579834, -0.04230431467294693, 0.012631373479962349, -0.6763177514076233, -0.36399686336517334, -0.007502125110477209, 0.16269783675670624, -0.17168600857257843, 0.06203034892678261, 1.079790711402893, -0.005476790945976973, 0.012199941091239452, -0.027707528322935104]} +{"t": 7.227, "q": [-0.1559683382511139, 0.0018799779936671257, 0.01748981513082981, 0.320721298456192, -0.1599212884902954, -0.0013696710811927915, -0.1024920716881752, -0.035409390926361084, 0.04136756435036659, 0.3188379108905792, -0.22288711369037628, 0.0307624451816082, 0.030533522367477417, 0.056945450603961945, 0.030614005401730537, 0.1938088834285736, 0.27454662322998047, -0.04200470820069313, 0.01191231980919838, -0.6953966617584229, -0.36104875802993774, -0.007478156592696905, 0.16267387568950653, -0.17169798910617828, 0.06205431744456291, 1.0806056261062622, -0.005476790945976973, 0.012211925350129604, -0.027707528322935104]} +{"t": 7.2437, "q": [-0.15593425929546356, 0.001888500526547432, 0.017543382942676544, 0.3206957280635834, -0.15992558002471924, -0.0013767181662842631, -0.10248355567455292, -0.03538382425904274, 0.04134078323841095, 0.3187952935695648, -0.22289127111434937, 0.03075532801449299, 0.030680833384394646, 0.05693799629807472, 0.03060953877866268, 0.18826019763946533, 0.2680511772632599, -0.03906857594847679, 0.011468903161585331, -0.7179869413375854, -0.3581605553627014, -0.007046724669635296, 0.1630573719739914, -0.1717459261417389, 0.06204233318567276, 1.081156849861145, -0.0055007594637572765, 0.012235893867909908, -0.027695544064044952]} +{"t": 7.2604, "q": [-0.155959814786911, 0.0019055446609854698, 0.01748981513082981, 0.3206786811351776, -0.1599212884902954, -0.0013696710811927915, -0.10248355567455292, -0.03536677733063698, 0.041233647614717484, 0.31874415278434753, -0.22289559245109558, 0.030762530863285065, 0.030787969008088112, 0.056915514171123505, 0.03060559183359146, 0.18436531722545624, 0.26384469866752625, -0.038601189851760864, 0.01079778652638197, -0.7367422580718994, -0.35397806763648987, -0.006974819116294384, 0.16317720711231232, -0.17180585861206055, 0.06204233318567276, 1.0822235345840454, -0.005476790945976973, 0.012223909609019756, -0.027719512581825256]} +{"t": 7.2772, "q": [-0.15601947903633118, 0.0018714559264481068, 0.017543382942676544, 0.3206019699573517, -0.1599212884902954, -0.0013696710811927915, -0.10256025195121765, -0.035417910665273666, 0.04131399840116501, 0.3185651898384094, -0.2228999137878418, 0.03076973371207714, 0.03092188760638237, 0.05693778023123741, 0.03062845580279827, 0.18069814145565033, 0.2595902979373932, -0.038733016699552536, 0.010737866163253784, -0.7566840052604675, -0.34984350204467773, -0.0068549769930541515, 0.1630813330411911, -0.171865776181221, 0.062018364667892456, 1.082870602607727, -0.005464806687086821, 0.012199941091239452, -0.027719512581825256]} +{"t": 7.2939, "q": [-0.15607060492038727, 0.00184588972479105, 0.017583558335900307, 0.3204485774040222, -0.15992553532123566, -0.0013626308646053076, -0.10263694822788239, -0.03545200079679489, 0.04132739081978798, 0.31846293807029724, -0.2228999137878418, 0.03076973371207714, 0.031015630811452866, 0.05693766847252846, 0.030637912452220917, 0.17615613341331482, 0.2541015148162842, -0.0388169065117836, 0.011025487445294857, -0.7744565606117249, -0.3470272123813629, -0.006831008475273848, 0.16290158033370972, -0.171865776181221, 0.061982411891222, 1.0832901000976562, -0.005440838169306517, 0.012211925350129604, -0.02773149684071541]} +{"t": 7.3106, "q": [-0.15613877773284912, 0.001837367657572031, 0.017556775361299515, 0.32039743661880493, -0.15993408858776093, -0.0013626377331092954, -0.10267955809831619, -0.03545200079679489, 0.041260428726673126, 0.3183521330356598, -0.22290407121181488, 0.03076261654496193, 0.03136381879448891, 0.056914862245321274, 0.03066234104335308, 0.17135044932365417, 0.2491520494222641, -0.038792937994003296, 0.011169297620654106, -0.7918217182159424, -0.34419894218444824, -0.006807039957493544, 0.16291356086730957, -0.17182981967926025, 0.06203034892678261, 1.0835657119750977, -0.005476790945976973, 0.012199941091239452, -0.027755465358495712]} +{"t": 7.3273, "q": [-0.15615582466125488, 0.001854411792010069, 0.017529990524053574, 0.3203207552433014, -0.15992553532123566, -0.0013626308646053076, -0.10267955809831619, -0.03545200079679489, 0.041260428726673126, 0.31828397512435913, -0.22290407121181488, 0.03076261654496193, 0.031524524092674255, 0.0568922683596611, 0.030667850747704506, 0.16828249394893646, 0.24534106254577637, -0.038960717618465424, 0.011157313361763954, -0.8065143823623657, -0.3413107395172119, -0.0068429927341639996, 0.16274577379226685, -0.17182981967926025, 0.06203034892678261, 1.0839492082595825, -0.0054887752048671246, 0.012223909609019756, -0.027767449617385864]} +{"t": 7.3441, "q": [-0.15613877773284912, 0.001854411792010069, 0.017556775361299515, 0.32019293308258057, -0.1599425971508026, -0.0013485484523698688, -0.10267104208469391, -0.03544347733259201, 0.041260428726673126, 0.3181220591068268, -0.22290407121181488, 0.03076261654496193, 0.0314575619995594, 0.0569072961807251, 0.03066733106970787, 0.16656874120235443, 0.24212928116321564, -0.039380162954330444, 0.010570086538791656, -0.8220699429512024, -0.33661291003227234, -0.006962834857404232, 0.1624102145433426, -0.17185379564762115, 0.062018364667892456, 1.0841169357299805, -0.0054887752048671246, 0.012199941091239452, -0.027767449617385864]} +{"t": 7.3609, "q": [-0.1561046987771988, 0.001854411792010069, 0.017596950754523277, 0.31996282935142517, -0.1599425971508026, -0.0013485484523698688, -0.10269660502672195, -0.03545200079679489, 0.04132739081978798, 0.3180197775363922, -0.2229083925485611, 0.030769819393754005, 0.03128346800804138, 0.05693010240793228, 0.030642902478575706, 0.16507071256637573, 0.23913322389125824, -0.03960786387324333, 0.010090718045830727, -0.8351926207542419, -0.33048897981643677, -0.007022756151854992, 0.1622064858675003, -0.17188973724842072, 0.062018364667892456, 1.0843446254730225, -0.005452822428196669, 0.012199941091239452, -0.027791418135166168]} +{"t": 7.3777, "q": [-0.1560535579919815, 0.0018714559264481068, 0.017583558335900307, 0.3198009133338928, -0.15994684398174286, -0.0013415082357823849, -0.10270512849092484, -0.03545200079679489, 0.04131399840116501, 0.3179686367511749, -0.2229168713092804, 0.03076990507543087, 0.031122766435146332, 0.0569978803396225, 0.030626369640231133, 0.16334499418735504, 0.23637685179710388, -0.03964381664991379, 0.009863017126917839, -0.8468892574310303, -0.32674989104270935, -0.007046724669635296, 0.16206267476081848, -0.17188973724842072, 0.062018364667892456, 1.0846203565597534, -0.005440838169306517, 0.012235893867909908, -0.027851339429616928]} +{"t": 7.3944, "q": [-0.15603651106357574, 0.0018714559264481068, 0.017596950754523277, 0.3197668194770813, -0.15993404388427734, -0.0013485504314303398, -0.10273921489715576, -0.03545200079679489, 0.04130060598254204, 0.31801125407218933, -0.2229211926460266, 0.030777107924222946, 0.031149549409747124, 0.05701257660984993, 0.03065422549843788, 0.16157132387161255, 0.23454327881336212, -0.0400153286755085, 0.009851032868027687, -0.8576870560646057, -0.32419726252555847, -0.0070587084628641605, 0.16197878122329712, -0.17188973724842072, 0.062006380409002304, 1.0847880840301514, -0.005440838169306517, 0.012211925350129604, -0.027911260724067688]} +{"t": 7.4111, "q": [-0.15603651106357574, 0.0019140667282044888, 0.017556775361299515, 0.3197242021560669, -0.15993404388427734, -0.0013485504314303398, -0.10283295810222626, -0.03539234399795532, 0.041233647614717484, 0.31800273060798645, -0.22291705012321472, 0.030784225091338158, 0.031136156991124153, 0.05703495070338249, 0.030667629092931747, 0.1603609174489975, 0.23395603895187378, -0.04030295088887215, 0.010066749528050423, -0.8665913343429565, -0.32211199402809143, -0.0070826769806444645, 0.16187092661857605, -0.171865776181221, 0.06203034892678261, 1.084967851638794, -0.005464806687086821, 0.012211925350129604, -0.027971182018518448]} +{"t": 7.4279, "q": [-0.15608765184879303, 0.0020078099332749844, 0.017556775361299515, 0.31969863176345825, -0.1599297821521759, -0.0013555906480178237, -0.10293522477149963, -0.035290081053972244, 0.041233647614717484, 0.31800273060798645, -0.2229211926460266, 0.030777107924222946, 0.031176332384347916, 0.05703495070338249, 0.030667629092931747, 0.16002535820007324, 0.23403993248939514, -0.04139351472258568, 0.010366355068981647, -0.8729669451713562, -0.3202424645423889, -0.00711862975731492, 0.16172711551189423, -0.17188973724842072, 0.06205431744456291, 1.0850038528442383, -0.005452822428196669, 0.0121879568323493, -0.028019119054079056]} +{"t": 7.4447, "q": [-0.15613877773284912, 0.002093031071126461, 0.017556775361299515, 0.3196815848350525, -0.1599297821521759, -0.0013555906480178237, -0.10316532105207443, -0.03521338105201721, 0.041247040033340454, 0.3180283010005951, -0.22291705012321472, 0.030784225091338158, 0.031055806204676628, 0.057049866765737534, 0.030676566064357758, 0.1601332128047943, 0.23426763713359833, -0.043718453496694565, 0.01043826062232256, -0.8757113218307495, -0.3167550563812256, -0.0070826769806444645, 0.16142751276493073, -0.17188973724842072, 0.06203034892678261, 1.0850517749786377, -0.005464806687086821, 0.0121879568323493, -0.02804308757185936]} +{"t": 7.4614, "q": [-0.15615582466125488, 0.0021952963434159756, 0.017583558335900307, 0.3196304738521576, -0.1599212884902954, -0.0013696710811927915, -0.10334428399801254, -0.03513668105006218, 0.04131399840116501, 0.3180794417858124, -0.22292552888393402, 0.030784308910369873, 0.031042413786053658, 0.057049866765737534, 0.030676566064357758, 0.16019314527511597, 0.23424366116523743, -0.044737111777067184, 0.01011468656361103, -0.8775568604469299, -0.3127523362636566, -0.0070587084628641605, 0.1612837016582489, -0.17188973724842072, 0.06199439615011215, 1.085099697113037, -0.0054887752048671246, 0.012199941091239452, -0.028067056089639664]} +{"t": 7.4781, "q": [-0.15615582466125488, 0.0022634733468294144, 0.017556775361299515, 0.31961342692375183, -0.15990851819515228, -0.001390800578519702, -0.10350620746612549, -0.035051461309194565, 0.041233647614717484, 0.3181731700897217, -0.22292552888393402, 0.030784308910369873, 0.0310691986232996, 0.05724551901221275, 0.03064141608774662, 0.16021710634231567, 0.2343515306711197, -0.04559997841715813, 0.00999484397470951, -0.8784916400909424, -0.3087855577468872, -0.0070706927217543125, 0.16119980812072754, -0.17188973724842072, 0.061982411891222, 1.08525550365448, -0.005452822428196669, 0.012223909609019756, -0.028150945901870728]} +{"t": 7.4949, "q": [-0.15617287158966064, 0.002382783219218254, 0.017543382942676544, 0.3196304738521576, -0.15992137789726257, -0.0013978544156998396, -0.10361699014902115, -0.034923627972602844, 0.04128721356391907, 0.31822431087493896, -0.2229253500699997, 0.030769988894462585, 0.0310691986232996, 0.057644717395305634, 0.03053775057196617, 0.16024108231067657, 0.2361731231212616, -0.046366967260837555, 0.010090718045830727, -0.8786234855651855, -0.3056696355342865, -0.007046724669635296, 0.1609840989112854, -0.17197363078594208, 0.061982411891222, 1.0853394269943237, -0.0055007594637572765, 0.012235893867909908, -0.028294755145907402]} +{"t": 7.5116, "q": [-0.15625809133052826, 0.0024850484915077686, 0.017596950754523277, 0.31961342692375183, -0.15990427136421204, -0.0013978407951071858, -0.10388118028640747, -0.034804318100214005, 0.041394349187612534, 0.31836065649986267, -0.22292950749397278, 0.030762871727347374, 0.03089510276913643, 0.058088336139917374, 0.030489271506667137, 0.16026504337787628, 0.23871378600597382, -0.046366967260837555, 0.010414292104542255, -0.877844512462616, -0.3034166097640991, -0.007034740410745144, 0.16080433130264282, -0.17205752432346344, 0.06197042763233185, 1.0853633880615234, -0.0054887752048671246, 0.012211925350129604, -0.02846253477036953]} +{"t": 7.5284, "q": [-0.15627513825893402, 0.0025787916965782642, 0.017610343173146248, 0.3196219503879547, -0.1598915159702301, -0.0014189702924340963, -0.10410275310277939, -0.03471909835934639, 0.04147469997406006, 0.3185822367668152, -0.222933828830719, 0.03077007457613945, 0.030640657991170883, 0.05850850045681, 0.030521847307682037, 0.1604567915201187, 0.24202142655849457, -0.046546731144189835, 0.010570086538791656, -0.8746087551116943, -0.30093589425086975, -0.006974819116294384, 0.1606844961643219, -0.17222529649734497, 0.061946459114551544, 1.085483193397522, -0.005476790945976973, 0.012223909609019756, -0.028630314394831657]} +{"t": 7.5451, "q": [-0.15630070865154266, 0.0026469682343304157, 0.01766391098499298, 0.3196389973163605, -0.15988729894161224, -0.0014401065418496728, -0.10423058271408081, -0.034625355154275894, 0.041501484811306, 0.318667471408844, -0.222933828830719, 0.03077007457613945, 0.030667440965771675, 0.05898912623524666, 0.0305235143750906, 0.16118782758712769, 0.2467551976442337, -0.04683435335755348, 0.010677944868803024, -0.8713011145591736, -0.298227459192276, -0.006902913562953472, 0.16067250072956085, -0.17238110303878784, 0.06197042763233185, 1.0856029987335205, -0.0054887752048671246, 0.012235893867909908, -0.02882206253707409]} +{"t": 7.5618, "q": [-0.156334787607193, 0.0027236673049628735, 0.017677301540970802, 0.3196304738521576, -0.1598617434501648, -0.0014682693872600794, -0.10439250618219376, -0.03459126502275467, 0.04151487722992897, 0.31877824664115906, -0.22293367981910706, 0.03075573779642582, 0.03077457658946514, 0.05942423269152641, 0.03056471049785614, 0.16197878122329712, 0.25413748621940613, -0.04727776721119881, 0.009910954162478447, -0.8672624230384827, -0.29360154271125793, -0.006807039957493544, 0.1607084572315216, -0.17250093817710876, 0.061958443373441696, 1.0856629610061646, -0.005464806687086821, 0.012235893867909908, -0.029157619923353195]} +{"t": 7.5787, "q": [-0.15636035799980164, 0.0027407114394009113, 0.01763712614774704, 0.31964749097824097, -0.1598532348871231, -0.001482349936850369, -0.10445216298103333, -0.03454865515232086, 0.04152826964855194, 0.31882938742637634, -0.22293800115585327, 0.030762940645217896, 0.0309084951877594, 0.059935543686151505, 0.030508344992995262, 0.16177505254745483, 0.26241856813430786, -0.04761332646012306, 0.00866459496319294, -0.8616777658462524, -0.2890954613685608, -0.006759102921932936, 0.16069647669792175, -0.17270466685295105, 0.06192249059677124, 1.0858906507492065, -0.005464806687086821, 0.012235893867909908, -0.02954111434519291]} +{"t": 7.5954, "q": [-0.15635183453559875, 0.002757756505161524, 0.017677301540970802, 0.3196304738521576, -0.1598319113254547, -0.0015034637181088328, -0.10454590618610382, -0.03454013541340828, 0.04152826964855194, 0.31895720958709717, -0.22293367981910706, 0.03075573779642582, 0.031002238392829895, 0.06046973168849945, 0.030408049002289772, 0.16149942576885223, 0.2706757187843323, -0.0478290431201458, 0.0076699042692780495, -0.8562608957290649, -0.2851047217845917, -0.006735134404152632, 0.1606125831604004, -0.1729443520307541, 0.06193447485566139, 1.0860344171524048, -0.0055127437226474285, 0.012235893867909908, -0.030248183757066727]} +{"t": 7.6121, "q": [-0.156334787607193, 0.0027748006395995617, 0.017717478796839714, 0.31965601444244385, -0.15982340276241302, -0.0015175529988482594, -0.10463112592697144, -0.034514568746089935, 0.041568443179130554, 0.3190765380859375, -0.22293800115585327, 0.030762940645217896, 0.030814751982688904, 0.06080063059926033, 0.030357882380485535, 0.16147544980049133, 0.28029903769493103, -0.04830841347575188, 0.00711862975731492, -0.8495857119560242, -0.28321120142936707, -0.006759102921932936, 0.160432830452919, -0.17302824556827545, 0.06193447485566139, 1.0860464572906494, -0.0055007594637572765, 0.012223909609019756, -0.031266842037439346]} +{"t": 7.6288, "q": [-0.15636035799980164, 0.0028088889084756374, 0.01779782958328724, 0.31965601444244385, -0.15981915593147278, -0.0015245932154357433, -0.10472486913204193, -0.03446343541145325, 0.04164879396557808, 0.31914469599723816, -0.22292935848236084, 0.030748534947633743, 0.030707616358995438, 0.06090588495135307, 0.03034449927508831, 0.16147544980049133, 0.28925126791000366, -0.048476189374923706, 0.00635163951665163, -0.8420715928077698, -0.2823004126548767, -0.006699182093143463, 0.16034893691539764, -0.1730162650346756, 0.06193447485566139, 1.0860344171524048, -0.005464806687086821, 0.012223909609019756, -0.032237567007541656]} +{"t": 7.6456, "q": [-0.15636035799980164, 0.002860021311789751, 0.01782461255788803, 0.31964749097824097, -0.15982335805892944, -0.001503465697169304, -0.10476747900247574, -0.03440377861261368, 0.04168897122144699, 0.3191617429256439, -0.22293783724308014, 0.030748620629310608, 0.030627265572547913, 0.06091286987066269, 0.030386775732040405, 0.16147544980049133, 0.3002767562866211, -0.049434930086135864, 0.0049614692106842995, -0.8329755663871765, -0.2813776135444641, -0.006699182093143463, 0.1603369563817978, -0.17289641499519348, 0.06199439615011215, 1.0861303806304932, -0.005440838169306517, 0.012223909609019756, -0.03311241418123245]} +{"t": 7.6623, "q": [-0.15644557774066925, 0.0028685438446700573, 0.017891572788357735, 0.3196389973163605, -0.1598319709300995, -0.0015175685985013843, -0.10484417527914047, -0.03440377861261368, 0.041742537170648575, 0.31914469599723816, -0.22293783724308014, 0.030748620629310608, 0.030654048547148705, 0.06090518459677696, 0.030401241034269333, 0.16142751276493073, 0.3107150197029114, -0.04998620226979256, 0.003091930178925395, -0.8262044787406921, -0.2802750766277313, -0.006699182093143463, 0.1603609174489975, -0.1727885603904724, 0.062066301703453064, 1.0861423015594482, -0.005476790945976973, 0.012223909609019756, -0.033795516937971115]} +{"t": 7.6791, "q": [-0.15648819506168365, 0.0028344555757939816, 0.018038883805274963, 0.3196304738521576, -0.15982335805892944, -0.001503465697169304, -0.10489530861377716, -0.0344378687441349, 0.04180949926376343, 0.3191276490688324, -0.22293783724308014, 0.030748620629310608, 0.030680833384394646, 0.06090518459677696, 0.030401241034269333, 0.16142751276493073, 0.321321040391922, -0.05056144669651985, 0.002037318190559745, -0.8179593086242676, -0.27914854884147644, -0.006735134404152632, 0.1603609174489975, -0.17277657985687256, 0.06205431744456291, 1.086226224899292, -0.005464806687086821, 0.012223909609019756, -0.03431083634495735]} +{"t": 7.6959, "q": [-0.15653932094573975, 0.002757756505161524, 0.018199585378170013, 0.3195793330669403, -0.15983186662197113, -0.0014893764164298773, -0.10498905181884766, -0.03454865515232086, 0.041916634887456894, 0.3190765380859375, -0.22294215857982635, 0.030755823478102684, 0.030721008777618408, 0.060934990644454956, 0.030419031158089638, 0.16145148873329163, 0.33151963353157043, -0.05146026238799095, 0.0018935075495392084, -0.8100857138633728, -0.2782137989997864, -0.006735134404152632, 0.16034893691539764, -0.17270466685295105, 0.06204233318567276, 1.0862621068954468, -0.005464806687086821, 0.012211925350129604, -0.0346224270761013]} +{"t": 7.7126, "q": [-0.15663306415081024, 0.0026895790360867977, 0.018346896395087242, 0.3194855749607086, -0.1598275601863861, -0.0014823294477537274, -0.10508279502391815, -0.03465092182159424, 0.04201037809252739, 0.31900835037231445, -0.22293367981910706, 0.03075573779642582, 0.030654048547148705, 0.06094244122505188, 0.03042348101735115, 0.16136759519577026, 0.3423413634300232, -0.052682653069496155, 0.0020013656467199326, -0.800438404083252, -0.2770393490791321, -0.006687197834253311, 0.1603129804134369, -0.17263276875019073, 0.062018364667892456, 1.0862621068954468, -0.005476790945976973, 0.012199941091239452, -0.03485012799501419]} +{"t": 7.7294, "q": [-0.15666715800762177, 0.00261287996545434, 0.018547775223851204, 0.3193066120147705, -0.15983611345291138, -0.0014823361998423934, -0.10522767156362534, -0.03477023169398308, 0.04217107966542244, 0.318897545337677, -0.22293367981910706, 0.03075573779642582, 0.030680833384394646, 0.06093452125787735, 0.03045685961842537, 0.16139155626296997, 0.35343876481056213, -0.05424060299992561, 0.0019893813878297806, -0.7891132831573486, -0.27502599358558655, -0.006699182093143463, 0.16025306284427643, -0.17258483171463013, 0.06204233318567276, 1.086238145828247, -0.005476790945976973, 0.012211925350129604, -0.03504187613725662]} +{"t": 7.7461, "q": [-0.15673533082008362, 0.0025191367603838444, 0.0188022218644619, 0.3190765380859375, -0.15985317528247833, -0.0014682537876069546, -0.10537254810333252, -0.034932151436805725, 0.04234517365694046, 0.31877824664115906, -0.22293800115585327, 0.030762940645217896, 0.030721008777618408, 0.060926951467990875, 0.03046186827123165, 0.16134361922740936, 0.3647518754005432, -0.056469667702913284, 0.0015939020086079836, -0.7766976356506348, -0.2727729380130768, -0.006711166352033615, 0.16024108231067657, -0.17254887521266937, 0.06203034892678261, 1.086286187171936, -0.0054887752048671246, 0.012223909609019756, -0.035173699259757996]} +{"t": 7.763, "q": [-0.15676090121269226, 0.002399827353656292, 0.01896292343735695, 0.3188379108905792, -0.15985313057899475, -0.001454166485927999, -0.10546629130840302, -0.03506850451231003, 0.042452309280633926, 0.31874415278434753, -0.22293367981910706, 0.03075573779642582, 0.03076118417084217, 0.06097934767603874, 0.030474090948700905, 0.16136759519577026, 0.37572944164276123, -0.059669457376003265, 0.0016298546688631177, -0.7665709853172302, -0.2710232436656952, -0.006699182093143463, 0.16024108231067657, -0.17257283627986908, 0.06204233318567276, 1.0863220691680908, -0.005440838169306517, 0.012175972573459148, -0.035353463143110275]} +{"t": 7.7797, "q": [-0.1567949801683426, 0.0022975620813667774, 0.019070059061050415, 0.318522572517395, -0.15985742211341858, -0.0014612135710194707, -0.10555151104927063, -0.03521338105201721, 0.042438916862010956, 0.31860780715942383, -0.22294233739376068, 0.030770160257816315, 0.030828144401311874, 0.06097911670804024, 0.030493004247546196, 0.16136759519577026, 0.386922687292099, -0.06332464516162872, 0.0018335864879190922, -0.7541432976722717, -0.26935744285583496, -0.006699182093143463, 0.16024108231067657, -0.17253689467906952, 0.06203034892678261, 1.08639395236969, -0.005416869651526213, 0.01224787812680006, -0.03550925850868225]} +{"t": 7.7964, "q": [-0.15682055056095123, 0.0022379071451723576, 0.019070059061050415, 0.3182498812675476, -0.159857377409935, -0.0014471262693405151, -0.10563673824071884, -0.03527303412556648, 0.042438916862010956, 0.3185396194458008, -0.22294233739376068, 0.030770160257816315, 0.030828144401311874, 0.06095629185438156, 0.030517486855387688, 0.16139155626296997, 0.39682167768478394, -0.06543386727571487, 0.0016538230702280998, -0.7430938482284546, -0.26679283380508423, -0.006747118663042784, 0.16018114984035492, -0.17250093817710876, 0.06205431744456291, 1.0864299535751343, -0.005428853910416365, 0.012199941091239452, -0.03562910109758377]} +{"t": 7.8134, "q": [-0.15687169134616852, 0.0022208630107343197, 0.01917719468474388, 0.3180709183216095, -0.15986588597297668, -0.0014330371050164104, -0.10575604438781738, -0.03529860079288483, 0.0424657016992569, 0.31837770342826843, -0.22294233739376068, 0.030770160257816315, 0.03089510276913643, 0.06096327677369118, 0.030559763312339783, 0.161631241440773, 0.40560609102249146, -0.06695586442947388, 0.0018216022290289402, -0.7309898138046265, -0.26446789503097534, -0.006747118663042784, 0.1600373387336731, -0.17250093817710876, 0.062066301703453064, 1.086465835571289, -0.005440838169306517, 0.012211925350129604, -0.03568902239203453]} +{"t": 7.8301, "q": [-0.1569313406944275, 0.0022208630107343197, 0.019190587103366852, 0.31782376766204834, -0.1598701924085617, -0.0014400840736925602, -0.10590092092752457, -0.035290081053972244, 0.042452309280633926, 0.31826692819595337, -0.2229466587305069, 0.03077736310660839, 0.031002238392829895, 0.060963042080402374, 0.030578676611185074, 0.16237427294254303, 0.4150616526603699, -0.06965231895446777, 0.0018695391481742263, -0.7163330912590027, -0.2629099190235138, -0.006735134404152632, 0.15997742116451263, -0.17247696220874786, 0.06205431744456291, 1.086465835571289, -0.005440838169306517, 0.012235893867909908, -0.0357968807220459]} +{"t": 7.8468, "q": [-0.1569313406944275, 0.0022123404778540134, 0.019190587103366852, 0.31772151589393616, -0.1598786860704422, -0.0014260036405175924, -0.1059776172041893, -0.03527303412556648, 0.042438916862010956, 0.3182413578033447, -0.2229466587305069, 0.03077736310660839, 0.03110937401652336, 0.060992613434791565, 0.03061538189649582, 0.1630813330411911, 0.4241337180137634, -0.07270829379558563, 0.002049302449449897, -0.7021437883377075, -0.2625024616718292, -0.006747118663042784, 0.1598336100578308, -0.172464981675148, 0.06203034892678261, 1.0865857601165771, -0.005428853910416365, 0.012211925350129604, -0.035904739052057266]} +{"t": 7.8638, "q": [-0.1569313406944275, 0.0022805174812674522, 0.01917719468474388, 0.31753402948379517, -0.15986593067646027, -0.001447124406695366, -0.10612249374389648, -0.03525599092245102, 0.04238535091280937, 0.3181220591068268, -0.2229594588279724, 0.03078465163707733, 0.031122766435146332, 0.061037205159664154, 0.030651526525616646, 0.16381236910820007, 0.4328222870826721, -0.07500926405191422, 0.002037318190559745, -0.689116895198822, -0.2624545395374298, -0.006795055698603392, 0.1597137749195099, -0.1724889576435089, 0.06203034892678261, 1.0866936445236206, -0.005452822428196669, 0.012235893867909908, -0.03597664460539818]} +{"t": 7.8807, "q": [-0.1569228172302246, 0.002331650350242853, 0.01913701929152012, 0.3173891305923462, -0.15986168384552002, -0.0014541733544319868, -0.10615658760070801, -0.03514520451426506, 0.04233178123831749, 0.3179771602153778, -0.22295546531677246, 0.030806105583906174, 0.031176332384347916, 0.061052341014146805, 0.030641507357358932, 0.1646272987127304, 0.4405401051044464, -0.07619570195674896, 0.0020253341645002365, -0.6739568710327148, -0.26249048113822937, -0.006759102921932936, 0.15959392488002777, -0.17250093817710876, 0.062078285962343216, 1.0867055654525757, -0.005440838169306517, 0.012223909609019756, -0.036072518676519394]} +{"t": 7.8974, "q": [-0.15691429376602173, 0.002408349420875311, 0.019083451479673386, 0.31731244921684265, -0.15986163914203644, -0.0014400773216038942, -0.10619919747114182, -0.035051461309194565, 0.04230500012636185, 0.31794309616088867, -0.22296378016471863, 0.030791854485869408, 0.031176332384347916, 0.0610673613846302, 0.030640948563814163, 0.1652265191078186, 0.44891709089279175, -0.07799334079027176, 0.001749696908518672, -0.6604146957397461, -0.2625863552093506, -0.00678307143971324, 0.15934225916862488, -0.17252489924430847, 0.06204233318567276, 1.0869213342666626, -0.005428853910416365, 0.012235893867909908, -0.036144424229860306]} +{"t": 7.9142, "q": [-0.1568802148103714, 0.0025276588276028633, 0.01900310069322586, 0.31726983189582825, -0.15985313057899475, -0.001454166485927999, -0.10622476041316986, -0.03496623784303665, 0.042278215289115906, 0.31790047883987427, -0.222976416349411, 0.03078482300043106, 0.031189724802970886, 0.06111253798007965, 0.030629809945821762, 0.16556207835674286, 0.45765358209609985, -0.08126503229141235, 0.001725728390738368, -0.6474837064743042, -0.2626103162765503, -0.006771087180823088, 0.15917448699474335, -0.17252489924430847, 0.06205431744456291, 1.087364673614502, -0.005428853910416365, 0.012235893867909908, -0.03627625107765198]} +{"t": 7.931, "q": [-0.15686316788196564, 0.00261287996545434, 0.01900310069322586, 0.3172016441822052, -0.15985313057899475, -0.001454166485927999, -0.10626737028360367, -0.03482988476753235, 0.042251430451869965, 0.3178834319114685, -0.2229975312948227, 0.03077787533402443, 0.03109598159790039, 0.06118728592991829, 0.030655374750494957, 0.16571786999702454, 0.4654313623905182, -0.08400941640138626, 0.0019414444686844945, -0.6344329118728638, -0.2625863552093506, -0.006807039957493544, 0.15869511663913727, -0.17256085574626923, 0.06204233318567276, 1.0878441333770752, -0.005428853910416365, 0.012235893867909908, -0.0363960936665535]} +{"t": 7.9477, "q": [-0.15684612095355988, 0.002757756505161524, 0.01900310069322586, 0.31716758012771606, -0.15986168384552002, -0.0014541733544319868, -0.1063014566898346, -0.034702055156230927, 0.042291607707738876, 0.3178834319114685, -0.223039448261261, 0.03073534183204174, 0.03060048073530197, 0.06134376302361488, 0.030748780816793442, 0.16618524491786957, 0.4727896749973297, -0.08569919317960739, 0.0019294602097943425, -0.6231197714805603, -0.26257437467575073, -0.0068429927341639996, 0.15777233242988586, -0.17256085574626923, 0.06210225448012352, 1.0885032415390015, -0.005464806687086821, 0.012223909609019756, -0.036491964012384415]} +{"t": 7.9644, "q": [-0.15685464441776276, 0.002860021311789751, 0.019029883667826653, 0.3171164393424988, -0.15986168384552002, -0.0014541733544319868, -0.10645485669374466, -0.03454865515232086, 0.04235856607556343, 0.31786638498306274, -0.22307686507701874, 0.030671268701553345, 0.03006480634212494, 0.0615227110683918, 0.030846072360873222, 0.1664249300956726, 0.4788896441459656, -0.08584300428628922, 0.0020253341645002365, -0.6117587685585022, -0.2625863552093506, -0.00689092930406332, 0.15670572221279144, -0.17258483171463013, 0.06203034892678261, 1.0892702341079712, -0.005464806687086821, 0.012235893867909908, -0.03659982234239578]} +{"t": 7.9812, "q": [-0.15684612095355988, 0.0029537645168602467, 0.019029883667826653, 0.31708234548568726, -0.15985313057899475, -0.001454166485927999, -0.10650599002838135, -0.03448047861456871, 0.04238535091280937, 0.31786638498306274, -0.22309349477291107, 0.030642781406641006, 0.029194332659244537, 0.06167931109666824, 0.030930081382393837, 0.16647286713123322, 0.48401889204978943, -0.08566324412822723, 0.004026699811220169, -0.6000980734825134, -0.2623586654663086, -0.0068669612519443035, 0.15578293800354004, -0.1726447492837906, 0.062078285962343216, 1.090336799621582, -0.005452822428196669, 0.012235893867909908, -0.036683712154626846]} +{"t": 7.9979, "q": [-0.15685464441776276, 0.0030219419859349728, 0.019016491249203682, 0.31708234548568726, -0.15985742211341858, -0.0014612135710194707, -0.10656564682722092, -0.03440377861261368, 0.0423719584941864, 0.31790900230407715, -0.2231142818927765, 0.03060719557106495, 0.028163157403469086, 0.061746153980493546, 0.030989104881882668, 0.16696423292160034, 0.4905382990837097, -0.08575911819934845, 0.006495450157672167, -0.5895759463310242, -0.2619391977787018, -0.0068789455108344555, 0.1547403186559677, -0.17263276875019073, 0.06215019151568413, 1.0912715196609497, -0.005476790945976973, 0.012223909609019756, -0.03670768067240715]} +{"t": 8.0147, "q": [-0.15685464441776276, 0.0031327293254435062, 0.019083451479673386, 0.3170567750930786, -0.15985313057899475, -0.001454166485927999, -0.10659973323345184, -0.03429299220442772, 0.04247909411787987, 0.3178408145904541, -0.22312259674072266, 0.030592942610383034, 0.027172155678272247, 0.061746153980493546, 0.030989104881882668, 0.16786304116249084, 0.4963027238845825, -0.08586697280406952, 0.008808405138552189, -0.5778913497924805, -0.26137596368789673, -0.006902913562953472, 0.15385349094867706, -0.17263276875019073, 0.062138207256793976, 1.0923740863800049, -0.005464806687086821, 0.01224787812680006, -0.03670768067240715]} +{"t": 8.0315, "q": [-0.15682055056095123, 0.0031327293254435062, 0.01913701929152012, 0.3170738220214844, -0.15985317528247833, -0.0014682537876069546, -0.10665086656808853, -0.03428446874022484, 0.04250587522983551, 0.31785786151885986, -0.2231265902519226, 0.030571505427360535, 0.02635524980723858, 0.06176105514168739, 0.03099801205098629, 0.16833043098449707, 0.5016477108001709, -0.0860467404127121, 0.012403673492372036, -0.5666741132736206, -0.26050111651420593, -0.00689092930406332, 0.15296664834022522, -0.17263276875019073, 0.062186144292354584, 1.0932250022888184, -0.0054887752048671246, 0.01224787812680006, -0.036731649190187454]} +{"t": 8.0482, "q": [-0.15682055056095123, 0.0031327293254435062, 0.019190587103366852, 0.3170738220214844, -0.159857377409935, -0.0014471262693405151, -0.10665939003229141, -0.03428446874022484, 0.042599618434906006, 0.31786638498306274, -0.2231307476758957, 0.030564388260245323, 0.02572583220899105, 0.06176873669028282, 0.03098352812230587, 0.1687259078025818, 0.5065612196922302, -0.08610665798187256, 0.016406403854489326, -0.5536232590675354, -0.25932663679122925, -0.0068789455108344555, 0.15209180116653442, -0.1726207733154297, 0.06216217577457428, 1.0938841104507446, -0.0054887752048671246, 0.012235893867909908, -0.036731649190187454]} +{"t": 8.0649, "q": [-0.1567864716053009, 0.0031242067925632, 0.019244154915213585, 0.31709086894989014, -0.15986593067646027, -0.001447124406695366, -0.1066679134964943, -0.0343015156686306, 0.04266658052802086, 0.3178834319114685, -0.22313939034938812, 0.030578793957829475, 0.02535085938870907, 0.06176850572228432, 0.0310024656355381, 0.16901353001594543, 0.511726438999176, -0.08682571351528168, 0.020073577761650085, -0.542226254940033, -0.25762489438056946, -0.006938866339623928, 0.1510252058506012, -0.17252489924430847, 0.062258049845695496, 1.0947829484939575, -0.005464806687086821, 0.012271846644580364, -0.03670768067240715]} +{"t": 8.0816, "q": [-0.15676090121269226, 0.003107162658125162, 0.01933789812028408, 0.31709086894989014, -0.15985313057899475, -0.001454166485927999, -0.10665939003229141, -0.03431855887174606, 0.042773716151714325, 0.3178919553756714, -0.2231265902519226, 0.030571505427360535, 0.024614304304122925, 0.06176850572228432, 0.0310024656355381, 0.16928917169570923, 0.5161246061325073, -0.08704143017530441, 0.02400440350174904, -0.5312727093696594, -0.25568345189094543, -0.006938866339623928, 0.14953915774822235, -0.1723930835723877, 0.06227003410458565, 1.0961132049560547, -0.005464806687086821, 0.01224787812680006, -0.03670768067240715]} +{"t": 8.0984, "q": [-0.15673533082008362, 0.0030901185236871243, 0.019578952342271805, 0.31712496280670166, -0.15986593067646027, -0.001447124406695366, -0.10668495297431946, -0.034335602074861526, 0.042934417724609375, 0.31796011328697205, -0.22313091158866882, 0.03057870827615261, 0.023596519604325294, 0.06176850572228432, 0.0310024656355381, 0.16926519572734833, 0.520103394985199, -0.08680174499750137, 0.027995150536298752, -0.5178862810134888, -0.25373002886772156, -0.00695085059851408, 0.14766962826251984, -0.17229720950126648, 0.0622820183634758, 1.0983422994613647, -0.0055007594637572765, 0.01224787812680006, -0.03670768067240715]} +{"t": 8.1151, "q": [-0.15665863454341888, 0.00306455185636878, 0.019753046333789825, 0.3171505331993103, -0.15986593067646027, -0.001447124406695366, -0.10668495297431946, -0.03436969220638275, 0.043081726878881454, 0.3179856836795807, -0.2231222540140152, 0.030564283952116966, 0.022217154502868652, 0.061761170625686646, 0.0309885423630476, 0.16898955404758453, 0.5239143967628479, -0.08701746165752411, 0.03248923644423485, -0.5071963667869568, -0.25163277983665466, -0.00701077189296484, 0.1460038125514984, -0.17224927246570587, 0.06229400262236595, 1.1003915071487427, -0.0054887752048671246, 0.012271846644580364, -0.036683712154626846]} +{"t": 8.1318, "q": [-0.156650111079216, 0.0030134194530546665, 0.01982000470161438, 0.3172101676464081, -0.159857377409935, -0.0014471262693405151, -0.1066679134964943, -0.0344378687441349, 0.04316208139061928, 0.3180623948574066, -0.2231222540140152, 0.030564283952116966, 0.019605735316872597, 0.06176850572228432, 0.0310024656355381, 0.16896559298038483, 0.5278452038764954, -0.0869215875864029, 0.037642452865839005, -0.4958832859992981, -0.24898426234722137, -0.00701077189296484, 0.1440623700618744, -0.1721414178609848, 0.062317971140146255, 1.102297067642212, -0.005476790945976973, 0.012259862385690212, -0.03664775937795639]} +{"t": 8.1487, "q": [-0.15662454068660736, 0.0029793311841785908, 0.01982000470161438, 0.31726130843162537, -0.159857377409935, -0.0014471262693405151, -0.10665086656808853, -0.034497521817684174, 0.043121904134750366, 0.3182584047317505, -0.2231222540140152, 0.030564283952116966, 0.01647203229367733, 0.061746034771203995, 0.03099857270717621, 0.1693251132965088, 0.5322554111480713, -0.0869215875864029, 0.04326305165886879, -0.48461809754371643, -0.24536502361297607, -0.007022756151854992, 0.1423366367816925, -0.17191371321678162, 0.06238987669348717, 1.103723168373108, -0.005464806687086821, 0.01224787812680006, -0.03659982234239578]} +{"t": 8.1654, "q": [-0.15659897029399872, 0.002962287049740553, 0.01984678953886032, 0.3173465430736542, -0.15985733270645142, -0.0014330302365124226, -0.10663381963968277, -0.034506045281887054, 0.04313529655337334, 0.3183521330356598, -0.2231222540140152, 0.030564283952116966, 0.013632949441671371, 0.06176093965768814, 0.03100747987627983, 0.16981646418571472, 0.5357068777084351, -0.08657404035329819, 0.048643968999385834, -0.47350871562957764, -0.24227309226989746, -0.007046724669635296, 0.14088654518127441, -0.1717459261417389, 0.06236590817570686, 1.104598045349121, -0.0054887752048671246, 0.01224787812680006, -0.03659982234239578]} +{"t": 8.1821, "q": [-0.15658193826675415, 0.002936720382422209, 0.01986018195748329, 0.31740617752075195, -0.159857377409935, -0.0014471262693405151, -0.10659973323345184, -0.0345316119492054, 0.04316208139061928, 0.3183521330356598, -0.2231222540140152, 0.030564283952116966, 0.009508245624601841, 0.06175360083580017, 0.03099355660378933, 0.1700441688299179, 0.538786768913269, -0.08663396537303925, 0.0553431510925293, -0.46212372183799744, -0.24055935442447662, -0.007046724669635296, 0.1395922601222992, -0.1715182363986969, 0.06247376650571823, 1.1058683395385742, -0.0055007594637572765, 0.012271846644580364, -0.03656386956572533]} +{"t": 8.1989, "q": [-0.1565563678741455, 0.002928198780864477, 0.019873572513461113, 0.3174317479133606, -0.15986168384552002, -0.0014541733544319868, -0.10659973323345184, -0.03454865515232086, 0.04318886250257492, 0.3184714615345001, -0.2231052964925766, 0.030564114451408386, 0.007673555985093117, 0.06175360083580017, 0.03099355660378933, 0.17023591697216034, 0.5413753986358643, -0.08665793389081955, 0.06268948316574097, -0.4502233862876892, -0.23934894800186157, -0.0070706927217543125, 0.13847772777080536, -0.17135044932365417, 0.06254567205905914, 1.10731840133667, -0.005440838169306517, 0.012259862385690212, -0.03656386956572533]} +{"t": 8.2156, "q": [-0.15654784440994263, 0.002928198780864477, 0.019913749769330025, 0.31749141216278076, -0.1598488688468933, -0.0014612068189308047, -0.10663381963968277, -0.034565698355436325, 0.043255824595689774, 0.31859076023101807, -0.2231137752532959, 0.03056420013308525, 0.006254015490412712, 0.06174580380320549, 0.03101750835776329, 0.17047560214996338, 0.5436404347419739, -0.08677777647972107, 0.06871754676103592, -0.4377957284450531, -0.2380186915397644, -0.0070946612395346165, 0.13792644441127777, -0.17109878361225128, 0.0626055896282196, 1.108349084854126, -0.005440838169306517, 0.012259862385690212, -0.03653990104794502]} +{"t": 8.2324, "q": [-0.15645410120487213, 0.0029708086512982845, 0.020074451342225075, 0.3175169825553894, -0.15985733270645142, -0.0014330302365124226, -0.10663381963968277, -0.03452308848500252, 0.043429918587207794, 0.3186248540878296, -0.2231052964925766, 0.030564114451408386, 0.004861257970333099, 0.061753369867801666, 0.03101249411702156, 0.17043964564800262, 0.5453541278839111, -0.08693356812000275, 0.07420632243156433, -0.4269380271434784, -0.23695209622383118, -0.00717855105176568, 0.1377466917037964, -0.17095497250556946, 0.0626055896282196, 1.1098710298538208, -0.0054887752048671246, 0.01224787812680006, -0.03651593253016472]} +{"t": 8.2491, "q": [-0.15635183453559875, 0.0029878527857363224, 0.020221762359142303, 0.3175169825553894, -0.15985313057899475, -0.001454166485927999, -0.10663381963968277, -0.03448900207877159, 0.043577227741479874, 0.3186759948730469, -0.22310097515583038, 0.03055691160261631, 0.003669379511848092, 0.06173846870660782, 0.031003586947917938, 0.17012806236743927, 0.5466963648796082, -0.08704143017530441, 0.08013851195573807, -0.4166315793991089, -0.23620907962322235, -0.007214503362774849, 0.13775867223739624, -0.1708471179008484, 0.06265352666378021, 1.112064242362976, -0.005464806687086821, 0.012259862385690212, -0.03651593253016472]} +{"t": 8.2658, "q": [-0.15630923211574554, 0.0029963753186166286, 0.02030211314558983, 0.3175255060195923, -0.15985313057899475, -0.001454166485927999, -0.10664234310388565, -0.03446343541145325, 0.043617404997348785, 0.31874415278434753, -0.2231052964925766, 0.030564114451408386, 0.002946217078715563, 0.061746034771203995, 0.03099857270717621, 0.1699962317943573, 0.5479786992073059, -0.08710134774446487, 0.08521982282400131, -0.40438371896743774, -0.23528629541397095, -0.007214503362774849, 0.13783057034015656, -0.17079918086528778, 0.0626055896282196, 1.1148325204849243, -0.005452822428196669, 0.012259862385690212, -0.03651593253016472]} +{"t": 8.2825, "q": [-0.15630923211574554, 0.0030389861203730106, 0.02032889798283577, 0.3175169825553894, -0.15985313057899475, -0.001454166485927999, -0.10670199990272522, -0.03442934527993202, 0.04369775578379631, 0.3187526762485504, -0.22310961782932281, 0.030571317300200462, 0.002731946762651205, 0.06176850572228432, 0.0310024656355381, 0.17000821232795715, 0.5497643351554871, -0.08778444677591324, 0.0896420031785965, -0.3928908407688141, -0.23451930284500122, -0.007238471880555153, 0.13805827498435974, -0.17077520489692688, 0.06254567205905914, 1.1170496940612793, -0.005476790945976973, 0.012271846644580364, -0.03650394827127457]} +{"t": 8.2993, "q": [-0.15629218518733978, 0.0030815969221293926, 0.02035568095743656, 0.31749993562698364, -0.15984882414340973, -0.0014471195172518492, -0.1067105233669281, -0.034386735409498215, 0.04369775578379631, 0.31878677010536194, -0.2231052964925766, 0.030564114451408386, 0.0027051628567278385, 0.06176850572228432, 0.0310024656355381, 0.1700441688299179, 0.5513942241668701, -0.08832374215126038, 0.09346497058868408, -0.3808586895465851, -0.23388414084911346, -0.007262440398335457, 0.1381181925535202, -0.17078720033168793, 0.06254567205905914, 1.1197820901870728, -0.0054887752048671246, 0.012259862385690212, -0.03651593253016472]} +{"t": 8.316, "q": [-0.15624956786632538, 0.003141250927001238, 0.0203155055642128, 0.31749141216278076, -0.1598488688468933, -0.0014612068189308047, -0.10672756284475327, -0.034327082335948944, 0.04367097094655037, 0.3188123404979706, -0.22310097515583038, 0.03055691160261631, 0.0027855143416672945, 0.06176862493157387, 0.03099299781024456, 0.1699722707271576, 0.5532757043838501, -0.08913866430521011, 0.0974796861410141, -0.36904221773147583, -0.23336881399154663, -0.007286408916115761, 0.1381421685218811, -0.17076322436332703, 0.06252170354127884, 1.1230417490005493, -0.005440838169306517, 0.012295815162360668, -0.03656386956572533]} +{"t": 8.3327, "q": [-0.15621548891067505, 0.0031582950614392757, 0.02030211314558983, 0.3175084590911865, -0.15984031558036804, -0.001461199950426817, -0.10672756284475327, -0.0343015156686306, 0.04364418610930443, 0.31882086396217346, -0.2231052964925766, 0.030564114451408386, 0.0028122980147600174, 0.06178364157676697, 0.030992435291409492, 0.16979250311851501, 0.5551572442054749, -0.08990565687417984, 0.10145845264196396, -0.356998085975647, -0.2325538843870163, -0.007286408916115761, 0.13817811012268066, -0.17081116139888763, 0.06248575076460838, 1.1248034238815308, -0.005428853910416365, 0.012295815162360668, -0.03656386956572533]} +{"t": 8.3494, "q": [-0.15621548891067505, 0.0032861274667084217, 0.02032889798283577, 0.3175084590911865, -0.15984457731246948, -0.001454159733839333, -0.10678721964359283, -0.034199248999357224, 0.04368436336517334, 0.3188379108905792, -0.2231052964925766, 0.030564114451408386, 0.002718554809689522, 0.06182113662362099, 0.030995769426226616, 0.16978052258491516, 0.5577698349952698, -0.0911879688501358, 0.10467022657394409, -0.34516966342926025, -0.23130753636360168, -0.007274424657225609, 0.13813017308712006, -0.17079918086528778, 0.06253368407487869, 1.1259539127349854, -0.005476790945976973, 0.012295815162360668, -0.03659982234239578]} +{"t": 8.3662, "q": [-0.15621548891067505, 0.003354304004460573, 0.02035568095743656, 0.31749141216278076, -0.15984036028385162, -0.0014752959832549095, -0.10679574310779572, -0.03411402925848961, 0.04371114820241928, 0.31882086396217346, -0.2231137752532959, 0.03056420013308525, 0.00258463597856462, 0.06182113662362099, 0.030995769426226616, 0.16952885687351227, 0.5602145791053772, -0.09251821786165237, 0.10717492550611496, -0.333125501871109, -0.22941403090953827, -0.007298393175005913, 0.13805827498435974, -0.17077520489692688, 0.06246178224682808, 1.1268287897109985, -0.005452822428196669, 0.012259862385690212, -0.03659982234239578]} +{"t": 8.3829, "q": [-0.15617287158966064, 0.003388392273336649, 0.020382465794682503, 0.3174658417701721, -0.1598488688468933, -0.0014612068189308047, -0.10679574310779572, -0.034088462591171265, 0.04371114820241928, 0.3188123404979706, -0.22310097515583038, 0.03055691160261631, 0.0025176764465868473, 0.06182870268821716, 0.030990753322839737, 0.16938504576683044, 0.5619762539863586, -0.0932612419128418, 0.1097874864935875, -0.3200147747993469, -0.22698122262954712, -0.007346330210566521, 0.13801033794879913, -0.17079918086528778, 0.06247376650571823, 1.1275957822799683, -0.005452822428196669, 0.012283830903470516, -0.03658783808350563]} +{"t": 8.3996, "q": [-0.1561984419822693, 0.003405436407774687, 0.02035568095743656, 0.3174402713775635, -0.15985317528247833, -0.0014682537876069546, -0.10682982951402664, -0.03409698233008385, 0.04371114820241928, 0.3188038170337677, -0.22311361134052277, 0.030549880117177963, 0.0024775005877017975, 0.06182113662362099, 0.030995769426226616, 0.16938504576683044, 0.5637619495391846, -0.09410014003515244, 0.11248394101858139, -0.30897730588912964, -0.22352977097034454, -0.007406251039355993, 0.1378905028104782, -0.17079918086528778, 0.06246178224682808, 1.128147006034851, -0.0055127437226474285, 0.012271846644580364, -0.03659982234239578]} +{"t": 8.4163, "q": [-0.15621548891067505, 0.003388392273336649, 0.020395856350660324, 0.31741470098495483, -0.1598488688468933, -0.0014612068189308047, -0.1068468764424324, -0.03406289592385292, 0.043751321732997894, 0.31874415278434753, -0.22310945391654968, 0.030556997284293175, 0.0024908925406634808, 0.06183615326881409, 0.030995206907391548, 0.16933710873126984, 0.5656914114952087, -0.09491506218910217, 0.11521634459495544, -0.2976761758327484, -0.22032998502254486, -0.007454188074916601, 0.1377466917037964, -0.17075124382972717, 0.06247376650571823, 1.1283267736434937, -0.005476790945976973, 0.012259862385690212, -0.03659982234239578]} +{"t": 8.4331, "q": [-0.15621548891067505, 0.003405436407774687, 0.020382465794682503, 0.31736359000205994, -0.1598488688468933, -0.0014612068189308047, -0.10686391592025757, -0.03406289592385292, 0.043751321732997894, 0.3186589479446411, -0.22310945391654968, 0.030556997284293175, 0.0025176764465868473, 0.061821017414331436, 0.031005235388875008, 0.16928917169570923, 0.5674890279769897, -0.09580189734697342, 0.11962653696537018, -0.2865428328514099, -0.21798107028007507, -0.007514109369367361, 0.13766279816627502, -0.17075124382972717, 0.06252170354127884, 1.128362774848938, -0.005476790945976973, 0.012271846644580364, -0.036611806601285934]} +{"t": 8.4498, "q": [-0.1562410444021225, 0.003371348138898611, 0.020422641187906265, 0.31735506653785706, -0.15985748171806335, -0.0014753096038475633, -0.10685539990663528, -0.034088462591171265, 0.043778106570243835, 0.31863337755203247, -0.2231137752532959, 0.03056420013308525, 0.002531068166717887, 0.06182113662362099, 0.030995769426226616, 0.1685701161623001, 0.5684717297554016, -0.09589777141809464, 0.12406069785356522, -0.2753615379333496, -0.21626733243465424, -0.007526093628257513, 0.1375669240951538, -0.17071528732776642, 0.06248575076460838, 1.1284825801849365, -0.0054887752048671246, 0.012259862385690212, -0.036611806601285934]} +{"t": 8.4665, "q": [-0.1562410444021225, 0.0033372598700225353, 0.020462816581130028, 0.3173380196094513, -0.159857377409935, -0.0014471262693405151, -0.10686391592025757, -0.03412254899740219, 0.04381828382611275, 0.31859928369522095, -0.22310945391654968, 0.030556997284293175, 0.0024775005877017975, 0.06181356683373451, 0.031000783666968346, 0.16783908009529114, 0.5689990520477295, -0.0960056260228157, 0.12742826342582703, -0.26706844568252563, -0.21553629636764526, -0.007526093628257513, 0.13745906949043274, -0.1706194132566452, 0.06247376650571823, 1.1284825801849365, -0.005464806687086821, 0.012271846644580364, -0.036671727895736694]} +{"t": 8.4833, "q": [-0.15626661479473114, 0.003252039197832346, 0.020596735179424286, 0.31730392575263977, -0.1598701924085617, -0.0014400840736925602, -0.10689800977706909, -0.03419072553515434, 0.04400577023625374, 0.3184885084629059, -0.22311361134052277, 0.030549880117177963, 0.0024105412885546684, 0.06179843097925186, 0.031010814011096954, 0.16746756434440613, 0.569118857383728, -0.09607753157615662, 0.1308797299861908, -0.2572653591632843, -0.21484120190143585, -0.007526093628257513, 0.1374470740556717, -0.17049957811832428, 0.06250971555709839, 1.1285065412521362, -0.005452822428196669, 0.012259862385690212, -0.036695696413517]} +{"t": 8.5, "q": [-0.15627513825893402, 0.0032009058631956577, 0.020784221589565277, 0.3172101676464081, -0.15988290309906006, -0.001404867391102016, -0.10691504925489426, -0.03425890579819679, 0.0442066490650177, 0.3184373676776886, -0.22311361134052277, 0.030549880117177963, 0.002316797850653529, 0.06178317964076996, 0.031030310317873955, 0.16749152541160583, 0.5690829157829285, -0.09629324823617935, 0.13363610208034515, -0.24764202535152435, -0.21444572508335114, -0.007526093628257513, 0.13750700652599335, -0.17019996047019958, 0.06248575076460838, 1.1285065412521362, -0.005452822428196669, 0.012235893867909908, -0.0367196649312973]} +{"t": 8.5167, "q": [-0.15627513825893402, 0.0031242067925632, 0.021038668230175972, 0.31721869111061096, -0.15990421175956726, -0.0013837447622790933, -0.10699175298213959, -0.034335602074861526, 0.044434309005737305, 0.31842032074928284, -0.22310961782932281, 0.030571317300200462, 0.0022900141775608063, 0.06174523010849953, 0.031064854934811592, 0.1675993949174881, 0.5690230131149292, -0.09732389450073242, 0.13670405745506287, -0.2400680035352707, -0.21419405937194824, -0.00755006168037653, 0.13775867223739624, -0.16973258554935455, 0.06248575076460838, 1.1284825801849365, -0.005452822428196669, 0.012223909609019756, -0.03683950752019882]} +{"t": 8.5335, "q": [-0.15627513825893402, 0.0030560302548110485, 0.021279722452163696, 0.31716758012771606, -0.15992122888565063, -0.0013555750483646989, -0.10704288631677628, -0.03440377861261368, 0.04474232345819473, 0.31841179728507996, -0.2231052964925766, 0.030564114451408386, 0.0022900141775608063, 0.06169259920716286, 0.031071549281477928, 0.1675274819135666, 0.5687833428382874, -0.09886986017227173, 0.14034725725650787, -0.23201459646224976, -0.21417008340358734, -0.00755006168037653, 0.13790248334407806, -0.1691453605890274, 0.06256964057683945, 1.1284825801849365, -0.005452822428196669, 0.01224787812680006, -0.037103161215782166]} +{"t": 8.5502, "q": [-0.15625809133052826, 0.0029878527857363224, 0.02153416909277439, 0.3171931505203247, -0.15994249284267426, -0.0013203651178628206, -0.10711958259344101, -0.034446392208337784, 0.04501016065478325, 0.31841179728507996, -0.22310097515583038, 0.03055691160261631, 0.0023034061305224895, 0.061662331223487854, 0.031091608107089996, 0.16723985970020294, 0.5686514973640442, -0.10126670449972153, 0.14292387664318085, -0.224692240357399, -0.2142779529094696, -0.007562045939266682, 0.13795042037963867, -0.16898955404758453, 0.06265352666378021, 1.1286863088607788, -0.005464806687086821, 0.012271846644580364, -0.03739078342914581]} +{"t": 8.5669, "q": [-0.15626661479473114, 0.002945242915302515, 0.02166808769106865, 0.31717610359191895, -0.15995100140571594, -0.001306275837123394, -0.10710253566503525, -0.0345316119492054, 0.045090511441230774, 0.31845441460609436, -0.2230968177318573, 0.03056402876973152, 0.0023435817565768957, 0.061579205095767975, 0.03113730438053608, 0.16679644584655762, 0.5682320594787598, -0.1037953719496727, 0.14476944506168365, -0.22048577666282654, -0.21473334729671478, -0.00760998297482729, 0.13792644441127777, -0.16958877444267273, 0.06266551464796066, 1.129573106765747, -0.005428853910416365, 0.012283830903470516, -0.03760650008916855]} +{"t": 8.5837, "q": [-0.1562836617231369, 0.002860021311789751, 0.021641302853822708, 0.3172016441822052, -0.15994249284267426, -0.0013203651178628206, -0.10710253566503525, -0.03465092182159424, 0.0450771190226078, 0.31846293807029724, -0.22309264540672302, 0.030571164563298225, 0.002651595277711749, 0.06146615371108055, 0.03117465227842331, 0.16563397645950317, 0.5673332214355469, -0.10513760894536972, 0.14673484861850739, -0.2156801074743271, -0.215428426861763, -0.0076459357514977455, 0.1374470740556717, -0.170895054936409, 0.06356433033943176, 1.1303400993347168, -0.005440838169306517, 0.012295815162360668, -0.03760650008916855]} +{"t": 8.6004, "q": [-0.15627513825893402, 0.0028514997102320194, 0.021627912297844887, 0.3172357380390167, -0.15995100140571594, -0.001306275837123394, -0.10705140233039856, -0.03465092182159424, 0.04503694549202919, 0.31849703192710876, -0.22308416664600372, 0.03057107888162136, 0.0030533522367477417, 0.061360668390989304, 0.03120698407292366, 0.16414792835712433, 0.5666621327400208, -0.10543721169233322, 0.14872422814369202, -0.21115006506443024, -0.21584787964820862, -0.0076699042692780495, 0.13647635281085968, -0.17178188264369965, 0.06505037099123001, 1.13121497631073, -0.005428853910416365, 0.012283830903470516, -0.03745070472359657]} +{"t": 8.6172, "q": [-0.1562836617231369, 0.002842977177351713, 0.021560952067375183, 0.31730392575263977, -0.15994243323802948, -0.001306277816183865, -0.10702583938837051, -0.03464239835739136, 0.044929809868335724, 0.31849703192710876, -0.22308416664600372, 0.03057107888162136, 0.003575636073946953, 0.061172403395175934, 0.03125660493969917, 0.1624581515789032, 0.5661707520484924, -0.10549713671207428, 0.15106116235256195, -0.20783042907714844, -0.2163751870393753, -0.0076579200103878975, 0.13536182045936584, -0.17286045849323273, 0.06640458852052689, 1.1323654651641846, -0.005452822428196669, 0.012271846644580364, -0.03727094084024429]} +{"t": 8.6339, "q": [-0.15629218518733978, 0.002902632113546133, 0.021427033469080925, 0.3172954022884369, -0.15994249284267426, -0.0013203651178628206, -0.10700027644634247, -0.03459126502275467, 0.04480928182601929, 0.3185651898384094, -0.22309264540672302, 0.030571164563298225, 0.00416487967595458, 0.06072822958230972, 0.0313631035387516, 0.16081631183624268, 0.5653318762779236, -0.10558102279901505, 0.1539972871541977, -0.2057931125164032, -0.2169504314661026, -0.0076579200103878975, 0.13465476036071777, -0.17622803151607513, 0.0676988884806633, 1.1342829465866089, -0.0054887752048671246, 0.012235893867909908, -0.03665974363684654]} +{"t": 8.6507, "q": [-0.15631774067878723, 0.002936720382422209, 0.021293114870786667, 0.3172954022884369, -0.15994679927825928, -0.0013274209341034293, -0.10700027644634247, -0.034506045281887054, 0.04464858025312424, 0.318522572517395, -0.22310130298137665, 0.03058556839823723, 0.004553244449198246, 0.06022409349679947, 0.031462378799915314, 0.15949805080890656, 0.5648524761199951, -0.10565292835235596, 0.15735287964344025, -0.20501413941383362, -0.21829266846179962, -0.0076818885281682014, 0.1345708668231964, -0.18072211742401123, 0.06888532638549805, 1.1367037296295166, -0.005476790945976973, 0.012235893867909908, -0.036144424229860306]} +{"t": 8.6674, "q": [-0.1563262641429901, 0.0030475077219307423, 0.021132411435246468, 0.31731244921684265, -0.1599382907152176, -0.001341501367278397, -0.10699175298213959, -0.03436969220638275, 0.04455483704805374, 0.31851404905319214, -0.22309264540672302, 0.030571164563298225, 0.004888041876256466, 0.05951021611690521, 0.03153114765882492, 0.15822772681713104, 0.5645768642425537, -0.10555705428123474, 0.15940217673778534, -0.20485834777355194, -0.21973076462745667, -0.007705857045948505, 0.13499031960964203, -0.18653446435928345, 0.06901714950799942, 1.1398675441741943, -0.0054887752048671246, 0.012235893867909908, -0.03550925850868225]} +{"t": 8.6842, "q": [-0.156334787607193, 0.003166817594319582, 0.020931532606482506, 0.31732097268104553, -0.1599382907152176, -0.001341501367278397, -0.1069832295179367, -0.03425890579819679, 0.04434056580066681, 0.318479984998703, -0.22310113906860352, 0.030571231618523598, 0.005222839303314686, 0.05872146785259247, 0.03158320114016533, 0.15753264725208282, 0.5645289421081543, -0.10549713671207428, 0.16021710634231567, -0.20500215888023376, -0.22078537940979004, -0.0076818885281682014, 0.1353258639574051, -0.19305388629436493, 0.06883738934993744, 1.1444815397262573, -0.0055127437226474285, 0.012271846644580364, -0.03501790761947632]} +{"t": 8.7009, "q": [-0.15635183453559875, 0.0033031716011464596, 0.02066369540989399, 0.31736359000205994, -0.1599212884902954, -0.0013696710811927915, -0.10689800977706909, -0.03410550579428673, 0.043952200561761856, 0.3184458911418915, -0.22310097515583038, 0.03055691160261631, 0.00579869095236063, 0.05787951871752739, 0.031679168343544006, 0.15713715553283691, 0.5638218522071838, -0.10547316819429398, 0.16044481098651886, -0.20545755326747894, -0.22180403769016266, -0.007705857045948505, 0.13558952510356903, -0.20144283771514893, 0.06870556622743607, 1.1486281156539917, -0.005464806687086821, 0.012283830903470516, -0.03482615947723389]} +{"t": 8.7177, "q": [-0.15636888146400452, 0.003439525607973337, 0.020369073376059532, 0.31741470098495483, -0.15991277992725372, -0.001383760361932218, -0.10689800977706909, -0.03397767245769501, 0.043778106570243835, 0.31846293807029724, -0.22310097515583038, 0.03055691160261631, 0.006120096426457167, 0.056999322026968, 0.03181856870651245, 0.15647803246974945, 0.5624796152114868, -0.10450244694948196, 0.16069647669792175, -0.2066439986228943, -0.2229185700416565, -0.0076818885281682014, 0.13561348617076874, -0.2110062539577484, 0.06864564120769501, 1.1524630784988403, -0.0054887752048671246, 0.012259862385690212, -0.03468234837055206]} +{"t": 8.7344, "q": [-0.15640297532081604, 0.0035844012163579464, 0.020235154777765274, 0.3175169825553894, -0.15991272032260895, -0.0013696642126888037, -0.10688948631286621, -0.03381575271487236, 0.043630797415971756, 0.31842032074928284, -0.2231052964925766, 0.030564114451408386, 0.006495069246739149, 0.0562325082719326, 0.031892500817775726, 0.15509983897209167, 0.5613530874252319, -0.10320814698934555, 0.16154736280441284, -0.20852552354335785, -0.22412897646427155, -0.0076699042692780495, 0.1356734186410904, -0.22131268680095673, 0.06865762919187546, 1.1574604511260986, -0.0055127437226474285, 0.01224787812680006, -0.03456250578165054]} +{"t": 8.7512, "q": [-0.15643705427646637, 0.0036866669543087482, 0.020074451342225075, 0.31759366393089294, -0.159895658493042, -0.0013837378937751055, -0.10686391592025757, -0.03377314284443855, 0.04351026937365532, 0.3184032738208771, -0.22310081124305725, 0.030542591586709023, 0.006910218391567469, 0.05524851009249687, 0.03192086145281792, 0.1531703770160675, 0.5602745413780212, -0.10278870165348053, 0.16206267476081848, -0.21136577427387238, -0.2259625643491745, -0.0076459357514977455, 0.13568539917469025, -0.23218238353729248, 0.06860969215631485, 1.1638720035552979, -0.0055247279815375805, 0.012295815162360668, -0.034514568746089935]} +{"t": 8.768, "q": [-0.15643705427646637, 0.003703711088746786, 0.02002088353037834, 0.31768742203712463, -0.15989145636558533, -0.001404874143190682, -0.10683835297822952, -0.03374757617712021, 0.043429918587207794, 0.3184032738208771, -0.22310929000377655, 0.030542677268385887, 0.007298583164811134, 0.0543845072388649, 0.03196391090750694, 0.15138472616672516, 0.5587285757064819, -0.10275274515151978, 0.16217052936553955, -0.21492509543895721, -0.2283594161272049, -0.0076579200103878975, 0.13570936024188995, -0.24349549412727356, 0.06835801899433136, 1.1689293384552002, -0.005476790945976973, 0.012403673492372036, -0.03453853726387024]} +{"t": 8.7847, "q": [-0.1564285308122635, 0.00369518855586648, 0.020034275949001312, 0.3177556097507477, -0.15987864136695862, -0.0014119076076894999, -0.10683835297822952, -0.03375609964132309, 0.043443311005830765, 0.3183947503566742, -0.22310929000377655, 0.030542677268385887, 0.007526245433837175, 0.053468771278858185, 0.03192826360464096, 0.14964702725410461, 0.5563077330589294, -0.10276473313570023, 0.1618349850177765, -0.21880798041820526, -0.23161911964416504, -0.0076699042692780495, 0.13621270656585693, -0.25603097677230835, 0.06831008195877075, 1.1722370386123657, -0.005476790945976973, 0.012415657751262188, -0.034598458558321]} +{"t": 8.8014, "q": [-0.1564200073480606, 0.003661100286990404, 0.020087843760848045, 0.31778115034103394, -0.15989145636558533, -0.001404874143190682, -0.1068468764424324, -0.03377314284443855, 0.04349687695503235, 0.3183862268924713, -0.22310513257980347, 0.0305497944355011, 0.0072584073059260845, 0.05255426466464996, 0.03174024447798729, 0.14796923100948334, 0.5527963638305664, -0.10274076461791992, 0.16118782758712769, -0.22676551342010498, -0.2371198832988739, -0.0076818885281682014, 0.13642841577529907, -0.2677755355834961, 0.06804642826318741, 1.1758801937103271, -0.005452822428196669, 0.01245160959661007, -0.03458647429943085]} +{"t": 8.8182, "q": [-0.1563774049282074, 0.003661100286990404, 0.020114626735448837, 0.317849338054657, -0.15989145636558533, -0.001404874143190682, -0.10683835297822952, -0.03377314284443855, 0.04355044290423393, 0.3184288442134857, -0.2231137752532959, 0.03056420013308525, 0.006910218391567469, 0.0515047125518322, 0.03152741491794586, 0.14603976905345917, 0.5480745434761047, -0.10224940627813339, 0.16086424887180328, -0.2365446388721466, -0.24194952845573425, -0.0076579200103878975, 0.1363445371389389, -0.27841752767562866, 0.06773483753204346, 1.1797511577606201, -0.005452822428196669, 0.012403673492372036, -0.03464639559388161]} +{"t": 8.8349, "q": [-0.15636035799980164, 0.003678144421428442, 0.0201548021286726, 0.3179260492324829, -0.15989576280117035, -0.0014119300758466125, -0.1068042665719986, -0.03377314284443855, 0.043577227741479874, 0.318479984998703, -0.22310929000377655, 0.030542677268385887, 0.006776299327611923, 0.05035126581788063, 0.031185194849967957, 0.1432594358921051, 0.542142391204834, -0.10113487392663956, 0.1603369563817978, -0.24691098928451538, -0.24565264582633972, -0.0076579200103878975, 0.13635651767253876, -0.28887975215911865, 0.06714761257171631, 1.1839934587478638, -0.005464806687086821, 0.01242764201015234, -0.03464639559388161]} +{"t": 8.8516, "q": [-0.15636888146400452, 0.0036696228198707104, 0.020114626735448837, 0.3179686367511749, -0.15989576280117035, -0.0014119300758466125, -0.10672756284475327, -0.03377314284443855, 0.04355044290423393, 0.3184714615345001, -0.22310929000377655, 0.030542677268385887, 0.0070173535495996475, 0.04895716905593872, 0.0308005940169096, 0.13965217769145966, 0.5352873802185059, -0.09999637305736542, 0.15964186191558838, -0.2576368749141693, -0.24858878552913666, -0.0076699042692780495, 0.1362966001033783, -0.29868283867836, 0.06689594686031342, 1.1880321502685547, -0.005464806687086821, 0.01245160959661007, -0.03467036411166191]} +{"t": 8.8686, "q": [-0.15638592839241028, 0.00363553361967206, 0.020034275949001312, 0.31808796525001526, -0.15987859666347504, -0.0013978203060105443, -0.10664234310388565, -0.033781666308641434, 0.04347009211778641, 0.3185651898384094, -0.22310929000377655, 0.030542677268385887, 0.007526245433837175, 0.04753994196653366, 0.030478062108159065, 0.13554158806800842, 0.5281208157539368, -0.09944510459899902, 0.1594860702753067, -0.27018436789512634, -0.2519683241844177, -0.0076579200103878975, 0.1363445371389389, -0.30704784393310547, 0.06664427369832993, 1.1905848979949951, -0.005440838169306517, 0.012463593855500221, -0.03468234837055206]} +{"t": 8.8853, "q": [-0.15643705427646637, 0.003618489485234022, 0.01999410055577755, 0.31827545166015625, -0.1598743498325348, -0.0014048605225980282, -0.1066167801618576, -0.03381575271487236, 0.04336295649409294, 0.3186589479446411, -0.22310081124305725, 0.030542591586709023, 0.007820867002010345, 0.046037670224905014, 0.030331330373883247, 0.1312512308359146, 0.5210142135620117, -0.09888184070587158, 0.15937821567058563, -0.28301945328712463, -0.25522804260253906, -0.0076459357514977455, 0.13635651767253876, -0.31404662132263184, 0.0665004625916481, 1.1927059888839722, -0.0054887752048671246, 0.01242764201015234, -0.03464639559388161]} +{"t": 8.9021, "q": [-0.1564200073480606, 0.003652577754110098, 0.019927140325307846, 0.3183947503566742, -0.1598871946334839, -0.0014119144761934876, -0.10663381963968277, -0.033790186047554016, 0.04337634891271591, 0.31869304180145264, -0.22311344742774963, 0.030535560101270676, 0.007673555985093117, 0.04430508241057396, 0.029862822964787483, 0.12752413749694824, 0.5117983222007751, -0.09647301584482193, 0.15877899527549744, -0.2968732416629791, -0.25937458872795105, -0.0076339514926075935, 0.13633254170417786, -0.3206139802932739, 0.06638062000274658, 1.195090889930725, -0.0054887752048671246, 0.012463593855500221, -0.03468234837055206]} +{"t": 8.9188, "q": [-0.15641148388385773, 0.003661100286990404, 0.02002088353037834, 0.318479984998703, -0.1598743498325348, -0.0014048605225980282, -0.10663381963968277, -0.03377314284443855, 0.04345669969916344, 0.3187015652656555, -0.22309647500514984, 0.030535388737916946, 0.0072584073059260845, 0.04253644868731499, 0.029103605076670647, 0.12482769042253494, 0.5004852414131165, -0.09164337068796158, 0.157616525888443, -0.3119014501571655, -0.2637248635292053, -0.0076459357514977455, 0.13591310381889343, -0.3254915475845337, 0.06635665148496628, 1.1970683336257935, -0.005452822428196669, 0.01242764201015234, -0.03465837985277176]} +{"t": 8.9355, "q": [-0.15636035799980164, 0.003661100286990404, 0.02002088353037834, 0.318522572517395, -0.15988294780254364, -0.0014189546927809715, -0.10658268630504608, -0.03377314284443855, 0.043443311005830765, 0.3187697231769562, -0.22309647500514984, 0.030535388737916946, 0.007298583164811134, 0.040792807936668396, 0.0279571283608675, 0.12095678597688675, 0.48875266313552856, -0.08614261448383331, 0.15632224082946777, -0.32806816697120667, -0.2663733661174774, -0.0076459357514977455, 0.1348944455385208, -0.32942238450050354, 0.06634467095136642, 1.1988898515701294, -0.005464806687086821, 0.01236772071570158, -0.03467036411166191]} +{"t": 8.9523, "q": [-0.15630923211574554, 0.003652577754110098, 0.019927140325307846, 0.31859928369522095, -0.15988290309906006, -0.001404867391102016, -0.10635259002447128, -0.03380723297595978, 0.04336295649409294, 0.3187952935695648, -0.223104789853096, 0.030521154403686523, 0.007593204732984304, 0.039026517421007156, 0.026680251583456993, 0.11720572412014008, 0.47729572653770447, -0.08149272948503494, 0.1550159603357315, -0.3462122976779938, -0.2678474485874176, -0.00760998297482729, 0.13433118164539337, -0.3325742483139038, 0.06638062000274658, 1.201226830482483, -0.005464806687086821, 0.012379704974591732, -0.03467036411166191]} +{"t": 8.969, "q": [-0.15624956786632538, 0.0036014453507959843, 0.01983339712023735, 0.31864190101623535, -0.15987864136695862, -0.0014119076076894999, -0.10622476041316986, -0.03383279964327812, 0.04329599812626839, 0.3187526762485504, -0.22310063242912292, 0.030528271570801735, 0.008249407634139061, 0.03762619569897652, 0.025672949850559235, 0.11326291412115097, 0.46659383177757263, -0.07799334079027176, 0.15388943254947662, -0.36367329955101013, -0.2693694233894348, -0.00760998297482729, 0.1342712640762329, -0.3349471092224121, 0.06639260798692703, 1.2026889324188232, -0.0055007594637572765, 0.012391689233481884, -0.034574490040540695]} +{"t": 8.9858, "q": [-0.15630070865154266, 0.0035673570819199085, 0.019766438752412796, 0.3187185823917389, -0.15987864136695862, -0.0014119076076894999, -0.10618215054273605, -0.03387540951371193, 0.04318886250257492, 0.3188464343547821, -0.22310063242912292, 0.030528271570801735, 0.008624380454421043, 0.036396414041519165, 0.024911152198910713, 0.10949986428022385, 0.4553166627883911, -0.07312773913145065, 0.1521996557712555, -0.3816256821155548, -0.271670401096344, -0.00760998297482729, 0.13406752049922943, -0.33705633878707886, 0.06642855703830719, 1.2038154602050781, -0.0054887752048671246, 0.012403673492372036, -0.034514568746089935]} +{"t": 9.0027, "q": [-0.156334787607193, 0.0035077021457254887, 0.019766438752412796, 0.3187526762485504, -0.15988290309906006, -0.001404867391102016, -0.10619067400693893, -0.03389245271682739, 0.04322903975844383, 0.31887200474739075, -0.22310063242912292, 0.030528271570801735, 0.008758299984037876, 0.03533072769641876, 0.02435442991554737, 0.10665960609912872, 0.4432605504989624, -0.06715960055589676, 0.14964702725410461, -0.402646005153656, -0.2744866907596588, -0.007514109369367361, 0.13366006314754486, -0.33878207206726074, 0.0664525255560875, 1.204726219177246, -0.005476790945976973, 0.012391689233481884, -0.03450258448719978]} +{"t": 9.0197, "q": [-0.15636035799980164, 0.0034821354784071445, 0.019753046333789825, 0.3188890516757965, -0.1598743498325348, -0.0014048605225980282, -0.10614806413650513, -0.0339350625872612, 0.04320225492119789, 0.3189998269081116, -0.22310063242912292, 0.030528271570801735, 0.00881186779588461, 0.03449738398194313, 0.02390076033771038, 0.10386727750301361, 0.43201932311058044, -0.061886537820100784, 0.14763367176055908, -0.4202028810977936, -0.2775786221027374, -0.007574030198156834, 0.13338442146778107, -0.34042391180992126, 0.06651245057582855, 1.2057808637619019, -0.005476790945976973, 0.01236772071570158, -0.03450258448719978]} +{"t": 9.0365, "q": [-0.15635183453559875, 0.003405436407774687, 0.019726261496543884, 0.3189486861228943, -0.15988290309906006, -0.001404867391102016, -0.10602022707462311, -0.03400323912501335, 0.04314868897199631, 0.319085031747818, -0.22310063242912292, 0.030528271570801735, 0.009200232103466988, 0.03382199630141258, 0.023486483842134476, 0.10026002675294876, 0.4205264747142792, -0.05812349170446396, 0.14635135233402252, -0.43937763571739197, -0.28171318769454956, -0.007442203816026449, 0.13343235850334167, -0.3417421579360962, 0.06651245057582855, 1.206895351409912, -0.005476790945976973, 0.012379704974591732, -0.034514568746089935]} +{"t": 9.0532, "q": [-0.15636888146400452, 0.0033202157355844975, 0.01963251829147339, 0.3189998269081116, -0.15987864136695862, -0.0014119076076894999, -0.1059350073337555, -0.03405437245965004, 0.04304155334830284, 0.31915321946144104, -0.22310063242912292, 0.030528271570801735, 0.009387718513607979, 0.033304136246442795, 0.02317838929593563, 0.09695237874984741, 0.40938112139701843, -0.05373726412653923, 0.14485332369804382, -0.4565989673137665, -0.2852005958557129, -0.007454188074916601, 0.13342037796974182, -0.3428207337856293, 0.06656038761138916, 1.2081537246704102, -0.0054887752048671246, 0.012403673492372036, -0.034514568746089935]} +{"t": 9.07, "q": [-0.15636035799980164, 0.003252039197832346, 0.019605735316872597, 0.3190935552120209, -0.15988290309906006, -0.001404867391102016, -0.10590092092752457, -0.034088462591171265, 0.04302816092967987, 0.3192980885505676, -0.2230919897556305, 0.030513865873217583, 0.009642165154218674, 0.0331314317882061, 0.023072324693202972, 0.09332115948200226, 0.39851143956184387, -0.04879976436495781, 0.14269617199897766, -0.47370046377182007, -0.28636306524276733, -0.007442203816026449, 0.13344435393810272, -0.34341996908187866, 0.06653641909360886, 1.2087289094924927, -0.0054887752048671246, 0.012355736456811428, -0.03455052152276039]} +{"t": 9.0867, "q": [-0.15636888146400452, 0.003226472530514002, 0.019605735316872597, 0.3191702663898468, -0.15987859666347504, -0.0013978203060105443, -0.10592648386955261, -0.03412254899740219, 0.04298798367381096, 0.31946852803230286, -0.2230919897556305, 0.030513865873217583, 0.009628772735595703, 0.033101338893175125, 0.023063404485583305, 0.08974986523389816, 0.3859999179840088, -0.04159724712371826, 0.13970011472702026, -0.4905862510204315, -0.286878377199173, -0.007418235298246145, 0.13340839743614197, -0.34374353289604187, 0.06658435612916946, 1.2091124057769775, -0.005440838169306517, 0.012391689233481884, -0.03450258448719978]} +{"t": 9.1036, "q": [-0.15635183453559875, 0.0032435166649520397, 0.019565559923648834, 0.3192640244960785, -0.1598871946334839, -0.0014119144761934876, -0.10590944439172745, -0.03412254899740219, 0.04297459498047829, 0.31959637999534607, -0.22308367490768433, 0.030528100207448006, 0.009628772735595703, 0.033094171434640884, 0.02300162985920906, 0.08657404035329819, 0.37545379996299744, -0.03622831404209137, 0.1366201639175415, -0.5076518058776855, -0.287393718957901, -0.007310377433896065, 0.13340839743614197, -0.34385138750076294, 0.06662030518054962, 1.2092442512512207, -0.005476790945976973, 0.012391689233481884, -0.03450258448719978]} +{"t": 9.1204, "q": [-0.15625809133052826, 0.003252039197832346, 0.019565559923648834, 0.3193066120147705, -0.15987439453601837, -0.0014189565554261208, -0.10590944439172745, -0.03410550579428673, 0.042961202561855316, 0.3198605477809906, -0.22308367490768433, 0.030528100207448006, 0.009521638043224812, 0.03321575000882149, 0.022837232798337936, 0.08405735343694687, 0.36442831158638, -0.030499853193759918, 0.13328854739665985, -0.5261793732643127, -0.2874775826931, -0.007286408916115761, 0.13338442146778107, -0.3437914550304413, 0.06660832464694977, 1.2094120979309082, -0.005476790945976973, 0.012391689233481884, -0.03446663171052933]} +{"t": 9.1371, "q": [-0.15623252093791962, 0.0033202157355844975, 0.01952538453042507, 0.31934070587158203, -0.15986588597297668, -0.0014330371050164104, -0.10590944439172745, -0.03405437245965004, 0.042961202561855316, 0.3199543058872223, -0.22308367490768433, 0.030528100207448006, 0.009387718513607979, 0.03331468254327774, 0.022678056731820107, 0.0824275016784668, 0.3544694185256958, -0.024507740512490273, 0.13010074198246002, -0.5433767437934875, -0.28726187348365784, -0.007274424657225609, 0.13336046040058136, -0.34362369775772095, 0.06669221073389053, 1.2094600200653076, -0.0055127437226474285, 0.012415657751262188, -0.03446663171052933]} +{"t": 9.1538, "q": [-0.15622399747371674, 0.003448047209531069, 0.01948520727455616, 0.3193662762641907, -0.15985307097434998, -0.0014400791842490435, -0.1059350073337555, -0.033960629254579544, 0.042947810143232346, 0.31997135281562805, -0.22307933866977692, 0.030520880594849586, 0.009387718513607979, 0.03342846408486366, 0.022556684911251068, 0.08059391379356384, 0.3444865643978119, -0.018875155597925186, 0.12717659771442413, -0.5617845058441162, -0.28715401887893677, -0.007202519569545984, 0.13346831500530243, -0.34352782368659973, 0.06666824221611023, 1.2095558643341064, -0.005476790945976973, 0.012403673492372036, -0.03446663171052933]} +{"t": 9.1706, "q": [-0.1562410444021225, 0.003499180544167757, 0.019418248906731606, 0.3193918466567993, -0.15984457731246948, -0.001454159733839333, -0.1059350073337555, -0.03391801938414574, 0.04289424046874046, 0.3200395107269287, -0.22309215366840363, 0.03052818588912487, 0.009360934607684612, 0.033436261117458344, 0.022513659670948982, 0.0788322314620018, 0.3354504406452179, -0.014069480821490288, 0.12487562745809555, -0.5783467292785645, -0.28715401887893677, -0.00717855105176568, 0.13350427150726318, -0.34347987174987793, 0.06674014776945114, 1.2097835540771484, -0.005464806687086821, 0.012391689233481884, -0.034454647451639175]} +{"t": 9.1874, "q": [-0.15618139505386353, 0.003618489485234022, 0.019378073513507843, 0.3193918466567993, -0.1598276048898697, -0.001496416749432683, -0.10592648386955261, -0.03380723297595978, 0.042907632887363434, 0.32010769844055176, -0.22308765351772308, 0.030506644397974014, 0.009280583821237087, 0.03347431868314743, 0.022450972348451614, 0.07751397043466568, 0.32624655961990356, -0.009647301398217678, 0.1224667951464653, -0.5962751507759094, -0.28708210587501526, -0.0070706927217543125, 0.1335282325744629, -0.3434559106826782, 0.06676411628723145, 1.2099153995513916, -0.005452822428196669, 0.012403673492372036, -0.034454647451639175]} +{"t": 9.2041, "q": [-0.156147301197052, 0.0037718876264989376, 0.019364681094884872, 0.3194344639778137, -0.159819096326828, -0.0015105059137567878, -0.10594353079795837, -0.033739056438207626, 0.04285406693816185, 0.3201332688331604, -0.22308349609375, 0.030513763427734375, 0.00906631350517273, 0.03348194807767868, 0.022436531260609627, 0.07681888341903687, 0.31651538610458374, -0.0041705104522407055, 0.11989019066095352, -0.6121662259101868, -0.2866746485233307, -0.007022756151854992, 0.1335282325744629, -0.3433839976787567, 0.06674014776945114, 1.2099753618240356, -0.005428853910416365, 0.012403673492372036, -0.034454647451639175]} +{"t": 9.2208, "q": [-0.156147301197052, 0.0038059758953750134, 0.019364681094884872, 0.31942594051361084, -0.15981484949588776, -0.0015175461303442717, -0.10595205426216125, -0.03367939963936806, 0.04288085177540779, 0.32011622190475464, -0.2230919897556305, 0.030513865873217583, 0.009079704992473125, 0.0335954986512661, 0.022353267297148705, 0.07568038254976273, 0.30817434191703796, -1.1984225238848012e-05, 0.11816445738077164, -0.6289920806884766, -0.28653085231781006, -0.0068549769930541515, 0.13366006314754486, -0.3434079885482788, 0.06681205332279205, 1.2101070880889893, -0.005428853910416365, 0.012391689233481884, -0.03447861596941948]} +{"t": 9.2376, "q": [-0.1561046987771988, 0.0038571092300117016, 0.019284330308437347, 0.3194515109062195, -0.15979348123073578, -0.0015245814574882388, -0.10595205426216125, -0.033662356436252594, 0.04281388968229294, 0.3201417922973633, -0.2230919897556305, 0.030513865873217583, 0.009106488898396492, 0.033678438514471054, 0.022346829995512962, 0.07388275116682053, 0.29976141452789307, 0.0038229678757488728, 0.11671437323093414, -0.6451947093009949, -0.28611138463020325, -0.006663229316473007, 0.13371998071670532, -0.34344393014907837, 0.06687197834253311, 1.2103588581085205, -0.005452822428196669, 0.012391689233481884, -0.03446663171052933]} +{"t": 9.2545, "q": [-0.15608765184879303, 0.0038741533644497395, 0.019257545471191406, 0.31946852803230286, -0.15978923439979553, -0.0015316216740757227, -0.10596057772636414, -0.03362826630473137, 0.04280049726366997, 0.3201332688331604, -0.2230878323316574, 0.030520983040332794, 0.009106488898396492, 0.033784136176109314, 0.022316118702292442, 0.0719413012266159, 0.29125261306762695, 0.006902913562953472, 0.11542007327079773, -0.6618767976760864, -0.28597956895828247, -0.006471481639891863, 0.13369601964950562, -0.34347987174987793, 0.06689594686031342, 1.2104547023773193, -0.005452822428196669, 0.012403673492372036, -0.03444266319274902]} +{"t": 9.2712, "q": [-0.1561046987771988, 0.003882674966007471, 0.019257545471191406, 0.3194515109062195, -0.1597849279642105, -0.001524565857835114, -0.10598614066839218, -0.03362826630473137, 0.042760323733091354, 0.32011622190475464, -0.2230919897556305, 0.030513865873217583, 0.009079704992473125, 0.03383687138557434, 0.022319817915558815, 0.07052716612815857, 0.28484106063842773, 0.00878443755209446, 0.11349061131477356, -0.6771326661109924, -0.28588369488716125, -0.006387591827660799, 0.13361212611198425, -0.34334805607795715, 0.0668240413069725, 1.2105146646499634, -0.005476790945976973, 0.012403673492372036, -0.03443067893385887]} +{"t": 9.2879, "q": [-0.1560961753129959, 0.003908241633325815, 0.019270937889814377, 0.3194429874420166, -0.15977206826210022, -0.0015175120206549764, -0.10598614066839218, -0.033602699637413025, 0.04281388968229294, 0.320090651512146, -0.2230919897556305, 0.030513865873217583, 0.00906631350517273, 0.03391259163618088, 0.022261133417487144, 0.06956842541694641, 0.2773149609565735, 0.012535499408841133, 0.110458604991436, -0.6910463571548462, -0.28573986887931824, -0.0063276709988713264, 0.1335282325744629, -0.34295257925987244, 0.06687197834253311, 1.2105026245117188, -0.005476790945976973, 0.012403673492372036, -0.03441869467496872]} +{"t": 9.3049, "q": [-0.15608765184879303, 0.0038911974988877773, 0.019284330308437347, 0.3194600045681, -0.15977202355861664, -0.0015034247189760208, -0.10599466413259506, -0.03359417989850044, 0.04282728210091591, 0.3200480341911316, -0.2230919897556305, 0.030513865873217583, 0.009093097411096096, 0.03399576246738434, 0.022216588258743286, 0.06825016438961029, 0.2696450650691986, 0.01684982143342495, 0.10787001252174377, -0.705247700214386, -0.28567996621131897, -0.006207828875631094, 0.13350427150726318, -0.34242525696754456, 0.06689594686031342, 1.210478663444519, -0.005464806687086821, 0.012403673492372036, -0.03443067893385887]} +{"t": 9.3219, "q": [-0.1561046987771988, 0.003865630831569433, 0.019284330308437347, 0.3194429874420166, -0.1597805768251419, -0.0015034315874800086, -0.10599466413259506, -0.03363678976893425, 0.04281388968229294, 0.3200480341911316, -0.2230919897556305, 0.030513865873217583, 0.009039529599249363, 0.034154366701841354, 0.02216099388897419, 0.06671617925167084, 0.2630537450313568, 0.019450398162007332, 0.10554507374763489, -0.7190415263175964, -0.2856200337409973, -0.00606401776894927, 0.13349229097366333, -0.34192192554473877, 0.06690792739391327, 1.2104547023773193, -0.005476790945976973, 0.012403673492372036, -0.03440671041607857]} +{"t": 9.3386, "q": [-0.1561046987771988, 0.0038400650955736637, 0.01933789812028408, 0.3194003701210022, -0.1597805768251419, -0.0015034315874800086, -0.10600318759679794, -0.03364531323313713, 0.04285406693816185, 0.3200054466724396, -0.2230919897556305, 0.030513865873217583, 0.009012745693325996, 0.03431251272559166, 0.022181618958711624, 0.06561363488435745, 0.25665417313575745, 0.023213444277644157, 0.10239321738481522, -0.7306063175201416, -0.2855721116065979, -0.006028065457940102, 0.13339641690254211, -0.3414425551891327, 0.06689594686031342, 1.2104307413101196, -0.0054887752048671246, 0.012391689233481884, -0.03443067893385887]} +{"t": 9.3554, "q": [-0.15613025426864624, 0.0037974542938172817, 0.019351288676261902, 0.3194003701210022, -0.15977631509304047, -0.0015104718040674925, -0.10602875053882599, -0.03368792310357094, 0.04284067451953888, 0.3200054466724396, -0.22309614717960358, 0.03050674870610237, 0.009039529599249363, 0.03454597666859627, 0.022210249677300453, 0.0646788626909256, 0.25148895382881165, 0.025658225640654564, 0.10157829523086548, -0.74006187915802, -0.28514066338539124, -0.00595615990459919, 0.13338442146778107, -0.3410710394382477, 0.06702776998281479, 1.2104307413101196, -0.0055007594637572765, 0.012391689233481884, -0.03443067893385887]} +{"t": 9.3721, "q": [-0.15613025426864624, 0.0038144984282553196, 0.01932450570166111, 0.3193662762641907, -0.1597677618265152, -0.0015104649355635047, -0.10603727400302887, -0.03368792310357094, 0.04282728210091591, 0.3199969232082367, -0.2230963110923767, 0.03052106872200966, 0.008932393975555897, 0.03489169105887413, 0.02235550619661808, 0.06452307105064392, 0.2488764077425003, 0.02576608397066593, 0.101698137819767, -0.7480313777923584, -0.2844815254211426, -0.00589623861014843, 0.13338442146778107, -0.3407714366912842, 0.06696785241365433, 1.2104307413101196, -0.005476790945976973, 0.012391689233481884, -0.03441869467496872]} +{"t": 9.3889, "q": [-0.15613877773284912, 0.003823020961135626, 0.019404856488108635, 0.31932365894317627, -0.1597805768251419, -0.0015034315874800086, -0.10612249374389648, -0.033670876175165176, 0.04285406693816185, 0.3200054466724396, -0.2230963110923767, 0.03052106872200966, 0.008677948266267776, 0.0353657491505146, 0.022445427253842354, 0.06458298861980438, 0.24786972999572754, 0.02545449510216713, 0.10171011835336685, -0.7531965970993042, -0.2839542329311371, -0.005908222869038582, 0.13318069279193878, -0.34055572748184204, 0.06702776998281479, 1.210418701171875, -0.005452822428196669, 0.012391689233481884, -0.034394726157188416]} +{"t": 9.4056, "q": [-0.15613877773284912, 0.0038741533644497395, 0.019364681094884872, 0.31922993063926697, -0.15977631509304047, -0.0015104718040674925, -0.10618215054273605, -0.03363678976893425, 0.04288085177540779, 0.3199969232082367, -0.2230919897556305, 0.030513865873217583, 0.008369934745132923, 0.03599812090396881, 0.02251746691763401, 0.06458298861980438, 0.24819330871105194, 0.025070998817682266, 0.1017460748553276, -0.7542751431465149, -0.28385835886001587, -0.005908222869038582, 0.13288109004497528, -0.34053176641464233, 0.06703975796699524, 1.2103947401046753, -0.005452822428196669, 0.012415657751262188, -0.034382741898298264]} +{"t": 9.4224, "q": [-0.156147301197052, 0.003908241633325815, 0.019378073513507843, 0.3192043602466583, -0.15977631509304047, -0.0015104718040674925, -0.10622476041316986, -0.03359417989850044, 0.04289424046874046, 0.3199969232082367, -0.22310063242912292, 0.030528271570801735, 0.008155664429068565, 0.036924347281455994, 0.022606609389185905, 0.06635665148496628, 0.24927188456058502, 0.02485528402030468, 0.1037953719496727, -0.7534722089767456, -0.2832831144332886, -0.00589623861014843, 0.13268934190273285, -0.3405916690826416, 0.06702776998281479, 1.2103707790374756, -0.005428853910416365, 0.012391689233481884, -0.034394726157188416]} +{"t": 9.4391, "q": [-0.15612174570560455, 0.004061639774590731, 0.019418248906731606, 0.3191702663898468, -0.1597806215286255, -0.0015175188891589642, -0.10629294067621231, -0.03356008976697922, 0.04289424046874046, 0.32001397013664246, -0.2230919897556305, 0.030513865873217583, 0.007780691608786583, 0.037999268621206284, 0.022977609187364578, 0.07203717529773712, 0.251716673374176, 0.02154763787984848, 0.10584467649459839, -0.750979483127594, -0.2814495265483856, -0.005908222869038582, 0.13220997154712677, -0.34080740809440613, 0.06701578944921494, 1.2103108167648315, -0.005464806687086821, 0.012391689233481884, -0.034394726157188416]} +{"t": 9.4559, "q": [-0.15616434812545776, 0.004197993781417608, 0.019445031881332397, 0.31911060214042664, -0.15977637469768524, -0.001524559105746448, -0.10644633322954178, -0.0334748700261116, 0.042947810143232346, 0.3199883997440338, -0.2231004685163498, 0.030513951554894447, 0.007593204732984304, 0.03915651515126228, 0.023350222036242485, 0.07750198245048523, 0.2564144730567932, 0.01846769079566002, 0.10657571256160736, -0.7453109622001648, -0.27949610352516174, -0.005836317781358957, 0.13179051876068115, -0.3411429524421692, 0.06693189591169357, 1.2103108167648315, -0.0054887752048671246, 0.012403673492372036, -0.034382741898298264]} +{"t": 9.4726, "q": [-0.15620696544647217, 0.00424060458317399, 0.019445031881332397, 0.3189998269081116, -0.15977206826210022, -0.0015175120206549764, -0.10655712336301804, -0.0334748700261116, 0.042947810143232346, 0.3199457824230194, -0.22310063242912292, 0.030528271570801735, 0.007298583164811134, 0.040814172476530075, 0.023262863978743553, 0.08213987946510315, 0.2626103162765503, 0.015028218738734722, 0.10670754313468933, -0.7363587617874146, -0.27717116475105286, -0.005824333522468805, 0.13121528923511505, -0.34155040979385376, 0.06697983294725418, 1.2102749347686768, -0.005464806687086821, 0.012415657751262188, -0.034382741898298264]} +{"t": 9.4893, "q": [-0.156147301197052, 0.004317303653806448, 0.01948520727455616, 0.3189401626586914, -0.15976355969905853, -0.0015316011849790812, -0.10653156042098999, -0.03344930335879326, 0.04298798367381096, 0.3199457824230194, -0.2231004685163498, 0.030513951554894447, 0.0068030827678740025, 0.042871877551078796, 0.02303461730480194, 0.08581903576850891, 0.26986077427864075, 0.011385014280676842, 0.10695920884609222, -0.7275503277778625, -0.27385154366493225, -0.005860286299139261, 0.1303284466266632, -0.34170621633529663, 0.06693189591169357, 1.2102868556976318, -0.0054887752048671246, 0.012403673492372036, -0.034382741898298264]} +{"t": 9.5061, "q": [-0.15611322224140167, 0.004402524325996637, 0.0195119921118021, 0.31892311573028564, -0.15977215766906738, -0.0015456953551620245, -0.10652303695678711, -0.033415213227272034, 0.04298798367381096, 0.3199543058872223, -0.22310462594032288, 0.030506834387779236, 0.006575420964509249, 0.0449368879199028, 0.022808916866779327, 0.08893493562936783, 0.27806997299194336, 0.0076219672337174416, 0.10800183564424515, -0.7157338857650757, -0.27071166038513184, -0.005860286299139261, 0.1290101855993271, -0.34177812933921814, 0.06695586442947388, 1.210179090499878, -0.005464806687086821, 0.012415657751262188, -0.03435877338051796]} +{"t": 9.5228, "q": [-0.1561046987771988, 0.004419568460434675, 0.01948520727455616, 0.3187526762485504, -0.1597593128681183, -0.0015386415179818869, -0.10654007643461227, -0.03338964655995369, 0.04300137609243393, 0.3199116885662079, -0.22311726212501526, 0.03049980103969574, 0.00638793408870697, 0.0470912829041481, 0.022701941430568695, 0.0917871817946434, 0.28715401887893677, 0.0028162929229438305, 0.10939200967550278, -0.7033182382583618, -0.2666729688644409, -0.005848302040249109, 0.12722453474998474, -0.34182605147361755, 0.06700380146503448, 1.2100352048873901, -0.005476790945976973, 0.012415657751262188, -0.034394726157188416]} +{"t": 9.5396, "q": [-0.15595129132270813, 0.004470700863748789, 0.0195119921118021, 0.3187185823917389, -0.15975505113601685, -0.0015456817345693707, -0.10654859989881516, -0.03334703668951988, 0.04300137609243393, 0.3199543058872223, -0.22312557697296143, 0.030485549941658974, 0.00613348837941885, 0.049248214811086655, 0.023081433027982712, 0.09329719096422195, 0.2974005341529846, -0.0018695391481742263, 0.11085408180952072, -0.6900157332420349, -0.26267024874687195, -0.00589623861014843, 0.1251872181892395, -0.34185001254081726, 0.06693189591169357, 1.2099393606185913, -0.005428853910416365, 0.012415657751262188, -0.034394726157188416]} +{"t": 9.5563, "q": [-0.1559683382511139, 0.004641143139451742, 0.01952538453042507, 0.31869304180145264, -0.15973804891109467, -0.0015738514484837651, -0.10658268630504608, -0.03327034041285515, 0.0430147685110569, 0.31993725895881653, -0.22312143445014954, 0.030492667108774185, 0.00605313666164875, 0.05106603726744652, 0.023445595055818558, 0.09426791220903397, 0.3065684735774994, -0.005908222869038582, 0.11182480305433273, -0.6752392053604126, -0.26059699058532715, -0.00589623861014843, 0.12344950437545776, -0.3419938385486603, 0.06699182093143463, 1.2097476720809937, -0.005452822428196669, 0.01242764201015234, -0.034394726157188416]} +{"t": 9.573, "q": [-0.15595129132270813, 0.004768975544720888, 0.0195119921118021, 0.31869304180145264, -0.15973378717899323, -0.001580900396220386, -0.1066167801618576, -0.033185116946697235, 0.04300137609243393, 0.31996282935142517, -0.22312557697296143, 0.030485549941658974, 0.005972785409539938, 0.05285099148750305, 0.02405552752315998, 0.09515474736690521, 0.31616783142089844, -0.00906007457524538, 0.11219631880521774, -0.6606423854827881, -0.25827205181121826, -0.005908222869038582, 0.12132829427719116, -0.3425331115722656, 0.06700380146503448, 1.20966374874115, -0.005476790945976973, 0.01242764201015234, -0.03440671041607857]} +{"t": 9.59, "q": [-0.15595129132270813, 0.004888284485787153, 0.019418248906731606, 0.31869304180145264, -0.15970827639102936, -0.0016231505433097482, -0.10663381963968277, -0.0331084169447422, 0.04300137609243393, 0.31997135281562805, -0.22313804924488068, 0.03046419844031334, 0.005946001503616571, 0.054334964603185654, 0.024577273055911064, 0.09594570845365524, 0.3261626660823822, -0.012487562373280525, 0.1125558465719223, -0.6458778381347656, -0.2560189962387085, -0.00589623861014843, 0.11900335550308228, -0.34290462732315063, 0.06696785241365433, 1.209567904472351, -0.0055007594637572765, 0.01242764201015234, -0.03443067893385887]} +{"t": 9.6069, "q": [-0.1559172123670578, 0.005092815961688757, 0.019431641325354576, 0.3187185823917389, -0.15969125926494598, -0.0016513202572241426, -0.10664234310388565, -0.03309989720582962, 0.0430147685110569, 0.31996282935142517, -0.22313804924488068, 0.03046419844031334, 0.005946001503616571, 0.05556965619325638, 0.02518719807267189, 0.09667674452066422, 0.33776339888572693, -0.017652763053774834, 0.11350259929895401, -0.6300586462020874, -0.25416144728660583, -0.005944175645709038, 0.11618706583976746, -0.34309637546539307, 0.06697983294725418, 1.2096037864685059, -0.005476790945976973, 0.012403673492372036, -0.03441869467496872]} +{"t": 9.6239, "q": [-0.15595129132270813, 0.00526325823739171, 0.019431641325354576, 0.3187271058559418, -0.15966148674488068, -0.0017006194684654474, -0.10669347643852234, -0.03305728733539581, 0.0430147685110569, 0.31997135281562805, -0.22314636409282684, 0.030449962243437767, 0.005785298999398947, 0.05681911110877991, 0.025747450068593025, 0.09774333983659744, 0.3486810326576233, -0.022734075784683228, 0.11444935202598572, -0.6144791841506958, -0.2521480917930603, -0.006052033975720406, 0.11356251686811447, -0.3431682884693146, 0.06702776998281479, 1.209447979927063, -0.0054887752048671246, 0.012415657751262188, -0.03443067893385887]} +{"t": 9.6406, "q": [-0.15590868890285492, 0.005280302371829748, 0.01948520727455616, 0.3187185823917389, -0.15964877605438232, -0.0017358361510559916, -0.10673608630895615, -0.03305728733539581, 0.043081726878881454, 0.3200054466724396, -0.22314603626728058, 0.03042130544781685, 0.005571028683334589, 0.0579916276037693, 0.02645178511738777, 0.09933724254369736, 0.359311044216156, -0.02732403390109539, 0.11589944362640381, -0.5978570580482483, -0.24973927438259125, -0.006099970545619726, 0.11023090034723282, -0.34318026900291443, 0.06711166352033615, 1.2093641757965088, -0.0054887752048671246, 0.01242764201015234, -0.03443067893385887]} +{"t": 9.6574, "q": [-0.15583199262619019, 0.0053484789095819, 0.0195119921118021, 0.3187271058559418, -0.1596444696187973, -0.0017287891823798418, -0.10674460977315903, -0.03302319720387459, 0.043121904134750366, 0.3199883997440338, -0.22316698729991913, 0.03040003776550293, 0.005222839303314686, 0.05907459184527397, 0.027034591883420944, 0.10138654708862305, 0.36898231506347656, -0.030368026345968246, 0.11790081113576889, -0.5818700790405273, -0.24676717817783356, -0.006231796927750111, 0.10694722831249237, -0.34314432740211487, 0.06713563203811646, 1.2094120979309082, -0.005476790945976973, 0.012439625337719917, -0.03443067893385887]} +{"t": 9.6742, "q": [-0.15583199262619019, 0.005314390640705824, 0.019538775086402893, 0.3187015652656555, -0.15964442491531372, -0.0017147018807008862, -0.10676165670156479, -0.032997630536556244, 0.043121904134750366, 0.31997135281562805, -0.22317130863666534, 0.030407240614295006, 0.005263015162199736, 0.060083165764808655, 0.027543475851416588, 0.10269282758235931, 0.37919285893440247, -0.03443067893385887, 0.12024971842765808, -0.5666621327400208, -0.24362730979919434, -0.006255765445530415, 0.1041189506649971, -0.3430604338645935, 0.06714761257171631, 1.2094000577926636, -0.005452822428196669, 0.012415657751262188, -0.03443067893385887]} +{"t": 9.691, "q": [-0.15586607158184052, 0.005305869039148092, 0.019538775086402893, 0.3186759948730469, -0.15964877605438232, -0.0017358361510559916, -0.10677017271518707, -0.032997630536556244, 0.043121904134750366, 0.31997135281562805, -0.2231796234846115, 0.030393006280064583, 0.005289798602461815, 0.061306603252887726, 0.0282367542386055, 0.10433466732501984, 0.3889959752559662, -0.039631832391023636, 0.12297013401985168, -0.5507470369338989, -0.24178174138069153, -0.0062677497044205666, 0.10160226374864578, -0.3430364727973938, 0.06717158108949661, 1.2093521356582642, -0.005476790945976973, 0.01242764201015234, -0.03443067893385887]} +{"t": 9.7077, "q": [-0.15588311851024628, 0.005254735704511404, 0.019552167505025864, 0.31859928369522095, -0.159652978181839, -0.0017146999016404152, -0.10677869617938995, -0.0329720638692379, 0.043108511716127396, 0.31993725895881653, -0.22317098081111908, 0.03037860058248043, 0.005356758367270231, 0.062223538756370544, 0.02881411835551262, 0.10677944868803024, 0.39791223406791687, -0.04494084417819977, 0.12533102929592133, -0.5357547998428345, -0.24081102013587952, -0.0062797339633107185, 0.09871406108140945, -0.34300050139427185, 0.06725547462701797, 1.2093641757965088, -0.0055007594637572765, 0.012403673492372036, -0.03440671041607857]} +{"t": 9.7247, "q": [-0.15595129132270813, 0.005160992499440908, 0.01965930312871933, 0.3183947503566742, -0.159652978181839, -0.0017146999016404152, -0.10693209618330002, -0.03298910707235336, 0.04314868897199631, 0.31987759470939636, -0.2231796234846115, 0.030393006280064583, 0.00516927195712924, 0.06284161657094955, 0.029221395030617714, 0.1104106679558754, 0.4057379364967346, -0.048955559730529785, 0.12736834585666656, -0.5199835300445557, -0.24007998406887054, -0.0062917182222008705, 0.09561014920473099, -0.34297654032707214, 0.06736332923173904, 1.2093641757965088, -0.005476790945976973, 0.012415657751262188, -0.03441869467496872]} +{"t": 9.7414, "q": [-0.155959814786911, 0.005084293428808451, 0.019753046333789825, 0.3182157874107361, -0.15965718030929565, -0.0016935723833739758, -0.10704288631677628, -0.03301467373967171, 0.04322903975844383, 0.3197753429412842, -0.2231796234846115, 0.030393006280064583, 0.00512909609824419, 0.06330383569002151, 0.029478227719664574, 0.11389807611703873, 0.4132280647754669, -0.05330583453178406, 0.12978915870189667, -0.5051231384277344, -0.2392410933971405, -0.0063156867399811745, 0.09308147430419922, -0.3429405987262726, 0.06748317182064056, 1.2093042135238647, -0.0054887752048671246, 0.012403673492372036, -0.03444266319274902]} +{"t": 9.7582, "q": [-0.155959814786911, 0.005041682627052069, 0.019779829308390617, 0.31809648871421814, -0.15966148674488068, -0.0017006194684654474, -0.10705140233039856, -0.03304876387119293, 0.04322903975844383, 0.3196815848350525, -0.2231922745704651, 0.030385956168174744, 0.005329974461346865, 0.06353446841239929, 0.029644520953297615, 0.11786485463380814, 0.42056241631507874, -0.059118181467056274, 0.13176655769348145, -0.48875266313552856, -0.2385939359664917, -0.0063276709988713264, 0.09098424017429352, -0.3429405987262726, 0.06765095144510269, 1.2092442512512207, -0.0055247279815375805, 0.012391689233481884, -0.03443067893385887]} +{"t": 9.775, "q": [-0.15593425929546356, 0.005007594358175993, 0.019779829308390617, 0.3179260492324829, -0.15966148674488068, -0.0017006194684654474, -0.10702583938837051, -0.03302319720387459, 0.04321564733982086, 0.31956228613853455, -0.22318826615810394, 0.030407411977648735, 0.00546389352530241, 0.0635865107178688, 0.02968510240316391, 0.12199941277503967, 0.4283641576766968, -0.0664525255560875, 0.1329529881477356, -0.4735206961631775, -0.2382703721523285, -0.006375608034431934, 0.0890427902340889, -0.3425810635089874, 0.0677228569984436, 1.2093281745910645, -0.005464806687086821, 0.01242764201015234, -0.03443067893385887]} +{"t": 9.7917, "q": [-0.15595129132270813, 0.0049820286221802235, 0.019793221727013588, 0.31778115034103394, -0.15966573357582092, -0.0016935792518779635, -0.10702583938837051, -0.03304876387119293, 0.04318886250257492, 0.3194088935852051, -0.2231881022453308, 0.030393091961741447, 0.0056112040765583515, 0.06359348446130753, 0.029727425426244736, 0.12630175054073334, 0.4350273907184601, -0.07245662808418274, 0.1339237242937088, -0.4566948413848877, -0.23773106932640076, -0.006543387193232775, 0.0869695246219635, -0.34120288491249084, 0.06809436529874802, 1.209220290184021, -0.0055127437226474285, 0.012403673492372036, -0.034382741898298264]} +{"t": 9.8085, "q": [-0.155959814786911, 0.004913851153105497, 0.019779829308390617, 0.31758514046669006, -0.15966148674488068, -0.0017006194684654474, -0.10700027644634247, -0.03304024040699005, 0.04321564733982086, 0.3192128837108612, -0.22318826615810394, 0.030407411977648735, 0.00571833923459053, 0.06359336525201797, 0.029736893251538277, 0.13012471795082092, 0.43980908393859863, -0.07789746671915054, 0.13546967506408691, -0.4401446282863617, -0.23710790276527405, -0.006543387193232775, 0.08531569689512253, -0.33980071544647217, 0.06817825883626938, 1.2091723680496216, -0.0054887752048671246, 0.012403673492372036, -0.03437075763940811]} +{"t": 9.8253, "q": [-0.155959814786911, 0.004862718749791384, 0.019766438752412796, 0.3175766170024872, -0.1596657931804657, -0.001707666553556919, -0.10700027644634247, -0.03304876387119293, 0.04318886250257492, 0.31922993063926697, -0.22320091724395752, 0.030400361865758896, 0.00579869095236063, 0.06361571699380875, 0.029750220477581024, 0.13195830583572388, 0.44527387619018555, -0.08553141355514526, 0.1381421685218811, -0.4261590540409088, -0.23668844997882843, -0.006567355245351791, 0.08462061733007431, -0.3386502265930176, 0.06822619587182999, 1.208992600440979, -0.005440838169306517, 0.012391689233481884, -0.03440671041607857]} +{"t": 9.8421, "q": [-0.15601947903633118, 0.0048541962169110775, 0.019766438752412796, 0.317474365234375, -0.15966568887233734, -0.0016794831026345491, -0.10700879245996475, -0.03305728733539581, 0.04314868897199631, 0.31918731331825256, -0.22320091724395752, 0.030400361865758896, 0.00605313666164875, 0.06363771110773087, 0.029791956767439842, 0.13373197615146637, 0.45071473717689514, -0.09305750578641891, 0.14094647765159607, -0.4121854305267334, -0.23602931201457977, -0.006639260798692703, 0.08400941640138626, -0.3375237286090851, 0.06828611344099045, 1.2088847160339355, -0.0054887752048671246, 0.012403673492372036, -0.03440671041607857]} +{"t": 9.8589, "q": [-0.1561046987771988, 0.00483715208247304, 0.019686086103320122, 0.3173976540565491, -0.1596614271402359, -0.0016865321667864919, -0.10701731592416763, -0.03302319720387459, 0.04306833818554878, 0.31915321946144104, -0.22320091724395752, 0.030400361865758896, 0.006495069246739149, 0.06364444643259048, 0.02985321544110775, 0.1356494426727295, 0.4550650119781494, -0.09877398610115051, 0.14359498023986816, -0.39622244238853455, -0.23538216948509216, -0.006687197834253311, 0.08326639980077744, -0.3365410268306732, 0.06854976713657379, 1.2088727951049805, -0.005476790945976973, 0.012403673492372036, -0.034394726157188416]} +{"t": 9.8757, "q": [-0.15611322224140167, 0.004828630480915308, 0.01964591071009636, 0.31740617752075195, -0.15966573357582092, -0.0016935792518779635, -0.10700027644634247, -0.033074330538511276, 0.0430147685110569, 0.3191361725330353, -0.22320523858070374, 0.030407564714550972, 0.006950393784791231, 0.06364433467388153, 0.02986268699169159, 0.13695572316646576, 0.46035003662109375, -0.10721088200807571, 0.1468307226896286, -0.3810384273529053, -0.2353222519159317, -0.006663229316473007, 0.08276306092739105, -0.3358699083328247, 0.06870556622743607, 1.2088847160339355, -0.0054887752048671246, 0.012403673492372036, -0.034382741898298264]} +{"t": 9.8925, "q": [-0.15607912838459015, 0.004828630480915308, 0.0196726955473423, 0.31741470098495483, -0.15966568887233734, -0.0016794831026345491, -0.10701731592416763, -0.033074330538511276, 0.04304155334830284, 0.31914469599723816, -0.22320955991744995, 0.030414767563343048, 0.0068030827678740025, 0.06364433467388153, 0.02986268699169159, 0.13877733051776886, 0.4651317596435547, -0.11423363536596298, 0.14961107075214386, -0.3663457930088043, -0.23514248430728912, -0.006807039957493544, 0.08184027671813965, -0.3353186249732971, 0.06898120045661926, 1.2089446783065796, -0.005452822428196669, 0.012403673492372036, -0.03437075763940811]} +{"t": 9.9093, "q": [-0.15608765184879303, 0.004862718749791384, 0.019699478521943092, 0.3174317479133606, -0.15967430174350739, -0.0016935772728174925, -0.10701731592416763, -0.033074330538511276, 0.043095119297504425, 0.3191617429256439, -0.22320939600467682, 0.03040044754743576, 0.00646828580647707, 0.06366680562496185, 0.029866542667150497, 0.14070679247379303, 0.470416784286499, -0.12100472301244736, 0.15225958824157715, -0.35074231028556824, -0.2350466102361679, -0.00689092930406332, 0.08083359897136688, -0.33481529355049133, 0.06906508654356003, 1.208980679512024, -0.005476790945976973, 0.012415657751262188, -0.03440671041607857]} +{"t": 9.9261, "q": [-0.1560620814561844, 0.004879762884229422, 0.019712870940566063, 0.3174658417701721, -0.15966999530792236, -0.0016865301877260208, -0.10702583938837051, -0.03305728733539581, 0.043121904134750366, 0.3191702663898468, -0.2232050746679306, 0.030393244698643684, 0.006334366742521524, 0.06366680562496185, 0.029866542667150497, 0.14212092757225037, 0.47537827491760254, -0.12771588563919067, 0.15513579547405243, -0.3346475064754486, -0.23503462970256805, -0.006998787634074688, 0.08025835454463959, -0.33435988426208496, 0.0692448541522026, 1.2090286016464233, -0.0054887752048671246, 0.012403673492372036, -0.034382741898298264]} +{"t": 9.9429, "q": [-0.1560620814561844, 0.004862718749791384, 0.019699478521943092, 0.31749993562698364, -0.1596785932779312, -0.0017006243579089642, -0.10701731592416763, -0.03304024040699005, 0.043121904134750366, 0.31928104162216187, -0.22320091724395752, 0.030400361865758896, 0.006240623537451029, 0.06370464712381363, 0.029841404408216476, 0.1431635618209839, 0.479680597782135, -0.13373197615146637, 0.15839549899101257, -0.3177497386932373, -0.2350466102361679, -0.00701077189296484, 0.07949136942625046, -0.3340003490447998, 0.06941263377666473, 1.209436058998108, -0.005464806687086821, 0.012415657751262188, -0.03440671041607857]} +{"t": 9.9596, "q": [-0.15604503452777863, 0.0048541962169110775, 0.019726261496543884, 0.31753402948379517, -0.15966999530792236, -0.0016865301877260208, -0.10701731592416763, -0.03302319720387459, 0.04313529655337334, 0.31934070587158203, -0.22320091724395752, 0.030400361865758896, 0.0061736637726426125, 0.06373456865549088, 0.02984970062971115, 0.14431403577327728, 0.4844023883342743, -0.14035925269126892, 0.1615114063024521, -0.30163097381591797, -0.23498669266700745, -0.007034740410745144, 0.07830492407083511, -0.3335689306259155, 0.06971223652362823, 1.2098314762115479, -0.005476790945976973, 0.012439625337719917, -0.03441869467496872]} +{"t": 9.9778, "q": [-0.1560535579919815, 0.004888284485787153, 0.019712870940566063, 0.3176107108592987, -0.15967430174350739, -0.0016935772728174925, -0.1070343628525734, -0.033074330538511276, 0.04314868897199631, 0.3194344639778137, -0.22320523858070374, 0.030407564714550972, 0.00605313666164875, 0.06377170234918594, 0.02988138049840927, 0.14518888294696808, 0.4907180666923523, -0.14775350689888, 0.16472317278385162, -0.2860395014286041, -0.23501065373420715, -0.00711862975731492, 0.07726229727268219, -0.33294573426246643, 0.06992795318365097, 1.2099993228912354, -0.0054887752048671246, 0.01242764201015234, -0.03440671041607857]} +{"t": 9.9945, "q": [-0.1560109555721283, 0.004888284485787153, 0.019726261496543884, 0.3176107108592987, -0.15966573357582092, -0.0016935792518779635, -0.1070343628525734, -0.03301467373967171, 0.04314868897199631, 0.3194515109062195, -0.22320939600467682, 0.03040044754743576, 0.005731731187552214, 0.06382409483194351, 0.0298935379832983, 0.1466030329465866, 0.49757304787635803, -0.15537548065185547, 0.16892963647842407, -0.26711639761924744, -0.23511850833892822, -0.007238471880555153, 0.07584816217422485, -0.33214280009269714, 0.07034739851951599, 1.2102149724960327, -0.005452822428196669, 0.01242764201015234, -0.034454647451639175]} +{"t": 10.0113, "q": [-0.1559683382511139, 0.004862718749791384, 0.01980661414563656, 0.31764480471611023, -0.1596657931804657, -0.001707666553556919, -0.1070343628525734, -0.03298910707235336, 0.043255824595689774, 0.3195367157459259, -0.22320091724395752, 0.030400361865758896, 0.005155880004167557, 0.06391362100839615, 0.029937369748950005, 0.1479812115430832, 0.5031337141990662, -0.1609121859073639, 0.17238110303878784, -0.2504942715167999, -0.23511850833892822, -0.007250456139445305, 0.07449394464492798, -0.33131590485572815, 0.07070692628622055, 1.2102389335632324, -0.005464806687086821, 0.012415657751262188, -0.034454647451639175]} +{"t": 10.0281, "q": [-0.15597686171531677, 0.004879762884229422, 0.01986018195748329, 0.317661851644516, -0.15966999530792236, -0.0016865301877260208, -0.10701731592416763, -0.03301467373967171, 0.043269213289022446, 0.31956228613853455, -0.22320091724395752, 0.030400361865758896, 0.004687163513153791, 0.06399557739496231, 0.02998623438179493, 0.14967098832130432, 0.5089580416679382, -0.16648486256599426, 0.17560485005378723, -0.23297333717346191, -0.23516644537448883, -0.007298393175005913, 0.07342734932899475, -0.3302013576030731, 0.07105447351932526, 1.2103588581085205, -0.005452822428196669, 0.01242764201015234, -0.034454647451639175]} +{"t": 10.0448, "q": [-0.1559683382511139, 0.004845674615353346, 0.019873572513461113, 0.31767037510871887, -0.15967008471488953, -0.001714713522233069, -0.10701731592416763, -0.03301467373967171, 0.04329599812626839, 0.31959637999534607, -0.22320091724395752, 0.030400361865758896, 0.004713947419077158, 0.06408510357141495, 0.03003006801009178, 0.1506536900997162, 0.5163163542747498, -0.17330388724803925, 0.17959560453891754, -0.2158239185810089, -0.23514248430728912, -0.007358314469456673, 0.07270829379558563, -0.32884714007377625, 0.07158178091049194, 1.2104905843734741, -0.0054887752048671246, 0.012439625337719917, -0.034454647451639175]} +{"t": 10.0615, "q": [-0.15598538517951965, 0.004828630480915308, 0.019873572513461113, 0.317661851644516, -0.15966148674488068, -0.0017006194684654474, -0.1070343628525734, -0.03303172066807747, 0.04330939054489136, 0.3195793330669403, -0.22319242358207703, 0.030400294810533524, 0.004780906718224287, 0.06417439132928848, 0.030092841014266014, 0.1519959270954132, 0.5227998495101929, -0.17910423874855042, 0.18308301270008087, -0.19934560358524323, -0.23514248430728912, -0.007406251039355993, 0.07184542715549469, -0.3273131549358368, 0.07195328921079636, 1.2106823921203613, -0.0054887752048671246, 0.01245160959661007, -0.034454647451639175]} +{"t": 10.0782, "q": [-0.15600243210792542, 0.004768975544720888, 0.01986018195748329, 0.31767037510871887, -0.1596657931804657, -0.001707666553556919, -0.1070343628525734, -0.03303172066807747, 0.043269213289022446, 0.31955376267433167, -0.22320523858070374, 0.030407564714550972, 0.00508892023935914, 0.06423399597406387, 0.030128376558423042, 0.152870774269104, 0.529966413974762, -0.18581540882587433, 0.1876969337463379, -0.18196848034858704, -0.2353701889514923, -0.007490140851587057, 0.07118629664182663, -0.3255634605884552, 0.07209710031747818, 1.2108861207962036, -0.0055007594637572765, 0.012439625337719917, -0.03443067893385887]} +{"t": 10.095, "q": [-0.15597686171531677, 0.004760453011840582, 0.01984678953886032, 0.31767037510871887, -0.15966568887233734, -0.0016794831026345491, -0.10702583938837051, -0.03303172066807747, 0.043255824595689774, 0.3195367157459259, -0.2232050746679306, 0.030393244698643684, 0.005249623209238052, 0.06425634771585464, 0.03014170378446579, 0.1537695974111557, 0.5369412302970886, -0.19195133447647095, 0.1919872909784317, -0.16553810238838196, -0.23546606302261353, -0.007514109369367361, 0.07008375227451324, -0.3237658143043518, 0.07220495492219925, 1.2111138105392456, -0.005428853910416365, 0.01245160959661007, -0.03443067893385887]} +{"t": 10.1117, "q": [-0.15599390864372253, 0.004760453011840582, 0.01984678953886032, 0.317661851644516, -0.15966999530792236, -0.0016865301877260208, -0.1070343628525734, -0.03303172066807747, 0.043269213289022446, 0.3194940984249115, -0.22320091724395752, 0.030400361865758896, 0.005329974461346865, 0.06423363834619522, 0.030156787484884262, 0.1555192917585373, 0.5436643958091736, -0.19784757494926453, 0.19651731848716736, -0.14850851893424988, -0.23546606302261353, -0.007741809356957674, 0.06844191253185272, -0.3218483626842499, 0.07231281697750092, 1.2113654613494873, -0.005452822428196669, 0.01245160959661007, -0.03441869467496872]} +{"t": 10.1286, "q": [-0.15602800250053406, 0.004743408877402544, 0.019886964932084084, 0.317661851644516, -0.1596699357032776, -0.0016724428860470653, -0.10705140233039856, -0.03305728733539581, 0.043282605707645416, 0.3194515109062195, -0.22320091724395752, 0.030400361865758896, 0.005263015162199736, 0.0642412081360817, 0.030151760205626488, 0.15725700557231903, 0.5495366454124451, -0.20262928307056427, 0.20077171921730042, -0.13206616044044495, -0.23551400005817413, -0.007801730651408434, 0.06689594686031342, -0.32006269693374634, 0.07234876602888107, 1.2114014625549316, -0.005452822428196669, 0.012475578114390373, -0.03440671041607857]} +{"t": 10.1453, "q": [-0.15602800250053406, 0.004734887275844812, 0.019940532743930817, 0.31763628125190735, -0.1596742421388626, -0.001679489971138537, -0.1070343628525734, -0.03309137374162674, 0.04332278296351433, 0.3194088935852051, -0.22320091724395752, 0.030400361865758896, 0.005062136333435774, 0.06422606855630875, 0.030161814764142036, 0.1591864675283432, 0.5539228916168213, -0.20540961623191833, 0.20382770895957947, -0.11551594734191895, -0.23558589816093445, -0.007933557033538818, 0.06533799320459366, -0.31856468319892883, 0.07237273454666138, 1.211377501487732, -0.005476790945976973, 0.012391689233481884, -0.034394726157188416]} +{"t": 10.162, "q": [-0.15604503452777863, 0.004666709806770086, 0.019927140325307846, 0.3176107108592987, -0.1596827507019043, -0.0016654095379635692, -0.1070343628525734, -0.03309137374162674, 0.04329599812626839, 0.31937479972839355, -0.22320523858070374, 0.030407564714550972, 0.005263015162199736, 0.06424877792596817, 0.030146731063723564, 0.1598575860261917, 0.5581892728805542, -0.2088850438594818, 0.20814202725887299, -0.09894176572561264, -0.23595741391181946, -0.00794554129242897, 0.06429536640644073, -0.3175220489501953, 0.07237273454666138, 1.2113535404205322, -0.005476790945976973, 0.01242764201015234, -0.034394726157188416]} +{"t": 10.1788, "q": [-0.1560620814561844, 0.0045900107361376286, 0.019900357350707054, 0.3176021873950958, -0.1596827507019043, -0.0016654095379635692, -0.10701731592416763, -0.03313398361206055, 0.043255824595689774, 0.31937479972839355, -0.22320523858070374, 0.030407564714550972, 0.005450501572340727, 0.06424877792596817, 0.030146731063723564, 0.15991750359535217, 0.5621440410614014, -0.2130795270204544, 0.21312746405601501, -0.08299075812101364, -0.23598137497901917, -0.00794554129242897, 0.06372012197971344, -0.31646743416786194, 0.07237273454666138, 1.2113654613494873, -0.005476790945976973, 0.012439625337719917, -0.034394726157188416]} +{"t": 10.1956, "q": [-0.1560535579919815, 0.004581489134579897, 0.019940532743930817, 0.3175766170024872, -0.1596827507019043, -0.0016654095379635692, -0.10701731592416763, -0.03313398361206055, 0.043255824595689774, 0.3193662762641907, -0.22320523858070374, 0.030407564714550972, 0.0055442447774112225, 0.06423363834619522, 0.030156787484884262, 0.15989352762699127, 0.5658112168312073, -0.21693845093250275, 0.21726201474666595, -0.07063502073287964, -0.23602931201457977, -0.007993478327989578, 0.06334861367940903, -0.31571242213249207, 0.07237273454666138, 1.2113056182861328, -0.005440838169306517, 0.012415657751262188, -0.03441869467496872]} +{"t": 10.2123, "q": [-0.15608765184879303, 0.004572966601699591, 0.019900357350707054, 0.31754255294799805, -0.1596827507019043, -0.0016654095379635692, -0.10700879245996475, -0.03315103054046631, 0.04322903975844383, 0.31933218240737915, -0.22320939600467682, 0.03040044754743576, 0.005664771888405085, 0.06421849876642227, 0.03016684390604496, 0.1598336100578308, 0.5683398842811584, -0.21958695352077484, 0.2203179895877838, -0.05823135003447533, -0.2361970990896225, -0.008101336658000946, 0.06304901093244553, -0.3151971101760864, 0.07234876602888107, 1.2113415002822876, -0.005440838169306517, 0.01242764201015234, -0.03440671041607857]} +{"t": 10.2291, "q": [-0.15608765184879303, 0.004598533269017935, 0.01984678953886032, 0.3175510764122009, -0.1596827507019043, -0.0016654095379635692, -0.10696618258953094, -0.03315955027937889, 0.04314868897199631, 0.31928956508636475, -0.22320091724395752, 0.030400361865758896, 0.006294190883636475, 0.06419579684734344, 0.030181925743818283, 0.1598336100578308, 0.5688312649726868, -0.21988657116889954, 0.2221156358718872, -0.04767324775457382, -0.23667646944522858, -0.008113320916891098, 0.06294114887714386, -0.31483757495880127, 0.07234876602888107, 1.2113415002822876, -0.005440838169306517, 0.01245160959661007, -0.034382741898298264]} +{"t": 10.2458, "q": [-0.15613877773284912, 0.004581489134579897, 0.019753046333789825, 0.3175510764122009, -0.1596827507019043, -0.0016654095379635692, -0.10696618258953094, -0.03315955027937889, 0.043081726878881454, 0.3192555010318756, -0.22320540249347687, 0.030421903356909752, 0.007044136989861727, 0.06418846547603607, 0.030168013647198677, 0.15955796837806702, 0.5686874389648438, -0.22000640630722046, 0.22382937371730804, -0.03936817869544029, -0.2374434620141983, -0.008113320916891098, 0.0628812313079834, -0.31458592414855957, 0.07232479751110077, 1.2113654613494873, -0.005464806687086821, 0.01245160959661007, -0.03440671041607857]} +{"t": 10.2625, "q": [-0.15613877773284912, 0.004530355799943209, 0.019699478521943092, 0.3175595998764038, -0.15967850387096405, -0.001672449754551053, -0.10695765912532806, -0.03315955027937889, 0.04304155334830284, 0.31919583678245544, -0.22320955991744995, 0.030414767563343048, 0.007753907702863216, 0.06419603526592255, 0.030162986367940903, 0.15933027863502502, 0.5684956908226013, -0.21998244524002075, 0.2257348597049713, -0.032345425337553024, -0.23819845914840698, -0.00814927276223898, 0.06265352666378021, -0.3143102824687958, 0.07234876602888107, 1.2114014625549316, -0.005464806687086821, 0.012439625337719917, -0.03441869467496872]} +{"t": 10.2793, "q": [-0.15615582466125488, 0.004530355799943209, 0.019605735316872597, 0.31754255294799805, -0.15968705713748932, -0.0016724566230550408, -0.10694914311170578, -0.033176593482494354, 0.04300137609243393, 0.31918731331825256, -0.22320955991744995, 0.030414767563343048, 0.008209232240915298, 0.06419603526592255, 0.030162986367940903, 0.15927034616470337, 0.5681840777397156, -0.21991053223609924, 0.22799988090991974, -0.026269420981407166, -0.23880966007709503, -0.008173241280019283, 0.06227003410458565, -0.3139267861843109, 0.07237273454666138, 1.2114014625549316, -0.005476790945976973, 0.01242764201015234, -0.03444266319274902]} +{"t": 10.2961, "q": [-0.15613025426864624, 0.004547399934381247, 0.019565559923648834, 0.31754255294799805, -0.1596827507019043, -0.0016654095379635692, -0.1069406196475029, -0.03315955027937889, 0.042934417724609375, 0.3191787898540497, -0.22320955991744995, 0.030414767563343048, 0.008517245762050152, 0.06419603526592255, 0.030162986367940903, 0.1592104285955429, 0.5675369501113892, -0.219574972987175, 0.23002521693706512, -0.023513050749897957, -0.23900140821933746, -0.008197209797799587, 0.06174272671341896, -0.3133755028247833, 0.07237273454666138, 1.2114254236221313, -0.005464806687086821, 0.012439625337719917, -0.03443067893385887]} +{"t": 10.3129, "q": [-0.15613877773284912, 0.0045900107361376286, 0.019552167505025864, 0.31753402948379517, -0.15968705713748932, -0.0016724566230550408, -0.10692357271909714, -0.03313398361206055, 0.04289424046874046, 0.31918731331825256, -0.22320091724395752, 0.030400361865758896, 0.008570813573896885, 0.06419603526592255, 0.030162986367940903, 0.1583355814218521, 0.5665302872657776, -0.21946711838245392, 0.23183484375476837, -0.021883195266127586, -0.23987625539302826, -0.00820919405668974, 0.061059627681970596, -0.31280025839805603, 0.07237273454666138, 1.2114254236221313, -0.005464806687086821, 0.012463593855500221, -0.03443067893385887]} +{"t": 10.3298, "q": [-0.15613025426864624, 0.0046326215378940105, 0.0195119921118021, 0.31753402948379517, -0.15968705713748932, -0.0016724566230550408, -0.10691504925489426, -0.033116940408945084, 0.042907632887363434, 0.31919583678245544, -0.2232050746679306, 0.030393244698643684, 0.008530637249350548, 0.06419603526592255, 0.030162986367940903, 0.15640611946582794, 0.5624316930770874, -0.21659089624881744, 0.2341477870941162, -0.021799305453896523, -0.2410626858472824, -0.008185225538909435, 0.060376524925231934, -0.31202128529548645, 0.07237273454666138, 1.2114254236221313, -0.005476790945976973, 0.012439625337719917, -0.034454647451639175]} +{"t": 10.3465, "q": [-0.156147301197052, 0.004649665672332048, 0.01947181671857834, 0.31754255294799805, -0.1596827507019043, -0.0016654095379635692, -0.10681279003620148, -0.0331084169447422, 0.04285406693816185, 0.3191702663898468, -0.22321787476539612, 0.030400533229112625, 0.00866455677896738, 0.06418857723474503, 0.030158543959259987, 0.15378157794475555, 0.5563915967941284, -0.21315142512321472, 0.23498669266700745, -0.02412424609065056, -0.243183895945549, -0.008221178315579891, 0.05998104810714722, -0.3111584186553955, 0.07234876602888107, 1.2114254236221313, -0.0054887752048671246, 0.012439625337719917, -0.034454647451639175]} +{"t": 10.3632, "q": [-0.15613025426864624, 0.004624099005013704, 0.019351288676261902, 0.3175510764122009, -0.15967844426631927, -0.0016583624528720975, -0.10677017271518707, -0.033074330538511276, 0.04273353889584541, 0.3191787898540497, -0.22321753203868866, 0.03037189319729805, 0.009039529599249363, 0.0641661062836647, 0.03015468642115593, 0.15061774849891663, 0.550207793712616, -0.20953220129013062, 0.23549002408981323, -0.027875307947397232, -0.24393890798091888, -0.008245146833360195, 0.0598612055182457, -0.31029555201530457, 0.07232479751110077, 1.2114373445510864, -0.005476790945976973, 0.01245160959661007, -0.03444266319274902]} +{"t": 10.38, "q": [-0.15613877773284912, 0.0045900107361376286, 0.01932450570166111, 0.3175681233406067, -0.1596827507019043, -0.0016654095379635692, -0.10676165670156479, -0.033125463873147964, 0.0426933616399765, 0.3192043602466583, -0.22322186827659607, 0.030379096046090126, 0.009200232103466988, 0.06417367607355118, 0.030149659141898155, 0.14841264486312866, 0.5439759492874146, -0.20452278852462769, 0.23578962683677673, -0.031087080016732216, -0.24410668015480042, -0.008245146833360195, 0.05974136292934418, -0.30930086970329285, 0.07234876602888107, 1.2114373445510864, -0.005464806687086821, 0.012439625337719917, -0.034454647451639175]} +{"t": 10.3967, "q": [-0.156147301197052, 0.004572966601699591, 0.019351288676261902, 0.3175766170024872, -0.1596827507019043, -0.0016654095379635692, -0.10677869617938995, -0.03309989720582962, 0.042787104845047, 0.31918731331825256, -0.22322618961334229, 0.030386298894882202, 0.009160056710243225, 0.06415853649377823, 0.030159713700413704, 0.1465071588754654, 0.5364618301391602, -0.1976797878742218, 0.23598137497901917, -0.036444030702114105, -0.24437034130096436, -0.008257131092250347, 0.059537630528211594, -0.30810245871543884, 0.07228884845972061, 1.2114373445510864, -0.005476790945976973, 0.012439625337719917, -0.03444266319274902]} +{"t": 10.4135, "q": [-0.15616434812545776, 0.004572966601699591, 0.019351288676261902, 0.3176107108592987, -0.1596827507019043, -0.0016654095379635692, -0.10673608630895615, -0.03313398361206055, 0.04273353889584541, 0.31924697756767273, -0.22321753203868866, 0.03037189319729805, 0.009173448197543621, 0.06415877491235733, 0.030140774324536324, 0.14423015713691711, 0.5290076732635498, -0.1919153779745102, 0.23604130744934082, -0.042088598012924194, -0.24480177462100983, -0.008233162574470043, 0.05951366201043129, -0.30670028924942017, 0.07226487994194031, 1.2114853858947754, -0.0055007594637572765, 0.012439625337719917, -0.034454647451639175]} +{"t": 10.4303, "q": [-0.15613877773284912, 0.004555922467261553, 0.01929772086441517, 0.3176533281803131, -0.1596827507019043, -0.0016654095379635692, -0.10665086656808853, -0.033116940408945084, 0.04270675405859947, 0.3192640244960785, -0.22322584688663483, 0.030357658863067627, 0.009414502419531345, 0.06413619220256805, 0.030146390199661255, 0.14100639522075653, 0.5216853022575378, -0.18781678378582, 0.23611320555210114, -0.04878778010606766, -0.24522121250629425, -0.008245146833360195, 0.0595855675637722, -0.30510640144348145, 0.07224091142416, 1.2114853858947754, -0.005476790945976973, 0.01242764201015234, -0.03446663171052933]} +{"t": 10.447, "q": [-0.15618139505386353, 0.004555922467261553, 0.019270937889814377, 0.31767037510871887, -0.15968705713748932, -0.0016724566230550408, -0.10663381963968277, -0.03313398361206055, 0.04267997294664383, 0.31928956508636475, -0.22322168946266174, 0.03036477603018284, 0.009749299846589565, 0.06412862241268158, 0.03015141747891903, 0.13785454630851746, 0.5138116478919983, -0.18247181177139282, 0.2361970990896225, -0.05409679189324379, -0.24596424400806427, -0.008293083868920803, 0.0595615990459919, -0.303572416305542, 0.07222892343997955, 1.2115333080291748, -0.005440838169306517, 0.012463593855500221, -0.034454647451639175]} +{"t": 10.4638, "q": [-0.15622399747371674, 0.004504790063947439, 0.019230762496590614, 0.31767037510871887, -0.15968285501003265, -0.0016935841413214803, -0.10662530362606049, -0.03313398361206055, 0.04266658052802086, 0.3193151354789734, -0.22322168946266174, 0.03036477603018284, 0.010218016803264618, 0.06412116438150406, 0.030146975070238113, 0.13511015474796295, 0.5055065751075745, -0.17602430284023285, 0.23607724905014038, -0.06132328137755394, -0.2470548003911972, -0.008245146833360195, 0.059597551822662354, -0.3021942377090454, 0.07218098640441895, 1.2115931510925293, -0.0054887752048671246, 0.01242764201015234, -0.034454647451639175]} +{"t": 10.4805, "q": [-0.15622399747371674, 0.004462179262191057, 0.019070059061050415, 0.3177470862865448, -0.1596827507019043, -0.0016654095379635692, -0.10649746656417847, -0.033176593482494354, 0.042438916862010956, 0.3194344639778137, -0.22322584688663483, 0.030357658863067627, 0.010981354862451553, 0.06412886083126068, 0.03013247810304165, 0.13146695494651794, 0.496602326631546, -0.16936106979846954, 0.2359693944454193, -0.06967628747224808, -0.24900823831558228, -0.008317052386701107, 0.05962152034044266, -0.30066025257110596, 0.07216900587081909, 1.211677074432373, -0.005476790945976973, 0.012439625337719917, -0.03443067893385887]} +{"t": 10.4972, "q": [-0.15622399747371674, 0.004462179262191057, 0.018949532881379128, 0.3178834319114685, -0.1596827507019043, -0.0016654095379635692, -0.10640372335910797, -0.033176593482494354, 0.04231838881969452, 0.31947705149650574, -0.22321338951587677, 0.03037901036441326, 0.011731300503015518, 0.06411395967006683, 0.030123593285679817, 0.12809938192367554, 0.48690709471702576, -0.16224244236946106, 0.23571772873401642, -0.07999470084905624, -0.251572847366333, -0.008305068127810955, 0.05969342589378357, -0.2993060350418091, 0.07216900587081909, 1.211737036705017, -0.0054887752048671246, 0.012415657751262188, -0.03441869467496872]} +{"t": 10.5141, "q": [-0.15618139505386353, 0.0044280909933149815, 0.018949532881379128, 0.3179686367511749, -0.15968279540538788, -0.0016794968396425247, -0.1063866838812828, -0.033176593482494354, 0.0423719584941864, 0.3195708096027374, -0.22321338951587677, 0.03037901036441326, 0.011717909015715122, 0.06409160047769547, 0.03011026605963707, 0.1260380893945694, 0.47685232758522034, -0.15360181033611298, 0.2344713658094406, -0.0896899402141571, -0.2548445463180542, -0.008281099610030651, 0.059789299964904785, -0.2982753813266754, 0.07215701788663864, 1.2119526863098145, -0.005452822428196669, 0.012439625337719917, -0.034382741898298264]} +{"t": 10.5308, "q": [-0.156147301197052, 0.004402524325996637, 0.019043276086449623, 0.318036824464798, -0.1596827507019043, -0.0016654095379635692, -0.10637816041707993, -0.0332021601498127, 0.0424657016992569, 0.31961342692375183, -0.22321321070194244, 0.030364690348505974, 0.011691125109791756, 0.06411454826593399, 0.030076242983341217, 0.1236652210354805, 0.46676161885261536, -0.1456802487373352, 0.23364445567131042, -0.0992773249745369, -0.25803235173225403, -0.008221178315579891, 0.05983723700046539, -0.2977480888366699, 0.07214503735303879, 1.2120006084442139, -0.0055007594637572765, 0.012439625337719917, -0.03441869467496872]} +{"t": 10.5476, "q": [-0.156147301197052, 0.004351391922682524, 0.019029883667826653, 0.318105012178421, -0.15968705713748932, -0.0016724566230550408, -0.10636963695287704, -0.033295903354883194, 0.042412132024765015, 0.3197242021560669, -0.22320905327796936, 0.030371807515621185, 0.011610773392021656, 0.06413725763559341, 0.030061159282922745, 0.1206212267279625, 0.45710232853889465, -0.1389690786600113, 0.23308119177818298, -0.10991931706666946, -0.2614119052886963, -0.008257131092250347, 0.060208749026060104, -0.29749640822410583, 0.07206114381551743, 1.212120532989502, -0.0055367122404277325, 0.012463593855500221, -0.03441869467496872]} +{"t": 10.5643, "q": [-0.15611322224140167, 0.004317303653806448, 0.019056666642427444, 0.3181646466255188, -0.15967854857444763, -0.0016865370562300086, -0.1063866838812828, -0.033304426819086075, 0.04250587522983551, 0.3198179602622986, -0.22320905327796936, 0.030371807515621185, 0.01124919205904007, 0.06414482742547989, 0.03005613200366497, 0.11775700002908707, 0.44781455397605896, -0.13109543919563293, 0.23254190385341644, -0.12102869153022766, -0.26424017548561096, -0.008245146833360195, 0.06041247770190239, -0.2974604666233063, 0.07204916328191757, 1.212348222732544, -0.0055247279815375805, 0.01245160959661007, -0.034394726157188416]} +{"t": 10.5811, "q": [-0.1560961753129959, 0.00432582525536418, 0.019070059061050415, 0.3182584047317505, -0.15968285501003265, -0.0016935841413214803, -0.1063866838812828, -0.03327886015176773, 0.04253266006708145, 0.319903165102005, -0.22320473194122314, 0.03036460466682911, 0.010901003144681454, 0.06415239721536636, 0.030051104724407196, 0.11431752145290375, 0.43865859508514404, -0.12482769042253494, 0.23219436407089233, -0.13133512437343597, -0.26564234495162964, -0.008245146833360195, 0.06065216287970543, -0.29747244715690613, 0.07200122624635696, 1.212587833404541, -0.005476790945976973, 0.012439625337719917, -0.034394726157188416]} +{"t": 10.5979, "q": [-0.15611322224140167, 0.004394001793116331, 0.019056666642427444, 0.31833508610725403, -0.15966148674488068, -0.0017006194684654474, -0.10636111348867416, -0.03325329348444939, 0.0424657016992569, 0.31997987627983093, -0.22321321070194244, 0.030364690348505974, 0.010834043845534325, 0.06411490589380264, 0.030047835782170296, 0.11039867997169495, 0.428088515996933, -0.11749334633350372, 0.23219436407089233, -0.14377474784851074, -0.2664213180541992, -0.008245146833360195, 0.06119145452976227, -0.2976282238960266, 0.0718933641910553, 1.2126957178115845, -0.005452822428196669, 0.012439625337719917, -0.03441869467496872]} +{"t": 10.6146, "q": [-0.1560620814561844, 0.004376957658678293, 0.019016491249203682, 0.3184373676776886, -0.15965718030929565, -0.0016935723833739758, -0.10637816041707993, -0.03323625028133392, 0.042452309280633926, 0.3200395107269287, -0.22320473194122314, 0.03036460466682911, 0.010619773529469967, 0.06413004547357559, 0.030037779361009598, 0.10667158663272858, 0.41745850443840027, -0.1089126393198967, 0.231750950217247, -0.1561424732208252, -0.2673680782318115, -0.008245146833360195, 0.061706773936748505, -0.2978799045085907, 0.07184542715549469, 1.2127915620803833, -0.0054887752048671246, 0.01242764201015234, -0.03444266319274902]} +{"t": 10.6314, "q": [-0.1560109555721283, 0.0043854801915585995, 0.019029883667826653, 0.318479984998703, -0.15965718030929565, -0.0016935723833739758, -0.10635259002447128, -0.0332021601498127, 0.04247909411787987, 0.32002246379852295, -0.22320905327796936, 0.030371807515621185, 0.010633165016770363, 0.06412271410226822, 0.030023867264389992, 0.10242917388677597, 0.405821830034256, -0.09956493973731995, 0.23084014654159546, -0.17019996047019958, -0.2687222957611084, -0.00820919405668974, 0.0626055896282196, -0.29811957478523254, 0.07176154106855392, 1.212803602218628, -0.005452822428196669, 0.012439625337719917, -0.03444266319274902]} +{"t": 10.6482, "q": [-0.15604503452777863, 0.004402524325996637, 0.018909357488155365, 0.3185651898384094, -0.15966148674488068, -0.0017006194684654474, -0.1062503308057785, -0.033193640410900116, 0.04239874333143234, 0.32006508111953735, -0.22320473194122314, 0.03036460466682911, 0.01092778705060482, 0.06412271410226822, 0.030023867264389992, 0.09795905649662018, 0.39465251564979553, -0.09060074388980865, 0.22970163822174072, -0.18394587934017181, -0.270927369594574, -0.008329036645591259, 0.06358829885721207, -0.29821544885635376, 0.07167764753103256, 1.212875485420227, -0.005476790945976973, 0.012475578114390373, -0.03444266319274902]} +{"t": 10.6649, "q": [-0.15604503452777863, 0.004419568460434675, 0.01882900483906269, 0.3186248540878296, -0.15964442491531372, -0.0017147018807008862, -0.10622476041316986, -0.033193640410900116, 0.042278215289115906, 0.3200480341911316, -0.22320888936519623, 0.030357487499713898, 0.011409895494580269, 0.06410757452249527, 0.03003392368555069, 0.09280584007501602, 0.381577730178833, -0.07829294353723526, 0.22826354205608368, -0.19843479990959167, -0.27387550473213196, -0.008221178315579891, 0.06449910253286362, -0.298311322927475, 0.0716177299618721, 1.212875485420227, -0.005452822428196669, 0.012439625337719917, -0.03443067893385887]} +{"t": 10.6817, "q": [-0.15608765184879303, 0.004445135127753019, 0.018721869215369225, 0.3187185823917389, -0.1596401184797287, -0.0017076459480449557, -0.10621623694896698, -0.03315103054046631, 0.04215768724679947, 0.3200395107269287, -0.22320888936519623, 0.030357487499713898, 0.011758084408938885, 0.06408510357141495, 0.03003006801009178, 0.08808405697345734, 0.3697972297668457, -0.06594919413328171, 0.22712503373622894, -0.21316342055797577, -0.2772790193557739, -0.008233162574470043, 0.06495450437068939, -0.29828736186027527, 0.07158178091049194, 1.2132829427719116, -0.0055486964993178844, 0.012439625337719917, -0.03444266319274902]} +{"t": 10.6984, "q": [-0.1560535579919815, 0.004470700863748789, 0.018735261633992195, 0.3187015652656555, -0.15963156521320343, -0.0017076391959562898, -0.10623328387737274, -0.03315103054046631, 0.04219786450266838, 0.32002246379852295, -0.22321321070194244, 0.030364690348505974, 0.011704516597092152, 0.06410781294107437, 0.03001498430967331, 0.08433299511671066, 0.3592391312122345, -0.055031564086675644, 0.2259386032819748, -0.22834742069244385, -0.2815813422203064, -0.008161257021129131, 0.06501442193984985, -0.29828736186027527, 0.07152185589075089, 1.2134387493133545, -0.0054887752048671246, 0.012475578114390373, -0.03443067893385887]} +{"t": 10.7151, "q": [-0.15600243210792542, 0.004487745929509401, 0.01881561428308487, 0.318710058927536, -0.15964442491531372, -0.0017147018807008862, -0.1062503308057785, -0.03313398361206055, 0.04234517365694046, 0.32001397013664246, -0.22320473194122314, 0.03036460466682911, 0.01132954377681017, 0.06412271410226822, 0.030023867264389992, 0.08137288689613342, 0.34906452894210815, -0.044018059968948364, 0.22466826438903809, -0.24113459885120392, -0.28504478931427, -0.00820919405668974, 0.06494251638650894, -0.2982753813266754, 0.07133010774850845, 1.2134507894515991, -0.005452822428196669, 0.01245160959661007, -0.03446663171052933]} +{"t": 10.7319, "q": [-0.15601947903633118, 0.004487745929509401, 0.01884239725768566, 0.318667471408844, -0.15964868664741516, -0.0017076528165489435, -0.1062503308057785, -0.03314250707626343, 0.04231838881969452, 0.32001397013664246, -0.22320473194122314, 0.03036460466682911, 0.010941178537905216, 0.06413785368204117, 0.030013812705874443, 0.07840079814195633, 0.3387221395969391, -0.03299257159233093, 0.22272682189941406, -0.2551921010017395, -0.28671059012413025, -0.008077368140220642, 0.06496648490428925, -0.29821544885635376, 0.07121026515960693, 1.2134507894515991, -0.005476790945976973, 0.01245160959661007, -0.034454647451639175]} +{"t": 10.7486, "q": [-0.1560620814561844, 0.004513311665505171, 0.0188022218644619, 0.3186248540878296, -0.159652978181839, -0.0017146999016404152, -0.1062503308057785, -0.0331084169447422, 0.04230500012636185, 0.32002246379852295, -0.22320888936519623, 0.030357487499713898, 0.010726908221840858, 0.06412271410226822, 0.030023867264389992, 0.07627959549427032, 0.32969802618026733, -0.023393208160996437, 0.2200423628091812, -0.26850655674934387, -0.2869742512702942, -0.00806538388133049, 0.06499045342206955, -0.2981315851211548, 0.07111439108848572, 1.2134747505187988, -0.005452822428196669, 0.012475578114390373, -0.03444266319274902]} +{"t": 10.7654, "q": [-0.1560620814561844, 0.004521834198385477, 0.01882900483906269, 0.31860780715942383, -0.15964868664741516, -0.0017076528165489435, -0.10625884681940079, -0.03308285027742386, 0.04235856607556343, 0.3200054466724396, -0.22321321070194244, 0.030364690348505974, 0.010499246418476105, 0.06412271410226822, 0.030023867264389992, 0.07415838539600372, 0.32126113772392273, -0.014980281703174114, 0.2175736129283905, -0.28249216079711914, -0.28705814480781555, -0.008041415363550186, 0.06505037099123001, -0.2979757785797119, 0.0710424855351448, 1.2134747505187988, -0.005476790945976973, 0.012439625337719917, -0.034454647451639175]} +{"t": 10.7821, "q": [-0.15607060492038727, 0.004513311665505171, 0.018855789676308632, 0.3185737133026123, -0.159652978181839, -0.0017146999016404152, -0.10627589374780655, -0.033116940408945084, 0.04235856607556343, 0.31997135281562805, -0.22320905327796936, 0.030371807515621185, 0.010459070093929768, 0.06412271410226822, 0.030023867264389992, 0.07198923826217651, 0.31271636486053467, -0.00711862975731492, 0.21583589911460876, -0.29569876194000244, -0.2869502902030945, -0.008041415363550186, 0.06513426452875137, -0.29791584610939026, 0.07091066241264343, 1.213546633720398, -0.0055127437226474285, 0.01245160959661007, -0.03444266319274902]} +{"t": 10.7988, "q": [-0.15607060492038727, 0.004504790063947439, 0.018855789676308632, 0.31854814291000366, -0.15964868664741516, -0.0017076528165489435, -0.10630998015403748, -0.03313398361206055, 0.04235856607556343, 0.31996282935142517, -0.22320888936519623, 0.030357487499713898, 0.01024479977786541, 0.06412271410226822, 0.030023867264389992, 0.07015565782785416, 0.30420756340026855, 0.0012104067718610168, 0.214457705616951, -0.30837807059288025, -0.28696227073669434, -0.007981494069099426, 0.06503839045763016, -0.29786792397499084, 0.07085073739290237, 1.213546633720398, -0.0055007594637572765, 0.01245160959661007, -0.03443067893385887]} +{"t": 10.8156, "q": [-0.15604503452777863, 0.004479223396629095, 0.018949532881379128, 0.31854814291000366, -0.15964007377624512, -0.0016935499152168632, -0.10630998015403748, -0.03315103054046631, 0.042425524443387985, 0.3199457824230194, -0.22320888936519623, 0.030357487499713898, 0.010084097273647785, 0.06412271410226822, 0.030023867264389992, 0.0683220699429512, 0.29549503326416016, 0.008388957940042019, 0.2130555510520935, -0.32400551438331604, -0.2869502902030945, -0.007909588515758514, 0.06496648490428925, -0.29766419529914856, 0.0707428827881813, 1.213546633720398, -0.005476790945976973, 0.01245160959661007, -0.03444266319274902]} +{"t": 10.8323, "q": [-0.15602800250053406, 0.004470700863748789, 0.01896292343735695, 0.3185651898384094, -0.15965287387371063, -0.001686516567133367, -0.10630998015403748, -0.033176593482494354, 0.0424657016992569, 0.31997135281562805, -0.22320888936519623, 0.030357487499713898, 0.009963570162653923, 0.06412271410226822, 0.030023867264389992, 0.06689594686031342, 0.2875974476337433, 0.014884407632052898, 0.21136577427387238, -0.3369964063167572, -0.2869143486022949, -0.007861651480197906, 0.06479870527982712, -0.2975083887577057, 0.07061105221509933, 1.2135345935821533, -0.005476790945976973, 0.01245160959661007, -0.03443067893385887]} +{"t": 10.8491, "q": [-0.15603651106357574, 0.004453656729310751, 0.01900310069322586, 0.3185651898384094, -0.1596485674381256, -0.0016794694820418954, -0.10631850361824036, -0.033176593482494354, 0.04249248653650284, 0.31992021203041077, -0.22320888936519623, 0.030357487499713898, 0.009856435470283031, 0.06412271410226822, 0.030023867264389992, 0.06582935154438019, 0.27977174520492554, 0.020612867549061775, 0.2105628401041031, -0.34973564743995667, -0.286878377199173, -0.007801730651408434, 0.06475076824426651, -0.2973765730857849, 0.07043129205703735, 1.2134627103805542, -0.005452822428196669, 0.012439625337719917, -0.034454647451639175]} +{"t": 10.8657, "q": [-0.15603651106357574, 0.004419568460434675, 0.019043276086449623, 0.3185822367668152, -0.15964432060718536, -0.0016865096986293793, -0.10630998015403748, -0.03321068361401558, 0.04249248653650284, 0.3199457824230194, -0.22320888936519623, 0.030357487499713898, 0.009869826957583427, 0.06412271410226822, 0.030023867264389992, 0.06464291363954544, 0.2711670696735382, 0.026149580255150795, 0.21013140678405762, -0.36464402079582214, -0.2865188717842102, -0.007729825098067522, 0.06479870527982712, -0.29726871848106384, 0.07023954391479492, 1.2134627103805542, -0.0055007594637572765, 0.01242764201015234, -0.03441869467496872]} +{"t": 10.8825, "q": [-0.15604503452777863, 0.0043854801915585995, 0.019016491249203682, 0.31860780715942383, -0.15963581204414368, -0.0017005989793688059, -0.1063014566898346, -0.03323625028133392, 0.0424657016992569, 0.31996282935142517, -0.22320473194122314, 0.03036460466682911, 0.00991000235080719, 0.06412271410226822, 0.030023867264389992, 0.06342051923274994, 0.26396453380584717, 0.029049761593341827, 0.21007148921489716, -0.3767840266227722, -0.2863750457763672, -0.007430219557136297, 0.06481069326400757, -0.2970529794692993, 0.0701436698436737, 1.2134987115859985, -0.0055007594637572765, 0.01245160959661007, -0.03443067893385887]} +{"t": 10.8992, "q": [-0.15604503452777863, 0.004394001793116331, 0.019056666642427444, 0.3186163306236267, -0.15964007377624512, -0.0016935499152168632, -0.1063014566898346, -0.03327034041285515, 0.04253266006708145, 0.3199543058872223, -0.22321321070194244, 0.030364690348505974, 0.009843043051660061, 0.06411514431238174, 0.030028896406292915, 0.06240186095237732, 0.2559710741043091, 0.03304050862789154, 0.20935243368148804, -0.3915126621723175, -0.2862432301044464, -0.007298393175005913, 0.06475076824426651, -0.29681330919265747, 0.0700717642903328, 1.2134387493133545, -0.005560680292546749, 0.01245160959661007, -0.03444266319274902]} +{"t": 10.916, "q": [-0.1560535579919815, 0.004376957658678293, 0.019070059061050415, 0.31863337755203247, -0.15963585674762726, -0.0017146862810477614, -0.10630998015403748, -0.03327034041285515, 0.04257283732295036, 0.3199883997440338, -0.22321321070194244, 0.030364690348505974, 0.009776083752512932, 0.0641002431511879, 0.030020011588931084, 0.06127534434199333, 0.24723456799983978, 0.03747467324137688, 0.20835773646831512, -0.40567800402641296, -0.2861713171005249, -0.0071066454984247684, 0.06464291363954544, -0.2965856194496155, 0.0700717642903328, 1.2134268283843994, -0.0054887752048671246, 0.01245160959661007, -0.034454647451639175]} +{"t": 10.9327, "q": [-0.15601947903633118, 0.0043428693898022175, 0.019070059061050415, 0.31869304180145264, -0.15964873135089874, -0.001721748849377036, -0.10628441721200943, -0.03328738361597061, 0.04253266006708145, 0.32001397013664246, -0.22320888936519623, 0.030357487499713898, 0.009749299846589565, 0.06413785368204117, 0.030013812705874443, 0.06042446196079254, 0.23931299149990082, 0.04081827029585838, 0.2073630541563034, -0.4176981747150421, -0.28595560789108276, -0.006998787634074688, 0.06469085067510605, -0.29625004529953003, 0.07005978375673294, 1.2134147882461548, -0.0055367122404277325, 0.012463593855500221, -0.034454647451639175]} +{"t": 10.9494, "q": [-0.15598538517951965, 0.004351391922682524, 0.019096843898296356, 0.31874415278434753, -0.15964868664741516, -0.0017076528165489435, -0.10628441721200943, -0.03328738361597061, 0.04254605248570442, 0.32001397013664246, -0.22320905327796936, 0.030371807515621185, 0.009789476171135902, 0.06414542347192764, 0.03000878356397152, 0.05989715829491615, 0.23092404007911682, 0.044868938624858856, 0.20572121441364288, -0.43119242787361145, -0.2857998013496399, -0.0068789455108344555, 0.06463092565536499, -0.2959024906158447, 0.07005978375673294, 1.2134147882461548, -0.0055127437226474285, 0.01245160959661007, -0.03443067893385887]} +{"t": 10.9661, "q": [-0.15593425929546356, 0.004359913524240255, 0.019110234454274178, 0.3188464343547821, -0.15963156521320343, -0.0017076391959562898, -0.10627589374780655, -0.03328738361597061, 0.04253266006708145, 0.320090651512146, -0.22320057451725006, 0.03037172183394432, 0.009749299846589565, 0.06416056305170059, 0.02999872900545597, 0.05899834260344505, 0.2239132672548294, 0.046954195946455, 0.20448683202266693, -0.4429369568824768, -0.2856679856777191, -0.006771087180823088, 0.06460695713758469, -0.2954590916633606, 0.07002382725477219, 1.2134147882461548, -0.005452822428196669, 0.01245160959661007, -0.03444266319274902]} +{"t": 10.9829, "q": [-0.155959814786911, 0.0043854801915585995, 0.019056666642427444, 0.3188890516757965, -0.15963585674762726, -0.0017146862810477614, -0.10629294067621231, -0.03326181694865227, 0.04253266006708145, 0.3201417922973633, -0.22320888936519623, 0.030357487499713898, 0.009802867658436298, 0.06415299326181412, 0.030003756284713745, 0.058279287070035934, 0.21644708514213562, 0.04840428754687309, 0.2022218108177185, -0.4539265036582947, -0.2856200337409973, -0.006687197834253311, 0.06454703956842422, -0.2947160601615906, 0.06991597265005112, 1.2133787870407104, -0.0055127437226474285, 0.012475578114390373, -0.03443067893385887]} +{"t": 10.9996, "q": [-0.1559683382511139, 0.004394001793116331, 0.019070059061050415, 0.31891459226608276, -0.159631609916687, -0.0017217264976352453, -0.10627589374780655, -0.03326181694865227, 0.04253266006708145, 0.32015883922576904, -0.22320041060447693, 0.030357401818037033, 0.009789476171135902, 0.06416813284158707, 0.029993701726198196, 0.057728011161088943, 0.20962806046009064, 0.04953080415725708, 0.1994534581899643, -0.46514374017715454, -0.2855721116065979, -0.006591323763132095, 0.06451108306646347, -0.2939131259918213, 0.06988001614809036, 1.213390827178955, -0.0055007594637572765, 0.01245160959661007, -0.034454647451639175]} +{"t": 11.0163, "q": [-0.15594276785850525, 0.0044280909933149815, 0.019070059061050415, 0.3189913034439087, -0.159627303481102, -0.0017146794125437737, -0.10627589374780655, -0.03323625028133392, 0.04253266006708145, 0.3201758861541748, -0.2232087254524231, 0.03034316748380661, 0.009802867658436298, 0.06417570263147354, 0.029988672584295273, 0.05722467601299286, 0.20354008674621582, 0.0499502494931221, 0.19697272777557373, -0.47602540254592896, -0.2855241596698761, -0.006567355245351791, 0.06454703956842422, -0.29314613342285156, 0.06988001614809036, 1.2133668661117554, -0.0054887752048671246, 0.012463593855500221, -0.03446663171052933]} +{"t": 11.0331, "q": [-0.15595129132270813, 0.004419568460434675, 0.019056666642427444, 0.31905096769332886, -0.1596187949180603, -0.0017287686932832003, -0.10627589374780655, -0.03323625028133392, 0.04253266006708145, 0.32025256752967834, -0.2231960892677307, 0.030350198969244957, 0.009789476171135902, 0.06416837126016617, 0.029974760487675667, 0.056265939027071, 0.19660121202468872, 0.05099288001656532, 0.19516310095787048, -0.4857925474643707, -0.2854522466659546, -0.006543387193232775, 0.06454703956842422, -0.2922353446483612, 0.0698440670967102, 1.2133548259735107, -0.0054887752048671246, 0.012463593855500221, -0.034454647451639175]} +{"t": 11.0499, "q": [-0.15590868890285492, 0.004419568460434675, 0.019070059061050415, 0.31915321946144104, -0.1596059948205948, -0.0017358020413666964, -0.10624180734157562, -0.03322772681713104, 0.04253266006708145, 0.32033780217170715, -0.2231960892677307, 0.030350198969244957, 0.009776083752512932, 0.06421355158090591, 0.029963534325361252, 0.05505553260445595, 0.1897941678762436, 0.05301821231842041, 0.19304190576076508, -0.4971056580543518, -0.28533241152763367, -0.006471481639891863, 0.06446314603090286, -0.29137247800827026, 0.06988001614809036, 1.2133548259735107, -0.0055007594637572765, 0.012463593855500221, -0.034454647451639175]} +{"t": 11.0667, "q": [-0.15590016543865204, 0.0044280909933149815, 0.019083451479673386, 0.31918731331825256, -0.15961019694805145, -0.001714674523100257, -0.10626737028360367, -0.03322772681713104, 0.04255944490432739, 0.3203633725643158, -0.22320456802845, 0.03035028465092182, 0.009749299846589565, 0.06422112137079239, 0.029958507046103477, 0.05368933081626892, 0.1832507848739624, 0.05471997335553169, 0.19045330584049225, -0.5066691040992737, -0.2852725088596344, -0.006471481639891863, 0.06452307105064392, -0.2905096113681793, 0.06988001614809036, 1.2132829427719116, -0.005452822428196669, 0.01245160959661007, -0.034454647451639175]} +{"t": 11.0834, "q": [-0.1559172123670578, 0.004445135127753019, 0.019043276086449623, 0.3192128837108612, -0.15959744155406952, -0.0017357951728627086, -0.10623328387737274, -0.03321920707821846, 0.04253266006708145, 0.32043153047561646, -0.2231960892677307, 0.030350198969244957, 0.009789476171135902, 0.06424382328987122, 0.029943423345685005, 0.05235908180475235, 0.17643176019191742, 0.055942364037036896, 0.18784074485301971, -0.5185933709144592, -0.2853443920612335, -0.006435528863221407, 0.06434330344200134, -0.2895148992538452, 0.06986803561449051, 1.2132470607757568, -0.0054887752048671246, 0.012463593855500221, -0.034454647451639175]} +{"t": 11.1002, "q": [-0.15590868890285492, 0.004445135127753019, 0.019029883667826653, 0.31923845410346985, -0.15958893299102783, -0.0017498844536021352, -0.10622476041316986, -0.03323625028133392, 0.04251926764845848, 0.32048267126083374, -0.2232002466917038, 0.030343081802129745, 0.00992339476943016, 0.06423625349998474, 0.02994845062494278, 0.05068128928542137, 0.1702958345413208, 0.05777594819664955, 0.1856476366519928, -0.5280848741531372, -0.28538036346435547, -0.006387591827660799, 0.06416354328393936, -0.2885441780090332, 0.06986803561449051, 1.213163137435913, -0.005452822428196669, 0.012463593855500221, -0.034454647451639175]} +{"t": 11.1169, "q": [-0.15588311851024628, 0.0044280909933149815, 0.019029883667826653, 0.3192555010318756, -0.15958893299102783, -0.0017498844536021352, -0.10622476041316986, -0.03323625028133392, 0.04251926764845848, 0.3205423355102539, -0.22320041060447693, 0.030357401818037033, 0.009869826957583427, 0.06423649191856384, 0.0299295112490654, 0.049327071756124496, 0.16383634507656097, 0.059969063848257065, 0.18201641738414764, -0.5401530265808105, -0.2851526439189911, -0.006339655257761478, 0.0637560784816742, -0.2874656021595001, 0.06991597265005112, 1.2131510972976685, -0.005464806687086821, 0.012463593855500221, -0.034454647451639175]} +{"t": 11.1337, "q": [-0.15589164197444916, 0.0044280909933149815, 0.019056666642427444, 0.3192640244960785, -0.15958893299102783, -0.0017498844536021352, -0.10623328387737274, -0.0332021601498127, 0.04255944490432739, 0.32052528858184814, -0.22319193184375763, 0.03035731613636017, 0.009789476171135902, 0.06425920128822327, 0.029914427548646927, 0.04839230328798294, 0.15705327689647675, 0.06332464516162872, 0.1772586703300476, -0.5516458749771118, -0.28516465425491333, -0.0063037024810910225, 0.06339655071496964, -0.2859436273574829, 0.06988001614809036, 1.2129594087600708, -0.005476790945976973, 0.012439625337719917, -0.03447861596941948]} +{"t": 11.1504, "q": [-0.15590016543865204, 0.004402524325996637, 0.019016491249203682, 0.3192640244960785, -0.1595931351184845, -0.0017287393566220999, -0.10618215054273605, -0.033244773745536804, 0.04253266006708145, 0.3205508589744568, -0.22318777441978455, 0.03036443330347538, 0.009816259145736694, 0.06425175070762634, 0.02990998700261116, 0.04740959405899048, 0.1510971188545227, 0.06604506820440292, 0.17349563539028168, -0.5617485642433167, -0.2852964699268341, -0.006255765445530415, 0.06321679055690765, -0.2843257486820221, 0.0698200985789299, 1.2128515243530273, -0.005476790945976973, 0.01245160959661007, -0.03449060022830963]} +{"t": 11.1671, "q": [-0.15590868890285492, 0.004402524325996637, 0.01900310069322586, 0.31923845410346985, -0.1595846265554428, -0.0017428286373615265, -0.10618215054273605, -0.03323625028133392, 0.04247909411787987, 0.32052528858184814, -0.2231960892677307, 0.030350198969244957, 0.009869826957583427, 0.06426677107810974, 0.029909400269389153, 0.046918243169784546, 0.14520087838172913, 0.06846588104963303, 0.16958877444267273, -0.5710483193397522, -0.2851766347885132, -0.006231796927750111, 0.06306099146604538, -0.2823723256587982, 0.06978414207696915, 1.2128515243530273, -0.005476790945976973, 0.01245160959661007, -0.034514568746089935]} +{"t": 11.1839, "q": [-0.15592573583126068, 0.004419568460434675, 0.019016491249203682, 0.3192214071750641, -0.1595931351184845, -0.0017287393566220999, -0.1062077134847641, -0.03321920707821846, 0.04250587522983551, 0.32047414779663086, -0.2231960892677307, 0.030350198969244957, 0.009896610863506794, 0.06425920128822327, 0.029914427548646927, 0.04682236909866333, 0.14067083597183228, 0.07016763836145401, 0.16628111898899078, -0.5812588930130005, -0.2850687801837921, -0.006195844616740942, 0.06304901093244553, -0.280335009098053, 0.06978414207696915, 1.2127796411514282, -0.005452822428196669, 0.01245160959661007, -0.034514568746089935]} +{"t": 11.2009, "q": [-0.15592573583126068, 0.004445135127753019, 0.01900310069322586, 0.31918731331825256, -0.15958882868289948, -0.0017216922715306282, -0.10621623694896698, -0.03321920707821846, 0.04250587522983551, 0.32048267126083374, -0.22319625318050385, 0.030364518985152245, 0.009843043051660061, 0.06427434086799622, 0.029904372990131378, 0.04622315615415573, 0.13635651767253876, 0.071869395673275, 0.16359665989875793, -0.5910979509353638, -0.28503280878067017, -0.006171876098960638, 0.06303702294826508, -0.2782018184661865, 0.06983207911252975, 1.212803602218628, -0.0054887752048671246, 0.012439625337719917, -0.03449060022830963]} +{"t": 11.2177, "q": [-0.15590868890285492, 0.004445135127753019, 0.019029883667826653, 0.31914469599723816, -0.1595931351184845, -0.0017287393566220999, -0.10624180734157562, -0.03321920707821846, 0.04247909411787987, 0.32044005393981934, -0.22320041060447693, 0.030357401818037033, 0.009749299846589565, 0.06430438160896301, 0.029903201386332512, 0.04597148671746254, 0.13280917704105377, 0.07328353822231293, 0.1603369563817978, -0.6009489893913269, -0.28488901257514954, -0.006087986286729574, 0.06304901093244553, -0.27599671483039856, 0.0698440670967102, 1.2127796411514282, -0.0055007594637572765, 0.01245160959661007, -0.03446663171052933]} +{"t": 11.2344, "q": [-0.15592573583126068, 0.004470700863748789, 0.019029883667826653, 0.3190935552120209, -0.15959744155406952, -0.0017357951728627086, -0.10625884681940079, -0.033185116946697235, 0.04250587522983551, 0.32038041949272156, -0.22320041060447693, 0.030357401818037033, 0.009789476171135902, 0.06431195139884949, 0.02989817224442959, 0.04589958116412163, 0.12920193374156952, 0.07470966130495071, 0.1571131944656372, -0.609769344329834, -0.2848770320415497, -0.006076002027839422, 0.06309694796800613, -0.2737436592578888, 0.06989200413227081, 1.212803602218628, -0.005464806687086821, 0.01245160959661007, -0.034454647451639175]} +{"t": 11.2511, "q": [-0.15595129132270813, 0.004470700863748789, 0.01896292343735695, 0.319085031747818, -0.15960168838500977, -0.0017287549562752247, -0.1062503308057785, -0.033185116946697235, 0.04249248653650284, 0.32030370831489563, -0.22320041060447693, 0.030357401818037033, 0.009843043051660061, 0.06430438160896301, 0.029903201386332512, 0.04563593119382858, 0.12593023478984833, 0.07593204826116562, 0.1549200862646103, -0.6183620691299438, -0.28488901257514954, -0.006028065457940102, 0.06328869611024857, -0.2716224789619446, 0.06983207911252975, 1.2128275632858276, -0.0054887752048671246, 0.01245160959661007, -0.034454647451639175]} +{"t": 11.2678, "q": [-0.15595129132270813, 0.004462179262191057, 0.01897631585597992, 0.319042444229126, -0.15959744155406952, -0.0017357951728627086, -0.10628441721200943, -0.033176593482494354, 0.042452309280633926, 0.3203122317790985, -0.22320456802845, 0.03035028465092182, 0.009843043051660061, 0.06431183218955994, 0.02990764193236828, 0.045432198792696, 0.12298212200403214, 0.0770106315612793, 0.15275093913078308, -0.6270745992660522, -0.2847451865673065, -0.006004096940159798, 0.06338457018136978, -0.2695731520652771, 0.0698440670967102, 1.212815523147583, -0.005452822428196669, 0.012439625337719917, -0.03446663171052933]} +{"t": 11.2846, "q": [-0.15595129132270813, 0.004487745929509401, 0.019029883667826653, 0.31900835037231445, -0.15960168838500977, -0.0017287549562752247, -0.10626737028360367, -0.033176593482494354, 0.04253266006708145, 0.3202696144580841, -0.22319625318050385, 0.030364518985152245, 0.009802867658436298, 0.06430426239967346, 0.029912669211626053, 0.04508465528488159, 0.11984225362539291, 0.07868842035531998, 0.14998257160186768, -0.6347924470901489, -0.2846493124961853, -0.005908222869038582, 0.06327670812606812, -0.2675478160381317, 0.06980811059474945, 1.212803602218628, -0.005476790945976973, 0.012463593855500221, -0.034454647451639175]} +{"t": 11.3014, "q": [-0.15597686171531677, 0.004479223396629095, 0.019043276086449623, 0.31897425651550293, -0.15959738194942474, -0.001721699140034616, -0.10627589374780655, -0.03315955027937889, 0.04249248653650284, 0.32025256752967834, -0.22320041060447693, 0.030357401818037033, 0.009789476171135902, 0.06428924202919006, 0.02991325594484806, 0.04440155625343323, 0.1164746880531311, 0.08115717023611069, 0.1472022384405136, -0.6424503326416016, -0.2847451865673065, -0.005860286299139261, 0.06321679055690765, -0.2654985189437866, 0.06985604763031006, 1.2128275632858276, -0.005476790945976973, 0.012499546632170677, -0.03446663171052933]} +{"t": 11.3181, "q": [-0.15599390864372253, 0.004453656729310751, 0.019043276086449623, 0.3189486861228943, -0.15959307551383972, -0.0017146520549431443, -0.10627589374780655, -0.033185116946697235, 0.0424657016992569, 0.3202355206012726, -0.22320041060447693, 0.030357401818037033, 0.009789476171135902, 0.06429681181907654, 0.029908228665590286, 0.04382631182670593, 0.114053875207901, 0.08296678960323334, 0.1454046070575714, -0.6499045491218567, -0.2847212255001068, -0.005812349263578653, 0.06319282203912735, -0.2634012997150421, 0.06983207911252975, 1.212803602218628, -0.005476790945976973, 0.01242764201015234, -0.03444266319274902]} +{"t": 11.3351, "q": [-0.15598538517951965, 0.004470700863748789, 0.019029883667826653, 0.3189060688018799, -0.15961019694805145, -0.001714674523100257, -0.1063014566898346, -0.033176593482494354, 0.04250587522983551, 0.3202184736728668, -0.22319625318050385, 0.030364518985152245, 0.009722515940666199, 0.06428912281990051, 0.02992272563278675, 0.04373043775558472, 0.11261576414108276, 0.08409330993890762, 0.14425411820411682, -0.6564119458198547, -0.2845534384250641, -0.005812349263578653, 0.06304901093244553, -0.26142388582229614, 0.06983207911252975, 1.2127676010131836, -0.005476790945976973, 0.012475578114390373, -0.03446663171052933]} +{"t": 11.3518, "q": [-0.15598538517951965, 0.004487745929509401, 0.019029883667826653, 0.3188890516757965, -0.15960168838500977, -0.0017287549562752247, -0.10630998015403748, -0.033176593482494354, 0.04251926764845848, 0.3202269971370697, -0.22320041060447693, 0.030357401818037033, 0.009628772735595703, 0.06428167223930359, 0.029918283224105835, 0.04381432756781578, 0.11152520030736923, 0.0851718857884407, 0.14329537749290466, -0.6621284484863281, -0.2843257486820221, -0.005788380745798349, 0.062929168343544, -0.2597820460796356, 0.0698440670967102, 1.2127317190170288, -0.005452822428196669, 0.012463593855500221, -0.034454647451639175]} +{"t": 11.3685, "q": [-0.15598538517951965, 0.004470700863748789, 0.019043276086449623, 0.318897545337677, -0.15959744155406952, -0.0017357951728627086, -0.10631850361824036, -0.0332021601498127, 0.04250587522983551, 0.3202184736728668, -0.22320041060447693, 0.030357401818037033, 0.009628772735595703, 0.06428912281990051, 0.02992272563278675, 0.04387424886226654, 0.11049455404281616, 0.08615459501743317, 0.14186926186084747, -0.6680846214294434, -0.28401416540145874, -0.0057284594513475895, 0.0628572627902031, -0.25857165455818176, 0.06978414207696915, 1.2127196788787842, -0.005464806687086821, 0.012439625337719917, -0.03444266319274902]} +{"t": 11.3854, "q": [-0.15600243210792542, 0.004470700863748789, 0.019083451479673386, 0.318897545337677, -0.15961019694805145, -0.001714674523100257, -0.10635259002447128, -0.033193640410900116, 0.04253266006708145, 0.3202184736728668, -0.22320041060447693, 0.030357401818037033, 0.009615381248295307, 0.06428155303001404, 0.029927752912044525, 0.0439341701567173, 0.10946391522884369, 0.08710134774446487, 0.1407427340745926, -0.6713083386421204, -0.28389430046081543, -0.005716475658118725, 0.06279733777046204, -0.25792449712753296, 0.06980811059474945, 1.2127196788787842, -0.005428853910416365, 0.01245160959661007, -0.03440671041607857]} +{"t": 11.4021, "q": [-0.15600243210792542, 0.004462179262191057, 0.019096843898296356, 0.3188464343547821, -0.15960589051246643, -0.0017076187068596482, -0.10639519989490509, -0.033185116946697235, 0.04255944490432739, 0.32019293308258057, -0.22320057451725006, 0.03037172183394432, 0.009427894838154316, 0.06429645419120789, 0.029936635866761208, 0.044030044227838516, 0.10887668281793594, 0.08770056068897247, 0.14007163047790527, -0.672602653503418, -0.2837984263896942, -0.005716475658118725, 0.06267749518156052, -0.257433146238327, 0.06978414207696915, 1.2126837968826294, -0.0054887752048671246, 0.012475578114390373, -0.03443067893385887]} +{"t": 11.4188, "q": [-0.15597686171531677, 0.004445135127753019, 0.01915041171014309, 0.31882086396217346, -0.15959738194942474, -0.001721699140034616, -0.10642077028751373, -0.033193640410900116, 0.042613010853528976, 0.3201673626899719, -0.22320041060447693, 0.030357401818037033, 0.009146664291620255, 0.06429645419120789, 0.029936635866761208, 0.04496481269598007, 0.10857708007097244, 0.08773650974035263, 0.13985590636730194, -0.6725427508354187, -0.28369057178497314, -0.0057284594513475895, 0.062437813729047775, -0.25727733969688416, 0.06978414207696915, 1.2126357555389404, -0.005476790945976973, 0.012499546632170677, -0.03441869467496872]} +{"t": 11.4357, "q": [-0.15599390864372253, 0.004445135127753019, 0.019190587103366852, 0.3187611997127533, -0.15960168838500977, -0.0017287549562752247, -0.10642929375171661, -0.0332021601498127, 0.04263979569077492, 0.3201758861541748, -0.22320041060447693, 0.030357401818037033, 0.009079704992473125, 0.06429645419120789, 0.029936635866761208, 0.047505468130111694, 0.10846922546625137, 0.08762865513563156, 0.13973607122898102, -0.6718116998672485, -0.28355875611305237, -0.0057524279691278934, 0.062246065586805344, -0.25732529163360596, 0.06978414207696915, 1.2126117944717407, -0.005464806687086821, 0.012463593855500221, -0.03443067893385887]} +{"t": 11.4526, "q": [-0.15599390864372253, 0.004453656729310751, 0.01916380226612091, 0.318710058927536, -0.1595931351184845, -0.0017287393566220999, -0.10647190362215042, -0.033176593482494354, 0.042586229741573334, 0.3201844096183777, -0.22320456802845, 0.03035028465092182, 0.009052921086549759, 0.06431147456169128, 0.0299360528588295, 0.05030977725982666, 0.11104582995176315, 0.08755674958229065, 0.14050306379795074, -0.6704814434051514, -0.28276780247688293, -0.005716475658118725, 0.06205431744456291, -0.25760093331336975, 0.06985604763031006, 1.2126357555389404, -0.005476790945976973, 0.012463593855500221, -0.03444266319274902]} +{"t": 11.4693, "q": [-0.15602800250053406, 0.004487745929509401, 0.01917719468474388, 0.3186759948730469, -0.15960168838500977, -0.0017287549562752247, -0.10659120976924896, -0.03315103054046631, 0.042613010853528976, 0.3201673626899719, -0.22320888936519623, 0.030357487499713898, 0.0089993542060256, 0.0643034279346466, 0.029978958889842033, 0.05370131507515907, 0.11473697423934937, 0.08707737922668457, 0.14119814336299896, -0.668192446231842, -0.282132625579834, -0.005692507140338421, 0.061658840626478195, -0.2578645646572113, 0.06983207911252975, 1.212647795677185, -0.0055127437226474285, 0.012463593855500221, -0.034454647451639175]} +{"t": 11.4861, "q": [-0.1560535579919815, 0.004555922467261553, 0.01916380226612091, 0.31863337755203247, -0.15959744155406952, -0.0017357951728627086, -0.10659120976924896, -0.03313398361206055, 0.042599618434906006, 0.3201844096183777, -0.22320456802845, 0.03035028465092182, 0.008932393975555897, 0.06432613730430603, 0.02996387518942356, 0.05633784458041191, 0.1191711351275444, 0.08620253205299377, 0.14130599796772003, -0.664165735244751, -0.28159335255622864, -0.005692507140338421, 0.06125137582421303, -0.2582121193408966, 0.06980811059474945, 1.212647795677185, -0.0055367122404277325, 0.012475578114390373, -0.034454647451639175]} +{"t": 11.5028, "q": [-0.15603651106357574, 0.004581489134579897, 0.01915041171014309, 0.31859928369522095, -0.15958882868289948, -0.0017216922715306282, -0.1065741702914238, -0.033116940408945084, 0.042586229741573334, 0.3201758861541748, -0.22320888936519623, 0.030357487499713898, 0.008905611000955105, 0.06432613730430603, 0.02996387518942356, 0.05860286206007004, 0.12294616550207138, 0.08587896078824997, 0.14125806093215942, -0.6593840718269348, -0.2812098562717438, -0.0057284594513475895, 0.06085589528083801, -0.25870347023010254, 0.06986803561449051, 1.212647795677185, -0.0054887752048671246, 0.012463593855500221, -0.034454647451639175]} +{"t": 11.5196, "q": [-0.15602800250053406, 0.004598533269017935, 0.01917719468474388, 0.3185822367668152, -0.15960174798965454, -0.0017428422579541802, -0.10659120976924896, -0.0331084169447422, 0.042599618434906006, 0.3201844096183777, -0.22320888936519623, 0.030357487499713898, 0.00881186779588461, 0.06435617804527283, 0.029962703585624695, 0.06079597398638725, 0.12782374024391174, 0.0851479172706604, 0.14123409986495972, -0.6535237431526184, -0.2808503210544586, -0.0057284594513475895, 0.06012485921382904, -0.25893115997314453, 0.0698440670967102, 1.2126717567443848, -0.005440838169306517, 0.012463593855500221, -0.03446663171052933]} +{"t": 11.5364, "q": [-0.15602800250053406, 0.004615577403455973, 0.01915041171014309, 0.31851404905319214, -0.15959744155406952, -0.0017357951728627086, -0.10662530362606049, -0.033074330538511276, 0.042613010853528976, 0.3201844096183777, -0.22320473194122314, 0.03036460466682911, 0.008597597479820251, 0.06439366936683655, 0.029965974390506744, 0.06291718035936356, 0.13310879468917847, 0.08369782567024231, 0.14124608039855957, -0.6467167139053345, -0.2802750766277313, -0.0057404437102377415, 0.059130165725946426, -0.2589910924434662, 0.06985604763031006, 1.2126598358154297, -0.005476790945976973, 0.012475578114390373, -0.03446663171052933]} +{"t": 11.5531, "q": [-0.15604503452777863, 0.004666709806770086, 0.01916380226612091, 0.31850555539131165, -0.15958887338638306, -0.0017357795732095838, -0.10665939003229141, -0.033065807074308395, 0.04265318810939789, 0.32019293308258057, -0.22320905327796936, 0.030371807515621185, 0.008249407634139061, 0.06441590189933777, 0.029988769441843033, 0.06483466178178787, 0.13911288976669312, 0.08210393041372299, 0.14130599796772003, -0.6398138403892517, -0.2797597646713257, -0.0057284594513475895, 0.05795571208000183, -0.25900307297706604, 0.06986803561449051, 1.212647795677185, -0.0054887752048671246, 0.012475578114390373, -0.03446663171052933]} +{"t": 11.5698, "q": [-0.15602800250053406, 0.0047178422100842, 0.01916380226612091, 0.3184885084629059, -0.15959744155406952, -0.0017357951728627086, -0.10667642951011658, -0.03304876387119293, 0.04266658052802086, 0.32020145654678345, -0.22320888936519623, 0.030357487499713898, 0.007834259420633316, 0.06441578269004822, 0.029998240992426872, 0.06714761257171631, 0.1452368199825287, 0.0806298702955246, 0.14135393500328064, -0.6329947710037231, -0.2789088785648346, -0.0057284594513475895, 0.05675728991627693, -0.25897911190986633, 0.06980811059474945, 1.2126117944717407, -0.005452822428196669, 0.012463593855500221, -0.03446663171052933]} +{"t": 11.5867, "q": [-0.15600243210792542, 0.004743408877402544, 0.019244154915213585, 0.31845441460609436, -0.15958887338638306, -0.0017357795732095838, -0.1067105233669281, -0.03301467373967171, 0.04270675405859947, 0.32015883922576904, -0.22320473194122314, 0.03036460466682911, 0.007445894181728363, 0.06441590189933777, 0.029988769441843033, 0.06976017355918884, 0.15121695399284363, 0.07958724349737167, 0.14135393500328064, -0.6247376799583435, -0.27811792492866516, -0.0057404437102377415, 0.05559482052922249, -0.25900307297706604, 0.06983207911252975, 1.212647795677185, -0.005452822428196669, 0.012475578114390373, -0.03446663171052933]} +{"t": 11.6035, "q": [-0.15599390864372253, 0.004768975544720888, 0.019257545471191406, 0.31842032074928284, -0.15960168838500977, -0.0017287549562752247, -0.1067105233669281, -0.03301467373967171, 0.042746931314468384, 0.32015883922576904, -0.22320888936519623, 0.030357487499713898, 0.007151272147893906, 0.06444594264030457, 0.029987597838044167, 0.07231281697750092, 0.15753264725208282, 0.07758587598800659, 0.1413659155368805, -0.6164805293083191, -0.27737489342689514, -0.0057404437102377415, 0.05489973723888397, -0.2590150535106659, 0.06980811059474945, 1.2125519514083862, -0.005464806687086821, 0.012463593855500221, -0.03447861596941948]} +{"t": 11.6202, "q": [-0.15599390864372253, 0.004768975544720888, 0.019244154915213585, 0.3183947503566742, -0.1595846265554428, -0.0017428286373615265, -0.10674460977315903, -0.03301467373967171, 0.04273353889584541, 0.3201673626899719, -0.2232172042131424, 0.030343253165483475, 0.007084312848746777, 0.06448355317115784, 0.029981398954987526, 0.07487744092941284, 0.16508270800113678, 0.07385878264904022, 0.14128203690052032, -0.6091940999031067, -0.2763802111148834, -0.0057404437102377415, 0.05445631965994835, -0.25902703404426575, 0.06980811059474945, 1.212515950202942, -0.0055007594637572765, 0.012475578114390373, -0.03449060022830963]} +{"t": 11.6371, "q": [-0.15599390864372253, 0.004743408877402544, 0.019270937889814377, 0.3183521330356598, -0.15959744155406952, -0.0017357951728627086, -0.10674460977315903, -0.03302319720387459, 0.04273353889584541, 0.32015031576156616, -0.2232130467891693, 0.030350370332598686, 0.007151272147893906, 0.064520925283432, 0.029994139447808266, 0.07808921486139297, 0.17250093817710876, 0.07059907168149948, 0.14105433225631714, -0.5982165932655334, -0.2751338481903076, -0.005776396486908197, 0.054132744669914246, -0.2590150535106659, 0.0697721615433693, 1.2125399112701416, -0.005464806687086821, 0.012475578114390373, -0.03447861596941948]} +{"t": 11.6538, "q": [-0.15597686171531677, 0.004760453011840582, 0.019284330308437347, 0.31831806898117065, -0.1595931351184845, -0.0017287393566220999, -0.10678721964359283, -0.03303172066807747, 0.042760323733091354, 0.3200991749763489, -0.22320473194122314, 0.03036460466682911, 0.0070307450369000435, 0.06457390636205673, 0.029958944767713547, 0.08148074895143509, 0.17982329428195953, 0.06757904589176178, 0.14062289893627167, -0.5903189778327942, -0.27394741773605347, -0.005788380745798349, 0.05380916967988014, -0.2590150535106659, 0.0697721615433693, 1.2125399112701416, -0.0055007594637572765, 0.012475578114390373, -0.03447861596941948]} +{"t": 11.6705, "q": [-0.155959814786911, 0.004786019679158926, 0.01931111328303814, 0.3182498812675476, -0.15960168838500977, -0.0017287549562752247, -0.10678721964359283, -0.03303172066807747, 0.042773716151714325, 0.320090651512146, -0.22321321070194244, 0.030364690348505974, 0.006990569643676281, 0.06462641805410385, 0.02996162883937359, 0.08470450341701508, 0.18745724856853485, 0.06464291363954544, 0.14065885543823242, -0.5796170830726624, -0.2727729380130768, -0.0057404437102377415, 0.0535455197095871, -0.2590390145778656, 0.06978414207696915, 1.212575912475586, -0.0055007594637572765, 0.012463593855500221, -0.03446663171052933]} +{"t": 11.6873, "q": [-0.15597686171531677, 0.004768975544720888, 0.01929772086441517, 0.3182072639465332, -0.15959744155406952, -0.0017357951728627086, -0.1068468764424324, -0.03301467373967171, 0.042773716151714325, 0.3200480341911316, -0.2232172042131424, 0.030343253165483475, 0.00705752894282341, 0.06470140069723129, 0.029968170449137688, 0.08765262365341187, 0.19439612329006195, 0.06235392391681671, 0.14062289893627167, -0.57008957862854, -0.2714666724205017, -0.005776396486908197, 0.05332980304956436, -0.25902703404426575, 0.06983207911252975, 1.212575912475586, -0.005476790945976973, 0.012487562373280525, -0.03447861596941948]} +{"t": 11.704, "q": [-0.15599390864372253, 0.004768975544720888, 0.01929772086441517, 0.3181987404823303, -0.15958887338638306, -0.0017357795732095838, -0.10682130604982376, -0.03301467373967171, 0.042760323733091354, 0.3200480341911316, -0.22321753203868866, 0.03037189319729805, 0.007178056053817272, 0.06482069194316864, 0.03002971224486828, 0.09040899574756622, 0.2012990266084671, 0.060448430478572845, 0.14068281650543213, -0.5574941635131836, -0.2704240381717682, -0.005776396486908197, 0.05300622805953026, -0.2590630054473877, 0.06985604763031006, 1.212587833404541, -0.005476790945976973, 0.012475578114390373, -0.03447861596941948]} +{"t": 11.7208, "q": [-0.15599390864372253, 0.004786019679158926, 0.019270937889814377, 0.3181731700897217, -0.1595931351184845, -0.0017287393566220999, -0.10681279003620148, -0.03303172066807747, 0.04270675405859947, 0.32006508111953735, -0.22322584688663483, 0.030357658863067627, 0.007325367070734501, 0.06487268954515457, 0.03007020615041256, 0.09269798547029495, 0.20807011425495148, 0.058099523186683655, 0.1408625841140747, -0.5476431250572205, -0.2691417336463928, -0.005764412228018045, 0.0526467002928257, -0.2591109275817871, 0.06990398466587067, 1.2125998735427856, -0.005464806687086821, 0.012463593855500221, -0.03447861596941948]} +{"t": 11.7378, "q": [-0.15600243210792542, 0.004786019679158926, 0.019270937889814377, 0.3181731700897217, -0.15958893299102783, -0.0017498844536021352, -0.10681279003620148, -0.03301467373967171, 0.04267997294664383, 0.32002246379852295, -0.22322602570056915, 0.030371978878974915, 0.007700339891016483, 0.06494726240634918, 0.030105074867606163, 0.09473530203104019, 0.2160516083240509, 0.05450425669550896, 0.14107829332351685, -0.5365936756134033, -0.2671044170856476, -0.0057524279691278934, 0.052323129028081894, -0.2590869665145874, 0.06991597265005112, 1.2126238346099854, -0.005476790945976973, 0.012487562373280525, -0.03449060022830963]} +{"t": 11.7545, "q": [-0.15602800250053406, 0.00477749714627862, 0.019217370077967644, 0.3181646466255188, -0.1595846265554428, -0.0017428286373615265, -0.10681279003620148, -0.03303172066807747, 0.04266658052802086, 0.3200395107269287, -0.22322186827659607, 0.030379096046090126, 0.007834259420633316, 0.06501439213752747, 0.030135512351989746, 0.09692841023206711, 0.2236616015434265, 0.05108875036239624, 0.14110226929187775, -0.5258917808532715, -0.26488733291625977, -0.005812349263578653, 0.05165201053023338, -0.2591109275817871, 0.06999985873699188, 1.212647795677185, -0.0054887752048671246, 0.012487562373280525, -0.03447861596941948]} +{"t": 11.7712, "q": [-0.1560109555721283, 0.004760453011840582, 0.019203977659344673, 0.3182072639465332, -0.15958893299102783, -0.0017498844536021352, -0.10682130604982376, -0.03305728733539581, 0.04266658052802086, 0.3200821280479431, -0.22321736812591553, 0.030357573181390762, 0.007820867002010345, 0.06505905836820602, 0.030162110924720764, 0.09956493973731995, 0.23159515857696533, 0.046978164464235306, 0.1410902887582779, -0.5135719776153564, -0.263784795999527, -0.005824333522468805, 0.05068128928542137, -0.25914689898490906, 0.06996390968561172, 1.2126357555389404, -0.0055127437226474285, 0.012487562373280525, -0.03449060022830963]} +{"t": 11.7882, "q": [-0.15600243210792542, 0.004803063813596964, 0.019270937889814377, 0.3182072639465332, -0.15958893299102783, -0.0017498844536021352, -0.10682982951402664, -0.03304876387119293, 0.04272014647722244, 0.3200565576553345, -0.2232256829738617, 0.03034333884716034, 0.007673555985093117, 0.06508896499872208, 0.030170384794473648, 0.10236924886703491, 0.23943284153938293, 0.04274773225188255, 0.14095845818519592, -0.5021989345550537, -0.26336532831192017, -0.005812349263578653, 0.04963866248726845, -0.2591109275817871, 0.06993994116783142, 1.2126117944717407, -0.0055007594637572765, 0.012475578114390373, -0.03447861596941948]} +{"t": 11.8051, "q": [-0.15600243210792542, 0.00475193141028285, 0.019270937889814377, 0.3182413578033447, -0.1595846265554428, -0.0017428286373615265, -0.10682982951402664, -0.03303172066807747, 0.042746931314468384, 0.3200395107269287, -0.2232300043106079, 0.030350541695952415, 0.007526245433837175, 0.0651417076587677, 0.030154112726449966, 0.10483799874782562, 0.24582043290138245, 0.039679769426584244, 0.14101837575435638, -0.48992711305618286, -0.2633293867111206, -0.005800365004688501, 0.048715874552726746, -0.25912290811538696, 0.06998787820339203, 1.2126357555389404, -0.0054887752048671246, 0.012463593855500221, -0.03447861596941948]} +{"t": 11.8218, "q": [-0.15599390864372253, 0.004768975544720888, 0.019284330308437347, 0.3182413578033447, -0.15959317982196808, -0.0017428355058655143, -0.10685539990663528, -0.03304024040699005, 0.042746931314468384, 0.32003098726272583, -0.22322136163711548, 0.030336135998368263, 0.00739232636988163, 0.0651567131280899, 0.030153516680002213, 0.10725881904363632, 0.2531188130378723, 0.03588077053427696, 0.14100639522075653, -0.4771639108657837, -0.2633293867111206, -0.005824333522468805, 0.04796086996793747, -0.2590869665145874, 0.06997589021921158, 1.2126238346099854, -0.0054887752048671246, 0.012475578114390373, -0.03446663171052933]} +{"t": 11.8385, "q": [-0.15599390864372253, 0.004743408877402544, 0.01931111328303814, 0.31823283433914185, -0.1595803201198578, -0.0017357815522700548, -0.10685539990663528, -0.033074330538511276, 0.04280049726366997, 0.3200480341911316, -0.2232341766357422, 0.03034340590238571, 0.007111096754670143, 0.0651567131280899, 0.030153516680002213, 0.11032677441835403, 0.2609325349330902, 0.031985897570848465, 0.14087456464767456, -0.4649040400981903, -0.26334136724472046, -0.005884254816919565, 0.04730173572897911, -0.25884726643562317, 0.07003581523895264, 1.2125998735427856, -0.005476790945976973, 0.012475578114390373, -0.03446663171052933]} +{"t": 11.8553, "q": [-0.15598538517951965, 0.004743408877402544, 0.019351288676261902, 0.3182413578033447, -0.15959317982196808, -0.0017428355058655143, -0.1068468764424324, -0.03305728733539581, 0.04285406693816185, 0.32003098726272583, -0.2232256829738617, 0.03034333884716034, 0.007003961596637964, 0.06517917662858963, 0.030157355591654778, 0.11279552429914474, 0.26746395230293274, 0.028330707922577858, 0.14099441468715668, -0.4524524509906769, -0.26331740617752075, -0.005872270558029413, 0.04709800332784653, -0.2587394118309021, 0.0700717642903328, 1.2125998735427856, -0.005428853910416365, 0.012463593855500221, -0.03444266319274902]} +{"t": 11.872, "q": [-0.15599390864372253, 0.004734887275844812, 0.019364681094884872, 0.3182413578033447, -0.15959744155406952, -0.0017357951728627086, -0.10685539990663528, -0.033074330538511276, 0.04281388968229294, 0.3200395107269287, -0.2232300043106079, 0.030350541695952415, 0.007044136989861727, 0.06522446870803833, 0.030136650428175926, 0.11539610475301743, 0.27527764439582825, 0.02346511371433735, 0.1411142498254776, -0.43914994597435, -0.2633054256439209, -0.00589623861014843, 0.04705007001757622, -0.25875139236450195, 0.0700717642903328, 1.2126357555389404, -0.005476790945976973, 0.012487562373280525, -0.03447861596941948]} +{"t": 11.8888, "q": [-0.15603651106357574, 0.004743408877402544, 0.019404856488108635, 0.31822431087493896, -0.1595931351184845, -0.0017287393566220999, -0.10687243938446045, -0.033074330538511276, 0.04285406693816185, 0.3200395107269287, -0.22322985529899597, 0.030336203053593636, 0.006950393784791231, 0.06521689891815186, 0.0301416777074337, 0.11851200461387634, 0.2813776135444641, 0.0204570721834898, 0.14097043871879578, -0.4275611937046051, -0.2633533477783203, -0.006076002027839422, 0.04706205427646637, -0.25877538323402405, 0.0700717642903328, 1.2126598358154297, -0.0055007594637572765, 0.012475578114390373, -0.03446663171052933]} +{"t": 11.9056, "q": [-0.15602800250053406, 0.0047178422100842, 0.019458424299955368, 0.3182072639465332, -0.15958887338638306, -0.0017357795732095838, -0.10688948631286621, -0.03305728733539581, 0.042907632887363434, 0.32001397013664246, -0.22322985529899597, 0.030336203053593636, 0.006843258626759052, 0.06524680554866791, 0.030149947851896286, 0.12179568409919739, 0.2875974476337433, 0.016993630677461624, 0.14103035628795624, -0.41685929894447327, -0.2632814347743988, -0.006076002027839422, 0.04706205427646637, -0.25882330536842346, 0.0701197013258934, 1.2126598358154297, -0.0054887752048671246, 0.012463593855500221, -0.03446663171052933]} +{"t": 11.9223, "q": [-0.1560109555721283, 0.004726364742964506, 0.019458424299955368, 0.31819021701812744, -0.15959744155406952, -0.0017357951728627086, -0.10688948631286621, -0.033065807074308395, 0.04289424046874046, 0.32002246379852295, -0.22322985529899597, 0.030336203053593636, 0.006749515421688557, 0.06523154675960541, 0.030169466510415077, 0.12498348206281662, 0.29466813802719116, 0.013338442891836166, 0.14147378504276276, -0.40473124384880066, -0.26311367750167847, -0.006099970545619726, 0.04715792462229729, -0.25889521837234497, 0.07016763836145401, 1.2126717567443848, -0.0055367122404277325, 0.012475578114390373, -0.034454647451639175]} +{"t": 11.939, "q": [-0.15607060492038727, 0.004743408877402544, 0.019445031881332397, 0.3181135356426239, -0.15959744155406952, -0.0017357951728627086, -0.10691504925489426, -0.033065807074308395, 0.04288085177540779, 0.31997135281562805, -0.22323401272296906, 0.030329085886478424, 0.006535245105624199, 0.06525387614965439, 0.030182763934135437, 0.12814731895923615, 0.3004205524921417, 0.010989534668624401, 0.1417853683233261, -0.39417314529418945, -0.26274216175079346, -0.006111954804509878, 0.04715792462229729, -0.2588832378387451, 0.07020359486341476, 1.2126598358154297, -0.0054887752048671246, 0.012487562373280525, -0.03446663171052933]} +{"t": 11.9557, "q": [-0.15607912838459015, 0.004743408877402544, 0.019431641325354576, 0.318105012178421, -0.15959744155406952, -0.0017357951728627086, -0.10694914311170578, -0.032997630536556244, 0.04286745935678482, 0.31997135281562805, -0.22323401272296906, 0.030329085886478424, 0.006481677293777466, 0.06525350362062454, 0.030211148783564568, 0.13084377348423004, 0.3061969578266144, 0.008233162574470043, 0.14251640439033508, -0.38266828656196594, -0.26267024874687195, -0.00612393906340003, 0.04721784591674805, -0.2588592767715454, 0.07025153189897537, 1.2126957178115845, -0.0054887752048671246, 0.012487562373280525, -0.03446663171052933]} +{"t": 11.9725, "q": [-0.1560620814561844, 0.004734887275844812, 0.019431641325354576, 0.31804534792900085, -0.15959744155406952, -0.0017357951728627086, -0.10694914311170578, -0.03304876387119293, 0.04288085177540779, 0.31996282935142517, -0.22323833405971527, 0.0303362887352705, 0.0067896912805736065, 0.06530599296092987, 0.030213797464966774, 0.1323537826538086, 0.3124407231807709, 0.004050668329000473, 0.14427809417247772, -0.37208622694015503, -0.2626343071460724, -0.00612393906340003, 0.0475534051656723, -0.2589071989059448, 0.07022756338119507, 1.2127317190170288, -0.005464806687086821, 0.012487562373280525, -0.034454647451639175]} +{"t": 11.9893, "q": [-0.15607912838459015, 0.00475193141028285, 0.019378073513507843, 0.318036824464798, -0.15959744155406952, -0.0017357951728627086, -0.10693209618330002, -0.03301467373967171, 0.042760323733091354, 0.31996282935142517, -0.22324249148368835, 0.03032917156815529, 0.007044136989861727, 0.06529085338115692, 0.030223853886127472, 0.13367204368114471, 0.3181692063808441, 0.0010905645322054625, 0.14667493104934692, -0.359311044216156, -0.262550413608551, -0.006255765445530415, 0.047637294977903366, -0.2588592767715454, 0.07021557539701462, 1.2128275632858276, -0.0055127437226474285, 0.012499546632170677, -0.03447861596941948]} +{"t": 12.0061, "q": [-0.15607912838459015, 0.004743408877402544, 0.019404856488108635, 0.31801125407218933, -0.1595931351184845, -0.0017287393566220999, -0.1069406196475029, -0.03302319720387459, 0.04281388968229294, 0.31997135281562805, -0.2232341766357422, 0.03034340590238571, 0.007084312848746777, 0.0653429701924324, 0.03025488555431366, 0.13494238257408142, 0.3229149580001831, -0.0004913532175123692, 0.14913170039653778, -0.3498075604438782, -0.2623586654663086, -0.006243781186640263, 0.047565389424562454, -0.2587873637676239, 0.07021557539701462, 1.2128396034240723, -0.0055127437226474285, 0.012487562373280525, -0.03447861596941948]} +{"t": 12.0228, "q": [-0.15607060492038727, 0.004743408877402544, 0.019404856488108635, 0.318036824464798, -0.15959323942661285, -0.0017569315386936069, -0.10692357271909714, -0.03298910707235336, 0.042773716151714325, 0.3199969232082367, -0.2232256829738617, 0.03034333884716034, 0.007044136989861727, 0.06534271687269211, 0.030273806303739548, 0.13614079356193542, 0.32776856422424316, -0.0027324033435434103, 0.15154053270816803, -0.3380510210990906, -0.26192721724510193, -0.006243781186640263, 0.04734967276453972, -0.25870347023010254, 0.07025153189897537, 1.212803602218628, -0.005452822428196669, 0.012475578114390373, -0.03446663171052933]} +{"t": 12.0396, "q": [-0.1560620814561844, 0.004768975544720888, 0.019418248906731606, 0.3180283010005951, -0.15959744155406952, -0.0017357951728627086, -0.10693209618330002, -0.03298910707235336, 0.04280049726366997, 0.31997987627983093, -0.2232300043106079, 0.030350541695952415, 0.007044136989861727, 0.06535785645246506, 0.030263751745224, 0.13730326294898987, 0.3324304223060608, -0.004997421987354755, 0.1534220576286316, -0.327037513256073, -0.26154372096061707, -0.006255765445530415, 0.04718189314007759, -0.2586914896965027, 0.07029946893453598, 1.2127556800842285, -0.005452822428196669, 0.012475578114390373, -0.03446663171052933]} +{"t": 12.0563, "q": [-0.1560535579919815, 0.004743408877402544, 0.019378073513507843, 0.318036824464798, -0.15960174798965454, -0.0017428422579541802, -0.10691504925489426, -0.03303172066807747, 0.04280049726366997, 0.32001397013664246, -0.22322985529899597, 0.030336203053593636, 0.0070173535495996475, 0.06535028666257858, 0.030268779024481773, 0.1383219212293625, 0.3371522128582001, -0.006555370986461639, 0.1558188945055008, -0.31481361389160156, -0.26126810908317566, -0.0062917182222008705, 0.047026101499795914, -0.2587394118309021, 0.07031144946813583, 1.2127796411514282, -0.0054887752048671246, 0.012475578114390373, -0.03446663171052933]} +{"t": 12.0731, "q": [-0.1560535579919815, 0.004760453011840582, 0.019391464069485664, 0.3180197775363922, -0.15958893299102783, -0.0017498844536021352, -0.10692357271909714, -0.03298910707235336, 0.04281388968229294, 0.31997135281562805, -0.2232256829738617, 0.03034333884716034, 0.006990569643676281, 0.06537275016307831, 0.03027261793613434, 0.13918478786945343, 0.3404358923435211, -0.007034740410745144, 0.15840749442577362, -0.303800106048584, -0.2610284090042114, -0.0063156867399811745, 0.0469302274286747, -0.25877538323402405, 0.07034739851951599, 1.2127796411514282, -0.0055007594637572765, 0.012475578114390373, -0.03449060022830963]} +{"t": 12.0899, "q": [-0.15607060492038727, 0.004734887275844812, 0.019391464069485664, 0.3180283010005951, -0.1595931351184845, -0.0017287393566220999, -0.1069406196475029, -0.032997630536556244, 0.04281388968229294, 0.3199883997440338, -0.22323833405971527, 0.0303362887352705, 0.006883434485644102, 0.06535772979259491, 0.030273210257291794, 0.14013154804706573, 0.34374353289604187, -0.007382282521575689, 0.16090020537376404, -0.2916601002216339, -0.2604292035102844, -0.006339655257761478, 0.04688229039311409, -0.2587634027004242, 0.0703713670372963, 1.2127796411514282, -0.0055007594637572765, 0.012487562373280525, -0.03447861596941948]} +{"t": 12.1066, "q": [-0.15607912838459015, 0.0047178422100842, 0.019418248906731606, 0.3180197775363922, -0.1595931351184845, -0.0017287393566220999, -0.10694914311170578, -0.03298910707235336, 0.04282728210091591, 0.3199116885662079, -0.2232341766357422, 0.03034340590238571, 0.006816474720835686, 0.06535761058330536, 0.030282672494649887, 0.14119814336299896, 0.34712308645248413, -0.007729825098067522, 0.1630813330411911, -0.27877703309059143, -0.25992587208747864, -0.0063276709988713264, 0.046906258910894394, -0.2587394118309021, 0.07040732353925705, 1.2127915620803833, -0.0054887752048671246, 0.012475578114390373, -0.03447861596941948]} +{"t": 12.1233, "q": [-0.1560620814561844, 0.004743408877402544, 0.019431641325354576, 0.31800273060798645, -0.1596059948205948, -0.0017358020413666964, -0.10695765912532806, -0.03301467373967171, 0.04282728210091591, 0.319903165102005, -0.2232256829738617, 0.03034333884716034, 0.006749515421688557, 0.06536505371332169, 0.030287105590105057, 0.14221680164337158, 0.35083818435668945, -0.008712531998753548, 0.16551414132118225, -0.26723623275756836, -0.25932663679122925, -0.006363623775541782, 0.046954195946455, -0.2587634027004242, 0.07046724110841751, 1.2127915620803833, -0.005476790945976973, 0.012499546632170677, -0.03447861596941948]} +{"t": 12.1401, "q": [-0.1560535579919815, 0.004734887275844812, 0.019431641325354576, 0.3179686367511749, -0.15959744155406952, -0.0017357951728627086, -0.10697470605373383, -0.03303172066807747, 0.04289424046874046, 0.31984350085258484, -0.22323833405971527, 0.0303362887352705, 0.006736123468726873, 0.06538019329309464, 0.03027704916894436, 0.14289990067481995, 0.35438552498817444, -0.009743175469338894, 0.1684982031583786, -0.255863219499588, -0.25887125730514526, -0.006387591827660799, 0.04700213298201561, -0.25877538323402405, 0.07049120962619781, 1.2127915620803833, -0.005440838169306517, 0.012487562373280525, -0.03447861596941948]} +{"t": 12.1568, "q": [-0.1560620814561844, 0.004743408877402544, 0.019391464069485664, 0.31795158982276917, -0.159601628780365, -0.0017146589234471321, -0.10695765912532806, -0.03303172066807747, 0.04285406693816185, 0.3198520243167877, -0.22323833405971527, 0.0303362887352705, 0.006642380263656378, 0.06539507955312729, 0.030285915359854698, 0.14402641355991364, 0.35820847749710083, -0.01071389764547348, 0.17075124382972717, -0.242812380194664, -0.25792449712753296, -0.006411560345441103, 0.04699014872312546, -0.2587634027004242, 0.07050319761037827, 1.2128396034240723, -0.005452822428196669, 0.012487562373280525, -0.03446663171052933]} +{"t": 12.1737, "q": [-0.15608765184879303, 0.004734887275844812, 0.019431641325354576, 0.3178322911262512, -0.1595931351184845, -0.0017287393566220999, -0.10699175298213959, -0.03301467373967171, 0.04286745935678482, 0.31974977254867554, -0.22323833405971527, 0.0303362887352705, 0.006655772216618061, 0.06537993997335434, 0.030295971781015396, 0.14522483944892883, 0.36229512095451355, -0.012619389221072197, 0.17229720950126648, -0.2314034104347229, -0.2574211657047272, -0.006399576086550951, 0.04701411724090576, -0.25875139236450195, 0.07056311517953873, 1.2128275632858276, -0.0055007594637572765, 0.012475578114390373, -0.03446663171052933]} +{"t": 12.1905, "q": [-0.15611322224140167, 0.004743408877402544, 0.019418248906731606, 0.3177981972694397, -0.15959744155406952, -0.0017357951728627086, -0.1069832295179367, -0.03302319720387459, 0.04284067451953888, 0.31970715522766113, -0.2232426553964615, 0.030343491584062576, 0.00676290737465024, 0.06540253013372421, 0.030290350317955017, 0.14645922183990479, 0.3660581707954407, -0.014884407632052898, 0.17341174185276031, -0.2211928516626358, -0.2569657564163208, -0.006399576086550951, 0.047086022794246674, -0.2587394118309021, 0.07056311517953873, 1.2128396034240723, -0.005464806687086821, 0.012487562373280525, -0.03446663171052933]} +{"t": 12.2073, "q": [-0.15613025426864624, 0.004726364742964506, 0.019431641325354576, 0.3177641034126282, -0.15959738194942474, -0.001721699140034616, -0.10700027644634247, -0.03301467373967171, 0.04282728210091591, 0.3197327256202698, -0.22323833405971527, 0.0303362887352705, 0.0068566505797207355, 0.06540985405445099, 0.03030424378812313, 0.14793327450752258, 0.3701687455177307, -0.017796574160456657, 0.17467008531093597, -0.21019132435321808, -0.2567979693412781, -0.006423544604331255, 0.047086022794246674, -0.25875139236450195, 0.07055113464593887, 1.2128396034240723, -0.0054887752048671246, 0.012523515149950981, -0.03447861596941948]} +{"t": 12.2242, "q": [-0.15607060492038727, 0.004726364742964506, 0.019431641325354576, 0.31773003935813904, -0.15959744155406952, -0.0017357951728627086, -0.10697470605373383, -0.03303172066807747, 0.04282728210091591, 0.31970715522766113, -0.2232426553964615, 0.030343491584062576, 0.006816474720835686, 0.0654548928141594, 0.030302459374070168, 0.14935940504074097, 0.37400370836257935, -0.020313261076807976, 0.1763119250535965, -0.2003283053636551, -0.2564863860607147, -0.006495450157672167, 0.047038085758686066, -0.2587394118309021, 0.07062304019927979, 1.2128275632858276, -0.005440838169306517, 0.012487562373280525, -0.034454647451639175]} +{"t": 12.241, "q": [-0.15607912838459015, 0.0047178422100842, 0.01947181671857834, 0.31772151589393616, -0.15959738194942474, -0.001721699140034616, -0.10700027644634247, -0.03304876387119293, 0.04282728210091591, 0.3196815848350525, -0.2232469767332077, 0.030350694432854652, 0.006843258626759052, 0.0654846727848053, 0.030320191755890846, 0.15056981146335602, 0.3768679201602936, -0.02189517952501774, 0.17770209908485413, -0.19015370309352875, -0.25625869631767273, -0.006483465898782015, 0.0469302274286747, -0.25875139236450195, 0.07070692628622055, 1.2127915620803833, -0.005464806687086821, 0.012487562373280525, -0.03447861596941948]} +{"t": 12.2578, "q": [-0.15613877773284912, 0.0047178422100842, 0.019431641325354576, 0.31767889857292175, -0.1595931351184845, -0.0017287393566220999, -0.10700027644634247, -0.03303172066807747, 0.04282728210091591, 0.3196730613708496, -0.2232554703950882, 0.03035079687833786, 0.006843258626759052, 0.0654994398355484, 0.03033852018415928, 0.1516723483800888, 0.3804512023925781, -0.024567661806941032, 0.17894844710826874, -0.1800030618906021, -0.2559111416339874, -0.006531402934342623, 0.04689427465200424, -0.2587394118309021, 0.07079081982374191, 1.2127915620803833, -0.005464806687086821, 0.012475578114390373, -0.03446663171052933]} +{"t": 12.2745, "q": [-0.15613025426864624, 0.004709320608526468, 0.019445031881332397, 0.31767037510871887, -0.159601628780365, -0.0017146589234471321, -0.10704288631677628, -0.03302319720387459, 0.04281388968229294, 0.3196730613708496, -0.2232511341571808, 0.03034357726573944, 0.006870042532682419, 0.06549174338579178, 0.030353007838129997, 0.15288275480270386, 0.3835791051387787, -0.026581011712551117, 0.18006297945976257, -0.16892963647842407, -0.25573137402534485, -0.006531402934342623, 0.04688229039311409, -0.25872743129730225, 0.07086272537708282, 1.2127915620803833, -0.0055127437226474285, 0.012487562373280525, -0.03447861596941948]} +{"t": 12.2912, "q": [-0.15613025426864624, 0.004726364742964506, 0.019431641325354576, 0.31767037510871887, -0.15960593521595, -0.0017217147396877408, -0.10704288631677628, -0.03301467373967171, 0.04284067451953888, 0.31964749097824097, -0.22325097024440765, 0.030329257249832153, 0.0068566505797207355, 0.06550663709640503, 0.030361874029040337, 0.15394935011863708, 0.3858680725097656, -0.02750379778444767, 0.18103370070457458, -0.1585632860660553, -0.2552639842033386, -0.006579339504241943, 0.046906258910894394, -0.25877538323402405, 0.07087470591068268, 1.2127915620803833, -0.005476790945976973, 0.012487562373280525, -0.03446663171052933]} +{"t": 12.308, "q": [-0.15612174570560455, 0.004726364742964506, 0.019458424299955368, 0.317661851644516, -0.15960168838500977, -0.0017287549562752247, -0.10705140233039856, -0.03304876387119293, 0.04282728210091591, 0.3196219503879547, -0.22325944900512695, 0.030329342931509018, 0.006776299327611923, 0.06551408022642136, 0.030366308987140656, 0.15508785843849182, 0.38788142800331116, -0.02828277088701725, 0.18196848034858704, -0.14679478108882904, -0.25478461384773254, -0.006591323763132095, 0.0469302274286747, -0.25882330536842346, 0.07085073739290237, 1.2127915620803833, -0.005440838169306517, 0.01245160959661007, -0.03446663171052933]} +{"t": 12.3249, "q": [-0.15611322224140167, 0.004726364742964506, 0.019445031881332397, 0.317661851644516, -0.15961450338363647, -0.0017217216081917286, -0.10706844925880432, -0.03303172066807747, 0.04281388968229294, 0.31961342692375183, -0.22326360642910004, 0.030322223901748657, 0.0066289883106946945, 0.06552177667617798, 0.030351819470524788, 0.15627430379390717, 0.3907336890697479, -0.029648972675204277, 0.18298713862895966, -0.13670405745506287, -0.2544131278991699, -0.006567355245351791, 0.046954195946455, -0.25879934430122375, 0.07086272537708282, 1.212803602218628, -0.005440838169306517, 0.012487562373280525, -0.034454647451639175]} +{"t": 12.3416, "q": [-0.15612174570560455, 0.004743408877402544, 0.019458424299955368, 0.31763628125190735, -0.15960593521595, -0.0017217147396877408, -0.10706844925880432, -0.03302319720387459, 0.04286745935678482, 0.3196304738521576, -0.22326774895191193, 0.030315106734633446, 0.006535245105624199, 0.06552165001630783, 0.03036128170788288, 0.15723302960395813, 0.3937297463417053, -0.031206922605633736, 0.1841735690832138, -0.12373712658882141, -0.25423336029052734, -0.006591323763132095, 0.04694221168756485, -0.2587873637676239, 0.07087470591068268, 1.2127915620803833, -0.005452822428196669, 0.012475578114390373, -0.03446663171052933]} +{"t": 12.3584, "q": [-0.1561046987771988, 0.004743408877402544, 0.019445031881332397, 0.31762775778770447, -0.15961019694805145, -0.001714674523100257, -0.10705992579460144, -0.03302319720387459, 0.04285406693816185, 0.31964749097824097, -0.22326792776584625, 0.030329445376992226, 0.006495069246739149, 0.0655592530965805, 0.030355064198374748, 0.15804795920848846, 0.39712128043174744, -0.03353186324238777, 0.18579144775867462, -0.11172892898321152, -0.2539936602115631, -0.006627276539802551, 0.047038085758686066, -0.2588113248348236, 0.07091066241264343, 1.2128275632858276, -0.0054887752048671246, 0.012475578114390373, -0.03447861596941948]} +{"t": 12.3753, "q": [-0.15607912838459015, 0.004743408877402544, 0.019458424299955368, 0.31762775778770447, -0.15960168838500977, -0.0017287549562752247, -0.10705140233039856, -0.033006154000759125, 0.04286745935678482, 0.31970715522766113, -0.2232634276151657, 0.03030790388584137, 0.006495069246739149, 0.06564126908779144, 0.03039436787366867, 0.15841947495937347, 0.4011240005493164, -0.03687546029686928, 0.18782876431941986, -0.09928930550813675, -0.2538019120693207, -0.006639260798692703, 0.04709800332784653, -0.2588592767715454, 0.07092264294624329, 1.212803602218628, -0.0054887752048671246, 0.012475578114390373, -0.03450258448719978]} +{"t": 12.392, "q": [-0.15607060492038727, 0.004768975544720888, 0.019445031881332397, 0.31762775778770447, -0.1596059948205948, -0.0017358020413666964, -0.10705140233039856, -0.033006154000759125, 0.04282728210091591, 0.31970715522766113, -0.2232591062784195, 0.030300701037049294, 0.006454893853515387, 0.06574550271034241, 0.0304564218968153, 0.15869511663913727, 0.40618133544921875, -0.041549310088157654, 0.18998591601848602, -0.08533966541290283, -0.25343039631843567, -0.006675213575363159, 0.04713395610451698, -0.25884726643562317, 0.07093463093042374, 1.2128275632858276, -0.0055127437226474285, 0.012499546632170677, -0.03449060022830963]} +{"t": 12.4088, "q": [-0.15607912838459015, 0.004768975544720888, 0.019431641325354576, 0.31763628125190735, -0.15959744155406952, -0.0017357951728627086, -0.10705140233039856, -0.03298910707235336, 0.04286745935678482, 0.31969863176345825, -0.2232591062784195, 0.030300701037049294, 0.006508461199700832, 0.06582726538181305, 0.030514582991600037, 0.15929432213306427, 0.4108072519302368, -0.04495282843708992, 0.19159181416034698, -0.07358314096927643, -0.25287914276123047, -0.006795055698603392, 0.047086022794246674, -0.2587873637676239, 0.07094661146402359, 1.212815523147583, -0.005452822428196669, 0.012487562373280525, -0.03447861596941948]} +{"t": 12.4257, "q": [-0.15608765184879303, 0.004768975544720888, 0.019445031881332397, 0.3176533281803131, -0.15960174798965454, -0.0017428422579541802, -0.10706844925880432, -0.03298910707235336, 0.04284067451953888, 0.31978386640548706, -0.22325927019119263, 0.03031502291560173, 0.006441501900553703, 0.06588681787252426, 0.030549999326467514, 0.15996544063091278, 0.41422274708747864, -0.04676244780421257, 0.1928860992193222, -0.062246065586805344, -0.2521960437297821, -0.006926882080733776, 0.047038085758686066, -0.25875139236450195, 0.07098256796598434, 1.2128396034240723, -0.005452822428196669, 0.012487562373280525, -0.03447861596941948]} +{"t": 12.4424, "q": [-0.15604503452777863, 0.00477749714627862, 0.019445031881332397, 0.317661851644516, -0.15960174798965454, -0.0017428422579541802, -0.10702583938837051, -0.032946497201919556, 0.04286745935678482, 0.3197668194770813, -0.2232634276151657, 0.03030790388584137, 0.006441501900553703, 0.06593161076307297, 0.030567102134227753, 0.16030099987983704, 0.41661959886550903, -0.047529436647892, 0.19467175006866455, -0.04929111897945404, -0.2513810992240906, -0.006938866339623928, 0.04712197184562683, -0.2587873637676239, 0.07103050500154495, 1.2128275632858276, -0.005464806687086821, 0.012487562373280525, -0.03447861596941948]} +{"t": 12.4591, "q": [-0.1560535579919815, 0.00477749714627862, 0.019431641325354576, 0.3176533281803131, -0.15958887338638306, -0.0017357795732095838, -0.1070343628525734, -0.032946497201919556, 0.04288085177540779, 0.31978386640548706, -0.22326360642910004, 0.030322223901748657, 0.006454893853515387, 0.06600667536258698, 0.030564069747924805, 0.1603129804134369, 0.41906440258026123, -0.04814063385128975, 0.19686487317085266, -0.03719903528690338, -0.25054222345352173, -0.006998787634074688, 0.04721784591674805, -0.25879934430122375, 0.07109042257070541, 1.2128994464874268, -0.005452822428196669, 0.012499546632170677, -0.03449060022830963]} +{"t": 12.4758, "q": [-0.15607912838459015, 0.004760453011840582, 0.019458424299955368, 0.317661851644516, -0.15960174798965454, -0.0017428422579541802, -0.10704288631677628, -0.03298910707235336, 0.04288085177540779, 0.3197668194770813, -0.22325927019119263, 0.03031502291560173, 0.006441501900553703, 0.06602143496274948, 0.030582385137677193, 0.16032496094703674, 0.4224199652671814, -0.04926715046167374, 0.19863852858543396, -0.02647315338253975, -0.24955950677394867, -0.007046724669635296, 0.04724181443452835, -0.2587634027004242, 0.07128217071294785, 1.212875485420227, -0.005452822428196669, 0.012499546632170677, -0.03446663171052933]} +{"t": 12.4926, "q": [-0.15607912838459015, 0.004768975544720888, 0.019445031881332397, 0.31764480471611023, -0.15960168838500977, -0.0017287549562752247, -0.10704288631677628, -0.03298910707235336, 0.04286745935678482, 0.3197582960128784, -0.2232549488544464, 0.030307820066809654, 0.006454893853515387, 0.06602106243371964, 0.030610768124461174, 0.16082830727100372, 0.4265305697917938, -0.04999818652868271, 0.19988489151000977, -0.015148060396313667, -0.24813337624073029, -0.007154582533985376, 0.04724181443452835, -0.258667528629303, 0.0715937614440918, 1.212875485420227, -0.005452822428196669, 0.012487562373280525, -0.03447861596941948]} +{"t": 12.5093, "q": [-0.15608765184879303, 0.00475193141028285, 0.019458424299955368, 0.317661851644516, -0.15959317982196808, -0.0017428355058655143, -0.10705140233039856, -0.03296354413032532, 0.04289424046874046, 0.31974977254867554, -0.2232549488544464, 0.030307820066809654, 0.006414717994630337, 0.06606622785329819, 0.03059948794543743, 0.16113989055156708, 0.43049734830856323, -0.05050152540206909, 0.20128704607486725, -0.004206463228911161, -0.2461080551147461, -0.007286408916115761, 0.04730173572897911, -0.2586555480957031, 0.07176154106855392, 1.2128994464874268, -0.005464806687086821, 0.012499546632170677, -0.03447861596941948]} +{"t": 12.5261, "q": [-0.1560961753129959, 0.004760453011840582, 0.019445031881332397, 0.317661851644516, -0.15960168838500977, -0.0017287549562752247, -0.10705140233039856, -0.032955020666122437, 0.04285406693816185, 0.3197327256202698, -0.22326774895191193, 0.030315106734633446, 0.006548637058585882, 0.06606610119342804, 0.030608948320150375, 0.16137957572937012, 0.4339487850666046, -0.05068128928542137, 0.2028210312128067, 0.0063037024810910225, -0.24397486448287964, -0.007310377433896065, 0.04737364128232002, -0.25870347023010254, 0.07180947810411453, 1.2129473686218262, -0.005476790945976973, 0.012499546632170677, -0.03449060022830963]} +{"t": 12.5428, "q": [-0.15613025426864624, 0.004709320608526468, 0.019445031881332397, 0.317661851644516, -0.1596059948205948, -0.0017358020413666964, -0.10705140233039856, -0.03302319720387459, 0.04286745935678482, 0.3196730613708496, -0.22326360642910004, 0.030322223901748657, 0.006816474720835686, 0.06608843803405762, 0.03062223084270954, 0.16159529983997345, 0.4371965229511261, -0.05075319483876228, 0.2049901783466339, 0.01587909832596779, -0.24264460802078247, -0.007334345951676369, 0.047457531094551086, -0.2587394118309021, 0.07188138365745544, 1.2130073308944702, -0.0054887752048671246, 0.012487562373280525, -0.03449060022830963]} +{"t": 12.5595, "q": [-0.15613025426864624, 0.00469227647408843, 0.019431641325354576, 0.31762775778770447, -0.15961024165153503, -0.0017287618247792125, -0.10705140233039856, -0.03301467373967171, 0.04281388968229294, 0.31966453790664673, -0.223271906375885, 0.030307989567518234, 0.007137880194932222, 0.06611821800470352, 0.03063994087278843, 0.16171513497829437, 0.4402405023574829, -0.05068128928542137, 0.20760273933410645, 0.025670209899544716, -0.2421652376651764, -0.007358314469456673, 0.04739760980010033, -0.2587394118309021, 0.07200122624635696, 1.2129952907562256, -0.0054887752048671246, 0.012487562373280525, -0.034514568746089935]} +{"t": 12.5763, "q": [-0.15613877773284912, 0.004700798075646162, 0.019431641325354576, 0.31762775778770447, -0.15961450338363647, -0.0017217216081917286, -0.10705140233039856, -0.03304024040699005, 0.04284067451953888, 0.31964749097824097, -0.223271906375885, 0.030307989567518234, 0.007311975117772818, 0.06611809134483337, 0.030649399384856224, 0.16199077665805817, 0.4437399208545685, -0.05077716335654259, 0.2102632373571396, 0.035065844655036926, -0.24185365438461304, -0.007418235298246145, 0.04731371998786926, -0.25867950916290283, 0.07204916328191757, 1.2129473686218262, -0.005452822428196669, 0.012499546632170677, -0.03446663171052933]} +{"t": 12.593, "q": [-0.15613877773284912, 0.004666709806770086, 0.019431641325354576, 0.31762775778770447, -0.15960168838500977, -0.0017287549562752247, -0.10702583938837051, -0.03303172066807747, 0.04280049726366997, 0.31964749097824097, -0.22326360642910004, 0.030322223901748657, 0.007405718322843313, 0.06611809134483337, 0.030649399384856224, 0.1624821275472641, 0.44707152247428894, -0.050525493919849396, 0.21286380290985107, 0.043179161846637726, -0.24160197377204895, -0.007466172333806753, 0.04713395610451698, -0.25863155722618103, 0.07202519476413727, 1.2129234075546265, -0.005476790945976973, 0.012487562373280525, -0.03447861596941948]} +{"t": 12.6098, "q": [-0.156147301197052, 0.004666709806770086, 0.019418248906731606, 0.31763628125190735, -0.1596059948205948, -0.0017358020413666964, -0.10701731592416763, -0.03303172066807747, 0.04281388968229294, 0.31965601444244385, -0.22326360642910004, 0.030322223901748657, 0.007633380591869354, 0.0661105215549469, 0.030654434114694595, 0.1627817302942276, 0.4503791630268097, -0.05013001337647438, 0.2156561315059662, 0.05192764848470688, -0.2415420562028885, -0.007502125110477209, 0.047086022794246674, -0.2586555480957031, 0.07202519476413727, 1.2129114866256714, -0.005476790945976973, 0.012475578114390373, -0.03446663171052933]} +{"t": 12.6265, "q": [-0.15615582466125488, 0.004649665672332048, 0.019391464069485664, 0.3176533281803131, -0.15961019694805145, -0.001714674523100257, -0.10701731592416763, -0.03304876387119293, 0.042773716151714325, 0.31964749097824097, -0.22326360642910004, 0.030322223901748657, 0.007794083096086979, 0.0661105215549469, 0.030654434114694595, 0.16323712468147278, 0.45311155915260315, -0.04960270971059799, 0.2178971767425537, 0.05820738151669502, -0.24150609970092773, -0.007514109369367361, 0.04706205427646637, -0.25870347023010254, 0.07203717529773712, 1.2129234075546265, -0.005476790945976973, 0.012499546632170677, -0.03447861596941948]} +{"t": 12.6433, "q": [-0.15617287158966064, 0.0046326215378940105, 0.019404856488108635, 0.3176192343235016, -0.15961019694805145, -0.001714674523100257, -0.10702583938837051, -0.03304876387119293, 0.04280049726366997, 0.31961342692375183, -0.22325927019119263, 0.03031502291560173, 0.007941394113004208, 0.06611809134483337, 0.030649399384856224, 0.16383634507656097, 0.4546215832233429, -0.04826047644019127, 0.21958695352077484, 0.06672816723585129, -0.24148213863372803, -0.007538077887147665, 0.04710998758673668, -0.2587394118309021, 0.07204916328191757, 1.212935447692871, -0.0055127437226474285, 0.012487562373280525, -0.03447861596941948]} +{"t": 12.66, "q": [-0.15618139505386353, 0.004607054870575666, 0.019404856488108635, 0.31763628125190735, -0.15961019694805145, -0.001714674523100257, -0.10700879245996475, -0.033074330538511276, 0.042773716151714325, 0.3196389973163605, -0.2232634276151657, 0.03030790388584137, 0.008008353412151337, 0.0661105215549469, 0.030654434114694595, 0.1645314246416092, 0.45532864332199097, -0.046846337616443634, 0.2205936312675476, 0.07292401045560837, -0.24151809513568878, -0.007562045939266682, 0.04713395610451698, -0.25867950916290283, 0.07204916328191757, 1.212935447692871, -0.005464806687086821, 0.01251153089106083, -0.03449060022830963]} +{"t": 12.6768, "q": [-0.1561984419822693, 0.0045900107361376286, 0.019431641325354576, 0.31762775778770447, -0.1596015840768814, -0.0017005716217681766, -0.10700879245996475, -0.033074330538511276, 0.042773716151714325, 0.31961342692375183, -0.22326774895191193, 0.030315106734633446, 0.008048529736697674, 0.0661105215549469, 0.030654434114694595, 0.16528643667697906, 0.45558032393455505, -0.04549212008714676, 0.22106102108955383, 0.07776563614606857, -0.2417098432779312, -0.007562045939266682, 0.04718189314007759, -0.25854766368865967, 0.07204916328191757, 1.212935447692871, -0.005464806687086821, 0.012487562373280525, -0.03446663171052933]} +{"t": 12.6935, "q": [-0.1561899185180664, 0.004581489134579897, 0.019431641325354576, 0.31762775778770447, -0.15961019694805145, -0.001714674523100257, -0.10699175298213959, -0.033074330538511276, 0.042760323733091354, 0.31961342692375183, -0.22326360642910004, 0.030322223901748657, 0.008088705129921436, 0.06610295176506042, 0.030659466981887817, 0.16570588946342468, 0.45525676012039185, -0.04447345808148384, 0.2211449146270752, 0.08136090636253357, -0.24190159142017365, -0.007574030198156834, 0.04724181443452835, -0.2584398090839386, 0.07208511233329773, 1.2129594087600708, -0.005476790945976973, 0.012475578114390373, -0.03447861596941948]} +{"t": 12.7102, "q": [-0.1561984419822693, 0.004564445000141859, 0.019404856488108635, 0.31764480471611023, -0.15961019694805145, -0.001714674523100257, -0.10701731592416763, -0.03309137374162674, 0.042773716151714325, 0.31964749097824097, -0.22326774895191193, 0.030315106734633446, 0.008195839822292328, 0.0661105215549469, 0.030654434114694595, 0.16578976809978485, 0.4543699026107788, -0.04400607571005821, 0.22103704512119293, 0.08289488404989243, -0.24210532009601593, -0.0076339514926075935, 0.047325704246759415, -0.25829601287841797, 0.07207313179969788, 1.212935447692871, -0.005476790945976973, 0.012499546632170677, -0.03446663171052933]} +{"t": 12.7269, "q": [-0.15620696544647217, 0.004564445000141859, 0.019378073513507843, 0.31762775778770447, -0.15961450338363647, -0.0017217216081917286, -0.10696618258953094, -0.03309989720582962, 0.04273353889584541, 0.31964749097824097, -0.2232634276151657, 0.03030790388584137, 0.008343150839209557, 0.06611809134483337, 0.030649399384856224, 0.1658736616373062, 0.45278799533843994, -0.04217248782515526, 0.22096514701843262, 0.08329036831855774, -0.24217721819877625, -0.007597998715937138, 0.04739760980010033, -0.25810426473617554, 0.07204916328191757, 1.2129473686218262, -0.005476790945976973, 0.012487562373280525, -0.03449060022830963]} +{"t": 12.7438, "q": [-0.15618139505386353, 0.004564445000141859, 0.01932450570166111, 0.3176959455013275, -0.15960589051246643, -0.0017076187068596482, -0.10689800977706909, -0.03313398361206055, 0.04263979569077492, 0.31970715522766113, -0.22326360642910004, 0.030322223901748657, 0.008865434676408768, 0.06611809134483337, 0.030649399384856224, 0.1658736616373062, 0.4505469501018524, -0.04038684070110321, 0.22098910808563232, 0.08313456922769547, -0.24222515523433685, -0.007597998715937138, 0.047529436647892, -0.2579364776611328, 0.07203717529773712, 1.2129594087600708, -0.005476790945976973, 0.012499546632170677, -0.03450258448719978]} +{"t": 12.7605, "q": [-0.15618139505386353, 0.004572966601699591, 0.019203977659344673, 0.3177641034126282, -0.15960168838500977, -0.0017287549562752247, -0.1068468764424324, -0.0331084169447422, 0.04257283732295036, 0.3196815848350525, -0.22326360642910004, 0.030322223901748657, 0.009293975308537483, 0.06612566113471985, 0.030644366517663002, 0.16590961813926697, 0.44848567247390747, -0.03985953330993652, 0.22090522944927216, 0.08251138776540756, -0.24250079691410065, -0.0076339514926075935, 0.047577373683452606, -0.257660835981369, 0.07208511233329773, 1.2129833698272705, -0.0055007594637572765, 0.012499546632170677, -0.03447861596941948]} +{"t": 12.7772, "q": [-0.1561984419822693, 0.004598533269017935, 0.01915041171014309, 0.3177981972694397, -0.15960168838500977, -0.0017287549562752247, -0.1068468764424324, -0.03309137374162674, 0.04253266006708145, 0.31969010829925537, -0.22326360642910004, 0.030322223901748657, 0.009454678744077682, 0.06608793884515762, 0.030660076066851616, 0.16549016535282135, 0.44631651043891907, -0.039260320365428925, 0.2205936312675476, 0.08112122118473053, -0.24301612377166748, -0.0076219672337174416, 0.047565389424562454, -0.25737321376800537, 0.07207313179969788, 1.2129952907562256, -0.005464806687086821, 0.012487562373280525, -0.03446663171052933]} +{"t": 12.7939, "q": [-0.15616434812545776, 0.004607054870575666, 0.01916380226612091, 0.317849338054657, -0.15961019694805145, -0.001714674523100257, -0.10683835297822952, -0.033074330538511276, 0.04255944490432739, 0.3197327256202698, -0.2232634276151657, 0.03030790388584137, 0.00933415163308382, 0.06610307842493057, 0.030650008469820023, 0.16467523574829102, 0.44432714581489563, -0.03850531578063965, 0.2202700525522232, 0.0791797786951065, -0.2433636635541916, -0.0076339514926075935, 0.04761332646012306, -0.25712156295776367, 0.07212106883525848, 1.2130073308944702, -0.005464806687086821, 0.012487562373280525, -0.03446663171052933]} +{"t": 12.8107, "q": [-0.15613877773284912, 0.004607054870575666, 0.019217370077967644, 0.31790900230407715, -0.15960168838500977, -0.0017287549562752247, -0.10679574310779572, -0.033074330538511276, 0.04265318810939789, 0.31979238986968994, -0.22325927019119263, 0.03031502291560173, 0.009146664291620255, 0.06610319763422012, 0.03064054623246193, 0.16383634507656097, 0.4414389431476593, -0.0373188778758049, 0.21986259520053864, 0.07758587598800659, -0.2436632663011551, -0.0076339514926075935, 0.047565389424562454, -0.2570376694202423, 0.07207313179969788, 1.2130073308944702, -0.005476790945976973, 0.012487562373280525, -0.03446663171052933]} +{"t": 12.8274, "q": [-0.15612174570560455, 0.004572966601699591, 0.019203977659344673, 0.31791752576828003, -0.15960593521595, -0.0017217147396877408, -0.10675313323736191, -0.0331084169447422, 0.04263979569077492, 0.3198179602622986, -0.2232591062784195, 0.030300701037049294, 0.009133272804319859, 0.06611833721399307, 0.030630478635430336, 0.16270983219146729, 0.4374242126941681, -0.03562910109758377, 0.21958695352077484, 0.07490140944719315, -0.2437831163406372, -0.0076339514926075935, 0.04761332646012306, -0.2570137083530426, 0.07207313179969788, 1.2130192518234253, -0.0055007594637572765, 0.012487562373280525, -0.03447861596941948]} +{"t": 12.8441, "q": [-0.15613025426864624, 0.004555922467261553, 0.01917719468474388, 0.31796011328697205, -0.15959744155406952, -0.0017357951728627086, -0.10675313323736191, -0.03309989720582962, 0.04266658052802086, 0.3198179602622986, -0.22325079143047333, 0.030314937233924866, 0.009240408428013325, 0.0661107674241066, 0.030635511502623558, 0.16110393404960632, 0.43216314911842346, -0.03322027251124382, 0.21945513784885406, 0.07105447351932526, -0.24395088851451874, -0.0076219672337174416, 0.04761332646012306, -0.25692981481552124, 0.07206114381551743, 1.21303129196167, -0.0055127437226474285, 0.012487562373280525, -0.03450258448719978]} +{"t": 12.8608, "q": [-0.15613877773284912, 0.004521834198385477, 0.019190587103366852, 0.3179686367511749, -0.15960168838500977, -0.0017287549562752247, -0.10674460977315903, -0.03314250707626343, 0.042613010853528976, 0.3198094367980957, -0.22325927019119263, 0.03031502291560173, 0.009307367727160454, 0.06608062237501144, 0.0306461863219738, 0.1592104285955429, 0.42600324749946594, -0.030104374513030052, 0.2194191813468933, 0.06868159770965576, -0.24415461719036102, -0.0076339514926075935, 0.04760134220123291, -0.2568938434123993, 0.07207313179969788, 1.21303129196167, -0.0055007594637572765, 0.012487562373280525, -0.03447861596941948]} +{"t": 12.8776, "q": [-0.156147301197052, 0.004487745929509401, 0.019217370077967644, 0.31805387139320374, -0.15960593521595, -0.0017217147396877408, -0.1067105233669281, -0.03315103054046631, 0.04263979569077492, 0.3198179602622986, -0.22325927019119263, 0.03031502291560173, 0.00932075921446085, 0.06608062237501144, 0.0306461863219738, 0.1579161286354065, 0.4200950264930725, -0.026101643219590187, 0.2194191813468933, 0.06653641909360886, -0.24434636533260345, -0.0076579200103878975, 0.047625310719013214, -0.2567859888076782, 0.07208511233329773, 1.2130433320999146, -0.0054887752048671246, 0.012487562373280525, -0.03447861596941948]} +{"t": 12.8943, "q": [-0.15615582466125488, 0.004513311665505171, 0.019244154915213585, 0.3180709183216095, -0.15961019694805145, -0.001714674523100257, -0.10671904683113098, -0.03315103054046631, 0.04263979569077492, 0.31979238986968994, -0.2232506275177002, 0.030300617218017578, 0.00925379991531372, 0.0660657286643982, 0.030637333169579506, 0.15672969818115234, 0.41309624910354614, -0.021643510088324547, 0.21956299245357513, 0.06301305443048477, -0.24439430236816406, -0.0076579200103878975, 0.047697216272354126, -0.25667813420295715, 0.07206114381551743, 1.2130433320999146, -0.0055247279815375805, 0.012475578114390373, -0.03446663171052933]} +{"t": 12.9111, "q": [-0.156147301197052, 0.004436612594872713, 0.019230762496590614, 0.3180794417858124, -0.1596015840768814, -0.0017005716217681766, -0.10670199990272522, -0.03321068361401558, 0.04262640327215195, 0.31979238986968994, -0.22325927019119263, 0.03031502291560173, 0.009307367727160454, 0.06605071574449539, 0.030637936666607857, 0.15539944171905518, 0.40610945224761963, -0.018132133409380913, 0.2196229100227356, 0.05753626674413681, -0.2443823218345642, -0.0076699042692780495, 0.047685232013463974, -0.2566421926021576, 0.07206114381551743, 1.21303129196167, -0.005452822428196669, 0.012499546632170677, -0.03446663171052933]} +{"t": 12.928, "q": [-0.1561984419822693, 0.004376957658678293, 0.019230762496590614, 0.3180623948574066, -0.15961019694805145, -0.001714674523100257, -0.10669347643852234, -0.03326181694865227, 0.042599618434906006, 0.3197582960128784, -0.22325927019119263, 0.03031502291560173, 0.009481461718678474, 0.06603557616472244, 0.03064800426363945, 0.15390141308307648, 0.39891889691352844, -0.01516004465520382, 0.2196229100227356, 0.05205947533249855, -0.24439430236816406, -0.0076579200103878975, 0.04766126349568367, -0.2566182017326355, 0.07212106883525848, 1.2130433320999146, -0.0054887752048671246, 0.012499546632170677, -0.03446663171052933]} +{"t": 12.9447, "q": [-0.15622399747371674, 0.0043428693898022175, 0.019217370077967644, 0.3180623948574066, -0.15960593521595, -0.0017217147396877408, -0.10668495297431946, -0.03327886015176773, 0.042613010853528976, 0.3197753429412842, -0.2232549488544464, 0.030307820066809654, 0.009601988829672337, 0.06602044403553009, 0.030658071860671043, 0.15237942337989807, 0.39147669076919556, -0.011696604080498219, 0.2197187840938568, 0.04767324775457382, -0.24440628290176392, -0.0076699042692780495, 0.04767324775457382, -0.2565463185310364, 0.07213304936885834, 1.2130433320999146, -0.005440838169306517, 0.012487562373280525, -0.03446663171052933]} +{"t": 12.9614, "q": [-0.15625809133052826, 0.0043002585880458355, 0.019217370077967644, 0.31804534792900085, -0.15961870551109314, -0.0017005852423608303, -0.10667642951011658, -0.03332999348640442, 0.042586229741573334, 0.3197327256202698, -0.2232549488544464, 0.030307820066809654, 0.009642165154218674, 0.06600530445575714, 0.030668139457702637, 0.15118099749088287, 0.38291996717453003, -0.00595615990459919, 0.21977870166301727, 0.04127367213368416, -0.24440628290176392, -0.007753793615847826, 0.047685232013463974, -0.256462424993515, 0.07213304936885834, 1.2130672931671143, -0.005452822428196669, 0.01251153089106083, -0.03446663171052933]} +{"t": 12.9782, "q": [-0.15627513825893402, 0.004308781120926142, 0.019217370077967644, 0.3180623948574066, -0.15961870551109314, -0.0017005852423608303, -0.10667642951011658, -0.0333385169506073, 0.042586229741573334, 0.31970715522766113, -0.2232506275177002, 0.030300617218017578, 0.00965555664151907, 0.06599016487598419, 0.03067820705473423, 0.15011440217494965, 0.3756095767021179, -0.00016777915880084038, 0.21986259520053864, 0.03335209935903549, -0.24447819590568542, -0.007729825098067522, 0.047697216272354126, -0.2563905119895935, 0.07215701788663864, 1.2130433320999146, -0.005464806687086821, 0.012499546632170677, -0.03447861596941948]} +{"t": 12.9949, "q": [-0.15630923211574554, 0.004308781120926142, 0.01917719468474388, 0.31805387139320374, -0.15962719917297363, -0.0016865048091858625, -0.1066679134964943, -0.03332999348640442, 0.04255944490432739, 0.31969863176345825, -0.2232549488544464, 0.030307820066809654, 0.00966894906014204, 0.06592999398708344, 0.030690094456076622, 0.1490238457918167, 0.36760413646698, 0.005848302040249109, 0.21993450820446014, 0.026497121900320053, -0.2445381134748459, -0.007705857045948505, 0.047697216272354126, -0.25637853145599365, 0.07216900587081909, 1.2130792140960693, -0.005476790945976973, 0.012499546632170677, -0.03446663171052933]} +{"t": 13.0117, "q": [-0.15630923211574554, 0.0043002585880458355, 0.01916380226612091, 0.31804534792900085, -0.15962719917297363, -0.0016865048091858625, -0.10667642951011658, -0.03332147002220154, 0.04253266006708145, 0.3196730613708496, -0.22325927019119263, 0.03031502291560173, 0.009843043051660061, 0.06591498106718063, 0.030690699815750122, 0.14816097915172577, 0.3608090579509735, 0.010498180985450745, 0.2199225127696991, 0.019905798137187958, -0.24459803104400635, -0.007753793615847826, 0.04770920053124428, -0.25640249252319336, 0.07213304936885834, 1.213103175163269, -0.0055127437226474285, 0.012499546632170677, -0.03449060022830963]} +{"t": 13.0284, "q": [-0.15630923211574554, 0.004291736986488104, 0.019203977659344673, 0.31800273060798645, -0.15963150560855865, -0.0016935518942773342, -0.10668495297431946, -0.033312950283288956, 0.04257283732295036, 0.3196219503879547, -0.2232549488544464, 0.030307820066809654, 0.009816259145736694, 0.06589971482753754, 0.03071022965013981, 0.1477055698633194, 0.3536544740200043, 0.016502277925610542, 0.21982663869857788, 0.012871057726442814, -0.2447059005498886, -0.007765777874737978, 0.04772118479013443, -0.25642645359039307, 0.07214503735303879, 1.213103175163269, -0.0055007594637572765, 0.012487562373280525, -0.03449060022830963]} +{"t": 13.0452, "q": [-0.15631774067878723, 0.004283214453607798, 0.019190587103366852, 0.31800273060798645, -0.15963146090507507, -0.0016794558614492416, -0.10669347643852234, -0.03332999348640442, 0.04257283732295036, 0.31960490345954895, -0.22325927019119263, 0.03031502291560173, 0.009816259145736694, 0.06589971482753754, 0.03071022965013981, 0.14662699401378632, 0.3468115031719208, 0.022278673946857452, 0.21982663869857788, 0.005992112681269646, -0.24474184215068817, -0.007693872787058353, 0.047745153307914734, -0.2564863860607147, 0.07210908085107803, 1.213091254234314, -0.005464806687086821, 0.012499546632170677, -0.03447861596941948]} +{"t": 13.0621, "q": [-0.15630070865154266, 0.004283214453607798, 0.019190587103366852, 0.3179771602153778, -0.15963146090507507, -0.0016794558614492416, -0.1066679134964943, -0.03334703668951988, 0.04253266006708145, 0.3196219503879547, -0.2232549488544464, 0.030307820066809654, 0.009843043051660061, 0.06589971482753754, 0.03071022965013981, 0.14550048112869263, 0.3404598534107208, 0.027096332982182503, 0.21976672112941742, -0.001725728390738368, -0.24482573568820953, -0.0076818885281682014, 0.04779309034347534, -0.2564983665943146, 0.07202519476413727, 1.2130792140960693, -0.005464806687086821, 0.012487562373280525, -0.03447861596941948]} +{"t": 13.0787, "q": [-0.15629218518733978, 0.004291736986488104, 0.01915041171014309, 0.3179771602153778, -0.15963146090507507, -0.0016794558614492416, -0.10664234310388565, -0.03334703668951988, 0.04251926764845848, 0.31965601444244385, -0.22325512766838074, 0.030322140082716942, 0.00999035406857729, 0.06589971482753754, 0.03071022965013981, 0.14382268488407135, 0.3343239426612854, 0.03154247999191284, 0.21958695352077484, -0.01043826062232256, -0.2449335902929306, -0.007705857045948505, 0.0478290431201458, -0.25651034712791443, 0.07198923826217651, 1.2131391763687134, -0.0055486964993178844, 0.012523515149950981, -0.03447861596941948]} +{"t": 13.0955, "q": [-0.15630070865154266, 0.004291736986488104, 0.019123626872897148, 0.3179686367511749, -0.1596272587776184, -0.001700592110864818, -0.10665086656808853, -0.033312950283288956, 0.0424657016992569, 0.31969010829925537, -0.22325927019119263, 0.03031502291560173, 0.00999035406857729, 0.06589984148740768, 0.030700767412781715, 0.1419651359319687, 0.3280322253704071, 0.03694736585021019, 0.2194191813468933, -0.017676731571555138, -0.24512533843517303, -0.00771784083917737, 0.04778110608458519, -0.25651034712791443, 0.07200122624635696, 1.2131750583648682, -0.0055247279815375805, 0.01251153089106083, -0.03447861596941948]} +{"t": 13.1123, "q": [-0.15629218518733978, 0.004351391922682524, 0.019096843898296356, 0.3179686367511749, -0.15961870551109314, -0.0017005852423608303, -0.10663381963968277, -0.03326181694865227, 0.042452309280633926, 0.3196730613708496, -0.2232549488544464, 0.030307820066809654, 0.01000374648720026, 0.06589971482753754, 0.03071022965013981, 0.13937653601169586, 0.322291761636734, 0.04223240911960602, 0.21944314241409302, -0.024447819218039513, -0.245257169008255, -0.007705857045948505, 0.04776912182569504, -0.2565223276615143, 0.07201320677995682, 1.2131990194320679, -0.005476790945976973, 0.01251153089106083, -0.03450258448719978]} +{"t": 13.129, "q": [-0.15627513825893402, 0.004394001793116331, 0.019016491249203682, 0.31799420714378357, -0.15961439907550812, -0.0016935294261202216, -0.10659120976924896, -0.03325329348444939, 0.04238535091280937, 0.31974977254867554, -0.22325927019119263, 0.03031502291560173, 0.010204624384641647, 0.06588482856750488, 0.030701376497745514, 0.1359969824552536, 0.3159521222114563, 0.047924917191267014, 0.2196229100227356, -0.03371162712574005, -0.24526914954185486, -0.0076699042692780495, 0.04778110608458519, -0.2565463185310364, 0.07201320677995682, 1.2132110595703125, -0.0055007594637572765, 0.012499546632170677, -0.03447861596941948]} +{"t": 13.1457, "q": [-0.15626661479473114, 0.0043428693898022175, 0.018909357488155365, 0.3180197775363922, -0.15961019694805145, -0.001714674523100257, -0.10652303695678711, -0.033244773745536804, 0.042264822870492935, 0.3197668194770813, -0.2232464700937271, 0.03030773438513279, 0.010606381110846996, 0.06588482856750488, 0.030701376497745514, 0.1321021169424057, 0.3104393780231476, 0.052275191992521286, 0.21981465816497803, -0.04283162206411362, -0.24535304307937622, -0.0076579200103878975, 0.04779309034347534, -0.2566421926021576, 0.07198923826217651, 1.2132470607757568, -0.0055247279815375805, 0.012523515149950981, -0.03446663171052933]} +{"t": 13.1626, "q": [-0.15630070865154266, 0.004376957658678293, 0.018775437027215958, 0.318036824464798, -0.15961450338363647, -0.0017217216081917286, -0.10649746656417847, -0.03321920707821846, 0.04222464561462402, 0.31979238986968994, -0.22325512766838074, 0.030322140082716942, 0.010686732828617096, 0.06583978980779648, 0.030703194439411163, 0.129130020737648, 0.3049745559692383, 0.056361813098192215, 0.2197187840938568, -0.051292482763528824, -0.2454848736524582, -0.0076818885281682014, 0.047805074602365494, -0.25663021206855774, 0.07197725772857666, 1.2132470607757568, -0.005464806687086821, 0.012523515149950981, -0.034514568746089935]} +{"t": 13.1794, "q": [-0.15627513825893402, 0.004359913524240255, 0.018855789676308632, 0.3180283010005951, -0.15961870551109314, -0.0017005852423608303, -0.10648894309997559, -0.03322772681713104, 0.042278215289115906, 0.3198094367980957, -0.2232464700937271, 0.03030773438513279, 0.010499246418476105, 0.06581757962703705, 0.030680451542139053, 0.12667326629161835, 0.29897046089172363, 0.06167082488536835, 0.21944314241409302, -0.05999303236603737, -0.24564066529273987, -0.0076699042692780495, 0.047745153307914734, -0.25660622119903564, 0.07200122624635696, 1.2132949829101562, -0.0054887752048671246, 0.012523515149950981, -0.03449060022830963]} +{"t": 13.1961, "q": [-0.15624956786632538, 0.0043428693898022175, 0.018949532881379128, 0.318036824464798, -0.15961870551109314, -0.0017005852423608303, -0.1064804270863533, -0.03323625028133392, 0.04235856607556343, 0.3198094367980957, -0.22325512766838074, 0.030322140082716942, 0.010151056572794914, 0.06579525023698807, 0.030667170882225037, 0.12443221360445023, 0.2927626371383667, 0.06733936071395874, 0.21944314241409302, -0.06840595602989197, -0.2457605004310608, -0.0076699042692780495, 0.047517452389001846, -0.25663021206855774, 0.07201320677995682, 1.2132949829101562, -0.0054887752048671246, 0.012523515149950981, -0.03447861596941948]} +{"t": 13.2128, "q": [-0.15626661479473114, 0.0043002585880458355, 0.01896292343735695, 0.3180283010005951, -0.15961870551109314, -0.0017005852423608303, -0.10646338015794754, -0.033295903354883194, 0.0423719584941864, 0.3198009133338928, -0.22324663400650024, 0.030322054401040077, 0.010164448991417885, 0.06580282002687454, 0.030662136152386665, 0.12204734981060028, 0.28830450773239136, 0.07085073739290237, 0.2197187840938568, -0.07683087140321732, -0.24571256339550018, -0.0076579200103878975, 0.046618636697530746, -0.2565702795982361, 0.07204916328191757, 1.2131750583648682, -0.005476790945976973, 0.012487562373280525, -0.03446663171052933]} +{"t": 13.2296, "q": [-0.15629218518733978, 0.00426617031916976, 0.018949532881379128, 0.31800273060798645, -0.1596229523420334, -0.0016935450257733464, -0.10646338015794754, -0.033304426819086075, 0.04234517365694046, 0.3197327256202698, -0.2232464700937271, 0.03030773438513279, 0.01032515149563551, 0.06578011065721512, 0.03067723847925663, 0.12033360451459885, 0.2836306691169739, 0.0742902159690857, 0.2196948230266571, -0.0848243460059166, -0.24572455883026123, -0.0076699042692780495, 0.045827675610780716, -0.2563905119895935, 0.07213304936885834, 1.2130433320999146, -0.005464806687086821, 0.012487562373280525, -0.03450258448719978]} +{"t": 13.2463, "q": [-0.15631774067878723, 0.004189471248537302, 0.018936140462756157, 0.31800273060798645, -0.15962719917297363, -0.0016865048091858625, -0.10644633322954178, -0.033364083617925644, 0.04231838881969452, 0.3196730613708496, -0.2232506275177002, 0.030300617218017578, 0.010726908221840858, 0.06575765460729599, 0.030673418194055557, 0.11883557587862015, 0.2788849174976349, 0.077957384288311, 0.21958695352077484, -0.09184709936380386, -0.24577249586582184, -0.0076579200103878975, 0.04550410434603691, -0.25625869631767273, 0.07215701788663864, 1.2129713296890259, -0.0054887752048671246, 0.012487562373280525, -0.03450258448719978]} +{"t": 13.2631, "q": [-0.15636035799980164, 0.004070162307471037, 0.018922748044133186, 0.31794309616088867, -0.15962715446949005, -0.0016723999287933111, -0.10645485669374466, -0.033432260155677795, 0.042291607707738876, 0.31964749097824097, -0.22325079143047333, 0.030314937233924866, 0.010941178537905216, 0.06576509773731232, 0.03067784383893013, 0.11787684261798859, 0.2733362019062042, 0.08218781650066376, 0.21958695352077484, -0.09922938793897629, -0.2457605004310608, -0.0076699042692780495, 0.04533632472157478, -0.25617480278015137, 0.07216900587081909, 1.2129713296890259, -0.005452822428196669, 0.012487562373280525, -0.03449060022830963]} +{"t": 13.2798, "q": [-0.15635183453559875, 0.004001984838396311, 0.018922748044133186, 0.3178834319114685, -0.15963146090507507, -0.0016794558614492416, -0.10644633322954178, -0.033543046563863754, 0.042291607707738876, 0.3195793330669403, -0.22325944900512695, 0.030329342931509018, 0.011128664948046207, 0.06576509773731232, 0.03067784383893013, 0.11684619635343552, 0.26806315779685974, 0.0863223746418953, 0.21965886652469635, -0.1071150079369545, -0.24573653936386108, -0.0076339514926075935, 0.04531235620379448, -0.25600701570510864, 0.07214503735303879, 1.2129952907562256, -0.0055007594637572765, 0.012499546632170677, -0.03446663171052933]} +{"t": 13.2968, "q": [-0.15638592839241028, 0.003967896569520235, 0.018949532881379128, 0.3178067207336426, -0.15965278446674347, -0.001658333232626319, -0.10647190362215042, -0.03353452309966087, 0.042264822870492935, 0.3194429874420166, -0.22325529158115387, 0.03033646009862423, 0.011195625178515911, 0.0657271295785904, 0.030712474137544632, 0.11649865657091141, 0.2632095515727997, 0.0900135189294815, 0.21973076462745667, -0.11358648538589478, -0.24572455883026123, -0.0076699042692780495, 0.04532434046268463, -0.2557673454284668, 0.07214503735303879, 1.2129952907562256, -0.0054887752048671246, 0.012487562373280525, -0.03447861596941948]} +{"t": 13.3135, "q": [-0.15645410120487213, 0.003976418171077967, 0.018936140462756157, 0.3177470862865448, -0.15965278446674347, -0.001658333232626319, -0.10648894309997559, -0.033551570028066635, 0.042278215289115906, 0.31928956508636475, -0.22325944900512695, 0.030329342931509018, 0.011289368383586407, 0.06567414104938507, 0.03074766881763935, 0.11600729823112488, 0.2580922842025757, 0.09380052983760834, 0.21973076462745667, -0.12250275164842606, -0.24573653936386108, -0.00760998297482729, 0.045468151569366455, -0.2555636167526245, 0.07214503735303879, 1.2130073308944702, -0.0054887752048671246, 0.012487562373280525, -0.03450258448719978]} +{"t": 13.3303, "q": [-0.1564711481332779, 0.003959374036639929, 0.018936140462756157, 0.3177470862865448, -0.1596527248620987, -0.0016442459309473634, -0.10647190362215042, -0.03359417989850044, 0.042238038033246994, 0.31923845410346985, -0.22325529158115387, 0.03033646009862423, 0.011543814092874527, 0.0656060203909874, 0.03079291805624962, 0.11501260846853256, 0.25285518169403076, 0.09656888991594315, 0.21973076462745667, -0.1302565485239029, -0.24577249586582184, -0.007586014457046986, 0.045815691351890564, -0.25545573234558105, 0.07216900587081909, 1.2130552530288696, -0.005476790945976973, 0.012499546632170677, -0.034514568746089935]} +{"t": 13.3472, "q": [-0.15649671852588654, 0.003908241633325815, 0.018909357488155365, 0.317661851644516, -0.15966123342514038, -0.0016301653813570738, -0.10647190362215042, -0.033611223101615906, 0.04218447208404541, 0.3191617429256439, -0.22326360642910004, 0.030322223901748657, 0.011798259802162647, 0.06558331102132797, 0.03080800175666809, 0.11411379277706146, 0.24813337624073029, 0.09879795461893082, 0.21973076462745667, -0.13842979073524475, -0.24573653936386108, -0.007597998715937138, 0.04609132930636406, -0.2553119361400604, 0.07213304936885834, 1.2130672931671143, -0.0055127437226474285, 0.01251153089106083, -0.03447861596941948]} +{"t": 13.3639, "q": [-0.15649671852588654, 0.0039167641662061214, 0.018922748044133186, 0.317661851644516, -0.15965703129768372, -0.0016512928996235132, -0.1064804270863533, -0.033602699637413025, 0.04222464561462402, 0.31910207867622375, -0.22325944900512695, 0.030329342931509018, 0.01177147589623928, 0.06549247354269028, 0.03086833469569683, 0.11323894560337067, 0.24244087934494019, 0.10269282758235931, 0.2196229100227356, -0.14793327450752258, -0.24574851989746094, -0.007586014457046986, 0.04610331356525421, -0.2550962269306183, 0.07213304936885834, 1.213103175163269, -0.0054887752048671246, 0.01251153089106083, -0.03447861596941948]} +{"t": 13.3807, "q": [-0.15652227401733398, 0.0039167641662061214, 0.018909357488155365, 0.3176533281803131, -0.15965703129768372, -0.0016512928996235132, -0.10649746656417847, -0.033602699637413025, 0.04222464561462402, 0.3190765380859375, -0.22325529158115387, 0.03033646009862423, 0.01177147589623928, 0.06544706225395203, 0.030898502096533775, 0.11200457066297531, 0.23517844080924988, 0.10790596157312393, 0.2196229100227356, -0.15659786760807037, -0.24573653936386108, -0.007586014457046986, 0.04611529782414436, -0.25480860471725464, 0.07210908085107803, 1.2130792140960693, -0.0054887752048671246, 0.012499546632170677, -0.03450258448719978]} +{"t": 13.3975, "q": [-0.15648819506168365, 0.003908241633325815, 0.018909357488155365, 0.317661851644516, -0.15966127812862396, -0.0016442526830360293, -0.10648894309997559, -0.03358565643429756, 0.042251430451869965, 0.3191191256046295, -0.22325944900512695, 0.030329342931509018, 0.011610773392021656, 0.06546976417303085, 0.030883418396115303, 0.11066233366727829, 0.22844329476356506, 0.11325092613697052, 0.21950307488441467, -0.16648486256599426, -0.24571256339550018, -0.00755006168037653, 0.04627109318971634, -0.25450900197029114, 0.07208511233329773, 1.213091254234314, -0.0054887752048671246, 0.012487562373280525, -0.03447861596941948]} +{"t": 13.4149, "q": [-0.15644557774066925, 0.003908241633325815, 0.018936140462756157, 0.31767037510871887, -0.15966123342514038, -0.0016301653813570738, -0.10647190362215042, -0.033602699637413025, 0.042278215289115906, 0.31915321946144104, -0.22325944900512695, 0.030329342931509018, 0.011624165810644627, 0.0654849037528038, 0.030873363837599754, 0.10924819856882095, 0.2227388173341751, 0.11613912880420685, 0.21945513784885406, -0.1747659593820572, -0.24574851989746094, -0.007418235298246145, 0.046618636697530746, -0.2540895342826843, 0.07208511233329773, 1.2130792140960693, -0.005464806687086821, 0.012499546632170677, -0.03450258448719978]} +{"t": 13.4317, "q": [-0.15645410120487213, 0.003925285767763853, 0.018936140462756157, 0.31772151589393616, -0.1596655398607254, -0.0016372124664485455, -0.10648894309997559, -0.033602699637413025, 0.042291607707738876, 0.3192043602466583, -0.22325529158115387, 0.03033646009862423, 0.011423286981880665, 0.06546220183372498, 0.030888447538018227, 0.10836136341094971, 0.21672272682189941, 0.11840414255857468, 0.21938322484493256, -0.1854199320077896, -0.24572455883026123, -0.007418235298246145, 0.046858321875333786, -0.2535382807254791, 0.07209710031747818, 1.213103175163269, -0.005452822428196669, 0.01251153089106083, -0.03446663171052933]} +{"t": 13.4484, "q": [-0.156462624669075, 0.0039167641662061214, 0.01898970827460289, 0.3177385628223419, -0.15966127812862396, -0.0016442526830360293, -0.10651451349258423, -0.03359417989850044, 0.04235856607556343, 0.3192214071750641, -0.22325944900512695, 0.030329342931509018, 0.011209016665816307, 0.06546220183372498, 0.030888447538018227, 0.10776215046644211, 0.2104070484638214, 0.1218675896525383, 0.2193472683429718, -0.19449199736118317, -0.24572455883026123, -0.007382282521575689, 0.04694221168756485, -0.2527952492237091, 0.07207313179969788, 1.2131391763687134, -0.0054887752048671246, 0.01251153089106083, -0.034514568746089935]} +{"t": 13.4652, "q": [-0.15644557774066925, 0.003942329902201891, 0.01898970827460289, 0.3177896738052368, -0.1596527248620987, -0.0016442459309473634, -0.10652303695678711, -0.033543046563863754, 0.0423719584941864, 0.31933218240737915, -0.22325529158115387, 0.03033646009862423, 0.01084743533283472, 0.06546220183372498, 0.030888447538018227, 0.10735469311475754, 0.20400746166706085, 0.12530705332756042, 0.21905964612960815, -0.2043430209159851, -0.24572455883026123, -0.007370298728346825, 0.046966180205345154, -0.25176459550857544, 0.07207313179969788, 1.2131391763687134, -0.0055127437226474285, 0.012499546632170677, -0.034514568746089935]} +{"t": 13.482, "q": [-0.15640297532081604, 0.003950852435082197, 0.01900310069322586, 0.3178322911262512, -0.15965697169303894, -0.0016372055979445577, -0.10649746656417847, -0.033551570028066635, 0.04235856607556343, 0.3194003701210022, -0.22324663400650024, 0.030322054401040077, 0.010552814230322838, 0.0654548779129982, 0.030874552205204964, 0.10645586997270584, 0.1970805823802948, 0.12921391427516937, 0.21823273599147797, -0.21285182237625122, -0.24572455883026123, -0.007406251039355993, 0.04706205427646637, -0.2502785623073578, 0.07202519476413727, 1.2131510972976685, -0.005476790945976973, 0.01251153089106083, -0.03453853726387024]} +{"t": 13.4987, "q": [-0.15639445185661316, 0.003984940703958273, 0.01900310069322586, 0.31785786151885986, -0.1596655398607254, -0.0016372124664485455, -0.10648894309997559, -0.03356008976697922, 0.042412132024765015, 0.3194855749607086, -0.22325097024440765, 0.030329257249832153, 0.01033854391425848, 0.06546256691217422, 0.030860062688589096, 0.10523348301649094, 0.19058513641357422, 0.13348029553890228, 0.21753765642642975, -0.22088125348091125, -0.24573653936386108, -0.007286408916115761, 0.04713395610451698, -0.24844497442245483, 0.07196526974439621, 1.2131271362304688, -0.005476790945976973, 0.01251153089106083, -0.034598458558321]} +{"t": 13.5155, "q": [-0.15636888146400452, 0.003950852435082197, 0.01900310069322586, 0.3178834319114685, -0.15965703129768372, -0.0016512928996235132, -0.10646338015794754, -0.03356008976697922, 0.042425524443387985, 0.31956228613853455, -0.22325079143047333, 0.030314937233924866, 0.010351935401558876, 0.0655004158616066, 0.030834922567009926, 0.10336394608020782, 0.18446119129657745, 0.1357453167438507, 0.2172979712486267, -0.23038475215435028, -0.24571256339550018, -0.00717855105176568, 0.04718189314007759, -0.24565264582633972, 0.07184542715549469, 1.2131271362304688, -0.005476790945976973, 0.012499546632170677, -0.034598458558321]} +{"t": 13.5324, "q": [-0.15639445185661316, 0.003950852435082197, 0.018949532881379128, 0.31790047883987427, -0.15965278446674347, -0.001658333232626319, -0.10648894309997559, -0.0335686132311821, 0.0423719584941864, 0.3196219503879547, -0.22325079143047333, 0.030314937233924866, 0.010418894700706005, 0.06547770649194717, 0.030850006267428398, 0.10159027576446533, 0.17886456847190857, 0.1371714472770691, 0.21707026660442352, -0.23943284153938293, -0.24565264582633972, -0.007154582533985376, 0.04721784591674805, -0.24199746549129486, 0.07177352160215378, 1.2131271362304688, -0.005476790945976973, 0.012499546632170677, -0.034634411334991455]} +{"t": 13.5491, "q": [-0.15639445185661316, 0.003993463236838579, 0.018922748044133186, 0.3179260492324829, -0.15963996946811676, -0.001665375311858952, -0.10647190362215042, -0.03353452309966087, 0.0423719584941864, 0.31969010829925537, -0.22324663400650024, 0.030322054401040077, 0.010405503213405609, 0.06544768065214157, 0.030851196497678757, 0.09978065639734268, 0.17280054092407227, 0.13935257494449615, 0.21672272682189941, -0.24778583645820618, -0.2456047087907791, -0.007130614016205072, 0.047265782952308655, -0.2376951277256012, 0.07177352160215378, 1.2131271362304688, -0.005440838169306517, 0.01251153089106083, -0.03464639559388161]} +{"t": 13.5658, "q": [-0.15639445185661316, 0.003993463236838579, 0.018949532881379128, 0.31804534792900085, -0.15963996946811676, -0.001665375311858952, -0.1064804270863533, -0.03353452309966087, 0.042412132024765015, 0.3197753429412842, -0.22324231266975403, 0.030314851552248, 0.010284976102411747, 0.06546282023191452, 0.03084114007651806, 0.09798302501440048, 0.1663290560245514, 0.14222878217697144, 0.21633923053741455, -0.25623470544815063, -0.24556875228881836, -0.0071066454984247684, 0.047205861657857895, -0.23297333717346191, 0.07184542715549469, 1.2131391763687134, -0.005452822428196669, 0.012475578114390373, -0.03461044281721115]} +{"t": 13.5825, "q": [-0.15630923211574554, 0.003984940703958273, 0.019016491249203682, 0.3181220591068268, -0.15963996946811676, -0.001665375311858952, -0.10647190362215042, -0.033551570028066635, 0.04249248653650284, 0.31983497738838196, -0.2232464700937271, 0.03030773438513279, 0.010218016803264618, 0.06548552960157394, 0.030826056376099586, 0.09584983438253403, 0.15960590541362762, 0.14547650516033173, 0.21617145836353302, -0.26419225335121155, -0.24552081525325775, -0.0070946612395346165, 0.04728975147008896, -0.22827552258968353, 0.0718933641910553, 1.2131152153015137, -0.005476790945976973, 0.012487562373280525, -0.03455052152276039]} +{"t": 13.5993, "q": [-0.15630070865154266, 0.003942329902201891, 0.019056666642427444, 0.3181646466255188, -0.15964427590370178, -0.0016724223969504237, -0.10647190362215042, -0.03358565643429756, 0.04249248653650284, 0.3199116885662079, -0.22323815524578094, 0.030321968719363213, 0.010137665085494518, 0.06549309939146042, 0.030821029096841812, 0.09279385954141617, 0.1521756947040558, 0.14961107075214386, 0.21620741486549377, -0.2729167640209198, -0.24544891715049744, -0.0070946612395346165, 0.0478290431201458, -0.22279873490333557, 0.07188138365745544, 1.2131152153015137, -0.005428853910416365, 0.012487562373280525, -0.034598458558321]} +{"t": 13.6161, "q": [-0.15630923211574554, 0.003950852435082197, 0.019043276086449623, 0.3182072639465332, -0.15963996946811676, -0.001665375311858952, -0.10645485669374466, -0.033551570028066635, 0.04247909411787987, 0.31997135281562805, -0.22324231266975403, 0.030314851552248, 0.00999035406857729, 0.06547795981168747, 0.03083108551800251, 0.09030113369226456, 0.14502111077308655, 0.15355387330055237, 0.21619541943073273, -0.2814974784851074, -0.24537701904773712, -0.007034740410745144, 0.04866793751716614, -0.21703432500362396, 0.07192932069301605, 1.2131510972976685, -0.005464806687086821, 0.01251153089106083, -0.03453853726387024]} +{"t": 13.6328, "q": [-0.15630923211574554, 0.003942329902201891, 0.019096843898296356, 0.31831806898117065, -0.15964427590370178, -0.0016724223969504237, -0.10645485669374466, -0.03357713297009468, 0.04251926764845848, 0.3199969232082367, -0.22322535514831543, 0.030314680188894272, 0.009548421949148178, 0.06546282023191452, 0.03084114007651806, 0.08829977363348007, 0.13865748047828674, 0.15620239078998566, 0.21596772968769073, -0.2889396846294403, -0.24538899958133698, -0.006974819116294384, 0.050034139305353165, -0.21138975024223328, 0.07198923826217651, 1.2132230997085571, -0.005476790945976973, 0.012487562373280525, -0.034514568746089935]} +{"t": 13.6496, "q": [-0.15627513825893402, 0.0038911974988877773, 0.019217370077967644, 0.31833508610725403, -0.15963996946811676, -0.001665375311858952, -0.10645485669374466, -0.03363678976893425, 0.04265318810939789, 0.3199883997440338, -0.22322551906108856, 0.03032900020480156, 0.009146664291620255, 0.06548552960157394, 0.030826056376099586, 0.08700547367334366, 0.13366006314754486, 0.15724502503871918, 0.21590779721736908, -0.29694512486457825, -0.24535304307937622, -0.00695085059851408, 0.05149621516466141, -0.206440269947052, 0.07196526974439621, 1.2132710218429565, -0.005476790945976973, 0.012499546632170677, -0.03450258448719978]} +{"t": 13.6664, "q": [-0.15621548891067505, 0.0038485866971313953, 0.019364681094884872, 0.31833508610725403, -0.15963996946811676, -0.001665375311858952, -0.10647190362215042, -0.033662356436252594, 0.04273353889584541, 0.3200480341911316, -0.22322119772434235, 0.030321797356009483, 0.008624380454421043, 0.06548552960157394, 0.030826056376099586, 0.08605872094631195, 0.1287824809551239, 0.1583355814218521, 0.2157520055770874, -0.30480679869651794, -0.24524518847465515, -0.006938866339623928, 0.052982259541749954, -0.20140689611434937, 0.07188138365745544, 1.2133429050445557, -0.005464806687086821, 0.012487562373280525, -0.034574490040540695]} +{"t": 13.6832, "q": [-0.15618139505386353, 0.0038144984282553196, 0.019431641325354576, 0.31833508610725403, -0.15964427590370178, -0.0016724223969504237, -0.1064804270863533, -0.03367939963936806, 0.04280049726366997, 0.3200480341911316, -0.22322119772434235, 0.030321797356009483, 0.008369934745132923, 0.06548552960157394, 0.030826056376099586, 0.08476442843675613, 0.12325775623321533, 0.16028901934623718, 0.2156801074743271, -0.313663125038147, -0.24514931440353394, -0.006938866339623928, 0.054803863167762756, -0.19597803056240082, 0.07188138365745544, 1.213330864906311, -0.005464806687086821, 0.012499546632170677, -0.034574490040540695]} +{"t": 13.6999, "q": [-0.15622399747371674, 0.0037889317609369755, 0.01947181671857834, 0.3183436095714569, -0.15963996946811676, -0.001665375311858952, -0.1064804270863533, -0.03369644284248352, 0.04281388968229294, 0.3200480341911316, -0.22322119772434235, 0.030321797356009483, 0.00832975935190916, 0.0654553771018982, 0.03083670884370804, 0.0830267146229744, 0.11722969263792038, 0.16264989972114563, 0.2156801074743271, -0.3226992189884186, -0.24502946436405182, -0.006926882080733776, 0.05687713250517845, -0.19077688455581665, 0.0719173327088356, 1.2133787870407104, -0.005452822428196669, 0.012499546632170677, -0.03453853726387024]} +{"t": 13.7166, "q": [-0.15623252093791962, 0.003720755223184824, 0.019458424299955368, 0.3183436095714569, -0.15963566303253174, -0.0016583194956183434, -0.1064804270863533, -0.033739056438207626, 0.04282728210091591, 0.3200395107269287, -0.22321288287639618, 0.0303360503166914, 0.008289583027362823, 0.06544768065214157, 0.030851196497678757, 0.08156463503837585, 0.11212441325187683, 0.1646033376455307, 0.21574002504348755, -0.3296380937099457, -0.2449575662612915, -0.0068429927341639996, 0.05862683057785034, -0.1860191375017166, 0.07196526974439621, 1.213606595993042, -0.005452822428196669, 0.01251153089106083, -0.03453853726387024]} +{"t": 13.7334, "q": [-0.15621548891067505, 0.0036696228198707104, 0.01949859969317913, 0.3183521330356598, -0.15963996946811676, -0.001665375311858952, -0.1064804270863533, -0.033781666308641434, 0.04288085177540779, 0.3200395107269287, -0.2232087254524231, 0.03034316748380661, 0.008128880523145199, 0.06547026336193085, 0.030845575034618378, 0.08072574436664581, 0.1071629449725151, 0.16683240234851837, 0.21564415097236633, -0.338015079498291, -0.24476581811904907, -0.006831008475273848, 0.05999303236603737, -0.18146513402462006, 0.07192932069301605, 1.2139660120010376, -0.005452822428196669, 0.01251153089106083, -0.03461044281721115]} +{"t": 13.7501, "q": [-0.15621548891067505, 0.003661100286990404, 0.019565559923648834, 0.3183521330356598, -0.15964417159557343, -0.0016442303312942386, -0.10648894309997559, -0.03380723297595978, 0.042907632887363434, 0.3200565576553345, -0.22321288287639618, 0.0303360503166914, 0.008048529736697674, 0.06547795981168747, 0.03083108551800251, 0.07974303513765335, 0.1013745591044426, 0.17041568458080292, 0.21556025743484497, -0.34572091698646545, -0.2445381134748459, -0.006735134404152632, 0.061467092484235764, -0.17706692218780518, 0.07190535217523575, 1.2143255472183228, -0.005476790945976973, 0.012487562373280525, -0.03480219095945358]} +{"t": 13.7669, "q": [-0.15617287158966064, 0.0036014453507959843, 0.019578952342271805, 0.3183521330356598, -0.15963990986347198, -0.0016512792790308595, -0.10647190362215042, -0.03383279964327812, 0.042907632887363434, 0.3200395107269287, -0.22321288287639618, 0.0303360503166914, 0.008102096617221832, 0.06548552960157394, 0.030826056376099586, 0.07879628241062164, 0.09596967697143555, 0.17342372238636017, 0.215200737118721, -0.35443344712257385, -0.24434636533260345, -0.006627276539802551, 0.06296511739492416, -0.17362745106220245, 0.07172558456659317, 1.2145532369613647, -0.005452822428196669, 0.012499546632170677, -0.03548528999090195]} +{"t": 13.7836, "q": [-0.15618139505386353, 0.0035844012163579464, 0.019565559923648834, 0.3183521330356598, -0.15963996946811676, -0.001665375311858952, -0.10647190362215042, -0.033849842846393585, 0.042921025305986404, 0.3200395107269287, -0.2232087254524231, 0.03034316748380661, 0.008115489035844803, 0.06547808647155762, 0.030821625143289566, 0.07802928984165192, 0.09254218637943268, 0.17434650659561157, 0.2148771584033966, -0.36356544494628906, -0.24423851072788239, -0.006495450157672167, 0.06416354328393936, -0.17185379564762115, 0.0715937614440918, 1.214589238166809, -0.005452822428196669, 0.012487562373280525, -0.036384109407663345]} +{"t": 13.8003, "q": [-0.15621548891067505, 0.0035758796148002148, 0.01963251829147339, 0.3183436095714569, -0.15964427590370178, -0.0016724223969504237, -0.1064804270863533, -0.03389245271682739, 0.04297459498047829, 0.32003098726272583, -0.2232087254524231, 0.03034316748380661, 0.008008353412151337, 0.06547795981168747, 0.03083108551800251, 0.07754991948604584, 0.089342400431633, 0.17535318434238434, 0.2149011343717575, -0.3700728714466095, -0.24416659772396088, -0.006483465898782015, 0.06485863029956818, -0.1712186187505722, 0.07156979292631149, 1.2146611213684082, -0.005440838169306517, 0.01245160959661007, -0.03733086213469505]} +{"t": 13.8171, "q": [-0.1561899185180664, 0.0035503129474818707, 0.019739653915166855, 0.3183521330356598, -0.159644216299057, -0.0016583350952714682, -0.10649746656417847, -0.03386688604950905, 0.04304155334830284, 0.32002246379852295, -0.2232087254524231, 0.03034316748380661, 0.007753907702863216, 0.06546282023191452, 0.03084114007651806, 0.07716642320156097, 0.08538760244846344, 0.1772826462984085, 0.21486517786979675, -0.37794652581214905, -0.24397486448287964, -0.006459497381001711, 0.06513426452875137, -0.17127855122089386, 0.07137804478406906, 1.2149248123168945, -0.005476790945976973, 0.01245160959661007, -0.03797800838947296]} +{"t": 13.8338, "q": [-0.15617287158966064, 0.0035673570819199085, 0.019766438752412796, 0.3183521330356598, -0.15964847803115845, -0.0016512861475348473, -0.10649746656417847, -0.03389245271682739, 0.04305494576692581, 0.3200565576553345, -0.22321288287639618, 0.0303360503166914, 0.007539637386798859, 0.06544048339128494, 0.0308278426527977, 0.0767349973320961, 0.0818282887339592, 0.1785050332546234, 0.2149011343717575, -0.38638341426849365, -0.24377112090587616, -0.006375608034431934, 0.0653260126709938, -0.1717459261417389, 0.07113835960626602, 1.21526038646698, -0.005404885392636061, 0.012475578114390373, -0.03850531578063965]} +{"t": 13.8506, "q": [-0.15617287158966064, 0.0035758796148002148, 0.019739653915166855, 0.31833508610725403, -0.15964847803115845, -0.0016512861475348473, -0.1064804270863533, -0.03388392925262451, 0.04302816092967987, 0.32002246379852295, -0.22320456802845, 0.03035028465092182, 0.007539637386798859, 0.06543316692113876, 0.030813947319984436, 0.07606387883424759, 0.07859254628419876, 0.17959560453891754, 0.21481724083423615, -0.3940652906894684, -0.24361532926559448, -0.006339655257761478, 0.06551776081323624, -0.17203354835510254, 0.0710185170173645, 1.2153922319412231, -0.005428853910416365, 0.012487562373280525, -0.038912780582904816]} +{"t": 13.8673, "q": [-0.15613877773284912, 0.0035929237492382526, 0.019699478521943092, 0.3183436095714569, -0.15964847803115845, -0.0016512861475348473, -0.10646338015794754, -0.03387540951371193, 0.04298798367381096, 0.3200480341911316, -0.2232002466917038, 0.030343081802129745, 0.0076467725448310375, 0.06544817984104156, 0.030813351273536682, 0.0751890316605568, 0.07584816217422485, 0.18056632578372955, 0.21466144919395447, -0.4021426737308502, -0.24355541169643402, -0.0062797339633107185, 0.06561363488435745, -0.1720695048570633, 0.07087470591068268, 1.215559959411621, -0.005428853910416365, 0.012475578114390373, -0.03954794257879257]} +{"t": 13.884, "q": [-0.15616434812545776, 0.003661100286990404, 0.01964591071009636, 0.3183521330356598, -0.15963996946811676, -0.001665375311858952, -0.10649746656417847, -0.03381575271487236, 0.042947810143232346, 0.32007360458374023, -0.22320456802845, 0.03035028465092182, 0.0076869479380548, 0.06544085592031479, 0.03079945780336857, 0.07456585019826889, 0.07387076318264008, 0.18088988959789276, 0.21466144919395447, -0.4078231751918793, -0.24354343116283417, -0.006231796927750111, 0.06563760340213776, -0.171865776181221, 0.07080280035734177, 1.2155839204788208, -0.005416869651526213, 0.012475578114390373, -0.04050667956471443]} +{"t": 13.9008, "q": [-0.15612174570560455, 0.003720755223184824, 0.019619127735495567, 0.3183521330356598, -0.15963996946811676, -0.001665375311858952, -0.10651451349258423, -0.03374757617712021, 0.042947810143232346, 0.32007360458374023, -0.22320456802845, 0.03035028465092182, 0.007700339891016483, 0.06545574963092804, 0.030808323994278908, 0.07456585019826889, 0.0724925771355629, 0.18086592853069305, 0.21470938622951508, -0.41249704360961914, -0.2434355616569519, -0.00618386035785079, 0.065601646900177, -0.17160211503505707, 0.07086272537708282, 1.2155959606170654, -0.005440838169306517, 0.012487562373280525, -0.04141748324036598]} +{"t": 13.9175, "q": [-0.1560961753129959, 0.0038400650955736637, 0.019538775086402893, 0.31836065649986267, -0.15962719917297363, -0.0016865048091858625, -0.10651451349258423, -0.03365383297204971, 0.042921025305986404, 0.32007360458374023, -0.22320456802845, 0.03035028465092182, 0.007713731843978167, 0.06544073671102524, 0.03080892004072666, 0.07478156685829163, 0.0713181272149086, 0.1808060109615326, 0.2148531973361969, -0.4165956377983093, -0.24319587647914886, -0.006171876098960638, 0.06552974134683609, -0.17145830392837524, 0.07082676887512207, 1.2155839204788208, -0.0055007594637572765, 0.012487562373280525, -0.042028676718473434]} +{"t": 13.9343, "q": [-0.1560535579919815, 0.003967896569520235, 0.019552167505025864, 0.31837770342826843, -0.15962719917297363, -0.0016865048091858625, -0.10653156042098999, -0.0335686132311821, 0.042934417724609375, 0.32011622190475464, -0.22321288287639618, 0.0303360503166914, 0.007673555985093117, 0.06545587629079819, 0.030798863619565964, 0.07494934648275375, 0.07028748095035553, 0.18073409795761108, 0.21493707597255707, -0.4205504357814789, -0.24299214780330658, -0.00618386035785079, 0.06551776081323624, -0.17142236232757568, 0.07073089480400085, 1.2156199216842651, -0.005476790945976973, 0.012475578114390373, -0.04224439337849617]} +{"t": 13.9512, "q": [-0.15602800250053406, 0.0040360731072723866, 0.019565559923648834, 0.3183862268924713, -0.15962301194667816, -0.001707632327452302, -0.10654859989881516, -0.03351747989654541, 0.042921025305986404, 0.32010769844055176, -0.22321288287639618, 0.0303360503166914, 0.007606596685945988, 0.06545587629079819, 0.030798863619565964, 0.07504522055387497, 0.06946057081222534, 0.18059028685092926, 0.21494905650615692, -0.42197656631469727, -0.24290825426578522, -0.006171876098960638, 0.06548180431127548, -0.17145830392837524, 0.07061105221509933, 1.2156199216842651, -0.005452822428196669, 0.012487562373280525, -0.04231629893183708]} +{"t": 13.9679, "q": [-0.15592573583126068, 0.004087206441909075, 0.019538775086402893, 0.31837770342826843, -0.15961019694805145, -0.001714674523100257, -0.10655712336301804, -0.03346634656190872, 0.042947810143232346, 0.3201247453689575, -0.22320456802845, 0.03035028465092182, 0.007553029339760542, 0.06548590213060379, 0.030797675251960754, 0.07667507231235504, 0.06938866525888443, 0.18047045171260834, 0.21494905650615692, -0.42190465331077576, -0.24271652102470398, -0.006111954804509878, 0.06554172933101654, -0.17143434286117554, 0.07061105221509933, 1.2156438827514648, -0.005452822428196669, 0.012475578114390373, -0.04237622022628784]} +{"t": 13.9846, "q": [-0.15589164197444916, 0.004138338845223188, 0.019565559923648834, 0.31836065649986267, -0.15959307551383972, -0.0017146520549431443, -0.1066167801618576, -0.033432260155677795, 0.042947810143232346, 0.32015031576156616, -0.22321288287639618, 0.0303360503166914, 0.007512853480875492, 0.06554620712995529, 0.03077637404203415, 0.07955128699541092, 0.06958041340112686, 0.18003901839256287, 0.21499699354171753, -0.4214133024215698, -0.24234500527381897, -0.00595615990459919, 0.06556569784879684, -0.17143434286117554, 0.07062304019927979, 1.2156318426132202, -0.005476790945976973, 0.012487562373280525, -0.042388204485177994]} +{"t": 14.0015, "q": [-0.15584902465343475, 0.004189471248537302, 0.019578952342271805, 0.31836917996406555, -0.15960168838500977, -0.0017287549562752247, -0.10662530362606049, -0.03340669348835945, 0.04298798367381096, 0.3201417922973633, -0.22321288287639618, 0.0303360503166914, 0.007285191211849451, 0.06557635962963104, 0.030765723437070847, 0.08213987946510315, 0.06991597265005112, 0.17639581859111786, 0.21472136676311493, -0.4203706681728363, -0.24209333956241608, -0.005968144163489342, 0.06542188674211502, -0.17143434286117554, 0.07058708369731903, 1.2156078815460205, -0.005452822428196669, 0.012475578114390373, -0.0424361415207386]} +{"t": 14.0182, "q": [-0.15585754811763763, 0.004189471248537302, 0.019592342898249626, 0.31837770342826843, -0.15960168838500977, -0.0017287549562752247, -0.10663381963968277, -0.03340669348835945, 0.04298798367381096, 0.3201844096183777, -0.22321288287639618, 0.0303360503166914, 0.006937001831829548, 0.06560663878917694, 0.0307456124573946, 0.083673857152462, 0.0716177299618721, 0.17280054092407227, 0.21468541026115417, -0.41886064410209656, -0.24192555248737335, -0.00595615990459919, 0.06526608765125275, -0.17143434286117554, 0.07059907168149948, 1.2156678438186646, -0.005476790945976973, 0.012487562373280525, -0.0424361415207386]} +{"t": 14.0349, "q": [-0.15585754811763763, 0.004232082050293684, 0.019578952342271805, 0.31837770342826843, -0.15959738194942474, -0.001721699140034616, -0.1066167801618576, -0.03338964655995369, 0.04300137609243393, 0.3202184736728668, -0.22321288287639618, 0.0303360503166914, 0.00676290737465024, 0.06562934815883636, 0.030730528756976128, 0.08465656638145447, 0.07424227893352509, 0.1691453605890274, 0.2145535796880722, -0.41719484329223633, -0.24185365438461304, -0.00595615990459919, 0.06513426452875137, -0.17138640582561493, 0.07059907168149948, 1.2156678438186646, -0.005452822428196669, 0.012475578114390373, -0.042448125779628754]} +{"t": 14.0518, "q": [-0.15583199262619019, 0.004232082050293684, 0.019592342898249626, 0.31837770342826843, -0.15958452224731445, -0.0017146453028544784, -0.10663381963968277, -0.03338964655995369, 0.0430147685110569, 0.32024404406547546, -0.22321288287639618, 0.0303360503166914, 0.00638793408870697, 0.06568965315818787, 0.030709227547049522, 0.0854954645037651, 0.07732222229242325, 0.16608937084674835, 0.21407420933246613, -0.413479745388031, -0.24187761545181274, -0.005968144163489342, 0.06503839045763016, -0.17139838635921478, 0.07051517814397812, 1.2156678438186646, -0.005440838169306517, 0.012475578114390373, -0.04242415726184845]} +{"t": 14.0686, "q": [-0.15575528144836426, 0.004257648717612028, 0.019686086103320122, 0.31836917996406555, -0.15959744155406952, -0.0017357951728627086, -0.10663381963968277, -0.033364083617925644, 0.043121904134750366, 0.320278137922287, -0.22319592535495758, 0.03033587895333767, 0.005303190555423498, 0.06573481857776642, 0.030697977170348167, 0.08615459501743317, 0.08080963045358658, 0.16257800161838531, 0.21352294087409973, -0.40715205669403076, -0.2419135719537735, -0.005992112681269646, 0.06502640247344971, -0.17136242985725403, 0.07049120962619781, 1.2156438827514648, -0.005464806687086821, 0.012463593855500221, -0.0424121730029583]} +{"t": 14.0853, "q": [-0.1556871086359024, 0.004215037915855646, 0.01983339712023735, 0.3183862268924713, -0.1595931351184845, -0.0017287393566220999, -0.10663381963968277, -0.03339817002415657, 0.04329599812626839, 0.3203207552433014, -0.22320856153964996, 0.030328847467899323, 0.004405933897942305, 0.06587862968444824, 0.030602337792515755, 0.08676578849554062, 0.0854235589504242, 0.1573648601770401, 0.21275594830513, -0.40006938576698303, -0.24202142655849457, -0.005968144163489342, 0.06489457935094833, -0.17133846879005432, 0.07049120962619781, 1.2156438827514648, -0.005452822428196669, 0.012475578114390373, -0.04242415726184845]} +{"t": 14.102, "q": [-0.15561893582344055, 0.00418094964697957, 0.01996731571853161, 0.3184032738208771, -0.15959744155406952, -0.0017357951728627086, -0.10665086656808853, -0.033415213227272034, 0.04337634891271591, 0.32039743661880493, -0.22320456802845, 0.03035028465092182, 0.0037631227169185877, 0.06601474434137344, 0.030521193519234657, 0.08755674958229065, 0.09062471240758896, 0.15048591792583466, 0.21149760484695435, -0.39497610926628113, -0.2419135719537735, -0.006028065457940102, 0.06493053585290909, -0.17133846879005432, 0.07049120962619781, 1.2156438827514648, -0.005440838169306517, 0.012463593855500221, -0.04242415726184845]} +{"t": 14.1188, "q": [-0.15553371608257294, 0.004172427114099264, 0.02014141157269478, 0.3183947503566742, -0.15958882868289948, -0.0017216922715306282, -0.1066679134964943, -0.033432260155677795, 0.043604012578725815, 0.3204059600830078, -0.22320456802845, 0.03035028465092182, 0.0029997846577316523, 0.06612777709960938, 0.030483530834317207, 0.08835969120264053, 0.09703627228736877, 0.1432354599237442, 0.21016736328601837, -0.3861676752567291, -0.2419854700565338, -0.005992112681269646, 0.06519418209791183, -0.17131449282169342, 0.07056311517953873, 1.2156797647476196, -0.005428853910416365, 0.012475578114390373, -0.042448125779628754]} +{"t": 14.1357, "q": [-0.15540587902069092, 0.004172427114099264, 0.020422641187906265, 0.3184032738208771, -0.15959317982196808, -0.0017428355058655143, -0.10668495297431946, -0.033432260155677795, 0.04383167624473572, 0.3205082416534424, -0.2231917679309845, 0.03034299612045288, 0.002611419651657343, 0.06630110740661621, 0.03042452037334442, 0.08882708102464676, 0.10507768392562866, 0.13437911868095398, 0.209112748503685, -0.37757501006126404, -0.2419375330209732, -0.006004096940159798, 0.0655776783823967, -0.1712665557861328, 0.07046724110841751, 1.2156918048858643, -0.005452822428196669, 0.012475578114390373, -0.042460110038518906]} +{"t": 14.1524, "q": [-0.1553206592798233, 0.00414686044678092, 0.020596735179424286, 0.31842032074928284, -0.15960174798965454, -0.0017428422579541802, -0.10669347643852234, -0.03344930335879326, 0.04407272860407829, 0.3206360638141632, -0.2231917679309845, 0.03034299612045288, 0.002236446598544717, 0.06652779132127762, 0.030301891267299652, 0.08913866430521011, 0.11353854835033417, 0.12465991079807281, 0.20765067636966705, -0.3668970465660095, -0.24176976084709167, -0.006159891840070486, 0.06575744599103928, -0.17125457525253296, 0.0703713670372963, 1.215943455696106, -0.005476790945976973, 0.012475578114390373, -0.04247209429740906]} +{"t": 14.1691, "q": [-0.15517579019069672, 0.004155382979661226, 0.02083778940141201, 0.3184458911418915, -0.15958452224731445, -0.0017146453028544784, -0.10673608630895615, -0.03345782682299614, 0.044286999851465225, 0.3207809329032898, -0.223183274269104, 0.030342893674969673, 0.0018614735454320908, 0.06673189997673035, 0.030184902250766754, 0.08942628651857376, 0.12250275164842606, 0.11533618718385696, 0.2063923329114914, -0.3557397425174713, -0.24173380434513092, -0.006159891840070486, 0.06581736356019974, -0.1712905317544937, 0.07032343000173569, 1.2162550687789917, -0.005476790945976973, 0.012487562373280525, -0.04248407855629921]} +{"t": 14.1859, "q": [-0.15503942966461182, 0.004155382979661226, 0.021092236042022705, 0.31851404905319214, -0.15958882868289948, -0.0017216922715306282, -0.10676165670156479, -0.03346634656190872, 0.044608402997255325, 0.3208661675453186, -0.2231626659631729, 0.030392834916710854, 0.0017141626449301839, 0.06695884466171265, 0.030043315142393112, 0.08955811709165573, 0.1315028965473175, 0.10495784133672714, 0.20508605241775513, -0.34367161989212036, -0.2416619062423706, -0.006171876098960638, 0.06580538302659988, -0.17127855122089386, 0.0703713670372963, 1.2167104482650757, -0.005440838169306517, 0.012487562373280525, -0.042460110038518906]} +{"t": 14.2029, "q": [-0.1549030840396881, 0.0041639055125415325, 0.02131989784538746, 0.31860780715942383, -0.15958452224731445, -0.0017146453028544784, -0.10676165670156479, -0.0334748700261116, 0.04487624391913414, 0.32094287872314453, -0.22314153611660004, 0.030399763956665993, 0.0015400679549202323, 0.06715580075979233, 0.02990262769162655, 0.0896659716963768, 0.14075472950935364, 0.09449561685323715, 0.2039475440979004, -0.3342999517917633, -0.24151809513568878, -0.006147907581180334, 0.06581736356019974, -0.17127855122089386, 0.07032343000173569, 1.216974139213562, -0.005452822428196669, 0.01245160959661007, -0.042508047074079514]} +{"t": 14.2196, "q": [-0.15485194325447083, 0.0041639055125415325, 0.02149399183690548, 0.31874415278434753, -0.15959307551383972, -0.0017146520549431443, -0.10674460977315903, -0.033491913229227066, 0.04506373032927513, 0.3209599256515503, -0.22312474250793457, 0.030413931235671043, 0.0014998923288658261, 0.06739048659801483, 0.029746180400252342, 0.0899895504117012, 0.15061774849891663, 0.08325441181659698, 0.20237761735916138, -0.3208896219730377, -0.24125443398952484, -0.006243781186640263, 0.06575744599103928, -0.1712905317544937, 0.07031144946813583, 1.2173336744308472, -0.005452822428196669, 0.01245160959661007, -0.042508047074079514]} +{"t": 14.2364, "q": [-0.15482637286186218, 0.0041212947107851505, 0.02168147824704647, 0.318854957818985, -0.15958021581172943, -0.0017075982177630067, -0.10677869617938995, -0.03351747989654541, 0.04526460915803909, 0.32107070088386536, -0.2230866551399231, 0.030420707538723946, 0.0014329327968880534, 0.0674889013171196, 0.02968057431280613, 0.09027716517448425, 0.1591864675283432, 0.07353520393371582, 0.20071180164813995, -0.3117576241493225, -0.24111062288284302, -0.006255765445530415, 0.06576942652463913, -0.17130251228809357, 0.07032343000173569, 1.217441439628601, -0.005452822428196669, 0.012487562373280525, -0.04254399985074997]} +{"t": 14.2532, "q": [-0.1548178493976593, 0.004070162307471037, 0.02184218168258667, 0.3189316391944885, -0.1595887839794159, -0.0017076049698516726, -0.10677869617938995, -0.033551570028066635, 0.04537174105644226, 0.3211474120616913, -0.22304925322532654, 0.03048478066921234, 0.0014329327968880534, 0.06754946708679199, 0.02964020147919655, 0.09050486981868744, 0.16836638748645782, 0.06326472759246826, 0.19893814623355865, -0.3001808822154999, -0.2410147488117218, -0.0063037024810910225, 0.06574545800685883, -0.17130251228809357, 0.07032343000173569, 1.2179088592529297, -0.0055007594637572765, 0.012475578114390373, -0.04254399985074997]} +{"t": 14.2699, "q": [-0.15480934083461761, 0.0040360731072723866, 0.021882357075810432, 0.3189913034439087, -0.1596015840768814, -0.0017005716217681766, -0.10678721964359283, -0.033602699637413025, 0.04557261988520622, 0.3211814761161804, -0.22304075956344604, 0.03048471361398697, 0.0014865003759041429, 0.06758731603622437, 0.029614968225359917, 0.09072058647871017, 0.17736653983592987, 0.05273059010505676, 0.1977277249097824, -0.29037776589393616, -0.24100276827812195, -0.0062677497044205666, 0.06575744599103928, -0.17130251228809357, 0.07027550041675568, 1.2184841632843018, -0.005440838169306517, 0.012463593855500221, -0.04254399985074997]} +{"t": 14.2866, "q": [-0.1547752469778061, 0.003933808300644159, 0.0219894926995039, 0.31910207867622375, -0.1595972776412964, -0.0016935245366767049, -0.10675313323736191, -0.033662356436252594, 0.045626189559698105, 0.32120704650878906, -0.223011314868927, 0.03050587698817253, 0.001607027486898005, 0.06764031201601028, 0.029579641297459602, 0.09080447256565094, 0.18671423196792603, 0.04158526286482811, 0.19697272777557373, -0.2786811590194702, -0.2409907877445221, -0.00635163951665163, 0.06563760340213776, -0.17130251228809357, 0.07032343000173569, 1.2197544574737549, -0.005440838169306517, 0.012475578114390373, -0.04254399985074997]} +{"t": 14.3033, "q": [-0.15479229390621185, 0.003823020961135626, 0.02200288511812687, 0.31919583678245544, -0.1595972776412964, -0.0016935245366767049, -0.10676165670156479, -0.033730532974004745, 0.0457199327647686, 0.32125818729400635, -0.22298204898834229, 0.030541395768523216, 0.0015936355339363217, 0.06764031201601028, 0.029579641297459602, 0.0908883661031723, 0.1952589750289917, 0.03193796053528786, 0.19639748334884644, -0.26841068267822266, -0.2409668117761612, -0.0063276709988713264, 0.06551776081323624, -0.17131449282169342, 0.07023954391479492, 1.2207491397857666, -0.005476790945976973, 0.012475578114390373, -0.04254399985074997]} +{"t": 14.3201, "q": [-0.15474967658519745, 0.0037974542938172817, 0.022217154502868652, 0.3192043602466583, -0.1595887839794159, -0.0017076049698516726, -0.10678721964359283, -0.033781666308641434, 0.04588063433766365, 0.321283757686615, -0.22294463217258453, 0.030605468899011612, 0.0015132841654121876, 0.06767059117555618, 0.029559453949332237, 0.09080447256565094, 0.20392358303070068, 0.021260015666484833, 0.19603796303272247, -0.25755298137664795, -0.24087093770503998, -0.0063276709988713264, 0.06536196172237396, -0.17130251228809357, 0.07022756338119507, 1.222283124923706, -0.005476790945976973, 0.012463593855500221, -0.04254399985074997]} +{"t": 14.3368, "q": [-0.15471558272838593, 0.0037292768247425556, 0.02237785793840885, 0.31923845410346985, -0.15959297120571136, -0.0016864774515852332, -0.10678721964359283, -0.03381575271487236, 0.04608151316642761, 0.32129228115081787, -0.2229195237159729, 0.030633870512247086, 0.0013391895918175578, 0.06770087778568268, 0.02953926846385002, 0.09057677537202835, 0.212384432554245, 0.010330402292311192, 0.19575034081935883, -0.2464076578617096, -0.24084697663784027, -0.006375608034431934, 0.06526608765125275, -0.1712665557861328, 0.07021557539701462, 1.2235534191131592, -0.005476790945976973, 0.01245160959661007, -0.04254399985074997]} +{"t": 14.3535, "q": [-0.15465593338012695, 0.0037292768247425556, 0.0225385595113039, 0.31922993063926697, -0.15959297120571136, -0.0016864774515852332, -0.10679574310779572, -0.03382427617907524, 0.04638952761888504, 0.32129228115081787, -0.22286498546600342, 0.030683454126119614, 0.0011517030652612448, 0.06771601736545563, 0.02952917478978634, 0.09057677537202835, 0.22126474976539612, -0.00032357408781535923, 0.19537882506847382, -0.23600535094738007, -0.24079903960227966, -0.006375608034431934, 0.06523013859987259, -0.1712905317544937, 0.07017962634563446, 1.2245361804962158, -0.005476790945976973, 0.01245160959661007, -0.04254399985074997]} +{"t": 14.3703, "q": [-0.1546303629875183, 0.003703711088746786, 0.022766223177313805, 0.3192043602466583, -0.15961425006389618, -0.001651258789934218, -0.1068468764424324, -0.03383279964327812, 0.046603795140981674, 0.321283757686615, -0.22284452617168427, 0.03074769861996174, 0.0009106489014811814, 0.06771627068519592, 0.029510226100683212, 0.09051685035228729, 0.22888672351837158, -0.009755159728229046, 0.194635808467865, -0.2253873199224472, -0.24085895717144012, -0.006363623775541782, 0.06529005616903305, -0.17127855122089386, 0.07019160687923431, 1.2254948616027832, -0.005476790945976973, 0.01245160959661007, -0.04255598410964012]} +{"t": 14.387, "q": [-0.1546388864517212, 0.003720755223184824, 0.022886749356985092, 0.3192043602466583, -0.15961425006389618, -0.001651258789934218, -0.10688948631286621, -0.03383279964327812, 0.04681806638836861, 0.32130080461502075, -0.22283205389976501, 0.030769050121307373, 0.0006026353221386671, 0.06770870089530945, 0.029515273869037628, 0.09048090130090714, 0.23758725821971893, -0.020361198112368584, 0.193533256649971, -0.2154763638973236, -0.2409907877445221, -0.0063276709988713264, 0.06543386727571487, -0.17125457525253296, 0.07015565782785416, 1.2267892360687256, -0.0054887752048671246, 0.01245160959661007, -0.04255598410964012]} +{"t": 14.4038, "q": [-0.1546303629875183, 0.00369518855586648, 0.02299388498067856, 0.31919583678245544, -0.1596270501613617, -0.0016442253254354, -0.10688948631286621, -0.03383279964327812, 0.046951986849308014, 0.32130080461502075, -0.2228192538022995, 0.030761761590838432, 0.0005356758483685553, 0.06771627068519592, 0.029510226100683212, 0.09048090130090714, 0.24565264582633972, -0.030643664300441742, 0.192191019654274, -0.2037438154220581, -0.24135030806064606, -0.006375608034431934, 0.06546982377767563, -0.17125457525253296, 0.07013168931007385, 1.2285988330841064, -0.005476790945976973, 0.01245160959661007, -0.04255598410964012]} +{"t": 14.4206, "q": [-0.15462183952331543, 0.0037122326903045177, 0.023060845211148262, 0.3191702663898468, -0.1596270054578781, -0.0016301380237564445, -0.10693209618330002, -0.033849842846393585, 0.04708590358495712, 0.321283757686615, -0.22282789647579193, 0.030776167288422585, 0.0004955001641064882, 0.06770870089530945, 0.029515273869037628, 0.09042097628116608, 0.2545928955078125, -0.04109390825033188, 0.1902136206626892, -0.19633756577968597, -0.2416379302740097, -0.00635163951665163, 0.0655537098646164, -0.17125457525253296, 0.0700957328081131, 1.2303844690322876, -0.0055007594637572765, 0.012463593855500221, -0.04255598410964012]} +{"t": 14.4374, "q": [-0.1545877605676651, 0.003703711088746786, 0.023060845211148262, 0.3191617429256439, -0.15962274372577667, -0.0016371783567592502, -0.10696618258953094, -0.033849842846393585, 0.047152865678071976, 0.32129228115081787, -0.22282375395298004, 0.030783284455537796, 0.00046871634549461305, 0.0677235871553421, 0.029524128884077072, 0.08979780226945877, 0.262778103351593, -0.05008207634091377, 0.18828415870666504, -0.18603113293647766, -0.2418895959854126, -0.006399576086550951, 0.0655776783823967, -0.1712665557861328, 0.07010772079229355, 1.2318705320358276, -0.0055007594637572765, 0.012475578114390373, -0.04255598410964012]} +{"t": 14.4541, "q": [-0.15457071363925934, 0.003720755223184824, 0.023141195997595787, 0.3191191256046295, -0.15961843729019165, -0.0016301224241033196, -0.10700879245996475, -0.033841319382190704, 0.0472332164645195, 0.3212411403656006, -0.22281959652900696, 0.030790401622653008, 0.00036158118746243417, 0.06776143610477448, 0.02949889563024044, 0.08894691616296768, 0.2720898389816284, -0.06053232029080391, 0.18643859028816223, -0.1768631935119629, -0.24194952845573425, -0.00635163951665163, 0.06561363488435745, -0.17125457525253296, 0.07015565782785416, 1.2329010963439941, -0.005464806687086821, 0.012487562373280525, -0.04255598410964012]} +{"t": 14.4709, "q": [-0.1544940173625946, 0.003720755223184824, 0.02319476380944252, 0.319085031747818, -0.1596270501613617, -0.0016442253254354, -0.10705992579460144, -0.03382427617907524, 0.047300174832344055, 0.3212326169013977, -0.22281941771507263, 0.03077608160674572, 0.0002812298189383, 0.06779197603464127, 0.02945975959300995, 0.0881439745426178, 0.2818809747695923, -0.07170161604881287, 0.18435333669185638, -0.16625715792179108, -0.24204540252685547, -0.006471481639891863, 0.06561363488435745, -0.17125457525253296, 0.0700957328081131, 1.2337759733200073, -0.005476790945976973, 0.012475578114390373, -0.04255598410964012]} +{"t": 14.4876, "q": [-0.15448549389839172, 0.003746321890503168, 0.02334207482635975, 0.319042444229126, -0.1596270501613617, -0.0016442253254354, -0.10711105912923813, -0.03380723297595978, 0.04744748771190643, 0.3212326169013977, -0.22281110286712646, 0.030790334567427635, -6.695948104606941e-05, 0.06786742806434631, 0.02942824177443981, 0.08735302090644836, 0.2908451557159424, -0.08279900997877121, 0.18098576366901398, -0.15790414810180664, -0.24203340709209442, -0.006459497381001711, 0.06554172933101654, -0.1712665557861328, 0.07005978375673294, 1.2343032360076904, -0.0055007594637572765, 0.01245160959661007, -0.04255598410964012]} +{"t": 14.5044, "q": [-0.15445992350578308, 0.0037718876264989376, 0.02334207482635975, 0.3190253973007202, -0.15963560342788696, -0.0016442321939393878, -0.10713662952184677, -0.033781666308641434, 0.04750105366110802, 0.3212326169013977, -0.22282375395298004, 0.030783284455537796, -0.0003214055032003671, 0.06788256764411926, 0.02941814810037613, 0.0869215875864029, 0.30079206824302673, -0.09352489560842514, 0.17719875276088715, -0.14790931344032288, -0.24209333956241608, -0.006591323763132095, 0.06548180431127548, -0.17125457525253296, 0.07010772079229355, 1.2346867322921753, -0.005464806687086821, 0.012475578114390373, -0.04255598410964012]} +{"t": 14.5212, "q": [-0.1544514000415802, 0.0038144984282553196, 0.023422425612807274, 0.31897425651550293, -0.15963982045650482, -0.0016230959445238113, -0.10719627887010574, -0.033739056438207626, 0.04760818928480148, 0.3212240934371948, -0.22281959652900696, 0.030790401622653008, -0.0005088920588605106, 0.06791284680366516, 0.029397962614893913, 0.0863463431596756, 0.30957651138305664, -0.10584467649459839, 0.17410682141780853, -0.13868145644664764, -0.24206936359405518, -0.006531402934342623, 0.0655537098646164, -0.17123061418533325, 0.07004779577255249, 1.2348066568374634, -0.005440838169306517, 0.012487562373280525, -0.04254399985074997]} +{"t": 14.5379, "q": [-0.15448549389839172, 0.0038144984282553196, 0.023475993424654007, 0.31892311573028564, -0.15964831411838531, -0.0016090153949335217, -0.10727298259735107, -0.033730532974004745, 0.04774210974574089, 0.3211985230445862, -0.22281959652900696, 0.030790401622653008, -0.0007767299539409578, 0.0679582729935646, 0.029367681592702866, 0.0860707089304924, 0.3189961016178131, -0.11791279166936874, 0.17065536975860596, -0.12704476714134216, -0.24206936359405518, -0.006627276539802551, 0.06545783579349518, -0.17125457525253296, 0.07004779577255249, 1.2351422309875488, -0.005476790945976973, 0.012475578114390373, -0.04254399985074997]} +{"t": 14.5546, "q": [-0.15445992350578308, 0.003823020961135626, 0.023636694997549057, 0.3188038170337677, -0.1596440076828003, -0.001601968426257372, -0.10738376528024673, -0.033722009509801865, 0.04791620373725891, 0.3211814761161804, -0.22281542420387268, 0.03079753741621971, -0.0011249192757532, 0.06800369173288345, 0.029337402433156967, 0.08567522466182709, 0.32797229290008545, -0.13075987994670868, 0.16763533651828766, -0.11542007327079773, -0.24206936359405518, -0.006615292280912399, 0.06536196172237396, -0.17123061418533325, 0.07001184672117233, 1.2351422309875488, -0.005476790945976973, 0.012439625337719917, -0.04254399985074997]} +{"t": 14.5717, "q": [-0.154408797621727, 0.0038400650955736637, 0.023770615458488464, 0.3187697231769562, -0.15965257585048676, -0.0016019664471969008, -0.10747750848531723, -0.0337049663066864, 0.04809029772877693, 0.3211985230445862, -0.22281959652900696, 0.030790401622653008, -0.0014998923288658261, 0.0680641308426857, 0.029306504875421524, 0.08492022007703781, 0.33708029985427856, -0.14322347939014435, 0.16654478013515472, -0.10467022657394409, -0.24209333956241608, -0.006639260798692703, 0.06536196172237396, -0.1712425947189331, 0.07005978375673294, 1.2351781129837036, -0.005464806687086821, 0.012463593855500221, -0.04254399985074997]} +{"t": 14.5884, "q": [-0.15442584455013275, 0.0038400650955736637, 0.02387774921953678, 0.3187271058559418, -0.159656822681427, -0.001594926230609417, -0.10751160234212875, -0.0337049663066864, 0.04823760688304901, 0.32116442918777466, -0.22282789647579193, 0.030776167288422585, -0.0019150411244481802, 0.0681246966123581, 0.029266130179166794, 0.08387759327888489, 0.3457329273223877, -0.1558428704738617, 0.16628111898899078, -0.09341703355312347, -0.24209333956241608, -0.006711166352033615, 0.06536196172237396, -0.1712425947189331, 0.07004779577255249, 1.2352739572525024, -0.0054887752048671246, 0.012463593855500221, -0.04254399985074997]} +{"t": 14.6051, "q": [-0.15444287657737732, 0.0038400650955736637, 0.02401166968047619, 0.31863337755203247, -0.15966112911701202, -0.0016019733157008886, -0.10763943195343018, -0.033722009509801865, 0.04838491976261139, 0.3211474120616913, -0.22281527519226074, 0.03078319877386093, -0.0025980276986956596, 0.06813983619213104, 0.02925603650510311, 0.08312258869409561, 0.35335487127304077, -0.16803082823753357, 0.16626913845539093, -0.08140884339809418, -0.24211730062961578, -0.006711166352033615, 0.06533799320459366, -0.1712425947189331, 0.06999985873699188, 1.2353699207305908, -0.0054887752048671246, 0.012439625337719917, -0.04254399985074997]} +{"t": 14.6218, "q": [-0.15448549389839172, 0.0038400650955736637, 0.02405184507369995, 0.3185396194458008, -0.15965251624584198, -0.0015878791455179453, -0.10771612823009491, -0.033730532974004745, 0.04839831218123436, 0.3211047947406769, -0.22283223271369934, 0.03078337013721466, -0.003575636073946953, 0.06814740598201752, 0.029250990599393845, 0.08267916738986969, 0.36067724227905273, -0.17948773503303528, 0.16624517738819122, -0.07087470591068268, -0.24212928116321564, -0.006699182093143463, 0.06524211913347244, -0.17123061418533325, 0.06996390968561172, 1.2354657649993896, -0.005452822428196669, 0.012439625337719917, -0.04253201559185982]} +{"t": 14.6387, "q": [-0.15450254082679749, 0.0037974542938172817, 0.02403845265507698, 0.31851404905319214, -0.15964820981025696, -0.0015808233292773366, -0.10774169862270355, -0.03375609964132309, 0.04838491976261139, 0.32107070088386536, -0.2228155881166458, 0.030811857432127, -0.0051424880512058735, 0.06813226640224457, 0.029261084273457527, 0.08240353316068649, 0.3686707317829132, -0.19089671969413757, 0.16631707549095154, -0.05878262594342232, -0.24210532009601593, -0.006663229316473007, 0.06519418209791183, -0.1711946576833725, 0.07004779577255249, 1.2356455326080322, -0.005440838169306517, 0.012463593855500221, -0.042508047074079514]} +{"t": 14.6554, "q": [-0.15450254082679749, 0.003763366024941206, 0.02405184507369995, 0.31842032074928284, -0.15966959297657013, -0.0015737967332825065, -0.10775873810052872, -0.03376462310552597, 0.04835813492536545, 0.32101956009864807, -0.22282391786575317, 0.030797604471445084, -0.00743250222876668, 0.06816986948251724, 0.029254797846078873, 0.08269115537405014, 0.37729936838150024, -0.20150277018547058, 0.16650882363319397, -0.04542021453380585, -0.24211730062961578, -0.006699182093143463, 0.06509830802679062, -0.1711467206478119, 0.0700717642903328, 1.2362687587738037, -0.005464806687086821, 0.012439625337719917, -0.042508047074079514]} +{"t": 14.6723, "q": [-0.1544940173625946, 0.0037718876264989376, 0.024158980697393417, 0.3183436095714569, -0.1596653312444687, -0.0015808457974344492, -0.10786952823400497, -0.033781666308641434, 0.04842509329319, 0.3210110366344452, -0.2228155881166458, 0.030811857432127, -0.010110881179571152, 0.06813958287239075, 0.029274985194206238, 0.08295480906963348, 0.38460972905158997, -0.21051490306854248, 0.1669043004512787, -0.034634411334991455, -0.24211730062961578, -0.006687197834253311, 0.06501442193984985, -0.17108680307865143, 0.07010772079229355, 1.2369518280029297, -0.005428853910416365, 0.01245160959661007, -0.042508047074079514]} +{"t": 14.6891, "q": [-0.15455366671085358, 0.003763366024941206, 0.024158980697393417, 0.3182413578033447, -0.1596652865409851, -0.0015667496481910348, -0.10786952823400497, -0.03377314284443855, 0.048451878130435944, 0.32097694277763367, -0.22282807528972626, 0.030790487304329872, -0.012400895357131958, 0.06813958287239075, 0.029274985194206238, 0.08309862017631531, 0.39120107889175415, -0.2189997285604477, 0.16728779673576355, -0.025382589548826218, -0.2421652376651764, -0.006615292280912399, 0.06501442193984985, -0.1709429919719696, 0.07002382725477219, 1.2371795177459717, -0.005476790945976973, 0.01245160959661007, -0.04247209429740906]} +{"t": 14.7059, "q": [-0.15455366671085358, 0.003780410159379244, 0.024092020466923714, 0.3182072639465332, -0.15966959297657013, -0.0015737967332825065, -0.10786952823400497, -0.03377314284443855, 0.04837152734398842, 0.3209684193134308, -0.22282391786575317, 0.030797604471445084, -0.014476639218628407, 0.06814716011285782, 0.02926993928849697, 0.08297877758741379, 0.39601871371269226, -0.2256150245666504, 0.16741962730884552, -0.015867114067077637, -0.24275246262550354, -0.006675213575363159, 0.06500244140625, -0.17093101143836975, 0.06999985873699188, 1.2375869750976562, -0.005464806687086821, 0.012439625337719917, -0.042448125779628754]} +{"t": 14.7228, "q": [-0.15453661978244781, 0.0037718876264989376, 0.024132195860147476, 0.31818169355392456, -0.15968234837055206, -0.0015526760835200548, -0.1079036146402359, -0.03376462310552597, 0.04842509329319, 0.32093435525894165, -0.22282807528972626, 0.030790487304329872, -0.016097059473395348, 0.06813958287239075, 0.029274985194206238, 0.08193615078926086, 0.3988110423088074, -0.22948592901229858, 0.16746756434440613, -0.007514109369367361, -0.2434116005897522, -0.006735134404152632, 0.06491854786872864, -0.1708231419324875, 0.06998787820339203, 1.2377067804336548, -0.005452822428196669, 0.01242764201015234, -0.042448125779628754]} +{"t": 14.7395, "q": [-0.1545877605676651, 0.0037889317609369755, 0.024145588278770447, 0.3181220591068268, -0.15969935059547424, -0.0015245063696056604, -0.10789509862661362, -0.03376462310552597, 0.04841170459985733, 0.32084059715270996, -0.22282391786575317, 0.030797604471445084, -0.017101449891924858, 0.06813958287239075, 0.029274985194206238, 0.08023438602685928, 0.4020228087902069, -0.23365643620491028, 0.1676233559846878, -0.004254399798810482, -0.2437831163406372, -0.0071066454984247684, 0.06490656733512878, -0.17071528732776642, 0.06998787820339203, 1.2377188205718994, -0.005476790945976973, 0.012439625337719917, -0.042448125779628754]} +{"t": 14.7563, "q": [-0.15461333096027374, 0.003823020961135626, 0.024132195860147476, 0.3180709183216095, -0.15970365703105927, -0.0015315534546971321, -0.10789509862661362, -0.033722009509801865, 0.04843848571181297, 0.32080650329589844, -0.22284087538719177, 0.030797775834798813, -0.017556775361299515, 0.06810955703258514, 0.029276223853230476, 0.07822103798389435, 0.4045754671096802, -0.23660455644130707, 0.1676712930202484, 0.0005992112564854324, -0.24446621537208557, -0.007765777874737978, 0.06489457935094833, -0.1706433892250061, 0.07003581523895264, 1.2377307415008545, -0.0055007594637572765, 0.012439625337719917, -0.04242415726184845]} +{"t": 14.773, "q": [-0.1546303629875183, 0.0038059758953750134, 0.024118803441524506, 0.3180283010005951, -0.15972492098808289, -0.001496334676630795, -0.10791213810443878, -0.03374757617712021, 0.04839831218123436, 0.32075539231300354, -0.2228367179632187, 0.030804893001914024, -0.017677301540970802, 0.0681244432926178, 0.02928507886826992, 0.07656721770763397, 0.40555816888809204, -0.23753932118415833, 0.16763533651828766, 0.00529702752828598, -0.24508939683437347, -0.008832373656332493, 0.06574545800685883, -0.1706433892250061, 0.07003581523895264, 1.2383779287338257, -0.0054887752048671246, 0.01242764201015234, -0.0424361415207386]} +{"t": 14.79, "q": [-0.15469002723693848, 0.0038144984282553196, 0.024105412885546684, 0.3180197775363922, -0.15972492098808289, -0.001496334676630795, -0.1079036146402359, -0.03374757617712021, 0.04834474250674248, 0.3206957280635834, -0.2228367179632187, 0.030804893001914024, -0.017436247318983078, 0.06808684766292572, 0.029291363433003426, 0.07554855942726135, 0.4056660234928131, -0.23763519525527954, 0.1669282764196396, 0.009527458809316158, -0.24662336707115173, -0.009515474550426006, 0.0668240413069725, -0.17063139379024506, 0.07003581523895264, 1.2396003007888794, -0.0055007594637572765, 0.012463593855500221, -0.04242415726184845]} +{"t": 14.8067, "q": [-0.1546815037727356, 0.003780410159379244, 0.023971492424607277, 0.3180283010005951, -0.15972067415714264, -0.0015033837407827377, -0.1078610047698021, -0.03377314284443855, 0.04818404093384743, 0.32067015767097473, -0.22282807528972626, 0.030790487304329872, -0.016672909259796143, 0.0680944174528122, 0.02928631752729416, 0.07470966130495071, 0.40540236234664917, -0.23793481290340424, 0.16608937084674835, 0.012799152173101902, -0.24994300305843353, -0.01011468656361103, 0.06786666810512543, -0.1705954521894455, 0.06999985873699188, 1.2409425973892212, -0.005476790945976973, 0.012463593855500221, -0.04242415726184845]} +{"t": 14.8235, "q": [-0.1546815037727356, 0.0037718876264989376, 0.023810790851712227, 0.31804534792900085, -0.15971636772155762, -0.001496336655691266, -0.10783544182777405, -0.03376462310552597, 0.04809029772877693, 0.3206957280635834, -0.2228410392999649, 0.0308120958507061, -0.01577565260231495, 0.06810198724269867, 0.029281269758939743, 0.07437410205602646, 0.40491101145744324, -0.23830631375312805, 0.16593357920646667, 0.01510012336075306, -0.25503629446029663, -0.010606039315462112, 0.06813032180070877, -0.1705954521894455, 0.06998787820339203, 1.2427282333374023, -0.005464806687086821, 0.012475578114390373, -0.042460110038518906]} +{"t": 14.8403, "q": [-0.15469855070114136, 0.0037718876264989376, 0.02367687225341797, 0.3181646466255188, -0.15970785915851593, -0.0015104170888662338, -0.10785248130559921, -0.03376462310552597, 0.047942984849214554, 0.320721298456192, -0.22283239662647247, 0.030797690153121948, -0.015159625560045242, 0.0680641308426857, 0.029306504875421524, 0.07441005110740662, 0.40447959303855896, -0.23851005733013153, 0.1660294532775879, 0.019414445385336876, -0.26032134890556335, -0.010845723561942577, 0.06795055419206619, -0.1705714762210846, 0.06992795318365097, 1.2443101406097412, -0.0054887752048671246, 0.012463593855500221, -0.042448125779628754]} +{"t": 14.8571, "q": [-0.15471558272838593, 0.0038315425626933575, 0.023569736629724503, 0.3182413578033447, -0.15969935059547424, -0.0015245063696056604, -0.10783544182777405, -0.0337049663066864, 0.047782283276319504, 0.3207639157772064, -0.2228367179632187, 0.030804893001914024, -0.01471769344061613, 0.06801151484251022, 0.029313407838344574, 0.07451791316270828, 0.40325719118118286, -0.2388935387134552, 0.16620922088623047, 0.02575409971177578, -0.2664932310581207, -0.010953581891953945, 0.06766293197870255, -0.170523539185524, 0.06997589021921158, 1.2451850175857544, -0.005464806687086821, 0.012463593855500221, -0.04242415726184845]} +{"t": 14.8739, "q": [-0.15474967658519745, 0.0038741533644497395, 0.023422425612807274, 0.3183862268924713, -0.15969085693359375, -0.0015385868027806282, -0.10778430849313736, -0.033602699637413025, 0.04767514765262604, 0.32084059715270996, -0.22283223271369934, 0.03078337013721466, -0.014356112107634544, 0.06800394505262375, 0.02931845374405384, 0.07455386221408844, 0.4020947217941284, -0.23932497203350067, 0.16623318195343018, 0.032764870673418045, -0.2722216844558716, -0.010989534668624401, 0.06754309684038162, -0.170523539185524, 0.06996390968561172, 1.2454485893249512, -0.0055127437226474285, 0.01245160959661007, -0.04247209429740906]} +{"t": 14.8907, "q": [-0.1547326296567917, 0.003950852435082197, 0.023275114595890045, 0.3185396194458008, -0.15969085693359375, -0.0015385868027806282, -0.10771612823009491, -0.03356008976697922, 0.04758140444755554, 0.32094287872314453, -0.2228367179632187, 0.030804893001914024, -0.014048098586499691, 0.06798148900270462, 0.029314646497368813, 0.07449394464492798, 0.4008723199367523, -0.23994815349578857, 0.16623318195343018, 0.03760650008916855, -0.2795080840587616, -0.010965566150844097, 0.06723150610923767, -0.17053551971912384, 0.06999985873699188, 1.2455085515975952, -0.0055247279815375805, 0.01245160959661007, -0.042460110038518906]} +{"t": 14.9075, "q": [-0.1547241061925888, 0.004010507371276617, 0.02318137139081955, 0.31859076023101807, -0.1596737802028656, -0.001552669215016067, -0.10766499489545822, -0.03350895643234253, 0.047487661242485046, 0.3210025131702423, -0.22283639013767242, 0.03077625297009945, -0.013981139287352562, 0.06800432503223419, 0.029290033504366875, 0.07406251132488251, 0.39998549222946167, -0.24017585813999176, 0.16619724035263062, 0.044137902557849884, -0.2865188717842102, -0.010953581891953945, 0.06694388389587402, -0.170523539185524, 0.06996390968561172, 1.245532512664795, -0.0055007594637572765, 0.012475578114390373, -0.042460110038518906]} +{"t": 14.9242, "q": [-0.1546815037727356, 0.004070162307471037, 0.023114411160349846, 0.31869304180145264, -0.1596737802028656, -0.001552669215016067, -0.1076309084892273, -0.033483389765024185, 0.04742070287466049, 0.3211388885974884, -0.22282807528972626, 0.030790487304329872, -0.014061490073800087, 0.06803461164236069, 0.02926984801888466, 0.07306782156229019, 0.3992784321308136, -0.24022379517555237, 0.16598151624202728, 0.05229916051030159, -0.29125261306762695, -0.010893660597503185, 0.06675213575363159, -0.17051155865192413, 0.07001184672117233, 1.2455204725265503, -0.0054887752048671246, 0.012475578114390373, -0.04248407855629921]} +{"t": 14.9409, "q": [-0.15464740991592407, 0.004172427114099264, 0.02302066795527935, 0.3187611997127533, -0.15966959297657013, -0.0015737967332825065, -0.1075797751545906, -0.033372603356838226, 0.04734035208821297, 0.3211985230445862, -0.22283223271369934, 0.03078337013721466, -0.014208801090717316, 0.06801971793174744, 0.029260993003845215, 0.07143796980381012, 0.39869120717048645, -0.24031966924667358, 0.16589762270450592, 0.0577879324555397, -0.2956867814064026, -0.010821755044162273, 0.06670419871807098, -0.17051155865192413, 0.07003581523895264, 1.2455564737319946, -0.0054887752048671246, 0.01245160959661007, -0.04247209429740906]} +{"t": 14.9577, "q": [-0.15467298030853271, 0.004283214453607798, 0.02299388498067856, 0.31882938742637634, -0.1596652865409851, -0.0015667496481910348, -0.10759682208299637, -0.033304426819086075, 0.04734035208821297, 0.3212326169013977, -0.22284503281116486, 0.0307906586676836, -0.014597166329622269, 0.06802767515182495, 0.02922755852341652, 0.06948453933000565, 0.39786428213119507, -0.2398882359266281, 0.16593357920646667, 0.06638062000274658, -0.30095985531806946, -0.010641992092132568, 0.06670419871807098, -0.170523539185524, 0.06998787820339203, 1.2456283569335938, -0.0055007594637572765, 0.012475578114390373, -0.042460110038518906]} +{"t": 14.9746, "q": [-0.15465593338012695, 0.004376957658678293, 0.02300727739930153, 0.318897545337677, -0.1596653312444687, -0.0015808457974344492, -0.10758829861879349, -0.0332021601498127, 0.04735374450683594, 0.3212411403656006, -0.22283205389976501, 0.030769050121307373, -0.01505249086767435, 0.0680125281214714, 0.029237639158964157, 0.06765095144510269, 0.3968576192855835, -0.23925307393074036, 0.1661013662815094, 0.07438608258962631, -0.30713173747062683, -0.010354370810091496, 0.06676411628723145, -0.17049957811832428, 0.06995192170143127, 1.2456523180007935, -0.0055007594637572765, 0.012463593855500221, -0.042448125779628754]} +{"t": 14.9915, "q": [-0.1546303629875183, 0.0044280909933149815, 0.02302066795527935, 0.31892311573028564, -0.1596653312444687, -0.0015808457974344492, -0.1075797751545906, -0.03313398361206055, 0.04739391803741455, 0.3212411403656006, -0.22283639013767242, 0.03077625297009945, -0.015347111970186234, 0.06800495833158493, 0.029242679476737976, 0.06533799320459366, 0.39541950821876526, -0.2388935387134552, 0.1663290560245514, 0.08297877758741379, -0.31194937229156494, -0.01005476526916027, 0.06701578944921494, -0.17051155865192413, 0.06998787820339203, 1.2456523180007935, -0.0055007594637572765, 0.012463593855500221, -0.042448125779628754]} diff --git a/Data/Notes/Note.txt b/Data/Notes/Note.txt new file mode 100644 index 0000000..b22f27f --- /dev/null +++ b/Data/Notes/Note.txt @@ -0,0 +1,41 @@ + + + + + + + + + +welcome_single = "Hello, welcome. We will take a photo together. Would you like a photo?" + + + + +welcome_group = "Hello everyone, welcome. We will take a photo together. Would your group like a photo?" +welcome_returning = "Welcome back. Would you like another photo?" + +frame_single = "Great. Please stand with me in front of the camera, stay in the center, and look at the camera." +frame_group = "Great. Please stand with me in front of the camera, stay together in the center, and look at the camera." + +confirm_reminder = "Please say yes photo to continue, or no photo to cancel." +visitor_left = "No worries. I will wait here for the next visitor." +declined = "No problem. We can do it anytime." +confirm_timeout = "No problem. I will wait here. Come back anytime for a photo." +session_cancelled = "Okay. Session cancelled." +framing_timeout = "I still need a better frame. Please step in front of me and say yes photo when ready." + +countdown_intro = "Come on, ready... one, two, three, smile!" +count_3 = "Three." +count_2 = "Two." +count_1 = "One." +smile = "Smile." + +countdown_cancelled = "Countdown cancelled." +lost_from_frame = "I lost you from the frame. Let us try again." + +retake_recommended = "Photo captured. I recommend a retake. Say yes photo to retake, or no photo to keep this one." +retake_yes = "Great. Let us retake. Hold your pose." +retake_limit = "Retake limit reached. Keeping the current photo." + +photo_saved_thanks = "Thank you. Photo saved. Do not forget to check your photos." \ No newline at end of file diff --git a/Data/Runtime/runtime_health.json b/Data/Runtime/runtime_health.json new file mode 100644 index 0000000..0945ca9 --- /dev/null +++ b/Data/Runtime/runtime_health.json @@ -0,0 +1 @@ +{"ws_connected": true, "ws_state": "connected", "ws_restarts": 0, "ws_last_error": "", "ws_last_event_ts": 1773214526.9045713, "ws_last_reason": "attach", "mic_state": "running", "mic_restarts": 0, "mic_last_error": "", "mic_last_event_ts": 1773214526.3342426, "speaker_state": "running", "speaker_restarts": 0, "speaker_last_error": "", "speaker_last_event_ts": 1773214526.3344123, "speaker_queue_drops": 0, "speaker_queue_max": 0, "mic_enabled": true, "audio_gate_open": true, "passive_listen_only": false, "speaking": false, "interrupted": false, "speaker_queue_size": 0, "time": 1773214533.2199197, "model": "models/gemini-2.5-flash-native-audio-preview-12-2025"} \ No newline at end of file diff --git a/Data/Runtime/upload_db.json b/Data/Runtime/upload_db.json new file mode 100644 index 0000000..0967ef4 --- /dev/null +++ b/Data/Runtime/upload_db.json @@ -0,0 +1 @@ +{} diff --git a/Data/Scripts/photo_command_ai.txt b/Data/Scripts/photo_command_ai.txt new file mode 100644 index 0000000..12ef8fa --- /dev/null +++ b/Data/Scripts/photo_command_ai.txt @@ -0,0 +1,115 @@ +request_photo +take photo +take my photo +take a photo +take a picture +take our photo +take group photo +picture please +please take a photo +please take our photo +photo please +photo now +can you take my photo +could you take a photo +can we take a photo +can you take a picture +snap photo +i want a photo +ุตูˆุฑู†ูŠ +ุตูˆุฑู†ุง +ุงุจุบู‰ ุตูˆุฑุฉ +ุงุจูŠ ุตูˆุฑุฉ +ู†ุจูŠ ุตูˆุฑุฉ +ู†ุจุบู‰ ุตูˆุฑุฉ +ู…ู…ูƒู† ุตูˆุฑุฉ +ุฎุฐ ุตูˆุฑุฉ +ุตูˆุฑุชู†ูŠ +ุงู„ุชู‚ุท ุตูˆุฑุฉ +ุชุตูˆุฑู†ูŠ +ุณุงุนุฏู†ูŠ ุชุตูˆู‘ุฑ +ุชุตูˆูŠุฑูŠ +ุฎู„ู†ุง ู†ุชุตูˆุฑ + +yes_photo +yes +yes photo +yes take photo +yes take picture +yes please +yeah +yep +yup +sure +ok +okay +please do +do it +let's do it +ready +ready now +confirm +confirmed +i agree +go ahead +start photo +ok photo +okay photo +ู†ุนู… +ุงูŠ +ุงูŠูˆู‡ +ุงูŠูˆุง +ุงูˆูƒูŠ +ุชู…ุงู… +ุชูุถู„ +ูŠู„ุง +ุงูƒูŠุฏ +ู…ูˆุงูู‚ +ู…ูˆุงูู‚ูŠู† +ุงุจุดุฑ +ุตูˆุฑ +ุตูˆุฑ ุงู„ุญูŠู† +ูŠู„ุง ุตูˆุฑ +ู†ุนู… ุตูˆุฑุฉ +ุงูŠูˆุง ุตูˆุฑุฉ + +no_photo +no +no photo +nope +nah +negative +not now +not now please +maybe later +no not now +don't take photo +do not take photo +cancel photo +cancel +cancel it +no thanks +stop photo +stop it +skip photo +no need +not interested +later +ู„ุง +ู„ุง ู„ุง +ู„ุง ุงู„ุญูŠู† +ู…ูˆ ุงู„ุญูŠู† +ุจุนุฏูŠู† +ูŠู…ูƒู† ุจุนุฏูŠู† +ูˆู‚ู +ุงู„ุบ +ุงู„ุบ ุงู„ุตูˆุฑุฉ +ู„ุง ุชุตูˆุฑ +ู„ุง ุชู„ุชู‚ุท +ู…ุง ุงุจุบู‰ ุตูˆุฑุฉ +ู…ุงุจูŠ ุตูˆุฑุฉ +ู…ุง ู†ุจูŠ ุตูˆุฑุฉ +ุฎู„ู‡ุง ุจุนุฏูŠู† +ู…ุด ุงู„ุญูŠู† +ู„ุง ุตูˆุฑุฉ +ู„ุง ุดูƒุฑุง diff --git a/Data/Scripts/sanad_script.txt b/Data/Scripts/sanad_script.txt new file mode 100644 index 0000000..e9be1b1 --- /dev/null +++ b/Data/Scripts/sanad_script.txt @@ -0,0 +1,102 @@ +ุฃู†ุช "ุจูˆุณู†ุฏู‡" โ€” ู…ุณุงุนุฏ ุตูˆุชูŠ ุฅู…ุงุฑุงุชูŠ ุฐูƒูŠ ุชุงุจุน ู„ุฑูˆุจูˆุช ุดุฑูƒุฉ ู„ูˆุชุงู‡ ุชูŠูƒ Lootah Tech. + +ุงู„ุฃุณู„ูˆุจ: +- ุชูƒู„ู… ุจุงู„ู„ู‡ุฌุฉ ุงู„ุฅู…ุงุฑุงุชูŠุฉ ุจุดูƒู„ ุทุจูŠุนูŠ (ุจุฏูˆู† ูุตุญู‰ ุซู‚ูŠู„ุฉ ูˆุจุฏูˆู† ู…ุจุงู„ุบุฉ). +- ุฎู„ูƒ ู…ุญุชุฑู… ูˆูˆุฏูˆุฏ ูˆู…ุจุงุดุฑ. +- ุฑูƒู‘ุฒ ุนู„ู‰ ุงู„ุฒุจุฏุฉ ูˆุงู„ุญู„ ุงู„ุนู…ู„ูŠ. +- ุชู‚ุฏุฑ ุชุฌุงูˆุจ ุนู„ู‰ ุฃูŠ ุณุคุงู„ ุญุชู‰ ู„ูˆ ุงู„ู…ุณุชุฎุฏู… ู…ุง ู‚ุงู„ "ุจูˆุณู†ุฏู‡". +- ุฅุฐุง ู‚ุงู„ ุงู„ู…ุณุชุฎุฏู… "ุจูˆุณู†ุฏู‡" ุฃูˆ "Bousandah"ุŒ ุชูุงุนู„ ุฃูƒุซุฑ ูˆุงุนุทูŠ ุชูุงุตูŠู„ ุดูˆูŠ ุฒูŠุงุฏุฉ. + +ุงู„ู„ุบุฉ (ุชุจุฏูŠู„ ููˆุฑูŠ): +- ุฅุฐุง ุงู„ู…ุณุชุฎุฏู… ูŠุชูƒู„ู… ุนุฑุจูŠ: ุฃุฑุฏ ุจุงู„ุนุฑุจูŠ ุจู„ู‡ุฌุฉ ุฅู…ุงุฑุงุชูŠุฉ. +- ุฅุฐุง ุงู„ู…ุณุชุฎุฏู… ุบูŠู‘ุฑ ุงู„ู„ุบุฉ ู„ุฃูŠ ู„ุบุฉ ุซุงู†ูŠุฉ ููŠ ุฃูŠ ู„ุญุธุฉ: ุฃุบูŠู‘ุฑ ููˆุฑู‹ุง ูˆุฃุฑุฏ ุจู†ูุณ ุงู„ู„ุบุฉ ุงู„ุฌุฏูŠุฏุฉ ููŠ ู†ูุณ ุงู„ุฑุฏ. +- ุฅุฐุง ุงู„ู…ุณุชุฎุฏู… ุฑุฌุน ู„ู„ุนุฑุจูŠ: ุฃุฑุฌุน ููˆุฑู‹ุง ู„ู„ุนุฑุจูŠ (ู„ู‡ุฌุฉ ุฅู…ุงุฑุงุชูŠุฉ). +- ุงู„ู‚ุงุนุฏุฉ: "ุขุฎุฑ ู„ุบุฉ ูƒุชุจ ููŠู‡ุง ุงู„ู…ุณุชุฎุฏู…" ู‡ูŠ ุงู„ู„ุบุฉ ุงู„ู„ูŠ ุฃุฑุฏ ููŠู‡ุง. +- ู…ู…ู†ูˆุน ุฃุฎู„ุท ู„ุบุชูŠู† ููŠ ู†ูุณ ุงู„ุฑุฏ ุฅู„ุง ุฅุฐุง ุงู„ู…ุณุชุฎุฏู… ุทู„ุจ ุชุฑุฌู…ุฉ ุฃูˆ ู…ู‚ุงุฑู†ุฉ ุตุฑูŠุญุฉ. + +ู…ูุฑุฏุงุช ุฎููŠูุฉ (ุงุณุชุฎุฏู…ู‡ุง ุจุดูƒู„ ุทุจูŠุนูŠ): +- ูˆุงูŠุฏุŒ ู‡ูŠู‡ุŒ ุนู„ูˆู…ูƒุŸุŒ ุทุงู„ ุนู…ุฑูƒุŒ ูˆุฃู†ุง ุฃุฎูˆูƒ +- ู…ุฑุญุจุงุจูƒุŒ ูŠุง ู‡ู„ุงุŒ ูŠุง ู…ุฑุญุจุง +- ุฃุจุดุฑุŒ ุฃุจุดุฑ ุจุนุฒูƒุŒ ู…ุง ุทู„ุจุช ุดูŠ +- ุงู„ุณู…ูˆุญุฉ ู…ู†ูƒุŒ ุงู„ู…ุนุฐุฑุฉุŒ ุชุณู„ู…ุŒ ุงู„ู„ู‡ ูŠุณู„ู…ูƒ +- ุฒูŠู†ุŒ ู…ุถุจูˆุทุŒ ุชู…ุงู… +- ุดูˆู ุทุงู„ ุนู…ุฑูƒุŒ ุฎู„ู‘ู†ุง ู†ู…ุดูŠู‡ุง ุฎุทูˆุฉ ุฎุทูˆุฉ +- ุนู„ู‰ ุงู„ุณุฑูŠุนุŒ ุงู„ุฒุจุฏุฉุŒ ู…ุฎุชุตุฑ ุงู„ู…ููŠุฏ +- ู„ุง ุชุดูŠู„ ู‡ู…ุŒ ุงู„ุฃู…ูˆุฑ ุทูŠุจุฉุŒ ุจู†ุฑุชุจู‡ุง +- ุชุงู…ุฑ ุฃู…ุฑุŒ ู…ู† ุนูŠูˆู†ูŠุŒ ุญุงุถุฑ +- ุนุณุงูƒ ุจุฎูŠุฑุŒ ุงู„ู„ู‡ ูŠุญูŠูŠูƒ +- ุฏุฑุจูƒ ุฎุถุฑุŒ ุงู„ู„ู‡ ูŠุญูุธูƒุŒ ุงู„ู„ู‡ ูŠูˆูู‚ูƒ +(ู„ุง ุชูƒุฑุฑู‡ู… ูƒู„ ุณุทุฑุŒ ุงุณุชุฎุฏู…ู‡ุง ู…ู† ูˆู‚ุช ู„ูˆู‚ุช ูˆุจุดูƒู„ ุทุจูŠุนูŠ) + +ุชู†ูˆูŠุน ุงู„ุจุฏุงูŠุฉ (ู…ู‡ู…): +- ู„ุง ุชูƒุฑุฑ ู†ูุณ ุนุจุงุฑุฉ ุงู„ุจุฏุงูŠุฉ ููŠ ูƒู„ ุฑุฏ. +- ุจุฏู‘ู„ ุจูŠู† ุนุจุงุฑุงุช ุงู„ุงุณุชู‚ุจุงู„ ุจุดูƒู„ ุทุจูŠุนูŠุŒ ูˆู…ู…ู†ูˆุน ุชูƒุฑุฑ ู†ูุณ ุงู„ุนุจุงุฑุฉ ู…ุฑุชูŠู† ู…ุชุชุงู„ูŠุชูŠู†. +- ุงุณุชุฎุฏู… ูˆุงุญุฏุฉ ูู‚ุท ููŠ ุจุฏุงูŠุฉ ุงู„ุฑุฏุŒ ูˆุฃุญูŠุงู†ุงู‹ ุงุจุฏุฃ ู…ุจุงุดุฑุฉ ุจุฏูˆู† ุฃูŠ ุนุจุงุฑุฉ: + 1) ูุงู„ูƒ ุทูŠุจ + 2) ุฃุจุดุฑ ุจุนุฒูƒ + 3) ู…ุง ุทู„ุจุช ุดูŠ + 4) ู…ุฑุญุจุงุจูƒ + 5) ูŠุง ู‡ู„ุง + 6) ุชู…ุงู… ุทุงู„ ุนู…ุฑูƒ + 7) ู‡ูŠู‡ ุญุงุถุฑ +- ุฅุฐุง ุงู„ุฑุฏ ุชู‚ู†ูŠ ุณุฑูŠุน ุฃูˆ ูƒูˆุฏ: ู…ู…ูƒู† ุชุจุฏุฃ ู…ุจุงุดุฑุฉ ุจุฏูˆู† ู…ู‚ุฏู…ุงุช. + +ุงู„ุชูุงุนู„: +- ุฅุฐุง ุงู„ุณุคุงู„ ูˆุงุถุญ: ุฌุงูˆุจ ู…ุจุงุดุฑุฉ. +- ุฅุฐุง ุชู‚ุฏุฑ ุชุถูŠู ู†ุตูŠุญุฉ ู…ููŠุฏุฉ ู…ุฑุชุจุทุฉ: ุงู‚ุชุฑุญ ุดูŠุก ูˆุงุญุฏ (ุงุฎุชูŠุงุฑูŠ). +- ุฅุฐุง ุงู„ุณุคุงู„ ู†ุงู‚ุตู‡ ู…ุนู„ูˆู…ุฉ ุชู…ู†ุน ุงู„ุญู„ ุงู„ุตุญ: ุงุณุฃู„ ุณุคุงู„ ูˆุงุญุฏ ูู‚ุท ูˆุจุดูƒู„ ู„ุทูŠู. + +ุงู„ุชูุงุนู„ ูˆุงู„ูˆู†ุงุณุฉ (Engagement): +- ุฎู„ูƒ ุงุฌุชู…ุงุนูŠ ูˆุชูุงุนู„ูŠ ูˆุฎูู ุงู„ุฌูˆ. +- ู…ุฒุญ ุฎููŠู ูˆู„ุทูŠู ุนู†ุฏ ุงู„ุญุงุฌุฉ ุจุฏูˆู† ุฅุณุงุกุฉ. +- ุฅุฐุง ุงู„ู…ุณุชุฎุฏู… ู…ุชูˆุชุฑ ุฃูˆ ู…ุชุถุงูŠู‚: ุทู…ู‘ู†ู‡ ุจูƒู„ู…ุฉ ุทูŠุจุฉ. +- ุฅุฐุง ุงู„ู…ุณุชุฎุฏู… ุทุงู„ุจ ุดุบู„ ุฃูˆ ูƒูˆุฏ: ุฃุนุทู‡ ุงู„ุฒุจุฏุฉ ุฃูˆู„ุŒ ูˆุจุนุฏู‡ุง ู…ุฒุญุฉ ู‚ุตูŠุฑุฉ ุงุฎุชูŠุงุฑูŠุฉ. +- ู…ู…ู†ูˆุน ุฃูŠ ู†ูƒุช ุฃูˆ ู…ุญุชูˆู‰ ุญุณุงุณ (ุฏูŠู†ุŒ ุนุฑู‚ุŒ ุณูŠุงุณุฉุŒ ุฅู„ุฎ). + +ุงู„ุชูƒุฑุงุฑ (Repeat Mode): +- ุฅุฐุง ุงู„ู…ุณุชุฎุฏู… ู‚ุงู„: "ูƒุฑุฑ" / "ุฃุนุฏ" / "repeat" / "say it again" / "ุนูŠุฏ ุงู„ูƒู„ุงู…": + - ุฃุนูŠุฏ ู†ูุณ ุงู„ูƒู„ุงู… ุจู†ูุณ ุงู„ู„ุบุฉ ุงู„ุญุงู„ูŠุฉ. + - ู†ูุณ ุงู„ู…ุนู†ู‰ ูˆู†ูุณ ุงู„ุฎุทูˆุงุช. + - ุฅุฐุง ู‚ุงู„ "ุจู†ูุณ ุงู„ูƒู„ู…ุงุช" ุฃูˆ "ุญุฑููŠุงู‹": ุฃุนูŠุฏ ุญุฑููŠุงู‹ ู‚ุฏุฑ ุงู„ุฅู…ูƒุงู†. + - ุฅุฐุง ู…ุง ุญุฏู‘ุฏ ูˆุด ุฃุนูŠุฏ: ุฃุนูŠุฏ ุขุฎุฑ ู†ู‚ุทุฉ ุฃูˆ ุขุฎุฑ ุฎุทูˆุฉ ุฃูˆ ุขุฎุฑ ูƒูˆุฏ. +- ุฅุฐุง ุทู„ุจ ุฅุนุงุฏุฉ ูƒูˆุฏ: ุฃุนูŠุฏ ุงู„ูƒูˆุฏ ูƒุงู…ู„ ุฏุงุฎู„ ุจู„ูˆูƒ ูƒูˆุฏ ู…ุซู„ ู…ุง ู‡ูˆ. + +ุฅู†ุฌุงุฒ ุงู„ู…ู‡ุงู…: +- ุฅุฐุง ุทูู„ุจ ูƒูˆุฏ: ุงูƒุชุจ ูƒูˆุฏ ู†ุธูŠู ูˆุฌุงู‡ุฒ ู„ู„ู†ุณุฎ ูˆุงู„ุชุดุบูŠู„ุŒ ูˆุงู„ุดุฑุญ ุจุณูŠุท ูˆุจุงู„ู„ู‡ุฌุฉ ุงู„ุฅู…ุงุฑุงุชูŠุฉ. +- ุฅุฐุง ุทูู„ุจ ุฎุทูˆุงุช ู†ุธุงู…/ู„ูŠู†ูƒุณ: ุฃูˆุงู…ุฑ ูˆุงุถุญุฉ ูˆู…ุณุงุฑุงุช ุฏู‚ูŠู‚ุฉ. +- ุฅุฐุง ุทูู„ุจ ุฑุณุงู„ุฉ/ุฅูŠู…ูŠู„: ู…ุณูˆุฏุฉ ุฌุงู‡ุฒุฉ. + +ุงู„ุฃู…ุงู† ูˆุงู„ุฎุตูˆุตูŠุฉ: +- ุฅุฐุง ุงู„ู…ุณุชุฎุฏู… ูƒุชุจ API key ุฃูˆ Password ุฃูˆ Token: ู†ุจู‡ู‡ ููˆุฑุงู‹ ูŠู…ุณุญู‡ ูˆูŠุจุฏู„ู‡. +- ู„ุง ุชุทู„ุจ ุจูŠุงู†ุงุช ุญุณุงุณุฉ ุฅู„ุง ุฅุฐุง ุถุฑูˆุฑูŠุฉ ุฌุฏุงู‹ ูˆุจุทุฑูŠู‚ุฉ ู…ุญุชุฑู…ุฉ. + +ุงู„ุฐุงูƒุฑุฉ ุฏุงุฎู„ ุงู„ู…ุญุงุฏุซุฉ (Contextual Memory): +- ุงุนุชุจุฑ ูƒู„ ุชูุงุตูŠู„ ุงู„ู…ุณุชุฎุฏู… ุฏุงุฎู„ ู†ูุณ ุงู„ู…ุญุงุฏุซุฉ ู…ู‡ู…ุฉ. +- ุงุฑุจุท ูƒู„ุงู…ูƒ ุจุขุฎุฑ 5โ€“20 ุฑุณุงู„ุฉ ุฅุฐุง ุงู„ู…ูˆุถูˆุน ูŠุญุชุงุฌ. +- ุชุนุงู…ู„ ู…ุน ุงู„ุฅุนุฏุงุฏุงุช ูˆุงู„ู…ุณุงุฑุงุช ูˆุงู„ุฃุณู…ุงุก ูƒุซูˆุงุจุช. +- ุฅุฐุง ุงู„ู…ุณุชุฎุฏู… ุตุญุญูƒ: + ู‚ู„: "ุฒูŠู† ู†ุจู‡ุชู†ูŠ ูŠุง ุงู„ุดูŠุฎุŒ ุงู†ุญูุฑุช ููŠ ุงู„ุฐุงูƒุฑุฉ." +- ุจุนุฏ ูƒู„ ุฎุทูˆุฉ ู…ู‡ู…ุฉ: + ุฃุนุท ู…ู„ุฎุต ุณุฑูŠุน (ุงุฎุชูŠุงุฑูŠ): + "ู…ู„ุฎุต ุณุฑูŠุน: ุงู„ู…ุณุงุฑ = ... | ุงู„ุฃู…ุฑ = ... | ุงู„ู…ู„ู = ..." +- ุฅุฐุง ู‚ุงู„ ุงู„ู…ุณุชุฎุฏู… "ุชุฐูƒุฑ" ุฃูˆ "memorize": ุงุนุชุจุฑู‡ุง ุฃูˆู„ูˆูŠุฉ ุฏุงุฎู„ ุงู„ู…ุญุงุฏุซุฉ. + +ุงู„ุณุฑุนุฉ (Fast Response): +- ุฌุงูˆุจ ุจุณุฑุนุฉ ูˆุจุงุฎุชุตุงุฑ (2 ุฅู„ู‰ 6 ุณุทูˆุฑ ุบุงู„ุจุงู‹). +- ุงู„ุฒุจุฏุฉ ุฃูˆู„. +- ุฎุทูˆุงุช ู…ุฑู‚ู…ุฉ ู‚ุตูŠุฑุฉ ุฅุฐุง ู„ุฒู…. +- ุณุคุงู„ ูˆุงุญุฏ ูู‚ุท ุฅุฐุง ุงู„ู…ุนู„ูˆู…ุฉ ู†ุงู‚ุตุฉ. +- ู„ุง ุชุทูˆู‘ู„ ุฅู„ุง ุฅุฐุง ุทูู„ุจ ุดุฑุญ ูƒุงู…ู„. +- ุงู„ุชุฒู… ุจู‡ุฐุง ุงู„ุจุฑูˆู…ุจุช ุญุฑููŠุงู‹ ุจุฏูˆู† ุชุนุฏูŠู„ ุฃูˆ ุฅุนุงุฏุฉ ุตูŠุงุบุฉ. + + + +ู…ู‡ู…ู‘ุฉ ุฅุถุงููŠุฉ (Photographer Mode): +- ุฃู†ุช "ุจูˆุณู†ุฏู‡" ุงู„ู…ุตูˆู‘ุฑ (Photographer) ุฏุงุฎู„ ุฑูˆุจูˆุช ู‡ูˆู…ุงู†ูˆูŠุฏ. +- ุฏูˆุฑูƒ: ุชุฑุญู‘ุจ ุจุงู„ุณูŠุงุญุŒ ุชูˆุฌู‘ู‡ู‡ู… ู„ู„ูˆุถุนูŠุฉุŒ ุชุนุทูŠ ุชุนู„ูŠู…ุงุช ุชุตูˆูŠุฑ ุฎููŠูุฉุŒ ูˆุชุนุฏู‘ 3..2..1ุŒ ูˆุชู‚ูˆู„ ู„ู‡ู… "ูŠู„ุง ุงุจุชุณู…". +- ุฃุณู„ูˆุจูƒ: ุฅู…ุงุฑุงุชูŠ ู„ุทูŠู ูˆู…ุฑุญุŒ ุฌู…ู„ ู‚ุตูŠุฑุฉ ูˆุณุฑูŠุนุฉ. +- ูƒู„ู…ุงุช ู…ุตูˆู‘ุฑ ุทุจูŠุนูŠุฉ ุชุณุชุฎุฏู…ู‡ุง ูˆู‚ุช ุงู„ู„ุฒูˆู…: + "ูŠู„ุง ุงุจุชุณู…"ุŒ "ู‚ุฑุจ ุดูˆูŠ"ุŒ "ุนู„ู‰ ูŠู…ูŠู†ูƒ ุดูˆูŠ"ุŒ "ุงุฑูุน ุฑุงุณูƒ"ุŒ "ุซุจู‘ุช"ุŒ "ุฒูŠู† ู…ู…ุชุงุฒ"ุŒ "ูˆุงุญุฏ.. ุงุซู†ูŠู†.. ุซู„ุงุซุฉ"ุŒ + "ู„ุง ุชุชุญุฑูƒ"ุŒ "ุดูˆู ุงู„ูƒุงู…ูŠุฑุง"ุŒ "ุฌุงู‡ุฒูŠู†ุŸ"ุŒ "ู„ู‚ุทุฉ ุญู„ูˆุฉ"ุŒ "ูŠู„ุง ุขุฎุฑ ู„ู‚ุทุฉ" +- ุฅุฐุง ุชู… ุชูุนูŠู„ ูˆุถุน ุงู„ู…ุตูˆู‘ุฑ ู…ู† ุงู„ูƒู†ุชุฑูˆู„: ุชุชูƒู„ู… ุจุดูƒู„ ู…ุชูˆุงุตู„ ุชู‚ุฑูŠุจุงู‹ 15 ุซุงู†ูŠุฉ ุจุชูˆุฌูŠู‡ุงุช ุชุตูˆูŠุฑุŒ + ูˆุจุขุฎุฑ 5 ุซูˆุงู†ูŠ ุชุฑูƒุฒ ุนู„ู‰ ุงู„ุดูƒุฑ ูˆุชู‚ูˆู„: "thank youooo" (ุจู†ุจุฑุฉ ู„ุทูŠูุฉ ูˆู…ุทูˆู‘ู„ุฉ). diff --git a/Data/Settings/audio_prompt_records.json b/Data/Settings/audio_prompt_records.json new file mode 100644 index 0000000..77446e8 --- /dev/null +++ b/Data/Settings/audio_prompt_records.json @@ -0,0 +1,908 @@ +{ + "created_by": "AI_Photographer.audio_prompts import", + "last_updated": "2026-03-17T18:30:37", + "total_records": 22, + "records": [ + { + "record_name": "welcome_single", + "text": "Hello, welcome. We will take a photo together. Would you like a photo?", + "model": "models/gemini-2.5-flash-native-audio-preview-12-2025", + "voice_name": "Charon", + "replay_count": 2, + "audio_capture": { + "sink": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo", + "monitor_source": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor", + "restored_microphone_source": "alsa_input.usb-Anker_PowerConf_A3321-DEV-SN1-01.mono-fallback", + "capture_device": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor" + }, + "timeline": { + "text_entered_at": "2026-03-13T14:37:09", + "audio_generated_at": "2026-03-13T14:37:13", + "last_playback_finished_at": "2026-03-13T14:37:25", + "saved_at": "2026-03-13T14:37:30" + }, + "files": { + "speaker_recording": { + "path": "AI_Photographer/Data/Audio/welcome_single.wav", + "name": "welcome_single.wav", + "size_bytes": 223440, + "size_mb": 0.213, + "duration_seconds": 4.654, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + }, + "gemini_raw_output": { + "path": "AI_Photographer/Data/Audio/welcome_single_raw.wav", + "name": "welcome_single_raw.wav", + "size_bytes": 209324, + "size_mb": 0.2, + "duration_seconds": 4.36, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + } + } + }, + { + "record_name": "welcome_group", + "text": "Hello everyone, welcome. We will take a photo together. Would your group like a photo?", + "model": "models/gemini-2.5-flash-native-audio-preview-12-2025", + "voice_name": "Charon", + "replay_count": 2, + "audio_capture": { + "sink": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo", + "monitor_source": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor", + "restored_microphone_source": "alsa_input.usb-Anker_PowerConf_A3321-DEV-SN1-01.mono-fallback", + "capture_device": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor" + }, + "timeline": { + "text_entered_at": "2026-03-13T14:38:05", + "audio_generated_at": "2026-03-13T14:38:09", + "last_playback_finished_at": "2026-03-13T14:38:27", + "saved_at": "2026-03-13T14:38:38" + }, + "files": { + "speaker_recording": { + "path": "AI_Photographer/Data/Audio/welcome_group.wav", + "name": "welcome_group.wav", + "size_bytes": 261784, + "size_mb": 0.25, + "duration_seconds": 5.453, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + }, + "gemini_raw_output": { + "path": "AI_Photographer/Data/Audio/welcome_group_raw.wav", + "name": "welcome_group_raw.wav", + "size_bytes": 247724, + "size_mb": 0.236, + "duration_seconds": 5.16, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + } + } + }, + { + "record_name": "welcome_returning", + "text": "Welcome back. Would you like another photo?", + "model": "models/gemini-2.5-flash-native-audio-preview-12-2025", + "voice_name": "Charon", + "replay_count": 1, + "audio_capture": { + "sink": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo", + "monitor_source": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor", + "restored_microphone_source": "alsa_input.usb-Anker_PowerConf_A3321-DEV-SN1-01.mono-fallback", + "capture_device": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor" + }, + "timeline": { + "text_entered_at": "2026-03-13T14:39:33", + "audio_generated_at": "2026-03-13T14:39:36", + "last_playback_finished_at": "2026-03-13T14:39:38", + "saved_at": "2026-03-13T14:39:46" + }, + "files": { + "speaker_recording": { + "path": "AI_Photographer/Data/Audio/welcome_returning.wav", + "name": "welcome_returning.wav", + "size_bytes": 135422, + "size_mb": 0.129, + "duration_seconds": 2.82, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + }, + "gemini_raw_output": { + "path": "AI_Photographer/Data/Audio/welcome_returning_raw.wav", + "name": "welcome_returning_raw.wav", + "size_bytes": 121004, + "size_mb": 0.115, + "duration_seconds": 2.52, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + } + } + }, + { + "record_name": "frame_single", + "text": "Great. Please stand with me in front of the camera, stay in the center, and look at the camera.", + "model": "models/gemini-2.5-flash-native-audio-preview-12-2025", + "voice_name": "Charon", + "replay_count": 2, + "audio_capture": { + "sink": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo", + "monitor_source": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor", + "restored_microphone_source": "alsa_input.usb-Anker_PowerConf_A3321-DEV-SN1-01.mono-fallback", + "capture_device": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor" + }, + "timeline": { + "text_entered_at": "2026-03-13T14:40:15", + "audio_generated_at": "2026-03-13T14:40:19", + "last_playback_finished_at": "2026-03-13T14:40:41", + "saved_at": "2026-03-13T14:40:43" + }, + "files": { + "speaker_recording": { + "path": "AI_Photographer/Data/Audio/frame_single.wav", + "name": "frame_single.wav", + "size_bytes": 252470, + "size_mb": 0.241, + "duration_seconds": 5.259, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + }, + "gemini_raw_output": { + "path": "AI_Photographer/Data/Audio/frame_single_raw.wav", + "name": "frame_single_raw.wav", + "size_bytes": 238124, + "size_mb": 0.227, + "duration_seconds": 4.96, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + } + } + }, + { + "record_name": "frame_group", + "text": "Great. Please stand with me in front of the camera, stay together in the center, and look at the camera.", + "model": "models/gemini-2.5-flash-native-audio-preview-12-2025", + "voice_name": "Charon", + "replay_count": 1, + "audio_capture": { + "sink": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo", + "monitor_source": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor", + "restored_microphone_source": "alsa_input.usb-Anker_PowerConf_A3321-DEV-SN1-01.mono-fallback", + "capture_device": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor" + }, + "timeline": { + "text_entered_at": "2026-03-13T14:41:03", + "audio_generated_at": "2026-03-13T14:41:07", + "last_playback_finished_at": "2026-03-13T14:41:12", + "saved_at": "2026-03-13T14:41:17" + }, + "files": { + "speaker_recording": { + "path": "AI_Photographer/Data/Audio/frame_group.wav", + "name": "frame_group.wav", + "size_bytes": 278668, + "size_mb": 0.266, + "duration_seconds": 5.805, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + }, + "gemini_raw_output": { + "path": "AI_Photographer/Data/Audio/frame_group_raw.wav", + "name": "frame_group_raw.wav", + "size_bytes": 265004, + "size_mb": 0.253, + "duration_seconds": 5.52, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + } + } + }, + { + "record_name": "confirm_reminder", + "text": "Please say yes photo to continue, or no photo to cancel.", + "model": "models/gemini-2.5-flash-native-audio-preview-12-2025", + "voice_name": "Charon", + "replay_count": 1, + "audio_capture": { + "sink": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo", + "monitor_source": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor", + "restored_microphone_source": "alsa_input.usb-Anker_PowerConf_A3321-DEV-SN1-01.mono-fallback", + "capture_device": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor" + }, + "timeline": { + "text_entered_at": "2026-03-13T14:41:42", + "audio_generated_at": "2026-03-13T14:41:47", + "last_playback_finished_at": "2026-03-13T14:41:51", + "saved_at": "2026-03-13T14:41:58" + }, + "files": { + "speaker_recording": { + "path": "AI_Photographer/Data/Audio/confirm_reminder.wav", + "name": "confirm_reminder.wav", + "size_bytes": 230722, + "size_mb": 0.22, + "duration_seconds": 4.806, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + }, + "gemini_raw_output": { + "path": "AI_Photographer/Data/Audio/confirm_reminder_raw.wav", + "name": "confirm_reminder_raw.wav", + "size_bytes": 217004, + "size_mb": 0.207, + "duration_seconds": 4.52, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + } + } + }, + { + "record_name": "visitor_left", + "text": "No worries. I will wait here for the next visitor.", + "model": "models/gemini-2.5-flash-native-audio-preview-12-2025", + "voice_name": "Charon", + "replay_count": 1, + "audio_capture": { + "sink": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo", + "monitor_source": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor", + "restored_microphone_source": "alsa_input.usb-Anker_PowerConf_A3321-DEV-SN1-01.mono-fallback", + "capture_device": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor" + }, + "timeline": { + "text_entered_at": "2026-03-13T14:42:09", + "audio_generated_at": "2026-03-13T14:42:12", + "last_playback_finished_at": "2026-03-13T14:42:15", + "saved_at": "2026-03-13T14:42:28" + }, + "files": { + "speaker_recording": { + "path": "AI_Photographer/Data/Audio/visitor_left.wav", + "name": "visitor_left.wav", + "size_bytes": 148648, + "size_mb": 0.142, + "duration_seconds": 3.096, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + }, + "gemini_raw_output": { + "path": "AI_Photographer/Data/Audio/visitor_left_raw.wav", + "name": "visitor_left_raw.wav", + "size_bytes": 134444, + "size_mb": 0.128, + "duration_seconds": 2.8, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + } + } + }, + { + "record_name": "declined", + "text": "No problem. We can do it anytime.", + "model": "models/gemini-2.5-flash-native-audio-preview-12-2025", + "voice_name": "Charon", + "replay_count": 2, + "audio_capture": { + "sink": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo", + "monitor_source": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor", + "restored_microphone_source": "alsa_input.usb-Anker_PowerConf_A3321-DEV-SN1-01.mono-fallback", + "capture_device": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor" + }, + "timeline": { + "text_entered_at": "2026-03-13T14:42:46", + "audio_generated_at": "2026-03-13T14:42:48", + "last_playback_finished_at": "2026-03-13T14:43:03", + "saved_at": "2026-03-13T14:43:16" + }, + "files": { + "speaker_recording": { + "path": "AI_Photographer/Data/Audio/declined.wav", + "name": "declined.wav", + "size_bytes": 108070, + "size_mb": 0.103, + "duration_seconds": 2.251, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + }, + "gemini_raw_output": { + "path": "AI_Photographer/Data/Audio/declined_raw.wav", + "name": "declined_raw.wav", + "size_bytes": 94124, + "size_mb": 0.09, + "duration_seconds": 1.96, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + } + } + }, + { + "record_name": "confirm_timeout", + "text": "No problem. I will wait here. Come back anytime for a photo.", + "model": "models/gemini-2.5-flash-native-audio-preview-12-2025", + "voice_name": "Charon", + "replay_count": 1, + "audio_capture": { + "sink": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo", + "monitor_source": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor", + "restored_microphone_source": "alsa_input.usb-Anker_PowerConf_A3321-DEV-SN1-01.mono-fallback", + "capture_device": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor" + }, + "timeline": { + "text_entered_at": "2026-03-13T14:43:47", + "audio_generated_at": "2026-03-13T14:43:50", + "last_playback_finished_at": "2026-03-13T14:43:54", + "saved_at": "2026-03-13T14:44:04" + }, + "files": { + "speaker_recording": { + "path": "AI_Photographer/Data/Audio/confirm_timeout.wav", + "name": "confirm_timeout.wav", + "size_bytes": 188528, + "size_mb": 0.18, + "duration_seconds": 3.927, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + }, + "gemini_raw_output": { + "path": "AI_Photographer/Data/Audio/confirm_timeout_raw.wav", + "name": "confirm_timeout_raw.wav", + "size_bytes": 174764, + "size_mb": 0.167, + "duration_seconds": 3.64, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + } + } + }, + { + "record_name": "session_cancelled", + "text": "Okay. Session cancelled.", + "model": "models/gemini-2.5-flash-native-audio-preview-12-2025", + "voice_name": "Charon", + "replay_count": 1, + "audio_capture": { + "sink": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo", + "monitor_source": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor", + "restored_microphone_source": "alsa_input.usb-Anker_PowerConf_A3321-DEV-SN1-01.mono-fallback", + "capture_device": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor" + }, + "timeline": { + "text_entered_at": "2026-03-13T14:44:23", + "audio_generated_at": "2026-03-13T14:44:25", + "last_playback_finished_at": "2026-03-13T14:44:27", + "saved_at": "2026-03-13T14:44:39" + }, + "files": { + "speaker_recording": { + "path": "AI_Photographer/Data/Audio/session_cancelled.wav", + "name": "session_cancelled.wav", + "size_bytes": 107650, + "size_mb": 0.103, + "duration_seconds": 2.242, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + }, + "gemini_raw_output": { + "path": "AI_Photographer/Data/Audio/session_cancelled_raw.wav", + "name": "session_cancelled_raw.wav", + "size_bytes": 94124, + "size_mb": 0.09, + "duration_seconds": 1.96, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + } + } + }, + { + "record_name": "framing_timeout", + "text": "I still need a better frame. Please step in front of me and say yes photo when ready.", + "model": "models/gemini-2.5-flash-native-audio-preview-12-2025", + "voice_name": "Charon", + "replay_count": 1, + "audio_capture": { + "sink": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo", + "monitor_source": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor", + "restored_microphone_source": "alsa_input.usb-Anker_PowerConf_A3321-DEV-SN1-01.mono-fallback", + "capture_device": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor" + }, + "timeline": { + "text_entered_at": "2026-03-13T14:44:57", + "audio_generated_at": "2026-03-13T14:45:02", + "last_playback_finished_at": "2026-03-13T14:45:09", + "saved_at": "2026-03-13T14:45:22" + }, + "files": { + "speaker_recording": { + "path": "AI_Photographer/Data/Audio/framing_timeout.wav", + "name": "framing_timeout.wav", + "size_bytes": 324704, + "size_mb": 0.31, + "duration_seconds": 6.764, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + }, + "gemini_raw_output": { + "path": "AI_Photographer/Data/Audio/framing_timeout_raw.wav", + "name": "framing_timeout_raw.wav", + "size_bytes": 311084, + "size_mb": 0.297, + "duration_seconds": 6.48, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + } + } + }, + { + "record_name": "countdown_intro", + "text": "Look at the camera, stay ready, hold your pose with me, keep still, keep your smile soft, and in a moment I will count down for the photo.", + "model": "models/gemini-2.5-flash-native-audio-preview-12-2025", + "voice_name": "Charon", + "replay_count": 1, + "audio_capture": { + "sink": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo", + "monitor_source": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor", + "restored_microphone_source": "alsa_input.usb-Anker_PowerConf_A3321-DEV-SN1-01.mono-fallback", + "capture_device": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor" + }, + "timeline": { + "audio_generated_at": "2026-03-17T18:30:22", + "last_playback_finished_at": "2026-03-17T18:30:31", + "saved_at": "2026-03-17T18:30:37" + }, + "files": { + "speaker_recording": { + "path": "AI_Photographer/Data/Audio/countdown_intro.wav", + "name": "countdown_intro.wav", + "size_bytes": 432148, + "size_mb": 0.412, + "duration_seconds": 9.002, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + }, + "gemini_raw_output": { + "path": "AI_Photographer/Data/Audio/countdown_intro_raw.wav", + "name": "countdown_intro_raw.wav", + "size_bytes": 418604, + "size_mb": 0.399, + "duration_seconds": 8.72, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + } + } + }, + { + "record_name": "countdown_cancelled", + "text": "Countdown cancelled.", + "model": "models/gemini-2.5-flash-native-audio-preview-12-2025", + "voice_name": "Charon", + "replay_count": 1, + "audio_capture": { + "sink": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo", + "monitor_source": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor", + "restored_microphone_source": "alsa_input.usb-Anker_PowerConf_A3321-DEV-SN1-01.mono-fallback", + "capture_device": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor" + }, + "timeline": { + "text_entered_at": "2026-03-13T14:46:33", + "audio_generated_at": "2026-03-13T14:46:36", + "last_playback_finished_at": "2026-03-13T14:46:37", + "saved_at": "2026-03-13T14:46:42" + }, + "files": { + "speaker_recording": { + "path": "AI_Photographer/Data/Audio/countdown_cancelled.wav", + "name": "countdown_cancelled.wav", + "size_bytes": 81050, + "size_mb": 0.077, + "duration_seconds": 1.688, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + }, + "gemini_raw_output": { + "path": "AI_Photographer/Data/Audio/countdown_cancelled_raw.wav", + "name": "countdown_cancelled_raw.wav", + "size_bytes": 67244, + "size_mb": 0.064, + "duration_seconds": 1.4, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + } + } + }, + { + "record_name": "lost_from_frame", + "text": "I lost you from the frame. Let us try again.", + "model": "models/gemini-2.5-flash-native-audio-preview-12-2025", + "voice_name": "Charon", + "replay_count": 1, + "audio_capture": { + "sink": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo", + "monitor_source": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor", + "restored_microphone_source": "alsa_input.usb-Anker_PowerConf_A3321-DEV-SN1-01.mono-fallback", + "capture_device": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor" + }, + "timeline": { + "text_entered_at": "2026-03-13T14:46:57", + "audio_generated_at": "2026-03-13T14:47:00", + "last_playback_finished_at": "2026-03-13T14:47:03", + "saved_at": "2026-03-13T14:47:11" + }, + "files": { + "speaker_recording": { + "path": "AI_Photographer/Data/Audio/lost_from_frame.wav", + "name": "lost_from_frame.wav", + "size_bytes": 166428, + "size_mb": 0.159, + "duration_seconds": 3.466, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + }, + "gemini_raw_output": { + "path": "AI_Photographer/Data/Audio/lost_from_frame_raw.wav", + "name": "lost_from_frame_raw.wav", + "size_bytes": 151724, + "size_mb": 0.145, + "duration_seconds": 3.16, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + } + } + }, + { + "record_name": "retake_recommended", + "text": "Photo captured. I recommend a retake. Say yes photo to retake, or no photo to keep this one.", + "model": "models/gemini-2.5-flash-native-audio-preview-12-2025", + "voice_name": "Charon", + "replay_count": 1, + "audio_capture": { + "sink": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo", + "monitor_source": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor", + "restored_microphone_source": "alsa_input.usb-Anker_PowerConf_A3321-DEV-SN1-01.mono-fallback", + "capture_device": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor" + }, + "timeline": { + "text_entered_at": "2026-03-13T14:47:26", + "audio_generated_at": "2026-03-13T14:47:30", + "last_playback_finished_at": "2026-03-13T14:47:38", + "saved_at": "2026-03-13T14:47:41" + }, + "files": { + "speaker_recording": { + "path": "AI_Photographer/Data/Audio/retake_recommended.wav", + "name": "retake_recommended.wav", + "size_bytes": 355642, + "size_mb": 0.339, + "duration_seconds": 7.408, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + }, + "gemini_raw_output": { + "path": "AI_Photographer/Data/Audio/retake_recommended_raw.wav", + "name": "retake_recommended_raw.wav", + "size_bytes": 341804, + "size_mb": 0.326, + "duration_seconds": 7.12, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + } + } + }, + { + "record_name": "retake_yes", + "text": "Great. Let us retake. Hold your pose.", + "model": "models/gemini-2.5-flash-native-audio-preview-12-2025", + "voice_name": "Charon", + "replay_count": 1, + "audio_capture": { + "sink": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo", + "monitor_source": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor", + "restored_microphone_source": "alsa_input.usb-Anker_PowerConf_A3321-DEV-SN1-01.mono-fallback", + "capture_device": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor" + }, + "timeline": { + "text_entered_at": "2026-03-13T14:47:58", + "audio_generated_at": "2026-03-13T14:48:01", + "last_playback_finished_at": "2026-03-13T14:48:04", + "saved_at": "2026-03-13T14:48:12" + }, + "files": { + "speaker_recording": { + "path": "AI_Photographer/Data/Audio/retake_yes.wav", + "name": "retake_yes.wav", + "size_bytes": 171242, + "size_mb": 0.163, + "duration_seconds": 3.567, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + }, + "gemini_raw_output": { + "path": "AI_Photographer/Data/Audio/retake_yes_raw.wav", + "name": "retake_yes_raw.wav", + "size_bytes": 157484, + "size_mb": 0.15, + "duration_seconds": 3.28, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + } + } + }, + { + "record_name": "retake_limit", + "text": "Retake limit reached. Keeping the current photo.", + "model": "models/gemini-2.5-flash-native-audio-preview-12-2025", + "voice_name": "Charon", + "replay_count": 2, + "audio_capture": { + "sink": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo", + "monitor_source": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor", + "restored_microphone_source": "alsa_input.usb-Anker_PowerConf_A3321-DEV-SN1-01.mono-fallback", + "capture_device": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor" + }, + "timeline": { + "text_entered_at": "2026-03-13T14:48:28", + "audio_generated_at": "2026-03-13T14:48:31", + "last_playback_finished_at": "2026-03-13T14:48:43", + "saved_at": "2026-03-13T14:48:46" + }, + "files": { + "speaker_recording": { + "path": "AI_Photographer/Data/Audio/retake_limit.wav", + "name": "retake_limit.wav", + "size_bytes": 190862, + "size_mb": 0.182, + "duration_seconds": 3.975, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + }, + "gemini_raw_output": { + "path": "AI_Photographer/Data/Audio/retake_limit_raw.wav", + "name": "retake_limit_raw.wav", + "size_bytes": 176684, + "size_mb": 0.168, + "duration_seconds": 3.68, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + } + } + }, + { + "record_name": "photo_saved_thanks", + "text": "Thank you. Photo saved. Do not forget to check your photos.", + "model": "models/gemini-2.5-flash-native-audio-preview-12-2025", + "voice_name": "Charon", + "replay_count": 1, + "audio_capture": { + "sink": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo", + "monitor_source": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor", + "restored_microphone_source": "alsa_input.usb-Anker_PowerConf_A3321-DEV-SN1-01.mono-fallback", + "capture_device": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor" + }, + "timeline": { + "text_entered_at": "2026-03-13T14:49:20", + "audio_generated_at": "2026-03-13T14:49:25", + "last_playback_finished_at": "2026-03-13T14:49:30", + "saved_at": "2026-03-13T14:49:42" + }, + "files": { + "speaker_recording": { + "path": "AI_Photographer/Data/Audio/photo_saved_thanks.wav", + "name": "photo_saved_thanks.wav", + "size_bytes": 217272, + "size_mb": 0.207, + "duration_seconds": 4.526, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + }, + "gemini_raw_output": { + "path": "AI_Photographer/Data/Audio/photo_saved_thanks_raw.wav", + "name": "photo_saved_thanks_raw.wav", + "size_bytes": 203564, + "size_mb": 0.194, + "duration_seconds": 4.24, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + } + } + }, + { + "record_name": "count_3", + "text": "Three.", + "model": "models/gemini-2.5-flash-native-audio-preview-12-2025", + "voice_name": "Charon", + "replay_count": 3, + "audio_capture": { + "sink": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo", + "monitor_source": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor", + "restored_microphone_source": "alsa_input.usb-Anker_PowerConf_A3321-DEV-SN1-01.mono-fallback", + "capture_device": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor" + }, + "timeline": { + "text_entered_at": "2026-03-13T19:13:20", + "audio_generated_at": "2026-03-13T19:13:22", + "last_playback_finished_at": "2026-03-13T19:13:27", + "saved_at": "2026-03-13T19:13:31" + }, + "files": { + "speaker_recording": { + "path": "AI_Photographer/Data/Audio/count_3.wav", + "name": "count_3.wav", + "size_bytes": 44314, + "size_mb": 0.042, + "duration_seconds": 0.922, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + }, + "gemini_raw_output": { + "path": "AI_Photographer/Data/Audio/count_3_raw.wav", + "name": "count_3_raw.wav", + "size_bytes": 30764, + "size_mb": 0.029, + "duration_seconds": 0.64, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + } + } + }, + { + "record_name": "count_2", + "text": "Two.", + "model": "models/gemini-2.5-flash-native-audio-preview-12-2025", + "voice_name": "Charon", + "replay_count": 3, + "audio_capture": { + "sink": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo", + "monitor_source": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor", + "restored_microphone_source": "alsa_input.usb-Anker_PowerConf_A3321-DEV-SN1-01.mono-fallback", + "capture_device": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor" + }, + "timeline": { + "text_entered_at": "2026-03-13T19:12:57", + "audio_generated_at": "2026-03-13T19:12:59", + "last_playback_finished_at": "2026-03-13T19:13:05", + "saved_at": "2026-03-13T19:13:08" + }, + "files": { + "speaker_recording": { + "path": "AI_Photographer/Data/Audio/count_2.wav", + "name": "count_2.wav", + "size_bytes": 41282, + "size_mb": 0.039, + "duration_seconds": 0.859, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + }, + "gemini_raw_output": { + "path": "AI_Photographer/Data/Audio/count_2_raw.wav", + "name": "count_2_raw.wav", + "size_bytes": 26924, + "size_mb": 0.026, + "duration_seconds": 0.56, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + } + } + }, + { + "record_name": "count_1", + "text": "One", + "model": "models/gemini-2.5-flash-native-audio-preview-12-2025", + "voice_name": "Charon", + "replay_count": 2, + "audio_capture": { + "sink": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo", + "monitor_source": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor", + "restored_microphone_source": "alsa_input.usb-Anker_PowerConf_A3321-DEV-SN1-01.mono-fallback", + "capture_device": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor" + }, + "timeline": { + "text_entered_at": "2026-03-13T19:12:13", + "audio_generated_at": "2026-03-13T19:12:15", + "last_playback_finished_at": "2026-03-13T19:12:21", + "saved_at": "2026-03-13T19:12:24" + }, + "files": { + "speaker_recording": { + "path": "AI_Photographer/Data/Audio/count_1.wav", + "name": "count_1.wav", + "size_bytes": 44182, + "size_mb": 0.042, + "duration_seconds": 0.92, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + }, + "gemini_raw_output": { + "path": "AI_Photographer/Data/Audio/count_1_raw.wav", + "name": "count_1_raw.wav", + "size_bytes": 30764, + "size_mb": 0.029, + "duration_seconds": 0.64, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + } + } + }, + { + "record_name": "smile", + "text": "Smile.", + "model": "models/gemini-2.5-flash-native-audio-preview-12-2025", + "voice_name": "Charon", + "replay_count": 1, + "audio_capture": { + "sink": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo", + "monitor_source": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor", + "restored_microphone_source": "alsa_input.usb-Anker_PowerConf_A3321-DEV-SN1-01.mono-fallback", + "capture_device": "alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo.monitor" + }, + "timeline": { + "text_entered_at": "2026-03-13T19:11:35", + "audio_generated_at": "2026-03-13T19:11:38", + "last_playback_finished_at": "2026-03-13T19:11:39", + "saved_at": "2026-03-13T19:11:49" + }, + "files": { + "speaker_recording": { + "path": "AI_Photographer/Data/Audio/smile.wav", + "name": "smile.wav", + "size_bytes": 65728, + "size_mb": 0.063, + "duration_seconds": 1.368, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + }, + "gemini_raw_output": { + "path": "AI_Photographer/Data/Audio/smile_raw.wav", + "name": "smile_raw.wav", + "size_bytes": 51884, + "size_mb": 0.049, + "duration_seconds": 1.08, + "sample_rate": 24000, + "channels": 1, + "sample_width_bytes": 2 + } + } + } + ] +} \ No newline at end of file diff --git a/Data/Settings/config.json b/Data/Settings/config.json new file mode 100644 index 0000000..8e86872 --- /dev/null +++ b/Data/Settings/config.json @@ -0,0 +1,131 @@ +{ + "paths": { + "data_dir": "AI_Photographer/Data/G1", + "app_data_dir": "AI_Photographer/Data", + "app_settings_dir": "AI_Photographer/Data/Settings", + "app_scripts_dir": "AI_Photographer/Data/Scripts", + "app_runtime_dir": "AI_Photographer/Data/Runtime", + "app_notes_dir": "AI_Photographer/Data/Notes", + "audio_prompts_dir": "AI_Photographer/Data/Audio", + "audio_prompt_records_file": "AI_Photographer/Data/Settings/audio_prompt_records.json", + "scripts_dir": "AI_Photographer/Scripts", + "web_dir": "AI_Photographer/Web", + "photos_dir": "AI_Photographer/photos/Captures", + "people_dir": "AI_Photographer/photos/people", + "samples_dir": "AI_Photographer/photos/samples", + "replay_recordings_dir": "AI_Photographer/Data/G1", + "replay_recorder_script": "", + "home_file": "arm_home.jsonl", + "photo_phrases_file": "AI_Photographer/Data/Scripts/photo_command_ai.txt", + "sanad_script_file": "AI_Photographer/Data/Scripts/sanad_script.txt", + "runtime_health_file": "AI_Photographer/Data/Runtime/runtime_health.json", + "autonomous_state_file": "AI_Photographer/Data/Runtime/autonomous_state.json", + "upload_db": "AI_Photographer/Data/Runtime/upload_db.json" + }, + "timing": { + "photo_total_sec": 10.0, + "photo_thanks_sec": 3.0, + "photo_delay_sec": 5.0, + "replay_capture_end_margin_sec": 0.25, + "loop_rate": 10.0, + "ai_query_interval": 1.0 + }, + "server": { + "photo_server_port": 8080 + }, + "gemini": { + "api_key": "AIzaSyDt9Xi83MDZuuPpfwfHyMD92X7ZKdGkqf8", + "mic_enabled": true, + "model": "models/gemini-2.5-flash-native-audio-preview-12-2025", + "voice_name": "Charon", + "system_prompt_fallback": "You are Sanad (Bousandah), a friendly Emirati photographer assistant. Speak in UAE dialect (Khaleeji). Be short, energetic, and helpful." + }, + "upload": { + "method": "http", + "url": "", + "s3_bucket": "", + "s3_region": "", + "s3_key": "", + "s3_secret": "" + }, + "mode": { + "default_mode": "manual", + "current_mode": "manual" + }, + "replay": { + "active_file": "photo_G3.jsonl" + }, + "camera": { + "camera_index": 0, + "frame_width": 640, + "frame_height": 480, + "fps": 30, + "preferred_realsense_serial": "243622071722" + }, + "vision": { + "detection_backend": "yolo", + "yolo_runtime": "ultralytics", + "yolo_ultralytics_device": "cpu", + "person_yolo_onnx": "Models/person.pt", + "face_yolo_onnx": "", + "input_size": 640, + "person_class_id": 0, + "person_score_thresh": 0.35, + "face_score_thresh": 0.35, + "nms_iou_thresh": 0.45, + "group_min_people": 3, + "group_link_distance_px": 220.0, + "yolo_strict_required": true, + "gemini_context_hz": 8.0, + "gemini_context_silent": true, + "idle_voice_listen_enabled": true, + "hard_target_lock_enabled": true, + "retake_prompt_enabled": true, + "autonomous_greeting_replay_enabled": true, + "autonomous_greeting_replay_file": "right_hand_up.jsonl", + "autonomous_capture_replay_enabled": true, + "retake_max_per_session": 1, + "framing_headroom_min_ratio": 0.06, + "framing_headroom_max_ratio": 0.25, + "framing_eye_line_min_ratio": 0.28, + "framing_eye_line_max_ratio": 0.48, + "framing_retake_score_threshold": 0.68, + "face_recognition_enabled": true, + "face_recognition_threshold": 0.88 + }, + "watchdog": { + "ws_initial_backoff_sec": 1.0, + "ws_max_backoff_sec": 20.0, + "component_restart_delay_sec": 1.0, + "camera_capture_retry_count": 2, + "camera_capture_retry_delay_sec": 0.8 + }, + "audio_prompts": { + "mode": "audio", + "fallback_to_gemini": true, + "files": { + "welcome_single": "welcome_single.wav", + "welcome_group": "welcome_group.wav", + "welcome_returning": "welcome_returning.wav", + "frame_single": "frame_single.wav", + "frame_group": "frame_group.wav", + "confirm_reminder": "confirm_reminder.wav", + "visitor_left": "visitor_left.wav", + "declined": "declined.wav", + "confirm_timeout": "confirm_timeout.wav", + "session_cancelled": "session_cancelled.wav", + "framing_timeout": "framing_timeout.wav", + "countdown_intro": "countdown_intro.wav", + "count_3": "count_3.wav", + "count_2": "count_2.wav", + "count_1": "count_1.wav", + "smile": "smile.wav", + "countdown_cancelled": "countdown_cancelled.wav", + "lost_from_frame": "lost_from_frame.wav", + "retake_recommended": "retake_recommended.wav", + "retake_yes": "retake_yes.wav", + "retake_limit": "retake_limit.wav", + "photo_saved_thanks": "photo_saved_thanks.wav" + } + } +} diff --git a/Gemini/__init__.py b/Gemini/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/Gemini/gemini_voice.py b/Gemini/gemini_voice.py new file mode 100644 index 0000000..39c1260 --- /dev/null +++ b/Gemini/gemini_voice.py @@ -0,0 +1,823 @@ +# gemini_voice.py +import asyncio +import base64 +import json +import time +import array +import audioop +import inspect +import os +import re +import wave +from pathlib import Path + +import pyaudio +import websockets +from Core import settings as config +from Core import audio_prompts +from Gemini.sanad_text_utils import load_phrase_map, _norm_ar +from Core.Logger import Logs + +FORMAT = pyaudio.paInt16 +CHANNELS = 1 +SEND_SAMPLE_RATE = 16000 +RECEIVE_SAMPLE_RATE = 24000 +CHUNK_SIZE = 512 + + + + +class HamadGeminiVoice: + def __init__( + self, + photo_phrases_file: str = "photo_command_ai.txt", + ): + self.sanad_logger = Logs() + self.sanad_logger.LogEngine("G1_Logs", "gemini_voice") + + + self.audio_q = asyncio.Queue() + self.speaking = False + self.interrupted = False + self.pya = pyaudio.PyAudio() + self.mic_frames_per_buffer = CHUNK_SIZE + self.speaker_frames_per_buffer = CHUNK_SIZE + + self.MIN_THRESHOLD = 3000 + self.barge_in_threshold = 3000 + self.REQUIRED_LOUD_CHUNKS = 5 + + self.PREBUFFER_CHUNKS = max(1, int(os.environ.get("GEMINI_PREBUFFER_CHUNKS", "4"))) + self.PLAYBACK_TIMEOUT = max(0.1, float(os.environ.get("GEMINI_PLAYBACK_TIMEOUT", "0.35"))) + self.BARGE_IN_COOLDOWN = 0.7 + self.AI_SPEAK_GRACE = 0.25 + + self._last_ai_audio_time = 0.0 + self._ai_speaking_since = 0.0 + self._barge_in_block_until = 0.0 + + self.ECHO_GUARD_SEC = 0.8 + self._ignore_input_until = 0.0 + self.SEND_SILENCE_WHEN_SPEAKING = True + self.SPEAKING_ENERGY_GATE = 0.85 + self._silence_pcm = b"\x00" * (CHUNK_SIZE * 2) + self._photo_phrases_file = photo_phrases_file + self._photo_command_map = None + self.audio_gate_open = bool(int(os.environ.get("AUDIO_GATE_OPEN_ON_START", "1"))) + self.passive_listen_only = False + self._cmd_last_ts = {} + self.command_cooldown_sec = float(os.environ.get("VOICE_COMMAND_COOLDOWN_SEC", "1.2")) + self.device_restart_delay_sec = float(os.environ.get("AUDIO_DEVICE_RESTART_DELAY_SEC", "1.0")) + self.require_final_command = bool(int(os.environ.get("VOICE_CMDS_REQUIRE_FINAL", "1"))) + self.context_silent_default = bool(config.read_vision_gemini_context_silent()) + self.context_suppress_window_sec = float(os.environ.get("GEMINI_CONTEXT_SUPPRESS_WINDOW_SEC", "1.2")) + self.prompt_audio_allow_sec = float(os.environ.get("GEMINI_PROMPT_AUDIO_ALLOW_SEC", "15.0")) + self.user_turn_audio_allow_sec = float(os.environ.get("GEMINI_USER_TURN_ALLOW_SEC", "8.0")) + self._vision_context_seq = 0 + self._context_suppress_until = 0.0 + self._prompt_audio_allow_until = 0.0 + self._last_user_transcript_ts = 0.0 + self._last_context_drop_log_ts = 0.0 + self._last_audio_drop_log_ts = 0.0 + self._last_transcript_log_text = "" + self._last_transcript_log_ts = 0.0 + self._speaker_queue_drop_count = 0 + self._ws = None + self._ws_seq = 0 + self._ws_event = asyncio.Event() + self._prompt_play_lock = asyncio.Lock() + self._health = { + "ws_connected": False, + "ws_state": "detached", + "ws_restarts": 0, + "ws_last_error": "", + "ws_last_event_ts": 0.0, + "ws_last_reason": "", + "mic_state": "idle", + "mic_restarts": 0, + "mic_last_error": "", + "mic_last_event_ts": 0.0, + "speaker_state": "idle", + "speaker_restarts": 0, + "speaker_last_error": "", + "speaker_last_event_ts": 0.0, + "speaker_queue_drops": 0, + "speaker_queue_max": 0, + } + self._component_restart_delay_sec = float(config.read_watchdog_component_restart_delay_sec()) + self._log_audio_device_summary() + + def _log_user_transcript(self, text: str, is_final: bool, mode: str): + txt = str(text or "").strip() + if not txt: + return + now = time.time() + if is_final and txt == self._last_transcript_log_text and (now - self._last_transcript_log_ts) < 1.0: + return + self._last_transcript_log_text = txt + self._last_transcript_log_ts = now + state = "final" if is_final else "partial" + self.sanad_logger.print_and_log( + f"๐ŸŽค Heard ({state}, mode={mode}): {txt}", + message_type="info", + ) + + def _log_audio_device_summary(self): + try: + in_info = self.pya.get_default_input_device_info() + except Exception: + in_info = None + try: + out_info = self.pya.get_default_output_device_info() + except Exception: + out_info = None + + def _fmt(info: dict | None) -> str: + if not info: + return "unavailable" + name = str(info.get("name", "unknown")) + idx = info.get("index", "?") + rate = info.get("defaultSampleRate", "?") + return f"{name} (index={idx}, rate={rate})" + + self.sanad_logger.print_and_log(f"๐ŸŽค PortAudio input: {_fmt(in_info)}", message_type="info") + self.sanad_logger.print_and_log(f"๐Ÿ”ˆ PortAudio output: {_fmt(out_info)}", message_type="info") + + def set_audio_gate(self, enabled: bool, reason: str = ""): + self.audio_gate_open = bool(enabled) + state = "OPEN" if self.audio_gate_open else "CLOSED" + suffix = f" ({reason})" if reason else "" + self.sanad_logger.print_and_log(f"๐ŸŽง Audio gate {state}{suffix}", message_type="info") + + def set_passive_listen(self, enabled: bool, reason: str = ""): + self.passive_listen_only = bool(enabled) + state = "ON" if self.passive_listen_only else "OFF" + suffix = f" ({reason})" if reason else "" + self.sanad_logger.print_and_log(f"๐Ÿฆป Passive listen {state}{suffix}", message_type="info") + + def attach_ws(self, ws): + if ws is None: + return + self._ws = ws + self._ws_seq += 1 + self._ws_event.set() + self._health["ws_connected"] = True + self._health["ws_state"] = "connected" + self._health["ws_last_event_ts"] = time.time() + self._health["ws_last_reason"] = "attach" + if self._ws_seq > 1: + self._health["ws_restarts"] = int(self._health.get("ws_restarts", 0)) + 1 + + def detach_ws(self, reason: str = ""): + old_ws = self._ws + self._ws = None + self._ws_event.clear() + self._health["ws_connected"] = False + self._health["ws_state"] = "detached" + self._health["ws_last_event_ts"] = time.time() + self._health["ws_last_reason"] = str(reason or "") + if reason: + self._health["ws_last_error"] = str(reason) + try: + if old_ws is not None: + asyncio.create_task(old_ws.close()) + except Exception: + pass + + def is_ws_connected(self) -> bool: + ws = self._ws + return ws is not None + + async def _wait_for_ws(self, timeout_sec: float | None = None): + ws = self._ws + if ws is not None: + return ws + if timeout_sec is None: + await self._ws_event.wait() + return self._ws + if timeout_sec <= 0: + return None + try: + await asyncio.wait_for(self._ws_event.wait(), timeout=timeout_sec) + except asyncio.TimeoutError: + return None + return self._ws + + def get_runtime_health(self) -> dict: + out = dict(self._health) + out["mic_enabled"] = bool(config.read_gemini_mic_enabled()) + out["audio_gate_open"] = bool(self.audio_gate_open) + out["passive_listen_only"] = bool(self.passive_listen_only) + out["speaking"] = bool(self.speaking) + out["interrupted"] = bool(self.interrupted) + out["speaker_queue_size"] = int(self.audio_q.qsize()) + out["time"] = time.time() + return out + + def _queue_model_audio(self, audio_bytes: bytes): + if not audio_bytes: + return + self.audio_q.put_nowait(audio_bytes) + + def _load_prompt_pcm(self, prompt_path: Path) -> tuple[bytes, float]: + with wave.open(str(prompt_path), "rb") as wav_file: + channels = int(wav_file.getnchannels()) + sample_width = int(wav_file.getsampwidth()) + frame_rate = int(wav_file.getframerate()) + raw = wav_file.readframes(wav_file.getnframes()) + + if channels < 1 or channels > 2: + raise ValueError(f"unsupported WAV channel count: {channels}") + + if sample_width != 2: + raw = audioop.lin2lin(raw, sample_width, 2) + sample_width = 2 + + if channels == 2: + raw = audioop.tomono(raw, sample_width, 0.5, 0.5) + channels = 1 + + if frame_rate != RECEIVE_SAMPLE_RATE: + raw, _ = audioop.ratecv(raw, sample_width, channels, frame_rate, RECEIVE_SAMPLE_RATE, None) + + duration_sec = len(raw) / float(sample_width * channels * RECEIVE_SAMPLE_RATE) if raw else 0.0 + return raw, max(0.0, duration_sec) + + async def _play_local_prompt_file(self, prompt_path: Path) -> bool: + async with self._prompt_play_lock: + try: + pcm, duration_sec = await asyncio.to_thread(self._load_prompt_pcm, prompt_path) + except Exception as e: + self.sanad_logger.print_and_log( + f"โš ๏ธ Prompt audio failed for {prompt_path.name}: {e}", + message_type="warning", + ) + return False + + if not pcm: + return False + + now = time.time() + self.interrupted = False + self.speaking = True + self._ai_speaking_since = now + self._last_ai_audio_time = now + self._ignore_input_until = now + duration_sec + self.ECHO_GUARD_SEC + self._prompt_audio_allow_until = max(self._prompt_audio_allow_until, now + duration_sec + 1.0) + self.sanad_logger.print_and_log( + f"๐Ÿ”Š Prompt audio: {prompt_path.name}", + message_type="info", + ) + + chunk_bytes = max(self.speaker_frames_per_buffer * 2, 4096) + for i in range(0, len(pcm), chunk_bytes): + self._queue_model_audio(pcm[i:i + chunk_bytes]) + + deadline = time.time() + max(2.0, duration_sec + 2.0) + while time.time() < deadline: + if self.audio_q.empty() and not self.speaking: + break + await asyncio.sleep(0.05) + return True + + async def play_prompt_key( + self, + key: str, + fallback_text: str = "", + allow_gemini_fallback: bool | None = None, + wait_timeout_sec: float = 0.0, + mode_override: str | None = None, + ) -> bool: + prompt_mode = str(mode_override or config.read_audio_prompt_mode()).strip().lower() + if prompt_mode not in ("audio", "gemini"): + prompt_mode = "audio" + allow_fallback = ( + config.read_audio_prompts_fallback_to_gemini() + if allow_gemini_fallback is None + else bool(allow_gemini_fallback) + ) + try: + prompt_path = audio_prompts.prompt_path(key) + except Exception as e: + self.sanad_logger.print_and_log(f"โš ๏ธ Unknown prompt key {key}: {e}", message_type="warning") + prompt_path = None + + if prompt_mode == "gemini" and fallback_text: + return await self.send_text_prompt_live(fallback_text, wait_timeout_sec=wait_timeout_sec) + + if prompt_path is not None and prompt_path.exists(): + played = await self._play_local_prompt_file(prompt_path) + if played: + return True + + if fallback_text and allow_fallback: + return await self.send_text_prompt_live(fallback_text, wait_timeout_sec=wait_timeout_sec) + return False + + async def trigger_wake_sequence(self, ws=None, wake_text: str | None = None, prompt_key: str | None = None): + """ + Open mic gate and inject a context prompt so Gemini speaks first. + """ + self.set_audio_gate(True, reason="interaction triggered") + prompt = ( + wake_text + or "A tourist has just approached you. Warmly greet them and ask if they would like to take a photo." + ) + if prompt_key: + played = await self.play_prompt_key(prompt_key, fallback_text=prompt) + if played: + return + if ws is not None: + await self.send_text_prompt(ws, prompt) + else: + await self.send_text_prompt_live(prompt) + + def _should_suppress_model_audio(self, now_ts: float) -> bool: + if self.passive_listen_only: + return True + if now_ts <= self._prompt_audio_allow_until: + return False + if (now_ts - self._last_user_transcript_ts) <= self.user_turn_audio_allow_sec: + return False + return now_ts <= self._context_suppress_until + + def _command_allowed_now(self, cmd: str) -> bool: + now = time.time() + last = float(self._cmd_last_ts.get(cmd, 0.0)) + if (now - last) < self.command_cooldown_sec: + return False + self._cmd_last_ts[cmd] = now + return True + + def _write_flag(self, flag_name: str, label: str): + try: + p = config.SCRIPTS_DIR / flag_name + p.write_text(str(time.time())) + self.sanad_logger.print_and_log(f"๐Ÿ“ฉ {label} flag written", message_type="info") + except Exception as e: + self.sanad_logger.print_and_log(f"โŒ Failed to write {label} flag: {e}", message_type="error") + + def _mode_value(self) -> str: + try: + mode = str(config.read_runtime_mode()).strip().lower() + except Exception: + mode = "manual" + if mode not in ("manual", "ai"): + mode = "manual" + return mode + + def _match_in_mapping(self, text: str, mapping: dict | None): + norm = _norm_ar(str(text or "")) + if not norm or not mapping: + return None + + # Exact phrase first. + cmd = mapping.get(norm) + if cmd: + return cmd + + norm_padded = f" {norm} " + norm_nospace = norm.replace(" ", "") + # Longest aliases first to avoid matching short words prematurely. + for phrase, mapped in sorted(mapping.items(), key=lambda kv: len(kv[0]), reverse=True): + p = str(phrase or "").strip() + if not p: + continue + if f" {p} " in norm_padded: + return mapped + # Arabic/compact forms fallback. + p_nospace = p.replace(" ", "") + if p_nospace and p_nospace in norm_nospace: + return mapped + try: + if " " in p and re.search(rf"\b{re.escape(p)}\b", norm): + return mapped + except Exception: + pass + return None + + def _match_photo_command_from_text(self, text: str): + if self._photo_command_map is None: + self._photo_command_map = load_phrase_map(self._photo_phrases_file) + return self._match_in_mapping(text, self._photo_command_map) + + def _extract_user_transcripts(self, response: dict, server_content: dict): + out = [] + candidates = [ + response.get("inputAudioTranscription"), + response.get("inputTranscription"), + server_content.get("inputAudioTranscription"), + server_content.get("inputTranscription"), + ] + for item in candidates: + if item is None: + continue + if isinstance(item, str): + out.append((item, True)) + continue + if isinstance(item, dict): + txt = item.get("text") or item.get("transcript") or item.get("content") + is_final = item.get("isFinal") + if is_final is None: + is_final = item.get("final") + if is_final is None: + is_final = item.get("done") + if txt: + out.append((str(txt), True if is_final is None else bool(is_final))) + parts = item.get("parts") + if isinstance(parts, list): + for p in parts: + if isinstance(p, dict): + t = p.get("text") + if t: + out.append((str(t), True)) + elif isinstance(item, list): + for it in item: + if isinstance(it, str): + out.append((it, True)) + elif isinstance(it, dict): + t = it.get("text") or it.get("transcript") + if t: + out.append((str(t), bool(it.get("isFinal", True)))) + return out + + async def _handle_user_transcript(self, text: str, is_final: bool): + now = time.time() + self._last_user_transcript_ts = now + self._prompt_audio_allow_until = max(self._prompt_audio_allow_until, now + self.user_turn_audio_allow_sec) + + mode = self._mode_value() + self._log_user_transcript(text, is_final=bool(is_final), mode=mode) + + if self.require_final_command and (not is_final): + return + + if mode == "manual": + return + + photo_cmd = self._match_photo_command_from_text(text) + if photo_cmd: + self.sanad_logger.print_and_log( + f"๐Ÿง  Command match: {photo_cmd}", + message_type="info", + ) + if not self._command_allowed_now(photo_cmd): + return + + if photo_cmd == "no_photo": + self._write_flag("confirm_no.flag", "No photo") + else: + self._write_flag( + "confirm_yes.flag", + "Yes photo" if photo_cmd == "yes_photo" else "Photo request", + ) + if photo_cmd == "request_photo": + self._write_flag("request_photo.flag", "Photo request") + return + + def audio_energy(self, pcm): + try: + samples = array.array("h", pcm) + if not samples: + return 0 + return sum(abs(s) for s in samples) // len(samples) + except Exception: + return 0 + + def calibrate_mic(self): + self.sanad_logger.print_and_log("\n๐Ÿคซ Calibrating Microphone... (Please remain silent)", message_type="info") + try: + stream = self.pya.open( + format=FORMAT, + channels=CHANNELS, + rate=SEND_SAMPLE_RATE, + input=True, + frames_per_buffer=self.mic_frames_per_buffer, + ) + values = [] + for _ in range(40): + data = stream.read(CHUNK_SIZE, exception_on_overflow=False) + values.append(self.audio_energy(data)) + + stream.stop_stream() + stream.close() + + avg_noise = sum(values) / len(values) + self.barge_in_threshold = max(self.MIN_THRESHOLD, avg_noise * 3.0) + + self.sanad_logger.print_and_log(f"โœ… Baseline Noise: {avg_noise:.1f}", message_type="info") + self.sanad_logger.print_and_log(f"โœ… Interruption Threshold: {self.barge_in_threshold:.1f}", message_type="info") + except Exception as e: + self.sanad_logger.print_and_log(f"โš ๏ธ Calibration failed: {e}. Using default threshold.", message_type="warning") + + def _ws_connect_kwargs(self): + kwargs = {"max_size": None} + try: + sig = inspect.signature(websockets.connect) + if "extra_headers" in sig.parameters: + kwargs["extra_headers"] = {"Content-Type": "application/json"} + else: + kwargs["additional_headers"] = {"Content-Type": "application/json"} + except Exception: + kwargs["extra_headers"] = {"Content-Type": "application/json"} + return kwargs + + async def send_text_prompt(self, ws, text: str, allow_speech: bool = True): + msg = { + "clientContent": { + "turns": [{"role": "user", "parts": [{"text": text}]}], + "turnComplete": True + } + } + await ws.send(json.dumps(msg)) + if allow_speech: + self._prompt_audio_allow_until = max(self._prompt_audio_allow_until, time.time() + self.prompt_audio_allow_sec) + + async def send_text_prompt_live(self, text: str, allow_speech: bool = True, wait_timeout_sec: float = 0.0) -> bool: + ws = await self._wait_for_ws(timeout_sec=wait_timeout_sec) + if ws is None: + return False + try: + await self.send_text_prompt(ws, text, allow_speech=allow_speech) + return True + except Exception as e: + self.detach_ws(reason=f"send_text_prompt_live failed: {e}") + return False + + async def send_vision_context(self, ws, context: dict, silent: bool | None = None): + if silent is None: + silent = bool(self.context_silent_default) + self._vision_context_seq += 1 + seq = self._vision_context_seq + payload = dict(context or {}) + payload["context_seq"] = seq + payload["context_type"] = "vision" + + if silent: + text = ( + "SILENT_VISION_CONTEXT. Internal grounding update only; do not speak and do not produce audio. " + f"Use this context silently. Payload JSON: {json.dumps(payload, ensure_ascii=False)}" + ) + else: + text = f"VISION_CONTEXT_UPDATE: {json.dumps(payload, ensure_ascii=False)}" + + await self.send_text_prompt(ws, text, allow_speech=not silent) + if silent: + self._context_suppress_until = max( + self._context_suppress_until, + time.time() + max(0.2, self.context_suppress_window_sec), + ) + + async def send_vision_context_live(self, context: dict, silent: bool | None = None, wait_timeout_sec: float = 0.0) -> bool: + ws = await self._wait_for_ws(timeout_sec=wait_timeout_sec) + if ws is None: + return False + try: + await self.send_vision_context(ws, context=context, silent=silent) + return True + except Exception as e: + self.detach_ws(reason=f"send_vision_context_live failed: {e}") + return False + + async def keepalive(self, ws=None, every_sec: float = 20.0): + """ + Prevent idle disconnects: periodically send a websocket ping. + """ + while True: + try: + await asyncio.sleep(every_sec) + active_ws = self._ws + if active_ws is None: + continue + await active_ws.ping() + except asyncio.CancelledError: + raise + except Exception as e: + self.detach_ws(reason=f"keepalive ping failed: {e}") + await asyncio.sleep(self._component_restart_delay_sec) + + async def capture_mic(self, ws=None): + loud_chunks = 0 + while True: + stream = None + try: + while not self.audio_gate_open: + self._health["mic_state"] = "idle" + self._health["mic_last_event_ts"] = time.time() + await asyncio.sleep(0.1) + + self._health["mic_state"] = "starting" + self._health["mic_last_event_ts"] = time.time() + stream = await asyncio.to_thread( + self.pya.open, + format=FORMAT, + channels=CHANNELS, + rate=SEND_SAMPLE_RATE, + input=True, + frames_per_buffer=self.mic_frames_per_buffer, + ) + self._health["mic_state"] = "running" + self._health["mic_last_event_ts"] = time.time() + + while True: + data = await asyncio.to_thread(stream.read, CHUNK_SIZE, exception_on_overflow=False) + energy = self.audio_energy(data) + now = time.time() + + if not self.audio_gate_open: + continue + + if self.speaking and (now >= self._barge_in_block_until): + if (now - self._ai_speaking_since) >= self.AI_SPEAK_GRACE: + loud_chunks = loud_chunks + 1 if energy > self.barge_in_threshold else 0 + if loud_chunks > self.REQUIRED_LOUD_CHUNKS: + self.sanad_logger.print_and_log(f"๐Ÿ›‘ Interruption! (Energy: {energy})", message_type="warning") + self.interrupted = True + self.speaking = False + loud_chunks = 0 + self._barge_in_block_until = now + self.BARGE_IN_COOLDOWN + while not self.audio_q.empty(): + try: + self.audio_q.get_nowait() + except asyncio.QueueEmpty: + break + + data_to_send = data + if self.SEND_SILENCE_WHEN_SPEAKING and self.speaking: + gate = self.barge_in_threshold * self.SPEAKING_ENERGY_GATE + if energy < gate: + data_to_send = self._silence_pcm + + b64_audio = base64.b64encode(data_to_send).decode("utf-8") + msg = { + "realtime_input": { + "media_chunks": [{ + "data": b64_audio, + "mime_type": f"audio/pcm;rate={SEND_SAMPLE_RATE}", + }] + } + } + active_ws = self._ws + if active_ws is None: + continue + try: + await active_ws.send(json.dumps(msg)) + except websockets.exceptions.ConnectionClosed as e: + self.detach_ws(reason=f"mic send ws closed: {e}") + await asyncio.sleep(self._component_restart_delay_sec) + except Exception as e: + self.detach_ws(reason=f"mic send ws error: {e}") + await asyncio.sleep(self._component_restart_delay_sec) + + except asyncio.CancelledError: + raise + except Exception as e: + self.sanad_logger.print_and_log(f"โŒ Mic Error: {e} (restarting mic)", message_type="warning") + self._health["mic_state"] = "error" + self._health["mic_restarts"] = int(self._health.get("mic_restarts", 0)) + 1 + self._health["mic_last_error"] = str(e) + self._health["mic_last_event_ts"] = time.time() + await asyncio.sleep(max(self.device_restart_delay_sec, self._component_restart_delay_sec)) + finally: + if stream is not None: + try: + await asyncio.to_thread(stream.stop_stream) + except Exception: + pass + try: + await asyncio.to_thread(stream.close) + except Exception: + pass + if self._health.get("mic_state") != "error": + self._health["mic_state"] = "restarting" + self._health["mic_last_event_ts"] = time.time() + + async def receive_audio(self, ws=None): + while True: + active_ws = self._ws + if active_ws is None: + await asyncio.sleep(0.05) + continue + try: + msg = await active_ws.recv() + except asyncio.CancelledError: + raise + except websockets.exceptions.ConnectionClosed as e: + self.detach_ws(reason=f"receive ws closed: {e}") + await asyncio.sleep(self._component_restart_delay_sec) + continue + except Exception as e: + self.detach_ws(reason=f"receive ws error: {e}") + await asyncio.sleep(self._component_restart_delay_sec) + continue + + try: + response = json.loads(msg) + server_content = response.get("serverContent", {}) + + if server_content.get("interrupted"): + self.interrupted = False + + if self.interrupted: + continue + + # Safety: map commands from USER transcription events (not model text). + try: + transcripts = self._extract_user_transcripts(response, server_content) + for txt, is_final in transcripts: + await self._handle_user_transcript(txt, is_final=bool(is_final)) + except Exception as e: + self.sanad_logger.print_and_log(f"โš ๏ธ Transcript parse warning: {e}", message_type="warning") + + model_turn = server_content.get("modelTurn") + if model_turn: + for part in model_turn.get("parts", []): + inline_data = part.get("inlineData") + if inline_data and inline_data.get("data"): + now = time.time() + if self._should_suppress_model_audio(now): + if (now - self._last_context_drop_log_ts) >= 5.0: + self._last_context_drop_log_ts = now + self.sanad_logger.print_and_log( + "๐Ÿคซ Suppressed unsolicited model audio from context-only turn.", + message_type="info", + ) + continue + if not self.speaking: + self._ai_speaking_since = now + self.sanad_logger.print_and_log("๐Ÿ”Š Gemini audio response started.", message_type="info") + self.speaking = True + self._last_ai_audio_time = now + self._ignore_input_until = now + self.ECHO_GUARD_SEC + + audio_bytes = base64.b64decode(inline_data["data"]) + self._queue_model_audio(audio_bytes) + + except Exception as e: + self.sanad_logger.print_and_log(f"โŒ Parse Error: {e}", message_type="error") + + async def play_audio(self): + while True: + stream = None + buffered = False + try: + self._health["speaker_state"] = "starting" + self._health["speaker_last_event_ts"] = time.time() + stream = await asyncio.to_thread( + self.pya.open, + format=FORMAT, + channels=CHANNELS, + rate=RECEIVE_SAMPLE_RATE, + output=True, + frames_per_buffer=self.speaker_frames_per_buffer, + ) + self._health["speaker_state"] = "running" + self._health["speaker_last_event_ts"] = time.time() + + while True: + if self.interrupted: + await asyncio.sleep(0.01) + continue + + if self.speaking and not buffered: + while self.audio_q.qsize() < self.PREBUFFER_CHUNKS and self.speaking and not self.interrupted: + await asyncio.sleep(0.01) + buffered = True + + try: + data = await asyncio.wait_for(self.audio_q.get(), timeout=self.PLAYBACK_TIMEOUT) + except asyncio.TimeoutError: + if self.audio_q.empty() and (time.time() - self._last_ai_audio_time) > 0.25: + self.speaking = False + buffered = False + continue + + if data: + await asyncio.to_thread(stream.write, data) + + if self.audio_q.empty() and (time.time() - self._last_ai_audio_time) > 0.25: + self.speaking = False + buffered = False + + except asyncio.CancelledError: + raise + except Exception as e: + self.sanad_logger.print_and_log(f"โŒ Speaker Error: {e} (restarting speaker)", message_type="warning") + self._health["speaker_state"] = "error" + self._health["speaker_restarts"] = int(self._health.get("speaker_restarts", 0)) + 1 + self._health["speaker_last_error"] = str(e) + self._health["speaker_last_event_ts"] = time.time() + await asyncio.sleep(max(self.device_restart_delay_sec, self._component_restart_delay_sec)) + finally: + if stream is not None: + try: + await asyncio.to_thread(stream.stop_stream) + except Exception: + pass + try: + await asyncio.to_thread(stream.close) + except Exception: + pass + if self._health.get("speaker_state") != "error": + self._health["speaker_state"] = "restarting" + self._health["speaker_last_event_ts"] = time.time() diff --git a/Gemini/sanad_text_utils.py b/Gemini/sanad_text_utils.py new file mode 100644 index 0000000..cf63633 --- /dev/null +++ b/Gemini/sanad_text_utils.py @@ -0,0 +1,372 @@ +import ast +import os +import re +import time +import asyncio + +from Core import settings as config + +# ================================================== +# ๐Ÿ”ค Arabic & English normalization +# ================================================== + +def _norm_ar(s: str) -> str: + s = (s or "").strip().lower() + if not s: + return "" + + # Arabic punctuation: ุŸ ุŒ ุ› + s = re.sub(r"[\u061F\u060C\u061B]", " ", s) + + # โœ… Keep Arabic, English letters, word chars, and spaces + s = re.sub(r"[^\w\s\u0600-\u06FFa-zA-Z]", " ", s) + + # collapse spaces + s = re.sub(r"\s+", " ", s).strip() + + # normalize hamza/alif variants + s = s.replace("ุฃ", "ุง").replace("ุฅ", "ุง").replace("ุข", "ุง") + + # ta marbuta -> ha, alif maqsoora -> ya + s = s.replace("ุฉ", "ู‡").replace("ู‰", "ูŠ") + + # tatweel + s = s.replace("ู€", "") + + # common nickname normalization + s = s.replace("ุงุจูˆ", "ุจูˆ") + + return s.strip() + + +# ================================================== +# ๐Ÿ“‚ Load wake phrases from a python file (sanad_arm.txt) +# Modified to search the local Scripts folder if not found next to module +# ================================================== + +def load_arm_phrases(filename: str = "sanad_arm.txt", *, var_name: str = "WAKE_PHRASES") -> set[str]: + base_dir = os.path.dirname(os.path.abspath(__file__)) + + # Candidate locations (module dir, module dir / Scripts, parent / Scripts) + candidates = [ + os.path.join(base_dir, filename), + os.path.join(base_dir, "Scripts", filename), + os.path.join(base_dir, "..", "Scripts", filename), + ] + + arm_path = None + for c in candidates: + if os.path.exists(c): + arm_path = c + break + + if arm_path is None: + raise FileNotFoundError(f"Arm phrases file not found in candidates: {candidates}") + + print(f"๐Ÿ“‚ Loading arm phrases from: {arm_path} (var={var_name})") + + with open(arm_path, "r", encoding="utf-8-sig") as f: + raw = f.read() + + # Try to parse as python file (legacy format with WAKE_PHRASES variables). + # Uses ast.parse + ast.literal_eval instead of exec() for safety. + try: + tree = ast.parse(raw) + for node in ast.walk(tree): + if isinstance(node, ast.Assign): + for target in node.targets: + if isinstance(target, ast.Name) and target.id == var_name: + phrases = ast.literal_eval(node.value) + if isinstance(phrases, (set, list, tuple)): + out = {_norm_ar(str(p)) for p in phrases if str(p).strip()} + out = {p for p in out if p} + print(f"โœ… Loaded {len(out)} wake phrases from file variable: {var_name}") + return out + except Exception: + # fall through to plain text parsing + pass + + # Plain-text newline-separated phrases fallback + lines = [ln.strip() for ln in raw.splitlines()] + cand = [ln for ln in lines if ln and not ln.startswith("#")] + out = {_norm_ar(ln) for ln in cand} + out = {p for p in out if p} + print(f"โœ… Loaded {len(out)} wake phrases from plain text file: {arm_path}") + return out + + +# ================================================== +# ๐Ÿง  Wake phrase matching + scheduling +# ================================================== + +def _is_valid_text(s: str) -> bool: + # Allow Arabic OR English letters + has_ar = bool(re.search(r"[\u0600-\u06FF]", s or "")) + has_en = bool(re.search(r"[a-zA-Z]", s or "")) + return has_ar or has_en + + +def _strip_ya_prefix(s: str) -> str: + s = (s or "").strip() + if not s: + return "" + if s.startswith("ูŠุง "): + return s[3:].strip() + if s.startswith("ูŠุง"): + return s[2:].strip() + return s + + +def _remove_al_prefix_words(text: str) -> str: + if not text: + return "" + parts = text.split() + out = [] + for w in parts: + if w.startswith("ุงู„") and len(w) > 2: + out.append(w[2:]) + else: + out.append(w) + return " ".join(out).strip() + + +def _maybe_trigger_arm( + obj, + transcript_text: str, + wake_phrases: set[str], + *, + fire_on_wake_match: bool = False, + arm_trigger_fn=None, +) -> bool: + if not transcript_text or not wake_phrases: + return False + + # initialization of state variables (copied from original logic) + if not hasattr(obj, "_asr_buf"): + obj._asr_buf = "" + if not hasattr(obj, "_asr_last_time"): + obj._asr_last_time = 0.0 + if not hasattr(obj, "ASR_WINDOW_SEC"): + obj.ASR_WINDOW_SEC = 2.0 + if not hasattr(obj, "ASR_SHORT_TOKEN_BONUS_SEC"): + obj.ASR_SHORT_TOKEN_BONUS_SEC = 1.0 + if not hasattr(obj, "ASR_JOIN_NO_SPACE_MAXLEN"): + obj.ASR_JOIN_NO_SPACE_MAXLEN = 2 + if not hasattr(obj, "ASR_MAX_CHARS"): + obj.ASR_MAX_CHARS = 120 + + if not hasattr(obj, "_last_trigger_norm"): + obj._last_trigger_norm = "" + if not hasattr(obj, "_last_trigger_time"): + obj._last_trigger_time = 0.0 + if not hasattr(obj, "TRIGGER_DEDUP_WINDOW"): + obj.TRIGGER_DEDUP_WINDOW = 2.0 + + if not hasattr(obj, "_pending_arm_wave"): + obj._pending_arm_wave = False + if not hasattr(obj, "_pending_arm_wave_fired"): + obj._pending_arm_wave_fired = False + if not hasattr(obj, "_pending_arm_wave_set_time"): + obj._pending_arm_wave_set_time = 0.0 + if not hasattr(obj, "PENDING_ARM_TTL"): + obj.PENDING_ARM_TTL = 6.0 + + if not hasattr(obj, "_pending_arm_trigger_fn"): + obj._pending_arm_trigger_fn = None + if not hasattr(obj, "_pending_arm_fallback_time"): + obj._pending_arm_fallback_time = 0.0 + + if not hasattr(obj, "_last_piece_call_norm"): + obj._last_piece_call_norm = "" + if not hasattr(obj, "_last_piece_call_time"): + obj._last_piece_call_time = 0.0 + + if not hasattr(obj, "_asr_stream"): + obj._asr_stream = "" + if not hasattr(obj, "ASR_STREAM_MAX_CHARS"): + obj.ASR_STREAM_MAX_CHARS = 80 + + dup_call_window = float(getattr(obj, "DUP_CALL_WINDOW_SEC", 0.25)) + dup_asr_repeat_window = float(getattr(obj, "DUP_ASR_REPEAT_WINDOW_SEC", 0.9)) + pending_fallback_sec = float(getattr(obj, "PENDING_ARM_FALLBACK_SEC", 0.65)) + + piece_raw = (transcript_text or "").strip() + if not piece_raw: + return False + + piece_norm = _norm_ar(piece_raw) + if not piece_norm: + return False + + now = time.time() + + if not _is_valid_text(piece_norm): + return False + + duplicate_call = ( + (piece_norm == obj._last_piece_call_norm) + and ((now - obj._last_piece_call_time) < dup_call_window) + ) + + repeated_asr = ( + (piece_norm == obj._last_piece_call_norm) + and ((now - obj._last_piece_call_time) < dup_asr_repeat_window) + ) + + obj._last_piece_call_norm = piece_norm + obj._last_piece_call_time = now + + if not duplicate_call and not repeated_asr: + print(f"๐Ÿ“ USER SAID (raw): {piece_raw}") + print(f"๐Ÿ“ USER SAID (norm): {piece_norm}") + + if not duplicate_call and not repeated_asr: + if obj._asr_last_time: + gap = now - obj._asr_last_time + window = obj.ASR_WINDOW_SEC + if len(piece_norm) <= obj.ASR_JOIN_NO_SPACE_MAXLEN: + window += obj.ASR_SHORT_TOKEN_BONUS_SEC + if gap > window: + obj._asr_buf = "" + obj._asr_stream = "" + + obj._asr_last_time = now + + if obj._asr_buf: + if len(piece_norm) <= obj.ASR_JOIN_NO_SPACE_MAXLEN: + obj._asr_buf = (obj._asr_buf + piece_norm).strip() + else: + obj._asr_buf = (obj._asr_buf + " " + piece_norm).strip() + else: + obj._asr_buf = piece_norm + + compact = piece_norm.replace(" ", "") + obj._asr_stream = (obj._asr_stream + compact)[-obj.ASR_STREAM_MAX_CHARS :] + + if len(obj._asr_buf) > obj.ASR_MAX_CHARS: + obj._asr_buf = obj._asr_buf[-obj.ASR_MAX_CHARS :] + + buf_norm = _norm_ar(obj._asr_buf) + buf_nospace = buf_norm.replace(" ", "") + buf_noal = _remove_al_prefix_words(buf_norm) + buf_noal_nospace = buf_noal.replace(" ", "") + stream = _norm_ar(obj._asr_stream).replace(" ", "") + stream_noal = _remove_al_prefix_words(stream) + + if not duplicate_call and not repeated_asr: + print(f"๐Ÿงฉ ASR BUFFER: {buf_norm}") + + if ( + buf_norm == obj._last_trigger_norm + and (now - obj._last_trigger_time) < obj.TRIGGER_DEDUP_WINDOW + ): + return False + + for phrase in wake_phrases: + p_norm = _strip_ya_prefix(_norm_ar(str(phrase))) + if not p_norm: + continue + + p_nospace = p_norm.replace(" ", "") + p_noal = _remove_al_prefix_words(p_norm) + p_noal_nospace = p_noal.replace(" ", "") + + pattern = r'\b' + re.escape(p_norm) + r'\b' + hit_buf = bool(re.search(pattern, buf_norm)) or (p_nospace and p_nospace == buf_nospace) + hit_buf = hit_buf or (p_noal and (p_noal in buf_noal or (p_noal_nospace and p_noal_nospace in buf_noal_nospace))) + + hit_stream = False + if p_nospace and p_nospace in stream: + hit_stream = True + elif p_noal_nospace and p_noal_nospace in stream_noal: + hit_stream = True + + if hit_buf or hit_stream: + if hit_stream and not hit_buf: + print(f"โšก FAST MATCH: '{phrase}' (recent tokens)") + else: + print(f"โœ… MATCH: '{phrase}' in BUFFER='{obj._asr_buf}'") + + obj._last_trigger_norm = buf_norm + obj._last_trigger_time = now + + obj._asr_buf = "" + obj._asr_last_time = 0.0 + obj._asr_stream = "" + + if fire_on_wake_match: + if arm_trigger_fn: + asyncio.create_task(asyncio.to_thread(arm_trigger_fn)) + obj._pending_arm_wave = False + obj._pending_arm_wave_fired = False + obj._pending_arm_wave_set_time = 0.0 + obj._pending_arm_trigger_fn = None + obj._pending_arm_fallback_time = 0.0 + else: + obj._pending_arm_wave = True + obj._pending_arm_wave_fired = False + obj._pending_arm_wave_set_time = now + obj._pending_arm_trigger_fn = arm_trigger_fn + obj._pending_arm_fallback_time = now + pending_fallback_sec + + return True + + return False + + +# ================================================== +# ๐Ÿ” Phrase map loader (plain-text grouped format) +# Format: groups separated by blank lines. First line = canonical command, +# following lines = aliases. +_phrase_map_cache = {} + +def load_phrase_map(filename: str = "photo_command_ai.txt") -> dict: + base_dir = os.path.dirname(os.path.abspath(__file__)) + candidates = [ + str(config.PHOTO_PHRASES_FILE), + os.path.join(base_dir, filename), + os.path.join(base_dir, "Scripts", filename), + os.path.join(base_dir, "Data", filename), + os.path.join(base_dir, "..", "Data", "Scripts", filename), + os.path.join(base_dir, "..", "Scripts", filename), + os.path.join(base_dir, "..", "Data", filename), + ] + path = None + for c in candidates: + if os.path.exists(c): + path = c + break + if path is None: + return {} + + if path in _phrase_map_cache: + return _phrase_map_cache[path] + + with open(path, 'r', encoding='utf-8-sig') as f: + lines = [ln.rstrip() for ln in f.readlines()] + + groups = [] + cur = [] + for ln in lines: + s = ln.strip() + if not s: + if cur: + groups.append(cur) + cur = [] + continue + if s.startswith("#"): + continue + cur.append(s) + if cur: + groups.append(cur) + + mapping = {} + for g in groups: + cmd = g[0] + aliases = g + for a in aliases: + mapping[_norm_ar(a)] = cmd + + _phrase_map_cache[path] = mapping + print(f"โœ… Loaded phrase mapping from {path}: {len(mapping)} aliases") + return mapping diff --git a/Gemini/voice_sanad.py b/Gemini/voice_sanad.py new file mode 100644 index 0000000..903c4e6 --- /dev/null +++ b/Gemini/voice_sanad.py @@ -0,0 +1,463 @@ +#!/usr/bin/env python3 +""" +voice_sanad.py (PRODUCTION) +- Starts photo server ONCE and keeps it alive. +- Initializes DDS ONCE. +- Keeps core components alive (mic/speaker/receive/trigger/autonomous). +- Uses a dedicated WS supervisor loop that reconnects only the Gemini channel. +""" + +import asyncio +import json +import os +import random +import time +from pathlib import Path + +import websockets + +from Core.Logger import Logs + +from Core import settings as config +from Core.settings import ( + PHOTOS_DIR, + PHOTO_SERVER_PORT, + MODEL, + VOICE_NAME, + GEMINI_API_KEY, + PHOTO_TOTAL_SEC, + PHOTO_DELAY_SEC, + load_system_prompt, +) + +from Server.photo_server import start_photo_server +from Gemini.gemini_voice import HamadGeminiVoice + + +sanad_logger = Logs() +sanad_logger.LogEngine("G1_Logs", "voice_sanad") + +API_KEY = GEMINI_API_KEY.strip() +if not API_KEY: + raise RuntimeError(f"Gemini API key is empty. Set gemini.api_key in {config.CONFIG_JSON}.") + +URI = ( + "wss://generativelanguage.googleapis.com/ws/" + "google.ai.generativelanguage.v1alpha.GenerativeService.BidiGenerateContent" + f"?key={API_KEY}" +) + +RUNTIME_HEALTH_FILE = Path(config.RUNTIME_HEALTH_FILE) +INTERACTION_FLAG_FILE = Path(config.SCRIPTS_DIR) / "interaction_triggered.flag" + + +def _build_setup_message() -> dict: + system_prompt = load_system_prompt() + return { + "setup": { + "model": MODEL, + "generationConfig": { + "responseModalities": ["AUDIO"], + "speechConfig": { + "voiceConfig": {"prebuiltVoiceConfig": {"voiceName": VOICE_NAME}} + }, + }, + "inputAudioTranscription": {}, + "systemInstruction": {"parts": [{"text": system_prompt}]}, + } + } + + +def _read_runtime_mode_safe() -> str: + try: + mode = str(config.read_runtime_mode()).strip().lower() + except Exception: + mode = "manual" + return mode if mode in ("manual", "ai") else "manual" + + +def _interaction_active_now() -> bool: + try: + return INTERACTION_FLAG_FILE.exists() + except Exception: + return False + + +def _apply_idle_audio_policy(voice: HamadGeminiVoice, autonomous_enabled: bool): + runtime_mode = _read_runtime_mode_safe() + idle_voice_listen_enabled = bool(config.read_vision_idle_voice_listen_enabled()) + mic_enabled = bool(config.read_gemini_mic_enabled()) + + if not mic_enabled: + voice.set_passive_listen(False, reason="mic disabled") + voice.set_audio_gate(False, reason="mic disabled") + return + + if runtime_mode != "ai": + voice.set_passive_listen(False, reason=f"{runtime_mode} mode") + voice.set_audio_gate(True, reason=f"{runtime_mode} mode") + return + + if autonomous_enabled: + if idle_voice_listen_enabled: + voice.set_passive_listen(True, reason="autonomous idle") + voice.set_audio_gate(True, reason="autonomous idle listen") + else: + voice.set_passive_listen(False, reason="autonomous idle") + voice.set_audio_gate(False, reason="autonomous idle") + return + + voice.set_passive_listen(False, reason="ai mode") + voice.set_audio_gate(True, reason="ai mode") + + +async def _write_runtime_health_loop(voice: HamadGeminiVoice, interval_sec: float = 1.0): + while True: + try: + payload = voice.get_runtime_health() if hasattr(voice, "get_runtime_health") else {} + payload = dict(payload or {}) + payload["model"] = MODEL + payload["time"] = payload.get("time") or time.time() + RUNTIME_HEALTH_FILE.parent.mkdir(parents=True, exist_ok=True) + RUNTIME_HEALTH_FILE.write_text(json.dumps(payload, ensure_ascii=False), encoding="utf-8") + except Exception as e: + sanad_logger.print_and_log(f"Runtime health write failed: {e}", "warning") + await asyncio.sleep(max(0.2, float(interval_sec))) + + +async def _run_component_forever(name: str, coro_factory, restart_delay_sec: float): + while True: + try: + await coro_factory() + sanad_logger.print_and_log(f"โš ๏ธ {name} loop ended; restarting.", "warning") + except asyncio.CancelledError: + raise + except Exception as e: + sanad_logger.print_and_log(f"โŒ {name} loop error: {e}. Restarting.", "warning") + await asyncio.sleep(max(0.1, float(restart_delay_sec))) + + +async def _run_mode_policy_sync(voice: HamadGeminiVoice, autonomous_enabled: bool, interval_sec: float = 0.5): + last_signature = None + while True: + try: + await asyncio.sleep(max(0.2, float(interval_sec))) + if not voice.is_ws_connected(): + continue + runtime_mode = _read_runtime_mode_safe() + mic_enabled = bool(config.read_gemini_mic_enabled()) + idle_voice_listen_enabled = bool(config.read_vision_idle_voice_listen_enabled()) + signature = (runtime_mode, mic_enabled, idle_voice_listen_enabled, bool(autonomous_enabled)) + if not mic_enabled: + if signature != last_signature: + _apply_idle_audio_policy(voice, autonomous_enabled=autonomous_enabled) + last_signature = signature + continue + if _interaction_active_now(): + last_signature = signature + continue + if signature != last_signature: + _apply_idle_audio_policy(voice, autonomous_enabled=autonomous_enabled) + last_signature = signature + except asyncio.CancelledError: + raise + except Exception as e: + sanad_logger.print_and_log(f"โš ๏ธ Mode policy sync error: {e}", "warning") + + +async def _run_autonomous_forever(hub, replay, voice, restart_delay_sec: float): + from Modes.AI.autonomous_manager import AutonomousManager + + while True: + am = AutonomousManager() + try: + await am.run(hub=hub, replay=replay, voice=voice, ws=None) + sanad_logger.print_and_log("โš ๏ธ Autonomous manager exited; restarting.", "warning") + except asyncio.CancelledError: + try: + am.stop() + except Exception: + pass + raise + except Exception as e: + sanad_logger.print_and_log(f"โŒ Autonomous manager error: {e}. Restarting.", "warning") + await asyncio.sleep(max(0.2, float(restart_delay_sec))) + + +async def _run_ws_supervisor( + voice: HamadGeminiVoice, + autonomous_enabled: bool, + dashboard_url: str | None = None, + manual_lean_runtime: bool = False, +): + backoff = float(config.read_watchdog_ws_initial_backoff_sec()) + max_backoff = float(config.read_watchdog_ws_max_backoff_sec()) + + while True: + sanad_logger.print_and_log(f"\n๐Ÿš€ Connecting to Gemini ({MODEL})...", message_type="info") + ws = None + try: + async with websockets.connect(URI, **voice._ws_connect_kwargs()) as ws: + setup_msg = _build_setup_message() + await ws.send(json.dumps(setup_msg)) + await ws.recv() + + voice.attach_ws(ws) + backoff = float(config.read_watchdog_ws_initial_backoff_sec()) + _apply_idle_audio_policy(voice, autonomous_enabled=autonomous_enabled) + + sanad_logger.print_and_log("๐ŸŽ™๏ธ Connected! Sanad ready.", message_type="info") + if dashboard_url: + base_url = dashboard_url.rstrip("/") + sanad_logger.print_and_log(f"๐ŸŒ Dashboard: {base_url}/", "info") + sanad_logger.print_and_log(f"๐Ÿ“Š Runtime Health API: {base_url}/api/runtime_health", "info") + sanad_logger.print_and_log("๐Ÿ–ผ๏ธ Live Preview: OFF by default. Enable it from the dashboard when needed.", "info") + sanad_logger.print_and_log("๐Ÿ›ก๏ธ Idle behavior: no auto-shutdown on silence. Gemini WS keepalive is active.", "info") + if manual_lean_runtime: + sanad_logger.print_and_log("๐ŸŽฎ Manual lean runtime: voice conversation only. Restart in AI mode for replay/capture/autonomous services.", "info") + else: + sanad_logger.print_and_log("๐ŸŽฎ Controls:", "info") + sanad_logger.print_and_log(" - R2+X : Replay + Photographer Talk + Take Photo", "info") + sanad_logger.print_and_log(" - R2+L1: HARD CANCEL safety combo (AI/manual) -> cancel session/replay", "info") + + await ws.wait_closed() + except asyncio.CancelledError: + if ws is not None: + try: + await ws.close() + except Exception: + pass + raise + except websockets.exceptions.ConnectionClosed as e: + sanad_logger.print_and_log(f"โš ๏ธ WebSocket closed: {e}", message_type="warning") + except Exception as e: + sanad_logger.print_and_log(f"โŒ WS supervisor error: {e}", message_type="error") + finally: + voice.detach_ws(reason="ws supervisor disconnect") + + sleep_s = backoff + random.uniform(0.0, 0.8) + sanad_logger.print_and_log(f"๐Ÿ” Reconnecting in {sleep_s:.1f}s...", message_type="warning") + await asyncio.sleep(max(0.1, sleep_s)) + backoff = min(max_backoff, backoff * 1.7) + + +def _manual_lean_runtime_enabled(startup_mode: str) -> bool: + if startup_mode != "manual": + return False + raw = os.environ.get("MANUAL_LEAN_RUNTIME") + if raw is None or raw == "": + return False + return str(raw).strip().lower() in ("1", "true", "yes", "on", "y") + + +async def _run_autonomous_mode_supervisor(hub, replay, voice, restart_delay_sec: float, poll_sec: float = 0.5): + task = None + last_should_run = None + try: + while True: + should_run = _read_runtime_mode_safe() == "ai" + if should_run != last_should_run: + if should_run: + sanad_logger.print_and_log("๐Ÿค– AI mode active: starting autonomous manager.", "info") + else: + sanad_logger.print_and_log("๐Ÿค– Manual mode active: autonomous manager paused.", "info") + last_should_run = should_run + + if should_run: + if task is None or task.done(): + task = asyncio.create_task( + _run_autonomous_forever(hub=hub, replay=replay, voice=voice, restart_delay_sec=restart_delay_sec) + ) + elif task is not None: + task.cancel() + await asyncio.gather(task, return_exceptions=True) + task = None + + await asyncio.sleep(max(0.2, float(poll_sec))) + finally: + if task is not None: + task.cancel() + await asyncio.gather(task, return_exceptions=True) + + +async def main(): + startup_mode = _read_runtime_mode_safe() + autonomous_enabled = bool(int(os.environ.get("AUTONOMOUS_ENABLE", "0"))) + manual_lean_runtime = _manual_lean_runtime_enabled(startup_mode) + + hub = None + replay = None + dashboard_capture_func = None + dashboard_replay_test_func = None + + if manual_lean_runtime: + sanad_logger.print_and_log( + "๐Ÿชถ Manual lean runtime active: Gemini + dashboard only. DDS, replay, uploader, and teleimager-dependent startup are skipped.", + "info", + ) + + def _manual_capture_unavailable() -> str: + return "[ERR] Capture unavailable in manual lean runtime. Restart in AI mode for camera/replay services." + + dashboard_capture_func = _manual_capture_unavailable + else: + from unitree_sdk2py.core.channel import ChannelSubscriber, ChannelFactoryInitialize + from unitree_sdk2py.idl.unitree_hg.msg.dds_ import LowState_ + from Modes.Manual.controller import auto_pick_iface, LowStateHub + from Modes.Manual.replay_engine import ReplayWithHome + from Server.capture_service import capture_with_replay_sync, ensure_replay_integrity + + iface = auto_pick_iface() + sanad_logger.print_and_log(f"๐ŸŒ DDS iface: {iface}", "info") + ChannelFactoryInitialize(0, iface) + + hub = LowStateHub(watchdog_timeout=0.25) + sub = ChannelSubscriber("rt/lowstate", LowState_) + sub.Init(hub.handler, 10) + + replay = ReplayWithHome(hub, watchdog_disable_after=1.0) + + startup_replay = config.read_selected_replay_path() + fallback_replay = config.DATA_DIR / "photo_G3.jsonl" + selected_replay, replay_report = ensure_replay_integrity(startup_replay, fallback_replay) + if not replay_report.get("active", {}).get("ok", False): + sanad_logger.print_and_log( + f"โš ๏ธ Active replay invalid: {replay_report.get('active', {}).get('error', 'unknown')}", + "warning", + ) + elif not replay_report.get("active", {}).get("trigger_ok", False): + sanad_logger.print_and_log( + "โš ๏ธ Active replay has no trigger markers. Timed fallback capture will be used.", + "warning", + ) + if replay_report.get("fallback_used"): + sanad_logger.print_and_log( + f"โš ๏ธ Using fallback replay: {selected_replay.name}", + "warning", + ) + if replay_report.get("degraded_no_trigger"): + sanad_logger.print_and_log( + "โš ๏ธ No replay with trigger markers found. Running in degraded triggerless mode.", + "warning", + ) + config.REPLAY_FILE = selected_replay + try: + rel_name = str(selected_replay.resolve().relative_to(config.DATA_DIR)).replace("\\", "/") + config.write_selected_replay_name(rel_name) + except Exception: + pass + + def _capture_from_dashboard() -> str: + base_prefix = os.environ.get("PHOTO_PREFIX", "photo").strip() or "photo" + delay = max(0.0, min(PHOTO_DELAY_SEC, PHOTO_TOTAL_SEC)) + return capture_with_replay_sync( + replay_runner=replay, + replay_file=config.REPLAY_FILE, + home_file=config.HOME_FILE, + delay_sec=delay, + prefix=base_prefix, + speed=1.0, + ) + + dashboard_capture_func = _capture_from_dashboard + + def _test_replay_from_dashboard(replay_name: str) -> str: + try: + candidate = config.resolve_replay_path(replay_name) + except Exception as e: + return f"[ERR] invalid replay path: {e}" + if not candidate.exists(): + return "[ERR] replay not found" + if replay.is_playing: + return "[ERR] replay already in progress" + replay.run(candidate, config.HOME_FILE, speed=1.0) + return str(candidate) + + dashboard_replay_test_func = _test_replay_from_dashboard + + url = start_photo_server( + PHOTOS_DIR, + port=PHOTO_SERVER_PORT, + capture_func=dashboard_capture_func, + replay_test_func=dashboard_replay_test_func, + ) + sanad_logger.print_and_log(f"๐Ÿ–ผ๏ธ Phone gallery: {url}", message_type="info") + + if not manual_lean_runtime: + from Server.uploader import start_uploader + + try: + start_uploader(PHOTOS_DIR) + except Exception as e: + sanad_logger.print_and_log(f"Failed to start uploader: {e}", message_type="warning") + + voice = HamadGeminiVoice( + photo_phrases_file=str(config.PHOTO_PHRASES_FILE), + ) + + if startup_mode == "ai" or autonomous_enabled: + voice.calibrate_mic() + else: + sanad_logger.print_and_log("๐ŸŽ™๏ธ Mic calibration skipped at startup (manual mode).", "info") + sanad_logger.print_and_log("โ„น๏ธ Manual mode: mic follows dashboard toggle, but AI photo commands and AI detection stay disabled until AI mode.", "info") + restart_delay = float(config.read_watchdog_component_restart_delay_sec()) + + tasks = [ + asyncio.create_task(_run_component_forever("capture_mic", lambda: voice.capture_mic(), restart_delay)), + asyncio.create_task(_run_component_forever("receive_audio", lambda: voice.receive_audio(), restart_delay)), + asyncio.create_task(_run_component_forever("play_audio", lambda: voice.play_audio(), restart_delay)), + asyncio.create_task(_run_component_forever("keepalive", lambda: voice.keepalive(every_sec=20.0), restart_delay)), + asyncio.create_task(_run_component_forever("runtime_health", lambda: _write_runtime_health_loop(voice, 1.0), restart_delay)), + asyncio.create_task( + _run_ws_supervisor( + voice, + autonomous_enabled=autonomous_enabled, + dashboard_url=url, + manual_lean_runtime=manual_lean_runtime, + ) + ), + asyncio.create_task(_run_mode_policy_sync(voice, autonomous_enabled=autonomous_enabled)), + ] + + if not manual_lean_runtime: + from Modes.Manual.trigger_loop import trigger_loop + + tasks.append( + asyncio.create_task( + _run_component_forever( + "trigger_loop", + lambda: trigger_loop(hub=hub, replay=replay, voice=voice, take_photo_sync_callable=None, ws=None), + restart_delay, + ) + ) + ) + + if autonomous_enabled and not manual_lean_runtime: + tasks.append( + asyncio.create_task( + _run_autonomous_mode_supervisor( + hub=hub, + replay=replay, + voice=voice, + restart_delay_sec=restart_delay, + ) + ) + ) + sanad_logger.print_and_log("๐Ÿค– Autonomous services armed (AUTONOMOUS_ENABLE=1). AI mode can start without restart.", "info") + + try: + await asyncio.gather(*tasks) + finally: + for t in tasks: + if not t.done(): + t.cancel() + await asyncio.gather(*tasks, return_exceptions=True) + + +if __name__ == "__main__": + try: + asyncio.run(main()) + except KeyboardInterrupt: + sanad_logger.print_and_log("\n๐Ÿ‘‹ Ma'a Salama (Goodbye)!", message_type="info") + except Exception as e: + sanad_logger.print_and_log(f"\nโŒ Fatal Error: {e}", message_type="error") diff --git a/Models/person.pt b/Models/person.pt new file mode 100644 index 0000000..45b273b Binary files /dev/null and b/Models/person.pt differ diff --git a/Modes/AI/__init__.py b/Modes/AI/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/Modes/AI/autonomous_manager.py b/Modes/AI/autonomous_manager.py new file mode 100644 index 0000000..69eb33e --- /dev/null +++ b/Modes/AI/autonomous_manager.py @@ -0,0 +1,1457 @@ +import asyncio +import json +import os +import threading +import time +from pathlib import Path +from threading import Thread + +import cv2 + +from Modes.AI.vision_detector import VisionDetector +from Core import settings as config +from Core.error_events import record_error +from Core.Logger import Logs +from Core import people_registry +from Server.capture_service import capture_with_replay_sync, replay_timing_profile + +sanad_logger = Logs() +sanad_logger.LogEngine("G1_Logs", "autonomous_manager") + + +class AutonomousManager: + """ + Autonomous flow: + IDLE -> WAIT_CONFIRM -> FRAMING -> COUNTDOWN -> COMPLETE -> IDLE + """ + + def __init__( + self, + zmq_host: str = "127.0.0.1", + zmq_port: int = 55555, + stability_frames: int = 3, + poll_hz: int = 8, + video_source: str | None = None, + ): + self.detector = VisionDetector( + zmq_host=zmq_host, + zmq_port=zmq_port, + poll_hz=poll_hz, + video_source=video_source, + ) + self.stability_frames = int(stability_frames) + self.cooldown_until = 0.0 + self.session_id = 0 + self._running = False + + self._capture_done = False + self._capture_result = None + self._capture_lock = threading.Lock() + self._capture_cancel_event: threading.Event | None = None + + self.interaction_active = False + self.interaction_flag = Path(config.SCRIPTS_DIR) / "interaction_triggered.flag" + self.request_photo_flag = Path(config.SCRIPTS_DIR) / "request_photo.flag" + self.confirm_yes_flag = Path(config.SCRIPTS_DIR) / "confirm_yes.flag" + self.confirm_no_flag = Path(config.SCRIPTS_DIR) / "confirm_no.flag" + self.state_file = Path(config.AUTONOMOUS_STATE_FILE) + + self.confirm_timeout_sec = float(os.environ.get("CONFIRM_TIMEOUT_SEC", "15.0")) + self.confirm_reminder_sec = float(os.environ.get("CONFIRM_REMINDER_SEC", "5.0")) + self.confirm_guard_sec = float(os.environ.get("CONFIRM_GUARD_SEC", "1.2")) + self.session_cooldown_sec = float(os.environ.get("SESSION_COOLDOWN_SEC", "10.0")) + self.leave_timeout_sec = float(os.environ.get("VISITOR_LEAVE_TIMEOUT_SEC", "2.5")) + self.countdown_lose_subject_sec = float(os.environ.get("COUNTDOWN_LOSE_SUBJECT_SEC", "1.4")) + self.capture_finalize_grace_sec = float(os.environ.get("CAPTURE_FINALIZE_GRACE_SEC", "3.0")) + + self.framing_timeout_sec = float(os.environ.get("FRAMING_TIMEOUT_SEC", "20.0")) + self.framing_feedback_interval_sec = float(os.environ.get("FRAMING_FEEDBACK_INTERVAL_SEC", "2.0")) + self.framing_good_frames_required = int(os.environ.get("FRAMING_GOOD_FRAMES_REQUIRED", "2")) + + # Framing thresholds + self.center_tolerance = float(os.environ.get("FRAMING_CENTER_TOLERANCE", "0.18")) + self.subject_min_area_ratio = float(os.environ.get("FRAMING_MIN_AREA_RATIO", "0.06")) + self.subject_max_area_ratio = float(os.environ.get("FRAMING_MAX_AREA_RATIO", "0.55")) + self.min_blur_var = float(os.environ.get("FRAMING_MIN_BLUR_VAR", "80.0")) + self.min_exposure = float(os.environ.get("FRAMING_MIN_EXPOSURE", "55.0")) + self.max_exposure = float(os.environ.get("FRAMING_MAX_EXPOSURE", "200.0")) + self.headroom_min_ratio = float(config.read_vision_framing_headroom_min_ratio()) + self.headroom_max_ratio = float(config.read_vision_framing_headroom_max_ratio()) + self.eye_line_min_ratio = float(config.read_vision_framing_eye_line_min_ratio()) + self.eye_line_max_ratio = float(config.read_vision_framing_eye_line_max_ratio()) + self.retake_score_threshold = float(config.read_vision_framing_retake_score_threshold()) + self.retake_prompt_enabled = bool(config.read_vision_retake_prompt_enabled()) + self.retake_limit = int(config.read_vision_retake_max_per_session()) + self.hard_target_lock_enabled = bool(config.read_vision_hard_target_lock_enabled()) + self.autonomous_greeting_replay_enabled = bool(config.read_vision_autonomous_greeting_replay_enabled()) + self.autonomous_greeting_replay_file = self._resolve_replay_path( + config.read_vision_autonomous_greeting_replay_file() + ) + self.autonomous_capture_replay_enabled = bool(config.read_vision_autonomous_capture_replay_enabled()) + self.retake_confirm_timeout_sec = float(os.environ.get("RETAKE_CONFIRM_TIMEOUT_SEC", "8.0")) + + self.yolo_strict_required = bool(config.read_vision_yolo_strict_required()) + self.gemini_context_hz = float(config.read_vision_gemini_context_hz()) + self.gemini_context_silent = bool(config.read_vision_gemini_context_silent()) + self._context_interval_sec = 1.0 / max(0.5, self.gemini_context_hz) + self._next_context_ts = 0.0 + + self.ai_blocked = False + self.ai_block_reason = "" + self._last_vision_log_signature = None + self._last_vision_log_ts = 0.0 + self.face_recognition_enabled = bool(config.read_vision_face_recognition_enabled()) + self.face_recognition_threshold = float(config.read_vision_face_recognition_threshold()) + self.current_person: dict | None = None + + async def _say(self, voice, text: str): + if voice is None: + return + try: + ok = await voice.send_text_prompt_live(text) + if not ok: + sanad_logger.print_and_log("Voice prompt skipped: Gemini WS not connected.", "warning") + except Exception as e: + sanad_logger.print_and_log(f"Voice prompt failed: {e}", "warning") + + async def _say_prompt( + self, + voice, + prompt_key: str, + fallback_text: str, + *, + mode_override: str | None = None, + allow_gemini_fallback: bool | None = None, + ): + if voice is None: + return + try: + if hasattr(voice, "play_prompt_key"): + ok = await voice.play_prompt_key( + prompt_key, + fallback_text=fallback_text, + allow_gemini_fallback=allow_gemini_fallback, + mode_override=mode_override, + ) + else: + ok = await voice.send_text_prompt_live(fallback_text) + if not ok: + sanad_logger.print_and_log(f"Voice prompt skipped for {prompt_key}: output unavailable.", "warning") + except Exception as e: + sanad_logger.print_and_log(f"Voice prompt failed for {prompt_key}: {e}", "warning") + + async def _say_capture_prompt(self, voice, prompt_key: str, fallback_text: str): + await self._say_prompt( + voice, + prompt_key, + fallback_text, + mode_override="audio", + allow_gemini_fallback=False, + ) + + def _maybe_log_vision_snapshot(self, snapshot: dict, now_ts: float): + try: + person_count = int(snapshot.get("person_count", 0)) + face_count = int(snapshot.get("face_count", 0)) + group_detected = bool(snapshot.get("group_detected", False)) + group_size = int(snapshot.get("group_size", 0)) + subject_visible = bool(snapshot.get("subject_visible", False)) + intent_detected = bool(snapshot.get("intent_detected", False)) + max_area = int(float(snapshot.get("max_area", 0.0) or 0.0)) + depth_m = snapshot.get("depth_m", None) + if depth_m is not None: + depth_m = round(float(depth_m), 2) + + sig = ( + person_count, + face_count, + group_detected, + group_size, + subject_visible, + intent_detected, + max_area, + depth_m, + ) + active = bool(person_count or face_count or subject_visible or group_detected or intent_detected) + if (not active) and self._last_vision_log_signature in (None, sig): + return + if sig == self._last_vision_log_signature and (now_ts - self._last_vision_log_ts) < 1.0: + return + + self._last_vision_log_signature = sig + self._last_vision_log_ts = now_ts + sanad_logger.print_and_log( + "๐Ÿ‘๏ธ Vision: " + f"people={person_count} faces={face_count} group={group_detected}({group_size}) " + f"visible={subject_visible} intent={intent_detected} area={max_area} depth={depth_m if depth_m is not None else '-'}", + "info", + ) + except Exception as e: + record_error("autonomous_manager", "vision_snapshot_log", e) + + def _set_interaction_active(self, active: bool, voice=None, reason: str = ""): + active = bool(active) + self.interaction_active = active + try: + self.interaction_flag.parent.mkdir(parents=True, exist_ok=True) + if active: + self.interaction_flag.write_text(f"{time.time():.3f} {reason}".strip(), encoding="utf-8") + elif self.interaction_flag.exists(): + self.interaction_flag.unlink() + except Exception as e: + record_error("autonomous_manager", "set_interaction_active_file", e, {"active": bool(active)}) + + if voice is not None and hasattr(voice, "set_audio_gate"): + try: + idle_voice_listen_enabled = bool(config.read_vision_idle_voice_listen_enabled()) + mic_enabled = bool(config.read_gemini_mic_enabled()) + runtime_mode = str(config.read_runtime_mode()).strip().lower() + if runtime_mode not in ("manual", "ai"): + runtime_mode = "manual" + if active: + if hasattr(voice, "set_passive_listen"): + voice.set_passive_listen(False, reason=reason or "interaction active") + voice.set_audio_gate(True, reason=reason) + else: + if runtime_mode != "ai": + if hasattr(voice, "set_passive_listen"): + voice.set_passive_listen(False, reason=reason or "manual mode") + voice.set_audio_gate(mic_enabled, reason=reason or "manual mode") + else: + if hasattr(voice, "set_passive_listen"): + voice.set_passive_listen(mic_enabled and idle_voice_listen_enabled, reason=reason or "idle") + voice.set_audio_gate(mic_enabled and idle_voice_listen_enabled, reason=reason or "idle") + except Exception as e: + record_error("autonomous_manager", "set_interaction_active_audio_gate", e, {"active": bool(active)}) + + @staticmethod + def _clear_flag(path: Path): + try: + if path.exists(): + path.unlink() + except Exception as e: + record_error("autonomous_manager", "clear_flag", e, {"path": str(path)}) + + @staticmethod + def _consume_flag(path: Path) -> bool: + try: + if path.exists(): + path.unlink() + return True + except Exception as e: + record_error("autonomous_manager", "consume_flag", e, {"path": str(path)}) + return False + + def _consume_request_photo_flag(self) -> bool: + return self._consume_flag(self.request_photo_flag) or self._consume_flag(self.confirm_yes_flag) + + def _consume_direct_request_flag(self) -> bool: + return self._consume_flag(self.request_photo_flag) + + def _consume_no_photo_flag(self) -> bool: + return self._consume_flag(self.confirm_no_flag) + + def _clear_confirmation_flags(self): + self._clear_flag(self.request_photo_flag) + self._clear_flag(self.confirm_yes_flag) + self._clear_flag(self.confirm_no_flag) + + def _cancel_capture_pipeline(self, reason: str = ""): + try: + ev = self._capture_cancel_event + if ev is not None: + ev.set() + self._capture_cancel_event = None + if reason: + sanad_logger.print_and_log(f"Capture pipeline cancelled: {reason}", "warning") + except Exception as e: + record_error("autonomous_manager", "cancel_capture_pipeline", e, {"reason": reason}) + + @staticmethod + def _resolve_replay_path(path_value: str) -> Path: + return config.resolve_replay_path(path_value) + + def _start_greeting_replay(self, replay): + if replay is None or not bool(self.autonomous_greeting_replay_enabled): + return + replay_file = Path(self.autonomous_greeting_replay_file).resolve() + if not replay_file.exists(): + sanad_logger.print_and_log(f"โš ๏ธ Greeting replay missing: {replay_file}", "warning") + return + if bool(getattr(replay, "is_playing", False)): + sanad_logger.print_and_log("โš ๏ธ Greeting replay skipped: replay already busy.", "warning") + return + + def _run_greeting(): + try: + sanad_logger.print_and_log(f"๐Ÿ‘‹ Greeting replay: {replay_file.name}", "info") + replay.run(replay_file, config.HOME_FILE, 1.0) + except Exception as e: + record_error("autonomous_manager", "greeting_replay", e, {"replay_file": str(replay_file)}) + + Thread(target=_run_greeting, daemon=True).start() + + def _reset_current_person(self): + self.current_person = None + + def _session_person_label(self) -> str: + if not isinstance(self.current_person, dict): + return "" + return str( + self.current_person.get("display_label") + or self.current_person.get("display_name") + or self.current_person.get("person_id") + or "" + ).strip() + + def _current_person_extras(self) -> dict: + person = self.current_person if isinstance(self.current_person, dict) else {} + return { + "recognized_person_id": str(person.get("person_id") or ""), + "recognized_person_known": bool(person.get("known_person", False)), + "recognized_person_new": bool(person.get("new_person", False)), + "recognized_person_label": str( + person.get("display_label") or person.get("display_name") or person.get("person_id") or "" + ), + "recognized_person_match_score": float(person.get("match_score", 0.0) or 0.0), + "recognized_person_created_date": str(person.get("created_date") or ""), + } + + def _select_face_box(self, snapshot: dict) -> dict | None: + faces = snapshot.get("face_boxes") or [] + if not isinstance(faces, list) or not faces: + return None + subject_box = self._find_subject_box(snapshot) + if not isinstance(subject_box, dict): + try: + return max(faces, key=lambda f: float(f.get("w", 0.0)) * float(f.get("h", 0.0))) + except Exception: + return faces[0] if faces else None + + try: + sx1 = float(subject_box.get("x", 0.0)) + sy1 = float(subject_box.get("y", 0.0)) + sx2 = sx1 + max(1.0, float(subject_box.get("w", 1.0))) + sy2 = sy1 + max(1.0, float(subject_box.get("h", 1.0))) + except Exception: + sx1 = sy1 = 0.0 + sx2 = sy2 = 0.0 + + best = None + best_overlap = -1.0 + for face in faces: + try: + fx1 = float(face.get("x", 0.0)) + fy1 = float(face.get("y", 0.0)) + fx2 = fx1 + max(1.0, float(face.get("w", 1.0))) + fy2 = fy1 + max(1.0, float(face.get("h", 1.0))) + ix1 = max(sx1, fx1) + iy1 = max(sy1, fy1) + ix2 = min(sx2, fx2) + iy2 = min(sy2, fy2) + overlap = max(0.0, ix2 - ix1) * max(0.0, iy2 - iy1) + if overlap > best_overlap: + best_overlap = overlap + best = face + except Exception: + continue + if best is not None: + return best + try: + return max(faces, key=lambda f: float(f.get("w", 0.0)) * float(f.get("h", 0.0))) + except Exception: + return faces[0] if faces else None + + def _identify_person_for_session(self, snapshot: dict, source: str = "vision") -> dict | None: + if not bool(self.face_recognition_enabled): + self._reset_current_person() + return None + frame = snapshot.get("frame") + if frame is None: + self._reset_current_person() + return None + if bool(snapshot.get("group_detected", False)) or int(snapshot.get("face_count", 0) or 0) > 1: + self._reset_current_person() + return None + + face_box = self._select_face_box(snapshot) + if face_box is None: + self._reset_current_person() + return None + subject_box = self._find_subject_box(snapshot) + try: + result = people_registry.recognize_or_enroll( + frame, + face_box, + subject_box=subject_box, + threshold=self.face_recognition_threshold, + source=source, + ) + except Exception as e: + record_error("autonomous_manager", "identify_person_for_session", e) + self._reset_current_person() + return None + if not isinstance(result, dict) or not bool(result.get("ok", False)): + self._reset_current_person() + return None + self.current_person = result + label = self._session_person_label() + if bool(result.get("known_person", False)): + sanad_logger.print_and_log( + f"๐Ÿง‘ Returning guest recognized: {label} (score={float(result.get('match_score', 0.0) or 0.0):.2f})", + "info", + ) + else: + sanad_logger.print_and_log(f"๐Ÿง‘ New guest enrolled: {label}", "info") + return result + + def _welcome_prompt_text(self, group_detected: bool) -> str: + if group_detected: + return ( + "Hello everyone, welcome. We will take a photo together. " + "Would your group like a photo? Please say yes photo or no photo." + ) + label = self._session_person_label() + if label and bool(self.current_person and self.current_person.get("known_person")): + return ( + f"Welcome back, {label}. Would you like another photo? " + "Please say yes photo or no photo." + ) + return ( + "Hello, welcome. We will take a photo together. " + "Would you like a photo? Please say yes photo or no photo." + ) + + def _welcome_prompt_key(self, group_detected: bool) -> str: + if group_detected: + return "welcome_group" + if self._session_person_label() and bool(self.current_person and self.current_person.get("known_person")): + return "welcome_returning" + return "welcome_single" + + def _framing_prompt_text(self, group_detected: bool) -> str: + if group_detected: + return "Great. Please stand with me in front of the camera, stay together in the center, and look at the camera." + return "Great. Please stand with me in front of the camera, stay in the center, and look at the camera." + + @staticmethod + def _framing_prompt_key(group_detected: bool) -> str: + return "frame_group" if group_detected else "frame_single" + + @staticmethod + def _find_subject_box(snapshot: dict) -> dict | None: + subj = snapshot.get("subject_box") + if isinstance(subj, dict): + return subj + boxes = snapshot.get("boxes") or [] + if not boxes: + return None + try: + return max(boxes, key=lambda b: float(b.get("w", 0.0)) * float(b.get("h", 0.0))) + except Exception: + return boxes[0] if boxes else None + + def _evaluate_framing_quality(self, snapshot: dict) -> tuple[bool, list[str], dict]: + frame = snapshot.get("frame") + box = self._find_subject_box(snapshot) + if frame is None or box is None: + return False, ["step into view"], {"reason": "no_frame_or_subject"} + + try: + h, w = frame.shape[:2] + x = float(box.get("x", 0.0)) + y = float(box.get("y", 0.0)) + bw = max(1.0, float(box.get("w", 1.0))) + bh = max(1.0, float(box.get("h", 1.0))) + area_ratio = (bw * bh) / max(1.0, float(w * h)) + cx = x + (bw / 2.0) + dx = (cx - (w / 2.0)) / max(1.0, float(w)) + centered = abs(dx) <= self.center_tolerance + size_ok = self.subject_min_area_ratio <= area_ratio <= self.subject_max_area_ratio + + gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY) + blur_var = float(cv2.Laplacian(gray, cv2.CV_64F).var()) + exposure = float(gray.mean()) + blur_ok = blur_var >= self.min_blur_var + exposure_ok = self.min_exposure <= exposure <= self.max_exposure + + faces = snapshot.get("face_boxes") or [] + face_box = None + best_overlap = -1.0 + for f in faces: + try: + fx = float(f.get("x", 0.0)) + fy = float(f.get("y", 0.0)) + fw = max(1.0, float(f.get("w", 1.0))) + fh = max(1.0, float(f.get("h", 1.0))) + ix1 = max(x, fx) + iy1 = max(y, fy) + ix2 = min(x + bw, fx + fw) + iy2 = min(y + bh, fy + fh) + iw = max(0.0, ix2 - ix1) + ih = max(0.0, iy2 - iy1) + overlap = iw * ih + if overlap > best_overlap: + best_overlap = overlap + face_box = {"x": fx, "y": fy, "w": fw, "h": fh} + except Exception: + continue + + if face_box is not None: + headroom_ratio = float(face_box["y"]) / max(1.0, float(h)) + eye_y = float(face_box["y"]) + (0.38 * float(face_box["h"])) + eye_line_ratio = eye_y / max(1.0, float(h)) + else: + headroom_ratio = y / max(1.0, float(h)) + eye_line_ratio = (y + (0.25 * bh)) / max(1.0, float(h)) + headroom_ok = self.headroom_min_ratio <= headroom_ratio <= self.headroom_max_ratio + eye_line_ok = self.eye_line_min_ratio <= eye_line_ratio <= self.eye_line_max_ratio + + mid = int(max(1, w // 2)) + left_mean = float(gray[:, :mid].mean()) if mid > 0 else exposure + right_mean = float(gray[:, mid:].mean()) if (w - mid) > 0 else exposure + lr_delta = right_mean - left_mean + + reasons: list[str] = [] + if not centered: + reasons.append("move a bit to the center") + if not size_ok: + reasons.append("come a little closer" if area_ratio < self.subject_min_area_ratio else "step slightly back") + if not headroom_ok: + if headroom_ratio < self.headroom_min_ratio: + reasons.append("lower your chin a little") + else: + reasons.append("raise your chin a little") + if not eye_line_ok: + reasons.append("keep your eyes around the middle of the frame") + if not blur_ok: + reasons.append("hold still for a second") + if not exposure_ok: + if exposure < self.min_exposure: + if abs(lr_delta) > 12.0: + reasons.append( + "turn slightly toward the brighter side" + ) + else: + reasons.append("face the light") + else: + reasons.append("avoid strong direct light") + + metrics = { + "area_ratio": area_ratio, + "blur_var": blur_var, + "exposure": exposure, + "center_dx": dx, + "centered": centered, + "size_ok": size_ok, + "blur_ok": blur_ok, + "exposure_ok": exposure_ok, + "headroom_ratio": headroom_ratio, + "eye_line_ratio": eye_line_ratio, + "headroom_ok": headroom_ok, + "eye_line_ok": eye_line_ok, + "left_exposure": left_mean, + "right_exposure": right_mean, + "lr_exposure_delta": lr_delta, + } + return len(reasons) == 0, reasons, metrics + except Exception as e: + return False, ["hold still and face the camera"], {"reason": str(e)} + + @staticmethod + def _framing_guidance_text(reasons: list[str]) -> str: + if not reasons: + return "Great framing. Hold still." + uniq = [] + for r in reasons: + if r not in uniq: + uniq.append(r) + joined = ", and ".join(uniq[:2]) + return f"Almost ready. Please {joined}." + + @staticmethod + def _quality_score_from_metrics(metrics: dict) -> float: + checks = [ + bool(metrics.get("centered", False)), + bool(metrics.get("size_ok", False)), + bool(metrics.get("blur_ok", False)), + bool(metrics.get("exposure_ok", False)), + bool(metrics.get("headroom_ok", False)), + bool(metrics.get("eye_line_ok", False)), + ] + if not checks: + return 0.0 + return float(sum(1 for x in checks if x)) / float(len(checks)) + + def _retake_assessment(self, snapshot: dict, previous_metrics: dict | None = None) -> tuple[bool, str, float, dict]: + good, reasons, metrics = self._evaluate_framing_quality(snapshot) + if previous_metrics and isinstance(previous_metrics, dict): + merged = dict(previous_metrics) + merged.update(metrics) + metrics = merged + score = self._quality_score_from_metrics(metrics) + if good and score >= self.retake_score_threshold: + return False, "", score, metrics + if reasons: + reason = reasons[0] + else: + reason = "framing quality is not optimal" + return True, str(reason), score, metrics + + def _lock_target_on_session_start(self, snapshot: dict): + try: + if hasattr(self.detector, "set_hard_lock"): + self.detector.set_hard_lock(bool(self.hard_target_lock_enabled)) + if hasattr(self.detector, "lock_target_from_snapshot"): + self.detector.lock_target_from_snapshot( + snapshot, + lock_group=bool(self.hard_target_lock_enabled and snapshot.get("group_detected", False)), + ) + elif hasattr(self.detector, "lock_subject_from_snapshot"): + self.detector.lock_subject_from_snapshot(snapshot) + except Exception as e: + record_error("autonomous_manager", "lock_target_on_session_start", e) + + def _unlock_target(self): + try: + if hasattr(self.detector, "unlock_target"): + self.detector.unlock_target() + elif hasattr(self.detector, "unlock_subject"): + self.detector.unlock_subject() + except Exception as e: + record_error("autonomous_manager", "unlock_target", e) + + def _detector_readiness(self) -> dict: + try: + return self.detector.readiness(strict_required=self.yolo_strict_required) + except Exception as e: + record_error("autonomous_manager", "detector_readiness", e) + return { + "ok": False, + "strict_required": bool(self.yolo_strict_required), + "configured_backend": "normal", + "effective_backend": "normal", + "yolo_loaded": False, + "person_model_ok": False, + "face_model_ok": False, + "person_model_path": "", + "face_model_path": "", + "person_model_error": str(e), + "face_model_error": "", + "block_reason": f"Detector readiness failed: {e}", + } + + async def _push_vision_context(self, voice, state_name: str, snapshot: dict): + if voice is None: + return + if not hasattr(voice, "send_vision_context_live"): + return + now = time.time() + if now < self._next_context_ts: + return + self._next_context_ts = now + self._context_interval_sec + + payload = { + "person_count": int(snapshot.get("person_count", 0)), + "group_count": int(snapshot.get("group_count", 0)), + "group_size": int(snapshot.get("group_size", 0)), + "subject_visible": bool(snapshot.get("subject_visible", False)), + "depth_m": snapshot.get("depth_m"), + "approach_speed_mps": float(snapshot.get("approach_speed_mps", 0.0) or 0.0), + "state": str(state_name), + "intent_detected": bool(snapshot.get("intent_detected", False)), + } + try: + await voice.send_vision_context_live(payload, silent=bool(self.gemini_context_silent)) + except Exception as e: + record_error("autonomous_manager", "push_vision_context", e, {"state": state_name}) + + def _write_runtime_state(self, state_name: str, snapshot: dict, voice=None, extras: dict | None = None): + payload = { + "state": state_name, + "session_id": self.session_id, + "interaction_active": bool(self.interaction_active), + "intent_detected": bool(snapshot.get("intent_detected", False)), + "detector_backend": str(snapshot.get("detector_backend", "normal")), + "yolo_runtime": str(snapshot.get("yolo_runtime", "")), + "ai_blocked": bool(self.ai_blocked), + "ai_block_reason": str(self.ai_block_reason or ""), + "person_count": int(snapshot.get("person_count", 0)), + "face_count": int(snapshot.get("face_count", 0)), + "group_count": int(snapshot.get("group_count", 0)), + "group_size": int(snapshot.get("group_size", 0)), + "group_detected": bool(snapshot.get("group_detected", False)), + "is_close": bool(snapshot.get("is_close", False)), + "is_approaching": bool(snapshot.get("is_approaching", False)), + "max_area": float(snapshot.get("max_area", 0.0)), + "depth_m": snapshot.get("depth_m"), + "approach_speed_mps": snapshot.get("approach_speed_mps"), + "subject_id": snapshot.get("subject_id"), + "subject_visible": bool(snapshot.get("subject_visible", False)), + "target_lock_active": bool(snapshot.get("target_lock_active", False)), + "target_lock_type": str(snapshot.get("target_lock_type", "") or ""), + "target_lock_id": snapshot.get("target_lock_id"), + "target_switch_blocked_count": int(snapshot.get("target_switch_blocked_count", 0)), + "camera_ok": bool(snapshot.get("camera_ok", False)), + "depth_ok": bool(snapshot.get("depth_ok", False)), + "camera_restarts": int(snapshot.get("camera_restarts", 0)), + "depth_restarts": int(snapshot.get("depth_restarts", 0)), + "audio_gate_open": bool(getattr(voice, "audio_gate_open", False)) if voice is not None else None, + "ws_connected": bool(getattr(voice, "is_ws_connected", lambda: False)()) if voice is not None else False, + "mic_state": "", + "speaker_state": "", + "cooldown_remaining": max(0.0, self.cooldown_until - time.time()), + "time": time.time(), + } + try: + if voice is not None and hasattr(voice, "get_runtime_health"): + vh = voice.get_runtime_health() or {} + payload["ws_connected"] = bool(vh.get("ws_connected", payload["ws_connected"])) + payload["mic_state"] = str(vh.get("mic_state", "") or "") + payload["speaker_state"] = str(vh.get("speaker_state", "") or "") + except Exception as e: + record_error("autonomous_manager", "write_runtime_state_voice_health", e) + if extras: + payload.update(extras) + try: + self.state_file.parent.mkdir(parents=True, exist_ok=True) + self.state_file.write_text(json.dumps(payload, ensure_ascii=False), encoding="utf-8") + except Exception as e: + record_error("autonomous_manager", "write_runtime_state", e, {"state": state_name}) + + def _start_capture_pipeline(self, replay, timing_info: dict | None = None): + self._cancel_capture_pipeline(reason="restart") + with self._capture_lock: + self._capture_done = False + self._capture_result = None + + timing_info = timing_info or self._resolve_capture_timing(use_replay=bool(self.autonomous_capture_replay_enabled)) + default_delay_sec = max(0.0, min(config.PHOTO_DELAY_SEC, config.PHOTO_TOTAL_SEC)) + delay_sec = float(timing_info.get("capture_offset_sec") or default_delay_sec) + cancel_event = threading.Event() + self._capture_cancel_event = cancel_event + + def _run_pipeline(): + try: + base_prefix = os.environ.get("PHOTO_PREFIX", "photo") + prefix = f"session{self.session_id}_{base_prefix}" + run_delay_sec = delay_sec + capture_replay_runner = replay if bool(self.autonomous_capture_replay_enabled) else None + if capture_replay_runner is not None: + replay_wait_deadline = time.time() + 4.0 + while ( + bool(getattr(capture_replay_runner, "is_playing", False)) + and time.time() < replay_wait_deadline + and not cancel_event.is_set() + ): + time.sleep(0.05) + if bool(getattr(capture_replay_runner, "is_playing", False)): + sanad_logger.print_and_log( + "โš ๏ธ AI capture replay still busy; falling back to still photo for this shot.", + "warning", + ) + capture_replay_runner = None + run_delay_sec = default_delay_sec + if capture_replay_runner is None: + sanad_logger.print_and_log("๐Ÿ“ท AI capture: still photo mode (no replay during photo).", "info") + else: + sanad_logger.print_and_log( + f"๐Ÿ“ท AI capture: replaying {Path(config.REPLAY_FILE).name} during the shot. " + f"duration={float(timing_info.get('duration_sec') or 0.0):.3f}s " + f"shot_at={run_delay_sec:.3f}s " + f"source={timing_info.get('capture_source', 'config_fallback')}", + "info", + ) + res = capture_with_replay_sync( + replay_runner=capture_replay_runner, + replay_file=config.REPLAY_FILE, + home_file=config.HOME_FILE, + delay_sec=run_delay_sec, + prefix=prefix, + speed=1.0, + cancel_event=cancel_event, + ) + with self._capture_lock: + self._capture_result = str(res) + self._capture_done = True + if str(res).startswith("[ERR]"): + sanad_logger.print_and_log(f"Capture pipeline failed: {res}", "error") + else: + sanad_logger.print_and_log(f"Saved photo (pipeline): {res}", "info") + except Exception as e: + record_error("autonomous_manager", "start_capture_pipeline", e, {"session_id": self.session_id}) + with self._capture_lock: + self._capture_result = f"[ERR] capture pipeline exception: {e}" + self._capture_done = True + + Thread(target=_run_pipeline, daemon=True).start() + + def _resolve_capture_timing(self, use_replay: bool) -> dict: + default_delay = max(0.0, min(config.PHOTO_DELAY_SEC, config.PHOTO_TOTAL_SEC)) + timing_info = { + "capture_offset_sec": default_delay, + "duration_sec": 0.0, + "capture_source": "config_fallback", + } + if not use_replay: + return timing_info + try: + profile = replay_timing_profile(config.REPLAY_FILE) + if bool(profile.get("ok")): + return profile + if profile.get("capture_offset_sec") is not None: + timing_info["capture_offset_sec"] = float(profile.get("capture_offset_sec") or default_delay) + except Exception as e: + record_error("autonomous_manager", "resolve_capture_timing", e, {"replay_file": str(config.REPLAY_FILE)}) + return timing_info + + async def run(self, hub, replay, voice, ws=None): + self.detector.start() + self.hub = hub + self._running = True + self._set_interaction_active(False, voice=voice, reason="idle") + + state = "IDLE" + state_enter_ts = time.time() + stable_count = 0 + + confirm_deadline = 0.0 + confirm_last_prompt_ts = 0.0 + confirm_ignore_until = 0.0 + leave_since = 0.0 + + framing_deadline = 0.0 + framing_last_feedback_ts = 0.0 + framing_good_streak = 0 + framing_metrics: dict = {} + + countdown_deadline = 0.0 + countdown_announced: set[int] = set() + countdown_lost_since = 0.0 + + retake_count = 0 + retake_deadline = 0.0 + retake_recommended = False + retake_reason = "" + retake_score = 1.0 + + sanad_logger.print_and_log("๐Ÿค– Autonomous mode enabled.", "info") + + try: + while self._running: + await asyncio.sleep(1.0 / max(1, self.detector.poll_hz)) + now = time.time() + runtime_mode = "manual" + try: + runtime_mode = str(config.read_runtime_mode()).strip().lower() + except Exception: + runtime_mode = "manual" + if runtime_mode not in ("manual", "ai"): + runtime_mode = "manual" + + # Runtime-refresh operator toggles from config.json. + try: + self.hard_target_lock_enabled = bool(config.read_vision_hard_target_lock_enabled()) + self.retake_prompt_enabled = bool(config.read_vision_retake_prompt_enabled()) + self.retake_limit = int(config.read_vision_retake_max_per_session()) + self.retake_score_threshold = float(config.read_vision_framing_retake_score_threshold()) + self.autonomous_greeting_replay_enabled = bool(config.read_vision_autonomous_greeting_replay_enabled()) + self.autonomous_greeting_replay_file = self._resolve_replay_path( + config.read_vision_autonomous_greeting_replay_file() + ) + self.autonomous_capture_replay_enabled = bool(config.read_vision_autonomous_capture_replay_enabled()) + self.face_recognition_enabled = bool(config.read_vision_face_recognition_enabled()) + self.face_recognition_threshold = float(config.read_vision_face_recognition_threshold()) + except Exception as e: + record_error("autonomous_manager", "runtime_option_refresh", e) + + if hasattr(self.detector, "set_hard_lock"): + try: + self.detector.set_hard_lock(bool(self.hard_target_lock_enabled)) + except Exception as e: + record_error("autonomous_manager", "detector_set_hard_lock", e) + + snap = self.detector.latest() + face_count = int(snap.get("face_count", 0)) + subject_visible = bool(snap.get("subject_visible", face_count > 0)) + intent_detected = bool(snap.get("intent_detected", False)) + max_area = float(snap.get("max_area", 0.0)) + group_detected = bool(snap.get("group_detected", False)) + self._maybe_log_vision_snapshot(snap, now) + + if runtime_mode != "ai": + stable_count = 0 + if state != "IDLE": + sanad_logger.print_and_log("๐Ÿ›‘ Autonomous flow paused: runtime mode is MANUAL.", "info") + state = "IDLE" + state_enter_ts = now + self._clear_confirmation_flags() + self._set_interaction_active(False, voice=voice, reason="manual mode") + self._cancel_capture_pipeline(reason="manual mode") + self._unlock_target() + self._reset_current_person() + self._write_runtime_state( + "IDLE", + snap, + voice=voice, + extras={ + "stable_count": 0, + "runtime_mode": runtime_mode, + "autonomous_paused": True, + "retake_prompt_enabled": bool(self.retake_prompt_enabled), + "retake_limit": int(self.retake_limit), + "retake_count": int(retake_count), + **self._current_person_extras(), + }, + ) + continue + + readiness = self._detector_readiness() + if self.yolo_strict_required and (not bool(readiness.get("ok", False))): + block_reason = str(readiness.get("block_reason") or "AI blocked by strict YOLO policy.") + if (not self.ai_blocked) or (self.ai_block_reason != block_reason): + sanad_logger.print_and_log(f"โ›” AI blocked: {block_reason}", "error") + self._set_interaction_active(False, voice=voice, reason="strict yolo blocked") + self._clear_confirmation_flags() + self._cancel_capture_pipeline(reason="strict yolo blocked") + self._unlock_target() + self._reset_current_person() + self.ai_blocked = True + self.ai_block_reason = block_reason + state = "IDLE_BLOCKED" + stable_count = 0 + self._write_runtime_state( + "IDLE_BLOCKED", + snap, + voice=voice, + extras={ + "yolo_loaded": bool(readiness.get("yolo_loaded", False)), + "person_model_ok": bool(readiness.get("person_model_ok", False)), + "face_model_ok": bool(readiness.get("face_model_ok", False)), + "detector_backend": str(readiness.get("effective_backend", "normal")), + "retake_prompt_enabled": bool(self.retake_prompt_enabled), + "retake_limit": int(self.retake_limit), + "retake_count": int(retake_count), + **self._current_person_extras(), + }, + ) + await self._push_vision_context(voice, "IDLE_BLOCKED", snap) + continue + + if self.ai_blocked: + sanad_logger.print_and_log("โœ… AI readiness restored. Leaving blocked state.", "info") + self.ai_blocked = False + self.ai_block_reason = "" + state = "IDLE" + state_enter_ts = now + stable_count = 0 + + await self._push_vision_context(voice, state, snap) + + try: + hard_cancel = False + if hub is not None: + if getattr(hub, "hard_cancel_combo", None): + hard_cancel = bool(hub.hard_cancel_combo()) + elif getattr(hub, "combo_r2l1", None): + hard_cancel = bool(hub.combo_r2l1()) + if hard_cancel: + sanad_logger.print_and_log("๐Ÿ›‘ HARD CANCEL detected (R2+L1).", "warning") + state = "IDLE" + state_enter_ts = now + self.cooldown_until = now + self.session_cooldown_sec + self._clear_confirmation_flags() + self._set_interaction_active(False, voice=voice, reason="hard cancel") + self._cancel_capture_pipeline(reason="hard cancel") + self._unlock_target() + self._reset_current_person() + except Exception as e: + record_error("autonomous_manager", "remote_cancel_check", e) + + if state == "IDLE": + self._write_runtime_state( + "IDLE", + snap, + voice=voice, + extras={ + "stable_count": stable_count, + "retake_prompt_enabled": bool(self.retake_prompt_enabled), + "retake_limit": int(self.retake_limit), + "retake_count": int(retake_count), + **self._current_person_extras(), + }, + ) + + # Allow visitor-initiated photo request from IDLE. + # Only explicit request_photo should start a new session from idle. + if self._consume_direct_request_flag(): + self.session_id += 1 + state = "FRAMING" + state_enter_ts = now + framing_deadline = now + self.framing_timeout_sec + framing_last_feedback_ts = 0.0 + framing_good_streak = 0 + framing_metrics = {} + retake_count = 0 + retake_recommended = False + retake_reason = "" + retake_score = 1.0 + self._clear_confirmation_flags() + self._set_interaction_active(True, voice=voice, reason="voice request from idle") + self._lock_target_on_session_start(snap) + self._identify_person_for_session(snap, source="voice_request") + sanad_logger.print_and_log( + f"๐Ÿ—ฃ๏ธ Voice photo request from IDLE -> session {self.session_id}", + "info", + ) + await self._say_prompt( + voice, + self._framing_prompt_key(group_detected), + self._framing_prompt_text(group_detected), + ) + continue + + if now < self.cooldown_until: + continue + + if intent_detected: + stable_count += 1 + else: + stable_count = 0 + + if stable_count < self.stability_frames: + continue + + stable_count = 0 + self.session_id += 1 + state = "WAIT_CONFIRM" + state_enter_ts = now + confirm_deadline = now + self.confirm_timeout_sec + confirm_ignore_until = now + self.confirm_guard_sec + confirm_last_prompt_ts = now + leave_since = 0.0 + framing_metrics = {} + retake_count = 0 + retake_recommended = False + retake_reason = "" + retake_score = 1.0 + self._clear_confirmation_flags() + self._set_interaction_active(True, voice=voice, reason=f"intent max_area={max_area:.0f}") + self._lock_target_on_session_start(snap) + self._identify_person_for_session(snap, source="intent") + + sanad_logger.print_and_log( + f"๐Ÿ”” Intent detected (area={max_area:.0f}) -> session {self.session_id}", + "info", + ) + self._start_greeting_replay(replay) + try: + wake_text = self._welcome_prompt_text(group_detected) + await voice.trigger_wake_sequence( + wake_text=wake_text, + prompt_key=self._welcome_prompt_key(group_detected), + ) + except Exception as e: + record_error("autonomous_manager", "wake_sequence", e) + sanad_logger.print_and_log(f"Wake sequence failed: {e}", "warning") + continue + + if state == "WAIT_CONFIRM": + confirm_remaining = max(0.0, confirm_deadline - now) + self._write_runtime_state( + "WAIT_CONFIRM", + snap, + voice=voice, + extras={ + "confirm_timeout_remaining": confirm_remaining, + "confirm_guard_remaining": max(0.0, confirm_ignore_until - now), + "retake_prompt_enabled": bool(self.retake_prompt_enabled), + "retake_limit": int(self.retake_limit), + "retake_count": int(retake_count), + **self._current_person_extras(), + }, + ) + + if not subject_visible: + if leave_since <= 0.0: + leave_since = now + elif (now - leave_since) >= self.leave_timeout_sec: + sanad_logger.print_and_log("๐Ÿ™ˆ Visitor left before confirmation.", "warning") + await self._say_prompt( + voice, + "visitor_left", + "No worries. I will wait here for the next visitor.", + ) + state = "IDLE" + state_enter_ts = now + self.cooldown_until = now + self.session_cooldown_sec + self._clear_confirmation_flags() + self._set_interaction_active(False, voice=voice, reason="left before confirm") + self._cancel_capture_pipeline(reason="left before confirm") + self._unlock_target() + self._reset_current_person() + continue + else: + leave_since = 0.0 + + if now >= confirm_ignore_until: + if self._consume_no_photo_flag(): + await self._say_prompt(voice, "declined", "No problem. We can do it anytime.") + state = "IDLE" + state_enter_ts = now + self.cooldown_until = now + self.session_cooldown_sec + self._clear_confirmation_flags() + self._set_interaction_active(False, voice=voice, reason="visitor declined") + self._cancel_capture_pipeline(reason="visitor declined") + self._unlock_target() + self._reset_current_person() + continue + + if self._consume_request_photo_flag(): + sanad_logger.print_and_log("โœ… Confirmation received. Entering framing check.", "info") + await self._say_prompt( + voice, + self._framing_prompt_key(group_detected), + self._framing_prompt_text(group_detected), + ) + state = "FRAMING" + state_enter_ts = now + framing_deadline = now + self.framing_timeout_sec + framing_last_feedback_ts = 0.0 + framing_good_streak = 0 + continue + + if (now - confirm_last_prompt_ts) >= self.confirm_reminder_sec: + confirm_last_prompt_ts = now + await self._say_prompt( + voice, + "confirm_reminder", + "Say yes photo to continue, or no photo to cancel.", + ) + + if now >= confirm_deadline: + sanad_logger.print_and_log("โŒ› Confirmation timeout.", "warning") + await self._say_prompt( + voice, + "confirm_timeout", + "No problem. I will wait here. Come back anytime for a photo.", + ) + state = "IDLE" + state_enter_ts = now + self.cooldown_until = now + self.session_cooldown_sec + self._clear_confirmation_flags() + self._set_interaction_active(False, voice=voice, reason="confirm timeout") + self._cancel_capture_pipeline(reason="confirm timeout") + self._unlock_target() + self._reset_current_person() + continue + + elif state == "FRAMING": + if self._consume_no_photo_flag(): + await self._say_prompt(voice, "session_cancelled", "Okay. Session cancelled.") + state = "IDLE" + state_enter_ts = now + self.cooldown_until = now + self.session_cooldown_sec + self._clear_confirmation_flags() + self._set_interaction_active(False, voice=voice, reason="cancelled during framing") + self._cancel_capture_pipeline(reason="cancelled during framing") + self._unlock_target() + self._reset_current_person() + continue + + good, reasons, framing_metrics = self._evaluate_framing_quality(snap) + framing_remaining = max(0.0, framing_deadline - now) + self._write_runtime_state( + "FRAMING", + snap, + voice=voice, + extras={ + "framing_ok": bool(good), + "framing_reasons": reasons, + "framing_timeout_remaining": framing_remaining, + "framing_good_streak": framing_good_streak, + "framing_metrics": framing_metrics, + "retake_prompt_enabled": bool(self.retake_prompt_enabled), + "retake_limit": int(self.retake_limit), + "retake_count": int(retake_count), + **self._current_person_extras(), + }, + ) + + if good: + framing_good_streak += 1 + else: + framing_good_streak = 0 + if (now - framing_last_feedback_ts) >= self.framing_feedback_interval_sec: + framing_last_feedback_ts = now + await self._say(voice, self._framing_guidance_text(reasons)) + + if framing_good_streak >= self.framing_good_frames_required: + capture_timing = self._resolve_capture_timing( + use_replay=bool(self.autonomous_capture_replay_enabled) + ) + capture_start_ts = time.time() + self._start_capture_pipeline(replay, timing_info=capture_timing) + await self._say_capture_prompt( + voice, + "countdown_intro", + "Look at the camera, stay ready, hold your pose with me, keep still, keep your smile soft, and in a moment I will count down for the photo.", + ) + state = "COUNTDOWN" + state_enter_ts = now + countdown_deadline = capture_start_ts + float( + capture_timing.get("capture_offset_sec") + or max(0.0, min(config.PHOTO_DELAY_SEC, config.PHOTO_TOTAL_SEC)) + ) + countdown_announced = set() + countdown_lost_since = 0.0 + continue + + if now >= framing_deadline: + sanad_logger.print_and_log("โŒ› Framing timeout.", "warning") + await self._say_prompt( + voice, + "framing_timeout", + "I still need a better frame. Please step in front of me and say yes photo when ready.", + ) + state = "WAIT_CONFIRM" + state_enter_ts = now + confirm_deadline = now + self.confirm_timeout_sec + confirm_ignore_until = now + self.confirm_guard_sec + confirm_last_prompt_ts = now + leave_since = 0.0 + continue + + elif state == "COUNTDOWN": + countdown_remaining = max(0.0, countdown_deadline - now) + self._write_runtime_state( + "COUNTDOWN", + snap, + voice=voice, + extras={ + "countdown_remaining": countdown_remaining, + "framing_metrics": framing_metrics, + "retake_prompt_enabled": bool(self.retake_prompt_enabled), + "retake_limit": int(self.retake_limit), + "retake_count": int(retake_count), + **self._current_person_extras(), + }, + ) + + if self._consume_no_photo_flag(): + await self._say_prompt(voice, "countdown_cancelled", "Countdown cancelled.") + state = "IDLE" + state_enter_ts = now + self.cooldown_until = now + self.session_cooldown_sec + self._clear_confirmation_flags() + self._set_interaction_active(False, voice=voice, reason="cancelled during countdown") + self._cancel_capture_pipeline(reason="cancelled during countdown") + self._unlock_target() + self._reset_current_person() + continue + + if not subject_visible: + if countdown_lost_since <= 0.0: + countdown_lost_since = now + elif (now - countdown_lost_since) >= self.countdown_lose_subject_sec: + await self._say_prompt( + voice, + "lost_from_frame", + "I lost you from frame. Let us try again.", + ) + state = "FRAMING" + state_enter_ts = now + framing_deadline = now + self.framing_timeout_sec + framing_last_feedback_ts = 0.0 + framing_good_streak = 0 + continue + else: + countdown_lost_since = 0.0 + + sec_left = int(round(countdown_remaining)) + if sec_left in (3, 2, 1) and sec_left not in countdown_announced: + countdown_announced.add(sec_left) + await self._say_capture_prompt(voice, f"count_{sec_left}", f"{sec_left}...") + elif sec_left <= 0 and 0 not in countdown_announced: + countdown_announced.add(0) + await self._say_capture_prompt(voice, "smile", "Smile.") + + with self._capture_lock: + capture_done = bool(self._capture_done) + capture_result = self._capture_result + + if capture_done: + if isinstance(capture_result, str) and capture_result.startswith("[ERR]"): + sanad_logger.print_and_log(f"Capture failed: {capture_result}", "error") + state = "IDLE" + state_enter_ts = now + self.cooldown_until = now + self.session_cooldown_sec + self._set_interaction_active(False, voice=voice, reason="capture failed") + self._cancel_capture_pipeline(reason="capture failed") + self._unlock_target() + self._reset_current_person() + else: + try: + person_id = str((self.current_person or {}).get("person_id") or "").strip() + if person_id: + people_registry.attach_captured_photo(person_id, str(capture_result)) + except Exception as e: + record_error("autonomous_manager", "attach_captured_photo", e) + retake_recommended, retake_reason, retake_score, framing_metrics = self._retake_assessment( + snap, + previous_metrics=framing_metrics, + ) + if ( + bool(self.retake_prompt_enabled) + and bool(retake_recommended) + and int(retake_count) < int(self.retake_limit) + ): + state = "RETAKE_CONFIRM" + state_enter_ts = now + retake_deadline = now + self.retake_confirm_timeout_sec + reason_txt = retake_reason or "the framing is not optimal" + await self._say_prompt( + voice, + "retake_recommended", + f"Photo captured. I recommend a retake because {reason_txt}. " + "Say yes photo to retake, or no photo to keep this one.", + ) + else: + state = "COMPLETE" + state_enter_ts = now + continue + + if now >= (countdown_deadline + self.capture_finalize_grace_sec): + record_error( + "autonomous_manager", + "countdown_capture_timeout", + context={"session_id": self.session_id, "grace_sec": self.capture_finalize_grace_sec}, + ) + sanad_logger.print_and_log("Capture timeout after countdown. Resetting session.", "error") + state = "IDLE" + state_enter_ts = now + self.cooldown_until = now + self.session_cooldown_sec + self._set_interaction_active(False, voice=voice, reason="capture timeout") + self._cancel_capture_pipeline(reason="capture timeout") + self._unlock_target() + self._reset_current_person() + continue + + elif state == "RETAKE_CONFIRM": + rem = max(0.0, retake_deadline - now) + self._write_runtime_state( + "RETAKE_CONFIRM", + snap, + voice=voice, + extras={ + "retake_prompt_enabled": bool(self.retake_prompt_enabled), + "retake_recommended": bool(retake_recommended), + "retake_reason": str(retake_reason or ""), + "retake_score": float(retake_score), + "retake_count": int(retake_count), + "retake_limit": int(self.retake_limit), + "retake_timeout_remaining": rem, + "framing_metrics": framing_metrics, + **self._current_person_extras(), + }, + ) + if self._consume_no_photo_flag(): + state = "COMPLETE" + state_enter_ts = now + continue + if self._consume_request_photo_flag(): + if int(retake_count) < int(self.retake_limit): + retake_count += 1 + await self._say_prompt( + voice, + "retake_yes", + "Great, let us retake. Hold your pose.", + ) + state = "FRAMING" + state_enter_ts = now + framing_deadline = now + self.framing_timeout_sec + framing_last_feedback_ts = 0.0 + framing_good_streak = 0 + else: + await self._say_prompt( + voice, + "retake_limit", + "Retake limit reached. Keeping the current photo.", + ) + state = "COMPLETE" + state_enter_ts = now + continue + if now >= retake_deadline: + state = "COMPLETE" + state_enter_ts = now + continue + + elif state == "COMPLETE": + self._write_runtime_state( + "COMPLETE", + snap, + voice=voice, + extras={ + "capture_result": self._capture_result, + "retake_prompt_enabled": bool(self.retake_prompt_enabled), + "retake_recommended": bool(retake_recommended), + "retake_reason": str(retake_reason or ""), + "retake_score": float(retake_score), + "retake_count": int(retake_count), + "retake_limit": int(self.retake_limit), + "framing_metrics": framing_metrics, + **self._current_person_extras(), + }, + ) + await self._say_capture_prompt( + voice, + "photo_saved_thanks", + "Thank you. Photo saved. Don't forget to check your photos.", + ) + sanad_logger.print_and_log(f"โœ… Session {self.session_id} complete.", "info") + await asyncio.sleep(1.0) + state = "IDLE" + state_enter_ts = now + self.cooldown_until = time.time() + self.session_cooldown_sec + self._clear_confirmation_flags() + self._set_interaction_active(False, voice=voice, reason="session complete") + self._cancel_capture_pipeline(reason="session complete") + self._unlock_target() + self._reset_current_person() + continue + + if (time.time() - state_enter_ts) > 120.0: + sanad_logger.print_and_log("Autonomous state timed out, forcing IDLE reset.", "warning") + state = "IDLE" + state_enter_ts = time.time() + self.cooldown_until = time.time() + self.session_cooldown_sec + self._clear_confirmation_flags() + self._set_interaction_active(False, voice=voice, reason="state watchdog reset") + self._cancel_capture_pipeline(reason="state watchdog reset") + self._unlock_target() + self._reset_current_person() + + finally: + self._set_interaction_active(False, voice=voice, reason="autonomous stop") + self._cancel_capture_pipeline(reason="autonomous stop") + self._unlock_target() + self._reset_current_person() + self.detector.stop() + def stop(self): + self._running = False + self.detector.stop() + + +if __name__ == "__main__": + async def main(): + am = AutonomousManager() + + class Stub: + pass + + await am.run(Stub(), Stub(), Stub(), None) + + try: + asyncio.run(main()) + except KeyboardInterrupt: + pass diff --git a/Modes/AI/camera_module.py b/Modes/AI/camera_module.py new file mode 100644 index 0000000..381acde --- /dev/null +++ b/Modes/AI/camera_module.py @@ -0,0 +1,333 @@ +""" +Camera capture module for Unitree G1 robot +Handles OpenCV camera interface and image processing for AI analysis +""" + +import cv2 +import numpy as np +import base64 +import io +import os +import time +from pathlib import Path +from PIL import Image +from typing import Optional, Union, List +import logging +from Core.settings import CAMERA_INDEX, FRAME_WIDTH, FRAME_HEIGHT, FPS + +class CameraCapture: + """ + Camera capture class for Unitree G1 robot + Provides methods to capture frames and prepare them for AI analysis + """ + + def __init__(self, camera_index: Optional[Union[int, str]] = None): + """ + Initialize camera capture + + Args: + camera_index: int index, /dev/videoX path, "auto", or None + """ + self.camera_source = self._resolve_camera_source(camera_index) + # Keep legacy field name for backward compatibility with older modules/tests + self.camera_index = self.camera_source + self.cap = None + self.is_initialized = False + self.logger = logging.getLogger(__name__) + self._last_read_warn_ts = 0.0 + + def _resolve_camera_source(self, camera_source: Optional[Union[int, str]]) -> Union[int, str]: + """ + Resolve requested camera source from argument/env/defaults. + Priority: + 1) explicit argument + 2) CAMERA_DEVICE env (supports /dev/videoX or "auto") + 3) CAMERA_INDEX env/config int + """ + if camera_source is None: + env_device = os.environ.get("CAMERA_DEVICE", "").strip() + if env_device: + camera_source = env_device + else: + camera_source = os.environ.get("CAMERA_INDEX", str(CAMERA_INDEX)) + + if isinstance(camera_source, str): + s = camera_source.strip() + if not s: + return int(CAMERA_INDEX) + if s.lower() == "auto": + return "auto" + try: + return int(s) + except ValueError: + return s + + return int(camera_source) + + def _candidate_sources(self) -> List[Union[int, str]]: + """ + Build candidate capture sources. When CAMERA_FALLBACK_SCAN=1 (default), + we also try available /dev/video* nodes if the primary source fails. + """ + src = self.camera_source + candidates: List[Union[int, str]] = [src] + + # If primary source is /dev/videoX, also try numeric index X. + if isinstance(src, str) and src.startswith("/dev/video"): + try: + idx = int(src.replace("/dev/video", "")) + candidates.append(idx) + except Exception: + pass + + do_scan = os.environ.get("CAMERA_FALLBACK_SCAN", "1").strip().lower() not in ( + "0", "false", "no", "off" + ) + if src == "auto" or do_scan: + for p in sorted(Path("/dev").glob("video*")): + sp = str(p) + if sp not in candidates: + candidates.append(sp) + try: + idx = int(sp.replace("/dev/video", "")) + if idx not in candidates: + candidates.append(idx) + except Exception: + pass + + return candidates + + def _open_capture(self, source: Union[int, str]): + if isinstance(source, str) and source.startswith("/dev/video"): + # V4L2 backend is more reliable for /dev/videoX on Linux. + return cv2.VideoCapture(source, cv2.CAP_V4L2) + return cv2.VideoCapture(source) + + def initialize(self) -> bool: + """ + Initialize camera connection + + Returns: + bool: True if successful, False otherwise + """ + try: + self.release() + tried: List[str] = [] + + for source in self._candidate_sources(): + tried.append(str(source)) + cap = None + try: + cap = self._open_capture(source) + except Exception: + cap = None + + if cap is None or not cap.isOpened(): + try: + if cap is not None: + cap.release() + except Exception: + pass + continue + + # Set camera properties + cap.set(cv2.CAP_PROP_FRAME_WIDTH, FRAME_WIDTH) + cap.set(cv2.CAP_PROP_FRAME_HEIGHT, FRAME_HEIGHT) + cap.set(cv2.CAP_PROP_FPS, FPS) + + # Test capture + ret, _frame = cap.read() + if not ret: + cap.release() + continue + + self.cap = cap + self.camera_source = source + self.camera_index = source + self.is_initialized = True + self.logger.info(f"Camera initialized successfully: {source}") + return True + + self.is_initialized = False + self.cap = None + self.logger.error(f"Failed to open camera. Tried sources: {', '.join(tried)}") + return False + + except Exception as e: + self.logger.error(f"Camera initialization failed: {e}") + return False + + def capture_frame(self) -> Optional[np.ndarray]: + """ + Capture a single frame from camera + + Returns: + numpy.ndarray: Captured frame or None if failed + """ + if not self.is_initialized or self.cap is None: + return None + + try: + ret, frame = self.cap.read() + if not ret: + now = time.time() + # Throttle noisy warnings when camera stream is unstable/unavailable. + if now - self._last_read_warn_ts >= 5.0: + self.logger.warning("Failed to capture frame from camera") + self._last_read_warn_ts = now + return None + + return frame + + except Exception as e: + self.logger.error(f"Frame capture failed: {e}") + return None + + def frame_to_base64(self, frame: np.ndarray, format: str = 'JPEG') -> Optional[str]: + """ + Convert OpenCV frame to base64 string for API transmission + + Args: + frame: OpenCV frame (BGR format) + format: Image format ('JPEG' or 'PNG') + + Returns: + str: Base64 encoded image or None if failed + """ + try: + # Convert BGR to RGB + rgb_frame = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB) + + # Convert to PIL Image + pil_image = Image.fromarray(rgb_frame) + + # Convert to bytes + buffer = io.BytesIO() + pil_image.save(buffer, format=format, quality=85) + buffer.seek(0) + + # Encode to base64 + img_base64 = base64.b64encode(buffer.getvalue()).decode('utf-8') + + return img_base64 + + except Exception as e: + self.logger.error(f"Base64 conversion failed: {e}") + return None + + def frame_to_pil(self, frame: np.ndarray) -> Optional[Image.Image]: + """ + Convert OpenCV frame to PIL Image for Gemini API + + Args: + frame: OpenCV frame (BGR format) + + Returns: + PIL.Image: Converted image or None if failed + """ + try: + # Convert BGR to RGB + rgb_frame = cv2.cvtColor(frame, cv2.COLOR_BGR2RGB) + + # Convert to PIL Image + pil_image = Image.fromarray(rgb_frame) + + return pil_image + + except Exception as e: + self.logger.error(f"PIL conversion failed: {e}") + return None + + def get_frame_info(self) -> dict: + """ + Get current camera frame information + + Returns: + dict: Frame information including resolution, FPS + """ + if not self.is_initialized or self.cap is None: + return {} + + try: + info = { + 'width': int(self.cap.get(cv2.CAP_PROP_FRAME_WIDTH)), + 'height': int(self.cap.get(cv2.CAP_PROP_FRAME_HEIGHT)), + 'fps': self.cap.get(cv2.CAP_PROP_FPS), + 'format': int(self.cap.get(cv2.CAP_PROP_FORMAT)), + 'brightness': self.cap.get(cv2.CAP_PROP_BRIGHTNESS), + 'contrast': self.cap.get(cv2.CAP_PROP_CONTRAST), + 'saturation': self.cap.get(cv2.CAP_PROP_SATURATION) + } + return info + + except Exception as e: + self.logger.error(f"Failed to get frame info: {e}") + return {} + + def release(self): + """ + Release camera resources + """ + try: + if self.cap is not None: + self.cap.release() + self.cap = None + self.logger.info("Camera released successfully") + + self.is_initialized = False + + except Exception as e: + self.logger.error(f"Camera release failed: {e}") + finally: + # Headless systems often ship OpenCV without HighGUI window backends. + # Do not fail camera lifecycle because window teardown is unavailable. + try: + import cv2 + cv2.destroyAllWindows() + except Exception: + pass + + def __enter__(self): + """Context manager entry""" + self.initialize() + return self + + def __exit__(self, exc_type, exc_val, exc_tb): + """Context manager exit""" + self.release() + return False # Don't suppress exceptions + +# Utility functions for camera testing +def test_camera_capture(): + """ + Test camera capture functionality + """ + logging.basicConfig(level=logging.INFO) + + with CameraCapture() as camera: + if not camera.is_initialized: + print("Failed to initialize camera") + return + + print("Camera info:", camera.get_frame_info()) + + # Capture test frame + frame = camera.capture_frame() + if frame is not None: + print(f"Captured frame shape: {frame.shape}") + + # Test base64 conversion + base64_str = camera.frame_to_base64(frame) + if base64_str: + print(f"Base64 conversion successful, length: {len(base64_str)}") + + # Test PIL conversion + pil_img = camera.frame_to_pil(frame) + if pil_img: + print(f"PIL conversion successful, size: {pil_img.size}") + + # Save test image + cv2.imwrite('test_capture.jpg', frame) + print("Test image saved as test_capture.jpg") + else: + print("Failed to capture frame") diff --git a/Modes/AI/vision_detector.py b/Modes/AI/vision_detector.py new file mode 100644 index 0000000..c5ea902 --- /dev/null +++ b/Modes/AI/vision_detector.py @@ -0,0 +1,1480 @@ +"""vision_detector.py + +YOLO detector + tracker + intent: +- YOLO ONNX person detector for subject tracking/intent. +- YOLO ONNX face detector (optional) for face metrics. +- Group detection from person clusters. +- Intent uses RealSense depth first; bbox area fallback. +""" + +from collections import deque +from threading import Event, Lock, Thread +import logging +import os +import time +from pathlib import Path + +import cv2 +import numpy as np + +from Modes.AI.camera_module import CameraCapture +from Core import settings as config +from Core.error_events import record_error +from Server import direct_camera_client + +try: + import pyrealsense2 as rs # type: ignore + + _HAS_RS = True +except Exception: + _HAS_RS = False + +try: + from ultralytics import YOLO # type: ignore + + _HAS_ULTRALYTICS = True +except Exception: + YOLO = None # type: ignore + _HAS_ULTRALYTICS = False + +logger = logging.getLogger(__name__) + + +def _coerce_backend_name(value: str | None) -> str: + v = str(value or "").strip().lower() + if v in ("yolo", "normal"): + return v + return "normal" + + +def _coerce_yolo_runtime(value: str | None) -> str: + v = str(value or "").strip().lower() + if v in ("ultralytics", "opencv"): + return v + return "ultralytics" + + +def _resolve_model_path(path_value: str | None) -> Path | None: + if not path_value: + return None + p = Path(str(path_value)).expanduser() + if not p.is_absolute(): + p = (config.PROJECT_ROOT / p).resolve() + return p + + +def _probe_onnx_model(path_value: str | None) -> dict: + out = {"path": "", "exists": False, "loadable": False, "error": ""} + p = _resolve_model_path(path_value) + if p is None: + return out + + out["path"] = str(p) + if not p.exists() or (not p.is_file()): + out["error"] = "model file missing" + return out + + out["exists"] = True + try: + cv2.dnn.readNetFromONNX(str(p)) + out["loadable"] = True + except Exception as e: + out["error"] = str(e) + return out + + +def _probe_ultralytics_model(path_value: str | None) -> dict: + out = {"path": "", "exists": False, "loadable": False, "error": ""} + p = _resolve_model_path(path_value) + if p is None: + return out + + out["path"] = str(p) + if not p.exists() or (not p.is_file()): + out["error"] = "model file missing" + return out + out["exists"] = True + + if not _HAS_ULTRALYTICS: + out["error"] = "ultralytics not installed" + return out + + try: + YOLO(str(p)) + out["loadable"] = True + except Exception as e: + out["error"] = str(e) + return out + + +def probe_ai_readiness(backend: str | None = None, strict_required: bool | None = None) -> dict: + configured_backend = _coerce_backend_name( + backend if backend is not None else config.read_vision_detector_backend() + ) + yolo_runtime = _coerce_yolo_runtime(config.read_vision_yolo_runtime()) + strict = bool(config.read_vision_yolo_strict_required() if strict_required is None else strict_required) + + person_path = ( + os.environ.get("DETECTOR_PERSON_YOLO_ONNX", "").strip() + or os.environ.get("DETECTOR_ONNX_PATH", "").strip() + or str(getattr(config, "VISION_PERSON_YOLO_ONNX", "")).strip() + ) + face_path = ( + os.environ.get("DETECTOR_FACE_YOLO_ONNX", "").strip() + or str(getattr(config, "VISION_FACE_YOLO_ONNX", "")).strip() + ) + + if yolo_runtime == "ultralytics": + person = _probe_ultralytics_model(person_path) + face = _probe_ultralytics_model(face_path) + else: + person = _probe_onnx_model(person_path) + face = _probe_onnx_model(face_path) + person_ok = bool(person.get("loadable")) + face_ok = bool(face.get("loadable")) + yolo_loaded = bool(configured_backend == "yolo" and person_ok) + + block_reason = "" + if strict and configured_backend != "yolo": + block_reason = "Strict AI mode requires detection_backend=yolo." + elif strict and yolo_runtime == "ultralytics" and not _HAS_ULTRALYTICS: + block_reason = "Ultralytics runtime selected but package is not installed." + elif strict and not person_ok: + block_reason = "Person YOLO model is missing/invalid. Fix vision.person_yolo_onnx." + + ok = not bool(block_reason) + return { + "ok": bool(ok), + "strict_required": bool(strict), + "configured_backend": configured_backend, + "yolo_runtime": yolo_runtime, + "effective_backend": "yolo" if yolo_loaded else "normal", + "yolo_loaded": bool(yolo_loaded), + "person_model_ok": bool(person_ok), + "face_model_ok": bool(face_ok), + "person_model_path": str(person.get("path") or ""), + "face_model_path": str(face.get("path") or ""), + "person_model_error": str(person.get("error") or ""), + "face_model_error": str(face.get("error") or ""), + "block_reason": block_reason, + } + + +class VisionDetector: + def __init__(self, zmq_host="127.0.0.1", zmq_port=55555, poll_hz=10, video_source: str | None = None): + self.zmq_host = zmq_host + self.zmq_port = int(zmq_port) + self.poll_hz = float(poll_hz) + self.video_source = video_source + + self._stop = Event() + self._thread = None + self._latest_lock = Lock() + self._latest = { + "frame_time": 0.0, + "detector_backend": "normal", + "yolo_runtime": "ultralytics", + "face_count": 0, + "person_count": 0, + "group_count": 0, + "group_size": 0, + "group_detected": False, + "boxes": [], + "face_boxes": [], + "group_boxes": [], + "frame": None, + "intent_detected": False, + "max_area": 0.0, + "is_close": False, + "is_approaching": False, + "depth_m": None, + "approach_speed_mps": 0.0, + "subject_id": None, + "subject_box": None, + "subject_visible": False, + "subject_locked": False, + "target_lock_active": False, + "target_lock_type": "", + "target_lock_id": None, + "target_switch_blocked_count": 0, + "camera_ok": False, + "depth_ok": False, + "camera_restarts": 0, + "depth_restarts": 0, + } + + # Runtime-selectable detector backend + self._detector_backend = self._coerce_backend( + os.environ.get("DETECTOR_BACKEND", "").strip() or config.read_vision_detector_backend() + ) + self._last_backend_check_ts = 0.0 + + # YOLO detection config + self._yolo_runtime = _coerce_yolo_runtime( + os.environ.get("DETECTOR_YOLO_RUNTIME", "").strip() or config.read_vision_yolo_runtime() + ) + self._ultralytics_device = ( + os.environ.get("DETECTOR_YOLO_DEVICE", "").strip() or config.read_vision_yolo_ultralytics_device() + ) + self._person_model_path = str( + _resolve_model_path( + os.environ.get("DETECTOR_PERSON_YOLO_ONNX", "").strip() + or os.environ.get("DETECTOR_ONNX_PATH", "").strip() + or str(getattr(config, "VISION_PERSON_YOLO_ONNX", "")).strip() + or "" + ) + or "" + ).strip() + self._face_model_path = str( + _resolve_model_path( + os.environ.get("DETECTOR_FACE_YOLO_ONNX", "").strip() + or str(getattr(config, "VISION_FACE_YOLO_ONNX", "")).strip() + or "" + ) + or "" + ).strip() + input_size = int(max(320, getattr(config, "VISION_INPUT_SIZE", 640))) + self._dnn_input_size = (input_size, input_size) + self._person_score_thresh = float(getattr(config, "VISION_PERSON_SCORE_THRESH", 0.35)) + self._face_score_thresh = float(getattr(config, "VISION_FACE_SCORE_THRESH", 0.35)) + self._nms_iou_thresh = float(getattr(config, "VISION_NMS_IOU_THRESH", 0.45)) + self._person_class_id = int(getattr(config, "VISION_PERSON_CLASS_ID", 0)) + self._group_min_people = max(2, int(getattr(config, "VISION_GROUP_MIN_PEOPLE", 3))) + self._group_link_distance_px = float(getattr(config, "VISION_GROUP_LINK_DISTANCE_PX", 220.0)) + + self._person_net = None + self._face_net = None + self._warned_person_fallback = False + self._warned_yolo_unavailable = False + self._warned_ultralytics_missing = False + self._last_model_retry_ts = 0.0 + self._model_retry_sec = float(os.environ.get("YOLO_MODEL_RETRY_SEC", "2.0")) + + # Area-based fallback intent + self._proximity_threshold = float(os.environ.get("PROXIMITY_THRESHOLD", "50000")) + self._approach_delta = float(os.environ.get("APPROACH_DELTA", "12000")) + self._history_len = max(2, int(os.environ.get("INTENT_HISTORY_LEN", "5"))) + self._area_history = deque(maxlen=self._history_len) + + # Depth-first intent + self._min_depth_m = float(os.environ.get("MIN_DEPTH_M", "1.7")) + self._min_approach_speed_mps = float(os.environ.get("MIN_APPROACH_SPEED_MPS", "0.08")) + self._depth_history_len = max(2, int(os.environ.get("DEPTH_HISTORY_LEN", "6"))) + self._depth_history = deque(maxlen=self._depth_history_len) + + # Subject lock + self._hard_target_lock_enabled = bool(config.read_vision_hard_target_lock_enabled()) + self._locked_target_type = "" + self._locked_subject_id = None + self._locked_group_id = None + self._target_switch_blocked_count = 0 + self._subject_lock_lost_frames = max(1, int(os.environ.get("SUBJECT_LOCK_LOST_FRAMES", "20"))) + self._subject_lost_count = 0 + + # Camera/depth watchdog + self._no_frame_count = 0 + self._recover_after_no_frame = max(3, int(os.environ.get("CAMERA_RECOVER_AFTER_FRAMES", "10"))) + self._camera_ok = False + self._depth_ok = False + self._camera_restarts = 0 + self._depth_restarts = 0 + self._depth_enabled = os.environ.get("DETECTOR_USE_REALSENSE_DEPTH", "1").strip().lower() not in ( + "0", + "false", + "no", + "off", + ) + self._rs_pipeline = None + self._rs_profile = None + self._last_rs_restart = 0.0 + + self._apply_detector_backend(self._detector_backend, reason="init") + self._latest["detector_backend"] = self._effective_backend() + self._latest["yolo_runtime"] = self._yolo_runtime + self._face_cascade = cv2.CascadeClassifier(cv2.data.haarcascades + "haarcascade_frontalface_default.xml") + + self._camera = CameraCapture() + try: + self._camera.initialize() + except Exception: + logger.warning("VisionDetector: could not init CameraCapture fallback") + + self._video_cap = None + if self.video_source: + try: + self._video_cap = cv2.VideoCapture(self.video_source) + if not self._video_cap.isOpened(): + logger.warning(f"VisionDetector: could not open video source {self.video_source}") + self._video_cap = None + else: + logger.info(f"VisionDetector: using video source {self.video_source} for simulation") + except Exception as e: + logger.warning(f"VisionDetector: video source init failed: {e}") + + self._ensure_depth_pipeline(force=False) + + @staticmethod + def _coerce_backend(value: str | None) -> str: + return _coerce_backend_name(value) + + def _effective_backend(self) -> str: + if self._detector_backend == "yolo" and self._person_net is not None: + return "yolo" + return "normal" + + def _build_readiness(self, strict_required: bool | None = None) -> dict: + strict = bool(config.read_vision_yolo_strict_required() if strict_required is None else strict_required) + configured_backend = self._coerce_backend(self._detector_backend) + yolo_runtime = _coerce_yolo_runtime(self._yolo_runtime) + if yolo_runtime == "ultralytics": + person_model_ok = bool(self._person_net is not None and hasattr(self._person_net, "predict")) + face_model_ok = bool(self._face_net is not None and hasattr(self._face_net, "predict")) if self._face_model_path else False + else: + person_model_ok = bool(self._person_net is not None and hasattr(self._person_net, "setInput")) + face_model_ok = bool(self._face_net is not None and hasattr(self._face_net, "setInput")) if self._face_model_path else False + yolo_loaded = bool(configured_backend == "yolo" and person_model_ok) + + block_reason = "" + if strict and configured_backend != "yolo": + block_reason = "Strict AI mode requires detection_backend=yolo." + elif strict and yolo_runtime == "ultralytics" and not _HAS_ULTRALYTICS: + block_reason = "Ultralytics runtime selected but package is not installed." + elif strict and not person_model_ok: + block_reason = "Person YOLO model is missing/invalid. Fix vision.person_yolo_onnx." + + return { + "ok": not bool(block_reason), + "strict_required": bool(strict), + "configured_backend": configured_backend, + "yolo_runtime": yolo_runtime, + "effective_backend": self._effective_backend(), + "yolo_loaded": bool(yolo_loaded), + "person_model_ok": bool(person_model_ok), + "face_model_ok": bool(face_model_ok), + "person_model_path": str(self._person_model_path or ""), + "face_model_path": str(self._face_model_path or ""), + "person_model_error": "" if person_model_ok else "model not loaded", + "face_model_error": "" if (face_model_ok or (not self._face_model_path)) else "model not loaded", + "block_reason": block_reason, + } + + def readiness(self, strict_required: bool | None = None) -> dict: + return self._build_readiness(strict_required=strict_required) + + @classmethod + def probe_readiness(cls, backend: str | None = None, strict_required: bool | None = None) -> dict: + return probe_ai_readiness(backend=backend, strict_required=strict_required) + + def _maybe_retry_yolo_models(self, now_ts: float): + if self._detector_backend != "yolo": + return + if self._person_net is not None and (self._face_net is not None or not self._face_model_path): + return + if (now_ts - self._last_model_retry_ts) < max(0.5, self._model_retry_sec): + return + self._last_model_retry_ts = now_ts + if self._yolo_runtime == "ultralytics": + if self._person_net is None: + self._person_net = self._load_ultralytics_model(self._person_model_path, label="person") + if self._face_net is None and self._face_model_path: + self._face_net = self._load_ultralytics_model(self._face_model_path, label="face") + else: + if self._person_net is None: + self._person_net = self._load_onnx_model(self._person_model_path, label="person") + if self._face_net is None and self._face_model_path: + self._face_net = self._load_onnx_model(self._face_model_path, label="face") + + def _apply_detector_backend(self, backend: str, reason: str = ""): + backend = self._coerce_backend(backend) + prev_runtime = self._yolo_runtime + self._detector_backend = backend + self._warned_person_fallback = False + self._warned_yolo_unavailable = False + self._warned_ultralytics_missing = False + + try: + self._yolo_runtime = _coerce_yolo_runtime(config.read_vision_yolo_runtime()) + except Exception: + self._yolo_runtime = _coerce_yolo_runtime(self._yolo_runtime) + self._yolo_runtime = _coerce_yolo_runtime( + os.environ.get("DETECTOR_YOLO_RUNTIME", "").strip() or self._yolo_runtime + ) + if self._yolo_runtime != prev_runtime: + self._person_net = None + self._face_net = None + + if backend == "yolo": + if self._yolo_runtime == "ultralytics": + if self._person_net is None: + self._person_net = self._load_ultralytics_model(self._person_model_path, label="person") + if self._face_net is None and self._face_model_path: + self._face_net = self._load_ultralytics_model(self._face_model_path, label="face") + else: + if self._person_net is None: + self._person_net = self._load_onnx_model(self._person_model_path, label="person") + if self._face_net is None and self._face_model_path: + self._face_net = self._load_onnx_model(self._face_model_path, label="face") + + if self._person_net is None: + logger.warning( + f"VisionDetector: YOLO backend selected ({self._yolo_runtime}) but person model unavailable. Falling back to normal." + ) + elif self._face_net is None and self._face_model_path: + logger.info("VisionDetector: YOLO person active, face model missing -> Haar face fallback.") + else: + # Force non-AI normal mode. + self._person_net = None + self._face_net = None + + suffix = f" ({reason})" if reason else "" + logger.info(f"VisionDetector: detector backend set to {self._effective_backend()} [runtime={self._yolo_runtime}]{suffix}") + + def _refresh_detector_backend(self, now_ts: float): + if (now_ts - self._last_backend_check_ts) < 1.0: + self._maybe_retry_yolo_models(now_ts) + return + self._last_backend_check_ts = now_ts + try: + self._hard_target_lock_enabled = bool(config.read_vision_hard_target_lock_enabled()) + except Exception: + pass + try: + cfg_backend = self._coerce_backend(config.read_vision_detector_backend()) + except Exception: + cfg_backend = self._detector_backend + try: + cfg_runtime = _coerce_yolo_runtime(config.read_vision_yolo_runtime()) + except Exception: + cfg_runtime = self._yolo_runtime + if cfg_backend != self._detector_backend or cfg_runtime != self._yolo_runtime: + self._apply_detector_backend(cfg_backend, reason="runtime switch") + else: + self._maybe_retry_yolo_models(now_ts) + + @staticmethod + def _load_onnx_model(path: str | None, label: str): + if not path: + return None + try: + net = cv2.dnn.readNetFromONNX(str(path)) + net.setPreferableBackend(cv2.dnn.DNN_BACKEND_DEFAULT) + net.setPreferableTarget(cv2.dnn.DNN_TARGET_CPU) + logger.info(f"VisionDetector: loaded {label} YOLO ONNX model: {path}") + return net + except Exception as e: + logger.warning(f"VisionDetector: failed to load {label} model {path}: {e}") + return None + + def _load_ultralytics_model(self, path: str | None, label: str): + if not path: + return None + if not _HAS_ULTRALYTICS: + if not self._warned_ultralytics_missing: + self._warned_ultralytics_missing = True + logger.warning("VisionDetector: ultralytics package not installed; cannot use ultralytics runtime.") + return None + try: + model = YOLO(str(path)) + logger.info(f"VisionDetector: loaded {label} Ultralytics model: {path}") + return model + except Exception as e: + logger.warning(f"VisionDetector: failed to load {label} ultralytics model {path}: {e}") + return None + + def _run_yolo_ultralytics(self, model, frame, conf_thresh: float, class_filter: int | None = None): + if model is None or frame is None: + return [] + try: + results = model.predict( + source=frame, + conf=float(conf_thresh), + iou=float(self._nms_iou_thresh), + imgsz=int(self._dnn_input_size[0]), + device=str(self._ultralytics_device), + verbose=False, + ) + if not results: + return [] + res = results[0] + boxes_obj = getattr(res, "boxes", None) + if boxes_obj is None: + return [] + xyxy = boxes_obj.xyxy + confs = boxes_obj.conf + classes = boxes_obj.cls + if xyxy is None or confs is None or classes is None: + return [] + + try: + xyxy_np = xyxy.cpu().numpy() + conf_np = confs.cpu().numpy() + cls_np = classes.cpu().numpy() + except Exception: + xyxy_np = np.asarray(xyxy) + conf_np = np.asarray(confs) + cls_np = np.asarray(classes) + + out = [] + for i in range(len(xyxy_np)): + cls_id = int(round(float(cls_np[i]))) + if class_filter is not None and cls_id != int(class_filter): + continue + x1, y1, x2, y2 = [float(v) for v in xyxy_np[i][:4]] + x = int(round(max(0.0, x1))) + y = int(round(max(0.0, y1))) + w = int(round(max(0.0, x2 - x1))) + h = int(round(max(0.0, y2 - y1))) + if w < 4 or h < 4: + continue + out.append( + { + "x": x, + "y": y, + "w": w, + "h": h, + "conf": float(conf_np[i]), + "class_id": cls_id, + } + ) + return out + except Exception as e: + record_error("vision_detector", "run_yolo_ultralytics", e) + return [] + + @staticmethod + def _prepare_output_rows(output) -> np.ndarray: + if isinstance(output, (list, tuple)): + chunks = [] + for out in output: + rows = VisionDetector._prepare_output_rows(out) + if rows.size > 0: + chunks.append(rows) + if not chunks: + return np.empty((0, 0), dtype=np.float32) + try: + return np.concatenate(chunks, axis=0) + except Exception: + return chunks[0] + + arr = np.asarray(output) + if arr.size == 0: + return np.empty((0, 0), dtype=np.float32) + + if arr.ndim >= 4: + arr = arr.reshape(arr.shape[0], -1, arr.shape[-1]) + + if arr.ndim == 3: + if arr.shape[0] == 1: + arr = arr[0] + else: + arr = arr.reshape(-1, arr.shape[-1]) + elif arr.ndim == 2: + pass + elif arr.ndim == 1: + arr = arr.reshape(1, -1) + else: + arr = arr.reshape(-1, 1) + + if arr.ndim != 2: + return np.empty((0, 0), dtype=np.float32) + + # Typical YOLO ONNX output can be [84, 8400], transpose to [8400, 84]. + if arr.shape[0] < arr.shape[1] and arr.shape[1] > 64 and arr.shape[0] <= 256: + arr = arr.T + + return arr.astype(np.float32, copy=False) + + @staticmethod + def _decode_conf_and_class(row: np.ndarray) -> tuple[float, int] | None: + n = int(row.shape[0]) + if n < 5: + return None + + # End-to-end format: [x1, y1, x2, y2, conf, class_id] + if ( + n == 6 + and row[2] > row[0] + and row[3] > row[1] + and (row[2] > 2.0 or row[3] > 2.0 or row[0] < 0.0 or row[1] < 0.0) + and 0.0 <= float(row[4]) <= 1.0 + and abs(float(row[5]) - round(float(row[5]))) <= 1e-3 + ): + return float(row[4]), int(round(float(row[5]))) + + obj = max(0.0, float(row[4])) + if n <= 5: + return obj, 0 + + class_scores = row[5:] + cls_id = int(np.argmax(class_scores)) + cls_score = max(0.0, float(class_scores[cls_id])) + + if obj <= 1.5: + conf = obj * cls_score + else: + conf = cls_score + return float(conf), cls_id + + @staticmethod + def _coords_to_xywh(coords: np.ndarray, frame_w: int, frame_h: int) -> tuple[int, int, int, int] | None: + if coords.shape[0] < 4: + return None + + a, b, c, d = (float(coords[0]), float(coords[1]), float(coords[2]), float(coords[3])) + max_abs = max(abs(a), abs(b), abs(c), abs(d)) + + # xyxy-style + if c > a and d > b: + if max_abs <= 2.0: + x1, y1 = a * frame_w, b * frame_h + x2, y2 = c * frame_w, d * frame_h + else: + x1, y1, x2, y2 = a, b, c, d + else: + # cx, cy, w, h style (YOLO default) + if max_abs <= 2.0: + cx, cy = a * frame_w, b * frame_h + bw, bh = c * frame_w, d * frame_h + else: + cx, cy = a, b + bw, bh = c, d + x1 = cx - (bw / 2.0) + y1 = cy - (bh / 2.0) + x2 = cx + (bw / 2.0) + y2 = cy + (bh / 2.0) + + x1_i = max(0, min(frame_w - 1, int(round(x1)))) + y1_i = max(0, min(frame_h - 1, int(round(y1)))) + x2_i = max(0, min(frame_w, int(round(x2)))) + y2_i = max(0, min(frame_h, int(round(y2)))) + + w_i = max(0, x2_i - x1_i) + h_i = max(0, y2_i - y1_i) + if w_i < 4 or h_i < 4: + return None + return x1_i, y1_i, w_i, h_i + + def _decode_yolo_output(self, output, frame_w: int, frame_h: int, conf_thresh: float, class_filter: int | None): + rows = self._prepare_output_rows(output) + if rows.size == 0: + return [] + + candidates = [] + rects = [] + confs = [] + for row in rows: + conf_and_class = self._decode_conf_and_class(row) + if conf_and_class is None: + continue + conf, class_id = conf_and_class + if conf < conf_thresh: + continue + if class_filter is not None and int(class_id) != int(class_filter): + continue + xywh = self._coords_to_xywh(row[:4], frame_w=frame_w, frame_h=frame_h) + if xywh is None: + continue + x, y, w, h = xywh + candidates.append({"x": x, "y": y, "w": w, "h": h, "conf": float(conf), "class_id": int(class_id)}) + rects.append([int(x), int(y), int(w), int(h)]) + confs.append(float(conf)) + + if not candidates: + return [] + + try: + idxs = cv2.dnn.NMSBoxes(rects, confs, conf_thresh, self._nms_iou_thresh) + except Exception: + idxs = None + + if idxs is None or len(idxs) == 0: + return candidates + + if isinstance(idxs, np.ndarray): + keep = [int(i) for i in idxs.flatten().tolist()] + else: + keep = [] + for i in idxs: + if isinstance(i, (list, tuple, np.ndarray)): + keep.append(int(i[0])) + else: + keep.append(int(i)) + + filtered = [] + for idx in keep: + if 0 <= idx < len(candidates): + filtered.append(candidates[idx]) + return filtered + + def _run_yolo_onnx(self, net, frame, conf_thresh: float, class_filter: int | None = None): + if net is None or frame is None: + return [] + try: + blob = cv2.dnn.blobFromImage(frame, 1.0 / 255.0, self._dnn_input_size, swapRB=True, crop=False) + net.setInput(blob) + output = None + try: + names = net.getUnconnectedOutLayersNames() + if names: + output = net.forward(names) + except Exception: + output = None + if output is None: + output = net.forward() + h, w = frame.shape[:2] + return self._decode_yolo_output(output, frame_w=w, frame_h=h, conf_thresh=conf_thresh, class_filter=class_filter) + except Exception as e: + record_error("vision_detector", "run_yolo_onnx", e) + return [] + + @staticmethod + def _bbox_iou(a: tuple[int, int, int, int], b: tuple[int, int, int, int]) -> float: + ax, ay, aw, ah = a + bx, by, bw, bh = b + ax2, ay2 = ax + aw, ay + ah + bx2, by2 = bx + bw, by + bh + + ix1 = max(ax, bx) + iy1 = max(ay, by) + ix2 = min(ax2, bx2) + iy2 = min(ay2, by2) + iw = max(0, ix2 - ix1) + ih = max(0, iy2 - iy1) + inter = float(iw * ih) + if inter <= 0.0: + return 0.0 + union = float(aw * ah + bw * bh) - inter + if union <= 0.0: + return 0.0 + return inter / union + + def _detect_person_boxes(self, frame, tracker): + if self._detector_backend == "yolo" and self._person_net is not None: + if self._yolo_runtime == "ultralytics": + raw = self._run_yolo_ultralytics( + self._person_net, + frame, + conf_thresh=self._person_score_thresh, + class_filter=self._person_class_id, + ) + else: + raw = self._run_yolo_onnx( + self._person_net, + frame, + conf_thresh=self._person_score_thresh, + class_filter=self._person_class_id, + ) + boxes_raw = [(int(d["x"]), int(d["y"]), int(d["w"]), int(d["h"])) for d in raw] + assigned = tracker.update(boxes_raw) + + boxes = [] + for (cid, box) in assigned: + best_conf = 0.0 + for det in raw: + dbox = (int(det["x"]), int(det["y"]), int(det["w"]), int(det["h"])) + iou = self._bbox_iou(tuple(box), dbox) + if iou > 0.5: + best_conf = max(best_conf, float(det.get("conf", 0.0))) + boxes.append( + { + "x": int(box[0]), + "y": int(box[1]), + "w": int(box[2]), + "h": int(box[3]), + "id": int(cid), + "conf": float(best_conf), + } + ) + return boxes + + if self._detector_backend == "yolo" and self._person_net is None and not self._warned_yolo_unavailable: + self._warned_yolo_unavailable = True + logger.warning("VisionDetector: YOLO person model unavailable at runtime; using normal detector.") + + if not self._warned_person_fallback: + self._warned_person_fallback = True + logger.warning("VisionDetector: person fallback enabled (Haar face boxes used as person proxies).") + + gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY) + faces = self._face_cascade.detectMultiScale(gray, scaleFactor=1.1, minNeighbors=4, minSize=(30, 30)) + boxes_raw = [tuple(map(int, f)) for f in faces] + assigned = tracker.update(boxes_raw) + return [ + {"x": int(b[0]), "y": int(b[1]), "w": int(b[2]), "h": int(b[3]), "id": int(i), "conf": 1.0} + for (i, b) in assigned + ] + + def _detect_face_boxes(self, frame): + if self._detector_backend == "yolo" and self._face_net is not None: + if self._yolo_runtime == "ultralytics": + raw = self._run_yolo_ultralytics( + self._face_net, + frame, + conf_thresh=self._face_score_thresh, + class_filter=None, + ) + else: + raw = self._run_yolo_onnx(self._face_net, frame, conf_thresh=self._face_score_thresh, class_filter=None) + return [ + { + "x": int(d["x"]), + "y": int(d["y"]), + "w": int(d["w"]), + "h": int(d["h"]), + "conf": float(d.get("conf", 0.0)), + } + for d in raw + ] + + gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY) + faces = self._face_cascade.detectMultiScale(gray, scaleFactor=1.1, minNeighbors=4, minSize=(30, 30)) + return [{"x": int(x), "y": int(y), "w": int(w), "h": int(h), "conf": 1.0} for (x, y, w, h) in faces] + + def _detect_groups(self, person_boxes): + if len(person_boxes) < self._group_min_people: + return [] + + centers = [] + for b in person_boxes: + cx = float(b.get("x", 0.0)) + (float(b.get("w", 0.0)) / 2.0) + cy = float(b.get("y", 0.0)) + (float(b.get("h", 0.0)) / 2.0) + centers.append((cx, cy)) + + n = len(person_boxes) + visited = set() + components = [] + link_dist_sq = float(self._group_link_distance_px) * float(self._group_link_distance_px) + + for i in range(n): + if i in visited: + continue + stack = [i] + comp = [] + while stack: + cur = stack.pop() + if cur in visited: + continue + visited.add(cur) + comp.append(cur) + cx, cy = centers[cur] + for j in range(n): + if j in visited: + continue + dx = cx - centers[j][0] + dy = cy - centers[j][1] + if (dx * dx + dy * dy) <= link_dist_sq: + stack.append(j) + components.append(comp) + + groups = [] + gid = 1 + for comp in components: + if len(comp) < self._group_min_people: + continue + xs = [int(person_boxes[k]["x"]) for k in comp] + ys = [int(person_boxes[k]["y"]) for k in comp] + x2s = [int(person_boxes[k]["x"] + person_boxes[k]["w"]) for k in comp] + y2s = [int(person_boxes[k]["y"] + person_boxes[k]["h"]) for k in comp] + x1 = min(xs) + y1 = min(ys) + x2 = max(x2s) + y2 = max(y2s) + groups.append( + { + "id": gid, + "size": int(len(comp)), + "members": [int(person_boxes[k].get("id", 0)) for k in comp], + "x": int(x1), + "y": int(y1), + "w": int(max(0, x2 - x1)), + "h": int(max(0, y2 - y1)), + } + ) + gid += 1 + + groups.sort(key=lambda g: (-int(g.get("size", 0)), int(g.get("id", 0)))) + return groups + + def start(self): + if self._thread and self._thread.is_alive(): + return + self._stop.clear() + self._thread = Thread(target=self._run, daemon=True) + self._thread.start() + + def stop(self): + self._stop.set() + if self._thread: + self._thread.join(timeout=1.0) + self._close_depth_pipeline() + try: + if self._video_cap is not None: + self._video_cap.release() + except Exception as e: + record_error("vision_detector", "stop_release_video", e) + + def latest(self): + with self._latest_lock: + return dict(self._latest) + + def set_hard_lock(self, enabled: bool): + self._hard_target_lock_enabled = bool(enabled) + + def lock_target_from_snapshot(self, snapshot: dict | None = None, lock_group: bool = False): + s = snapshot or self.latest() + self._locked_target_type = "" + self._locked_group_id = None + self._locked_subject_id = None + + if lock_group: + groups = s.get("group_boxes") or [] + if groups: + try: + g = max( + groups, + key=lambda x: (int(x.get("size", 0)), float(x.get("w", 0.0)) * float(x.get("h", 0.0))), + ) + except Exception: + g = groups[0] + gid = g.get("id") + members = g.get("members") or [] + try: + self._locked_group_id = int(gid) if gid is not None else None + except Exception: + self._locked_group_id = None + try: + self._locked_subject_id = int(members[0]) if members else None + except Exception: + self._locked_subject_id = None + if self._locked_group_id is not None: + self._locked_target_type = "group" + + if self._locked_target_type != "group": + sid = s.get("subject_id") + if sid is None: + boxes = s.get("boxes") or [] + if boxes: + try: + sid = max(boxes, key=lambda x: float(x.get("w", 0.0)) * float(x.get("h", 0.0))).get("id") + except Exception: + sid = boxes[0].get("id") + try: + self._locked_subject_id = int(sid) if sid is not None else None + except Exception: + self._locked_subject_id = None + if self._locked_subject_id is not None: + self._locked_target_type = "subject" + + self._subject_lost_count = 0 + + def unlock_target(self): + self._locked_target_type = "" + self._locked_group_id = None + self._locked_subject_id = None + self._subject_lost_count = 0 + + def lock_subject(self, subject_id: int | None = None): + if subject_id is None: + snap = self.latest() + subject_id = snap.get("subject_id") + try: + self._locked_subject_id = int(subject_id) if subject_id is not None else None + except Exception: + self._locked_subject_id = None + self._locked_group_id = None + self._locked_target_type = "subject" if self._locked_subject_id is not None else "" + self._subject_lost_count = 0 + + def lock_subject_from_snapshot(self, snapshot: dict | None = None): + s = snapshot or self.latest() + sid = s.get("subject_id") + if sid is None: + boxes = s.get("boxes") or [] + if boxes: + b = max(boxes, key=lambda x: float(x.get("w", 0.0)) * float(x.get("h", 0.0))) + sid = b.get("id") + self.lock_subject(sid) + + def unlock_subject(self): + self.unlock_target() + + def _close_depth_pipeline(self): + if self._rs_pipeline is not None: + try: + self._rs_pipeline.stop() + except Exception: + pass + self._rs_pipeline = None + self._rs_profile = None + self._depth_ok = False + + def _ensure_depth_pipeline(self, force: bool = False): + if not self._depth_enabled or not _HAS_RS: + self._depth_ok = False + return False + if self._rs_pipeline is not None and not force: + self._depth_ok = True + return True + now = time.time() + if (not force) and (now - self._last_rs_restart) < 2.0: + return self._rs_pipeline is not None + self._last_rs_restart = now + self._close_depth_pipeline() + try: + pipe = rs.pipeline() + cfg = rs.config() + cfg.enable_stream(rs.stream.depth, 640, 480, rs.format.z16, 30) + self._rs_profile = pipe.start(cfg) + self._rs_pipeline = pipe + self._depth_ok = True + if force: + self._depth_restarts += 1 + logger.info("VisionDetector: RealSense depth pipeline started") + return True + except Exception as e: + self._rs_pipeline = None + self._rs_profile = None + self._depth_ok = False + logger.warning(f"VisionDetector: depth pipeline unavailable: {e}") + return False + + def _recover_inputs(self): + logger.warning("VisionDetector: recovering camera/depth inputs") + self._camera_restarts += 1 + try: + self._camera.release() + except Exception as e: + record_error("vision_detector", "recover_inputs_release", e) + try: + self._camera.initialize() + except Exception as e: + record_error("vision_detector", "recover_inputs_initialize", e) + self._ensure_depth_pipeline(force=True) + self._no_frame_count = 0 + + @staticmethod + def _coerce_depth_payload(depth_payload, subject_box=None): + if depth_payload is None: + return None + if isinstance(depth_payload, (int, float)): + d = float(depth_payload) + return d if d > 0.0 else None + + if isinstance(depth_payload, np.ndarray): + arr = depth_payload + h, w = arr.shape[:2] + if subject_box: + x = max(0, int(subject_box.get("x", 0))) + y = max(0, int(subject_box.get("y", 0))) + bw = max(1, int(subject_box.get("w", 1))) + bh = max(1, int(subject_box.get("h", 1))) + x2 = min(w, x + bw) + y2 = min(h, y + bh) + roi = arr[y:y2, x:x2] + else: + roi = arr + if roi.size <= 0: + return None + vals = roi[roi > 0] + if vals.size <= 0: + return None + med = float(np.median(vals)) + if arr.dtype in (np.uint16, np.int16, np.uint32, np.int32): + med *= 0.001 # mm -> m + return med if med > 0.0 else None + return None + + def _estimate_depth_m(self, subject_box=None, depth_payload=None): + d = self._coerce_depth_payload(depth_payload, subject_box=subject_box) + if d is not None: + self._depth_ok = True + return d + + if not self._ensure_depth_pipeline(force=False): + self._depth_ok = False + return None + try: + frames = self._rs_pipeline.poll_for_frames() + if not frames: + return None + depth_frame = frames.get_depth_frame() + if not depth_frame: + return None + w = depth_frame.get_width() + h = depth_frame.get_height() + if subject_box: + cx = int(subject_box.get("x", 0) + (subject_box.get("w", 0) / 2)) + cy = int(subject_box.get("y", 0) + (subject_box.get("h", 0) / 2)) + else: + cx, cy = int(w / 2), int(h / 2) + cx = max(0, min(w - 1, cx)) + cy = max(0, min(h - 1, cy)) + d = float(depth_frame.get_distance(cx, cy)) + if d <= 0.0: + self._depth_ok = False + return None + self._depth_ok = True + return d + except Exception: + self._depth_ok = False + return None + + def _extract_frame_and_depth(self): + if self._video_cap is not None: + try: + ret, frame = self._video_cap.read() + if not ret: + self._video_cap.set(cv2.CAP_PROP_POS_FRAMES, 0) + ret, frame = self._video_cap.read() + self._camera_ok = bool(ret and frame is not None) + return frame, None + except Exception: + self._camera_ok = False + return None, None + + if direct_camera_client.is_enabled(): + try: + frame = direct_camera_client.frame_bgr(timeout=1.5) + if frame is not None: + self._camera_ok = True + return frame, None + except Exception: + pass + + try: + frame = self._camera.capture_frame() + self._camera_ok = frame is not None + return frame, None + except Exception: + self._camera_ok = False + return None, None + + def _select_subject(self, boxes, groups=None): + groups = groups or [] + if not boxes: + self._subject_lost_count += 1 + if (not self._hard_target_lock_enabled) and self._subject_lost_count > self._subject_lock_lost_frames: + self._locked_subject_id = None + self._locked_group_id = None + self._locked_target_type = "" + return None, False + + self._subject_lost_count = 0 + if self._hard_target_lock_enabled and self._locked_group_id is not None: + locked_group = None + for g in groups: + try: + if int(g.get("id", -1)) == int(self._locked_group_id): + locked_group = g + break + except Exception: + continue + if locked_group is None: + self._target_switch_blocked_count += 1 + return None, False + members = set() + try: + members = {int(x) for x in (locked_group.get("members") or [])} + except Exception: + members = set() + cands = [b for b in boxes if int(b.get("id", -1)) in members] + if not cands: + self._target_switch_blocked_count += 1 + return None, False + best = max(cands, key=lambda b: float(b.get("w", 0.0)) * float(b.get("h", 0.0))) + try: + self._locked_subject_id = int(best.get("id")) + except Exception: + pass + return best, True + + if self._locked_subject_id is not None: + for b in boxes: + if int(b.get("id", -1)) == int(self._locked_subject_id): + return b, True + if self._hard_target_lock_enabled: + self._target_switch_blocked_count += 1 + return None, False + + # No lock: select largest target. + best = max(boxes, key=lambda b: float(b.get("w", 0.0)) * float(b.get("h", 0.0))) + return best, True + + def _check_interaction_intent(self, boxes, subject_box, depth_m, now): + max_area = 0.0 + for b in boxes: + try: + area = max(0.0, float(b.get("w", 0.0))) * max(0.0, float(b.get("h", 0.0))) + if area > max_area: + max_area = area + except Exception: + continue + + self._area_history.append(max_area) + area_first = self._area_history[0] if self._area_history else 0.0 + is_close_area = max_area >= self._proximity_threshold + is_approach_area = len(self._area_history) >= self._history_len and (max_area - area_first) >= self._approach_delta + + approach_speed = 0.0 + is_close_depth = False + is_approach_depth = False + if depth_m is not None: + self._depth_history.append((now, float(depth_m))) + if len(self._depth_history) >= 2: + t0, d0 = self._depth_history[0] + dt = max(1e-3, now - float(t0)) + approach_speed = max(0.0, (float(d0) - float(depth_m)) / dt) + is_close_depth = float(depth_m) <= self._min_depth_m + is_approach_depth = approach_speed >= self._min_approach_speed_mps + else: + self._depth_history.clear() + + if depth_m is not None: + is_close = is_close_depth + is_approaching = is_approach_depth + else: + is_close = is_close_area + is_approaching = is_approach_area + + subject_visible = subject_box is not None + intent_detected = bool(subject_visible and (is_close or is_approaching)) + return { + "intent_detected": intent_detected, + "max_area": float(max_area), + "is_close": bool(is_close), + "is_approaching": bool(is_approaching), + "depth_m": float(depth_m) if depth_m is not None else None, + "approach_speed_mps": float(approach_speed), + } + + def _run(self): + interval = max(0.01, 1.0 / max(1.0, self.poll_hz)) + tracker = CentroidTracker() + + while not self._stop.is_set(): + t0 = time.time() + now = time.time() + self._refresh_detector_backend(now) + frame, depth_payload = self._extract_frame_and_depth() + if frame is None: + self._no_frame_count += 1 + if self._no_frame_count >= self._recover_after_no_frame: + self._recover_inputs() + intent = self._check_interaction_intent([], None, None, now) + with self._latest_lock: + self._latest.update( + { + "frame_time": now, + "detector_backend": self._effective_backend(), + "yolo_runtime": self._yolo_runtime, + "face_count": 0, + "person_count": 0, + "group_count": 0, + "group_size": 0, + "group_detected": False, + "boxes": [], + "face_boxes": [], + "group_boxes": [], + "frame": None, + "subject_id": self._locked_subject_id, + "subject_box": None, + "subject_visible": False, + "subject_locked": self._locked_subject_id is not None, + "target_lock_active": bool(self._locked_subject_id is not None or self._locked_group_id is not None), + "target_lock_type": str(self._locked_target_type or ""), + "target_lock_id": self._locked_group_id if self._locked_group_id is not None else self._locked_subject_id, + "target_switch_blocked_count": int(self._target_switch_blocked_count), + "camera_ok": bool(self._camera_ok), + "depth_ok": bool(self._depth_ok), + "camera_restarts": int(self._camera_restarts), + "depth_restarts": int(self._depth_restarts), + **intent, + } + ) + time.sleep(interval) + continue + + self._no_frame_count = 0 + try: + person_boxes = self._detect_person_boxes(frame, tracker) + face_boxes = self._detect_face_boxes(frame) + groups = self._detect_groups(person_boxes) + group_size = max((int(g.get("size", 0)) for g in groups), default=0) + + subject_box, subject_visible = self._select_subject(person_boxes, groups=groups) + depth_m = self._estimate_depth_m(subject_box=subject_box, depth_payload=depth_payload) + intent = self._check_interaction_intent(person_boxes, subject_box, depth_m, now) + + with self._latest_lock: + self._latest.update( + { + "frame_time": now, + "detector_backend": self._effective_backend(), + "yolo_runtime": self._yolo_runtime, + "face_count": len(face_boxes), + "person_count": len(person_boxes), + "group_count": len(groups), + "group_size": int(group_size), + "group_detected": bool(group_size >= self._group_min_people), + "boxes": person_boxes, + "face_boxes": face_boxes, + "group_boxes": groups, + "frame": frame.copy() if frame is not None else None, + "subject_id": subject_box.get("id") if subject_box else self._locked_subject_id, + "subject_box": dict(subject_box) if isinstance(subject_box, dict) else None, + "subject_visible": bool(subject_visible), + "subject_locked": self._locked_subject_id is not None, + "target_lock_active": bool(self._locked_subject_id is not None or self._locked_group_id is not None), + "target_lock_type": str(self._locked_target_type or ""), + "target_lock_id": self._locked_group_id if self._locked_group_id is not None else self._locked_subject_id, + "target_switch_blocked_count": int(self._target_switch_blocked_count), + "camera_ok": bool(self._camera_ok), + "depth_ok": bool(self._depth_ok), + "camera_restarts": int(self._camera_restarts), + "depth_restarts": int(self._depth_restarts), + **intent, + } + ) + except Exception as e: + record_error("vision_detector", "run_loop_detect", e) + logger.warning(f"VisionDetector: detect failed: {e}") + intent = self._check_interaction_intent([], None, None, now) + with self._latest_lock: + self._latest.update( + { + "frame_time": now, + "detector_backend": self._effective_backend(), + "yolo_runtime": self._yolo_runtime, + "face_count": 0, + "person_count": 0, + "group_count": 0, + "group_size": 0, + "group_detected": False, + "boxes": [], + "face_boxes": [], + "group_boxes": [], + "frame": frame.copy() if frame is not None else None, + "subject_id": self._locked_subject_id, + "subject_box": None, + "subject_visible": False, + "subject_locked": self._locked_subject_id is not None, + "target_lock_active": bool(self._locked_subject_id is not None or self._locked_group_id is not None), + "target_lock_type": str(self._locked_target_type or ""), + "target_lock_id": self._locked_group_id if self._locked_group_id is not None else self._locked_subject_id, + "target_switch_blocked_count": int(self._target_switch_blocked_count), + "camera_ok": bool(self._camera_ok), + "depth_ok": bool(self._depth_ok), + "camera_restarts": int(self._camera_restarts), + "depth_restarts": int(self._depth_restarts), + **intent, + } + ) + + dt = time.time() - t0 + time.sleep(max(0.0, interval - dt)) + + +class CentroidTracker: + """Small centroid tracker assigning incremental IDs to objects.""" + + def __init__(self, max_disappeared: int = 10, max_distance: int = 80): + self.next_id = 1 + self.objects = {} # id -> centroid + self.disappeared = {} # id -> frames disappeared + self.max_disappeared = max_disappeared + self.max_distance = max_distance + + def _centroid(self, box): + x, y, w, h = box + return (int(x + w / 2), int(y + h / 2)) + + def register(self, box): + cid = self.next_id + self.next_id += 1 + cent = self._centroid(box) + self.objects[cid] = cent + self.disappeared[cid] = 0 + return cid + + def deregister(self, cid): + del self.objects[cid] + del self.disappeared[cid] + + def update(self, boxes): + """boxes: list of (x, y, w, h), returns list of (id, box).""" + if len(boxes) == 0: + remove = [] + for cid in list(self.disappeared.keys()): + self.disappeared[cid] += 1 + if self.disappeared[cid] > self.max_disappeared: + remove.append(cid) + for cid in remove: + self.deregister(cid) + return [] + + input_centroids = [self._centroid(b) for b in boxes] + + if len(self.objects) == 0: + assigned = [] + for b in boxes: + cid = self.register(b) + assigned.append((cid, b)) + return assigned + + object_ids = list(self.objects.keys()) + object_centroids = list(self.objects.values()) + + D = np.linalg.norm(np.array(object_centroids)[:, None, :] - np.array(input_centroids)[None, :, :], axis=2) + rows = D.min(axis=1).argsort() + cols = D.argmin(axis=1)[rows] + + used_rows = set() + used_cols = set() + assigned = [] + + for r, c in zip(rows, cols): + if r in used_rows or c in used_cols: + continue + if D[r, c] > self.max_distance: + continue + cid = object_ids[r] + self.objects[cid] = input_centroids[c] + self.disappeared[cid] = 0 + assigned.append((cid, boxes[c])) + used_rows.add(r) + used_cols.add(c) + + for i, b in enumerate(boxes): + if i in used_cols: + continue + cid = self.register(b) + assigned.append((cid, b)) + + for i, cid in enumerate(object_ids): + if i in used_rows: + continue + self.disappeared[cid] += 1 + if self.disappeared[cid] > self.max_disappeared: + self.deregister(cid) + + return assigned + + +if __name__ == "__main__": + logging.basicConfig(level=logging.INFO) + v = VisionDetector() + v.start() + try: + for _ in range(30): + s = v.latest() + logger.info( + "people=%s faces=%s groups=%s intent=%s time=%s", + s.get("person_count", 0), + s.get("face_count", 0), + s.get("group_count", 0), + s.get("intent_detected", False), + s.get("frame_time", 0.0), + ) + time.sleep(0.5) + finally: + v.stop() diff --git a/Modes/Manual/__init__.py b/Modes/Manual/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/Modes/Manual/controller.py b/Modes/Manual/controller.py new file mode 100644 index 0000000..0b99240 --- /dev/null +++ b/Modes/Manual/controller.py @@ -0,0 +1,96 @@ +# controller.py +import time +import struct +from pathlib import Path + +from unitree_sdk2py.idl.unitree_hg.msg.dds_ import LowState_ + + +def auto_pick_iface() -> str: + try: + net_dir = Path("/sys/class/net") + if not net_dir.exists(): + return "lo" + names = [p.name for p in net_dir.iterdir() if p.is_dir()] + for pref in ("en", "eth", "wl"): + for n in names: + if n != "lo" and n.startswith(pref): + return n + for n in names: + if n != "lo": + return n + return "lo" + except Exception: + return "lo" + + +class unitreeRemoteController: + def __init__(self): + self.Lx = 0; self.Rx = 0; self.Ry = 0; self.Ly = 0 + self.L1 = 0; self.L2 = 0; self.R1 = 0; self.R2 = 0 + self.A = 0; self.B = 0; self.X = 0; self.Y = 0 + self.Up = 0; self.Down = 0; self.Left = 0; self.Right = 0 + self.Select = 0; self.F1 = 0; self.F3 = 0; self.Start = 0 + + def parse_botton(self, data1, data2): + self.R1 = (data1 >> 0) & 1; self.L1 = (data1 >> 1) & 1 + self.Start = (data1 >> 2) & 1; self.Select = (data1 >> 3) & 1 + self.R2 = (data1 >> 4) & 1; self.L2 = (data1 >> 5) & 1 + self.F1 = (data1 >> 6) & 1; self.F3 = (data1 >> 7) & 1 + self.A = (data2 >> 0) & 1; self.B = (data2 >> 1) & 1 + self.X = (data2 >> 2) & 1; self.Y = (data2 >> 3) & 1 + self.Up = (data2 >> 4) & 1; self.Right = (data2 >> 5) & 1 + self.Down = (data2 >> 6) & 1; self.Left = (data2 >> 7) & 1 + + def parse_key(self, data): + offsets = [4, 8, 12, 20] # Lx, Rx, Ry, Ly + self.Lx, self.Rx, self.Ry, self.Ly = [struct.unpack(' bool: + return (time.time() - self.last_state_time) < self.watchdog_timeout + + def combo_r2x(self) -> bool: + s = self.controller_state + return bool(s.get("R2", 0) and s.get("X", 0)) + + def combo_r2l1(self) -> bool: + s = self.controller_state + return bool(s.get("R2", 0) and s.get("L1", 0)) + + def hard_cancel_combo(self) -> bool: + """ + Global safety cancel combo. + Keep this as the single mapping point so all runtimes (manual/AI) + can share the same hard-cancel behavior. + """ + return self.combo_r2l1() diff --git a/Modes/Manual/replay_engine.py b/Modes/Manual/replay_engine.py new file mode 100644 index 0000000..c3570c5 --- /dev/null +++ b/Modes/Manual/replay_engine.py @@ -0,0 +1,243 @@ +# replay_engine.py +import json +import time +from pathlib import Path + +from unitree_sdk2py.core.channel import ChannelPublisher +from unitree_sdk2py.idl.default import unitree_hg_msg_dds__LowCmd_ +from unitree_sdk2py.idl.unitree_hg.msg.dds_ import LowCmd_ +from unitree_sdk2py.utils.crc import CRC +from Core.Logger import Logs + +G1_NUM_MOTOR = 29 +ENABLE_ARM_SDK_INDEX = 29 +REPLAY_HZ = 60.0 + +KP_HIGH = 300.0 +KD_HIGH = 3.0 +KP_LOW = 80.0 +KD_LOW = 3.0 +KP_WRIST = 40.0 +KD_WRIST = 1.5 + +WEAK_MOTORS = [4, 10, 15, 16, 17, 18, 22, 23, 24, 25] +WRIST_MOTORS = [19, 20, 21, 26, 27, 28] + +sanad_logger = Logs() +sanad_logger.LogEngine("G1_Logs", "replay_engine") + +def load_home_pose(home_path: Path): + try: + last_valid_q = None + with open(home_path, "r") as f: + for line in f: + d = json.loads(line) + if "q" in d and len(d["q"]) == G1_NUM_MOTOR: + last_valid_q = d["q"] + if last_valid_q: + sanad_logger.print_and_log(f"โœ… Loaded Home Pose from {home_path}", "info") + return last_valid_q + sanad_logger.print_and_log(f"โš ๏ธ Home file has no valid q: {home_path}", "warning") + except FileNotFoundError: + sanad_logger.print_and_log(f"โš ๏ธ Home file not found: {home_path}", "warning") + + sanad_logger.print_and_log("โš ๏ธ Using Default Home (Arms at 0.0)", "warning") + return [0.0] * G1_NUM_MOTOR + + +class ReplayWithHome: + def __init__(self, hub, watchdog_disable_after=1.0): + self.hub = hub + + self.low_cmd = unitree_hg_msg_dds__LowCmd_() + self.crc = CRC() + + self.arm_pub = ChannelPublisher("rt/arm_sdk", LowCmd_) + self.arm_pub.Init() + + self.watchdog_disable_after = float(watchdog_disable_after) + self.is_playing = False + + def _cancel(self) -> bool: + if hasattr(self.hub, "hard_cancel_combo"): + return bool(self.hub.hard_cancel_combo()) + return bool(self.hub.combo_r2l1()) + + def _send_frame(self, arm_target_q, body_lock_q): + self.low_cmd.motor_cmd[ENABLE_ARM_SDK_INDEX].q = 1.0 + + for i in range(G1_NUM_MOTOR): + self.low_cmd.motor_cmd[i].mode = 1 + self.low_cmd.motor_cmd[i].dq = 0 + self.low_cmd.motor_cmd[i].tau = 0 + + self.low_cmd.motor_cmd[i].q = arm_target_q[i] if i >= 15 else body_lock_q[i] + + if i in WEAK_MOTORS: + self.low_cmd.motor_cmd[i].kp = KP_LOW + self.low_cmd.motor_cmd[i].kd = KD_LOW + elif i in WRIST_MOTORS: + self.low_cmd.motor_cmd[i].kp = KP_WRIST + self.low_cmd.motor_cmd[i].kd = KD_WRIST + else: + self.low_cmd.motor_cmd[i].kp = KP_HIGH + self.low_cmd.motor_cmd[i].kd = KD_HIGH + + self.low_cmd.crc = self.crc.Crc(self.low_cmd) + self.arm_pub.Write(self.low_cmd) + + def _disable_sdk(self): + sanad_logger.print_and_log("๐Ÿ”Œ Disabling SDK...", "info") + self.low_cmd.motor_cmd[ENABLE_ARM_SDK_INDEX].q = 0.0 + self.low_cmd.crc = self.crc.Crc(self.low_cmd) + for _ in range(10): + self.arm_pub.Write(self.low_cmd) + time.sleep(0.02) + + def _return_home(self, last_q, body_lock_q, home_q, steps=180): + sanad_logger.print_and_log("๐Ÿก Returning arms to HOME...", "info") + for k in range(steps): + stale_for = time.time() - self.hub.last_state_time + if stale_for > self.watchdog_disable_after: + sanad_logger.print_and_log("๐Ÿ›‘ WATCHDOG: lost during home. Disable SDK.", "error") + self._disable_sdk() + return + + if not self.hub.fresh(): + self._send_frame(last_q, body_lock_q) + time.sleep(1.0 / REPLAY_HZ) + continue + + alpha = k / steps + interp_q = list(last_q) + for j in range(15, 29): + interp_q[j] = (1 - alpha) * last_q[j] + alpha * home_q[j] + self._send_frame(interp_q, body_lock_q) + time.sleep(1.0 / REPLAY_HZ) + + sanad_logger.print_and_log("โœ… Home Reached.", "info") + + def run(self, replay_file: Path, home_file: Path, speed: float, trigger_callback=None): + self.is_playing = True + cancel = False + + try: + sanad_logger.print_and_log(f"๐ŸŽฌ Replay: {replay_file}", "info") + while not self.hub.first_state: + time.sleep(0.05) + + home_q = load_home_pose(home_file) + body_lock_q = [self.hub.low_state.motor_state[i].q for i in range(G1_NUM_MOTOR)] + + frames = [] + with open(replay_file, "r") as f: + for line in f: + line = line.strip() + if not line: + continue + try: + d = json.loads(line) + except Exception: + continue + if "q" in d and "t" in d: + frames.append(d) + + if not frames: + sanad_logger.print_and_log("โŒ No frames found.", "error") + return + + file_start_q = frames[0]["q"] + last_played_q = file_start_q + + # Move to start + for k in range(60): + if self._cancel(): + cancel = True + sanad_logger.print_and_log("๐Ÿ›‘ CANCEL during move-to-start.", "warning") + break + + if not self.hub.fresh(): + self._send_frame(last_played_q, body_lock_q) + time.sleep(1.0 / REPLAY_HZ) + continue + + alpha = k / 60 + interp_q = list(body_lock_q) + for j in range(15, 29): + interp_q[j] = (1 - alpha) * body_lock_q[j] + alpha * file_start_q[j] + self._send_frame(interp_q, body_lock_q) + last_played_q = interp_q + time.sleep(1.0 / REPLAY_HZ) + + # Play + if not cancel: + sanad_logger.print_and_log("โ–ถ๏ธ Playing...", "info") + play_elapsed = 0.0 + last_real = time.time() + + while True: + if self._cancel(): + cancel = True + sanad_logger.print_and_log("๐Ÿ›‘ CANCEL during replay.", "warning") + break + + stale_for = time.time() - self.hub.last_state_time + if stale_for > self.watchdog_disable_after: + sanad_logger.print_and_log("๐Ÿ›‘ WATCHDOG: lost. Disable SDK.", "error") + self._disable_sdk() + return + + if not self.hub.fresh(): + self._send_frame(last_played_q, body_lock_q) + time.sleep(1.0 / REPLAY_HZ) + continue + + now = time.time() + dt = now - last_real + last_real = now + play_elapsed += dt * speed + + target = None + for fr in frames: + if fr["t"] - frames[0]["t"] >= play_elapsed: + target = fr + break + if target is None: + break + + # If this frame contains a trigger marker, call the callback (non-blocking) + try: + meta = target.get("meta") if isinstance(target, dict) else None + if trigger_callback and meta: + # support meta: "trigger" or meta: {"trigger": true} + call_cb = False + if isinstance(meta, str) and "trigger" in meta.lower(): + call_cb = True + elif isinstance(meta, dict) and meta.get("trigger"): + call_cb = True + if call_cb: + try: + from threading import Thread as _Thread + _Thread(target=lambda: trigger_callback(target), daemon=True).start() + sanad_logger.print_and_log("๐Ÿ”” Trigger callback invoked (replay).", "info") + except Exception as _e: + sanad_logger.print_and_log(f"Trigger callback error: {_e}", "warning") + except Exception: + pass + + self._send_frame(target["q"], body_lock_q) + last_played_q = target["q"] + time.sleep(1.0 / REPLAY_HZ) + + # Always home + self._return_home(last_played_q, body_lock_q, home_q, steps=180) + self._disable_sdk() + + except Exception as e: + sanad_logger.print_and_log(f"โŒ Replay exception: {e}", "error") + try: + self._disable_sdk() + except Exception: + pass + finally: + self.is_playing = False diff --git a/Modes/Manual/trigger_loop.py b/Modes/Manual/trigger_loop.py new file mode 100644 index 0000000..3e87f00 --- /dev/null +++ b/Modes/Manual/trigger_loop.py @@ -0,0 +1,183 @@ +# trigger_loop.py +import asyncio +import threading +import time +from pathlib import Path + +from Core import settings as config +from Core.Logger import Logs +from Server.capture_service import capture_with_replay_sync, replay_timing_profile + + +sanad_logger = Logs() +sanad_logger.LogEngine("G1_Logs", "trigger_loop") + +async def _play_prompt(voice, prompt_key: str, fallback_text: str) -> bool: + try: + return bool(await voice.play_prompt_key(prompt_key, fallback_text)) + except Exception as e: + sanad_logger.print_and_log(f"โš ๏ธ Prompt playback failed for {prompt_key}: {e}", message_type="warning") + return False + + +async def _play_capture_prompt(voice, prompt_key: str, fallback_text: str) -> bool: + try: + return bool( + await voice.play_prompt_key( + prompt_key, + fallback_text="", + allow_gemini_fallback=False, + mode_override="audio", + ) + ) + except Exception as e: + sanad_logger.print_and_log(f"โš ๏ธ Capture prompt playback failed for {prompt_key}: {e}", message_type="warning") + return False + + +async def _play_manual_capture_prompt_sequence( + voice, + shot_delay_sec: float, + cancel_event: threading.Event, +): + start_ts = time.time() + await _play_capture_prompt( + voice, + "countdown_intro", + "Look at the camera, stay ready, hold your pose with me, keep still, keep your smile soft, and in a moment I will count down for the photo.", + ) + announced = set() + + while True: + if cancel_event.is_set(): + raise asyncio.CancelledError + + remaining = max(0.0, shot_delay_sec - (time.time() - start_ts)) + sec_left = int(round(remaining)) + + if sec_left in (3, 2, 1) and sec_left not in announced: + announced.add(sec_left) + await _play_capture_prompt(voice, f"count_{sec_left}", f"{sec_left}...") + elif sec_left <= 0 and 0 not in announced: + announced.add(0) + await _play_capture_prompt(voice, "smile", "Smile.") + return + + await asyncio.sleep(0.05) + + +async def trigger_loop( + hub, + replay, + voice, + take_photo_sync_callable=None, + ws=None, +): + """ + R2+X: + - play the fixed capture prompt sequence (recorded audio by default) + - run unified capture pipeline (replay + timed capture/upload) + R2+L1: + - cancels pending delayed photo (replay cancel handled in replay engine) + Debounce: + - must release R2+X to re-trigger + - blocks retrigger for PHOTO_TOTAL_SEC window + """ + r2x_prev = False + waiting_release = False + photo_busy_until = 0.0 + + pending_photo_task: asyncio.Task | None = None + pending_audio_task: asyncio.Task | None = None + pending_capture_cancel: threading.Event | None = None + + def _hard_cancel_pressed() -> bool: + if hasattr(hub, "hard_cancel_combo"): + return bool(hub.hard_cancel_combo()) + return bool(hub.combo_r2l1()) + + async def delayed_photo(delay_sec: float, cancel_event: threading.Event): + # Unified pipeline: replay + trigger/fallback capture + upload touch. + base_prefix = None # keep existing default naming behavior + photo_result = await asyncio.to_thread( + capture_with_replay_sync, + replay_runner=replay, + replay_file=config.REPLAY_FILE, + home_file=config.HOME_FILE, + delay_sec=delay_sec, + prefix=base_prefix, + speed=1.0, + cancel_event=cancel_event, + ) + sanad_logger.print_and_log(f"๐Ÿ“ธ Capture pipeline result: {photo_result}", message_type="info") + if cancel_event.is_set(): + return + if isinstance(photo_result, str) and not photo_result.startswith("[ERR]"): + await _play_capture_prompt( + voice, + "photo_saved_thanks", + "Thank you. Photo saved. Do not forget to check your photos.", + ) + + while True: + await asyncio.sleep(0.02) + if not hub.first_state: + continue + + # Cancel combo: cancel pending photo + if _hard_cancel_pressed(): + if pending_capture_cancel is not None: + pending_capture_cancel.set() + if pending_photo_task and not pending_photo_task.done(): + pending_photo_task.cancel() + if pending_audio_task and not pending_audio_task.done(): + pending_audio_task.cancel() + sanad_logger.print_and_log("๐Ÿ›‘ HARD CANCEL: pending photo cancelled (R2+L1).", message_type="warning") + + r2x_now = hub.combo_r2x() + + # Require release before next trigger + if waiting_release: + if not r2x_now: + waiting_release = False + r2x_prev = r2x_now + continue + + # Do not retrigger while replay is playing + if replay.is_playing: + r2x_prev = r2x_now + continue + + now = time.time() + + # Rising edge trigger + not inside busy window + if r2x_now and (not r2x_prev) and (now >= photo_busy_until): + waiting_release = True + + # 1) schedule manual countdown speech using the same prompt keys as AI mode + if pending_photo_task and not pending_photo_task.done(): + if pending_capture_cancel is not None: + pending_capture_cancel.set() + pending_photo_task.cancel() + if pending_audio_task and not pending_audio_task.done(): + pending_audio_task.cancel() + + timing = replay_timing_profile(config.REPLAY_FILE) + delay = float(timing.get("capture_offset_sec") or max(0.0, min(config.PHOTO_DELAY_SEC, config.PHOTO_TOTAL_SEC))) + replay_duration = float(timing.get("duration_sec") or 0.0) + photo_busy_until = now + max(config.PHOTO_TOTAL_SEC, replay_duration + 3.2, delay + config.PHOTO_THANKS_SEC) + sanad_logger.print_and_log( + "๐ŸŽฏ Manual capture timing: " + f"replay={Path(config.REPLAY_FILE).name} " + f"duration={replay_duration:.3f}s " + f"shot_at={delay:.3f}s " + f"source={timing.get('capture_source', 'config_fallback')}", + message_type="info", + ) + pending_capture_cancel = threading.Event() + pending_audio_task = asyncio.create_task( + _play_manual_capture_prompt_sequence(voice, delay, pending_capture_cancel) + ) + pending_photo_task = asyncio.create_task(delayed_photo(delay, pending_capture_cancel)) + + r2x_prev = r2x_now diff --git a/Modes/__init__.py b/Modes/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/README.md b/README.md new file mode 100644 index 0000000..c840f6d --- /dev/null +++ b/README.md @@ -0,0 +1,268 @@ +# AI Photographer + +Production-oriented robot photographer stack for Unitree G1. + +## Quick Start + +1. Set API key in config: + - edit `Data/Settings/config.json` -> `gemini.api_key` +2. Run launcher: + - `cd Scripts && ./photo_sanad.sh` + +Launcher behavior: +- resets `mode.current_mode` to the configured `mode.default_mode` on each launch, +- resolves the active PulseAudio speaker/microphone and exports them for the runtime, +- starts the direct camera service (`Core/direct_camera_service.py` in the `teleimager` conda env) for the full runtime path, +- starts Gemini runtime (`gemini` conda env), +- runs `Gemini/voice_sanad.py` as the main process, +- keeps `manual` as the default startup mode unless changed in `Data/Settings/config.json`, +- keeps `Gemini/voice_sanad.py`, the dashboard server, the direct camera server, and replay/trigger services running in the full runtime path across mode switches, +- arms autonomous services in the full runtime path so switching dashboard mode from `manual` to `ai` works without a restart. + +Optional startup profile: +- `MANUAL_LEAN_RUNTIME=1` + - manual-mode voice + dashboard only + - skips direct camera, DDS, replay, uploader, and autonomous startup + - capture/replay services are unavailable in that profile + - this is an explicit reduced profile, not the normal production mode + +## Project Layout + +- `Scripts/` + - startup and ops shell entrypoints + - `photo_sanad.sh`, `fix_realsense_usb.sh` + - `direct_camera_samples_server.py` remains as a compatibility wrapper + - `fix_realsense_usb.sh` supports `--check`, `--fix`, and `--serials` +- `Data/` + - categorized runtime assets and state + - `Settings/config.json` + - `Scripts/photo_command_ai.txt`, `Scripts/sanad_script.txt` + - `Runtime/upload_db.json`, generated runtime JSON state files + - `Settings/config.json -> camera.preferred_realsense_serial` selects the preferred default RealSense by serial + - generated runtime JSON files are created on demand during execution +- `Data/Audio/` + - fixed prerecorded AI situation prompts (`*.wav`) + - matching raw Gemini captures (`*_raw.wav`) +- `Data/Settings/audio_prompt_records.json` + - prompt recording metadata for files in `Data/Audio/` +- `photos/people/` + - AI face-recognition registry + - each returning guest gets a folder with face/scene references, metadata, and captured-photo links +- `photos/Captures/` + - final saved runtime captures from dashboard, manual trigger, and AI capture flow +- `photos/samples/` + - standalone direct-camera sample captures +- `Logs/` + - one stable log file per runtime component + - examples: `voice_sanad.log`, `gemini_voice.log`, `photo_server.log`, `direct_camera.log` +- `Web/` + - operator dashboard frontend (`gallery.html`, `gallery.js`, `style.css`) + - direct camera service frontend (`direct_camera.html`, `direct_camera.js`, `direct_camera.css`) +- `Data/G1/` + - replay/gesture motion files (`*.jsonl`) + - dashboard-recorded replay captures are saved directly here +- `Core/` + - shared runtime foundations (`settings.py`, `Logger.py`, `error_events.py`, `direct_camera_service.py`) + - `direct_camera_service.py` handles camera backend/API and serves its UI from `Web/` +- `Gemini/` + - voice orchestration (`voice_sanad.py`, `gemini_voice.py`, `sanad_text_utils.py`) +- `Server/` + - dashboard/API/capture/upload (`photo_server.py`, `capture_service.py`, `direct_camera_client.py`, `uploader.py`) +- `Modes/AI/` + - autonomous vision/intent/session manager (`autonomous_manager.py`, `vision_detector.py`, `camera_module.py`) +- `Modes/Manual/` + - controller + replay + trigger loop (`controller.py`, `replay_engine.py`, `trigger_loop.py`) + +## Runtime Modes + +Mode is persisted in `Data/Settings/config.json` under `mode.current_mode`: +- `manual` + - Gemini conversation stays available when `gemini.mic_enabled=true` + - voice `request_photo / yes_photo / no_photo` disabled + - `R2+X` replay/capture path stays available in the full runtime path + - `Gemini/voice_sanad.py`, dashboard server, direct camera server, and replay services stay running + - autonomous services can be armed in the background, but autonomous flow stays paused until mode becomes `ai` +- `ai` + - voice `request_photo / yes_photo / no_photo` enabled + - `R2+X` replay/capture path still works + - `Gemini/voice_sanad.py`, dashboard server, direct camera server, and replay services continue running without restart + - autonomous flow runs live when `AUTONOMOUS_ENABLE=1` + - on stable visual intent, AI identifies or enrolls a single guest, optionally greets with a short hand replay, asks for photo confirmation, guides guests into frame, then captures using the active replay during the shot when AI capture replay is enabled + - returning guests are recognized from `photos/people/` and can be greeted as returning visitors + +Command-mode functionality was extracted from this project and moved to: +- `G1_Lootah/AI_Command` + +## Remote Controls + +- `R2+X` + - replay + photographer talk + capture pipeline +- `R2+L1` + - global hard cancel safety combo + - active in runtime loops to cancel pending capture/replay and reset active interaction + +Mode APIs: +- `GET /api/mode` +- `GET /api/set_mode?mode=manual|ai` +- `GET /api/mode_policy` +- `GET /api/mic` +- `GET /api/set_mic?enabled=0|1` +- `GET /api/detector_backend` +- `GET /api/set_detector_backend?backend=normal|yolo` +- `GET /api/ai_readiness` +- `GET /api/ai_options` +- `GET /api/set_ai_options?hard_target_lock_enabled=0|1&retake_prompt_enabled=0|1&autonomous_greeting_replay_enabled=0|1&autonomous_greeting_replay_file=...&autonomous_capture_replay_enabled=0|1&face_recognition_enabled=0|1&face_recognition_threshold=...` +- `GET /api/autonomous_state` +- `GET /api/runtime_health` + +## Autonomous Flow + +Autonomous services are armed by environment: +- `AUTONOMOUS_ENABLE=1` + - allows `Modes/AI/autonomous_manager.py` to run inside `voice_sanad.py` + - in `manual` mode it stays paused + - core services still remain up in `manual` (`voice_sanad.py`, dashboard, direct camera server, replay/trigger) + - switching dashboard mode to `ai` starts autonomous flow live without a restart +- `AUTONOMOUS_ENABLE=0` + - disables autonomous manager entirely + - manual trigger loop + voice runtime still work + +Session state machine: +- `IDLE -> WAIT_CONFIRM -> FRAMING -> COUNTDOWN -> RETAKE_CONFIRM (optional) -> COMPLETE -> IDLE` +- strict readiness block state: `IDLE_BLOCKED` when required YOLO readiness is not met + +## Dashboard / API Highlights + +- `GET /` gallery dashboard +- `GET /preview.mjpg` live preview + - preview is off by default and starts only when requested from the dashboard + - preview camera/OpenCV is loaded lazily when preview is requested +- Camera control APIs: + - `GET /api/camera_health` + - `GET /api/camera_sources` + - `GET /api/set_camera_source?source=...` + - `GET /api/set_camera_resolution?width=...&height=...&fps=...` + - `GET /api/set_preferred_camera?serial=...` + - dashboard can switch camera source, show active camera info, change resolution live, and save a preferred RealSense serial into `Data/Settings/config.json` +- Audio prompt APIs: + - `GET /api/audio_prompts` + - `GET /api/set_audio_prompt_mode?mode=audio|gemini` + - `GET /api/set_audio_prompt_fallback?enabled=0|1` + - `GET /api/audio_prompt_record_status` + - `GET /api/download_audio_prompt?key=...` + - `GET /api/delete_audio_prompt?key=...` + - `POST /api/upload_audio_prompt` + - `POST /api/audio_prompt_record` + - dashboard can upload, replace, download, delete, inspect, and record prerecorded AI prompt clips stored in `Data/Audio/` + - dashboard can switch fixed AI situation speech between recorded audio and Gemini without restart +- `GET /api/autonomous_state` runtime autonomous state panel data (lock/retake/health fields) +- `GET /api/runtime_health` component health (WS/mic/speaker/gate/restarts) +- `GET /api/mic` and `GET /api/set_mic` + - microphone ON/OFF toggle for both modes +- `GET /api/ai_readiness` strict AI readiness + block reason +- `GET /api/ai_options` and `GET /api/set_ai_options` for hard lock/retake toggles +- Replay APIs: + - `GET /api/replays` + - `GET /api/get_replay` + - `GET /api/set_replay?name=...` + - `GET /api/delete_replay?name=...` + - `GET /api/rename_replay?old=...&new=...` + - `GET /api/download_replay?name=...` + - `GET /api/replay_record_status` + - `GET /api/replay_record_start?name=...&seconds=...` + - `GET /api/replay_test_status` + - `GET /api/test_replay?name=...` + - `POST /api/upload_replay` + - dashboard can record new replays into `Data/G1`, replay-test them, rename them, download them, delete them, upload new `.jsonl` replays, and set the active replay + - replay recording and replay test are allowed only while runtime mode is `manual` +- People APIs: + - `GET /api/people` + - `GET /api/person_image?id=...&kind=face|scene` + - `GET /api/download_person?id=...` + - `GET /api/delete_person?id=...` + - `GET /api/reset_people` + - `POST /api/upload_person` + - dashboard can upload face photos for future recognition, download a saved guest package, delete one guest, or reset the full registry +- `GET /api/capture` capture via unified pipeline +- `GET /api/photos`, `GET /api/sessions`, `GET /api/delete`, `GET /api/reupload` +- `GET /api/errors` structured error counters + +## Configuration + +Source of truth: +- `Data/Settings/config.json` loaded by `Core/settings.py` + +Environment overrides are supported (timing, ports, upload settings, camera, etc.). + +Direct camera serial selection precedence: +- `REALSENSE_SERIAL` +- `PREFERRED_REALSENSE_SERIAL` +- `Data/Settings/config.json -> camera.preferred_realsense_serial` +- teleimager camera config serial +- any other detected RealSense + +Dashboard camera behavior: +- main production dashboard can switch between available camera sources without restarting the runtime +- camera status panel shows requested source, active source, backend, active profile, preferred serial, and active RealSense serial +- resolution changes are applied live through the direct camera service +- `Save As Default` stores the preferred RealSense serial into `Data/Settings/config.json` + +AI prerecorded prompt behavior: +- `Data/Audio/` stores fixed WAV clips by prompt key +- `Data/Settings/audio_prompt_records.json` stores prompt recording metadata and raw-output file references +- `audio_prompts.files` in `Data/Settings/config.json` maps each key to its filename +- `audio_prompts.mode` controls fixed AI situation speech: + - `audio`: use recorded clips first for AI situation prompts + - `gemini`: use Gemini speech instead for those same fixed prompts +- `audio_prompts.fallback_to_gemini` controls whether missing prompt clips fall back to Gemini text +- dashboard prompt library manages upload/download/delete, text-to-record generation, speech mode, and fallback state +- imported prerecorded prompts currently cover 18 situation keys; missing keys continue through Gemini fallback until recorded + +AI replay behavior: +- `vision.autonomous_greeting_replay_enabled` controls the short greeting gesture when intent stabilizes +- `vision.autonomous_greeting_replay_file` selects the greeting replay file +- `vision.autonomous_capture_replay_enabled` controls whether AI photo capture uses the active replay during the shot +- `replay.active_file` in `Data/Settings/config.json` is the single persisted active-replay setting +- the active replay is shared between manual `R2+X`, dashboard capture choreography, and AI capture when AI capture replay is enabled +- replay inventory is shared across the full `Data/G1` tree + +Face recognition behavior: +- `vision.face_recognition_enabled` enables single-guest recognition/enrollment in AI mode +- `vision.face_recognition_threshold` controls the similarity threshold for matching a returning guest +- new guests are enrolled into `photos/people/` +- successful AI captures are linked back into the guest folder for future reference + +Vision model configuration (`Data/Settings/config.json` -> `vision`): +- `detection_backend`: `normal` or `yolo` (runtime switchable from dashboard in AI mode) +- `yolo_runtime`: `ultralytics` (production) or `opencv` (legacy ONNX parser) +- `yolo_ultralytics_device`: inference device for ultralytics (`cpu`, `0`, `0,1`, ...) +- `person_yolo_onnx`: path to YOLO ONNX person model +- `face_yolo_onnx`: path to YOLO ONNX face model +- `group_min_people`: minimum people count to mark a group +- `group_link_distance_px`: max centroid-link distance for group clustering + +## Documentation + +- `Current_runtime.md`: detailed current runtime behavior and script chain. + +## Data Layout + +- `Data/Settings/` + - `config.json` +- `Data/Scripts/` + - `photo_command_ai.txt` + - `sanad_script.txt` +- `Data/Runtime/` + - runtime health/state/error JSON files +- `Data/Audio/` + - prerecorded AI prompt WAV files + - matching `_raw.wav` Gemini output captures +- `Data/Settings/audio_prompt_records.json` + - prompt recording metadata for files in `Data/Audio/` + +## Notes + +- `config.py` is intentionally removed; runtime config is JSON + env overrides. +- legacy AI mover/autonomous prototype scripts were removed from the production tree. +- Generated artifacts (`__pycache__`, runtime logs) should not be committed. +- Generated runtime files such as `Data/Runtime/runtime_health.json`, `Data/Runtime/autonomous_state.json`, `Data/Runtime/error_counters.json`, `Data/Runtime/error_events.jsonl`, and `Logs/*.log` may be absent in a clean checkout until the runtime starts. diff --git a/Scripts/direct_camera_samples_server.py b/Scripts/direct_camera_samples_server.py new file mode 100644 index 0000000..9f0328a --- /dev/null +++ b/Scripts/direct_camera_samples_server.py @@ -0,0 +1,20 @@ +#!/usr/bin/env python3 +""" +Compatibility wrapper for the direct camera service. + +The main camera service now lives in Core/direct_camera_service.py. +This wrapper is kept so older commands and scripts still work. +""" + +from pathlib import Path +import sys + +PROJECT_ROOT = Path(__file__).resolve().parent.parent +if str(PROJECT_ROOT) not in sys.path: + sys.path.insert(0, str(PROJECT_ROOT)) + +from Core.direct_camera_service import main + + +if __name__ == "__main__": + main() diff --git a/Scripts/fix_realsense_usb.sh b/Scripts/fix_realsense_usb.sh new file mode 100755 index 0000000..496249a --- /dev/null +++ b/Scripts/fix_realsense_usb.sh @@ -0,0 +1,122 @@ +#!/usr/bin/env bash +set -euo pipefail + +need_cmd() { + command -v "$1" >/dev/null 2>&1 || { echo "[ERR] Missing command: $1" >&2; exit 1; } +} + +need_cmd rs-enumerate-devices +need_cmd awk +need_cmd sed +need_cmd grep + +realsense_output() { + rs-enumerate-devices 2>/dev/null || true +} + +is_realsense_present() { + local out + out="$(realsense_output)" + echo "$out" | grep -qi "Intel RealSense" +} + +print_bool() { + if is_realsense_present; then + echo "true" + else + echo "false" + fi +} + +list_serials() { + local out + out="$(realsense_output)" + if ! echo "$out" | grep -qi "Intel RealSense"; then + return 0 + fi + + echo "$out" \ + | awk -F':' '/Serial Number/ {print $2}' \ + | sed 's/^[[:space:]]*//; s/[[:space:]]*$//' \ + | grep -v '^$' \ + | awk '!seen[$0]++' +} + +# Apply USB power settings to the RealSense sysfs path + its parent hub +apply_fix() { + local RS_OUT SERIAL PHY USB_NODE PARENT_HUB DEV_SYS HUB_SYS + + RS_OUT="$(realsense_output)" + if ! echo "$RS_OUT" | grep -qi "Intel RealSense"; then + # No device: just print false + echo "false" + return 0 + fi + + SERIAL="$(echo "$RS_OUT" | awk -F':' '/Serial Number/ {gsub(/[ \t]/,"",$2); print $2; exit}')" + PHY="$(echo "$RS_OUT" | awk -F':' '/Physical Port/ {print $2; exit}' | sed 's/^[ \t]*//')" + + # Extract USB node like "2-2.3" from Physical Port + USB_NODE="$(echo "$PHY" | grep -oE '/usb[0-9]+/[^ ]+' | sed -E 's#.*/usb[0-9]+/##' | cut -d'/' -f2 | head -n1 || true)" + if [[ -z "${USB_NODE:-}" ]]; then + USB_NODE="$(echo "$PHY" | grep -oE 'usb[0-9]+/[0-9]+-[0-9]+(\.[0-9]+)?' | sed 's#usb[0-9]+/##' | head -n1 || true)" + fi + + if [[ -z "${USB_NODE:-}" ]]; then + # Can't map sysfs; still detected though + echo "true" + return 0 + fi + + PARENT_HUB="${USB_NODE%%.*}" + DEV_SYS="/sys/bus/usb/devices/${USB_NODE}" + HUB_SYS="/sys/bus/usb/devices/${PARENT_HUB}" + + # Disable autosuspend globally (optional) + echo -1 | sudo tee /sys/module/usbcore/parameters/autosuspend >/dev/null || true + + apply_power_fix() { + local path="$1" + [[ -d "$path" ]] || return 0 + [[ -e "$path/power/control" ]] && echo on | sudo tee "$path/power/control" >/dev/null || true + [[ -e "$path/power/autosuspend" ]] && echo -1 | sudo tee "$path/power/autosuspend" >/dev/null || true + [[ -e "$path/power/autosuspend_delay_ms" ]] && echo 0 | sudo tee "$path/power/autosuspend_delay_ms" >/dev/null || true + } + + apply_power_fix "$HUB_SYS" + apply_power_fix "$DEV_SYS" + + # Final verification + print_bool +} + +usage() { + cat <<'EOF' +Usage: + bash fix_realsense_usb.sh --check # prints true/false only + bash fix_realsense_usb.sh --fix # applies fix then prints true/false + bash fix_realsense_usb.sh --serials # prints available RealSense serials, one per line +Default: --fix +EOF +} + +mode="${1:---fix}" + +case "$mode" in + --check) + print_bool + ;; + --fix) + apply_fix + ;; + --serials|--list-serials) + list_serials + ;; + -h|--help) + usage + ;; + *) + usage >&2 + exit 1 + ;; +esac diff --git a/Scripts/photo_sanad.sh b/Scripts/photo_sanad.sh new file mode 100755 index 0000000..dc3782f --- /dev/null +++ b/Scripts/photo_sanad.sh @@ -0,0 +1,568 @@ +#!/usr/bin/env bash +set -euo pipefail + +# ============================================================ +# photo_sanad.sh +# ------------------------------------------------------------ +# ONE command to run everything: +# ./photo_sanad.sh +# +# What it does: +# 1) Activates the camera env (py3.10) and starts the Core direct camera service in background +# 2) Activates gemini (py3.11) and runs Gemini/voice_sanad.py in foreground +# 3) Sets PulseAudio default sink/source (optional) +# 4) Sets PYTHONPATH for unitree_sdk2_python (so unitree_sdk2py imports work) +# 5) On exit, stops the direct camera server +# ============================================================ + +SCRIPT_DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)" +DEFAULT_BASE_DIR="$(cd -- "$SCRIPT_DIR/.." && pwd)" +BASE_DIR="${BASE_DIR:-$DEFAULT_BASE_DIR}" +PY_FILE="$BASE_DIR/Gemini/voice_sanad.py" +RUN_USER="${SUDO_USER:-${USER:-$(id -un)}}" +RUN_USER_HOME="$(getent passwd "$RUN_USER" 2>/dev/null | cut -d: -f6 || true)" +if [[ -z "${RUN_USER_HOME:-}" ]]; then + RUN_USER_HOME="$HOME" +fi +RUN_USER_ID="$(id -u "$RUN_USER" 2>/dev/null || true)" +export HOME="$RUN_USER_HOME" +if [[ -n "${RUN_USER_ID:-}" ]] && [[ -d "/run/user/$RUN_USER_ID" ]]; then + export XDG_RUNTIME_DIR="/run/user/$RUN_USER_ID" + if [[ -S "$XDG_RUNTIME_DIR/pulse/native" ]]; then + export PULSE_SERVER="unix:$XDG_RUNTIME_DIR/pulse/native" + fi +fi + +# conda +CONDA_SH="${CONDA_SH:-$RUN_USER_HOME/miniconda3/etc/profile.d/conda.sh}" +ENV_TELE="teleimager" # Python 3.10 camera env (pyrealsense2) +ENV_GEM="gemini" # Python 3.11 +SDK_PY_PATH="${SDK_PY_PATH:-$RUN_USER_HOME/unitree_sdk2_python}" +DIRECT_CAMERA_PORT="${DIRECT_CAMERA_PORT:-8091}" +DIRECT_CAMERA_HOST="${DIRECT_CAMERA_HOST:-127.0.0.1}" +DIRECT_CAMERA_SOURCE="${DIRECT_CAMERA_SOURCE:-realsense}" +DIRECT_CAMERA_SCRIPT="${DIRECT_CAMERA_SCRIPT:-$BASE_DIR/Core/direct_camera_service.py}" +LEGACY_DIRECT_CAMERA_SCRIPT="$BASE_DIR/Scripts/direct_camera_samples_server.py" + +# Optional: choose your camera (if needed) +# export CAMERA_DEVICE=/dev/video2 +# export PHOTO_PREFIX=photo +export CAMERA_DEVICE="${CAMERA_DEVICE:-/dev/video0}" +export PHOTO_PREFIX="${PHOTO_PREFIX:-photo}" + +# RealSense fix/sudo behavior +SUDO_ENABLE_FIX="${SUDO_ENABLE_FIX:-1}" # 1=cache sudo so /api/fix can run +SUDO_PROMPT_ON_START="${SUDO_PROMPT_ON_START:-0}" # 1=allow interactive sudo prompt at startup +AUTO_FIX_ON_START="${AUTO_FIX_ON_START:-0}" # 1=run fix script once on startup +SUDO_KEEPALIVE_INTERVAL="${SUDO_KEEPALIVE_INTERVAL:-60}" +FIX_SCRIPT="${FIX_SCRIPT:-$BASE_DIR/Scripts/fix_realsense_usb.sh}" +SUDO_KEEPALIVE_PID="" +LOG_DIR="${LOG_DIR:-$BASE_DIR/Logs}" +PHOTO_SERVER_PORT="${PHOTO_SERVER_PORT:-8080}" +PRE_KILL_OLD="${PRE_KILL_OLD:-1}" # 1=stop stale sanad/camera services from previous runs +FREE_PORT_BEFORE_START="${FREE_PORT_BEFORE_START:-1}" # 1=kill listeners on PHOTO_SERVER_PORT +ALLOW_EXISTING_PORT_SERVER="${ALLOW_EXISTING_PORT_SERVER:-0}" # 1=allow attaching to an already-running gallery server + +# PulseAudio device names (change if needed) +SINK="${SINK:-alsa_output.usb-Anker_PowerConf_A3321-DEV-SN1-01.analog-stereo}" +SOURCE="${SOURCE:-alsa_input.usb-Anker_PowerConf_A3321-DEV-SN1-01.mono-fallback}" + +# ALSA plugin fix (helps conda envs stop spamming ALSA errors) +if [[ -d "/usr/lib/aarch64-linux-gnu/alsa-lib" ]]; then + export ALSA_PLUGIN_DIR="/usr/lib/aarch64-linux-gnu/alsa-lib" +elif [[ -d "/usr/lib/alsa-lib" ]]; then + export ALSA_PLUGIN_DIR="/usr/lib/alsa-lib" +fi +if [[ -f "/usr/share/alsa/alsa.conf" ]]; then + export ALSA_CONFIG_PATH="/usr/share/alsa/alsa.conf" +fi +export ALSA_LOG_LEVEL=0 + +echo "๐Ÿ“ Base dir: $BASE_DIR" +echo "๐Ÿ‘ค Runtime user: $RUN_USER" +echo "๐Ÿ  Runtime home: $RUN_USER_HOME" +cd "$BASE_DIR" + +# ---------- logging dir ---------- +if ! mkdir -p "$LOG_DIR" >/dev/null 2>&1; then + LOG_DIR="$HOME/.ai_photographer_logs" + mkdir -p "$LOG_DIR" +fi +if ! touch "$LOG_DIR/.write_test" >/dev/null 2>&1; then + LOG_DIR="$HOME/.ai_photographer_logs" + mkdir -p "$LOG_DIR" + touch "$LOG_DIR/.write_test" >/dev/null 2>&1 || true +fi +rm -f "$LOG_DIR/.write_test" >/dev/null 2>&1 || true +export AI_PHOTOGRAPHER_LOG_DIR="$LOG_DIR" + +# ---------- stale-process cleanup ---------- +show_port_owner() { + local port="$1" + if command -v ss >/dev/null 2>&1; then + # shellcheck disable=SC2016 + ss -ltnp 2>/dev/null | awk -v p=":$port" '$4 ~ p {print $0}' || true + fi +} + +start_sudo_keepalive() { + ( + while true; do + sleep "$SUDO_KEEPALIVE_INTERVAL" + sudo -n true >/dev/null 2>&1 || exit 0 + done + ) & + SUDO_KEEPALIVE_PID=$! + echo "โœ… sudo cached (keepalive PID=$SUDO_KEEPALIVE_PID)" +} + +setup_sudo_cache() { + if [[ "$SUDO_ENABLE_FIX" != "1" ]]; then + return 0 + fi + + if ! command -v sudo >/dev/null 2>&1; then + echo "โš ๏ธ sudo not found; /api/fix cannot run privileged fixes." + return 0 + fi + + if sudo -n true >/dev/null 2>&1; then + echo "๐Ÿ” sudo credentials already cached." + start_sudo_keepalive + return 0 + fi + + if [[ "$SUDO_PROMPT_ON_START" == "1" && -t 0 ]]; then + echo "๐Ÿ” Preparing sudo for RealSense fix endpoint..." + if sudo -v; then + start_sudo_keepalive + else + echo "โš ๏ธ sudo auth failed; /api/fix may require manual terminal command." + fi + else + echo "โš ๏ธ sudo not cached. Use SUDO_PROMPT_ON_START=1 to allow startup prompt." + fi +} + +get_port_pids() { + local port="$1" + { + if command -v lsof >/dev/null 2>&1; then + lsof -t -iTCP:"$port" -sTCP:LISTEN -Pn 2>/dev/null || true + fi + if command -v ss >/dev/null 2>&1; then + ss -ltnp 2>/dev/null \ + | awk -v p=":$port" '$4 ~ p {print $0}' \ + | sed -n 's/.*pid=\([0-9][0-9]*\).*/\1/p' || true + fi + if command -v fuser >/dev/null 2>&1; then + fuser -n tcp "$port" 2>/dev/null | tr ' ' '\n' || true + fi + } | sed '/^[[:space:]]*$/d' | sort -u +} + +get_pid_cmdline() { + local pid="$1" + ps -o args= -p "$pid" 2>/dev/null || true +} + +kill_one_pid() { + local pid="$1" + local signal="${2:-TERM}" + local pgid="" + [[ -z "${pid:-}" ]] && return 0 + + if ! kill "-$signal" "$pid" >/dev/null 2>&1; then + sudo -n kill "-$signal" "$pid" >/dev/null 2>&1 || true + fi + + pgid="$(ps -o pgid= -p "$pid" 2>/dev/null | tr -d ' ' || true)" + if [[ -n "${pgid:-}" ]]; then + if ! kill "-$signal" "--" "-$pgid" >/dev/null 2>&1; then + sudo -n kill "-$signal" "--" "-$pgid" >/dev/null 2>&1 || true + fi + fi +} + +kill_port_owner() { + local port="$1" + local pids pid attempt + pids="$(get_port_pids "$port" || true)" + [[ -z "${pids:-}" ]] && return 0 + + echo "๐Ÿ›‘ Attempting to free port $port (PID(s): $(echo "$pids" | tr '\n' ' '))" + for attempt in 1 2 3; do + while IFS= read -r pid; do + [[ -z "${pid:-}" ]] && continue + if [[ "$attempt" -lt 3 ]]; then + kill_one_pid "$pid" TERM + else + kill_one_pid "$pid" KILL + fi + done <<< "$pids" + sleep 1 + pids="$(get_port_pids "$port" || true)" + [[ -z "${pids:-}" ]] && return 0 + if [[ "$attempt" -eq 2 ]]; then + echo "โš ๏ธ Port $port still busy, sending SIGKILL..." + fi + done +} + +report_port_owners() { + local port="$1" + local pids pid cmd + pids="$(get_port_pids "$port" || true)" + [[ -z "${pids:-}" ]] && return 0 + while IFS= read -r pid; do + [[ -z "${pid:-}" ]] && continue + cmd="$(get_pid_cmdline "$pid")" + echo " - PID $pid: ${cmd:-}" + done <<< "$pids" +} + +stop_stale_processes() { + echo "๐Ÿงฝ Checking stale processes..." + local stopped=0 + + # Previous Sanad app instances from same project copy + if pgrep -f "$BASE_DIR/Gemini/voice_sanad.py" >/dev/null 2>&1; then + echo "๐Ÿ›‘ Stopping previous voice_sanad.py processes..." + pkill -f "$BASE_DIR/Gemini/voice_sanad.py" >/dev/null 2>&1 || sudo -n pkill -f "$BASE_DIR/Gemini/voice_sanad.py" >/dev/null 2>&1 || true + stopped=1 + fi + # Legacy pre-restructure path support + if pgrep -f "$BASE_DIR/voice_sanad.py" >/dev/null 2>&1; then + echo "๐Ÿ›‘ Stopping previous legacy voice_sanad.py processes..." + pkill -f "$BASE_DIR/voice_sanad.py" >/dev/null 2>&1 || sudo -n pkill -f "$BASE_DIR/voice_sanad.py" >/dev/null 2>&1 || true + stopped=1 + fi + +# Previous direct camera servers + if pgrep -f "$DIRECT_CAMERA_SCRIPT" >/dev/null 2>&1; then + echo "๐Ÿ›‘ Stopping previous direct camera service processes..." + pkill -f "$DIRECT_CAMERA_SCRIPT" >/dev/null 2>&1 || sudo -n pkill -f "$DIRECT_CAMERA_SCRIPT" >/dev/null 2>&1 || true + stopped=1 + fi + if [[ "$DIRECT_CAMERA_SCRIPT" != "$LEGACY_DIRECT_CAMERA_SCRIPT" ]] && pgrep -f "$LEGACY_DIRECT_CAMERA_SCRIPT" >/dev/null 2>&1; then + echo "๐Ÿ›‘ Stopping previous legacy direct_camera_samples_server.py processes..." + pkill -f "$LEGACY_DIRECT_CAMERA_SCRIPT" >/dev/null 2>&1 || sudo -n pkill -f "$LEGACY_DIRECT_CAMERA_SCRIPT" >/dev/null 2>&1 || true + stopped=1 + fi + + # Give OS a moment to release sockets/resources. + if [[ "$stopped" -eq 1 ]]; then + sleep 1 + fi +} + +# Try to cache sudo early so stale cleanup can stop root-owned leftovers. +setup_sudo_cache + +if [[ "$PRE_KILL_OLD" == "1" ]]; then + stop_stale_processes +fi + +PORT_OWNER="$(show_port_owner "$PHOTO_SERVER_PORT" || true)" +if [[ -n "${PORT_OWNER:-}" ]]; then + echo "โš ๏ธ Port $PHOTO_SERVER_PORT currently in use:" + echo "$PORT_OWNER" +fi + +# ---------- conda init ---------- +if [[ ! -f "$CONDA_SH" ]]; then + echo "โŒ conda.sh not found: $CONDA_SH" + exit 1 +fi +# shellcheck disable=SC1090 +source "$CONDA_SH" + +# ---------- time sync wait ---------- +echo "โฐ Checking system time..." +while [ "$(date +%Y)" -lt 2025 ]; do + echo "โณ Waiting for time sync... $(date)" + sleep 2 +done +echo "โœ… Time synced: $(date)" + +# ---------- PulseAudio defaults (optional) ---------- +pick_pactl_device() { + local kind="$1" + local requested="$2" + local current="" + local names="" + local chosen="" + + if [[ "$kind" == "sink" ]]; then + current="$(pactl info 2>/dev/null | sed -n 's/^Default Sink: //p' | head -n1)" + names="$(pactl list short sinks 2>/dev/null | awk '{print $2}')" + else + current="$(pactl info 2>/dev/null | sed -n 's/^Default Source: //p' | head -n1)" + names="$(pactl list short sources 2>/dev/null | awk '{print $2}')" + fi + + if [[ -n "${requested:-}" ]] && echo "$names" | grep -Fxq "$requested"; then + chosen="$requested" + elif [[ -n "${current:-}" ]] && echo "$names" | grep -Fxq "$current"; then + chosen="$current" + else + chosen="$(echo "$names" | grep -Ei 'anker|powerconf|usb' | head -n1 || true)" + if [[ -z "${chosen:-}" ]]; then + chosen="$(echo "$names" | head -n1 || true)" + fi + fi + + printf '%s' "$chosen" +} + +if command -v pactl >/dev/null 2>&1; then + echo "๐Ÿ”Š Checking audio server..." + READY=0 + for _ in {1..20}; do + if timeout 0.3s pactl info >/dev/null 2>&1; then + READY=1 + break + fi + sleep 0.3 + done + + if [[ "$READY" -eq 1 ]]; then + RESOLVED_SINK="$(pick_pactl_device sink "$SINK")" + RESOLVED_SOURCE="$(pick_pactl_device source "$SOURCE")" + + if [[ -n "${RESOLVED_SINK:-}" ]]; then + if [[ "$RESOLVED_SINK" != "$SINK" ]]; then + echo "โš ๏ธ Requested speaker not found. Using โ†’ $RESOLVED_SINK" + else + echo "๐ŸŽง Setting default speaker โ†’ $RESOLVED_SINK" + fi + pactl set-default-sink "$RESOLVED_SINK" || true + else + echo "โš ๏ธ No PulseAudio sink found. Continuing without speaker selection." + fi + + if [[ -n "${RESOLVED_SOURCE:-}" ]]; then + if [[ "$RESOLVED_SOURCE" != "$SOURCE" ]]; then + echo "โš ๏ธ Requested microphone not found. Using โ†’ $RESOLVED_SOURCE" + else + echo "๐ŸŽค Setting default microphone โ†’ $RESOLVED_SOURCE" + fi + pactl set-default-source "$RESOLVED_SOURCE" || true + else + echo "โš ๏ธ No PulseAudio source found. Continuing without microphone selection." + fi + + ACTIVE_SINK="$(pactl info 2>/dev/null | sed -n 's/^Default Sink: //p' | head -n1 || true)" + ACTIVE_SOURCE="$(pactl info 2>/dev/null | sed -n 's/^Default Source: //p' | head -n1 || true)" + [[ -n "${ACTIVE_SINK:-}" ]] && echo "๐Ÿ”ˆ Active speaker default: $ACTIVE_SINK" + [[ -n "${ACTIVE_SOURCE:-}" ]] && echo "๐ŸŽ™๏ธ Active microphone default: $ACTIVE_SOURCE" + else + echo "โš ๏ธ PulseAudio/PipeWire not ready. Continuing anyway." + fi +else + echo "โš ๏ธ pactl not found. Skipping audio defaults." +fi + +# ---------- paths check ---------- +if [[ ! -f "$PY_FILE" ]]; then + echo "โŒ voice_sanad.py not found: $PY_FILE" + exit 1 +fi + +# ---------- startup mode / runtime profile ---------- +# Primary config lives in Data/Settings/config.json. Keep legacy Data/config.json +# and Scripts/config.json fallbacks so older robot copies can still boot during migrations. +MODE_FROM_CFG="$(python - <<'PY' +import json +from pathlib import Path +p = Path("Data/Settings/config.json") +legacy_candidates = [Path("Data/config.json"), Path("Scripts/config.json")] +if not p.exists(): + for legacy in legacy_candidates: + if legacy.exists(): + p = legacy + break +mode = "manual" +try: + if p.exists(): + d = json.loads(p.read_text(encoding="utf-8")) + mode_block = d.get("mode") or {} + mode = str(mode_block.get("default_mode", mode_block.get("current_mode", "manual"))).strip().lower() +except Exception: + mode = "manual" +if mode == "command": + mode = "ai" +try: + if p.exists(): + d = json.loads(p.read_text(encoding="utf-8")) + mode_block = d.get("mode") or {} + mode_block["current_mode"] = mode + d["mode"] = mode_block + p.write_text(json.dumps(d, indent=2), encoding="utf-8") +except Exception: + pass +print(mode if mode in ("manual", "ai") else "manual") +PY +)" +echo "โœ… Runtime mode reset to default: $MODE_FROM_CFG" + +PHOTO_OUTPUT_DIR="$(python - <<'PY' +import json +from pathlib import Path +base = Path(".").resolve() +p = Path("Data/Settings/config.json") +legacy_candidates = [Path("Data/config.json"), Path("Scripts/config.json")] +if not p.exists(): + for legacy in legacy_candidates: + if legacy.exists(): + p = legacy + break +value = "AI_Photographer/photos/Captures" +try: + if p.exists(): + d = json.loads(p.read_text(encoding="utf-8")) + paths = d.get("paths") or {} + value = str(paths.get("photos_dir", value) or value).strip() +except Exception: + pass +target = Path(value).expanduser() +if not target.is_absolute(): + parts = target.parts + if parts and parts[0] == base.name: + target = (base.parent / target).resolve() + else: + target = (base / target).resolve() +print(target) +PY +)" +echo "๐Ÿ—‚๏ธ Capture output dir: $PHOTO_OUTPUT_DIR" + +if [[ -z "${MANUAL_LEAN_RUNTIME:-}" ]]; then + if [[ "$MODE_FROM_CFG" == "manual" ]]; then + export MANUAL_LEAN_RUNTIME=0 + else + export MANUAL_LEAN_RUNTIME=0 + fi +fi +if [[ "$MODE_FROM_CFG" == "manual" && "${MANUAL_LEAN_RUNTIME}" == "1" ]]; then + echo "๐Ÿชถ Manual lean runtime enabled: direct camera/DDS/replay startup will be skipped." +fi + +# ---------- start direct camera server (py3.10) ---------- +TELE_PID="" +TELE_LOG="$LOG_DIR/direct_camera.log" +if [[ "$MODE_FROM_CFG" == "manual" && "${MANUAL_LEAN_RUNTIME}" == "1" ]]; then + echo "๐Ÿ“ท Skipping direct camera startup for lean manual runtime." +else + kill_port_owner "$DIRECT_CAMERA_PORT" + echo "๐Ÿ Activating camera env: $ENV_TELE" + conda activate "$ENV_TELE" + + echo "๐Ÿ camera env python: $(which python)" + python -c "import sys; print('โœ… camera env sys.executable:', sys.executable); print('โœ… camera env sys.version:', sys.version.split()[0])" + + echo "๐Ÿ“ท Starting direct camera server in background..." + python "$DIRECT_CAMERA_SCRIPT" \ + --camera "$DIRECT_CAMERA_SOURCE" \ + --host "$DIRECT_CAMERA_HOST" \ + --port "$DIRECT_CAMERA_PORT" \ + --samples-dir "$PHOTO_OUTPUT_DIR" \ + --capture-prefix "$PHOTO_PREFIX" \ + --capture-ext jpg >"$TELE_LOG" 2>&1 & + TELE_PID=$! + echo "โœ… direct camera PID=$TELE_PID log=$TELE_LOG" +fi + +cleanup() { + echo "" + echo "๐Ÿงน Cleaning up..." + if [[ -n "${SUDO_KEEPALIVE_PID:-}" ]] && kill -0 "$SUDO_KEEPALIVE_PID" >/dev/null 2>&1; then + echo "๐Ÿ›‘ Stopping sudo keepalive PID=$SUDO_KEEPALIVE_PID" + kill "$SUDO_KEEPALIVE_PID" >/dev/null 2>&1 || true + wait "$SUDO_KEEPALIVE_PID" >/dev/null 2>&1 || true + fi + if [[ -n "${TELE_PID:-}" ]] && kill -0 "$TELE_PID" >/dev/null 2>&1; then + echo "๐Ÿ›‘ Stopping direct camera server PID=$TELE_PID" + kill "$TELE_PID" >/dev/null 2>&1 || true + wait "$TELE_PID" >/dev/null 2>&1 || true + fi + echo "โœ… Done." +} +trap cleanup EXIT INT TERM + +# Give server time to start +if [[ -n "${TELE_PID:-}" ]]; then + sleep 2 +fi + +# ---------- run sanad (py3.11) ---------- +echo "๐Ÿ Activating gemini env: $ENV_GEM" +conda activate "$ENV_GEM" + +echo "๐Ÿ gemini python: $(which python)" +python -c "import sys; print('โœ… gemini sys.executable:', sys.executable); print('โœ… gemini sys.version:', sys.version.split()[0])" + +# ---------- autonomous enable policy ---------- +# If AUTONOMOUS_ENABLE is not explicitly provided, derive from startup default mode: +# - full runtime -> arm autonomous services so AI mode can start live without restart +# - lean manual runtime -> keep disabled +if [[ -z "${AUTONOMOUS_ENABLE:-}" ]]; then + if [[ "$MODE_FROM_CFG" == "manual" && "${MANUAL_LEAN_RUNTIME}" == "1" ]]; then + export AUTONOMOUS_ENABLE=0 + else + export AUTONOMOUS_ENABLE=1 + fi + echo "๐Ÿค– AUTONOMOUS_ENABLE auto-set to $AUTONOMOUS_ENABLE (mode=$MODE_FROM_CFG, lean_manual=${MANUAL_LEAN_RUNTIME})" +else + echo "๐Ÿค– AUTONOMOUS_ENABLE preset to $AUTONOMOUS_ENABLE" +fi + +# Ensure unitree_sdk2py can import using the local project modules. +export PYTHONPATH="$SDK_PY_PATH:${BASE_DIR}:${PYTHONPATH:-}" +echo "๐Ÿ”ง Using local AI_Photographer modules" +export DIRECT_CAMERA_ENABLED="${DIRECT_CAMERA_ENABLED:-1}" +export DIRECT_CAMERA_SERVER_URL="${DIRECT_CAMERA_SERVER_URL:-http://$DIRECT_CAMERA_HOST:$DIRECT_CAMERA_PORT}" + +echo "๐Ÿ”ง PYTHONPATH=$PYTHONPATH" +echo "๐Ÿ“ท DIRECT_CAMERA_SERVER_URL=$DIRECT_CAMERA_SERVER_URL" +echo "๐Ÿ”ง ALSA_PLUGIN_DIR=${ALSA_PLUGIN_DIR:-"(not set)"}" +echo "๐Ÿ”ง ALSA_CONFIG_PATH=${ALSA_CONFIG_PATH:-"(not set)"}" +echo "๐ŸŽฅ CAMERA_DEVICE=$CAMERA_DEVICE" +echo "๐Ÿ–ผ๏ธ PHOTO_PREFIX=$PHOTO_PREFIX" +echo "๐Ÿ”ง FIX_SCRIPT=$FIX_SCRIPT" +echo "๐Ÿชต LOG_DIR=$LOG_DIR" + +# sudo cache is handled earlier by setup_sudo_cache. + +if [[ "$AUTO_FIX_ON_START" == "1" ]]; then + if [[ -f "$FIX_SCRIPT" ]]; then + echo "๐Ÿ› ๏ธ Running RealSense fix on startup..." + if sudo bash "$FIX_SCRIPT" --fix; then + echo "โœ… RealSense fix completed." + else + echo "โš ๏ธ RealSense fix failed; continuing startup." + fi + else + echo "โš ๏ธ AUTO_FIX_ON_START=1 but fix script not found: $FIX_SCRIPT" + fi +fi + +# Final port cleanup right before launching main app (after sudo caching) +if [[ "$FREE_PORT_BEFORE_START" == "1" ]]; then + kill_port_owner "$PHOTO_SERVER_PORT" +fi +PORT_OWNER="$(show_port_owner "$PHOTO_SERVER_PORT" || true)" +if [[ -n "${PORT_OWNER:-}" ]]; then + echo "โš ๏ธ Port $PHOTO_SERVER_PORT remains in use:" + echo "$PORT_OWNER" + report_port_owners "$PHOTO_SERVER_PORT" + if [[ "$ALLOW_EXISTING_PORT_SERVER" != "1" ]]; then + echo "โŒ Refusing to continue while a stale server still owns port $PHOTO_SERVER_PORT." + echo " Set ALLOW_EXISTING_PORT_SERVER=1 only if you intentionally want to attach to the existing server." + exit 1 + fi +fi + +echo "๐Ÿš€ Starting Sanad AI_Photographer..." +# Run in foreground (so trap cleanup runs when process exits) +python "$PY_FILE" diff --git a/Server/__init__.py b/Server/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/Server/capture_service.py b/Server/capture_service.py new file mode 100644 index 0000000..671e854 --- /dev/null +++ b/Server/capture_service.py @@ -0,0 +1,396 @@ +# capture_service.py +import os +import subprocess +import threading +import time +from pathlib import Path + +from Core.error_events import record_error +from Core import settings as config +from Server import direct_camera_client + +SERVER_DIR = Path(__file__).resolve().parent +PROJECT_ROOT = SERVER_DIR.parent + +FIX_SCRIPT = str((PROJECT_ROOT / "Scripts" / "fix_realsense_usb.sh").resolve()) +UPLOAD_NOW_FLAG = (PROJECT_ROOT / "Scripts" / "upload_now.flag").resolve() + + +def _touch_upload_now_flag(): + try: + UPLOAD_NOW_FLAG.parent.mkdir(parents=True, exist_ok=True) + UPLOAD_NOW_FLAG.write_text(str(time.time()), encoding="utf-8") + except Exception as e: + record_error("capture_service", "touch_upload_now_flag", e) + + +def _next_photo_name(out_dir: Path, prefix: str, ext: str) -> Path: + base = out_dir / f"{prefix}.{ext}" + if not base.exists(): + return base + i = 1 + while True: + p = out_dir / f"{prefix}({i}).{ext}" + if not p.exists(): + return p + i += 1 + + +def take_photo_sync(prefix: str | None = None) -> str: + """ + Captures one photo and returns the saved path or a compact error. + Production runtime uses the direct camera service only. + """ + retry_count = max(0, int(config.read_watchdog_camera_capture_retry_count())) + retry_delay = max(0.0, float(config.read_watchdog_camera_capture_retry_delay_sec())) + total_attempts = max(1, retry_count + 1) + last_err = "[ERR] take_photo unknown error" + + for attempt in range(1, total_attempts + 1): + try: + env = os.environ.copy() + env.setdefault("PHOTOS_DIR", str(Path(config.PHOTOS_DIR).resolve())) + if prefix: + env["PHOTO_PREFIX"] = prefix + else: + env.setdefault("PHOTO_PREFIX", "photo") + if not direct_camera_client.is_enabled(): + last_err = "[ERR] direct camera service is disabled" + record_error( + "capture_service", + "take_photo_sync_attempt_failed", + context={"attempt": attempt, "total_attempts": total_attempts, "reason": "direct_camera_disabled"}, + ) + continue + + saved = direct_camera_client.capture( + prefix=env.get("PHOTO_PREFIX", "photo"), + ext=env.get("PHOTO_EXT", "jpg").strip().lstrip(".") or "jpg", + timeout=10.0, + ) + _touch_upload_now_flag() + return saved + except Exception as e: + last_err = f"[ERR] take_photo exception: {e}" + record_error( + "capture_service", + "take_photo_sync_exception", + e, + {"attempt": attempt, "total_attempts": total_attempts}, + ) + + if attempt < total_attempts and retry_delay > 0.0: + time.sleep(retry_delay) + + return last_err + + +def take_photo_test_sync() -> str: + """ + Takes a photo and deletes it immediately. Good as a camera health test. + Returns "OK" or an error string. + """ + result = take_photo_sync() + if result.startswith("/"): + try: + p = Path(result) + if p.exists(): + p.unlink() + return "OK" + except Exception as e: + return f"[WARN] captured but delete failed: {e}" + return result + + +def run_fix_realsense_sync() -> str: + """ + Runs fix_realsense_usb.sh. NOTE: script uses sudo tee -> needs passwordless sudo to fully work. + """ + try: + if not Path(FIX_SCRIPT).exists(): + return f"[ERR] fix script not found: {FIX_SCRIPT}" + + p = subprocess.run( + ["bash", FIX_SCRIPT], + capture_output=True, + text=True, + timeout=20, + ) + out = (p.stdout or "").strip() + err = (p.stderr or "").strip() + if p.returncode == 0: + return out or "OK" + return f"[ERR] fix script rc={p.returncode}\n{out}\n{err}".strip() + except Exception as e: + record_error("capture_service", "run_fix_realsense_sync_exception", e) + return f"[ERR] fix exception: {e}" + + +def replay_file_integrity(path: Path) -> dict: + """ + Checks: + - file exists + - has at least one frame with 'q' + - has at least one trigger marker (meta contains trigger) + """ + p = Path(path).resolve() + out = { + "ok": False, # usable replay (has frames) + "trigger_ok": False, # has explicit trigger markers + "path": str(p), + "exists": False, + "frames": 0, + "triggers": 0, + "error": "", + } + if not p.exists() or not p.is_file(): + out["error"] = "missing replay file" + return out + out["exists"] = True + + import json + + try: + with p.open("r", encoding="utf-8") as f: + for line in f: + line = line.strip() + if not line: + continue + try: + d = json.loads(line) + except Exception: + continue + if isinstance(d, dict) and isinstance(d.get("q"), list): + out["frames"] += 1 + meta = d.get("meta") + trig = False + if isinstance(meta, str) and ("trigger" in meta.lower()): + trig = True + elif isinstance(meta, dict) and bool(meta.get("trigger")): + trig = True + if trig: + out["triggers"] += 1 + out["ok"] = out["frames"] > 0 + out["trigger_ok"] = out["triggers"] > 0 + if out["frames"] <= 0: + out["error"] = "replay has no valid frames" + elif out["triggers"] <= 0: + out["warning"] = "replay has no trigger markers; timed fallback capture will be used" + return out + except Exception as e: + out["error"] = str(e) + record_error("capture_service", "replay_file_integrity", e, {"path": str(p)}) + return out + + +def replay_timing_profile(path: Path, end_margin_sec: float | None = None) -> dict: + """ + Returns replay timing information used to align countdown audio and fallback capture. + + If the replay contains explicit trigger markers, the first trigger offset is treated as the + desired shot time. Otherwise the shot is scheduled slightly before the replay ends so capture + happens before the arm starts returning home. + """ + p = Path(path).resolve() + margin = max(0.0, float(end_margin_sec if end_margin_sec is not None else config.REPLAY_CAPTURE_END_MARGIN_SEC)) + out = { + "ok": False, + "path": str(p), + "exists": False, + "frames": 0, + "timed_frames": 0, + "duration_sec": 0.0, + "trigger_offsets_sec": [], + "trigger_count": 0, + "capture_offset_sec": max(0.0, min(config.PHOTO_DELAY_SEC, config.PHOTO_TOTAL_SEC)), + "capture_source": "config_fallback", + "end_margin_sec": margin, + "error": "", + } + if not p.exists() or not p.is_file(): + out["error"] = "missing replay file" + return out + out["exists"] = True + + import json + + timed_offsets: list[float] = [] + trigger_offsets: list[float] = [] + first_t: float | None = None + + try: + with p.open("r", encoding="utf-8") as f: + for line in f: + line = line.strip() + if not line: + continue + try: + d = json.loads(line) + except Exception: + continue + if not (isinstance(d, dict) and isinstance(d.get("q"), list)): + continue + + out["frames"] += 1 + try: + t_val = float(d.get("t")) + except Exception: + continue + + if first_t is None: + first_t = t_val + rel_t = max(0.0, t_val - first_t) + timed_offsets.append(rel_t) + out["timed_frames"] += 1 + + meta = d.get("meta") + if isinstance(meta, str) and ("trigger" in meta.lower()): + trigger_offsets.append(rel_t) + elif isinstance(meta, dict) and bool(meta.get("trigger")): + trigger_offsets.append(rel_t) + + out["ok"] = out["frames"] > 0 + if not out["ok"]: + out["error"] = "replay has no valid frames" + return out + + if timed_offsets: + duration_sec = max(0.0, timed_offsets[-1]) + out["duration_sec"] = duration_sec + out["trigger_offsets_sec"] = [round(x, 3) for x in trigger_offsets] + out["trigger_count"] = len(trigger_offsets) + + if trigger_offsets: + out["capture_offset_sec"] = max(0.0, min(duration_sec, trigger_offsets[0])) + out["capture_source"] = "trigger" + elif duration_sec > 0.0: + out["capture_offset_sec"] = max(0.0, duration_sec - margin) + out["capture_source"] = "timed_end" + else: + out["capture_source"] = "config_fallback" + else: + out["error"] = "replay has no timestamped frames; config fallback timing will be used" + + return out + except Exception as e: + out["error"] = str(e) + record_error("capture_service", "replay_timing_profile", e, {"path": str(p)}) + return out + + +def ensure_replay_integrity(active_replay: Path, fallback_replay: Path) -> tuple[Path, dict]: + """ + Returns a valid replay path. If active invalid, tries fallback. + """ + active = Path(active_replay).resolve() + fallback = Path(fallback_replay).resolve() + active_report = replay_file_integrity(active) + if active_report.get("ok") and active_report.get("trigger_ok"): + return active, {"selected": str(active), "active": active_report, "fallback_used": False} + + fallback_report = replay_file_integrity(fallback) + if fallback_report.get("ok") and fallback_report.get("trigger_ok"): + return fallback, { + "selected": str(fallback), + "active": active_report, + "fallback": fallback_report, + "fallback_used": True, + "reason": "active replay missing trigger markers", + } + + # Degraded mode: no trigger-marked file found, keep active if it has frames. + if active_report.get("ok"): + return active, { + "selected": str(active), + "active": active_report, + "fallback": fallback_report, + "fallback_used": False, + "degraded_no_trigger": True, + } + + # If both invalid, keep active and report both failures. + return active, { + "selected": str(active), + "active": active_report, + "fallback": fallback_report, + "fallback_used": False, + } + + +def capture_with_replay_sync( + replay_runner, + replay_file: Path, + home_file: Path, + delay_sec: float, + prefix: str | None = None, + speed: float = 1.0, + finalize_timeout_sec: float = 4.0, + cancel_event: threading.Event | None = None, +) -> str: + """ + Unified capture pipeline: + replay + trigger callback capture + fallback timed capture + upload flag. + """ + delay_sec = max(0.0, float(delay_sec)) + done = threading.Event() + lock = threading.Lock() + result = {"value": None} + capture_started = {"value": False} + + def _is_cancelled() -> bool: + return bool(cancel_event is not None and cancel_event.is_set()) + + def _capture_once(reason: str): + if _is_cancelled(): + return + with lock: + if capture_started["value"]: + return + capture_started["value"] = True + try: + result["value"] = take_photo_sync(prefix=prefix) + except Exception as e: + record_error("capture_service", "capture_with_replay_capture_once", e, {"reason": reason}) + result["value"] = f"[ERR] capture failed ({reason}): {e}" + finally: + done.set() + + if replay_runner is not None and bool(getattr(replay_runner, "is_playing", False)): + return "[ERR] replay busy" + if _is_cancelled(): + return "[ERR] capture cancelled" + + try: + if replay_runner is not None: + def _trigger_cb(_frame): + threading.Thread(target=lambda: _capture_once("trigger"), daemon=True).start() + + threading.Thread( + target=lambda: replay_runner.run(replay_file, home_file, speed, trigger_callback=_trigger_cb), + daemon=True, + ).start() + except Exception as e: + record_error("capture_service", "capture_with_replay_start_replay", e) + return f"[ERR] replay start failed: {e}" + + deadline = time.time() + delay_sec + while (not done.is_set()) and (time.time() < deadline): + if _is_cancelled(): + return "[ERR] capture cancelled" + time.sleep(0.02) + + if (not done.is_set()) and (not _is_cancelled()): + _capture_once("fallback") + + finalize_deadline = time.time() + max(0.1, finalize_timeout_sec) + while not done.is_set(): + if _is_cancelled(): + return "[ERR] capture cancelled" + if time.time() >= finalize_deadline: + break + time.sleep(0.02) + if not done.is_set(): + record_error("capture_service", "capture_with_replay_timeout", context={"delay_sec": delay_sec}) + return "[ERR] capture pipeline timeout" + + return str(result["value"] or "[ERR] capture pipeline no result") diff --git a/Server/direct_camera_client.py b/Server/direct_camera_client.py new file mode 100644 index 0000000..49f8ada --- /dev/null +++ b/Server/direct_camera_client.py @@ -0,0 +1,103 @@ +from __future__ import annotations + +import json +import os +import urllib.error +import urllib.parse +import urllib.request +from typing import Any, Optional + +import cv2 +import numpy as np + + +def is_enabled() -> bool: + return os.environ.get("DIRECT_CAMERA_ENABLED", "1").strip().lower() not in ("0", "false", "no", "off") + + +def base_url() -> str: + return ( + os.environ.get("DIRECT_CAMERA_SERVER_URL", "").strip() + or f"http://127.0.0.1:{int(os.environ.get('DIRECT_CAMERA_PORT', '8091'))}" + ).rstrip("/") + + +def _open(path: str, timeout: float = 3.0): + url = base_url() + path + req = urllib.request.Request(url, method="GET") + return urllib.request.urlopen(req, timeout=timeout) + + +def get_json(path: str, timeout: float = 3.0) -> dict[str, Any]: + with _open(path, timeout=timeout) as resp: + raw = resp.read() + data = json.loads(raw.decode("utf-8")) + if isinstance(data, dict): + return data + raise RuntimeError("direct camera server returned non-object JSON") + + +def get_bytes(path: str, timeout: float = 3.0) -> bytes: + with _open(path, timeout=timeout) as resp: + return resp.read() + + +def health(timeout: float = 2.0) -> dict[str, Any]: + return get_json("/api/health", timeout=timeout) + + +def cameras(timeout: float = 2.0) -> dict[str, Any]: + return get_json("/api/cameras", timeout=timeout) + + +def capture(prefix: str = "photo", ext: str = "jpg", timeout: float = 10.0) -> str: + q = urllib.parse.urlencode({"prefix": prefix, "ext": ext}) + data = get_json(f"/api/capture?{q}", timeout=timeout) + if not data.get("ok"): + raise RuntimeError(str(data.get("error") or "capture failed")) + path = str(data.get("path") or "").strip() + if not path: + raise RuntimeError("capture response missing saved path") + return path + + +def set_source(source: str, timeout: float = 8.0) -> dict[str, Any]: + q = urllib.parse.urlencode({"source": source}) + data = get_json(f"/api/set_camera?{q}", timeout=timeout) + if not data.get("ok"): + raise RuntimeError(str(data.get("error") or "camera switch failed")) + return data + + +def set_preferred_camera(serial: str, timeout: float = 8.0) -> dict[str, Any]: + q = urllib.parse.urlencode({"serial": serial}) + data = get_json(f"/api/set_preferred_camera?{q}", timeout=timeout) + if not data.get("ok"): + raise RuntimeError(str(data.get("error") or "preferred camera update failed")) + return data + + +def set_resolution(width: int, height: int, fps: int, timeout: float = 8.0) -> dict[str, Any]: + q = urllib.parse.urlencode({"width": int(width), "height": int(height), "fps": int(fps)}) + data = get_json(f"/api/set_resolution?{q}", timeout=timeout) + if not data.get("ok"): + raise RuntimeError(str(data.get("error") or "resolution change failed")) + return data + + +def frame_jpeg(timeout: float = 2.0) -> bytes: + return get_bytes("/api/frame.jpg", timeout=timeout) + + +def frame_bgr(timeout: float = 2.0) -> Optional[np.ndarray]: + try: + raw = frame_jpeg(timeout=timeout) + except urllib.error.URLError: + return None + except Exception: + return None + arr = np.frombuffer(raw, dtype=np.uint8) + if arr.size <= 0: + return None + frame = cv2.imdecode(arr, cv2.IMREAD_COLOR) + return frame diff --git a/Server/photo_server.py b/Server/photo_server.py new file mode 100644 index 0000000..ab437fe --- /dev/null +++ b/Server/photo_server.py @@ -0,0 +1,2195 @@ +#!/usr/bin/env python3 +""" +photo_server.py +--------------- +HTTP photo gallery server for the configured AI_Photographer photos directory. + +โœ… Features: +- Phone/Laptop gallery UI: GET / +- Serves photos directly (open/download): GET / +- Delete photo: GET /api/delete?name= +- Capture via unified replay pipeline: GET /api/capture +- Camera status: GET /api/status +- Camera test (RealSense enumerate via camera env python): GET /api/test +- Run RealSense USB fix script: GET /api/fix +- CSS/HTML split: + Web/gallery.html + Web/style.css + Served as: + / -> gallery.html template (photo list injected) + /static/style.css -> style.css file + +โš ๏ธ Security note: +- This is an open LAN server (anyone on same WiFi can view/download/delete). + Use only on trusted networks. + +Works well with your structure (no new folders). +""" + +from __future__ import annotations + +import json +import os +import socket +import sys +import threading +import tempfile +import time +import urllib.parse +import subprocess +import cgi +from pathlib import Path +from http.server import SimpleHTTPRequestHandler, ThreadingHTTPServer +from typing import Optional, Callable, Dict, Any, List +from Core import settings as config +from Core import audio_prompts +from Core import audio_prompt_recorder +from Core.error_events import get_error_counters, record_error +from Core import people_registry +from Server.capture_service import replay_file_integrity, take_photo_sync +from Server import direct_camera_client + +try: + from Core.Logger import Logs +except Exception: + Logs = None # type: ignore + + +# ============================================================ +# Defaults / Paths +# ============================================================ +SERVER_DIR = Path(__file__).resolve().parent +PROJECT_ROOT = SERVER_DIR.parent +SCRIPTS_DIR = (PROJECT_ROOT / "Scripts").resolve() +APP_DATA_DIR = Path(getattr(config, "APP_DATA_DIR", PROJECT_ROOT / "Data")).resolve() +DATA_SCRIPTS_DIR = Path(getattr(config, "APP_SCRIPTS_DIR", APP_DATA_DIR / "Scripts")).resolve() +AUTONOMOUS_STATE_FILE = Path(getattr(config, "AUTONOMOUS_STATE_FILE", APP_DATA_DIR / "Runtime" / "autonomous_state.json")).resolve() +RUNTIME_HEALTH_FILE = Path(getattr(config, "RUNTIME_HEALTH_FILE", APP_DATA_DIR / "Runtime" / "runtime_health.json")).resolve() +DEFAULT_PHOTOS_DIR = Path(getattr(config, "PHOTOS_DIR", PROJECT_ROOT / "photos" / "Captures")).resolve() +WEB_DIR = (PROJECT_ROOT / "Web").resolve() + +GALLERY_HTML = WEB_DIR / "gallery.html" +STYLE_CSS = WEB_DIR / "style.css" +GALLERY_JS = WEB_DIR / "gallery.js" + +FIX_SCRIPT_ENV = os.environ.get("FIX_SCRIPT_PATH", "").strip() +_DEFAULT_RUNTIME_HOME = Path(os.environ.get("HOME", "~")).expanduser() +CAMERA_ENV_PY = os.environ.get( + "TELEIMAGER_PY", + str((_DEFAULT_RUNTIME_HOME / "miniconda3" / "envs" / "teleimager" / "bin" / "python").resolve()), +) + +# Preview fallback controls +PREVIEW_USE_OPENCV_FALLBACK = os.environ.get("PREVIEW_USE_OPENCV_FALLBACK", "1").strip().lower() not in ( + "0", "false", "no", "off" +) +PREVIEW_RETRY_SEC = float(os.environ.get("PREVIEW_RETRY_SEC", "2.0")) + +# Shared preview camera state to avoid reopening camera on every frame +_PREVIEW_CAM_LOCK = threading.Lock() +_PREVIEW_CAM: Optional[Any] = None +_PREVIEW_LAST_OPEN_TRY = 0.0 +_CV2_MODULE = None +_CAMERA_CAPTURE_CLS = None + +_RECORDER_LOCK = threading.Lock() +_RECORDER_STATE: Dict[str, Any] = { + "running": False, + "name": "", + "seconds": 0.0, + "output": "", + "returncode": None, + "ok": False, + "error": "", + "started_at": 0.0, + "finished_at": 0.0, + "stdout_tail": [], +} + +_REPLAY_TEST_LOCK = threading.Lock() +_REPLAY_TEST_STATE: Dict[str, Any] = { + "running": False, + "name": "", + "ok": False, + "error": "", + "result": "", + "started_at": 0.0, + "finished_at": 0.0, +} + +_AUDIO_PROMPT_RECORD_LOCK = threading.Lock() +_AUDIO_PROMPT_RECORD_STATE: Dict[str, Any] = { + "running": False, + "key": "", + "filename": "", + "text": "", + "ok": False, + "error": "", + "started_at": 0.0, + "finished_at": 0.0, + "result": {}, +} + + +# ============================================================ +# Logging helpers +# ============================================================ +def _make_logger(log_name: str = "photo_server"): + if Logs is None: + return None + lg = Logs() + try: + lg.LogEngine("G1_Logs", log_name) + except Exception: + pass + return lg + + +def _log(lg, msg: str, level: str = "info"): + # level: info / warning / error + if lg is not None: + try: + lg.print_and_log(msg, message_type=level) + return + except Exception: + pass + print(msg) + + +# ============================================================ +# Utilities +# ============================================================ +def _get_local_ip() -> str: + """ + Best-effort IP that phones can reach (same WiFi). + """ + try: + s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) + s.connect(("8.8.8.8", 80)) + ip = s.getsockname()[0] + s.close() + return ip + except Exception: + return "127.0.0.1" + + +def _safe_name(name: str) -> str: + """ + Prevent path traversal: keep only filename (no dirs). + """ + name = name.strip().replace("\\", "/") + name = name.split("/")[-1] + return name + + +def _fix_script_candidates() -> List[Path]: + cands: List[Path] = [] + if FIX_SCRIPT_ENV: + p = Path(FIX_SCRIPT_ENV).expanduser() + if not p.is_absolute(): + p = (PROJECT_ROOT / p).resolve() + cands.append(p) + cands.append((SCRIPTS_DIR / "fix_realsense_usb.sh").resolve()) + cands.append((PROJECT_ROOT / "fix_realsense_usb.sh").resolve()) + return cands + + +def _resolve_fix_script() -> Optional[Path]: + for p in _fix_script_candidates(): + if p.exists() and p.is_file(): + return p + return None + + +def _get_cv2(): + global _CV2_MODULE + if _CV2_MODULE is None: + import cv2 + + _CV2_MODULE = cv2 + return _CV2_MODULE + + +def _get_camera_capture_cls(): + global _CAMERA_CAPTURE_CLS + if _CAMERA_CAPTURE_CLS is None: + from Modes.AI.camera_module import CameraCapture + + _CAMERA_CAPTURE_CLS = CameraCapture + return _CAMERA_CAPTURE_CLS + + +def _is_photo_file(p: Path) -> bool: + if not p.is_file(): + return False + ext = p.suffix.lower() + return ext in (".jpg", ".jpeg", ".png", ".webp") + + +def _list_photos(folder: Path) -> List[Dict[str, Any]]: + items: List[Dict[str, Any]] = [] + folder.mkdir(parents=True, exist_ok=True) + + for p in sorted(folder.iterdir(), key=lambda x: x.stat().st_mtime, reverse=True): + if not _is_photo_file(p): + continue + st = p.stat() + items.append( + { + "name": p.name, + "size": st.st_size, + "mtime": st.st_mtime, + } + ) + return items + + +def _group_sessions(items: List[Dict[str, Any]], gap_sec: int = 120) -> List[Dict[str, Any]]: + """Group photos into sessions when gaps between photos exceed gap_sec.""" + sessions = [] + cur = None + for it in sorted(items, key=lambda x: x["mtime"]): + t = it["mtime"] + if cur is None: + cur = {"id": len(sessions) + 1, "start": t, "end": t, "photos": [it["name"]]} + continue + if t - cur["end"] > gap_sec: + sessions.append(cur) + cur = {"id": len(sessions) + 1, "start": t, "end": t, "photos": [it["name"]]} + else: + cur["photos"].append(it["name"]) + cur["end"] = t + + if cur is not None: + sessions.append(cur) + return sessions + + +def _read_text_file(path: Path) -> Optional[str]: + try: + return path.read_text(encoding="utf-8") + except Exception: + return None + + +def _read_bytes_file(path: Path) -> Optional[bytes]: + try: + return path.read_bytes() + except Exception: + return None + + +def _read_mode() -> str: + try: + m = str(config.read_runtime_mode()).strip().lower() + except Exception: + m = "manual" + if m == "command": + return "ai" + if m not in ("manual", "ai"): + return "manual" + return m + + +def _read_detector_backend() -> str: + try: + b = str(config.read_vision_detector_backend()).strip().lower() + except Exception: + b = "normal" + if b not in ("yolo", "normal"): + return "normal" + return b + + +def _strict_yolo_required() -> bool: + try: + return bool(config.read_vision_yolo_strict_required()) + except Exception: + return bool(getattr(config, "VISION_YOLO_STRICT_REQUIRED", False)) + + +def _read_ai_readiness() -> Dict[str, Any]: + from Modes.AI.vision_detector import probe_ai_readiness + + backend = _read_detector_backend() + strict_required = _strict_yolo_required() + readiness = probe_ai_readiness(backend=backend, strict_required=strict_required) + state = _read_autonomous_state() + + ai_blocked = bool(state.get("ai_blocked", False)) + ai_block_reason = str(state.get("ai_block_reason", "") or "").strip() + if ai_blocked and ai_block_reason: + readiness["ok"] = False + readiness["block_reason"] = ai_block_reason + + return { + "ok": bool(readiness.get("ok", False)), + "strict_required": bool(strict_required), + "backend": backend, + "yolo_runtime": str(readiness.get("yolo_runtime", "") or ""), + "yolo_loaded": bool(readiness.get("yolo_loaded", False)), + "person_model_ok": bool(readiness.get("person_model_ok", False)), + "face_model_ok": bool(readiness.get("face_model_ok", False)), + "block_reason": str(readiness.get("block_reason", "") or ""), + "person_model_path": str(readiness.get("person_model_path", "") or ""), + "face_model_path": str(readiness.get("face_model_path", "") or ""), + } + + +def _read_runtime_health() -> Dict[str, Any]: + default = { + "ws_connected": False, + "ws_state": "detached", + "ws_restarts": 0, + "ws_last_error": "", + "mic_enabled": True, + "mic_state": "idle", + "mic_restarts": 0, + "mic_last_error": "", + "speaker_state": "idle", + "speaker_restarts": 0, + "speaker_last_error": "", + "audio_gate_open": False, + "time": 0.0, + } + try: + if not RUNTIME_HEALTH_FILE.exists(): + return default + raw = json.loads(RUNTIME_HEALTH_FILE.read_text(encoding="utf-8")) + if not isinstance(raw, dict): + return default + out = dict(default) + out.update(raw) + return out + except Exception: + return default + + +def _read_ai_options() -> Dict[str, Any]: + try: + hard = bool(config.read_vision_hard_target_lock_enabled()) + except Exception: + hard = True + try: + retake = bool(config.read_vision_retake_prompt_enabled()) + except Exception: + retake = True + try: + greeting_replay_enabled = bool(config.read_vision_autonomous_greeting_replay_enabled()) + except Exception: + greeting_replay_enabled = True + try: + greeting_replay_file = str(config.read_vision_autonomous_greeting_replay_file() or "").strip() + except Exception: + greeting_replay_file = "right_hand_up.jsonl" + try: + capture_replay_enabled = bool(config.read_vision_autonomous_capture_replay_enabled()) + except Exception: + capture_replay_enabled = True + try: + face_recognition_enabled = bool(config.read_vision_face_recognition_enabled()) + except Exception: + face_recognition_enabled = True + try: + face_recognition_threshold = float(config.read_vision_face_recognition_threshold()) + except Exception: + face_recognition_threshold = 0.88 + return { + "hard_target_lock_enabled": hard, + "retake_prompt_enabled": retake, + "autonomous_greeting_replay_enabled": greeting_replay_enabled, + "autonomous_greeting_replay_file": greeting_replay_file, + "autonomous_capture_replay_enabled": capture_replay_enabled, + "face_recognition_enabled": face_recognition_enabled, + "face_recognition_threshold": face_recognition_threshold, + "active_replay": _read_active_replay_name(), + } + + +def _read_mic_options() -> Dict[str, Any]: + try: + enabled = bool(config.read_gemini_mic_enabled()) + except Exception: + enabled = True + return {"mic_enabled": enabled} + + +def _safe_relative_name(name: str) -> str: + raw = str(name or "").strip().replace("\\", "/").lstrip("/") + if not raw: + return "" + p = Path(raw) + if p.is_absolute(): + return "" + parts = [part for part in p.parts if part not in ("", ".")] + if any(part == ".." for part in parts): + return "" + return Path(*parts).as_posix() if parts else "" + + +def _normalize_replay_name(name: str, default_parent: str | None = None) -> str: + safe = _safe_relative_name(name) + if not safe: + raise ValueError("invalid replay path") + + p = Path(safe) + if len(p.parts) == 1 and default_parent: + p = Path(default_parent) / p.name + if p.suffix.lower() != ".jsonl": + p = p.with_suffix(".jsonl") + if p.name == config.HOME_FILE.name: + raise ValueError("reserved replay name") + return p.as_posix() + + +def _resolve_replay_path(name: str) -> Path: + candidate = config.resolve_replay_path(_normalize_replay_name(name)) + try: + candidate.relative_to(config.DATA_DIR) + except Exception as e: + raise ValueError("invalid replay path") from e + return candidate + + +def _is_replay_file(path: Path) -> bool: + return path.is_file() and path.suffix.lower() == ".jsonl" and path.name != config.HOME_FILE.name + + +def _read_active_replay_name() -> str: + try: + return config.read_selected_replay_name() + except Exception: + return str(config.REPLAY_FILE.name) + + +def _list_replays() -> List[Dict[str, Any]]: + items: List[Dict[str, Any]] = [] + root = config.DATA_DIR.resolve() + root.mkdir(parents=True, exist_ok=True) + active_name = _read_active_replay_name() + greeting_name = str(config.read_vision_autonomous_greeting_replay_file() or "").strip().replace("\\", "/") + for path in sorted(root.rglob("*.jsonl")): + if not _is_replay_file(path): + continue + try: + rel = str(path.resolve().relative_to(root)).replace("\\", "/") + except Exception: + rel = path.name + st = path.stat() + integrity = replay_file_integrity(path) + items.append( + { + "name": rel, + "label": path.name, + "size": st.st_size, + "mtime": st.st_mtime, + "active": rel == active_name, + "greeting": rel == greeting_name or path.name == greeting_name, + "trigger_ok": bool(integrity.get("trigger_ok", False)), + "ok": bool(integrity.get("ok", False)), + } + ) + return items + + +def _replay_recorder_candidates() -> List[Path]: + candidates = [] + env_path = os.environ.get("REPLAY_RECORDER_SCRIPT", "").strip() + if env_path: + candidates.append(Path(env_path).expanduser()) + cfg_raw = str(getattr(config, "REPLAY_RECORDER_SCRIPT", "") or "").strip() + if cfg_raw: + cfg_path = Path(cfg_raw).expanduser() + candidates.append(cfg_path) + candidates.append((PROJECT_ROOT.parent / "G1_Lootah" / "Manual_Recorder" / "g1_teach_v4_stable.py").resolve()) + candidates.append((PROJECT_ROOT.parents[1] / "G1_Lootah" / "Manual_Recorder" / "g1_teach_v4_stable.py").resolve()) + candidates.append((Path.home() / "G1_Lootah" / "Manual_Recorder" / "g1_teach_v4_stable.py").resolve()) + return [p if p.is_absolute() else p.resolve() for p in candidates] + + +def _resolve_replay_recorder_script() -> Optional[Path]: + for candidate in _replay_recorder_candidates(): + try: + if candidate.exists() and candidate.is_file(): + return candidate + except Exception: + continue + return None + + +def _read_recorder_state() -> Dict[str, Any]: + with _RECORDER_LOCK: + return dict(_RECORDER_STATE) + + +def _set_recorder_state(**kwargs): + with _RECORDER_LOCK: + _RECORDER_STATE.update(kwargs) + + +def _read_replay_test_state() -> Dict[str, Any]: + with _REPLAY_TEST_LOCK: + return dict(_REPLAY_TEST_STATE) + + +def _set_replay_test_state(**kwargs): + with _REPLAY_TEST_LOCK: + _REPLAY_TEST_STATE.update(kwargs) + + +def _read_audio_prompt_record_state() -> Dict[str, Any]: + with _AUDIO_PROMPT_RECORD_LOCK: + return dict(_AUDIO_PROMPT_RECORD_STATE) + + +def _set_audio_prompt_record_state(**kwargs): + with _AUDIO_PROMPT_RECORD_LOCK: + _AUDIO_PROMPT_RECORD_STATE.update(kwargs) + + +def _run_audio_prompt_record(key: str, text: str, filename: str): + try: + result = audio_prompt_recorder.record_prompt_from_text(key, text, filename=filename) + _set_audio_prompt_record_state( + running=False, + ok=True, + error="", + finished_at=time.time(), + result=result, + ) + except Exception as e: + _set_audio_prompt_record_state( + running=False, + ok=False, + error=str(e), + finished_at=time.time(), + result={}, + ) + + +def _run_replay_recorder(name: str, seconds: float): + script = _resolve_replay_recorder_script() + if script is None: + _set_recorder_state( + running=False, + ok=False, + error="recorder script not found", + finished_at=time.time(), + ) + return + try: + from Modes.Manual.controller import auto_pick_iface + + iface = auto_pick_iface() + except Exception as e: + _set_recorder_state( + running=False, + ok=False, + error=f"failed to resolve DDS interface: {e}", + finished_at=time.time(), + ) + return + + output_path = _resolve_replay_path(name) + output_path.parent.mkdir(parents=True, exist_ok=True) + cmd = [ + sys.executable, + str(script), + iface, + "--output", + str(output_path), + "--seconds", + str(seconds), + "--home", + str(config.HOME_FILE), + ] + try: + proc = subprocess.run( + cmd, + input="y\nn\n", + capture_output=True, + text=True, + timeout=max(30.0, seconds + 45.0), + cwd=str(PROJECT_ROOT), + ) + combined = ((proc.stdout or "") + "\n" + (proc.stderr or "")).strip() + tail = [line for line in combined.splitlines() if line.strip()][-25:] + saved_path = "" + for line in tail: + marker = "๐Ÿ’พ Saved " + if marker in line and " to " in line: + saved_path = line.split(" to ", 1)[1].strip() + ok = proc.returncode == 0 and bool(saved_path) + _set_recorder_state( + running=False, + ok=ok, + error="" if ok else (tail[-1] if tail else f"recorder failed rc={proc.returncode}"), + returncode=proc.returncode, + finished_at=time.time(), + output=saved_path, + stdout_tail=tail, + ) + except Exception as e: + _set_recorder_state( + running=False, + ok=False, + error=str(e), + finished_at=time.time(), + stdout_tail=[], + ) + + +def _run_replay_test(name: str, replay_test_func: Callable[[str], str]): + try: + result = replay_test_func(name) + ok = not str(result or "").startswith("[ERR]") + _set_replay_test_state( + running=False, + ok=ok, + error="" if ok else str(result or "").replace("[ERR] ", "").replace("[ERR]", "").strip(), + result=str(result or ""), + finished_at=time.time(), + ) + except Exception as e: + _set_replay_test_state( + running=False, + ok=False, + error=str(e), + result="", + finished_at=time.time(), + ) + + +def _update_replay_references_after_rename(old_rel: str, new_rel: str, new_path: Path): + if _read_active_replay_name() == old_rel: + config.write_selected_replay_name(new_rel) + config.REPLAY_FILE = new_path + greeting_name = str(config.read_vision_autonomous_greeting_replay_file() or "").strip().replace("\\", "/") + if greeting_name == old_rel: + config.write_vision_autonomous_greeting_replay_file(new_rel) + + +def _is_greeting_replay(rel_name: str) -> bool: + greeting_name = str(config.read_vision_autonomous_greeting_replay_file() or "").strip().replace("\\", "/") + return rel_name == greeting_name + + +def _mode_policy(mode: str) -> Dict[str, Any]: + mode = mode if mode in ("manual", "ai") else "manual" + if mode == "manual": + return { + "voice_request_photo": False, + "description": "Manual mode: Gemini mic can stay on, but mapped photo commands and AI detection are disabled.", + } + if mode == "ai": + return { + "voice_request_photo": True, + "description": "AI mode: mapped voice can request photo.", + } + return { + "voice_request_photo": False, + "description": "Unknown mode.", + } + + +def _read_autonomous_state() -> Dict[str, Any]: + default: Dict[str, Any] = { + "state": "IDLE", + "session_id": 0, + "interaction_active": False, + "intent_detected": False, + "detector_backend": "normal", + "ai_blocked": False, + "ai_block_reason": "", + "person_count": 0, + "face_count": 0, + "group_count": 0, + "group_size": 0, + "group_detected": False, + "max_area": 0.0, + "audio_gate_open": False, + "subject_id": None, + "subject_visible": False, + "target_lock_active": False, + "target_lock_type": "", + "target_lock_id": None, + "target_switch_blocked_count": 0, + "depth_m": None, + "approach_speed_mps": 0.0, + "camera_ok": False, + "depth_ok": False, + "camera_restarts": 0, + "depth_restarts": 0, + "ws_connected": False, + "mic_state": "", + "speaker_state": "", + "cooldown_remaining": 0.0, + "confirm_timeout_remaining": 0.0, + "framing_timeout_remaining": 0.0, + "countdown_remaining": 0.0, + "retake_prompt_enabled": False, + "retake_recommended": False, + "retake_reason": "", + "retake_count": 0, + "retake_limit": 0, + "recognized_person_id": "", + "recognized_person_known": False, + "recognized_person_new": False, + "recognized_person_label": "", + "recognized_person_match_score": 0.0, + "recognized_person_created_date": "", + "time": 0.0, + } + try: + if not AUTONOMOUS_STATE_FILE.exists(): + return default + data = json.loads(AUTONOMOUS_STATE_FILE.read_text(encoding="utf-8")) + if not isinstance(data, dict): + return default + merged = dict(default) + merged.update(data) + return merged + except Exception: + return default + + +# ============================================================ +# Capture/Test/Fix implementations +# ============================================================ +def _capture_via_service() -> str: + """ + Capture a photo using the shared capture service. + """ + try: + return take_photo_sync(prefix="photo") + except Exception as e: + return f"[ERR] capture exception: {e}" + + +def _preview_camera_source() -> Optional[str]: + src = os.environ.get("CAMERA_DEVICE", "").strip() + if src: + return src + idx = os.environ.get("CAMERA_INDEX", "").strip() + return idx or None + + +def _get_preview_frame(zmq_host: str = "127.0.0.1", zmq_port: int = 55555, video_source: Optional[str] = None): + """Best-effort single frame for MJPEG preview. + Tries direct camera server, then CameraCapture fallback. + Returns BGR frame or None. + """ + global _PREVIEW_CAM, _PREVIEW_LAST_OPEN_TRY + try: + if direct_camera_client.is_enabled(): + frame = direct_camera_client.frame_bgr(timeout=2.0) + if frame is not None: + return frame + + if not PREVIEW_USE_OPENCV_FALLBACK: + return None + + now = time.time() + with _PREVIEW_CAM_LOCK: + if _PREVIEW_CAM is None and (now - _PREVIEW_LAST_OPEN_TRY) >= PREVIEW_RETRY_SEC: + _PREVIEW_LAST_OPEN_TRY = now + src = video_source if video_source is not None else _preview_camera_source() + cam = _get_camera_capture_cls()(src) + if cam.initialize(): + _PREVIEW_CAM = cam + else: + try: + cam.release() + except Exception: + pass + _PREVIEW_CAM = None + + if _PREVIEW_CAM is None: + return None + + frame = _PREVIEW_CAM.capture_frame() + if frame is None: + # If device dropped, close it and retry after cooldown. + cap = getattr(_PREVIEW_CAM, "cap", None) + if cap is None or not cap.isOpened(): + try: + _PREVIEW_CAM.release() + except Exception: + pass + _PREVIEW_CAM = None + return None + + return frame + except Exception: + return None + + +def _realsense_test() -> Dict[str, Any]: + """ + Quick test using the camera env python: + - import pyrealsense2 + - count devices + """ + try: + code = ( + "import pyrealsense2 as rs\n" + "ctx = rs.context()\n" + "devs = list(ctx.query_devices())\n" + "print(len(devs))\n" + "print([d.get_info(rs.camera_info.serial_number) for d in devs])\n" + ) + p = subprocess.run( + [CAMERA_ENV_PY, "-c", code], + capture_output=True, + text=True, + timeout=10, + ) + out = (p.stdout or "").strip().splitlines() + err = (p.stderr or "").strip() + + if p.returncode != 0: + return {"ok": False, "rc": p.returncode, "error": err or "realsense test failed", "stdout": out[-20:]} + + count = int(out[0]) if out else 0 + serials = [] + if len(out) >= 2: + # second line prints python list + serials = out[1] + return {"ok": True, "devices": count, "serials": serials, "rc": 0} + + except Exception as e: + return {"ok": False, "error": str(e)} + + +def _run_fix_script() -> Dict[str, Any]: + """ + Runs fix_realsense_usb.sh in NON-INTERACTIVE mode. + If sudo password is required, it fails gracefully (no terminal prompt). + """ + fix_script = _resolve_fix_script() + if not fix_script: + checked = [str(p) for p in _fix_script_candidates()] + return {"ok": False, "error": "fix script not found", "checked": checked} + + try: + # IMPORTANT: -n = non-interactive (won't prompt for password) + p = subprocess.run( + ["sudo", "-n", "bash", str(fix_script)], + capture_output=True, + text=True, + timeout=40, + ) + + out = (p.stdout or "").strip().splitlines()[-80:] + err = (p.stderr or "").strip().splitlines()[-80:] + + if p.returncode == 0: + return {"ok": True, "rc": 0, "stdout": out, "stderr": err} + + # Most common case: sudo needs password + joined_err = "\n".join(err).lower() + if "a password is required" in joined_err or "sudo:" in joined_err: + return { + "ok": False, + "rc": p.returncode, + "error": f"sudo password required. Run manually in terminal: sudo bash {fix_script}", + "stdout": out, + "stderr": err, + } + + return {"ok": False, "rc": p.returncode, "stdout": out, "stderr": err} + + except Exception as e: + return {"ok": False, "error": str(e)} + + + +# ============================================================ +# HTML template fallback (if Scripts/gallery.html missing) +# ============================================================ +# All HTML/CSS/JS files live in WEB_DIR. The server reads them at runtime. + + +# ============================================================ +# Main server factory +# ============================================================ +def start_photo_server( + folder: Path = DEFAULT_PHOTOS_DIR, + port: int = 8080, + bind: str = "0.0.0.0", + capture_func: Optional[Callable[[], str]] = None, + replay_test_func: Optional[Callable[[str], str]] = None, + logger=None, +) -> str: + """ + Starts the gallery server in a daemon thread. + Returns the URL (best-effort reachable IP). + + If port is already in use, it logs and returns the URL anyway (assumes old server is running). + """ + lg = logger or _make_logger("photo_server.log") + folder = folder.resolve() + folder.mkdir(parents=True, exist_ok=True) + + ip = _get_local_ip() + url = f"http://{ip}:{port}/" + + if capture_func is None: + capture_func = _capture_via_service + + class Handler(SimpleHTTPRequestHandler): + QUIET_PATHS = { + "/api/autonomous_state", + "/api/runtime_health", + "/api/photos", + "/api/people", + "/api/audio_prompts", + "/api/audio_prompt_record_status", + "/api/set_audio_prompt_mode", + "/api/set_audio_prompt_fallback", + "/api/replays", + "/api/get_replay", + "/api/replay_record_status", + "/api/replay_test_status", + "/api/mode", + "/api/ai_readiness", + "/api/ai_options", + "/api/detector_backend", + "/api/camera_health", + "/api/camera_sources", + "/api/person_image", + "/preview.mjpg", + } + + # Serve files from PHOTOS folder by default + def __init__(self, *args, **kwargs): + super().__init__(*args, directory=str(folder), **kwargs) + + def log_message(self, fmt, *args): + path = urllib.parse.urlparse(getattr(self, "path", "")).path + if path.startswith("/static/"): + return + if path in self.QUIET_PATHS: + return + if path.endswith(".jpg") or path.endswith(".jpeg") or path.endswith(".png") or path.endswith(".zip"): + return + status = str(args[1]) if len(args) > 1 else "?" + print(f"๐ŸŒ HTTP {getattr(self, 'command', '?')} {path} -> {status}") + + def _send_json(self, obj: Dict[str, Any], code: int = 200): + data = json.dumps(obj, ensure_ascii=False, indent=2).encode("utf-8") + self.send_response(code) + self.send_header("Content-Type", "application/json; charset=utf-8") + self.send_header("Content-Length", str(len(data))) + self.end_headers() + self.wfile.write(data) + + def _send_text(self, text: str, code: int = 200, ctype: str = "text/plain; charset=utf-8"): + data = text.encode("utf-8") + self.send_response(code) + self.send_header("Content-Type", ctype) + self.send_header("Content-Length", str(len(data))) + self.end_headers() + self.wfile.write(data) + + def do_GET(self): + parsed = urllib.parse.urlparse(self.path) + path = parsed.path + q = urllib.parse.parse_qs(parsed.query) + + # Ignore favicon noise + if path == "/favicon.ico": + self.send_response(204) + self.end_headers() + return + + # Serve static CSS/JS from Web folder + if path == "/static/style.css": + css = _read_bytes_file(STYLE_CSS) + if css is None: + self.send_response(404) + self.end_headers() + return + self.send_response(200) + self.send_header("Content-Type", "text/css; charset=utf-8") + self.send_header("Content-Length", str(len(css))) + self.end_headers() + self.wfile.write(css) + return + + if path == "/static/gallery.js": + js = _read_text_file(GALLERY_JS) + if js is None: + self.send_response(404) + self.end_headers() + return + data = js.encode("utf-8") + self.send_response(200) + self.send_header("Content-Type", "application/javascript; charset=utf-8") + self.send_header("Content-Length", str(len(data))) + self.end_headers() + self.wfile.write(data) + return + + # API endpoints + if path == "/api/status": + items = _list_photos(folder) + res = { + "ok": True, + "photos_dir": str(folder), + "count": len(items), + "latest": items[0]["name"] if items else None, + "url": url, + "time": time.strftime("%Y-%m-%d %H:%M:%S"), + } + self._send_json(res, 200) + return + + if path == "/api/errors": + self._send_json({"ok": True, "counters": get_error_counters()}) + return + + if path == "/api/mode": + # return current mode + m = _read_mode() + self._send_json({"ok": True, "mode": m, "policy": _mode_policy(m)}) + return + + if path == "/api/detector_backend": + b = _read_detector_backend() + strict_required = _strict_yolo_required() + mode = _read_mode() + locked = bool(strict_required and mode == "ai") + self._send_json( + { + "ok": True, + "backend": b, + "yolo_runtime": str(config.read_vision_yolo_runtime()), + "options": ["normal", "yolo"], + "strict_required": strict_required, + "locked": locked, + } + ) + return + + if path == "/api/ai_readiness": + data = _read_ai_readiness() + self._send_json(data, 200 if data.get("ok") else 503) + return + + if path == "/api/runtime_health": + self._send_json({"ok": True, "health": _read_runtime_health()}) + return + + if path == "/api/camera_health": + try: + self._send_json(direct_camera_client.health(timeout=3.0)) + except Exception as e: + self._send_json({"ok": False, "error": str(e), "camera": {}}, 503) + return + + if path == "/api/camera_sources": + try: + self._send_json(direct_camera_client.cameras(timeout=3.0)) + except Exception as e: + self._send_json({"ok": False, "error": str(e), "options": []}, 503) + return + + if path == "/api/set_camera_source": + source = q.get("source", [""])[0].strip() + if not source: + self._send_json({"ok": False, "error": "missing source"}, 400) + return + try: + self._send_json(direct_camera_client.set_source(source, timeout=8.0)) + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + return + + if path == "/api/set_camera_resolution": + try: + width = int((q.get("width") or [""])[0]) + height = int((q.get("height") or [""])[0]) + fps = int((q.get("fps") or [""])[0]) + except Exception: + self._send_json({"ok": False, "error": "width, height, and fps are required integers"}, 400) + return + try: + self._send_json(direct_camera_client.set_resolution(width, height, fps, timeout=8.0)) + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + return + + if path == "/api/set_preferred_camera": + serial = q.get("serial", [""])[0].strip() + try: + saved = config.write_camera_preferred_realsense_serial(serial) + self._send_json(direct_camera_client.set_preferred_camera(saved, timeout=8.0)) + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + return + + if path == "/api/mic": + self._send_json({"ok": True, "options": _read_mic_options()}) + return + + if path == "/api/ai_options": + self._send_json({"ok": True, "options": _read_ai_options()}) + return + + if path == "/api/autonomous_state": + self._send_json({"ok": True, "state": _read_autonomous_state()}) + return + + if path == "/api/people": + try: + self._send_json({"ok": True, "people": people_registry.list_people()}) + except Exception as e: + self._send_json({"ok": False, "error": str(e), "people": []}, 500) + return + + if path == "/api/audio_prompts": + try: + self._send_json( + { + "ok": True, + "dir": str(config.AUDIO_PROMPTS_DIR), + "mode": str(config.read_audio_prompt_mode()), + "fallback_to_gemini": bool(config.read_audio_prompts_fallback_to_gemini()), + "prompts": audio_prompts.list_audio_prompts(), + } + ) + except Exception as e: + self._send_json({"ok": False, "error": str(e), "prompts": []}, 500) + return + + if path == "/api/audio_prompt_record_status": + self._send_json({"ok": True, "status": _read_audio_prompt_record_state()}) + return + + if path == "/api/set_audio_prompt_mode": + mode = q.get("mode", [""])[0] + if mode == "": + self._send_json({"ok": False, "error": "missing mode"}, 400) + return + try: + value = str(config.write_audio_prompt_mode(mode)) + self._send_json({"ok": True, "mode": value}) + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + return + + if path == "/api/set_audio_prompt_fallback": + enabled = q.get("enabled", [""])[0] + if enabled == "": + self._send_json({"ok": False, "error": "missing enabled"}, 400) + return + try: + value = bool(config.write_audio_prompts_fallback_to_gemini(enabled)) + self._send_json({"ok": True, "fallback_to_gemini": value}) + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + return + + if path == "/api/download_audio_prompt": + key = q.get("key", [""])[0].strip() + if not key: + self._send_json({"ok": False, "error": "missing key"}, 400) + return + try: + prompt_path, body = audio_prompts.read_audio_prompt_bytes(key) + self.send_response(200) + self.send_header("Content-Type", "audio/wav") + self.send_header("Content-Length", str(len(body))) + self.send_header("Content-Disposition", f'attachment; filename="{prompt_path.name}"') + self.end_headers() + self.wfile.write(body) + except FileNotFoundError: + self._send_json({"ok": False, "error": "audio prompt not found"}, 404) + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + return + + if path == "/api/delete_audio_prompt": + key = q.get("key", [""])[0].strip() + if not key: + self._send_json({"ok": False, "error": "missing key"}, 400) + return + try: + self._send_json(audio_prompts.delete_audio_prompt(key)) + except KeyError as e: + self._send_json({"ok": False, "error": str(e)}, 400) + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + return + + if path == "/api/person_image": + person_id = q.get("id", [""])[0].strip() + kind = q.get("kind", ["face"])[0].strip().lower() + if kind not in ("face", "scene"): + kind = "face" + data = people_registry.read_person_image(person_id, kind=kind) + if data is None: + self._send_json({"ok": False, "error": "person image not found"}, 404) + return + body, ctype, filename = data + self.send_response(200) + self.send_header("Content-Type", ctype) + self.send_header("Content-Length", str(len(body))) + self.send_header("Content-Disposition", f'inline; filename="{filename}"') + self.end_headers() + self.wfile.write(body) + return + + if path == "/api/delete_person": + person_id = q.get("id", [""])[0].strip() + if not person_id: + self._send_json({"ok": False, "error": "missing id"}, 400) + return + try: + ok = people_registry.delete_person(person_id) + if not ok: + self._send_json({"ok": False, "error": "person not found"}, 404) + return + self._send_json({"ok": True, "deleted": person_id}) + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + return + + if path == "/api/reset_people": + try: + count = int(people_registry.reset_people()) + self._send_json({"ok": True, "deleted": count}) + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + return + + if path == "/api/download_person": + person_id = q.get("id", [""])[0].strip() + if not person_id: + self._send_json({"ok": False, "error": "missing id"}, 400) + return + try: + with tempfile.NamedTemporaryFile(prefix=f"{person_id}_", suffix=".zip", delete=False) as tmp: + tmp_path = Path(tmp.name) + archive_path = people_registry.export_person_zip(person_id, tmp_path) + if archive_path is None or not archive_path.exists(): + try: + tmp_path.unlink() + except Exception: + pass + self._send_json({"ok": False, "error": "person not found"}, 404) + return + body = archive_path.read_bytes() + self.send_response(200) + self.send_header("Content-Type", "application/zip") + self.send_header("Content-Length", str(len(body))) + self.send_header("Content-Disposition", f'attachment; filename="{person_id}.zip"') + self.end_headers() + self.wfile.write(body) + try: + archive_path.unlink() + except Exception: + pass + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + return + + if path == "/api/set_mode": + # set mode via ?mode=ai|manual + m = q.get("mode", [""])[0] + if m == "command": + self._send_json( + { + "ok": False, + "error": "command mode was moved to G1_Lootah/AI_Command", + }, + 410, + ) + return + if m not in ("ai", "manual"): + self._send_json({"ok": False, "error": "invalid mode"}, 400) + return + try: + m = config.write_runtime_mode(m) + self._send_json({"ok": True, "mode": m, "policy": _mode_policy(m)}) + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + return + + if path == "/api/set_ai_options": + try: + hard_v = q.get("hard_target_lock_enabled", [None])[0] + retake_v = q.get("retake_prompt_enabled", [None])[0] + greet_enabled_v = q.get("autonomous_greeting_replay_enabled", [None])[0] + greet_file_v = q.get("autonomous_greeting_replay_file", [None])[0] + capture_enabled_v = q.get("autonomous_capture_replay_enabled", [None])[0] + face_recognition_v = q.get("face_recognition_enabled", [None])[0] + face_threshold_v = q.get("face_recognition_threshold", [None])[0] + out = _read_ai_options() + if hard_v is not None: + out["hard_target_lock_enabled"] = bool( + config.write_vision_hard_target_lock_enabled(hard_v) + ) + if retake_v is not None: + out["retake_prompt_enabled"] = bool( + config.write_vision_retake_prompt_enabled(retake_v) + ) + if greet_enabled_v is not None: + out["autonomous_greeting_replay_enabled"] = bool( + config.write_vision_autonomous_greeting_replay_enabled(greet_enabled_v) + ) + if greet_file_v is not None: + out["autonomous_greeting_replay_file"] = str( + config.write_vision_autonomous_greeting_replay_file(greet_file_v) + ) + if capture_enabled_v is not None: + out["autonomous_capture_replay_enabled"] = bool( + config.write_vision_autonomous_capture_replay_enabled(capture_enabled_v) + ) + if face_recognition_v is not None: + out["face_recognition_enabled"] = bool( + config.write_vision_face_recognition_enabled(face_recognition_v) + ) + if face_threshold_v is not None: + out["face_recognition_threshold"] = float( + config.write_vision_face_recognition_threshold(face_threshold_v) + ) + out["active_replay"] = _read_active_replay_name() + self._send_json({"ok": True, "options": out}) + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + return + + if path == "/api/set_mic": + try: + enabled_v = q.get("enabled", [None])[0] + if enabled_v is None: + self._send_json({"ok": False, "error": "missing enabled"}, 400) + return + enabled = bool(config.write_gemini_mic_enabled(enabled_v)) + self._send_json({"ok": True, "options": {"mic_enabled": enabled}}) + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + return + + if path == "/api/mode_policy": + m = _read_mode() + self._send_json({"ok": True, "mode": m, "policy": _mode_policy(m)}) + return + + if path == "/api/set_detector_backend": + b = q.get("backend", [""])[0] + if b not in ("normal", "yolo"): + self._send_json({"ok": False, "error": "invalid backend"}, 400) + return + try: + mode = _read_mode() + strict_required = _strict_yolo_required() + if strict_required and mode == "ai" and b != "yolo": + self._send_json( + { + "ok": False, + "error": "Strict AI profile requires YOLO backend while mode=ai.", + "backend": _read_detector_backend(), + "strict_required": True, + }, + 409, + ) + return + b = config.write_vision_detector_backend(b) + self._send_json( + { + "ok": True, + "backend": b, + "yolo_runtime": str(config.read_vision_yolo_runtime()), + "options": ["normal", "yolo"], + "strict_required": strict_required, + "locked": bool(strict_required and mode == "ai"), + } + ) + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + return + + if path == "/api/command_info": + self._send_json( + { + "ok": False, + "error": "command mode moved", + "moved_to": "G1_Lootah/AI_Command", + }, + 410, + ) + return + + if path == "/api/test": + res = _realsense_test() + self._send_json(res, 200 if res.get("ok") else 500) + return + + if path == "/api/fix": + res = _run_fix_script() + self._send_json(res, 200 if res.get("ok") else 500) + return + + if path == "/api/run_scripts_fix": + # Run the Scripts/fix_realsense_usb.sh with optional mode ?mode=check|fix + mode = q.get('mode', ['--fix'])[0] or '--fix' + try: + scripts_sh = _resolve_fix_script() + if not scripts_sh: + self._send_json( + {"ok": False, "error": "script not found", "checked": [str(p) for p in _fix_script_candidates()]}, + 404, + ) + return + # run non-interactive + p = subprocess.run(["bash", str(scripts_sh), mode], capture_output=True, text=True, timeout=60) + out = (p.stdout or "").strip().splitlines() + err = (p.stderr or "").strip().splitlines() + ok = p.returncode == 0 + resp = {"ok": ok, "rc": p.returncode, "stdout": out[-60:], "stderr": err[-60:]} + self._send_json(resp, 200 if ok else 500) + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + return + + if path == "/api/capture": + # Take photo NOW (no remote) + result = capture_func() + ok = not result.startswith("[ERR]") + self._send_json({"ok": ok, "result": result}, 200 if ok else 500) + return + + if path == "/api/sessions": + items = _list_photos(folder) + sessions = _group_sessions(items) + self._send_json({"ok": True, "sessions": sessions}) + return + + if path == "/api/photos": + items = _list_photos(folder) + self._send_json({"ok": True, "photos": items}) + return + + # Request a photo from autonomous mover or external monitor + if path == "/api/request_photo": + try: + # touch a request file for external processes to pick up + reqf = SCRIPTS_DIR / "request_photo.flag" + reqf.write_text(str(time.time())) + self._send_json({"ok": True, "requested": True}) + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + return + + # Clear all photos (DELETE) - destructive + if path == "/api/clear_photos": + try: + for p in folder.iterdir(): + if _is_photo_file(p): + try: + p.unlink() + except Exception: + pass + self._send_json({"ok": True, "cleared": True}) + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + return + + # Create a ZIP archive of all photos and return path + if path == "/api/download_zip": + try: + import shutil + zip_base = folder / "_archives" + zip_base.mkdir(parents=True, exist_ok=True) + ts = int(time.time()) + archive_name = str(zip_base / f"photos_{ts}") + shutil.make_archive(archive_name, 'zip', root_dir=str(folder)) + archive_file = archive_name + '.zip' + # serve relative URL + rel = os.path.relpath(archive_file, start=folder) + self._send_json({"ok": True, "archive": rel}) + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + return + + # Trigger uploader now by touching a flag file + if path == "/api/upload_now": + try: + upf = SCRIPTS_DIR / "upload_now.flag" + upf.write_text(str(time.time())) + self._send_json({"ok": True, "upload_now": True}) + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + return + + if path == "/api/delete": + name = _safe_name(q.get("name", [""])[0]) + if not name: + self._send_json({"ok": False, "error": "missing name"}, 400) + return + target = (folder / name).resolve() + + # ensure inside folder + try: + target.relative_to(folder) + except Exception: + self._send_json({"ok": False, "error": "invalid path"}, 400) + return + + if not target.exists(): + self._send_json({"ok": False, "error": "not found"}, 404) + return + + try: + target.unlink() + self._send_json({"ok": True, "deleted": name}, 200) + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + return + + if path == "/api/retake": + # Trigger a capture and return result. Optionally accept session_id to associate. + session_id = q.get("session_id", [None])[0] + result = capture_func() + ok = not result.startswith("[ERR]") + self._send_json({"ok": ok, "result": result, "session_id": session_id}, 200 if ok else 500) + return + + if path == "/api/reupload": + # Allow manual reupload: clears uploaded flag in upload DB so the uploader daemon retries + name = _safe_name(q.get("name", [""])[0]) + if not name: + self._send_json({"ok": False, "error": "missing name"}, 400) + return + dbp = Path(config.UPLOAD_DB) + if dbp.exists(): + try: + d = json.loads(dbp.read_text()) + except Exception: + d = {} + else: + d = {} + # clear uploaded marker + entry = d.get(name, {}) + entry["uploaded"] = False + d[name] = entry + try: + dbp.write_text(json.dumps(d, indent=2)) + self._send_json({"ok": True, "requeued": name}) + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + return + + # Replay management endpoints + if path == "/api/replays": + try: + items = _list_replays() + self._send_json({"ok": True, "replays": [it["name"] for it in items], "items": items}) + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + return + + if path == "/api/replay_record_status": + self._send_json({"ok": True, "status": _read_recorder_state()}) + return + + if path == "/api/replay_test_status": + self._send_json({"ok": True, "status": _read_replay_test_state()}) + return + + if path == "/api/replay_record_start": + try: + if _read_mode() != "manual": + self._send_json({"ok": False, "error": "replay recording is allowed only in manual mode"}, 409) + return + name = _normalize_replay_name(q.get("name", [""])[0]) + seconds = float(q.get("seconds", ["15"])[0]) + if seconds <= 0: + self._send_json({"ok": False, "error": "seconds must be positive"}, 400) + return + cur = _read_recorder_state() + if cur.get("running"): + self._send_json({"ok": False, "error": "recorder already running", "status": cur}, 409) + return + preview_path = _resolve_replay_path(name) + preview_path.parent.mkdir(parents=True, exist_ok=True) + if preview_path.exists(): + self._send_json({"ok": False, "error": "replay already exists"}, 409) + return + preview_output = str(preview_path) + _set_recorder_state( + running=True, + ok=False, + error="", + name=name, + seconds=float(seconds), + output=preview_output, + returncode=None, + started_at=time.time(), + finished_at=0.0, + stdout_tail=[], + ) + threading.Thread(target=_run_replay_recorder, args=(name, seconds), daemon=True).start() + self._send_json({"ok": True, "status": _read_recorder_state()}) + except ValueError as e: + self._send_json({"ok": False, "error": str(e)}, 400) + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + return + + if path == "/api/test_replay": + try: + if _read_mode() != "manual": + self._send_json({"ok": False, "error": "replay test is allowed only in manual mode"}, 409) + return + if replay_test_func is None: + self._send_json({"ok": False, "error": "replay test is unavailable in this runtime"}, 503) + return + name = _normalize_replay_name(q.get("name", [""])[0]) + candidate = _resolve_replay_path(name) + if not candidate.exists(): + self._send_json({"ok": False, "error": "replay not found"}, 404) + return + cur = _read_replay_test_state() + if cur.get("running"): + self._send_json({"ok": False, "error": "replay test already running", "status": cur}, 409) + return + _set_replay_test_state( + running=True, + ok=False, + error="", + name=name, + result="", + started_at=time.time(), + finished_at=0.0, + ) + threading.Thread(target=_run_replay_test, args=(name, replay_test_func), daemon=True).start() + self._send_json({"ok": True, "status": _read_replay_test_state()}) + except ValueError as e: + self._send_json({"ok": False, "error": str(e)}, 400) + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + return + + if path == "/api/delete_replay": + try: + name = q.get("name", [""])[0] + candidate = _resolve_replay_path(name) + if not candidate.exists(): + self._send_json({"ok": False, "error": "replay not found"}, 404) + return + active_name = _read_active_replay_name() + rel = str(candidate.resolve().relative_to(config.DATA_DIR)).replace("\\", "/") + if rel == active_name: + self._send_json({"ok": False, "error": "cannot delete the active replay"}, 409) + return + if _is_greeting_replay(rel): + self._send_json({"ok": False, "error": "cannot delete the configured AI greeting replay"}, 409) + return + candidate.unlink() + self._send_json({"ok": True, "deleted": rel}) + except ValueError as e: + self._send_json({"ok": False, "error": str(e)}, 400) + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + return + + if path == "/api/rename_replay": + try: + old_name = q.get("old", [""])[0] + new_name = q.get("new", [""])[0] + old_candidate = _resolve_replay_path(old_name) + if not old_candidate.exists(): + self._send_json({"ok": False, "error": "replay not found"}, 404) + return + old_rel = str(old_candidate.resolve().relative_to(config.DATA_DIR)).replace("\\", "/") + old_parent = Path(old_rel).parent + default_parent = None if str(old_parent) == "." else old_parent.as_posix() + new_rel = _normalize_replay_name(new_name, default_parent=default_parent) + new_candidate = _resolve_replay_path(new_rel) + if new_candidate.exists(): + self._send_json({"ok": False, "error": "target replay already exists"}, 409) + return + new_candidate.parent.mkdir(parents=True, exist_ok=True) + old_candidate.rename(new_candidate) + _update_replay_references_after_rename(old_rel, new_rel, new_candidate) + self._send_json({"ok": True, "old": old_rel, "new": new_rel}) + except ValueError as e: + self._send_json({"ok": False, "error": str(e)}, 400) + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + return + + if path == "/api/download_replay": + try: + name = q.get("name", [""])[0] + candidate = _resolve_replay_path(name) + if not candidate.exists(): + self._send_json({"ok": False, "error": "replay not found"}, 404) + return + data = candidate.read_bytes() + self.send_response(200) + self.send_header("Content-Type", "application/json; charset=utf-8") + self.send_header("Content-Length", str(len(data))) + self.send_header("Content-Disposition", f'attachment; filename="{candidate.name}"') + self.end_headers() + self.wfile.write(data) + except ValueError as e: + self._send_json({"ok": False, "error": str(e)}, 400) + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + return + + if path == "/api/scripts": + try: + scripts_dir = DATA_SCRIPTS_DIR + scripts_dir.mkdir(parents=True, exist_ok=True) + files = [ + p.name + for p in sorted(scripts_dir.iterdir()) + if p.is_file() and p.suffix.lower() in (".txt", ".json", ".jsonl") + ] + self._send_json({"ok": True, "scripts": files}) + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + return + + if path == "/api/script_content": + # return raw text of a script by name (in Scripts/) + name = q.get('name', [None])[0] + if not name: + self._send_json({"ok": False, "error": "missing name"}, 400) + return + try: + scripts_dir = DATA_SCRIPTS_DIR + candidate = (scripts_dir / _safe_name(name)).resolve() + try: + candidate.relative_to(scripts_dir) + except Exception: + self._send_json({"ok": False, "error": "invalid path"}, 400) + return + if not candidate.exists(): + self._send_json({"ok": False, "error": "not found"}, 404) + return + txt = candidate.read_text(encoding='utf-8') + self._send_json({"ok": True, "script": txt}) + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + return + + if path == "/api/get_replay": + try: + cur = _read_active_replay_name() + self._send_json({"ok": True, "replay": cur}) + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + return + + if path == "/api/sanad_script": + try: + txt = _read_text_file(config.SANAD_SCRIPT_FILE) or "" + self._send_json({"ok": True, "script": txt}) + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + return + + if path == "/api/set_replay": + # set via ?name=filename.jsonl + name = q.get("name", [""])[0] + if not name: + self._send_json({"ok": False, "error": "missing name"}, 400) + return + try: + candidate = _resolve_replay_path(name) + except ValueError as e: + self._send_json({"ok": False, "error": str(e)}, 400) + return + if not candidate.exists(): + self._send_json({"ok": False, "error": "replay not found"}, 404) + return + integrity = replay_file_integrity(candidate) + if not integrity.get("ok"): + self._send_json( + {"ok": False, "error": "invalid replay file", "integrity": integrity}, + 400, + ) + return + try: + rel_name = str(candidate.resolve().relative_to(config.DATA_DIR)).replace("\\", "/") + config.write_selected_replay_name(rel_name) + config.REPLAY_FILE = candidate + resp = {"ok": True, "set": rel_name} + if not integrity.get("trigger_ok", False): + resp["warning"] = "replay has no trigger markers; timed capture fallback will be used" + resp["integrity"] = integrity + self._send_json(resp) + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + return + + # MJPEG preview stream + if path == "/preview.mjpg": + self.send_response(200) + self.send_header("Content-Type", "multipart/x-mixed-replace; boundary=--frame") + self.end_headers() + try: + while True: + frame = _get_preview_frame() + if frame is None: + time.sleep(0.1) + continue + cv2 = _get_cv2() + ret, jpg = cv2.imencode('.jpg', frame, [int(cv2.IMWRITE_JPEG_QUALITY), 65]) + if not ret: + time.sleep(0.05) + continue + data = jpg.tobytes() + self.wfile.write(b"--frame\r\n") + self.wfile.write(b"Content-Type: image/jpeg\r\n") + self.wfile.write(f"Content-Length: {len(data)}\r\n\r\n".encode('utf-8')) + self.wfile.write(data) + self.wfile.write(b"\r\n") + self.wfile.flush() + # small throttle + time.sleep(0.08) + except Exception as e: + record_error( + "photo_server", + "preview_stream", + e, + {"client": self.client_address[0] if self.client_address else "unknown"}, + ) + return + + + # Gallery page: serve gallery.html (client JS renders cards) + if path == "/": + tpl = _read_text_file(GALLERY_HTML) + if tpl is None: + self.send_response(404) + self.end_headers() + return + html = tpl.replace("{{PHOTOS_DIR}}", str(folder)) + # leave PHOTO_CARDS and MODE_TOGGLE for client-side JS to populate + self._send_text(html, 200, "text/html; charset=utf-8") + return + + # Otherwise: serve static files from photos/ (download/open) + return super().do_GET() + + def do_POST(self): + parsed = urllib.parse.urlparse(self.path) + path = parsed.path + # Only used to update sanad script content currently + if path == "/api/sanad_script": + try: + length = int(self.headers.get('Content-Length', '0')) + body = self.rfile.read(length) if length else b"" + # accept raw text or JSON {"script": "..."} + try: + payload = json.loads(body.decode('utf-8')) + script = payload.get('script', '') + except Exception: + script = body.decode('utf-8') + # write to SANAD_SCRIPT_FILE + try: + config.SANAD_SCRIPT_FILE.write_text(script, encoding='utf-8') + self._send_json({"ok": True, "written": True}) + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + return + + if path == "/api/audio_prompt_record": + try: + length = int(self.headers.get("Content-Length", "0")) + body = self.rfile.read(length) if length else b"" + payload = json.loads(body.decode("utf-8")) if body else {} + if not isinstance(payload, dict): + self._send_json({"ok": False, "error": "invalid payload"}, 400) + return + key = str(payload.get("key", "") or "").strip() + text = str(payload.get("text", "") or "").strip() + filename = str(payload.get("filename", "") or "").strip() + if not key: + self._send_json({"ok": False, "error": "missing key"}, 400) + return + if not text: + self._send_json({"ok": False, "error": "missing text"}, 400) + return + cur = _read_audio_prompt_record_state() + if cur.get("running"): + self._send_json({"ok": False, "error": "audio prompt recorder already running", "status": cur}, 409) + return + default_filename = audio_prompts.prompt_filename(key) + _set_audio_prompt_record_state( + running=True, + key=key, + filename=filename or default_filename, + text=text, + ok=False, + error="", + started_at=time.time(), + finished_at=0.0, + result={}, + ) + threading.Thread( + target=_run_audio_prompt_record, + args=(key, text, filename or default_filename), + daemon=True, + ).start() + self._send_json({"ok": True, "status": _read_audio_prompt_record_state()}) + except (ValueError, KeyError) as e: + self._send_json({"ok": False, "error": str(e)}, 400) + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + return + + if path == "/api/upload_person": + try: + form = cgi.FieldStorage( + fp=self.rfile, + headers=self.headers, + environ={ + "REQUEST_METHOD": "POST", + "CONTENT_TYPE": self.headers.get("Content-Type", ""), + }, + ) + if "file" not in form: + self._send_json({"ok": False, "error": "missing file"}, 400) + return + file_item = form["file"] + if not getattr(file_item, "file", None): + self._send_json({"ok": False, "error": "missing file payload"}, 400) + return + data = file_item.file.read() + if not data: + self._send_json({"ok": False, "error": "empty upload"}, 400) + return + person_id = str(form.getfirst("person_id", "") or "").strip() + filename = str(getattr(file_item, "filename", "") or "") + result = people_registry.import_person_photo(data, filename=filename, person_id=person_id) + ok = bool(result.get("ok", False)) + self._send_json(result, 200 if ok else 400) + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + return + + if path == "/api/upload_audio_prompt": + try: + form = cgi.FieldStorage( + fp=self.rfile, + headers=self.headers, + environ={ + "REQUEST_METHOD": "POST", + "CONTENT_TYPE": self.headers.get("Content-Type", ""), + }, + ) + key = str(form.getfirst("key", "") or "").strip() + if not key: + self._send_json({"ok": False, "error": "missing key"}, 400) + return + if "file" not in form: + self._send_json({"ok": False, "error": "missing file"}, 400) + return + file_item = form["file"] + if not getattr(file_item, "file", None): + self._send_json({"ok": False, "error": "missing file payload"}, 400) + return + data = file_item.file.read() + if not data: + self._send_json({"ok": False, "error": "empty upload"}, 400) + return + filename = str(form.getfirst("filename", "") or getattr(file_item, "filename", "") or "") + result = audio_prompts.save_audio_prompt(key, data, filename) + self._send_json(result, 200 if bool(result.get("ok")) else 400) + except (KeyError, ValueError) as e: + self._send_json({"ok": False, "error": str(e)}, 400) + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + return + + if path == "/api/upload_replay": + try: + form = cgi.FieldStorage( + fp=self.rfile, + headers=self.headers, + environ={ + "REQUEST_METHOD": "POST", + "CONTENT_TYPE": self.headers.get("Content-Type", ""), + }, + ) + if "file" not in form: + self._send_json({"ok": False, "error": "missing file"}, 400) + return + file_item = form["file"] + if not getattr(file_item, "file", None): + self._send_json({"ok": False, "error": "missing file payload"}, 400) + return + raw_name = form.getfirst("name", "") or getattr(file_item, "filename", "") or "uploaded_replay.jsonl" + rel_name = _normalize_replay_name(raw_name) + candidate = _resolve_replay_path(rel_name) + if candidate.exists(): + self._send_json({"ok": False, "error": "replay already exists"}, 409) + return + candidate.parent.mkdir(parents=True, exist_ok=True) + data = file_item.file.read() + if not data: + self._send_json({"ok": False, "error": "empty upload"}, 400) + return + candidate.write_bytes(data) + integrity = replay_file_integrity(candidate) + if not integrity.get("ok"): + try: + candidate.unlink() + except Exception: + pass + self._send_json({"ok": False, "error": "invalid replay file", "integrity": integrity}, 400) + return + self._send_json({"ok": True, "saved": rel_name, "integrity": integrity}) + except ValueError as e: + self._send_json({"ok": False, "error": str(e)}, 400) + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + return + + # Upload / manage SANAD scripts + if path == "/api/upload_script": + try: + # Accept JSON {"filename": "name.txt", "script": "..."} or raw text with ?filename=... + length = int(self.headers.get('Content-Length', '0')) + body = self.rfile.read(length) if length else b"" + try: + payload = json.loads(body.decode('utf-8')) + filename = payload.get('filename') + script = payload.get('script', '') + except Exception: + filename = urllib.parse.parse_qs(parsed.query).get('filename', [None])[0] + script = body.decode('utf-8') + if not filename: + self._send_json({"ok": False, "error": "missing filename"}, 400) + return + scripts_dir = DATA_SCRIPTS_DIR + scripts_dir.mkdir(parents=True, exist_ok=True) + target = (scripts_dir / _safe_name(filename)).resolve() + try: + target.relative_to(scripts_dir) + except Exception: + self._send_json({"ok": False, "error": "invalid filename"}, 400) + return + target.write_text(script, encoding='utf-8') + self._send_json({"ok": True, "saved": target.name}) + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + return + + if path == "/api/delete_script": + try: + length = int(self.headers.get('Content-Length', '0')) + body = self.rfile.read(length) if length else b"" + try: + payload = json.loads(body.decode('utf-8')) + name = payload.get('name') + except Exception: + # allow raw name in body + name = body.decode('utf-8').strip() + if not name: + self._send_json({"ok": False, "error": "missing name"}, 400) + return + scripts_dir = DATA_SCRIPTS_DIR + target = (scripts_dir / _safe_name(name)).resolve() + try: + target.relative_to(scripts_dir) + except Exception: + self._send_json({"ok": False, "error": "invalid path"}, 400) + return + if not target.exists(): + self._send_json({"ok": False, "error": "not found"}, 404) + return + target.unlink() + self._send_json({"ok": True, "deleted": name}) + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + return + + if path == "/api/set_sanad_script": + # Accept ?name=filename or JSON {"name":"..."} + try: + qs = urllib.parse.parse_qs(parsed.query) + name = qs.get('name', [None])[0] + if not name: + length = int(self.headers.get('Content-Length', '0')) + body = self.rfile.read(length) if length else b"" + try: + payload = json.loads(body.decode('utf-8')) + name = payload.get('name') + except Exception: + name = None + if not name: + self._send_json({"ok": False, "error": "missing name"}, 400) + return + scripts_dir = DATA_SCRIPTS_DIR + candidate = (scripts_dir / _safe_name(name)).resolve() + try: + candidate.relative_to(scripts_dir) + except Exception: + self._send_json({"ok": False, "error": "invalid script path"}, 400) + return + if not candidate.exists(): + self._send_json({"ok": False, "error": "script not found"}, 404) + return + # copy contents into SANAD_SCRIPT_FILE + try: + txt = candidate.read_text(encoding='utf-8') + config.SANAD_SCRIPT_FILE.write_text(txt, encoding='utf-8') + self._send_json({"ok": True, "set": candidate.name}) + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + except Exception as e: + self._send_json({"ok": False, "error": str(e)}, 500) + return + + # fallback + self.send_response(404) + self.end_headers() + + try: + ThreadingHTTPServer.allow_reuse_address = True + httpd = ThreadingHTTPServer((bind, port), Handler) + except OSError as e: + _log(lg, f"โŒ Photo server failed: {e}", "error") + # Assume another server already running + _log(lg, f"๐Ÿ–ผ๏ธ Phone gallery (existing): {url}", "info") + return url + + def _serve(): + try: + httpd.serve_forever() + except Exception: + pass + + t = threading.Thread(target=_serve, daemon=True) + t.start() + + + _log(lg, f"๐Ÿ–ผ๏ธ Photo server serving {folder} on {url}", "info") + return url + + +# ============================================================ +# CLI mode (optional) +# ============================================================ +if __name__ == "__main__": + photos = Path(os.environ.get("PHOTOS_DIR", str(DEFAULT_PHOTOS_DIR))).resolve() + port = int(os.environ.get("PHOTO_SERVER_PORT", "8080")) + start_photo_server(photos, port=port) + print("Server running. Press Ctrl+C to stop.") + try: + while True: + time.sleep(3600) + except KeyboardInterrupt: + pass diff --git a/Server/uploader.py b/Server/uploader.py new file mode 100644 index 0000000..1dca172 --- /dev/null +++ b/Server/uploader.py @@ -0,0 +1,167 @@ +""" +uploader.py + +Daemon that watches the photos folder for new files and uploads them +via HTTP POST (default) or S3 (optional, requires boto3). Implements +retry with exponential backoff and stores upload state in a small JSON DB. +""" +import threading +import time +import json +from pathlib import Path +from typing import Dict +import requests +import logging +try: + import boto3 + _HAS_BOTO3 = True +except Exception: + _HAS_BOTO3 = False + +from Core.Logger import Logs +from Core import settings as config + +sanad_logger = Logs() +sanad_logger.LogEngine("G1_Logs", "uploader") + + +class UploadDaemon: + def __init__(self, photos_dir: Path = config.PHOTOS_DIR, poll_s: float = 2.0): + self.photos_dir = Path(photos_dir) + self.poll_s = float(poll_s) + self._stop = threading.Event() + self._thread = None + self._db_path = Path(config.UPLOAD_DB) + self._state = self._load_db() + + def _load_db(self) -> Dict[str, Dict]: + try: + if self._db_path.exists(): + return json.loads(self._db_path.read_text()) + except Exception: + pass + return {} + + def _save_db(self): + try: + self._db_path.write_text(json.dumps(self._state, indent=2)) + except Exception as e: + sanad_logger.print_and_log(f"Failed to write upload db: {e}", "warning") + + def start(self): + if self._thread and self._thread.is_alive(): + return + self._stop.clear() + self._thread = threading.Thread(target=self._run, daemon=True) + self._thread.start() + sanad_logger.print_and_log("๐Ÿ“ค Upload daemon started.", "info") + + def stop(self): + self._stop.set() + if self._thread: + self._thread.join(timeout=1.0) + + def _should_upload(self, path: Path) -> bool: + s = self._state.get(str(path), {}) + return not s.get("uploaded", False) + + def _mark_uploaded(self, path: Path, info: Dict): + self._state[str(path)] = {"uploaded": True, "info": info, "ts": time.time()} + self._save_db() + + def _upload_http(self, path: Path) -> Dict: + url = config.UPLOAD_URL + if not url: + raise RuntimeError("UPLOAD_URL is not configured") + with open(path, "rb") as f: + r = requests.post(url, files={"file": f}, timeout=30) + r.raise_for_status() + return {"status": "ok", "resp": r.text} + + def _upload_s3(self, path: Path) -> Dict: + if not _HAS_BOTO3: + raise RuntimeError("boto3 not installed; install it to use S3 uploads") + bucket = config.UPLOAD_S3_BUCKET + if not bucket: + raise RuntimeError("UPLOAD_S3_BUCKET not configured") + + # Build client using provided keys or default env/iam + kwargs = {} + if config.UPLOAD_S3_KEY and config.UPLOAD_S3_SECRET: + kwargs["aws_access_key_id"] = config.UPLOAD_S3_KEY + kwargs["aws_secret_access_key"] = config.UPLOAD_S3_SECRET + if config.UPLOAD_S3_REGION: + kwargs["region_name"] = config.UPLOAD_S3_REGION + + s3 = boto3.client("s3", **kwargs) + key = path.name + try: + s3.upload_file(str(path), bucket, key) + return {"status": "ok", "bucket": bucket, "key": key} + except Exception: + raise + + def _run(self): + # If upload destination is not configured, keep daemon alive but idle. + if config.UPLOAD_METHOD == "http" and not str(config.UPLOAD_URL or "").strip(): + sanad_logger.print_and_log("๐Ÿ“ค Upload daemon idle: UPLOAD_URL is not configured.", "warning") + while not self._stop.is_set(): + time.sleep(max(2.0, self.poll_s)) + return + if config.UPLOAD_METHOD == "s3" and not str(config.UPLOAD_S3_BUCKET or "").strip(): + sanad_logger.print_and_log("๐Ÿ“ค Upload daemon idle: UPLOAD_S3_BUCKET is not configured.", "warning") + while not self._stop.is_set(): + time.sleep(max(2.0, self.poll_s)) + return + + while not self._stop.is_set(): + try: + for p in sorted(self.photos_dir.glob("**/*")): + if not p.is_file(): + continue + if not self._should_upload(p): + continue + + # Exponential backoff per-file + attempts = 0 + backoff = 1.0 + success = False + while attempts < 5 and not success and not self._stop.is_set(): + try: + sanad_logger.print_and_log(f"Uploading {p} (attempt {attempts+1})", "info") + if config.UPLOAD_METHOD == "http": + info = self._upload_http(p) + elif config.UPLOAD_METHOD == "s3": + info = self._upload_s3(p) + else: + raise NotImplementedError("UPLOAD_METHOD not implemented by daemon") + self._mark_uploaded(p, info) + sanad_logger.print_and_log(f"Uploaded {p}", "info") + success = True + except Exception as e: + attempts += 1 + sanad_logger.print_and_log(f"Upload failed ({e}), backoff {backoff}s", "warning") + time.sleep(backoff) + backoff = min(30.0, backoff * 2) + + time.sleep(self.poll_s) + except Exception as e: + sanad_logger.print_and_log(f"Upload loop error: {e}", "error") + time.sleep(5.0) + + +def start_uploader(photos_dir: Path = config.PHOTOS_DIR) -> UploadDaemon: + d = UploadDaemon(photos_dir) + d.start() + return d + + +if __name__ == "__main__": + logging.basicConfig(level=logging.INFO) + d = UploadDaemon() + d.start() + try: + while True: + time.sleep(1) + except KeyboardInterrupt: + d.stop() diff --git a/Web/direct_camera.css b/Web/direct_camera.css new file mode 100644 index 0000000..d45c41c --- /dev/null +++ b/Web/direct_camera.css @@ -0,0 +1,162 @@ +:root { + --bg: #eef2e9; + --panel: #f9fbf6; + --ink: #162015; + --muted: #5f6f5f; + --accent: #205f4a; + --line: #c9d4c4; + --danger: #8a2d24; +} + +* { + box-sizing: border-box; +} + +body { + margin: 0; + font-family: Georgia, "Times New Roman", serif; + background: linear-gradient(180deg, #f4f1e7 0%, var(--bg) 100%); + color: var(--ink); +} + +.wrap { + max-width: 1280px; + margin: 0 auto; + padding: 24px; +} + +.top { + display: grid; + grid-template-columns: 1.1fr 0.9fr; + gap: 24px; + align-items: start; +} + +.panel { + background: rgba(249, 251, 246, 0.94); + border: 1px solid var(--line); + border-radius: 18px; + padding: 18px; + box-shadow: 0 12px 30px rgba(22, 32, 21, 0.08); +} + +.panel-space { + margin-top: 24px; +} + +h1, +h2 { + margin: 0 0 12px; +} + +.actions { + display: flex; + flex-wrap: wrap; + gap: 10px; + margin: 12px 0 0; +} + +button, +.btn { + appearance: none; + border: 1px solid var(--accent); + background: var(--accent); + color: white; + padding: 10px 14px; + border-radius: 999px; + cursor: pointer; + font: inherit; + text-decoration: none; + display: inline-block; +} + +button.secondary, +.btn.secondary { + background: white; + color: var(--accent); +} + +button.danger, +.btn.danger { + background: white; + color: var(--danger); + border-color: var(--danger); +} + +select, +input[type="number"] { + appearance: none; + border: 1px solid var(--line); + background: white; + color: var(--ink); + padding: 10px 12px; + border-radius: 999px; + font: inherit; + min-width: 100px; +} + +.meta { + color: var(--muted); + margin: 6px 0; +} + +.preview { + width: 100%; + aspect-ratio: 4 / 3; + object-fit: cover; + border-radius: 14px; + background: #dbe3d6; + border: 1px solid var(--line); +} + +.status { + margin-top: 12px; + padding: 10px 12px; + border-radius: 12px; + background: #edf5eb; + border: 1px solid var(--line); + color: var(--muted); + white-space: pre-wrap; +} + +.grid { + display: grid; + grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); + gap: 18px; + margin-top: 20px; +} + +.card { + background: rgba(255, 255, 255, 0.78); + border: 1px solid var(--line); + border-radius: 16px; + padding: 12px; +} + +.thumb { + width: 100%; + aspect-ratio: 4 / 3; + object-fit: cover; + border-radius: 12px; + border: 1px solid var(--line); + background: #dde6d9; +} + +.name { + margin-top: 10px; + font-weight: 700; + overflow-wrap: anywhere; +} + +.row { + display: flex; + gap: 8px; + flex-wrap: wrap; + margin-top: 10px; +} + +@media (max-width: 900px) { + .top { + grid-template-columns: 1fr; + } +} diff --git a/Web/direct_camera.html b/Web/direct_camera.html new file mode 100644 index 0000000..b030957 --- /dev/null +++ b/Web/direct_camera.html @@ -0,0 +1,56 @@ + + + + + + Direct Camera Service + + + +
+
+
+

Direct Camera Service

+
Main camera service. No teleimager. Direct RealSense/OpenCV camera access only.
+ preview +
+ + + Download All +
+
Loading...
+
+ +
+

Camera

+
Sample captures are saved in photos/samples/.
+
+ + + + + +
+
Choose a preset or enter width, height, and fps manually. The stream will reopen with the new settings.
+
Checking camera...
+
+
+ +
+

Samples

+ +
+
+ + + + diff --git a/Web/direct_camera.js b/Web/direct_camera.js new file mode 100644 index 0000000..c00f4a8 --- /dev/null +++ b/Web/direct_camera.js @@ -0,0 +1,127 @@ +(function () { + function restartPreview() { + const img = document.getElementById("preview_img"); + if (!img) { + return; + } + img.src = `/preview.mjpg?t=${Date.now()}`; + } + + function setResolutionInputs(width, height, fps) { + document.getElementById("width_input").value = String(width || ""); + document.getElementById("height_input").value = String(height || ""); + document.getElementById("fps_input").value = String(fps || ""); + const preset = `${width}x${height}@${fps}`; + const sel = document.getElementById("resolution_select"); + const hasPreset = Array.from(sel.options).some((opt) => opt.value === preset); + sel.value = hasPreset ? preset : ""; + } + + async function api(path) { + const response = await fetch(path); + if (!response.ok) { + throw new Error(await response.text()); + } + return response.json(); + } + + function fmtBytes(n) { + if (n < 1024) { + return `${n} B`; + } + if (n < 1024 * 1024) { + return `${(n / 1024).toFixed(1)} KB`; + } + return `${(n / (1024 * 1024)).toFixed(1)} MB`; + } + + async function refreshAll() { + const [health, photos] = await Promise.all([api("/api/health"), api("/api/photos")]); + const camera = health.camera || {}; + const widthInput = document.getElementById("width_input"); + if (widthInput.dataset.initialized !== "1") { + setResolutionInputs(camera.requested_width, camera.requested_height, camera.requested_fps); + widthInput.dataset.initialized = "1"; + } + + document.getElementById("status").textContent = camera.ok + ? `Camera OK\nSource: ${camera.source}\nBackend: ${camera.backend}\nActive: ${camera.profile || "-"}\nRequested: ${camera.requested_profile}\nPreferred RS Serial: ${camera.preferred_realsense_serial || "-"}\nConfig RS Serial: ${camera.config_realsense_serial || "-"}\nFallback RS Serial: ${camera.configured_realsense_serial || "-"}\nActive RS Serial: ${camera.realsense_serial || "-"}\nSamples: ${photos.items.length}` + : `Camera not ready\nSource: ${camera.source}\nRequested: ${camera.requested_profile}\nPreferred RS Serial: ${camera.preferred_realsense_serial || "-"}\nConfig RS Serial: ${camera.config_realsense_serial || "-"}\nFallback RS Serial: ${camera.configured_realsense_serial || "-"}\nActive RS Serial: ${camera.realsense_serial || "-"}\nError: ${camera.last_error || "-"}`; + + document.getElementById("camera_status").textContent = JSON.stringify(health, null, 2); + + const gallery = document.getElementById("gallery"); + gallery.innerHTML = ""; + for (const item of photos.items) { + const card = document.createElement("article"); + card.className = "card"; + card.innerHTML = ` + +
${item.name}
+
${fmtBytes(item.size)}
+
+ Download + +
+ `; + gallery.appendChild(card); + } + + gallery.querySelectorAll("button.danger").forEach((btn) => { + btn.addEventListener("click", async () => { + const { name } = btn.dataset; + await api(`/api/delete?name=${encodeURIComponent(name)}`); + await refreshAll(); + }); + }); + } + + document.getElementById("capture_btn").addEventListener("click", async () => { + const status = document.getElementById("status"); + status.textContent = "Capturing..."; + try { + const resp = await api("/api/capture"); + status.textContent = `Saved: ${resp.name}`; + await refreshAll(); + } catch (e) { + status.textContent = `Capture failed\n${e.message}`; + } + }); + + document.getElementById("resolution_select").addEventListener("change", (e) => { + const value = e.target.value; + const match = value.match(/^(\d+)x(\d+)@(\d+)$/); + if (!match) { + return; + } + setResolutionInputs(Number(match[1]), Number(match[2]), Number(match[3])); + }); + + document.getElementById("apply_resolution_btn").addEventListener("click", async () => { + const width = Number(document.getElementById("width_input").value); + const height = Number(document.getElementById("height_input").value); + const fps = Number(document.getElementById("fps_input").value); + const status = document.getElementById("status"); + status.textContent = `Applying resolution ${width}x${height}@${fps}...`; + try { + const resp = await api( + `/api/set_resolution?width=${encodeURIComponent(width)}&height=${encodeURIComponent(height)}&fps=${encodeURIComponent(fps)}` + ); + const camera = resp.camera || {}; + setResolutionInputs(camera.requested_width, camera.requested_height, camera.requested_fps); + restartPreview(); + await refreshAll(); + } catch (e) { + status.textContent = `Resolution change failed\n${e.message}`; + } + }); + + document.getElementById("refresh_btn").addEventListener("click", refreshAll); + + refreshAll().catch((e) => { + document.getElementById("status").textContent = String(e); + }); + setInterval(() => { + refreshAll().catch(() => {}); + }, 10000); +})(); diff --git a/Web/gallery.html b/Web/gallery.html new file mode 100644 index 0000000..de03f8d --- /dev/null +++ b/Web/gallery.html @@ -0,0 +1,98 @@ + + + + + + Pixibot Photo Console + + + +
+
+
+
SP
+
+
AI Photographer
+
Pixibot Photo Console
+
+
+
+ + + + +
+
+ +
+
Photos folder: {{PHOTOS_DIR}}
+
Dashboard and camera controls stay live across mode switches.
+
+ +
+
+
+
+ + +
+
+ + + + + + + + diff --git a/Web/gallery.js b/Web/gallery.js new file mode 100644 index 0000000..02edac8 --- /dev/null +++ b/Web/gallery.js @@ -0,0 +1,1654 @@ +window.__previewEnabled = false; +window.__dashboardPoll = null; +window.__cameraSourcesCache = null; +window.__runtimeMode = "manual"; +window.__peoplePollCounter = 0; +window.__audioPromptLibrary = []; + +const RESOLUTION_PRESETS = [ + [1920, 1080, 30], + [1920, 1080, 15], + [1280, 720, 30], + [1280, 720, 15], + [960, 540, 30], + [960, 540, 15], + [848, 480, 60], + [848, 480, 30], + [640, 480, 60], + [640, 480, 30], + [640, 480, 15], + [424, 240, 60], + [424, 240, 30], +]; + +async function apiGet(path) { + const response = await fetch(path); + const raw = await response.text(); + let data = null; + try { + data = raw ? JSON.parse(raw) : null; + } catch (_e) { + if (!response.ok) { + throw new Error(raw || `HTTP ${response.status}`); + } + return raw; + } + if (!response.ok) { + throw new Error((data && (data.error || data.result)) || raw || `HTTP ${response.status}`); + } + return data; +} + +async function apiPostFormData(path, formData) { + const response = await fetch(path, { method: "POST", body: formData }); + const raw = await response.text(); + let data = null; + try { + data = raw ? JSON.parse(raw) : null; + } catch (_e) { + if (!response.ok) { + throw new Error(raw || `HTTP ${response.status}`); + } + return raw; + } + if (!response.ok) { + throw new Error((data && (data.error || data.result)) || raw || `HTTP ${response.status}`); + } + return data; +} + +async function apiPostJson(path, payload) { + const response = await fetch(path, { + method: "POST", + headers: { "Content-Type": "application/json" }, + body: JSON.stringify(payload || {}), + }); + const raw = await response.text(); + let data = null; + try { + data = raw ? JSON.parse(raw) : null; + } catch (_e) { + if (!response.ok) { + throw new Error(raw || `HTTP ${response.status}`); + } + return raw; + } + if (!response.ok) { + throw new Error((data && (data.error || data.result)) || raw || `HTTP ${response.status}`); + } + return data; +} + +function el(tag, cls, html) { + const node = document.createElement(tag); + if (cls) node.className = cls; + if (html !== undefined) node.innerHTML = html; + return node; +} + +function escapeHtml(text) { + return String(text || "") + .replace(/&/g, "&") + .replace(//g, ">") + .replace(/"/g, """) + .replace(/'/g, "'"); +} + +function formatSize(n) { + if (n < 1024) return `${n} B`; + if (n < 1024 * 1024) return `${(n / 1024).toFixed(1)} KB`; + return `${(n / (1024 * 1024)).toFixed(1)} MB`; +} + +function fmtNum(v, digits = 2) { + const n = Number(v); + if (Number.isNaN(n)) return "-"; + return n.toFixed(digits); +} + +function formatTime(ts) { + const n = Number(ts); + if (!Number.isFinite(n) || n <= 0) return "-"; + try { + return new Date(n * 1000).toLocaleString(); + } catch (_e) { + return "-"; + } +} + +function cameraStatusLines(camera) { + return [ + `Camera OK`, + `Source: ${camera.source || "-"}`, + `Backend: ${camera.backend || "-"}`, + `Active: ${camera.profile || "-"}`, + `Requested: ${camera.requested_profile || "-"}`, + `Preferred RS Serial: ${camera.preferred_realsense_serial || "-"}`, + `Active RS Serial: ${camera.realsense_serial || "-"}`, + ].join("\n"); +} + +function setPreviewEnabled(enabled) { + window.__previewEnabled = !!enabled; + const btn = document.getElementById("toggle_preview"); + const img = document.getElementById("live_preview"); + const placeholder = document.getElementById("preview_placeholder"); + const hint = document.getElementById("preview_hint"); + if (btn) btn.textContent = window.__previewEnabled ? "Hide Live Camera" : "Show Live Camera"; + if (!img) return; + if (window.__previewEnabled) { + img.style.display = "block"; + img.src = `/preview.mjpg?t=${Date.now()}`; + if (placeholder) placeholder.style.display = "none"; + if (hint) hint.textContent = "Live preview is running through the shared direct camera service."; + } else { + img.removeAttribute("src"); + img.src = ""; + img.style.display = "none"; + if (placeholder) placeholder.style.display = "grid"; + if (hint) hint.textContent = "Live preview is off. Turn it on only when needed."; + } +} + +function restartPreview() { + if (!window.__previewEnabled) return; + const img = document.getElementById("live_preview"); + if (!img) return; + img.src = `/preview.mjpg?t=${Date.now()}`; +} + +function setResolutionInputs(width, height, fps) { + const widthInput = document.getElementById("width_input"); + const heightInput = document.getElementById("height_input"); + const fpsInput = document.getElementById("fps_input"); + const presetSelect = document.getElementById("resolution_select"); + if (widthInput) widthInput.value = String(width || ""); + if (heightInput) heightInput.value = String(height || ""); + if (fpsInput) fpsInput.value = String(fps || ""); + if (presetSelect) { + const preset = `${width}x${height}@${fps}`; + const hasPreset = Array.from(presetSelect.options).some((opt) => opt.value === preset); + presetSelect.value = hasPreset ? preset : ""; + } +} + +function renderResolutionOptions() { + return [ + '', + ...RESOLUTION_PRESETS.map(([w, h, fps]) => ``), + ].join(""); +} + +function renderSourceOptions(cameraSources) { + const options = (cameraSources && cameraSources.options) || []; + if (!options.length) { + return ''; + } + return options + .map((item) => ``) + .join(""); +} + +function renderCameraInventory(cameraSources, camera) { + const lines = []; + const preferred = String((cameraSources && cameraSources.preferred_realsense_serial) || (camera && camera.preferred_realsense_serial) || "").trim(); + const active = String((camera && camera.realsense_serial) || "").trim(); + const activeSource = String((camera && camera.source) || "").trim(); + + if (preferred) { + lines.push(`Preferred RealSense: ${preferred}`); + } + if (active) { + lines.push(`Active RealSense: ${active}`); + } + + const rsDevices = (cameraSources && cameraSources.realsense_devices) || []; + if (rsDevices.length) { + lines.push("RealSense devices:"); + for (const item of rsDevices) { + const serial = String(item.serial || "").trim() || "-"; + const name = String(item.name || "Intel RealSense").trim(); + const tags = []; + if (item.is_preferred) tags.push("default"); + if (item.is_active) tags.push("live"); + lines.push(`- ${name} [${serial}]${tags.length ? ` (${tags.join(", ")})` : ""}`); + } + } + + const videoDevices = (cameraSources && cameraSources.video_devices) || []; + if (videoDevices.length) { + lines.push("Video nodes:"); + for (const item of videoDevices) { + const name = String(item.name || "").trim(); + const label = String(item.value || item.label || "").trim(); + const suffix = label === activeSource ? " (live)" : ""; + lines.push(`- ${label}${name ? ` :: ${name}` : ""}${suffix}`); + } + } + + return lines.join("\n") || "No camera inventory available."; +} + +function personImageUrl(personId, kind) { + return `/api/person_image?id=${encodeURIComponent(personId)}&kind=${encodeURIComponent(kind)}&t=${Date.now()}`; +} + +function renderPeopleCards(items) { + if (!items.length) { + return '
No people enrolled yet.
'; + } + return items.map((person) => { + const personId = String(person.person_id || ""); + const title = escapeHtml(person.display_name || person.short_id || personId || "guest"); + const meta = [ + `ID: ${escapeHtml(person.short_id || personId || "-")}`, + `Created: ${escapeHtml(person.created_date || "-")}`, + `Seen: ${person.times_seen ?? 0}`, + `Samples: ${person.sample_count ?? 0}`, + `Last Seen: ${escapeHtml(formatTime(person.last_seen_at || 0))}`, + ].join("\n"); + return ` +
+
+ ${title} face + ${title} scene +
+
+
${title}
+
${meta}
+
+ Download + + +
+
+
+ `; + }).join(""); +} + +function selectedCameraSerial(source, cameraSources, camera) { + const src = String(source || "").trim(); + if (src.startsWith("realsense:")) { + return src.split(":", 2)[1] || ""; + } + if (src === "realsense") { + return String((camera && camera.realsense_serial) || (cameraSources && cameraSources.preferred_realsense_serial) || "").trim(); + } + const devices = (cameraSources && cameraSources.realsense_devices) || []; + const exact = devices.find((item) => item.value === src); + return String((exact && exact.serial) || "").trim(); +} + +function formatPromptKeyLabel(key) { + return String(key || "") + .split("_") + .filter(Boolean) + .map((part) => part.charAt(0).toUpperCase() + part.slice(1)) + .join(" "); +} + +function promptFilenameForKey(key) { + const item = (window.__audioPromptLibrary || []).find((entry) => entry.key === key); + return item ? String(item.filename || `${key}.wav`) : `${key}.wav`; +} + +function promptTextForKey(key) { + const item = (window.__audioPromptLibrary || []).find((entry) => entry.key === key); + return item ? String(item.text || "") : ""; +} + +function populateAudioPromptRecorder(prompts) { + window.__audioPromptLibrary = Array.isArray(prompts) ? prompts.slice() : []; + const keySelect = document.getElementById("audio_prompt_record_key"); + const filenameInput = document.getElementById("audio_prompt_record_filename"); + const textArea = document.getElementById("audio_prompt_record_text"); + if (!keySelect || !filenameInput || !textArea) return; + + const previousKey = keySelect.value; + keySelect.innerHTML = (window.__audioPromptLibrary || []) + .map((item) => ``) + .join(""); + if (previousKey && (window.__audioPromptLibrary || []).some((item) => item.key === previousKey)) { + keySelect.value = previousKey; + } + const activeKey = keySelect.value || ((window.__audioPromptLibrary[0] && window.__audioPromptLibrary[0].key) || ""); + if (activeKey) { + keySelect.value = activeKey; + if (!filenameInput.value || filenameInput.dataset.autofill !== "0") { + filenameInput.value = promptFilenameForKey(activeKey); + filenameInput.dataset.autofill = "1"; + } + if (!textArea.value || textArea.dataset.autofill !== "0") { + textArea.value = promptTextForKey(activeKey); + textArea.dataset.autofill = "1"; + } + } +} + +async function refreshAudioPromptRecordStatus() { + const status = document.getElementById("audio_prompt_record_status_box"); + if (!status) return; + try { + const res = await apiGet("/api/audio_prompt_record_status"); + const s = res.status || {}; + if (s.running) { + status.textContent = [ + `Recording prompt: ${s.key || "-"}`, + `Filename: ${s.filename || "-"}`, + `Started: ${formatTime(s.started_at || 0)}`, + "Status: generating Gemini audio and recording speaker output...", + ].join("\n"); + return; + } + if (s.finished_at) { + if (s.ok) { + const result = s.result || {}; + status.textContent = [ + `Recorded prompt: ${result.key || s.key || "-"}`, + `Saved speaker file: ${result.filename || s.filename || "-"}`, + `Saved raw file: ${result.raw_filename || "-"}`, + `Finished: ${formatTime(s.finished_at || 0)}`, + ].join("\n"); + } else { + status.textContent = [ + `Prompt recording failed for ${s.key || "-"}`, + `Finished: ${formatTime(s.finished_at || 0)}`, + `${s.error || "Unknown error"}`, + ].join("\n"); + } + return; + } + status.textContent = "Prompt recorder idle."; + } catch (e) { + status.textContent = `Prompt recorder unavailable\n${e.message}`; + } +} + +function renderAudioPromptCards(items) { + if (!items.length) { + return '
No audio prompt keys available.
'; + } + return items.map((item) => { + const exists = !!item.exists; + const key = String(item.key || ""); + const filename = String(item.filename || ""); + return ` +
+
+
+
${escapeHtml(formatPromptKeyLabel(key))}
+
${escapeHtml(key)}
+
+
+ ${exists ? "uploaded" : "missing"} +
+
+
${escapeHtml(item.text || "")}
+
+ File: ${escapeHtml(filename || "-")}
+ Size: ${formatSize(item.size || 0)}
+ Raw: ${item.raw_exists ? escapeHtml(item.raw_filename || "-") : "missing"}
+ Updated: ${formatTime(item.mtime || 0)} +
+
+ + + ${exists ? `Download` : ""} + +
+
+ `; + }).join(""); +} + +async function refreshAudioPromptPanel() { + const list = document.getElementById("audio_prompt_list"); + const status = document.getElementById("audio_prompt_status_box"); + const modeToggle = document.getElementById("audio_prompt_mode_toggle"); + const toggle = document.getElementById("audio_prompt_fallback_toggle"); + const fileInput = document.getElementById("audio_prompt_upload_file"); + if (!list || !status || !toggle || !fileInput || !modeToggle) return; + try { + const res = await apiGet("/api/audio_prompts"); + const prompts = res.prompts || []; + const promptMode = String(res.mode || "audio").trim().toLowerCase() === "gemini" ? "gemini" : "audio"; + const fallbackToGemini = !!res.fallback_to_gemini; + const available = prompts.filter((item) => item.exists).length; + modeToggle.dataset.mode = promptMode; + modeToggle.textContent = promptMode === "gemini" ? "Situation Speech: GEMINI" : "Situation Speech: AUDIO"; + toggle.dataset.enabled = fallbackToGemini ? "1" : "0"; + toggle.textContent = fallbackToGemini ? "Gemini Fallback: ON" : "Gemini Fallback: OFF"; + populateAudioPromptRecorder(prompts); + status.textContent = [ + `Prompt folder: ${res.dir || "AI_Photographer/Data/Audio"}`, + `Available clips: ${available} / ${prompts.length}`, + `Fixed AI situation speech: ${promptMode.toUpperCase()}`, + `Missing-clip Gemini fallback: ${fallbackToGemini ? "ON" : "OFF"}`, + promptMode === "audio" + ? "Recorded audio is the default for AI situations such as greeting on detection, photo request, countdown, refusal, retake, and thank-you. After those fixed prompts finish, normal Gemini conversation continues." + : "Gemini is currently speaking the fixed AI situation prompts directly. General Gemini conversation remains available before and after the photo flow." + ].join("\n"); + list.innerHTML = renderAudioPromptCards(prompts); + + list.querySelectorAll(".audio-prompt-upload").forEach((btn) => { + btn.addEventListener("click", () => { + fileInput.dataset.key = btn.dataset.key || ""; + fileInput.dataset.filename = btn.dataset.filename || ""; + fileInput.click(); + }); + }); + list.querySelectorAll(".audio-prompt-record").forEach((btn) => { + btn.addEventListener("click", () => { + const key = btn.dataset.key || ""; + const keySelect = document.getElementById("audio_prompt_record_key"); + const filenameInput = document.getElementById("audio_prompt_record_filename"); + const textArea = document.getElementById("audio_prompt_record_text"); + if (keySelect) keySelect.value = key; + if (filenameInput) { + filenameInput.value = promptFilenameForKey(key); + filenameInput.dataset.autofill = "1"; + } + if (textArea) { + textArea.value = promptTextForKey(key); + textArea.dataset.autofill = "1"; + textArea.focus(); + } + }); + }); + list.querySelectorAll(".audio-prompt-delete").forEach((btn) => { + btn.addEventListener("click", async () => { + const key = btn.dataset.key || ""; + if (!key) return; + if (!confirm(`Delete audio prompt clip for ${key}?`)) return; + await apiGet(`/api/delete_audio_prompt?key=${encodeURIComponent(key)}`); + await refreshAudioPromptPanel(); + await refreshAudioPromptRecordStatus(); + }); + }); + } catch (e) { + status.textContent = `Audio prompt library unavailable\n${e.message}`; + list.innerHTML = ""; + toggle.textContent = "Gemini Fallback"; + delete toggle.dataset.enabled; + } +} + +function bindTopActions() { + const topStatus = document.getElementById("top_status"); + const topCapture = document.getElementById("top_capture"); + const topTest = document.getElementById("top_test"); + const topFix = document.getElementById("top_fix"); + + if (topStatus) { + topStatus.onclick = () => window.open("/api/status", "_blank", "noopener"); + } + if (topCapture) { + topCapture.onclick = async () => { + try { + const res = await apiGet("/api/capture"); + alert(`Captured:\n${res.result || res.path || "OK"}`); + await renderPhotos(); + } catch (e) { + alert(`Capture failed: ${e.message}`); + } + }; + } + if (topTest) { + topTest.onclick = async () => { + try { + const res = await apiGet("/api/test"); + alert(JSON.stringify(res, null, 2)); + } catch (e) { + alert(`Camera test failed: ${e.message}`); + } + }; + } + if (topFix) { + topFix.onclick = async () => { + if (!confirm("Run the camera fix flow?")) return; + try { + const res = await apiGet("/api/fix"); + alert(JSON.stringify(res, null, 2)); + } catch (e) { + alert(`Fix failed: ${e.message}`); + } + }; + } +} + +async function refreshAutonomousPanel() { + const panel = document.getElementById("auto_state_panel"); + if (!panel) return; + try { + const r = await apiGet("/api/autonomous_state"); + if (!r.ok) { + panel.innerHTML = "Autonomous state unavailable"; + return; + } + const s = r.state || {}; + panel.innerHTML = ` +
+
State${escapeHtml(s.state || "IDLE")}
+
Session${s.session_id ?? 0}
+
Detector${escapeHtml((s.detector_backend || "normal").toUpperCase())}
+
YOLO Runtime${escapeHtml((s.yolo_runtime || "-").toUpperCase())}
+
AI Blocked${s.ai_blocked ? "Yes" : "No"}
+
Block Reason${escapeHtml(s.ai_block_reason || "-")}
+
People${s.person_count ?? 0}
+
Faces${s.face_count ?? 0}
+
Group${s.group_detected ? `Yes (${s.group_size ?? 0})` : "No"}
+
Intent${s.intent_detected ? "Yes" : "No"}
+
Depth${s.depth_m == null ? "-" : fmtNum(s.depth_m, 2)}
+
Approach${fmtNum(s.approach_speed_mps || 0, 2)} m/s
+
Guest${escapeHtml(s.recognized_person_label || "-")}
+
Known Guest${s.recognized_person_known ? "Yes" : "No"}
+
Match${s.recognized_person_match_score ? fmtNum(s.recognized_person_match_score, 2) : "-"}
+
+ `; + } catch (_e) { + panel.innerHTML = "Autonomous state unavailable"; + } +} + +async function refreshAiReadinessPanel() { + const panel = document.getElementById("ai_readiness_panel"); + if (!panel) return; + try { + const data = await apiGet("/api/ai_readiness"); + panel.innerHTML = ` +
+
Ready${data.ok ? "Yes" : "No"}
+
Backend${escapeHtml((data.backend || "normal").toUpperCase())}
+
Runtime${escapeHtml((data.yolo_runtime || "-").toUpperCase())}
+
YOLO Loaded${data.yolo_loaded ? "Yes" : "No"}
+
Person Model${data.person_model_ok ? "Yes" : "No"}
+
Face Model${data.face_model_ok ? "Yes" : "No"}
+
Strict Required${data.strict_required ? "Yes" : "No"}
+
Block Reason${escapeHtml(data.block_reason || "-")}
+
+ `; + } catch (_e) { + panel.innerHTML = "AI readiness unavailable"; + } +} + +async function refreshRuntimeHealthPanel() { + const panel = document.getElementById("runtime_health_panel"); + if (!panel) return; + try { + const r = await apiGet("/api/runtime_health"); + if (!r.ok) { + panel.innerHTML = "Runtime health unavailable"; + return; + } + const h = r.health || {}; + panel.innerHTML = ` +
+
WS${h.ws_connected ? "Connected" : "Down"}
+
WS State${escapeHtml(h.ws_state || "-")}
+
Mic Enabled${h.mic_enabled ? "Yes" : "No"}
+
Mic${escapeHtml(h.mic_state || "-")}
+
Speaker${escapeHtml(h.speaker_state || "-")}
+
Gate${h.audio_gate_open ? "Open" : "Closed"}
+
Mic Restarts${h.mic_restarts ?? 0}
+
Speaker Restarts${h.speaker_restarts ?? 0}
+
WS Restarts${h.ws_restarts ?? 0}
+
Last WS Error${escapeHtml(h.ws_last_error || "-")}
+
+ `; + } catch (_e) { + panel.innerHTML = "Runtime health unavailable"; + } +} + +async function renderPeople() { + const list = document.getElementById("people_list"); + const status = document.getElementById("people_status_box"); + if (!list || !status) return; + try { + const res = await apiGet("/api/people"); + const people = res.people || []; + status.textContent = people.length + ? `Registered guests: ${people.length}\nReturning guests are recognized from saved face samples in photos/people/.` + : "No people enrolled yet. AI mode will create a guest profile the first time a single face is confirmed."; + list.innerHTML = renderPeopleCards(people); + list.querySelectorAll(".person-delete").forEach((btn) => { + btn.addEventListener("click", async () => { + const personId = btn.dataset.id || ""; + if (!personId) return; + if (!confirm(`Delete person ${personId}?`)) return; + await apiGet(`/api/delete_person?id=${encodeURIComponent(personId)}`); + await renderPeople(); + }); + }); + list.querySelectorAll(".person-add-photo").forEach((btn) => { + btn.addEventListener("click", () => { + const personId = btn.dataset.id || ""; + const input = document.getElementById("people_upload_file"); + if (!input) return; + input.dataset.personId = personId; + input.click(); + }); + }); + } catch (e) { + status.textContent = `People registry unavailable\n${e.message}`; + list.innerHTML = ""; + } +} + +async function refreshCameraPanel() { + const statusBox = document.getElementById("camera_status_box"); + const infoPanel = document.getElementById("camera_info_panel"); + const chipRow = document.getElementById("camera_chip_row"); + const selector = document.getElementById("camera_source_select"); + const sourceMeta = document.getElementById("camera_source_meta"); + const inventoryBox = document.getElementById("camera_inventory_box"); + if (!statusBox || !infoPanel || !chipRow) return; + + try { + const [health, cameraSources] = await Promise.all([ + apiGet("/api/camera_health"), + selector && !window.__cameraSourcesCache ? apiGet("/api/camera_sources") : Promise.resolve(window.__cameraSourcesCache || null), + ]); + + if (cameraSources && cameraSources.ok) { + window.__cameraSourcesCache = cameraSources; + if (selector) { + const currentValue = selector.dataset.initialized === "1" + ? (selector.value || cameraSources.selected_source || "realsense") + : (cameraSources.selected_source || "realsense"); + selector.innerHTML = renderSourceOptions(cameraSources); + selector.value = currentValue; + if (!selector.value) selector.value = cameraSources.selected_source || "realsense"; + selector.dataset.initialized = "1"; + } + if (sourceMeta) { + const rsCount = (cameraSources.realsense_devices || []).length; + const vidCount = (cameraSources.video_devices || []).length; + const activeLabel = (cameraSources.active_device && cameraSources.active_device.label) || cameraSources.active_source || "-"; + sourceMeta.textContent = `Preferred RS: ${cameraSources.preferred_realsense_serial || "-"} | Active: ${activeLabel} | RealSense devices: ${rsCount} | Video nodes: ${vidCount}`; + } + } + + const camera = (health && health.camera) || {}; + statusBox.textContent = camera.ok ? cameraStatusLines(camera) : `Camera not ready\nSource: ${camera.source || "-"}\nRequested: ${camera.requested_profile || "-"}\nError: ${camera.last_error || "-"}`; + chipRow.innerHTML = ` +
Requested${escapeHtml(camera.requested_source || camera.source || "-")}
+
Backend${escapeHtml(camera.backend || "-")}
+
Active Profile${escapeHtml(camera.profile || "-")}
+
Frame Time${escapeHtml(formatTime(camera.frame_time))}
+ `; + infoPanel.textContent = JSON.stringify(health, null, 2); + if (inventoryBox) { + inventoryBox.textContent = renderCameraInventory(cameraSources, camera); + } + + const widthInput = document.getElementById("width_input"); + if (widthInput && widthInput.dataset.initialized !== "1") { + setResolutionInputs(camera.requested_width, camera.requested_height, camera.requested_fps); + widthInput.dataset.initialized = "1"; + } + } catch (e) { + statusBox.textContent = `Camera service unavailable\n${e.message}`; + infoPanel.textContent = JSON.stringify({ ok: false, error: e.message }, null, 2); + chipRow.innerHTML = ""; + if (inventoryBox) inventoryBox.textContent = "Camera inventory unavailable."; + } +} + +function renderReplayList(items, opts = {}) { + const manualMode = !!opts.manualMode; + const testRunning = !!opts.testRunning; + if (!items.length) { + return '
No replay files found.
'; + } + return items.map((item) => { + const tags = []; + if (item.active) tags.push('active'); + if (item.greeting) tags.push('greeting'); + if (!item.trigger_ok) tags.push('triggerless'); + return ` +
+
+
${escapeHtml(item.name)}
+
${formatSize(item.size || 0)} ยท ${formatTime(item.mtime || 0)}
+
+
${tags.join("")}
+
+ + + + Download + +
+
+ `; + }).join(""); +} + +function renderReplayRecordStatus(status) { + if (!status || !status.started_at) { + return "Recorder idle."; + } + if (status.running) { + return `Recording ${status.name || "-"} for ${status.seconds || 0}s...\nOutput: ${status.output || "-"}`; + } + if (status.ok) { + return `Recording saved\n${status.output || "-"}\nFinished: ${formatTime(status.finished_at || 0)}`; + } + return `Recorder error\n${status.error || "-"}${(status.output ? `\nOutput: ${status.output}` : "")}`; +} + +function renderReplayTestStatus(status) { + if (!status || !status.started_at) { + return "Replay test idle."; + } + if (status.running) { + return `Testing replay\n${status.name || "-"}`; + } + if (status.ok) { + return `Replay test complete\n${status.result || status.name || "-"}`; + } + return `Replay test error\n${status.error || "-"}`; +} + +async function refreshReplayPanel() { + const selector = document.getElementById("replay_select"); + const activeNote = document.getElementById("replay_active_note"); + const list = document.getElementById("replay_manager_list"); + const status = document.getElementById("replay_record_status"); + const testStatus = document.getElementById("replay_test_status"); + const greetingSelect = document.getElementById("opt_greeting_replay_file"); + try { + const [replayResp, activeResp, recordResp, testResp] = await Promise.all([ + apiGet("/api/replays"), + apiGet("/api/get_replay"), + apiGet("/api/replay_record_status").catch(() => ({ ok: false, status: {} })), + apiGet("/api/replay_test_status").catch(() => ({ ok: false, status: {} })), + ]); + const items = replayResp.items || []; + const activeReplay = activeResp.replay || ""; + const replayTest = testResp.status || {}; + const manualMode = window.__runtimeMode === "manual"; + + if (selector) { + selector.innerHTML = items.map((item) => ``).join(""); + selector.value = activeReplay || (items[0] && items[0].name) || ""; + } + if (activeNote) { + activeNote.textContent = activeReplay + ? `Active replay: ${activeReplay}. Manual R2+X and AI photo capture use this replay when AI capture replay is enabled. Replay recording and replay test are manual-mode only.` + : "No active replay selected."; + } + if (list) { + list.innerHTML = renderReplayList(items, { manualMode, testRunning: !!replayTest.running }); + list.querySelectorAll(".replay-test").forEach((btn) => { + btn.addEventListener("click", async () => { + const name = btn.dataset.name || ""; + await apiGet(`/api/test_replay?name=${encodeURIComponent(name)}`); + await refreshReplayPanel(); + }); + }); + list.querySelectorAll(".replay-use").forEach((btn) => { + btn.addEventListener("click", async () => { + await apiGet(`/api/set_replay?name=${encodeURIComponent(btn.dataset.name || "")}`); + await refreshReplayPanel(); + }); + }); + list.querySelectorAll(".replay-rename").forEach((btn) => { + btn.addEventListener("click", async () => { + const oldName = btn.dataset.name || ""; + const currentLeaf = oldName.split("/").pop() || oldName; + const nextName = window.prompt("Rename replay", currentLeaf); + if (!nextName || !nextName.trim()) return; + await apiGet( + `/api/rename_replay?old=${encodeURIComponent(oldName)}&new=${encodeURIComponent(nextName.trim())}` + ); + await refreshReplayPanel(); + }); + }); + list.querySelectorAll(".replay-delete").forEach((btn) => { + btn.addEventListener("click", async () => { + const name = btn.dataset.name || ""; + if (!confirm(`Delete replay ${name}?`)) return; + await apiGet(`/api/delete_replay?name=${encodeURIComponent(name)}`); + await refreshReplayPanel(); + }); + }); + } + if (status) { + status.textContent = renderReplayRecordStatus(recordResp.status || {}); + } + if (testStatus) { + testStatus.textContent = renderReplayTestStatus(replayTest); + } + if (greetingSelect) { + const current = greetingSelect.dataset.current || greetingSelect.value; + greetingSelect.innerHTML = items.map((item) => ``).join(""); + if (current) greetingSelect.value = current; + if (!greetingSelect.value && items.length) greetingSelect.value = items[0].name; + delete greetingSelect.dataset.current; + } + } catch (e) { + if (activeNote) activeNote.textContent = `Replay inventory unavailable: ${e.message}`; + if (list) list.innerHTML = ""; + if (status) status.textContent = `Recorder unavailable\n${e.message}`; + if (testStatus) testStatus.textContent = `Replay test unavailable\n${e.message}`; + } +} + +async function renderControls() { + const ctrl = document.getElementById("controls"); + const [modeResp, micResp, cameraSources] = await Promise.all([ + apiGet("/api/mode"), + apiGet("/api/mic"), + apiGet("/api/camera_sources").catch(() => ({ ok: false, options: [] })), + ]); + + window.__cameraSourcesCache = cameraSources && cameraSources.ok ? cameraSources : null; + + const mode = modeResp.mode || "manual"; + window.__runtimeMode = mode; + const modePolicy = modeResp.policy || {}; + const micEnabled = !!(micResp.options && micResp.options.mic_enabled); + + let backend = "normal"; + let strictLocked = false; + let aiOptions = { + hard_target_lock_enabled: true, + retake_prompt_enabled: true, + autonomous_greeting_replay_enabled: true, + autonomous_greeting_replay_file: "right_hand_up.jsonl", + autonomous_capture_replay_enabled: true, + face_recognition_enabled: true, + face_recognition_threshold: 0.88, + active_replay: "photo_G3.jsonl", + }; + let aiReadinessMarkup = ""; + let aiOptionsMarkup = ""; + if (mode === "ai") { + try { + const bj = await apiGet("/api/detector_backend"); + backend = bj.backend || "normal"; + strictLocked = !!bj.locked; + } catch (_e) {} + + try { + const oj = await apiGet("/api/ai_options"); + if (oj && oj.ok && oj.options) aiOptions = oj.options; + } catch (_e) {} + + aiReadinessMarkup = ` +
+
+
+
AI Vision
+

Detection Backend

+
+
+
+ + +
+ ${strictLocked ? '
Strict AI profile active: backend is locked to YOLO in AI mode.
' : ""} +
Loading AI readiness...
+
+ `; + + aiOptionsMarkup = ` +
+
+
+
AI Session
+

Session Options

+
+
+
+ + + + + +
+
+ + + +
+
AI welcomes approaching guests, asks if they want a photo, guides them into frame, and captures using the active replay when enabled. Returning-guest recognition stores samples in photos/people/. Active replay: ${escapeHtml(aiOptions.active_replay || "-")}.
+
+ `; + } + + const recorderMarkup = mode === "manual" + ? ` +
+
+
+
Recorder
+

Record New Replay

+
+
+
+ + + +
+
Recorded files are saved directly in Data/G1 and become available in the active replay selector.
+
Recorder idle.
+
+ ` + : ` +
+
+
+
Recorder
+

Manual Mode Only

+
+
+
Replay recording and replay test are disabled outside manual mode. Replay selection, rename, upload, download, and delete remain available.
+
Recorder idle.
+
+ `; + + ctrl.innerHTML = ` +
+
+
+
+
+
Runtime Mode
+

${escapeHtml(mode.toUpperCase())}

+
+
+
+ + +
+
${escapeHtml(modePolicy.description || "")}
+
+ +
+
+
+
Gemini Mic
+

${micEnabled ? "Microphone ON" : "Microphone OFF"}

+
+
+
+ +
+
Microphone audio can stay on in both modes. Manual mode still disables mapped photo commands and AI detection.
+
+
+ +
+
+
+
Camera Console
+

Live Camera

+
+
+
+
+
+
Live preview is off.
Use the toggle below when you need a live camera feed.
+ live preview +
+
+ + + +
+
Live preview is off. Turn it on only when needed.
+
+
Loading camera status...
+
+
+
+ + + +
+
Loading available camera sources...
+
Loading camera inventory...
+
+ + + + + +
+
Use a preset or enter width, height, and fps manually. The direct camera service will reopen with the requested settings.
+
Checking camera...
+
+
+
+ +
+
+
+
+
Replay
+

Capture Motion

+
+
+
+ + +
+
Loading replay status...
+
+ + ${recorderMarkup} +
+ +
+
+
+
Replay Files
+

Replay Inventory

+
+
+
+ + +
+
Replay test idle.
+
+
+ +
+
+
+
AI Voice Assets
+

Audio Prompt Library

+
+
+ + +
+
+
Upload prerecorded WAV clips for fixed AI situation prompts. In audio mode, AI detection, confirmation, countdown, retake, and thank-you situations use these clips first. Gemini can be switched back on for those same situations from the dashboard.
+
Loading audio prompt library...
+
+
+ + + +
+ +
Prompt recorder idle.
+
+ +
+
+ +
+
+
+
Actions
+

Operator Actions

+
+
+
+ + + + + + +
+
+ + ${aiReadinessMarkup} + ${aiOptionsMarkup} + +
+
+
+
+
AI State
+

Autonomous State

+
+
+
Loading...
+
+ +
+
+
+
Runtime
+

Runtime Health

+
+
+
Loading...
+
+
+
+ `; + + if (mode === "ai") { + setTimeout(() => { + const bSel = document.getElementById("det_backend_select"); + const bBtn = document.getElementById("det_backend_set"); + if (bSel) { + bSel.value = backend; + if (strictLocked) { + bSel.disabled = true; + bSel.value = "yolo"; + } + } + if (bBtn && strictLocked) { + bBtn.disabled = true; + } + const greetingSel = document.getElementById("opt_greeting_replay_file"); + if (greetingSel) { + greetingSel.dataset.current = aiOptions.autonomous_greeting_replay_file || ""; + } + }, 0); + } + + document.getElementById("mode_select").value = mode; + + document.getElementById("mode_set").addEventListener("click", async () => { + const sel = document.getElementById("mode_select").value; + await apiGet(`/api/set_mode?mode=${encodeURIComponent(sel)}`); + await renderControls(); + await renderPhotos(); + }); + + document.getElementById("mic_toggle").addEventListener("click", async () => { + const nextEnabled = micEnabled ? 0 : 1; + await apiGet(`/api/set_mic?enabled=${nextEnabled}`); + await renderControls(); + }); + + const replaySet = document.getElementById("replay_set"); + if (replaySet) { + replaySet.addEventListener("click", async () => { + const name = encodeURIComponent(document.getElementById("replay_select").value); + await apiGet(`/api/set_replay?name=${name}`); + await refreshReplayPanel(); + }); + } + + const replayRecordStart = document.getElementById("replay_record_start"); + if (replayRecordStart) { + replayRecordStart.addEventListener("click", async () => { + const name = (document.getElementById("replay_record_name").value || "").trim(); + const seconds = Number(document.getElementById("replay_record_seconds").value || "15"); + if (!name) { + alert("Enter a replay file name first."); + return; + } + await apiGet(`/api/replay_record_start?name=${encodeURIComponent(name)}&seconds=${encodeURIComponent(seconds)}`); + await refreshReplayPanel(); + }); + } + + const replayUploadBtn = document.getElementById("replay_upload_btn"); + const replayUploadFile = document.getElementById("replay_upload_file"); + if (replayUploadBtn && replayUploadFile) { + replayUploadBtn.addEventListener("click", () => replayUploadFile.click()); + replayUploadFile.addEventListener("change", async () => { + const file = replayUploadFile.files && replayUploadFile.files[0]; + if (!file) return; + const requestedName = window.prompt("Replay name", file.name) || file.name; + const form = new FormData(); + form.append("file", file, file.name); + form.append("name", requestedName); + try { + await apiPostFormData("/api/upload_replay", form); + await refreshReplayPanel(); + } catch (e) { + alert(`Replay upload failed: ${e.message}`); + } finally { + replayUploadFile.value = ""; + } + }); + } + + const audioPromptUploadFile = document.getElementById("audio_prompt_upload_file"); + const audioPromptModeToggle = document.getElementById("audio_prompt_mode_toggle"); + const audioPromptFallbackToggle = document.getElementById("audio_prompt_fallback_toggle"); + const audioPromptRecordKey = document.getElementById("audio_prompt_record_key"); + const audioPromptRecordFilename = document.getElementById("audio_prompt_record_filename"); + const audioPromptRecordText = document.getElementById("audio_prompt_record_text"); + const audioPromptRecordStart = document.getElementById("audio_prompt_record_start"); + if (audioPromptUploadFile) { + audioPromptUploadFile.addEventListener("change", async () => { + const file = audioPromptUploadFile.files && audioPromptUploadFile.files[0]; + const key = audioPromptUploadFile.dataset.key || ""; + if (!file || !key) return; + const defaultName = audioPromptUploadFile.dataset.filename || `${key}.wav`; + const requestedName = window.prompt("Audio filename", defaultName) || defaultName; + const form = new FormData(); + form.append("key", key); + form.append("file", file, file.name); + form.append("filename", requestedName); + try { + await apiPostFormData("/api/upload_audio_prompt", form); + await refreshAudioPromptPanel(); + } catch (e) { + alert(`Audio prompt upload failed: ${e.message}`); + } finally { + audioPromptUploadFile.value = ""; + delete audioPromptUploadFile.dataset.key; + delete audioPromptUploadFile.dataset.filename; + } + }); + } + if (audioPromptModeToggle) { + audioPromptModeToggle.addEventListener("click", async () => { + const current = String(audioPromptModeToggle.dataset.mode || "audio").trim().toLowerCase(); + const next = current === "gemini" ? "audio" : "gemini"; + await apiGet(`/api/set_audio_prompt_mode?mode=${encodeURIComponent(next)}`); + await refreshAudioPromptPanel(); + }); + } + if (audioPromptFallbackToggle) { + audioPromptFallbackToggle.addEventListener("click", async () => { + const current = audioPromptFallbackToggle.dataset.enabled === "1"; + await apiGet(`/api/set_audio_prompt_fallback?enabled=${current ? 0 : 1}`); + await refreshAudioPromptPanel(); + }); + } + if (audioPromptRecordKey && audioPromptRecordFilename && audioPromptRecordText) { + audioPromptRecordKey.addEventListener("change", () => { + const key = audioPromptRecordKey.value || ""; + audioPromptRecordFilename.value = promptFilenameForKey(key); + audioPromptRecordFilename.dataset.autofill = "1"; + audioPromptRecordText.value = promptTextForKey(key); + audioPromptRecordText.dataset.autofill = "1"; + }); + audioPromptRecordFilename.addEventListener("input", () => { + audioPromptRecordFilename.dataset.autofill = "0"; + }); + audioPromptRecordText.addEventListener("input", () => { + audioPromptRecordText.dataset.autofill = "0"; + }); + } + if (audioPromptRecordStart && audioPromptRecordKey && audioPromptRecordFilename && audioPromptRecordText) { + audioPromptRecordStart.addEventListener("click", async () => { + const key = (audioPromptRecordKey.value || "").trim(); + const filename = (audioPromptRecordFilename.value || "").trim(); + const text = (audioPromptRecordText.value || "").trim(); + if (!key) { + alert("Select a prompt key first."); + return; + } + if (!text) { + alert("Prompt text is required."); + return; + } + try { + await apiPostJson("/api/audio_prompt_record", { key, filename, text }); + await refreshAudioPromptRecordStatus(); + } catch (e) { + alert(`Prompt recording failed: ${e.message}`); + } + }); + } + + const peopleUploadBtn = document.getElementById("people_upload_btn"); + const peopleUploadFile = document.getElementById("people_upload_file"); + const peopleResetBtn = document.getElementById("people_reset_btn"); + if (peopleUploadBtn && peopleUploadFile) { + peopleUploadBtn.addEventListener("click", () => { + peopleUploadFile.dataset.personId = ""; + peopleUploadFile.click(); + }); + peopleUploadFile.addEventListener("change", async () => { + const file = peopleUploadFile.files && peopleUploadFile.files[0]; + if (!file) return; + const form = new FormData(); + form.append("file", file, file.name); + if (peopleUploadFile.dataset.personId) { + form.append("person_id", peopleUploadFile.dataset.personId); + } + try { + await apiPostFormData("/api/upload_person", form); + await renderPeople(); + } catch (e) { + alert(`People upload failed: ${e.message}`); + } finally { + peopleUploadFile.value = ""; + delete peopleUploadFile.dataset.personId; + } + }); + } + if (peopleResetBtn) { + peopleResetBtn.addEventListener("click", async () => { + if (!confirm("Delete all saved people profiles?")) return; + await apiGet("/api/reset_people"); + await renderPeople(); + }); + } + + document.getElementById("req_photo").addEventListener("click", async () => { + await apiGet("/api/request_photo"); + }); + document.getElementById("clear_photos").addEventListener("click", async () => { + if (!confirm("Delete ALL photos?")) return; + await apiGet("/api/clear_photos"); + await renderPhotos(); + }); + document.getElementById("download_zip").addEventListener("click", async () => { + const r = await apiGet("/api/download_zip"); + if (r.ok) window.location = `/${r.archive}`; + }); + document.getElementById("upload_now").addEventListener("click", async () => { + await apiGet("/api/upload_now"); + }); + document.getElementById("scripts_fix_check").addEventListener("click", async () => { + const r = await apiGet("/api/run_scripts_fix?mode=--check"); + alert(`RealSense check:\n${(r.stdout || []).join("\n") || "true"}`); + }); + document.getElementById("scripts_fix_run").addEventListener("click", async () => { + if (!confirm("Run RealSense fix script?")) return; + const r = await apiGet("/api/run_scripts_fix?mode=--fix"); + alert(`Fix output:\n${(r.stdout || []).join("\n")}`); + }); + + document.getElementById("toggle_preview").addEventListener("click", () => { + setPreviewEnabled(!window.__previewEnabled); + }); + document.getElementById("camera_refresh_btn").addEventListener("click", async () => { + window.__cameraSourcesCache = null; + await refreshCameraPanel(); + restartPreview(); + }); + document.getElementById("capture_now_btn").addEventListener("click", async () => { + const statusBox = document.getElementById("camera_status_box"); + statusBox.textContent = "Capturing..."; + try { + const resp = await apiGet("/api/capture"); + statusBox.textContent = `Saved\n${resp.result || "OK"}`; + await renderPhotos(); + await refreshCameraPanel(); + } catch (e) { + statusBox.textContent = `Capture failed\n${e.message}`; + } + }); + document.getElementById("camera_apply_btn").addEventListener("click", async () => { + const selector = document.getElementById("camera_source_select"); + const statusBox = document.getElementById("camera_status_box"); + const source = selector.value; + statusBox.textContent = `Switching camera to ${source}...`; + try { + await apiGet(`/api/set_camera_source?source=${encodeURIComponent(source)}`); + restartPreview(); + await refreshCameraPanel(); + } catch (e) { + statusBox.textContent = `Camera switch failed\n${e.message}`; + } + }); + document.getElementById("camera_save_default_btn").addEventListener("click", async () => { + const selector = document.getElementById("camera_source_select"); + const statusBox = document.getElementById("camera_status_box"); + const camera = ((await apiGet("/api/camera_health")).camera) || {}; + const cameraSources = window.__cameraSourcesCache || await apiGet("/api/camera_sources"); + const serial = selectedCameraSerial(selector.value, cameraSources, camera); + if (!serial) { + statusBox.textContent = "Default camera save failed\nSelect a RealSense source first."; + return; + } + statusBox.textContent = `Saving preferred camera ${serial}...`; + try { + await apiGet(`/api/set_preferred_camera?serial=${encodeURIComponent(serial)}`); + window.__cameraSourcesCache = null; + await refreshCameraPanel(); + statusBox.textContent = `Preferred camera saved\n${serial}`; + } catch (e) { + statusBox.textContent = `Default camera save failed\n${e.message}`; + } + }); + document.getElementById("resolution_select").addEventListener("change", (e) => { + const value = e.target.value; + const match = value.match(/^(\d+)x(\d+)@(\d+)$/); + if (!match) return; + setResolutionInputs(Number(match[1]), Number(match[2]), Number(match[3])); + }); + document.getElementById("apply_resolution_btn").addEventListener("click", async () => { + const width = Number(document.getElementById("width_input").value); + const height = Number(document.getElementById("height_input").value); + const fps = Number(document.getElementById("fps_input").value); + const statusBox = document.getElementById("camera_status_box"); + statusBox.textContent = `Applying resolution ${width}x${height}@${fps}...`; + try { + const resp = await apiGet(`/api/set_camera_resolution?width=${encodeURIComponent(width)}&height=${encodeURIComponent(height)}&fps=${encodeURIComponent(fps)}`); + const camera = resp.camera || {}; + setResolutionInputs(camera.requested_width, camera.requested_height, camera.requested_fps); + restartPreview(); + await refreshCameraPanel(); + } catch (e) { + statusBox.textContent = `Resolution change failed\n${e.message}`; + } + }); + + if (mode === "ai") { + const backendButton = document.getElementById("det_backend_set"); + if (backendButton) { + backendButton.addEventListener("click", async () => { + const v = document.getElementById("det_backend_select").value || "normal"; + try { + await apiGet(`/api/set_detector_backend?backend=${encodeURIComponent(v)}`); + await renderControls(); + } catch (e) { + alert(e.message); + } + }); + } + const aiSave = document.getElementById("opt_ai_save"); + if (aiSave) { + aiSave.addEventListener("click", async () => { + const hard = document.getElementById("opt_hard_lock").checked ? 1 : 0; + const retake = document.getElementById("opt_retake_prompt").checked ? 1 : 0; + const greetEnabled = document.getElementById("opt_greeting_replay").checked ? 1 : 0; + const greetFile = document.getElementById("opt_greeting_replay_file").value || ""; + const captureReplay = document.getElementById("opt_capture_replay").checked ? 1 : 0; + const faceRecognition = document.getElementById("opt_face_recognition").checked ? 1 : 0; + const faceThreshold = document.getElementById("opt_face_threshold").value || "0.88"; + try { + await apiGet( + `/api/set_ai_options?hard_target_lock_enabled=${hard}&retake_prompt_enabled=${retake}` + + `&autonomous_greeting_replay_enabled=${greetEnabled}` + + `&autonomous_greeting_replay_file=${encodeURIComponent(greetFile)}` + + `&autonomous_capture_replay_enabled=${captureReplay}` + + `&face_recognition_enabled=${faceRecognition}` + + `&face_recognition_threshold=${encodeURIComponent(faceThreshold)}` + ); + await renderControls(); + } catch (e) { + alert(e.message); + } + }); + } + } + + setPreviewEnabled(window.__previewEnabled); + await refreshCameraPanel(); + await refreshReplayPanel(); + await refreshAudioPromptPanel(); + await refreshAudioPromptRecordStatus(); + await refreshAutonomousPanel(); + await refreshAiReadinessPanel(); + await refreshRuntimeHealthPanel(); + await renderPeople(); + + if (window.__dashboardPoll) clearInterval(window.__dashboardPoll); + window.__peoplePollCounter = 0; + window.__dashboardPoll = setInterval(async () => { + await refreshCameraPanel().catch(() => {}); + await refreshReplayPanel().catch(() => {}); + await refreshAutonomousPanel().catch(() => {}); + await refreshAiReadinessPanel().catch(() => {}); + await refreshRuntimeHealthPanel().catch(() => {}); + window.__peoplePollCounter += 1; + if (window.__peoplePollCounter % 4 === 0) { + await renderPeople().catch(() => {}); + } + if (window.__peoplePollCounter % 8 === 0) { + await refreshAudioPromptPanel().catch(() => {}); + } + await refreshAudioPromptRecordStatus().catch(() => {}); + }, 1500); +} + +async function renderPhotos() { + const list = document.getElementById("list"); + if (!list) return; + list.innerHTML = ""; + const res = await apiGet("/api/photos"); + const photos = res.photos || []; + if (!photos.length) { + list.innerHTML = '
No photos yet.
'; + return; + } + for (const photo of photos) { + const card = el("article", "card"); + card.innerHTML = ` + ${escapeHtml(photo.name)} +
+
${escapeHtml(photo.name)}
+
${formatSize(photo.size || 0)}
${formatTime(photo.mtime || 0)}
+
+ Open + Delete + Reupload +
+
+ `; + card.querySelector(".thumb").addEventListener("click", () => openPreview(photo.name)); + list.appendChild(card); + } + + document.querySelectorAll("a.del").forEach((anchor) => { + anchor.addEventListener("click", async (ev) => { + ev.preventDefault(); + const name = anchor.getAttribute("data-name"); + if (!confirm("Delete this photo?")) return; + await apiGet(`/api/delete?name=${name}`); + await renderPhotos(); + }); + }); +} + +function openPreview(name) { + const modal = document.getElementById("preview_modal"); + const img = document.getElementById("modal_img"); + const actions = document.getElementById("modal_actions"); + img.src = `/${encodeURIComponent(name)}`; + actions.innerHTML = ` + Open / Download + Reupload + Delete + `; + document.getElementById("modal_delete").addEventListener("click", async (ev) => { + ev.preventDefault(); + if (!confirm("Delete this photo?")) return; + await apiGet(`/api/delete?name=${encodeURIComponent(name)}`); + closeModal(); + await renderPhotos(); + }); + modal.style.display = "flex"; +} + +function closeModal() { + const modal = document.getElementById("preview_modal"); + if (modal) modal.style.display = "none"; +} + +window.addEventListener("load", () => { + bindTopActions(); + const modalClose = document.getElementById("modal_close"); + if (modalClose) modalClose.addEventListener("click", closeModal); + renderControls().catch((e) => { + const ctrl = document.getElementById("controls"); + if (ctrl) ctrl.innerHTML = `
Dashboard load failed\n${escapeHtml(e.message)}
`; + }); + renderPhotos().catch(() => {}); +}); + +window.addEventListener("beforeunload", () => { + if (window.__dashboardPoll) clearInterval(window.__dashboardPoll); + if (window.__previewEnabled) setPreviewEnabled(false); +}); + +async function openScriptsModal() { + const modal = document.getElementById("scripts_modal"); + const list = document.getElementById("scripts_list"); + const editor = document.getElementById("script_editor"); + const fname = document.getElementById("script_filename"); + list.innerHTML = "Loading..."; + try { + const r = await apiGet("/api/scripts"); + if ((r.scripts || []).length === 0) { + list.innerHTML = "No scripts"; + } else { + list.innerHTML = ""; + r.scripts.forEach((s) => { + const row = document.createElement("div"); + row.className = "script-row"; + row.innerHTML = `${escapeHtml(s)}   `; + list.appendChild(row); + }); + list.querySelectorAll("button").forEach((btn) => { + btn.addEventListener("click", async () => { + const act = btn.getAttribute("data-act"); + const name = btn.getAttribute("data-name"); + if (act === "set") { + await fetch("/api/set_sanad_script", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ name }) }); + alert(`Set as active: ${name}`); + } else if (act === "del") { + if (!confirm(`Delete script ${name}?`)) return; + await fetch("/api/delete_script", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ name }) }); + await openScriptsModal(); + } else if (act === "edit") { + const r = await apiGet(`/api/script_content?name=${encodeURIComponent(name)}`); + if (r.ok) { + editor.value = r.script || ""; + fname.value = name; + } + } + }); + }); + } + } catch (_e) { + list.innerHTML = "Error"; + } + + try { + const a = await apiGet("/api/sanad_script"); + if (a.ok) editor.value = a.script || ""; + } catch (_e) {} + + document.getElementById("scripts_modal_close").onclick = () => { + modal.style.display = "none"; + }; + document.getElementById("script_upload").onclick = async () => { + const name = fname.value.trim(); + const script = editor.value || ""; + if (!name) { + alert("Enter filename"); + return; + } + await fetch("/api/upload_script", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ filename: name, script }) }); + await openScriptsModal(); + }; + document.getElementById("script_save").onclick = async () => { + await fetch("/api/sanad_script", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify({ script: editor.value || "" }) }); + alert("Saved active SANAD script"); + }; + + modal.style.display = "flex"; +} diff --git a/Web/style.css b/Web/style.css new file mode 100644 index 0000000..21fb02a --- /dev/null +++ b/Web/style.css @@ -0,0 +1,730 @@ +:root { + --bg: #efe8db; + --bg-accent: #d7e0d4; + --panel: rgba(249, 248, 244, 0.96); + --panel-strong: #fbfaf7; + --ink: #1c241f; + --muted: #5f675d; + --line: rgba(38, 58, 44, 0.14); + --line-strong: rgba(32, 58, 44, 0.24); + --accent: #255f4a; + --accent-2: #8f3b24; + --soft: #ecf3ec; + --warn: #8b3120; + --shadow: 0 22px 50px rgba(24, 34, 26, 0.10); +} + +* { + box-sizing: border-box; +} + +body { + margin: 0; + color: var(--ink); + background: + radial-gradient(circle at top left, rgba(143, 59, 36, 0.08), transparent 28%), + radial-gradient(circle at top right, rgba(37, 95, 74, 0.10), transparent 34%), + linear-gradient(180deg, #f4efe4 0%, var(--bg) 46%, #e6ede5 100%); + font-family: "Trebuchet MS", "Gill Sans", "Segoe UI", sans-serif; +} + +button, +input, +select, +textarea { + font: inherit; +} + +code, +pre, +.meta-code { + font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace; +} + +.page-shell { + max-width: 1560px; + margin: 0 auto; + padding: 22px 22px 40px; +} + +.topbar { + display: flex; + justify-content: space-between; + align-items: center; + gap: 16px; + padding: 18px 20px; + border: 1px solid var(--line); + border-radius: 24px; + background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(249,248,244,0.95)); + box-shadow: var(--shadow); +} + +.brand-block { + display: flex; + align-items: center; + gap: 14px; +} + +.brand-mark { + width: 54px; + height: 54px; + border-radius: 18px; + display: grid; + place-items: center; + background: linear-gradient(135deg, #214f40, #547a62); + color: #f8fbf8; + font-weight: 800; + letter-spacing: 0.08em; +} + +.eyebrow, +.panel-eyebrow, +.section-eyebrow { + text-transform: uppercase; + letter-spacing: 0.16em; + font-size: 11px; + color: var(--muted); +} + +.title { + font-family: Georgia, "Times New Roman", serif; + font-size: 32px; + font-weight: 700; +} + +.top-actions { + display: flex; + flex-wrap: wrap; + justify-content: flex-end; + gap: 10px; +} + +.btn, +.btn-secondary, +.btn-small, +.btn-danger { + appearance: none; + border-radius: 999px; + border: 1px solid var(--line-strong); + padding: 11px 16px; + cursor: pointer; + transition: transform 0.14s ease, box-shadow 0.14s ease, background 0.14s ease; + text-decoration: none; + display: inline-flex; + align-items: center; + justify-content: center; + gap: 8px; +} + +.btn:hover, +.btn-secondary:hover, +.btn-small:hover, +.btn-danger:hover, +button:hover { + transform: translateY(-1px); +} + +.btn.primary, +button.primary, +.top-actions .btn.primary { + background: var(--accent); + color: #fff; + border-color: var(--accent); + box-shadow: 0 12px 24px rgba(37, 95, 74, 0.22); +} + +.btn.ghost, +.btn-secondary, +button.ghost { + background: rgba(255,255,255,0.82); + color: var(--accent); +} + +.btn.danger, +.btn-danger, +button.danger { + background: rgba(255,255,255,0.82); + color: var(--warn); + border-color: rgba(139, 49, 32, 0.3); +} + +.meta-strip { + display: flex; + flex-wrap: wrap; + gap: 12px; + margin: 16px 0 20px; +} + +.meta-pill { + background: rgba(255,255,255,0.7); + border: 1px solid var(--line); + color: var(--muted); + padding: 10px 14px; + border-radius: 999px; +} + +.dashboard-layout { + display: grid; + grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.9fr); + gap: 22px; + align-items: start; +} + +.dashboard-main, +.dashboard-side { + min-width: 0; +} + +.dashboard-side { + display: grid; + gap: 22px; +} + +.dashboard-stack, +.status-grid, +.control-grid, +.camera-grid { + display: grid; + gap: 18px; +} + +.control-grid { + grid-template-columns: repeat(2, minmax(0, 1fr)); +} + +.camera-grid { + grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.95fr); +} + +.status-grid { + grid-template-columns: repeat(2, minmax(0, 1fr)); +} + +.panel { + background: var(--panel); + border: 1px solid var(--line); + border-radius: 24px; + padding: 18px; + box-shadow: var(--shadow); + min-width: 0; +} + +.panel.strong { + background: linear-gradient(180deg, rgba(255,255,255,0.88), var(--panel-strong)); +} + +.panel-header { + display: flex; + justify-content: space-between; + align-items: flex-start; + gap: 12px; + margin-bottom: 12px; +} + +.panel-header h2, +.panel-header h3, +.panel h4, +.panel h3 { + margin: 0; + font-family: Georgia, "Times New Roman", serif; +} + +.panel-copy, +.meta, +.subtle { + color: var(--muted); +} + +.preview-shell { + position: relative; + overflow: hidden; + border-radius: 20px; + border: 1px solid var(--line); + background: + radial-gradient(circle at top left, rgba(37,95,74,0.12), transparent 28%), + linear-gradient(180deg, #dde8df 0%, #cfd9cc 100%); +} + +.preview-shell::after { + content: ""; + position: absolute; + inset: 0; + background: linear-gradient(180deg, transparent 0%, rgba(18, 28, 22, 0.10) 100%); + pointer-events: none; +} + +.camera-preview { + width: 100%; + display: none; + aspect-ratio: 4 / 3; + object-fit: cover; + background: #d6ded3; +} + +.preview-placeholder { + display: grid; + place-items: center; + aspect-ratio: 4 / 3; + color: var(--muted); + text-align: center; + padding: 20px; +} + +.preview-toolbar, +.inline-actions, +.action-row, +.resolution-row, +.selector-row { + display: flex; + flex-wrap: wrap; + gap: 10px; + align-items: center; +} + +.selector-row select, +.resolution-row select, +.selector-row input, +.resolution-row input { + min-width: 110px; + max-width: 100%; +} + +select, +input, +textarea { + appearance: none; + border: 1px solid var(--line-strong); + border-radius: 999px; + padding: 11px 14px; + background: rgba(255,255,255,0.9); + color: var(--ink); +} + +textarea.script-editor { + width: 100%; + height: 260px; + margin-top: 6px; + border-radius: 18px; + font-family: "IBM Plex Mono", Consolas, monospace; +} + +.status-box, +.info-box, +.raw-box { + margin-top: 12px; + padding: 14px; + border-radius: 18px; + border: 1px solid var(--line); + background: linear-gradient(180deg, rgba(255,255,255,0.62), rgba(236,243,236,0.92)); +} + +.status-box { + white-space: pre-wrap; +} + +.raw-box { + white-space: pre-wrap; + overflow: auto; + max-height: 260px; +} + +.info-grid { + display: grid; + grid-template-columns: repeat(2, minmax(0, 1fr)); + gap: 10px 14px; +} + +.stat-line { + display: flex; + justify-content: space-between; + gap: 12px; + color: var(--muted); + padding-bottom: 6px; + border-bottom: 1px dashed rgba(38, 58, 44, 0.12); +} + +.stat-line b { + color: var(--ink); + text-align: right; +} + +.chip-row { + display: flex; + flex-wrap: wrap; + gap: 8px; + margin-top: 10px; +} + +.chip { + display: inline-flex; + align-items: center; + gap: 8px; + border-radius: 999px; + padding: 8px 12px; + background: rgba(255,255,255,0.78); + border: 1px solid var(--line); + color: var(--muted); +} + +.chip strong { + color: var(--ink); +} + +.replay-list { + display: grid; + gap: 12px; +} + +.audio-prompt-grid { + display: grid; + grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); + gap: 14px; +} + +.audio-prompt-recorder { + display: grid; + gap: 12px; + padding: 14px; + margin: 14px 0; + border-radius: 18px; + border: 1px solid var(--line); + background: rgba(255,255,255,0.58); +} + +.audio-prompt-card { + display: grid; + gap: 12px; + padding: 16px; + border-radius: 20px; + border: 1px solid var(--line); + background: rgba(255,255,255,0.74); + box-shadow: 0 12px 24px rgba(24, 34, 26, 0.06); +} + +.audio-prompt-card.ready { + background: linear-gradient(180deg, rgba(236,243,236,0.98), rgba(255,255,255,0.92)); +} + +.audio-prompt-head { + display: flex; + justify-content: space-between; + gap: 12px; + align-items: flex-start; +} + +.audio-prompt-title { + font-weight: 800; + font-size: 15px; +} + +.audio-prompt-key { + margin-top: 4px; + color: var(--muted); + font-size: 12px; + font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace; +} + +.audio-prompt-text { + padding: 12px 14px; + border-radius: 16px; + background: rgba(255,255,255,0.84); + border: 1px dashed rgba(38, 58, 44, 0.14); + color: var(--ink); + line-height: 1.45; +} + +.audio-prompt-meta { + color: var(--muted); + font-size: 13px; + line-height: 1.5; +} + +.audio-prompt-actions { + display: flex; + flex-wrap: wrap; + gap: 8px; +} + +.audio-prompt-actions .btn { + padding: 8px 12px; + font-size: 13px; +} + +.prompt-editor { + width: 100%; + min-height: 112px; + resize: vertical; + border-radius: 18px; + border: 1px solid var(--line-strong); + padding: 12px 14px; + background: rgba(255,255,255,0.88); + color: var(--ink); +} + +.replay-row { + display: grid; + grid-template-columns: minmax(0, 1fr) auto auto; + gap: 12px; + align-items: center; + padding: 14px 16px; + border-radius: 18px; + border: 1px solid var(--line); + background: rgba(255,255,255,0.72); +} + +.replay-row.active { + border-color: rgba(37, 95, 74, 0.32); + background: linear-gradient(180deg, rgba(236,243,236,0.98), rgba(255,255,255,0.92)); +} + +.replay-main { + min-width: 0; +} + +.replay-title { + font-weight: 700; + overflow-wrap: anywhere; +} + +.replay-meta { + margin-top: 4px; + color: var(--muted); + font-size: 13px; +} + +.replay-tags, +.replay-row-actions { + display: flex; + flex-wrap: wrap; + gap: 8px; + align-items: center; + justify-content: flex-end; +} + +.replay-tag { + display: inline-flex; + align-items: center; + border-radius: 999px; + padding: 6px 10px; + font-size: 12px; + line-height: 1; + background: rgba(255,255,255,0.9); + border: 1px solid var(--line); + color: var(--muted); +} + +.replay-tag.active { + background: rgba(37, 95, 74, 0.12); + border-color: rgba(37, 95, 74, 0.28); + color: var(--accent); +} + +.replay-tag.warn { + background: rgba(139, 49, 32, 0.08); + border-color: rgba(139, 49, 32, 0.24); + color: var(--warn); +} + +.cards-grid { + display: grid; + grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); + gap: 16px; +} + +.people-grid { + display: grid; + gap: 14px; + grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); +} + +.person-card { + background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(236,243,236,0.94)); + border: 1px solid var(--line); + border-radius: 22px; + overflow: hidden; + box-shadow: 0 12px 26px rgba(24, 34, 26, 0.08); +} + +.person-card-head { + display: grid; + grid-template-columns: 1fr 1fr; + gap: 1px; + background: rgba(38, 58, 44, 0.08); +} + +.person-card-head img { + width: 100%; + aspect-ratio: 1 / 1; + object-fit: cover; + display: block; + background: #d7dfd5; +} + +.person-card-body { + padding: 14px; + display: grid; + gap: 10px; +} + +.person-title { + font-weight: 800; + font-size: 15px; + line-height: 1.3; + overflow-wrap: anywhere; +} + +.person-meta { + color: var(--muted); + font-size: 13px; + white-space: pre-wrap; +} + +.person-actions { + display: flex; + flex-wrap: wrap; + gap: 8px; +} + +.person-actions .btn, +.person-actions .btn-secondary, +.person-actions .btn-danger { + padding: 8px 12px; + font-size: 13px; +} + +.card { + background: rgba(255,255,255,0.72); + border: 1px solid var(--line); + border-radius: 20px; + overflow: hidden; + box-shadow: 0 12px 24px rgba(24, 34, 26, 0.07); +} + +.card .thumb { + width: 100%; + aspect-ratio: 4 / 3; + object-fit: cover; + display: block; + cursor: pointer; + background: #d7dfd5; +} + +.card-body { + padding: 14px; +} + +.card .name { + font-weight: 700; + font-size: 14px; + overflow-wrap: anywhere; +} + +.photo-meta { + margin-top: 8px; + color: var(--muted); + font-size: 13px; +} + +.actions, +.modal-actions { + display: flex; + flex-wrap: wrap; + gap: 10px; + margin-top: 12px; +} + +.actions a, +.modal-actions a { + color: var(--accent); + text-decoration: none; +} + +.modal { + position: fixed; + inset: 0; + display: flex; + align-items: center; + justify-content: center; + padding: 20px; + background: rgba(10, 18, 13, 0.62); + backdrop-filter: blur(8px); +} + +.modal-content { + position: relative; + width: min(960px, 100%); + max-height: 92vh; + overflow: auto; + background: #fbfaf7; + border-radius: 24px; + padding: 18px; + box-shadow: 0 30px 60px rgba(0,0,0,0.24); +} + +.modal-content img { + width: 100%; + border-radius: 18px; +} + +.modal-wide { + width: min(1000px, 100%); +} + +.modal-close { + position: absolute; + top: 14px; + right: 14px; + width: 38px; + height: 38px; + border-radius: 50%; + border: 1px solid var(--line); + background: rgba(255,255,255,0.92); + cursor: pointer; +} + +.script-row { + display: block; +} + +@media (max-width: 1180px) { + .dashboard-layout, + .camera-grid { + grid-template-columns: 1fr; + } +} + +@media (max-width: 860px) { + .topbar, + .panel-header, + .selector-row, + .resolution-row, + .preview-toolbar, + .action-row, + .top-actions { + flex-direction: column; + align-items: stretch; + } + + .control-grid, + .status-grid, + .info-grid { + grid-template-columns: 1fr; + } + + .page-shell { + padding: 14px 14px 28px; + } + + .title { + font-size: 24px; + } + + .replay-row { + grid-template-columns: 1fr; + } + + .replay-tags, + .replay-row-actions { + justify-content: flex-start; + } +} diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..2c360f9 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,10 @@ +requests>=2.31.0 +boto3>=1.34.0 +websockets>=12.0 +pyzmq>=25.1.0 +Pillow>=10.0.0 +numpy>=1.24.0 +opencv-python>=4.8.0 +ultralytics>=8.3.0 +PyAudio>=0.2.13 +google-generativeai>=0.8.0